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   286487 use strict;
  5         8  
  5         467  
3              
4             our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
5              
6 5     5   1974 use version;
  5         8986  
  5         35  
7             our $VERSION = '5.20260601';
8              
9             sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
10 42     42   85 sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
  42         71  
  42         369  
11              
12             sub _undelta {
13 11     11   72 my ($delta) = @_;
14 11         28 my (%expanded, $delta_from, $base, $changed, $removed);
15 11         1709 for my $v (sort keys %$delta) {
16 3063         3594 ($delta_from, $changed, $removed) = @{$delta->{$v}}{qw( delta_from changed removed )};
  3063         7438  
17 3063 100       9602 $base = $delta_from ? $expanded{$delta_from} : {};
18 3063 100       93220 my %full = ( %$base, %{$changed || {}} );
  3063         375735  
19 3063         57850 delete @full{ keys %$removed };
20 3063         8600 $expanded{$v} = \%full;
21             }
22 11         2952 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 9340 0   9340   24058 : $released{$a} cmp $released{$b} )
    50          
    50          
33             }
34              
35             my $dumpinc = 0;
36             sub import {
37 4     4   186 my $self = shift;
38 4   50     35 my $what = shift || '';
39 4 50       9066 if ($what eq 'dumpinc') {
40 0         0 $dumpinc = 1;
41             }
42             }
43              
44             END {
45 5 50   5   1895 print "---INC---\n", join "\n" => keys %INC
46             if $dumpinc;
47             }
48              
49              
50             sub first_release_raw {
51 91 100 100 91 0 416 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
52 91         128 my $module = shift;
53 91         123 my $version = shift;
54              
55             my @perls = $version
56             ? grep { defined $version{$_}{ $module } &&
57 1715 100       8709 $version{$_}{ $module } ge $version } keys %version
58 91 100       6069 : grep { exists $version{$_}{ $module } } keys %version;
  29498         49206  
59              
60 91         3465 return @perls;
61             }
62              
63             sub first_release_by_date {
64 4     4 1 302934 my @perls = &first_release_raw;
65 4 50       22 return unless @perls;
66 4         71 return (sort _released_order @perls)[0];
67             }
68              
69             sub first_release {
70 53     53 1 108 my @perls = &first_release_raw;
71 53 100       201 return unless @perls;
72 49         482 return (sort { $a cmp $b } @perls)[0];
  89087         88791  
73             }
74              
75             sub find_modules {
76 5 100   5 1 241315 shift if _looks_like_invocant $_[0];
77 5         11 my $regex = shift;
78 5 100       607 my @perls = @_ ? @_ : keys %version;
79              
80 5         15 my %mods;
81 5         9 foreach (@perls) {
82 1032         1330 while (my ($k, $v) = each %{$version{$_}}) {
  648340         1380189  
83 647308 100       1558903 $mods{$k}++ if $k =~ $regex;
84             }
85             }
86 5         231 return sort keys %mods
87             }
88              
89             sub find_version {
90 3 50   3 1 793 shift if _looks_like_invocant $_[0];
91 3         8 my $v = shift;
92 3 100 66     40 return $version{$v} if defined $v and defined $version{$v};
93 1         6 return;
94             }
95              
96             sub is_deprecated {
97 3 50 66 3 1 1573 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      33        
98 3         1624 my $module = shift;
99 3   66     124 my $perl_version = shift || $];
100 3 50 33     23 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 8 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      33        
106 2 50       6 my $module = shift or return;
107 2         81 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
  612         813  
108 2 100       24 return unless @perls;
109 1         10 require List::Util;
110 1         8 return List::Util::minstr(@perls);
111             }
112              
113             sub removed_from {
114 34     34 1 82 my @perls = &removed_raw;
115 34         219 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 146 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
125 34         72 my $mod = shift;
126 34 50       71 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
  51854         48011  
127 34         284 my $last = pop @perls;
128 34         1746 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
  11662         18235  
  84140         79769  
129 34         1053 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             5.043011 => '2026-06-01',
462             );
463              
464             for my $version ( sort { $a <=> $b } keys %released ) {
465             my $family = int ($version * 1000) / 1000;
466             push @{ $families{ $family }} , $version;
467             }
468              
469             %delta = (
470             5 => {
471             changed => {
472             'AnyDBM_File' => undef,
473             'AutoLoader' => undef,
474             'AutoSplit' => undef,
475             'Benchmark' => undef,
476             'Carp' => undef,
477             'Cwd' => undef,
478             'DB_File' => undef,
479             'DynaLoader' => undef,
480             'English' => undef,
481             'Env' => undef,
482             'Exporter' => undef,
483             'ExtUtils::MakeMaker' => undef,
484             'Fcntl' => undef,
485             'File::Basename' => undef,
486             'File::CheckTree' => undef,
487             'File::Find' => undef,
488             'FileHandle' => undef,
489             'GDBM_File' => undef,
490             'Getopt::Long' => undef,
491             'Getopt::Std' => undef,
492             'I18N::Collate' => undef,
493             'IPC::Open2' => undef,
494             'IPC::Open3' => undef,
495             'Math::BigFloat' => undef,
496             'Math::BigInt' => undef,
497             'Math::Complex' => undef,
498             'NDBM_File' => undef,
499             'Net::Ping' => undef,
500             'ODBM_File' => undef,
501             'POSIX' => undef,
502             'SDBM_File' => undef,
503             'Search::Dict' => undef,
504             'Shell' => undef,
505             'Socket' => undef,
506             'Sys::Hostname' => undef,
507             'Sys::Syslog' => undef,
508             'Term::Cap' => undef,
509             'Term::Complete' => undef,
510             'Test::Harness' => undef,
511             'Text::Abbrev' => undef,
512             'Text::ParseWords' => undef,
513             'Text::Soundex' => undef,
514             'Text::Tabs' => undef,
515             'TieHash' => undef,
516             'Time::Local' => undef,
517             'integer' => undef,
518             'less' => undef,
519             'sigtrap' => undef,
520             'strict' => undef,
521             'subs' => undef,
522             },
523             removed => {
524             }
525             },
526             5.001 => {
527             delta_from => 5,
528             changed => {
529             'ExtUtils::Liblist' => undef,
530             'ExtUtils::Manifest' => undef,
531             'ExtUtils::Mkbootstrap' => undef,
532             'File::Path' => undef,
533             'SubstrHash' => undef,
534             'lib' => undef,
535             },
536             removed => {
537             }
538             },
539             5.002 => {
540             delta_from => 5.001,
541             changed => {
542             'DB_File' => '1.01',
543             'Devel::SelfStubber' => '1.01',
544             'DirHandle' => undef,
545             'DynaLoader' => '1.00',
546             'ExtUtils::Install' => undef,
547             'ExtUtils::MM_OS2' => undef,
548             'ExtUtils::MM_Unix' => undef,
549             'ExtUtils::MM_VMS' => undef,
550             'ExtUtils::MakeMaker' => '5.21',
551             'ExtUtils::Manifest' => '1.22',
552             'ExtUtils::Mksymlists' => '1.00',
553             'Fcntl' => '1.00',
554             'File::Copy' => '1.5',
555             'File::Path' => '1.01',
556             'FileCache' => undef,
557             'FileHandle' => '1.00',
558             'GDBM_File' => '1.00',
559             'Getopt::Long' => '2.01',
560             'NDBM_File' => '1.00',
561             'Net::Ping' => '1',
562             'ODBM_File' => '1.00',
563             'POSIX' => '1.00',
564             'Pod::Functions' => undef,
565             'Pod::Text' => undef,
566             'SDBM_File' => '1.00',
567             'Safe' => '1.00',
568             'SelectSaver' => undef,
569             'SelfLoader' => '1.06',
570             'Socket' => '1.5',
571             'Symbol' => undef,
572             'Term::ReadLine' => undef,
573             'Test::Harness' => '1.07',
574             'Text::Wrap' => undef,
575             'Tie::Hash' => undef,
576             'Tie::Scalar' => undef,
577             'Tie::SubstrHash' => undef,
578             'diagnostics' => undef,
579             'overload' => undef,
580             'vars' => undef,
581             },
582             removed => {
583             'SubstrHash' => 1,
584             'TieHash' => 1,
585             }
586             },
587             5.00307 => {
588             delta_from => 5.002,
589             changed => {
590             'Config' => undef,
591             'DB_File' => '1.03',
592             'ExtUtils::Embed' => '1.18',
593             'ExtUtils::Install' => '1.15',
594             'ExtUtils::Liblist' => '1.20',
595             'ExtUtils::MM_Unix' => '1.107',
596             'ExtUtils::MakeMaker' => '5.38',
597             'ExtUtils::Manifest' => '1.27',
598             'ExtUtils::Mkbootstrap' => '1.13',
599             'ExtUtils::Mksymlists' => '1.12',
600             'ExtUtils::testlib' => '1.11',
601             'Fatal' => undef,
602             'File::Basename' => '2.4',
603             'FindBin' => '1.04',
604             'Getopt::Long' => '2.04',
605             'IO' => undef,
606             'IO::File' => '1.05',
607             'IO::Handle' => '1.12',
608             'IO::Pipe' => '1.07',
609             'IO::Seekable' => '1.05',
610             'IO::Select' => '1.09',
611             'IO::Socket' => '1.13',
612             'Net::Ping' => '1.01',
613             'OS2::ExtAttr' => '0.01',
614             'OS2::PrfDB' => '0.02',
615             'OS2::Process' => undef,
616             'OS2::REXX' => undef,
617             'Opcode' => '1.01',
618             'Safe' => '2.06',
619             'Test::Harness' => '1.13',
620             'Text::Tabs' => '96.051501',
621             'Text::Wrap' => '96.041801',
622             'UNIVERSAL' => undef,
623             'VMS::Filespec' => undef,
624             'VMS::Stdio' => '2.0',
625             'ops' => undef,
626             'sigtrap' => '1.01',
627             },
628             removed => {
629             }
630             },
631             5.004 => {
632             delta_from => 5.00307,
633             changed => {
634             'Bundle::CPAN' => '0.02',
635             'CGI' => '2.36',
636             'CGI::Apache' => '1.01',
637             'CGI::Carp' => '1.06',
638             'CGI::Fast' => '1.00a',
639             'CGI::Push' => '1.00',
640             'CGI::Switch' => '0.05',
641             'CPAN' => '1.2401',
642             'CPAN::FirstTime' => '1.18',
643             'CPAN::Nox' => undef,
644             'Class::Struct' => undef,
645             'Cwd' => '2.00',
646             'DB_File' => '1.14',
647             'DynaLoader' => '1.02',
648             'ExtUtils::Command' => '1.00',
649             'ExtUtils::Embed' => '1.2501',
650             'ExtUtils::Install' => '1.16',
651             'ExtUtils::Liblist' => '1.2201',
652             'ExtUtils::MM_Unix' => '1.114',
653             'ExtUtils::MM_Win32' => undef,
654             'ExtUtils::MakeMaker' => '5.4002',
655             'ExtUtils::Manifest' => '1.33',
656             'ExtUtils::Mksymlists' => '1.13',
657             'ExtUtils::XSSymSet' => '1.0',
658             'Fcntl' => '1.03',
659             'File::Basename' => '2.5',
660             'File::Compare' => '1.1001',
661             'File::Copy' => '2.02',
662             'File::Path' => '1.04',
663             'File::stat' => undef,
664             'FileHandle' => '2.00',
665             'Getopt::Long' => '2.10',
666             'IO::File' => '1.0602',
667             'IO::Handle' => '1.1504',
668             'IO::Pipe' => '1.0901',
669             'IO::Seekable' => '1.06',
670             'IO::Select' => '1.10',
671             'IO::Socket' => '1.1602',
672             'IPC::Open2' => '1.01',
673             'IPC::Open3' => '1.0101',
674             'Math::Complex' => '1.01',
675             'Math::Trig' => '1',
676             'Net::Ping' => '2.02',
677             'Net::hostent' => undef,
678             'Net::netent' => undef,
679             'Net::protoent' => undef,
680             'Net::servent' => undef,
681             'Opcode' => '1.04',
682             'POSIX' => '1.02',
683             'Pod::Html' => undef,
684             'Pod::Text' => '1.0203',
685             'SelfLoader' => '1.07',
686             'Socket' => '1.6',
687             'Symbol' => '1.02',
688             'Test::Harness' => '1.1502',
689             'Text::Tabs' => '96.121201',
690             'Text::Wrap' => '97.011701',
691             'Tie::RefHash' => undef,
692             'Time::gmtime' => '1.01',
693             'Time::localtime' => '1.01',
694             'Time::tm' => undef,
695             'User::grent' => undef,
696             'User::pwent' => undef,
697             'VMS::DCLsym' => '1.01',
698             'VMS::Stdio' => '2.02',
699             'autouse' => '1.01',
700             'blib' => undef,
701             'constant' => '1.00',
702             'locale' => undef,
703             'sigtrap' => '1.02',
704             'vmsish' => undef,
705             },
706             removed => {
707             'Fatal' => 1,
708             }
709             },
710             5.00405 => {
711             delta_from => 5.004,
712             changed => {
713             'AutoLoader' => '5.56',
714             'AutoSplit' => '1.0303',
715             'Bundle::CPAN' => '0.03',
716             'CGI' => '2.42',
717             'CGI::Apache' => '1.1',
718             'CGI::Carp' => '1.10',
719             'CGI::Cookie' => '1.06',
720             'CGI::Push' => '1.01',
721             'CGI::Switch' => '0.06',
722             'CPAN' => '1.40',
723             'CPAN::FirstTime' => '1.30',
724             'Cwd' => '2.01',
725             'DB_File' => '1.15',
726             'DynaLoader' => '1.03',
727             'ExtUtils::Command' => '1.01',
728             'ExtUtils::Embed' => '1.2505',
729             'ExtUtils::Install' => '1.28',
730             'ExtUtils::Liblist' => '1.25',
731             'ExtUtils::MM_Unix' => '1.118',
732             'ExtUtils::MakeMaker' => '5.42',
733             'ExtUtils::Mkbootstrap' => '1.14',
734             'ExtUtils::Mksymlists' => '1.16',
735             'File::Basename' => '2.6',
736             'File::DosGlob' => undef,
737             'File::Path' => '1.0402',
738             'File::Spec' => '0.6',
739             'File::Spec::Mac' => '1.0',
740             'File::Spec::OS2' => undef,
741             'File::Spec::Unix' => undef,
742             'File::Spec::VMS' => undef,
743             'File::Spec::Win32' => undef,
744             'FindBin' => '1.41',
745             'Getopt::Long' => '2.19',
746             'IO::File' => '1.06021',
747             'IO::Socket' => '1.1603',
748             'IPC::Open3' => '1.0103',
749             'Math::Complex' => '1.25',
750             'NDBM_File' => '1.01',
751             'Pod::Html' => '1.0101',
752             'Pod::Text' => '1.0204',
753             'SelfLoader' => '1.08',
754             'Socket' => '1.7',
755             'Test' => '1.04',
756             'Test::Harness' => '1.1602',
757             'Text::ParseWords' => '3.1001',
758             'Text::Wrap' => '98.112902',
759             'Tie::Handle' => undef,
760             'attrs' => '0.1',
761             'base' => undef,
762             'blib' => '1.00',
763             're' => undef,
764             'strict' => '1.01',
765             },
766             removed => {
767             }
768             },
769             5.005 => {
770             delta_from => 5.00405,
771             changed => {
772             'AutoLoader' => undef,
773             'AutoSplit' => '1.0302',
774             'B' => undef,
775             'B::Asmdata' => undef,
776             'B::Assembler' => undef,
777             'B::Bblock' => undef,
778             'B::Bytecode' => undef,
779             'B::C' => undef,
780             'B::CC' => undef,
781             'B::Debug' => undef,
782             'B::Deparse' => '0.56',
783             'B::Disassembler' => undef,
784             'B::Lint' => undef,
785             'B::Showlex' => undef,
786             'B::Stackobj' => undef,
787             'B::Terse' => undef,
788             'B::Xref' => undef,
789             'CGI::Carp' => '1.101',
790             'CPAN' => '1.3901',
791             'CPAN::FirstTime' => '1.29',
792             'DB_File' => '1.60',
793             'Data::Dumper' => '2.09',
794             'Errno' => '1.09',
795             'ExtUtils::Installed' => '0.02',
796             'ExtUtils::MM_Unix' => '1.12601',
797             'ExtUtils::MakeMaker' => '5.4301',
798             'ExtUtils::Mkbootstrap' => '1.13',
799             'ExtUtils::Mksymlists' => '1.17',
800             'ExtUtils::Packlist' => '0.03',
801             'Fatal' => '1.02',
802             'File::Path' => '1.0401',
803             'Getopt::Long' => '2.17',
804             'IO::Handle' => '1.1505',
805             'IPC::Msg' => '1.00',
806             'IPC::Open3' => '1.0102',
807             'IPC::Semaphore' => '1.00',
808             'IPC::SysV' => '1.03',
809             'O' => undef,
810             'OS2::Process' => '0.2',
811             'Pod::Html' => '1.01',
812             'Pod::Text' => '1.0203',
813             'Text::ParseWords' => '3.1',
814             'Text::Wrap' => '97.02',
815             'Thread' => '1.0',
816             'Thread::Queue' => undef,
817             'Thread::Semaphore' => undef,
818             'Thread::Signal' => undef,
819             'Thread::Specific' => undef,
820             'Tie::Array' => '1.00',
821             'VMS::Stdio' => '2.1',
822             'attrs' => '1.0',
823             'fields' => '0.02',
824             're' => '0.02',
825             },
826             removed => {
827             'Bundle::CPAN' => 1,
828             }
829             },
830             5.00503 => {
831             delta_from => 5.005,
832             changed => {
833             'AutoSplit' => '1.0303',
834             'CGI' => '2.46',
835             'CGI::Carp' => '1.13',
836             'CGI::Fast' => '1.01',
837             'CPAN' => '1.48',
838             'CPAN::FirstTime' => '1.36',
839             'CPAN::Nox' => '1.00',
840             'DB_File' => '1.65',
841             'Data::Dumper' => '2.101',
842             'Dumpvalue' => undef,
843             'Errno' => '1.111',
844             'ExtUtils::Install' => '1.28',
845             'ExtUtils::Liblist' => '1.25',
846             'ExtUtils::MM_Unix' => '1.12602',
847             'ExtUtils::MakeMaker' => '5.4302',
848             'ExtUtils::Manifest' => '1.33',
849             'ExtUtils::Mkbootstrap' => '1.14',
850             'ExtUtils::Mksymlists' => '1.17',
851             'ExtUtils::testlib' => '1.11',
852             'FindBin' => '1.42',
853             'Getopt::Long' => '2.19',
854             'Getopt::Std' => '1.01',
855             'IO::Pipe' => '1.0902',
856             'IPC::Open3' => '1.0103',
857             'Math::Complex' => '1.26',
858             'Test' => '1.122',
859             'Text::Wrap' => '98.112902',
860             },
861             removed => {
862             }
863             },
864             5.00504 => {
865             delta_from => 5.00503,
866             changed => {
867             'CPAN::FirstTime' => '1.36',
868             'DB_File' => '1.807',
869             'ExtUtils::Install' => '1.28',
870             'ExtUtils::Liblist' => '1.25',
871             'ExtUtils::MM_Unix' => '1.12602',
872             'ExtUtils::Manifest' => '1.33',
873             'ExtUtils::Miniperl' => undef,
874             'ExtUtils::Mkbootstrap' => '1.14',
875             'ExtUtils::Mksymlists' => '1.17',
876             'ExtUtils::testlib' => '1.11',
877             'File::Compare' => '1.1002',
878             'File::Spec' => '0.8',
879             'File::Spec::Functions' => undef,
880             'File::Spec::Mac' => undef,
881             'Getopt::Long' => '2.20',
882             'Pod::Html' => '1.02',
883             },
884             removed => {
885             }
886             },
887             5.006 => {
888             delta_from => 5.00504,
889             changed => {
890             'AutoLoader' => '5.57',
891             'AutoSplit' => '1.0305',
892             'B::Deparse' => '0.59',
893             'B::Stash' => undef,
894             'Benchmark' => '1',
895             'ByteLoader' => '0.03',
896             'CGI' => '2.56',
897             'CGI::Apache' => undef,
898             'CGI::Carp' => '1.14',
899             'CGI::Cookie' => '1.12',
900             'CGI::Fast' => '1.02',
901             'CGI::Pretty' => '1.03',
902             'CGI::Switch' => undef,
903             'CPAN' => '1.52',
904             'CPAN::FirstTime' => '1.38',
905             'Carp::Heavy' => undef,
906             'Class::Struct' => '0.58',
907             'Cwd' => '2.02',
908             'DB' => '1.0',
909             'DB_File' => '1.72',
910             'Devel::DProf' => '20000000.00_00',
911             'Devel::Peek' => '1.00_01',
912             'DynaLoader' => '1.04',
913             'Exporter' => '5.562',
914             'Exporter::Heavy' => undef,
915             'ExtUtils::MM_Cygwin' => undef,
916             'ExtUtils::MM_Unix' => '1.12603',
917             'ExtUtils::MakeMaker' => '5.45',
918             'File::Copy' => '2.03',
919             'File::Glob' => '0.991',
920             'File::Path' => '1.0403',
921             'GDBM_File' => '1.03',
922             'Getopt::Long' => '2.23',
923             'Getopt::Std' => '1.02',
924             'IO' => '1.20',
925             'IO::Dir' => '1.03',
926             'IO::File' => '1.08',
927             'IO::Handle' => '1.21',
928             'IO::Pipe' => '1.121',
929             'IO::Poll' => '0.01',
930             'IO::Seekable' => '1.08',
931             'IO::Select' => '1.14',
932             'IO::Socket' => '1.26',
933             'IO::Socket::INET' => '1.25',
934             'IO::Socket::UNIX' => '1.20',
935             'JNI' => '0.01',
936             'JPL::AutoLoader' => undef,
937             'JPL::Class' => undef,
938             'JPL::Compile' => undef,
939             'NDBM_File' => '1.03',
940             'ODBM_File' => '1.02',
941             'OS2::DLL' => undef,
942             'POSIX' => '1.03',
943             'Pod::Checker' => '1.098',
944             'Pod::Find' => '0.12',
945             'Pod::Html' => '1.03',
946             'Pod::InputObjects' => '1.12',
947             'Pod::Man' => '1.02',
948             'Pod::ParseUtils' => '0.2',
949             'Pod::Parser' => '1.12',
950             'Pod::Plainer' => '0.01',
951             'Pod::Select' => '1.12',
952             'Pod::Text' => '2.03',
953             'Pod::Text::Color' => '0.05',
954             'Pod::Text::Termcap' => '0.04',
955             'Pod::Usage' => '1.12',
956             'SDBM_File' => '1.02',
957             'SelfLoader' => '1.0901',
958             'Shell' => '0.2',
959             'Socket' => '1.72',
960             'Sys::Hostname' => '1.1',
961             'Sys::Syslog' => '0.01',
962             'Term::ANSIColor' => '1.01',
963             'Test' => '1.13',
964             'Test::Harness' => '1.1604',
965             'Text::ParseWords' => '3.2',
966             'Text::Soundex' => '1.0',
967             'Text::Tabs' => '98.112801',
968             'Tie::Array' => '1.01',
969             'Tie::Handle' => '1.0',
970             'VMS::Stdio' => '2.2',
971             'XSLoader' => '0.01',
972             'attributes' => '0.03',
973             'autouse' => '1.02',
974             'base' => '1.01',
975             'bytes' => undef,
976             'charnames' => undef,
977             'constant' => '1.02',
978             'diagnostics' => '1.0',
979             'fields' => '1.01',
980             'filetest' => undef,
981             'lib' => '0.5564',
982             'open' => undef,
983             'utf8' => undef,
984             'warnings' => undef,
985             'warnings::register' => undef,
986             },
987             removed => {
988             }
989             },
990             5.006001 => {
991             delta_from => 5.006,
992             changed => {
993             'AutoLoader' => '5.58',
994             'B::Assembler' => '0.02',
995             'B::Concise' => '0.51',
996             'B::Deparse' => '0.6',
997             'ByteLoader' => '0.04',
998             'CGI' => '2.752',
999             'CGI::Carp' => '1.20',
1000             'CGI::Cookie' => '1.18',
1001             'CGI::Pretty' => '1.05',
1002             'CGI::Push' => '1.04',
1003             'CGI::Util' => '1.1',
1004             'CPAN' => '1.59_54',
1005             'CPAN::FirstTime' => '1.53',
1006             'Class::Struct' => '0.59',
1007             'Cwd' => '2.04',
1008             'DB_File' => '1.75',
1009             'Data::Dumper' => '2.102',
1010             'ExtUtils::Install' => '1.28',
1011             'ExtUtils::Liblist' => '1.26',
1012             'ExtUtils::MM_Unix' => '1.12603',
1013             'ExtUtils::Manifest' => '1.33',
1014             'ExtUtils::Mkbootstrap' => '1.14',
1015             'ExtUtils::Mksymlists' => '1.17',
1016             'ExtUtils::testlib' => '1.11',
1017             'File::Path' => '1.0404',
1018             'File::Spec' => '0.82',
1019             'File::Spec::Epoc' => undef,
1020             'File::Spec::Functions' => '1.1',
1021             'File::Spec::Mac' => '1.2',
1022             'File::Spec::OS2' => '1.1',
1023             'File::Spec::Unix' => '1.2',
1024             'File::Spec::VMS' => '1.1',
1025             'File::Spec::Win32' => '1.2',
1026             'File::Temp' => '0.12',
1027             'GDBM_File' => '1.05',
1028             'Getopt::Long' => '2.25',
1029             'IO::Poll' => '0.05',
1030             'JNI' => '0.1',
1031             'Math::BigFloat' => '0.02',
1032             'Math::BigInt' => '0.01',
1033             'Math::Complex' => '1.31',
1034             'NDBM_File' => '1.04',
1035             'ODBM_File' => '1.03',
1036             'OS2::REXX' => '1.00',
1037             'Pod::Checker' => '1.2',
1038             'Pod::Find' => '0.21',
1039             'Pod::InputObjects' => '1.13',
1040             'Pod::LaTeX' => '0.53',
1041             'Pod::Man' => '1.15',
1042             'Pod::ParseUtils' => '0.22',
1043             'Pod::Parser' => '1.13',
1044             'Pod::Select' => '1.13',
1045             'Pod::Text' => '2.08',
1046             'Pod::Text::Color' => '0.06',
1047             'Pod::Text::Overstrike' => '1.01',
1048             'Pod::Text::Termcap' => '1',
1049             'Pod::Usage' => '1.14',
1050             'SDBM_File' => '1.03',
1051             'SelfLoader' => '1.0902',
1052             'Shell' => '0.3',
1053             'Term::ANSIColor' => '1.03',
1054             'Test' => '1.15',
1055             'Text::Wrap' => '2001.0131',
1056             'Tie::Handle' => '4.0',
1057             'Tie::RefHash' => '1.3',
1058             },
1059             removed => {
1060             }
1061             },
1062             5.006002 => {
1063             delta_from => 5.006001,
1064             changed => {
1065             'CPAN::FirstTime' => '1.53',
1066             'DB_File' => '1.806',
1067             'Data::Dumper' => '2.121',
1068             'ExtUtils::Command' => '1.05',
1069             'ExtUtils::Command::MM' => '0.03',
1070             'ExtUtils::Install' => '1.32',
1071             'ExtUtils::Installed' => '0.08',
1072             'ExtUtils::Liblist' => '1.01',
1073             'ExtUtils::Liblist::Kid'=> '1.3',
1074             'ExtUtils::MM' => '0.04',
1075             'ExtUtils::MM_Any' => '0.07',
1076             'ExtUtils::MM_BeOS' => '1.04',
1077             'ExtUtils::MM_Cygwin' => '1.06',
1078             'ExtUtils::MM_DOS' => '0.02',
1079             'ExtUtils::MM_MacOS' => '1.07',
1080             'ExtUtils::MM_NW5' => '2.06',
1081             'ExtUtils::MM_OS2' => '1.04',
1082             'ExtUtils::MM_UWIN' => '0.02',
1083             'ExtUtils::MM_Unix' => '1.42',
1084             'ExtUtils::MM_VMS' => '5.70',
1085             'ExtUtils::MM_Win32' => '1.09',
1086             'ExtUtils::MM_Win95' => '0.03',
1087             'ExtUtils::MY' => '0.01',
1088             'ExtUtils::MakeMaker' => '6.17',
1089             'ExtUtils::MakeMaker::bytes'=> '0.01',
1090             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1091             'ExtUtils::Manifest' => '1.42',
1092             'ExtUtils::Mkbootstrap' => '1.15',
1093             'ExtUtils::Mksymlists' => '1.19',
1094             'ExtUtils::Packlist' => '0.04',
1095             'ExtUtils::testlib' => '1.15',
1096             'File::Spec' => '0.86',
1097             'File::Spec::Cygwin' => '1.1',
1098             'File::Spec::Epoc' => '1.1',
1099             'File::Spec::Functions' => '1.3',
1100             'File::Spec::Mac' => '1.4',
1101             'File::Spec::OS2' => '1.2',
1102             'File::Spec::Unix' => '1.5',
1103             'File::Spec::VMS' => '1.4',
1104             'File::Spec::Win32' => '1.4',
1105             'File::Temp' => '0.14',
1106             'Safe' => '2.10',
1107             'Test' => '1.24',
1108             'Test::Builder' => '0.17',
1109             'Test::Harness' => '2.30',
1110             'Test::Harness::Assert' => '0.01',
1111             'Test::Harness::Iterator'=> '0.01',
1112             'Test::Harness::Straps' => '0.15',
1113             'Test::More' => '0.47',
1114             'Test::Simple' => '0.47',
1115             'Unicode' => '3.0.1',
1116             'if' => '0.03',
1117             'ops' => '1.00',
1118             },
1119             removed => {
1120             }
1121             },
1122             5.007003 => {
1123             delta_from => 5.006001,
1124             changed => {
1125             'AnyDBM_File' => '1.00',
1126             'Attribute::Handlers' => '0.76',
1127             'AutoLoader' => '5.59',
1128             'AutoSplit' => '1.0307',
1129             'B' => '1.00',
1130             'B::Asmdata' => '1.00',
1131             'B::Assembler' => '0.04',
1132             'B::Bblock' => '1.00',
1133             'B::Bytecode' => '1.00',
1134             'B::C' => '1.01',
1135             'B::CC' => '1.00',
1136             'B::Concise' => '0.52',
1137             'B::Debug' => '1.00',
1138             'B::Deparse' => '0.63',
1139             'B::Disassembler' => '1.01',
1140             'B::Lint' => '1.00',
1141             'B::Showlex' => '1.00',
1142             'B::Stackobj' => '1.00',
1143             'B::Stash' => '1.00',
1144             'B::Terse' => '1.00',
1145             'B::Xref' => '1.00',
1146             'Benchmark' => '1.04',
1147             'CGI' => '2.80',
1148             'CGI::Apache' => '1.00',
1149             'CGI::Carp' => '1.22',
1150             'CGI::Cookie' => '1.20',
1151             'CGI::Fast' => '1.04',
1152             'CGI::Pretty' => '1.05_00',
1153             'CGI::Switch' => '1.00',
1154             'CGI::Util' => '1.3',
1155             'CPAN' => '1.59_56',
1156             'CPAN::FirstTime' => '1.54',
1157             'CPAN::Nox' => '1.00_01',
1158             'Carp' => '1.01',
1159             'Carp::Heavy' => '1.01',
1160             'Class::ISA' => '0.32',
1161             'Class::Struct' => '0.61',
1162             'Cwd' => '2.06',
1163             'DB_File' => '1.804',
1164             'Data::Dumper' => '2.12',
1165             'Devel::DProf' => '20000000.00_01',
1166             'Devel::PPPort' => '2.0002',
1167             'Devel::Peek' => '1.00_03',
1168             'Devel::SelfStubber' => '1.03',
1169             'Digest' => '1.00',
1170             'Digest::MD5' => '2.16',
1171             'DirHandle' => '1.00',
1172             'Dumpvalue' => '1.10',
1173             'Encode' => '0.40',
1174             'Encode::CN' => '0.02',
1175             'Encode::CN::HZ' => undef,
1176             'Encode::Encoding' => '0.02',
1177             'Encode::Internal' => '0.30',
1178             'Encode::JP' => '0.02',
1179             'Encode::JP::Constants' => '1.02',
1180             'Encode::JP::H2Z' => '0.77',
1181             'Encode::JP::ISO_2022_JP'=> undef,
1182             'Encode::JP::JIS' => undef,
1183             'Encode::JP::Tr' => '0.77',
1184             'Encode::KR' => '0.02',
1185             'Encode::TW' => '0.02',
1186             'Encode::Tcl' => '1.01',
1187             'Encode::Tcl::Escape' => '1.01',
1188             'Encode::Tcl::Extended' => '1.01',
1189             'Encode::Tcl::HanZi' => '1.01',
1190             'Encode::Tcl::Table' => '1.01',
1191             'Encode::Unicode' => '0.30',
1192             'Encode::XS' => '0.40',
1193             'Encode::iso10646_1' => '0.30',
1194             'Encode::usc2_le' => '0.30',
1195             'Encode::utf8' => '0.30',
1196             'English' => '1.00',
1197             'Env' => '1.00',
1198             'Exporter' => '5.566',
1199             'Exporter::Heavy' => '5.562',
1200             'ExtUtils::Command' => '1.02',
1201             'ExtUtils::Constant' => '0.11',
1202             'ExtUtils::Embed' => '1.250601',
1203             'ExtUtils::Install' => '1.29',
1204             'ExtUtils::Installed' => '0.04',
1205             'ExtUtils::Liblist' => '1.2701',
1206             'ExtUtils::MM_BeOS' => '1.00',
1207             'ExtUtils::MM_Cygwin' => '1.00',
1208             'ExtUtils::MM_OS2' => '1.00',
1209             'ExtUtils::MM_Unix' => '1.12607',
1210             'ExtUtils::MM_VMS' => '5.56',
1211             'ExtUtils::MM_Win32' => '1.00_02',
1212             'ExtUtils::MakeMaker' => '5.48_03',
1213             'ExtUtils::Manifest' => '1.35',
1214             'ExtUtils::Mkbootstrap' => '1.1401',
1215             'ExtUtils::Mksymlists' => '1.18',
1216             'ExtUtils::Packlist' => '0.04',
1217             'ExtUtils::testlib' => '1.1201',
1218             'Fatal' => '1.03',
1219             'Fcntl' => '1.04',
1220             'File::Basename' => '2.71',
1221             'File::CheckTree' => '4.1',
1222             'File::Compare' => '1.1003',
1223             'File::Copy' => '2.05',
1224             'File::DosGlob' => '1.00',
1225             'File::Find' => '1.04',
1226             'File::Glob' => '1.01',
1227             'File::Path' => '1.05',
1228             'File::Spec' => '0.83',
1229             'File::Spec::Cygwin' => '1.0',
1230             'File::Spec::Epoc' => '1.00',
1231             'File::Spec::Functions' => '1.2',
1232             'File::Spec::Mac' => '1.3',
1233             'File::Spec::Unix' => '1.4',
1234             'File::Spec::VMS' => '1.2',
1235             'File::Spec::Win32' => '1.3',
1236             'File::Temp' => '0.13',
1237             'File::stat' => '1.00',
1238             'FileCache' => '1.00',
1239             'FileHandle' => '2.01',
1240             'Filter::Simple' => '0.77',
1241             'Filter::Util::Call' => '1.06',
1242             'FindBin' => '1.43',
1243             'GDBM_File' => '1.06',
1244             'Getopt::Long' => '2.28',
1245             'Getopt::Std' => '1.03',
1246             'I18N::Collate' => '1.00',
1247             'I18N::LangTags' => '0.27',
1248             'I18N::LangTags::List' => '0.25',
1249             'I18N::Langinfo' => '0.01',
1250             'IO::Dir' => '1.03_00',
1251             'IO::File' => '1.09',
1252             'IO::Handle' => '1.21_00',
1253             'IO::Pipe' => '1.122',
1254             'IO::Poll' => '0.06',
1255             'IO::Seekable' => '1.08_00',
1256             'IO::Select' => '1.15',
1257             'IO::Socket' => '1.27',
1258             'IO::Socket::INET' => '1.26',
1259             'IO::Socket::UNIX' => '1.20_00',
1260             'IPC::Msg' => '1.00_00',
1261             'IPC::Open3' => '1.0104',
1262             'IPC::Semaphore' => '1.00_00',
1263             'IPC::SysV' => '1.03_00',
1264             'List::Util' => '1.06_00',
1265             'Locale::Constants' => '2.01',
1266             'Locale::Country' => '2.01',
1267             'Locale::Currency' => '2.01',
1268             'Locale::Language' => '2.01',
1269             'Locale::Maketext' => '1.03',
1270             'Locale::Script' => '2.01',
1271             'MIME::Base64' => '2.12',
1272             'MIME::QuotedPrint' => '2.03',
1273             'Math::BigFloat' => '1.30',
1274             'Math::BigInt' => '1.54',
1275             'Math::BigInt::Calc' => '0.25',
1276             'Math::Complex' => '1.34',
1277             'Math::Trig' => '1.01',
1278             'Memoize' => '0.66',
1279             'Memoize::AnyDBM_File' => '0.65',
1280             'Memoize::Expire' => '0.66',
1281             'Memoize::ExpireFile' => '0.65',
1282             'Memoize::ExpireTest' => '0.65',
1283             'Memoize::NDBM_File' => '0.65',
1284             'Memoize::SDBM_File' => '0.65',
1285             'Memoize::Storable' => '0.65',
1286             'NEXT' => '0.50',
1287             'Net::Cmd' => '2.21',
1288             'Net::Config' => '1.10',
1289             'Net::Domain' => '2.17',
1290             'Net::FTP' => '2.64',
1291             'Net::FTP::A' => '1.15',
1292             'Net::FTP::E' => '0.01',
1293             'Net::FTP::I' => '1.12',
1294             'Net::FTP::L' => '0.01',
1295             'Net::FTP::dataconn' => '0.10',
1296             'Net::NNTP' => '2.21',
1297             'Net::Netrc' => '2.12',
1298             'Net::POP3' => '2.23',
1299             'Net::Ping' => '2.12',
1300             'Net::SMTP' => '2.21',
1301             'Net::Time' => '2.09',
1302             'Net::hostent' => '1.00',
1303             'Net::netent' => '1.00',
1304             'Net::protoent' => '1.00',
1305             'Net::servent' => '1.00',
1306             'O' => '1.00',
1307             'OS2::DLL' => '1.00',
1308             'OS2::Process' => '1.0',
1309             'OS2::REXX' => '1.01',
1310             'Opcode' => '1.05',
1311             'POSIX' => '1.05',
1312             'PerlIO' => '1.00',
1313             'PerlIO::Scalar' => '0.01',
1314             'PerlIO::Via' => '0.01',
1315             'Pod::Checker' => '1.3',
1316             'Pod::Find' => '0.22',
1317             'Pod::Functions' => '1.01',
1318             'Pod::Html' => '1.04',
1319             'Pod::LaTeX' => '0.54',
1320             'Pod::Man' => '1.32',
1321             'Pod::ParseLink' => '1.05',
1322             'Pod::Text' => '2.18',
1323             'Pod::Text::Color' => '1.03',
1324             'Pod::Text::Overstrike' => '1.08',
1325             'Pod::Text::Termcap' => '1.09',
1326             'Safe' => '2.07',
1327             'Scalar::Util' => '1.06_00',
1328             'Search::Dict' => '1.02',
1329             'SelectSaver' => '1.00',
1330             'SelfLoader' => '1.0903',
1331             'Shell' => '0.4',
1332             'Socket' => '1.75',
1333             'Storable' => '1.015',
1334             'Switch' => '2.06',
1335             'Symbol' => '1.04',
1336             'Sys::Syslog' => '0.02',
1337             'Term::ANSIColor' => '1.04',
1338             'Term::Cap' => '1.07',
1339             'Term::Complete' => '1.4',
1340             'Term::ReadLine' => '1.00',
1341             'Test' => '1.18',
1342             'Test::Builder' => '0.11',
1343             'Test::Harness' => '2.01',
1344             'Test::Harness::Assert' => '0.01',
1345             'Test::Harness::Iterator'=> '0.01',
1346             'Test::Harness::Straps' => '0.08',
1347             'Test::More' => '0.41',
1348             'Test::Simple' => '0.41',
1349             'Text::Abbrev' => '1.00',
1350             'Text::Balanced' => '1.89',
1351             'Text::ParseWords' => '3.21',
1352             'Text::Soundex' => '1.01',
1353             'Text::Wrap' => '2001.0929',
1354             'Thread' => '2.00',
1355             'Thread::Queue' => '1.00',
1356             'Thread::Semaphore' => '1.00',
1357             'Thread::Signal' => '1.00',
1358             'Thread::Specific' => '1.00',
1359             'Tie::Array' => '1.02',
1360             'Tie::File' => '0.17',
1361             'Tie::Handle' => '4.1',
1362             'Tie::Hash' => '1.00',
1363             'Tie::Memoize' => '1.0',
1364             'Tie::RefHash' => '1.3_00',
1365             'Tie::Scalar' => '1.00',
1366             'Tie::SubstrHash' => '1.00',
1367             'Time::HiRes' => '1.20_00',
1368             'Time::Local' => '1.04',
1369             'Time::gmtime' => '1.02',
1370             'Time::localtime' => '1.02',
1371             'Time::tm' => '1.00',
1372             'UNIVERSAL' => '1.00',
1373             'Unicode::Collate' => '0.10',
1374             'Unicode::Normalize' => '0.14',
1375             'Unicode::UCD' => '0.2',
1376             'User::grent' => '1.00',
1377             'User::pwent' => '1.00',
1378             'VMS::DCLsym' => '1.02',
1379             'VMS::Filespec' => '1.1',
1380             'VMS::Stdio' => '2.3',
1381             'XS::Typemap' => '0.01',
1382             'attributes' => '0.04_01',
1383             'attrs' => '1.01',
1384             'autouse' => '1.03',
1385             'base' => '1.02',
1386             'blib' => '1.01',
1387             'bytes' => '1.00',
1388             'charnames' => '1.01',
1389             'constant' => '1.04',
1390             'diagnostics' => '1.1',
1391             'encoding' => '1.00',
1392             'fields' => '1.02',
1393             'filetest' => '1.00',
1394             'if' => '0.01',
1395             'integer' => '1.00',
1396             'less' => '0.01',
1397             'locale' => '1.00',
1398             'open' => '1.01',
1399             'ops' => '1.00',
1400             'overload' => '1.00',
1401             're' => '0.03',
1402             'sort' => '1.00',
1403             'strict' => '1.02',
1404             'subs' => '1.00',
1405             'threads' => '0.05',
1406             'threads::shared' => '0.90',
1407             'utf8' => '1.00',
1408             'vars' => '1.01',
1409             'vmsish' => '1.00',
1410             'warnings' => '1.00',
1411             'warnings::register' => '1.00',
1412             },
1413             removed => {
1414             }
1415             },
1416             5.008 => {
1417             delta_from => 5.007003,
1418             changed => {
1419             'Attribute::Handlers' => '0.77',
1420             'B' => '1.01',
1421             'B::Lint' => '1.01',
1422             'B::Xref' => '1.01',
1423             'CGI' => '2.81',
1424             'CGI::Carp' => '1.23',
1425             'CPAN' => '1.61',
1426             'CPAN::FirstTime' => '1.56',
1427             'CPAN::Nox' => '1.02',
1428             'Digest::MD5' => '2.20',
1429             'Dumpvalue' => '1.11',
1430             'Encode' => '1.75',
1431             'Encode::Alias' => '1.32',
1432             'Encode::Byte' => '1.22',
1433             'Encode::CJKConstants' => '1.00',
1434             'Encode::CN' => '1.24',
1435             'Encode::CN::HZ' => '1.04',
1436             'Encode::Config' => '1.06',
1437             'Encode::EBCDIC' => '1.21',
1438             'Encode::Encoder' => '0.05',
1439             'Encode::Encoding' => '1.30',
1440             'Encode::Guess' => '1.06',
1441             'Encode::JP' => '1.25',
1442             'Encode::JP::H2Z' => '1.02',
1443             'Encode::JP::JIS7' => '1.08',
1444             'Encode::KR' => '1.22',
1445             'Encode::KR::2022_KR' => '1.05',
1446             'Encode::MIME::Header' => '1.05',
1447             'Encode::Symbol' => '1.22',
1448             'Encode::TW' => '1.26',
1449             'Encode::Unicode' => '1.37',
1450             'Exporter::Heavy' => '5.566',
1451             'ExtUtils::Command' => '1.04',
1452             'ExtUtils::Command::MM' => '0.01',
1453             'ExtUtils::Constant' => '0.12',
1454             'ExtUtils::Installed' => '0.06',
1455             'ExtUtils::Liblist' => '1.00',
1456             'ExtUtils::Liblist::Kid'=> '1.29',
1457             'ExtUtils::MM' => '0.04',
1458             'ExtUtils::MM_Any' => '0.04',
1459             'ExtUtils::MM_BeOS' => '1.03',
1460             'ExtUtils::MM_Cygwin' => '1.04',
1461             'ExtUtils::MM_DOS' => '0.01',
1462             'ExtUtils::MM_MacOS' => '1.03',
1463             'ExtUtils::MM_NW5' => '2.05',
1464             'ExtUtils::MM_OS2' => '1.03',
1465             'ExtUtils::MM_UWIN' => '0.01',
1466             'ExtUtils::MM_Unix' => '1.33',
1467             'ExtUtils::MM_VMS' => '5.65',
1468             'ExtUtils::MM_Win32' => '1.05',
1469             'ExtUtils::MM_Win95' => '0.02',
1470             'ExtUtils::MY' => '0.01',
1471             'ExtUtils::MakeMaker' => '6.03',
1472             'ExtUtils::Manifest' => '1.38',
1473             'ExtUtils::Mkbootstrap' => '1.15',
1474             'ExtUtils::Mksymlists' => '1.19',
1475             'ExtUtils::testlib' => '1.15',
1476             'File::CheckTree' => '4.2',
1477             'FileCache' => '1.021',
1478             'Filter::Simple' => '0.78',
1479             'Getopt::Long' => '2.32',
1480             'Hash::Util' => '0.04',
1481             'List::Util' => '1.07_00',
1482             'Locale::Country' => '2.04',
1483             'Math::BigFloat' => '1.35',
1484             'Math::BigFloat::Trace' => '0.01',
1485             'Math::BigInt' => '1.60',
1486             'Math::BigInt::Calc' => '0.30',
1487             'Math::BigInt::Trace' => '0.01',
1488             'Math::BigRat' => '0.07',
1489             'Memoize' => '1.01',
1490             'Memoize::Expire' => '1.00',
1491             'Memoize::ExpireFile' => '1.01',
1492             'Net::FTP' => '2.65',
1493             'Net::FTP::dataconn' => '0.11',
1494             'Net::Ping' => '2.19',
1495             'Net::SMTP' => '2.24',
1496             'PerlIO' => '1.01',
1497             'PerlIO::encoding' => '0.06',
1498             'PerlIO::scalar' => '0.01',
1499             'PerlIO::via' => '0.01',
1500             'PerlIO::via::QuotedPrint'=> '0.04',
1501             'Pod::Man' => '1.33',
1502             'Pod::Text' => '2.19',
1503             'Scalar::Util' => '1.07_00',
1504             'Storable' => '2.04',
1505             'Switch' => '2.09',
1506             'Sys::Syslog' => '0.03',
1507             'Test' => '1.20',
1508             'Test::Builder' => '0.15',
1509             'Test::Harness' => '2.26',
1510             'Test::Harness::Straps' => '0.14',
1511             'Test::More' => '0.45',
1512             'Test::Simple' => '0.45',
1513             'Thread::Queue' => '2.00',
1514             'Thread::Semaphore' => '2.00',
1515             'Tie::File' => '0.93',
1516             'Tie::RefHash' => '1.30',
1517             'Unicode' => '3.2.0',
1518             'Unicode::Collate' => '0.12',
1519             'Unicode::Normalize' => '0.17',
1520             'XS::APItest' => '0.01',
1521             'attributes' => '0.05',
1522             'base' => '1.03',
1523             'bigint' => '0.02',
1524             'bignum' => '0.11',
1525             'bigrat' => '0.04',
1526             'blib' => '1.02',
1527             'encoding' => '1.35',
1528             'sort' => '1.01',
1529             'threads' => '0.99',
1530             },
1531             removed => {
1532             'Encode::Internal' => 1,
1533             'Encode::JP::Constants' => 1,
1534             'Encode::JP::ISO_2022_JP'=> 1,
1535             'Encode::JP::JIS' => 1,
1536             'Encode::JP::Tr' => 1,
1537             'Encode::Tcl' => 1,
1538             'Encode::Tcl::Escape' => 1,
1539             'Encode::Tcl::Extended' => 1,
1540             'Encode::Tcl::HanZi' => 1,
1541             'Encode::Tcl::Table' => 1,
1542             'Encode::XS' => 1,
1543             'Encode::iso10646_1' => 1,
1544             'Encode::usc2_le' => 1,
1545             'Encode::utf8' => 1,
1546             'PerlIO::Scalar' => 1,
1547             'PerlIO::Via' => 1,
1548             }
1549             },
1550             5.008001 => {
1551             delta_from => 5.008,
1552             changed => {
1553             'Attribute::Handlers' => '0.78',
1554             'AutoLoader' => '5.60',
1555             'AutoSplit' => '1.04',
1556             'B' => '1.02',
1557             'B::Asmdata' => '1.01',
1558             'B::Assembler' => '0.06',
1559             'B::Bblock' => '1.02',
1560             'B::Bytecode' => '1.01',
1561             'B::C' => '1.02',
1562             'B::Concise' => '0.56',
1563             'B::Debug' => '1.01',
1564             'B::Deparse' => '0.64',
1565             'B::Disassembler' => '1.03',
1566             'B::Lint' => '1.02',
1567             'B::Terse' => '1.02',
1568             'Benchmark' => '1.051',
1569             'ByteLoader' => '0.05',
1570             'CGI' => '3.00',
1571             'CGI::Carp' => '1.26',
1572             'CGI::Cookie' => '1.24',
1573             'CGI::Fast' => '1.041',
1574             'CGI::Pretty' => '1.07_00',
1575             'CGI::Util' => '1.31',
1576             'CPAN' => '1.76_01',
1577             'CPAN::FirstTime' => '1.60',
1578             'CPAN::Nox' => '1.03',
1579             'Class::Struct' => '0.63',
1580             'Cwd' => '2.08',
1581             'DB_File' => '1.806',
1582             'Data::Dumper' => '2.121',
1583             'Devel::DProf' => '20030813.00',
1584             'Devel::PPPort' => '2.007',
1585             'Devel::Peek' => '1.01',
1586             'Digest' => '1.02',
1587             'Digest::MD5' => '2.27',
1588             'Encode' => '1.9801',
1589             'Encode::Alias' => '1.38',
1590             'Encode::Byte' => '1.23',
1591             'Encode::CJKConstants' => '1.02',
1592             'Encode::CN::HZ' => '1.05',
1593             'Encode::Config' => '1.07',
1594             'Encode::Encoder' => '0.07',
1595             'Encode::Encoding' => '1.33',
1596             'Encode::Guess' => '1.09',
1597             'Encode::JP::JIS7' => '1.12',
1598             'Encode::KR' => '1.23',
1599             'Encode::KR::2022_KR' => '1.06',
1600             'Encode::MIME::Header' => '1.09',
1601             'Encode::Unicode' => '1.40',
1602             'Encode::Unicode::UTF7' => '0.02',
1603             'English' => '1.01',
1604             'Errno' => '1.09_00',
1605             'Exporter' => '5.567',
1606             'Exporter::Heavy' => '5.567',
1607             'ExtUtils::Command' => '1.05',
1608             'ExtUtils::Command::MM' => '0.03',
1609             'ExtUtils::Constant' => '0.14',
1610             'ExtUtils::Install' => '1.32',
1611             'ExtUtils::Installed' => '0.08',
1612             'ExtUtils::Liblist' => '1.01',
1613             'ExtUtils::Liblist::Kid'=> '1.3',
1614             'ExtUtils::MM_Any' => '0.07',
1615             'ExtUtils::MM_BeOS' => '1.04',
1616             'ExtUtils::MM_Cygwin' => '1.06',
1617             'ExtUtils::MM_DOS' => '0.02',
1618             'ExtUtils::MM_MacOS' => '1.07',
1619             'ExtUtils::MM_NW5' => '2.06',
1620             'ExtUtils::MM_OS2' => '1.04',
1621             'ExtUtils::MM_UWIN' => '0.02',
1622             'ExtUtils::MM_Unix' => '1.42',
1623             'ExtUtils::MM_VMS' => '5.70',
1624             'ExtUtils::MM_Win32' => '1.09',
1625             'ExtUtils::MM_Win95' => '0.03',
1626             'ExtUtils::MakeMaker' => '6.17',
1627             'ExtUtils::MakeMaker::bytes'=> '0.01',
1628             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1629             'ExtUtils::Manifest' => '1.42',
1630             'Fcntl' => '1.05',
1631             'File::Basename' => '2.72',
1632             'File::Copy' => '2.06',
1633             'File::Find' => '1.05',
1634             'File::Glob' => '1.02',
1635             'File::Path' => '1.06',
1636             'File::Spec' => '0.86',
1637             'File::Spec::Cygwin' => '1.1',
1638             'File::Spec::Epoc' => '1.1',
1639             'File::Spec::Functions' => '1.3',
1640             'File::Spec::Mac' => '1.4',
1641             'File::Spec::OS2' => '1.2',
1642             'File::Spec::Unix' => '1.5',
1643             'File::Spec::VMS' => '1.4',
1644             'File::Spec::Win32' => '1.4',
1645             'File::Temp' => '0.14',
1646             'FileCache' => '1.03',
1647             'Filter::Util::Call' => '1.0601',
1648             'GDBM_File' => '1.07',
1649             'Getopt::Long' => '2.34',
1650             'Getopt::Std' => '1.04',
1651             'Hash::Util' => '0.05',
1652             'I18N::LangTags' => '0.28',
1653             'I18N::LangTags::List' => '0.26',
1654             'I18N::Langinfo' => '0.02',
1655             'IO' => '1.21',
1656             'IO::Dir' => '1.04',
1657             'IO::File' => '1.10',
1658             'IO::Handle' => '1.23',
1659             'IO::Seekable' => '1.09',
1660             'IO::Select' => '1.16',
1661             'IO::Socket' => '1.28',
1662             'IO::Socket::INET' => '1.27',
1663             'IO::Socket::UNIX' => '1.21',
1664             'IPC::Msg' => '1.02',
1665             'IPC::Open3' => '1.0105',
1666             'IPC::Semaphore' => '1.02',
1667             'IPC::SysV' => '1.04',
1668             'JNI' => '0.2',
1669             'List::Util' => '1.13',
1670             'Locale::Country' => '2.61',
1671             'Locale::Currency' => '2.21',
1672             'Locale::Language' => '2.21',
1673             'Locale::Maketext' => '1.06',
1674             'Locale::Maketext::Guts'=> undef,
1675             'Locale::Maketext::GutsLoader'=> undef,
1676             'Locale::Script' => '2.21',
1677             'MIME::Base64' => '2.20',
1678             'MIME::QuotedPrint' => '2.20',
1679             'Math::BigFloat' => '1.40',
1680             'Math::BigInt' => '1.66',
1681             'Math::BigInt::Calc' => '0.36',
1682             'Math::BigInt::Scalar' => '0.11',
1683             'Math::BigRat' => '0.10',
1684             'Math::Trig' => '1.02',
1685             'NDBM_File' => '1.05',
1686             'NEXT' => '0.60',
1687             'Net::Cmd' => '2.24',
1688             'Net::Domain' => '2.18',
1689             'Net::FTP' => '2.71',
1690             'Net::FTP::A' => '1.16',
1691             'Net::NNTP' => '2.22',
1692             'Net::POP3' => '2.24',
1693             'Net::Ping' => '2.31',
1694             'Net::SMTP' => '2.26',
1695             'Net::hostent' => '1.01',
1696             'Net::servent' => '1.01',
1697             'ODBM_File' => '1.04',
1698             'OS2::DLL' => '1.01',
1699             'OS2::ExtAttr' => '0.02',
1700             'OS2::PrfDB' => '0.03',
1701             'OS2::Process' => '1.01',
1702             'OS2::REXX' => '1.02',
1703             'POSIX' => '1.06',
1704             'PerlIO' => '1.02',
1705             'PerlIO::encoding' => '0.07',
1706             'PerlIO::scalar' => '0.02',
1707             'PerlIO::via' => '0.02',
1708             'PerlIO::via::QuotedPrint'=> '0.05',
1709             'Pod::Checker' => '1.41',
1710             'Pod::Find' => '0.24',
1711             'Pod::Functions' => '1.02',
1712             'Pod::Html' => '1.0501',
1713             'Pod::InputObjects' => '1.14',
1714             'Pod::LaTeX' => '0.55',
1715             'Pod::Man' => '1.37',
1716             'Pod::ParseLink' => '1.06',
1717             'Pod::ParseUtils' => '0.3',
1718             'Pod::Perldoc' => '3.10',
1719             'Pod::Perldoc::BaseTo' => undef,
1720             'Pod::Perldoc::GetOptsOO'=> undef,
1721             'Pod::Perldoc::ToChecker'=> undef,
1722             'Pod::Perldoc::ToMan' => undef,
1723             'Pod::Perldoc::ToNroff' => undef,
1724             'Pod::Perldoc::ToPod' => undef,
1725             'Pod::Perldoc::ToRtf' => undef,
1726             'Pod::Perldoc::ToText' => undef,
1727             'Pod::Perldoc::ToTk' => undef,
1728             'Pod::Perldoc::ToXml' => undef,
1729             'Pod::PlainText' => '2.01',
1730             'Pod::Text' => '2.21',
1731             'Pod::Text::Color' => '1.04',
1732             'Pod::Text::Overstrike' => '1.1',
1733             'Pod::Text::Termcap' => '1.11',
1734             'Pod::Usage' => '1.16',
1735             'SDBM_File' => '1.04',
1736             'Safe' => '2.10',
1737             'Scalar::Util' => '1.13',
1738             'SelfLoader' => '1.0904',
1739             'Shell' => '0.5',
1740             'Socket' => '1.76',
1741             'Storable' => '2.08',
1742             'Switch' => '2.10',
1743             'Symbol' => '1.05',
1744             'Sys::Hostname' => '1.11',
1745             'Sys::Syslog' => '0.04',
1746             'Term::ANSIColor' => '1.07',
1747             'Term::Cap' => '1.08',
1748             'Term::Complete' => '1.401',
1749             'Term::ReadLine' => '1.01',
1750             'Test' => '1.24',
1751             'Test::Builder' => '0.17',
1752             'Test::Harness' => '2.30',
1753             'Test::Harness::Straps' => '0.15',
1754             'Test::More' => '0.47',
1755             'Test::Simple' => '0.47',
1756             'Text::Abbrev' => '1.01',
1757             'Text::Balanced' => '1.95',
1758             'Text::Wrap' => '2001.09291',
1759             'Thread::Semaphore' => '2.01',
1760             'Tie::Array' => '1.03',
1761             'Tie::File' => '0.97',
1762             'Tie::RefHash' => '1.31',
1763             'Time::HiRes' => '1.51',
1764             'Time::Local' => '1.07',
1765             'UNIVERSAL' => '1.01',
1766             'Unicode' => '4.0.0',
1767             'Unicode::Collate' => '0.28',
1768             'Unicode::Normalize' => '0.23',
1769             'Unicode::UCD' => '0.21',
1770             'VMS::Filespec' => '1.11',
1771             'XS::APItest' => '0.02',
1772             'XSLoader' => '0.02',
1773             'attributes' => '0.06',
1774             'base' => '2.03',
1775             'bigint' => '0.04',
1776             'bignum' => '0.14',
1777             'bigrat' => '0.06',
1778             'bytes' => '1.01',
1779             'charnames' => '1.02',
1780             'diagnostics' => '1.11',
1781             'encoding' => '1.47',
1782             'fields' => '2.03',
1783             'filetest' => '1.01',
1784             'if' => '0.03',
1785             'lib' => '0.5565',
1786             'open' => '1.02',
1787             'overload' => '1.01',
1788             're' => '0.04',
1789             'sort' => '1.02',
1790             'strict' => '1.03',
1791             'threads' => '1.00',
1792             'threads::shared' => '0.91',
1793             'utf8' => '1.02',
1794             'vmsish' => '1.01',
1795             'warnings' => '1.03',
1796             },
1797             removed => {
1798             }
1799             },
1800             5.008002 => {
1801             delta_from => 5.008001,
1802             changed => {
1803             'DB_File' => '1.807',
1804             'Devel::PPPort' => '2.009',
1805             'Digest::MD5' => '2.30',
1806             'I18N::LangTags' => '0.29',
1807             'I18N::LangTags::List' => '0.29',
1808             'MIME::Base64' => '2.21',
1809             'MIME::QuotedPrint' => '2.21',
1810             'Net::Domain' => '2.19',
1811             'Net::FTP' => '2.72',
1812             'Pod::Perldoc' => '3.11',
1813             'Time::HiRes' => '1.52',
1814             'Unicode::Collate' => '0.30',
1815             'Unicode::Normalize' => '0.25',
1816             },
1817             removed => {
1818             }
1819             },
1820             5.008003 => {
1821             delta_from => 5.008002,
1822             changed => {
1823             'Benchmark' => '1.052',
1824             'CGI' => '3.01',
1825             'CGI::Carp' => '1.27',
1826             'CGI::Fast' => '1.05',
1827             'CGI::Pretty' => '1.08',
1828             'CGI::Util' => '1.4',
1829             'Cwd' => '2.12',
1830             'DB_File' => '1.808',
1831             'Devel::PPPort' => '2.011',
1832             'Digest' => '1.05',
1833             'Digest::MD5' => '2.33',
1834             'Digest::base' => '1.00',
1835             'Encode' => '1.99',
1836             'Exporter' => '5.57',
1837             'File::CheckTree' => '4.3',
1838             'File::Copy' => '2.07',
1839             'File::Find' => '1.06',
1840             'File::Spec' => '0.87',
1841             'FindBin' => '1.44',
1842             'Getopt::Std' => '1.05',
1843             'Math::BigFloat' => '1.42',
1844             'Math::BigInt' => '1.68',
1845             'Math::BigInt::Calc' => '0.38',
1846             'Math::BigInt::CalcEmu' => '0.02',
1847             'OS2::DLL' => '1.02',
1848             'POSIX' => '1.07',
1849             'PerlIO' => '1.03',
1850             'PerlIO::via::QuotedPrint'=> '0.06',
1851             'Pod::Html' => '1.0502',
1852             'Pod::Parser' => '1.14',
1853             'Pod::Perldoc' => '3.12',
1854             'Pod::PlainText' => '2.02',
1855             'Storable' => '2.09',
1856             'Test::Harness' => '2.40',
1857             'Test::Harness::Assert' => '0.02',
1858             'Test::Harness::Iterator'=> '0.02',
1859             'Test::Harness::Straps' => '0.19',
1860             'Tie::Hash' => '1.01',
1861             'Unicode::Collate' => '0.33',
1862             'Unicode::Normalize' => '0.28',
1863             'XS::APItest' => '0.03',
1864             'base' => '2.04',
1865             'diagnostics' => '1.12',
1866             'encoding' => '1.48',
1867             'threads' => '1.01',
1868             'threads::shared' => '0.92',
1869             },
1870             removed => {
1871             'Math::BigInt::Scalar' => 1,
1872             }
1873             },
1874             5.008004 => {
1875             delta_from => 5.008003,
1876             changed => {
1877             'Attribute::Handlers' => '0.78_01',
1878             'B::Assembler' => '0.07',
1879             'B::Concise' => '0.60',
1880             'B::Deparse' => '0.66',
1881             'Benchmark' => '1.06',
1882             'CGI' => '3.04',
1883             'Carp' => '1.02',
1884             'Cwd' => '2.17',
1885             'DBM_Filter' => '0.01',
1886             'DBM_Filter::compress' => '0.01',
1887             'DBM_Filter::encode' => '0.01',
1888             'DBM_Filter::int32' => '0.01',
1889             'DBM_Filter::null' => '0.01',
1890             'DBM_Filter::utf8' => '0.01',
1891             'Digest' => '1.06',
1892             'DynaLoader' => '1.05',
1893             'Encode' => '1.99_01',
1894             'Encode::CN::HZ' => '1.0501',
1895             'Exporter' => '5.58',
1896             'Exporter::Heavy' => '5.57',
1897             'ExtUtils::Liblist::Kid'=> '1.3001',
1898             'ExtUtils::MM_NW5' => '2.07_02',
1899             'ExtUtils::MM_Win95' => '0.0301',
1900             'File::Find' => '1.07',
1901             'IO::Handle' => '1.24',
1902             'IO::Pipe' => '1.123',
1903             'IPC::Open3' => '1.0106',
1904             'Locale::Maketext' => '1.08',
1905             'MIME::Base64' => '3.01',
1906             'MIME::QuotedPrint' => '3.01',
1907             'Math::BigFloat' => '1.44',
1908             'Math::BigInt' => '1.70',
1909             'Math::BigInt::Calc' => '0.40',
1910             'Math::BigInt::CalcEmu' => '0.04',
1911             'Math::BigRat' => '0.12',
1912             'ODBM_File' => '1.05',
1913             'POSIX' => '1.08',
1914             'Shell' => '0.5.2',
1915             'Socket' => '1.77',
1916             'Storable' => '2.12',
1917             'Sys::Syslog' => '0.05',
1918             'Term::ANSIColor' => '1.08',
1919             'Time::HiRes' => '1.59',
1920             'Unicode' => '4.0.1',
1921             'Unicode::UCD' => '0.22',
1922             'Win32' => '0.23',
1923             'base' => '2.05',
1924             'bigint' => '0.05',
1925             'bignum' => '0.15',
1926             'charnames' => '1.03',
1927             'open' => '1.03',
1928             'threads' => '1.03',
1929             'utf8' => '1.03',
1930             },
1931             removed => {
1932             }
1933             },
1934             5.008005 => {
1935             delta_from => 5.008004,
1936             changed => {
1937             'B::Concise' => '0.61',
1938             'B::Deparse' => '0.67',
1939             'CGI' => '3.05',
1940             'CGI::Carp' => '1.28',
1941             'CGI::Util' => '1.5',
1942             'Carp' => '1.03',
1943             'Carp::Heavy' => '1.03',
1944             'Cwd' => '2.19',
1945             'DB_File' => '1.809',
1946             'Digest' => '1.08',
1947             'Encode' => '2.01',
1948             'Encode::Alias' => '2.00',
1949             'Encode::Byte' => '2.00',
1950             'Encode::CJKConstants' => '2.00',
1951             'Encode::CN' => '2.00',
1952             'Encode::CN::HZ' => '2.01',
1953             'Encode::Config' => '2.00',
1954             'Encode::EBCDIC' => '2.00',
1955             'Encode::Encoder' => '2.00',
1956             'Encode::Encoding' => '2.00',
1957             'Encode::Guess' => '2.00',
1958             'Encode::JP' => '2.00',
1959             'Encode::JP::H2Z' => '2.00',
1960             'Encode::JP::JIS7' => '2.00',
1961             'Encode::KR' => '2.00',
1962             'Encode::KR::2022_KR' => '2.00',
1963             'Encode::MIME::Header' => '2.00',
1964             'Encode::Symbol' => '2.00',
1965             'Encode::TW' => '2.00',
1966             'Encode::Unicode' => '2.00',
1967             'Encode::Unicode::UTF7' => '2.01',
1968             'File::Basename' => '2.73',
1969             'File::Copy' => '2.08',
1970             'File::Glob' => '1.03',
1971             'FileCache' => '1.04_01',
1972             'I18N::LangTags' => '0.33',
1973             'I18N::LangTags::Detect'=> '1.03',
1974             'List::Util' => '1.14',
1975             'Locale::Constants' => '2.07',
1976             'Locale::Country' => '2.07',
1977             'Locale::Currency' => '2.07',
1978             'Locale::Language' => '2.07',
1979             'Locale::Maketext' => '1.09',
1980             'Locale::Script' => '2.07',
1981             'Net::Cmd' => '2.26',
1982             'Net::FTP' => '2.75',
1983             'Net::NNTP' => '2.23',
1984             'Net::POP3' => '2.28',
1985             'Net::SMTP' => '2.29',
1986             'Net::Time' => '2.10',
1987             'Pod::Checker' => '1.42',
1988             'Pod::Find' => '0.2401',
1989             'Pod::LaTeX' => '0.56',
1990             'Pod::ParseUtils' => '1.2',
1991             'Pod::Perldoc' => '3.13',
1992             'Safe' => '2.11',
1993             'Scalar::Util' => '1.14',
1994             'Shell' => '0.6',
1995             'Storable' => '2.13',
1996             'Term::Cap' => '1.09',
1997             'Test' => '1.25',
1998             'Test::Harness' => '2.42',
1999             'Text::ParseWords' => '3.22',
2000             'Text::Wrap' => '2001.09292',
2001             'Time::Local' => '1.10',
2002             'Unicode::Collate' => '0.40',
2003             'Unicode::Normalize' => '0.30',
2004             'XS::APItest' => '0.04',
2005             'autouse' => '1.04',
2006             'base' => '2.06',
2007             'charnames' => '1.04',
2008             'diagnostics' => '1.13',
2009             'encoding' => '2.00',
2010             'threads' => '1.05',
2011             'utf8' => '1.04',
2012             },
2013             removed => {
2014             }
2015             },
2016             5.008006 => {
2017             delta_from => 5.008005,
2018             changed => {
2019             'B' => '1.07',
2020             'B::C' => '1.04',
2021             'B::Concise' => '0.64',
2022             'B::Debug' => '1.02',
2023             'B::Deparse' => '0.69',
2024             'B::Lint' => '1.03',
2025             'B::Showlex' => '1.02',
2026             'Cwd' => '3.01',
2027             'DB_File' => '1.810',
2028             'Data::Dumper' => '2.121_02',
2029             'Devel::PPPort' => '3.03',
2030             'Devel::Peek' => '1.02',
2031             'Encode' => '2.08',
2032             'Encode::Alias' => '2.02',
2033             'Encode::Encoding' => '2.02',
2034             'Encode::JP' => '2.01',
2035             'Encode::Unicode' => '2.02',
2036             'Exporter::Heavy' => '5.58',
2037             'ExtUtils::Constant' => '0.1401',
2038             'File::Spec' => '3.01',
2039             'File::Spec::Win32' => '1.5',
2040             'I18N::LangTags' => '0.35',
2041             'I18N::LangTags::List' => '0.35',
2042             'MIME::Base64' => '3.05',
2043             'MIME::QuotedPrint' => '3.03',
2044             'Math::BigFloat' => '1.47',
2045             'Math::BigInt' => '1.73',
2046             'Math::BigInt::Calc' => '0.43',
2047             'Math::BigRat' => '0.13',
2048             'Text::ParseWords' => '3.23',
2049             'Time::HiRes' => '1.65',
2050             'XS::APItest' => '0.05',
2051             'diagnostics' => '1.14',
2052             'encoding' => '2.01',
2053             'open' => '1.04',
2054             'overload' => '1.02',
2055             },
2056             removed => {
2057             }
2058             },
2059             5.008007 => {
2060             delta_from => 5.008006,
2061             changed => {
2062             'B' => '1.09',
2063             'B::Concise' => '0.65',
2064             'B::Deparse' => '0.7',
2065             'B::Disassembler' => '1.04',
2066             'B::Terse' => '1.03',
2067             'Benchmark' => '1.07',
2068             'CGI' => '3.10',
2069             'CGI::Carp' => '1.29',
2070             'CGI::Cookie' => '1.25',
2071             'Carp' => '1.04',
2072             'Carp::Heavy' => '1.04',
2073             'Class::ISA' => '0.33',
2074             'Cwd' => '3.05',
2075             'DB_File' => '1.811',
2076             'Data::Dumper' => '2.121_04',
2077             'Devel::DProf' => '20050310.00',
2078             'Devel::PPPort' => '3.06',
2079             'Digest' => '1.10',
2080             'Digest::file' => '0.01',
2081             'Encode' => '2.10',
2082             'Encode::Alias' => '2.03',
2083             'Errno' => '1.09_01',
2084             'ExtUtils::Constant' => '0.16',
2085             'ExtUtils::Constant::Base'=> '0.01',
2086             'ExtUtils::Constant::Utils'=> '0.01',
2087             'ExtUtils::Constant::XS'=> '0.01',
2088             'File::Find' => '1.09',
2089             'File::Glob' => '1.04',
2090             'File::Path' => '1.07',
2091             'File::Spec' => '3.05',
2092             'File::Temp' => '0.16',
2093             'FileCache' => '1.05',
2094             'IO::File' => '1.11',
2095             'IO::Socket::INET' => '1.28',
2096             'Math::BigFloat' => '1.51',
2097             'Math::BigInt' => '1.77',
2098             'Math::BigInt::Calc' => '0.47',
2099             'Math::BigInt::CalcEmu' => '0.05',
2100             'Math::BigRat' => '0.15',
2101             'Pod::Find' => '1.3',
2102             'Pod::Html' => '1.0503',
2103             'Pod::InputObjects' => '1.3',
2104             'Pod::LaTeX' => '0.58',
2105             'Pod::ParseUtils' => '1.3',
2106             'Pod::Parser' => '1.3',
2107             'Pod::Perldoc' => '3.14',
2108             'Pod::Select' => '1.3',
2109             'Pod::Usage' => '1.3',
2110             'SelectSaver' => '1.01',
2111             'Symbol' => '1.06',
2112             'Sys::Syslog' => '0.06',
2113             'Term::ANSIColor' => '1.09',
2114             'Term::Complete' => '1.402',
2115             'Test::Builder' => '0.22',
2116             'Test::Harness' => '2.48',
2117             'Test::Harness::Point' => '0.01',
2118             'Test::Harness::Straps' => '0.23',
2119             'Test::More' => '0.54',
2120             'Test::Simple' => '0.54',
2121             'Text::ParseWords' => '3.24',
2122             'Text::Wrap' => '2001.09293',
2123             'Tie::RefHash' => '1.32',
2124             'Time::HiRes' => '1.66',
2125             'Time::Local' => '1.11',
2126             'Unicode' => '4.1.0',
2127             'Unicode::Normalize' => '0.32',
2128             'Unicode::UCD' => '0.23',
2129             'Win32' => '0.24',
2130             'XS::APItest' => '0.06',
2131             'base' => '2.07',
2132             'bigint' => '0.07',
2133             'bignum' => '0.17',
2134             'bigrat' => '0.08',
2135             'bytes' => '1.02',
2136             'constant' => '1.05',
2137             'overload' => '1.03',
2138             'threads::shared' => '0.93',
2139             'utf8' => '1.05',
2140             },
2141             removed => {
2142             'JNI' => 1,
2143             'JPL::AutoLoader' => 1,
2144             'JPL::Class' => 1,
2145             'JPL::Compile' => 1,
2146             }
2147             },
2148             5.008008 => {
2149             delta_from => 5.008007,
2150             changed => {
2151             'Attribute::Handlers' => '0.78_02',
2152             'B' => '1.09_01',
2153             'B::Bblock' => '1.02_01',
2154             'B::Bytecode' => '1.01_01',
2155             'B::C' => '1.04_01',
2156             'B::CC' => '1.00_01',
2157             'B::Concise' => '0.66',
2158             'B::Debug' => '1.02_01',
2159             'B::Deparse' => '0.71',
2160             'B::Disassembler' => '1.05',
2161             'B::Terse' => '1.03_01',
2162             'ByteLoader' => '0.06',
2163             'CGI' => '3.15',
2164             'CGI::Cookie' => '1.26',
2165             'CPAN' => '1.76_02',
2166             'Cwd' => '3.12',
2167             'DB' => '1.01',
2168             'DB_File' => '1.814',
2169             'Data::Dumper' => '2.121_08',
2170             'Devel::DProf' => '20050603.00',
2171             'Devel::PPPort' => '3.06_01',
2172             'Devel::Peek' => '1.03',
2173             'Digest' => '1.14',
2174             'Digest::MD5' => '2.36',
2175             'Digest::file' => '1.00',
2176             'Dumpvalue' => '1.12',
2177             'Encode' => '2.12',
2178             'Encode::Alias' => '2.04',
2179             'Encode::Config' => '2.01',
2180             'Encode::MIME::Header' => '2.01',
2181             'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2182             'English' => '1.02',
2183             'ExtUtils::Command' => '1.09',
2184             'ExtUtils::Command::MM' => '0.05',
2185             'ExtUtils::Constant' => '0.17',
2186             'ExtUtils::Embed' => '1.26',
2187             'ExtUtils::Install' => '1.33',
2188             'ExtUtils::Liblist::Kid'=> '1.3',
2189             'ExtUtils::MM' => '0.05',
2190             'ExtUtils::MM_AIX' => '0.03',
2191             'ExtUtils::MM_Any' => '0.13',
2192             'ExtUtils::MM_BeOS' => '1.05',
2193             'ExtUtils::MM_Cygwin' => '1.08',
2194             'ExtUtils::MM_MacOS' => '1.08',
2195             'ExtUtils::MM_NW5' => '2.08',
2196             'ExtUtils::MM_OS2' => '1.05',
2197             'ExtUtils::MM_QNX' => '0.02',
2198             'ExtUtils::MM_Unix' => '1.50',
2199             'ExtUtils::MM_VMS' => '5.73',
2200             'ExtUtils::MM_VOS' => '0.02',
2201             'ExtUtils::MM_Win32' => '1.12',
2202             'ExtUtils::MM_Win95' => '0.04',
2203             'ExtUtils::MakeMaker' => '6.30',
2204             'ExtUtils::MakeMaker::Config'=> '0.02',
2205             'ExtUtils::Manifest' => '1.46',
2206             'File::Basename' => '2.74',
2207             'File::Copy' => '2.09',
2208             'File::Find' => '1.10',
2209             'File::Glob' => '1.05',
2210             'File::Path' => '1.08',
2211             'File::Spec' => '3.12',
2212             'File::Spec::Win32' => '1.6',
2213             'FileCache' => '1.06',
2214             'Filter::Simple' => '0.82',
2215             'FindBin' => '1.47',
2216             'GDBM_File' => '1.08',
2217             'Getopt::Long' => '2.35',
2218             'IO' => '1.22',
2219             'IO::Dir' => '1.05',
2220             'IO::File' => '1.13',
2221             'IO::Handle' => '1.25',
2222             'IO::Pipe' => '1.13',
2223             'IO::Poll' => '0.07',
2224             'IO::Seekable' => '1.10',
2225             'IO::Select' => '1.17',
2226             'IO::Socket' => '1.29',
2227             'IO::Socket::INET' => '1.29',
2228             'IO::Socket::UNIX' => '1.22',
2229             'IPC::Open2' => '1.02',
2230             'IPC::Open3' => '1.02',
2231             'List::Util' => '1.18',
2232             'MIME::Base64' => '3.07',
2233             'MIME::QuotedPrint' => '3.07',
2234             'Math::Complex' => '1.35',
2235             'Math::Trig' => '1.03',
2236             'NDBM_File' => '1.06',
2237             'ODBM_File' => '1.06',
2238             'OS2::PrfDB' => '0.04',
2239             'OS2::Process' => '1.02',
2240             'OS2::REXX' => '1.03',
2241             'Opcode' => '1.06',
2242             'POSIX' => '1.09',
2243             'PerlIO' => '1.04',
2244             'PerlIO::encoding' => '0.09',
2245             'PerlIO::scalar' => '0.04',
2246             'PerlIO::via' => '0.03',
2247             'Pod::Checker' => '1.43',
2248             'Pod::Find' => '1.34',
2249             'Pod::Functions' => '1.03',
2250             'Pod::Html' => '1.0504',
2251             'Pod::ParseUtils' => '1.33',
2252             'Pod::Parser' => '1.32',
2253             'Pod::Usage' => '1.33',
2254             'SDBM_File' => '1.05',
2255             'Safe' => '2.12',
2256             'Scalar::Util' => '1.18',
2257             'Socket' => '1.78',
2258             'Storable' => '2.15',
2259             'Switch' => '2.10_01',
2260             'Sys::Syslog' => '0.13',
2261             'Term::ANSIColor' => '1.10',
2262             'Term::ReadLine' => '1.02',
2263             'Test::Builder' => '0.32',
2264             'Test::Builder::Module' => '0.02',
2265             'Test::Builder::Tester' => '1.02',
2266             'Test::Builder::Tester::Color'=> undef,
2267             'Test::Harness' => '2.56',
2268             'Test::Harness::Straps' => '0.26',
2269             'Test::More' => '0.62',
2270             'Test::Simple' => '0.62',
2271             'Text::Tabs' => '2005.0824',
2272             'Text::Wrap' => '2005.082401',
2273             'Tie::Hash' => '1.02',
2274             'Time::HiRes' => '1.86',
2275             'Unicode::Collate' => '0.52',
2276             'Unicode::UCD' => '0.24',
2277             'User::grent' => '1.01',
2278             'Win32' => '0.2601',
2279             'XS::APItest' => '0.08',
2280             'XS::Typemap' => '0.02',
2281             'XSLoader' => '0.06',
2282             'attrs' => '1.02',
2283             'autouse' => '1.05',
2284             'blib' => '1.03',
2285             'charnames' => '1.05',
2286             'diagnostics' => '1.15',
2287             'encoding' => '2.02',
2288             'if' => '0.05',
2289             'open' => '1.05',
2290             'ops' => '1.01',
2291             'overload' => '1.04',
2292             're' => '0.05',
2293             'threads' => '1.07',
2294             'threads::shared' => '0.94',
2295             'utf8' => '1.06',
2296             'vmsish' => '1.02',
2297             'warnings' => '1.05',
2298             'warnings::register' => '1.01',
2299             },
2300             removed => {
2301             }
2302             },
2303             5.008009 => {
2304             delta_from => 5.008008,
2305             changed => {
2306             'Attribute::Handlers' => '0.78_03',
2307             'AutoLoader' => '5.67',
2308             'AutoSplit' => '1.06',
2309             'B' => '1.19',
2310             'B::Asmdata' => '1.02',
2311             'B::Assembler' => '0.08',
2312             'B::C' => '1.05',
2313             'B::Concise' => '0.76',
2314             'B::Debug' => '1.05',
2315             'B::Deparse' => '0.87',
2316             'B::Lint' => '1.11',
2317             'B::Lint::Debug' => undef,
2318             'B::Terse' => '1.05',
2319             'Benchmark' => '1.1',
2320             'CGI' => '3.42',
2321             'CGI::Carp' => '1.30_01',
2322             'CGI::Cookie' => '1.29',
2323             'CGI::Fast' => '1.07',
2324             'CGI::Util' => '1.5_01',
2325             'CPAN' => '1.9301',
2326             'CPAN::Debug' => '5.5',
2327             'CPAN::DeferedCode' => '5.50',
2328             'CPAN::Distroprefs' => '6',
2329             'CPAN::FirstTime' => '5.5_01',
2330             'CPAN::HandleConfig' => '5.5',
2331             'CPAN::Kwalify' => '5.50',
2332             'CPAN::Nox' => '5.50',
2333             'CPAN::Queue' => '5.5',
2334             'CPAN::Tarzip' => '5.5',
2335             'CPAN::Version' => '5.5',
2336             'Carp' => '1.10',
2337             'Carp::Heavy' => '1.10',
2338             'Cwd' => '3.29',
2339             'DBM_Filter' => '0.02',
2340             'DBM_Filter::compress' => '0.02',
2341             'DBM_Filter::encode' => '0.02',
2342             'DBM_Filter::int32' => '0.02',
2343             'DBM_Filter::null' => '0.02',
2344             'DBM_Filter::utf8' => '0.02',
2345             'DB_File' => '1.817',
2346             'Data::Dumper' => '2.121_17',
2347             'Devel::DProf' => '20080331.00',
2348             'Devel::InnerPackage' => '0.3',
2349             'Devel::PPPort' => '3.14',
2350             'Devel::Peek' => '1.04',
2351             'Digest' => '1.15',
2352             'Digest::MD5' => '2.37',
2353             'DirHandle' => '1.02',
2354             'DynaLoader' => '1.09',
2355             'Encode' => '2.26',
2356             'Encode::Alias' => '2.10',
2357             'Encode::Byte' => '2.03',
2358             'Encode::CJKConstants' => '2.02',
2359             'Encode::CN' => '2.02',
2360             'Encode::CN::HZ' => '2.05',
2361             'Encode::Config' => '2.05',
2362             'Encode::EBCDIC' => '2.02',
2363             'Encode::Encoder' => '2.01',
2364             'Encode::Encoding' => '2.05',
2365             'Encode::GSM0338' => '2.01',
2366             'Encode::Guess' => '2.02',
2367             'Encode::JP' => '2.03',
2368             'Encode::JP::H2Z' => '2.02',
2369             'Encode::JP::JIS7' => '2.04',
2370             'Encode::KR' => '2.02',
2371             'Encode::KR::2022_KR' => '2.02',
2372             'Encode::MIME::Header' => '2.05',
2373             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2374             'Encode::MIME::Name' => '1.01',
2375             'Encode::Symbol' => '2.02',
2376             'Encode::TW' => '2.02',
2377             'Encode::Unicode' => '2.05',
2378             'Encode::Unicode::UTF7' => '2.04',
2379             'English' => '1.03',
2380             'Errno' => '1.10',
2381             'Exporter' => '5.63',
2382             'Exporter::Heavy' => '5.63',
2383             'ExtUtils::Command' => '1.15',
2384             'ExtUtils::Command::MM' => '6.48',
2385             'ExtUtils::Constant' => '0.21',
2386             'ExtUtils::Constant::Base'=> '0.04',
2387             'ExtUtils::Constant::ProxySubs'=> '0.06',
2388             'ExtUtils::Constant::Utils'=> '0.02',
2389             'ExtUtils::Constant::XS'=> '0.02',
2390             'ExtUtils::Embed' => '1.28',
2391             'ExtUtils::Install' => '1.50_01',
2392             'ExtUtils::Installed' => '1.43',
2393             'ExtUtils::Liblist' => '6.48',
2394             'ExtUtils::Liblist::Kid'=> '6.48',
2395             'ExtUtils::MM' => '6.48',
2396             'ExtUtils::MM_AIX' => '6.48',
2397             'ExtUtils::MM_Any' => '6.48',
2398             'ExtUtils::MM_BeOS' => '6.48',
2399             'ExtUtils::MM_Cygwin' => '6.48',
2400             'ExtUtils::MM_DOS' => '6.48',
2401             'ExtUtils::MM_Darwin' => '6.48',
2402             'ExtUtils::MM_MacOS' => '6.48',
2403             'ExtUtils::MM_NW5' => '6.48',
2404             'ExtUtils::MM_OS2' => '6.48',
2405             'ExtUtils::MM_QNX' => '6.48',
2406             'ExtUtils::MM_UWIN' => '6.48',
2407             'ExtUtils::MM_Unix' => '6.48',
2408             'ExtUtils::MM_VMS' => '6.48',
2409             'ExtUtils::MM_VOS' => '6.48',
2410             'ExtUtils::MM_Win32' => '6.48',
2411             'ExtUtils::MM_Win95' => '6.48',
2412             'ExtUtils::MY' => '6.48',
2413             'ExtUtils::MakeMaker' => '6.48',
2414             'ExtUtils::MakeMaker::Config'=> '6.48',
2415             'ExtUtils::MakeMaker::bytes'=> '6.48',
2416             'ExtUtils::MakeMaker::vmsish'=> '6.48',
2417             'ExtUtils::Manifest' => '1.55',
2418             'ExtUtils::Mkbootstrap' => '6.48',
2419             'ExtUtils::Mksymlists' => '6.48',
2420             'ExtUtils::Packlist' => '1.43',
2421             'ExtUtils::ParseXS' => '2.19',
2422             'ExtUtils::XSSymSet' => '1.1',
2423             'ExtUtils::testlib' => '6.48',
2424             'Fatal' => '1.06',
2425             'Fcntl' => '1.06',
2426             'File::Basename' => '2.77',
2427             'File::CheckTree' => '4.4',
2428             'File::Compare' => '1.1005',
2429             'File::Copy' => '2.13',
2430             'File::DosGlob' => '1.01',
2431             'File::Find' => '1.13',
2432             'File::Glob' => '1.06',
2433             'File::Path' => '2.07_02',
2434             'File::Spec' => '3.29',
2435             'File::Spec::Cygwin' => '3.29',
2436             'File::Spec::Epoc' => '3.29',
2437             'File::Spec::Functions' => '3.29',
2438             'File::Spec::Mac' => '3.29',
2439             'File::Spec::OS2' => '3.29',
2440             'File::Spec::Unix' => '3.29',
2441             'File::Spec::VMS' => '3.29',
2442             'File::Spec::Win32' => '3.29',
2443             'File::Temp' => '0.20',
2444             'File::stat' => '1.01',
2445             'FileCache' => '1.07',
2446             'Filter::Simple' => '0.83',
2447             'Filter::Util::Call' => '1.07',
2448             'FindBin' => '1.49',
2449             'GDBM_File' => '1.09',
2450             'Getopt::Long' => '2.37',
2451             'Getopt::Std' => '1.06',
2452             'Hash::Util' => '0.06',
2453             'IO' => '1.23',
2454             'IO::Dir' => '1.06',
2455             'IO::File' => '1.14',
2456             'IO::Handle' => '1.27',
2457             'IO::Socket' => '1.30',
2458             'IO::Socket::INET' => '1.31',
2459             'IO::Socket::UNIX' => '1.23',
2460             'IPC::Msg' => '2.00',
2461             'IPC::Open2' => '1.03',
2462             'IPC::Open3' => '1.03',
2463             'IPC::Semaphore' => '2.00',
2464             'IPC::SharedMem' => '2.00',
2465             'IPC::SysV' => '2.00',
2466             'List::Util' => '1.19',
2467             'Locale::Maketext' => '1.13',
2468             'Locale::Maketext::Guts'=> '1.13',
2469             'Locale::Maketext::GutsLoader'=> '1.13',
2470             'Math::BigFloat' => '1.60',
2471             'Math::BigInt' => '1.89',
2472             'Math::BigInt::Calc' => '0.52',
2473             'Math::BigRat' => '0.22',
2474             'Math::Complex' => '1.54',
2475             'Math::Trig' => '1.18',
2476             'Module::CoreList' => '2.17',
2477             'Module::Pluggable' => '3.8',
2478             'Module::Pluggable::Object'=> '3.6',
2479             'NDBM_File' => '1.07',
2480             'NEXT' => '0.61',
2481             'Net::Cmd' => '2.29',
2482             'Net::Config' => '1.11',
2483             'Net::Domain' => '2.20',
2484             'Net::FTP' => '2.77',
2485             'Net::FTP::A' => '1.18',
2486             'Net::NNTP' => '2.24',
2487             'Net::POP3' => '2.29',
2488             'Net::Ping' => '2.35',
2489             'Net::SMTP' => '2.31',
2490             'O' => '1.01',
2491             'ODBM_File' => '1.07',
2492             'OS2::DLL' => '1.03',
2493             'OS2::Process' => '1.03',
2494             'Opcode' => '1.0601',
2495             'POSIX' => '1.15',
2496             'PerlIO' => '1.05',
2497             'PerlIO::encoding' => '0.11',
2498             'PerlIO::scalar' => '0.06',
2499             'PerlIO::via' => '0.05',
2500             'Pod::Html' => '1.09',
2501             'Pod::ParseUtils' => '1.35',
2502             'Pod::Parser' => '1.35',
2503             'Pod::Select' => '1.35',
2504             'Pod::Usage' => '1.35',
2505             'SDBM_File' => '1.06',
2506             'Safe' => '2.16',
2507             'Scalar::Util' => '1.19',
2508             'SelfLoader' => '1.17',
2509             'Shell' => '0.72',
2510             'Socket' => '1.81',
2511             'Storable' => '2.19',
2512             'Switch' => '2.13',
2513             'Sys::Syslog' => '0.27',
2514             'Sys::Syslog::win32::Win32'=> undef,
2515             'Term::ANSIColor' => '1.12',
2516             'Term::Cap' => '1.12',
2517             'Term::ReadLine' => '1.03',
2518             'Test::Builder' => '0.80',
2519             'Test::Builder::Module' => '0.80',
2520             'Test::Builder::Tester' => '1.13',
2521             'Test::Harness' => '2.64',
2522             'Test::Harness::Results'=> '0.01_01',
2523             'Test::Harness::Straps' => '0.26_01',
2524             'Test::Harness::Util' => '0.01',
2525             'Test::More' => '0.80',
2526             'Test::Simple' => '0.80',
2527             'Text::Balanced' => '1.98',
2528             'Text::ParseWords' => '3.27',
2529             'Text::Soundex' => '3.03',
2530             'Text::Tabs' => '2007.1117',
2531             'Text::Wrap' => '2006.1117',
2532             'Thread' => '2.01',
2533             'Thread::Queue' => '2.11',
2534             'Thread::Semaphore' => '2.09',
2535             'Tie::Handle' => '4.2',
2536             'Tie::Hash' => '1.03',
2537             'Tie::Memoize' => '1.1',
2538             'Tie::RefHash' => '1.38',
2539             'Tie::Scalar' => '1.01',
2540             'Tie::StdHandle' => '4.2',
2541             'Time::HiRes' => '1.9715',
2542             'Time::Local' => '1.1901',
2543             'Time::gmtime' => '1.03',
2544             'Unicode' => '5.1.0',
2545             'Unicode::Normalize' => '1.02',
2546             'Unicode::UCD' => '0.25',
2547             'VMS::DCLsym' => '1.03',
2548             'VMS::Stdio' => '2.4',
2549             'Win32' => '0.38',
2550             'Win32API::File' => '0.1001_01',
2551             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2552             'Win32CORE' => '0.02',
2553             'XS::APItest' => '0.15',
2554             'XS::Typemap' => '0.03',
2555             'XSLoader' => '0.10',
2556             'attributes' => '0.09',
2557             'autouse' => '1.06',
2558             'base' => '2.13',
2559             'bigint' => '0.23',
2560             'bignum' => '0.23',
2561             'bigrat' => '0.23',
2562             'blib' => '1.04',
2563             'charnames' => '1.06',
2564             'constant' => '1.17',
2565             'diagnostics' => '1.16',
2566             'encoding' => '2.6_01',
2567             'fields' => '2.12',
2568             'filetest' => '1.02',
2569             'lib' => '0.61',
2570             'open' => '1.06',
2571             'ops' => '1.02',
2572             'overload' => '1.06',
2573             're' => '0.0601',
2574             'sigtrap' => '1.04',
2575             'threads' => '1.71',
2576             'threads::shared' => '1.27',
2577             'utf8' => '1.07',
2578             'warnings' => '1.05_01',
2579             },
2580             removed => {
2581             }
2582             },
2583             5.009 => {
2584             delta_from => 5.008002,
2585             changed => {
2586             'B' => '1.03',
2587             'B::C' => '1.03',
2588             'B::Concise' => '0.57',
2589             'B::Deparse' => '0.65',
2590             'DB_File' => '1.806',
2591             'Devel::PPPort' => '2.008',
2592             'English' => '1.02',
2593             'Fatal' => '1.04',
2594             'OS2::DLL' => '1.02',
2595             'Opcode' => '1.06',
2596             'Time::HiRes' => '1.51',
2597             'Unicode::Collate' => '0.28',
2598             'Unicode::Normalize' => '0.23',
2599             'XSLoader' => '0.03',
2600             'assertions' => '0.01',
2601             'assertions::activate' => '0.01',
2602             'overload' => '1.02',
2603             'version' => '0.29',
2604             },
2605             removed => {
2606             }
2607             },
2608             5.009001 => {
2609             delta_from => 5.008004,
2610             changed => {
2611             'B' => '1.05',
2612             'B::Assembler' => '0.06',
2613             'B::C' => '1.04',
2614             'B::Concise' => '0.59',
2615             'B::Debug' => '1.02',
2616             'B::Deparse' => '0.65',
2617             'DB_File' => '1.808_01',
2618             'Devel::PPPort' => '2.011_01',
2619             'Digest' => '1.05',
2620             'DynaLoader' => '1.04',
2621             'English' => '1.02',
2622             'Exporter::Heavy' => '5.567',
2623             'ExtUtils::Command' => '1.07',
2624             'ExtUtils::Liblist::Kid'=> '1.3',
2625             'ExtUtils::MM_Any' => '0.0901',
2626             'ExtUtils::MM_Cygwin' => '1.07',
2627             'ExtUtils::MM_NW5' => '2.07_01',
2628             'ExtUtils::MM_Unix' => '1.45_01',
2629             'ExtUtils::MM_VMS' => '5.71_01',
2630             'ExtUtils::MM_Win32' => '1.10_01',
2631             'ExtUtils::MM_Win95' => '0.03',
2632             'ExtUtils::MakeMaker' => '6.21_02',
2633             'ExtUtils::Manifest' => '1.43',
2634             'Fatal' => '1.04',
2635             'Getopt::Long' => '2.3401',
2636             'IO::Handle' => '1.23',
2637             'IO::Pipe' => '1.122',
2638             'IPC::Open3' => '1.0105',
2639             'MIME::Base64' => '3.00_01',
2640             'MIME::QuotedPrint' => '3.00',
2641             'Memoize' => '1.01_01',
2642             'ODBM_File' => '1.04',
2643             'Opcode' => '1.06',
2644             'POSIX' => '1.07',
2645             'Storable' => '2.11',
2646             'Time::HiRes' => '1.56',
2647             'Time::Local' => '1.07_94',
2648             'UNIVERSAL' => '1.02',
2649             'Unicode' => '4.0.0',
2650             'Unicode::UCD' => '0.21',
2651             'XSLoader' => '0.03',
2652             'assertions' => '0.01',
2653             'assertions::activate' => '0.01',
2654             'base' => '2.04',
2655             'if' => '0.0401',
2656             'open' => '1.02',
2657             'overload' => '1.02',
2658             'threads' => '1.02',
2659             'utf8' => '1.02',
2660             'version' => '0.36',
2661             },
2662             removed => {
2663             }
2664             },
2665             5.009002 => {
2666             delta_from => 5.008007,
2667             changed => {
2668             'B' => '1.07',
2669             'B::Concise' => '0.64',
2670             'B::Deparse' => '0.69',
2671             'B::Disassembler' => '1.03',
2672             'B::Terse' => '1.02',
2673             'CGI' => '3.07',
2674             'Config::Extensions' => '0.01',
2675             'Devel::DProf' => '20030813.00',
2676             'DynaLoader' => '1.07',
2677             'Encode' => '2.09',
2678             'Encode::Alias' => '2.02',
2679             'English' => '1.03',
2680             'Exporter' => '5.59',
2681             'Exporter::Heavy' => '5.59',
2682             'ExtUtils::Command' => '1.07',
2683             'ExtUtils::Command::MM' => '0.03_01',
2684             'ExtUtils::Embed' => '1.26',
2685             'ExtUtils::Liblist::Kid'=> '1.3',
2686             'ExtUtils::MM_Any' => '0.10',
2687             'ExtUtils::MM_Cygwin' => '1.07',
2688             'ExtUtils::MM_MacOS' => '1.08',
2689             'ExtUtils::MM_NW5' => '2.07',
2690             'ExtUtils::MM_Unix' => '1.46_01',
2691             'ExtUtils::MM_VMS' => '5.71',
2692             'ExtUtils::MM_Win32' => '1.10',
2693             'ExtUtils::MM_Win95' => '0.03',
2694             'ExtUtils::MakeMaker' => '6.25',
2695             'ExtUtils::Manifest' => '1.44',
2696             'Fatal' => '1.04',
2697             'File::Path' => '1.06',
2698             'FileCache' => '1.04_01',
2699             'Getopt::Long' => '2.3401',
2700             'IO::File' => '1.10',
2701             'IO::Socket::INET' => '1.27',
2702             'Math::BigFloat' => '1.49',
2703             'Math::BigInt' => '1.75',
2704             'Math::BigInt::Calc' => '0.45',
2705             'Math::BigRat' => '0.14',
2706             'Memoize' => '1.01_01',
2707             'Module::CoreList' => '1.99',
2708             'NEXT' => '0.60_01',
2709             'Opcode' => '1.06',
2710             'Pod::Html' => '1.0502',
2711             'Scalar::Util' => '1.14_1',
2712             'Storable' => '2.14',
2713             'Symbol' => '1.05',
2714             'Test::Harness' => '2.46',
2715             'Test::Harness::Straps' => '0.20_01',
2716             'Text::Balanced' => '1.95_01',
2717             'Text::Wrap' => '2001.09292',
2718             'UNIVERSAL' => '1.02',
2719             'Unicode' => '4.0.1',
2720             'Unicode::Normalize' => '0.30',
2721             'Unicode::UCD' => '0.22',
2722             'Win32' => '0.23',
2723             'XS::APItest' => '0.05',
2724             'XSLoader' => '0.03',
2725             'assertions' => '0.01',
2726             'assertions::activate' => '0.01',
2727             'base' => '2.06',
2728             'bigint' => '0.06',
2729             'bignum' => '0.16',
2730             'bigrat' => '0.07',
2731             'bytes' => '1.01',
2732             'encoding::warnings' => '0.05',
2733             'if' => '0.0401',
2734             're' => '0.05',
2735             'threads::shared' => '0.92',
2736             'utf8' => '1.04',
2737             'version' => '0.42',
2738             'warnings' => '1.04',
2739             },
2740             removed => {
2741             'Test::Harness::Point' => 1,
2742             }
2743             },
2744             5.009003 => {
2745             delta_from => 5.008008,
2746             changed => {
2747             'Archive::Tar' => '1.26_01',
2748             'Archive::Tar::Constant'=> '0.02',
2749             'Archive::Tar::File' => '0.02',
2750             'AutoSplit' => '1.04_01',
2751             'B' => '1.10',
2752             'B::Bblock' => '1.02',
2753             'B::Bytecode' => '1.01',
2754             'B::C' => '1.04',
2755             'B::CC' => '1.00',
2756             'B::Concise' => '0.67',
2757             'B::Debug' => '1.02',
2758             'B::Deparse' => '0.73',
2759             'B::Lint' => '1.04',
2760             'B::Terse' => '1.03',
2761             'CGI' => '3.15_01',
2762             'CPAN' => '1.83_58',
2763             'CPAN::Debug' => '4.44',
2764             'CPAN::FirstTime' => '4.50',
2765             'CPAN::HandleConfig' => '4.31',
2766             'CPAN::Nox' => '2.31',
2767             'CPAN::Tarzip' => '3.36',
2768             'CPAN::Version' => '2.55',
2769             'Carp' => '1.05',
2770             'Carp::Heavy' => '1.05',
2771             'Compress::Zlib' => '2.000_07',
2772             'Compress::Zlib::Common'=> '2.000_07',
2773             'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2774             'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2775             'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2776             'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2777             'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2778             'Compress::Zlib::FileConstants'=> '2.000_07',
2779             'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2780             'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2781             'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2782             'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2783             'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2784             'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2785             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2786             'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2787             'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2788             'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2789             'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2790             'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2791             'Compress::Zlib::ParseParameters'=> '2.000_07',
2792             'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2793             'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2794             'Config::Extensions' => '0.01',
2795             'Cwd' => '3.15',
2796             'Devel::PPPort' => '3.08',
2797             'Digest::SHA' => '5.32',
2798             'DirHandle' => '1.01',
2799             'DynaLoader' => '1.07',
2800             'Encode' => '2.14',
2801             'Encode::CN::HZ' => '2.02',
2802             'Encode::MIME::Header' => '2.02',
2803             'English' => '1.04',
2804             'Exporter' => '5.59',
2805             'Exporter::Heavy' => '5.59',
2806             'ExtUtils::CBuilder' => '0.15',
2807             'ExtUtils::CBuilder::Base'=> '0.12',
2808             'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2809             'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2810             'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2811             'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2812             'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2813             'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2814             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2815             'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2816             'ExtUtils::Command::MM' => '0.05_01',
2817             'ExtUtils::Constant' => '0.2',
2818             'ExtUtils::Constant::Base'=> '0.02',
2819             'ExtUtils::Constant::ProxySubs'=> '0.01',
2820             'ExtUtils::Constant::XS'=> '0.02',
2821             'ExtUtils::MM_Any' => '0.13_01',
2822             'ExtUtils::MM_Unix' => '1.50_01',
2823             'ExtUtils::MakeMaker' => '6.30_01',
2824             'ExtUtils::ParseXS' => '2.15_02',
2825             'Fatal' => '1.04',
2826             'File::Compare' => '1.1005',
2827             'File::Spec' => '3.15',
2828             'File::Temp' => '0.16_01',
2829             'IO::File' => '1.13_01',
2830             'IO::Handle' => '1.26',
2831             'IO::Socket' => '1.29_01',
2832             'IO::Socket::INET' => '1.29_02',
2833             'IO::Socket::UNIX' => '1.22_01',
2834             'IO::Zlib' => '1.04_02',
2835             'Locale::Maketext' => '1.10_01',
2836             'Math::BigInt::FastCalc'=> '0.10',
2837             'Memoize' => '1.01_01',
2838             'Module::CoreList' => '2.02',
2839             'Moped::Msg' => '0.01',
2840             'NEXT' => '0.60_01',
2841             'Net::Cmd' => '2.26_01',
2842             'Net::Domain' => '2.19_01',
2843             'Net::Ping' => '2.31_04',
2844             'Opcode' => '1.08',
2845             'POSIX' => '1.10',
2846             'Pod::Escapes' => '1.04',
2847             'Pod::Man' => '2.04',
2848             'Pod::Perldoc' => '3.14_01',
2849             'Pod::Simple' => '3.04',
2850             'Pod::Simple::BlackBox' => undef,
2851             'Pod::Simple::Checker' => '2.02',
2852             'Pod::Simple::Debug' => undef,
2853             'Pod::Simple::DumpAsText'=> '2.02',
2854             'Pod::Simple::DumpAsXML'=> '2.02',
2855             'Pod::Simple::HTML' => '3.03',
2856             'Pod::Simple::HTMLBatch'=> '3.02',
2857             'Pod::Simple::HTMLLegacy'=> '5.01',
2858             'Pod::Simple::LinkSection'=> undef,
2859             'Pod::Simple::Methody' => '2.02',
2860             'Pod::Simple::Progress' => '1.01',
2861             'Pod::Simple::PullParser'=> '2.02',
2862             'Pod::Simple::PullParserEndToken'=> undef,
2863             'Pod::Simple::PullParserStartToken'=> undef,
2864             'Pod::Simple::PullParserTextToken'=> undef,
2865             'Pod::Simple::PullParserToken'=> '2.02',
2866             'Pod::Simple::RTF' => '2.02',
2867             'Pod::Simple::Search' => '3.04',
2868             'Pod::Simple::SimpleTree'=> '2.02',
2869             'Pod::Simple::Text' => '2.02',
2870             'Pod::Simple::TextContent'=> '2.02',
2871             'Pod::Simple::TiedOutFH'=> undef,
2872             'Pod::Simple::Transcode'=> undef,
2873             'Pod::Simple::TranscodeDumb'=> '2.02',
2874             'Pod::Simple::TranscodeSmart'=> undef,
2875             'Pod::Simple::XMLOutStream'=> '2.02',
2876             'Pod::Text' => '3.01',
2877             'Pod::Text::Color' => '2.01',
2878             'Pod::Text::Overstrike' => '2',
2879             'Pod::Text::Termcap' => '2.01',
2880             'Pod::Usage' => '1.33_01',
2881             'SelfLoader' => '1.0905',
2882             'Storable' => '2.15_02',
2883             'Test::Builder::Module' => '0.03',
2884             'Text::Balanced' => '1.95_01',
2885             'Tie::File' => '0.97_01',
2886             'UNIVERSAL' => '1.03',
2887             'XS::APItest' => '0.09',
2888             'assertions' => '0.02',
2889             'assertions::activate' => '0.02',
2890             'assertions::compat' => undef,
2891             'constant' => '1.07',
2892             'encoding::warnings' => '0.05',
2893             'feature' => '1.00',
2894             're' => '0.06',
2895             'sort' => '2.00',
2896             'version' => '0.53',
2897             },
2898             removed => {
2899             }
2900             },
2901             5.009004 => {
2902             delta_from => 5.009003,
2903             changed => {
2904             'Archive::Tar' => '1.30_01',
2905             'AutoLoader' => '5.61',
2906             'B' => '1.11',
2907             'B::Bytecode' => '1.02',
2908             'B::C' => '1.05',
2909             'B::Concise' => '0.69',
2910             'B::Deparse' => '0.76',
2911             'B::Lint' => '1.08',
2912             'Benchmark' => '1.08',
2913             'CGI' => '3.20',
2914             'CGI::Cookie' => '1.27',
2915             'CGI::Fast' => '1.07',
2916             'CPAN' => '1.87_55',
2917             'CPAN::Debug' => '5.400561',
2918             'CPAN::FirstTime' => '5.400742',
2919             'CPAN::HandleConfig' => '5.400740',
2920             'CPAN::Nox' => '5.400561',
2921             'CPAN::Tarzip' => '5.400714',
2922             'CPAN::Version' => '5.400561',
2923             'Compress::Raw::Zlib' => '2.000_13',
2924             'Compress::Zlib' => '2.000_13',
2925             'Cwd' => '3.19',
2926             'Devel::PPPort' => '3.10',
2927             'Digest' => '1.15',
2928             'Digest::SHA' => '5.43',
2929             'Encode' => '2.18_01',
2930             'Encode::Alias' => '2.06',
2931             'Encode::Byte' => '2.02',
2932             'Encode::CJKConstants' => '2.02',
2933             'Encode::CN' => '2.02',
2934             'Encode::CN::HZ' => '2.04',
2935             'Encode::Config' => '2.03',
2936             'Encode::EBCDIC' => '2.02',
2937             'Encode::Encoder' => '2.01',
2938             'Encode::Encoding' => '2.04',
2939             'Encode::Guess' => '2.02',
2940             'Encode::JP' => '2.03',
2941             'Encode::JP::H2Z' => '2.02',
2942             'Encode::JP::JIS7' => '2.02',
2943             'Encode::KR' => '2.02',
2944             'Encode::KR::2022_KR' => '2.02',
2945             'Encode::MIME::Header' => '2.04',
2946             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2947             'Encode::Symbol' => '2.02',
2948             'Encode::TW' => '2.02',
2949             'Encode::Unicode' => '2.03',
2950             'Encode::Unicode::UTF7' => '2.04',
2951             'ExtUtils::CBuilder' => '0.18',
2952             'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2953             'ExtUtils::Constant::Base'=> '0.03',
2954             'ExtUtils::Constant::ProxySubs'=> '0.03',
2955             'ExtUtils::Install' => '1.41',
2956             'ExtUtils::Installed' => '1.41',
2957             'ExtUtils::MM_Any' => '0.13_02',
2958             'ExtUtils::MM_NW5' => '2.08_01',
2959             'ExtUtils::MM_Unix' => '1.5003',
2960             'ExtUtils::MM_VMS' => '5.73_03',
2961             'ExtUtils::MM_Win32' => '1.12_02',
2962             'ExtUtils::MM_Win95' => '0.04_01',
2963             'ExtUtils::MakeMaker' => '6.30_02',
2964             'ExtUtils::Manifest' => '1.46_01',
2965             'ExtUtils::Mkbootstrap' => '1.15_01',
2966             'ExtUtils::Mksymlists' => '1.19_01',
2967             'ExtUtils::Packlist' => '1.41',
2968             'File::Basename' => '2.75',
2969             'File::Find' => '1.11',
2970             'File::GlobMapper' => '0.000_02',
2971             'File::Spec' => '3.19',
2972             'FileCache' => '1.07',
2973             'Getopt::Long' => '2.3501',
2974             'Hash::Util' => '0.07',
2975             'Hash::Util::FieldHash' => '0.01',
2976             'IO' => '1.23_01',
2977             'IO::Compress::Adapter::Deflate'=> '2.000_13',
2978             'IO::Compress::Adapter::Identity'=> '2.000_13',
2979             'IO::Compress::Base' => '2.000_13',
2980             'IO::Compress::Base::Common'=> '2.000_13',
2981             'IO::Compress::Deflate' => '2.000_13',
2982             'IO::Compress::Gzip' => '2.000_13',
2983             'IO::Compress::Gzip::Constants'=> '2.000_13',
2984             'IO::Compress::RawDeflate'=> '2.000_13',
2985             'IO::Compress::Zip' => '2.000_13',
2986             'IO::Compress::Zip::Constants'=> '2.000_13',
2987             'IO::Compress::Zlib::Constants'=> '2.000_13',
2988             'IO::Compress::Zlib::Extra'=> '2.000_13',
2989             'IO::Dir' => '1.06',
2990             'IO::File' => '1.14',
2991             'IO::Handle' => '1.27',
2992             'IO::Socket' => '1.30_01',
2993             'IO::Socket::INET' => '1.31',
2994             'IO::Socket::UNIX' => '1.23',
2995             'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2996             'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2997             'IO::Uncompress::AnyInflate'=> '2.000_13',
2998             'IO::Uncompress::AnyUncompress'=> '2.000_13',
2999             'IO::Uncompress::Base' => '2.000_13',
3000             'IO::Uncompress::Gunzip'=> '2.000_13',
3001             'IO::Uncompress::Inflate'=> '2.000_13',
3002             'IO::Uncompress::RawInflate'=> '2.000_13',
3003             'IO::Uncompress::Unzip' => '2.000_13',
3004             'MIME::Base64' => '3.07_01',
3005             'Math::Complex' => '1.36',
3006             'Math::Trig' => '1.04',
3007             'Module::Build' => '0.2805',
3008             'Module::Build::Base' => undef,
3009             'Module::Build::Compat' => '0.03',
3010             'Module::Build::ConfigData'=> undef,
3011             'Module::Build::Cookbook'=> undef,
3012             'Module::Build::ModuleInfo'=> undef,
3013             'Module::Build::Notes' => undef,
3014             'Module::Build::PPMMaker'=> undef,
3015             'Module::Build::Platform::Amiga'=> undef,
3016             'Module::Build::Platform::Default'=> undef,
3017             'Module::Build::Platform::EBCDIC'=> undef,
3018             'Module::Build::Platform::MPEiX'=> undef,
3019             'Module::Build::Platform::MacOS'=> undef,
3020             'Module::Build::Platform::RiscOS'=> undef,
3021             'Module::Build::Platform::Unix'=> undef,
3022             'Module::Build::Platform::VMS'=> undef,
3023             'Module::Build::Platform::VOS'=> undef,
3024             'Module::Build::Platform::Windows'=> undef,
3025             'Module::Build::Platform::aix'=> undef,
3026             'Module::Build::Platform::cygwin'=> undef,
3027             'Module::Build::Platform::darwin'=> undef,
3028             'Module::Build::Platform::os2'=> undef,
3029             'Module::Build::PodParser'=> undef,
3030             'Module::Build::Version'=> '0',
3031             'Module::Build::YAML' => '0.50',
3032             'Module::CoreList' => '2.08',
3033             'Module::Load' => '0.10',
3034             'Module::Loaded' => '0.01',
3035             'Package::Constants' => '0.01',
3036             'Pod::Html' => '1.07',
3037             'Pod::Man' => '2.09',
3038             'Pod::Text' => '3.07',
3039             'Pod::Text::Color' => '2.03',
3040             'Pod::Text::Termcap' => '2.03',
3041             'SDBM_File' => '1.06',
3042             'Shell' => '0.7',
3043             'Sys::Syslog' => '0.17',
3044             'Term::ANSIColor' => '1.11',
3045             'Test::Builder' => '0.33',
3046             'Test::Builder::Tester' => '1.04',
3047             'Test::Harness' => '2.62',
3048             'Test::Harness::Util' => '0.01',
3049             'Test::More' => '0.64',
3050             'Test::Simple' => '0.64',
3051             'Text::Balanced' => '1.98_01',
3052             'Text::ParseWords' => '3.25',
3053             'Text::Tabs' => '2007.071101',
3054             'Text::Wrap' => '2006.0711',
3055             'Tie::RefHash' => '1.34_01',
3056             'Time::HiRes' => '1.87',
3057             'Time::Local' => '1.13',
3058             'Time::gmtime' => '1.03',
3059             'UNIVERSAL' => '1.04',
3060             'Unicode::Normalize' => '1.01',
3061             'Win32API::File' => '0.1001',
3062             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
3063             'assertions' => '0.03',
3064             'assertions::compat' => '0.02',
3065             'autouse' => '1.06',
3066             'diagnostics' => '1.16',
3067             'encoding' => '2.04',
3068             'encoding::warnings' => '0.10',
3069             'feature' => '1.01',
3070             're' => '0.0601',
3071             'threads' => '1.38',
3072             'threads::shared' => '0.94_01',
3073             'version' => '0.67',
3074             },
3075             removed => {
3076             'Compress::Zlib::Common'=> 1,
3077             'Compress::Zlib::Compress::Gzip::Constants'=> 1,
3078             'Compress::Zlib::Compress::Zip::Constants'=> 1,
3079             'Compress::Zlib::CompressPlugin::Deflate'=> 1,
3080             'Compress::Zlib::CompressPlugin::Identity'=> 1,
3081             'Compress::Zlib::File::GlobMapper'=> 1,
3082             'Compress::Zlib::FileConstants'=> 1,
3083             'Compress::Zlib::IO::Compress::Base'=> 1,
3084             'Compress::Zlib::IO::Compress::Deflate'=> 1,
3085             'Compress::Zlib::IO::Compress::Gzip'=> 1,
3086             'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
3087             'Compress::Zlib::IO::Compress::Zip'=> 1,
3088             'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
3089             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
3090             'Compress::Zlib::IO::Uncompress::Base'=> 1,
3091             'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
3092             'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
3093             'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
3094             'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
3095             'Compress::Zlib::ParseParameters'=> 1,
3096             'Compress::Zlib::UncompressPlugin::Identity'=> 1,
3097             'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
3098             }
3099             },
3100             5.009005 => {
3101             delta_from => 5.009004,
3102             changed => {
3103             'Archive::Extract' => '0.22_01',
3104             'Archive::Tar' => '1.32',
3105             'Attribute::Handlers' => '0.78_06',
3106             'AutoLoader' => '5.63',
3107             'AutoSplit' => '1.05',
3108             'B' => '1.16',
3109             'B::Concise' => '0.72',
3110             'B::Debug' => '1.05',
3111             'B::Deparse' => '0.82',
3112             'B::Lint' => '1.09',
3113             'B::Terse' => '1.05',
3114             'Benchmark' => '1.1',
3115             'CGI' => '3.29',
3116             'CGI::Cookie' => '1.28',
3117             'CGI::Util' => '1.5_01',
3118             'CPAN' => '1.9102',
3119             'CPAN::Debug' => '5.400955',
3120             'CPAN::FirstTime' => '5.401669',
3121             'CPAN::HandleConfig' => '5.401744',
3122             'CPAN::Kwalify' => '5.401418',
3123             'CPAN::Nox' => '5.400844',
3124             'CPAN::Queue' => '5.401704',
3125             'CPAN::Tarzip' => '5.401717',
3126             'CPAN::Version' => '5.401387',
3127             'CPANPLUS' => '0.81_01',
3128             'CPANPLUS::Backend' => undef,
3129             'CPANPLUS::Backend::RV' => undef,
3130             'CPANPLUS::Config' => undef,
3131             'CPANPLUS::Configure' => undef,
3132             'CPANPLUS::Configure::Setup'=> undef,
3133             'CPANPLUS::Dist' => undef,
3134             'CPANPLUS::Dist::Base' => '0.01',
3135             'CPANPLUS::Dist::Build' => '0.06_01',
3136             'CPANPLUS::Dist::Build::Constants'=> '0.01',
3137             'CPANPLUS::Dist::MM' => undef,
3138             'CPANPLUS::Dist::Sample'=> undef,
3139             'CPANPLUS::Error' => undef,
3140             'CPANPLUS::Internals' => '0.81_01',
3141             'CPANPLUS::Internals::Constants'=> '0.01',
3142             'CPANPLUS::Internals::Constants::Report'=> '0.01',
3143             'CPANPLUS::Internals::Extract'=> undef,
3144             'CPANPLUS::Internals::Fetch'=> undef,
3145             'CPANPLUS::Internals::Report'=> undef,
3146             'CPANPLUS::Internals::Search'=> undef,
3147             'CPANPLUS::Internals::Source'=> undef,
3148             'CPANPLUS::Internals::Utils'=> undef,
3149             'CPANPLUS::Internals::Utils::Autoflush'=> undef,
3150             'CPANPLUS::Module' => undef,
3151             'CPANPLUS::Module::Author'=> undef,
3152             'CPANPLUS::Module::Author::Fake'=> undef,
3153             'CPANPLUS::Module::Checksums'=> undef,
3154             'CPANPLUS::Module::Fake'=> undef,
3155             'CPANPLUS::Module::Signature'=> undef,
3156             'CPANPLUS::Selfupdate' => undef,
3157             'CPANPLUS::Shell' => undef,
3158             'CPANPLUS::Shell::Classic'=> '0.0562',
3159             'CPANPLUS::Shell::Default'=> '0.81_01',
3160             'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
3161             'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
3162             'CPANPLUS::inc' => undef,
3163             'Carp' => '1.07',
3164             'Carp::Heavy' => '1.07',
3165             'Compress::Raw::Zlib' => '2.005',
3166             'Compress::Zlib' => '2.005',
3167             'Cwd' => '3.25',
3168             'DBM_Filter' => '0.02',
3169             'DB_File' => '1.815',
3170             'Data::Dumper' => '2.121_13',
3171             'Devel::InnerPackage' => '0.3',
3172             'Devel::PPPort' => '3.11_01',
3173             'Digest::MD5' => '2.36_01',
3174             'Digest::SHA' => '5.44',
3175             'DynaLoader' => '1.08',
3176             'Encode' => '2.23',
3177             'Encode::Alias' => '2.07',
3178             'Encode::Byte' => '2.03',
3179             'Encode::Config' => '2.04',
3180             'Encode::Encoding' => '2.05',
3181             'Encode::GSM0338' => '2.00',
3182             'Encode::JP::JIS7' => '2.03',
3183             'Encode::MIME::Header' => '2.05',
3184             'Encode::MIME::Name' => '1.01',
3185             'Encode::Unicode' => '2.05',
3186             'Errno' => '1.10',
3187             'Exporter' => '5.60',
3188             'Exporter::Heavy' => '5.60',
3189             'ExtUtils::CBuilder' => '0.19',
3190             'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3191             'ExtUtils::Command' => '1.13',
3192             'ExtUtils::Command::MM' => '0.07',
3193             'ExtUtils::Constant::Base'=> '0.04',
3194             'ExtUtils::Install' => '1.41_01',
3195             'ExtUtils::Liblist' => '1.03',
3196             'ExtUtils::Liblist::Kid'=> '1.33',
3197             'ExtUtils::MM' => '0.07',
3198             'ExtUtils::MM_AIX' => '0.05',
3199             'ExtUtils::MM_Any' => '0.15',
3200             'ExtUtils::MM_BeOS' => '1.07',
3201             'ExtUtils::MM_Cygwin' => '1.1',
3202             'ExtUtils::MM_DOS' => '0.04',
3203             'ExtUtils::MM_MacOS' => '1.1',
3204             'ExtUtils::MM_NW5' => '2.1',
3205             'ExtUtils::MM_OS2' => '1.07',
3206             'ExtUtils::MM_QNX' => '0.04',
3207             'ExtUtils::MM_UWIN' => '0.04',
3208             'ExtUtils::MM_Unix' => '1.54_01',
3209             'ExtUtils::MM_VMS' => '5.76',
3210             'ExtUtils::MM_VOS' => '0.04',
3211             'ExtUtils::MM_Win32' => '1.15',
3212             'ExtUtils::MM_Win95' => '0.06',
3213             'ExtUtils::MY' => '0.03',
3214             'ExtUtils::MakeMaker' => '6.36',
3215             'ExtUtils::MakeMaker::Config'=> '0.04',
3216             'ExtUtils::MakeMaker::bytes'=> '0.03',
3217             'ExtUtils::MakeMaker::vmsish'=> '0.03',
3218             'ExtUtils::Manifest' => '1.51_01',
3219             'ExtUtils::Mkbootstrap' => '1.17',
3220             'ExtUtils::Mksymlists' => '1.21',
3221             'ExtUtils::ParseXS' => '2.18',
3222             'ExtUtils::XSSymSet' => '1.1',
3223             'ExtUtils::testlib' => '1.17',
3224             'Fatal' => '1.05',
3225             'Fcntl' => '1.06',
3226             'File::Basename' => '2.76',
3227             'File::Copy' => '2.10',
3228             'File::Fetch' => '0.10',
3229             'File::Glob' => '1.06',
3230             'File::Path' => '2.01',
3231             'File::Spec' => '3.25',
3232             'File::Spec::Cygwin' => '1.1_01',
3233             'File::Spec::VMS' => '1.4_01',
3234             'File::Temp' => '0.18',
3235             'Filter::Util::Call' => '1.0602',
3236             'FindBin' => '1.49',
3237             'Getopt::Long' => '2.36',
3238             'Hash::Util::FieldHash' => '1.01',
3239             'IO::Compress::Adapter::Deflate'=> '2.005',
3240             'IO::Compress::Adapter::Identity'=> '2.005',
3241             'IO::Compress::Base' => '2.005',
3242             'IO::Compress::Base::Common'=> '2.005',
3243             'IO::Compress::Deflate' => '2.005',
3244             'IO::Compress::Gzip' => '2.005',
3245             'IO::Compress::Gzip::Constants'=> '2.005',
3246             'IO::Compress::RawDeflate'=> '2.005',
3247             'IO::Compress::Zip' => '2.005',
3248             'IO::Compress::Zip::Constants'=> '2.005',
3249             'IO::Compress::Zlib::Constants'=> '2.005',
3250             'IO::Compress::Zlib::Extra'=> '2.005',
3251             'IO::Uncompress::Adapter::Identity'=> '2.005',
3252             'IO::Uncompress::Adapter::Inflate'=> '2.005',
3253             'IO::Uncompress::AnyInflate'=> '2.005',
3254             'IO::Uncompress::AnyUncompress'=> '2.005',
3255             'IO::Uncompress::Base' => '2.005',
3256             'IO::Uncompress::Gunzip'=> '2.005',
3257             'IO::Uncompress::Inflate'=> '2.005',
3258             'IO::Uncompress::RawInflate'=> '2.005',
3259             'IO::Uncompress::Unzip' => '2.005',
3260             'IO::Zlib' => '1.05_01',
3261             'IPC::Cmd' => '0.36_01',
3262             'List::Util' => '1.19',
3263             'Locale::Maketext::Simple'=> '0.18',
3264             'Log::Message' => '0.01',
3265             'Log::Message::Config' => '0.01',
3266             'Log::Message::Handlers'=> undef,
3267             'Log::Message::Item' => undef,
3268             'Log::Message::Simple' => '0.0201',
3269             'Math::BigFloat' => '1.58',
3270             'Math::BigInt' => '1.87',
3271             'Math::BigInt::Calc' => '0.51',
3272             'Math::BigInt::FastCalc'=> '0.15_01',
3273             'Math::BigRat' => '0.19',
3274             'Math::Complex' => '1.37',
3275             'Memoize' => '1.01_02',
3276             'Module::Build' => '0.2808',
3277             'Module::Build::Config' => undef,
3278             'Module::Build::Version'=> '0.7203',
3279             'Module::CoreList' => '2.12',
3280             'Module::Load::Conditional'=> '0.16',
3281             'Module::Pluggable' => '3.6',
3282             'Module::Pluggable::Object'=> '3.6',
3283             'NDBM_File' => '1.07',
3284             'Net::Cmd' => '2.28',
3285             'Net::Config' => '1.11',
3286             'Net::Domain' => '2.20',
3287             'Net::FTP' => '2.77',
3288             'Net::FTP::A' => '1.18',
3289             'Net::NNTP' => '2.24',
3290             'Net::POP3' => '2.29',
3291             'Net::SMTP' => '2.31',
3292             'ODBM_File' => '1.07',
3293             'OS2::DLL' => '1.03',
3294             'Object::Accessor' => '0.32',
3295             'Opcode' => '1.09',
3296             'POSIX' => '1.13',
3297             'Params::Check' => '0.26',
3298             'PerlIO::encoding' => '0.10',
3299             'PerlIO::scalar' => '0.05',
3300             'PerlIO::via' => '0.04',
3301             'Pod::Html' => '1.08',
3302             'Pod::Man' => '2.12',
3303             'Pod::ParseUtils' => '1.35',
3304             'Pod::Parser' => '1.35',
3305             'Pod::Select' => '1.35',
3306             'Pod::Simple' => '3.05',
3307             'Pod::Text' => '3.08',
3308             'Pod::Usage' => '1.35',
3309             'Scalar::Util' => '1.19',
3310             'SelfLoader' => '1.11',
3311             'Shell' => '0.72_01',
3312             'Socket' => '1.79',
3313             'Storable' => '2.16',
3314             'Switch' => '2.13',
3315             'Sys::Syslog' => '0.18_01',
3316             'Term::ANSIColor' => '1.12',
3317             'Term::UI' => '0.14_01',
3318             'Term::UI::History' => undef,
3319             'Test::Builder' => '0.70',
3320             'Test::Builder::Module' => '0.68',
3321             'Test::Builder::Tester' => '1.07',
3322             'Test::Harness' => '2.64',
3323             'Test::Harness::Results'=> '0.01',
3324             'Test::More' => '0.70',
3325             'Test::Simple' => '0.70',
3326             'Text::Balanced' => '2.0.0',
3327             'Text::Soundex' => '3.02',
3328             'Text::Tabs' => '2007.1117',
3329             'Text::Wrap' => '2006.1117',
3330             'Thread' => '3.02',
3331             'Tie::File' => '0.97_02',
3332             'Tie::Hash::NamedCapture'=> '0.06',
3333             'Tie::Memoize' => '1.1',
3334             'Tie::RefHash' => '1.37',
3335             'Time::HiRes' => '1.9707',
3336             'Time::Local' => '1.17',
3337             'Time::Piece' => '1.11_02',
3338             'Time::Seconds' => undef,
3339             'Unicode' => '5.0.0',
3340             'Unicode::Normalize' => '1.02',
3341             'Unicode::UCD' => '0.25',
3342             'VMS::DCLsym' => '1.03',
3343             'Win32' => '0.30',
3344             'Win32API::File' => '0.1001_01',
3345             'Win32CORE' => '0.02',
3346             'XS::APItest' => '0.12',
3347             'XSLoader' => '0.08',
3348             'attributes' => '0.08',
3349             'base' => '2.12',
3350             'bigint' => '0.22',
3351             'bignum' => '0.22',
3352             'bigrat' => '0.22',
3353             'bytes' => '1.03',
3354             'charnames' => '1.06',
3355             'constant' => '1.10',
3356             'diagnostics' => '1.17',
3357             'encoding' => '2.06',
3358             'encoding::warnings' => '0.11',
3359             'feature' => '1.10',
3360             'fields' => '2.12',
3361             'less' => '0.02',
3362             'mro' => '1.00',
3363             'overload' => '1.06',
3364             're' => '0.08',
3365             'sigtrap' => '1.04',
3366             'sort' => '2.01',
3367             'strict' => '1.04',
3368             'threads' => '1.63',
3369             'threads::shared' => '1.12',
3370             'utf8' => '1.07',
3371             'version' => '0.7203',
3372             'warnings' => '1.06',
3373             },
3374             removed => {
3375             'B::Asmdata' => 1,
3376             'B::Assembler' => 1,
3377             'B::Bblock' => 1,
3378             'B::Bytecode' => 1,
3379             'B::C' => 1,
3380             'B::CC' => 1,
3381             'B::Disassembler' => 1,
3382             'B::Stackobj' => 1,
3383             'B::Stash' => 1,
3384             'ByteLoader' => 1,
3385             'Thread::Signal' => 1,
3386             'Thread::Specific' => 1,
3387             'assertions' => 1,
3388             'assertions::activate' => 1,
3389             'assertions::compat' => 1,
3390             }
3391             },
3392             5.01 => {
3393             delta_from => 5.009005,
3394             changed => {
3395             'Archive::Extract' => '0.24',
3396             'Archive::Tar' => '1.38',
3397             'Attribute::Handlers' => '0.79',
3398             'B' => '1.17',
3399             'B::Concise' => '0.74',
3400             'B::Deparse' => '0.83',
3401             'CPAN' => '1.9205',
3402             'CPAN::API::HOWTO' => undef,
3403             'CPAN::Debug' => '5.402212',
3404             'CPAN::DeferedCode' => '5.50',
3405             'CPAN::FirstTime' => '5.402229',
3406             'CPAN::HandleConfig' => '5.402212',
3407             'CPAN::Nox' => '5.402411',
3408             'CPAN::Queue' => '5.402212',
3409             'CPAN::Tarzip' => '5.402213',
3410             'CPAN::Version' => '5.5',
3411             'CPANPLUS' => '0.84',
3412             'CPANPLUS::Dist::Build' => '0.06_02',
3413             'CPANPLUS::Internals' => '0.84',
3414             'CPANPLUS::Shell::Default'=> '0.84',
3415             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3416             'Carp' => '1.08',
3417             'Carp::Heavy' => '1.08',
3418             'Compress::Raw::Zlib' => '2.008',
3419             'Compress::Zlib' => '2.008',
3420             'Cwd' => '3.2501',
3421             'DB_File' => '1.816_1',
3422             'Data::Dumper' => '2.121_14',
3423             'Devel::PPPort' => '3.13',
3424             'Digest::SHA' => '5.45',
3425             'Exporter' => '5.62',
3426             'Exporter::Heavy' => '5.62',
3427             'ExtUtils::CBuilder' => '0.21',
3428             'ExtUtils::CBuilder::Base'=> '0.21',
3429             'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3430             'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3431             'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3432             'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3433             'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3434             'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3435             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3436             'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3437             'ExtUtils::Command::MM' => '6.42',
3438             'ExtUtils::Constant::ProxySubs'=> '0.05',
3439             'ExtUtils::Embed' => '1.27',
3440             'ExtUtils::Install' => '1.44',
3441             'ExtUtils::Installed' => '1.43',
3442             'ExtUtils::Liblist' => '6.42',
3443             'ExtUtils::Liblist::Kid'=> '6.42',
3444             'ExtUtils::MM' => '6.42',
3445             'ExtUtils::MM_AIX' => '6.42',
3446             'ExtUtils::MM_Any' => '6.42',
3447             'ExtUtils::MM_BeOS' => '6.42',
3448             'ExtUtils::MM_Cygwin' => '6.42',
3449             'ExtUtils::MM_DOS' => '6.42',
3450             'ExtUtils::MM_MacOS' => '6.42',
3451             'ExtUtils::MM_NW5' => '6.42',
3452             'ExtUtils::MM_OS2' => '6.42',
3453             'ExtUtils::MM_QNX' => '6.42',
3454             'ExtUtils::MM_UWIN' => '6.42',
3455             'ExtUtils::MM_Unix' => '6.42',
3456             'ExtUtils::MM_VMS' => '6.42',
3457             'ExtUtils::MM_VOS' => '6.42',
3458             'ExtUtils::MM_Win32' => '6.42',
3459             'ExtUtils::MM_Win95' => '6.42',
3460             'ExtUtils::MY' => '6.42',
3461             'ExtUtils::MakeMaker' => '6.42',
3462             'ExtUtils::MakeMaker::Config'=> '6.42',
3463             'ExtUtils::MakeMaker::bytes'=> '6.42',
3464             'ExtUtils::MakeMaker::vmsish'=> '6.42',
3465             'ExtUtils::Mkbootstrap' => '6.42',
3466             'ExtUtils::Mksymlists' => '6.42',
3467             'ExtUtils::Packlist' => '1.43',
3468             'ExtUtils::ParseXS' => '2.18_02',
3469             'ExtUtils::testlib' => '6.42',
3470             'File::Copy' => '2.11',
3471             'File::Fetch' => '0.14',
3472             'File::Find' => '1.12',
3473             'File::Path' => '2.04',
3474             'File::Spec' => '3.2501',
3475             'File::Spec::Cygwin' => '3.2501',
3476             'File::Spec::Epoc' => '3.2501',
3477             'File::Spec::Functions' => '3.2501',
3478             'File::Spec::Mac' => '3.2501',
3479             'File::Spec::OS2' => '3.2501',
3480             'File::Spec::Unix' => '3.2501',
3481             'File::Spec::VMS' => '3.2501',
3482             'File::Spec::Win32' => '3.2501',
3483             'Filter::Util::Call' => '1.07',
3484             'Getopt::Long' => '2.37',
3485             'Hash::Util::FieldHash' => '1.03',
3486             'IO::Compress::Adapter::Deflate'=> '2.008',
3487             'IO::Compress::Adapter::Identity'=> '2.008',
3488             'IO::Compress::Base' => '2.008',
3489             'IO::Compress::Base::Common'=> '2.008',
3490             'IO::Compress::Deflate' => '2.008',
3491             'IO::Compress::Gzip' => '2.008',
3492             'IO::Compress::Gzip::Constants'=> '2.008',
3493             'IO::Compress::RawDeflate'=> '2.008',
3494             'IO::Compress::Zip' => '2.008',
3495             'IO::Compress::Zip::Constants'=> '2.008',
3496             'IO::Compress::Zlib::Constants'=> '2.008',
3497             'IO::Compress::Zlib::Extra'=> '2.008',
3498             'IO::Uncompress::Adapter::Identity'=> '2.008',
3499             'IO::Uncompress::Adapter::Inflate'=> '2.008',
3500             'IO::Uncompress::AnyInflate'=> '2.008',
3501             'IO::Uncompress::AnyUncompress'=> '2.008',
3502             'IO::Uncompress::Base' => '2.008',
3503             'IO::Uncompress::Gunzip'=> '2.008',
3504             'IO::Uncompress::Inflate'=> '2.008',
3505             'IO::Uncompress::RawInflate'=> '2.008',
3506             'IO::Uncompress::Unzip' => '2.008',
3507             'IO::Zlib' => '1.07',
3508             'IPC::Cmd' => '0.40_1',
3509             'IPC::SysV' => '1.05',
3510             'Locale::Maketext' => '1.12',
3511             'Log::Message::Simple' => '0.04',
3512             'Math::BigFloat' => '1.59',
3513             'Math::BigInt' => '1.88',
3514             'Math::BigInt::Calc' => '0.52',
3515             'Math::BigInt::FastCalc'=> '0.16',
3516             'Math::BigRat' => '0.21',
3517             'Module::Build' => '0.2808_01',
3518             'Module::Build::Base' => '0.2808_01',
3519             'Module::Build::Compat' => '0.2808_01',
3520             'Module::Build::Config' => '0.2808_01',
3521             'Module::Build::Dumper' => undef,
3522             'Module::Build::ModuleInfo'=> '0.2808_01',
3523             'Module::Build::Notes' => '0.2808_01',
3524             'Module::Build::PPMMaker'=> '0.2808_01',
3525             'Module::Build::Platform::Amiga'=> '0.2808_01',
3526             'Module::Build::Platform::Default'=> '0.2808_01',
3527             'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3528             'Module::Build::Platform::MPEiX'=> '0.2808_01',
3529             'Module::Build::Platform::MacOS'=> '0.2808_01',
3530             'Module::Build::Platform::RiscOS'=> '0.2808_01',
3531             'Module::Build::Platform::Unix'=> '0.2808_01',
3532             'Module::Build::Platform::VMS'=> '0.2808_01',
3533             'Module::Build::Platform::VOS'=> '0.2808_01',
3534             'Module::Build::Platform::Windows'=> '0.2808_01',
3535             'Module::Build::Platform::aix'=> '0.2808_01',
3536             'Module::Build::Platform::cygwin'=> '0.2808_01',
3537             'Module::Build::Platform::darwin'=> '0.2808_01',
3538             'Module::Build::Platform::os2'=> '0.2808_01',
3539             'Module::Build::PodParser'=> '0.2808_01',
3540             'Module::CoreList' => '2.13',
3541             'Module::Load' => '0.12',
3542             'Module::Load::Conditional'=> '0.22',
3543             'Net::Cmd' => '2.29',
3544             'Net::Ping' => '2.33',
3545             'Opcode' => '1.11',
3546             'Pod::Checker' => '1.43_01',
3547             'Pod::Man' => '2.16',
3548             'Pod::Perldoc' => '3.14_02',
3549             'Socket' => '1.80',
3550             'Storable' => '2.18',
3551             'Sys::Syslog' => '0.22',
3552             'Sys::Syslog::win32::Win32'=> undef,
3553             'Term::Cap' => '1.12',
3554             'Term::ReadLine' => '1.03',
3555             'Term::UI' => '0.18',
3556             'Test::Builder' => '0.72',
3557             'Test::Builder::Module' => '0.72',
3558             'Test::Builder::Tester' => '1.09',
3559             'Test::Harness::Straps' => '0.26_01',
3560             'Test::More' => '0.72',
3561             'Test::Simple' => '0.72',
3562             'Text::ParseWords' => '3.26',
3563             'Text::Soundex' => '3.03',
3564             'Tie::StdHandle' => undef,
3565             'Time::HiRes' => '1.9711',
3566             'Time::Local' => '1.18',
3567             'Time::Piece' => '1.12',
3568             'VMS::Filespec' => '1.12',
3569             'Win32' => '0.34',
3570             'base' => '2.13',
3571             'constant' => '1.13',
3572             'feature' => '1.11',
3573             'fields' => '2.13',
3574             'filetest' => '1.02',
3575             'open' => '1.06',
3576             'threads' => '1.67',
3577             'threads::shared' => '1.14',
3578             'version' => '0.74',
3579             },
3580             removed => {
3581             }
3582             },
3583             5.010001 => {
3584             delta_from => 5.01,
3585             changed => {
3586             'App::Prove' => '3.17',
3587             'App::Prove::State' => '3.17',
3588             'App::Prove::State::Result'=> '3.17',
3589             'App::Prove::State::Result::Test'=> '3.17',
3590             'Archive::Extract' => '0.34',
3591             'Archive::Tar' => '1.52',
3592             'Attribute::Handlers' => '0.85',
3593             'AutoLoader' => '5.68',
3594             'AutoSplit' => '1.06',
3595             'B' => '1.22',
3596             'B::Concise' => '0.76',
3597             'B::Debug' => '1.11',
3598             'B::Deparse' => '0.89',
3599             'B::Lint' => '1.11',
3600             'B::Lint::Debug' => undef,
3601             'B::Xref' => '1.02',
3602             'Benchmark' => '1.11',
3603             'CGI' => '3.43',
3604             'CGI::Carp' => '1.30_01',
3605             'CGI::Cookie' => '1.29',
3606             'CPAN' => '1.9402',
3607             'CPAN::Author' => '5.5',
3608             'CPAN::Bundle' => '5.5',
3609             'CPAN::CacheMgr' => '5.5',
3610             'CPAN::Complete' => '5.5',
3611             'CPAN::Debug' => '5.5',
3612             'CPAN::DeferredCode' => '5.50',
3613             'CPAN::Distribution' => '1.93',
3614             'CPAN::Distroprefs' => '6',
3615             'CPAN::Distrostatus' => '5.5',
3616             'CPAN::Exception::RecursiveDependency'=> '5.5',
3617             'CPAN::Exception::blocked_urllist'=> '1.0',
3618             'CPAN::Exception::yaml_not_installed'=> '5.5',
3619             'CPAN::FTP' => '5.5001',
3620             'CPAN::FTP::netrc' => '1.00',
3621             'CPAN::FirstTime' => '5.53',
3622             'CPAN::HandleConfig' => '5.5',
3623             'CPAN::Index' => '1.93',
3624             'CPAN::InfoObj' => '5.5',
3625             'CPAN::Kwalify' => '5.50',
3626             'CPAN::LWP::UserAgent' => '1.00',
3627             'CPAN::Module' => '5.5',
3628             'CPAN::Nox' => '5.50',
3629             'CPAN::Prompt' => '5.5',
3630             'CPAN::Queue' => '5.5',
3631             'CPAN::Shell' => '5.5',
3632             'CPAN::Tarzip' => '5.501',
3633             'CPAN::URL' => '5.5',
3634             'CPANPLUS' => '0.88',
3635             'CPANPLUS::Dist::Autobundle'=> undef,
3636             'CPANPLUS::Dist::Base' => undef,
3637             'CPANPLUS::Dist::Build' => '0.36',
3638             'CPANPLUS::Dist::Build::Constants'=> '0.36',
3639             'CPANPLUS::Internals' => '0.88',
3640             'CPANPLUS::Internals::Constants'=> undef,
3641             'CPANPLUS::Internals::Constants::Report'=> undef,
3642             'CPANPLUS::Internals::Source::Memory'=> undef,
3643             'CPANPLUS::Internals::Source::SQLite'=> undef,
3644             'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3645             'CPANPLUS::Shell::Default'=> '0.88',
3646             'Carp' => '1.11',
3647             'Carp::Heavy' => '1.11',
3648             'Compress::Raw::Bzip2' => '2.020',
3649             'Compress::Raw::Zlib' => '2.020',
3650             'Compress::Zlib' => '2.020',
3651             'Cwd' => '3.30',
3652             'DB' => '1.02',
3653             'DBM_Filter::compress' => '0.02',
3654             'DBM_Filter::encode' => '0.02',
3655             'DBM_Filter::int32' => '0.02',
3656             'DBM_Filter::null' => '0.02',
3657             'DBM_Filter::utf8' => '0.02',
3658             'DB_File' => '1.820',
3659             'Data::Dumper' => '2.124',
3660             'Devel::DProf' => '20080331.00',
3661             'Devel::PPPort' => '3.19',
3662             'Devel::Peek' => '1.04',
3663             'Digest' => '1.16',
3664             'Digest::MD5' => '2.39',
3665             'Digest::SHA' => '5.47',
3666             'Digest::base' => '1.16',
3667             'Digest::file' => '1.16',
3668             'DirHandle' => '1.03',
3669             'Dumpvalue' => '1.13',
3670             'DynaLoader' => '1.10',
3671             'Encode' => '2.35',
3672             'Encode::Alias' => '2.12',
3673             'Encode::CN::HZ' => '2.05',
3674             'Encode::Config' => '2.05',
3675             'Encode::GSM0338' => '2.01',
3676             'Encode::Guess' => '2.03',
3677             'Encode::JP::JIS7' => '2.04',
3678             'Encode::MIME::Header' => '2.11',
3679             'Encode::Unicode' => '2.06',
3680             'Errno' => '1.11',
3681             'Exporter' => '5.63',
3682             'Exporter::Heavy' => '5.63',
3683             'ExtUtils::CBuilder' => '0.2602',
3684             'ExtUtils::CBuilder::Base'=> '0.2602',
3685             'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3686             'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3687             'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3688             'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3689             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3690             'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3691             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3692             'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3693             'ExtUtils::Command' => '1.16',
3694             'ExtUtils::Command::MM' => '6.55_02',
3695             'ExtUtils::Constant' => '0.22',
3696             'ExtUtils::Constant::ProxySubs'=> '0.06',
3697             'ExtUtils::Constant::Utils'=> '0.02',
3698             'ExtUtils::Constant::XS'=> '0.03',
3699             'ExtUtils::Embed' => '1.28',
3700             'ExtUtils::Install' => '1.54',
3701             'ExtUtils::Installed' => '1.999_001',
3702             'ExtUtils::Liblist' => '6.55_02',
3703             'ExtUtils::Liblist::Kid'=> '6.5502',
3704             'ExtUtils::MM' => '6.55_02',
3705             'ExtUtils::MM_AIX' => '6.55_02',
3706             'ExtUtils::MM_Any' => '6.55_02',
3707             'ExtUtils::MM_BeOS' => '6.55_02',
3708             'ExtUtils::MM_Cygwin' => '6.55_02',
3709             'ExtUtils::MM_DOS' => '6.5502',
3710             'ExtUtils::MM_Darwin' => '6.55_02',
3711             'ExtUtils::MM_MacOS' => '6.5502',
3712             'ExtUtils::MM_NW5' => '6.55_02',
3713             'ExtUtils::MM_OS2' => '6.55_02',
3714             'ExtUtils::MM_QNX' => '6.55_02',
3715             'ExtUtils::MM_UWIN' => '6.5502',
3716             'ExtUtils::MM_Unix' => '6.55_02',
3717             'ExtUtils::MM_VMS' => '6.55_02',
3718             'ExtUtils::MM_VOS' => '6.55_02',
3719             'ExtUtils::MM_Win32' => '6.55_02',
3720             'ExtUtils::MM_Win95' => '6.55_02',
3721             'ExtUtils::MY' => '6.5502',
3722             'ExtUtils::MakeMaker' => '6.55_02',
3723             'ExtUtils::MakeMaker::Config'=> '6.55_02',
3724             'ExtUtils::Manifest' => '1.56',
3725             'ExtUtils::Mkbootstrap' => '6.55_02',
3726             'ExtUtils::Mksymlists' => '6.55_02',
3727             'ExtUtils::ParseXS' => '2.2002',
3728             'ExtUtils::testlib' => '6.5502',
3729             'Fatal' => '2.06_01',
3730             'File::Basename' => '2.77',
3731             'File::CheckTree' => '4.4',
3732             'File::Compare' => '1.1006',
3733             'File::Copy' => '2.14',
3734             'File::DosGlob' => '1.01',
3735             'File::Fetch' => '0.20',
3736             'File::Find' => '1.14',
3737             'File::GlobMapper' => '1.000',
3738             'File::Path' => '2.07_03',
3739             'File::Spec' => '3.30',
3740             'File::Spec::Cygwin' => '3.30',
3741             'File::Spec::Epoc' => '3.30',
3742             'File::Spec::Functions' => '3.30',
3743             'File::Spec::Mac' => '3.30',
3744             'File::Spec::OS2' => '3.30',
3745             'File::Spec::Unix' => '3.30',
3746             'File::Spec::VMS' => '3.30',
3747             'File::Spec::Win32' => '3.30',
3748             'File::Temp' => '0.22',
3749             'File::stat' => '1.01',
3750             'FileCache' => '1.08',
3751             'FileHandle' => '2.02',
3752             'Filter::Simple' => '0.84',
3753             'Filter::Util::Call' => '1.08',
3754             'FindBin' => '1.50',
3755             'GDBM_File' => '1.09',
3756             'Getopt::Long' => '2.38',
3757             'Getopt::Std' => '1.06',
3758             'Hash::Util::FieldHash' => '1.04',
3759             'I18N::Collate' => '1.01',
3760             'IO' => '1.25',
3761             'IO::Compress::Adapter::Bzip2'=> '2.020',
3762             'IO::Compress::Adapter::Deflate'=> '2.020',
3763             'IO::Compress::Adapter::Identity'=> '2.020',
3764             'IO::Compress::Base' => '2.020',
3765             'IO::Compress::Base::Common'=> '2.020',
3766             'IO::Compress::Bzip2' => '2.020',
3767             'IO::Compress::Deflate' => '2.020',
3768             'IO::Compress::Gzip' => '2.020',
3769             'IO::Compress::Gzip::Constants'=> '2.020',
3770             'IO::Compress::RawDeflate'=> '2.020',
3771             'IO::Compress::Zip' => '2.020',
3772             'IO::Compress::Zip::Constants'=> '2.020',
3773             'IO::Compress::Zlib::Constants'=> '2.020',
3774             'IO::Compress::Zlib::Extra'=> '2.020',
3775             'IO::Dir' => '1.07',
3776             'IO::Handle' => '1.28',
3777             'IO::Socket' => '1.31',
3778             'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3779             'IO::Uncompress::Adapter::Identity'=> '2.020',
3780             'IO::Uncompress::Adapter::Inflate'=> '2.020',
3781             'IO::Uncompress::AnyInflate'=> '2.020',
3782             'IO::Uncompress::AnyUncompress'=> '2.020',
3783             'IO::Uncompress::Base' => '2.020',
3784             'IO::Uncompress::Bunzip2'=> '2.020',
3785             'IO::Uncompress::Gunzip'=> '2.020',
3786             'IO::Uncompress::Inflate'=> '2.020',
3787             'IO::Uncompress::RawInflate'=> '2.020',
3788             'IO::Uncompress::Unzip' => '2.020',
3789             'IO::Zlib' => '1.09',
3790             'IPC::Cmd' => '0.46',
3791             'IPC::Msg' => '2.01',
3792             'IPC::Open2' => '1.03',
3793             'IPC::Open3' => '1.04',
3794             'IPC::Semaphore' => '2.01',
3795             'IPC::SharedMem' => '2.01',
3796             'IPC::SysV' => '2.01',
3797             'List::Util' => '1.21',
3798             'List::Util::PP' => '1.21',
3799             'List::Util::XS' => '1.21',
3800             'Locale::Maketext' => '1.13',
3801             'Locale::Maketext::Guts'=> '1.13',
3802             'Locale::Maketext::GutsLoader'=> '1.13',
3803             'Log::Message' => '0.02',
3804             'MIME::Base64' => '3.08',
3805             'MIME::QuotedPrint' => '3.08',
3806             'Math::BigFloat' => '1.60',
3807             'Math::BigInt' => '1.89',
3808             'Math::BigInt::FastCalc'=> '0.19',
3809             'Math::BigRat' => '0.22',
3810             'Math::Complex' => '1.56',
3811             'Math::Trig' => '1.2',
3812             'Memoize' => '1.01_03',
3813             'Module::Build' => '0.340201',
3814             'Module::Build::Base' => '0.340201',
3815             'Module::Build::Compat' => '0.340201',
3816             'Module::Build::Config' => '0.340201',
3817             'Module::Build::Cookbook'=> '0.340201',
3818             'Module::Build::Dumper' => '0.340201',
3819             'Module::Build::ModuleInfo'=> '0.340201',
3820             'Module::Build::Notes' => '0.340201',
3821             'Module::Build::PPMMaker'=> '0.340201',
3822             'Module::Build::Platform::Amiga'=> '0.340201',
3823             'Module::Build::Platform::Default'=> '0.340201',
3824             'Module::Build::Platform::EBCDIC'=> '0.340201',
3825             'Module::Build::Platform::MPEiX'=> '0.340201',
3826             'Module::Build::Platform::MacOS'=> '0.340201',
3827             'Module::Build::Platform::RiscOS'=> '0.340201',
3828             'Module::Build::Platform::Unix'=> '0.340201',
3829             'Module::Build::Platform::VMS'=> '0.340201',
3830             'Module::Build::Platform::VOS'=> '0.340201',
3831             'Module::Build::Platform::Windows'=> '0.340201',
3832             'Module::Build::Platform::aix'=> '0.340201',
3833             'Module::Build::Platform::cygwin'=> '0.340201',
3834             'Module::Build::Platform::darwin'=> '0.340201',
3835             'Module::Build::Platform::os2'=> '0.340201',
3836             'Module::Build::PodParser'=> '0.340201',
3837             'Module::Build::Version'=> '0.77',
3838             'Module::CoreList' => '2.18',
3839             'Module::Load' => '0.16',
3840             'Module::Load::Conditional'=> '0.30',
3841             'Module::Loaded' => '0.02',
3842             'Module::Pluggable' => '3.9',
3843             'Module::Pluggable::Object'=> '3.9',
3844             'NDBM_File' => '1.08',
3845             'NEXT' => '0.64',
3846             'Net::Ping' => '2.36',
3847             'O' => '1.01',
3848             'OS2::Process' => '1.03',
3849             'OS2::REXX' => '1.04',
3850             'Object::Accessor' => '0.34',
3851             'POSIX' => '1.17',
3852             'Package::Constants' => '0.02',
3853             'Parse::CPAN::Meta' => '1.39',
3854             'PerlIO' => '1.06',
3855             'PerlIO::encoding' => '0.11',
3856             'PerlIO::scalar' => '0.07',
3857             'PerlIO::via' => '0.07',
3858             'Pod::Checker' => '1.45',
3859             'Pod::Find' => '1.35',
3860             'Pod::Html' => '1.09',
3861             'Pod::InputObjects' => '1.31',
3862             'Pod::Man' => '2.22',
3863             'Pod::ParseLink' => '1.09',
3864             'Pod::ParseUtils' => '1.36',
3865             'Pod::Parser' => '1.37',
3866             'Pod::Perldoc' => '3.14_04',
3867             'Pod::PlainText' => '2.04',
3868             'Pod::Select' => '1.36',
3869             'Pod::Simple' => '3.07',
3870             'Pod::Simple::XHTML' => '3.04',
3871             'Pod::Text' => '3.13',
3872             'Pod::Text::Color' => '2.05',
3873             'Pod::Text::Overstrike' => '2.03',
3874             'Pod::Text::Termcap' => '2.05',
3875             'Pod::Usage' => '1.36',
3876             'Safe' => '2.18',
3877             'Scalar::Util' => '1.21',
3878             'Scalar::Util::PP' => '1.21',
3879             'SelectSaver' => '1.02',
3880             'SelfLoader' => '1.17',
3881             'Socket' => '1.82',
3882             'Storable' => '2.20',
3883             'Switch' => '2.14',
3884             'Symbol' => '1.07',
3885             'Sys::Syslog' => '0.27',
3886             'TAP::Base' => '3.17',
3887             'TAP::Formatter::Base' => '3.17',
3888             'TAP::Formatter::Color' => '3.17',
3889             'TAP::Formatter::Console'=> '3.17',
3890             'TAP::Formatter::Console::ParallelSession'=> '3.17',
3891             'TAP::Formatter::Console::Session'=> '3.17',
3892             'TAP::Formatter::File' => '3.17',
3893             'TAP::Formatter::File::Session'=> '3.17',
3894             'TAP::Formatter::Session'=> '3.17',
3895             'TAP::Harness' => '3.17',
3896             'TAP::Object' => '3.17',
3897             'TAP::Parser' => '3.17',
3898             'TAP::Parser::Aggregator'=> '3.17',
3899             'TAP::Parser::Grammar' => '3.17',
3900             'TAP::Parser::Iterator' => '3.17',
3901             'TAP::Parser::Iterator::Array'=> '3.17',
3902             'TAP::Parser::Iterator::Process'=> '3.17',
3903             'TAP::Parser::Iterator::Stream'=> '3.17',
3904             'TAP::Parser::IteratorFactory'=> '3.17',
3905             'TAP::Parser::Multiplexer'=> '3.17',
3906             'TAP::Parser::Result' => '3.17',
3907             'TAP::Parser::Result::Bailout'=> '3.17',
3908             'TAP::Parser::Result::Comment'=> '3.17',
3909             'TAP::Parser::Result::Plan'=> '3.17',
3910             'TAP::Parser::Result::Pragma'=> '3.17',
3911             'TAP::Parser::Result::Test'=> '3.17',
3912             'TAP::Parser::Result::Unknown'=> '3.17',
3913             'TAP::Parser::Result::Version'=> '3.17',
3914             'TAP::Parser::Result::YAML'=> '3.17',
3915             'TAP::Parser::ResultFactory'=> '3.17',
3916             'TAP::Parser::Scheduler'=> '3.17',
3917             'TAP::Parser::Scheduler::Job'=> '3.17',
3918             'TAP::Parser::Scheduler::Spinner'=> '3.17',
3919             'TAP::Parser::Source' => '3.17',
3920             'TAP::Parser::Source::Perl'=> '3.17',
3921             'TAP::Parser::Utils' => '3.17',
3922             'TAP::Parser::YAMLish::Reader'=> '3.17',
3923             'TAP::Parser::YAMLish::Writer'=> '3.17',
3924             'Term::ANSIColor' => '2.00',
3925             'Term::ReadLine' => '1.04',
3926             'Term::UI' => '0.20',
3927             'Test' => '1.25_02',
3928             'Test::Builder' => '0.92',
3929             'Test::Builder::Module' => '0.92',
3930             'Test::Builder::Tester' => '1.18',
3931             'Test::Builder::Tester::Color'=> '1.18',
3932             'Test::Harness' => '3.17',
3933             'Test::More' => '0.92',
3934             'Test::Simple' => '0.92',
3935             'Text::ParseWords' => '3.27',
3936             'Text::Tabs' => '2009.0305',
3937             'Text::Wrap' => '2009.0305',
3938             'Thread::Queue' => '2.11',
3939             'Thread::Semaphore' => '2.09',
3940             'Tie::Handle' => '4.2',
3941             'Tie::Hash' => '1.03',
3942             'Tie::RefHash' => '1.38',
3943             'Tie::Scalar' => '1.01',
3944             'Tie::StdHandle' => '4.2',
3945             'Time::HiRes' => '1.9719',
3946             'Time::Local' => '1.1901',
3947             'Time::Piece' => '1.15',
3948             'UNIVERSAL' => '1.05',
3949             'Unicode' => '5.1.0',
3950             'Unicode::Normalize' => '1.03',
3951             'Unicode::UCD' => '0.27',
3952             'VMS::Stdio' => '2.4',
3953             'Win32' => '0.39',
3954             'Win32API::File' => '0.1101',
3955             'XS::APItest' => '0.15',
3956             'XS::Typemap' => '0.03',
3957             'XSLoader' => '0.10',
3958             'attributes' => '0.09',
3959             'attrs' => '1.03',
3960             'autodie' => '2.06_01',
3961             'autodie::exception' => '2.06_01',
3962             'autodie::exception::system'=> '2.06_01',
3963             'autodie::hints' => '2.06_01',
3964             'base' => '2.14',
3965             'bigint' => '0.23',
3966             'bignum' => '0.23',
3967             'bigrat' => '0.23',
3968             'blib' => '1.04',
3969             'charnames' => '1.07',
3970             'constant' => '1.17',
3971             'encoding' => '2.6_01',
3972             'feature' => '1.13',
3973             'fields' => '2.14',
3974             'lib' => '0.62',
3975             'mro' => '1.01',
3976             'open' => '1.07',
3977             'ops' => '1.02',
3978             'overload' => '1.07',
3979             'overload::numbers' => undef,
3980             'overloading' => '0.01',
3981             'parent' => '0.221',
3982             're' => '0.09',
3983             'threads' => '1.72',
3984             'threads::shared' => '1.29',
3985             'version' => '0.77',
3986             },
3987             removed => {
3988             'CPAN::API::HOWTO' => 1,
3989             'CPAN::DeferedCode' => 1,
3990             'CPANPLUS::inc' => 1,
3991             'ExtUtils::MakeMaker::bytes'=> 1,
3992             'ExtUtils::MakeMaker::vmsish'=> 1,
3993             'Test::Harness::Assert' => 1,
3994             'Test::Harness::Iterator'=> 1,
3995             'Test::Harness::Point' => 1,
3996             'Test::Harness::Results'=> 1,
3997             'Test::Harness::Straps' => 1,
3998             'Test::Harness::Util' => 1,
3999             }
4000             },
4001             5.011 => {
4002             delta_from => 5.010001,
4003             changed => {
4004             'Archive::Tar' => '1.54',
4005             'Attribute::Handlers' => '0.87',
4006             'AutoLoader' => '5.70',
4007             'B::Deparse' => '0.91',
4008             'B::Lint' => '1.11_01',
4009             'B::Lint::Debug' => '0.01',
4010             'CGI' => '3.45',
4011             'CGI::Apache' => '1.01',
4012             'CGI::Carp' => '3.45',
4013             'CGI::Pretty' => '3.44',
4014             'CGI::Switch' => '1.01',
4015             'CGI::Util' => '3.45',
4016             'CPAN' => '1.94_51',
4017             'CPAN::Distribution' => '1.94',
4018             'CPAN::FTP' => '5.5002',
4019             'CPAN::Index' => '1.94',
4020             'CPAN::LWP::UserAgent' => '1.94',
4021             'CPANPLUS::Dist::Build' => '0.40',
4022             'CPANPLUS::Dist::Build::Constants'=> '0.40',
4023             'Carp' => '1.12',
4024             'Carp::Heavy' => '1.12',
4025             'Class::ISA' => '0.36',
4026             'Compress::Raw::Bzip2' => '2.021',
4027             'Compress::Raw::Zlib' => '2.021',
4028             'Compress::Zlib' => '2.021',
4029             'Cwd' => '3.3002',
4030             'Data::Dumper' => '2.125',
4031             'Encode' => '2.37',
4032             'Exporter' => '5.64',
4033             'Exporter::Heavy' => '5.64',
4034             'ExtUtils::ParseXS' => '2.200403',
4035             'File::Basename' => '2.78',
4036             'File::Copy' => '2.16',
4037             'File::stat' => '1.02',
4038             'IO' => '1.25_01',
4039             'IO::Compress::Adapter::Bzip2'=> '2.021',
4040             'IO::Compress::Adapter::Deflate'=> '2.021',
4041             'IO::Compress::Adapter::Identity'=> '2.021',
4042             'IO::Compress::Base' => '2.021',
4043             'IO::Compress::Base::Common'=> '2.021',
4044             'IO::Compress::Bzip2' => '2.021',
4045             'IO::Compress::Deflate' => '2.021',
4046             'IO::Compress::Gzip' => '2.021',
4047             'IO::Compress::Gzip::Constants'=> '2.021',
4048             'IO::Compress::RawDeflate'=> '2.021',
4049             'IO::Compress::Zip' => '2.021',
4050             'IO::Compress::Zip::Constants'=> '2.021',
4051             'IO::Compress::Zlib::Constants'=> '2.021',
4052             'IO::Compress::Zlib::Extra'=> '2.021',
4053             'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
4054             'IO::Uncompress::Adapter::Identity'=> '2.021',
4055             'IO::Uncompress::Adapter::Inflate'=> '2.021',
4056             'IO::Uncompress::AnyInflate'=> '2.021',
4057             'IO::Uncompress::AnyUncompress'=> '2.021',
4058             'IO::Uncompress::Base' => '2.021',
4059             'IO::Uncompress::Bunzip2'=> '2.021',
4060             'IO::Uncompress::Gunzip'=> '2.021',
4061             'IO::Uncompress::Inflate'=> '2.021',
4062             'IO::Uncompress::RawInflate'=> '2.021',
4063             'IO::Uncompress::Unzip' => '2.021',
4064             'IO::Zlib' => '1.10',
4065             'IPC::Cmd' => '0.50',
4066             'IPC::Open3' => '1.05',
4067             'Locale::Maketext::Simple'=> '0.21',
4068             'Log::Message::Simple' => '0.06',
4069             'Math::BigInt' => '1.89_01',
4070             'Math::BigRat' => '0.24',
4071             'Module::Build' => '0.35',
4072             'Module::Build::Base' => '0.35',
4073             'Module::Build::Compat' => '0.35',
4074             'Module::Build::Config' => '0.35',
4075             'Module::Build::Cookbook'=> '0.35',
4076             'Module::Build::Dumper' => '0.35',
4077             'Module::Build::ModuleInfo'=> '0.35',
4078             'Module::Build::Notes' => '0.35',
4079             'Module::Build::PPMMaker'=> '0.35',
4080             'Module::Build::Platform::Amiga'=> '0.35',
4081             'Module::Build::Platform::Default'=> '0.35',
4082             'Module::Build::Platform::EBCDIC'=> '0.35',
4083             'Module::Build::Platform::MPEiX'=> '0.35',
4084             'Module::Build::Platform::MacOS'=> '0.35',
4085             'Module::Build::Platform::RiscOS'=> '0.35',
4086             'Module::Build::Platform::Unix'=> '0.35',
4087             'Module::Build::Platform::VMS'=> '0.35',
4088             'Module::Build::Platform::VOS'=> '0.35',
4089             'Module::Build::Platform::Windows'=> '0.35',
4090             'Module::Build::Platform::aix'=> '0.35',
4091             'Module::Build::Platform::cygwin'=> '0.35',
4092             'Module::Build::Platform::darwin'=> '0.35',
4093             'Module::Build::Platform::os2'=> '0.35',
4094             'Module::Build::PodParser'=> '0.35',
4095             'Module::CoreList' => '2.19',
4096             'Module::Loaded' => '0.06',
4097             'Opcode' => '1.13',
4098             'PerlIO::via' => '0.08',
4099             'Pod::Perldoc' => '3.15_01',
4100             'Pod::Plainer' => '1.01',
4101             'Safe' => '2.19',
4102             'Socket' => '1.84',
4103             'Switch' => '2.14_01',
4104             'Term::ANSIColor' => '2.02',
4105             'Term::ReadLine' => '1.05',
4106             'Text::Balanced' => '2.02',
4107             'Text::Soundex' => '3.03_01',
4108             'Time::Local' => '1.1901_01',
4109             'Unicode::Collate' => '0.52_01',
4110             'attributes' => '0.12',
4111             'constant' => '1.19',
4112             'deprecate' => '0.01',
4113             'overload' => '1.08',
4114             'parent' => '0.223',
4115             're' => '0.10',
4116             'threads' => '1.74',
4117             'threads::shared' => '1.31',
4118             'warnings' => '1.07',
4119             },
4120             removed => {
4121             'attrs' => 1,
4122             }
4123             },
4124             5.011001 => {
4125             delta_from => 5.011,
4126             changed => {
4127             'B' => '1.23',
4128             'B::Concise' => '0.77',
4129             'B::Deparse' => '0.92',
4130             'CGI' => '3.48',
4131             'CGI::Pretty' => '3.46',
4132             'CGI::Util' => '3.48',
4133             'CPANPLUS' => '0.89_03',
4134             'CPANPLUS::Internals' => '0.89_03',
4135             'CPANPLUS::Shell::Default'=> '0.89_03',
4136             'Carp' => '1.13',
4137             'Carp::Heavy' => '1.13',
4138             'ExtUtils::CBuilder' => '0.260301',
4139             'ExtUtils::CBuilder::Base'=> '0.260301',
4140             'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
4141             'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
4142             'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
4143             'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
4144             'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
4145             'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
4146             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
4147             'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
4148             'ExtUtils::Install' => '1.55',
4149             'ExtUtils::Manifest' => '1.57',
4150             'ExtUtils::Packlist' => '1.44',
4151             'ExtUtils::ParseXS' => '2.21',
4152             'File::Glob' => '1.07',
4153             'File::Path' => '2.08',
4154             'IO' => '1.25_02',
4155             'Module::CoreList' => '2.21',
4156             'OS2::DLL' => '1.04',
4157             'OS2::Process' => '1.04',
4158             'Object::Accessor' => '0.36',
4159             'Opcode' => '1.15',
4160             'POSIX' => '1.18',
4161             'Parse::CPAN::Meta' => '1.40',
4162             'PerlIO::via' => '0.09',
4163             'Pod::Simple' => '3.08',
4164             'Socket' => '1.85',
4165             'Storable' => '2.22',
4166             'Switch' => '2.15',
4167             'Test::Builder' => '0.94',
4168             'Test::Builder::Module' => '0.94',
4169             'Test::More' => '0.94',
4170             'Test::Simple' => '0.94',
4171             'XS::APItest' => '0.16',
4172             'mro' => '1.02',
4173             'overload' => '1.09',
4174             'threads::shared' => '1.32',
4175             },
4176             removed => {
4177             }
4178             },
4179             5.011002 => {
4180             delta_from => 5.011001,
4181             changed => {
4182             'B::Concise' => '0.78',
4183             'B::Deparse' => '0.93',
4184             'CPANPLUS' => '0.89_09',
4185             'CPANPLUS::Dist::Build' => '0.44',
4186             'CPANPLUS::Dist::Build::Constants'=> '0.44',
4187             'CPANPLUS::Internals' => '0.89_09',
4188             'CPANPLUS::Shell::Default'=> '0.89_09',
4189             'Carp' => '1.14',
4190             'Carp::Heavy' => '1.14',
4191             'Compress::Zlib' => '2.022',
4192             'DBM_Filter' => '0.03',
4193             'Encode' => '2.38',
4194             'Encode::Byte' => '2.04',
4195             'Encode::CN' => '2.03',
4196             'Encode::JP' => '2.04',
4197             'Encode::KR' => '2.03',
4198             'Encode::TW' => '2.03',
4199             'Encode::Unicode' => '2.07',
4200             'Env' => '1.01',
4201             'Exporter' => '5.64_01',
4202             'Exporter::Heavy' => '5.64_01',
4203             'ExtUtils::CBuilder' => '0.27',
4204             'ExtUtils::CBuilder::Base'=> '0.27',
4205             'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4206             'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4207             'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4208             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4209             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4210             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4211             'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4212             'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4213             'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4214             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4215             'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4216             'File::Fetch' => '0.22',
4217             'I18N::LangTags::Detect'=> '1.04',
4218             'I18N::Langinfo' => '0.03',
4219             'IO::Compress::Adapter::Bzip2'=> '2.022',
4220             'IO::Compress::Adapter::Deflate'=> '2.022',
4221             'IO::Compress::Adapter::Identity'=> '2.022',
4222             'IO::Compress::Base' => '2.022',
4223             'IO::Compress::Base::Common'=> '2.022',
4224             'IO::Compress::Bzip2' => '2.022',
4225             'IO::Compress::Deflate' => '2.022',
4226             'IO::Compress::Gzip' => '2.022',
4227             'IO::Compress::Gzip::Constants'=> '2.022',
4228             'IO::Compress::RawDeflate'=> '2.022',
4229             'IO::Compress::Zip' => '2.022',
4230             'IO::Compress::Zip::Constants'=> '2.022',
4231             'IO::Compress::Zlib::Constants'=> '2.022',
4232             'IO::Compress::Zlib::Extra'=> '2.022',
4233             'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4234             'IO::Uncompress::Adapter::Identity'=> '2.022',
4235             'IO::Uncompress::Adapter::Inflate'=> '2.022',
4236             'IO::Uncompress::AnyInflate'=> '2.022',
4237             'IO::Uncompress::AnyUncompress'=> '2.022',
4238             'IO::Uncompress::Base' => '2.022',
4239             'IO::Uncompress::Bunzip2'=> '2.022',
4240             'IO::Uncompress::Gunzip'=> '2.022',
4241             'IO::Uncompress::Inflate'=> '2.022',
4242             'IO::Uncompress::RawInflate'=> '2.022',
4243             'IO::Uncompress::Unzip' => '2.022',
4244             'IPC::Cmd' => '0.54',
4245             'List::Util' => '1.22',
4246             'List::Util::PP' => '1.22',
4247             'List::Util::XS' => '1.22',
4248             'Locale::Maketext' => '1.14',
4249             'Module::Build' => '0.35_09',
4250             'Module::Build::Base' => '0.35_09',
4251             'Module::Build::Compat' => '0.35_09',
4252             'Module::Build::Config' => '0.35_09',
4253             'Module::Build::Cookbook'=> '0.35_09',
4254             'Module::Build::Dumper' => '0.35_09',
4255             'Module::Build::ModuleInfo'=> '0.35_09',
4256             'Module::Build::Notes' => '0.35_09',
4257             'Module::Build::PPMMaker'=> '0.35_09',
4258             'Module::Build::Platform::Amiga'=> '0.35_09',
4259             'Module::Build::Platform::Default'=> '0.35_09',
4260             'Module::Build::Platform::EBCDIC'=> '0.35_09',
4261             'Module::Build::Platform::MPEiX'=> '0.35_09',
4262             'Module::Build::Platform::MacOS'=> '0.35_09',
4263             'Module::Build::Platform::RiscOS'=> '0.35_09',
4264             'Module::Build::Platform::Unix'=> '0.35_09',
4265             'Module::Build::Platform::VMS'=> '0.35_09',
4266             'Module::Build::Platform::VOS'=> '0.35_09',
4267             'Module::Build::Platform::Windows'=> '0.35_09',
4268             'Module::Build::Platform::aix'=> '0.35_09',
4269             'Module::Build::Platform::cygwin'=> '0.35_09',
4270             'Module::Build::Platform::darwin'=> '0.35_09',
4271             'Module::Build::Platform::os2'=> '0.35_09',
4272             'Module::Build::PodParser'=> '0.35_09',
4273             'Module::Build::YAML' => '1.40',
4274             'Module::CoreList' => '2.23',
4275             'Module::Load::Conditional'=> '0.34',
4276             'Pod::Simple' => '3.10',
4277             'Pod::Simple::XHTML' => '3.10',
4278             'Scalar::Util' => '1.22',
4279             'Scalar::Util::PP' => '1.22',
4280             'Switch' => '2.16',
4281             'XS::APItest' => '0.17',
4282             'XS::APItest::KeywordRPN'=> '0.003',
4283             'base' => '2.15',
4284             'diagnostics' => '1.18',
4285             'fields' => '2.15',
4286             'inc::latest' => '0.35_09',
4287             'legacy' => '1.00',
4288             'overload' => '1.10',
4289             },
4290             removed => {
4291             }
4292             },
4293             5.011003 => {
4294             delta_from => 5.011002,
4295             changed => {
4296             'App::Cpan' => '1.570001',
4297             'Archive::Extract' => '0.36',
4298             'CPAN' => '1.94_5301',
4299             'CPAN::FTP' => '5.5004',
4300             'CPAN::FirstTime' => '5.530001',
4301             'CPAN::Mirrors' => '1.770001',
4302             'CPANPLUS' => '0.90',
4303             'CPANPLUS::Internals' => '0.90',
4304             'CPANPLUS::Shell::Default'=> '0.90',
4305             'Cwd' => '3.31',
4306             'Encode' => '2.39',
4307             'ExtUtils::Command::MM' => '6.56',
4308             'ExtUtils::Liblist' => '6.56',
4309             'ExtUtils::Liblist::Kid'=> '6.56',
4310             'ExtUtils::MM' => '6.56',
4311             'ExtUtils::MM_AIX' => '6.56',
4312             'ExtUtils::MM_Any' => '6.56',
4313             'ExtUtils::MM_BeOS' => '6.56',
4314             'ExtUtils::MM_Cygwin' => '6.56',
4315             'ExtUtils::MM_DOS' => '6.56',
4316             'ExtUtils::MM_Darwin' => '6.56',
4317             'ExtUtils::MM_MacOS' => '6.56',
4318             'ExtUtils::MM_NW5' => '6.56',
4319             'ExtUtils::MM_OS2' => '6.56',
4320             'ExtUtils::MM_QNX' => '6.56',
4321             'ExtUtils::MM_UWIN' => '6.56',
4322             'ExtUtils::MM_Unix' => '6.56',
4323             'ExtUtils::MM_VMS' => '6.56',
4324             'ExtUtils::MM_VOS' => '6.56',
4325             'ExtUtils::MM_Win32' => '6.56',
4326             'ExtUtils::MM_Win95' => '6.56',
4327             'ExtUtils::MY' => '6.56',
4328             'ExtUtils::MakeMaker' => '6.56',
4329             'ExtUtils::MakeMaker::Config'=> '6.56',
4330             'ExtUtils::Mkbootstrap' => '6.56',
4331             'ExtUtils::Mksymlists' => '6.56',
4332             'ExtUtils::testlib' => '6.56',
4333             'File::Find' => '1.15',
4334             'File::Path' => '2.08_01',
4335             'File::Spec' => '3.31',
4336             'Module::Build' => '0.36',
4337             'Module::Build::Base' => '0.36',
4338             'Module::Build::Compat' => '0.36',
4339             'Module::Build::Config' => '0.36',
4340             'Module::Build::Cookbook'=> '0.36',
4341             'Module::Build::Dumper' => '0.36',
4342             'Module::Build::ModuleInfo'=> '0.36',
4343             'Module::Build::Notes' => '0.36',
4344             'Module::Build::PPMMaker'=> '0.36',
4345             'Module::Build::Platform::Amiga'=> '0.36',
4346             'Module::Build::Platform::Default'=> '0.36',
4347             'Module::Build::Platform::EBCDIC'=> '0.36',
4348             'Module::Build::Platform::MPEiX'=> '0.36',
4349             'Module::Build::Platform::MacOS'=> '0.36',
4350             'Module::Build::Platform::RiscOS'=> '0.36',
4351             'Module::Build::Platform::Unix'=> '0.36',
4352             'Module::Build::Platform::VMS'=> '0.36',
4353             'Module::Build::Platform::VOS'=> '0.36',
4354             'Module::Build::Platform::Windows'=> '0.36',
4355             'Module::Build::Platform::aix'=> '0.36',
4356             'Module::Build::Platform::cygwin'=> '0.36',
4357             'Module::Build::Platform::darwin'=> '0.36',
4358             'Module::Build::Platform::os2'=> '0.36',
4359             'Module::Build::PodParser'=> '0.36',
4360             'Module::CoreList' => '2.24',
4361             'POSIX' => '1.19',
4362             'Pod::Simple' => '3.13',
4363             'Pod::Simple::BlackBox' => '3.13',
4364             'Pod::Simple::Checker' => '3.13',
4365             'Pod::Simple::Debug' => '3.13',
4366             'Pod::Simple::DumpAsText'=> '3.13',
4367             'Pod::Simple::DumpAsXML'=> '3.13',
4368             'Pod::Simple::HTML' => '3.13',
4369             'Pod::Simple::HTMLBatch'=> '3.13',
4370             'Pod::Simple::LinkSection'=> '3.13',
4371             'Pod::Simple::Methody' => '3.13',
4372             'Pod::Simple::Progress' => '3.13',
4373             'Pod::Simple::PullParser'=> '3.13',
4374             'Pod::Simple::PullParserEndToken'=> '3.13',
4375             'Pod::Simple::PullParserStartToken'=> '3.13',
4376             'Pod::Simple::PullParserTextToken'=> '3.13',
4377             'Pod::Simple::PullParserToken'=> '3.13',
4378             'Pod::Simple::RTF' => '3.13',
4379             'Pod::Simple::Search' => '3.13',
4380             'Pod::Simple::SimpleTree'=> '3.13',
4381             'Pod::Simple::Text' => '3.13',
4382             'Pod::Simple::TextContent'=> '3.13',
4383             'Pod::Simple::TiedOutFH'=> '3.13',
4384             'Pod::Simple::Transcode'=> '3.13',
4385             'Pod::Simple::TranscodeDumb'=> '3.13',
4386             'Pod::Simple::TranscodeSmart'=> '3.13',
4387             'Pod::Simple::XHTML' => '3.13',
4388             'Pod::Simple::XMLOutStream'=> '3.13',
4389             'Safe' => '2.20',
4390             'Unicode' => '5.2.0',
4391             'constant' => '1.20',
4392             'diagnostics' => '1.19',
4393             'feature' => '1.14',
4394             'inc::latest' => '0.36',
4395             'threads' => '1.75',
4396             'warnings' => '1.08',
4397             },
4398             removed => {
4399             'legacy' => 1,
4400             }
4401             },
4402             5.011004 => {
4403             delta_from => 5.011003,
4404             changed => {
4405             'App::Cpan' => '1.5701',
4406             'Archive::Extract' => '0.38',
4407             'B::Deparse' => '0.94',
4408             'CPAN' => '1.94_54',
4409             'CPAN::FirstTime' => '5.53',
4410             'CPAN::Mirrors' => '1.77',
4411             'Carp' => '1.15',
4412             'Carp::Heavy' => '1.15',
4413             'Compress::Raw::Bzip2' => '2.024',
4414             'Compress::Raw::Zlib' => '2.024',
4415             'Compress::Zlib' => '2.024',
4416             'File::Copy' => '2.17',
4417             'File::Fetch' => '0.24',
4418             'GDBM_File' => '1.10',
4419             'IO::Compress::Adapter::Bzip2'=> '2.024',
4420             'IO::Compress::Adapter::Deflate'=> '2.024',
4421             'IO::Compress::Adapter::Identity'=> '2.024',
4422             'IO::Compress::Base' => '2.024',
4423             'IO::Compress::Base::Common'=> '2.024',
4424             'IO::Compress::Bzip2' => '2.024',
4425             'IO::Compress::Deflate' => '2.024',
4426             'IO::Compress::Gzip' => '2.024',
4427             'IO::Compress::Gzip::Constants'=> '2.024',
4428             'IO::Compress::RawDeflate'=> '2.024',
4429             'IO::Compress::Zip' => '2.024',
4430             'IO::Compress::Zip::Constants'=> '2.024',
4431             'IO::Compress::Zlib::Constants'=> '2.024',
4432             'IO::Compress::Zlib::Extra'=> '2.024',
4433             'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4434             'IO::Uncompress::Adapter::Identity'=> '2.024',
4435             'IO::Uncompress::Adapter::Inflate'=> '2.024',
4436             'IO::Uncompress::AnyInflate'=> '2.024',
4437             'IO::Uncompress::AnyUncompress'=> '2.024',
4438             'IO::Uncompress::Base' => '2.024',
4439             'IO::Uncompress::Bunzip2'=> '2.024',
4440             'IO::Uncompress::Gunzip'=> '2.024',
4441             'IO::Uncompress::Inflate'=> '2.024',
4442             'IO::Uncompress::RawInflate'=> '2.024',
4443             'IO::Uncompress::Unzip' => '2.024',
4444             'Module::Build' => '0.3603',
4445             'Module::Build::Base' => '0.3603',
4446             'Module::Build::Compat' => '0.3603',
4447             'Module::Build::Config' => '0.3603',
4448             'Module::Build::Cookbook'=> '0.3603',
4449             'Module::Build::Dumper' => '0.3603',
4450             'Module::Build::ModuleInfo'=> '0.3603',
4451             'Module::Build::Notes' => '0.3603',
4452             'Module::Build::PPMMaker'=> '0.3603',
4453             'Module::Build::Platform::Amiga'=> '0.3603',
4454             'Module::Build::Platform::Default'=> '0.3603',
4455             'Module::Build::Platform::EBCDIC'=> '0.3603',
4456             'Module::Build::Platform::MPEiX'=> '0.3603',
4457             'Module::Build::Platform::MacOS'=> '0.3603',
4458             'Module::Build::Platform::RiscOS'=> '0.3603',
4459             'Module::Build::Platform::Unix'=> '0.3603',
4460             'Module::Build::Platform::VMS'=> '0.3603',
4461             'Module::Build::Platform::VOS'=> '0.3603',
4462             'Module::Build::Platform::Windows'=> '0.3603',
4463             'Module::Build::Platform::aix'=> '0.3603',
4464             'Module::Build::Platform::cygwin'=> '0.3603',
4465             'Module::Build::Platform::darwin'=> '0.3603',
4466             'Module::Build::Platform::os2'=> '0.3603',
4467             'Module::Build::PodParser'=> '0.3603',
4468             'Module::CoreList' => '2.25',
4469             'PerlIO::encoding' => '0.12',
4470             'Safe' => '2.21',
4471             'UNIVERSAL' => '1.06',
4472             'feature' => '1.15',
4473             'inc::latest' => '0.3603',
4474             'less' => '0.03',
4475             're' => '0.11',
4476             'version' => '0.81',
4477             'warnings' => '1.09',
4478             },
4479             removed => {
4480             }
4481             },
4482             5.011005 => {
4483             delta_from => 5.011004,
4484             changed => {
4485             'B::Debug' => '1.12',
4486             'CPAN' => '1.94_56',
4487             'CPAN::Debug' => '5.5001',
4488             'CPAN::Distribution' => '1.9456',
4489             'CPAN::FirstTime' => '5.5301',
4490             'CPAN::HandleConfig' => '5.5001',
4491             'CPAN::Shell' => '5.5001',
4492             'CPAN::Tarzip' => '5.5011',
4493             'CPANPLUS::Dist::Build' => '0.46',
4494             'CPANPLUS::Dist::Build::Constants'=> '0.46',
4495             'Module::CoreList' => '2.26',
4496             'Pod::Man' => '2.23',
4497             'Pod::ParseLink' => '1.10',
4498             'Pod::Perldoc' => '3.15_02',
4499             'Pod::Plainer' => '1.02',
4500             'Pod::Text' => '3.14',
4501             'Pod::Text::Color' => '2.06',
4502             'Pod::Text::Overstrike' => '2.04',
4503             'Pod::Text::Termcap' => '2.06',
4504             'Safe' => '2.22',
4505             'Socket' => '1.86',
4506             'version' => '0.82',
4507             },
4508             removed => {
4509             }
4510             },
4511             5.012 => {
4512             delta_from => 5.011005,
4513             changed => {
4514             'B::Deparse' => '0.96',
4515             'CPAN::Distribution' => '1.9456_01',
4516             'Module::CoreList' => '2.29',
4517             'Safe' => '2.25',
4518             'Socket' => '1.87',
4519             'Tie::Scalar' => '1.02',
4520             'Time::Piece' => '1.15_01',
4521             'bytes' => '1.04',
4522             'feature' => '1.16',
4523             'utf8' => '1.08',
4524             },
4525             removed => {
4526             }
4527             },
4528             5.012001 => {
4529             delta_from => 5.012,
4530             changed => {
4531             'B::Deparse' => '0.97',
4532             'CGI' => '3.49',
4533             'CGI::Fast' => '1.08',
4534             'Carp' => '1.16',
4535             'Carp::Heavy' => '1.16',
4536             'File::Copy' => '2.18',
4537             'Module::CoreList' => '2.32',
4538             'Pod::Functions' => '1.04',
4539             'Pod::Simple' => '3.14',
4540             'Pod::Simple::BlackBox' => '3.14',
4541             'Pod::Simple::Checker' => '3.14',
4542             'Pod::Simple::Debug' => '3.14',
4543             'Pod::Simple::DumpAsText'=> '3.14',
4544             'Pod::Simple::DumpAsXML'=> '3.14',
4545             'Pod::Simple::HTML' => '3.14',
4546             'Pod::Simple::HTMLBatch'=> '3.14',
4547             'Pod::Simple::LinkSection'=> '3.14',
4548             'Pod::Simple::Methody' => '3.14',
4549             'Pod::Simple::Progress' => '3.14',
4550             'Pod::Simple::PullParser'=> '3.14',
4551             'Pod::Simple::PullParserEndToken'=> '3.14',
4552             'Pod::Simple::PullParserStartToken'=> '3.14',
4553             'Pod::Simple::PullParserTextToken'=> '3.14',
4554             'Pod::Simple::PullParserToken'=> '3.14',
4555             'Pod::Simple::RTF' => '3.14',
4556             'Pod::Simple::Search' => '3.14',
4557             'Pod::Simple::SimpleTree'=> '3.14',
4558             'Pod::Simple::Text' => '3.14',
4559             'Pod::Simple::TextContent'=> '3.14',
4560             'Pod::Simple::TiedOutFH'=> '3.14',
4561             'Pod::Simple::Transcode'=> '3.14',
4562             'Pod::Simple::TranscodeDumb'=> '3.14',
4563             'Pod::Simple::TranscodeSmart'=> '3.14',
4564             'Pod::Simple::XHTML' => '3.14',
4565             'Pod::Simple::XMLOutStream'=> '3.14',
4566             'Safe' => '2.27',
4567             },
4568             removed => {
4569             }
4570             },
4571             5.012002 => {
4572             delta_from => 5.012001,
4573             changed => {
4574             'Carp' => '1.17',
4575             'Carp::Heavy' => '1.17',
4576             'File::Spec' => '3.31_01',
4577             'Module::CoreList' => '2.38',
4578             'Module::Load::Conditional'=> '0.38',
4579             'PerlIO::scalar' => '0.08',
4580             },
4581             removed => {
4582             }
4583             },
4584             5.012003 => {
4585             delta_from => 5.012002,
4586             changed => {
4587             'B::Deparse' => '0.9701',
4588             'Module::Build::Platform::cygwin'=> '0.360301',
4589             'Module::CoreList' => '2.43',
4590             'Socket' => '1.87_01',
4591             },
4592             removed => {
4593             }
4594             },
4595             5.012004 => {
4596             delta_from => 5.012003,
4597             changed => {
4598             'Module::CoreList' => '2.50',
4599             },
4600             removed => {
4601             }
4602             },
4603             5.012005 => {
4604             delta_from => 5.012004,
4605             changed => {
4606             'B::Concise' => '0.78_01',
4607             'Encode' => '2.39_01',
4608             'File::Glob' => '1.07_01',
4609             'Module::CoreList' => '2.50_02',
4610             'Unicode::UCD' => '0.29',
4611             'charnames' => '1.07_01',
4612             },
4613             removed => {
4614             }
4615             },
4616             5.013 => {
4617             delta_from => 5.012,
4618             changed => {
4619             'CGI' => '3.49',
4620             'CGI::Fast' => '1.08',
4621             'Data::Dumper' => '2.126',
4622             'ExtUtils::MM_Unix' => '6.5601',
4623             'ExtUtils::MakeMaker' => '6.5601',
4624             'File::Copy' => '2.18',
4625             'IPC::Open3' => '1.06',
4626             'MIME::Base64' => '3.09',
4627             'MIME::QuotedPrint' => '3.09',
4628             'Module::CoreList' => '2.31',
4629             'Pod::Functions' => '1.04',
4630             'XS::APItest' => '0.18',
4631             'XS::APItest::KeywordRPN'=> '0.004',
4632             'feature' => '1.17',
4633             'threads' => '1.77_01',
4634             'threads::shared' => '1.33',
4635             },
4636             removed => {
4637             }
4638             },
4639             5.013001 => {
4640             delta_from => 5.012001,
4641             changed => {
4642             'Data::Dumper' => '2.126',
4643             'Dumpvalue' => '1.14',
4644             'Errno' => '1.12',
4645             'ExtUtils::MM_Unix' => '6.5601',
4646             'ExtUtils::MakeMaker' => '6.5601',
4647             'ExtUtils::ParseXS' => '2.2205',
4648             'File::Find' => '1.16',
4649             'IPC::Cmd' => '0.58',
4650             'IPC::Open3' => '1.06',
4651             'List::Util' => '1.23',
4652             'List::Util::PP' => '1.23',
4653             'List::Util::XS' => '1.23',
4654             'Locale::Codes' => '3.12',
4655             'Locale::Codes::Country'=> '3.12',
4656             'Locale::Codes::Currency'=> '3.12',
4657             'Locale::Codes::Language'=> '3.12',
4658             'Locale::Codes::Script' => '3.12',
4659             'Locale::Constants' => '3.12',
4660             'Locale::Country' => '3.12',
4661             'Locale::Currency' => '3.12',
4662             'Locale::Language' => '3.12',
4663             'Locale::Script' => '3.12',
4664             'MIME::Base64' => '3.09',
4665             'MIME::QuotedPrint' => '3.09',
4666             'Module::Build::Platform::cygwin'=> '0.360301',
4667             'Module::CoreList' => '2.34',
4668             'Module::Load::Conditional'=> '0.38',
4669             'PerlIO::scalar' => '0.08',
4670             'Scalar::Util' => '1.23',
4671             'Scalar::Util::PP' => '1.23',
4672             'Socket' => '1.88',
4673             'Term::ReadLine' => '1.06',
4674             'Unicode::UCD' => '0.28',
4675             'XS::APItest' => '0.19',
4676             'XS::APItest::KeywordRPN'=> '0.004',
4677             'charnames' => '1.08',
4678             'feature' => '1.17',
4679             'threads' => '1.77_01',
4680             'threads::shared' => '1.33',
4681             },
4682             removed => {
4683             'Class::ISA' => 1,
4684             'Pod::Plainer' => 1,
4685             'Switch' => 1,
4686             }
4687             },
4688             5.013002 => {
4689             delta_from => 5.013001,
4690             changed => {
4691             'B::Concise' => '0.79',
4692             'B::Deparse' => '0.98',
4693             'CPAN' => '1.94_57',
4694             'CPAN::Distribution' => '1.9600',
4695             'Exporter' => '5.64_02',
4696             'Exporter::Heavy' => '5.64_02',
4697             'File::Copy' => '2.19',
4698             'Hash::Util' => '0.08',
4699             'IO::Socket' => '1.32',
4700             'Locale::Codes' => '3.13',
4701             'Locale::Codes::Country'=> '3.13',
4702             'Locale::Codes::Currency'=> '3.13',
4703             'Locale::Codes::Language'=> '3.13',
4704             'Locale::Codes::Script' => '3.13',
4705             'Locale::Constants' => '3.13',
4706             'Locale::Country' => '3.13',
4707             'Locale::Currency' => '3.13',
4708             'Locale::Language' => '3.13',
4709             'Locale::Script' => '3.13',
4710             'Search::Dict' => '1.03',
4711             'Socket' => '1.89',
4712             'Thread::Semaphore' => '2.11',
4713             'UNIVERSAL' => '1.07',
4714             'VMS::DCLsym' => '1.04',
4715             'mro' => '1.03',
4716             'threads' => '1.77_02',
4717             'threads::shared' => '1.33_01',
4718             },
4719             removed => {
4720             }
4721             },
4722             5.013003 => {
4723             delta_from => 5.013002,
4724             changed => {
4725             'App::Prove' => '3.21',
4726             'App::Prove::State' => '3.21',
4727             'App::Prove::State::Result'=> '3.21',
4728             'App::Prove::State::Result::Test'=> '3.21',
4729             'Archive::Extract' => '0.42',
4730             'Archive::Tar' => '1.64',
4731             'Archive::Tar::Constant'=> '1.64',
4732             'Archive::Tar::File' => '1.64',
4733             'Attribute::Handlers' => '0.88',
4734             'CPANPLUS' => '0.9007',
4735             'CPANPLUS::Internals' => '0.9007',
4736             'CPANPLUS::Shell::Default'=> '0.9007',
4737             'Compress::Raw::Bzip2' => '2.027',
4738             'Compress::Raw::Zlib' => '2.027_01',
4739             'Compress::Zlib' => '2.027',
4740             'DB' => '1.03',
4741             'Digest::MD5' => '2.40',
4742             'Digest::SHA' => '5.48',
4743             'Exporter' => '5.64_03',
4744             'Exporter::Heavy' => '5.64_03',
4745             'ExtUtils::CBuilder' => '0.2703',
4746             'ExtUtils::CBuilder::Base'=> '0.2703_01',
4747             'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4748             'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4749             'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4750             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4751             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4752             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4753             'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4754             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4755             'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4756             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4757             'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4758             'ExtUtils::Manifest' => '1.58',
4759             'ExtUtils::ParseXS' => '2.2206',
4760             'Fatal' => '2.10',
4761             'File::Basename' => '2.79',
4762             'File::Copy' => '2.20',
4763             'File::DosGlob' => '1.02',
4764             'File::Find' => '1.17',
4765             'File::Glob' => '1.08',
4766             'File::stat' => '1.03',
4767             'I18N::LangTags' => '0.35_01',
4768             'I18N::LangTags::List' => '0.35_01',
4769             'IO::Compress::Adapter::Bzip2'=> '2.027',
4770             'IO::Compress::Adapter::Deflate'=> '2.027',
4771             'IO::Compress::Adapter::Identity'=> '2.027',
4772             'IO::Compress::Base' => '2.027',
4773             'IO::Compress::Base::Common'=> '2.027',
4774             'IO::Compress::Bzip2' => '2.027',
4775             'IO::Compress::Deflate' => '2.027',
4776             'IO::Compress::Gzip' => '2.027',
4777             'IO::Compress::Gzip::Constants'=> '2.027',
4778             'IO::Compress::RawDeflate'=> '2.027',
4779             'IO::Compress::Zip' => '2.027',
4780             'IO::Compress::Zip::Constants'=> '2.027',
4781             'IO::Compress::Zlib::Constants'=> '2.027',
4782             'IO::Compress::Zlib::Extra'=> '2.027',
4783             'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4784             'IO::Uncompress::Adapter::Identity'=> '2.027',
4785             'IO::Uncompress::Adapter::Inflate'=> '2.027',
4786             'IO::Uncompress::AnyInflate'=> '2.027',
4787             'IO::Uncompress::AnyUncompress'=> '2.027',
4788             'IO::Uncompress::Base' => '2.027',
4789             'IO::Uncompress::Bunzip2'=> '2.027',
4790             'IO::Uncompress::Gunzip'=> '2.027',
4791             'IO::Uncompress::Inflate'=> '2.027',
4792             'IO::Uncompress::RawInflate'=> '2.027',
4793             'IO::Uncompress::Unzip' => '2.027',
4794             'IPC::Cmd' => '0.60',
4795             'IPC::Msg' => '2.03',
4796             'IPC::Semaphore' => '2.03',
4797             'IPC::SharedMem' => '2.03',
4798             'IPC::SysV' => '2.03',
4799             'Locale::Maketext' => '1.15',
4800             'Locale::Maketext::Guts'=> undef,
4801             'Locale::Maketext::GutsLoader'=> undef,
4802             'Module::Build' => '0.3607',
4803             'Module::Build::Base' => '0.3607',
4804             'Module::Build::Compat' => '0.3607',
4805             'Module::Build::Config' => '0.3607',
4806             'Module::Build::Cookbook'=> '0.3607',
4807             'Module::Build::Dumper' => '0.3607',
4808             'Module::Build::ModuleInfo'=> '0.3607',
4809             'Module::Build::Notes' => '0.3607',
4810             'Module::Build::PPMMaker'=> '0.3607',
4811             'Module::Build::Platform::Amiga'=> '0.3607',
4812             'Module::Build::Platform::Default'=> '0.3607',
4813             'Module::Build::Platform::EBCDIC'=> '0.3607',
4814             'Module::Build::Platform::MPEiX'=> '0.3607',
4815             'Module::Build::Platform::MacOS'=> '0.3607',
4816             'Module::Build::Platform::RiscOS'=> '0.3607',
4817             'Module::Build::Platform::Unix'=> '0.3607',
4818             'Module::Build::Platform::VMS'=> '0.3607',
4819             'Module::Build::Platform::VOS'=> '0.3607',
4820             'Module::Build::Platform::Windows'=> '0.3607',
4821             'Module::Build::Platform::aix'=> '0.3607',
4822             'Module::Build::Platform::cygwin'=> '0.3607',
4823             'Module::Build::Platform::darwin'=> '0.3607',
4824             'Module::Build::Platform::os2'=> '0.3607',
4825             'Module::Build::PodParser'=> '0.3607',
4826             'Module::CoreList' => '2.36',
4827             'Module::Load' => '0.18',
4828             'TAP::Base' => '3.21',
4829             'TAP::Formatter::Base' => '3.21',
4830             'TAP::Formatter::Color' => '3.21',
4831             'TAP::Formatter::Console'=> '3.21',
4832             'TAP::Formatter::Console::ParallelSession'=> '3.21',
4833             'TAP::Formatter::Console::Session'=> '3.21',
4834             'TAP::Formatter::File' => '3.21',
4835             'TAP::Formatter::File::Session'=> '3.21',
4836             'TAP::Formatter::Session'=> '3.21',
4837             'TAP::Harness' => '3.21',
4838             'TAP::Object' => '3.21',
4839             'TAP::Parser' => '3.21',
4840             'TAP::Parser::Aggregator'=> '3.21',
4841             'TAP::Parser::Grammar' => '3.21',
4842             'TAP::Parser::Iterator' => '3.21',
4843             'TAP::Parser::Iterator::Array'=> '3.21',
4844             'TAP::Parser::Iterator::Process'=> '3.21',
4845             'TAP::Parser::Iterator::Stream'=> '3.21',
4846             'TAP::Parser::IteratorFactory'=> '3.21',
4847             'TAP::Parser::Multiplexer'=> '3.21',
4848             'TAP::Parser::Result' => '3.21',
4849             'TAP::Parser::Result::Bailout'=> '3.21',
4850             'TAP::Parser::Result::Comment'=> '3.21',
4851             'TAP::Parser::Result::Plan'=> '3.21',
4852             'TAP::Parser::Result::Pragma'=> '3.21',
4853             'TAP::Parser::Result::Test'=> '3.21',
4854             'TAP::Parser::Result::Unknown'=> '3.21',
4855             'TAP::Parser::Result::Version'=> '3.21',
4856             'TAP::Parser::Result::YAML'=> '3.21',
4857             'TAP::Parser::ResultFactory'=> '3.21',
4858             'TAP::Parser::Scheduler'=> '3.21',
4859             'TAP::Parser::Scheduler::Job'=> '3.21',
4860             'TAP::Parser::Scheduler::Spinner'=> '3.21',
4861             'TAP::Parser::Source' => '3.21',
4862             'TAP::Parser::SourceHandler'=> '3.21',
4863             'TAP::Parser::SourceHandler::Executable'=> '3.21',
4864             'TAP::Parser::SourceHandler::File'=> '3.21',
4865             'TAP::Parser::SourceHandler::Handle'=> '3.21',
4866             'TAP::Parser::SourceHandler::Perl'=> '3.21',
4867             'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4868             'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4869             'TAP::Parser::Utils' => '3.21',
4870             'TAP::Parser::YAMLish::Reader'=> '3.21',
4871             'TAP::Parser::YAMLish::Writer'=> '3.21',
4872             'Term::ANSIColor' => '3.00',
4873             'Term::ReadLine' => '1.07',
4874             'Test::Harness' => '3.21',
4875             'Tie::Array' => '1.04',
4876             'Time::HiRes' => '1.9721',
4877             'Time::Piece' => '1.20_01',
4878             'Unicode::Collate' => '0.53',
4879             'Unicode::Normalize' => '1.06',
4880             'Unicode::UCD' => '0.29',
4881             'autodie' => '2.10',
4882             'autodie::exception' => '2.10',
4883             'autodie::exception::system'=> '2.10',
4884             'autodie::hints' => '2.10',
4885             'blib' => '1.05',
4886             'charnames' => '1.11',
4887             'diagnostics' => '1.20',
4888             'inc::latest' => '0.3607',
4889             'lib' => '0.63',
4890             're' => '0.12',
4891             'threads' => '1.77_03',
4892             'threads::shared' => '1.33_02',
4893             'vars' => '1.02',
4894             'warnings' => '1.10',
4895             },
4896             removed => {
4897             'TAP::Parser::Source::Perl'=> 1,
4898             }
4899             },
4900             5.013004 => {
4901             delta_from => 5.013003,
4902             changed => {
4903             'App::Prove' => '3.22',
4904             'App::Prove::State' => '3.22',
4905             'App::Prove::State::Result'=> '3.22',
4906             'App::Prove::State::Result::Test'=> '3.22',
4907             'Archive::Tar' => '1.68',
4908             'Archive::Tar::Constant'=> '1.68',
4909             'Archive::Tar::File' => '1.68',
4910             'B::Lint' => '1.12',
4911             'B::Lint::Debug' => '1.12',
4912             'Carp' => '1.18',
4913             'Carp::Heavy' => '1.18',
4914             'Compress::Raw::Bzip2' => '2.030',
4915             'Compress::Raw::Zlib' => '2.030',
4916             'Compress::Zlib' => '2.030',
4917             'ExtUtils::ParseXS' => '2.2207',
4918             'File::Spec' => '3.31_01',
4919             'I18N::Langinfo' => '0.04',
4920             'IO::Compress::Adapter::Bzip2'=> '2.030',
4921             'IO::Compress::Adapter::Deflate'=> '2.030',
4922             'IO::Compress::Adapter::Identity'=> '2.030',
4923             'IO::Compress::Base' => '2.030',
4924             'IO::Compress::Base::Common'=> '2.030',
4925             'IO::Compress::Bzip2' => '2.030',
4926             'IO::Compress::Deflate' => '2.030',
4927             'IO::Compress::Gzip' => '2.030',
4928             'IO::Compress::Gzip::Constants'=> '2.030',
4929             'IO::Compress::RawDeflate'=> '2.030',
4930             'IO::Compress::Zip' => '2.030',
4931             'IO::Compress::Zip::Constants'=> '2.030',
4932             'IO::Compress::Zlib::Constants'=> '2.030',
4933             'IO::Compress::Zlib::Extra'=> '2.030',
4934             'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4935             'IO::Uncompress::Adapter::Identity'=> '2.030',
4936             'IO::Uncompress::Adapter::Inflate'=> '2.030',
4937             'IO::Uncompress::AnyInflate'=> '2.030',
4938             'IO::Uncompress::AnyUncompress'=> '2.030',
4939             'IO::Uncompress::Base' => '2.030',
4940             'IO::Uncompress::Bunzip2'=> '2.030',
4941             'IO::Uncompress::Gunzip'=> '2.030',
4942             'IO::Uncompress::Inflate'=> '2.030',
4943             'IO::Uncompress::RawInflate'=> '2.030',
4944             'IO::Uncompress::Unzip' => '2.030',
4945             'Module::CoreList' => '2.37',
4946             'TAP::Base' => '3.22',
4947             'TAP::Formatter::Base' => '3.22',
4948             'TAP::Formatter::Color' => '3.22',
4949             'TAP::Formatter::Console'=> '3.22',
4950             'TAP::Formatter::Console::ParallelSession'=> '3.22',
4951             'TAP::Formatter::Console::Session'=> '3.22',
4952             'TAP::Formatter::File' => '3.22',
4953             'TAP::Formatter::File::Session'=> '3.22',
4954             'TAP::Formatter::Session'=> '3.22',
4955             'TAP::Harness' => '3.22',
4956             'TAP::Object' => '3.22',
4957             'TAP::Parser' => '3.22',
4958             'TAP::Parser::Aggregator'=> '3.22',
4959             'TAP::Parser::Grammar' => '3.22',
4960             'TAP::Parser::Iterator' => '3.22',
4961             'TAP::Parser::Iterator::Array'=> '3.22',
4962             'TAP::Parser::Iterator::Process'=> '3.22',
4963             'TAP::Parser::Iterator::Stream'=> '3.22',
4964             'TAP::Parser::IteratorFactory'=> '3.22',
4965             'TAP::Parser::Multiplexer'=> '3.22',
4966             'TAP::Parser::Result' => '3.22',
4967             'TAP::Parser::Result::Bailout'=> '3.22',
4968             'TAP::Parser::Result::Comment'=> '3.22',
4969             'TAP::Parser::Result::Plan'=> '3.22',
4970             'TAP::Parser::Result::Pragma'=> '3.22',
4971             'TAP::Parser::Result::Test'=> '3.22',
4972             'TAP::Parser::Result::Unknown'=> '3.22',
4973             'TAP::Parser::Result::Version'=> '3.22',
4974             'TAP::Parser::Result::YAML'=> '3.22',
4975             'TAP::Parser::ResultFactory'=> '3.22',
4976             'TAP::Parser::Scheduler'=> '3.22',
4977             'TAP::Parser::Scheduler::Job'=> '3.22',
4978             'TAP::Parser::Scheduler::Spinner'=> '3.22',
4979             'TAP::Parser::Source' => '3.22',
4980             'TAP::Parser::SourceHandler'=> '3.22',
4981             'TAP::Parser::SourceHandler::Executable'=> '3.22',
4982             'TAP::Parser::SourceHandler::File'=> '3.22',
4983             'TAP::Parser::SourceHandler::Handle'=> '3.22',
4984             'TAP::Parser::SourceHandler::Perl'=> '3.22',
4985             'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4986             'TAP::Parser::Utils' => '3.22',
4987             'TAP::Parser::YAMLish::Reader'=> '3.22',
4988             'TAP::Parser::YAMLish::Writer'=> '3.22',
4989             'Test::Builder' => '0.96',
4990             'Test::Builder::Module' => '0.96',
4991             'Test::Builder::Tester' => '1.20',
4992             'Test::Builder::Tester::Color'=> '1.20',
4993             'Test::Harness' => '3.22',
4994             'Test::More' => '0.96',
4995             'Test::Simple' => '0.96',
4996             'Unicode::Collate' => '0.56',
4997             'Unicode::Collate::Locale'=> '0.56',
4998             'XS::APItest' => '0.20',
4999             'charnames' => '1.15',
5000             'feature' => '1.18',
5001             },
5002             removed => {
5003             'TAP::Parser::SourceHandler::pgTAP'=> 1,
5004             }
5005             },
5006             5.013005 => {
5007             delta_from => 5.013004,
5008             changed => {
5009             'B::Debug' => '1.16',
5010             'CPANPLUS::Dist::Build' => '0.48',
5011             'CPANPLUS::Dist::Build::Constants'=> '0.48',
5012             'Data::Dumper' => '2.128',
5013             'Encode' => '2.40',
5014             'Encode::Guess' => '2.04',
5015             'Encode::MIME::Header' => '2.12',
5016             'Encode::Unicode::UTF7' => '2.05',
5017             'Errno' => '1.13',
5018             'ExtUtils::Command::MM' => '6.57_05',
5019             'ExtUtils::Liblist' => '6.57_05',
5020             'ExtUtils::Liblist::Kid'=> '6.5705',
5021             'ExtUtils::MM' => '6.57_05',
5022             'ExtUtils::MM_AIX' => '6.57_05',
5023             'ExtUtils::MM_Any' => '6.57_05',
5024             'ExtUtils::MM_BeOS' => '6.57_05',
5025             'ExtUtils::MM_Cygwin' => '6.57_05',
5026             'ExtUtils::MM_DOS' => '6.5705',
5027             'ExtUtils::MM_Darwin' => '6.57_05',
5028             'ExtUtils::MM_MacOS' => '6.5705',
5029             'ExtUtils::MM_NW5' => '6.57_05',
5030             'ExtUtils::MM_OS2' => '6.57_05',
5031             'ExtUtils::MM_QNX' => '6.57_05',
5032             'ExtUtils::MM_UWIN' => '6.5705',
5033             'ExtUtils::MM_Unix' => '6.57_05',
5034             'ExtUtils::MM_VMS' => '6.57_05',
5035             'ExtUtils::MM_VOS' => '6.57_05',
5036             'ExtUtils::MM_Win32' => '6.57_05',
5037             'ExtUtils::MM_Win95' => '6.57_05',
5038             'ExtUtils::MY' => '6.5705',
5039             'ExtUtils::MakeMaker' => '6.57_05',
5040             'ExtUtils::MakeMaker::Config'=> '6.57_05',
5041             'ExtUtils::MakeMaker::YAML'=> '1.44',
5042             'ExtUtils::Mkbootstrap' => '6.57_05',
5043             'ExtUtils::Mksymlists' => '6.57_05',
5044             'ExtUtils::testlib' => '6.5705',
5045             'Filter::Simple' => '0.85',
5046             'Hash::Util' => '0.09',
5047             'Math::BigFloat' => '1.62',
5048             'Math::BigInt' => '1.95',
5049             'Math::BigInt::Calc' => '0.54',
5050             'Math::BigInt::CalcEmu' => '0.06',
5051             'Math::BigInt::FastCalc'=> '0.22',
5052             'Math::BigRat' => '0.26',
5053             'Module::CoreList' => '2.39',
5054             'POSIX' => '1.20',
5055             'PerlIO::scalar' => '0.09',
5056             'Safe' => '2.28',
5057             'Test::Builder' => '0.97_01',
5058             'Test::Builder::Module' => '0.97_01',
5059             'Test::Builder::Tester' => '1.21_01',
5060             'Test::Builder::Tester::Color'=> '1.21_01',
5061             'Test::More' => '0.97_01',
5062             'Test::Simple' => '0.97_01',
5063             'Tie::Hash' => '1.04',
5064             'Unicode::Collate' => '0.59',
5065             'Unicode::Collate::Locale'=> '0.59',
5066             'XS::APItest' => '0.21',
5067             'XS::APItest::KeywordRPN'=> '0.005',
5068             'XSLoader' => '0.11',
5069             'bigint' => '0.25',
5070             'bignum' => '0.25',
5071             'bigrat' => '0.25',
5072             'blib' => '1.06',
5073             'open' => '1.08',
5074             'threads::shared' => '1.33_03',
5075             'warnings' => '1.11',
5076             'warnings::register' => '1.02',
5077             },
5078             removed => {
5079             }
5080             },
5081             5.013006 => {
5082             delta_from => 5.013005,
5083             changed => {
5084             'Archive::Extract' => '0.44',
5085             'B' => '1.24',
5086             'B::Deparse' => '0.99',
5087             'CPAN' => '1.94_61',
5088             'CPAN::FTP' => '5.5005',
5089             'CPAN::Queue' => '5.5001',
5090             'CPAN::Version' => '5.5001',
5091             'Carp' => '1.19',
5092             'Carp::Heavy' => '1.19',
5093             'Compress::Raw::Bzip2' => '2.031',
5094             'Cwd' => '3.34',
5095             'Data::Dumper' => '2.129',
5096             'Devel::Peek' => '1.05',
5097             'Digest::MD5' => '2.51',
5098             'ExtUtils::Constant::Base'=> '0.05',
5099             'ExtUtils::Constant::ProxySubs'=> '0.07',
5100             'ExtUtils::Embed' => '1.29',
5101             'ExtUtils::XSSymSet' => '1.2',
5102             'Fcntl' => '1.09',
5103             'File::DosGlob' => '1.03',
5104             'File::Find' => '1.18',
5105             'File::Glob' => '1.09',
5106             'File::Spec' => '3.33',
5107             'File::Spec::Cygwin' => '3.33',
5108             'File::Spec::Epoc' => '3.33',
5109             'File::Spec::Functions' => '3.33',
5110             'File::Spec::Mac' => '3.33',
5111             'File::Spec::OS2' => '3.33',
5112             'File::Spec::Unix' => '3.33',
5113             'File::Spec::VMS' => '3.33',
5114             'File::Spec::Win32' => '3.33',
5115             'GDBM_File' => '1.11',
5116             'Hash::Util::FieldHash' => '1.05',
5117             'I18N::Langinfo' => '0.06',
5118             'IPC::Cmd' => '0.64',
5119             'IPC::Open3' => '1.07',
5120             'Locale::Codes' => '3.14',
5121             'Locale::Codes::Country'=> '3.14',
5122             'Locale::Codes::Currency'=> '3.14',
5123             'Locale::Codes::Language'=> '3.14',
5124             'Locale::Codes::Script' => '3.14',
5125             'Locale::Constants' => '3.14',
5126             'Locale::Country' => '3.14',
5127             'Locale::Currency' => '3.14',
5128             'Locale::Language' => '3.14',
5129             'Locale::Maketext' => '1.16',
5130             'Locale::Script' => '3.14',
5131             'Math::BigFloat' => '1.63',
5132             'Math::BigInt' => '1.97',
5133             'Math::BigInt::Calc' => '0.55',
5134             'Math::BigInt::CalcEmu' => '0.07',
5135             'Module::CoreList' => '2.40',
5136             'NDBM_File' => '1.09',
5137             'NEXT' => '0.65',
5138             'ODBM_File' => '1.08',
5139             'Opcode' => '1.16',
5140             'POSIX' => '1.21',
5141             'PerlIO::encoding' => '0.13',
5142             'PerlIO::scalar' => '0.10',
5143             'PerlIO::via' => '0.10',
5144             'Pod::Man' => '2.25',
5145             'Pod::Text' => '3.15',
5146             'SDBM_File' => '1.07',
5147             'Socket' => '1.90',
5148             'Sys::Hostname' => '1.13',
5149             'Tie::Hash::NamedCapture'=> '0.07',
5150             'Unicode::Collate' => '0.63',
5151             'Unicode::Collate::Locale'=> '0.63',
5152             'Unicode::Normalize' => '1.07',
5153             'XS::APItest' => '0.23',
5154             'XSLoader' => '0.13',
5155             'attributes' => '0.13',
5156             'charnames' => '1.16',
5157             'if' => '0.06',
5158             'mro' => '1.04',
5159             'overload' => '1.11',
5160             're' => '0.13',
5161             'sigtrap' => '1.05',
5162             'threads' => '1.81_01',
5163             'threads::shared' => '1.34',
5164             },
5165             removed => {
5166             'XS::APItest::KeywordRPN'=> 1,
5167             }
5168             },
5169             5.013007 => {
5170             delta_from => 5.013006,
5171             changed => {
5172             'Archive::Extract' => '0.46',
5173             'Archive::Tar' => '1.72',
5174             'Archive::Tar::Constant'=> '1.72',
5175             'Archive::Tar::File' => '1.72',
5176             'AutoLoader' => '5.71',
5177             'B' => '1.26',
5178             'B::Concise' => '0.81',
5179             'B::Deparse' => '1.01',
5180             'CGI' => '3.50',
5181             'CPAN' => '1.94_62',
5182             'CPANPLUS' => '0.9010',
5183             'CPANPLUS::Dist::Build' => '0.50',
5184             'CPANPLUS::Dist::Build::Constants'=> '0.50',
5185             'CPANPLUS::Internals' => '0.9010',
5186             'CPANPLUS::Shell::Default'=> '0.9010',
5187             'Data::Dumper' => '2.130_01',
5188             'DynaLoader' => '1.11',
5189             'ExtUtils::Constant' => '0.23',
5190             'ExtUtils::Constant::ProxySubs'=> '0.08',
5191             'Fcntl' => '1.10',
5192             'File::Fetch' => '0.28',
5193             'File::Glob' => '1.10',
5194             'File::stat' => '1.04',
5195             'GDBM_File' => '1.12',
5196             'Hash::Util' => '0.10',
5197             'Hash::Util::FieldHash' => '1.06',
5198             'I18N::Langinfo' => '0.07',
5199             'Locale::Maketext' => '1.17',
5200             'Locale::Maketext::Guts'=> '1.17',
5201             'Locale::Maketext::GutsLoader'=> '1.17',
5202             'MIME::Base64' => '3.10',
5203             'MIME::QuotedPrint' => '3.10',
5204             'Math::BigFloat' => '1.99_01',
5205             'Math::BigInt' => '1.99_01',
5206             'Math::BigInt::Calc' => '1.99_01',
5207             'Math::BigInt::CalcEmu' => '1.99_01',
5208             'Math::BigInt::FastCalc'=> '0.24_01',
5209             'Math::BigRat' => '0.26_01',
5210             'Module::CoreList' => '2.41',
5211             'NDBM_File' => '1.10',
5212             'ODBM_File' => '1.09',
5213             'Opcode' => '1.17',
5214             'POSIX' => '1.22',
5215             'Pod::Simple' => '3.15',
5216             'Pod::Simple::BlackBox' => '3.15',
5217             'Pod::Simple::Checker' => '3.15',
5218             'Pod::Simple::Debug' => '3.15',
5219             'Pod::Simple::DumpAsText'=> '3.15',
5220             'Pod::Simple::DumpAsXML'=> '3.15',
5221             'Pod::Simple::HTML' => '3.15',
5222             'Pod::Simple::HTMLBatch'=> '3.15',
5223             'Pod::Simple::LinkSection'=> '3.15',
5224             'Pod::Simple::Methody' => '3.15',
5225             'Pod::Simple::Progress' => '3.15',
5226             'Pod::Simple::PullParser'=> '3.15',
5227             'Pod::Simple::PullParserEndToken'=> '3.15',
5228             'Pod::Simple::PullParserStartToken'=> '3.15',
5229             'Pod::Simple::PullParserTextToken'=> '3.15',
5230             'Pod::Simple::PullParserToken'=> '3.15',
5231             'Pod::Simple::RTF' => '3.15',
5232             'Pod::Simple::Search' => '3.15',
5233             'Pod::Simple::SimpleTree'=> '3.15',
5234             'Pod::Simple::Text' => '3.15',
5235             'Pod::Simple::TextContent'=> '3.15',
5236             'Pod::Simple::TiedOutFH'=> '3.15',
5237             'Pod::Simple::Transcode'=> '3.15',
5238             'Pod::Simple::TranscodeDumb'=> '3.15',
5239             'Pod::Simple::TranscodeSmart'=> '3.15',
5240             'Pod::Simple::XHTML' => '3.15',
5241             'Pod::Simple::XMLOutStream'=> '3.15',
5242             'SDBM_File' => '1.08',
5243             'Safe' => '2.29',
5244             'SelfLoader' => '1.18',
5245             'Socket' => '1.91',
5246             'Storable' => '2.24',
5247             'Sys::Hostname' => '1.14',
5248             'Unicode' => '6.0.0',
5249             'Unicode::Collate' => '0.67',
5250             'Unicode::Collate::CJK::Big5'=> '0.65',
5251             'Unicode::Collate::CJK::GB2312'=> '0.65',
5252             'Unicode::Collate::CJK::JISX0208'=> '0.64',
5253             'Unicode::Collate::CJK::Korean'=> '0.66',
5254             'Unicode::Collate::CJK::Pinyin'=> '0.65',
5255             'Unicode::Collate::CJK::Stroke'=> '0.65',
5256             'Unicode::Collate::Locale'=> '0.67',
5257             'XS::APItest' => '0.26',
5258             'XS::Typemap' => '0.04',
5259             'charnames' => '1.17',
5260             'mro' => '1.05',
5261             'parent' => '0.224',
5262             're' => '0.14',
5263             'threads' => '1.81_02',
5264             },
5265             removed => {
5266             }
5267             },
5268             5.013008 => {
5269             delta_from => 5.013007,
5270             changed => {
5271             'Archive::Tar' => '1.74',
5272             'Archive::Tar::Constant'=> '1.74',
5273             'Archive::Tar::File' => '1.74',
5274             'B' => '1.27',
5275             'B::Concise' => '0.82',
5276             'B::Deparse' => '1.02',
5277             'Carp::Heavy' => '1.17',
5278             'Cwd' => '3.35',
5279             'Data::Dumper' => '2.130_02',
5280             'Devel::Peek' => '1.06',
5281             'Devel::SelfStubber' => '1.05',
5282             'Digest::SHA' => '5.50',
5283             'Dumpvalue' => '1.15',
5284             'DynaLoader' => '1.12',
5285             'Env' => '1.02',
5286             'Exporter::Heavy' => '5.64_01',
5287             'ExtUtils::CBuilder' => '0.280201',
5288             'ExtUtils::CBuilder::Base'=> '0.280201',
5289             'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5290             'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5291             'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5292             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5293             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5294             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5295             'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5296             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5297             'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5298             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5299             'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5300             'ExtUtils::Constant::Utils'=> '0.03',
5301             'ExtUtils::Embed' => '1.30',
5302             'ExtUtils::ParseXS' => '2.2208',
5303             'Fatal' => '2.1001',
5304             'Fcntl' => '1.11',
5305             'File::CheckTree' => '4.41',
5306             'File::Glob' => '1.11',
5307             'GDBM_File' => '1.13',
5308             'Hash::Util::FieldHash' => '1.07',
5309             'I18N::Collate' => '1.02',
5310             'IO' => '1.25_03',
5311             'IPC::Cmd' => '0.66',
5312             'IPC::Open3' => '1.08',
5313             'Locale::Codes' => '3.15',
5314             'Locale::Codes::Country'=> '3.15',
5315             'Locale::Codes::Currency'=> '3.15',
5316             'Locale::Codes::Language'=> '3.15',
5317             'Locale::Codes::Script' => '3.15',
5318             'Locale::Constants' => '3.15',
5319             'Locale::Country' => '3.15',
5320             'Locale::Currency' => '3.15',
5321             'Locale::Language' => '3.15',
5322             'Locale::Script' => '3.15',
5323             'MIME::Base64' => '3.13',
5324             'MIME::QuotedPrint' => '3.13',
5325             'Math::BigFloat' => '1.99_02',
5326             'Math::BigInt' => '1.99_02',
5327             'Math::BigInt::Calc' => '1.99_02',
5328             'Math::BigInt::CalcEmu' => '1.99_02',
5329             'Memoize' => '1.02',
5330             'Memoize::AnyDBM_File' => '1.02',
5331             'Memoize::Expire' => '1.02',
5332             'Memoize::ExpireFile' => '1.02',
5333             'Memoize::ExpireTest' => '1.02',
5334             'Memoize::NDBM_File' => '1.02',
5335             'Memoize::SDBM_File' => '1.02',
5336             'Memoize::Storable' => '1.02',
5337             'Module::CoreList' => '2.43',
5338             'NDBM_File' => '1.11',
5339             'Net::Ping' => '2.37',
5340             'ODBM_File' => '1.10',
5341             'Opcode' => '1.18',
5342             'POSIX' => '1.23',
5343             'PerlIO::encoding' => '0.14',
5344             'PerlIO::scalar' => '0.11',
5345             'PerlIO::via' => '0.11',
5346             'SDBM_File' => '1.09',
5347             'Socket' => '1.92',
5348             'Storable' => '2.25',
5349             'Time::HiRes' => '1.9721_01',
5350             'Unicode::Collate' => '0.6801',
5351             'Unicode::Collate::Locale'=> '0.68',
5352             'Unicode::Normalize' => '1.08',
5353             'Unicode::UCD' => '0.30',
5354             'Win32' => '0.41',
5355             'XS::APItest' => '0.27',
5356             'autodie' => '2.1001',
5357             'autodie::exception' => '2.1001',
5358             'autodie::exception::system'=> '2.1001',
5359             'autodie::hints' => '2.1001',
5360             'feature' => '1.19',
5361             'if' => '0.0601',
5362             'mro' => '1.06',
5363             'overload' => '1.12',
5364             're' => '0.15',
5365             'threads' => '1.81_03',
5366             'threads::shared' => '1.35',
5367             'version' => '0.86',
5368             },
5369             removed => {
5370             }
5371             },
5372             5.013009 => {
5373             delta_from => 5.013008,
5374             changed => {
5375             'Archive::Extract' => '0.48',
5376             'Archive::Tar' => '1.76',
5377             'Archive::Tar::Constant'=> '1.76',
5378             'Archive::Tar::File' => '1.76',
5379             'B::Concise' => '0.83',
5380             'B::Deparse' => '1.03',
5381             'B::Lint' => '1.13',
5382             'Benchmark' => '1.12',
5383             'CGI' => '3.51',
5384             'CGI::Carp' => '3.51',
5385             'CGI::Cookie' => '1.30',
5386             'CGI::Push' => '1.05',
5387             'CGI::Util' => '3.51',
5388             'CPAN' => '1.94_63',
5389             'CPAN::HTTP::Client' => '1.94',
5390             'CPAN::HTTP::Credentials'=> '1.94',
5391             'CPAN::Meta::YAML' => '0.003',
5392             'CPANPLUS' => '0.9011',
5393             'CPANPLUS::Dist::Build' => '0.52',
5394             'CPANPLUS::Dist::Build::Constants'=> '0.52',
5395             'CPANPLUS::Internals' => '0.9011',
5396             'CPANPLUS::Shell::Default'=> '0.9011',
5397             'Carp::Heavy' => '1.19',
5398             'Compress::Raw::Bzip2' => '2.033',
5399             'Compress::Raw::Zlib' => '2.033',
5400             'Compress::Zlib' => '2.033',
5401             'Cwd' => '3.36',
5402             'DBM_Filter' => '0.04',
5403             'DB_File' => '1.821',
5404             'Devel::Peek' => '1.07',
5405             'DirHandle' => '1.04',
5406             'Dumpvalue' => '1.16',
5407             'Encode' => '2.42',
5408             'Encode::Alias' => '2.13',
5409             'Encode::MIME::Header' => '2.13',
5410             'Exporter::Heavy' => '5.64_03',
5411             'ExtUtils::Install' => '1.56',
5412             'ExtUtils::ParseXS' => '2.2209',
5413             'File::Basename' => '2.80',
5414             'File::Copy' => '2.21',
5415             'File::DosGlob' => '1.04',
5416             'File::Fetch' => '0.32',
5417             'File::Find' => '1.19',
5418             'File::Spec::Mac' => '3.34',
5419             'File::Spec::VMS' => '3.34',
5420             'File::stat' => '1.05',
5421             'HTTP::Tiny' => '0.009',
5422             'Hash::Util::FieldHash' => '1.08',
5423             'IO::Compress::Adapter::Bzip2'=> '2.033',
5424             'IO::Compress::Adapter::Deflate'=> '2.033',
5425             'IO::Compress::Adapter::Identity'=> '2.033',
5426             'IO::Compress::Base' => '2.033',
5427             'IO::Compress::Base::Common'=> '2.033',
5428             'IO::Compress::Bzip2' => '2.033',
5429             'IO::Compress::Deflate' => '2.033',
5430             'IO::Compress::Gzip' => '2.033',
5431             'IO::Compress::Gzip::Constants'=> '2.033',
5432             'IO::Compress::RawDeflate'=> '2.033',
5433             'IO::Compress::Zip' => '2.033',
5434             'IO::Compress::Zip::Constants'=> '2.033',
5435             'IO::Compress::Zlib::Constants'=> '2.033',
5436             'IO::Compress::Zlib::Extra'=> '2.033',
5437             'IO::Handle' => '1.29',
5438             'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5439             'IO::Uncompress::Adapter::Identity'=> '2.033',
5440             'IO::Uncompress::Adapter::Inflate'=> '2.033',
5441             'IO::Uncompress::AnyInflate'=> '2.033',
5442             'IO::Uncompress::AnyUncompress'=> '2.033',
5443             'IO::Uncompress::Base' => '2.033',
5444             'IO::Uncompress::Bunzip2'=> '2.033',
5445             'IO::Uncompress::Gunzip'=> '2.033',
5446             'IO::Uncompress::Inflate'=> '2.033',
5447             'IO::Uncompress::RawInflate'=> '2.033',
5448             'IO::Uncompress::Unzip' => '2.033',
5449             'IPC::Cmd' => '0.68',
5450             'IPC::Open3' => '1.09',
5451             'JSON::PP' => '2.27103',
5452             'JSON::PP::Boolean' => undef,
5453             'Locale::Maketext' => '1.18',
5454             'Log::Message' => '0.04',
5455             'Log::Message::Config' => '0.04',
5456             'Log::Message::Handlers'=> '0.04',
5457             'Log::Message::Item' => '0.04',
5458             'Log::Message::Simple' => '0.08',
5459             'Math::BigFloat' => '1.99_03',
5460             'Math::BigInt' => '1.99_03',
5461             'Math::BigInt::Calc' => '1.99_03',
5462             'Math::BigInt::FastCalc'=> '0.24_02',
5463             'Math::BigRat' => '0.26_02',
5464             'Module::CoreList' => '2.42_01',
5465             'Module::Load::Conditional'=> '0.40',
5466             'Module::Metadata' => '1.000003',
5467             'Net::Ping' => '2.38',
5468             'OS2::Process' => '1.05',
5469             'Object::Accessor' => '0.38',
5470             'POSIX' => '1.24',
5471             'Params::Check' => '0.28',
5472             'Perl::OSType' => '1.002',
5473             'Pod::LaTeX' => '0.59',
5474             'Pod::Perldoc' => '3.15_03',
5475             'Socket' => '1.93',
5476             'Storable' => '2.26',
5477             'Sys::Hostname' => '1.15',
5478             'Term::UI' => '0.24',
5479             'Thread::Queue' => '2.12',
5480             'Thread::Semaphore' => '2.12',
5481             'Time::Local' => '1.2000',
5482             'UNIVERSAL' => '1.08',
5483             'Unicode::Normalize' => '1.10',
5484             'Win32' => '0.44',
5485             'bigint' => '0.26',
5486             'bignum' => '0.26',
5487             'bigrat' => '0.26',
5488             'charnames' => '1.18',
5489             'diagnostics' => '1.21',
5490             're' => '0.16',
5491             'threads' => '1.83',
5492             'threads::shared' => '1.36',
5493             'version' => '0.88',
5494             },
5495             removed => {
5496             }
5497             },
5498             5.01301 => {
5499             delta_from => 5.013009,
5500             changed => {
5501             'Attribute::Handlers' => '0.89',
5502             'B' => '1.28',
5503             'B::Showlex' => '1.03',
5504             'CGI' => '3.52',
5505             'CPAN' => '1.94_65',
5506             'CPAN::Distribution' => '1.9601',
5507             'CPAN::FTP::netrc' => '1.01',
5508             'CPAN::FirstTime' => '5.5303',
5509             'CPAN::HandleConfig' => '5.5003',
5510             'CPAN::Meta' => '2.110440',
5511             'CPAN::Meta::Converter' => '2.110440',
5512             'CPAN::Meta::Feature' => '2.110440',
5513             'CPAN::Meta::History' => '2.110440',
5514             'CPAN::Meta::Prereqs' => '2.110440',
5515             'CPAN::Meta::Spec' => '2.110440',
5516             'CPAN::Meta::Validator' => '2.110440',
5517             'CPAN::Shell' => '5.5002',
5518             'CPANPLUS' => '0.9101',
5519             'CPANPLUS::Internals' => '0.9101',
5520             'CPANPLUS::Shell::Default'=> '0.9101',
5521             'Carp' => '1.20',
5522             'Carp::Heavy' => '1.20',
5523             'Cwd' => '3.37',
5524             'Devel::DProf' => '20110217.00',
5525             'DynaLoader' => '1.13',
5526             'ExtUtils::CBuilder' => '0.280202',
5527             'ExtUtils::CBuilder::Base'=> '0.280202',
5528             'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5529             'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5530             'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5531             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5532             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5533             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5534             'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5535             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5536             'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5537             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5538             'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5539             'File::Copy' => '2.22',
5540             'Filter::Simple' => '0.86',
5541             'HTTP::Tiny' => '0.010',
5542             'I18N::LangTags::Detect'=> '1.05',
5543             'IO::Select' => '1.18',
5544             'IPC::Cmd' => '0.70',
5545             'Locale::Maketext' => '1.19',
5546             'Math::BigFloat' => '1.992',
5547             'Math::BigInt' => '1.992',
5548             'Math::BigInt::Calc' => '1.992',
5549             'Math::BigInt::CalcEmu' => '1.992',
5550             'Module::Build' => '0.37_05',
5551             'Module::Build::Base' => '0.37_05',
5552             'Module::Build::Compat' => '0.37_05',
5553             'Module::Build::Config' => '0.37_05',
5554             'Module::Build::Cookbook'=> '0.37_05',
5555             'Module::Build::Dumper' => '0.37_05',
5556             'Module::Build::ModuleInfo'=> '0.37_05',
5557             'Module::Build::Notes' => '0.37_05',
5558             'Module::Build::PPMMaker'=> '0.37_05',
5559             'Module::Build::Platform::Amiga'=> '0.37_05',
5560             'Module::Build::Platform::Default'=> '0.37_05',
5561             'Module::Build::Platform::EBCDIC'=> '0.37_05',
5562             'Module::Build::Platform::MPEiX'=> '0.37_05',
5563             'Module::Build::Platform::MacOS'=> '0.37_05',
5564             'Module::Build::Platform::RiscOS'=> '0.37_05',
5565             'Module::Build::Platform::Unix'=> '0.37_05',
5566             'Module::Build::Platform::VMS'=> '0.37_05',
5567             'Module::Build::Platform::VOS'=> '0.37_05',
5568             'Module::Build::Platform::Windows'=> '0.37_05',
5569             'Module::Build::Platform::aix'=> '0.37_05',
5570             'Module::Build::Platform::cygwin'=> '0.37_05',
5571             'Module::Build::Platform::darwin'=> '0.37_05',
5572             'Module::Build::Platform::os2'=> '0.37_05',
5573             'Module::Build::PodParser'=> '0.37_05',
5574             'Module::Build::Version'=> '0.87',
5575             'Module::Build::YAML' => '1.41',
5576             'Module::CoreList' => '2.45',
5577             'Module::Load::Conditional'=> '0.44',
5578             'Module::Metadata' => '1.000004',
5579             'OS2::Process' => '1.06',
5580             'Parse::CPAN::Meta' => '1.4401',
5581             'Pod::Html' => '1.1',
5582             'Socket' => '1.94',
5583             'Term::UI' => '0.26',
5584             'Unicode::Collate' => '0.72',
5585             'Unicode::Collate::Locale'=> '0.71',
5586             'Unicode::UCD' => '0.31',
5587             'VMS::DCLsym' => '1.05',
5588             'Version::Requirements' => '0.101020',
5589             'bigrat' => '0.27',
5590             'deprecate' => '0.02',
5591             'diagnostics' => '1.22',
5592             'inc::latest' => '0.37_05',
5593             'overload' => '1.13',
5594             're' => '0.17',
5595             'utf8' => '1.09',
5596             'warnings' => '1.12',
5597             },
5598             removed => {
5599             }
5600             },
5601             5.013011 => {
5602             delta_from => 5.01301,
5603             changed => {
5604             'App::Prove' => '3.23',
5605             'App::Prove::State' => '3.23',
5606             'App::Prove::State::Result'=> '3.23',
5607             'App::Prove::State::Result::Test'=> '3.23',
5608             'B' => '1.29',
5609             'CPAN' => '1.9600',
5610             'CPAN::Author' => '5.5001',
5611             'CPAN::CacheMgr' => '5.5001',
5612             'CPAN::Distribution' => '1.9602',
5613             'CPAN::Exception::blocked_urllist'=> '1.001',
5614             'CPAN::HTTP::Client' => '1.9600',
5615             'CPAN::HTTP::Credentials'=> '1.9600',
5616             'CPAN::Index' => '1.9600',
5617             'CPAN::LWP::UserAgent' => '1.9600',
5618             'CPAN::Mirrors' => '1.9600',
5619             'CPAN::Module' => '5.5001',
5620             'CPANPLUS' => '0.9103',
5621             'CPANPLUS::Dist::Build' => '0.54',
5622             'CPANPLUS::Dist::Build::Constants'=> '0.54',
5623             'CPANPLUS::Internals' => '0.9103',
5624             'CPANPLUS::Shell::Default'=> '0.9103',
5625             'Cwd' => '3.36',
5626             'Devel::DProf' => '20110228.00',
5627             'Digest::SHA' => '5.61',
5628             'ExtUtils::Command' => '1.17',
5629             'File::Basename' => '2.81',
5630             'File::Copy' => '2.21',
5631             'File::Glob' => '1.12',
5632             'GDBM_File' => '1.14',
5633             'HTTP::Tiny' => '0.011',
5634             'Hash::Util' => '0.11',
5635             'Hash::Util::FieldHash' => '1.09',
5636             'I18N::Langinfo' => '0.08',
5637             'IO' => '1.25_04',
5638             'IO::Dir' => '1.08',
5639             'IO::File' => '1.15',
5640             'IO::Handle' => '1.30',
5641             'IO::Pipe' => '1.14',
5642             'IO::Poll' => '0.08',
5643             'IO::Select' => '1.20',
5644             'JSON::PP' => '2.27105',
5645             'Locale::Codes' => '3.16',
5646             'Locale::Codes::Country'=> '3.16',
5647             'Locale::Codes::Currency'=> '3.16',
5648             'Locale::Codes::Language'=> '3.16',
5649             'Locale::Codes::Script' => '3.16',
5650             'Locale::Constants' => '3.16',
5651             'Locale::Country' => '3.16',
5652             'Locale::Currency' => '3.16',
5653             'Locale::Language' => '3.16',
5654             'Locale::Script' => '3.16',
5655             'Math::BigFloat' => '1.993',
5656             'Math::BigInt' => '1.994',
5657             'Math::BigInt::Calc' => '1.993',
5658             'Math::BigInt::CalcEmu' => '1.993',
5659             'Math::BigInt::FastCalc'=> '0.28',
5660             'Module::Build' => '0.3800',
5661             'Module::Build::Base' => '0.3800',
5662             'Module::Build::Compat' => '0.3800',
5663             'Module::Build::Config' => '0.3800',
5664             'Module::Build::Cookbook'=> '0.3800',
5665             'Module::Build::Dumper' => '0.3800',
5666             'Module::Build::ModuleInfo'=> '0.3800',
5667             'Module::Build::Notes' => '0.3800',
5668             'Module::Build::PPMMaker'=> '0.3800',
5669             'Module::Build::Platform::Amiga'=> '0.3800',
5670             'Module::Build::Platform::Default'=> '0.3800',
5671             'Module::Build::Platform::EBCDIC'=> '0.3800',
5672             'Module::Build::Platform::MPEiX'=> '0.3800',
5673             'Module::Build::Platform::MacOS'=> '0.3800',
5674             'Module::Build::Platform::RiscOS'=> '0.3800',
5675             'Module::Build::Platform::Unix'=> '0.3800',
5676             'Module::Build::Platform::VMS'=> '0.3800',
5677             'Module::Build::Platform::VOS'=> '0.3800',
5678             'Module::Build::Platform::Windows'=> '0.3800',
5679             'Module::Build::Platform::aix'=> '0.3800',
5680             'Module::Build::Platform::cygwin'=> '0.3800',
5681             'Module::Build::Platform::darwin'=> '0.3800',
5682             'Module::Build::Platform::os2'=> '0.3800',
5683             'Module::Build::PodParser'=> '0.3800',
5684             'Module::CoreList' => '2.46',
5685             'NDBM_File' => '1.12',
5686             'Pod::Simple' => '3.16',
5687             'Pod::Simple::BlackBox' => '3.16',
5688             'Pod::Simple::Checker' => '3.16',
5689             'Pod::Simple::Debug' => '3.16',
5690             'Pod::Simple::DumpAsText'=> '3.16',
5691             'Pod::Simple::DumpAsXML'=> '3.16',
5692             'Pod::Simple::HTML' => '3.16',
5693             'Pod::Simple::HTMLBatch'=> '3.16',
5694             'Pod::Simple::LinkSection'=> '3.16',
5695             'Pod::Simple::Methody' => '3.16',
5696             'Pod::Simple::Progress' => '3.16',
5697             'Pod::Simple::PullParser'=> '3.16',
5698             'Pod::Simple::PullParserEndToken'=> '3.16',
5699             'Pod::Simple::PullParserStartToken'=> '3.16',
5700             'Pod::Simple::PullParserTextToken'=> '3.16',
5701             'Pod::Simple::PullParserToken'=> '3.16',
5702             'Pod::Simple::RTF' => '3.16',
5703             'Pod::Simple::Search' => '3.16',
5704             'Pod::Simple::SimpleTree'=> '3.16',
5705             'Pod::Simple::Text' => '3.16',
5706             'Pod::Simple::TextContent'=> '3.16',
5707             'Pod::Simple::TiedOutFH'=> '3.16',
5708             'Pod::Simple::Transcode'=> '3.16',
5709             'Pod::Simple::TranscodeDumb'=> '3.16',
5710             'Pod::Simple::TranscodeSmart'=> '3.16',
5711             'Pod::Simple::XHTML' => '3.16',
5712             'Pod::Simple::XMLOutStream'=> '3.16',
5713             'Storable' => '2.27',
5714             'Sys::Hostname' => '1.16',
5715             'TAP::Base' => '3.23',
5716             'TAP::Formatter::Base' => '3.23',
5717             'TAP::Formatter::Color' => '3.23',
5718             'TAP::Formatter::Console'=> '3.23',
5719             'TAP::Formatter::Console::ParallelSession'=> '3.23',
5720             'TAP::Formatter::Console::Session'=> '3.23',
5721             'TAP::Formatter::File' => '3.23',
5722             'TAP::Formatter::File::Session'=> '3.23',
5723             'TAP::Formatter::Session'=> '3.23',
5724             'TAP::Harness' => '3.23',
5725             'TAP::Object' => '3.23',
5726             'TAP::Parser' => '3.23',
5727             'TAP::Parser::Aggregator'=> '3.23',
5728             'TAP::Parser::Grammar' => '3.23',
5729             'TAP::Parser::Iterator' => '3.23',
5730             'TAP::Parser::Iterator::Array'=> '3.23',
5731             'TAP::Parser::Iterator::Process'=> '3.23',
5732             'TAP::Parser::Iterator::Stream'=> '3.23',
5733             'TAP::Parser::IteratorFactory'=> '3.23',
5734             'TAP::Parser::Multiplexer'=> '3.23',
5735             'TAP::Parser::Result' => '3.23',
5736             'TAP::Parser::Result::Bailout'=> '3.23',
5737             'TAP::Parser::Result::Comment'=> '3.23',
5738             'TAP::Parser::Result::Plan'=> '3.23',
5739             'TAP::Parser::Result::Pragma'=> '3.23',
5740             'TAP::Parser::Result::Test'=> '3.23',
5741             'TAP::Parser::Result::Unknown'=> '3.23',
5742             'TAP::Parser::Result::Version'=> '3.23',
5743             'TAP::Parser::Result::YAML'=> '3.23',
5744             'TAP::Parser::ResultFactory'=> '3.23',
5745             'TAP::Parser::Scheduler'=> '3.23',
5746             'TAP::Parser::Scheduler::Job'=> '3.23',
5747             'TAP::Parser::Scheduler::Spinner'=> '3.23',
5748             'TAP::Parser::Source' => '3.23',
5749             'TAP::Parser::SourceHandler'=> '3.23',
5750             'TAP::Parser::SourceHandler::Executable'=> '3.23',
5751             'TAP::Parser::SourceHandler::File'=> '3.23',
5752             'TAP::Parser::SourceHandler::Handle'=> '3.23',
5753             'TAP::Parser::SourceHandler::Perl'=> '3.23',
5754             'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5755             'TAP::Parser::Utils' => '3.23',
5756             'TAP::Parser::YAMLish::Reader'=> '3.23',
5757             'TAP::Parser::YAMLish::Writer'=> '3.23',
5758             'Test::Builder' => '0.98',
5759             'Test::Builder::Module' => '0.98',
5760             'Test::Builder::Tester' => '1.22',
5761             'Test::Builder::Tester::Color'=> '1.22',
5762             'Test::Harness' => '3.23',
5763             'Test::More' => '0.98',
5764             'Test::Simple' => '0.98',
5765             'Tie::Hash::NamedCapture'=> '0.08',
5766             'Tie::RefHash' => '1.39',
5767             'Unicode::Collate' => '0.73',
5768             'Unicode::Collate::Locale'=> '0.73',
5769             'Unicode::UCD' => '0.32',
5770             'XS::Typemap' => '0.05',
5771             'attributes' => '0.14',
5772             'base' => '2.16',
5773             'inc::latest' => '0.3800',
5774             'mro' => '1.07',
5775             'parent' => '0.225',
5776             },
5777             removed => {
5778             }
5779             },
5780             5.014 => {
5781             delta_from => 5.013011,
5782             changed => {
5783             'ExtUtils::CBuilder' => '0.280203',
5784             'ExtUtils::CBuilder::Base'=> '0.280203',
5785             'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5786             'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5787             'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5788             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5789             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5790             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5791             'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5792             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5793             'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5794             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5795             'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5796             'ExtUtils::ParseXS' => '2.2210',
5797             'File::Basename' => '2.82',
5798             'HTTP::Tiny' => '0.012',
5799             'IO::Handle' => '1.31',
5800             'Module::CoreList' => '2.49',
5801             'PerlIO' => '1.07',
5802             'Pod::Html' => '1.11',
5803             'XS::APItest' => '0.28',
5804             'bigint' => '0.27',
5805             'bignum' => '0.27',
5806             'bigrat' => '0.28',
5807             'constant' => '1.21',
5808             'feature' => '1.20',
5809             're' => '0.18',
5810             'threads::shared' => '1.37',
5811             },
5812             removed => {
5813             }
5814             },
5815             5.014001 => {
5816             delta_from => 5.014,
5817             changed => {
5818             'B::Deparse' => '1.04',
5819             'Module::CoreList' => '2.49_01',
5820             'Pod::Perldoc' => '3.15_04',
5821             },
5822             removed => {
5823             }
5824             },
5825             5.014002 => {
5826             delta_from => 5.014001,
5827             changed => {
5828             'CPAN' => '1.9600_01',
5829             'CPAN::Distribution' => '1.9602_01',
5830             'Devel::DProf::dprof::V'=> undef,
5831             'Encode' => '2.42_01',
5832             'File::Glob' => '1.13',
5833             'Module::CoreList' => '2.49_02',
5834             'PerlIO::scalar' => '0.11_01',
5835             'Time::Piece::Seconds' => undef,
5836             },
5837             removed => {
5838             }
5839             },
5840             5.014003 => {
5841             delta_from => 5.014002,
5842             changed => {
5843             'Digest' => '1.16_01',
5844             'IPC::Open3' => '1.09_01',
5845             'Module::CoreList' => '2.49_04',
5846             },
5847             removed => {
5848             }
5849             },
5850             5.014004 => {
5851             delta_from => 5.014003,
5852             changed => {
5853             'Encode' => '2.42_02',
5854             'IPC::Open3' => '1.0901',
5855             'Module::CoreList' => '2.49_06',
5856             },
5857             removed => {
5858             }
5859             },
5860             5.015 => {
5861             delta_from => 5.014001,
5862             changed => {
5863             'Archive::Extract' => '0.52',
5864             'Attribute::Handlers' => '0.91',
5865             'B' => '1.30',
5866             'B::Concise' => '0.84',
5867             'B::Deparse' => '1.05',
5868             'Benchmark' => '1.13',
5869             'CGI' => '3.54',
5870             'CGI::Util' => '3.53',
5871             'CPAN::Meta' => '2.110930',
5872             'CPAN::Meta::Converter' => '2.110930',
5873             'CPAN::Meta::Feature' => '2.110930',
5874             'CPAN::Meta::History' => '2.110930',
5875             'CPAN::Meta::Prereqs' => '2.110930',
5876             'CPAN::Meta::Spec' => '2.110930',
5877             'CPAN::Meta::Validator' => '2.110930',
5878             'CPANPLUS' => '0.9105',
5879             'CPANPLUS::Dist::Build' => '0.56',
5880             'CPANPLUS::Dist::Build::Constants'=> '0.56',
5881             'CPANPLUS::Internals' => '0.9105',
5882             'CPANPLUS::Shell::Default'=> '0.9105',
5883             'Compress::Raw::Bzip2' => '2.035',
5884             'Compress::Raw::Zlib' => '2.035',
5885             'Compress::Zlib' => '2.035',
5886             'DB_File' => '1.822',
5887             'Data::Dumper' => '2.131',
5888             'Devel::Peek' => '1.08',
5889             'Digest::SHA' => '5.62',
5890             'Encode' => '2.43',
5891             'Encode::Alias' => '2.14',
5892             'ExtUtils::CBuilder' => '0.280204',
5893             'ExtUtils::CBuilder::Base'=> '0.280204',
5894             'Fatal' => '2.10',
5895             'File::Spec::Win32' => '3.34',
5896             'Filter::Simple' => '0.87',
5897             'Filter::Util::Call' => '1.39',
5898             'FindBin' => '1.51',
5899             'Hash::Util::FieldHash' => '1.10',
5900             'I18N::LangTags' => '0.36',
5901             'IO::Compress::Adapter::Bzip2'=> '2.035',
5902             'IO::Compress::Adapter::Deflate'=> '2.035',
5903             'IO::Compress::Adapter::Identity'=> '2.035',
5904             'IO::Compress::Base' => '2.035',
5905             'IO::Compress::Base::Common'=> '2.035',
5906             'IO::Compress::Bzip2' => '2.035',
5907             'IO::Compress::Deflate' => '2.035',
5908             'IO::Compress::Gzip' => '2.035',
5909             'IO::Compress::Gzip::Constants'=> '2.035',
5910             'IO::Compress::RawDeflate'=> '2.035',
5911             'IO::Compress::Zip' => '2.035',
5912             'IO::Compress::Zip::Constants'=> '2.035',
5913             'IO::Compress::Zlib::Constants'=> '2.035',
5914             'IO::Compress::Zlib::Extra'=> '2.035',
5915             'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5916             'IO::Uncompress::Adapter::Identity'=> '2.035',
5917             'IO::Uncompress::Adapter::Inflate'=> '2.035',
5918             'IO::Uncompress::AnyInflate'=> '2.035',
5919             'IO::Uncompress::AnyUncompress'=> '2.035',
5920             'IO::Uncompress::Base' => '2.035',
5921             'IO::Uncompress::Bunzip2'=> '2.035',
5922             'IO::Uncompress::Gunzip'=> '2.035',
5923             'IO::Uncompress::Inflate'=> '2.035',
5924             'IO::Uncompress::RawInflate'=> '2.035',
5925             'IO::Uncompress::Unzip' => '2.035',
5926             'IPC::Open2' => '1.04',
5927             'IPC::Open3' => '1.11',
5928             'JSON::PP' => '2.27200',
5929             'Math::BigFloat' => '1.994',
5930             'Math::BigInt' => '1.995',
5931             'Math::Complex' => '1.57',
5932             'Math::Trig' => '1.21',
5933             'Module::CoreList' => '2.51',
5934             'ODBM_File' => '1.11',
5935             'Object::Accessor' => '0.42',
5936             'Opcode' => '1.19',
5937             'PerlIO::encoding' => '0.15',
5938             'PerlIO::scalar' => '0.12',
5939             'Pod::Perldoc' => '3.15_05',
5940             'Storable' => '2.28',
5941             'Sys::Syslog' => '0.29',
5942             'Time::HiRes' => '1.9722',
5943             'Unicode::Collate' => '0.76',
5944             'Unicode::Collate::CJK::Pinyin'=> '0.76',
5945             'Unicode::Collate::CJK::Stroke'=> '0.76',
5946             'Unicode::Collate::Locale'=> '0.76',
5947             'Unicode::Normalize' => '1.12',
5948             'XS::APItest' => '0.29',
5949             'XSLoader' => '0.15',
5950             'autodie' => '2.10',
5951             'autodie::exception' => '2.10',
5952             'autodie::exception::system'=> '2.10',
5953             'autodie::hints' => '2.10',
5954             'base' => '2.17',
5955             'charnames' => '1.22',
5956             'constant' => '1.22',
5957             'feature' => '1.21',
5958             'mro' => '1.08',
5959             'overload' => '1.14',
5960             'threads::shared' => '1.38',
5961             'vmsish' => '1.03',
5962             },
5963             removed => {
5964             'Devel::DProf' => 1,
5965             'Shell' => 1,
5966             }
5967             },
5968             5.015001 => {
5969             delta_from => 5.015,
5970             changed => {
5971             'B::Deparse' => '1.06',
5972             'CGI' => '3.55',
5973             'CPAN::Meta' => '2.110930001',
5974             'CPAN::Meta::Converter' => '2.110930001',
5975             'CPANPLUS' => '0.9108',
5976             'CPANPLUS::Internals' => '0.9108',
5977             'CPANPLUS::Shell::Default'=> '0.9108',
5978             'Carp' => '1.21',
5979             'Carp::Heavy' => '1.21',
5980             'Compress::Raw::Bzip2' => '2.037',
5981             'Compress::Raw::Zlib' => '2.037',
5982             'Compress::Zlib' => '2.037',
5983             'Cwd' => '3.37',
5984             'Env' => '1.03',
5985             'ExtUtils::Command::MM' => '6.58',
5986             'ExtUtils::Liblist' => '6.58',
5987             'ExtUtils::Liblist::Kid'=> '6.58',
5988             'ExtUtils::MM' => '6.58',
5989             'ExtUtils::MM_AIX' => '6.58',
5990             'ExtUtils::MM_Any' => '6.58',
5991             'ExtUtils::MM_BeOS' => '6.58',
5992             'ExtUtils::MM_Cygwin' => '6.58',
5993             'ExtUtils::MM_DOS' => '6.58',
5994             'ExtUtils::MM_Darwin' => '6.58',
5995             'ExtUtils::MM_MacOS' => '6.58',
5996             'ExtUtils::MM_NW5' => '6.58',
5997             'ExtUtils::MM_OS2' => '6.58',
5998             'ExtUtils::MM_QNX' => '6.58',
5999             'ExtUtils::MM_UWIN' => '6.58',
6000             'ExtUtils::MM_Unix' => '6.58',
6001             'ExtUtils::MM_VMS' => '6.58',
6002             'ExtUtils::MM_VOS' => '6.58',
6003             'ExtUtils::MM_Win32' => '6.58',
6004             'ExtUtils::MM_Win95' => '6.58',
6005             'ExtUtils::MY' => '6.58',
6006             'ExtUtils::MakeMaker' => '6.58',
6007             'ExtUtils::MakeMaker::Config'=> '6.58',
6008             'ExtUtils::Mkbootstrap' => '6.58',
6009             'ExtUtils::Mksymlists' => '6.58',
6010             'ExtUtils::ParseXS' => '3.00_01',
6011             'ExtUtils::ParseXS::Constants'=> undef,
6012             'ExtUtils::ParseXS::CountLines'=> undef,
6013             'ExtUtils::ParseXS::Utilities'=> undef,
6014             'ExtUtils::Typemaps' => '1.00',
6015             'ExtUtils::Typemaps::InputMap'=> undef,
6016             'ExtUtils::Typemaps::OutputMap'=> undef,
6017             'ExtUtils::Typemaps::Type'=> '0.05',
6018             'ExtUtils::testlib' => '6.58',
6019             'File::Basename' => '2.83',
6020             'File::Find' => '1.20',
6021             'HTTP::Tiny' => '0.013',
6022             'I18N::Langinfo' => '0.08_02',
6023             'IO::Compress::Adapter::Bzip2'=> '2.037',
6024             'IO::Compress::Adapter::Deflate'=> '2.037',
6025             'IO::Compress::Adapter::Identity'=> '2.037',
6026             'IO::Compress::Base' => '2.037',
6027             'IO::Compress::Base::Common'=> '2.037',
6028             'IO::Compress::Bzip2' => '2.037',
6029             'IO::Compress::Deflate' => '2.037',
6030             'IO::Compress::Gzip' => '2.037',
6031             'IO::Compress::Gzip::Constants'=> '2.037',
6032             'IO::Compress::RawDeflate'=> '2.037',
6033             'IO::Compress::Zip' => '2.037',
6034             'IO::Compress::Zip::Constants'=> '2.037',
6035             'IO::Compress::Zlib::Constants'=> '2.037',
6036             'IO::Compress::Zlib::Extra'=> '2.037',
6037             'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
6038             'IO::Uncompress::Adapter::Identity'=> '2.037',
6039             'IO::Uncompress::Adapter::Inflate'=> '2.037',
6040             'IO::Uncompress::AnyInflate'=> '2.037',
6041             'IO::Uncompress::AnyUncompress'=> '2.037',
6042             'IO::Uncompress::Base' => '2.037',
6043             'IO::Uncompress::Bunzip2'=> '2.037',
6044             'IO::Uncompress::Gunzip'=> '2.037',
6045             'IO::Uncompress::Inflate'=> '2.037',
6046             'IO::Uncompress::RawInflate'=> '2.037',
6047             'IO::Uncompress::Unzip' => '2.037',
6048             'IPC::Cmd' => '0.72',
6049             'Locale::Codes' => '3.17',
6050             'Locale::Codes::Constants'=> '3.17',
6051             'Locale::Codes::Country'=> '3.17',
6052             'Locale::Codes::Country_Codes'=> '3.17',
6053             'Locale::Codes::Currency'=> '3.17',
6054             'Locale::Codes::Currency_Codes'=> '3.17',
6055             'Locale::Codes::LangExt'=> '3.17',
6056             'Locale::Codes::LangExt_Codes'=> '3.17',
6057             'Locale::Codes::LangVar'=> '3.17',
6058             'Locale::Codes::LangVar_Codes'=> '3.17',
6059             'Locale::Codes::Language'=> '3.17',
6060             'Locale::Codes::Language_Codes'=> '3.17',
6061             'Locale::Codes::Script' => '3.17',
6062             'Locale::Codes::Script_Codes'=> '3.17',
6063             'Locale::Country' => '3.17',
6064             'Locale::Currency' => '3.17',
6065             'Locale::Language' => '3.17',
6066             'Locale::Script' => '3.17',
6067             'Math::BigFloat::Trace' => '0.28',
6068             'Math::BigInt::FastCalc'=> '0.29',
6069             'Math::BigInt::Trace' => '0.28',
6070             'Math::BigRat' => '0.2602',
6071             'Math::Complex' => '1.58',
6072             'Math::Trig' => '1.22',
6073             'Module::CoreList' => '2.54',
6074             'OS2::Process' => '1.07',
6075             'Pod::Perldoc' => '3.15_06',
6076             'Pod::Simple' => '3.18',
6077             'Pod::Simple::BlackBox' => '3.18',
6078             'Pod::Simple::Checker' => '3.18',
6079             'Pod::Simple::Debug' => '3.18',
6080             'Pod::Simple::DumpAsText'=> '3.18',
6081             'Pod::Simple::DumpAsXML'=> '3.18',
6082             'Pod::Simple::HTML' => '3.18',
6083             'Pod::Simple::HTMLBatch'=> '3.18',
6084             'Pod::Simple::LinkSection'=> '3.18',
6085             'Pod::Simple::Methody' => '3.18',
6086             'Pod::Simple::Progress' => '3.18',
6087             'Pod::Simple::PullParser'=> '3.18',
6088             'Pod::Simple::PullParserEndToken'=> '3.18',
6089             'Pod::Simple::PullParserStartToken'=> '3.18',
6090             'Pod::Simple::PullParserTextToken'=> '3.18',
6091             'Pod::Simple::PullParserToken'=> '3.18',
6092             'Pod::Simple::RTF' => '3.18',
6093             'Pod::Simple::Search' => '3.18',
6094             'Pod::Simple::SimpleTree'=> '3.18',
6095             'Pod::Simple::Text' => '3.18',
6096             'Pod::Simple::TextContent'=> '3.18',
6097             'Pod::Simple::TiedOutFH'=> '3.18',
6098             'Pod::Simple::Transcode'=> '3.18',
6099             'Pod::Simple::TranscodeDumb'=> '3.18',
6100             'Pod::Simple::TranscodeSmart'=> '3.18',
6101             'Pod::Simple::XHTML' => '3.18',
6102             'Pod::Simple::XMLOutStream'=> '3.18',
6103             'Storable' => '2.31',
6104             'Sys::Syslog::Win32' => undef,
6105             'Time::HiRes' => '1.9724',
6106             'Unicode::Collate' => '0.77',
6107             'Unicode::UCD' => '0.33',
6108             'Win32API::File' => '0.1200',
6109             'XS::APItest' => '0.30',
6110             'attributes' => '0.15',
6111             'bigint' => '0.28',
6112             'bignum' => '0.28',
6113             'charnames' => '1.23',
6114             'diagnostics' => '1.23',
6115             'feature' => '1.22',
6116             'overload' => '1.15',
6117             'perlfaq' => '5.015000',
6118             'threads' => '1.84',
6119             'version' => '0.93',
6120             },
6121             removed => {
6122             'ExtUtils::MakeMaker::YAML'=> 1,
6123             'Locale::Constants' => 1,
6124             'Sys::Syslog::win32::Win32'=> 1,
6125             }
6126             },
6127             5.015002 => {
6128             delta_from => 5.015001,
6129             changed => {
6130             'Attribute::Handlers' => '0.92',
6131             'B' => '1.31',
6132             'B::Concise' => '0.85',
6133             'B::Deparse' => '1.07',
6134             'B::Terse' => '1.06',
6135             'B::Xref' => '1.03',
6136             'CPAN' => '1.9800',
6137             'CPAN::Exception::yaml_process_error'=> '5.5',
6138             'CPAN::Meta' => '2.112150',
6139             'CPAN::Meta::Converter' => '2.112150',
6140             'CPAN::Meta::Feature' => '2.112150',
6141             'CPAN::Meta::History' => '2.112150',
6142             'CPAN::Meta::Prereqs' => '2.112150',
6143             'CPAN::Meta::Spec' => '2.112150',
6144             'CPAN::Meta::Validator' => '2.112150',
6145             'CPANPLUS' => '0.9109',
6146             'CPANPLUS::Internals' => '0.9109',
6147             'CPANPLUS::Shell::Default'=> '0.9109',
6148             'DB_File' => '1.824',
6149             'Data::Dumper' => '2.132',
6150             'Encode' => '2.44',
6151             'Encode::Alias' => '2.15',
6152             'Encode::Encoder' => '2.02',
6153             'Encode::Guess' => '2.05',
6154             'ExtUtils::Command::MM' => '6.59',
6155             'ExtUtils::Install' => '1.57',
6156             'ExtUtils::Installed' => '1.999002',
6157             'ExtUtils::Liblist' => '6.59',
6158             'ExtUtils::Liblist::Kid'=> '6.59',
6159             'ExtUtils::MM' => '6.59',
6160             'ExtUtils::MM_AIX' => '6.59',
6161             'ExtUtils::MM_Any' => '6.59',
6162             'ExtUtils::MM_BeOS' => '6.59',
6163             'ExtUtils::MM_Cygwin' => '6.59',
6164             'ExtUtils::MM_DOS' => '6.59',
6165             'ExtUtils::MM_Darwin' => '6.59',
6166             'ExtUtils::MM_MacOS' => '6.59',
6167             'ExtUtils::MM_NW5' => '6.59',
6168             'ExtUtils::MM_OS2' => '6.59',
6169             'ExtUtils::MM_QNX' => '6.59',
6170             'ExtUtils::MM_UWIN' => '6.59',
6171             'ExtUtils::MM_Unix' => '6.59',
6172             'ExtUtils::MM_VMS' => '6.59',
6173             'ExtUtils::MM_VOS' => '6.59',
6174             'ExtUtils::MM_Win32' => '6.59',
6175             'ExtUtils::MM_Win95' => '6.59',
6176             'ExtUtils::MY' => '6.59',
6177             'ExtUtils::MakeMaker' => '6.59',
6178             'ExtUtils::MakeMaker::Config'=> '6.59',
6179             'ExtUtils::Manifest' => '1.60',
6180             'ExtUtils::Mkbootstrap' => '6.59',
6181             'ExtUtils::Mksymlists' => '6.59',
6182             'ExtUtils::ParseXS' => '3.03_01',
6183             'ExtUtils::Typemaps' => '1.01',
6184             'ExtUtils::testlib' => '6.59',
6185             'File::Spec' => '3.34',
6186             'File::Spec::Mac' => '3.35',
6187             'File::Spec::Unix' => '3.34',
6188             'File::Spec::VMS' => '3.35',
6189             'File::Spec::Win32' => '3.35',
6190             'I18N::LangTags' => '0.37',
6191             'IO' => '1.25_05',
6192             'IO::Handle' => '1.32',
6193             'IO::Socket' => '1.33',
6194             'IO::Socket::INET' => '1.32',
6195             'IPC::Open3' => '1.12',
6196             'Math::BigFloat' => '1.995',
6197             'Math::BigFloat::Trace' => '0.29',
6198             'Math::BigInt' => '1.996',
6199             'Math::BigInt::Trace' => '0.29',
6200             'Module::Build' => '0.39_01',
6201             'Module::Build::Base' => '0.39_01',
6202             'Module::Build::Compat' => '0.39_01',
6203             'Module::Build::Config' => '0.39_01',
6204             'Module::Build::Cookbook'=> '0.39_01',
6205             'Module::Build::Dumper' => '0.39_01',
6206             'Module::Build::ModuleInfo'=> '0.39_01',
6207             'Module::Build::Notes' => '0.39_01',
6208             'Module::Build::PPMMaker'=> '0.39_01',
6209             'Module::Build::Platform::Amiga'=> '0.39_01',
6210             'Module::Build::Platform::Default'=> '0.39_01',
6211             'Module::Build::Platform::EBCDIC'=> '0.39_01',
6212             'Module::Build::Platform::MPEiX'=> '0.39_01',
6213             'Module::Build::Platform::MacOS'=> '0.39_01',
6214             'Module::Build::Platform::RiscOS'=> '0.39_01',
6215             'Module::Build::Platform::Unix'=> '0.39_01',
6216             'Module::Build::Platform::VMS'=> '0.39_01',
6217             'Module::Build::Platform::VOS'=> '0.39_01',
6218             'Module::Build::Platform::Windows'=> '0.39_01',
6219             'Module::Build::Platform::aix'=> '0.39_01',
6220             'Module::Build::Platform::cygwin'=> '0.39_01',
6221             'Module::Build::Platform::darwin'=> '0.39_01',
6222             'Module::Build::Platform::os2'=> '0.39_01',
6223             'Module::Build::PodParser'=> '0.39_01',
6224             'Module::CoreList' => '2.55',
6225             'Module::Load' => '0.20',
6226             'Module::Metadata' => '1.000005_01',
6227             'Opcode' => '1.20',
6228             'Params::Check' => '0.32',
6229             'PerlIO::via' => '0.12',
6230             'Term::ANSIColor' => '3.01',
6231             'Unicode::Collate' => '0.78',
6232             'Unicode::Normalize' => '1.13',
6233             'Unicode::UCD' => '0.34',
6234             'bigint' => '0.29',
6235             'bignum' => '0.29',
6236             'bigrat' => '0.29',
6237             'diagnostics' => '1.24',
6238             'fields' => '2.16',
6239             'inc::latest' => '0.39_01',
6240             },
6241             removed => {
6242             }
6243             },
6244             5.015003 => {
6245             delta_from => 5.015002,
6246             changed => {
6247             'AnyDBM_File' => '1.01',
6248             'Archive::Extract' => '0.56',
6249             'Archive::Tar' => '1.78',
6250             'Archive::Tar::Constant'=> '1.78',
6251             'Archive::Tar::File' => '1.78',
6252             'Attribute::Handlers' => '0.93',
6253             'B' => '1.32',
6254             'B::Concise' => '0.86',
6255             'B::Deparse' => '1.08',
6256             'CPAN::Meta' => '2.112621',
6257             'CPAN::Meta::Converter' => '2.112621',
6258             'CPAN::Meta::Feature' => '2.112621',
6259             'CPAN::Meta::History' => '2.112621',
6260             'CPAN::Meta::Prereqs' => '2.112621',
6261             'CPAN::Meta::Spec' => '2.112621',
6262             'CPAN::Meta::Validator' => '2.112621',
6263             'CPAN::Meta::YAML' => '0.004',
6264             'CPANPLUS' => '0.9111',
6265             'CPANPLUS::Dist::Build' => '0.58',
6266             'CPANPLUS::Dist::Build::Constants'=> '0.58',
6267             'CPANPLUS::Internals' => '0.9111',
6268             'CPANPLUS::Shell::Default'=> '0.9111',
6269             'Carp' => '1.23',
6270             'Carp::Heavy' => '1.23',
6271             'Data::Dumper' => '2.134',
6272             'Devel::PPPort' => '3.20',
6273             'Errno' => '1.14',
6274             'Exporter' => '5.65',
6275             'Exporter::Heavy' => '5.65',
6276             'ExtUtils::ParseXS' => '3.04_04',
6277             'ExtUtils::ParseXS::Constants'=> '3.04_04',
6278             'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6279             'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6280             'ExtUtils::Typemaps' => '1.02',
6281             'File::Glob' => '1.13',
6282             'Filter::Simple' => '0.88',
6283             'IO' => '1.25_06',
6284             'IO::Handle' => '1.33',
6285             'Locale::Codes' => '3.18',
6286             'Locale::Codes::Constants'=> '3.18',
6287             'Locale::Codes::Country'=> '3.18',
6288             'Locale::Codes::Country_Codes'=> '3.18',
6289             'Locale::Codes::Currency'=> '3.18',
6290             'Locale::Codes::Currency_Codes'=> '3.18',
6291             'Locale::Codes::LangExt'=> '3.18',
6292             'Locale::Codes::LangExt_Codes'=> '3.18',
6293             'Locale::Codes::LangVar'=> '3.18',
6294             'Locale::Codes::LangVar_Codes'=> '3.18',
6295             'Locale::Codes::Language'=> '3.18',
6296             'Locale::Codes::Language_Codes'=> '3.18',
6297             'Locale::Codes::Script' => '3.18',
6298             'Locale::Codes::Script_Codes'=> '3.18',
6299             'Locale::Country' => '3.18',
6300             'Locale::Currency' => '3.18',
6301             'Locale::Language' => '3.18',
6302             'Locale::Script' => '3.18',
6303             'Math::BigFloat' => '1.997',
6304             'Math::BigInt' => '1.997',
6305             'Math::BigInt::Calc' => '1.997',
6306             'Math::BigInt::CalcEmu' => '1.997',
6307             'Math::BigInt::FastCalc'=> '0.30',
6308             'Math::BigRat' => '0.2603',
6309             'Module::CoreList' => '2.56',
6310             'Module::Load::Conditional'=> '0.46',
6311             'Module::Metadata' => '1.000007',
6312             'ODBM_File' => '1.12',
6313             'POSIX' => '1.26',
6314             'Pod::Perldoc' => '3.15_07',
6315             'Pod::Simple' => '3.19',
6316             'Pod::Simple::BlackBox' => '3.19',
6317             'Pod::Simple::Checker' => '3.19',
6318             'Pod::Simple::Debug' => '3.19',
6319             'Pod::Simple::DumpAsText'=> '3.19',
6320             'Pod::Simple::DumpAsXML'=> '3.19',
6321             'Pod::Simple::HTML' => '3.19',
6322             'Pod::Simple::HTMLBatch'=> '3.19',
6323             'Pod::Simple::LinkSection'=> '3.19',
6324             'Pod::Simple::Methody' => '3.19',
6325             'Pod::Simple::Progress' => '3.19',
6326             'Pod::Simple::PullParser'=> '3.19',
6327             'Pod::Simple::PullParserEndToken'=> '3.19',
6328             'Pod::Simple::PullParserStartToken'=> '3.19',
6329             'Pod::Simple::PullParserTextToken'=> '3.19',
6330             'Pod::Simple::PullParserToken'=> '3.19',
6331             'Pod::Simple::RTF' => '3.19',
6332             'Pod::Simple::Search' => '3.19',
6333             'Pod::Simple::SimpleTree'=> '3.19',
6334             'Pod::Simple::Text' => '3.19',
6335             'Pod::Simple::TextContent'=> '3.19',
6336             'Pod::Simple::TiedOutFH'=> '3.19',
6337             'Pod::Simple::Transcode'=> '3.19',
6338             'Pod::Simple::TranscodeDumb'=> '3.19',
6339             'Pod::Simple::TranscodeSmart'=> '3.19',
6340             'Pod::Simple::XHTML' => '3.19',
6341             'Pod::Simple::XMLOutStream'=> '3.19',
6342             'Search::Dict' => '1.04',
6343             'Socket' => '1.94_01',
6344             'Storable' => '2.32',
6345             'Text::Abbrev' => '1.02',
6346             'Tie::Array' => '1.05',
6347             'UNIVERSAL' => '1.09',
6348             'Unicode::UCD' => '0.35',
6349             'XS::APItest' => '0.31',
6350             'XSLoader' => '0.16',
6351             'attributes' => '0.16',
6352             'diagnostics' => '1.25',
6353             'open' => '1.09',
6354             'perlfaq' => '5.0150034',
6355             'threads' => '1.85',
6356             'threads::shared' => '1.40',
6357             },
6358             removed => {
6359             }
6360             },
6361             5.015004 => {
6362             delta_from => 5.015003,
6363             changed => {
6364             'Archive::Tar' => '1.80',
6365             'Archive::Tar::Constant'=> '1.80',
6366             'Archive::Tar::File' => '1.80',
6367             'Digest' => '1.17',
6368             'DynaLoader' => '1.14',
6369             'ExtUtils::Command::MM' => '6.61_01',
6370             'ExtUtils::Liblist' => '6.61_01',
6371             'ExtUtils::Liblist::Kid'=> '6.61_01',
6372             'ExtUtils::MM' => '6.61_01',
6373             'ExtUtils::MM_AIX' => '6.61_01',
6374             'ExtUtils::MM_Any' => '6.61_01',
6375             'ExtUtils::MM_BeOS' => '6.61_01',
6376             'ExtUtils::MM_Cygwin' => '6.61_01',
6377             'ExtUtils::MM_DOS' => '6.61_01',
6378             'ExtUtils::MM_Darwin' => '6.61_01',
6379             'ExtUtils::MM_MacOS' => '6.61_01',
6380             'ExtUtils::MM_NW5' => '6.61_01',
6381             'ExtUtils::MM_OS2' => '6.61_01',
6382             'ExtUtils::MM_QNX' => '6.61_01',
6383             'ExtUtils::MM_UWIN' => '6.61_01',
6384             'ExtUtils::MM_Unix' => '6.61_01',
6385             'ExtUtils::MM_VMS' => '6.61_01',
6386             'ExtUtils::MM_VOS' => '6.61_01',
6387             'ExtUtils::MM_Win32' => '6.61_01',
6388             'ExtUtils::MM_Win95' => '6.61_01',
6389             'ExtUtils::MY' => '6.61_01',
6390             'ExtUtils::MakeMaker' => '6.61_01',
6391             'ExtUtils::MakeMaker::Config'=> '6.61_01',
6392             'ExtUtils::Mkbootstrap' => '6.61_01',
6393             'ExtUtils::Mksymlists' => '6.61_01',
6394             'ExtUtils::ParseXS' => '3.05',
6395             'ExtUtils::ParseXS::Constants'=> '3.05',
6396             'ExtUtils::ParseXS::CountLines'=> '3.05',
6397             'ExtUtils::ParseXS::Utilities'=> '3.05',
6398             'ExtUtils::testlib' => '6.61_01',
6399             'File::DosGlob' => '1.05',
6400             'Module::CoreList' => '2.57',
6401             'Module::Load' => '0.22',
6402             'Unicode::Collate' => '0.80',
6403             'Unicode::Collate::Locale'=> '0.80',
6404             'Unicode::UCD' => '0.36',
6405             'XS::APItest' => '0.32',
6406             'XS::Typemap' => '0.07',
6407             'attributes' => '0.17',
6408             'base' => '2.18',
6409             'constant' => '1.23',
6410             'mro' => '1.09',
6411             'open' => '1.10',
6412             'perlfaq' => '5.0150035',
6413             },
6414             removed => {
6415             }
6416             },
6417             5.015005 => {
6418             delta_from => 5.015004,
6419             changed => {
6420             'Archive::Extract' => '0.58',
6421             'B::Concise' => '0.87',
6422             'B::Deparse' => '1.09',
6423             'CGI' => '3.58',
6424             'CGI::Fast' => '1.09',
6425             'CPANPLUS' => '0.9112',
6426             'CPANPLUS::Dist::Build' => '0.60',
6427             'CPANPLUS::Dist::Build::Constants'=> '0.60',
6428             'CPANPLUS::Internals' => '0.9112',
6429             'CPANPLUS::Shell::Default'=> '0.9112',
6430             'Compress::Raw::Bzip2' => '2.042',
6431             'Compress::Raw::Zlib' => '2.042',
6432             'Compress::Zlib' => '2.042',
6433             'Digest::SHA' => '5.63',
6434             'Errno' => '1.15',
6435             'ExtUtils::Command::MM' => '6.63_02',
6436             'ExtUtils::Liblist' => '6.63_02',
6437             'ExtUtils::Liblist::Kid'=> '6.63_02',
6438             'ExtUtils::MM' => '6.63_02',
6439             'ExtUtils::MM_AIX' => '6.63_02',
6440             'ExtUtils::MM_Any' => '6.63_02',
6441             'ExtUtils::MM_BeOS' => '6.63_02',
6442             'ExtUtils::MM_Cygwin' => '6.63_02',
6443             'ExtUtils::MM_DOS' => '6.63_02',
6444             'ExtUtils::MM_Darwin' => '6.63_02',
6445             'ExtUtils::MM_MacOS' => '6.63_02',
6446             'ExtUtils::MM_NW5' => '6.63_02',
6447             'ExtUtils::MM_OS2' => '6.63_02',
6448             'ExtUtils::MM_QNX' => '6.63_02',
6449             'ExtUtils::MM_UWIN' => '6.63_02',
6450             'ExtUtils::MM_Unix' => '6.63_02',
6451             'ExtUtils::MM_VMS' => '6.63_02',
6452             'ExtUtils::MM_VOS' => '6.63_02',
6453             'ExtUtils::MM_Win32' => '6.63_02',
6454             'ExtUtils::MM_Win95' => '6.63_02',
6455             'ExtUtils::MY' => '6.63_02',
6456             'ExtUtils::MakeMaker' => '6.63_02',
6457             'ExtUtils::MakeMaker::Config'=> '6.63_02',
6458             'ExtUtils::Mkbootstrap' => '6.63_02',
6459             'ExtUtils::Mksymlists' => '6.63_02',
6460             'ExtUtils::testlib' => '6.63_02',
6461             'File::DosGlob' => '1.06',
6462             'File::Glob' => '1.14',
6463             'HTTP::Tiny' => '0.016',
6464             'IO::Compress::Adapter::Bzip2'=> '2.042',
6465             'IO::Compress::Adapter::Deflate'=> '2.042',
6466             'IO::Compress::Adapter::Identity'=> '2.042',
6467             'IO::Compress::Base' => '2.042',
6468             'IO::Compress::Base::Common'=> '2.042',
6469             'IO::Compress::Bzip2' => '2.042',
6470             'IO::Compress::Deflate' => '2.042',
6471             'IO::Compress::Gzip' => '2.042',
6472             'IO::Compress::Gzip::Constants'=> '2.042',
6473             'IO::Compress::RawDeflate'=> '2.042',
6474             'IO::Compress::Zip' => '2.042',
6475             'IO::Compress::Zip::Constants'=> '2.042',
6476             'IO::Compress::Zlib::Constants'=> '2.042',
6477             'IO::Compress::Zlib::Extra'=> '2.042',
6478             'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6479             'IO::Uncompress::Adapter::Identity'=> '2.042',
6480             'IO::Uncompress::Adapter::Inflate'=> '2.042',
6481             'IO::Uncompress::AnyInflate'=> '2.042',
6482             'IO::Uncompress::AnyUncompress'=> '2.042',
6483             'IO::Uncompress::Base' => '2.042',
6484             'IO::Uncompress::Bunzip2'=> '2.042',
6485             'IO::Uncompress::Gunzip'=> '2.042',
6486             'IO::Uncompress::Inflate'=> '2.042',
6487             'IO::Uncompress::RawInflate'=> '2.042',
6488             'IO::Uncompress::Unzip' => '2.042',
6489             'Locale::Maketext' => '1.20',
6490             'Locale::Maketext::Guts'=> '1.20',
6491             'Locale::Maketext::GutsLoader'=> '1.20',
6492             'Module::CoreList' => '2.58',
6493             'Opcode' => '1.21',
6494             'Socket' => '1.94_02',
6495             'Storable' => '2.33',
6496             'UNIVERSAL' => '1.10',
6497             'Unicode::Collate' => '0.85',
6498             'Unicode::Collate::CJK::Pinyin'=> '0.85',
6499             'Unicode::Collate::CJK::Stroke'=> '0.85',
6500             'Unicode::Collate::Locale'=> '0.85',
6501             'Unicode::UCD' => '0.37',
6502             'XS::APItest' => '0.33',
6503             'arybase' => '0.01',
6504             'charnames' => '1.24',
6505             'feature' => '1.23',
6506             'perlfaq' => '5.0150036',
6507             'strict' => '1.05',
6508             'unicore::Name' => undef,
6509             },
6510             removed => {
6511             }
6512             },
6513             5.015006 => {
6514             delta_from => 5.015005,
6515             changed => {
6516             'Archive::Tar' => '1.82',
6517             'Archive::Tar::Constant'=> '1.82',
6518             'Archive::Tar::File' => '1.82',
6519             'AutoLoader' => '5.72',
6520             'B::Concise' => '0.88',
6521             'B::Debug' => '1.17',
6522             'B::Deparse' => '1.10',
6523             'CPAN::Meta::YAML' => '0.005',
6524             'CPANPLUS' => '0.9113',
6525             'CPANPLUS::Internals' => '0.9113',
6526             'CPANPLUS::Shell::Default'=> '0.9113',
6527             'Carp' => '1.24',
6528             'Compress::Raw::Bzip2' => '2.045',
6529             'Compress::Raw::Zlib' => '2.045',
6530             'Compress::Zlib' => '2.045',
6531             'Cwd' => '3.38',
6532             'DB' => '1.04',
6533             'Data::Dumper' => '2.135_01',
6534             'Digest::SHA' => '5.70',
6535             'Dumpvalue' => '1.17',
6536             'Exporter' => '5.66',
6537             'Exporter::Heavy' => '5.66',
6538             'ExtUtils::CBuilder' => '0.280205',
6539             'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6540             'ExtUtils::Packlist' => '1.45',
6541             'ExtUtils::ParseXS' => '3.08',
6542             'ExtUtils::ParseXS::Constants'=> '3.08',
6543             'ExtUtils::ParseXS::CountLines'=> '3.08',
6544             'ExtUtils::ParseXS::Utilities'=> '3.08',
6545             'File::Basename' => '2.84',
6546             'File::Glob' => '1.15',
6547             'File::Spec::Unix' => '3.35',
6548             'Getopt::Std' => '1.07',
6549             'I18N::LangTags' => '0.38',
6550             'IO::Compress::Adapter::Bzip2'=> '2.045',
6551             'IO::Compress::Adapter::Deflate'=> '2.045',
6552             'IO::Compress::Adapter::Identity'=> '2.045',
6553             'IO::Compress::Base' => '2.046',
6554             'IO::Compress::Base::Common'=> '2.045',
6555             'IO::Compress::Bzip2' => '2.045',
6556             'IO::Compress::Deflate' => '2.045',
6557             'IO::Compress::Gzip' => '2.045',
6558             'IO::Compress::Gzip::Constants'=> '2.045',
6559             'IO::Compress::RawDeflate'=> '2.045',
6560             'IO::Compress::Zip' => '2.046',
6561             'IO::Compress::Zip::Constants'=> '2.045',
6562             'IO::Compress::Zlib::Constants'=> '2.045',
6563             'IO::Compress::Zlib::Extra'=> '2.045',
6564             'IO::Dir' => '1.09',
6565             'IO::File' => '1.16',
6566             'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6567             'IO::Uncompress::Adapter::Identity'=> '2.045',
6568             'IO::Uncompress::Adapter::Inflate'=> '2.045',
6569             'IO::Uncompress::AnyInflate'=> '2.045',
6570             'IO::Uncompress::AnyUncompress'=> '2.045',
6571             'IO::Uncompress::Base' => '2.046',
6572             'IO::Uncompress::Bunzip2'=> '2.045',
6573             'IO::Uncompress::Gunzip'=> '2.045',
6574             'IO::Uncompress::Inflate'=> '2.045',
6575             'IO::Uncompress::RawInflate'=> '2.045',
6576             'IO::Uncompress::Unzip' => '2.046',
6577             'Locale::Codes' => '3.20',
6578             'Locale::Codes::Constants'=> '3.20',
6579             'Locale::Codes::Country'=> '3.20',
6580             'Locale::Codes::Country_Codes'=> '3.20',
6581             'Locale::Codes::Country_Retired'=> '3.20',
6582             'Locale::Codes::Currency'=> '3.20',
6583             'Locale::Codes::Currency_Codes'=> '3.20',
6584             'Locale::Codes::Currency_Retired'=> '3.20',
6585             'Locale::Codes::LangExt'=> '3.20',
6586             'Locale::Codes::LangExt_Codes'=> '3.20',
6587             'Locale::Codes::LangExt_Retired'=> '3.20',
6588             'Locale::Codes::LangFam'=> '3.20',
6589             'Locale::Codes::LangFam_Codes'=> '3.20',
6590             'Locale::Codes::LangFam_Retired'=> '3.20',
6591             'Locale::Codes::LangVar'=> '3.20',
6592             'Locale::Codes::LangVar_Codes'=> '3.20',
6593             'Locale::Codes::LangVar_Retired'=> '3.20',
6594             'Locale::Codes::Language'=> '3.20',
6595             'Locale::Codes::Language_Codes'=> '3.20',
6596             'Locale::Codes::Language_Retired'=> '3.20',
6597             'Locale::Codes::Script' => '3.20',
6598             'Locale::Codes::Script_Codes'=> '3.20',
6599             'Locale::Codes::Script_Retired'=> '3.20',
6600             'Locale::Country' => '3.20',
6601             'Locale::Currency' => '3.20',
6602             'Locale::Language' => '3.20',
6603             'Locale::Maketext' => '1.21',
6604             'Locale::Script' => '3.20',
6605             'Module::CoreList' => '2.59',
6606             'Module::Loaded' => '0.08',
6607             'Opcode' => '1.22',
6608             'POSIX' => '1.27',
6609             'Pod::Html' => '1.12',
6610             'Pod::LaTeX' => '0.60',
6611             'Pod::Perldoc' => '3.15_08',
6612             'Safe' => '2.30',
6613             'SelfLoader' => '1.20',
6614             'Socket' => '1.97',
6615             'Storable' => '2.34',
6616             'UNIVERSAL' => '1.11',
6617             'Unicode::Collate' => '0.87',
6618             'Unicode::Collate::Locale'=> '0.87',
6619             'XS::APItest' => '0.34',
6620             'arybase' => '0.02',
6621             'charnames' => '1.27',
6622             'diagnostics' => '1.26',
6623             'feature' => '1.24',
6624             'if' => '0.0602',
6625             'overload' => '1.16',
6626             'sigtrap' => '1.06',
6627             'strict' => '1.06',
6628             'threads' => '1.86',
6629             'version' => '0.96',
6630             },
6631             removed => {
6632             }
6633             },
6634             5.015007 => {
6635             delta_from => 5.015006,
6636             changed => {
6637             'B' => '1.33',
6638             'B::Deparse' => '1.11',
6639             'CGI' => '3.59',
6640             'CPAN::Meta' => '2.113640',
6641             'CPAN::Meta::Converter' => '2.113640',
6642             'CPAN::Meta::Feature' => '2.113640',
6643             'CPAN::Meta::History' => '2.113640',
6644             'CPAN::Meta::Prereqs' => '2.113640',
6645             'CPAN::Meta::Requirements'=> '2.113640',
6646             'CPAN::Meta::Spec' => '2.113640',
6647             'CPAN::Meta::Validator' => '2.113640',
6648             'CPANPLUS' => '0.9116',
6649             'CPANPLUS::Internals' => '0.9116',
6650             'CPANPLUS::Shell::Default'=> '0.9116',
6651             'Cwd' => '3.39_01',
6652             'Data::Dumper' => '2.135_03',
6653             'Devel::InnerPackage' => '0.4',
6654             'ExtUtils::CBuilder::Base'=> '0.280205',
6655             'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6656             'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6657             'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6658             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6659             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6660             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6661             'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6662             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6663             'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6664             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6665             'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6666             'ExtUtils::Manifest' => '1.61',
6667             'ExtUtils::Packlist' => '1.46',
6668             'ExtUtils::ParseXS' => '3.12',
6669             'ExtUtils::ParseXS::Constants'=> '3.12',
6670             'ExtUtils::ParseXS::CountLines'=> '3.12',
6671             'ExtUtils::ParseXS::Utilities'=> '3.12',
6672             'ExtUtils::Typemaps' => '1.03',
6673             'ExtUtils::Typemaps::Cmd'=> undef,
6674             'ExtUtils::Typemaps::Type'=> '0.06',
6675             'File::Glob' => '1.16',
6676             'File::Spec' => '3.39_01',
6677             'File::Spec::Cygwin' => '3.39_01',
6678             'File::Spec::Epoc' => '3.39_01',
6679             'File::Spec::Functions' => '3.39_01',
6680             'File::Spec::Mac' => '3.39_01',
6681             'File::Spec::OS2' => '3.39_01',
6682             'File::Spec::Unix' => '3.39_01',
6683             'File::Spec::VMS' => '3.39_01',
6684             'File::Spec::Win32' => '3.39_01',
6685             'IO::Dir' => '1.10',
6686             'IO::Pipe' => '1.15',
6687             'IO::Poll' => '0.09',
6688             'IO::Select' => '1.21',
6689             'IO::Socket' => '1.34',
6690             'IO::Socket::INET' => '1.33',
6691             'IO::Socket::UNIX' => '1.24',
6692             'Locale::Maketext' => '1.22',
6693             'Math::BigInt' => '1.998',
6694             'Module::CoreList' => '2.60',
6695             'Module::Pluggable' => '4.0',
6696             'POSIX' => '1.28',
6697             'PerlIO::scalar' => '0.13',
6698             'Pod::Html' => '1.13',
6699             'Pod::Perldoc' => '3.15_15',
6700             'Pod::Perldoc::BaseTo' => '3.15_15',
6701             'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6702             'Pod::Perldoc::ToANSI' => '3.15_15',
6703             'Pod::Perldoc::ToChecker'=> '3.15_15',
6704             'Pod::Perldoc::ToMan' => '3.15_15',
6705             'Pod::Perldoc::ToNroff' => '3.15_15',
6706             'Pod::Perldoc::ToPod' => '3.15_15',
6707             'Pod::Perldoc::ToRtf' => '3.15_15',
6708             'Pod::Perldoc::ToTerm' => '3.15_15',
6709             'Pod::Perldoc::ToText' => '3.15_15',
6710             'Pod::Perldoc::ToTk' => '3.15_15',
6711             'Pod::Perldoc::ToXml' => '3.15_15',
6712             'Term::UI' => '0.30',
6713             'Tie::File' => '0.98',
6714             'Unicode::UCD' => '0.39',
6715             'Version::Requirements' => '0.101021',
6716             'XS::APItest' => '0.35',
6717             '_charnames' => '1.28',
6718             'arybase' => '0.03',
6719             'autouse' => '1.07',
6720             'charnames' => '1.28',
6721             'diagnostics' => '1.27',
6722             'feature' => '1.25',
6723             'overload' => '1.17',
6724             'overloading' => '0.02',
6725             'perlfaq' => '5.0150038',
6726             },
6727             removed => {
6728             }
6729             },
6730             5.015008 => {
6731             delta_from => 5.015007,
6732             changed => {
6733             'B' => '1.34',
6734             'B::Deparse' => '1.12',
6735             'CPAN::Meta' => '2.120351',
6736             'CPAN::Meta::Converter' => '2.120351',
6737             'CPAN::Meta::Feature' => '2.120351',
6738             'CPAN::Meta::History' => '2.120351',
6739             'CPAN::Meta::Prereqs' => '2.120351',
6740             'CPAN::Meta::Requirements'=> '2.120351',
6741             'CPAN::Meta::Spec' => '2.120351',
6742             'CPAN::Meta::Validator' => '2.120351',
6743             'CPAN::Meta::YAML' => '0.007',
6744             'CPANPLUS' => '0.9118',
6745             'CPANPLUS::Dist::Build' => '0.62',
6746             'CPANPLUS::Dist::Build::Constants'=> '0.62',
6747             'CPANPLUS::Internals' => '0.9118',
6748             'CPANPLUS::Shell::Default'=> '0.9118',
6749             'Carp' => '1.25',
6750             'Carp::Heavy' => '1.25',
6751             'Compress::Raw::Bzip2' => '2.048',
6752             'Compress::Raw::Zlib' => '2.048',
6753             'Compress::Zlib' => '2.048',
6754             'Cwd' => '3.39_02',
6755             'DB_File' => '1.826',
6756             'Data::Dumper' => '2.135_05',
6757             'English' => '1.05',
6758             'ExtUtils::Install' => '1.58',
6759             'ExtUtils::ParseXS' => '3.16',
6760             'ExtUtils::ParseXS::Constants'=> '3.16',
6761             'ExtUtils::ParseXS::CountLines'=> '3.16',
6762             'ExtUtils::ParseXS::Utilities'=> '3.16',
6763             'ExtUtils::Typemaps' => '3.16',
6764             'ExtUtils::Typemaps::Cmd'=> '3.16',
6765             'ExtUtils::Typemaps::InputMap'=> '3.16',
6766             'ExtUtils::Typemaps::OutputMap'=> '3.16',
6767             'ExtUtils::Typemaps::Type'=> '3.16',
6768             'File::Copy' => '2.23',
6769             'File::Glob' => '1.17',
6770             'File::Spec' => '3.39_02',
6771             'File::Spec::Cygwin' => '3.39_02',
6772             'File::Spec::Epoc' => '3.39_02',
6773             'File::Spec::Functions' => '3.39_02',
6774             'File::Spec::Mac' => '3.39_02',
6775             'File::Spec::OS2' => '3.39_02',
6776             'File::Spec::Unix' => '3.39_02',
6777             'File::Spec::VMS' => '3.39_02',
6778             'File::Spec::Win32' => '3.39_02',
6779             'Filter::Util::Call' => '1.40',
6780             'IO::Compress::Adapter::Bzip2'=> '2.048',
6781             'IO::Compress::Adapter::Deflate'=> '2.048',
6782             'IO::Compress::Adapter::Identity'=> '2.048',
6783             'IO::Compress::Base' => '2.048',
6784             'IO::Compress::Base::Common'=> '2.048',
6785             'IO::Compress::Bzip2' => '2.048',
6786             'IO::Compress::Deflate' => '2.048',
6787             'IO::Compress::Gzip' => '2.048',
6788             'IO::Compress::Gzip::Constants'=> '2.048',
6789             'IO::Compress::RawDeflate'=> '2.048',
6790             'IO::Compress::Zip' => '2.048',
6791             'IO::Compress::Zip::Constants'=> '2.048',
6792             'IO::Compress::Zlib::Constants'=> '2.048',
6793             'IO::Compress::Zlib::Extra'=> '2.048',
6794             'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6795             'IO::Uncompress::Adapter::Identity'=> '2.048',
6796             'IO::Uncompress::Adapter::Inflate'=> '2.048',
6797             'IO::Uncompress::AnyInflate'=> '2.048',
6798             'IO::Uncompress::AnyUncompress'=> '2.048',
6799             'IO::Uncompress::Base' => '2.048',
6800             'IO::Uncompress::Bunzip2'=> '2.048',
6801             'IO::Uncompress::Gunzip'=> '2.048',
6802             'IO::Uncompress::Inflate'=> '2.048',
6803             'IO::Uncompress::RawInflate'=> '2.048',
6804             'IO::Uncompress::Unzip' => '2.048',
6805             'IPC::Cmd' => '0.76',
6806             'Math::Complex' => '1.59',
6807             'Math::Trig' => '1.23',
6808             'Module::Metadata' => '1.000009',
6809             'Opcode' => '1.23',
6810             'POSIX' => '1.30',
6811             'Parse::CPAN::Meta' => '1.4402',
6812             'PerlIO::mmap' => '0.010',
6813             'Pod::Checker' => '1.51',
6814             'Pod::Find' => '1.51',
6815             'Pod::Functions' => '1.05',
6816             'Pod::Html' => '1.14',
6817             'Pod::InputObjects' => '1.51',
6818             'Pod::ParseUtils' => '1.51',
6819             'Pod::Parser' => '1.51',
6820             'Pod::PlainText' => '2.05',
6821             'Pod::Select' => '1.51',
6822             'Pod::Usage' => '1.51',
6823             'Safe' => '2.31',
6824             'Socket' => '1.98',
6825             'Term::Cap' => '1.13',
6826             'Term::ReadLine' => '1.08',
6827             'Time::HiRes' => '1.9725',
6828             'Unicode' => '6.1.0',
6829             'Unicode::UCD' => '0.41',
6830             'Version::Requirements' => '0.101022',
6831             'XS::APItest' => '0.36',
6832             'XS::Typemap' => '0.08',
6833             '_charnames' => '1.29',
6834             'arybase' => '0.04',
6835             'charnames' => '1.29',
6836             'diagnostics' => '1.28',
6837             'feature' => '1.26',
6838             'locale' => '1.01',
6839             'overload' => '1.18',
6840             'perlfaq' => '5.0150039',
6841             're' => '0.19',
6842             'subs' => '1.01',
6843             'warnings' => '1.13',
6844             },
6845             removed => {
6846             }
6847             },
6848             5.015009 => {
6849             delta_from => 5.015008,
6850             changed => {
6851             'B::Deparse' => '1.13',
6852             'B::Lint' => '1.14',
6853             'B::Lint::Debug' => '1.14',
6854             'CPAN::Meta' => '2.120630',
6855             'CPAN::Meta::Converter' => '2.120630',
6856             'CPAN::Meta::Feature' => '2.120630',
6857             'CPAN::Meta::History' => '2.120630',
6858             'CPAN::Meta::Prereqs' => '2.120630',
6859             'CPAN::Meta::Requirements'=> '2.120630',
6860             'CPAN::Meta::Spec' => '2.120630',
6861             'CPAN::Meta::Validator' => '2.120630',
6862             'CPANPLUS' => '0.9121',
6863             'CPANPLUS::Internals' => '0.9121',
6864             'CPANPLUS::Shell::Default'=> '0.9121',
6865             'Data::Dumper' => '2.135_06',
6866             'Digest::SHA' => '5.71',
6867             'ExtUtils::CBuilder' => '0.280206',
6868             'ExtUtils::CBuilder::Base'=> '0.280206',
6869             'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6870             'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6871             'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6872             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6873             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6874             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6875             'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6876             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6877             'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6878             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6879             'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6880             'HTTP::Tiny' => '0.017',
6881             'Locale::Codes' => '3.21',
6882             'Locale::Codes::Constants'=> '3.21',
6883             'Locale::Codes::Country'=> '3.21',
6884             'Locale::Codes::Country_Codes'=> '3.21',
6885             'Locale::Codes::Country_Retired'=> '3.21',
6886             'Locale::Codes::Currency'=> '3.21',
6887             'Locale::Codes::Currency_Codes'=> '3.21',
6888             'Locale::Codes::Currency_Retired'=> '3.21',
6889             'Locale::Codes::LangExt'=> '3.21',
6890             'Locale::Codes::LangExt_Codes'=> '3.21',
6891             'Locale::Codes::LangExt_Retired'=> '3.21',
6892             'Locale::Codes::LangFam'=> '3.21',
6893             'Locale::Codes::LangFam_Codes'=> '3.21',
6894             'Locale::Codes::LangFam_Retired'=> '3.21',
6895             'Locale::Codes::LangVar'=> '3.21',
6896             'Locale::Codes::LangVar_Codes'=> '3.21',
6897             'Locale::Codes::LangVar_Retired'=> '3.21',
6898             'Locale::Codes::Language'=> '3.21',
6899             'Locale::Codes::Language_Codes'=> '3.21',
6900             'Locale::Codes::Language_Retired'=> '3.21',
6901             'Locale::Codes::Script' => '3.21',
6902             'Locale::Codes::Script_Codes'=> '3.21',
6903             'Locale::Codes::Script_Retired'=> '3.21',
6904             'Locale::Country' => '3.21',
6905             'Locale::Currency' => '3.21',
6906             'Locale::Language' => '3.21',
6907             'Locale::Script' => '3.21',
6908             'Module::CoreList' => '2.65',
6909             'Pod::Html' => '1.1501',
6910             'Pod::Perldoc' => '3.17',
6911             'Pod::Perldoc::BaseTo' => '3.17',
6912             'Pod::Perldoc::GetOptsOO'=> '3.17',
6913             'Pod::Perldoc::ToANSI' => '3.17',
6914             'Pod::Perldoc::ToChecker'=> '3.17',
6915             'Pod::Perldoc::ToMan' => '3.17',
6916             'Pod::Perldoc::ToNroff' => '3.17',
6917             'Pod::Perldoc::ToPod' => '3.17',
6918             'Pod::Perldoc::ToRtf' => '3.17',
6919             'Pod::Perldoc::ToTerm' => '3.17',
6920             'Pod::Perldoc::ToText' => '3.17',
6921             'Pod::Perldoc::ToTk' => '3.17',
6922             'Pod::Perldoc::ToXml' => '3.17',
6923             'Pod::Simple' => '3.20',
6924             'Pod::Simple::BlackBox' => '3.20',
6925             'Pod::Simple::Checker' => '3.20',
6926             'Pod::Simple::Debug' => '3.20',
6927             'Pod::Simple::DumpAsText'=> '3.20',
6928             'Pod::Simple::DumpAsXML'=> '3.20',
6929             'Pod::Simple::HTML' => '3.20',
6930             'Pod::Simple::HTMLBatch'=> '3.20',
6931             'Pod::Simple::LinkSection'=> '3.20',
6932             'Pod::Simple::Methody' => '3.20',
6933             'Pod::Simple::Progress' => '3.20',
6934             'Pod::Simple::PullParser'=> '3.20',
6935             'Pod::Simple::PullParserEndToken'=> '3.20',
6936             'Pod::Simple::PullParserStartToken'=> '3.20',
6937             'Pod::Simple::PullParserTextToken'=> '3.20',
6938             'Pod::Simple::PullParserToken'=> '3.20',
6939             'Pod::Simple::RTF' => '3.20',
6940             'Pod::Simple::Search' => '3.20',
6941             'Pod::Simple::SimpleTree'=> '3.20',
6942             'Pod::Simple::Text' => '3.20',
6943             'Pod::Simple::TextContent'=> '3.20',
6944             'Pod::Simple::TiedOutFH'=> '3.20',
6945             'Pod::Simple::Transcode'=> '3.20',
6946             'Pod::Simple::TranscodeDumb'=> '3.20',
6947             'Pod::Simple::TranscodeSmart'=> '3.20',
6948             'Pod::Simple::XHTML' => '3.20',
6949             'Pod::Simple::XMLOutStream'=> '3.20',
6950             'Socket' => '2.000',
6951             'Term::ReadLine' => '1.09',
6952             'Unicode::Collate' => '0.89',
6953             'Unicode::Collate::CJK::Korean'=> '0.88',
6954             'Unicode::Collate::Locale'=> '0.89',
6955             'Unicode::Normalize' => '1.14',
6956             'Unicode::UCD' => '0.42',
6957             'XS::APItest' => '0.37',
6958             'arybase' => '0.05',
6959             'attributes' => '0.18',
6960             'charnames' => '1.30',
6961             'feature' => '1.27',
6962             },
6963             removed => {
6964             }
6965             },
6966             5.016 => {
6967             delta_from => 5.015009,
6968             changed => {
6969             'B::Concise' => '0.89',
6970             'B::Deparse' => '1.14',
6971             'Carp' => '1.26',
6972             'Carp::Heavy' => '1.26',
6973             'IO::Socket' => '1.35',
6974             'Module::CoreList' => '2.66',
6975             'PerlIO::scalar' => '0.14',
6976             'Pod::Html' => '1.1502',
6977             'Safe' => '2.31_01',
6978             'Socket' => '2.001',
6979             'Unicode::UCD' => '0.43',
6980             'XS::APItest' => '0.38',
6981             '_charnames' => '1.31',
6982             'attributes' => '0.19',
6983             'strict' => '1.07',
6984             'version' => '0.99',
6985             },
6986             removed => {
6987             }
6988             },
6989             5.016001 => {
6990             delta_from => 5.016,
6991             changed => {
6992             'B' => '1.35',
6993             'B::Deparse' => '1.14_01',
6994             'List::Util' => '1.25',
6995             'List::Util::PP' => '1.25',
6996             'List::Util::XS' => '1.25',
6997             'Module::CoreList' => '2.70',
6998             'PerlIO::scalar' => '0.14_01',
6999             'Scalar::Util' => '1.25',
7000             'Scalar::Util::PP' => '1.25',
7001             're' => '0.19_01',
7002             },
7003             removed => {
7004             }
7005             },
7006             5.016002 => {
7007             delta_from => 5.016001,
7008             changed => {
7009             'Module::CoreList' => '2.76',
7010             },
7011             removed => {
7012             }
7013             },
7014             5.016003 => {
7015             delta_from => 5.016002,
7016             changed => {
7017             'Encode' => '2.44_01',
7018             'Module::CoreList' => '2.76_02',
7019             'XS::APItest' => '0.39',
7020             },
7021             removed => {
7022             }
7023             },
7024             5.017 => {
7025             delta_from => 5.016,
7026             changed => {
7027             'B' => '1.35',
7028             'B::Concise' => '0.90',
7029             'ExtUtils::ParseXS' => '3.17',
7030             'ExtUtils::ParseXS::Utilities'=> '3.17',
7031             'File::DosGlob' => '1.07',
7032             'File::Find' => '1.21',
7033             'File::stat' => '1.06',
7034             'Hash::Util' => '0.12',
7035             'IO::Socket' => '1.34',
7036             'Module::CoreList' => '2.67',
7037             'Pod::Functions' => '1.06',
7038             'Storable' => '2.35',
7039             'XS::APItest' => '0.39',
7040             'diagnostics' => '1.29',
7041             'feature' => '1.28',
7042             'overload' => '1.19',
7043             'utf8' => '1.10',
7044             },
7045             removed => {
7046             'Version::Requirements' => 1,
7047             }
7048             },
7049             5.017001 => {
7050             delta_from => 5.017,
7051             changed => {
7052             'App::Prove' => '3.25',
7053             'App::Prove::State' => '3.25',
7054             'App::Prove::State::Result'=> '3.25',
7055             'App::Prove::State::Result::Test'=> '3.25',
7056             'Archive::Extract' => '0.60',
7057             'Archive::Tar' => '1.88',
7058             'Archive::Tar::Constant'=> '1.88',
7059             'Archive::Tar::File' => '1.88',
7060             'B' => '1.36',
7061             'B::Deparse' => '1.15',
7062             'CPAN::Meta' => '2.120921',
7063             'CPAN::Meta::Converter' => '2.120921',
7064             'CPAN::Meta::Feature' => '2.120921',
7065             'CPAN::Meta::History' => '2.120921',
7066             'CPAN::Meta::Prereqs' => '2.120921',
7067             'CPAN::Meta::Requirements'=> '2.122',
7068             'CPAN::Meta::Spec' => '2.120921',
7069             'CPAN::Meta::Validator' => '2.120921',
7070             'CPAN::Meta::YAML' => '0.008',
7071             'CPANPLUS' => '0.9130',
7072             'CPANPLUS::Config::HomeEnv'=> '0.04',
7073             'CPANPLUS::Internals' => '0.9130',
7074             'CPANPLUS::Shell::Default'=> '0.9130',
7075             'Class::Struct' => '0.64',
7076             'Compress::Raw::Bzip2' => '2.052',
7077             'Compress::Raw::Zlib' => '2.054',
7078             'Compress::Zlib' => '2.052',
7079             'Digest::MD5' => '2.52',
7080             'DynaLoader' => '1.15',
7081             'ExtUtils::CBuilder' => '0.280208',
7082             'ExtUtils::CBuilder::Base'=> '0.280208',
7083             'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
7084             'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
7085             'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
7086             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
7087             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
7088             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
7089             'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
7090             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
7091             'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
7092             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
7093             'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
7094             'Fatal' => '2.11',
7095             'File::DosGlob' => '1.08',
7096             'File::Fetch' => '0.34',
7097             'File::Spec::Unix' => '3.39_03',
7098             'Filter::Util::Call' => '1.45',
7099             'HTTP::Tiny' => '0.022',
7100             'IO' => '1.25_07',
7101             'IO::Compress::Adapter::Bzip2'=> '2.052',
7102             'IO::Compress::Adapter::Deflate'=> '2.052',
7103             'IO::Compress::Adapter::Identity'=> '2.052',
7104             'IO::Compress::Base' => '2.052',
7105             'IO::Compress::Base::Common'=> '2.052',
7106             'IO::Compress::Bzip2' => '2.052',
7107             'IO::Compress::Deflate' => '2.052',
7108             'IO::Compress::Gzip' => '2.052',
7109             'IO::Compress::Gzip::Constants'=> '2.052',
7110             'IO::Compress::RawDeflate'=> '2.052',
7111             'IO::Compress::Zip' => '2.052',
7112             'IO::Compress::Zip::Constants'=> '2.052',
7113             'IO::Compress::Zlib::Constants'=> '2.052',
7114             'IO::Compress::Zlib::Extra'=> '2.052',
7115             'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
7116             'IO::Uncompress::Adapter::Identity'=> '2.052',
7117             'IO::Uncompress::Adapter::Inflate'=> '2.052',
7118             'IO::Uncompress::AnyInflate'=> '2.052',
7119             'IO::Uncompress::AnyUncompress'=> '2.052',
7120             'IO::Uncompress::Base' => '2.052',
7121             'IO::Uncompress::Bunzip2'=> '2.052',
7122             'IO::Uncompress::Gunzip'=> '2.052',
7123             'IO::Uncompress::Inflate'=> '2.052',
7124             'IO::Uncompress::RawInflate'=> '2.052',
7125             'IO::Uncompress::Unzip' => '2.052',
7126             'IPC::Cmd' => '0.78',
7127             'List::Util' => '1.25',
7128             'List::Util::XS' => '1.25',
7129             'Locale::Codes' => '3.22',
7130             'Locale::Codes::Constants'=> '3.22',
7131             'Locale::Codes::Country'=> '3.22',
7132             'Locale::Codes::Country_Codes'=> '3.22',
7133             'Locale::Codes::Country_Retired'=> '3.22',
7134             'Locale::Codes::Currency'=> '3.22',
7135             'Locale::Codes::Currency_Codes'=> '3.22',
7136             'Locale::Codes::Currency_Retired'=> '3.22',
7137             'Locale::Codes::LangExt'=> '3.22',
7138             'Locale::Codes::LangExt_Codes'=> '3.22',
7139             'Locale::Codes::LangExt_Retired'=> '3.22',
7140             'Locale::Codes::LangFam'=> '3.22',
7141             'Locale::Codes::LangFam_Codes'=> '3.22',
7142             'Locale::Codes::LangFam_Retired'=> '3.22',
7143             'Locale::Codes::LangVar'=> '3.22',
7144             'Locale::Codes::LangVar_Codes'=> '3.22',
7145             'Locale::Codes::LangVar_Retired'=> '3.22',
7146             'Locale::Codes::Language'=> '3.22',
7147             'Locale::Codes::Language_Codes'=> '3.22',
7148             'Locale::Codes::Language_Retired'=> '3.22',
7149             'Locale::Codes::Script' => '3.22',
7150             'Locale::Codes::Script_Codes'=> '3.22',
7151             'Locale::Codes::Script_Retired'=> '3.22',
7152             'Locale::Country' => '3.22',
7153             'Locale::Currency' => '3.22',
7154             'Locale::Language' => '3.22',
7155             'Locale::Script' => '3.22',
7156             'Memoize' => '1.03',
7157             'Memoize::AnyDBM_File' => '1.03',
7158             'Memoize::Expire' => '1.03',
7159             'Memoize::ExpireFile' => '1.03',
7160             'Memoize::ExpireTest' => '1.03',
7161             'Memoize::NDBM_File' => '1.03',
7162             'Memoize::SDBM_File' => '1.03',
7163             'Memoize::Storable' => '1.03',
7164             'Module::Build' => '0.40',
7165             'Module::Build::Base' => '0.40',
7166             'Module::Build::Compat' => '0.40',
7167             'Module::Build::Config' => '0.40',
7168             'Module::Build::Cookbook'=> '0.40',
7169             'Module::Build::Dumper' => '0.40',
7170             'Module::Build::ModuleInfo'=> '0.40',
7171             'Module::Build::Notes' => '0.40',
7172             'Module::Build::PPMMaker'=> '0.40',
7173             'Module::Build::Platform::Amiga'=> '0.40',
7174             'Module::Build::Platform::Default'=> '0.40',
7175             'Module::Build::Platform::EBCDIC'=> '0.40',
7176             'Module::Build::Platform::MPEiX'=> '0.40',
7177             'Module::Build::Platform::MacOS'=> '0.40',
7178             'Module::Build::Platform::RiscOS'=> '0.40',
7179             'Module::Build::Platform::Unix'=> '0.40',
7180             'Module::Build::Platform::VMS'=> '0.40',
7181             'Module::Build::Platform::VOS'=> '0.40',
7182             'Module::Build::Platform::Windows'=> '0.40',
7183             'Module::Build::Platform::aix'=> '0.40',
7184             'Module::Build::Platform::cygwin'=> '0.40',
7185             'Module::Build::Platform::darwin'=> '0.40',
7186             'Module::Build::Platform::os2'=> '0.40',
7187             'Module::Build::PodParser'=> '0.40',
7188             'Module::CoreList' => '2.68',
7189             'Module::Load::Conditional'=> '0.50',
7190             'Object::Accessor' => '0.44',
7191             'POSIX' => '1.31',
7192             'Params::Check' => '0.36',
7193             'Parse::CPAN::Meta' => '1.4404',
7194             'PerlIO::mmap' => '0.011',
7195             'PerlIO::via::QuotedPrint'=> '0.07',
7196             'Pod::Html' => '1.16',
7197             'Pod::Man' => '2.26',
7198             'Pod::Text' => '3.16',
7199             'Safe' => '2.33_01',
7200             'Scalar::Util' => '1.25',
7201             'Search::Dict' => '1.07',
7202             'Storable' => '2.36',
7203             'TAP::Base' => '3.25',
7204             'TAP::Formatter::Base' => '3.25',
7205             'TAP::Formatter::Color' => '3.25',
7206             'TAP::Formatter::Console'=> '3.25',
7207             'TAP::Formatter::Console::ParallelSession'=> '3.25',
7208             'TAP::Formatter::Console::Session'=> '3.25',
7209             'TAP::Formatter::File' => '3.25',
7210             'TAP::Formatter::File::Session'=> '3.25',
7211             'TAP::Formatter::Session'=> '3.25',
7212             'TAP::Harness' => '3.25',
7213             'TAP::Object' => '3.25',
7214             'TAP::Parser' => '3.25',
7215             'TAP::Parser::Aggregator'=> '3.25',
7216             'TAP::Parser::Grammar' => '3.25',
7217             'TAP::Parser::Iterator' => '3.25',
7218             'TAP::Parser::Iterator::Array'=> '3.25',
7219             'TAP::Parser::Iterator::Process'=> '3.25',
7220             'TAP::Parser::Iterator::Stream'=> '3.25',
7221             'TAP::Parser::IteratorFactory'=> '3.25',
7222             'TAP::Parser::Multiplexer'=> '3.25',
7223             'TAP::Parser::Result' => '3.25',
7224             'TAP::Parser::Result::Bailout'=> '3.25',
7225             'TAP::Parser::Result::Comment'=> '3.25',
7226             'TAP::Parser::Result::Plan'=> '3.25',
7227             'TAP::Parser::Result::Pragma'=> '3.25',
7228             'TAP::Parser::Result::Test'=> '3.25',
7229             'TAP::Parser::Result::Unknown'=> '3.25',
7230             'TAP::Parser::Result::Version'=> '3.25',
7231             'TAP::Parser::Result::YAML'=> '3.25',
7232             'TAP::Parser::ResultFactory'=> '3.25',
7233             'TAP::Parser::Scheduler'=> '3.25',
7234             'TAP::Parser::Scheduler::Job'=> '3.25',
7235             'TAP::Parser::Scheduler::Spinner'=> '3.25',
7236             'TAP::Parser::Source' => '3.25',
7237             'TAP::Parser::SourceHandler'=> '3.25',
7238             'TAP::Parser::SourceHandler::Executable'=> '3.25',
7239             'TAP::Parser::SourceHandler::File'=> '3.25',
7240             'TAP::Parser::SourceHandler::Handle'=> '3.25',
7241             'TAP::Parser::SourceHandler::Perl'=> '3.25',
7242             'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7243             'TAP::Parser::Utils' => '3.25',
7244             'TAP::Parser::YAMLish::Reader'=> '3.25',
7245             'TAP::Parser::YAMLish::Writer'=> '3.25',
7246             'Term::ANSIColor' => '3.02',
7247             'Test::Harness' => '3.25',
7248             'Unicode' => '6.2.0',
7249             'Unicode::UCD' => '0.44',
7250             'XS::APItest' => '0.40',
7251             '_charnames' => '1.32',
7252             'attributes' => '0.2',
7253             'autodie' => '2.11',
7254             'autodie::exception' => '2.11',
7255             'autodie::exception::system'=> '2.11',
7256             'autodie::hints' => '2.11',
7257             'bigint' => '0.30',
7258             'charnames' => '1.32',
7259             'feature' => '1.29',
7260             'inc::latest' => '0.40',
7261             'perlfaq' => '5.0150040',
7262             're' => '0.20',
7263             },
7264             removed => {
7265             'List::Util::PP' => 1,
7266             'Scalar::Util::PP' => 1,
7267             }
7268             },
7269             5.017002 => {
7270             delta_from => 5.017001,
7271             changed => {
7272             'App::Prove' => '3.25_01',
7273             'App::Prove::State' => '3.25_01',
7274             'App::Prove::State::Result'=> '3.25_01',
7275             'App::Prove::State::Result::Test'=> '3.25_01',
7276             'B::Concise' => '0.91',
7277             'Compress::Raw::Bzip2' => '2.05201',
7278             'Compress::Raw::Zlib' => '2.05401',
7279             'Exporter' => '5.67',
7280             'Exporter::Heavy' => '5.67',
7281             'Fatal' => '2.12',
7282             'File::Fetch' => '0.36',
7283             'File::stat' => '1.07',
7284             'IO' => '1.25_08',
7285             'IO::Socket' => '1.35',
7286             'Module::CoreList' => '2.69',
7287             'PerlIO::scalar' => '0.15',
7288             'Socket' => '2.002',
7289             'Storable' => '2.37',
7290             'TAP::Base' => '3.25_01',
7291             'TAP::Formatter::Base' => '3.25_01',
7292             'TAP::Formatter::Color' => '3.25_01',
7293             'TAP::Formatter::Console'=> '3.25_01',
7294             'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7295             'TAP::Formatter::Console::Session'=> '3.25_01',
7296             'TAP::Formatter::File' => '3.25_01',
7297             'TAP::Formatter::File::Session'=> '3.25_01',
7298             'TAP::Formatter::Session'=> '3.25_01',
7299             'TAP::Harness' => '3.25_01',
7300             'TAP::Object' => '3.25_01',
7301             'TAP::Parser' => '3.25_01',
7302             'TAP::Parser::Aggregator'=> '3.25_01',
7303             'TAP::Parser::Grammar' => '3.25_01',
7304             'TAP::Parser::Iterator' => '3.25_01',
7305             'TAP::Parser::Iterator::Array'=> '3.25_01',
7306             'TAP::Parser::Iterator::Process'=> '3.25_01',
7307             'TAP::Parser::Iterator::Stream'=> '3.25_01',
7308             'TAP::Parser::IteratorFactory'=> '3.25_01',
7309             'TAP::Parser::Multiplexer'=> '3.25_01',
7310             'TAP::Parser::Result' => '3.25_01',
7311             'TAP::Parser::Result::Bailout'=> '3.25_01',
7312             'TAP::Parser::Result::Comment'=> '3.25_01',
7313             'TAP::Parser::Result::Plan'=> '3.25_01',
7314             'TAP::Parser::Result::Pragma'=> '3.25_01',
7315             'TAP::Parser::Result::Test'=> '3.25_01',
7316             'TAP::Parser::Result::Unknown'=> '3.25_01',
7317             'TAP::Parser::Result::Version'=> '3.25_01',
7318             'TAP::Parser::Result::YAML'=> '3.25_01',
7319             'TAP::Parser::ResultFactory'=> '3.25_01',
7320             'TAP::Parser::Scheduler'=> '3.25_01',
7321             'TAP::Parser::Scheduler::Job'=> '3.25_01',
7322             'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7323             'TAP::Parser::Source' => '3.25_01',
7324             'TAP::Parser::SourceHandler'=> '3.25_01',
7325             'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7326             'TAP::Parser::SourceHandler::File'=> '3.25_01',
7327             'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7328             'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7329             'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7330             'TAP::Parser::Utils' => '3.25_01',
7331             'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7332             'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7333             'Test::Harness' => '3.25_01',
7334             'Tie::StdHandle' => '4.3',
7335             'XS::APItest' => '0.41',
7336             'autodie' => '2.12',
7337             'autodie::exception' => '2.12',
7338             'autodie::exception::system'=> '2.12',
7339             'autodie::hints' => '2.12',
7340             'diagnostics' => '1.30',
7341             'overload' => '1.20',
7342             're' => '0.21',
7343             'vars' => '1.03',
7344             },
7345             removed => {
7346             }
7347             },
7348             5.017003 => {
7349             delta_from => 5.017002,
7350             changed => {
7351             'B' => '1.37',
7352             'B::Concise' => '0.92',
7353             'B::Debug' => '1.18',
7354             'B::Deparse' => '1.16',
7355             'CGI' => '3.60',
7356             'Compress::Raw::Bzip2' => '2.055',
7357             'Compress::Raw::Zlib' => '2.056',
7358             'Compress::Zlib' => '2.055',
7359             'Data::Dumper' => '2.135_07',
7360             'Devel::Peek' => '1.09',
7361             'Encode' => '2.47',
7362             'Encode::Alias' => '2.16',
7363             'Encode::GSM0338' => '2.02',
7364             'Encode::Unicode::UTF7' => '2.06',
7365             'IO::Compress::Adapter::Bzip2'=> '2.055',
7366             'IO::Compress::Adapter::Deflate'=> '2.055',
7367             'IO::Compress::Adapter::Identity'=> '2.055',
7368             'IO::Compress::Base' => '2.055',
7369             'IO::Compress::Base::Common'=> '2.055',
7370             'IO::Compress::Bzip2' => '2.055',
7371             'IO::Compress::Deflate' => '2.055',
7372             'IO::Compress::Gzip' => '2.055',
7373             'IO::Compress::Gzip::Constants'=> '2.055',
7374             'IO::Compress::RawDeflate'=> '2.055',
7375             'IO::Compress::Zip' => '2.055',
7376             'IO::Compress::Zip::Constants'=> '2.055',
7377             'IO::Compress::Zlib::Constants'=> '2.055',
7378             'IO::Compress::Zlib::Extra'=> '2.055',
7379             'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7380             'IO::Uncompress::Adapter::Identity'=> '2.055',
7381             'IO::Uncompress::Adapter::Inflate'=> '2.055',
7382             'IO::Uncompress::AnyInflate'=> '2.055',
7383             'IO::Uncompress::AnyUncompress'=> '2.055',
7384             'IO::Uncompress::Base' => '2.055',
7385             'IO::Uncompress::Bunzip2'=> '2.055',
7386             'IO::Uncompress::Gunzip'=> '2.055',
7387             'IO::Uncompress::Inflate'=> '2.055',
7388             'IO::Uncompress::RawInflate'=> '2.055',
7389             'IO::Uncompress::Unzip' => '2.055',
7390             'Module::Build' => '0.4003',
7391             'Module::Build::Base' => '0.4003',
7392             'Module::Build::Compat' => '0.4003',
7393             'Module::Build::Config' => '0.4003',
7394             'Module::Build::Cookbook'=> '0.4003',
7395             'Module::Build::Dumper' => '0.4003',
7396             'Module::Build::ModuleInfo'=> '0.4003',
7397             'Module::Build::Notes' => '0.4003',
7398             'Module::Build::PPMMaker'=> '0.4003',
7399             'Module::Build::Platform::Amiga'=> '0.4003',
7400             'Module::Build::Platform::Default'=> '0.4003',
7401             'Module::Build::Platform::EBCDIC'=> '0.4003',
7402             'Module::Build::Platform::MPEiX'=> '0.4003',
7403             'Module::Build::Platform::MacOS'=> '0.4003',
7404             'Module::Build::Platform::RiscOS'=> '0.4003',
7405             'Module::Build::Platform::Unix'=> '0.4003',
7406             'Module::Build::Platform::VMS'=> '0.4003',
7407             'Module::Build::Platform::VOS'=> '0.4003',
7408             'Module::Build::Platform::Windows'=> '0.4003',
7409             'Module::Build::Platform::aix'=> '0.4003',
7410             'Module::Build::Platform::cygwin'=> '0.4003',
7411             'Module::Build::Platform::darwin'=> '0.4003',
7412             'Module::Build::Platform::os2'=> '0.4003',
7413             'Module::Build::PodParser'=> '0.4003',
7414             'Module::CoreList' => '2.71',
7415             'Module::CoreList::TieHashDelta'=> '2.71',
7416             'Module::Load::Conditional'=> '0.54',
7417             'Module::Metadata' => '1.000011',
7418             'Module::Pluggable' => '4.3',
7419             'Module::Pluggable::Object'=> '4.3',
7420             'Pod::Simple' => '3.23',
7421             'Pod::Simple::BlackBox' => '3.23',
7422             'Pod::Simple::Checker' => '3.23',
7423             'Pod::Simple::Debug' => '3.23',
7424             'Pod::Simple::DumpAsText'=> '3.23',
7425             'Pod::Simple::DumpAsXML'=> '3.23',
7426             'Pod::Simple::HTML' => '3.23',
7427             'Pod::Simple::HTMLBatch'=> '3.23',
7428             'Pod::Simple::LinkSection'=> '3.23',
7429             'Pod::Simple::Methody' => '3.23',
7430             'Pod::Simple::Progress' => '3.23',
7431             'Pod::Simple::PullParser'=> '3.23',
7432             'Pod::Simple::PullParserEndToken'=> '3.23',
7433             'Pod::Simple::PullParserStartToken'=> '3.23',
7434             'Pod::Simple::PullParserTextToken'=> '3.23',
7435             'Pod::Simple::PullParserToken'=> '3.23',
7436             'Pod::Simple::RTF' => '3.23',
7437             'Pod::Simple::Search' => '3.23',
7438             'Pod::Simple::SimpleTree'=> '3.23',
7439             'Pod::Simple::Text' => '3.23',
7440             'Pod::Simple::TextContent'=> '3.23',
7441             'Pod::Simple::TiedOutFH'=> '3.23',
7442             'Pod::Simple::Transcode'=> '3.23',
7443             'Pod::Simple::TranscodeDumb'=> '3.23',
7444             'Pod::Simple::TranscodeSmart'=> '3.23',
7445             'Pod::Simple::XHTML' => '3.23',
7446             'Pod::Simple::XMLOutStream'=> '3.23',
7447             'Socket' => '2.004',
7448             'Storable' => '2.38',
7449             'Sys::Syslog' => '0.31',
7450             'Term::ReadLine' => '1.10',
7451             'Text::Tabs' => '2012.0818',
7452             'Text::Wrap' => '2012.0818',
7453             'Time::Local' => '1.2300',
7454             'Unicode::UCD' => '0.45',
7455             'Win32' => '0.45',
7456             'Win32CORE' => '0.03',
7457             'XS::APItest' => '0.42',
7458             'inc::latest' => '0.4003',
7459             'perlfaq' => '5.0150041',
7460             're' => '0.22',
7461             },
7462             removed => {
7463             }
7464             },
7465             5.017004 => {
7466             delta_from => 5.017003,
7467             changed => {
7468             'Archive::Tar' => '1.90',
7469             'Archive::Tar::Constant'=> '1.90',
7470             'Archive::Tar::File' => '1.90',
7471             'B' => '1.38',
7472             'B::Concise' => '0.93',
7473             'B::Deparse' => '1.17',
7474             'B::Xref' => '1.04',
7475             'CPANPLUS' => '0.9131',
7476             'CPANPLUS::Internals' => '0.9131',
7477             'CPANPLUS::Shell::Default'=> '0.9131',
7478             'DB_File' => '1.827',
7479             'Devel::Peek' => '1.10',
7480             'DynaLoader' => '1.16',
7481             'Errno' => '1.16',
7482             'ExtUtils::ParseXS' => '3.18',
7483             'ExtUtils::ParseXS::Constants'=> '3.18',
7484             'ExtUtils::ParseXS::CountLines'=> '3.18',
7485             'ExtUtils::ParseXS::Utilities'=> '3.18',
7486             'File::Copy' => '2.24',
7487             'File::Find' => '1.22',
7488             'IPC::Open3' => '1.13',
7489             'Locale::Codes' => '3.23',
7490             'Locale::Codes::Constants'=> '3.23',
7491             'Locale::Codes::Country'=> '3.23',
7492             'Locale::Codes::Country_Codes'=> '3.23',
7493             'Locale::Codes::Country_Retired'=> '3.23',
7494             'Locale::Codes::Currency'=> '3.23',
7495             'Locale::Codes::Currency_Codes'=> '3.23',
7496             'Locale::Codes::Currency_Retired'=> '3.23',
7497             'Locale::Codes::LangExt'=> '3.23',
7498             'Locale::Codes::LangExt_Codes'=> '3.23',
7499             'Locale::Codes::LangExt_Retired'=> '3.23',
7500             'Locale::Codes::LangFam'=> '3.23',
7501             'Locale::Codes::LangFam_Codes'=> '3.23',
7502             'Locale::Codes::LangFam_Retired'=> '3.23',
7503             'Locale::Codes::LangVar'=> '3.23',
7504             'Locale::Codes::LangVar_Codes'=> '3.23',
7505             'Locale::Codes::LangVar_Retired'=> '3.23',
7506             'Locale::Codes::Language'=> '3.23',
7507             'Locale::Codes::Language_Codes'=> '3.23',
7508             'Locale::Codes::Language_Retired'=> '3.23',
7509             'Locale::Codes::Script' => '3.23',
7510             'Locale::Codes::Script_Codes'=> '3.23',
7511             'Locale::Codes::Script_Retired'=> '3.23',
7512             'Locale::Country' => '3.23',
7513             'Locale::Currency' => '3.23',
7514             'Locale::Language' => '3.23',
7515             'Locale::Script' => '3.23',
7516             'Math::BigFloat::Trace' => '0.30',
7517             'Math::BigInt::Trace' => '0.30',
7518             'Module::CoreList' => '2.73',
7519             'Module::CoreList::TieHashDelta'=> '2.73',
7520             'Opcode' => '1.24',
7521             'Socket' => '2.006',
7522             'Storable' => '2.39',
7523             'Sys::Syslog' => '0.32',
7524             'Unicode::UCD' => '0.46',
7525             'XS::APItest' => '0.43',
7526             'bignum' => '0.30',
7527             'bigrat' => '0.30',
7528             'constant' => '1.24',
7529             'feature' => '1.30',
7530             'threads::shared' => '1.41',
7531             'version' => '0.9901',
7532             'warnings' => '1.14',
7533             },
7534             removed => {
7535             }
7536             },
7537             5.017005 => {
7538             delta_from => 5.017004,
7539             changed => {
7540             'AutoLoader' => '5.73',
7541             'B' => '1.39',
7542             'B::Deparse' => '1.18',
7543             'CPANPLUS' => '0.9133',
7544             'CPANPLUS::Internals' => '0.9133',
7545             'CPANPLUS::Shell::Default'=> '0.9133',
7546             'Carp' => '1.27',
7547             'Carp::Heavy' => '1.27',
7548             'Data::Dumper' => '2.136',
7549             'Digest::SHA' => '5.72',
7550             'ExtUtils::CBuilder' => '0.280209',
7551             'ExtUtils::CBuilder::Base'=> '0.280209',
7552             'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7553             'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7554             'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7555             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7556             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7557             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7558             'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7559             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7560             'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7561             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7562             'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7563             'File::Copy' => '2.25',
7564             'File::Glob' => '1.18',
7565             'HTTP::Tiny' => '0.024',
7566             'Module::CoreList' => '2.75',
7567             'Module::CoreList::TieHashDelta'=> '2.75',
7568             'PerlIO::encoding' => '0.16',
7569             'Unicode::Collate' => '0.90',
7570             'Unicode::Collate::Locale'=> '0.90',
7571             'Unicode::Normalize' => '1.15',
7572             'Win32CORE' => '0.04',
7573             'XS::APItest' => '0.44',
7574             'attributes' => '0.21',
7575             'bigint' => '0.31',
7576             'bignum' => '0.31',
7577             'bigrat' => '0.31',
7578             'feature' => '1.31',
7579             'threads::shared' => '1.42',
7580             'warnings' => '1.15',
7581             },
7582             removed => {
7583             }
7584             },
7585             5.017006 => {
7586             delta_from => 5.017005,
7587             changed => {
7588             'B' => '1.40',
7589             'B::Concise' => '0.94',
7590             'B::Deparse' => '1.19',
7591             'B::Xref' => '1.05',
7592             'CGI' => '3.63',
7593             'CGI::Util' => '3.62',
7594             'CPAN' => '1.99_51',
7595             'CPANPLUS::Dist::Build' => '0.64',
7596             'CPANPLUS::Dist::Build::Constants'=> '0.64',
7597             'Carp' => '1.28',
7598             'Carp::Heavy' => '1.28',
7599             'Compress::Raw::Bzip2' => '2.058',
7600             'Compress::Raw::Zlib' => '2.058',
7601             'Compress::Zlib' => '2.058',
7602             'Data::Dumper' => '2.137',
7603             'Digest::SHA' => '5.73',
7604             'DynaLoader' => '1.17',
7605             'Env' => '1.04',
7606             'Errno' => '1.17',
7607             'ExtUtils::Manifest' => '1.62',
7608             'ExtUtils::Typemaps' => '3.18',
7609             'ExtUtils::Typemaps::Cmd'=> '3.18',
7610             'ExtUtils::Typemaps::InputMap'=> '3.18',
7611             'ExtUtils::Typemaps::OutputMap'=> '3.18',
7612             'ExtUtils::Typemaps::Type'=> '3.18',
7613             'Fatal' => '2.13',
7614             'File::Find' => '1.23',
7615             'Hash::Util' => '0.13',
7616             'IO::Compress::Adapter::Bzip2'=> '2.058',
7617             'IO::Compress::Adapter::Deflate'=> '2.058',
7618             'IO::Compress::Adapter::Identity'=> '2.058',
7619             'IO::Compress::Base' => '2.058',
7620             'IO::Compress::Base::Common'=> '2.058',
7621             'IO::Compress::Bzip2' => '2.058',
7622             'IO::Compress::Deflate' => '2.058',
7623             'IO::Compress::Gzip' => '2.058',
7624             'IO::Compress::Gzip::Constants'=> '2.058',
7625             'IO::Compress::RawDeflate'=> '2.058',
7626             'IO::Compress::Zip' => '2.058',
7627             'IO::Compress::Zip::Constants'=> '2.058',
7628             'IO::Compress::Zlib::Constants'=> '2.058',
7629             'IO::Compress::Zlib::Extra'=> '2.058',
7630             'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7631             'IO::Uncompress::Adapter::Identity'=> '2.058',
7632             'IO::Uncompress::Adapter::Inflate'=> '2.058',
7633             'IO::Uncompress::AnyInflate'=> '2.058',
7634             'IO::Uncompress::AnyUncompress'=> '2.058',
7635             'IO::Uncompress::Base' => '2.058',
7636             'IO::Uncompress::Bunzip2'=> '2.058',
7637             'IO::Uncompress::Gunzip'=> '2.058',
7638             'IO::Uncompress::Inflate'=> '2.058',
7639             'IO::Uncompress::RawInflate'=> '2.058',
7640             'IO::Uncompress::Unzip' => '2.058',
7641             'Module::CoreList' => '2.78',
7642             'Module::CoreList::TieHashDelta'=> '2.77',
7643             'Module::Pluggable' => '4.5',
7644             'Module::Pluggable::Object'=> '4.5',
7645             'Opcode' => '1.25',
7646             'Sys::Hostname' => '1.17',
7647             'Term::UI' => '0.32',
7648             'Thread::Queue' => '3.01',
7649             'Tie::Hash::NamedCapture'=> '0.09',
7650             'Unicode::Collate' => '0.93',
7651             'Unicode::Collate::CJK::Korean'=> '0.93',
7652             'Unicode::Collate::Locale'=> '0.93',
7653             'Unicode::Normalize' => '1.16',
7654             'Unicode::UCD' => '0.47',
7655             'XS::APItest' => '0.46',
7656             '_charnames' => '1.33',
7657             'autodie' => '2.13',
7658             'autodie::exception' => '2.13',
7659             'autodie::exception::system'=> '2.13',
7660             'autodie::hints' => '2.13',
7661             'charnames' => '1.33',
7662             're' => '0.23',
7663             },
7664             removed => {
7665             }
7666             },
7667             5.017007 => {
7668             delta_from => 5.017006,
7669             changed => {
7670             'B' => '1.41',
7671             'CPANPLUS::Dist::Build' => '0.68',
7672             'CPANPLUS::Dist::Build::Constants'=> '0.68',
7673             'Compress::Raw::Bzip2' => '2.059',
7674             'Compress::Raw::Zlib' => '2.059',
7675             'Compress::Zlib' => '2.059',
7676             'Cwd' => '3.39_03',
7677             'Data::Dumper' => '2.139',
7678             'Devel::Peek' => '1.11',
7679             'Digest::SHA' => '5.80',
7680             'DynaLoader' => '1.18',
7681             'English' => '1.06',
7682             'Errno' => '1.18',
7683             'ExtUtils::Command::MM' => '6.64',
7684             'ExtUtils::Liblist' => '6.64',
7685             'ExtUtils::Liblist::Kid'=> '6.64',
7686             'ExtUtils::MM' => '6.64',
7687             'ExtUtils::MM_AIX' => '6.64',
7688             'ExtUtils::MM_Any' => '6.64',
7689             'ExtUtils::MM_BeOS' => '6.64',
7690             'ExtUtils::MM_Cygwin' => '6.64',
7691             'ExtUtils::MM_DOS' => '6.64',
7692             'ExtUtils::MM_Darwin' => '6.64',
7693             'ExtUtils::MM_MacOS' => '6.64',
7694             'ExtUtils::MM_NW5' => '6.64',
7695             'ExtUtils::MM_OS2' => '6.64',
7696             'ExtUtils::MM_QNX' => '6.64',
7697             'ExtUtils::MM_UWIN' => '6.64',
7698             'ExtUtils::MM_Unix' => '6.64',
7699             'ExtUtils::MM_VMS' => '6.64',
7700             'ExtUtils::MM_VOS' => '6.64',
7701             'ExtUtils::MM_Win32' => '6.64',
7702             'ExtUtils::MM_Win95' => '6.64',
7703             'ExtUtils::MY' => '6.64',
7704             'ExtUtils::MakeMaker' => '6.64',
7705             'ExtUtils::MakeMaker::Config'=> '6.64',
7706             'ExtUtils::Mkbootstrap' => '6.64',
7707             'ExtUtils::Mksymlists' => '6.64',
7708             'ExtUtils::testlib' => '6.64',
7709             'File::DosGlob' => '1.09',
7710             'File::Glob' => '1.19',
7711             'GDBM_File' => '1.15',
7712             'IO::Compress::Adapter::Bzip2'=> '2.059',
7713             'IO::Compress::Adapter::Deflate'=> '2.059',
7714             'IO::Compress::Adapter::Identity'=> '2.059',
7715             'IO::Compress::Base' => '2.059',
7716             'IO::Compress::Base::Common'=> '2.059',
7717             'IO::Compress::Bzip2' => '2.059',
7718             'IO::Compress::Deflate' => '2.059',
7719             'IO::Compress::Gzip' => '2.059',
7720             'IO::Compress::Gzip::Constants'=> '2.059',
7721             'IO::Compress::RawDeflate'=> '2.059',
7722             'IO::Compress::Zip' => '2.059',
7723             'IO::Compress::Zip::Constants'=> '2.059',
7724             'IO::Compress::Zlib::Constants'=> '2.059',
7725             'IO::Compress::Zlib::Extra'=> '2.059',
7726             'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7727             'IO::Uncompress::Adapter::Identity'=> '2.059',
7728             'IO::Uncompress::Adapter::Inflate'=> '2.059',
7729             'IO::Uncompress::AnyInflate'=> '2.059',
7730             'IO::Uncompress::AnyUncompress'=> '2.059',
7731             'IO::Uncompress::Base' => '2.059',
7732             'IO::Uncompress::Bunzip2'=> '2.059',
7733             'IO::Uncompress::Gunzip'=> '2.059',
7734             'IO::Uncompress::Inflate'=> '2.059',
7735             'IO::Uncompress::RawInflate'=> '2.059',
7736             'IO::Uncompress::Unzip' => '2.059',
7737             'List::Util' => '1.26',
7738             'List::Util::XS' => '1.26',
7739             'Locale::Codes' => '3.24',
7740             'Locale::Codes::Constants'=> '3.24',
7741             'Locale::Codes::Country'=> '3.24',
7742             'Locale::Codes::Country_Codes'=> '3.24',
7743             'Locale::Codes::Country_Retired'=> '3.24',
7744             'Locale::Codes::Currency'=> '3.24',
7745             'Locale::Codes::Currency_Codes'=> '3.24',
7746             'Locale::Codes::Currency_Retired'=> '3.24',
7747             'Locale::Codes::LangExt'=> '3.24',
7748             'Locale::Codes::LangExt_Codes'=> '3.24',
7749             'Locale::Codes::LangExt_Retired'=> '3.24',
7750             'Locale::Codes::LangFam'=> '3.24',
7751             'Locale::Codes::LangFam_Codes'=> '3.24',
7752             'Locale::Codes::LangFam_Retired'=> '3.24',
7753             'Locale::Codes::LangVar'=> '3.24',
7754             'Locale::Codes::LangVar_Codes'=> '3.24',
7755             'Locale::Codes::LangVar_Retired'=> '3.24',
7756             'Locale::Codes::Language'=> '3.24',
7757             'Locale::Codes::Language_Codes'=> '3.24',
7758             'Locale::Codes::Language_Retired'=> '3.24',
7759             'Locale::Codes::Script' => '3.24',
7760             'Locale::Codes::Script_Codes'=> '3.24',
7761             'Locale::Codes::Script_Retired'=> '3.24',
7762             'Locale::Country' => '3.24',
7763             'Locale::Currency' => '3.24',
7764             'Locale::Language' => '3.24',
7765             'Locale::Maketext' => '1.23',
7766             'Locale::Script' => '3.24',
7767             'Module::CoreList' => '2.79',
7768             'Module::CoreList::TieHashDelta'=> '2.79',
7769             'POSIX' => '1.32',
7770             'Scalar::Util' => '1.26',
7771             'Socket' => '2.006_001',
7772             'Storable' => '2.40',
7773             'Term::ReadLine' => '1.11',
7774             'Unicode::Collate' => '0.96',
7775             'Unicode::Collate::CJK::Stroke'=> '0.94',
7776             'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7777             'Unicode::Collate::Locale'=> '0.96',
7778             'XS::APItest' => '0.48',
7779             'XS::Typemap' => '0.09',
7780             '_charnames' => '1.34',
7781             'charnames' => '1.34',
7782             'feature' => '1.32',
7783             'mro' => '1.10',
7784             'sigtrap' => '1.07',
7785             'sort' => '2.02',
7786             },
7787             removed => {
7788             }
7789             },
7790             5.017008 => {
7791             delta_from => 5.017007,
7792             changed => {
7793             'Archive::Extract' => '0.62',
7794             'B' => '1.42',
7795             'B::Concise' => '0.95',
7796             'Compress::Raw::Bzip2' => '2.060',
7797             'Compress::Raw::Zlib' => '2.060',
7798             'Compress::Zlib' => '2.060',
7799             'Cwd' => '3.40',
7800             'Data::Dumper' => '2.141',
7801             'Digest::SHA' => '5.81',
7802             'ExtUtils::Install' => '1.59',
7803             'File::Fetch' => '0.38',
7804             'File::Path' => '2.09',
7805             'File::Spec' => '3.40',
7806             'File::Spec::Cygwin' => '3.40',
7807             'File::Spec::Epoc' => '3.40',
7808             'File::Spec::Functions' => '3.40',
7809             'File::Spec::Mac' => '3.40',
7810             'File::Spec::OS2' => '3.40',
7811             'File::Spec::Unix' => '3.40',
7812             'File::Spec::VMS' => '3.40',
7813             'File::Spec::Win32' => '3.40',
7814             'HTTP::Tiny' => '0.025',
7815             'Hash::Util' => '0.14',
7816             'I18N::LangTags' => '0.39',
7817             'I18N::LangTags::List' => '0.39',
7818             'I18N::Langinfo' => '0.09',
7819             'IO' => '1.26',
7820             'IO::Compress::Adapter::Bzip2'=> '2.060',
7821             'IO::Compress::Adapter::Deflate'=> '2.060',
7822             'IO::Compress::Adapter::Identity'=> '2.060',
7823             'IO::Compress::Base' => '2.060',
7824             'IO::Compress::Base::Common'=> '2.060',
7825             'IO::Compress::Bzip2' => '2.060',
7826             'IO::Compress::Deflate' => '2.060',
7827             'IO::Compress::Gzip' => '2.060',
7828             'IO::Compress::Gzip::Constants'=> '2.060',
7829             'IO::Compress::RawDeflate'=> '2.060',
7830             'IO::Compress::Zip' => '2.060',
7831             'IO::Compress::Zip::Constants'=> '2.060',
7832             'IO::Compress::Zlib::Constants'=> '2.060',
7833             'IO::Compress::Zlib::Extra'=> '2.060',
7834             'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7835             'IO::Uncompress::Adapter::Identity'=> '2.060',
7836             'IO::Uncompress::Adapter::Inflate'=> '2.060',
7837             'IO::Uncompress::AnyInflate'=> '2.060',
7838             'IO::Uncompress::AnyUncompress'=> '2.060',
7839             'IO::Uncompress::Base' => '2.060',
7840             'IO::Uncompress::Bunzip2'=> '2.060',
7841             'IO::Uncompress::Gunzip'=> '2.060',
7842             'IO::Uncompress::Inflate'=> '2.060',
7843             'IO::Uncompress::RawInflate'=> '2.060',
7844             'IO::Uncompress::Unzip' => '2.060',
7845             'List::Util' => '1.27',
7846             'List::Util::XS' => '1.27',
7847             'Module::CoreList' => '2.80',
7848             'Module::CoreList::TieHashDelta'=> '2.80',
7849             'Pod::Html' => '1.17',
7850             'Pod::LaTeX' => '0.61',
7851             'Pod::Man' => '2.27',
7852             'Pod::Text' => '3.17',
7853             'Pod::Text::Color' => '2.07',
7854             'Pod::Text::Overstrike' => '2.05',
7855             'Pod::Text::Termcap' => '2.07',
7856             'Safe' => '2.34',
7857             'Scalar::Util' => '1.27',
7858             'Socket' => '2.009',
7859             'Term::ANSIColor' => '4.02',
7860             'Test' => '1.26',
7861             'Unicode::Collate' => '0.97',
7862             'XS::APItest' => '0.51',
7863             'XS::Typemap' => '0.10',
7864             '_charnames' => '1.35',
7865             'charnames' => '1.35',
7866             'constant' => '1.25',
7867             'diagnostics' => '1.31',
7868             'threads::shared' => '1.43',
7869             'warnings' => '1.16',
7870             },
7871             removed => {
7872             }
7873             },
7874             5.017009 => {
7875             delta_from => 5.017008,
7876             changed => {
7877             'App::Cpan' => '1.60_02',
7878             'App::Prove' => '3.26',
7879             'App::Prove::State' => '3.26',
7880             'App::Prove::State::Result'=> '3.26',
7881             'App::Prove::State::Result::Test'=> '3.26',
7882             'Archive::Extract' => '0.68',
7883             'Attribute::Handlers' => '0.94',
7884             'B::Lint' => '1.17',
7885             'B::Lint::Debug' => '1.17',
7886             'Benchmark' => '1.14',
7887             'CPAN' => '2.00',
7888             'CPAN::Distribution' => '2.00',
7889             'CPAN::FirstTime' => '5.5304',
7890             'CPAN::Nox' => '5.5001',
7891             'CPANPLUS' => '0.9135',
7892             'CPANPLUS::Backend' => '0.9135',
7893             'CPANPLUS::Backend::RV' => '0.9135',
7894             'CPANPLUS::Config' => '0.9135',
7895             'CPANPLUS::Config::HomeEnv'=> '0.9135',
7896             'CPANPLUS::Configure' => '0.9135',
7897             'CPANPLUS::Configure::Setup'=> '0.9135',
7898             'CPANPLUS::Dist' => '0.9135',
7899             'CPANPLUS::Dist::Autobundle'=> '0.9135',
7900             'CPANPLUS::Dist::Base' => '0.9135',
7901             'CPANPLUS::Dist::Build' => '0.70',
7902             'CPANPLUS::Dist::Build::Constants'=> '0.70',
7903             'CPANPLUS::Dist::MM' => '0.9135',
7904             'CPANPLUS::Dist::Sample'=> '0.9135',
7905             'CPANPLUS::Error' => '0.9135',
7906             'CPANPLUS::Internals' => '0.9135',
7907             'CPANPLUS::Internals::Constants'=> '0.9135',
7908             'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7909             'CPANPLUS::Internals::Extract'=> '0.9135',
7910             'CPANPLUS::Internals::Fetch'=> '0.9135',
7911             'CPANPLUS::Internals::Report'=> '0.9135',
7912             'CPANPLUS::Internals::Search'=> '0.9135',
7913             'CPANPLUS::Internals::Source'=> '0.9135',
7914             'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7915             'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7916             'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7917             'CPANPLUS::Internals::Utils'=> '0.9135',
7918             'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7919             'CPANPLUS::Module' => '0.9135',
7920             'CPANPLUS::Module::Author'=> '0.9135',
7921             'CPANPLUS::Module::Author::Fake'=> '0.9135',
7922             'CPANPLUS::Module::Checksums'=> '0.9135',
7923             'CPANPLUS::Module::Fake'=> '0.9135',
7924             'CPANPLUS::Module::Signature'=> '0.9135',
7925             'CPANPLUS::Selfupdate' => '0.9135',
7926             'CPANPLUS::Shell' => '0.9135',
7927             'CPANPLUS::Shell::Classic'=> '0.9135',
7928             'CPANPLUS::Shell::Default'=> '0.9135',
7929             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7930             'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7931             'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
7932             'Config' => '5.017009',
7933             'Config::Perl::V' => '0.17',
7934             'DBM_Filter' => '0.05',
7935             'Data::Dumper' => '2.142',
7936             'Digest::SHA' => '5.82',
7937             'Encode' => '2.48',
7938             'ExtUtils::Installed' => '1.999003',
7939             'ExtUtils::Manifest' => '1.63',
7940             'ExtUtils::ParseXS::Utilities'=> '3.19',
7941             'ExtUtils::Typemaps' => '3.19',
7942             'File::CheckTree' => '4.42',
7943             'File::DosGlob' => '1.10',
7944             'File::Temp' => '0.22_90',
7945             'Filter::Simple' => '0.89',
7946             'IO' => '1.27',
7947             'Log::Message' => '0.06',
7948             'Log::Message::Config' => '0.06',
7949             'Log::Message::Handlers'=> '0.06',
7950             'Log::Message::Item' => '0.06',
7951             'Log::Message::Simple' => '0.10',
7952             'Math::BigInt' => '1.999',
7953             'Module::CoreList' => '2.82',
7954             'Module::CoreList::TieHashDelta'=> '2.82',
7955             'Module::Load' => '0.24',
7956             'Module::Pluggable' => '4.6',
7957             'Module::Pluggable::Object'=> '4.6',
7958             'OS2::DLL' => '1.05',
7959             'OS2::ExtAttr' => '0.03',
7960             'OS2::Process' => '1.08',
7961             'Object::Accessor' => '0.46',
7962             'PerlIO::scalar' => '0.16',
7963             'Pod::Checker' => '1.60',
7964             'Pod::Find' => '1.60',
7965             'Pod::Html' => '1.18',
7966             'Pod::InputObjects' => '1.60',
7967             'Pod::ParseUtils' => '1.60',
7968             'Pod::Parser' => '1.60',
7969             'Pod::Perldoc' => '3.19',
7970             'Pod::Perldoc::BaseTo' => '3.19',
7971             'Pod::Perldoc::GetOptsOO'=> '3.19',
7972             'Pod::Perldoc::ToANSI' => '3.19',
7973             'Pod::Perldoc::ToChecker'=> '3.19',
7974             'Pod::Perldoc::ToMan' => '3.19',
7975             'Pod::Perldoc::ToNroff' => '3.19',
7976             'Pod::Perldoc::ToPod' => '3.19',
7977             'Pod::Perldoc::ToRtf' => '3.19',
7978             'Pod::Perldoc::ToTerm' => '3.19',
7979             'Pod::Perldoc::ToText' => '3.19',
7980             'Pod::Perldoc::ToTk' => '3.19',
7981             'Pod::Perldoc::ToXml' => '3.19',
7982             'Pod::PlainText' => '2.06',
7983             'Pod::Select' => '1.60',
7984             'Pod::Usage' => '1.61',
7985             'SelfLoader' => '1.21',
7986             'TAP::Base' => '3.26',
7987             'TAP::Formatter::Base' => '3.26',
7988             'TAP::Formatter::Color' => '3.26',
7989             'TAP::Formatter::Console'=> '3.26',
7990             'TAP::Formatter::Console::ParallelSession'=> '3.26',
7991             'TAP::Formatter::Console::Session'=> '3.26',
7992             'TAP::Formatter::File' => '3.26',
7993             'TAP::Formatter::File::Session'=> '3.26',
7994             'TAP::Formatter::Session'=> '3.26',
7995             'TAP::Harness' => '3.26',
7996             'TAP::Object' => '3.26',
7997             'TAP::Parser' => '3.26',
7998             'TAP::Parser::Aggregator'=> '3.26',
7999             'TAP::Parser::Grammar' => '3.26',
8000             'TAP::Parser::Iterator' => '3.26',
8001             'TAP::Parser::Iterator::Array'=> '3.26',
8002             'TAP::Parser::Iterator::Process'=> '3.26',
8003             'TAP::Parser::Iterator::Stream'=> '3.26',
8004             'TAP::Parser::IteratorFactory'=> '3.26',
8005             'TAP::Parser::Multiplexer'=> '3.26',
8006             'TAP::Parser::Result' => '3.26',
8007             'TAP::Parser::Result::Bailout'=> '3.26',
8008             'TAP::Parser::Result::Comment'=> '3.26',
8009             'TAP::Parser::Result::Plan'=> '3.26',
8010             'TAP::Parser::Result::Pragma'=> '3.26',
8011             'TAP::Parser::Result::Test'=> '3.26',
8012             'TAP::Parser::Result::Unknown'=> '3.26',
8013             'TAP::Parser::Result::Version'=> '3.26',
8014             'TAP::Parser::Result::YAML'=> '3.26',
8015             'TAP::Parser::ResultFactory'=> '3.26',
8016             'TAP::Parser::Scheduler'=> '3.26',
8017             'TAP::Parser::Scheduler::Job'=> '3.26',
8018             'TAP::Parser::Scheduler::Spinner'=> '3.26',
8019             'TAP::Parser::Source' => '3.26',
8020             'TAP::Parser::SourceHandler'=> '3.26',
8021             'TAP::Parser::SourceHandler::Executable'=> '3.26',
8022             'TAP::Parser::SourceHandler::File'=> '3.26',
8023             'TAP::Parser::SourceHandler::Handle'=> '3.26',
8024             'TAP::Parser::SourceHandler::Perl'=> '3.26',
8025             'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
8026             'TAP::Parser::Utils' => '3.26',
8027             'TAP::Parser::YAMLish::Reader'=> '3.26',
8028             'TAP::Parser::YAMLish::Writer'=> '3.26',
8029             'Term::UI' => '0.34',
8030             'Test::Harness' => '3.26',
8031             'Text::Soundex' => '3.04',
8032             'Thread::Queue' => '3.02',
8033             'Unicode::UCD' => '0.50',
8034             'Win32' => '0.46',
8035             'Win32API::File' => '0.1201',
8036             '_charnames' => '1.36',
8037             'arybase' => '0.06',
8038             'bigint' => '0.32',
8039             'bignum' => '0.32',
8040             'charnames' => '1.36',
8041             'filetest' => '1.03',
8042             'locale' => '1.02',
8043             'overload' => '1.21',
8044             'warnings' => '1.17',
8045             },
8046             removed => {
8047             }
8048             },
8049             5.017010 => {
8050             delta_from => 5.017009,
8051             changed => {
8052             'Benchmark' => '1.15',
8053             'Config' => '5.017009',
8054             'Data::Dumper' => '2.145',
8055             'Digest::SHA' => '5.84',
8056             'Encode' => '2.49',
8057             'ExtUtils::Command::MM' => '6.65_01',
8058             'ExtUtils::Liblist' => '6.65_01',
8059             'ExtUtils::Liblist::Kid'=> '6.65_01',
8060             'ExtUtils::MM' => '6.65_01',
8061             'ExtUtils::MM_AIX' => '6.65_01',
8062             'ExtUtils::MM_Any' => '6.65_01',
8063             'ExtUtils::MM_BeOS' => '6.65_01',
8064             'ExtUtils::MM_Cygwin' => '6.65_01',
8065             'ExtUtils::MM_DOS' => '6.65_01',
8066             'ExtUtils::MM_Darwin' => '6.65_01',
8067             'ExtUtils::MM_MacOS' => '6.65_01',
8068             'ExtUtils::MM_NW5' => '6.65_01',
8069             'ExtUtils::MM_OS2' => '6.65_01',
8070             'ExtUtils::MM_QNX' => '6.65_01',
8071             'ExtUtils::MM_UWIN' => '6.65_01',
8072             'ExtUtils::MM_Unix' => '6.65_01',
8073             'ExtUtils::MM_VMS' => '6.65_01',
8074             'ExtUtils::MM_VOS' => '6.65_01',
8075             'ExtUtils::MM_Win32' => '6.65_01',
8076             'ExtUtils::MM_Win95' => '6.65_01',
8077             'ExtUtils::MY' => '6.65_01',
8078             'ExtUtils::MakeMaker' => '6.65_01',
8079             'ExtUtils::MakeMaker::Config'=> '6.65_01',
8080             'ExtUtils::Mkbootstrap' => '6.65_01',
8081             'ExtUtils::Mksymlists' => '6.65_01',
8082             'ExtUtils::testlib' => '6.65_01',
8083             'File::Copy' => '2.26',
8084             'File::Temp' => '0.23',
8085             'Getopt::Long' => '2.39',
8086             'Hash::Util' => '0.15',
8087             'I18N::Langinfo' => '0.10',
8088             'IPC::Cmd' => '0.80',
8089             'JSON::PP' => '2.27202',
8090             'Locale::Codes' => '3.25',
8091             'Locale::Codes::Constants'=> '3.25',
8092             'Locale::Codes::Country'=> '3.25',
8093             'Locale::Codes::Country_Codes'=> '3.25',
8094             'Locale::Codes::Country_Retired'=> '3.25',
8095             'Locale::Codes::Currency'=> '3.25',
8096             'Locale::Codes::Currency_Codes'=> '3.25',
8097             'Locale::Codes::Currency_Retired'=> '3.25',
8098             'Locale::Codes::LangExt'=> '3.25',
8099             'Locale::Codes::LangExt_Codes'=> '3.25',
8100             'Locale::Codes::LangExt_Retired'=> '3.25',
8101             'Locale::Codes::LangFam'=> '3.25',
8102             'Locale::Codes::LangFam_Codes'=> '3.25',
8103             'Locale::Codes::LangFam_Retired'=> '3.25',
8104             'Locale::Codes::LangVar'=> '3.25',
8105             'Locale::Codes::LangVar_Codes'=> '3.25',
8106             'Locale::Codes::LangVar_Retired'=> '3.25',
8107             'Locale::Codes::Language'=> '3.25',
8108             'Locale::Codes::Language_Codes'=> '3.25',
8109             'Locale::Codes::Language_Retired'=> '3.25',
8110             'Locale::Codes::Script' => '3.25',
8111             'Locale::Codes::Script_Codes'=> '3.25',
8112             'Locale::Codes::Script_Retired'=> '3.25',
8113             'Locale::Country' => '3.25',
8114             'Locale::Currency' => '3.25',
8115             'Locale::Language' => '3.25',
8116             'Locale::Script' => '3.25',
8117             'Math::BigFloat' => '1.998',
8118             'Math::BigFloat::Trace' => '0.32',
8119             'Math::BigInt' => '1.9991',
8120             'Math::BigInt::CalcEmu' => '1.998',
8121             'Math::BigInt::Trace' => '0.32',
8122             'Math::BigRat' => '0.2604',
8123             'Module::CoreList' => '2.84',
8124             'Module::CoreList::TieHashDelta'=> '2.84',
8125             'Module::Pluggable' => '4.7',
8126             'Net::Ping' => '2.41',
8127             'Perl::OSType' => '1.003',
8128             'Pod::Simple' => '3.26',
8129             'Pod::Simple::BlackBox' => '3.26',
8130             'Pod::Simple::Checker' => '3.26',
8131             'Pod::Simple::Debug' => '3.26',
8132             'Pod::Simple::DumpAsText'=> '3.26',
8133             'Pod::Simple::DumpAsXML'=> '3.26',
8134             'Pod::Simple::HTML' => '3.26',
8135             'Pod::Simple::HTMLBatch'=> '3.26',
8136             'Pod::Simple::LinkSection'=> '3.26',
8137             'Pod::Simple::Methody' => '3.26',
8138             'Pod::Simple::Progress' => '3.26',
8139             'Pod::Simple::PullParser'=> '3.26',
8140             'Pod::Simple::PullParserEndToken'=> '3.26',
8141             'Pod::Simple::PullParserStartToken'=> '3.26',
8142             'Pod::Simple::PullParserTextToken'=> '3.26',
8143             'Pod::Simple::PullParserToken'=> '3.26',
8144             'Pod::Simple::RTF' => '3.26',
8145             'Pod::Simple::Search' => '3.26',
8146             'Pod::Simple::SimpleTree'=> '3.26',
8147             'Pod::Simple::Text' => '3.26',
8148             'Pod::Simple::TextContent'=> '3.26',
8149             'Pod::Simple::TiedOutFH'=> '3.26',
8150             'Pod::Simple::Transcode'=> '3.26',
8151             'Pod::Simple::TranscodeDumb'=> '3.26',
8152             'Pod::Simple::TranscodeSmart'=> '3.26',
8153             'Pod::Simple::XHTML' => '3.26',
8154             'Pod::Simple::XMLOutStream'=> '3.26',
8155             'Safe' => '2.35',
8156             'Term::ReadLine' => '1.12',
8157             'Text::ParseWords' => '3.28',
8158             'Tie::File' => '0.99',
8159             'Unicode::UCD' => '0.51',
8160             'Win32' => '0.47',
8161             'bigint' => '0.33',
8162             'bignum' => '0.33',
8163             'bigrat' => '0.33',
8164             'constant' => '1.27',
8165             'perlfaq' => '5.0150042',
8166             'version' => '0.9902',
8167             },
8168             removed => {
8169             }
8170             },
8171             5.017011 => {
8172             delta_from => 5.017010,
8173             changed => {
8174             'App::Cpan' => '1.61',
8175             'B::Deparse' => '1.20',
8176             'Config' => '5.017009',
8177             'Exporter' => '5.68',
8178             'Exporter::Heavy' => '5.68',
8179             'ExtUtils::CBuilder' => '0.280210',
8180             'ExtUtils::Command::MM' => '6.66',
8181             'ExtUtils::Liblist' => '6.66',
8182             'ExtUtils::Liblist::Kid'=> '6.66',
8183             'ExtUtils::MM' => '6.66',
8184             'ExtUtils::MM_AIX' => '6.66',
8185             'ExtUtils::MM_Any' => '6.66',
8186             'ExtUtils::MM_BeOS' => '6.66',
8187             'ExtUtils::MM_Cygwin' => '6.66',
8188             'ExtUtils::MM_DOS' => '6.66',
8189             'ExtUtils::MM_Darwin' => '6.66',
8190             'ExtUtils::MM_MacOS' => '6.66',
8191             'ExtUtils::MM_NW5' => '6.66',
8192             'ExtUtils::MM_OS2' => '6.66',
8193             'ExtUtils::MM_QNX' => '6.66',
8194             'ExtUtils::MM_UWIN' => '6.66',
8195             'ExtUtils::MM_Unix' => '6.66',
8196             'ExtUtils::MM_VMS' => '6.66',
8197             'ExtUtils::MM_VOS' => '6.66',
8198             'ExtUtils::MM_Win32' => '6.66',
8199             'ExtUtils::MM_Win95' => '6.66',
8200             'ExtUtils::MY' => '6.66',
8201             'ExtUtils::MakeMaker' => '6.66',
8202             'ExtUtils::MakeMaker::Config'=> '6.66',
8203             'ExtUtils::Mkbootstrap' => '6.66',
8204             'ExtUtils::Mksymlists' => '6.66',
8205             'ExtUtils::testlib' => '6.66',
8206             'File::Glob' => '1.20',
8207             'IO' => '1.28',
8208             'Module::CoreList' => '2.87',
8209             'Module::CoreList::TieHashDelta'=> '2.87',
8210             'Storable' => '2.41',
8211             'bigint' => '0.34',
8212             'mro' => '1.11',
8213             'overload' => '1.22',
8214             'warnings' => '1.18',
8215             },
8216             removed => {
8217             }
8218             },
8219             5.018000 => {
8220             delta_from => 5.017011,
8221             changed => {
8222             'Carp' => '1.29',
8223             'Carp::Heavy' => '1.29',
8224             'Config' => '5.018000',
8225             'Hash::Util' => '0.16',
8226             'IO::Handle' => '1.34',
8227             'IO::Socket' => '1.36',
8228             'Module::CoreList' => '2.89',
8229             'Module::CoreList::TieHashDelta'=> '2.89',
8230             'Pod::Simple' => '3.28',
8231             'Pod::Simple::BlackBox' => '3.28',
8232             'Pod::Simple::Checker' => '3.28',
8233             'Pod::Simple::Debug' => '3.28',
8234             'Pod::Simple::DumpAsText'=> '3.28',
8235             'Pod::Simple::DumpAsXML'=> '3.28',
8236             'Pod::Simple::HTML' => '3.28',
8237             'Pod::Simple::HTMLBatch'=> '3.28',
8238             'Pod::Simple::LinkSection'=> '3.28',
8239             'Pod::Simple::Methody' => '3.28',
8240             'Pod::Simple::Progress' => '3.28',
8241             'Pod::Simple::PullParser'=> '3.28',
8242             'Pod::Simple::PullParserEndToken'=> '3.28',
8243             'Pod::Simple::PullParserStartToken'=> '3.28',
8244             'Pod::Simple::PullParserTextToken'=> '3.28',
8245             'Pod::Simple::PullParserToken'=> '3.28',
8246             'Pod::Simple::RTF' => '3.28',
8247             'Pod::Simple::Search' => '3.28',
8248             'Pod::Simple::SimpleTree'=> '3.28',
8249             'Pod::Simple::Text' => '3.28',
8250             'Pod::Simple::TextContent'=> '3.28',
8251             'Pod::Simple::TiedOutFH'=> '3.28',
8252             'Pod::Simple::Transcode'=> '3.28',
8253             'Pod::Simple::TranscodeDumb'=> '3.28',
8254             'Pod::Simple::TranscodeSmart'=> '3.28',
8255             'Pod::Simple::XHTML' => '3.28',
8256             'Pod::Simple::XMLOutStream'=> '3.28',
8257             },
8258             removed => {
8259             }
8260             },
8261             5.018001 => {
8262             delta_from => 5.018000,
8263             changed => {
8264             'B' => '1.42_01',
8265             'Config' => '5.018001',
8266             'Digest::SHA' => '5.84_01',
8267             'Module::CoreList' => '2.96',
8268             'Module::CoreList::TieHashDelta'=> '2.96',
8269             'Module::CoreList::Utils'=> '2.96',
8270             },
8271             removed => {
8272             'VMS::Filespec' => 1,
8273             }
8274             },
8275             5.018002 => {
8276             delta_from => 5.018001,
8277             changed => {
8278             'B' => '1.42_02',
8279             'B::Concise' => '0.95_01',
8280             'Config' => '5.018002',
8281             'File::Glob' => '1.20_01',
8282             'Module::CoreList' => '3.03',
8283             'Module::CoreList::TieHashDelta'=> '3.03',
8284             'Module::CoreList::Utils'=> '3.03',
8285             },
8286             },
8287             5.018003 => {
8288             delta_from => 5.018002,
8289             changed => {
8290             'Config' => '5.018003',
8291             'Digest::SHA' => '5.84_02',
8292             'Module::CoreList' => '3.12',
8293             'Module::CoreList::TieHashDelta'=> '3.12',
8294             'Module::CoreList::Utils'=> '3.12',
8295             },
8296             },
8297             5.018004 => {
8298             delta_from => 5.018003,
8299             changed => {
8300             'Config' => '5.018004',
8301             'Module::CoreList' => '3.13',
8302             'Module::CoreList::TieHashDelta'=> '3.13',
8303             'Module::CoreList::Utils'=> '3.13',
8304             },
8305             },
8306             5.019000 => {
8307             delta_from => 5.018000,
8308             changed => {
8309             'Config' => '5.019000',
8310             'Getopt::Std' => '1.08',
8311             'Module::CoreList' => '2.91',
8312             'Module::CoreList::TieHashDelta'=> '2.91',
8313             'Storable' => '2.42',
8314             'feature' => '1.33',
8315             'utf8' => '1.11',
8316             },
8317             removed => {
8318             'Archive::Extract' => 1,
8319             'B::Lint' => 1,
8320             'B::Lint::Debug' => 1,
8321             'CPANPLUS' => 1,
8322             'CPANPLUS::Backend' => 1,
8323             'CPANPLUS::Backend::RV' => 1,
8324             'CPANPLUS::Config' => 1,
8325             'CPANPLUS::Config::HomeEnv'=> 1,
8326             'CPANPLUS::Configure' => 1,
8327             'CPANPLUS::Configure::Setup'=> 1,
8328             'CPANPLUS::Dist' => 1,
8329             'CPANPLUS::Dist::Autobundle'=> 1,
8330             'CPANPLUS::Dist::Base' => 1,
8331             'CPANPLUS::Dist::Build' => 1,
8332             'CPANPLUS::Dist::Build::Constants'=> 1,
8333             'CPANPLUS::Dist::MM' => 1,
8334             'CPANPLUS::Dist::Sample'=> 1,
8335             'CPANPLUS::Error' => 1,
8336             'CPANPLUS::Internals' => 1,
8337             'CPANPLUS::Internals::Constants'=> 1,
8338             'CPANPLUS::Internals::Constants::Report'=> 1,
8339             'CPANPLUS::Internals::Extract'=> 1,
8340             'CPANPLUS::Internals::Fetch'=> 1,
8341             'CPANPLUS::Internals::Report'=> 1,
8342             'CPANPLUS::Internals::Search'=> 1,
8343             'CPANPLUS::Internals::Source'=> 1,
8344             'CPANPLUS::Internals::Source::Memory'=> 1,
8345             'CPANPLUS::Internals::Source::SQLite'=> 1,
8346             'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8347             'CPANPLUS::Internals::Utils'=> 1,
8348             'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8349             'CPANPLUS::Module' => 1,
8350             'CPANPLUS::Module::Author'=> 1,
8351             'CPANPLUS::Module::Author::Fake'=> 1,
8352             'CPANPLUS::Module::Checksums'=> 1,
8353             'CPANPLUS::Module::Fake'=> 1,
8354             'CPANPLUS::Module::Signature'=> 1,
8355             'CPANPLUS::Selfupdate' => 1,
8356             'CPANPLUS::Shell' => 1,
8357             'CPANPLUS::Shell::Classic'=> 1,
8358             'CPANPLUS::Shell::Default'=> 1,
8359             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8360             'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8361             'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8362             'Devel::InnerPackage' => 1,
8363             'File::CheckTree' => 1,
8364             'Log::Message' => 1,
8365             'Log::Message::Config' => 1,
8366             'Log::Message::Handlers'=> 1,
8367             'Log::Message::Item' => 1,
8368             'Log::Message::Simple' => 1,
8369             'Module::Pluggable' => 1,
8370             'Module::Pluggable::Object'=> 1,
8371             'Object::Accessor' => 1,
8372             'Pod::LaTeX' => 1,
8373             'Term::UI' => 1,
8374             'Term::UI::History' => 1,
8375             'Text::Soundex' => 1,
8376             }
8377             },
8378             5.019001 => {
8379             delta_from => 5.019000,
8380             changed => {
8381             'App::Prove' => '3.28',
8382             'App::Prove::State' => '3.28',
8383             'App::Prove::State::Result'=> '3.28',
8384             'App::Prove::State::Result::Test'=> '3.28',
8385             'Archive::Tar' => '1.92',
8386             'Archive::Tar::Constant'=> '1.92',
8387             'Archive::Tar::File' => '1.92',
8388             'Attribute::Handlers' => '0.95',
8389             'B' => '1.43',
8390             'B::Concise' => '0.96',
8391             'B::Deparse' => '1.21',
8392             'B::Showlex' => '1.04',
8393             'Benchmark' => '1.16',
8394             'CPAN::Meta' => '2.131560',
8395             'CPAN::Meta::Converter' => '2.131560',
8396             'CPAN::Meta::Feature' => '2.131560',
8397             'CPAN::Meta::History' => '2.131560',
8398             'CPAN::Meta::Prereqs' => '2.131560',
8399             'CPAN::Meta::Spec' => '2.131560',
8400             'CPAN::Meta::Validator' => '2.131560',
8401             'Carp' => '1.30',
8402             'Carp::Heavy' => '1.30',
8403             'Compress::Raw::Bzip2' => '2.061',
8404             'Compress::Raw::Zlib' => '2.061',
8405             'Compress::Zlib' => '2.061',
8406             'Config' => '5.019001',
8407             'Config::Perl::V' => '0.18',
8408             'Cwd' => '3.41',
8409             'DB' => '1.06',
8410             'DB_File' => '1.828',
8411             'Data::Dumper' => '2.146',
8412             'Encode' => '2.51',
8413             'Encode::CN::HZ' => '2.06',
8414             'Encode::GSM0338' => '2.03',
8415             'Encode::Unicode::UTF7' => '2.07',
8416             'ExtUtils::CBuilder::Base'=> '0.280210',
8417             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8418             'ExtUtils::Command::MM' => '6.68',
8419             'ExtUtils::Install' => '1.60',
8420             'ExtUtils::Liblist' => '6.68',
8421             'ExtUtils::Liblist::Kid'=> '6.68',
8422             'ExtUtils::MM' => '6.68',
8423             'ExtUtils::MM_AIX' => '6.68',
8424             'ExtUtils::MM_Any' => '6.68',
8425             'ExtUtils::MM_BeOS' => '6.68',
8426             'ExtUtils::MM_Cygwin' => '6.68',
8427             'ExtUtils::MM_DOS' => '6.68',
8428             'ExtUtils::MM_Darwin' => '6.68',
8429             'ExtUtils::MM_MacOS' => '6.68',
8430             'ExtUtils::MM_NW5' => '6.68',
8431             'ExtUtils::MM_OS2' => '6.68',
8432             'ExtUtils::MM_QNX' => '6.68',
8433             'ExtUtils::MM_UWIN' => '6.68',
8434             'ExtUtils::MM_Unix' => '6.68',
8435             'ExtUtils::MM_VMS' => '6.68',
8436             'ExtUtils::MM_VOS' => '6.68',
8437             'ExtUtils::MM_Win32' => '6.68',
8438             'ExtUtils::MM_Win95' => '6.68',
8439             'ExtUtils::MY' => '6.68',
8440             'ExtUtils::MakeMaker' => '6.68',
8441             'ExtUtils::MakeMaker::Config'=> '6.68',
8442             'ExtUtils::Mkbootstrap' => '6.68',
8443             'ExtUtils::Mksymlists' => '6.68',
8444             'ExtUtils::ParseXS' => '3.19',
8445             'ExtUtils::testlib' => '6.68',
8446             'Fatal' => '2.19',
8447             'File::Copy' => '2.27',
8448             'File::DosGlob' => '1.11',
8449             'File::Fetch' => '0.42',
8450             'File::Find' => '1.24',
8451             'File::Spec' => '3.41',
8452             'File::Spec::Cygwin' => '3.41',
8453             'File::Spec::Epoc' => '3.41',
8454             'File::Spec::Mac' => '3.41',
8455             'File::Spec::OS2' => '3.41',
8456             'File::Spec::Unix' => '3.41',
8457             'File::Spec::VMS' => '3.41',
8458             'File::Spec::Win32' => '3.41',
8459             'File::Temp' => '0.2301',
8460             'Filter::Simple' => '0.90',
8461             'Filter::Util::Call' => '1.49',
8462             'Getopt::Long' => '2.4',
8463             'HTTP::Tiny' => '0.031',
8464             'Hash::Util::FieldHash' => '1.11',
8465             'IO::Compress::Adapter::Bzip2'=> '2.061',
8466             'IO::Compress::Adapter::Deflate'=> '2.061',
8467             'IO::Compress::Adapter::Identity'=> '2.061',
8468             'IO::Compress::Base' => '2.061',
8469             'IO::Compress::Base::Common'=> '2.061',
8470             'IO::Compress::Bzip2' => '2.061',
8471             'IO::Compress::Deflate' => '2.061',
8472             'IO::Compress::Gzip' => '2.061',
8473             'IO::Compress::Gzip::Constants'=> '2.061',
8474             'IO::Compress::RawDeflate'=> '2.061',
8475             'IO::Compress::Zip' => '2.061',
8476             'IO::Compress::Zip::Constants'=> '2.061',
8477             'IO::Compress::Zlib::Constants'=> '2.061',
8478             'IO::Compress::Zlib::Extra'=> '2.061',
8479             'IO::Handle' => '1.35',
8480             'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8481             'IO::Uncompress::Adapter::Identity'=> '2.061',
8482             'IO::Uncompress::Adapter::Inflate'=> '2.061',
8483             'IO::Uncompress::AnyInflate'=> '2.061',
8484             'IO::Uncompress::AnyUncompress'=> '2.061',
8485             'IO::Uncompress::Base' => '2.061',
8486             'IO::Uncompress::Bunzip2'=> '2.061',
8487             'IO::Uncompress::Gunzip'=> '2.061',
8488             'IO::Uncompress::Inflate'=> '2.061',
8489             'IO::Uncompress::RawInflate'=> '2.061',
8490             'IO::Uncompress::Unzip' => '2.061',
8491             'IPC::Open3' => '1.14',
8492             'Locale::Codes' => '3.26',
8493             'Locale::Codes::Constants'=> '3.26',
8494             'Locale::Codes::Country'=> '3.26',
8495             'Locale::Codes::Country_Codes'=> '3.26',
8496             'Locale::Codes::Country_Retired'=> '3.26',
8497             'Locale::Codes::Currency'=> '3.26',
8498             'Locale::Codes::Currency_Codes'=> '3.26',
8499             'Locale::Codes::Currency_Retired'=> '3.26',
8500             'Locale::Codes::LangExt'=> '3.26',
8501             'Locale::Codes::LangExt_Codes'=> '3.26',
8502             'Locale::Codes::LangExt_Retired'=> '3.26',
8503             'Locale::Codes::LangFam'=> '3.26',
8504             'Locale::Codes::LangFam_Codes'=> '3.26',
8505             'Locale::Codes::LangFam_Retired'=> '3.26',
8506             'Locale::Codes::LangVar'=> '3.26',
8507             'Locale::Codes::LangVar_Codes'=> '3.26',
8508             'Locale::Codes::LangVar_Retired'=> '3.26',
8509             'Locale::Codes::Language'=> '3.26',
8510             'Locale::Codes::Language_Codes'=> '3.26',
8511             'Locale::Codes::Language_Retired'=> '3.26',
8512             'Locale::Codes::Script' => '3.26',
8513             'Locale::Codes::Script_Codes'=> '3.26',
8514             'Locale::Codes::Script_Retired'=> '3.26',
8515             'Locale::Country' => '3.26',
8516             'Locale::Currency' => '3.26',
8517             'Locale::Language' => '3.26',
8518             'Locale::Maketext' => '1.24',
8519             'Locale::Script' => '3.26',
8520             'Math::BigFloat' => '1.999',
8521             'Math::BigInt' => '1.9992',
8522             'Math::BigInt::Calc' => '1.998',
8523             'Math::BigInt::CalcEmu' => '1.9991',
8524             'Math::BigRat' => '0.2606',
8525             'Module::Build' => '0.4005',
8526             'Module::Build::Base' => '0.4005',
8527             'Module::Build::Compat' => '0.4005',
8528             'Module::Build::Config' => '0.4005',
8529             'Module::Build::Cookbook'=> '0.4005',
8530             'Module::Build::Dumper' => '0.4005',
8531             'Module::Build::ModuleInfo'=> '0.4005',
8532             'Module::Build::Notes' => '0.4005',
8533             'Module::Build::PPMMaker'=> '0.4005',
8534             'Module::Build::Platform::Amiga'=> '0.4005',
8535             'Module::Build::Platform::Default'=> '0.4005',
8536             'Module::Build::Platform::EBCDIC'=> '0.4005',
8537             'Module::Build::Platform::MPEiX'=> '0.4005',
8538             'Module::Build::Platform::MacOS'=> '0.4005',
8539             'Module::Build::Platform::RiscOS'=> '0.4005',
8540             'Module::Build::Platform::Unix'=> '0.4005',
8541             'Module::Build::Platform::VMS'=> '0.4005',
8542             'Module::Build::Platform::VOS'=> '0.4005',
8543             'Module::Build::Platform::Windows'=> '0.4005',
8544             'Module::Build::Platform::aix'=> '0.4005',
8545             'Module::Build::Platform::cygwin'=> '0.4005',
8546             'Module::Build::Platform::darwin'=> '0.4005',
8547             'Module::Build::Platform::os2'=> '0.4005',
8548             'Module::Build::PodParser'=> '0.4005',
8549             'Module::CoreList' => '2.92',
8550             'Module::CoreList::TieHashDelta'=> '2.92',
8551             'Module::CoreList::Utils'=> '2.92',
8552             'Module::Metadata' => '1.000014',
8553             'Net::Ping' => '2.42',
8554             'OS2::Process' => '1.09',
8555             'POSIX' => '1.33',
8556             'Pod::Find' => '1.61',
8557             'Pod::Html' => '1.19',
8558             'Pod::InputObjects' => '1.61',
8559             'Pod::ParseUtils' => '1.61',
8560             'Pod::Parser' => '1.61',
8561             'Pod::Perldoc' => '3.20',
8562             'Pod::Perldoc::BaseTo' => '3.20',
8563             'Pod::Perldoc::GetOptsOO'=> '3.20',
8564             'Pod::Perldoc::ToANSI' => '3.20',
8565             'Pod::Perldoc::ToChecker'=> '3.20',
8566             'Pod::Perldoc::ToMan' => '3.20',
8567             'Pod::Perldoc::ToNroff' => '3.20',
8568             'Pod::Perldoc::ToPod' => '3.20',
8569             'Pod::Perldoc::ToRtf' => '3.20',
8570             'Pod::Perldoc::ToTerm' => '3.20',
8571             'Pod::Perldoc::ToText' => '3.20',
8572             'Pod::Perldoc::ToTk' => '3.20',
8573             'Pod::Perldoc::ToXml' => '3.20',
8574             'Pod::Select' => '1.61',
8575             'Pod::Usage' => '1.63',
8576             'Safe' => '2.36',
8577             'Storable' => '2.43',
8578             'Sys::Hostname' => '1.18',
8579             'Sys::Syslog' => '0.33',
8580             'TAP::Base' => '3.28',
8581             'TAP::Formatter::Base' => '3.28',
8582             'TAP::Formatter::Color' => '3.28',
8583             'TAP::Formatter::Console'=> '3.28',
8584             'TAP::Formatter::Console::ParallelSession'=> '3.28',
8585             'TAP::Formatter::Console::Session'=> '3.28',
8586             'TAP::Formatter::File' => '3.28',
8587             'TAP::Formatter::File::Session'=> '3.28',
8588             'TAP::Formatter::Session'=> '3.28',
8589             'TAP::Harness' => '3.28',
8590             'TAP::Object' => '3.28',
8591             'TAP::Parser' => '3.28',
8592             'TAP::Parser::Aggregator'=> '3.28',
8593             'TAP::Parser::Grammar' => '3.28',
8594             'TAP::Parser::Iterator' => '3.28',
8595             'TAP::Parser::Iterator::Array'=> '3.28',
8596             'TAP::Parser::Iterator::Process'=> '3.28',
8597             'TAP::Parser::Iterator::Stream'=> '3.28',
8598             'TAP::Parser::IteratorFactory'=> '3.28',
8599             'TAP::Parser::Multiplexer'=> '3.28',
8600             'TAP::Parser::Result' => '3.28',
8601             'TAP::Parser::Result::Bailout'=> '3.28',
8602             'TAP::Parser::Result::Comment'=> '3.28',
8603             'TAP::Parser::Result::Plan'=> '3.28',
8604             'TAP::Parser::Result::Pragma'=> '3.28',
8605             'TAP::Parser::Result::Test'=> '3.28',
8606             'TAP::Parser::Result::Unknown'=> '3.28',
8607             'TAP::Parser::Result::Version'=> '3.28',
8608             'TAP::Parser::Result::YAML'=> '3.28',
8609             'TAP::Parser::ResultFactory'=> '3.28',
8610             'TAP::Parser::Scheduler'=> '3.28',
8611             'TAP::Parser::Scheduler::Job'=> '3.28',
8612             'TAP::Parser::Scheduler::Spinner'=> '3.28',
8613             'TAP::Parser::Source' => '3.28',
8614             'TAP::Parser::SourceHandler'=> '3.28',
8615             'TAP::Parser::SourceHandler::Executable'=> '3.28',
8616             'TAP::Parser::SourceHandler::File'=> '3.28',
8617             'TAP::Parser::SourceHandler::Handle'=> '3.28',
8618             'TAP::Parser::SourceHandler::Perl'=> '3.28',
8619             'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8620             'TAP::Parser::Utils' => '3.28',
8621             'TAP::Parser::YAMLish::Reader'=> '3.28',
8622             'TAP::Parser::YAMLish::Writer'=> '3.28',
8623             'Term::ReadLine' => '1.13',
8624             'Test::Harness' => '3.28',
8625             'Text::Tabs' => '2013.0523',
8626             'Text::Wrap' => '2013.0523',
8627             'Thread' => '3.04',
8628             'Tie::File' => '1.00',
8629             'Time::Piece' => '1.2002',
8630             'Unicode::Collate' => '0.98',
8631             'Unicode::UCD' => '0.53',
8632             'XS::APItest' => '0.53',
8633             '_charnames' => '1.37',
8634             'autodie' => '2.19',
8635             'autodie::exception' => '2.19',
8636             'autodie::exception::system'=> '2.19',
8637             'autodie::hints' => '2.19',
8638             'autodie::skip' => '2.19',
8639             'bigint' => '0.35',
8640             'charnames' => '1.38',
8641             'encoding' => '2.12',
8642             'inc::latest' => '0.4005',
8643             'mro' => '1.12',
8644             'perlfaq' => '5.0150043',
8645             're' => '0.25',
8646             'threads' => '1.87',
8647             'threads::shared' => '1.44',
8648             'utf8' => '1.12',
8649             },
8650             removed => {
8651             }
8652             },
8653             5.019002 => {
8654             delta_from => 5.019001,
8655             changed => {
8656             'B' => '1.44',
8657             'B::Concise' => '0.98',
8658             'B::Deparse' => '1.22',
8659             'Benchmark' => '1.17',
8660             'Class::Struct' => '0.65',
8661             'Config' => '5.019002',
8662             'DB' => '1.07',
8663             'DBM_Filter' => '0.06',
8664             'DBM_Filter::compress' => '0.03',
8665             'DBM_Filter::encode' => '0.03',
8666             'DBM_Filter::int32' => '0.03',
8667             'DBM_Filter::null' => '0.03',
8668             'DBM_Filter::utf8' => '0.03',
8669             'DB_File' => '1.829',
8670             'Data::Dumper' => '2.147',
8671             'Devel::Peek' => '1.12',
8672             'Digest::MD5' => '2.53',
8673             'Digest::SHA' => '5.85',
8674             'English' => '1.07',
8675             'Errno' => '1.19',
8676             'ExtUtils::Embed' => '1.31',
8677             'ExtUtils::Miniperl' => '1',
8678             'ExtUtils::ParseXS' => '3.21',
8679             'ExtUtils::ParseXS::Constants'=> '3.21',
8680             'ExtUtils::ParseXS::CountLines'=> '3.21',
8681             'ExtUtils::ParseXS::Eval'=> '3.19',
8682             'ExtUtils::ParseXS::Utilities'=> '3.21',
8683             'ExtUtils::Typemaps' => '3.21',
8684             'ExtUtils::Typemaps::Cmd'=> '3.21',
8685             'ExtUtils::Typemaps::InputMap'=> '3.21',
8686             'ExtUtils::Typemaps::OutputMap'=> '3.21',
8687             'ExtUtils::Typemaps::Type'=> '3.21',
8688             'ExtUtils::XSSymSet' => '1.3',
8689             'Fatal' => '2.20',
8690             'File::Basename' => '2.85',
8691             'File::Spec::VMS' => '3.43',
8692             'File::Spec::Win32' => '3.42',
8693             'Getopt::Long' => '2.41',
8694             'Getopt::Std' => '1.09',
8695             'HTTP::Tiny' => '0.034',
8696             'Hash::Util::FieldHash' => '1.12',
8697             'I18N::Langinfo' => '0.11',
8698             'IO::Socket::INET' => '1.34',
8699             'IO::Socket::UNIX' => '1.25',
8700             'IPC::Cmd' => '0.82',
8701             'MIME::Base64' => '3.14',
8702             'Module::CoreList' => '2.94',
8703             'Module::CoreList::TieHashDelta'=> '2.94',
8704             'Module::CoreList::Utils'=> '2.94',
8705             'POSIX' => '1.34',
8706             'Params::Check' => '0.38',
8707             'Parse::CPAN::Meta' => '1.4405',
8708             'Pod::Functions' => '1.07',
8709             'Pod::Html' => '1.2',
8710             'Safe' => '2.37',
8711             'Socket' => '2.010',
8712             'Storable' => '2.45',
8713             'Text::ParseWords' => '3.29',
8714             'Tie::Array' => '1.06',
8715             'Tie::Hash' => '1.05',
8716             'Tie::Scalar' => '1.03',
8717             'Time::Piece' => '1.21',
8718             'Time::Seconds' => '1.21',
8719             'XS::APItest' => '0.54',
8720             'autodie' => '2.20',
8721             'autodie::exception' => '2.20',
8722             'autodie::exception::system'=> '2.20',
8723             'autodie::hints' => '2.20',
8724             'autodie::skip' => '2.20',
8725             'base' => '2.19',
8726             'deprecate' => '0.03',
8727             'if' => '0.0603',
8728             'integer' => '1.01',
8729             'strict' => '1.08',
8730             'subs' => '1.02',
8731             'vmsish' => '1.04',
8732             },
8733             removed => {
8734             }
8735             },
8736             5.019003 => {
8737             delta_from => 5.019002,
8738             changed => {
8739             'B' => '1.45',
8740             'CPAN::Meta' => '2.132140',
8741             'CPAN::Meta::Converter' => '2.132140',
8742             'CPAN::Meta::Feature' => '2.132140',
8743             'CPAN::Meta::History' => '2.132140',
8744             'CPAN::Meta::Prereqs' => '2.132140',
8745             'CPAN::Meta::Spec' => '2.132140',
8746             'CPAN::Meta::Validator' => '2.132140',
8747             'Carp' => '1.31',
8748             'Carp::Heavy' => '1.31',
8749             'Compress::Raw::Bzip2' => '2.062',
8750             'Compress::Raw::Zlib' => '2.062',
8751             'Compress::Zlib' => '2.062',
8752             'Config' => '5.019003',
8753             'Config::Perl::V' => '0.19',
8754             'Cwd' => '3.44',
8755             'Data::Dumper' => '2.148',
8756             'Devel::PPPort' => '3.21',
8757             'Devel::Peek' => '1.13',
8758             'DynaLoader' => '1.19',
8759             'Encode' => '2.52',
8760             'Encode::Alias' => '2.17',
8761             'Encode::Encoding' => '2.06',
8762             'Encode::GSM0338' => '2.04',
8763             'Encode::MIME::Header' => '2.14',
8764             'Encode::Unicode' => '2.08',
8765             'English' => '1.08',
8766             'Exporter' => '5.69',
8767             'Exporter::Heavy' => '5.69',
8768             'ExtUtils::Command::MM' => '6.72',
8769             'ExtUtils::Liblist' => '6.72',
8770             'ExtUtils::Liblist::Kid'=> '6.72',
8771             'ExtUtils::MM' => '6.72',
8772             'ExtUtils::MM_AIX' => '6.72',
8773             'ExtUtils::MM_Any' => '6.72',
8774             'ExtUtils::MM_BeOS' => '6.72',
8775             'ExtUtils::MM_Cygwin' => '6.72',
8776             'ExtUtils::MM_DOS' => '6.72',
8777             'ExtUtils::MM_Darwin' => '6.72',
8778             'ExtUtils::MM_MacOS' => '6.72',
8779             'ExtUtils::MM_NW5' => '6.72',
8780             'ExtUtils::MM_OS2' => '6.72',
8781             'ExtUtils::MM_QNX' => '6.72',
8782             'ExtUtils::MM_UWIN' => '6.72',
8783             'ExtUtils::MM_Unix' => '6.72',
8784             'ExtUtils::MM_VMS' => '6.72',
8785             'ExtUtils::MM_VOS' => '6.72',
8786             'ExtUtils::MM_Win32' => '6.72',
8787             'ExtUtils::MM_Win95' => '6.72',
8788             'ExtUtils::MY' => '6.72',
8789             'ExtUtils::MakeMaker' => '6.72',
8790             'ExtUtils::MakeMaker::Config'=> '6.72',
8791             'ExtUtils::Mkbootstrap' => '6.72',
8792             'ExtUtils::Mksymlists' => '6.72',
8793             'ExtUtils::ParseXS::Eval'=> '3.21',
8794             'ExtUtils::testlib' => '6.72',
8795             'File::Spec' => '3.44',
8796             'File::Spec::Cygwin' => '3.44',
8797             'File::Spec::Epoc' => '3.44',
8798             'File::Spec::Functions' => '3.44',
8799             'File::Spec::Mac' => '3.44',
8800             'File::Spec::OS2' => '3.44',
8801             'File::Spec::Unix' => '3.44',
8802             'File::Spec::VMS' => '3.44',
8803             'File::Spec::Win32' => '3.44',
8804             'Getopt::Std' => '1.10',
8805             'IO::Compress::Adapter::Bzip2'=> '2.062',
8806             'IO::Compress::Adapter::Deflate'=> '2.062',
8807             'IO::Compress::Adapter::Identity'=> '2.062',
8808             'IO::Compress::Base' => '2.062',
8809             'IO::Compress::Base::Common'=> '2.062',
8810             'IO::Compress::Bzip2' => '2.062',
8811             'IO::Compress::Deflate' => '2.062',
8812             'IO::Compress::Gzip' => '2.062',
8813             'IO::Compress::Gzip::Constants'=> '2.062',
8814             'IO::Compress::RawDeflate'=> '2.062',
8815             'IO::Compress::Zip' => '2.062',
8816             'IO::Compress::Zip::Constants'=> '2.062',
8817             'IO::Compress::Zlib::Constants'=> '2.062',
8818             'IO::Compress::Zlib::Extra'=> '2.062',
8819             'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8820             'IO::Uncompress::Adapter::Identity'=> '2.062',
8821             'IO::Uncompress::Adapter::Inflate'=> '2.062',
8822             'IO::Uncompress::AnyInflate'=> '2.062',
8823             'IO::Uncompress::AnyUncompress'=> '2.062',
8824             'IO::Uncompress::Base' => '2.062',
8825             'IO::Uncompress::Bunzip2'=> '2.062',
8826             'IO::Uncompress::Gunzip'=> '2.062',
8827             'IO::Uncompress::Inflate'=> '2.062',
8828             'IO::Uncompress::RawInflate'=> '2.062',
8829             'IO::Uncompress::Unzip' => '2.062',
8830             'IPC::Cmd' => '0.84',
8831             'IPC::Msg' => '2.04',
8832             'IPC::Open3' => '1.15',
8833             'IPC::Semaphore' => '2.04',
8834             'IPC::SharedMem' => '2.04',
8835             'IPC::SysV' => '2.04',
8836             'List::Util' => '1.31',
8837             'List::Util::XS' => '1.31',
8838             'Math::BigFloat::Trace' => '0.36',
8839             'Math::BigInt::Trace' => '0.36',
8840             'Module::Build' => '0.4007',
8841             'Module::Build::Base' => '0.4007',
8842             'Module::Build::Compat' => '0.4007',
8843             'Module::Build::Config' => '0.4007',
8844             'Module::Build::Cookbook'=> '0.4007',
8845             'Module::Build::Dumper' => '0.4007',
8846             'Module::Build::ModuleInfo'=> '0.4007',
8847             'Module::Build::Notes' => '0.4007',
8848             'Module::Build::PPMMaker'=> '0.4007',
8849             'Module::Build::Platform::Default'=> '0.4007',
8850             'Module::Build::Platform::MacOS'=> '0.4007',
8851             'Module::Build::Platform::Unix'=> '0.4007',
8852             'Module::Build::Platform::VMS'=> '0.4007',
8853             'Module::Build::Platform::VOS'=> '0.4007',
8854             'Module::Build::Platform::Windows'=> '0.4007',
8855             'Module::Build::Platform::aix'=> '0.4007',
8856             'Module::Build::Platform::cygwin'=> '0.4007',
8857             'Module::Build::Platform::darwin'=> '0.4007',
8858             'Module::Build::Platform::os2'=> '0.4007',
8859             'Module::Build::PodParser'=> '0.4007',
8860             'Module::CoreList' => '2.97',
8861             'Module::CoreList::TieHashDelta'=> '2.97',
8862             'Module::CoreList::Utils'=> '2.97',
8863             'Net::Cmd' => '2.30',
8864             'Net::Config' => '1.12',
8865             'Net::Domain' => '2.22',
8866             'Net::FTP' => '2.78',
8867             'Net::FTP::dataconn' => '0.12',
8868             'Net::NNTP' => '2.25',
8869             'Net::Netrc' => '2.14',
8870             'Net::POP3' => '2.30',
8871             'Net::SMTP' => '2.32',
8872             'PerlIO' => '1.08',
8873             'Pod::Functions' => '1.08',
8874             'Scalar::Util' => '1.31',
8875             'Socket' => '2.011',
8876             'Storable' => '2.46',
8877             'Time::HiRes' => '1.9726',
8878             'Time::Piece' => '1.22',
8879             'Time::Seconds' => '1.22',
8880             'XS::APItest' => '0.55',
8881             'bigint' => '0.36',
8882             'bignum' => '0.36',
8883             'bigrat' => '0.36',
8884             'constant' => '1.28',
8885             'diagnostics' => '1.32',
8886             'inc::latest' => '0.4007',
8887             'mro' => '1.13',
8888             'parent' => '0.226',
8889             'utf8' => '1.13',
8890             'version' => '0.9903',
8891             },
8892             removed => {
8893             'Module::Build::Platform::Amiga'=> 1,
8894             'Module::Build::Platform::EBCDIC'=> 1,
8895             'Module::Build::Platform::MPEiX'=> 1,
8896             'Module::Build::Platform::RiscOS'=> 1,
8897             }
8898             },
8899             5.019004 => {
8900             delta_from => 5.019003,
8901             changed => {
8902             'B' => '1.46',
8903             'B::Concise' => '0.99',
8904             'B::Deparse' => '1.23',
8905             'CPAN' => '2.03',
8906             'CPAN::Meta' => '2.132620',
8907             'CPAN::Meta::Converter' => '2.132620',
8908             'CPAN::Meta::Feature' => '2.132620',
8909             'CPAN::Meta::History' => '2.132620',
8910             'CPAN::Meta::Prereqs' => '2.132620',
8911             'CPAN::Meta::Requirements'=> '2.123',
8912             'CPAN::Meta::Spec' => '2.132620',
8913             'CPAN::Meta::Validator' => '2.132620',
8914             'Carp' => '1.32',
8915             'Carp::Heavy' => '1.32',
8916             'Config' => '5.019004',
8917             'Data::Dumper' => '2.149',
8918             'Devel::Peek' => '1.14',
8919             'DynaLoader' => '1.20',
8920             'Encode' => '2.55',
8921             'Encode::Alias' => '2.18',
8922             'Encode::CN::HZ' => '2.07',
8923             'Encode::Encoder' => '2.03',
8924             'Encode::Encoding' => '2.07',
8925             'Encode::GSM0338' => '2.05',
8926             'Encode::Guess' => '2.06',
8927             'Encode::JP::JIS7' => '2.05',
8928             'Encode::KR::2022_KR' => '2.03',
8929             'Encode::MIME::Header' => '2.15',
8930             'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8931             'Encode::Unicode' => '2.09',
8932             'Encode::Unicode::UTF7' => '2.08',
8933             'Errno' => '1.20',
8934             'Exporter' => '5.70',
8935             'Exporter::Heavy' => '5.70',
8936             'ExtUtils::CBuilder' => '0.280212',
8937             'ExtUtils::CBuilder::Base'=> '0.280212',
8938             'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8939             'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8940             'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8941             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8942             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8943             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8944             'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8945             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8946             'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8947             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8948             'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8949             'ExtUtils::Command' => '1.18',
8950             'ExtUtils::Command::MM' => '6.76',
8951             'ExtUtils::Liblist' => '6.76',
8952             'ExtUtils::Liblist::Kid'=> '6.76',
8953             'ExtUtils::MM' => '6.76',
8954             'ExtUtils::MM_AIX' => '6.76',
8955             'ExtUtils::MM_Any' => '6.76',
8956             'ExtUtils::MM_BeOS' => '6.76',
8957             'ExtUtils::MM_Cygwin' => '6.76',
8958             'ExtUtils::MM_DOS' => '6.76',
8959             'ExtUtils::MM_Darwin' => '6.76',
8960             'ExtUtils::MM_MacOS' => '6.76',
8961             'ExtUtils::MM_NW5' => '6.76',
8962             'ExtUtils::MM_OS2' => '6.76',
8963             'ExtUtils::MM_QNX' => '6.76',
8964             'ExtUtils::MM_UWIN' => '6.76',
8965             'ExtUtils::MM_Unix' => '6.76',
8966             'ExtUtils::MM_VMS' => '6.76',
8967             'ExtUtils::MM_VOS' => '6.76',
8968             'ExtUtils::MM_Win32' => '6.76',
8969             'ExtUtils::MM_Win95' => '6.76',
8970             'ExtUtils::MY' => '6.76',
8971             'ExtUtils::MakeMaker' => '6.76',
8972             'ExtUtils::MakeMaker::Config'=> '6.76',
8973             'ExtUtils::Mkbootstrap' => '6.76',
8974             'ExtUtils::Mksymlists' => '6.76',
8975             'ExtUtils::ParseXS' => '3.23',
8976             'ExtUtils::ParseXS::Constants'=> '3.23',
8977             'ExtUtils::ParseXS::CountLines'=> '3.23',
8978             'ExtUtils::ParseXS::Eval'=> '3.23',
8979             'ExtUtils::ParseXS::Utilities'=> '3.23',
8980             'ExtUtils::Typemaps' => '3.23',
8981             'ExtUtils::Typemaps::Cmd'=> '3.23',
8982             'ExtUtils::Typemaps::InputMap'=> '3.23',
8983             'ExtUtils::Typemaps::OutputMap'=> '3.23',
8984             'ExtUtils::Typemaps::Type'=> '3.23',
8985             'ExtUtils::testlib' => '6.76',
8986             'Fatal' => '2.21',
8987             'File::Copy' => '2.28',
8988             'File::Find' => '1.25',
8989             'File::Glob' => '1.21',
8990             'FileCache' => '1.09',
8991             'HTTP::Tiny' => '0.035',
8992             'Hash::Util::FieldHash' => '1.13',
8993             'I18N::LangTags' => '0.40',
8994             'IO' => '1.29',
8995             'IO::Socket' => '1.37',
8996             'IPC::Open3' => '1.16',
8997             'JSON::PP' => '2.27202_01',
8998             'List::Util' => '1.32',
8999             'List::Util::XS' => '1.32',
9000             'Locale::Codes' => '3.27',
9001             'Locale::Codes::Constants'=> '3.27',
9002             'Locale::Codes::Country'=> '3.27',
9003             'Locale::Codes::Country_Codes'=> '3.27',
9004             'Locale::Codes::Country_Retired'=> '3.27',
9005             'Locale::Codes::Currency'=> '3.27',
9006             'Locale::Codes::Currency_Codes'=> '3.27',
9007             'Locale::Codes::Currency_Retired'=> '3.27',
9008             'Locale::Codes::LangExt'=> '3.27',
9009             'Locale::Codes::LangExt_Codes'=> '3.27',
9010             'Locale::Codes::LangExt_Retired'=> '3.27',
9011             'Locale::Codes::LangFam'=> '3.27',
9012             'Locale::Codes::LangFam_Codes'=> '3.27',
9013             'Locale::Codes::LangFam_Retired'=> '3.27',
9014             'Locale::Codes::LangVar'=> '3.27',
9015             'Locale::Codes::LangVar_Codes'=> '3.27',
9016             'Locale::Codes::LangVar_Retired'=> '3.27',
9017             'Locale::Codes::Language'=> '3.27',
9018             'Locale::Codes::Language_Codes'=> '3.27',
9019             'Locale::Codes::Language_Retired'=> '3.27',
9020             'Locale::Codes::Script' => '3.27',
9021             'Locale::Codes::Script_Codes'=> '3.27',
9022             'Locale::Codes::Script_Retired'=> '3.27',
9023             'Locale::Country' => '3.27',
9024             'Locale::Currency' => '3.27',
9025             'Locale::Language' => '3.27',
9026             'Locale::Script' => '3.27',
9027             'Math::BigFloat' => '1.9991',
9028             'Math::BigInt' => '1.9993',
9029             'Math::BigInt::FastCalc'=> '0.31',
9030             'Module::CoreList' => '2.99',
9031             'Module::CoreList::TieHashDelta'=> '2.99',
9032             'Module::CoreList::Utils'=> '2.99',
9033             'Module::Load::Conditional'=> '0.58',
9034             'Module::Metadata' => '1.000018',
9035             'Opcode' => '1.26',
9036             'POSIX' => '1.35',
9037             'Parse::CPAN::Meta' => '1.4407',
9038             'Perl::OSType' => '1.005',
9039             'Pod::Html' => '1.21',
9040             'Scalar::Util' => '1.32',
9041             'Socket' => '2.012',
9042             'Storable' => '2.47',
9043             'Term::ReadLine' => '1.14',
9044             'Test::Builder' => '0.98_06',
9045             'Test::Builder::Module' => '0.98_06',
9046             'Test::More' => '0.98_06',
9047             'Test::Simple' => '0.98_06',
9048             'Time::Piece' => '1.23',
9049             'Time::Seconds' => '1.23',
9050             'Unicode::Collate' => '0.99',
9051             'Unicode::UCD' => '0.54',
9052             'XS::APItest' => '0.56',
9053             'XS::Typemap' => '0.11',
9054             '_charnames' => '1.39',
9055             'autodie' => '2.21',
9056             'autodie::exception' => '2.21',
9057             'autodie::exception::system'=> '2.21',
9058             'autodie::hints' => '2.21',
9059             'autodie::skip' => '2.21',
9060             'charnames' => '1.39',
9061             'diagnostics' => '1.33',
9062             'mro' => '1.14',
9063             'parent' => '0.228',
9064             'perlfaq' => '5.0150044',
9065             're' => '0.26',
9066             'version' => '0.9904',
9067             'warnings' => '1.19',
9068             },
9069             removed => {
9070             }
9071             },
9072             5.019005 => {
9073             delta_from => 5.019004,
9074             changed => {
9075             'App::Prove' => '3.29',
9076             'App::Prove::State' => '3.29',
9077             'App::Prove::State::Result'=> '3.29',
9078             'App::Prove::State::Result::Test'=> '3.29',
9079             'CPAN::Meta' => '2.132830',
9080             'CPAN::Meta::Converter' => '2.132830',
9081             'CPAN::Meta::Feature' => '2.132830',
9082             'CPAN::Meta::History' => '2.132830',
9083             'CPAN::Meta::Prereqs' => '2.132830',
9084             'CPAN::Meta::Requirements'=> '2.125',
9085             'CPAN::Meta::Spec' => '2.132830',
9086             'CPAN::Meta::Validator' => '2.132830',
9087             'CPAN::Meta::YAML' => '0.010',
9088             'Config' => '5.019005',
9089             'Cwd' => '3.45',
9090             'ExtUtils::Command::MM' => '6.80',
9091             'ExtUtils::Install' => '1.61',
9092             'ExtUtils::Liblist' => '6.80',
9093             'ExtUtils::Liblist::Kid'=> '6.80',
9094             'ExtUtils::MM' => '6.80',
9095             'ExtUtils::MM_AIX' => '6.80',
9096             'ExtUtils::MM_Any' => '6.80',
9097             'ExtUtils::MM_BeOS' => '6.80',
9098             'ExtUtils::MM_Cygwin' => '6.80',
9099             'ExtUtils::MM_DOS' => '6.80',
9100             'ExtUtils::MM_Darwin' => '6.80',
9101             'ExtUtils::MM_MacOS' => '6.80',
9102             'ExtUtils::MM_NW5' => '6.80',
9103             'ExtUtils::MM_OS2' => '6.80',
9104             'ExtUtils::MM_QNX' => '6.80',
9105             'ExtUtils::MM_UWIN' => '6.80',
9106             'ExtUtils::MM_Unix' => '6.80',
9107             'ExtUtils::MM_VMS' => '6.80',
9108             'ExtUtils::MM_VOS' => '6.80',
9109             'ExtUtils::MM_Win32' => '6.80',
9110             'ExtUtils::MM_Win95' => '6.80',
9111             'ExtUtils::MY' => '6.80',
9112             'ExtUtils::MakeMaker' => '6.80',
9113             'ExtUtils::MakeMaker::Config'=> '6.80',
9114             'ExtUtils::Mkbootstrap' => '6.80',
9115             'ExtUtils::Mksymlists' => '6.80',
9116             'ExtUtils::testlib' => '6.80',
9117             'Fatal' => '2.22',
9118             'File::Fetch' => '0.44',
9119             'File::Glob' => '1.22',
9120             'File::Spec' => '3.45',
9121             'File::Spec::Cygwin' => '3.45',
9122             'File::Spec::Epoc' => '3.45',
9123             'File::Spec::Functions' => '3.45',
9124             'File::Spec::Mac' => '3.45',
9125             'File::Spec::OS2' => '3.45',
9126             'File::Spec::Unix' => '3.45',
9127             'File::Spec::VMS' => '3.45',
9128             'File::Spec::Win32' => '3.45',
9129             'File::Temp' => '0.2304',
9130             'Getopt::Long' => '2.42',
9131             'HTTP::Tiny' => '0.036',
9132             'IPC::Cmd' => '0.84_01',
9133             'JSON::PP' => '2.27203',
9134             'List::Util' => '1.35',
9135             'List::Util::XS' => '1.35',
9136             'Module::CoreList' => '3.00',
9137             'Module::CoreList::TieHashDelta'=> '3.00',
9138             'Module::CoreList::Utils'=> '3.00',
9139             'Module::Metadata' => '1.000019',
9140             'Parse::CPAN::Meta' => '1.4409',
9141             'Perl::OSType' => '1.006',
9142             'PerlIO::scalar' => '0.17',
9143             'Pod::Man' => '2.28',
9144             'Pod::Text' => '3.18',
9145             'Pod::Text::Termcap' => '2.08',
9146             'Scalar::Util' => '1.35',
9147             'TAP::Base' => '3.29',
9148             'TAP::Formatter::Base' => '3.29',
9149             'TAP::Formatter::Color' => '3.29',
9150             'TAP::Formatter::Console'=> '3.29',
9151             'TAP::Formatter::Console::ParallelSession'=> '3.29',
9152             'TAP::Formatter::Console::Session'=> '3.29',
9153             'TAP::Formatter::File' => '3.29',
9154             'TAP::Formatter::File::Session'=> '3.29',
9155             'TAP::Formatter::Session'=> '3.29',
9156             'TAP::Harness' => '3.29',
9157             'TAP::Harness::Env' => '3.29',
9158             'TAP::Object' => '3.29',
9159             'TAP::Parser' => '3.29',
9160             'TAP::Parser::Aggregator'=> '3.29',
9161             'TAP::Parser::Grammar' => '3.29',
9162             'TAP::Parser::Iterator' => '3.29',
9163             'TAP::Parser::Iterator::Array'=> '3.29',
9164             'TAP::Parser::Iterator::Process'=> '3.29',
9165             'TAP::Parser::Iterator::Stream'=> '3.29',
9166             'TAP::Parser::IteratorFactory'=> '3.29',
9167             'TAP::Parser::Multiplexer'=> '3.29',
9168             'TAP::Parser::Result' => '3.29',
9169             'TAP::Parser::Result::Bailout'=> '3.29',
9170             'TAP::Parser::Result::Comment'=> '3.29',
9171             'TAP::Parser::Result::Plan'=> '3.29',
9172             'TAP::Parser::Result::Pragma'=> '3.29',
9173             'TAP::Parser::Result::Test'=> '3.29',
9174             'TAP::Parser::Result::Unknown'=> '3.29',
9175             'TAP::Parser::Result::Version'=> '3.29',
9176             'TAP::Parser::Result::YAML'=> '3.29',
9177             'TAP::Parser::ResultFactory'=> '3.29',
9178             'TAP::Parser::Scheduler'=> '3.29',
9179             'TAP::Parser::Scheduler::Job'=> '3.29',
9180             'TAP::Parser::Scheduler::Spinner'=> '3.29',
9181             'TAP::Parser::Source' => '3.29',
9182             'TAP::Parser::SourceHandler'=> '3.29',
9183             'TAP::Parser::SourceHandler::Executable'=> '3.29',
9184             'TAP::Parser::SourceHandler::File'=> '3.29',
9185             'TAP::Parser::SourceHandler::Handle'=> '3.29',
9186             'TAP::Parser::SourceHandler::Perl'=> '3.29',
9187             'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9188             'TAP::Parser::YAMLish::Reader'=> '3.29',
9189             'TAP::Parser::YAMLish::Writer'=> '3.29',
9190             'Test::Builder' => '0.99',
9191             'Test::Builder::Module' => '0.99',
9192             'Test::Builder::Tester' => '1.23_002',
9193             'Test::Builder::Tester::Color'=> '1.23_002',
9194             'Test::Harness' => '3.29',
9195             'Test::More' => '0.99',
9196             'Test::Simple' => '0.99',
9197             'Unicode' => '6.3.0',
9198             'Unicode::Normalize' => '1.17',
9199             'Unicode::UCD' => '0.55',
9200             'attributes' => '0.22',
9201             'autodie' => '2.22',
9202             'autodie::exception' => '2.22',
9203             'autodie::exception::system'=> '2.22',
9204             'autodie::hints' => '2.22',
9205             'autodie::skip' => '2.22',
9206             'feature' => '1.34',
9207             'threads' => '1.89',
9208             'warnings' => '1.20',
9209             },
9210             removed => {
9211             'TAP::Parser::Utils' => 1,
9212             }
9213             },
9214             5.019006 => {
9215             delta_from => 5.019005,
9216             changed => {
9217             'App::Prove' => '3.30',
9218             'App::Prove::State' => '3.30',
9219             'App::Prove::State::Result'=> '3.30',
9220             'App::Prove::State::Result::Test'=> '3.30',
9221             'Archive::Tar' => '1.96',
9222             'Archive::Tar::Constant'=> '1.96',
9223             'Archive::Tar::File' => '1.96',
9224             'AutoLoader' => '5.74',
9225             'B' => '1.47',
9226             'B::Concise' => '0.991',
9227             'B::Debug' => '1.19',
9228             'B::Deparse' => '1.24',
9229             'Benchmark' => '1.18',
9230             'Compress::Raw::Bzip2' => '2.063',
9231             'Compress::Raw::Zlib' => '2.063',
9232             'Compress::Zlib' => '2.063',
9233             'Config' => '5.019006',
9234             'DB_File' => '1.831',
9235             'Devel::Peek' => '1.15',
9236             'DynaLoader' => '1.21',
9237             'Errno' => '1.20_01',
9238             'ExtUtils::Command::MM' => '6.82',
9239             'ExtUtils::Liblist' => '6.82',
9240             'ExtUtils::Liblist::Kid'=> '6.82',
9241             'ExtUtils::MM' => '6.82',
9242             'ExtUtils::MM_AIX' => '6.82',
9243             'ExtUtils::MM_Any' => '6.82',
9244             'ExtUtils::MM_BeOS' => '6.82',
9245             'ExtUtils::MM_Cygwin' => '6.82',
9246             'ExtUtils::MM_DOS' => '6.82',
9247             'ExtUtils::MM_Darwin' => '6.82',
9248             'ExtUtils::MM_MacOS' => '6.82',
9249             'ExtUtils::MM_NW5' => '6.82',
9250             'ExtUtils::MM_OS2' => '6.82',
9251             'ExtUtils::MM_QNX' => '6.82',
9252             'ExtUtils::MM_UWIN' => '6.82',
9253             'ExtUtils::MM_Unix' => '6.82',
9254             'ExtUtils::MM_VMS' => '6.82',
9255             'ExtUtils::MM_VOS' => '6.82',
9256             'ExtUtils::MM_Win32' => '6.82',
9257             'ExtUtils::MM_Win95' => '6.82',
9258             'ExtUtils::MY' => '6.82',
9259             'ExtUtils::MakeMaker' => '6.82',
9260             'ExtUtils::MakeMaker::Config'=> '6.82',
9261             'ExtUtils::Mkbootstrap' => '6.82',
9262             'ExtUtils::Mksymlists' => '6.82',
9263             'ExtUtils::testlib' => '6.82',
9264             'File::DosGlob' => '1.12',
9265             'File::Find' => '1.26',
9266             'File::Glob' => '1.23',
9267             'HTTP::Tiny' => '0.038',
9268             'IO' => '1.30',
9269             'IO::Compress::Adapter::Bzip2'=> '2.063',
9270             'IO::Compress::Adapter::Deflate'=> '2.063',
9271             'IO::Compress::Adapter::Identity'=> '2.063',
9272             'IO::Compress::Base' => '2.063',
9273             'IO::Compress::Base::Common'=> '2.063',
9274             'IO::Compress::Bzip2' => '2.063',
9275             'IO::Compress::Deflate' => '2.063',
9276             'IO::Compress::Gzip' => '2.063',
9277             'IO::Compress::Gzip::Constants'=> '2.063',
9278             'IO::Compress::RawDeflate'=> '2.063',
9279             'IO::Compress::Zip' => '2.063',
9280             'IO::Compress::Zip::Constants'=> '2.063',
9281             'IO::Compress::Zlib::Constants'=> '2.063',
9282             'IO::Compress::Zlib::Extra'=> '2.063',
9283             'IO::Select' => '1.22',
9284             'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9285             'IO::Uncompress::Adapter::Identity'=> '2.063',
9286             'IO::Uncompress::Adapter::Inflate'=> '2.063',
9287             'IO::Uncompress::AnyInflate'=> '2.063',
9288             'IO::Uncompress::AnyUncompress'=> '2.063',
9289             'IO::Uncompress::Base' => '2.063',
9290             'IO::Uncompress::Bunzip2'=> '2.063',
9291             'IO::Uncompress::Gunzip'=> '2.063',
9292             'IO::Uncompress::Inflate'=> '2.063',
9293             'IO::Uncompress::RawInflate'=> '2.063',
9294             'IO::Uncompress::Unzip' => '2.063',
9295             'IPC::Cmd' => '0.90',
9296             'Locale::Maketext' => '1.25',
9297             'Module::Build' => '0.4202',
9298             'Module::Build::Base' => '0.4202',
9299             'Module::Build::Compat' => '0.4202',
9300             'Module::Build::Config' => '0.4202',
9301             'Module::Build::Cookbook'=> '0.4202',
9302             'Module::Build::Dumper' => '0.4202',
9303             'Module::Build::ModuleInfo'=> '0.4202',
9304             'Module::Build::Notes' => '0.4202',
9305             'Module::Build::PPMMaker'=> '0.4202',
9306             'Module::Build::Platform::Default'=> '0.4202',
9307             'Module::Build::Platform::MacOS'=> '0.4202',
9308             'Module::Build::Platform::Unix'=> '0.4202',
9309             'Module::Build::Platform::VMS'=> '0.4202',
9310             'Module::Build::Platform::VOS'=> '0.4202',
9311             'Module::Build::Platform::Windows'=> '0.4202',
9312             'Module::Build::Platform::aix'=> '0.4202',
9313             'Module::Build::Platform::cygwin'=> '0.4202',
9314             'Module::Build::Platform::darwin'=> '0.4202',
9315             'Module::Build::Platform::os2'=> '0.4202',
9316             'Module::Build::PodParser'=> '0.4202',
9317             'Module::CoreList' => '3.01',
9318             'Module::CoreList::TieHashDelta'=> '3.01',
9319             'Module::CoreList::Utils'=> '3.01',
9320             'Opcode' => '1.27',
9321             'POSIX' => '1.36',
9322             'Package::Constants' => '0.04',
9323             'PerlIO::scalar' => '0.18',
9324             'PerlIO::via' => '0.13',
9325             'SDBM_File' => '1.10',
9326             'Socket' => '2.013',
9327             'TAP::Base' => '3.30',
9328             'TAP::Formatter::Base' => '3.30',
9329             'TAP::Formatter::Color' => '3.30',
9330             'TAP::Formatter::Console'=> '3.30',
9331             'TAP::Formatter::Console::ParallelSession'=> '3.30',
9332             'TAP::Formatter::Console::Session'=> '3.30',
9333             'TAP::Formatter::File' => '3.30',
9334             'TAP::Formatter::File::Session'=> '3.30',
9335             'TAP::Formatter::Session'=> '3.30',
9336             'TAP::Harness' => '3.30',
9337             'TAP::Harness::Env' => '3.30',
9338             'TAP::Object' => '3.30',
9339             'TAP::Parser' => '3.30',
9340             'TAP::Parser::Aggregator'=> '3.30',
9341             'TAP::Parser::Grammar' => '3.30',
9342             'TAP::Parser::Iterator' => '3.30',
9343             'TAP::Parser::Iterator::Array'=> '3.30',
9344             'TAP::Parser::Iterator::Process'=> '3.30',
9345             'TAP::Parser::Iterator::Stream'=> '3.30',
9346             'TAP::Parser::IteratorFactory'=> '3.30',
9347             'TAP::Parser::Multiplexer'=> '3.30',
9348             'TAP::Parser::Result' => '3.30',
9349             'TAP::Parser::Result::Bailout'=> '3.30',
9350             'TAP::Parser::Result::Comment'=> '3.30',
9351             'TAP::Parser::Result::Plan'=> '3.30',
9352             'TAP::Parser::Result::Pragma'=> '3.30',
9353             'TAP::Parser::Result::Test'=> '3.30',
9354             'TAP::Parser::Result::Unknown'=> '3.30',
9355             'TAP::Parser::Result::Version'=> '3.30',
9356             'TAP::Parser::Result::YAML'=> '3.30',
9357             'TAP::Parser::ResultFactory'=> '3.30',
9358             'TAP::Parser::Scheduler'=> '3.30',
9359             'TAP::Parser::Scheduler::Job'=> '3.30',
9360             'TAP::Parser::Scheduler::Spinner'=> '3.30',
9361             'TAP::Parser::Source' => '3.30',
9362             'TAP::Parser::SourceHandler'=> '3.30',
9363             'TAP::Parser::SourceHandler::Executable'=> '3.30',
9364             'TAP::Parser::SourceHandler::File'=> '3.30',
9365             'TAP::Parser::SourceHandler::Handle'=> '3.30',
9366             'TAP::Parser::SourceHandler::Perl'=> '3.30',
9367             'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9368             'TAP::Parser::YAMLish::Reader'=> '3.30',
9369             'TAP::Parser::YAMLish::Writer'=> '3.30',
9370             'Term::Cap' => '1.15',
9371             'Test::Builder' => '1.001002',
9372             'Test::Builder::Module' => '1.001002',
9373             'Test::Harness' => '3.30',
9374             'Test::More' => '1.001002',
9375             'Test::Simple' => '1.001002',
9376             'Tie::StdHandle' => '4.4',
9377             'Unicode::Collate' => '1.02',
9378             'Unicode::Collate::CJK::Korean'=> '1.02',
9379             'Unicode::Collate::Locale'=> '1.02',
9380             'XS::APItest' => '0.57',
9381             'XS::Typemap' => '0.12',
9382             'arybase' => '0.07',
9383             'bignum' => '0.37',
9384             'constant' => '1.29',
9385             'fields' => '2.17',
9386             'inc::latest' => '0.4202',
9387             'threads' => '1.90',
9388             'threads::shared' => '1.45',
9389             },
9390             removed => {
9391             }
9392             },
9393             5.019007 => {
9394             delta_from => 5.019006,
9395             changed => {
9396             'CGI' => '3.64',
9397             'CGI::Apache' => '1.02',
9398             'CGI::Carp' => '3.64',
9399             'CGI::Cookie' => '1.31',
9400             'CGI::Fast' => '1.10',
9401             'CGI::Pretty' => '3.64',
9402             'CGI::Push' => '1.06',
9403             'CGI::Switch' => '1.02',
9404             'CGI::Util' => '3.64',
9405             'CPAN::Meta' => '2.133380',
9406             'CPAN::Meta::Converter' => '2.133380',
9407             'CPAN::Meta::Feature' => '2.133380',
9408             'CPAN::Meta::History' => '2.133380',
9409             'CPAN::Meta::Prereqs' => '2.133380',
9410             'CPAN::Meta::Spec' => '2.133380',
9411             'CPAN::Meta::Validator' => '2.133380',
9412             'Config' => '5.019007',
9413             'Data::Dumper' => '2.150',
9414             'DynaLoader' => '1.22',
9415             'ExtUtils::Command::MM' => '6.84',
9416             'ExtUtils::Liblist' => '6.84',
9417             'ExtUtils::Liblist::Kid'=> '6.84',
9418             'ExtUtils::MM' => '6.84',
9419             'ExtUtils::MM_AIX' => '6.84',
9420             'ExtUtils::MM_Any' => '6.84',
9421             'ExtUtils::MM_BeOS' => '6.84',
9422             'ExtUtils::MM_Cygwin' => '6.84',
9423             'ExtUtils::MM_DOS' => '6.84',
9424             'ExtUtils::MM_Darwin' => '6.84',
9425             'ExtUtils::MM_MacOS' => '6.84',
9426             'ExtUtils::MM_NW5' => '6.84',
9427             'ExtUtils::MM_OS2' => '6.84',
9428             'ExtUtils::MM_QNX' => '6.84',
9429             'ExtUtils::MM_UWIN' => '6.84',
9430             'ExtUtils::MM_Unix' => '6.84',
9431             'ExtUtils::MM_VMS' => '6.84',
9432             'ExtUtils::MM_VOS' => '6.84',
9433             'ExtUtils::MM_Win32' => '6.84',
9434             'ExtUtils::MM_Win95' => '6.84',
9435             'ExtUtils::MY' => '6.84',
9436             'ExtUtils::MakeMaker' => '6.84',
9437             'ExtUtils::MakeMaker::Config'=> '6.84',
9438             'ExtUtils::Mkbootstrap' => '6.84',
9439             'ExtUtils::Mksymlists' => '6.84',
9440             'ExtUtils::testlib' => '6.84',
9441             'File::Fetch' => '0.46',
9442             'HTTP::Tiny' => '0.039',
9443             'Locale::Codes' => '3.28',
9444             'Locale::Codes::Constants'=> '3.28',
9445             'Locale::Codes::Country'=> '3.28',
9446             'Locale::Codes::Country_Codes'=> '3.28',
9447             'Locale::Codes::Country_Retired'=> '3.28',
9448             'Locale::Codes::Currency'=> '3.28',
9449             'Locale::Codes::Currency_Codes'=> '3.28',
9450             'Locale::Codes::Currency_Retired'=> '3.28',
9451             'Locale::Codes::LangExt'=> '3.28',
9452             'Locale::Codes::LangExt_Codes'=> '3.28',
9453             'Locale::Codes::LangExt_Retired'=> '3.28',
9454             'Locale::Codes::LangFam'=> '3.28',
9455             'Locale::Codes::LangFam_Codes'=> '3.28',
9456             'Locale::Codes::LangFam_Retired'=> '3.28',
9457             'Locale::Codes::LangVar'=> '3.28',
9458             'Locale::Codes::LangVar_Codes'=> '3.28',
9459             'Locale::Codes::LangVar_Retired'=> '3.28',
9460             'Locale::Codes::Language'=> '3.28',
9461             'Locale::Codes::Language_Codes'=> '3.28',
9462             'Locale::Codes::Language_Retired'=> '3.28',
9463             'Locale::Codes::Script' => '3.28',
9464             'Locale::Codes::Script_Codes'=> '3.28',
9465             'Locale::Codes::Script_Retired'=> '3.28',
9466             'Locale::Country' => '3.28',
9467             'Locale::Currency' => '3.28',
9468             'Locale::Language' => '3.28',
9469             'Locale::Script' => '3.28',
9470             'Module::Build' => '0.4203',
9471             'Module::Build::Base' => '0.4203',
9472             'Module::Build::Compat' => '0.4203',
9473             'Module::Build::Config' => '0.4203',
9474             'Module::Build::Cookbook'=> '0.4203',
9475             'Module::Build::Dumper' => '0.4203',
9476             'Module::Build::ModuleInfo'=> '0.4203',
9477             'Module::Build::Notes' => '0.4203',
9478             'Module::Build::PPMMaker'=> '0.4203',
9479             'Module::Build::Platform::Default'=> '0.4203',
9480             'Module::Build::Platform::MacOS'=> '0.4203',
9481             'Module::Build::Platform::Unix'=> '0.4203',
9482             'Module::Build::Platform::VMS'=> '0.4203',
9483             'Module::Build::Platform::VOS'=> '0.4203',
9484             'Module::Build::Platform::Windows'=> '0.4203',
9485             'Module::Build::Platform::aix'=> '0.4203',
9486             'Module::Build::Platform::cygwin'=> '0.4203',
9487             'Module::Build::Platform::darwin'=> '0.4203',
9488             'Module::Build::Platform::os2'=> '0.4203',
9489             'Module::Build::PodParser'=> '0.4203',
9490             'Module::CoreList' => '3.02',
9491             'Module::CoreList::TieHashDelta'=> '3.02',
9492             'Module::CoreList::Utils'=> '3.02',
9493             'POSIX' => '1.37',
9494             'PerlIO::encoding' => '0.17',
9495             'PerlIO::via' => '0.14',
9496             'SDBM_File' => '1.11',
9497             'Storable' => '2.48',
9498             'Time::Piece' => '1.24',
9499             'Time::Seconds' => '1.24',
9500             'Unicode::Collate' => '1.04',
9501             'Win32' => '0.48',
9502             'XS::APItest' => '0.58',
9503             'base' => '2.20',
9504             'constant' => '1.30',
9505             'inc::latest' => '0.4203',
9506             'threads' => '1.91',
9507             },
9508             removed => {
9509             }
9510             },
9511             5.019008 => {
9512             delta_from => 5.019007,
9513             changed => {
9514             'Config' => '5.019008',
9515             'DynaLoader' => '1.24',
9516             'Encode' => '2.57',
9517             'Errno' => '1.20_02',
9518             'ExtUtils::CBuilder' => '0.280213',
9519             'ExtUtils::CBuilder::Base'=> '0.280213',
9520             'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9521             'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9522             'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9523             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9524             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9525             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9526             'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9527             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9528             'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9529             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9530             'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9531             'ExtUtils::Command::MM' => '6.86',
9532             'ExtUtils::Liblist' => '6.86',
9533             'ExtUtils::Liblist::Kid'=> '6.86',
9534             'ExtUtils::MM' => '6.86',
9535             'ExtUtils::MM_AIX' => '6.86',
9536             'ExtUtils::MM_Any' => '6.86',
9537             'ExtUtils::MM_BeOS' => '6.86',
9538             'ExtUtils::MM_Cygwin' => '6.86',
9539             'ExtUtils::MM_DOS' => '6.86',
9540             'ExtUtils::MM_Darwin' => '6.86',
9541             'ExtUtils::MM_MacOS' => '6.86',
9542             'ExtUtils::MM_NW5' => '6.86',
9543             'ExtUtils::MM_OS2' => '6.86',
9544             'ExtUtils::MM_QNX' => '6.86',
9545             'ExtUtils::MM_UWIN' => '6.86',
9546             'ExtUtils::MM_Unix' => '6.86',
9547             'ExtUtils::MM_VMS' => '6.86',
9548             'ExtUtils::MM_VOS' => '6.86',
9549             'ExtUtils::MM_Win32' => '6.86',
9550             'ExtUtils::MM_Win95' => '6.86',
9551             'ExtUtils::MY' => '6.86',
9552             'ExtUtils::MakeMaker' => '6.86',
9553             'ExtUtils::MakeMaker::Config'=> '6.86',
9554             'ExtUtils::Mkbootstrap' => '6.86',
9555             'ExtUtils::Mksymlists' => '6.86',
9556             'ExtUtils::testlib' => '6.86',
9557             'File::Copy' => '2.29',
9558             'Hash::Util::FieldHash' => '1.14',
9559             'IO::Socket::IP' => '0.26',
9560             'IO::Socket::UNIX' => '1.26',
9561             'List::Util' => '1.36',
9562             'List::Util::XS' => '1.36',
9563             'Module::Build' => '0.4204',
9564             'Module::Build::Base' => '0.4204',
9565             'Module::Build::Compat' => '0.4204',
9566             'Module::Build::Config' => '0.4204',
9567             'Module::Build::Cookbook'=> '0.4204',
9568             'Module::Build::Dumper' => '0.4204',
9569             'Module::Build::ModuleInfo'=> '0.4204',
9570             'Module::Build::Notes' => '0.4204',
9571             'Module::Build::PPMMaker'=> '0.4204',
9572             'Module::Build::Platform::Default'=> '0.4204',
9573             'Module::Build::Platform::MacOS'=> '0.4204',
9574             'Module::Build::Platform::Unix'=> '0.4204',
9575             'Module::Build::Platform::VMS'=> '0.4204',
9576             'Module::Build::Platform::VOS'=> '0.4204',
9577             'Module::Build::Platform::Windows'=> '0.4204',
9578             'Module::Build::Platform::aix'=> '0.4204',
9579             'Module::Build::Platform::cygwin'=> '0.4204',
9580             'Module::Build::Platform::darwin'=> '0.4204',
9581             'Module::Build::Platform::os2'=> '0.4204',
9582             'Module::Build::PodParser'=> '0.4204',
9583             'Module::CoreList' => '3.04',
9584             'Module::CoreList::TieHashDelta'=> '3.04',
9585             'Module::CoreList::Utils'=> '3.04',
9586             'Module::Load' => '0.28',
9587             'Module::Load::Conditional'=> '0.60',
9588             'Net::Config' => '1.13',
9589             'Net::FTP::A' => '1.19',
9590             'POSIX' => '1.38_01',
9591             'Perl::OSType' => '1.007',
9592             'PerlIO::encoding' => '0.18',
9593             'Pod::Perldoc' => '3.21',
9594             'Pod::Perldoc::BaseTo' => '3.21',
9595             'Pod::Perldoc::GetOptsOO'=> '3.21',
9596             'Pod::Perldoc::ToANSI' => '3.21',
9597             'Pod::Perldoc::ToChecker'=> '3.21',
9598             'Pod::Perldoc::ToMan' => '3.21',
9599             'Pod::Perldoc::ToNroff' => '3.21',
9600             'Pod::Perldoc::ToPod' => '3.21',
9601             'Pod::Perldoc::ToRtf' => '3.21',
9602             'Pod::Perldoc::ToTerm' => '3.21',
9603             'Pod::Perldoc::ToText' => '3.21',
9604             'Pod::Perldoc::ToTk' => '3.21',
9605             'Pod::Perldoc::ToXml' => '3.21',
9606             'Scalar::Util' => '1.36',
9607             'Time::Piece' => '1.27',
9608             'Time::Seconds' => '1.27',
9609             'Unicode::UCD' => '0.57',
9610             'XS::APItest' => '0.59',
9611             'XSLoader' => '0.17',
9612             'base' => '2.21',
9613             'constant' => '1.31',
9614             'inc::latest' => '0.4204',
9615             'threads::shared' => '1.46',
9616             'version' => '0.9907',
9617             'version::regex' => '0.9907',
9618             'version::vpp' => '0.9907',
9619             'warnings' => '1.21',
9620             },
9621             removed => {
9622             }
9623             },
9624             5.019009 => {
9625             delta_from => 5.019008,
9626             changed => {
9627             'B' => '1.48',
9628             'B::Concise' => '0.992',
9629             'B::Deparse' => '1.25',
9630             'CGI' => '3.65',
9631             'CPAN::Meta::YAML' => '0.011',
9632             'Compress::Raw::Bzip2' => '2.064',
9633             'Compress::Raw::Zlib' => '2.065',
9634             'Compress::Zlib' => '2.064',
9635             'Config' => '5.019009',
9636             'Config::Perl::V' => '0.20',
9637             'Cwd' => '3.47',
9638             'Devel::Peek' => '1.16',
9639             'Digest::SHA' => '5.87',
9640             'DynaLoader' => '1.25',
9641             'English' => '1.09',
9642             'ExtUtils::CBuilder' => '0.280216',
9643             'ExtUtils::CBuilder::Base'=> '0.280216',
9644             'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9645             'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9646             'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9647             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9648             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9649             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9650             'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9651             'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9652             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9653             'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9654             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9655             'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9656             'ExtUtils::Command::MM' => '6.88',
9657             'ExtUtils::Embed' => '1.32',
9658             'ExtUtils::Install' => '1.62',
9659             'ExtUtils::Installed' => '1.999004',
9660             'ExtUtils::Liblist' => '6.88',
9661             'ExtUtils::Liblist::Kid'=> '6.88',
9662             'ExtUtils::MM' => '6.88',
9663             'ExtUtils::MM_AIX' => '6.88',
9664             'ExtUtils::MM_Any' => '6.88',
9665             'ExtUtils::MM_BeOS' => '6.88',
9666             'ExtUtils::MM_Cygwin' => '6.88',
9667             'ExtUtils::MM_DOS' => '6.88',
9668             'ExtUtils::MM_Darwin' => '6.88',
9669             'ExtUtils::MM_MacOS' => '6.88',
9670             'ExtUtils::MM_NW5' => '6.88',
9671             'ExtUtils::MM_OS2' => '6.88',
9672             'ExtUtils::MM_QNX' => '6.88',
9673             'ExtUtils::MM_UWIN' => '6.88',
9674             'ExtUtils::MM_Unix' => '6.88',
9675             'ExtUtils::MM_VMS' => '6.88',
9676             'ExtUtils::MM_VOS' => '6.88',
9677             'ExtUtils::MM_Win32' => '6.88',
9678             'ExtUtils::MM_Win95' => '6.88',
9679             'ExtUtils::MY' => '6.88',
9680             'ExtUtils::MakeMaker' => '6.88',
9681             'ExtUtils::MakeMaker::Config'=> '6.88',
9682             'ExtUtils::Mkbootstrap' => '6.88',
9683             'ExtUtils::Mksymlists' => '6.88',
9684             'ExtUtils::Packlist' => '1.47',
9685             'ExtUtils::testlib' => '6.88',
9686             'Fatal' => '2.23',
9687             'File::Fetch' => '0.48',
9688             'File::Spec' => '3.47',
9689             'File::Spec::Cygwin' => '3.47',
9690             'File::Spec::Epoc' => '3.47',
9691             'File::Spec::Functions' => '3.47',
9692             'File::Spec::Mac' => '3.47',
9693             'File::Spec::OS2' => '3.47',
9694             'File::Spec::Unix' => '3.47',
9695             'File::Spec::VMS' => '3.47',
9696             'File::Spec::Win32' => '3.47',
9697             'HTTP::Tiny' => '0.042',
9698             'IO::Compress::Adapter::Bzip2'=> '2.064',
9699             'IO::Compress::Adapter::Deflate'=> '2.064',
9700             'IO::Compress::Adapter::Identity'=> '2.064',
9701             'IO::Compress::Base' => '2.064',
9702             'IO::Compress::Base::Common'=> '2.064',
9703             'IO::Compress::Bzip2' => '2.064',
9704             'IO::Compress::Deflate' => '2.064',
9705             'IO::Compress::Gzip' => '2.064',
9706             'IO::Compress::Gzip::Constants'=> '2.064',
9707             'IO::Compress::RawDeflate'=> '2.064',
9708             'IO::Compress::Zip' => '2.064',
9709             'IO::Compress::Zip::Constants'=> '2.064',
9710             'IO::Compress::Zlib::Constants'=> '2.064',
9711             'IO::Compress::Zlib::Extra'=> '2.064',
9712             'IO::Socket::INET' => '1.35',
9713             'IO::Socket::IP' => '0.28',
9714             'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9715             'IO::Uncompress::Adapter::Identity'=> '2.064',
9716             'IO::Uncompress::Adapter::Inflate'=> '2.064',
9717             'IO::Uncompress::AnyInflate'=> '2.064',
9718             'IO::Uncompress::AnyUncompress'=> '2.064',
9719             'IO::Uncompress::Base' => '2.064',
9720             'IO::Uncompress::Bunzip2'=> '2.064',
9721             'IO::Uncompress::Gunzip'=> '2.064',
9722             'IO::Uncompress::Inflate'=> '2.064',
9723             'IO::Uncompress::RawInflate'=> '2.064',
9724             'IO::Uncompress::Unzip' => '2.064',
9725             'IPC::Cmd' => '0.92',
9726             'List::Util' => '1.38',
9727             'List::Util::XS' => '1.38',
9728             'Locale::Codes' => '3.29',
9729             'Locale::Codes::Constants'=> '3.29',
9730             'Locale::Codes::Country'=> '3.29',
9731             'Locale::Codes::Country_Codes'=> '3.29',
9732             'Locale::Codes::Country_Retired'=> '3.29',
9733             'Locale::Codes::Currency'=> '3.29',
9734             'Locale::Codes::Currency_Codes'=> '3.29',
9735             'Locale::Codes::Currency_Retired'=> '3.29',
9736             'Locale::Codes::LangExt'=> '3.29',
9737             'Locale::Codes::LangExt_Codes'=> '3.29',
9738             'Locale::Codes::LangExt_Retired'=> '3.29',
9739             'Locale::Codes::LangFam'=> '3.29',
9740             'Locale::Codes::LangFam_Codes'=> '3.29',
9741             'Locale::Codes::LangFam_Retired'=> '3.29',
9742             'Locale::Codes::LangVar'=> '3.29',
9743             'Locale::Codes::LangVar_Codes'=> '3.29',
9744             'Locale::Codes::LangVar_Retired'=> '3.29',
9745             'Locale::Codes::Language'=> '3.29',
9746             'Locale::Codes::Language_Codes'=> '3.29',
9747             'Locale::Codes::Language_Retired'=> '3.29',
9748             'Locale::Codes::Script' => '3.29',
9749             'Locale::Codes::Script_Codes'=> '3.29',
9750             'Locale::Codes::Script_Retired'=> '3.29',
9751             'Locale::Country' => '3.29',
9752             'Locale::Currency' => '3.29',
9753             'Locale::Language' => '3.29',
9754             'Locale::Script' => '3.29',
9755             'Module::Build' => '0.4205',
9756             'Module::Build::Base' => '0.4205',
9757             'Module::Build::Compat' => '0.4205',
9758             'Module::Build::Config' => '0.4205',
9759             'Module::Build::Cookbook'=> '0.4205',
9760             'Module::Build::Dumper' => '0.4205',
9761             'Module::Build::ModuleInfo'=> '0.4205',
9762             'Module::Build::Notes' => '0.4205',
9763             'Module::Build::PPMMaker'=> '0.4205',
9764             'Module::Build::Platform::Default'=> '0.4205',
9765             'Module::Build::Platform::MacOS'=> '0.4205',
9766             'Module::Build::Platform::Unix'=> '0.4205',
9767             'Module::Build::Platform::VMS'=> '0.4205',
9768             'Module::Build::Platform::VOS'=> '0.4205',
9769             'Module::Build::Platform::Windows'=> '0.4205',
9770             'Module::Build::Platform::aix'=> '0.4205',
9771             'Module::Build::Platform::cygwin'=> '0.4205',
9772             'Module::Build::Platform::darwin'=> '0.4205',
9773             'Module::Build::Platform::os2'=> '0.4205',
9774             'Module::Build::PodParser'=> '0.4205',
9775             'Module::CoreList' => '3.06',
9776             'Module::CoreList::TieHashDelta'=> '3.06',
9777             'Module::CoreList::Utils'=> '3.06',
9778             'Module::Load' => '0.30',
9779             'Module::Load::Conditional'=> '0.62',
9780             'Net::Domain' => '2.23',
9781             'Net::FTP' => '2.79',
9782             'Net::NNTP' => '2.26',
9783             'Net::POP3' => '2.31',
9784             'Net::Ping' => '2.43',
9785             'Net::SMTP' => '2.33',
9786             'POSIX' => '1.38_02',
9787             'Parse::CPAN::Meta' => '1.4413',
9788             'Pod::Escapes' => '1.06',
9789             'Pod::Find' => '1.62',
9790             'Pod::InputObjects' => '1.62',
9791             'Pod::ParseUtils' => '1.62',
9792             'Pod::Parser' => '1.62',
9793             'Pod::Select' => '1.62',
9794             'Scalar::Util' => '1.38',
9795             'autodie' => '2.23',
9796             'autodie::exception' => '2.23',
9797             'autodie::exception::system'=> '2.23',
9798             'autodie::hints' => '2.23',
9799             'autodie::skip' => '2.23',
9800             'diagnostics' => '1.34',
9801             'feature' => '1.35',
9802             'inc::latest' => '0.4205',
9803             'locale' => '1.03',
9804             'mro' => '1.15',
9805             'threads' => '1.92',
9806             'version' => '0.9908',
9807             'version::regex' => '0.9908',
9808             'version::vpp' => '0.9908',
9809             'warnings' => '1.22',
9810             },
9811             removed => {
9812             }
9813             },
9814             5.01901 => {
9815             delta_from => 5.019009,
9816             changed => {
9817             'App::Cpan' => '1.62',
9818             'Attribute::Handlers' => '0.96',
9819             'B::Deparse' => '1.26',
9820             'CPAN' => '2.04',
9821             'CPAN::Bundle' => '5.5001',
9822             'CPAN::Complete' => '5.5001',
9823             'CPAN::Distribution' => '2.01',
9824             'CPAN::Distroprefs' => '6.0001',
9825             'CPAN::FirstTime' => '5.5305',
9826             'CPAN::Meta' => '2.140640',
9827             'CPAN::Meta::Converter' => '2.140640',
9828             'CPAN::Meta::Feature' => '2.140640',
9829             'CPAN::Meta::History' => '2.140640',
9830             'CPAN::Meta::Prereqs' => '2.140640',
9831             'CPAN::Meta::Spec' => '2.140640',
9832             'CPAN::Meta::Validator' => '2.140640',
9833             'CPAN::Meta::YAML' => '0.012',
9834             'CPAN::Queue' => '5.5002',
9835             'CPAN::Shell' => '5.5003',
9836             'CPAN::Tarzip' => '5.5012',
9837             'CPAN::Version' => '5.5003',
9838             'Carp' => '1.33',
9839             'Carp::Heavy' => '1.33',
9840             'Config' => '5.019010',
9841             'Data::Dumper' => '2.151',
9842             'Devel::PPPort' => '3.22',
9843             'Digest::SHA' => '5.88',
9844             'ExtUtils::Command::MM' => '6.92',
9845             'ExtUtils::Install' => '1.63',
9846             'ExtUtils::Installed' => '1.999005',
9847             'ExtUtils::Liblist' => '6.92',
9848             'ExtUtils::Liblist::Kid'=> '6.92',
9849             'ExtUtils::MM' => '6.92',
9850             'ExtUtils::MM_AIX' => '6.92',
9851             'ExtUtils::MM_Any' => '6.92',
9852             'ExtUtils::MM_BeOS' => '6.92',
9853             'ExtUtils::MM_Cygwin' => '6.92',
9854             'ExtUtils::MM_DOS' => '6.92',
9855             'ExtUtils::MM_Darwin' => '6.92',
9856             'ExtUtils::MM_MacOS' => '6.92',
9857             'ExtUtils::MM_NW5' => '6.92',
9858             'ExtUtils::MM_OS2' => '6.92',
9859             'ExtUtils::MM_QNX' => '6.92',
9860             'ExtUtils::MM_UWIN' => '6.92',
9861             'ExtUtils::MM_Unix' => '6.92',
9862             'ExtUtils::MM_VMS' => '6.92',
9863             'ExtUtils::MM_VOS' => '6.92',
9864             'ExtUtils::MM_Win32' => '6.92',
9865             'ExtUtils::MM_Win95' => '6.92',
9866             'ExtUtils::MY' => '6.92',
9867             'ExtUtils::MakeMaker' => '6.92',
9868             'ExtUtils::MakeMaker::Config'=> '6.92',
9869             'ExtUtils::Mkbootstrap' => '6.92',
9870             'ExtUtils::Mksymlists' => '6.92',
9871             'ExtUtils::Packlist' => '1.48',
9872             'ExtUtils::ParseXS' => '3.24',
9873             'ExtUtils::ParseXS::Constants'=> '3.24',
9874             'ExtUtils::ParseXS::CountLines'=> '3.24',
9875             'ExtUtils::ParseXS::Eval'=> '3.24',
9876             'ExtUtils::ParseXS::Utilities'=> '3.24',
9877             'ExtUtils::Typemaps' => '3.24',
9878             'ExtUtils::Typemaps::Cmd'=> '3.24',
9879             'ExtUtils::Typemaps::InputMap'=> '3.24',
9880             'ExtUtils::Typemaps::OutputMap'=> '3.24',
9881             'ExtUtils::Typemaps::Type'=> '3.24',
9882             'ExtUtils::testlib' => '6.92',
9883             'File::Find' => '1.27',
9884             'Filter::Simple' => '0.91',
9885             'HTTP::Tiny' => '0.043',
9886             'Hash::Util::FieldHash' => '1.15',
9887             'IO' => '1.31',
9888             'IO::Socket::IP' => '0.29',
9889             'Locale::Codes' => '3.30',
9890             'Locale::Codes::Constants'=> '3.30',
9891             'Locale::Codes::Country'=> '3.30',
9892             'Locale::Codes::Country_Codes'=> '3.30',
9893             'Locale::Codes::Country_Retired'=> '3.30',
9894             'Locale::Codes::Currency'=> '3.30',
9895             'Locale::Codes::Currency_Codes'=> '3.30',
9896             'Locale::Codes::Currency_Retired'=> '3.30',
9897             'Locale::Codes::LangExt'=> '3.30',
9898             'Locale::Codes::LangExt_Codes'=> '3.30',
9899             'Locale::Codes::LangExt_Retired'=> '3.30',
9900             'Locale::Codes::LangFam'=> '3.30',
9901             'Locale::Codes::LangFam_Codes'=> '3.30',
9902             'Locale::Codes::LangFam_Retired'=> '3.30',
9903             'Locale::Codes::LangVar'=> '3.30',
9904             'Locale::Codes::LangVar_Codes'=> '3.30',
9905             'Locale::Codes::LangVar_Retired'=> '3.30',
9906             'Locale::Codes::Language'=> '3.30',
9907             'Locale::Codes::Language_Codes'=> '3.30',
9908             'Locale::Codes::Language_Retired'=> '3.30',
9909             'Locale::Codes::Script' => '3.30',
9910             'Locale::Codes::Script_Codes'=> '3.30',
9911             'Locale::Codes::Script_Retired'=> '3.30',
9912             'Locale::Country' => '3.30',
9913             'Locale::Currency' => '3.30',
9914             'Locale::Language' => '3.30',
9915             'Locale::Script' => '3.30',
9916             'Module::CoreList' => '3.09',
9917             'Module::CoreList::TieHashDelta'=> '3.09',
9918             'Module::CoreList::Utils'=> '3.09',
9919             'Module::Load' => '0.32',
9920             'POSIX' => '1.38_03',
9921             'Parse::CPAN::Meta' => '1.4414',
9922             'Pod::Perldoc' => '3.23',
9923             'Pod::Perldoc::BaseTo' => '3.23',
9924             'Pod::Perldoc::GetOptsOO'=> '3.23',
9925             'Pod::Perldoc::ToANSI' => '3.23',
9926             'Pod::Perldoc::ToChecker'=> '3.23',
9927             'Pod::Perldoc::ToMan' => '3.23',
9928             'Pod::Perldoc::ToNroff' => '3.23',
9929             'Pod::Perldoc::ToPod' => '3.23',
9930             'Pod::Perldoc::ToRtf' => '3.23',
9931             'Pod::Perldoc::ToTerm' => '3.23',
9932             'Pod::Perldoc::ToText' => '3.23',
9933             'Pod::Perldoc::ToTk' => '3.23',
9934             'Pod::Perldoc::ToXml' => '3.23',
9935             'Thread::Queue' => '3.05',
9936             'XS::APItest' => '0.60',
9937             'XS::Typemap' => '0.13',
9938             'autouse' => '1.08',
9939             'base' => '2.22',
9940             'charnames' => '1.40',
9941             'feature' => '1.36',
9942             'mro' => '1.16',
9943             'threads' => '1.93',
9944             'warnings' => '1.23',
9945             'warnings::register' => '1.03',
9946             },
9947             removed => {
9948             }
9949             },
9950             5.019011 => {
9951             delta_from => 5.01901,
9952             changed => {
9953             'CPAN' => '2.05',
9954             'CPAN::Distribution' => '2.02',
9955             'CPAN::FirstTime' => '5.5306',
9956             'CPAN::Shell' => '5.5004',
9957             'Carp' => '1.3301',
9958             'Carp::Heavy' => '1.3301',
9959             'Config' => '5.019011',
9960             'ExtUtils::Command::MM' => '6.94',
9961             'ExtUtils::Install' => '1.67',
9962             'ExtUtils::Liblist' => '6.94',
9963             'ExtUtils::Liblist::Kid'=> '6.94',
9964             'ExtUtils::MM' => '6.94',
9965             'ExtUtils::MM_AIX' => '6.94',
9966             'ExtUtils::MM_Any' => '6.94',
9967             'ExtUtils::MM_BeOS' => '6.94',
9968             'ExtUtils::MM_Cygwin' => '6.94',
9969             'ExtUtils::MM_DOS' => '6.94',
9970             'ExtUtils::MM_Darwin' => '6.94',
9971             'ExtUtils::MM_MacOS' => '6.94',
9972             'ExtUtils::MM_NW5' => '6.94',
9973             'ExtUtils::MM_OS2' => '6.94',
9974             'ExtUtils::MM_QNX' => '6.94',
9975             'ExtUtils::MM_UWIN' => '6.94',
9976             'ExtUtils::MM_Unix' => '6.94',
9977             'ExtUtils::MM_VMS' => '6.94',
9978             'ExtUtils::MM_VOS' => '6.94',
9979             'ExtUtils::MM_Win32' => '6.94',
9980             'ExtUtils::MM_Win95' => '6.94',
9981             'ExtUtils::MY' => '6.94',
9982             'ExtUtils::MakeMaker' => '6.94',
9983             'ExtUtils::MakeMaker::Config'=> '6.94',
9984             'ExtUtils::Mkbootstrap' => '6.94',
9985             'ExtUtils::Mksymlists' => '6.94',
9986             'ExtUtils::testlib' => '6.94',
9987             'Module::CoreList' => '3.10',
9988             'Module::CoreList::TieHashDelta'=> '3.10',
9989             'Module::CoreList::Utils'=> '3.10',
9990             'PerlIO' => '1.09',
9991             'Storable' => '2.49',
9992             'Win32' => '0.49',
9993             'experimental' => '0.007',
9994             },
9995             removed => {
9996             }
9997             },
9998             5.020000 => {
9999             delta_from => 5.019011,
10000             changed => {
10001             'Config' => '5.02',
10002             'Devel::PPPort' => '3.21',
10003             'Encode' => '2.60',
10004             'Errno' => '1.20_03',
10005             'ExtUtils::Command::MM' => '6.98',
10006             'ExtUtils::Liblist' => '6.98',
10007             'ExtUtils::Liblist::Kid'=> '6.98',
10008             'ExtUtils::MM' => '6.98',
10009             'ExtUtils::MM_AIX' => '6.98',
10010             'ExtUtils::MM_Any' => '6.98',
10011             'ExtUtils::MM_BeOS' => '6.98',
10012             'ExtUtils::MM_Cygwin' => '6.98',
10013             'ExtUtils::MM_DOS' => '6.98',
10014             'ExtUtils::MM_Darwin' => '6.98',
10015             'ExtUtils::MM_MacOS' => '6.98',
10016             'ExtUtils::MM_NW5' => '6.98',
10017             'ExtUtils::MM_OS2' => '6.98',
10018             'ExtUtils::MM_QNX' => '6.98',
10019             'ExtUtils::MM_UWIN' => '6.98',
10020             'ExtUtils::MM_Unix' => '6.98',
10021             'ExtUtils::MM_VMS' => '6.98',
10022             'ExtUtils::MM_VOS' => '6.98',
10023             'ExtUtils::MM_Win32' => '6.98',
10024             'ExtUtils::MM_Win95' => '6.98',
10025             'ExtUtils::MY' => '6.98',
10026             'ExtUtils::MakeMaker' => '6.98',
10027             'ExtUtils::MakeMaker::Config'=> '6.98',
10028             'ExtUtils::Miniperl' => '1.01',
10029             'ExtUtils::Mkbootstrap' => '6.98',
10030             'ExtUtils::Mksymlists' => '6.98',
10031             'ExtUtils::testlib' => '6.98',
10032             },
10033             removed => {
10034             }
10035             },
10036             5.021000 => {
10037             delta_from => 5.020000,
10038             changed => {
10039             'Module::CoreList' => '5.021001',
10040             'Module::CoreList::TieHashDelta'=> '5.021001',
10041             'Module::CoreList::Utils'=> '5.021001',
10042             'feature' => '1.37',
10043             },
10044             removed => {
10045             'CGI' => 1,
10046             'CGI::Apache' => 1,
10047             'CGI::Carp' => 1,
10048             'CGI::Cookie' => 1,
10049             'CGI::Fast' => 1,
10050             'CGI::Pretty' => 1,
10051             'CGI::Push' => 1,
10052             'CGI::Switch' => 1,
10053             'CGI::Util' => 1,
10054             'Module::Build' => 1,
10055             'Module::Build::Base' => 1,
10056             'Module::Build::Compat' => 1,
10057             'Module::Build::Config' => 1,
10058             'Module::Build::ConfigData'=> 1,
10059             'Module::Build::Cookbook'=> 1,
10060             'Module::Build::Dumper' => 1,
10061             'Module::Build::ModuleInfo'=> 1,
10062             'Module::Build::Notes' => 1,
10063             'Module::Build::PPMMaker'=> 1,
10064             'Module::Build::Platform::Default'=> 1,
10065             'Module::Build::Platform::MacOS'=> 1,
10066             'Module::Build::Platform::Unix'=> 1,
10067             'Module::Build::Platform::VMS'=> 1,
10068             'Module::Build::Platform::VOS'=> 1,
10069             'Module::Build::Platform::Windows'=> 1,
10070             'Module::Build::Platform::aix'=> 1,
10071             'Module::Build::Platform::cygwin'=> 1,
10072             'Module::Build::Platform::darwin'=> 1,
10073             'Module::Build::Platform::os2'=> 1,
10074             'Module::Build::PodParser'=> 1,
10075             'Module::Build::Version'=> 1,
10076             'Module::Build::YAML' => 1,
10077             'Package::Constants' => 1,
10078             'inc::latest' => 1,
10079             }
10080             },
10081             5.021001 => {
10082             delta_from => 5.021000,
10083             changed => {
10084             'App::Prove' => '3.32',
10085             'App::Prove::State' => '3.32',
10086             'App::Prove::State::Result'=> '3.32',
10087             'App::Prove::State::Result::Test'=> '3.32',
10088             'Archive::Tar' => '2.00',
10089             'Archive::Tar::Constant'=> '2.00',
10090             'Archive::Tar::File' => '2.00',
10091             'B' => '1.49',
10092             'B::Deparse' => '1.27',
10093             'Benchmark' => '1.19',
10094             'CPAN::Meta' => '2.141520',
10095             'CPAN::Meta::Converter' => '2.141520',
10096             'CPAN::Meta::Feature' => '2.141520',
10097             'CPAN::Meta::History' => '2.141520',
10098             'CPAN::Meta::Prereqs' => '2.141520',
10099             'CPAN::Meta::Spec' => '2.141520',
10100             'CPAN::Meta::Validator' => '2.141520',
10101             'Carp' => '1.34',
10102             'Carp::Heavy' => '1.34',
10103             'Config' => '5.021001',
10104             'Cwd' => '3.48',
10105             'Data::Dumper' => '2.152',
10106             'Devel::PPPort' => '3.24',
10107             'Devel::Peek' => '1.17',
10108             'Digest::SHA' => '5.92',
10109             'DynaLoader' => '1.26',
10110             'Encode' => '2.62',
10111             'Errno' => '1.20_04',
10112             'Exporter' => '5.71',
10113             'Exporter::Heavy' => '5.71',
10114             'ExtUtils::Install' => '1.68',
10115             'ExtUtils::Miniperl' => '1.02',
10116             'ExtUtils::ParseXS' => '3.25',
10117             'ExtUtils::ParseXS::Constants'=> '3.25',
10118             'ExtUtils::ParseXS::CountLines'=> '3.25',
10119             'ExtUtils::ParseXS::Eval'=> '3.25',
10120             'ExtUtils::ParseXS::Utilities'=> '3.25',
10121             'ExtUtils::Typemaps' => '3.25',
10122             'ExtUtils::Typemaps::Cmd'=> '3.25',
10123             'ExtUtils::Typemaps::InputMap'=> '3.25',
10124             'ExtUtils::Typemaps::OutputMap'=> '3.25',
10125             'ExtUtils::Typemaps::Type'=> '3.25',
10126             'Fatal' => '2.25',
10127             'File::Spec' => '3.48',
10128             'File::Spec::Cygwin' => '3.48',
10129             'File::Spec::Epoc' => '3.48',
10130             'File::Spec::Functions' => '3.48',
10131             'File::Spec::Mac' => '3.48',
10132             'File::Spec::OS2' => '3.48',
10133             'File::Spec::Unix' => '3.48',
10134             'File::Spec::VMS' => '3.48',
10135             'File::Spec::Win32' => '3.48',
10136             'Hash::Util' => '0.17',
10137             'IO' => '1.32',
10138             'List::Util' => '1.39',
10139             'List::Util::XS' => '1.39',
10140             'Locale::Codes' => '3.31',
10141             'Locale::Codes::Constants'=> '3.31',
10142             'Locale::Codes::Country'=> '3.31',
10143             'Locale::Codes::Country_Codes'=> '3.31',
10144             'Locale::Codes::Country_Retired'=> '3.31',
10145             'Locale::Codes::Currency'=> '3.31',
10146             'Locale::Codes::Currency_Codes'=> '3.31',
10147             'Locale::Codes::Currency_Retired'=> '3.31',
10148             'Locale::Codes::LangExt'=> '3.31',
10149             'Locale::Codes::LangExt_Codes'=> '3.31',
10150             'Locale::Codes::LangExt_Retired'=> '3.31',
10151             'Locale::Codes::LangFam'=> '3.31',
10152             'Locale::Codes::LangFam_Codes'=> '3.31',
10153             'Locale::Codes::LangFam_Retired'=> '3.31',
10154             'Locale::Codes::LangVar'=> '3.31',
10155             'Locale::Codes::LangVar_Codes'=> '3.31',
10156             'Locale::Codes::LangVar_Retired'=> '3.31',
10157             'Locale::Codes::Language'=> '3.31',
10158             'Locale::Codes::Language_Codes'=> '3.31',
10159             'Locale::Codes::Language_Retired'=> '3.31',
10160             'Locale::Codes::Script' => '3.31',
10161             'Locale::Codes::Script_Codes'=> '3.31',
10162             'Locale::Codes::Script_Retired'=> '3.31',
10163             'Locale::Country' => '3.31',
10164             'Locale::Currency' => '3.31',
10165             'Locale::Language' => '3.31',
10166             'Locale::Script' => '3.31',
10167             'Math::BigFloat' => '1.9994',
10168             'Math::BigInt' => '1.9995',
10169             'Math::BigInt::Calc' => '1.9994',
10170             'Math::BigInt::CalcEmu' => '1.9994',
10171             'Math::BigRat' => '0.2608',
10172             'Module::CoreList' => '5.021001_01',
10173             'Module::CoreList::TieHashDelta'=> '5.021001_01',
10174             'Module::CoreList::Utils'=> '5.021001_01',
10175             'Module::Metadata' => '1.000024',
10176             'NDBM_File' => '1.13',
10177             'Net::Config' => '1.14',
10178             'Net::SMTP' => '2.34',
10179             'Net::Time' => '2.11',
10180             'OS2::Process' => '1.10',
10181             'POSIX' => '1.40',
10182             'PerlIO::encoding' => '0.19',
10183             'PerlIO::mmap' => '0.013',
10184             'PerlIO::scalar' => '0.19',
10185             'PerlIO::via' => '0.15',
10186             'Pod::Html' => '1.22',
10187             'Scalar::Util' => '1.39',
10188             'SelfLoader' => '1.22',
10189             'Socket' => '2.014',
10190             'Storable' => '2.51',
10191             'TAP::Base' => '3.32',
10192             'TAP::Formatter::Base' => '3.32',
10193             'TAP::Formatter::Color' => '3.32',
10194             'TAP::Formatter::Console'=> '3.32',
10195             'TAP::Formatter::Console::ParallelSession'=> '3.32',
10196             'TAP::Formatter::Console::Session'=> '3.32',
10197             'TAP::Formatter::File' => '3.32',
10198             'TAP::Formatter::File::Session'=> '3.32',
10199             'TAP::Formatter::Session'=> '3.32',
10200             'TAP::Harness' => '3.32',
10201             'TAP::Harness::Env' => '3.32',
10202             'TAP::Object' => '3.32',
10203             'TAP::Parser' => '3.32',
10204             'TAP::Parser::Aggregator'=> '3.32',
10205             'TAP::Parser::Grammar' => '3.32',
10206             'TAP::Parser::Iterator' => '3.32',
10207             'TAP::Parser::Iterator::Array'=> '3.32',
10208             'TAP::Parser::Iterator::Process'=> '3.32',
10209             'TAP::Parser::Iterator::Stream'=> '3.32',
10210             'TAP::Parser::IteratorFactory'=> '3.32',
10211             'TAP::Parser::Multiplexer'=> '3.32',
10212             'TAP::Parser::Result' => '3.32',
10213             'TAP::Parser::Result::Bailout'=> '3.32',
10214             'TAP::Parser::Result::Comment'=> '3.32',
10215             'TAP::Parser::Result::Plan'=> '3.32',
10216             'TAP::Parser::Result::Pragma'=> '3.32',
10217             'TAP::Parser::Result::Test'=> '3.32',
10218             'TAP::Parser::Result::Unknown'=> '3.32',
10219             'TAP::Parser::Result::Version'=> '3.32',
10220             'TAP::Parser::Result::YAML'=> '3.32',
10221             'TAP::Parser::ResultFactory'=> '3.32',
10222             'TAP::Parser::Scheduler'=> '3.32',
10223             'TAP::Parser::Scheduler::Job'=> '3.32',
10224             'TAP::Parser::Scheduler::Spinner'=> '3.32',
10225             'TAP::Parser::Source' => '3.32',
10226             'TAP::Parser::SourceHandler'=> '3.32',
10227             'TAP::Parser::SourceHandler::Executable'=> '3.32',
10228             'TAP::Parser::SourceHandler::File'=> '3.32',
10229             'TAP::Parser::SourceHandler::Handle'=> '3.32',
10230             'TAP::Parser::SourceHandler::Perl'=> '3.32',
10231             'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10232             'TAP::Parser::YAMLish::Reader'=> '3.32',
10233             'TAP::Parser::YAMLish::Writer'=> '3.32',
10234             'Term::ANSIColor' => '4.03',
10235             'Test::Builder' => '1.001003',
10236             'Test::Builder::Module' => '1.001003',
10237             'Test::Builder::Tester' => '1.23_003',
10238             'Test::Harness' => '3.32',
10239             'Test::More' => '1.001003',
10240             'Test::Simple' => '1.001003',
10241             'Tie::File' => '1.01',
10242             'Unicode' => '7.0.0',
10243             'Unicode::Collate' => '1.07',
10244             'Unicode::Normalize' => '1.18',
10245             'Unicode::UCD' => '0.58',
10246             'XS::APItest' => '0.61',
10247             '_charnames' => '1.41',
10248             'autodie' => '2.25',
10249             'autodie::Scope::Guard' => '2.25',
10250             'autodie::Scope::GuardStack'=> '2.25',
10251             'autodie::ScopeUtil' => '2.25',
10252             'autodie::exception' => '2.25',
10253             'autodie::exception::system'=> '2.25',
10254             'autodie::hints' => '2.25',
10255             'autodie::skip' => '2.25',
10256             'charnames' => '1.41',
10257             'locale' => '1.04',
10258             'threads' => '1.94',
10259             'utf8' => '1.14',
10260             'warnings' => '1.24',
10261             },
10262             removed => {
10263             }
10264             },
10265             5.021002 => {
10266             delta_from => 5.021001,
10267             changed => {
10268             'B' => '1.50',
10269             'Config' => '5.021002',
10270             'Cwd' => '3.49',
10271             'Devel::Peek' => '1.18',
10272             'ExtUtils::Manifest' => '1.64',
10273             'File::Copy' => '2.30',
10274             'File::Spec' => '3.49',
10275             'File::Spec::Cygwin' => '3.49',
10276             'File::Spec::Epoc' => '3.49',
10277             'File::Spec::Functions' => '3.49',
10278             'File::Spec::Mac' => '3.49',
10279             'File::Spec::OS2' => '3.49',
10280             'File::Spec::Unix' => '3.49',
10281             'File::Spec::VMS' => '3.49',
10282             'File::Spec::Win32' => '3.49',
10283             'Filter::Simple' => '0.92',
10284             'Hash::Util' => '0.18',
10285             'IO' => '1.33',
10286             'IO::Socket::IP' => '0.31',
10287             'IPC::Open3' => '1.17',
10288             'Math::BigFloat' => '1.9996',
10289             'Math::BigInt' => '1.9996',
10290             'Math::BigInt::Calc' => '1.9996',
10291             'Math::BigInt::CalcEmu' => '1.9996',
10292             'Module::CoreList' => '5.021002',
10293             'Module::CoreList::TieHashDelta'=> '5.021002',
10294             'Module::CoreList::Utils'=> '5.021002',
10295             'POSIX' => '1.41',
10296             'Pod::Usage' => '1.64',
10297             'XS::APItest' => '0.62',
10298             'arybase' => '0.08',
10299             'experimental' => '0.008',
10300             'threads' => '1.95',
10301             'warnings' => '1.26',
10302             },
10303             removed => {
10304             }
10305             },
10306             5.021003 => {
10307             delta_from => 5.021002,
10308             changed => {
10309             'B::Debug' => '1.21',
10310             'CPAN::Meta' => '2.142060',
10311             'CPAN::Meta::Converter' => '2.142060',
10312             'CPAN::Meta::Feature' => '2.142060',
10313             'CPAN::Meta::History' => '2.142060',
10314             'CPAN::Meta::Merge' => '2.142060',
10315             'CPAN::Meta::Prereqs' => '2.142060',
10316             'CPAN::Meta::Requirements'=> '2.126',
10317             'CPAN::Meta::Spec' => '2.142060',
10318             'CPAN::Meta::Validator' => '2.142060',
10319             'Config' => '5.021003',
10320             'Config::Perl::V' => '0.22',
10321             'ExtUtils::CBuilder' => '0.280217',
10322             'ExtUtils::CBuilder::Base'=> '0.280217',
10323             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10324             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10325             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10326             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10327             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10328             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10329             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10330             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10331             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10332             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10333             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10334             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10335             'ExtUtils::Manifest' => '1.65',
10336             'HTTP::Tiny' => '0.047',
10337             'IPC::Open3' => '1.18',
10338             'Module::CoreList' => '5.021003',
10339             'Module::CoreList::TieHashDelta'=> '5.021003',
10340             'Module::CoreList::Utils'=> '5.021003',
10341             'Opcode' => '1.28',
10342             'POSIX' => '1.42',
10343             'Safe' => '2.38',
10344             'Socket' => '2.015',
10345             'Sys::Hostname' => '1.19',
10346             'UNIVERSAL' => '1.12',
10347             'XS::APItest' => '0.63',
10348             'perlfaq' => '5.0150045',
10349             },
10350             removed => {
10351             }
10352             },
10353             5.020001 => {
10354             delta_from => 5.020000,
10355             changed => {
10356             'Config' => '5.020001',
10357             'Config::Perl::V' => '0.22',
10358             'Cwd' => '3.48',
10359             'Exporter' => '5.71',
10360             'Exporter::Heavy' => '5.71',
10361             'ExtUtils::CBuilder' => '0.280217',
10362             'ExtUtils::CBuilder::Base'=> '0.280217',
10363             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10364             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10365             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10366             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10367             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10368             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10369             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10370             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10371             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10372             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10373             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10374             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10375             'File::Copy' => '2.30',
10376             'File::Spec' => '3.48',
10377             'File::Spec::Cygwin' => '3.48',
10378             'File::Spec::Epoc' => '3.48',
10379             'File::Spec::Functions' => '3.48',
10380             'File::Spec::Mac' => '3.48',
10381             'File::Spec::OS2' => '3.48',
10382             'File::Spec::Unix' => '3.48',
10383             'File::Spec::VMS' => '3.48',
10384             'File::Spec::Win32' => '3.48',
10385             'Module::CoreList' => '5.020001',
10386             'Module::CoreList::TieHashDelta'=> '5.020001',
10387             'Module::CoreList::Utils'=> '5.020001',
10388             'PerlIO::via' => '0.15',
10389             'Unicode::UCD' => '0.58',
10390             'XS::APItest' => '0.60_01',
10391             'utf8' => '1.13_01',
10392             'version' => '0.9909',
10393             'version::regex' => '0.9909',
10394             'version::vpp' => '0.9909',
10395             },
10396             removed => {
10397             }
10398             },
10399             5.021004 => {
10400             delta_from => 5.021003,
10401             changed => {
10402             'App::Prove' => '3.33',
10403             'App::Prove::State' => '3.33',
10404             'App::Prove::State::Result'=> '3.33',
10405             'App::Prove::State::Result::Test'=> '3.33',
10406             'Archive::Tar' => '2.02',
10407             'Archive::Tar::Constant'=> '2.02',
10408             'Archive::Tar::File' => '2.02',
10409             'Attribute::Handlers' => '0.97',
10410             'B' => '1.51',
10411             'B::Concise' => '0.993',
10412             'B::Deparse' => '1.28',
10413             'B::Op_private' => '5.021004',
10414             'CPAN::Meta::Requirements'=> '2.128',
10415             'Config' => '5.021004',
10416             'Cwd' => '3.50',
10417             'Data::Dumper' => '2.154',
10418             'ExtUtils::CBuilder' => '0.280219',
10419             'ExtUtils::CBuilder::Base'=> '0.280219',
10420             'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10421             'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10422             'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10423             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10424             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10425             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10426             'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10427             'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10428             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10429             'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10430             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10431             'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10432             'ExtUtils::Install' => '2.04',
10433             'ExtUtils::Installed' => '2.04',
10434             'ExtUtils::Liblist::Kid'=> '6.98_01',
10435             'ExtUtils::Manifest' => '1.68',
10436             'ExtUtils::Packlist' => '2.04',
10437             'File::Find' => '1.28',
10438             'File::Spec' => '3.50',
10439             'File::Spec::Cygwin' => '3.50',
10440             'File::Spec::Epoc' => '3.50',
10441             'File::Spec::Functions' => '3.50',
10442             'File::Spec::Mac' => '3.50',
10443             'File::Spec::OS2' => '3.50',
10444             'File::Spec::Unix' => '3.50',
10445             'File::Spec::VMS' => '3.50',
10446             'File::Spec::Win32' => '3.50',
10447             'Getopt::Std' => '1.11',
10448             'HTTP::Tiny' => '0.049',
10449             'IO' => '1.34',
10450             'IO::Socket::IP' => '0.32',
10451             'List::Util' => '1.41',
10452             'List::Util::XS' => '1.41',
10453             'Locale::Codes' => '3.32',
10454             'Locale::Codes::Constants'=> '3.32',
10455             'Locale::Codes::Country'=> '3.32',
10456             'Locale::Codes::Country_Codes'=> '3.32',
10457             'Locale::Codes::Country_Retired'=> '3.32',
10458             'Locale::Codes::Currency'=> '3.32',
10459             'Locale::Codes::Currency_Codes'=> '3.32',
10460             'Locale::Codes::Currency_Retired'=> '3.32',
10461             'Locale::Codes::LangExt'=> '3.32',
10462             'Locale::Codes::LangExt_Codes'=> '3.32',
10463             'Locale::Codes::LangExt_Retired'=> '3.32',
10464             'Locale::Codes::LangFam'=> '3.32',
10465             'Locale::Codes::LangFam_Codes'=> '3.32',
10466             'Locale::Codes::LangFam_Retired'=> '3.32',
10467             'Locale::Codes::LangVar'=> '3.32',
10468             'Locale::Codes::LangVar_Codes'=> '3.32',
10469             'Locale::Codes::LangVar_Retired'=> '3.32',
10470             'Locale::Codes::Language'=> '3.32',
10471             'Locale::Codes::Language_Codes'=> '3.32',
10472             'Locale::Codes::Language_Retired'=> '3.32',
10473             'Locale::Codes::Script' => '3.32',
10474             'Locale::Codes::Script_Codes'=> '3.32',
10475             'Locale::Codes::Script_Retired'=> '3.32',
10476             'Locale::Country' => '3.32',
10477             'Locale::Currency' => '3.32',
10478             'Locale::Language' => '3.32',
10479             'Locale::Script' => '3.32',
10480             'Math::BigFloat' => '1.9997',
10481             'Math::BigInt' => '1.9997',
10482             'Math::BigInt::Calc' => '1.9997',
10483             'Math::BigInt::CalcEmu' => '1.9997',
10484             'Module::CoreList' => '5.20140920',
10485             'Module::CoreList::TieHashDelta'=> '5.20140920',
10486             'Module::CoreList::Utils'=> '5.20140920',
10487             'POSIX' => '1.43',
10488             'Pod::Perldoc' => '3.24',
10489             'Pod::Perldoc::BaseTo' => '3.24',
10490             'Pod::Perldoc::GetOptsOO'=> '3.24',
10491             'Pod::Perldoc::ToANSI' => '3.24',
10492             'Pod::Perldoc::ToChecker'=> '3.24',
10493             'Pod::Perldoc::ToMan' => '3.24',
10494             'Pod::Perldoc::ToNroff' => '3.24',
10495             'Pod::Perldoc::ToPod' => '3.24',
10496             'Pod::Perldoc::ToRtf' => '3.24',
10497             'Pod::Perldoc::ToTerm' => '3.24',
10498             'Pod::Perldoc::ToText' => '3.24',
10499             'Pod::Perldoc::ToTk' => '3.24',
10500             'Pod::Perldoc::ToXml' => '3.24',
10501             'Scalar::Util' => '1.41',
10502             'Sub::Util' => '1.41',
10503             'TAP::Base' => '3.33',
10504             'TAP::Formatter::Base' => '3.33',
10505             'TAP::Formatter::Color' => '3.33',
10506             'TAP::Formatter::Console'=> '3.33',
10507             'TAP::Formatter::Console::ParallelSession'=> '3.33',
10508             'TAP::Formatter::Console::Session'=> '3.33',
10509             'TAP::Formatter::File' => '3.33',
10510             'TAP::Formatter::File::Session'=> '3.33',
10511             'TAP::Formatter::Session'=> '3.33',
10512             'TAP::Harness' => '3.33',
10513             'TAP::Harness::Env' => '3.33',
10514             'TAP::Object' => '3.33',
10515             'TAP::Parser' => '3.33',
10516             'TAP::Parser::Aggregator'=> '3.33',
10517             'TAP::Parser::Grammar' => '3.33',
10518             'TAP::Parser::Iterator' => '3.33',
10519             'TAP::Parser::Iterator::Array'=> '3.33',
10520             'TAP::Parser::Iterator::Process'=> '3.33',
10521             'TAP::Parser::Iterator::Stream'=> '3.33',
10522             'TAP::Parser::IteratorFactory'=> '3.33',
10523             'TAP::Parser::Multiplexer'=> '3.33',
10524             'TAP::Parser::Result' => '3.33',
10525             'TAP::Parser::Result::Bailout'=> '3.33',
10526             'TAP::Parser::Result::Comment'=> '3.33',
10527             'TAP::Parser::Result::Plan'=> '3.33',
10528             'TAP::Parser::Result::Pragma'=> '3.33',
10529             'TAP::Parser::Result::Test'=> '3.33',
10530             'TAP::Parser::Result::Unknown'=> '3.33',
10531             'TAP::Parser::Result::Version'=> '3.33',
10532             'TAP::Parser::Result::YAML'=> '3.33',
10533             'TAP::Parser::ResultFactory'=> '3.33',
10534             'TAP::Parser::Scheduler'=> '3.33',
10535             'TAP::Parser::Scheduler::Job'=> '3.33',
10536             'TAP::Parser::Scheduler::Spinner'=> '3.33',
10537             'TAP::Parser::Source' => '3.33',
10538             'TAP::Parser::SourceHandler'=> '3.33',
10539             'TAP::Parser::SourceHandler::Executable'=> '3.33',
10540             'TAP::Parser::SourceHandler::File'=> '3.33',
10541             'TAP::Parser::SourceHandler::Handle'=> '3.33',
10542             'TAP::Parser::SourceHandler::Perl'=> '3.33',
10543             'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10544             'TAP::Parser::YAMLish::Reader'=> '3.33',
10545             'TAP::Parser::YAMLish::Writer'=> '3.33',
10546             'Term::ReadLine' => '1.15',
10547             'Test::Builder' => '1.001006',
10548             'Test::Builder::Module' => '1.001006',
10549             'Test::Builder::Tester' => '1.24',
10550             'Test::Builder::Tester::Color'=> '1.24',
10551             'Test::Harness' => '3.33',
10552             'Test::More' => '1.001006',
10553             'Test::Simple' => '1.001006',
10554             'Time::Piece' => '1.29',
10555             'Time::Seconds' => '1.29',
10556             'XS::APItest' => '0.64',
10557             '_charnames' => '1.42',
10558             'attributes' => '0.23',
10559             'bigint' => '0.37',
10560             'bignum' => '0.38',
10561             'bigrat' => '0.37',
10562             'constant' => '1.32',
10563             'experimental' => '0.010',
10564             'overload' => '1.23',
10565             'threads' => '1.96',
10566             'version' => '0.9909',
10567             'version::regex' => '0.9909',
10568             'version::vpp' => '0.9909',
10569             },
10570             removed => {
10571             }
10572             },
10573             5.021005 => {
10574             delta_from => 5.021004,
10575             changed => {
10576             'B' => '1.52',
10577             'B::Concise' => '0.994',
10578             'B::Debug' => '1.22',
10579             'B::Deparse' => '1.29',
10580             'B::Op_private' => '5.021005',
10581             'CPAN::Meta' => '2.142690',
10582             'CPAN::Meta::Converter' => '2.142690',
10583             'CPAN::Meta::Feature' => '2.142690',
10584             'CPAN::Meta::History' => '2.142690',
10585             'CPAN::Meta::Merge' => '2.142690',
10586             'CPAN::Meta::Prereqs' => '2.142690',
10587             'CPAN::Meta::Spec' => '2.142690',
10588             'CPAN::Meta::Validator' => '2.142690',
10589             'Compress::Raw::Bzip2' => '2.066',
10590             'Compress::Raw::Zlib' => '2.066',
10591             'Compress::Zlib' => '2.066',
10592             'Config' => '5.021005',
10593             'Cwd' => '3.51',
10594             'DynaLoader' => '1.27',
10595             'Errno' => '1.21',
10596             'ExtUtils::CBuilder' => '0.280220',
10597             'ExtUtils::CBuilder::Base'=> '0.280220',
10598             'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10599             'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10600             'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10601             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10602             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10603             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10604             'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10605             'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10606             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10607             'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10608             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10609             'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10610             'ExtUtils::Miniperl' => '1.03',
10611             'Fcntl' => '1.13',
10612             'File::Find' => '1.29',
10613             'File::Spec' => '3.51',
10614             'File::Spec::Cygwin' => '3.51',
10615             'File::Spec::Epoc' => '3.51',
10616             'File::Spec::Functions' => '3.51',
10617             'File::Spec::Mac' => '3.51',
10618             'File::Spec::OS2' => '3.51',
10619             'File::Spec::Unix' => '3.51',
10620             'File::Spec::VMS' => '3.51',
10621             'File::Spec::Win32' => '3.51',
10622             'HTTP::Tiny' => '0.050',
10623             'IO::Compress::Adapter::Bzip2'=> '2.066',
10624             'IO::Compress::Adapter::Deflate'=> '2.066',
10625             'IO::Compress::Adapter::Identity'=> '2.066',
10626             'IO::Compress::Base' => '2.066',
10627             'IO::Compress::Base::Common'=> '2.066',
10628             'IO::Compress::Bzip2' => '2.066',
10629             'IO::Compress::Deflate' => '2.066',
10630             'IO::Compress::Gzip' => '2.066',
10631             'IO::Compress::Gzip::Constants'=> '2.066',
10632             'IO::Compress::RawDeflate'=> '2.066',
10633             'IO::Compress::Zip' => '2.066',
10634             'IO::Compress::Zip::Constants'=> '2.066',
10635             'IO::Compress::Zlib::Constants'=> '2.066',
10636             'IO::Compress::Zlib::Extra'=> '2.066',
10637             'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10638             'IO::Uncompress::Adapter::Identity'=> '2.066',
10639             'IO::Uncompress::Adapter::Inflate'=> '2.066',
10640             'IO::Uncompress::AnyInflate'=> '2.066',
10641             'IO::Uncompress::AnyUncompress'=> '2.066',
10642             'IO::Uncompress::Base' => '2.066',
10643             'IO::Uncompress::Bunzip2'=> '2.066',
10644             'IO::Uncompress::Gunzip'=> '2.066',
10645             'IO::Uncompress::Inflate'=> '2.066',
10646             'IO::Uncompress::RawInflate'=> '2.066',
10647             'IO::Uncompress::Unzip' => '2.066',
10648             'JSON::PP' => '2.27300',
10649             'Module::CoreList' => '5.20141020',
10650             'Module::CoreList::TieHashDelta'=> '5.20141020',
10651             'Module::CoreList::Utils'=> '5.20141020',
10652             'Net::Cmd' => '3.02',
10653             'Net::Config' => '3.02',
10654             'Net::Domain' => '3.02',
10655             'Net::FTP' => '3.02',
10656             'Net::FTP::A' => '3.02',
10657             'Net::FTP::E' => '3.02',
10658             'Net::FTP::I' => '3.02',
10659             'Net::FTP::L' => '3.02',
10660             'Net::FTP::dataconn' => '3.02',
10661             'Net::NNTP' => '3.02',
10662             'Net::Netrc' => '3.02',
10663             'Net::POP3' => '3.02',
10664             'Net::SMTP' => '3.02',
10665             'Net::Time' => '3.02',
10666             'Opcode' => '1.29',
10667             'POSIX' => '1.45',
10668             'Socket' => '2.016',
10669             'Test::Builder' => '1.001008',
10670             'Test::Builder::Module' => '1.001008',
10671             'Test::More' => '1.001008',
10672             'Test::Simple' => '1.001008',
10673             'XS::APItest' => '0.65',
10674             'XSLoader' => '0.18',
10675             'attributes' => '0.24',
10676             'experimental' => '0.012',
10677             'feature' => '1.38',
10678             'perlfaq' => '5.0150046',
10679             're' => '0.27',
10680             'threads::shared' => '1.47',
10681             'warnings' => '1.28',
10682             'warnings::register' => '1.04',
10683             },
10684             removed => {
10685             }
10686             },
10687             5.021006 => {
10688             delta_from => 5.021005,
10689             changed => {
10690             'App::Prove' => '3.34',
10691             'App::Prove::State' => '3.34',
10692             'App::Prove::State::Result'=> '3.34',
10693             'App::Prove::State::Result::Test'=> '3.34',
10694             'B' => '1.53',
10695             'B::Concise' => '0.995',
10696             'B::Deparse' => '1.30',
10697             'B::Op_private' => '5.021006',
10698             'CPAN::Meta' => '2.143240',
10699             'CPAN::Meta::Converter' => '2.143240',
10700             'CPAN::Meta::Feature' => '2.143240',
10701             'CPAN::Meta::History' => '2.143240',
10702             'CPAN::Meta::Merge' => '2.143240',
10703             'CPAN::Meta::Prereqs' => '2.143240',
10704             'CPAN::Meta::Requirements'=> '2.130',
10705             'CPAN::Meta::Spec' => '2.143240',
10706             'CPAN::Meta::Validator' => '2.143240',
10707             'Config' => '5.021006',
10708             'Devel::Peek' => '1.19',
10709             'Digest::SHA' => '5.93',
10710             'DynaLoader' => '1.28',
10711             'Encode' => '2.64',
10712             'Exporter' => '5.72',
10713             'Exporter::Heavy' => '5.72',
10714             'ExtUtils::Command::MM' => '7.02',
10715             'ExtUtils::Liblist' => '7.02',
10716             'ExtUtils::Liblist::Kid'=> '7.02',
10717             'ExtUtils::MM' => '7.02',
10718             'ExtUtils::MM_AIX' => '7.02',
10719             'ExtUtils::MM_Any' => '7.02',
10720             'ExtUtils::MM_BeOS' => '7.02',
10721             'ExtUtils::MM_Cygwin' => '7.02',
10722             'ExtUtils::MM_DOS' => '7.02',
10723             'ExtUtils::MM_Darwin' => '7.02',
10724             'ExtUtils::MM_MacOS' => '7.02',
10725             'ExtUtils::MM_NW5' => '7.02',
10726             'ExtUtils::MM_OS2' => '7.02',
10727             'ExtUtils::MM_QNX' => '7.02',
10728             'ExtUtils::MM_UWIN' => '7.02',
10729             'ExtUtils::MM_Unix' => '7.02',
10730             'ExtUtils::MM_VMS' => '7.02',
10731             'ExtUtils::MM_VOS' => '7.02',
10732             'ExtUtils::MM_Win32' => '7.02',
10733             'ExtUtils::MM_Win95' => '7.02',
10734             'ExtUtils::MY' => '7.02',
10735             'ExtUtils::MakeMaker' => '7.02',
10736             'ExtUtils::MakeMaker::Config'=> '7.02',
10737             'ExtUtils::MakeMaker::Locale'=> '7.02',
10738             'ExtUtils::MakeMaker::version'=> '7.02',
10739             'ExtUtils::MakeMaker::version::regex'=> '7.02',
10740             'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10741             'ExtUtils::Manifest' => '1.69',
10742             'ExtUtils::Mkbootstrap' => '7.02',
10743             'ExtUtils::Mksymlists' => '7.02',
10744             'ExtUtils::ParseXS' => '3.26',
10745             'ExtUtils::ParseXS::Constants'=> '3.26',
10746             'ExtUtils::ParseXS::CountLines'=> '3.26',
10747             'ExtUtils::ParseXS::Eval'=> '3.26',
10748             'ExtUtils::ParseXS::Utilities'=> '3.26',
10749             'ExtUtils::testlib' => '7.02',
10750             'File::Spec::VMS' => '3.52',
10751             'HTTP::Tiny' => '0.051',
10752             'I18N::Langinfo' => '0.12',
10753             'IO::Socket' => '1.38',
10754             'Module::CoreList' => '5.20141120',
10755             'Module::CoreList::TieHashDelta'=> '5.20141120',
10756             'Module::CoreList::Utils'=> '5.20141120',
10757             'POSIX' => '1.46',
10758             'PerlIO::encoding' => '0.20',
10759             'PerlIO::scalar' => '0.20',
10760             'TAP::Base' => '3.34',
10761             'TAP::Formatter::Base' => '3.34',
10762             'TAP::Formatter::Color' => '3.34',
10763             'TAP::Formatter::Console'=> '3.34',
10764             'TAP::Formatter::Console::ParallelSession'=> '3.34',
10765             'TAP::Formatter::Console::Session'=> '3.34',
10766             'TAP::Formatter::File' => '3.34',
10767             'TAP::Formatter::File::Session'=> '3.34',
10768             'TAP::Formatter::Session'=> '3.34',
10769             'TAP::Harness' => '3.34',
10770             'TAP::Harness::Env' => '3.34',
10771             'TAP::Object' => '3.34',
10772             'TAP::Parser' => '3.34',
10773             'TAP::Parser::Aggregator'=> '3.34',
10774             'TAP::Parser::Grammar' => '3.34',
10775             'TAP::Parser::Iterator' => '3.34',
10776             'TAP::Parser::Iterator::Array'=> '3.34',
10777             'TAP::Parser::Iterator::Process'=> '3.34',
10778             'TAP::Parser::Iterator::Stream'=> '3.34',
10779             'TAP::Parser::IteratorFactory'=> '3.34',
10780             'TAP::Parser::Multiplexer'=> '3.34',
10781             'TAP::Parser::Result' => '3.34',
10782             'TAP::Parser::Result::Bailout'=> '3.34',
10783             'TAP::Parser::Result::Comment'=> '3.34',
10784             'TAP::Parser::Result::Plan'=> '3.34',
10785             'TAP::Parser::Result::Pragma'=> '3.34',
10786             'TAP::Parser::Result::Test'=> '3.34',
10787             'TAP::Parser::Result::Unknown'=> '3.34',
10788             'TAP::Parser::Result::Version'=> '3.34',
10789             'TAP::Parser::Result::YAML'=> '3.34',
10790             'TAP::Parser::ResultFactory'=> '3.34',
10791             'TAP::Parser::Scheduler'=> '3.34',
10792             'TAP::Parser::Scheduler::Job'=> '3.34',
10793             'TAP::Parser::Scheduler::Spinner'=> '3.34',
10794             'TAP::Parser::Source' => '3.34',
10795             'TAP::Parser::SourceHandler'=> '3.34',
10796             'TAP::Parser::SourceHandler::Executable'=> '3.34',
10797             'TAP::Parser::SourceHandler::File'=> '3.34',
10798             'TAP::Parser::SourceHandler::Handle'=> '3.34',
10799             'TAP::Parser::SourceHandler::Perl'=> '3.34',
10800             'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10801             'TAP::Parser::YAMLish::Reader'=> '3.34',
10802             'TAP::Parser::YAMLish::Writer'=> '3.34',
10803             'Test::Builder' => '1.301001_075',
10804             'Test::Builder::Module' => '1.301001_075',
10805             'Test::Builder::Tester' => '1.301001_075',
10806             'Test::Builder::Tester::Color'=> '1.301001_075',
10807             'Test::Harness' => '3.34',
10808             'Test::More' => '1.301001_075',
10809             'Test::More::DeepCheck' => undef,
10810             'Test::More::DeepCheck::Strict'=> undef,
10811             'Test::More::DeepCheck::Tolerant'=> undef,
10812             'Test::More::Tools' => undef,
10813             'Test::MostlyLike' => undef,
10814             'Test::Simple' => '1.301001_075',
10815             'Test::Stream' => '1.301001_075',
10816             'Test::Stream::ArrayBase'=> undef,
10817             'Test::Stream::ArrayBase::Meta'=> undef,
10818             'Test::Stream::Carp' => undef,
10819             'Test::Stream::Context' => undef,
10820             'Test::Stream::Event' => undef,
10821             'Test::Stream::Event::Bail'=> undef,
10822             'Test::Stream::Event::Child'=> undef,
10823             'Test::Stream::Event::Diag'=> undef,
10824             'Test::Stream::Event::Finish'=> undef,
10825             'Test::Stream::Event::Note'=> undef,
10826             'Test::Stream::Event::Ok'=> undef,
10827             'Test::Stream::Event::Plan'=> undef,
10828             'Test::Stream::Event::Subtest'=> undef,
10829             'Test::Stream::ExitMagic'=> undef,
10830             'Test::Stream::ExitMagic::Context'=> undef,
10831             'Test::Stream::Exporter'=> undef,
10832             'Test::Stream::Exporter::Meta'=> undef,
10833             'Test::Stream::IOSets' => undef,
10834             'Test::Stream::Meta' => undef,
10835             'Test::Stream::PackageUtil'=> undef,
10836             'Test::Stream::Tester' => undef,
10837             'Test::Stream::Tester::Checks'=> undef,
10838             'Test::Stream::Tester::Checks::Event'=> undef,
10839             'Test::Stream::Tester::Events'=> undef,
10840             'Test::Stream::Tester::Events::Event'=> undef,
10841             'Test::Stream::Tester::Grab'=> undef,
10842             'Test::Stream::Threads' => undef,
10843             'Test::Stream::Toolset' => undef,
10844             'Test::Stream::Util' => undef,
10845             'Test::Tester' => '1.301001_075',
10846             'Test::Tester::Capture' => undef,
10847             'Test::use::ok' => '1.301001_075',
10848             'Unicode::UCD' => '0.59',
10849             'XS::APItest' => '0.68',
10850             'XSLoader' => '0.19',
10851             'experimental' => '0.013',
10852             'locale' => '1.05',
10853             'ok' => '1.301001_075',
10854             'overload' => '1.24',
10855             're' => '0.28',
10856             'warnings' => '1.29',
10857             },
10858             removed => {
10859             }
10860             },
10861             5.021007 => {
10862             delta_from => 5.021006,
10863             changed => {
10864             'Archive::Tar' => '2.04',
10865             'Archive::Tar::Constant'=> '2.04',
10866             'Archive::Tar::File' => '2.04',
10867             'B' => '1.54',
10868             'B::Concise' => '0.996',
10869             'B::Deparse' => '1.31',
10870             'B::Op_private' => '5.021007',
10871             'B::Showlex' => '1.05',
10872             'Compress::Raw::Bzip2' => '2.067',
10873             'Compress::Raw::Zlib' => '2.067',
10874             'Compress::Zlib' => '2.067',
10875             'Config' => '5.021007',
10876             'Cwd' => '3.54',
10877             'DB_File' => '1.834',
10878             'Data::Dumper' => '2.155',
10879             'Devel::PPPort' => '3.25',
10880             'Devel::Peek' => '1.20',
10881             'DynaLoader' => '1.29',
10882             'Encode' => '2.67',
10883             'Errno' => '1.22',
10884             'ExtUtils::CBuilder' => '0.280221',
10885             'ExtUtils::CBuilder::Base'=> '0.280221',
10886             'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10887             'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10888             'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10889             'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10890             'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10891             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10892             'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10893             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10894             'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10895             'ExtUtils::Command::MM' => '7.04',
10896             'ExtUtils::Liblist' => '7.04',
10897             'ExtUtils::Liblist::Kid'=> '7.04',
10898             'ExtUtils::MM' => '7.04',
10899             'ExtUtils::MM_AIX' => '7.04',
10900             'ExtUtils::MM_Any' => '7.04',
10901             'ExtUtils::MM_BeOS' => '7.04',
10902             'ExtUtils::MM_Cygwin' => '7.04',
10903             'ExtUtils::MM_DOS' => '7.04',
10904             'ExtUtils::MM_Darwin' => '7.04',
10905             'ExtUtils::MM_MacOS' => '7.04',
10906             'ExtUtils::MM_NW5' => '7.04',
10907             'ExtUtils::MM_OS2' => '7.04',
10908             'ExtUtils::MM_QNX' => '7.04',
10909             'ExtUtils::MM_UWIN' => '7.04',
10910             'ExtUtils::MM_Unix' => '7.04',
10911             'ExtUtils::MM_VMS' => '7.04',
10912             'ExtUtils::MM_VOS' => '7.04',
10913             'ExtUtils::MM_Win32' => '7.04',
10914             'ExtUtils::MM_Win95' => '7.04',
10915             'ExtUtils::MY' => '7.04',
10916             'ExtUtils::MakeMaker' => '7.04',
10917             'ExtUtils::MakeMaker::Config'=> '7.04',
10918             'ExtUtils::MakeMaker::Locale'=> '7.04',
10919             'ExtUtils::MakeMaker::version'=> '7.04',
10920             'ExtUtils::MakeMaker::version::regex'=> '7.04',
10921             'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10922             'ExtUtils::Mkbootstrap' => '7.04',
10923             'ExtUtils::Mksymlists' => '7.04',
10924             'ExtUtils::ParseXS' => '3.27',
10925             'ExtUtils::ParseXS::Constants'=> '3.27',
10926             'ExtUtils::ParseXS::CountLines'=> '3.27',
10927             'ExtUtils::ParseXS::Eval'=> '3.27',
10928             'ExtUtils::ParseXS::Utilities'=> '3.27',
10929             'ExtUtils::testlib' => '7.04',
10930             'File::Spec' => '3.53',
10931             'File::Spec::Cygwin' => '3.54',
10932             'File::Spec::Epoc' => '3.54',
10933             'File::Spec::Functions' => '3.54',
10934             'File::Spec::Mac' => '3.54',
10935             'File::Spec::OS2' => '3.54',
10936             'File::Spec::Unix' => '3.54',
10937             'File::Spec::VMS' => '3.54',
10938             'File::Spec::Win32' => '3.54',
10939             'Filter::Util::Call' => '1.51',
10940             'HTTP::Tiny' => '0.053',
10941             'IO' => '1.35',
10942             'IO::Compress::Adapter::Bzip2'=> '2.067',
10943             'IO::Compress::Adapter::Deflate'=> '2.067',
10944             'IO::Compress::Adapter::Identity'=> '2.067',
10945             'IO::Compress::Base' => '2.067',
10946             'IO::Compress::Base::Common'=> '2.067',
10947             'IO::Compress::Bzip2' => '2.067',
10948             'IO::Compress::Deflate' => '2.067',
10949             'IO::Compress::Gzip' => '2.067',
10950             'IO::Compress::Gzip::Constants'=> '2.067',
10951             'IO::Compress::RawDeflate'=> '2.067',
10952             'IO::Compress::Zip' => '2.067',
10953             'IO::Compress::Zip::Constants'=> '2.067',
10954             'IO::Compress::Zlib::Constants'=> '2.067',
10955             'IO::Compress::Zlib::Extra'=> '2.067',
10956             'IO::Socket::IP' => '0.34',
10957             'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10958             'IO::Uncompress::Adapter::Identity'=> '2.067',
10959             'IO::Uncompress::Adapter::Inflate'=> '2.067',
10960             'IO::Uncompress::AnyInflate'=> '2.067',
10961             'IO::Uncompress::AnyUncompress'=> '2.067',
10962             'IO::Uncompress::Base' => '2.067',
10963             'IO::Uncompress::Bunzip2'=> '2.067',
10964             'IO::Uncompress::Gunzip'=> '2.067',
10965             'IO::Uncompress::Inflate'=> '2.067',
10966             'IO::Uncompress::RawInflate'=> '2.067',
10967             'IO::Uncompress::Unzip' => '2.067',
10968             'Locale::Codes' => '3.33',
10969             'Locale::Codes::Constants'=> '3.33',
10970             'Locale::Codes::Country'=> '3.33',
10971             'Locale::Codes::Country_Codes'=> '3.33',
10972             'Locale::Codes::Country_Retired'=> '3.33',
10973             'Locale::Codes::Currency'=> '3.33',
10974             'Locale::Codes::Currency_Codes'=> '3.33',
10975             'Locale::Codes::Currency_Retired'=> '3.33',
10976             'Locale::Codes::LangExt'=> '3.33',
10977             'Locale::Codes::LangExt_Codes'=> '3.33',
10978             'Locale::Codes::LangExt_Retired'=> '3.33',
10979             'Locale::Codes::LangFam'=> '3.33',
10980             'Locale::Codes::LangFam_Codes'=> '3.33',
10981             'Locale::Codes::LangFam_Retired'=> '3.33',
10982             'Locale::Codes::LangVar'=> '3.33',
10983             'Locale::Codes::LangVar_Codes'=> '3.33',
10984             'Locale::Codes::LangVar_Retired'=> '3.33',
10985             'Locale::Codes::Language'=> '3.33',
10986             'Locale::Codes::Language_Codes'=> '3.33',
10987             'Locale::Codes::Language_Retired'=> '3.33',
10988             'Locale::Codes::Script' => '3.33',
10989             'Locale::Codes::Script_Codes'=> '3.33',
10990             'Locale::Codes::Script_Retired'=> '3.33',
10991             'Locale::Country' => '3.33',
10992             'Locale::Currency' => '3.33',
10993             'Locale::Language' => '3.33',
10994             'Locale::Maketext' => '1.26',
10995             'Locale::Script' => '3.33',
10996             'Module::CoreList' => '5.20141220',
10997             'Module::CoreList::TieHashDelta'=> '5.20141220',
10998             'Module::CoreList::Utils'=> '5.20141220',
10999             'NDBM_File' => '1.14',
11000             'Net::Cmd' => '3.04',
11001             'Net::Config' => '3.04',
11002             'Net::Domain' => '3.04',
11003             'Net::FTP' => '3.04',
11004             'Net::FTP::A' => '3.04',
11005             'Net::FTP::E' => '3.04',
11006             'Net::FTP::I' => '3.04',
11007             'Net::FTP::L' => '3.04',
11008             'Net::FTP::dataconn' => '3.04',
11009             'Net::NNTP' => '3.04',
11010             'Net::Netrc' => '3.04',
11011             'Net::POP3' => '3.04',
11012             'Net::SMTP' => '3.04',
11013             'Net::Time' => '3.04',
11014             'Opcode' => '1.30',
11015             'POSIX' => '1.48',
11016             'PerlIO::scalar' => '0.21',
11017             'Pod::Escapes' => '1.07',
11018             'SDBM_File' => '1.12',
11019             'Storable' => '2.52',
11020             'Sys::Hostname' => '1.20',
11021             'Test::Builder' => '1.301001_090',
11022             'Test::Builder::Module' => '1.301001_090',
11023             'Test::Builder::Tester' => '1.301001_090',
11024             'Test::Builder::Tester::Color'=> '1.301001_090',
11025             'Test::CanFork' => undef,
11026             'Test::CanThread' => undef,
11027             'Test::More' => '1.301001_090',
11028             'Test::Simple' => '1.301001_090',
11029             'Test::Stream' => '1.301001_090',
11030             'Test::Stream::API' => undef,
11031             'Test::Stream::ForceExit'=> undef,
11032             'Test::Stream::Subtest' => undef,
11033             'Test::Tester' => '1.301001_090',
11034             'Test::use::ok' => '1.301001_090',
11035             'Unicode::Collate' => '1.09',
11036             'Unicode::Collate::CJK::Big5'=> '1.09',
11037             'Unicode::Collate::CJK::GB2312'=> '1.09',
11038             'Unicode::Collate::CJK::JISX0208'=> '1.09',
11039             'Unicode::Collate::CJK::Korean'=> '1.09',
11040             'Unicode::Collate::CJK::Pinyin'=> '1.09',
11041             'Unicode::Collate::CJK::Stroke'=> '1.09',
11042             'Unicode::Collate::CJK::Zhuyin'=> '1.09',
11043             'Unicode::Collate::Locale'=> '1.09',
11044             'XS::APItest' => '0.69',
11045             'XSLoader' => '0.20',
11046             '_charnames' => '1.43',
11047             'arybase' => '0.09',
11048             'charnames' => '1.43',
11049             'feature' => '1.39',
11050             'mro' => '1.17',
11051             'ok' => '1.301001_090',
11052             'strict' => '1.09',
11053             'threads' => '1.96_001',
11054             },
11055             removed => {
11056             }
11057             },
11058             5.021008 => {
11059             delta_from => 5.021007,
11060             changed => {
11061             'App::Prove' => '3.35',
11062             'App::Prove::State' => '3.35',
11063             'App::Prove::State::Result'=> '3.35',
11064             'App::Prove::State::Result::Test'=> '3.35',
11065             'B' => '1.55',
11066             'B::Deparse' => '1.32',
11067             'B::Op_private' => '5.021008',
11068             'CPAN::Meta::Requirements'=> '2.131',
11069             'Compress::Raw::Bzip2' => '2.068',
11070             'Compress::Raw::Zlib' => '2.068',
11071             'Compress::Zlib' => '2.068',
11072             'Config' => '5.021008',
11073             'DB_File' => '1.835',
11074             'Data::Dumper' => '2.156',
11075             'Devel::PPPort' => '3.28',
11076             'Devel::Peek' => '1.21',
11077             'Digest::MD5' => '2.54',
11078             'Digest::SHA' => '5.95',
11079             'DynaLoader' => '1.30',
11080             'ExtUtils::Command' => '1.20',
11081             'ExtUtils::Manifest' => '1.70',
11082             'Fatal' => '2.26',
11083             'File::Glob' => '1.24',
11084             'Filter::Util::Call' => '1.54',
11085             'Getopt::Long' => '2.43',
11086             'IO::Compress::Adapter::Bzip2'=> '2.068',
11087             'IO::Compress::Adapter::Deflate'=> '2.068',
11088             'IO::Compress::Adapter::Identity'=> '2.068',
11089             'IO::Compress::Base' => '2.068',
11090             'IO::Compress::Base::Common'=> '2.068',
11091             'IO::Compress::Bzip2' => '2.068',
11092             'IO::Compress::Deflate' => '2.068',
11093             'IO::Compress::Gzip' => '2.068',
11094             'IO::Compress::Gzip::Constants'=> '2.068',
11095             'IO::Compress::RawDeflate'=> '2.068',
11096             'IO::Compress::Zip' => '2.068',
11097             'IO::Compress::Zip::Constants'=> '2.068',
11098             'IO::Compress::Zlib::Constants'=> '2.068',
11099             'IO::Compress::Zlib::Extra'=> '2.068',
11100             'IO::Socket::IP' => '0.36',
11101             'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
11102             'IO::Uncompress::Adapter::Identity'=> '2.068',
11103             'IO::Uncompress::Adapter::Inflate'=> '2.068',
11104             'IO::Uncompress::AnyInflate'=> '2.068',
11105             'IO::Uncompress::AnyUncompress'=> '2.068',
11106             'IO::Uncompress::Base' => '2.068',
11107             'IO::Uncompress::Bunzip2'=> '2.068',
11108             'IO::Uncompress::Gunzip'=> '2.068',
11109             'IO::Uncompress::Inflate'=> '2.068',
11110             'IO::Uncompress::RawInflate'=> '2.068',
11111             'IO::Uncompress::Unzip' => '2.068',
11112             'MIME::Base64' => '3.15',
11113             'Module::CoreList' => '5.20150220',
11114             'Module::CoreList::TieHashDelta'=> '5.20150220',
11115             'Module::CoreList::Utils'=> '5.20150220',
11116             'Module::Load::Conditional'=> '0.64',
11117             'Module::Metadata' => '1.000026',
11118             'Net::Cmd' => '3.05',
11119             'Net::Config' => '3.05',
11120             'Net::Domain' => '3.05',
11121             'Net::FTP' => '3.05',
11122             'Net::FTP::A' => '3.05',
11123             'Net::FTP::E' => '3.05',
11124             'Net::FTP::I' => '3.05',
11125             'Net::FTP::L' => '3.05',
11126             'Net::FTP::dataconn' => '3.05',
11127             'Net::NNTP' => '3.05',
11128             'Net::Netrc' => '3.05',
11129             'Net::POP3' => '3.05',
11130             'Net::SMTP' => '3.05',
11131             'Net::Time' => '3.05',
11132             'Opcode' => '1.31',
11133             'POSIX' => '1.49',
11134             'PerlIO::encoding' => '0.21',
11135             'Pod::Simple' => '3.29',
11136             'Pod::Simple::BlackBox' => '3.29',
11137             'Pod::Simple::Checker' => '3.29',
11138             'Pod::Simple::Debug' => '3.29',
11139             'Pod::Simple::DumpAsText'=> '3.29',
11140             'Pod::Simple::DumpAsXML'=> '3.29',
11141             'Pod::Simple::HTML' => '3.29',
11142             'Pod::Simple::HTMLBatch'=> '3.29',
11143             'Pod::Simple::LinkSection'=> '3.29',
11144             'Pod::Simple::Methody' => '3.29',
11145             'Pod::Simple::Progress' => '3.29',
11146             'Pod::Simple::PullParser'=> '3.29',
11147             'Pod::Simple::PullParserEndToken'=> '3.29',
11148             'Pod::Simple::PullParserStartToken'=> '3.29',
11149             'Pod::Simple::PullParserTextToken'=> '3.29',
11150             'Pod::Simple::PullParserToken'=> '3.29',
11151             'Pod::Simple::RTF' => '3.29',
11152             'Pod::Simple::Search' => '3.29',
11153             'Pod::Simple::SimpleTree'=> '3.29',
11154             'Pod::Simple::Text' => '3.29',
11155             'Pod::Simple::TextContent'=> '3.29',
11156             'Pod::Simple::TiedOutFH'=> '3.29',
11157             'Pod::Simple::Transcode'=> '3.29',
11158             'Pod::Simple::TranscodeDumb'=> '3.29',
11159             'Pod::Simple::TranscodeSmart'=> '3.29',
11160             'Pod::Simple::XHTML' => '3.29',
11161             'Pod::Simple::XMLOutStream'=> '3.29',
11162             'SDBM_File' => '1.13',
11163             'Safe' => '2.39',
11164             'TAP::Base' => '3.35',
11165             'TAP::Formatter::Base' => '3.35',
11166             'TAP::Formatter::Color' => '3.35',
11167             'TAP::Formatter::Console'=> '3.35',
11168             'TAP::Formatter::Console::ParallelSession'=> '3.35',
11169             'TAP::Formatter::Console::Session'=> '3.35',
11170             'TAP::Formatter::File' => '3.35',
11171             'TAP::Formatter::File::Session'=> '3.35',
11172             'TAP::Formatter::Session'=> '3.35',
11173             'TAP::Harness' => '3.35',
11174             'TAP::Harness::Env' => '3.35',
11175             'TAP::Object' => '3.35',
11176             'TAP::Parser' => '3.35',
11177             'TAP::Parser::Aggregator'=> '3.35',
11178             'TAP::Parser::Grammar' => '3.35',
11179             'TAP::Parser::Iterator' => '3.35',
11180             'TAP::Parser::Iterator::Array'=> '3.35',
11181             'TAP::Parser::Iterator::Process'=> '3.35',
11182             'TAP::Parser::Iterator::Stream'=> '3.35',
11183             'TAP::Parser::IteratorFactory'=> '3.35',
11184             'TAP::Parser::Multiplexer'=> '3.35',
11185             'TAP::Parser::Result' => '3.35',
11186             'TAP::Parser::Result::Bailout'=> '3.35',
11187             'TAP::Parser::Result::Comment'=> '3.35',
11188             'TAP::Parser::Result::Plan'=> '3.35',
11189             'TAP::Parser::Result::Pragma'=> '3.35',
11190             'TAP::Parser::Result::Test'=> '3.35',
11191             'TAP::Parser::Result::Unknown'=> '3.35',
11192             'TAP::Parser::Result::Version'=> '3.35',
11193             'TAP::Parser::Result::YAML'=> '3.35',
11194             'TAP::Parser::ResultFactory'=> '3.35',
11195             'TAP::Parser::Scheduler'=> '3.35',
11196             'TAP::Parser::Scheduler::Job'=> '3.35',
11197             'TAP::Parser::Scheduler::Spinner'=> '3.35',
11198             'TAP::Parser::Source' => '3.35',
11199             'TAP::Parser::SourceHandler'=> '3.35',
11200             'TAP::Parser::SourceHandler::Executable'=> '3.35',
11201             'TAP::Parser::SourceHandler::File'=> '3.35',
11202             'TAP::Parser::SourceHandler::Handle'=> '3.35',
11203             'TAP::Parser::SourceHandler::Perl'=> '3.35',
11204             'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11205             'TAP::Parser::YAMLish::Reader'=> '3.35',
11206             'TAP::Parser::YAMLish::Writer'=> '3.35',
11207             'Test::Builder' => '1.301001_097',
11208             'Test::Builder::Module' => '1.301001_097',
11209             'Test::Builder::Tester' => '1.301001_097',
11210             'Test::Builder::Tester::Color'=> '1.301001_097',
11211             'Test::Harness' => '3.35',
11212             'Test::More' => '1.301001_097',
11213             'Test::Simple' => '1.301001_097',
11214             'Test::Stream' => '1.301001_097',
11215             'Test::Stream::Block' => undef,
11216             'Test::Tester' => '1.301001_097',
11217             'Test::Tester::CaptureRunner'=> undef,
11218             'Test::Tester::Delegate'=> undef,
11219             'Test::use::ok' => '1.301001_097',
11220             'Unicode::Collate' => '1.10',
11221             'Unicode::Collate::CJK::Big5'=> '1.10',
11222             'Unicode::Collate::CJK::GB2312'=> '1.10',
11223             'Unicode::Collate::CJK::JISX0208'=> '1.10',
11224             'Unicode::Collate::CJK::Korean'=> '1.10',
11225             'Unicode::Collate::CJK::Pinyin'=> '1.10',
11226             'Unicode::Collate::CJK::Stroke'=> '1.10',
11227             'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11228             'Unicode::Collate::Locale'=> '1.10',
11229             'VMS::DCLsym' => '1.06',
11230             'XS::APItest' => '0.70',
11231             'arybase' => '0.10',
11232             'attributes' => '0.25',
11233             'autodie' => '2.26',
11234             'autodie::Scope::Guard' => '2.26',
11235             'autodie::Scope::GuardStack'=> '2.26',
11236             'autodie::ScopeUtil' => '2.26',
11237             'autodie::exception' => '2.26',
11238             'autodie::exception::system'=> '2.26',
11239             'autodie::hints' => '2.26',
11240             'autodie::skip' => '2.26',
11241             'ok' => '1.301001_097',
11242             're' => '0.30',
11243             'warnings' => '1.30',
11244             },
11245             removed => {
11246             }
11247             },
11248             5.020002 => {
11249             delta_from => 5.020001,
11250             changed => {
11251             'CPAN::Author' => '5.5002',
11252             'CPAN::CacheMgr' => '5.5002',
11253             'CPAN::FTP' => '5.5006',
11254             'CPAN::HTTP::Client' => '1.9601',
11255             'CPAN::HandleConfig' => '5.5005',
11256             'CPAN::Index' => '1.9601',
11257             'CPAN::LWP::UserAgent' => '1.9601',
11258             'CPAN::Mirrors' => '1.9601',
11259             'Config' => '5.020002',
11260             'Cwd' => '3.48_01',
11261             'Data::Dumper' => '2.151_01',
11262             'Errno' => '1.20_05',
11263             'File::Spec' => '3.48_01',
11264             'File::Spec::Cygwin' => '3.48_01',
11265             'File::Spec::Epoc' => '3.48_01',
11266             'File::Spec::Functions' => '3.48_01',
11267             'File::Spec::Mac' => '3.48_01',
11268             'File::Spec::OS2' => '3.48_01',
11269             'File::Spec::Unix' => '3.48_01',
11270             'File::Spec::VMS' => '3.48_01',
11271             'File::Spec::Win32' => '3.48_01',
11272             'IO::Socket' => '1.38',
11273             'Module::CoreList' => '5.20150214',
11274             'Module::CoreList::TieHashDelta'=> '5.20150214',
11275             'Module::CoreList::Utils'=> '5.20150214',
11276             'PerlIO::scalar' => '0.18_01',
11277             'Pod::PlainText' => '2.07',
11278             'Storable' => '2.49_01',
11279             'VMS::DCLsym' => '1.05_01',
11280             'VMS::Stdio' => '2.41',
11281             'attributes' => '0.23',
11282             'feature' => '1.36_01',
11283             },
11284             removed => {
11285             }
11286             },
11287             5.021009 => {
11288             delta_from => 5.021008,
11289             changed => {
11290             'B' => '1.56',
11291             'B::Debug' => '1.23',
11292             'B::Deparse' => '1.33',
11293             'B::Op_private' => '5.021009',
11294             'Benchmark' => '1.20',
11295             'CPAN::Author' => '5.5002',
11296             'CPAN::CacheMgr' => '5.5002',
11297             'CPAN::FTP' => '5.5006',
11298             'CPAN::HTTP::Client' => '1.9601',
11299             'CPAN::HandleConfig' => '5.5005',
11300             'CPAN::Index' => '1.9601',
11301             'CPAN::LWP::UserAgent' => '1.9601',
11302             'CPAN::Meta::Requirements'=> '2.132',
11303             'CPAN::Mirrors' => '1.9601',
11304             'Carp' => '1.35',
11305             'Carp::Heavy' => '1.35',
11306             'Config' => '5.021009',
11307             'Config::Perl::V' => '0.23',
11308             'Data::Dumper' => '2.157',
11309             'Devel::Peek' => '1.22',
11310             'DynaLoader' => '1.31',
11311             'Encode' => '2.70',
11312             'Encode::MIME::Header' => '2.16',
11313             'Errno' => '1.23',
11314             'ExtUtils::Miniperl' => '1.04',
11315             'HTTP::Tiny' => '0.054',
11316             'Module::CoreList' => '5.20150220',
11317             'Module::CoreList::TieHashDelta'=> '5.20150220',
11318             'Module::CoreList::Utils'=> '5.20150220',
11319             'Opcode' => '1.32',
11320             'POSIX' => '1.51',
11321             'Perl::OSType' => '1.008',
11322             'PerlIO::scalar' => '0.22',
11323             'Pod::Find' => '1.63',
11324             'Pod::InputObjects' => '1.63',
11325             'Pod::ParseUtils' => '1.63',
11326             'Pod::Parser' => '1.63',
11327             'Pod::Perldoc' => '3.25',
11328             'Pod::Perldoc::BaseTo' => '3.25',
11329             'Pod::Perldoc::GetOptsOO'=> '3.25',
11330             'Pod::Perldoc::ToANSI' => '3.25',
11331             'Pod::Perldoc::ToChecker'=> '3.25',
11332             'Pod::Perldoc::ToMan' => '3.25',
11333             'Pod::Perldoc::ToNroff' => '3.25',
11334             'Pod::Perldoc::ToPod' => '3.25',
11335             'Pod::Perldoc::ToRtf' => '3.25',
11336             'Pod::Perldoc::ToTerm' => '3.25',
11337             'Pod::Perldoc::ToText' => '3.25',
11338             'Pod::Perldoc::ToTk' => '3.25',
11339             'Pod::Perldoc::ToXml' => '3.25',
11340             'Pod::PlainText' => '2.07',
11341             'Pod::Select' => '1.63',
11342             'Socket' => '2.018',
11343             'Storable' => '2.53',
11344             'Test::Builder' => '1.301001_098',
11345             'Test::Builder::Module' => '1.301001_098',
11346             'Test::Builder::Tester' => '1.301001_098',
11347             'Test::Builder::Tester::Color'=> '1.301001_098',
11348             'Test::More' => '1.301001_098',
11349             'Test::Simple' => '1.301001_098',
11350             'Test::Stream' => '1.301001_098',
11351             'Test::Tester' => '1.301001_098',
11352             'Test::use::ok' => '1.301001_098',
11353             'Unicode::Collate' => '1.11',
11354             'Unicode::Collate::CJK::Big5'=> '1.11',
11355             'Unicode::Collate::CJK::GB2312'=> '1.11',
11356             'Unicode::Collate::CJK::JISX0208'=> '1.11',
11357             'Unicode::Collate::CJK::Korean'=> '1.11',
11358             'Unicode::Collate::CJK::Pinyin'=> '1.11',
11359             'Unicode::Collate::CJK::Stroke'=> '1.11',
11360             'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11361             'Unicode::Collate::Locale'=> '1.11',
11362             'Unicode::UCD' => '0.61',
11363             'VMS::Stdio' => '2.41',
11364             'Win32' => '0.51',
11365             'Win32API::File' => '0.1202',
11366             'attributes' => '0.26',
11367             'bigint' => '0.39',
11368             'bignum' => '0.39',
11369             'bigrat' => '0.39',
11370             'constant' => '1.33',
11371             'encoding' => '2.13',
11372             'feature' => '1.40',
11373             'ok' => '1.301001_098',
11374             'overload' => '1.25',
11375             'perlfaq' => '5.021009',
11376             're' => '0.31',
11377             'threads::shared' => '1.48',
11378             'warnings' => '1.31',
11379             },
11380             removed => {
11381             }
11382             },
11383             5.021010 => {
11384             delta_from => 5.021009,
11385             changed => {
11386             'App::Cpan' => '1.63',
11387             'B' => '1.57',
11388             'B::Deparse' => '1.34',
11389             'B::Op_private' => '5.021010',
11390             'Benchmark' => '1.2',
11391             'CPAN' => '2.10',
11392             'CPAN::Distribution' => '2.04',
11393             'CPAN::FirstTime' => '5.5307',
11394             'CPAN::HTTP::Credentials'=> '1.9601',
11395             'CPAN::HandleConfig' => '5.5006',
11396             'CPAN::Meta' => '2.150001',
11397             'CPAN::Meta::Converter' => '2.150001',
11398             'CPAN::Meta::Feature' => '2.150001',
11399             'CPAN::Meta::History' => '2.150001',
11400             'CPAN::Meta::Merge' => '2.150001',
11401             'CPAN::Meta::Prereqs' => '2.150001',
11402             'CPAN::Meta::Spec' => '2.150001',
11403             'CPAN::Meta::Validator' => '2.150001',
11404             'CPAN::Module' => '5.5002',
11405             'CPAN::Plugin' => '0.95',
11406             'CPAN::Plugin::Specfile'=> '0.01',
11407             'CPAN::Shell' => '5.5005',
11408             'Carp' => '1.36',
11409             'Carp::Heavy' => '1.36',
11410             'Config' => '5.02101',
11411             'Cwd' => '3.55',
11412             'DB' => '1.08',
11413             'Data::Dumper' => '2.158',
11414             'Devel::PPPort' => '3.31',
11415             'DynaLoader' => '1.32',
11416             'Encode' => '2.72',
11417             'Encode::Alias' => '2.19',
11418             'File::Spec' => '3.55',
11419             'File::Spec::Cygwin' => '3.55',
11420             'File::Spec::Epoc' => '3.55',
11421             'File::Spec::Functions' => '3.55',
11422             'File::Spec::Mac' => '3.55',
11423             'File::Spec::OS2' => '3.55',
11424             'File::Spec::Unix' => '3.55',
11425             'File::Spec::VMS' => '3.55',
11426             'File::Spec::Win32' => '3.55',
11427             'Getopt::Long' => '2.45',
11428             'Locale::Codes' => '3.34',
11429             'Locale::Codes::Constants'=> '3.34',
11430             'Locale::Codes::Country'=> '3.34',
11431             'Locale::Codes::Country_Codes'=> '3.34',
11432             'Locale::Codes::Country_Retired'=> '3.34',
11433             'Locale::Codes::Currency'=> '3.34',
11434             'Locale::Codes::Currency_Codes'=> '3.34',
11435             'Locale::Codes::Currency_Retired'=> '3.34',
11436             'Locale::Codes::LangExt'=> '3.34',
11437             'Locale::Codes::LangExt_Codes'=> '3.34',
11438             'Locale::Codes::LangExt_Retired'=> '3.34',
11439             'Locale::Codes::LangFam'=> '3.34',
11440             'Locale::Codes::LangFam_Codes'=> '3.34',
11441             'Locale::Codes::LangFam_Retired'=> '3.34',
11442             'Locale::Codes::LangVar'=> '3.34',
11443             'Locale::Codes::LangVar_Codes'=> '3.34',
11444             'Locale::Codes::LangVar_Retired'=> '3.34',
11445             'Locale::Codes::Language'=> '3.34',
11446             'Locale::Codes::Language_Codes'=> '3.34',
11447             'Locale::Codes::Language_Retired'=> '3.34',
11448             'Locale::Codes::Script' => '3.34',
11449             'Locale::Codes::Script_Codes'=> '3.34',
11450             'Locale::Codes::Script_Retired'=> '3.34',
11451             'Locale::Country' => '3.34',
11452             'Locale::Currency' => '3.34',
11453             'Locale::Language' => '3.34',
11454             'Locale::Script' => '3.34',
11455             'Module::CoreList' => '5.20150320',
11456             'Module::CoreList::TieHashDelta'=> '5.20150320',
11457             'Module::CoreList::Utils'=> '5.20150320',
11458             'POSIX' => '1.52',
11459             'Pod::Functions' => '1.09',
11460             'Term::Complete' => '1.403',
11461             'Test::Builder' => '1.001014',
11462             'Test::Builder::IO::Scalar'=> '2.113',
11463             'Test::Builder::Module' => '1.001014',
11464             'Test::Builder::Tester' => '1.28',
11465             'Test::Builder::Tester::Color'=> '1.290001',
11466             'Test::More' => '1.001014',
11467             'Test::Simple' => '1.001014',
11468             'Test::Tester' => '0.114',
11469             'Test::use::ok' => '0.16',
11470             'Text::Balanced' => '2.03',
11471             'Text::ParseWords' => '3.30',
11472             'Unicode::Collate' => '1.12',
11473             'Unicode::Collate::CJK::Big5'=> '1.12',
11474             'Unicode::Collate::CJK::GB2312'=> '1.12',
11475             'Unicode::Collate::CJK::JISX0208'=> '1.12',
11476             'Unicode::Collate::CJK::Korean'=> '1.12',
11477             'Unicode::Collate::CJK::Pinyin'=> '1.12',
11478             'Unicode::Collate::CJK::Stroke'=> '1.12',
11479             'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11480             'Unicode::Collate::Locale'=> '1.12',
11481             'XS::APItest' => '0.71',
11482             'encoding' => '2.14',
11483             'locale' => '1.06',
11484             'meta_notation' => undef,
11485             'ok' => '0.16',
11486             'parent' => '0.232',
11487             're' => '0.32',
11488             'sigtrap' => '1.08',
11489             'threads' => '2.01',
11490             'utf8' => '1.15',
11491             },
11492             removed => {
11493             'Test::CanFork' => 1,
11494             'Test::CanThread' => 1,
11495             'Test::More::DeepCheck' => 1,
11496             'Test::More::DeepCheck::Strict'=> 1,
11497             'Test::More::DeepCheck::Tolerant'=> 1,
11498             'Test::More::Tools' => 1,
11499             'Test::MostlyLike' => 1,
11500             'Test::Stream' => 1,
11501             'Test::Stream::API' => 1,
11502             'Test::Stream::ArrayBase'=> 1,
11503             'Test::Stream::ArrayBase::Meta'=> 1,
11504             'Test::Stream::Block' => 1,
11505             'Test::Stream::Carp' => 1,
11506             'Test::Stream::Context' => 1,
11507             'Test::Stream::Event' => 1,
11508             'Test::Stream::Event::Bail'=> 1,
11509             'Test::Stream::Event::Child'=> 1,
11510             'Test::Stream::Event::Diag'=> 1,
11511             'Test::Stream::Event::Finish'=> 1,
11512             'Test::Stream::Event::Note'=> 1,
11513             'Test::Stream::Event::Ok'=> 1,
11514             'Test::Stream::Event::Plan'=> 1,
11515             'Test::Stream::Event::Subtest'=> 1,
11516             'Test::Stream::ExitMagic'=> 1,
11517             'Test::Stream::ExitMagic::Context'=> 1,
11518             'Test::Stream::Exporter'=> 1,
11519             'Test::Stream::Exporter::Meta'=> 1,
11520             'Test::Stream::ForceExit'=> 1,
11521             'Test::Stream::IOSets' => 1,
11522             'Test::Stream::Meta' => 1,
11523             'Test::Stream::PackageUtil'=> 1,
11524             'Test::Stream::Subtest' => 1,
11525             'Test::Stream::Tester' => 1,
11526             'Test::Stream::Tester::Checks'=> 1,
11527             'Test::Stream::Tester::Checks::Event'=> 1,
11528             'Test::Stream::Tester::Events'=> 1,
11529             'Test::Stream::Tester::Events::Event'=> 1,
11530             'Test::Stream::Tester::Grab'=> 1,
11531             'Test::Stream::Threads' => 1,
11532             'Test::Stream::Toolset' => 1,
11533             'Test::Stream::Util' => 1,
11534             }
11535             },
11536             5.021011 => {
11537             delta_from => 5.021010,
11538             changed => {
11539             'B' => '1.58',
11540             'B::Deparse' => '1.35',
11541             'B::Op_private' => '5.021011',
11542             'CPAN' => '2.11',
11543             'Config' => '5.021011',
11544             'Config::Perl::V' => '0.24',
11545             'Cwd' => '3.56',
11546             'ExtUtils::Miniperl' => '1.05',
11547             'ExtUtils::ParseXS' => '3.28',
11548             'ExtUtils::ParseXS::Constants'=> '3.28',
11549             'ExtUtils::ParseXS::CountLines'=> '3.28',
11550             'ExtUtils::ParseXS::Eval'=> '3.28',
11551             'ExtUtils::ParseXS::Utilities'=> '3.28',
11552             'ExtUtils::Typemaps' => '3.28',
11553             'ExtUtils::Typemaps::Cmd'=> '3.28',
11554             'ExtUtils::Typemaps::InputMap'=> '3.28',
11555             'ExtUtils::Typemaps::OutputMap'=> '3.28',
11556             'ExtUtils::Typemaps::Type'=> '3.28',
11557             'File::Spec' => '3.56',
11558             'File::Spec::Cygwin' => '3.56',
11559             'File::Spec::Epoc' => '3.56',
11560             'File::Spec::Functions' => '3.56',
11561             'File::Spec::Mac' => '3.56',
11562             'File::Spec::OS2' => '3.56',
11563             'File::Spec::Unix' => '3.56',
11564             'File::Spec::VMS' => '3.56',
11565             'File::Spec::Win32' => '3.56',
11566             'IO::Socket::IP' => '0.37',
11567             'Module::CoreList' => '5.20150420',
11568             'Module::CoreList::TieHashDelta'=> '5.20150420',
11569             'Module::CoreList::Utils'=> '5.20150420',
11570             'PerlIO::mmap' => '0.014',
11571             'XS::APItest' => '0.72',
11572             'attributes' => '0.27',
11573             'if' => '0.0604',
11574             'utf8' => '1.16',
11575             'warnings' => '1.32',
11576             },
11577             removed => {
11578             }
11579             },
11580             5.022000 => {
11581             delta_from => 5.021011,
11582             changed => {
11583             'B::Op_private' => '5.022000',
11584             'Config' => '5.022',
11585             'ExtUtils::Command::MM' => '7.04_01',
11586             'ExtUtils::Liblist' => '7.04_01',
11587             'ExtUtils::Liblist::Kid'=> '7.04_01',
11588             'ExtUtils::MM' => '7.04_01',
11589             'ExtUtils::MM_AIX' => '7.04_01',
11590             'ExtUtils::MM_Any' => '7.04_01',
11591             'ExtUtils::MM_BeOS' => '7.04_01',
11592             'ExtUtils::MM_Cygwin' => '7.04_01',
11593             'ExtUtils::MM_DOS' => '7.04_01',
11594             'ExtUtils::MM_Darwin' => '7.04_01',
11595             'ExtUtils::MM_MacOS' => '7.04_01',
11596             'ExtUtils::MM_NW5' => '7.04_01',
11597             'ExtUtils::MM_OS2' => '7.04_01',
11598             'ExtUtils::MM_QNX' => '7.04_01',
11599             'ExtUtils::MM_UWIN' => '7.04_01',
11600             'ExtUtils::MM_Unix' => '7.04_01',
11601             'ExtUtils::MM_VMS' => '7.04_01',
11602             'ExtUtils::MM_VOS' => '7.04_01',
11603             'ExtUtils::MM_Win32' => '7.04_01',
11604             'ExtUtils::MM_Win95' => '7.04_01',
11605             'ExtUtils::MY' => '7.04_01',
11606             'ExtUtils::MakeMaker' => '7.04_01',
11607             'ExtUtils::MakeMaker::Config'=> '7.04_01',
11608             'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11609             'ExtUtils::MakeMaker::version'=> '7.04_01',
11610             'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11611             'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11612             'ExtUtils::Mkbootstrap' => '7.04_01',
11613             'ExtUtils::Mksymlists' => '7.04_01',
11614             'ExtUtils::testlib' => '7.04_01',
11615             'Module::CoreList' => '5.20150520',
11616             'Module::CoreList::TieHashDelta'=> '5.20150520',
11617             'Module::CoreList::Utils'=> '5.20150520',
11618             'POSIX' => '1.53',
11619             'PerlIO::via::QuotedPrint'=> '0.08',
11620             'overload' => '1.26',
11621             'utf8' => '1.17',
11622             },
11623             removed => {
11624             }
11625             },
11626             5.023000 => {
11627             delta_from => 5.022000,
11628             changed => {
11629             'B::Op_private' => '5.023000',
11630             'CPAN::Meta' => '2.150005',
11631             'CPAN::Meta::Converter' => '2.150005',
11632             'CPAN::Meta::Feature' => '2.150005',
11633             'CPAN::Meta::History' => '2.150005',
11634             'CPAN::Meta::Merge' => '2.150005',
11635             'CPAN::Meta::Prereqs' => '2.150005',
11636             'CPAN::Meta::Requirements'=> '2.133',
11637             'CPAN::Meta::Spec' => '2.150005',
11638             'CPAN::Meta::Validator' => '2.150005',
11639             'CPAN::Meta::YAML' => '0.016',
11640             'Config' => '5.023',
11641             'Encode' => '2.73',
11642             'ExtUtils::CBuilder' => '0.280223',
11643             'ExtUtils::CBuilder::Base'=> '0.280223',
11644             'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11645             'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11646             'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11647             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11648             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11649             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11650             'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11651             'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11652             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11653             'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11654             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11655             'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11656             'Fatal' => '2.27',
11657             'Getopt::Long' => '2.46',
11658             'HTTP::Tiny' => '0.056',
11659             'List::Util' => '1.42_01',
11660             'List::Util::XS' => '1.42_01',
11661             'Locale::Codes' => '3.35',
11662             'Locale::Codes::Constants'=> '3.35',
11663             'Locale::Codes::Country'=> '3.35',
11664             'Locale::Codes::Country_Codes'=> '3.35',
11665             'Locale::Codes::Country_Retired'=> '3.35',
11666             'Locale::Codes::Currency'=> '3.35',
11667             'Locale::Codes::Currency_Codes'=> '3.35',
11668             'Locale::Codes::Currency_Retired'=> '3.35',
11669             'Locale::Codes::LangExt'=> '3.35',
11670             'Locale::Codes::LangExt_Codes'=> '3.35',
11671             'Locale::Codes::LangExt_Retired'=> '3.35',
11672             'Locale::Codes::LangFam'=> '3.35',
11673             'Locale::Codes::LangFam_Codes'=> '3.35',
11674             'Locale::Codes::LangFam_Retired'=> '3.35',
11675             'Locale::Codes::LangVar'=> '3.35',
11676             'Locale::Codes::LangVar_Codes'=> '3.35',
11677             'Locale::Codes::LangVar_Retired'=> '3.35',
11678             'Locale::Codes::Language'=> '3.35',
11679             'Locale::Codes::Language_Codes'=> '3.35',
11680             'Locale::Codes::Language_Retired'=> '3.35',
11681             'Locale::Codes::Script' => '3.35',
11682             'Locale::Codes::Script_Codes'=> '3.35',
11683             'Locale::Codes::Script_Retired'=> '3.35',
11684             'Locale::Country' => '3.35',
11685             'Locale::Currency' => '3.35',
11686             'Locale::Language' => '3.35',
11687             'Locale::Script' => '3.35',
11688             'Math::BigFloat' => '1.999701',
11689             'Math::BigInt' => '1.999701',
11690             'Math::BigInt::Calc' => '1.999701',
11691             'Math::BigInt::CalcEmu' => '1.999701',
11692             'Math::BigRat' => '0.260801',
11693             'Module::CoreList' => '5.20150620',
11694             'Module::CoreList::TieHashDelta'=> '5.20150620',
11695             'Module::CoreList::Utils'=> '5.20150620',
11696             'Module::Metadata' => '1.000027',
11697             'Net::Cmd' => '3.06',
11698             'Net::Config' => '3.06',
11699             'Net::Domain' => '3.06',
11700             'Net::FTP' => '3.06',
11701             'Net::FTP::A' => '3.06',
11702             'Net::FTP::E' => '3.06',
11703             'Net::FTP::I' => '3.06',
11704             'Net::FTP::L' => '3.06',
11705             'Net::FTP::dataconn' => '3.06',
11706             'Net::NNTP' => '3.06',
11707             'Net::Netrc' => '3.06',
11708             'Net::POP3' => '3.06',
11709             'Net::SMTP' => '3.06',
11710             'Net::Time' => '3.06',
11711             'POSIX' => '1.54',
11712             'Parse::CPAN::Meta' => '1.4417',
11713             'Pod::Simple' => '3.30',
11714             'Pod::Simple::BlackBox' => '3.30',
11715             'Pod::Simple::Checker' => '3.30',
11716             'Pod::Simple::Debug' => '3.30',
11717             'Pod::Simple::DumpAsText'=> '3.30',
11718             'Pod::Simple::DumpAsXML'=> '3.30',
11719             'Pod::Simple::HTML' => '3.30',
11720             'Pod::Simple::HTMLBatch'=> '3.30',
11721             'Pod::Simple::LinkSection'=> '3.30',
11722             'Pod::Simple::Methody' => '3.30',
11723             'Pod::Simple::Progress' => '3.30',
11724             'Pod::Simple::PullParser'=> '3.30',
11725             'Pod::Simple::PullParserEndToken'=> '3.30',
11726             'Pod::Simple::PullParserStartToken'=> '3.30',
11727             'Pod::Simple::PullParserTextToken'=> '3.30',
11728             'Pod::Simple::PullParserToken'=> '3.30',
11729             'Pod::Simple::RTF' => '3.30',
11730             'Pod::Simple::Search' => '3.30',
11731             'Pod::Simple::SimpleTree'=> '3.30',
11732             'Pod::Simple::Text' => '3.30',
11733             'Pod::Simple::TextContent'=> '3.30',
11734             'Pod::Simple::TiedOutFH'=> '3.30',
11735             'Pod::Simple::Transcode'=> '3.30',
11736             'Pod::Simple::TranscodeDumb'=> '3.30',
11737             'Pod::Simple::TranscodeSmart'=> '3.30',
11738             'Pod::Simple::XHTML' => '3.30',
11739             'Pod::Simple::XMLOutStream'=> '3.30',
11740             'Pod::Usage' => '1.67',
11741             'Scalar::Util' => '1.42_01',
11742             'Socket' => '2.019',
11743             'Sub::Util' => '1.42_01',
11744             'Time::Piece' => '1.30',
11745             'Time::Seconds' => '1.30',
11746             'UNIVERSAL' => '1.13',
11747             'Unicode' => '8.0.0',
11748             'XS::APItest' => '0.73',
11749             'autodie' => '2.27',
11750             'autodie::Scope::Guard' => '2.27',
11751             'autodie::Scope::GuardStack'=> '2.27',
11752             'autodie::Util' => '2.27',
11753             'autodie::exception' => '2.27',
11754             'autodie::exception::system'=> '2.27',
11755             'autodie::hints' => '2.27',
11756             'autodie::skip' => '2.27',
11757             'encoding' => '2.15',
11758             'feature' => '1.41',
11759             'parent' => '0.234',
11760             'threads' => '2.02',
11761             },
11762             removed => {
11763             }
11764             },
11765             5.023001 => {
11766             delta_from => 5.023000,
11767             changed => {
11768             'B::Op_private' => '5.023001',
11769             'Config' => '5.023001',
11770             'DynaLoader' => '1.33',
11771             'Encode' => '2.75',
11772             'Encode::MIME::Header' => '2.17',
11773             'Encode::Unicode' => '2.13',
11774             'Fatal' => '2.29',
11775             'File::Path' => '2.11',
11776             'Getopt::Long' => '2.47',
11777             'I18N::Langinfo' => '0.13',
11778             'IPC::Open3' => '1.19',
11779             'Module::CoreList' => '5.20150720',
11780             'Module::CoreList::TieHashDelta'=> '5.20150720',
11781             'Module::CoreList::Utils'=> '5.20150720',
11782             'Net::Cmd' => '3.07',
11783             'Net::Config' => '3.07',
11784             'Net::Domain' => '3.07',
11785             'Net::FTP' => '3.07',
11786             'Net::FTP::A' => '3.07',
11787             'Net::FTP::E' => '3.07',
11788             'Net::FTP::I' => '3.07',
11789             'Net::FTP::L' => '3.07',
11790             'Net::FTP::dataconn' => '3.07',
11791             'Net::NNTP' => '3.07',
11792             'Net::Netrc' => '3.07',
11793             'Net::POP3' => '3.07',
11794             'Net::SMTP' => '3.07',
11795             'Net::Time' => '3.07',
11796             'Opcode' => '1.33',
11797             'POSIX' => '1.55',
11798             'PerlIO::scalar' => '0.23',
11799             'Socket' => '2.020',
11800             'Storable' => '2.54',
11801             'Unicode::Collate' => '1.14',
11802             'Unicode::Collate::CJK::Big5'=> '1.14',
11803             'Unicode::Collate::CJK::GB2312'=> '1.14',
11804             'Unicode::Collate::CJK::JISX0208'=> '1.14',
11805             'Unicode::Collate::CJK::Korean'=> '1.14',
11806             'Unicode::Collate::CJK::Pinyin'=> '1.14',
11807             'Unicode::Collate::CJK::Stroke'=> '1.14',
11808             'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11809             'Unicode::Collate::Locale'=> '1.14',
11810             'Unicode::Normalize' => '1.19',
11811             'XS::APItest' => '0.74',
11812             'XS::Typemap' => '0.14',
11813             'autodie' => '2.29',
11814             'autodie::Scope::Guard' => '2.29',
11815             'autodie::Scope::GuardStack'=> '2.29',
11816             'autodie::Util' => '2.29',
11817             'autodie::exception' => '2.29',
11818             'autodie::exception::system'=> '2.29',
11819             'autodie::hints' => '2.29',
11820             'autodie::skip' => '2.29',
11821             'encoding' => '2.16',
11822             'feature' => '1.42',
11823             'warnings' => '1.33',
11824             },
11825             removed => {
11826             'autodie::ScopeUtil' => 1,
11827             }
11828             },
11829             5.023002 => {
11830             delta_from => 5.023001,
11831             changed => {
11832             'Attribute::Handlers' => '0.99',
11833             'B::Op_private' => '5.023002',
11834             'CPAN::Meta::YAML' => '0.017',
11835             'Config' => '5.023002',
11836             'Cwd' => '3.57',
11837             'Encode' => '2.76',
11838             'ExtUtils::ParseXS' => '3.29',
11839             'ExtUtils::ParseXS::Constants'=> '3.29',
11840             'ExtUtils::ParseXS::CountLines'=> '3.29',
11841             'ExtUtils::ParseXS::Eval'=> '3.29',
11842             'ExtUtils::ParseXS::Utilities'=> '3.29',
11843             'ExtUtils::Typemaps' => '3.29',
11844             'File::Find' => '1.30',
11845             'File::Spec' => '3.57',
11846             'File::Spec::Cygwin' => '3.57',
11847             'File::Spec::Epoc' => '3.57',
11848             'File::Spec::Functions' => '3.57',
11849             'File::Spec::Mac' => '3.57',
11850             'File::Spec::OS2' => '3.57',
11851             'File::Spec::Unix' => '3.57',
11852             'File::Spec::VMS' => '3.57',
11853             'File::Spec::Win32' => '3.57',
11854             'Filter::Util::Call' => '1.55',
11855             'Hash::Util' => '0.19',
11856             'Module::CoreList' => '5.20150820',
11857             'Module::CoreList::TieHashDelta'=> '5.20150820',
11858             'Module::CoreList::Utils'=> '5.20150820',
11859             'POSIX' => '1.56',
11860             'Term::Cap' => '1.17',
11861             'Unicode::UCD' => '0.62',
11862             'perlfaq' => '5.021010',
11863             },
11864             removed => {
11865             }
11866             },
11867             5.020003 => {
11868             delta_from => 5.020002,
11869             changed => {
11870             'Config' => '5.020003',
11871             'Errno' => '1.20_06',
11872             'Module::CoreList' => '5.20150912',
11873             'Module::CoreList::TieHashDelta'=> '5.20150912',
11874             'Module::CoreList::Utils'=> '5.20150912',
11875             },
11876             removed => {
11877             }
11878             },
11879             5.023003 => {
11880             delta_from => 5.023002,
11881             changed => {
11882             'Amiga::ARexx' => '0.02',
11883             'Amiga::Exec' => '0.01',
11884             'B' => '1.59',
11885             'B::Op_private' => '5.023003',
11886             'Carp' => '1.37',
11887             'Carp::Heavy' => '1.37',
11888             'Compress::Raw::Zlib' => '2.068_01',
11889             'Config' => '5.023003',
11890             'Cwd' => '3.58',
11891             'DynaLoader' => '1.34',
11892             'Encode' => '2.77',
11893             'Encode::Unicode' => '2.14',
11894             'English' => '1.10',
11895             'Errno' => '1.24',
11896             'ExtUtils::Command' => '7.10',
11897             'ExtUtils::Command::MM' => '7.10',
11898             'ExtUtils::Liblist' => '7.10',
11899             'ExtUtils::Liblist::Kid'=> '7.10',
11900             'ExtUtils::MM' => '7.10',
11901             'ExtUtils::MM_AIX' => '7.10',
11902             'ExtUtils::MM_Any' => '7.10',
11903             'ExtUtils::MM_BeOS' => '7.10',
11904             'ExtUtils::MM_Cygwin' => '7.10',
11905             'ExtUtils::MM_DOS' => '7.10',
11906             'ExtUtils::MM_Darwin' => '7.10',
11907             'ExtUtils::MM_MacOS' => '7.10',
11908             'ExtUtils::MM_NW5' => '7.10',
11909             'ExtUtils::MM_OS2' => '7.10',
11910             'ExtUtils::MM_QNX' => '7.10',
11911             'ExtUtils::MM_UWIN' => '7.10',
11912             'ExtUtils::MM_Unix' => '7.10',
11913             'ExtUtils::MM_VMS' => '7.10',
11914             'ExtUtils::MM_VOS' => '7.10',
11915             'ExtUtils::MM_Win32' => '7.10',
11916             'ExtUtils::MM_Win95' => '7.10',
11917             'ExtUtils::MY' => '7.10',
11918             'ExtUtils::MakeMaker' => '7.10',
11919             'ExtUtils::MakeMaker::Config'=> '7.10',
11920             'ExtUtils::MakeMaker::Locale'=> '7.10',
11921             'ExtUtils::MakeMaker::version'=> '7.10',
11922             'ExtUtils::MakeMaker::version::regex'=> '7.10',
11923             'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11924             'ExtUtils::Mkbootstrap' => '7.10',
11925             'ExtUtils::Mksymlists' => '7.10',
11926             'ExtUtils::ParseXS' => '3.30',
11927             'ExtUtils::ParseXS::Constants'=> '3.30',
11928             'ExtUtils::ParseXS::CountLines'=> '3.30',
11929             'ExtUtils::ParseXS::Eval'=> '3.30',
11930             'ExtUtils::ParseXS::Utilities'=> '3.30',
11931             'ExtUtils::Typemaps' => '3.30',
11932             'ExtUtils::Typemaps::Cmd'=> '3.30',
11933             'ExtUtils::Typemaps::InputMap'=> '3.30',
11934             'ExtUtils::Typemaps::OutputMap'=> '3.30',
11935             'ExtUtils::Typemaps::Type'=> '3.30',
11936             'ExtUtils::testlib' => '7.10',
11937             'File::Find' => '1.31',
11938             'File::Glob' => '1.25',
11939             'File::Spec' => '3.58',
11940             'File::Spec::AmigaOS' => '3.58',
11941             'File::Spec::Cygwin' => '3.58',
11942             'File::Spec::Epoc' => '3.58',
11943             'File::Spec::Functions' => '3.58',
11944             'File::Spec::Mac' => '3.58',
11945             'File::Spec::OS2' => '3.58',
11946             'File::Spec::Unix' => '3.58',
11947             'File::Spec::VMS' => '3.58',
11948             'File::Spec::Win32' => '3.58',
11949             'Hash::Util::FieldHash' => '1.17',
11950             'Locale::Codes' => '3.36',
11951             'Locale::Codes::Constants'=> '3.36',
11952             'Locale::Codes::Country'=> '3.36',
11953             'Locale::Codes::Country_Codes'=> '3.36',
11954             'Locale::Codes::Country_Retired'=> '3.36',
11955             'Locale::Codes::Currency'=> '3.36',
11956             'Locale::Codes::Currency_Codes'=> '3.36',
11957             'Locale::Codes::Currency_Retired'=> '3.36',
11958             'Locale::Codes::LangExt'=> '3.36',
11959             'Locale::Codes::LangExt_Codes'=> '3.36',
11960             'Locale::Codes::LangExt_Retired'=> '3.36',
11961             'Locale::Codes::LangFam'=> '3.36',
11962             'Locale::Codes::LangFam_Codes'=> '3.36',
11963             'Locale::Codes::LangFam_Retired'=> '3.36',
11964             'Locale::Codes::LangVar'=> '3.36',
11965             'Locale::Codes::LangVar_Codes'=> '3.36',
11966             'Locale::Codes::LangVar_Retired'=> '3.36',
11967             'Locale::Codes::Language'=> '3.36',
11968             'Locale::Codes::Language_Codes'=> '3.36',
11969             'Locale::Codes::Language_Retired'=> '3.36',
11970             'Locale::Codes::Script' => '3.36',
11971             'Locale::Codes::Script_Codes'=> '3.36',
11972             'Locale::Codes::Script_Retired'=> '3.36',
11973             'Locale::Country' => '3.36',
11974             'Locale::Currency' => '3.36',
11975             'Locale::Language' => '3.36',
11976             'Locale::Script' => '3.36',
11977             'Math::BigFloat::Trace' => '0.40',
11978             'Math::BigInt::Trace' => '0.40',
11979             'Module::CoreList' => '5.20150920',
11980             'Module::CoreList::TieHashDelta'=> '5.20150920',
11981             'Module::CoreList::Utils'=> '5.20150920',
11982             'OS2::DLL' => '1.06',
11983             'OS2::ExtAttr' => '0.04',
11984             'OS2::Process' => '1.11',
11985             'OS2::REXX' => '1.05',
11986             'POSIX' => '1.57',
11987             'Pod::Perldoc' => '3.25_01',
11988             'Socket' => '2.020_01',
11989             'Test' => '1.27',
11990             'Thread::Queue' => '3.06',
11991             'Time::HiRes' => '1.9727_02',
11992             'Unicode::UCD' => '0.63',
11993             'Win32' => '0.52',
11994             'XS::APItest' => '0.75',
11995             'bigint' => '0.40',
11996             'bignum' => '0.40',
11997             'bigrat' => '0.40',
11998             'encoding' => '2.17',
11999             'experimental' => '0.014',
12000             'if' => '0.0605',
12001             'locale' => '1.07',
12002             'mro' => '1.18',
12003             'threads' => '2.03',
12004             },
12005             removed => {
12006             }
12007             },
12008             5.023004 => {
12009             delta_from => 5.023003,
12010             changed => {
12011             'B' => '1.60',
12012             'B::Op_private' => '5.023004',
12013             'Compress::Raw::Bzip2' => '2.069',
12014             'Compress::Raw::Zlib' => '2.069',
12015             'Compress::Zlib' => '2.069',
12016             'Config' => '5.023004',
12017             'Devel::PPPort' => '3.32',
12018             'DynaLoader' => '1.35',
12019             'Encode' => '2.78',
12020             'ExtUtils::CBuilder' => '0.280224',
12021             'ExtUtils::CBuilder::Base'=> '0.280224',
12022             'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
12023             'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
12024             'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
12025             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
12026             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
12027             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
12028             'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
12029             'ExtUtils::CBuilder::Platform::android'=> '0.280224',
12030             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
12031             'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
12032             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
12033             'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
12034             'File::Path' => '2.12',
12035             'IO' => '1.36',
12036             'IO::Compress::Adapter::Bzip2'=> '2.069',
12037             'IO::Compress::Adapter::Deflate'=> '2.069',
12038             'IO::Compress::Adapter::Identity'=> '2.069',
12039             'IO::Compress::Base' => '2.069',
12040             'IO::Compress::Base::Common'=> '2.069',
12041             'IO::Compress::Bzip2' => '2.069',
12042             'IO::Compress::Deflate' => '2.069',
12043             'IO::Compress::Gzip' => '2.069',
12044             'IO::Compress::Gzip::Constants'=> '2.069',
12045             'IO::Compress::RawDeflate'=> '2.069',
12046             'IO::Compress::Zip' => '2.069',
12047             'IO::Compress::Zip::Constants'=> '2.069',
12048             'IO::Compress::Zlib::Constants'=> '2.069',
12049             'IO::Compress::Zlib::Extra'=> '2.069',
12050             'IO::Poll' => '0.10',
12051             'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
12052             'IO::Uncompress::Adapter::Identity'=> '2.069',
12053             'IO::Uncompress::Adapter::Inflate'=> '2.069',
12054             'IO::Uncompress::AnyInflate'=> '2.069',
12055             'IO::Uncompress::AnyUncompress'=> '2.069',
12056             'IO::Uncompress::Base' => '2.069',
12057             'IO::Uncompress::Bunzip2'=> '2.069',
12058             'IO::Uncompress::Gunzip'=> '2.069',
12059             'IO::Uncompress::Inflate'=> '2.069',
12060             'IO::Uncompress::RawInflate'=> '2.069',
12061             'IO::Uncompress::Unzip' => '2.069',
12062             'Math::BigFloat' => '1.999704',
12063             'Math::BigFloat::Trace' => '0.41',
12064             'Math::BigInt' => '1.999704',
12065             'Math::BigInt::Calc' => '1.999704',
12066             'Math::BigInt::CalcEmu' => '1.999704',
12067             'Math::BigInt::FastCalc'=> '0.34',
12068             'Math::BigInt::Trace' => '0.41',
12069             'Module::CoreList' => '5.20151020',
12070             'Module::CoreList::TieHashDelta'=> '5.20151020',
12071             'Module::CoreList::Utils'=> '5.20151020',
12072             'Module::Metadata' => '1.000029',
12073             'POSIX' => '1.58',
12074             'Perl::OSType' => '1.009',
12075             'PerlIO::encoding' => '0.22',
12076             'Socket' => '2.020_02',
12077             'Unicode::Normalize' => '1.21',
12078             'XS::APItest' => '0.76',
12079             'bigint' => '0.41',
12080             'bignum' => '0.41',
12081             'bigrat' => '0.41',
12082             'experimental' => '0.016',
12083             'if' => '0.0606',
12084             'warnings' => '1.35',
12085             },
12086             removed => {
12087             }
12088             },
12089             5.023005 => {
12090             delta_from => 5.023004,
12091             changed => {
12092             'B' => '1.61',
12093             'B::Op_private' => '5.023005',
12094             'Carp' => '1.38',
12095             'Carp::Heavy' => '1.38',
12096             'Config' => '5.023005',
12097             'Config::Perl::V' => '0.25',
12098             'Cwd' => '3.59',
12099             'Devel::Peek' => '1.23',
12100             'Dumpvalue' => '1.18',
12101             'DynaLoader' => '1.36',
12102             'File::Find' => '1.32',
12103             'File::Spec' => '3.59',
12104             'File::Spec::AmigaOS' => '3.59',
12105             'File::Spec::Cygwin' => '3.59',
12106             'File::Spec::Epoc' => '3.59',
12107             'File::Spec::Functions' => '3.59',
12108             'File::Spec::Mac' => '3.59',
12109             'File::Spec::OS2' => '3.59',
12110             'File::Spec::Unix' => '3.59',
12111             'File::Spec::VMS' => '3.59',
12112             'File::Spec::Win32' => '3.59',
12113             'Getopt::Long' => '2.48',
12114             'Hash::Util::FieldHash' => '1.18',
12115             'IPC::Open3' => '1.20',
12116             'Math::BigFloat' => '1.999710',
12117             'Math::BigInt' => '1.999710',
12118             'Math::BigInt::Calc' => '1.999710',
12119             'Math::BigInt::CalcEmu' => '1.999710',
12120             'Math::BigInt::FastCalc'=> '0.37',
12121             'Module::CoreList' => '5.20151120',
12122             'Module::CoreList::TieHashDelta'=> '5.20151120',
12123             'Module::CoreList::Utils'=> '5.20151120',
12124             'Module::Metadata' => '1.000030',
12125             'POSIX' => '1.59',
12126             'PerlIO::encoding' => '0.23',
12127             'PerlIO::mmap' => '0.015',
12128             'PerlIO::scalar' => '0.24',
12129             'PerlIO::via' => '0.16',
12130             'Pod::Simple' => '3.32',
12131             'Pod::Simple::BlackBox' => '3.32',
12132             'Pod::Simple::Checker' => '3.32',
12133             'Pod::Simple::Debug' => '3.32',
12134             'Pod::Simple::DumpAsText'=> '3.32',
12135             'Pod::Simple::DumpAsXML'=> '3.32',
12136             'Pod::Simple::HTML' => '3.32',
12137             'Pod::Simple::HTMLBatch'=> '3.32',
12138             'Pod::Simple::LinkSection'=> '3.32',
12139             'Pod::Simple::Methody' => '3.32',
12140             'Pod::Simple::Progress' => '3.32',
12141             'Pod::Simple::PullParser'=> '3.32',
12142             'Pod::Simple::PullParserEndToken'=> '3.32',
12143             'Pod::Simple::PullParserStartToken'=> '3.32',
12144             'Pod::Simple::PullParserTextToken'=> '3.32',
12145             'Pod::Simple::PullParserToken'=> '3.32',
12146             'Pod::Simple::RTF' => '3.32',
12147             'Pod::Simple::Search' => '3.32',
12148             'Pod::Simple::SimpleTree'=> '3.32',
12149             'Pod::Simple::Text' => '3.32',
12150             'Pod::Simple::TextContent'=> '3.32',
12151             'Pod::Simple::TiedOutFH'=> '3.32',
12152             'Pod::Simple::Transcode'=> '3.32',
12153             'Pod::Simple::TranscodeDumb'=> '3.32',
12154             'Pod::Simple::TranscodeSmart'=> '3.32',
12155             'Pod::Simple::XHTML' => '3.32',
12156             'Pod::Simple::XMLOutStream'=> '3.32',
12157             'Thread::Queue' => '3.07',
12158             'Tie::Scalar' => '1.04',
12159             'Time::HiRes' => '1.9728',
12160             'Time::Piece' => '1.31',
12161             'Time::Seconds' => '1.31',
12162             'Unicode::Normalize' => '1.23',
12163             'XSLoader' => '0.21',
12164             'arybase' => '0.11',
12165             'base' => '2.22_01',
12166             'fields' => '2.22_01',
12167             'threads' => '2.04',
12168             'threads::shared' => '1.49',
12169             },
12170             removed => {
12171             'ExtUtils::MakeMaker::version::vpp'=> 1,
12172             'version::vpp' => 1,
12173             }
12174             },
12175             5.022001 => {
12176             delta_from => 5.022,
12177             changed => {
12178             'B::Op_private' => '5.022001',
12179             'Config' => '5.022001',
12180             'Module::CoreList' => '5.20151213',
12181             'Module::CoreList::TieHashDelta'=> '5.20151213',
12182             'Module::CoreList::Utils'=> '5.20151213',
12183             'POSIX' => '1.53_01',
12184             'PerlIO::scalar' => '0.23',
12185             'Storable' => '2.53_01',
12186             'Win32' => '0.52',
12187             'warnings' => '1.34',
12188             },
12189             removed => {
12190             }
12191             },
12192             5.023006 => {
12193             delta_from => 5.023005,
12194             changed => {
12195             'B::Deparse' => '1.36',
12196             'B::Op_private' => '5.023006',
12197             'Benchmark' => '1.21',
12198             'CPAN::Meta::Requirements'=> '2.140',
12199             'CPAN::Meta::YAML' => '0.018',
12200             'Config' => '5.023006',
12201             'Cwd' => '3.60',
12202             'Data::Dumper' => '2.159',
12203             'DynaLoader' => '1.37',
12204             'File::Spec' => '3.60',
12205             'File::Spec::AmigaOS' => '3.60',
12206             'File::Spec::Cygwin' => '3.60',
12207             'File::Spec::Epoc' => '3.60',
12208             'File::Spec::Functions' => '3.60',
12209             'File::Spec::Mac' => '3.60',
12210             'File::Spec::OS2' => '3.60',
12211             'File::Spec::Unix' => '3.60',
12212             'File::Spec::VMS' => '3.60',
12213             'File::Spec::Win32' => '3.60',
12214             'Hash::Util::FieldHash' => '1.19',
12215             'Locale::Codes' => '3.37',
12216             'Locale::Codes::Constants'=> '3.37',
12217             'Locale::Codes::Country'=> '3.37',
12218             'Locale::Codes::Country_Codes'=> '3.37',
12219             'Locale::Codes::Country_Retired'=> '3.37',
12220             'Locale::Codes::Currency'=> '3.37',
12221             'Locale::Codes::Currency_Codes'=> '3.37',
12222             'Locale::Codes::Currency_Retired'=> '3.37',
12223             'Locale::Codes::LangExt'=> '3.37',
12224             'Locale::Codes::LangExt_Codes'=> '3.37',
12225             'Locale::Codes::LangExt_Retired'=> '3.37',
12226             'Locale::Codes::LangFam'=> '3.37',
12227             'Locale::Codes::LangFam_Codes'=> '3.37',
12228             'Locale::Codes::LangFam_Retired'=> '3.37',
12229             'Locale::Codes::LangVar'=> '3.37',
12230             'Locale::Codes::LangVar_Codes'=> '3.37',
12231             'Locale::Codes::LangVar_Retired'=> '3.37',
12232             'Locale::Codes::Language'=> '3.37',
12233             'Locale::Codes::Language_Codes'=> '3.37',
12234             'Locale::Codes::Language_Retired'=> '3.37',
12235             'Locale::Codes::Script' => '3.37',
12236             'Locale::Codes::Script_Codes'=> '3.37',
12237             'Locale::Codes::Script_Retired'=> '3.37',
12238             'Locale::Country' => '3.37',
12239             'Locale::Currency' => '3.37',
12240             'Locale::Language' => '3.37',
12241             'Locale::Script' => '3.37',
12242             'Math::BigInt::FastCalc'=> '0.38',
12243             'Module::CoreList' => '5.20151220',
12244             'Module::CoreList::TieHashDelta'=> '5.20151220',
12245             'Module::CoreList::Utils'=> '5.20151220',
12246             'Module::Metadata' => '1.000031',
12247             'Opcode' => '1.34',
12248             'PerlIO::mmap' => '0.016',
12249             'Pod::Perldoc' => '3.25_02',
12250             'SDBM_File' => '1.14',
12251             'Term::ANSIColor' => '4.04',
12252             'Test' => '1.28',
12253             'Unicode::Normalize' => '1.24',
12254             'XS::APItest' => '0.77',
12255             'base' => '2.23',
12256             'encoding::warnings' => '0.12',
12257             'fields' => '2.23',
12258             'locale' => '1.08',
12259             'strict' => '1.10',
12260             'threads' => '2.05',
12261             'threads::shared' => '1.50',
12262             'utf8' => '1.18',
12263             },
12264             removed => {
12265             }
12266             },
12267             5.023007 => {
12268             delta_from => 5.023006,
12269             changed => {
12270             'App::Prove' => '3.36',
12271             'App::Prove::State' => '3.36',
12272             'App::Prove::State::Result'=> '3.36',
12273             'App::Prove::State::Result::Test'=> '3.36',
12274             'B' => '1.62',
12275             'B::Deparse' => '1.37',
12276             'B::Op_private' => '5.023007',
12277             'Benchmark' => '1.22',
12278             'Config' => '5.023007',
12279             'Cwd' => '3.62',
12280             'Data::Dumper' => '2.160',
12281             'ExtUtils::ParseXS' => '3.31',
12282             'ExtUtils::ParseXS::Constants'=> '3.31',
12283             'ExtUtils::ParseXS::CountLines'=> '3.31',
12284             'ExtUtils::ParseXS::Eval'=> '3.31',
12285             'ExtUtils::ParseXS::Utilities'=> '3.31',
12286             'ExtUtils::Typemaps' => '3.31',
12287             'ExtUtils::Typemaps::Cmd'=> '3.31',
12288             'ExtUtils::Typemaps::InputMap'=> '3.31',
12289             'ExtUtils::Typemaps::OutputMap'=> '3.31',
12290             'ExtUtils::Typemaps::Type'=> '3.31',
12291             'File::Find' => '1.33',
12292             'File::Spec' => '3.62',
12293             'File::Spec::AmigaOS' => '3.62',
12294             'File::Spec::Cygwin' => '3.62',
12295             'File::Spec::Epoc' => '3.62',
12296             'File::Spec::Functions' => '3.62',
12297             'File::Spec::Mac' => '3.62',
12298             'File::Spec::OS2' => '3.62',
12299             'File::Spec::Unix' => '3.62',
12300             'File::Spec::VMS' => '3.62',
12301             'File::Spec::Win32' => '3.62',
12302             'Math::BigFloat' => '1.999715',
12303             'Math::BigFloat::Trace' => '0.42',
12304             'Math::BigInt' => '1.999715',
12305             'Math::BigInt::Calc' => '1.999715',
12306             'Math::BigInt::CalcEmu' => '1.999715',
12307             'Math::BigInt::FastCalc'=> '0.40',
12308             'Math::BigInt::Trace' => '0.42',
12309             'Math::BigRat' => '0.260802',
12310             'Module::CoreList' => '5.20160120',
12311             'Module::CoreList::TieHashDelta'=> '5.20160120',
12312             'Module::CoreList::Utils'=> '5.20160120',
12313             'Net::Cmd' => '3.08',
12314             'Net::Config' => '3.08',
12315             'Net::Domain' => '3.08',
12316             'Net::FTP' => '3.08',
12317             'Net::FTP::A' => '3.08',
12318             'Net::FTP::E' => '3.08',
12319             'Net::FTP::I' => '3.08',
12320             'Net::FTP::L' => '3.08',
12321             'Net::FTP::dataconn' => '3.08',
12322             'Net::NNTP' => '3.08',
12323             'Net::Netrc' => '3.08',
12324             'Net::POP3' => '3.08',
12325             'Net::SMTP' => '3.08',
12326             'Net::Time' => '3.08',
12327             'Pod::Man' => '4.04',
12328             'Pod::ParseLink' => '4.04',
12329             'Pod::Text' => '4.04',
12330             'Pod::Text::Color' => '4.04',
12331             'Pod::Text::Overstrike' => '4.04',
12332             'Pod::Text::Termcap' => '4.04',
12333             'Pod::Usage' => '1.68',
12334             'TAP::Base' => '3.36',
12335             'TAP::Formatter::Base' => '3.36',
12336             'TAP::Formatter::Color' => '3.36',
12337             'TAP::Formatter::Console'=> '3.36',
12338             'TAP::Formatter::Console::ParallelSession'=> '3.36',
12339             'TAP::Formatter::Console::Session'=> '3.36',
12340             'TAP::Formatter::File' => '3.36',
12341             'TAP::Formatter::File::Session'=> '3.36',
12342             'TAP::Formatter::Session'=> '3.36',
12343             'TAP::Harness' => '3.36',
12344             'TAP::Harness::Env' => '3.36',
12345             'TAP::Object' => '3.36',
12346             'TAP::Parser' => '3.36',
12347             'TAP::Parser::Aggregator'=> '3.36',
12348             'TAP::Parser::Grammar' => '3.36',
12349             'TAP::Parser::Iterator' => '3.36',
12350             'TAP::Parser::Iterator::Array'=> '3.36',
12351             'TAP::Parser::Iterator::Process'=> '3.36',
12352             'TAP::Parser::Iterator::Stream'=> '3.36',
12353             'TAP::Parser::IteratorFactory'=> '3.36',
12354             'TAP::Parser::Multiplexer'=> '3.36',
12355             'TAP::Parser::Result' => '3.36',
12356             'TAP::Parser::Result::Bailout'=> '3.36',
12357             'TAP::Parser::Result::Comment'=> '3.36',
12358             'TAP::Parser::Result::Plan'=> '3.36',
12359             'TAP::Parser::Result::Pragma'=> '3.36',
12360             'TAP::Parser::Result::Test'=> '3.36',
12361             'TAP::Parser::Result::Unknown'=> '3.36',
12362             'TAP::Parser::Result::Version'=> '3.36',
12363             'TAP::Parser::Result::YAML'=> '3.36',
12364             'TAP::Parser::ResultFactory'=> '3.36',
12365             'TAP::Parser::Scheduler'=> '3.36',
12366             'TAP::Parser::Scheduler::Job'=> '3.36',
12367             'TAP::Parser::Scheduler::Spinner'=> '3.36',
12368             'TAP::Parser::Source' => '3.36',
12369             'TAP::Parser::SourceHandler'=> '3.36',
12370             'TAP::Parser::SourceHandler::Executable'=> '3.36',
12371             'TAP::Parser::SourceHandler::File'=> '3.36',
12372             'TAP::Parser::SourceHandler::Handle'=> '3.36',
12373             'TAP::Parser::SourceHandler::Perl'=> '3.36',
12374             'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
12375             'TAP::Parser::YAMLish::Reader'=> '3.36',
12376             'TAP::Parser::YAMLish::Writer'=> '3.36',
12377             'Test::Harness' => '3.36',
12378             'Unicode::Normalize' => '1.25',
12379             'Unicode::UCD' => '0.64',
12380             'XS::APItest' => '0.78',
12381             'bigint' => '0.42',
12382             'bignum' => '0.42',
12383             'bigrat' => '0.42',
12384             'utf8' => '1.19',
12385             },
12386             removed => {
12387             }
12388             },
12389             5.023008 => {
12390             delta_from => 5.023007,
12391             changed => {
12392             'B::Op_private' => '5.023008',
12393             'Config' => '5.023008',
12394             'Cwd' => '3.63',
12395             'DynaLoader' => '1.38',
12396             'Encode' => '2.80',
12397             'Encode::Alias' => '2.20',
12398             'Encode::MIME::Header' => '2.19',
12399             'Encode::Unicode' => '2.15',
12400             'ExtUtils::CBuilder' => '0.280225',
12401             'ExtUtils::CBuilder::Base'=> '0.280225',
12402             'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
12403             'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
12404             'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
12405             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
12406             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
12407             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
12408             'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
12409             'ExtUtils::CBuilder::Platform::android'=> '0.280225',
12410             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
12411             'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
12412             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
12413             'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
12414             'ExtUtils::Command::MM' => '7.10_01',
12415             'ExtUtils::Liblist' => '7.10_01',
12416             'ExtUtils::Liblist::Kid'=> '7.10_01',
12417             'ExtUtils::MM' => '7.10_01',
12418             'ExtUtils::MM_AIX' => '7.10_01',
12419             'ExtUtils::MM_Any' => '7.10_01',
12420             'ExtUtils::MM_BeOS' => '7.10_01',
12421             'ExtUtils::MM_Cygwin' => '7.10_01',
12422             'ExtUtils::MM_DOS' => '7.10_01',
12423             'ExtUtils::MM_Darwin' => '7.10_01',
12424             'ExtUtils::MM_MacOS' => '7.10_01',
12425             'ExtUtils::MM_NW5' => '7.10_01',
12426             'ExtUtils::MM_OS2' => '7.10_01',
12427             'ExtUtils::MM_QNX' => '7.10_01',
12428             'ExtUtils::MM_UWIN' => '7.10_01',
12429             'ExtUtils::MM_Unix' => '7.10_01',
12430             'ExtUtils::MM_VMS' => '7.10_01',
12431             'ExtUtils::MM_VOS' => '7.10_01',
12432             'ExtUtils::MM_Win32' => '7.10_01',
12433             'ExtUtils::MM_Win95' => '7.10_01',
12434             'ExtUtils::MY' => '7.10_01',
12435             'ExtUtils::MakeMaker' => '7.10_01',
12436             'ExtUtils::MakeMaker::Config'=> '7.10_01',
12437             'ExtUtils::MakeMaker::version'=> '7.10_01',
12438             'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
12439             'ExtUtils::Mkbootstrap' => '7.10_01',
12440             'ExtUtils::Mksymlists' => '7.10_01',
12441             'ExtUtils::testlib' => '7.10_01',
12442             'File::Spec' => '3.63',
12443             'File::Spec::AmigaOS' => '3.63',
12444             'File::Spec::Cygwin' => '3.63',
12445             'File::Spec::Epoc' => '3.63',
12446             'File::Spec::Functions' => '3.63',
12447             'File::Spec::Mac' => '3.63',
12448             'File::Spec::OS2' => '3.63',
12449             'File::Spec::Unix' => '3.63',
12450             'File::Spec::VMS' => '3.63',
12451             'File::Spec::Win32' => '3.63',
12452             'IPC::Msg' => '2.05',
12453             'IPC::Semaphore' => '2.05',
12454             'IPC::SharedMem' => '2.05',
12455             'IPC::SysV' => '2.05',
12456             'Module::CoreList' => '5.20160121',
12457             'Module::CoreList::TieHashDelta'=> '5.20160121',
12458             'Module::CoreList::Utils'=> '5.20160121',
12459             'ODBM_File' => '1.13',
12460             'POSIX' => '1.63',
12461             'PerlIO::encoding' => '0.24',
12462             'Pod::Man' => '4.06',
12463             'Pod::ParseLink' => '4.06',
12464             'Pod::Text' => '4.06',
12465             'Pod::Text::Color' => '4.06',
12466             'Pod::Text::Overstrike' => '4.06',
12467             'Pod::Text::Termcap' => '4.06',
12468             'Storable' => '2.55',
12469             'Time::HiRes' => '1.9730',
12470             'XS::APItest' => '0.79',
12471             },
12472             removed => {
12473             }
12474             },
12475             5.023009 => {
12476             delta_from => 5.023008,
12477             changed => {
12478             'Amiga::ARexx' => '0.04',
12479             'Amiga::Exec' => '0.02',
12480             'B::Op_private' => '5.023009',
12481             'Carp' => '1.40',
12482             'Carp::Heavy' => '1.40',
12483             'Config' => '5.023009',
12484             'Errno' => '1.25',
12485             'ExtUtils::Embed' => '1.33',
12486             'File::Find' => '1.34',
12487             'File::Glob' => '1.26',
12488             'File::Spec::AmigaOS' => ';.64',
12489             'IPC::Msg' => '2.06_01',
12490             'IPC::Semaphore' => '2.06_01',
12491             'IPC::SharedMem' => '2.06_01',
12492             'IPC::SysV' => '2.06_01',
12493             'List::Util' => '1.42_02',
12494             'List::Util::XS' => '1.42_02',
12495             'Module::CoreList' => '5.20160320',
12496             'Module::CoreList::TieHashDelta'=> '5.20160320',
12497             'Module::CoreList::Utils'=> '5.20160320',
12498             'POSIX' => '1.64',
12499             'Pod::Functions' => '1.10',
12500             'Scalar::Util' => '1.42_02',
12501             'SelfLoader' => '1.23',
12502             'Socket' => '2.020_03',
12503             'Storable' => '2.56',
12504             'Sub::Util' => '1.42_02',
12505             'Thread::Queue' => '3.08',
12506             'Tie::File' => '1.02',
12507             'Time::HiRes' => '1.9732',
12508             'Win32API::File' => '0.1203',
12509             'XS::APItest' => '0.80',
12510             'autouse' => '1.11',
12511             'bytes' => '1.05',
12512             'strict' => '1.11',
12513             'threads' => '2.06',
12514             'version' => '0.9916',
12515             'version::regex' => '0.9916',
12516             'warnings' => '1.36',
12517             },
12518             removed => {
12519             'Win32API::File::ExtUtils::Myconst2perl'=> 1,
12520             }
12521             },
12522             5.022002 => {
12523             delta_from => 5.022001,
12524             changed => {
12525             'B::Op_private' => '5.022002',
12526             'Config' => '5.022002',
12527             'Cwd' => '3.56_01',
12528             'File::Spec' => '3.56_01',
12529             'File::Spec::Cygwin' => '3.56_01',
12530             'File::Spec::Epoc' => '3.56_01',
12531             'File::Spec::Functions' => '3.56_01',
12532             'File::Spec::Mac' => '3.56_01',
12533             'File::Spec::OS2' => '3.56_01',
12534             'File::Spec::Unix' => '3.56_01',
12535             'File::Spec::VMS' => '3.56_01',
12536             'File::Spec::Win32' => '3.56_01',
12537             'Module::CoreList' => '5.20160429',
12538             'Module::CoreList::TieHashDelta'=> '5.20160429',
12539             'Module::CoreList::Utils'=> '5.20160429',
12540             'XS::APItest' => '0.72_01',
12541             },
12542             removed => {
12543             }
12544             },
12545             5.024000 => {
12546             delta_from => 5.023009,
12547             changed => {
12548             'B::Op_private' => '5.024000',
12549             'Config' => '5.024',
12550             'File::Copy' => '2.31',
12551             'File::Path' => '2.12_01',
12552             'File::Spec::AmigaOS' => '3.64',
12553             'IO::Handle' => '1.36',
12554             'Module::CoreList' => '5.20160506',
12555             'Module::CoreList::TieHashDelta'=> '5.20160506',
12556             'Module::CoreList::Utils'=> '5.20160506',
12557             'ODBM_File' => '1.14',
12558             'POSIX' => '1.65',
12559             'Pod::Man' => '4.07',
12560             'Pod::ParseLink' => '4.07',
12561             'Pod::Text' => '4.07',
12562             'Pod::Text::Color' => '4.07',
12563             'Pod::Text::Overstrike' => '4.07',
12564             'Pod::Text::Termcap' => '4.07',
12565             'Thread::Queue' => '3.09',
12566             'Time::HiRes' => '1.9733',
12567             'threads' => '2.07',
12568             'threads::shared' => '1.51',
12569             'locale' => '1.09',
12570             },
12571             removed => {
12572             }
12573             },
12574             5.025000 => {
12575             delta_from => 5.024,
12576             changed => {
12577             'B::Op_private' => '5.025000',
12578             'Config' => '5.025',
12579             'Module::CoreList' => '5.20160507',
12580             'Module::CoreList::TieHashDelta'=> '5.20160507',
12581             'Module::CoreList::Utils'=> '5.20160507',
12582             'feature' => '1.43',
12583             },
12584             removed => {
12585             }
12586             },
12587             5.025001 => {
12588             delta_from => 5.025,
12589             changed => {
12590             'Archive::Tar' => '2.08',
12591             'Archive::Tar::Constant'=> '2.08',
12592             'Archive::Tar::File' => '2.08',
12593             'B::Op_private' => '5.025001',
12594             'Carp' => '1.41',
12595             'Carp::Heavy' => '1.41',
12596             'Config' => '5.025001',
12597             'Config::Perl::V' => '0.26',
12598             'DB_File' => '1.838',
12599             'Digest::MD5' => '2.55',
12600             'IPC::Cmd' => '0.94',
12601             'IPC::Msg' => '2.07',
12602             'IPC::Semaphore' => '2.07',
12603             'IPC::SharedMem' => '2.07',
12604             'IPC::SysV' => '2.07',
12605             'List::Util' => '1.45_01',
12606             'List::Util::XS' => '1.45_01',
12607             'Locale::Codes' => '3.38',
12608             'Locale::Codes::Constants'=> '3.38',
12609             'Locale::Codes::Country'=> '3.38',
12610             'Locale::Codes::Country_Codes'=> '3.38',
12611             'Locale::Codes::Country_Retired'=> '3.38',
12612             'Locale::Codes::Currency'=> '3.38',
12613             'Locale::Codes::Currency_Codes'=> '3.38',
12614             'Locale::Codes::Currency_Retired'=> '3.38',
12615             'Locale::Codes::LangExt'=> '3.38',
12616             'Locale::Codes::LangExt_Codes'=> '3.38',
12617             'Locale::Codes::LangExt_Retired'=> '3.38',
12618             'Locale::Codes::LangFam'=> '3.38',
12619             'Locale::Codes::LangFam_Codes'=> '3.38',
12620             'Locale::Codes::LangFam_Retired'=> '3.38',
12621             'Locale::Codes::LangVar'=> '3.38',
12622             'Locale::Codes::LangVar_Codes'=> '3.38',
12623             'Locale::Codes::LangVar_Retired'=> '3.38',
12624             'Locale::Codes::Language'=> '3.38',
12625             'Locale::Codes::Language_Codes'=> '3.38',
12626             'Locale::Codes::Language_Retired'=> '3.38',
12627             'Locale::Codes::Script' => '3.38',
12628             'Locale::Codes::Script_Codes'=> '3.38',
12629             'Locale::Codes::Script_Retired'=> '3.38',
12630             'Locale::Country' => '3.38',
12631             'Locale::Currency' => '3.38',
12632             'Locale::Language' => '3.38',
12633             'Locale::Maketext' => '1.27',
12634             'Locale::Script' => '3.38',
12635             'Module::CoreList' => '5.20160520',
12636             'Module::CoreList::TieHashDelta'=> '5.20160520',
12637             'Module::CoreList::Utils'=> '5.20160520',
12638             'Module::Metadata' => '1.000032',
12639             'POSIX' => '1.69',
12640             'Scalar::Util' => '1.45_01',
12641             'Sub::Util' => '1.45_01',
12642             'Sys::Syslog' => '0.34',
12643             'Term::ANSIColor' => '4.05',
12644             'Test2' => '1.302015',
12645             'Test2::API' => '1.302015',
12646             'Test2::API::Breakage' => '1.302015',
12647             'Test2::API::Context' => '1.302015',
12648             'Test2::API::Instance' => '1.302015',
12649             'Test2::API::Stack' => '1.302015',
12650             'Test2::Event' => '1.302015',
12651             'Test2::Event::Bail' => '1.302015',
12652             'Test2::Event::Diag' => '1.302015',
12653             'Test2::Event::Exception'=> '1.302015',
12654             'Test2::Event::Note' => '1.302015',
12655             'Test2::Event::Ok' => '1.302015',
12656             'Test2::Event::Plan' => '1.302015',
12657             'Test2::Event::Skip' => '1.302015',
12658             'Test2::Event::Subtest' => '1.302015',
12659             'Test2::Event::Waiting' => '1.302015',
12660             'Test2::Formatter' => '1.302015',
12661             'Test2::Formatter::TAP' => '1.302015',
12662             'Test2::Hub' => '1.302015',
12663             'Test2::Hub::Interceptor'=> '1.302015',
12664             'Test2::Hub::Interceptor::Terminator'=> '1.302015',
12665             'Test2::Hub::Subtest' => '1.302015',
12666             'Test2::IPC' => '1.302015',
12667             'Test2::IPC::Driver' => '1.302015',
12668             'Test2::IPC::Driver::Files'=> '1.302015',
12669             'Test2::Util' => '1.302015',
12670             'Test2::Util::ExternalMeta'=> '1.302015',
12671             'Test2::Util::HashBase' => '1.302015',
12672             'Test2::Util::Trace' => '1.302015',
12673             'Test::Builder' => '1.302015',
12674             'Test::Builder::Formatter'=> '1.302015',
12675             'Test::Builder::Module' => '1.302015',
12676             'Test::Builder::Tester' => '1.302015',
12677             'Test::Builder::Tester::Color'=> '1.302015',
12678             'Test::Builder::TodoDiag'=> '1.302015',
12679             'Test::More' => '1.302015',
12680             'Test::Simple' => '1.302015',
12681             'Test::Tester' => '1.302015',
12682             'Test::Tester::Capture' => '1.302015',
12683             'Test::Tester::CaptureRunner'=> '1.302015',
12684             'Test::Tester::Delegate'=> '1.302015',
12685             'Test::use::ok' => '1.302015',
12686             'XS::APItest' => '0.81',
12687             '_charnames' => '1.44',
12688             'charnames' => '1.44',
12689             'ok' => '1.302015',
12690             'perlfaq' => '5.021011',
12691             're' => '0.33',
12692             'threads' => '2.08',
12693             'threads::shared' => '1.52',
12694             },
12695             removed => {
12696             }
12697             },
12698             5.025002 => {
12699             delta_from => 5.025001,
12700             changed => {
12701             'App::Cpan' => '1.64',
12702             'B::Op_private' => '5.025002',
12703             'CPAN' => '2.14',
12704             'CPAN::Distribution' => '2.12',
12705             'CPAN::FTP' => '5.5007',
12706             'CPAN::FirstTime' => '5.5309',
12707             'CPAN::HandleConfig' => '5.5007',
12708             'CPAN::Index' => '2.12',
12709             'CPAN::Mirrors' => '2.12',
12710             'CPAN::Plugin' => '0.96',
12711             'CPAN::Shell' => '5.5006',
12712             'Config' => '5.025002',
12713             'Cwd' => '3.64',
12714             'Devel::Peek' => '1.24',
12715             'DynaLoader' => '1.39',
12716             'ExtUtils::Command' => '7.18',
12717             'ExtUtils::Command::MM' => '7.18',
12718             'ExtUtils::Liblist' => '7.18',
12719             'ExtUtils::Liblist::Kid'=> '7.18',
12720             'ExtUtils::MM' => '7.18',
12721             'ExtUtils::MM_AIX' => '7.18',
12722             'ExtUtils::MM_Any' => '7.18',
12723             'ExtUtils::MM_BeOS' => '7.18',
12724             'ExtUtils::MM_Cygwin' => '7.18',
12725             'ExtUtils::MM_DOS' => '7.18',
12726             'ExtUtils::MM_Darwin' => '7.18',
12727             'ExtUtils::MM_MacOS' => '7.18',
12728             'ExtUtils::MM_NW5' => '7.18',
12729             'ExtUtils::MM_OS2' => '7.18',
12730             'ExtUtils::MM_QNX' => '7.18',
12731             'ExtUtils::MM_UWIN' => '7.18',
12732             'ExtUtils::MM_Unix' => '7.18',
12733             'ExtUtils::MM_VMS' => '7.18',
12734             'ExtUtils::MM_VOS' => '7.18',
12735             'ExtUtils::MM_Win32' => '7.18',
12736             'ExtUtils::MM_Win95' => '7.18',
12737             'ExtUtils::MY' => '7.18',
12738             'ExtUtils::MakeMaker' => '7.18',
12739             'ExtUtils::MakeMaker::Config'=> '7.18',
12740             'ExtUtils::MakeMaker::Locale'=> '7.18',
12741             'ExtUtils::MakeMaker::version'=> '7.18',
12742             'ExtUtils::MakeMaker::version::regex'=> '7.18',
12743             'ExtUtils::Miniperl' => '1.06',
12744             'ExtUtils::Mkbootstrap' => '7.18',
12745             'ExtUtils::Mksymlists' => '7.18',
12746             'ExtUtils::ParseXS' => '3.32',
12747             'ExtUtils::ParseXS::Constants'=> '3.32',
12748             'ExtUtils::ParseXS::CountLines'=> '3.32',
12749             'ExtUtils::ParseXS::Eval'=> '3.32',
12750             'ExtUtils::ParseXS::Utilities'=> '3.32',
12751             'ExtUtils::Typemaps' => '3.32',
12752             'ExtUtils::Typemaps::Cmd'=> '3.32',
12753             'ExtUtils::Typemaps::InputMap'=> '3.32',
12754             'ExtUtils::Typemaps::OutputMap'=> '3.32',
12755             'ExtUtils::Typemaps::Type'=> '3.32',
12756             'ExtUtils::testlib' => '7.18',
12757             'File::Copy' => '2.32',
12758             'File::Glob' => '1.27',
12759             'File::Spec' => '3.64',
12760             'File::Spec::Cygwin' => '3.64',
12761             'File::Spec::Epoc' => '3.64',
12762             'File::Spec::Functions' => '3.64',
12763             'File::Spec::Mac' => '3.64',
12764             'File::Spec::OS2' => '3.64',
12765             'File::Spec::Unix' => '3.64',
12766             'File::Spec::VMS' => '3.64',
12767             'File::Spec::Win32' => '3.64',
12768             'FileHandle' => '2.03',
12769             'Getopt::Long' => '2.49',
12770             'HTTP::Tiny' => '0.058',
12771             'JSON::PP' => '2.27400',
12772             'Locale::Codes' => '3.39',
12773             'Locale::Codes::Constants'=> '3.39',
12774             'Locale::Codes::Country'=> '3.39',
12775             'Locale::Codes::Country_Codes'=> '3.39',
12776             'Locale::Codes::Country_Retired'=> '3.39',
12777             'Locale::Codes::Currency'=> '3.39',
12778             'Locale::Codes::Currency_Codes'=> '3.39',
12779             'Locale::Codes::Currency_Retired'=> '3.39',
12780             'Locale::Codes::LangExt'=> '3.39',
12781             'Locale::Codes::LangExt_Codes'=> '3.39',
12782             'Locale::Codes::LangExt_Retired'=> '3.39',
12783             'Locale::Codes::LangFam'=> '3.39',
12784             'Locale::Codes::LangFam_Codes'=> '3.39',
12785             'Locale::Codes::LangFam_Retired'=> '3.39',
12786             'Locale::Codes::LangVar'=> '3.39',
12787             'Locale::Codes::LangVar_Codes'=> '3.39',
12788             'Locale::Codes::LangVar_Retired'=> '3.39',
12789             'Locale::Codes::Language'=> '3.39',
12790             'Locale::Codes::Language_Codes'=> '3.39',
12791             'Locale::Codes::Language_Retired'=> '3.39',
12792             'Locale::Codes::Script' => '3.39',
12793             'Locale::Codes::Script_Codes'=> '3.39',
12794             'Locale::Codes::Script_Retired'=> '3.39',
12795             'Locale::Country' => '3.39',
12796             'Locale::Currency' => '3.39',
12797             'Locale::Language' => '3.39',
12798             'Locale::Script' => '3.39',
12799             'Module::CoreList' => '5.20160620',
12800             'Module::CoreList::TieHashDelta'=> '5.20160620',
12801             'Module::CoreList::Utils'=> '5.20160620',
12802             'Opcode' => '1.35',
12803             'POSIX' => '1.70',
12804             'Pod::Checker' => '1.73',
12805             'Pod::Functions' => '1.11',
12806             'Pod::Usage' => '1.69',
12807             'Test2' => '1.302026',
12808             'Test2::API' => '1.302026',
12809             'Test2::API::Breakage' => '1.302026',
12810             'Test2::API::Context' => '1.302026',
12811             'Test2::API::Instance' => '1.302026',
12812             'Test2::API::Stack' => '1.302026',
12813             'Test2::Event' => '1.302026',
12814             'Test2::Event::Bail' => '1.302026',
12815             'Test2::Event::Diag' => '1.302026',
12816             'Test2::Event::Exception'=> '1.302026',
12817             'Test2::Event::Generic' => '1.302026',
12818             'Test2::Event::Note' => '1.302026',
12819             'Test2::Event::Ok' => '1.302026',
12820             'Test2::Event::Plan' => '1.302026',
12821             'Test2::Event::Skip' => '1.302026',
12822             'Test2::Event::Subtest' => '1.302026',
12823             'Test2::Event::Waiting' => '1.302026',
12824             'Test2::Formatter' => '1.302026',
12825             'Test2::Formatter::TAP' => '1.302026',
12826             'Test2::Hub' => '1.302026',
12827             'Test2::Hub::Interceptor'=> '1.302026',
12828             'Test2::Hub::Interceptor::Terminator'=> '1.302026',
12829             'Test2::Hub::Subtest' => '1.302026',
12830             'Test2::IPC' => '1.302026',
12831             'Test2::IPC::Driver' => '1.302026',
12832             'Test2::IPC::Driver::Files'=> '1.302026',
12833             'Test2::Util' => '1.302026',
12834             'Test2::Util::ExternalMeta'=> '1.302026',
12835             'Test2::Util::HashBase' => '1.302026',
12836             'Test2::Util::Trace' => '1.302026',
12837             'Test::Builder' => '1.302026',
12838             'Test::Builder::Formatter'=> '1.302026',
12839             'Test::Builder::Module' => '1.302026',
12840             'Test::Builder::Tester' => '1.302026',
12841             'Test::Builder::Tester::Color'=> '1.302026',
12842             'Test::Builder::TodoDiag'=> '1.302026',
12843             'Test::More' => '1.302026',
12844             'Test::Simple' => '1.302026',
12845             'Test::Tester' => '1.302026',
12846             'Test::Tester::Capture' => '1.302026',
12847             'Test::Tester::CaptureRunner'=> '1.302026',
12848             'Test::Tester::Delegate'=> '1.302026',
12849             'Test::use::ok' => '1.302026',
12850             'Thread::Queue' => '3.11',
12851             'Time::HiRes' => '1.9734',
12852             'Unicode::UCD' => '0.65',
12853             'VMS::DCLsym' => '1.07',
12854             'XS::APItest' => '0.82',
12855             'diagnostics' => '1.35',
12856             'feature' => '1.44',
12857             'ok' => '1.302026',
12858             'threads' => '2.09',
12859             },
12860             removed => {
12861             }
12862             },
12863             5.025003 => {
12864             delta_from => 5.025002,
12865             changed => {
12866             'B::Op_private' => '5.025003',
12867             'Config' => '5.025003',
12868             'Data::Dumper' => '2.161',
12869             'Devel::PPPort' => '3.35',
12870             'Encode' => '2.84',
12871             'Encode::MIME::Header' => '2.23',
12872             'Encode::MIME::Header::ISO_2022_JP'=> '1.07',
12873             'ExtUtils::ParseXS' => '3.33',
12874             'ExtUtils::ParseXS::Constants'=> '3.33',
12875             'ExtUtils::ParseXS::CountLines'=> '3.33',
12876             'ExtUtils::ParseXS::Eval'=> '3.33',
12877             'ExtUtils::ParseXS::Utilities'=> '3.33',
12878             'ExtUtils::Typemaps' => '3.33',
12879             'ExtUtils::Typemaps::Cmd'=> '3.33',
12880             'ExtUtils::Typemaps::InputMap'=> '3.33',
12881             'ExtUtils::Typemaps::OutputMap'=> '3.33',
12882             'ExtUtils::Typemaps::Type'=> '3.33',
12883             'Hash::Util' => '0.20',
12884             'Math::BigFloat' => '1.999726',
12885             'Math::BigFloat::Trace' => '0.43',
12886             'Math::BigInt' => '1.999726',
12887             'Math::BigInt::Calc' => '1.999726',
12888             'Math::BigInt::CalcEmu' => '1.999726',
12889             'Math::BigInt::FastCalc'=> '0.42',
12890             'Math::BigInt::Trace' => '0.43',
12891             'Math::BigRat' => '0.260804',
12892             'Module::CoreList' => '5.20160720',
12893             'Module::CoreList::TieHashDelta'=> '5.20160720',
12894             'Module::CoreList::Utils'=> '5.20160720',
12895             'Net::Cmd' => '3.09',
12896             'Net::Config' => '3.09',
12897             'Net::Domain' => '3.09',
12898             'Net::FTP' => '3.09',
12899             'Net::FTP::A' => '3.09',
12900             'Net::FTP::E' => '3.09',
12901             'Net::FTP::I' => '3.09',
12902             'Net::FTP::L' => '3.09',
12903             'Net::FTP::dataconn' => '3.09',
12904             'Net::NNTP' => '3.09',
12905             'Net::Netrc' => '3.09',
12906             'Net::POP3' => '3.09',
12907             'Net::SMTP' => '3.09',
12908             'Net::Time' => '3.09',
12909             'Parse::CPAN::Meta' => '1.4422',
12910             'Perl::OSType' => '1.010',
12911             'Test2' => '1.302045',
12912             'Test2::API' => '1.302045',
12913             'Test2::API::Breakage' => '1.302045',
12914             'Test2::API::Context' => '1.302045',
12915             'Test2::API::Instance' => '1.302045',
12916             'Test2::API::Stack' => '1.302045',
12917             'Test2::Event' => '1.302045',
12918             'Test2::Event::Bail' => '1.302045',
12919             'Test2::Event::Diag' => '1.302045',
12920             'Test2::Event::Exception'=> '1.302045',
12921             'Test2::Event::Generic' => '1.302045',
12922             'Test2::Event::Info' => '1.302045',
12923             'Test2::Event::Note' => '1.302045',
12924             'Test2::Event::Ok' => '1.302045',
12925             'Test2::Event::Plan' => '1.302045',
12926             'Test2::Event::Skip' => '1.302045',
12927             'Test2::Event::Subtest' => '1.302045',
12928             'Test2::Event::Waiting' => '1.302045',
12929             'Test2::Formatter' => '1.302045',
12930             'Test2::Formatter::TAP' => '1.302045',
12931             'Test2::Hub' => '1.302045',
12932             'Test2::Hub::Interceptor'=> '1.302045',
12933             'Test2::Hub::Interceptor::Terminator'=> '1.302045',
12934             'Test2::Hub::Subtest' => '1.302045',
12935             'Test2::IPC' => '1.302045',
12936             'Test2::IPC::Driver' => '1.302045',
12937             'Test2::IPC::Driver::Files'=> '1.302045',
12938             'Test2::Util' => '1.302045',
12939             'Test2::Util::ExternalMeta'=> '1.302045',
12940             'Test2::Util::HashBase' => '1.302045',
12941             'Test2::Util::Trace' => '1.302045',
12942             'Test::Builder' => '1.302045',
12943             'Test::Builder::Formatter'=> '1.302045',
12944             'Test::Builder::Module' => '1.302045',
12945             'Test::Builder::Tester' => '1.302045',
12946             'Test::Builder::Tester::Color'=> '1.302045',
12947             'Test::Builder::TodoDiag'=> '1.302045',
12948             'Test::More' => '1.302045',
12949             'Test::Simple' => '1.302045',
12950             'Test::Tester' => '1.302045',
12951             'Test::Tester::Capture' => '1.302045',
12952             'Test::Tester::CaptureRunner'=> '1.302045',
12953             'Test::Tester::Delegate'=> '1.302045',
12954             'Test::use::ok' => '1.302045',
12955             'Time::HiRes' => '1.9739',
12956             'Unicode' => '9.0.0',
12957             'Unicode::UCD' => '0.66',
12958             'XSLoader' => '0.22',
12959             'bigint' => '0.43',
12960             'bignum' => '0.43',
12961             'bigrat' => '0.43',
12962             'encoding' => '2.17_01',
12963             'encoding::warnings' => '0.13',
12964             'feature' => '1.45',
12965             'ok' => '1.302045',
12966             'version' => '0.9917',
12967             'version::regex' => '0.9917',
12968             'warnings' => '1.37',
12969             },
12970             removed => {
12971             }
12972             },
12973             5.025004 => {
12974             delta_from => 5.025003,
12975             changed => {
12976             'App::Cpan' => '1.64_01',
12977             'App::Prove' => '3.36_01',
12978             'App::Prove::State' => '3.36_01',
12979             'App::Prove::State::Result'=> '3.36_01',
12980             'App::Prove::State::Result::Test'=> '3.36_01',
12981             'Archive::Tar' => '2.10',
12982             'Archive::Tar::Constant'=> '2.10',
12983             'Archive::Tar::File' => '2.10',
12984             'B' => '1.63',
12985             'B::Concise' => '0.998',
12986             'B::Deparse' => '1.38',
12987             'B::Op_private' => '5.025004',
12988             'CPAN' => '2.14_01',
12989             'CPAN::Meta' => '2.150010',
12990             'CPAN::Meta::Converter' => '2.150010',
12991             'CPAN::Meta::Feature' => '2.150010',
12992             'CPAN::Meta::History' => '2.150010',
12993             'CPAN::Meta::Merge' => '2.150010',
12994             'CPAN::Meta::Prereqs' => '2.150010',
12995             'CPAN::Meta::Spec' => '2.150010',
12996             'CPAN::Meta::Validator' => '2.150010',
12997             'Carp' => '1.42',
12998             'Carp::Heavy' => '1.42',
12999             'Compress::Zlib' => '2.069_01',
13000             'Config' => '5.025004',
13001             'Config::Perl::V' => '0.27',
13002             'Cwd' => '3.65',
13003             'Digest' => '1.17_01',
13004             'Digest::SHA' => '5.96',
13005             'Encode' => '2.86',
13006             'Errno' => '1.26',
13007             'ExtUtils::Command' => '7.24',
13008             'ExtUtils::Command::MM' => '7.24',
13009             'ExtUtils::Liblist' => '7.24',
13010             'ExtUtils::Liblist::Kid'=> '7.24',
13011             'ExtUtils::MM' => '7.24',
13012             'ExtUtils::MM_AIX' => '7.24',
13013             'ExtUtils::MM_Any' => '7.24',
13014             'ExtUtils::MM_BeOS' => '7.24',
13015             'ExtUtils::MM_Cygwin' => '7.24',
13016             'ExtUtils::MM_DOS' => '7.24',
13017             'ExtUtils::MM_Darwin' => '7.24',
13018             'ExtUtils::MM_MacOS' => '7.24',
13019             'ExtUtils::MM_NW5' => '7.24',
13020             'ExtUtils::MM_OS2' => '7.24',
13021             'ExtUtils::MM_QNX' => '7.24',
13022             'ExtUtils::MM_UWIN' => '7.24',
13023             'ExtUtils::MM_Unix' => '7.24',
13024             'ExtUtils::MM_VMS' => '7.24',
13025             'ExtUtils::MM_VOS' => '7.24',
13026             'ExtUtils::MM_Win32' => '7.24',
13027             'ExtUtils::MM_Win95' => '7.24',
13028             'ExtUtils::MY' => '7.24',
13029             'ExtUtils::MakeMaker' => '7.24',
13030             'ExtUtils::MakeMaker::Config'=> '7.24',
13031             'ExtUtils::MakeMaker::Locale'=> '7.24',
13032             'ExtUtils::MakeMaker::version'=> '7.24',
13033             'ExtUtils::MakeMaker::version::regex'=> '7.24',
13034             'ExtUtils::Mkbootstrap' => '7.24',
13035             'ExtUtils::Mksymlists' => '7.24',
13036             'ExtUtils::testlib' => '7.24',
13037             'File::Fetch' => '0.52',
13038             'File::Spec' => '3.65',
13039             'File::Spec::AmigaOS' => '3.65',
13040             'File::Spec::Cygwin' => '3.65',
13041             'File::Spec::Epoc' => '3.65',
13042             'File::Spec::Functions' => '3.65',
13043             'File::Spec::Mac' => '3.65',
13044             'File::Spec::OS2' => '3.65',
13045             'File::Spec::Unix' => '3.65',
13046             'File::Spec::VMS' => '3.65',
13047             'File::Spec::Win32' => '3.65',
13048             'HTTP::Tiny' => '0.064',
13049             'Hash::Util' => '0.21',
13050             'I18N::LangTags' => '0.41',
13051             'I18N::LangTags::Detect'=> '1.06',
13052             'IO' => '1.37',
13053             'IO::Compress::Adapter::Bzip2'=> '2.069_01',
13054             'IO::Compress::Adapter::Deflate'=> '2.069_01',
13055             'IO::Compress::Adapter::Identity'=> '2.069_01',
13056             'IO::Compress::Base' => '2.069_01',
13057             'IO::Compress::Base::Common'=> '2.069_01',
13058             'IO::Compress::Bzip2' => '2.069_01',
13059             'IO::Compress::Deflate' => '2.069_01',
13060             'IO::Compress::Gzip' => '2.069_01',
13061             'IO::Compress::Gzip::Constants'=> '2.069_01',
13062             'IO::Compress::RawDeflate'=> '2.069_01',
13063             'IO::Compress::Zip' => '2.069_01',
13064             'IO::Compress::Zip::Constants'=> '2.069_01',
13065             'IO::Compress::Zlib::Constants'=> '2.069_01',
13066             'IO::Compress::Zlib::Extra'=> '2.069_01',
13067             'IO::Socket::IP' => '0.38',
13068             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01',
13069             'IO::Uncompress::Adapter::Identity'=> '2.069_01',
13070             'IO::Uncompress::Adapter::Inflate'=> '2.069_01',
13071             'IO::Uncompress::AnyInflate'=> '2.069_01',
13072             'IO::Uncompress::AnyUncompress'=> '2.069_01',
13073             'IO::Uncompress::Base' => '2.069_01',
13074             'IO::Uncompress::Bunzip2'=> '2.069_01',
13075             'IO::Uncompress::Gunzip'=> '2.069_01',
13076             'IO::Uncompress::Inflate'=> '2.069_01',
13077             'IO::Uncompress::RawInflate'=> '2.069_01',
13078             'IO::Uncompress::Unzip' => '2.069_01',
13079             'IPC::Cmd' => '0.96',
13080             'JSON::PP' => '2.27400_01',
13081             'Locale::Maketext' => '1.28',
13082             'Locale::Maketext::Simple'=> '0.21_01',
13083             'Math::BigFloat::Trace' => '0.43_01',
13084             'Math::BigInt::Trace' => '0.43_01',
13085             'Memoize' => '1.03_01',
13086             'Module::CoreList' => '5.20160820',
13087             'Module::CoreList::TieHashDelta'=> '5.20160820',
13088             'Module::CoreList::Utils'=> '5.20160820',
13089             'Module::Load::Conditional'=> '0.68',
13090             'Module::Metadata' => '1.000033',
13091             'NEXT' => '0.67',
13092             'Net::Cmd' => '3.10',
13093             'Net::Config' => '3.10',
13094             'Net::Domain' => '3.10',
13095             'Net::FTP' => '3.10',
13096             'Net::FTP::A' => '3.10',
13097             'Net::FTP::E' => '3.10',
13098             'Net::FTP::I' => '3.10',
13099             'Net::FTP::L' => '3.10',
13100             'Net::FTP::dataconn' => '3.10',
13101             'Net::NNTP' => '3.10',
13102             'Net::Netrc' => '3.10',
13103             'Net::POP3' => '3.10',
13104             'Net::Ping' => '2.44',
13105             'Net::SMTP' => '3.10',
13106             'Net::Time' => '3.10',
13107             'Opcode' => '1.37',
13108             'POSIX' => '1.71',
13109             'Parse::CPAN::Meta' => '2.150010',
13110             'Pod::Html' => '1.2201',
13111             'Pod::Perldoc' => '3.27',
13112             'Pod::Perldoc::BaseTo' => '3.27',
13113             'Pod::Perldoc::GetOptsOO'=> '3.27',
13114             'Pod::Perldoc::ToANSI' => '3.27',
13115             'Pod::Perldoc::ToChecker'=> '3.27',
13116             'Pod::Perldoc::ToMan' => '3.27',
13117             'Pod::Perldoc::ToNroff' => '3.27',
13118             'Pod::Perldoc::ToPod' => '3.27',
13119             'Pod::Perldoc::ToRtf' => '3.27',
13120             'Pod::Perldoc::ToTerm' => '3.27',
13121             'Pod::Perldoc::ToText' => '3.27',
13122             'Pod::Perldoc::ToTk' => '3.27',
13123             'Pod::Perldoc::ToXml' => '3.27',
13124             'Storable' => '2.57',
13125             'Sys::Syslog' => '0.34_01',
13126             'TAP::Base' => '3.36_01',
13127             'TAP::Formatter::Base' => '3.36_01',
13128             'TAP::Formatter::Color' => '3.36_01',
13129             'TAP::Formatter::Console'=> '3.36_01',
13130             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13131             'TAP::Formatter::Console::Session'=> '3.36_01',
13132             'TAP::Formatter::File' => '3.36_01',
13133             'TAP::Formatter::File::Session'=> '3.36_01',
13134             'TAP::Formatter::Session'=> '3.36_01',
13135             'TAP::Harness' => '3.36_01',
13136             'TAP::Harness::Env' => '3.36_01',
13137             'TAP::Object' => '3.36_01',
13138             'TAP::Parser' => '3.36_01',
13139             'TAP::Parser::Aggregator'=> '3.36_01',
13140             'TAP::Parser::Grammar' => '3.36_01',
13141             'TAP::Parser::Iterator' => '3.36_01',
13142             'TAP::Parser::Iterator::Array'=> '3.36_01',
13143             'TAP::Parser::Iterator::Process'=> '3.36_01',
13144             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13145             'TAP::Parser::IteratorFactory'=> '3.36_01',
13146             'TAP::Parser::Multiplexer'=> '3.36_01',
13147             'TAP::Parser::Result' => '3.36_01',
13148             'TAP::Parser::Result::Bailout'=> '3.36_01',
13149             'TAP::Parser::Result::Comment'=> '3.36_01',
13150             'TAP::Parser::Result::Plan'=> '3.36_01',
13151             'TAP::Parser::Result::Pragma'=> '3.36_01',
13152             'TAP::Parser::Result::Test'=> '3.36_01',
13153             'TAP::Parser::Result::Unknown'=> '3.36_01',
13154             'TAP::Parser::Result::Version'=> '3.36_01',
13155             'TAP::Parser::Result::YAML'=> '3.36_01',
13156             'TAP::Parser::ResultFactory'=> '3.36_01',
13157             'TAP::Parser::Scheduler'=> '3.36_01',
13158             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13159             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13160             'TAP::Parser::Source' => '3.36_01',
13161             'TAP::Parser::SourceHandler'=> '3.36_01',
13162             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13163             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13164             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13165             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13166             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13167             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13168             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13169             'Test' => '1.29',
13170             'Test2' => '1.302052',
13171             'Test2::API' => '1.302052',
13172             'Test2::API::Breakage' => '1.302052',
13173             'Test2::API::Context' => '1.302052',
13174             'Test2::API::Instance' => '1.302052',
13175             'Test2::API::Stack' => '1.302052',
13176             'Test2::Event' => '1.302052',
13177             'Test2::Event::Bail' => '1.302052',
13178             'Test2::Event::Diag' => '1.302052',
13179             'Test2::Event::Exception'=> '1.302052',
13180             'Test2::Event::Generic' => '1.302052',
13181             'Test2::Event::Info' => '1.302052',
13182             'Test2::Event::Note' => '1.302052',
13183             'Test2::Event::Ok' => '1.302052',
13184             'Test2::Event::Plan' => '1.302052',
13185             'Test2::Event::Skip' => '1.302052',
13186             'Test2::Event::Subtest' => '1.302052',
13187             'Test2::Event::Waiting' => '1.302052',
13188             'Test2::Formatter' => '1.302052',
13189             'Test2::Formatter::TAP' => '1.302052',
13190             'Test2::Hub' => '1.302052',
13191             'Test2::Hub::Interceptor'=> '1.302052',
13192             'Test2::Hub::Interceptor::Terminator'=> '1.302052',
13193             'Test2::Hub::Subtest' => '1.302052',
13194             'Test2::IPC' => '1.302052',
13195             'Test2::IPC::Driver' => '1.302052',
13196             'Test2::IPC::Driver::Files'=> '1.302052',
13197             'Test2::Util' => '1.302052',
13198             'Test2::Util::ExternalMeta'=> '1.302052',
13199             'Test2::Util::HashBase' => '1.302052',
13200             'Test2::Util::Trace' => '1.302052',
13201             'Test::Builder' => '1.302052',
13202             'Test::Builder::Formatter'=> '1.302052',
13203             'Test::Builder::Module' => '1.302052',
13204             'Test::Builder::Tester' => '1.302052',
13205             'Test::Builder::Tester::Color'=> '1.302052',
13206             'Test::Builder::TodoDiag'=> '1.302052',
13207             'Test::Harness' => '3.36_01',
13208             'Test::More' => '1.302052',
13209             'Test::Simple' => '1.302052',
13210             'Test::Tester' => '1.302052',
13211             'Test::Tester::Capture' => '1.302052',
13212             'Test::Tester::CaptureRunner'=> '1.302052',
13213             'Test::Tester::Delegate'=> '1.302052',
13214             'Test::use::ok' => '1.302052',
13215             'Tie::Hash::NamedCapture'=> '0.10',
13216             'Time::Local' => '1.24',
13217             'XS::APItest' => '0.83',
13218             'arybase' => '0.12',
13219             'base' => '2.24',
13220             'bigint' => '0.43_01',
13221             'bignum' => '0.43_01',
13222             'bigrat' => '0.43_01',
13223             'encoding' => '2.18',
13224             'ok' => '1.302052',
13225             },
13226             removed => {
13227             }
13228             },
13229             5.025005 => {
13230             delta_from => 5.025004,
13231             changed => {
13232             'B::Op_private' => '5.025005',
13233             'Config' => '5.025005',
13234             'Filter::Simple' => '0.93',
13235             'Locale::Codes' => '3.40',
13236             'Locale::Codes::Constants'=> '3.40',
13237             'Locale::Codes::Country'=> '3.40',
13238             'Locale::Codes::Country_Codes'=> '3.40',
13239             'Locale::Codes::Country_Retired'=> '3.40',
13240             'Locale::Codes::Currency'=> '3.40',
13241             'Locale::Codes::Currency_Codes'=> '3.40',
13242             'Locale::Codes::Currency_Retired'=> '3.40',
13243             'Locale::Codes::LangExt'=> '3.40',
13244             'Locale::Codes::LangExt_Codes'=> '3.40',
13245             'Locale::Codes::LangExt_Retired'=> '3.40',
13246             'Locale::Codes::LangFam'=> '3.40',
13247             'Locale::Codes::LangFam_Codes'=> '3.40',
13248             'Locale::Codes::LangFam_Retired'=> '3.40',
13249             'Locale::Codes::LangVar'=> '3.40',
13250             'Locale::Codes::LangVar_Codes'=> '3.40',
13251             'Locale::Codes::LangVar_Retired'=> '3.40',
13252             'Locale::Codes::Language'=> '3.40',
13253             'Locale::Codes::Language_Codes'=> '3.40',
13254             'Locale::Codes::Language_Retired'=> '3.40',
13255             'Locale::Codes::Script' => '3.40',
13256             'Locale::Codes::Script_Codes'=> '3.40',
13257             'Locale::Codes::Script_Retired'=> '3.40',
13258             'Locale::Country' => '3.40',
13259             'Locale::Currency' => '3.40',
13260             'Locale::Language' => '3.40',
13261             'Locale::Script' => '3.40',
13262             'Module::CoreList' => '5.20160920',
13263             'Module::CoreList::TieHashDelta'=> '5.20160920',
13264             'Module::CoreList::Utils'=> '5.20160920',
13265             'POSIX' => '1.72',
13266             'Sys::Syslog' => '0.35',
13267             'Test2' => '1.302056',
13268             'Test2::API' => '1.302056',
13269             'Test2::API::Breakage' => '1.302056',
13270             'Test2::API::Context' => '1.302056',
13271             'Test2::API::Instance' => '1.302056',
13272             'Test2::API::Stack' => '1.302056',
13273             'Test2::Event' => '1.302056',
13274             'Test2::Event::Bail' => '1.302056',
13275             'Test2::Event::Diag' => '1.302056',
13276             'Test2::Event::Exception'=> '1.302056',
13277             'Test2::Event::Generic' => '1.302056',
13278             'Test2::Event::Info' => '1.302056',
13279             'Test2::Event::Note' => '1.302056',
13280             'Test2::Event::Ok' => '1.302056',
13281             'Test2::Event::Plan' => '1.302056',
13282             'Test2::Event::Skip' => '1.302056',
13283             'Test2::Event::Subtest' => '1.302056',
13284             'Test2::Event::Waiting' => '1.302056',
13285             'Test2::Formatter' => '1.302056',
13286             'Test2::Formatter::TAP' => '1.302056',
13287             'Test2::Hub' => '1.302056',
13288             'Test2::Hub::Interceptor'=> '1.302056',
13289             'Test2::Hub::Interceptor::Terminator'=> '1.302056',
13290             'Test2::Hub::Subtest' => '1.302056',
13291             'Test2::IPC' => '1.302056',
13292             'Test2::IPC::Driver' => '1.302056',
13293             'Test2::IPC::Driver::Files'=> '1.302056',
13294             'Test2::Util' => '1.302056',
13295             'Test2::Util::ExternalMeta'=> '1.302056',
13296             'Test2::Util::HashBase' => '1.302056',
13297             'Test2::Util::Trace' => '1.302056',
13298             'Test::Builder' => '1.302056',
13299             'Test::Builder::Formatter'=> '1.302056',
13300             'Test::Builder::Module' => '1.302056',
13301             'Test::Builder::Tester' => '1.302056',
13302             'Test::Builder::Tester::Color'=> '1.302056',
13303             'Test::Builder::TodoDiag'=> '1.302056',
13304             'Test::More' => '1.302056',
13305             'Test::Simple' => '1.302056',
13306             'Test::Tester' => '1.302056',
13307             'Test::Tester::Capture' => '1.302056',
13308             'Test::Tester::CaptureRunner'=> '1.302056',
13309             'Test::Tester::Delegate'=> '1.302056',
13310             'Test::use::ok' => '1.302056',
13311             'Thread::Semaphore' => '2.13',
13312             'XS::APItest' => '0.84',
13313             'XSLoader' => '0.24',
13314             'ok' => '1.302056',
13315             },
13316             removed => {
13317             }
13318             },
13319             5.025006 => {
13320             delta_from => 5.025005,
13321             changed => {
13322             'Archive::Tar' => '2.14',
13323             'Archive::Tar::Constant'=> '2.14',
13324             'Archive::Tar::File' => '2.14',
13325             'B' => '1.64',
13326             'B::Concise' => '0.999',
13327             'B::Deparse' => '1.39',
13328             'B::Op_private' => '5.025006',
13329             'Config' => '5.025006',
13330             'Data::Dumper' => '2.162',
13331             'Devel::Peek' => '1.25',
13332             'HTTP::Tiny' => '0.070',
13333             'List::Util' => '1.46',
13334             'List::Util::XS' => '1.46',
13335             'Module::CoreList' => '5.20161020',
13336             'Module::CoreList::TieHashDelta'=> '5.20161020',
13337             'Module::CoreList::Utils'=> '5.20161020',
13338             'Net::Ping' => '2.51',
13339             'OS2::DLL' => '1.07',
13340             'Opcode' => '1.38',
13341             'POSIX' => '1.73',
13342             'PerlIO::encoding' => '0.25',
13343             'Pod::Man' => '4.08',
13344             'Pod::ParseLink' => '4.08',
13345             'Pod::Text' => '4.08',
13346             'Pod::Text::Color' => '4.08',
13347             'Pod::Text::Overstrike' => '4.08',
13348             'Pod::Text::Termcap' => '4.08',
13349             'Scalar::Util' => '1.46',
13350             'Storable' => '2.58',
13351             'Sub::Util' => '1.46',
13352             'Test2' => '1.302059',
13353             'Test2::API' => '1.302059',
13354             'Test2::API::Breakage' => '1.302059',
13355             'Test2::API::Context' => '1.302059',
13356             'Test2::API::Instance' => '1.302059',
13357             'Test2::API::Stack' => '1.302059',
13358             'Test2::Event' => '1.302059',
13359             'Test2::Event::Bail' => '1.302059',
13360             'Test2::Event::Diag' => '1.302059',
13361             'Test2::Event::Exception'=> '1.302059',
13362             'Test2::Event::Generic' => '1.302059',
13363             'Test2::Event::Info' => '1.302059',
13364             'Test2::Event::Note' => '1.302059',
13365             'Test2::Event::Ok' => '1.302059',
13366             'Test2::Event::Plan' => '1.302059',
13367             'Test2::Event::Skip' => '1.302059',
13368             'Test2::Event::Subtest' => '1.302059',
13369             'Test2::Event::Waiting' => '1.302059',
13370             'Test2::Formatter' => '1.302059',
13371             'Test2::Formatter::TAP' => '1.302059',
13372             'Test2::Hub' => '1.302059',
13373             'Test2::Hub::Interceptor'=> '1.302059',
13374             'Test2::Hub::Interceptor::Terminator'=> '1.302059',
13375             'Test2::Hub::Subtest' => '1.302059',
13376             'Test2::IPC' => '1.302059',
13377             'Test2::IPC::Driver' => '1.302059',
13378             'Test2::IPC::Driver::Files'=> '1.302059',
13379             'Test2::Util' => '1.302059',
13380             'Test2::Util::ExternalMeta'=> '1.302059',
13381             'Test2::Util::HashBase' => '1.302059',
13382             'Test2::Util::Trace' => '1.302059',
13383             'Test::Builder' => '1.302059',
13384             'Test::Builder::Formatter'=> '1.302059',
13385             'Test::Builder::Module' => '1.302059',
13386             'Test::Builder::Tester' => '1.302059',
13387             'Test::Builder::Tester::Color'=> '1.302059',
13388             'Test::Builder::TodoDiag'=> '1.302059',
13389             'Test::More' => '1.302059',
13390             'Test::Simple' => '1.302059',
13391             'Test::Tester' => '1.302059',
13392             'Test::Tester::Capture' => '1.302059',
13393             'Test::Tester::CaptureRunner'=> '1.302059',
13394             'Test::Tester::Delegate'=> '1.302059',
13395             'Test::use::ok' => '1.302059',
13396             'Time::HiRes' => '1.9740_01',
13397             'VMS::Stdio' => '2.42',
13398             'XS::APItest' => '0.86',
13399             'attributes' => '0.28',
13400             'mro' => '1.19',
13401             'ok' => '1.302059',
13402             'overload' => '1.27',
13403             'parent' => '0.236',
13404             },
13405             removed => {
13406             }
13407             },
13408             5.025007 => {
13409             delta_from => 5.025006,
13410             changed => {
13411             'Archive::Tar' => '2.18',
13412             'Archive::Tar::Constant'=> '2.18',
13413             'Archive::Tar::File' => '2.18',
13414             'B' => '1.65',
13415             'B::Op_private' => '5.025007',
13416             'Config' => '5.025007',
13417             'Cwd' => '3.66',
13418             'Data::Dumper' => '2.165',
13419             'Devel::Peek' => '1.26',
13420             'DynaLoader' => '1.40',
13421             'Errno' => '1.27',
13422             'ExtUtils::ParseXS::Utilities'=> '3.34',
13423             'File::Spec' => '3.66',
13424             'File::Spec::AmigaOS' => '3.66',
13425             'File::Spec::Cygwin' => '3.66',
13426             'File::Spec::Epoc' => '3.66',
13427             'File::Spec::Functions' => '3.66',
13428             'File::Spec::Mac' => '3.66',
13429             'File::Spec::OS2' => '3.66',
13430             'File::Spec::Unix' => '3.66',
13431             'File::Spec::VMS' => '3.66',
13432             'File::Spec::Win32' => '3.66',
13433             'Hash::Util' => '0.22',
13434             'JSON::PP' => '2.27400_02',
13435             'List::Util' => '1.46_02',
13436             'List::Util::XS' => '1.46_02',
13437             'Math::BigFloat' => '1.999727',
13438             'Math::BigInt' => '1.999727',
13439             'Math::BigInt::Calc' => '1.999727',
13440             'Math::BigInt::CalcEmu' => '1.999727',
13441             'Math::Complex' => '1.5901',
13442             'Module::CoreList' => '5.20161120',
13443             'Module::CoreList::TieHashDelta'=> '5.20161120',
13444             'Module::CoreList::Utils'=> '5.20161120',
13445             'Net::Ping' => '2.55',
13446             'Opcode' => '1.39',
13447             'POSIX' => '1.75',
13448             'Pod::Man' => '4.09',
13449             'Pod::ParseLink' => '4.09',
13450             'Pod::Text' => '4.09',
13451             'Pod::Text::Color' => '4.09',
13452             'Pod::Text::Overstrike' => '4.09',
13453             'Pod::Text::Termcap' => '4.09',
13454             'Scalar::Util' => '1.46_02',
13455             'Storable' => '2.59',
13456             'Sub::Util' => '1.46_02',
13457             'Term::ANSIColor' => '4.06',
13458             'Test2' => '1.302062',
13459             'Test2::API' => '1.302062',
13460             'Test2::API::Breakage' => '1.302062',
13461             'Test2::API::Context' => '1.302062',
13462             'Test2::API::Instance' => '1.302062',
13463             'Test2::API::Stack' => '1.302062',
13464             'Test2::Event' => '1.302062',
13465             'Test2::Event::Bail' => '1.302062',
13466             'Test2::Event::Diag' => '1.302062',
13467             'Test2::Event::Exception'=> '1.302062',
13468             'Test2::Event::Generic' => '1.302062',
13469             'Test2::Event::Info' => '1.302062',
13470             'Test2::Event::Note' => '1.302062',
13471             'Test2::Event::Ok' => '1.302062',
13472             'Test2::Event::Plan' => '1.302062',
13473             'Test2::Event::Skip' => '1.302062',
13474             'Test2::Event::Subtest' => '1.302062',
13475             'Test2::Event::Waiting' => '1.302062',
13476             'Test2::Formatter' => '1.302062',
13477             'Test2::Formatter::TAP' => '1.302062',
13478             'Test2::Hub' => '1.302062',
13479             'Test2::Hub::Interceptor'=> '1.302062',
13480             'Test2::Hub::Interceptor::Terminator'=> '1.302062',
13481             'Test2::Hub::Subtest' => '1.302062',
13482             'Test2::IPC' => '1.302062',
13483             'Test2::IPC::Driver' => '1.302062',
13484             'Test2::IPC::Driver::Files'=> '1.302062',
13485             'Test2::Util' => '1.302062',
13486             'Test2::Util::ExternalMeta'=> '1.302062',
13487             'Test2::Util::HashBase' => '1.302062',
13488             'Test2::Util::Trace' => '1.302062',
13489             'Test::Builder' => '1.302062',
13490             'Test::Builder::Formatter'=> '1.302062',
13491             'Test::Builder::Module' => '1.302062',
13492             'Test::Builder::Tester' => '1.302062',
13493             'Test::Builder::Tester::Color'=> '1.302062',
13494             'Test::Builder::TodoDiag'=> '1.302062',
13495             'Test::More' => '1.302062',
13496             'Test::Simple' => '1.302062',
13497             'Test::Tester' => '1.302062',
13498             'Test::Tester::Capture' => '1.302062',
13499             'Test::Tester::CaptureRunner'=> '1.302062',
13500             'Test::Tester::Delegate'=> '1.302062',
13501             'Test::use::ok' => '1.302062',
13502             'Time::HiRes' => '1.9740_03',
13503             'Unicode::Collate' => '1.18',
13504             'Unicode::Collate::CJK::Big5'=> '1.18',
13505             'Unicode::Collate::CJK::GB2312'=> '1.18',
13506             'Unicode::Collate::CJK::JISX0208'=> '1.18',
13507             'Unicode::Collate::CJK::Korean'=> '1.18',
13508             'Unicode::Collate::CJK::Pinyin'=> '1.18',
13509             'Unicode::Collate::CJK::Stroke'=> '1.18',
13510             'Unicode::Collate::CJK::Zhuyin'=> '1.18',
13511             'Unicode::Collate::Locale'=> '1.18',
13512             'Unicode::UCD' => '0.67',
13513             'XS::APItest' => '0.87',
13514             'XS::Typemap' => '0.15',
13515             'mro' => '1.20',
13516             'ok' => '1.302062',
13517             'threads' => '2.10',
13518             },
13519             removed => {
13520             }
13521             },
13522             5.025008 => {
13523             delta_from => 5.025007,
13524             changed => {
13525             'Archive::Tar' => '2.24',
13526             'Archive::Tar::Constant'=> '2.24',
13527             'Archive::Tar::File' => '2.24',
13528             'B::Debug' => '1.24',
13529             'B::Op_private' => '5.025008',
13530             'Config' => '5.025008',
13531             'Data::Dumper' => '2.166',
13532             'Encode' => '2.88',
13533             'Encode::Alias' => '2.21',
13534             'Encode::CN::HZ' => '2.08',
13535             'Encode::MIME::Header' => '2.24',
13536             'Encode::MIME::Name' => '1.02',
13537             'Encode::Unicode' => '2.1501',
13538             'IO' => '1.38',
13539             'Locale::Codes' => '3.42',
13540             'Locale::Codes::Constants'=> '3.42',
13541             'Locale::Codes::Country'=> '3.42',
13542             'Locale::Codes::Country_Codes'=> '3.42',
13543             'Locale::Codes::Country_Retired'=> '3.42',
13544             'Locale::Codes::Currency'=> '3.42',
13545             'Locale::Codes::Currency_Codes'=> '3.42',
13546             'Locale::Codes::Currency_Retired'=> '3.42',
13547             'Locale::Codes::LangExt'=> '3.42',
13548             'Locale::Codes::LangExt_Codes'=> '3.42',
13549             'Locale::Codes::LangExt_Retired'=> '3.42',
13550             'Locale::Codes::LangFam'=> '3.42',
13551             'Locale::Codes::LangFam_Codes'=> '3.42',
13552             'Locale::Codes::LangFam_Retired'=> '3.42',
13553             'Locale::Codes::LangVar'=> '3.42',
13554             'Locale::Codes::LangVar_Codes'=> '3.42',
13555             'Locale::Codes::LangVar_Retired'=> '3.42',
13556             'Locale::Codes::Language'=> '3.42',
13557             'Locale::Codes::Language_Codes'=> '3.42',
13558             'Locale::Codes::Language_Retired'=> '3.42',
13559             'Locale::Codes::Script' => '3.42',
13560             'Locale::Codes::Script_Codes'=> '3.42',
13561             'Locale::Codes::Script_Retired'=> '3.42',
13562             'Locale::Country' => '3.42',
13563             'Locale::Currency' => '3.42',
13564             'Locale::Language' => '3.42',
13565             'Locale::Script' => '3.42',
13566             'Math::BigFloat' => '1.999806',
13567             'Math::BigFloat::Trace' => '0.47',
13568             'Math::BigInt' => '1.999806',
13569             'Math::BigInt::Calc' => '1.999806',
13570             'Math::BigInt::CalcEmu' => '1.999806',
13571             'Math::BigInt::FastCalc'=> '0.5005',
13572             'Math::BigInt::Lib' => '1.999806',
13573             'Math::BigInt::Trace' => '0.47',
13574             'Math::BigRat' => '0.2611',
13575             'Module::CoreList' => '5.20161220',
13576             'Module::CoreList::TieHashDelta'=> '5.20161220',
13577             'Module::CoreList::Utils'=> '5.20161220',
13578             'POSIX' => '1.76',
13579             'PerlIO::scalar' => '0.25',
13580             'Pod::Simple' => '3.35',
13581             'Pod::Simple::BlackBox' => '3.35',
13582             'Pod::Simple::Checker' => '3.35',
13583             'Pod::Simple::Debug' => '3.35',
13584             'Pod::Simple::DumpAsText'=> '3.35',
13585             'Pod::Simple::DumpAsXML'=> '3.35',
13586             'Pod::Simple::HTML' => '3.35',
13587             'Pod::Simple::HTMLBatch'=> '3.35',
13588             'Pod::Simple::LinkSection'=> '3.35',
13589             'Pod::Simple::Methody' => '3.35',
13590             'Pod::Simple::Progress' => '3.35',
13591             'Pod::Simple::PullParser'=> '3.35',
13592             'Pod::Simple::PullParserEndToken'=> '3.35',
13593             'Pod::Simple::PullParserStartToken'=> '3.35',
13594             'Pod::Simple::PullParserTextToken'=> '3.35',
13595             'Pod::Simple::PullParserToken'=> '3.35',
13596             'Pod::Simple::RTF' => '3.35',
13597             'Pod::Simple::Search' => '3.35',
13598             'Pod::Simple::SimpleTree'=> '3.35',
13599             'Pod::Simple::Text' => '3.35',
13600             'Pod::Simple::TextContent'=> '3.35',
13601             'Pod::Simple::TiedOutFH'=> '3.35',
13602             'Pod::Simple::Transcode'=> '3.35',
13603             'Pod::Simple::TranscodeDumb'=> '3.35',
13604             'Pod::Simple::TranscodeSmart'=> '3.35',
13605             'Pod::Simple::XHTML' => '3.35',
13606             'Pod::Simple::XMLOutStream'=> '3.35',
13607             'Test2' => '1.302073',
13608             'Test2::API' => '1.302073',
13609             'Test2::API::Breakage' => '1.302073',
13610             'Test2::API::Context' => '1.302073',
13611             'Test2::API::Instance' => '1.302073',
13612             'Test2::API::Stack' => '1.302073',
13613             'Test2::Event' => '1.302073',
13614             'Test2::Event::Bail' => '1.302073',
13615             'Test2::Event::Diag' => '1.302073',
13616             'Test2::Event::Encoding'=> '1.302073',
13617             'Test2::Event::Exception'=> '1.302073',
13618             'Test2::Event::Generic' => '1.302073',
13619             'Test2::Event::Info' => '1.302073',
13620             'Test2::Event::Note' => '1.302073',
13621             'Test2::Event::Ok' => '1.302073',
13622             'Test2::Event::Plan' => '1.302073',
13623             'Test2::Event::Skip' => '1.302073',
13624             'Test2::Event::Subtest' => '1.302073',
13625             'Test2::Event::TAP::Version'=> '1.302073',
13626             'Test2::Event::Waiting' => '1.302073',
13627             'Test2::Formatter' => '1.302073',
13628             'Test2::Formatter::TAP' => '1.302073',
13629             'Test2::Hub' => '1.302073',
13630             'Test2::Hub::Interceptor'=> '1.302073',
13631             'Test2::Hub::Interceptor::Terminator'=> '1.302073',
13632             'Test2::Hub::Subtest' => '1.302073',
13633             'Test2::IPC' => '1.302073',
13634             'Test2::IPC::Driver' => '1.302073',
13635             'Test2::IPC::Driver::Files'=> '1.302073',
13636             'Test2::Tools::Tiny' => '1.302073',
13637             'Test2::Util' => '1.302073',
13638             'Test2::Util::ExternalMeta'=> '1.302073',
13639             'Test2::Util::HashBase' => '0.002',
13640             'Test2::Util::Trace' => '1.302073',
13641             'Test::Builder' => '1.302073',
13642             'Test::Builder::Formatter'=> '1.302073',
13643             'Test::Builder::Module' => '1.302073',
13644             'Test::Builder::Tester' => '1.302073',
13645             'Test::Builder::Tester::Color'=> '1.302073',
13646             'Test::Builder::TodoDiag'=> '1.302073',
13647             'Test::More' => '1.302073',
13648             'Test::Simple' => '1.302073',
13649             'Test::Tester' => '1.302073',
13650             'Test::Tester::Capture' => '1.302073',
13651             'Test::Tester::CaptureRunner'=> '1.302073',
13652             'Test::Tester::Delegate'=> '1.302073',
13653             'Test::use::ok' => '1.302073',
13654             'Time::HiRes' => '1.9741',
13655             'Time::Local' => '1.25',
13656             'Unicode::Collate' => '1.19',
13657             'Unicode::Collate::CJK::Big5'=> '1.19',
13658             'Unicode::Collate::CJK::GB2312'=> '1.19',
13659             'Unicode::Collate::CJK::JISX0208'=> '1.19',
13660             'Unicode::Collate::CJK::Korean'=> '1.19',
13661             'Unicode::Collate::CJK::Pinyin'=> '1.19',
13662             'Unicode::Collate::CJK::Stroke'=> '1.19',
13663             'Unicode::Collate::CJK::Zhuyin'=> '1.19',
13664             'Unicode::Collate::Locale'=> '1.19',
13665             'bigint' => '0.47',
13666             'bignum' => '0.47',
13667             'bigrat' => '0.47',
13668             'encoding' => '2.19',
13669             'ok' => '1.302073',
13670             },
13671             removed => {
13672             }
13673             },
13674             5.022003 => {
13675             delta_from => 5.022002,
13676             changed => {
13677             'App::Cpan' => '1.63_01',
13678             'App::Prove' => '3.35_01',
13679             'App::Prove::State' => '3.35_01',
13680             'App::Prove::State::Result'=> '3.35_01',
13681             'App::Prove::State::Result::Test'=> '3.35_01',
13682             'Archive::Tar' => '2.04_01',
13683             'Archive::Tar::Constant'=> '2.04_01',
13684             'Archive::Tar::File' => '2.04_01',
13685             'B::Op_private' => '5.022003',
13686             'CPAN' => '2.11_01',
13687             'Compress::Zlib' => '2.068_001',
13688             'Config' => '5.022003',
13689             'Cwd' => '3.56_02',
13690             'Digest' => '1.17_01',
13691             'Digest::SHA' => '5.95_01',
13692             'Encode' => '2.72_01',
13693             'ExtUtils::Command' => '1.20_01',
13694             'ExtUtils::Command::MM' => '7.04_02',
13695             'ExtUtils::Liblist' => '7.04_02',
13696             'ExtUtils::Liblist::Kid'=> '7.04_02',
13697             'ExtUtils::MM' => '7.04_02',
13698             'ExtUtils::MM_AIX' => '7.04_02',
13699             'ExtUtils::MM_Any' => '7.04_02',
13700             'ExtUtils::MM_BeOS' => '7.04_02',
13701             'ExtUtils::MM_Cygwin' => '7.04_02',
13702             'ExtUtils::MM_DOS' => '7.04_02',
13703             'ExtUtils::MM_Darwin' => '7.04_02',
13704             'ExtUtils::MM_MacOS' => '7.04_02',
13705             'ExtUtils::MM_NW5' => '7.04_02',
13706             'ExtUtils::MM_OS2' => '7.04_02',
13707             'ExtUtils::MM_QNX' => '7.04_02',
13708             'ExtUtils::MM_UWIN' => '7.04_02',
13709             'ExtUtils::MM_Unix' => '7.04_02',
13710             'ExtUtils::MM_VMS' => '7.04_02',
13711             'ExtUtils::MM_VOS' => '7.04_02',
13712             'ExtUtils::MM_Win32' => '7.04_02',
13713             'ExtUtils::MM_Win95' => '7.04_02',
13714             'ExtUtils::MY' => '7.04_02',
13715             'ExtUtils::MakeMaker' => '7.04_02',
13716             'ExtUtils::MakeMaker::Config'=> '7.04_02',
13717             'ExtUtils::Mkbootstrap' => '7.04_02',
13718             'ExtUtils::Mksymlists' => '7.04_02',
13719             'ExtUtils::testlib' => '7.04_02',
13720             'File::Fetch' => '0.48_01',
13721             'File::Spec' => '3.56_02',
13722             'File::Spec::Cygwin' => '3.56_02',
13723             'File::Spec::Epoc' => '3.56_02',
13724             'File::Spec::Functions' => '3.56_02',
13725             'File::Spec::Mac' => '3.56_02',
13726             'File::Spec::OS2' => '3.56_02',
13727             'File::Spec::Unix' => '3.56_02',
13728             'File::Spec::VMS' => '3.56_02',
13729             'File::Spec::Win32' => '3.56_02',
13730             'HTTP::Tiny' => '0.054_01',
13731             'I18N::LangTags::Detect'=> '1.05_01',
13732             'IO' => '1.35_01',
13733             'IO::Compress::Adapter::Bzip2'=> '2.068_001',
13734             'IO::Compress::Adapter::Deflate'=> '2.068_001',
13735             'IO::Compress::Adapter::Identity'=> '2.068_001',
13736             'IO::Compress::Base' => '2.068_001',
13737             'IO::Compress::Base::Common'=> '2.068_001',
13738             'IO::Compress::Bzip2' => '2.068_001',
13739             'IO::Compress::Deflate' => '2.068_001',
13740             'IO::Compress::Gzip' => '2.068_001',
13741             'IO::Compress::Gzip::Constants'=> '2.068_001',
13742             'IO::Compress::RawDeflate'=> '2.068_001',
13743             'IO::Compress::Zip' => '2.068_001',
13744             'IO::Compress::Zip::Constants'=> '2.068_001',
13745             'IO::Compress::Zlib::Constants'=> '2.068_001',
13746             'IO::Compress::Zlib::Extra'=> '2.068_001',
13747             'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001',
13748             'IO::Uncompress::Adapter::Identity'=> '2.068_001',
13749             'IO::Uncompress::Adapter::Inflate'=> '2.068_001',
13750             'IO::Uncompress::AnyInflate'=> '2.068_001',
13751             'IO::Uncompress::AnyUncompress'=> '2.068_001',
13752             'IO::Uncompress::Base' => '2.068_001',
13753             'IO::Uncompress::Bunzip2'=> '2.068_001',
13754             'IO::Uncompress::Gunzip'=> '2.068_001',
13755             'IO::Uncompress::Inflate'=> '2.068_001',
13756             'IO::Uncompress::RawInflate'=> '2.068_001',
13757             'IO::Uncompress::Unzip' => '2.068_001',
13758             'IPC::Cmd' => '0.92_01',
13759             'JSON::PP' => '2.27300_01',
13760             'Locale::Maketext' => '1.26_01',
13761             'Locale::Maketext::Simple'=> '0.21_01',
13762             'Memoize' => '1.03_01',
13763             'Module::CoreList' => '5.20170114_22',
13764             'Module::CoreList::TieHashDelta'=> '5.20170114_22',
13765             'Module::CoreList::Utils'=> '5.20170114_22',
13766             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13767             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13768             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13769             'Net::Cmd' => '3.05_01',
13770             'Net::Config' => '3.05_01',
13771             'Net::Domain' => '3.05_01',
13772             'Net::FTP' => '3.05_01',
13773             'Net::FTP::A' => '3.05_01',
13774             'Net::FTP::E' => '3.05_01',
13775             'Net::FTP::I' => '3.05_01',
13776             'Net::FTP::L' => '3.05_01',
13777             'Net::FTP::dataconn' => '3.05_01',
13778             'Net::NNTP' => '3.05_01',
13779             'Net::Netrc' => '3.05_01',
13780             'Net::POP3' => '3.05_01',
13781             'Net::Ping' => '2.43_01',
13782             'Net::SMTP' => '3.05_01',
13783             'Net::Time' => '3.05_01',
13784             'Parse::CPAN::Meta' => '1.4414_001',
13785             'Pod::Html' => '1.2201',
13786             'Pod::Perldoc' => '3.25_01',
13787             'Storable' => '2.53_02',
13788             'Sys::Syslog' => '0.33_01',
13789             'TAP::Base' => '3.35_01',
13790             'TAP::Formatter::Base' => '3.35_01',
13791             'TAP::Formatter::Color' => '3.35_01',
13792             'TAP::Formatter::Console'=> '3.35_01',
13793             'TAP::Formatter::Console::ParallelSession'=> '3.35_01',
13794             'TAP::Formatter::Console::Session'=> '3.35_01',
13795             'TAP::Formatter::File' => '3.35_01',
13796             'TAP::Formatter::File::Session'=> '3.35_01',
13797             'TAP::Formatter::Session'=> '3.35_01',
13798             'TAP::Harness' => '3.35_01',
13799             'TAP::Harness::Env' => '3.35_01',
13800             'TAP::Object' => '3.35_01',
13801             'TAP::Parser' => '3.35_01',
13802             'TAP::Parser::Aggregator'=> '3.35_01',
13803             'TAP::Parser::Grammar' => '3.35_01',
13804             'TAP::Parser::Iterator' => '3.35_01',
13805             'TAP::Parser::Iterator::Array'=> '3.35_01',
13806             'TAP::Parser::Iterator::Process'=> '3.35_01',
13807             'TAP::Parser::Iterator::Stream'=> '3.35_01',
13808             'TAP::Parser::IteratorFactory'=> '3.35_01',
13809             'TAP::Parser::Multiplexer'=> '3.35_01',
13810             'TAP::Parser::Result' => '3.35_01',
13811             'TAP::Parser::Result::Bailout'=> '3.35_01',
13812             'TAP::Parser::Result::Comment'=> '3.35_01',
13813             'TAP::Parser::Result::Plan'=> '3.35_01',
13814             'TAP::Parser::Result::Pragma'=> '3.35_01',
13815             'TAP::Parser::Result::Test'=> '3.35_01',
13816             'TAP::Parser::Result::Unknown'=> '3.35_01',
13817             'TAP::Parser::Result::Version'=> '3.35_01',
13818             'TAP::Parser::Result::YAML'=> '3.35_01',
13819             'TAP::Parser::ResultFactory'=> '3.35_01',
13820             'TAP::Parser::Scheduler'=> '3.35_01',
13821             'TAP::Parser::Scheduler::Job'=> '3.35_01',
13822             'TAP::Parser::Scheduler::Spinner'=> '3.35_01',
13823             'TAP::Parser::Source' => '3.35_01',
13824             'TAP::Parser::SourceHandler'=> '3.35_01',
13825             'TAP::Parser::SourceHandler::Executable'=> '3.35_01',
13826             'TAP::Parser::SourceHandler::File'=> '3.35_01',
13827             'TAP::Parser::SourceHandler::Handle'=> '3.35_01',
13828             'TAP::Parser::SourceHandler::Perl'=> '3.35_01',
13829             'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01',
13830             'TAP::Parser::YAMLish::Reader'=> '3.35_01',
13831             'TAP::Parser::YAMLish::Writer'=> '3.35_01',
13832             'Test' => '1.26_01',
13833             'Test::Harness' => '3.35_01',
13834             'XSLoader' => '0.20_01',
13835             'bigint' => '0.39_01',
13836             'bignum' => '0.39_01',
13837             'bigrat' => '0.39_01',
13838             },
13839             removed => {
13840             }
13841             },
13842             5.024001 => {
13843             delta_from => 5.024000,
13844             changed => {
13845             'App::Cpan' => '1.63_01',
13846             'App::Prove' => '3.36_01',
13847             'App::Prove::State' => '3.36_01',
13848             'App::Prove::State::Result'=> '3.36_01',
13849             'App::Prove::State::Result::Test'=> '3.36_01',
13850             'Archive::Tar' => '2.04_01',
13851             'Archive::Tar::Constant'=> '2.04_01',
13852             'Archive::Tar::File' => '2.04_01',
13853             'B::Op_private' => '5.024001',
13854             'CPAN' => '2.11_01',
13855             'Compress::Zlib' => '2.069_001',
13856             'Config' => '5.024001',
13857             'Cwd' => '3.63_01',
13858             'Digest' => '1.17_01',
13859             'Digest::SHA' => '5.95_01',
13860             'Encode' => '2.80_01',
13861             'ExtUtils::Command' => '7.10_02',
13862             'ExtUtils::Command::MM' => '7.10_02',
13863             'ExtUtils::Liblist' => '7.10_02',
13864             'ExtUtils::Liblist::Kid'=> '7.10_02',
13865             'ExtUtils::MM' => '7.10_02',
13866             'ExtUtils::MM_AIX' => '7.10_02',
13867             'ExtUtils::MM_Any' => '7.10_02',
13868             'ExtUtils::MM_BeOS' => '7.10_02',
13869             'ExtUtils::MM_Cygwin' => '7.10_02',
13870             'ExtUtils::MM_DOS' => '7.10_02',
13871             'ExtUtils::MM_Darwin' => '7.10_02',
13872             'ExtUtils::MM_MacOS' => '7.10_02',
13873             'ExtUtils::MM_NW5' => '7.10_02',
13874             'ExtUtils::MM_OS2' => '7.10_02',
13875             'ExtUtils::MM_QNX' => '7.10_02',
13876             'ExtUtils::MM_UWIN' => '7.10_02',
13877             'ExtUtils::MM_Unix' => '7.10_02',
13878             'ExtUtils::MM_VMS' => '7.10_02',
13879             'ExtUtils::MM_VOS' => '7.10_02',
13880             'ExtUtils::MM_Win32' => '7.10_02',
13881             'ExtUtils::MM_Win95' => '7.10_02',
13882             'ExtUtils::MY' => '7.10_02',
13883             'ExtUtils::MakeMaker' => '7.10_02',
13884             'ExtUtils::MakeMaker::Config'=> '7.10_02',
13885             'ExtUtils::Mkbootstrap' => '7.10_02',
13886             'ExtUtils::Mksymlists' => '7.10_02',
13887             'ExtUtils::testlib' => '7.10_02',
13888             'File::Fetch' => '0.48_01',
13889             'File::Spec' => '3.63_01',
13890             'File::Spec::Cygwin' => '3.63_01',
13891             'File::Spec::Epoc' => '3.63_01',
13892             'File::Spec::Functions' => '3.63_01',
13893             'File::Spec::Mac' => '3.63_01',
13894             'File::Spec::OS2' => '3.63_01',
13895             'File::Spec::Unix' => '3.63_01',
13896             'File::Spec::VMS' => '3.63_01',
13897             'File::Spec::Win32' => '3.63_01',
13898             'HTTP::Tiny' => '0.056_001',
13899             'I18N::LangTags::Detect'=> '1.05_01',
13900             'IO' => '1.36_01',
13901             'IO::Compress::Adapter::Bzip2'=> '2.069_001',
13902             'IO::Compress::Adapter::Deflate'=> '2.069_001',
13903             'IO::Compress::Adapter::Identity'=> '2.069_001',
13904             'IO::Compress::Base' => '2.069_001',
13905             'IO::Compress::Base::Common'=> '2.069_001',
13906             'IO::Compress::Bzip2' => '2.069_001',
13907             'IO::Compress::Deflate' => '2.069_001',
13908             'IO::Compress::Gzip' => '2.069_001',
13909             'IO::Compress::Gzip::Constants'=> '2.069_001',
13910             'IO::Compress::RawDeflate'=> '2.069_001',
13911             'IO::Compress::Zip' => '2.069_001',
13912             'IO::Compress::Zip::Constants'=> '2.069_001',
13913             'IO::Compress::Zlib::Constants'=> '2.069_001',
13914             'IO::Compress::Zlib::Extra'=> '2.069_001',
13915             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001',
13916             'IO::Uncompress::Adapter::Identity'=> '2.069_001',
13917             'IO::Uncompress::Adapter::Inflate'=> '2.069_001',
13918             'IO::Uncompress::AnyInflate'=> '2.069_001',
13919             'IO::Uncompress::AnyUncompress'=> '2.069_001',
13920             'IO::Uncompress::Base' => '2.069_001',
13921             'IO::Uncompress::Bunzip2'=> '2.069_001',
13922             'IO::Uncompress::Gunzip'=> '2.069_001',
13923             'IO::Uncompress::Inflate'=> '2.069_001',
13924             'IO::Uncompress::RawInflate'=> '2.069_001',
13925             'IO::Uncompress::Unzip' => '2.069_001',
13926             'IPC::Cmd' => '0.92_01',
13927             'JSON::PP' => '2.27300_01',
13928             'Locale::Maketext' => '1.26_01',
13929             'Locale::Maketext::Simple'=> '0.21_01',
13930             'Math::BigFloat::Trace' => '0.42_01',
13931             'Math::BigInt::Trace' => '0.42_01',
13932             'Memoize' => '1.03_01',
13933             'Module::CoreList' => '5.20170114_24',
13934             'Module::CoreList::TieHashDelta'=> '5.20170114_24',
13935             'Module::CoreList::Utils'=> '5.20170114_24',
13936             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13937             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13938             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13939             'Net::Cmd' => '3.08_01',
13940             'Net::Config' => '3.08_01',
13941             'Net::Domain' => '3.08_01',
13942             'Net::FTP' => '3.08_01',
13943             'Net::FTP::A' => '3.08_01',
13944             'Net::FTP::E' => '3.08_01',
13945             'Net::FTP::I' => '3.08_01',
13946             'Net::FTP::L' => '3.08_01',
13947             'Net::FTP::dataconn' => '3.08_01',
13948             'Net::NNTP' => '3.08_01',
13949             'Net::Netrc' => '3.08_01',
13950             'Net::POP3' => '3.08_01',
13951             'Net::Ping' => '2.43_01',
13952             'Net::SMTP' => '3.08_01',
13953             'Net::Time' => '3.08_01',
13954             'Parse::CPAN::Meta' => '1.4417_001',
13955             'Pod::Html' => '1.2201',
13956             'Pod::Perldoc' => '3.25_03',
13957             'Storable' => '2.56_01',
13958             'Sys::Syslog' => '0.33_01',
13959             'TAP::Base' => '3.36_01',
13960             'TAP::Formatter::Base' => '3.36_01',
13961             'TAP::Formatter::Color' => '3.36_01',
13962             'TAP::Formatter::Console'=> '3.36_01',
13963             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13964             'TAP::Formatter::Console::Session'=> '3.36_01',
13965             'TAP::Formatter::File' => '3.36_01',
13966             'TAP::Formatter::File::Session'=> '3.36_01',
13967             'TAP::Formatter::Session'=> '3.36_01',
13968             'TAP::Harness' => '3.36_01',
13969             'TAP::Harness::Env' => '3.36_01',
13970             'TAP::Object' => '3.36_01',
13971             'TAP::Parser' => '3.36_01',
13972             'TAP::Parser::Aggregator'=> '3.36_01',
13973             'TAP::Parser::Grammar' => '3.36_01',
13974             'TAP::Parser::Iterator' => '3.36_01',
13975             'TAP::Parser::Iterator::Array'=> '3.36_01',
13976             'TAP::Parser::Iterator::Process'=> '3.36_01',
13977             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13978             'TAP::Parser::IteratorFactory'=> '3.36_01',
13979             'TAP::Parser::Multiplexer'=> '3.36_01',
13980             'TAP::Parser::Result' => '3.36_01',
13981             'TAP::Parser::Result::Bailout'=> '3.36_01',
13982             'TAP::Parser::Result::Comment'=> '3.36_01',
13983             'TAP::Parser::Result::Plan'=> '3.36_01',
13984             'TAP::Parser::Result::Pragma'=> '3.36_01',
13985             'TAP::Parser::Result::Test'=> '3.36_01',
13986             'TAP::Parser::Result::Unknown'=> '3.36_01',
13987             'TAP::Parser::Result::Version'=> '3.36_01',
13988             'TAP::Parser::Result::YAML'=> '3.36_01',
13989             'TAP::Parser::ResultFactory'=> '3.36_01',
13990             'TAP::Parser::Scheduler'=> '3.36_01',
13991             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13992             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13993             'TAP::Parser::Source' => '3.36_01',
13994             'TAP::Parser::SourceHandler'=> '3.36_01',
13995             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13996             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13997             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13998             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13999             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
14000             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
14001             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
14002             'Test' => '1.28_01',
14003             'Test::Harness' => '3.36_01',
14004             'XSLoader' => '0.22',
14005             'bigint' => '0.42_01',
14006             'bignum' => '0.42_01',
14007             'bigrat' => '0.42_01',
14008             },
14009             removed => {
14010             }
14011             },
14012             5.025009 => {
14013             delta_from => 5.025008,
14014             changed => {
14015             'App::Cpan' => '1.66',
14016             'B::Deparse' => '1.40',
14017             'B::Op_private' => '5.025009',
14018             'B::Terse' => '1.07',
14019             'B::Xref' => '1.06',
14020             'CPAN' => '2.16',
14021             'CPAN::Bundle' => '5.5002',
14022             'CPAN::Distribution' => '2.16',
14023             'CPAN::Exception::RecursiveDependency'=> '5.5001',
14024             'CPAN::FTP' => '5.5008',
14025             'CPAN::FirstTime' => '5.5310',
14026             'CPAN::HandleConfig' => '5.5008',
14027             'CPAN::Module' => '5.5003',
14028             'Compress::Raw::Bzip2' => '2.070',
14029             'Compress::Raw::Zlib' => '2.070',
14030             'Config' => '5.025009',
14031             'DB_File' => '1.840',
14032             'Data::Dumper' => '2.167',
14033             'Devel::SelfStubber' => '1.06',
14034             'DynaLoader' => '1.41',
14035             'Errno' => '1.28',
14036             'ExtUtils::Embed' => '1.34',
14037             'File::Glob' => '1.28',
14038             'I18N::LangTags' => '0.42',
14039             'Module::CoreList' => '5.20170120',
14040             'Module::CoreList::TieHashDelta'=> '5.20170120',
14041             'Module::CoreList::Utils'=> '5.20170120',
14042             'OS2::Process' => '1.12',
14043             'PerlIO::scalar' => '0.26',
14044             'Pod::Html' => '1.2202',
14045             'Storable' => '2.61',
14046             'Symbol' => '1.08',
14047             'Term::ReadLine' => '1.16',
14048             'Test' => '1.30',
14049             'Unicode::UCD' => '0.68',
14050             'VMS::DCLsym' => '1.08',
14051             'XS::APItest' => '0.88',
14052             'XSLoader' => '0.26',
14053             'attributes' => '0.29',
14054             'diagnostics' => '1.36',
14055             'feature' => '1.46',
14056             'lib' => '0.64',
14057             'overload' => '1.28',
14058             're' => '0.34',
14059             'threads' => '2.12',
14060             'threads::shared' => '1.54',
14061             },
14062             removed => {
14063             }
14064             },
14065             5.025010 => {
14066             delta_from => 5.025009,
14067             changed => {
14068             'B' => '1.68',
14069             'B::Op_private' => '5.025010',
14070             'CPAN' => '2.17',
14071             'CPAN::Distribution' => '2.17',
14072             'Config' => '5.02501',
14073             'Getopt::Std' => '1.12',
14074             'Module::CoreList' => '5.20170220',
14075             'Module::CoreList::TieHashDelta'=> '5.20170220',
14076             'Module::CoreList::Utils'=> '5.20170220',
14077             'PerlIO' => '1.10',
14078             'Storable' => '2.62',
14079             'Thread::Queue' => '3.12',
14080             'feature' => '1.47',
14081             'open' => '1.11',
14082             'threads' => '2.13',
14083             },
14084             removed => {
14085             }
14086             },
14087             5.025011 => {
14088             delta_from => 5.025010,
14089             changed => {
14090             'App::Prove' => '3.38',
14091             'App::Prove::State' => '3.38',
14092             'App::Prove::State::Result'=> '3.38',
14093             'App::Prove::State::Result::Test'=> '3.38',
14094             'B::Op_private' => '5.025011',
14095             'Compress::Raw::Bzip2' => '2.074',
14096             'Compress::Raw::Zlib' => '2.074',
14097             'Compress::Zlib' => '2.074',
14098             'Config' => '5.025011',
14099             'Config::Perl::V' => '0.28',
14100             'Cwd' => '3.67',
14101             'ExtUtils::ParseXS' => '3.34',
14102             'ExtUtils::ParseXS::Constants'=> '3.34',
14103             'ExtUtils::ParseXS::CountLines'=> '3.34',
14104             'ExtUtils::ParseXS::Eval'=> '3.34',
14105             'ExtUtils::Typemaps' => '3.34',
14106             'ExtUtils::Typemaps::Cmd'=> '3.34',
14107             'ExtUtils::Typemaps::InputMap'=> '3.34',
14108             'ExtUtils::Typemaps::OutputMap'=> '3.34',
14109             'ExtUtils::Typemaps::Type'=> '3.34',
14110             'File::Spec' => '3.67',
14111             'File::Spec::AmigaOS' => '3.67',
14112             'File::Spec::Cygwin' => '3.67',
14113             'File::Spec::Epoc' => '3.67',
14114             'File::Spec::Functions' => '3.67',
14115             'File::Spec::Mac' => '3.67',
14116             'File::Spec::OS2' => '3.67',
14117             'File::Spec::Unix' => '3.67',
14118             'File::Spec::VMS' => '3.67',
14119             'File::Spec::Win32' => '3.67',
14120             'IO::Compress::Adapter::Bzip2'=> '2.074',
14121             'IO::Compress::Adapter::Deflate'=> '2.074',
14122             'IO::Compress::Adapter::Identity'=> '2.074',
14123             'IO::Compress::Base' => '2.074',
14124             'IO::Compress::Base::Common'=> '2.074',
14125             'IO::Compress::Bzip2' => '2.074',
14126             'IO::Compress::Deflate' => '2.074',
14127             'IO::Compress::Gzip' => '2.074',
14128             'IO::Compress::Gzip::Constants'=> '2.074',
14129             'IO::Compress::RawDeflate'=> '2.074',
14130             'IO::Compress::Zip' => '2.074',
14131             'IO::Compress::Zip::Constants'=> '2.074',
14132             'IO::Compress::Zlib::Constants'=> '2.074',
14133             'IO::Compress::Zlib::Extra'=> '2.074',
14134             'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
14135             'IO::Uncompress::Adapter::Identity'=> '2.074',
14136             'IO::Uncompress::Adapter::Inflate'=> '2.074',
14137             'IO::Uncompress::AnyInflate'=> '2.074',
14138             'IO::Uncompress::AnyUncompress'=> '2.074',
14139             'IO::Uncompress::Base' => '2.074',
14140             'IO::Uncompress::Bunzip2'=> '2.074',
14141             'IO::Uncompress::Gunzip'=> '2.074',
14142             'IO::Uncompress::Inflate'=> '2.074',
14143             'IO::Uncompress::RawInflate'=> '2.074',
14144             'IO::Uncompress::Unzip' => '2.074',
14145             'Module::CoreList' => '5.20170320',
14146             'Module::CoreList::TieHashDelta'=> '5.20170230',
14147             'Module::CoreList::Utils'=> '5.20170320',
14148             'Pod::Perldoc' => '3.28',
14149             'Pod::Perldoc::BaseTo' => '3.28',
14150             'Pod::Perldoc::GetOptsOO'=> '3.28',
14151             'Pod::Perldoc::ToANSI' => '3.28',
14152             'Pod::Perldoc::ToChecker'=> '3.28',
14153             'Pod::Perldoc::ToMan' => '3.28',
14154             'Pod::Perldoc::ToNroff' => '3.28',
14155             'Pod::Perldoc::ToPod' => '3.28',
14156             'Pod::Perldoc::ToRtf' => '3.28',
14157             'Pod::Perldoc::ToTerm' => '3.28',
14158             'Pod::Perldoc::ToText' => '3.28',
14159             'Pod::Perldoc::ToTk' => '3.28',
14160             'Pod::Perldoc::ToXml' => '3.28',
14161             'TAP::Base' => '3.38',
14162             'TAP::Formatter::Base' => '3.38',
14163             'TAP::Formatter::Color' => '3.38',
14164             'TAP::Formatter::Console'=> '3.38',
14165             'TAP::Formatter::Console::ParallelSession'=> '3.38',
14166             'TAP::Formatter::Console::Session'=> '3.38',
14167             'TAP::Formatter::File' => '3.38',
14168             'TAP::Formatter::File::Session'=> '3.38',
14169             'TAP::Formatter::Session'=> '3.38',
14170             'TAP::Harness' => '3.38',
14171             'TAP::Harness::Env' => '3.38',
14172             'TAP::Object' => '3.38',
14173             'TAP::Parser' => '3.38',
14174             'TAP::Parser::Aggregator'=> '3.38',
14175             'TAP::Parser::Grammar' => '3.38',
14176             'TAP::Parser::Iterator' => '3.38',
14177             'TAP::Parser::Iterator::Array'=> '3.38',
14178             'TAP::Parser::Iterator::Process'=> '3.38',
14179             'TAP::Parser::Iterator::Stream'=> '3.38',
14180             'TAP::Parser::IteratorFactory'=> '3.38',
14181             'TAP::Parser::Multiplexer'=> '3.38',
14182             'TAP::Parser::Result' => '3.38',
14183             'TAP::Parser::Result::Bailout'=> '3.38',
14184             'TAP::Parser::Result::Comment'=> '3.38',
14185             'TAP::Parser::Result::Plan'=> '3.38',
14186             'TAP::Parser::Result::Pragma'=> '3.38',
14187             'TAP::Parser::Result::Test'=> '3.38',
14188             'TAP::Parser::Result::Unknown'=> '3.38',
14189             'TAP::Parser::Result::Version'=> '3.38',
14190             'TAP::Parser::Result::YAML'=> '3.38',
14191             'TAP::Parser::ResultFactory'=> '3.38',
14192             'TAP::Parser::Scheduler'=> '3.38',
14193             'TAP::Parser::Scheduler::Job'=> '3.38',
14194             'TAP::Parser::Scheduler::Spinner'=> '3.38',
14195             'TAP::Parser::Source' => '3.38',
14196             'TAP::Parser::SourceHandler'=> '3.38',
14197             'TAP::Parser::SourceHandler::Executable'=> '3.38',
14198             'TAP::Parser::SourceHandler::File'=> '3.38',
14199             'TAP::Parser::SourceHandler::Handle'=> '3.38',
14200             'TAP::Parser::SourceHandler::Perl'=> '3.38',
14201             'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
14202             'TAP::Parser::YAMLish::Reader'=> '3.38',
14203             'TAP::Parser::YAMLish::Writer'=> '3.38',
14204             'Test::Harness' => '3.38',
14205             'VMS::Stdio' => '2.41',
14206             'threads' => '2.15',
14207             'threads::shared' => '1.55',
14208             },
14209             removed => {
14210             }
14211             },
14212             5.025012 => {
14213             delta_from => 5.025011,
14214             changed => {
14215             'B::Op_private' => '5.025012',
14216             'CPAN' => '2.18',
14217             'CPAN::Bundle' => '5.5003',
14218             'CPAN::Distribution' => '2.18',
14219             'Config' => '5.025012',
14220             'DynaLoader' => '1.42',
14221             'Module::CoreList' => '5.20170420',
14222             'Module::CoreList::TieHashDelta'=> '5.20170420',
14223             'Module::CoreList::Utils'=> '5.20170420',
14224             'Safe' => '2.40',
14225             'XSLoader' => '0.27',
14226             'base' => '2.25',
14227             'threads::shared' => '1.56',
14228             },
14229             removed => {
14230             }
14231             },
14232             5.026000 => {
14233             delta_from => 5.025012,
14234             changed => {
14235             'B::Op_private' => '5.026000',
14236             'Config' => '5.026',
14237             'Module::CoreList' => '5.20170530',
14238             'Module::CoreList::TieHashDelta'=> '5.20170530',
14239             'Module::CoreList::Utils'=> '5.20170530',
14240             },
14241             removed => {
14242             }
14243             },
14244             5.027000 => {
14245             delta_from => 5.026000,
14246             changed => {
14247             'Attribute::Handlers' => '1.00',
14248             'B::Concise' => '1.000',
14249             'B::Deparse' => '1.41',
14250             'B::Op_private' => '5.027000',
14251             'Config' => '5.027',
14252             'Module::CoreList' => '5.20170531',
14253             'Module::CoreList::TieHashDelta'=> '5.20170531',
14254             'Module::CoreList::Utils'=> '5.20170531',
14255             'O' => '1.02',
14256             'attributes' => '0.3',
14257             'feature' => '1.48',
14258             },
14259             removed => {
14260             }
14261             },
14262             5.027001 => {
14263             delta_from => 5.027,
14264             changed => {
14265             'App::Prove' => '3.39',
14266             'App::Prove::State' => '3.39',
14267             'App::Prove::State::Result'=> '3.39',
14268             'App::Prove::State::Result::Test'=> '3.39',
14269             'Archive::Tar' => '2.26',
14270             'Archive::Tar::Constant'=> '2.26',
14271             'Archive::Tar::File' => '2.26',
14272             'B::Op_private' => '5.027001',
14273             'B::Terse' => '1.08',
14274             'Config' => '5.027001',
14275             'Devel::PPPort' => '3.36',
14276             'DirHandle' => '1.05',
14277             'ExtUtils::Command' => '7.30',
14278             'ExtUtils::Command::MM' => '7.30',
14279             'ExtUtils::Install' => '2.14',
14280             'ExtUtils::Installed' => '2.14',
14281             'ExtUtils::Liblist' => '7.30',
14282             'ExtUtils::Liblist::Kid'=> '7.30',
14283             'ExtUtils::MM' => '7.30',
14284             'ExtUtils::MM_AIX' => '7.30',
14285             'ExtUtils::MM_Any' => '7.30',
14286             'ExtUtils::MM_BeOS' => '7.30',
14287             'ExtUtils::MM_Cygwin' => '7.30',
14288             'ExtUtils::MM_DOS' => '7.30',
14289             'ExtUtils::MM_Darwin' => '7.30',
14290             'ExtUtils::MM_MacOS' => '7.30',
14291             'ExtUtils::MM_NW5' => '7.30',
14292             'ExtUtils::MM_OS2' => '7.30',
14293             'ExtUtils::MM_QNX' => '7.30',
14294             'ExtUtils::MM_UWIN' => '7.30',
14295             'ExtUtils::MM_Unix' => '7.30',
14296             'ExtUtils::MM_VMS' => '7.30',
14297             'ExtUtils::MM_VOS' => '7.30',
14298             'ExtUtils::MM_Win32' => '7.30',
14299             'ExtUtils::MM_Win95' => '7.30',
14300             'ExtUtils::MY' => '7.30',
14301             'ExtUtils::MakeMaker' => '7.30',
14302             'ExtUtils::MakeMaker::Config'=> '7.30',
14303             'ExtUtils::MakeMaker::Locale'=> '7.30',
14304             'ExtUtils::MakeMaker::version'=> '7.30',
14305             'ExtUtils::MakeMaker::version::regex'=> '7.30',
14306             'ExtUtils::Mkbootstrap' => '7.30',
14307             'ExtUtils::Mksymlists' => '7.30',
14308             'ExtUtils::Packlist' => '2.14',
14309             'ExtUtils::testlib' => '7.30',
14310             'File::Path' => '2.14',
14311             'Filter::Util::Call' => '1.57',
14312             'GDBM_File' => '1.16',
14313             'Getopt::Long' => '2.5',
14314             'IO::Socket::IP' => '0.39',
14315             'IPC::Cmd' => '0.98',
14316             'JSON::PP' => '2.94',
14317             'JSON::PP::Boolean' => '2.94',
14318             'Locale::Codes' => '3.52',
14319             'Locale::Codes::Constants'=> '3.52',
14320             'Locale::Codes::Country'=> '3.52',
14321             'Locale::Codes::Country_Codes'=> '3.52',
14322             'Locale::Codes::Country_Retired'=> '3.52',
14323             'Locale::Codes::Currency'=> '3.52',
14324             'Locale::Codes::Currency_Codes'=> '3.52',
14325             'Locale::Codes::Currency_Retired'=> '3.52',
14326             'Locale::Codes::LangExt'=> '3.52',
14327             'Locale::Codes::LangExt_Codes'=> '3.52',
14328             'Locale::Codes::LangExt_Retired'=> '3.52',
14329             'Locale::Codes::LangFam'=> '3.52',
14330             'Locale::Codes::LangFam_Codes'=> '3.52',
14331             'Locale::Codes::LangFam_Retired'=> '3.52',
14332             'Locale::Codes::LangVar'=> '3.52',
14333             'Locale::Codes::LangVar_Codes'=> '3.52',
14334             'Locale::Codes::LangVar_Retired'=> '3.52',
14335             'Locale::Codes::Language'=> '3.52',
14336             'Locale::Codes::Language_Codes'=> '3.52',
14337             'Locale::Codes::Language_Retired'=> '3.52',
14338             'Locale::Codes::Script' => '3.52',
14339             'Locale::Codes::Script_Codes'=> '3.52',
14340             'Locale::Codes::Script_Retired'=> '3.52',
14341             'Locale::Country' => '3.52',
14342             'Locale::Currency' => '3.52',
14343             'Locale::Language' => '3.52',
14344             'Locale::Script' => '3.52',
14345             'Module::CoreList' => '5.20170621',
14346             'Module::CoreList::TieHashDelta'=> '5.20170621',
14347             'Module::CoreList::Utils'=> '5.20170621',
14348             'PerlIO::scalar' => '0.27',
14349             'PerlIO::via' => '0.17',
14350             'Storable' => '2.63',
14351             'TAP::Base' => '3.39',
14352             'TAP::Formatter::Base' => '3.39',
14353             'TAP::Formatter::Color' => '3.39',
14354             'TAP::Formatter::Console'=> '3.39',
14355             'TAP::Formatter::Console::ParallelSession'=> '3.39',
14356             'TAP::Formatter::Console::Session'=> '3.39',
14357             'TAP::Formatter::File' => '3.39',
14358             'TAP::Formatter::File::Session'=> '3.39',
14359             'TAP::Formatter::Session'=> '3.39',
14360             'TAP::Harness' => '3.39',
14361             'TAP::Harness::Env' => '3.39',
14362             'TAP::Object' => '3.39',
14363             'TAP::Parser' => '3.39',
14364             'TAP::Parser::Aggregator'=> '3.39',
14365             'TAP::Parser::Grammar' => '3.39',
14366             'TAP::Parser::Iterator' => '3.39',
14367             'TAP::Parser::Iterator::Array'=> '3.39',
14368             'TAP::Parser::Iterator::Process'=> '3.39',
14369             'TAP::Parser::Iterator::Stream'=> '3.39',
14370             'TAP::Parser::IteratorFactory'=> '3.39',
14371             'TAP::Parser::Multiplexer'=> '3.39',
14372             'TAP::Parser::Result' => '3.39',
14373             'TAP::Parser::Result::Bailout'=> '3.39',
14374             'TAP::Parser::Result::Comment'=> '3.39',
14375             'TAP::Parser::Result::Plan'=> '3.39',
14376             'TAP::Parser::Result::Pragma'=> '3.39',
14377             'TAP::Parser::Result::Test'=> '3.39',
14378             'TAP::Parser::Result::Unknown'=> '3.39',
14379             'TAP::Parser::Result::Version'=> '3.39',
14380             'TAP::Parser::Result::YAML'=> '3.39',
14381             'TAP::Parser::ResultFactory'=> '3.39',
14382             'TAP::Parser::Scheduler'=> '3.39',
14383             'TAP::Parser::Scheduler::Job'=> '3.39',
14384             'TAP::Parser::Scheduler::Spinner'=> '3.39',
14385             'TAP::Parser::Source' => '3.39',
14386             'TAP::Parser::SourceHandler'=> '3.39',
14387             'TAP::Parser::SourceHandler::Executable'=> '3.39',
14388             'TAP::Parser::SourceHandler::File'=> '3.39',
14389             'TAP::Parser::SourceHandler::Handle'=> '3.39',
14390             'TAP::Parser::SourceHandler::Perl'=> '3.39',
14391             'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
14392             'TAP::Parser::YAMLish::Reader'=> '3.39',
14393             'TAP::Parser::YAMLish::Writer'=> '3.39',
14394             'Test::Harness' => '3.39',
14395             'XS::APItest' => '0.89',
14396             '_charnames' => '1.45',
14397             'charnames' => '1.45',
14398             'if' => '0.0607',
14399             'mro' => '1.21',
14400             'threads' => '2.16',
14401             'threads::shared' => '1.57',
14402             'version' => '0.9918',
14403             'version::regex' => '0.9918',
14404             },
14405             removed => {
14406             }
14407             },
14408             5.022004 => {
14409             delta_from => 5.022003,
14410             changed => {
14411             'B::Op_private' => '5.022004',
14412             'Config' => '5.022004',
14413             'Module::CoreList' => '5.20170715_22',
14414             'Module::CoreList::TieHashDelta'=> '5.20170715_22',
14415             'Module::CoreList::Utils'=> '5.20170715_22',
14416             'base' => '2.22_01',
14417             },
14418             removed => {
14419             }
14420             },
14421             5.024002 => {
14422             delta_from => 5.024001,
14423             changed => {
14424             'B::Op_private' => '5.024002',
14425             'Config' => '5.024002',
14426             'Module::CoreList' => '5.20170715_24',
14427             'Module::CoreList::TieHashDelta'=> '5.20170715_24',
14428             'Module::CoreList::Utils'=> '5.20170715_24',
14429             'base' => '2.23_01',
14430             },
14431             removed => {
14432             }
14433             },
14434             5.027002 => {
14435             delta_from => 5.027001,
14436             changed => {
14437             'B::Op_private' => '5.027002',
14438             'Carp' => '1.43',
14439             'Carp::Heavy' => '1.43',
14440             'Config' => '5.027002',
14441             'Cwd' => '3.68',
14442             'Encode' => '2.92',
14443             'Encode::Alias' => '2.23',
14444             'Encode::CN::HZ' => '2.09',
14445             'Encode::Encoding' => '2.08',
14446             'Encode::GSM0338' => '2.07',
14447             'Encode::Guess' => '2.07',
14448             'Encode::JP::JIS7' => '2.07',
14449             'Encode::KR::2022_KR' => '2.04',
14450             'Encode::MIME::Header' => '2.27',
14451             'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
14452             'Encode::Unicode' => '2.16',
14453             'Encode::Unicode::UTF7' => '2.10',
14454             'ExtUtils::CBuilder' => '0.280228',
14455             'ExtUtils::CBuilder::Base'=> '0.280228',
14456             'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
14457             'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
14458             'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
14459             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
14460             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
14461             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
14462             'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
14463             'ExtUtils::CBuilder::Platform::android'=> '0.280228',
14464             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
14465             'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
14466             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
14467             'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
14468             'File::Glob' => '1.29',
14469             'File::Spec' => '3.68',
14470             'File::Spec::AmigaOS' => '3.68',
14471             'File::Spec::Cygwin' => '3.68',
14472             'File::Spec::Epoc' => '3.68',
14473             'File::Spec::Functions' => '3.68',
14474             'File::Spec::Mac' => '3.68',
14475             'File::Spec::OS2' => '3.68',
14476             'File::Spec::Unix' => '3.68',
14477             'File::Spec::VMS' => '3.68',
14478             'File::Spec::Win32' => '3.68',
14479             'List::Util' => '1.48',
14480             'List::Util::XS' => '1.48',
14481             'Math::BigRat' => '0.2613',
14482             'Module::CoreList' => '5.20170720',
14483             'Module::CoreList::TieHashDelta'=> '5.20170720',
14484             'Module::CoreList::Utils'=> '5.20170720',
14485             'Opcode' => '1.40',
14486             'POSIX' => '1.77',
14487             'PerlIO::scalar' => '0.29',
14488             'Scalar::Util' => '1.48',
14489             'Sub::Util' => '1.48',
14490             'Time::HiRes' => '1.9743',
14491             'Time::Piece' => '1.3201',
14492             'Time::Seconds' => '1.3201',
14493             'Unicode' => '10.0.0',
14494             'XS::APItest' => '0.90',
14495             'arybase' => '0.13',
14496             'encoding' => '2.20',
14497             'feature' => '1.49',
14498             're' => '0.35',
14499             },
14500             removed => {
14501             }
14502             },
14503             5.027003 => {
14504             delta_from => 5.027002,
14505             changed => {
14506             'B' => '1.69',
14507             'B::Concise' => '1.001',
14508             'B::Debug' => '1.25',
14509             'B::Deparse' => '1.42',
14510             'B::Op_private' => '5.027003',
14511             'Config' => '5.027003',
14512             'Data::Dumper' => '2.167_02',
14513             'Devel::Peek' => '1.27',
14514             'ExtUtils::Constant' => '0.24',
14515             'ExtUtils::Constant::Base'=> '0.06',
14516             'ExtUtils::Constant::ProxySubs'=> '0.09',
14517             'ExtUtils::Constant::Utils'=> '0.04',
14518             'ExtUtils::ParseXS' => '3.35',
14519             'ExtUtils::ParseXS::Constants'=> '3.35',
14520             'ExtUtils::ParseXS::CountLines'=> '3.35',
14521             'ExtUtils::ParseXS::Eval'=> '3.35',
14522             'ExtUtils::ParseXS::Utilities'=> '3.35',
14523             'ExtUtils::Typemaps' => '3.35',
14524             'ExtUtils::Typemaps::Cmd'=> '3.35',
14525             'ExtUtils::Typemaps::InputMap'=> '3.35',
14526             'ExtUtils::Typemaps::OutputMap'=> '3.35',
14527             'ExtUtils::Typemaps::Type'=> '3.35',
14528             'Filter::Simple' => '0.94',
14529             'Module::CoreList' => '5.20170821',
14530             'Module::CoreList::TieHashDelta'=> '5.20170821',
14531             'Module::CoreList::Utils'=> '5.20170821',
14532             'SelfLoader' => '1.24',
14533             'Storable' => '2.64',
14534             'XS::APItest' => '0.91',
14535             'base' => '2.26',
14536             'threads' => '2.17',
14537             'utf8' => '1.20',
14538             },
14539             removed => {
14540             }
14541             },
14542             5.027004 => {
14543             delta_from => 5.027003,
14544             changed => {
14545             'B::Op_private' => '5.027004',
14546             'Config' => '5.027004',
14547             'File::Glob' => '1.30',
14548             'I18N::Langinfo' => '0.14',
14549             'Module::CoreList' => '5.20170920',
14550             'Module::CoreList::TieHashDelta'=> '5.20170920',
14551             'Module::CoreList::Utils'=> '5.20170920',
14552             'Term::ReadLine' => '1.17',
14553             'VMS::Stdio' => '2.42',
14554             'XS::APItest' => '0.92',
14555             'attributes' => '0.31',
14556             'sort' => '2.03',
14557             'threads' => '2.18',
14558             },
14559             removed => {
14560             }
14561             },
14562             5.024003 => {
14563             delta_from => 5.024002,
14564             changed => {
14565             'B::Op_private' => '5.024003',
14566             'Config' => '5.024003',
14567             'Module::CoreList' => '5.20170922_24',
14568             'Module::CoreList::TieHashDelta'=> '5.20170922_24',
14569             'Module::CoreList::Utils'=> '5.20170922_24',
14570             'POSIX' => '1.65_01',
14571             'Time::HiRes' => '1.9741',
14572             },
14573             removed => {
14574             }
14575             },
14576             5.026001 => {
14577             delta_from => 5.026000,
14578             changed => {
14579             'B::Op_private' => '5.026001',
14580             'Config' => '5.026001',
14581             'Module::CoreList' => '5.20170922_26',
14582             'Module::CoreList::TieHashDelta'=> '5.20170922_26',
14583             'Module::CoreList::Utils'=> '5.20170922_26',
14584             '_charnames' => '1.45',
14585             'base' => '2.26',
14586             'charnames' => '1.45',
14587             },
14588             removed => {
14589             }
14590             },
14591             5.027005 => {
14592             delta_from => 5.027004,
14593             changed => {
14594             'B' => '1.70',
14595             'B::Concise' => '1.002',
14596             'B::Deparse' => '1.43',
14597             'B::Op_private' => '5.027005',
14598             'B::Xref' => '1.07',
14599             'Config' => '5.027005',
14600             'Config::Perl::V' => '0.29',
14601             'Digest::SHA' => '5.98',
14602             'Encode' => '2.93',
14603             'Encode::CN::HZ' => '2.10',
14604             'Encode::JP::JIS7' => '2.08',
14605             'Encode::MIME::Header' => '2.28',
14606             'Encode::MIME::Name' => '1.03',
14607             'File::Fetch' => '0.54',
14608             'File::Path' => '2.15',
14609             'List::Util' => '1.49',
14610             'List::Util::XS' => '1.49',
14611             'Locale::Codes' => '3.54',
14612             'Locale::Codes::Constants'=> '3.54',
14613             'Locale::Codes::Country'=> '3.54',
14614             'Locale::Codes::Country_Codes'=> '3.54',
14615             'Locale::Codes::Country_Retired'=> '3.54',
14616             'Locale::Codes::Currency'=> '3.54',
14617             'Locale::Codes::Currency_Codes'=> '3.54',
14618             'Locale::Codes::Currency_Retired'=> '3.54',
14619             'Locale::Codes::LangExt'=> '3.54',
14620             'Locale::Codes::LangExt_Codes'=> '3.54',
14621             'Locale::Codes::LangExt_Retired'=> '3.54',
14622             'Locale::Codes::LangFam'=> '3.54',
14623             'Locale::Codes::LangFam_Codes'=> '3.54',
14624             'Locale::Codes::LangFam_Retired'=> '3.54',
14625             'Locale::Codes::LangVar'=> '3.54',
14626             'Locale::Codes::LangVar_Codes'=> '3.54',
14627             'Locale::Codes::LangVar_Retired'=> '3.54',
14628             'Locale::Codes::Language'=> '3.54',
14629             'Locale::Codes::Language_Codes'=> '3.54',
14630             'Locale::Codes::Language_Retired'=> '3.54',
14631             'Locale::Codes::Script' => '3.54',
14632             'Locale::Codes::Script_Codes'=> '3.54',
14633             'Locale::Codes::Script_Retired'=> '3.54',
14634             'Locale::Country' => '3.54',
14635             'Locale::Currency' => '3.54',
14636             'Locale::Language' => '3.54',
14637             'Locale::Script' => '3.54',
14638             'Math::BigFloat' => '1.999811',
14639             'Math::BigInt' => '1.999811',
14640             'Math::BigInt::Calc' => '1.999811',
14641             'Math::BigInt::CalcEmu' => '1.999811',
14642             'Math::BigInt::FastCalc'=> '0.5006',
14643             'Math::BigInt::Lib' => '1.999811',
14644             'Module::CoreList' => '5.20171020',
14645             'Module::CoreList::TieHashDelta'=> '5.20171020',
14646             'Module::CoreList::Utils'=> '5.20171020',
14647             'NEXT' => '0.67_01',
14648             'POSIX' => '1.78',
14649             'Pod::Perldoc' => '3.2801',
14650             'Scalar::Util' => '1.49',
14651             'Sub::Util' => '1.49',
14652             'Sys::Hostname' => '1.21',
14653             'Test2' => '1.302103',
14654             'Test2::API' => '1.302103',
14655             'Test2::API::Breakage' => '1.302103',
14656             'Test2::API::Context' => '1.302103',
14657             'Test2::API::Instance' => '1.302103',
14658             'Test2::API::Stack' => '1.302103',
14659             'Test2::Event' => '1.302103',
14660             'Test2::Event::Bail' => '1.302103',
14661             'Test2::Event::Diag' => '1.302103',
14662             'Test2::Event::Encoding'=> '1.302103',
14663             'Test2::Event::Exception'=> '1.302103',
14664             'Test2::Event::Fail' => '1.302103',
14665             'Test2::Event::Generic' => '1.302103',
14666             'Test2::Event::Note' => '1.302103',
14667             'Test2::Event::Ok' => '1.302103',
14668             'Test2::Event::Pass' => '1.302103',
14669             'Test2::Event::Plan' => '1.302103',
14670             'Test2::Event::Skip' => '1.302103',
14671             'Test2::Event::Subtest' => '1.302103',
14672             'Test2::Event::TAP::Version'=> '1.302103',
14673             'Test2::Event::Waiting' => '1.302103',
14674             'Test2::EventFacet' => '1.302103',
14675             'Test2::EventFacet::About'=> '1.302103',
14676             'Test2::EventFacet::Amnesty'=> '1.302103',
14677             'Test2::EventFacet::Assert'=> '1.302103',
14678             'Test2::EventFacet::Control'=> '1.302103',
14679             'Test2::EventFacet::Error'=> '1.302103',
14680             'Test2::EventFacet::Info'=> '1.302103',
14681             'Test2::EventFacet::Meta'=> '1.302103',
14682             'Test2::EventFacet::Parent'=> '1.302103',
14683             'Test2::EventFacet::Plan'=> '1.302103',
14684             'Test2::EventFacet::Trace'=> '1.302103',
14685             'Test2::Formatter' => '1.302103',
14686             'Test2::Formatter::TAP' => '1.302103',
14687             'Test2::Hub' => '1.302103',
14688             'Test2::Hub::Interceptor'=> '1.302103',
14689             'Test2::Hub::Interceptor::Terminator'=> '1.302103',
14690             'Test2::Hub::Subtest' => '1.302103',
14691             'Test2::IPC' => '1.302103',
14692             'Test2::IPC::Driver' => '1.302103',
14693             'Test2::IPC::Driver::Files'=> '1.302103',
14694             'Test2::Tools::Tiny' => '1.302103',
14695             'Test2::Util' => '1.302103',
14696             'Test2::Util::ExternalMeta'=> '1.302103',
14697             'Test2::Util::Facets2Legacy'=> '1.302103',
14698             'Test2::Util::HashBase' => '0.005',
14699             'Test2::Util::Trace' => '1.302103',
14700             'Test::Builder' => '1.302103',
14701             'Test::Builder::Formatter'=> '1.302103',
14702             'Test::Builder::IO::Scalar'=> '2.114',
14703             'Test::Builder::Module' => '1.302103',
14704             'Test::Builder::Tester' => '1.302103',
14705             'Test::Builder::Tester::Color'=> '1.302103',
14706             'Test::Builder::TodoDiag'=> '1.302103',
14707             'Test::More' => '1.302103',
14708             'Test::Simple' => '1.302103',
14709             'Test::Tester' => '1.302103',
14710             'Test::Tester::Capture' => '1.302103',
14711             'Test::Tester::CaptureRunner'=> '1.302103',
14712             'Test::Tester::Delegate'=> '1.302103',
14713             'Test::use::ok' => '1.302103',
14714             'Time::HiRes' => '1.9746',
14715             'Time::Piece' => '1.3202',
14716             'Time::Seconds' => '1.3202',
14717             'arybase' => '0.14',
14718             'encoding' => '2.21',
14719             'ok' => '1.302103',
14720             },
14721             removed => {
14722             'Test2::Event::Info' => 1,
14723             }
14724             },
14725             5.027006 => {
14726             delta_from => 5.027005,
14727             changed => {
14728             'Attribute::Handlers' => '1.01',
14729             'B' => '1.72',
14730             'B::Concise' => '1.003',
14731             'B::Deparse' => '1.45',
14732             'B::Op_private' => '5.027006',
14733             'Carp' => '1.44',
14734             'Carp::Heavy' => '1.44',
14735             'Compress::Raw::Zlib' => '2.075',
14736             'Config' => '5.027006',
14737             'Config::Extensions' => '0.02',
14738             'Cwd' => '3.70',
14739             'DynaLoader' => '1.44',
14740             'ExtUtils::CBuilder' => '0.280229',
14741             'ExtUtils::CBuilder::Platform::Unix'=> '0.280229',
14742             'ExtUtils::CBuilder::Platform::VMS'=> '0.280229',
14743             'ExtUtils::CBuilder::Platform::Windows'=> '0.280229',
14744             'ExtUtils::CBuilder::Platform::aix'=> '0.280229',
14745             'ExtUtils::CBuilder::Platform::android'=> '0.280229',
14746             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229',
14747             'ExtUtils::CBuilder::Platform::darwin'=> '0.280229',
14748             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229',
14749             'ExtUtils::CBuilder::Platform::os2'=> '0.280229',
14750             'ExtUtils::Embed' => '1.35',
14751             'ExtUtils::Miniperl' => '1.07',
14752             'ExtUtils::ParseXS' => '3.36',
14753             'ExtUtils::ParseXS::Constants'=> '3.36',
14754             'ExtUtils::ParseXS::CountLines'=> '3.36',
14755             'ExtUtils::ParseXS::Eval'=> '3.36',
14756             'ExtUtils::ParseXS::Utilities'=> '3.36',
14757             'ExtUtils::Typemaps' => '3.36',
14758             'ExtUtils::Typemaps::Cmd'=> '3.36',
14759             'ExtUtils::Typemaps::InputMap'=> '3.36',
14760             'ExtUtils::Typemaps::OutputMap'=> '3.36',
14761             'ExtUtils::Typemaps::Type'=> '3.36',
14762             'ExtUtils::XSSymSet' => '1.4',
14763             'File::Copy' => '2.33',
14764             'File::Spec' => '3.69',
14765             'File::Spec::AmigaOS' => '3.69',
14766             'File::Spec::Cygwin' => '3.69',
14767             'File::Spec::Epoc' => '3.69',
14768             'File::Spec::Functions' => '3.69',
14769             'File::Spec::Mac' => '3.69',
14770             'File::Spec::OS2' => '3.69',
14771             'File::Spec::Unix' => '3.69',
14772             'File::Spec::VMS' => '3.69',
14773             'File::Spec::Win32' => '3.69',
14774             'File::stat' => '1.08',
14775             'FileCache' => '1.10',
14776             'Filter::Simple' => '0.95',
14777             'Hash::Util::FieldHash' => '1.20',
14778             'I18N::LangTags' => '0.43',
14779             'I18N::LangTags::Detect'=> '1.07',
14780             'I18N::LangTags::List' => '0.40',
14781             'I18N::Langinfo' => '0.15',
14782             'IO::Handle' => '1.37',
14783             'IO::Select' => '1.23',
14784             'Locale::Maketext' => '1.29',
14785             'Module::CoreList' => '5.20171120',
14786             'Module::CoreList::TieHashDelta'=> '5.20171120',
14787             'Module::CoreList::Utils'=> '5.20171120',
14788             'Net::Cmd' => '3.11',
14789             'Net::Config' => '3.11',
14790             'Net::Domain' => '3.11',
14791             'Net::FTP' => '3.11',
14792             'Net::FTP::A' => '3.11',
14793             'Net::FTP::E' => '3.11',
14794             'Net::FTP::I' => '3.11',
14795             'Net::FTP::L' => '3.11',
14796             'Net::FTP::dataconn' => '3.11',
14797             'Net::NNTP' => '3.11',
14798             'Net::Netrc' => '3.11',
14799             'Net::POP3' => '3.11',
14800             'Net::Ping' => '2.62',
14801             'Net::SMTP' => '3.11',
14802             'Net::Time' => '3.11',
14803             'Net::hostent' => '1.02',
14804             'Net::netent' => '1.01',
14805             'Net::protoent' => '1.01',
14806             'Net::servent' => '1.02',
14807             'O' => '1.03',
14808             'ODBM_File' => '1.15',
14809             'Opcode' => '1.41',
14810             'POSIX' => '1.80',
14811             'Pod::Html' => '1.2203',
14812             'SelfLoader' => '1.25',
14813             'Socket' => '2.020_04',
14814             'Storable' => '2.65',
14815             'Test' => '1.31',
14816             'Test2' => '1.302111',
14817             'Test2::API' => '1.302111',
14818             'Test2::API::Breakage' => '1.302111',
14819             'Test2::API::Context' => '1.302111',
14820             'Test2::API::Instance' => '1.302111',
14821             'Test2::API::Stack' => '1.302111',
14822             'Test2::Event' => '1.302111',
14823             'Test2::Event::Bail' => '1.302111',
14824             'Test2::Event::Diag' => '1.302111',
14825             'Test2::Event::Encoding'=> '1.302111',
14826             'Test2::Event::Exception'=> '1.302111',
14827             'Test2::Event::Fail' => '1.302111',
14828             'Test2::Event::Generic' => '1.302111',
14829             'Test2::Event::Note' => '1.302111',
14830             'Test2::Event::Ok' => '1.302111',
14831             'Test2::Event::Pass' => '1.302111',
14832             'Test2::Event::Plan' => '1.302111',
14833             'Test2::Event::Skip' => '1.302111',
14834             'Test2::Event::Subtest' => '1.302111',
14835             'Test2::Event::TAP::Version'=> '1.302111',
14836             'Test2::Event::Waiting' => '1.302111',
14837             'Test2::EventFacet' => '1.302111',
14838             'Test2::EventFacet::About'=> '1.302111',
14839             'Test2::EventFacet::Amnesty'=> '1.302111',
14840             'Test2::EventFacet::Assert'=> '1.302111',
14841             'Test2::EventFacet::Control'=> '1.302111',
14842             'Test2::EventFacet::Error'=> '1.302111',
14843             'Test2::EventFacet::Info'=> '1.302111',
14844             'Test2::EventFacet::Meta'=> '1.302111',
14845             'Test2::EventFacet::Parent'=> '1.302111',
14846             'Test2::EventFacet::Plan'=> '1.302111',
14847             'Test2::EventFacet::Trace'=> '1.302111',
14848             'Test2::Formatter' => '1.302111',
14849             'Test2::Formatter::TAP' => '1.302111',
14850             'Test2::Hub' => '1.302111',
14851             'Test2::Hub::Interceptor'=> '1.302111',
14852             'Test2::Hub::Interceptor::Terminator'=> '1.302111',
14853             'Test2::Hub::Subtest' => '1.302111',
14854             'Test2::IPC' => '1.302111',
14855             'Test2::IPC::Driver' => '1.302111',
14856             'Test2::IPC::Driver::Files'=> '1.302111',
14857             'Test2::Tools::Tiny' => '1.302111',
14858             'Test2::Util' => '1.302111',
14859             'Test2::Util::ExternalMeta'=> '1.302111',
14860             'Test2::Util::Facets2Legacy'=> '1.302111',
14861             'Test2::Util::HashBase' => '1.302111',
14862             'Test2::Util::Trace' => '1.302111',
14863             'Test::Builder' => '1.302111',
14864             'Test::Builder::Formatter'=> '1.302111',
14865             'Test::Builder::Module' => '1.302111',
14866             'Test::Builder::Tester' => '1.302111',
14867             'Test::Builder::Tester::Color'=> '1.302111',
14868             'Test::Builder::TodoDiag'=> '1.302111',
14869             'Test::More' => '1.302111',
14870             'Test::Simple' => '1.302111',
14871             'Test::Tester' => '1.302111',
14872             'Test::Tester::Capture' => '1.302111',
14873             'Test::Tester::CaptureRunner'=> '1.302111',
14874             'Test::Tester::Delegate'=> '1.302111',
14875             'Test::use::ok' => '1.302111',
14876             'Tie::Array' => '1.07',
14877             'Tie::StdHandle' => '4.5',
14878             'Time::HiRes' => '1.9747',
14879             'Time::gmtime' => '1.04',
14880             'Time::localtime' => '1.03',
14881             'Unicode::Collate' => '1.23',
14882             'Unicode::Collate::CJK::Big5'=> '1.23',
14883             'Unicode::Collate::CJK::GB2312'=> '1.23',
14884             'Unicode::Collate::CJK::JISX0208'=> '1.23',
14885             'Unicode::Collate::CJK::Korean'=> '1.23',
14886             'Unicode::Collate::CJK::Pinyin'=> '1.23',
14887             'Unicode::Collate::CJK::Stroke'=> '1.23',
14888             'Unicode::Collate::CJK::Zhuyin'=> '1.23',
14889             'Unicode::Collate::Locale'=> '1.23',
14890             'Unicode::Normalize' => '1.26',
14891             'User::grent' => '1.02',
14892             'User::pwent' => '1.01',
14893             'VMS::DCLsym' => '1.09',
14894             'VMS::Stdio' => '2.44',
14895             'XS::APItest' => '0.93',
14896             'XS::Typemap' => '0.16',
14897             'XSLoader' => '0.28',
14898             'attributes' => '0.32',
14899             'base' => '2.27',
14900             'blib' => '1.07',
14901             'experimental' => '0.017',
14902             'fields' => '2.24',
14903             'ok' => '1.302111',
14904             're' => '0.36',
14905             'sort' => '2.04',
14906             'threads' => '2.19',
14907             'warnings' => '1.38',
14908             },
14909             removed => {
14910             }
14911             },
14912             5.027007 => {
14913             delta_from => 5.027006,
14914             changed => {
14915             'App::Cpan' => '1.67',
14916             'B' => '1.73',
14917             'B::Debug' => '1.26',
14918             'B::Deparse' => '1.46',
14919             'B::Op_private' => '5.027007',
14920             'CPAN' => '2.20',
14921             'CPAN::Distribution' => '2.19',
14922             'CPAN::FTP' => '5.5011',
14923             'CPAN::FirstTime' => '5.5311',
14924             'CPAN::Shell' => '5.5007',
14925             'Carp' => '1.45',
14926             'Carp::Heavy' => '1.45',
14927             'Compress::Raw::Zlib' => '2.076',
14928             'Config' => '5.027007',
14929             'Cwd' => '3.71',
14930             'Data::Dumper' => '2.169',
14931             'Devel::PPPort' => '3.37',
14932             'Digest::SHA' => '6.00',
14933             'DynaLoader' => '1.45',
14934             'ExtUtils::CBuilder' => '0.280230',
14935             'ExtUtils::CBuilder::Base'=> '0.280230',
14936             'ExtUtils::CBuilder::Platform::Unix'=> '0.280230',
14937             'ExtUtils::CBuilder::Platform::VMS'=> '0.280230',
14938             'ExtUtils::CBuilder::Platform::Windows'=> '0.280230',
14939             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230',
14940             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230',
14941             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230',
14942             'ExtUtils::CBuilder::Platform::aix'=> '0.280230',
14943             'ExtUtils::CBuilder::Platform::android'=> '0.280230',
14944             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230',
14945             'ExtUtils::CBuilder::Platform::darwin'=> '0.280230',
14946             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230',
14947             'ExtUtils::CBuilder::Platform::os2'=> '0.280230',
14948             'ExtUtils::Typemaps' => '3.37',
14949             'File::Fetch' => '0.56',
14950             'File::Spec' => '3.71',
14951             'File::Spec::AmigaOS' => '3.71',
14952             'File::Spec::Cygwin' => '3.71',
14953             'File::Spec::Epoc' => '3.71',
14954             'File::Spec::Functions' => '3.71',
14955             'File::Spec::Mac' => '3.71',
14956             'File::Spec::OS2' => '3.71',
14957             'File::Spec::Unix' => '3.71',
14958             'File::Spec::VMS' => '3.71',
14959             'File::Spec::Win32' => '3.71',
14960             'Filter::Util::Call' => '1.58',
14961             'GDBM_File' => '1.17',
14962             'JSON::PP' => '2.97000',
14963             'JSON::PP::Boolean' => '2.97000',
14964             'Locale::Codes' => '3.55',
14965             'Locale::Codes::Constants'=> '3.55',
14966             'Locale::Codes::Country'=> '3.55',
14967             'Locale::Codes::Country_Codes'=> '3.55',
14968             'Locale::Codes::Country_Retired'=> '3.55',
14969             'Locale::Codes::Currency'=> '3.55',
14970             'Locale::Codes::Currency_Codes'=> '3.55',
14971             'Locale::Codes::Currency_Retired'=> '3.55',
14972             'Locale::Codes::LangExt'=> '3.55',
14973             'Locale::Codes::LangExt_Codes'=> '3.55',
14974             'Locale::Codes::LangExt_Retired'=> '3.55',
14975             'Locale::Codes::LangFam'=> '3.55',
14976             'Locale::Codes::LangFam_Codes'=> '3.55',
14977             'Locale::Codes::LangFam_Retired'=> '3.55',
14978             'Locale::Codes::LangVar'=> '3.55',
14979             'Locale::Codes::LangVar_Codes'=> '3.55',
14980             'Locale::Codes::LangVar_Retired'=> '3.55',
14981             'Locale::Codes::Language'=> '3.55',
14982             'Locale::Codes::Language_Codes'=> '3.55',
14983             'Locale::Codes::Language_Retired'=> '3.55',
14984             'Locale::Codes::Script' => '3.55',
14985             'Locale::Codes::Script_Codes'=> '3.55',
14986             'Locale::Codes::Script_Retired'=> '3.55',
14987             'Locale::Country' => '3.55',
14988             'Locale::Currency' => '3.55',
14989             'Locale::Language' => '3.55',
14990             'Locale::Script' => '3.55',
14991             'Module::CoreList' => '5.20171220',
14992             'Module::CoreList::TieHashDelta'=> '5.20171220',
14993             'Module::CoreList::Utils'=> '5.20171220',
14994             'Opcode' => '1.42',
14995             'POSIX' => '1.81',
14996             'Pod::Functions' => '1.12',
14997             'Pod::Html' => '1.23',
14998             'Sys::Hostname' => '1.22',
14999             'Test2' => '1.302120',
15000             'Test2::API' => '1.302120',
15001             'Test2::API::Breakage' => '1.302120',
15002             'Test2::API::Context' => '1.302120',
15003             'Test2::API::Instance' => '1.302120',
15004             'Test2::API::Stack' => '1.302120',
15005             'Test2::Event' => '1.302120',
15006             'Test2::Event::Bail' => '1.302120',
15007             'Test2::Event::Diag' => '1.302120',
15008             'Test2::Event::Encoding'=> '1.302120',
15009             'Test2::Event::Exception'=> '1.302120',
15010             'Test2::Event::Fail' => '1.302120',
15011             'Test2::Event::Generic' => '1.302120',
15012             'Test2::Event::Note' => '1.302120',
15013             'Test2::Event::Ok' => '1.302120',
15014             'Test2::Event::Pass' => '1.302120',
15015             'Test2::Event::Plan' => '1.302120',
15016             'Test2::Event::Skip' => '1.302120',
15017             'Test2::Event::Subtest' => '1.302120',
15018             'Test2::Event::TAP::Version'=> '1.302120',
15019             'Test2::Event::Waiting' => '1.302120',
15020             'Test2::EventFacet' => '1.302120',
15021             'Test2::EventFacet::About'=> '1.302120',
15022             'Test2::EventFacet::Amnesty'=> '1.302120',
15023             'Test2::EventFacet::Assert'=> '1.302120',
15024             'Test2::EventFacet::Control'=> '1.302120',
15025             'Test2::EventFacet::Error'=> '1.302120',
15026             'Test2::EventFacet::Info'=> '1.302120',
15027             'Test2::EventFacet::Meta'=> '1.302120',
15028             'Test2::EventFacet::Parent'=> '1.302120',
15029             'Test2::EventFacet::Plan'=> '1.302120',
15030             'Test2::EventFacet::Trace'=> '1.302120',
15031             'Test2::Formatter' => '1.302120',
15032             'Test2::Formatter::TAP' => '1.302120',
15033             'Test2::Hub' => '1.302120',
15034             'Test2::Hub::Interceptor'=> '1.302120',
15035             'Test2::Hub::Interceptor::Terminator'=> '1.302120',
15036             'Test2::Hub::Subtest' => '1.302120',
15037             'Test2::IPC' => '1.302120',
15038             'Test2::IPC::Driver' => '1.302120',
15039             'Test2::IPC::Driver::Files'=> '1.302120',
15040             'Test2::Tools::Tiny' => '1.302120',
15041             'Test2::Util' => '1.302120',
15042             'Test2::Util::ExternalMeta'=> '1.302120',
15043             'Test2::Util::Facets2Legacy'=> '1.302120',
15044             'Test2::Util::HashBase' => '1.302120',
15045             'Test2::Util::Trace' => '1.302120',
15046             'Test::Builder' => '1.302120',
15047             'Test::Builder::Formatter'=> '1.302120',
15048             'Test::Builder::Module' => '1.302120',
15049             'Test::Builder::Tester' => '1.302120',
15050             'Test::Builder::Tester::Color'=> '1.302120',
15051             'Test::Builder::TodoDiag'=> '1.302120',
15052             'Test::More' => '1.302120',
15053             'Test::Simple' => '1.302120',
15054             'Test::Tester' => '1.302120',
15055             'Test::Tester::Capture' => '1.302120',
15056             'Test::Tester::CaptureRunner'=> '1.302120',
15057             'Test::Tester::Delegate'=> '1.302120',
15058             'Test::use::ok' => '1.302120',
15059             'Time::HiRes' => '1.9748',
15060             'Time::Piece' => '1.3203',
15061             'Time::Seconds' => '1.3203',
15062             'Unicode::Collate' => '1.25',
15063             'Unicode::Collate::CJK::Big5'=> '1.25',
15064             'Unicode::Collate::CJK::GB2312'=> '1.25',
15065             'Unicode::Collate::CJK::JISX0208'=> '1.25',
15066             'Unicode::Collate::CJK::Korean'=> '1.25',
15067             'Unicode::Collate::CJK::Pinyin'=> '1.25',
15068             'Unicode::Collate::CJK::Stroke'=> '1.25',
15069             'Unicode::Collate::CJK::Zhuyin'=> '1.25',
15070             'Unicode::Collate::Locale'=> '1.25',
15071             'Unicode::UCD' => '0.69',
15072             'XS::APItest' => '0.94',
15073             'XSLoader' => '0.29',
15074             'arybase' => '0.15',
15075             'autodie::exception' => '2.29001',
15076             'autodie::hints' => '2.29001',
15077             'experimental' => '0.019',
15078             'feature' => '1.50',
15079             'ok' => '1.302120',
15080             'overload' => '1.29',
15081             'threads' => '2.21',
15082             'threads::shared' => '1.58',
15083             'warnings' => '1.39',
15084             },
15085             removed => {
15086             }
15087             },
15088             5.027008 => {
15089             delta_from => 5.027007,
15090             changed => {
15091             'B' => '1.74',
15092             'B::Deparse' => '1.47',
15093             'B::Op_private' => '5.027008',
15094             'Config' => '5.027008',
15095             'Cwd' => '3.72',
15096             'Data::Dumper' => '2.170',
15097             'Devel::PPPort' => '3.38',
15098             'Digest::SHA' => '6.01',
15099             'Encode' => '2.94',
15100             'Encode::Alias' => '2.24',
15101             'ExtUtils::Miniperl' => '1.08',
15102             'File::Spec' => '3.72',
15103             'File::Spec::AmigaOS' => '3.72',
15104             'File::Spec::Cygwin' => '3.72',
15105             'File::Spec::Epoc' => '3.72',
15106             'File::Spec::Functions' => '3.72',
15107             'File::Spec::Mac' => '3.72',
15108             'File::Spec::OS2' => '3.72',
15109             'File::Spec::Unix' => '3.72',
15110             'File::Spec::VMS' => '3.72',
15111             'File::Spec::Win32' => '3.72',
15112             'JSON::PP' => '2.97001',
15113             'JSON::PP::Boolean' => '2.97001',
15114             'Module::CoreList' => '5.20180120',
15115             'Module::CoreList::TieHashDelta'=> '5.20180120',
15116             'Module::CoreList::Utils'=> '5.20180120',
15117             'Opcode' => '1.43',
15118             'Pod::Functions' => '1.13',
15119             'Pod::Html' => '1.24',
15120             'Pod::Man' => '4.10',
15121             'Pod::ParseLink' => '4.10',
15122             'Pod::Text' => '4.10',
15123             'Pod::Text::Color' => '4.10',
15124             'Pod::Text::Overstrike' => '4.10',
15125             'Pod::Text::Termcap' => '4.10',
15126             'Socket' => '2.027',
15127             'Time::HiRes' => '1.9752',
15128             'Unicode::UCD' => '0.70',
15129             'XS::APItest' => '0.95',
15130             'XSLoader' => '0.30',
15131             'autodie::exception' => '2.29002',
15132             'feature' => '1.51',
15133             'overload' => '1.30',
15134             'utf8' => '1.21',
15135             'warnings' => '1.40',
15136             },
15137             removed => {
15138             }
15139             },
15140             5.027009 => {
15141             delta_from => 5.027008,
15142             changed => {
15143             'B::Op_private' => '5.027009',
15144             'Carp' => '1.46',
15145             'Carp::Heavy' => '1.46',
15146             'Config' => '5.027009',
15147             'Cwd' => '3.74',
15148             'Devel::PPPort' => '3.39',
15149             'Encode' => '2.96',
15150             'Encode::Unicode' => '2.17',
15151             'Errno' => '1.29',
15152             'ExtUtils::Command' => '7.32',
15153             'ExtUtils::Command::MM' => '7.32',
15154             'ExtUtils::Liblist' => '7.32',
15155             'ExtUtils::Liblist::Kid'=> '7.32',
15156             'ExtUtils::MM' => '7.32',
15157             'ExtUtils::MM_AIX' => '7.32',
15158             'ExtUtils::MM_Any' => '7.32',
15159             'ExtUtils::MM_BeOS' => '7.32',
15160             'ExtUtils::MM_Cygwin' => '7.32',
15161             'ExtUtils::MM_DOS' => '7.32',
15162             'ExtUtils::MM_Darwin' => '7.32',
15163             'ExtUtils::MM_MacOS' => '7.32',
15164             'ExtUtils::MM_NW5' => '7.32',
15165             'ExtUtils::MM_OS2' => '7.32',
15166             'ExtUtils::MM_QNX' => '7.32',
15167             'ExtUtils::MM_UWIN' => '7.32',
15168             'ExtUtils::MM_Unix' => '7.32',
15169             'ExtUtils::MM_VMS' => '7.32',
15170             'ExtUtils::MM_VOS' => '7.32',
15171             'ExtUtils::MM_Win32' => '7.32',
15172             'ExtUtils::MM_Win95' => '7.32',
15173             'ExtUtils::MY' => '7.32',
15174             'ExtUtils::MakeMaker' => '7.32',
15175             'ExtUtils::MakeMaker::Config'=> '7.32',
15176             'ExtUtils::MakeMaker::Locale'=> '7.32',
15177             'ExtUtils::MakeMaker::version'=> '7.32',
15178             'ExtUtils::MakeMaker::version::regex'=> '7.32',
15179             'ExtUtils::Mkbootstrap' => '7.32',
15180             'ExtUtils::Mksymlists' => '7.32',
15181             'ExtUtils::ParseXS' => '3.38',
15182             'ExtUtils::ParseXS::Constants'=> '3.38',
15183             'ExtUtils::ParseXS::CountLines'=> '3.38',
15184             'ExtUtils::ParseXS::Eval'=> '3.38',
15185             'ExtUtils::ParseXS::Utilities'=> '3.38',
15186             'ExtUtils::Typemaps' => '3.38',
15187             'ExtUtils::Typemaps::Cmd'=> '3.38',
15188             'ExtUtils::Typemaps::InputMap'=> '3.38',
15189             'ExtUtils::Typemaps::OutputMap'=> '3.38',
15190             'ExtUtils::Typemaps::Type'=> '3.38',
15191             'ExtUtils::testlib' => '7.32',
15192             'File::Spec' => '3.74',
15193             'File::Spec::AmigaOS' => '3.74',
15194             'File::Spec::Cygwin' => '3.74',
15195             'File::Spec::Epoc' => '3.74',
15196             'File::Spec::Functions' => '3.74',
15197             'File::Spec::Mac' => '3.74',
15198             'File::Spec::OS2' => '3.74',
15199             'File::Spec::Unix' => '3.74',
15200             'File::Spec::VMS' => '3.74',
15201             'File::Spec::Win32' => '3.74',
15202             'IPC::Cmd' => '1.00',
15203             'Math::BigFloat::Trace' => '0.49',
15204             'Math::BigInt::Trace' => '0.49',
15205             'Module::CoreList' => '5.20180220',
15206             'Module::CoreList::Utils'=> '5.20180220',
15207             'POSIX' => '1.82',
15208             'PerlIO::encoding' => '0.26',
15209             'Storable' => '3.06',
15210             'Storable::Limit' => undef,
15211             'Test2' => '1.302122',
15212             'Test2::API' => '1.302122',
15213             'Test2::API::Breakage' => '1.302122',
15214             'Test2::API::Context' => '1.302122',
15215             'Test2::API::Instance' => '1.302122',
15216             'Test2::API::Stack' => '1.302122',
15217             'Test2::Event' => '1.302122',
15218             'Test2::Event::Bail' => '1.302122',
15219             'Test2::Event::Diag' => '1.302122',
15220             'Test2::Event::Encoding'=> '1.302122',
15221             'Test2::Event::Exception'=> '1.302122',
15222             'Test2::Event::Fail' => '1.302122',
15223             'Test2::Event::Generic' => '1.302122',
15224             'Test2::Event::Note' => '1.302122',
15225             'Test2::Event::Ok' => '1.302122',
15226             'Test2::Event::Pass' => '1.302122',
15227             'Test2::Event::Plan' => '1.302122',
15228             'Test2::Event::Skip' => '1.302122',
15229             'Test2::Event::Subtest' => '1.302122',
15230             'Test2::Event::TAP::Version'=> '1.302122',
15231             'Test2::Event::Waiting' => '1.302122',
15232             'Test2::EventFacet' => '1.302122',
15233             'Test2::EventFacet::About'=> '1.302122',
15234             'Test2::EventFacet::Amnesty'=> '1.302122',
15235             'Test2::EventFacet::Assert'=> '1.302122',
15236             'Test2::EventFacet::Control'=> '1.302122',
15237             'Test2::EventFacet::Error'=> '1.302122',
15238             'Test2::EventFacet::Info'=> '1.302122',
15239             'Test2::EventFacet::Meta'=> '1.302122',
15240             'Test2::EventFacet::Parent'=> '1.302122',
15241             'Test2::EventFacet::Plan'=> '1.302122',
15242             'Test2::EventFacet::Render'=> '1.302122',
15243             'Test2::EventFacet::Trace'=> '1.302122',
15244             'Test2::Formatter' => '1.302122',
15245             'Test2::Formatter::TAP' => '1.302122',
15246             'Test2::Hub' => '1.302122',
15247             'Test2::Hub::Interceptor'=> '1.302122',
15248             'Test2::Hub::Interceptor::Terminator'=> '1.302122',
15249             'Test2::Hub::Subtest' => '1.302122',
15250             'Test2::IPC' => '1.302122',
15251             'Test2::IPC::Driver' => '1.302122',
15252             'Test2::IPC::Driver::Files'=> '1.302122',
15253             'Test2::Tools::Tiny' => '1.302122',
15254             'Test2::Util' => '1.302122',
15255             'Test2::Util::ExternalMeta'=> '1.302122',
15256             'Test2::Util::Facets2Legacy'=> '1.302122',
15257             'Test2::Util::HashBase' => '1.302122',
15258             'Test2::Util::Trace' => '1.302122',
15259             'Test::Builder' => '1.302122',
15260             'Test::Builder::Formatter'=> '1.302122',
15261             'Test::Builder::Module' => '1.302122',
15262             'Test::Builder::Tester' => '1.302122',
15263             'Test::Builder::Tester::Color'=> '1.302122',
15264             'Test::Builder::TodoDiag'=> '1.302122',
15265             'Test::More' => '1.302122',
15266             'Test::Simple' => '1.302122',
15267             'Test::Tester' => '1.302122',
15268             'Test::Tester::Capture' => '1.302122',
15269             'Test::Tester::CaptureRunner'=> '1.302122',
15270             'Test::Tester::Delegate'=> '1.302122',
15271             'Test::use::ok' => '1.302122',
15272             'Time::HiRes' => '1.9753',
15273             'XS::APItest' => '0.96',
15274             'bigint' => '0.49',
15275             'bignum' => '0.49',
15276             'bigrat' => '0.49',
15277             'encoding' => '2.22',
15278             'if' => '0.0608',
15279             'mro' => '1.22',
15280             'ok' => '1.302122',
15281             'threads' => '2.22',
15282             'warnings' => '1.41',
15283             },
15284             removed => {
15285             'Module::CoreList::TieHashDelta'=> 1,
15286             }
15287             },
15288             5.027010 => {
15289             delta_from => 5.027009,
15290             changed => {
15291             'App::Prove' => '3.42',
15292             'App::Prove::State' => '3.42',
15293             'App::Prove::State::Result'=> '3.42',
15294             'App::Prove::State::Result::Test'=> '3.42',
15295             'B::Deparse' => '1.48',
15296             'B::Op_private' => '5.027010',
15297             'Carp' => '1.49',
15298             'Carp::Heavy' => '1.49',
15299             'Config' => '5.02701',
15300             'Encode' => '2.97',
15301             'ExtUtils::Command' => '7.34',
15302             'ExtUtils::Command::MM' => '7.34',
15303             'ExtUtils::Liblist' => '7.34',
15304             'ExtUtils::Liblist::Kid'=> '7.34',
15305             'ExtUtils::MM' => '7.34',
15306             'ExtUtils::MM_AIX' => '7.34',
15307             'ExtUtils::MM_Any' => '7.34',
15308             'ExtUtils::MM_BeOS' => '7.34',
15309             'ExtUtils::MM_Cygwin' => '7.34',
15310             'ExtUtils::MM_DOS' => '7.34',
15311             'ExtUtils::MM_Darwin' => '7.34',
15312             'ExtUtils::MM_MacOS' => '7.34',
15313             'ExtUtils::MM_NW5' => '7.34',
15314             'ExtUtils::MM_OS2' => '7.34',
15315             'ExtUtils::MM_QNX' => '7.34',
15316             'ExtUtils::MM_UWIN' => '7.34',
15317             'ExtUtils::MM_Unix' => '7.34',
15318             'ExtUtils::MM_VMS' => '7.34',
15319             'ExtUtils::MM_VOS' => '7.34',
15320             'ExtUtils::MM_Win32' => '7.34',
15321             'ExtUtils::MM_Win95' => '7.34',
15322             'ExtUtils::MY' => '7.34',
15323             'ExtUtils::MakeMaker' => '7.34',
15324             'ExtUtils::MakeMaker::Config'=> '7.34',
15325             'ExtUtils::MakeMaker::Locale'=> '7.34',
15326             'ExtUtils::MakeMaker::version'=> '7.34',
15327             'ExtUtils::MakeMaker::version::regex'=> '7.34',
15328             'ExtUtils::Mkbootstrap' => '7.34',
15329             'ExtUtils::Mksymlists' => '7.34',
15330             'ExtUtils::ParseXS' => '3.39',
15331             'ExtUtils::ParseXS::Constants'=> '3.39',
15332             'ExtUtils::ParseXS::CountLines'=> '3.39',
15333             'ExtUtils::ParseXS::Eval'=> '3.39',
15334             'ExtUtils::ParseXS::Utilities'=> '3.39',
15335             'ExtUtils::testlib' => '7.34',
15336             'File::Glob' => '1.31',
15337             'I18N::Langinfo' => '0.16',
15338             'List::Util' => '1.50',
15339             'List::Util::XS' => '1.50',
15340             'Locale::Codes' => '3.56',
15341             'Locale::Codes::Constants'=> '3.56',
15342             'Locale::Codes::Country'=> '3.56',
15343             'Locale::Codes::Country_Codes'=> '3.56',
15344             'Locale::Codes::Country_Retired'=> '3.56',
15345             'Locale::Codes::Currency'=> '3.56',
15346             'Locale::Codes::Currency_Codes'=> '3.56',
15347             'Locale::Codes::Currency_Retired'=> '3.56',
15348             'Locale::Codes::LangExt'=> '3.56',
15349             'Locale::Codes::LangExt_Codes'=> '3.56',
15350             'Locale::Codes::LangExt_Retired'=> '3.56',
15351             'Locale::Codes::LangFam'=> '3.56',
15352             'Locale::Codes::LangFam_Codes'=> '3.56',
15353             'Locale::Codes::LangFam_Retired'=> '3.56',
15354             'Locale::Codes::LangVar'=> '3.56',
15355             'Locale::Codes::LangVar_Codes'=> '3.56',
15356             'Locale::Codes::LangVar_Retired'=> '3.56',
15357             'Locale::Codes::Language'=> '3.56',
15358             'Locale::Codes::Language_Codes'=> '3.56',
15359             'Locale::Codes::Language_Retired'=> '3.56',
15360             'Locale::Codes::Script' => '3.56',
15361             'Locale::Codes::Script_Codes'=> '3.56',
15362             'Locale::Codes::Script_Retired'=> '3.56',
15363             'Locale::Country' => '3.56',
15364             'Locale::Currency' => '3.56',
15365             'Locale::Language' => '3.56',
15366             'Locale::Script' => '3.56',
15367             'Module::CoreList' => '5.20180221',
15368             'Module::CoreList::Utils'=> '5.20180221',
15369             'POSIX' => '1.83',
15370             'Scalar::Util' => '1.50',
15371             'Sub::Util' => '1.50',
15372             'TAP::Base' => '3.42',
15373             'TAP::Formatter::Base' => '3.42',
15374             'TAP::Formatter::Color' => '3.42',
15375             'TAP::Formatter::Console'=> '3.42',
15376             'TAP::Formatter::Console::ParallelSession'=> '3.42',
15377             'TAP::Formatter::Console::Session'=> '3.42',
15378             'TAP::Formatter::File' => '3.42',
15379             'TAP::Formatter::File::Session'=> '3.42',
15380             'TAP::Formatter::Session'=> '3.42',
15381             'TAP::Harness' => '3.42',
15382             'TAP::Harness::Env' => '3.42',
15383             'TAP::Object' => '3.42',
15384             'TAP::Parser' => '3.42',
15385             'TAP::Parser::Aggregator'=> '3.42',
15386             'TAP::Parser::Grammar' => '3.42',
15387             'TAP::Parser::Iterator' => '3.42',
15388             'TAP::Parser::Iterator::Array'=> '3.42',
15389             'TAP::Parser::Iterator::Process'=> '3.42',
15390             'TAP::Parser::Iterator::Stream'=> '3.42',
15391             'TAP::Parser::IteratorFactory'=> '3.42',
15392             'TAP::Parser::Multiplexer'=> '3.42',
15393             'TAP::Parser::Result' => '3.42',
15394             'TAP::Parser::Result::Bailout'=> '3.42',
15395             'TAP::Parser::Result::Comment'=> '3.42',
15396             'TAP::Parser::Result::Plan'=> '3.42',
15397             'TAP::Parser::Result::Pragma'=> '3.42',
15398             'TAP::Parser::Result::Test'=> '3.42',
15399             'TAP::Parser::Result::Unknown'=> '3.42',
15400             'TAP::Parser::Result::Version'=> '3.42',
15401             'TAP::Parser::Result::YAML'=> '3.42',
15402             'TAP::Parser::ResultFactory'=> '3.42',
15403             'TAP::Parser::Scheduler'=> '3.42',
15404             'TAP::Parser::Scheduler::Job'=> '3.42',
15405             'TAP::Parser::Scheduler::Spinner'=> '3.42',
15406             'TAP::Parser::Source' => '3.42',
15407             'TAP::Parser::SourceHandler'=> '3.42',
15408             'TAP::Parser::SourceHandler::Executable'=> '3.42',
15409             'TAP::Parser::SourceHandler::File'=> '3.42',
15410             'TAP::Parser::SourceHandler::Handle'=> '3.42',
15411             'TAP::Parser::SourceHandler::Perl'=> '3.42',
15412             'TAP::Parser::SourceHandler::RawTAP'=> '3.42',
15413             'TAP::Parser::YAMLish::Reader'=> '3.42',
15414             'TAP::Parser::YAMLish::Writer'=> '3.42',
15415             'Test2' => '1.302133',
15416             'Test2::API' => '1.302133',
15417             'Test2::API::Breakage' => '1.302133',
15418             'Test2::API::Context' => '1.302133',
15419             'Test2::API::Instance' => '1.302133',
15420             'Test2::API::Stack' => '1.302133',
15421             'Test2::Event' => '1.302133',
15422             'Test2::Event::Bail' => '1.302133',
15423             'Test2::Event::Diag' => '1.302133',
15424             'Test2::Event::Encoding'=> '1.302133',
15425             'Test2::Event::Exception'=> '1.302133',
15426             'Test2::Event::Fail' => '1.302133',
15427             'Test2::Event::Generic' => '1.302133',
15428             'Test2::Event::Note' => '1.302133',
15429             'Test2::Event::Ok' => '1.302133',
15430             'Test2::Event::Pass' => '1.302133',
15431             'Test2::Event::Plan' => '1.302133',
15432             'Test2::Event::Skip' => '1.302133',
15433             'Test2::Event::Subtest' => '1.302133',
15434             'Test2::Event::TAP::Version'=> '1.302133',
15435             'Test2::Event::V2' => '1.302133',
15436             'Test2::Event::Waiting' => '1.302133',
15437             'Test2::EventFacet' => '1.302133',
15438             'Test2::EventFacet::About'=> '1.302133',
15439             'Test2::EventFacet::Amnesty'=> '1.302133',
15440             'Test2::EventFacet::Assert'=> '1.302133',
15441             'Test2::EventFacet::Control'=> '1.302133',
15442             'Test2::EventFacet::Error'=> '1.302133',
15443             'Test2::EventFacet::Hub'=> '1.302133',
15444             'Test2::EventFacet::Info'=> '1.302133',
15445             'Test2::EventFacet::Meta'=> '1.302133',
15446             'Test2::EventFacet::Parent'=> '1.302133',
15447             'Test2::EventFacet::Plan'=> '1.302133',
15448             'Test2::EventFacet::Render'=> '1.302133',
15449             'Test2::EventFacet::Trace'=> '1.302133',
15450             'Test2::Formatter' => '1.302133',
15451             'Test2::Formatter::TAP' => '1.302133',
15452             'Test2::Hub' => '1.302133',
15453             'Test2::Hub::Interceptor'=> '1.302133',
15454             'Test2::Hub::Interceptor::Terminator'=> '1.302133',
15455             'Test2::Hub::Subtest' => '1.302133',
15456             'Test2::IPC' => '1.302133',
15457             'Test2::IPC::Driver' => '1.302133',
15458             'Test2::IPC::Driver::Files'=> '1.302133',
15459             'Test2::Tools::Tiny' => '1.302133',
15460             'Test2::Util' => '1.302133',
15461             'Test2::Util::ExternalMeta'=> '1.302133',
15462             'Test2::Util::Facets2Legacy'=> '1.302133',
15463             'Test2::Util::HashBase' => '1.302133',
15464             'Test2::Util::Trace' => '1.302133',
15465             'Test::Builder' => '1.302133',
15466             'Test::Builder::Formatter'=> '1.302133',
15467             'Test::Builder::Module' => '1.302133',
15468             'Test::Builder::Tester' => '1.302133',
15469             'Test::Builder::Tester::Color'=> '1.302133',
15470             'Test::Builder::TodoDiag'=> '1.302133',
15471             'Test::Harness' => '3.42',
15472             'Test::More' => '1.302133',
15473             'Test::Simple' => '1.302133',
15474             'Test::Tester' => '1.302133',
15475             'Test::Tester::Capture' => '1.302133',
15476             'Test::Tester::CaptureRunner'=> '1.302133',
15477             'Test::Tester::Delegate'=> '1.302133',
15478             'Test::use::ok' => '1.302133',
15479             'Time::HiRes' => '1.9757',
15480             'Time::Piece' => '1.3204',
15481             'Time::Seconds' => '1.3204',
15482             'attributes' => '0.33',
15483             'ok' => '1.302133',
15484             'warnings' => '1.42',
15485             },
15486             removed => {
15487             }
15488             },
15489             5.024004 => {
15490             delta_from => 5.024003,
15491             changed => {
15492             'B::Op_private' => '5.024004',
15493             'Config' => '5.024004',
15494             'Module::CoreList' => '5.20180414_24',
15495             'Module::CoreList::TieHashDelta'=> '5.20180414_24',
15496             'Module::CoreList::Utils'=> '5.20180414_24',
15497             },
15498             removed => {
15499             }
15500             },
15501             5.026002 => {
15502             delta_from => 5.026001,
15503             changed => {
15504             'B::Op_private' => '5.026002',
15505             'Config' => '5.026002',
15506             'Module::CoreList' => '5.20180414_26',
15507             'Module::CoreList::TieHashDelta'=> '5.20180414_26',
15508             'Module::CoreList::Utils'=> '5.20180414_26',
15509             'PerlIO::via' => '0.17',
15510             'Term::ReadLine' => '1.17',
15511             'Unicode::UCD' => '0.69',
15512             },
15513             removed => {
15514             }
15515             },
15516             5.027011 => {
15517             delta_from => 5.027010,
15518             changed => {
15519             'B::Op_private' => '5.027011',
15520             'Carp' => '1.50',
15521             'Carp::Heavy' => '1.50',
15522             'Config' => '5.027011',
15523             'Devel::PPPort' => '3.40',
15524             'Exporter' => '5.73',
15525             'Exporter::Heavy' => '5.73',
15526             'ExtUtils::Constant' => '0.25',
15527             'I18N::Langinfo' => '0.17',
15528             'IO' => '1.39',
15529             'IO::Dir' => '1.39',
15530             'IO::File' => '1.39',
15531             'IO::Handle' => '1.39',
15532             'IO::Pipe' => '1.39',
15533             'IO::Poll' => '1.39',
15534             'IO::Seekable' => '1.39',
15535             'IO::Select' => '1.39',
15536             'IO::Socket' => '1.39',
15537             'IO::Socket::INET' => '1.39',
15538             'IO::Socket::UNIX' => '1.39',
15539             'Module::CoreList' => '5.20180420',
15540             'Module::CoreList::Utils'=> '5.20180420',
15541             'POSIX' => '1.84',
15542             'Time::HiRes' => '1.9759',
15543             'XS::APItest' => '0.97',
15544             'bytes' => '1.06',
15545             'subs' => '1.03',
15546             'vars' => '1.04',
15547             'version' => '0.9923',
15548             'version::regex' => '0.9923',
15549             },
15550             removed => {
15551             }
15552             },
15553             5.028000 => {
15554             delta_from => 5.027011,
15555             changed => {
15556             'Archive::Tar' => '2.30',
15557             'Archive::Tar::Constant'=> '2.30',
15558             'Archive::Tar::File' => '2.30',
15559             'B::Op_private' => '5.028000',
15560             'Config' => '5.028',
15561             'Module::CoreList' => '5.20180622',
15562             'Module::CoreList::Utils'=> '5.20180622',
15563             'Storable' => '3.08',
15564             'XS::APItest' => '0.98',
15565             'feature' => '1.52',
15566             },
15567             removed => {
15568             }
15569             },
15570             5.029000 => {
15571             delta_from => 5.028,
15572             changed => {
15573             'B::Op_private' => '5.029000',
15574             'Config' => '5.029',
15575             'Module::CoreList' => '5.20180626',
15576             'Module::CoreList::Utils'=> '5.20180626',
15577             'Unicode::UCD' => '0.71',
15578             'XS::APItest' => '0.99',
15579             'feature' => '1.53',
15580             },
15581             removed => {
15582             }
15583             },
15584             5.029001 => {
15585             delta_from => 5.029000,
15586             changed => {
15587             'B::Op_private' => '5.029001',
15588             'Compress::Raw::Bzip2' => '2.081',
15589             'Compress::Raw::Zlib' => '2.081',
15590             'Compress::Zlib' => '2.081',
15591             'Config' => '5.029001',
15592             'Config::Perl::V' => '0.30',
15593             'DB_File' => '1.842',
15594             'Devel::PPPort' => '3.42',
15595             'Digest::SHA' => '6.02',
15596             'ExtUtils::Manifest' => '1.71',
15597             'File::GlobMapper' => '1.001',
15598             'File::Temp' => '0.2308',
15599             'IO::Compress::Adapter::Bzip2'=> '2.081',
15600             'IO::Compress::Adapter::Deflate'=> '2.081',
15601             'IO::Compress::Adapter::Identity'=> '2.081',
15602             'IO::Compress::Base' => '2.081',
15603             'IO::Compress::Base::Common'=> '2.081',
15604             'IO::Compress::Bzip2' => '2.081',
15605             'IO::Compress::Deflate' => '2.081',
15606             'IO::Compress::Gzip' => '2.081',
15607             'IO::Compress::Gzip::Constants'=> '2.081',
15608             'IO::Compress::RawDeflate'=> '2.081',
15609             'IO::Compress::Zip' => '2.081',
15610             'IO::Compress::Zip::Constants'=> '2.081',
15611             'IO::Compress::Zlib::Constants'=> '2.081',
15612             'IO::Compress::Zlib::Extra'=> '2.081',
15613             'IO::Uncompress::Adapter::Bunzip2'=> '2.081',
15614             'IO::Uncompress::Adapter::Identity'=> '2.081',
15615             'IO::Uncompress::Adapter::Inflate'=> '2.081',
15616             'IO::Uncompress::AnyInflate'=> '2.081',
15617             'IO::Uncompress::AnyUncompress'=> '2.081',
15618             'IO::Uncompress::Base' => '2.081',
15619             'IO::Uncompress::Bunzip2'=> '2.081',
15620             'IO::Uncompress::Gunzip'=> '2.081',
15621             'IO::Uncompress::Inflate'=> '2.081',
15622             'IO::Uncompress::RawInflate'=> '2.081',
15623             'IO::Uncompress::Unzip' => '2.081',
15624             'IPC::Cmd' => '1.02',
15625             'Locale::Codes' => '3.57',
15626             'Locale::Codes::Constants'=> '3.57',
15627             'Locale::Codes::Country'=> '3.57',
15628             'Locale::Codes::Country_Codes'=> '3.57',
15629             'Locale::Codes::Country_Retired'=> '3.57',
15630             'Locale::Codes::Currency'=> '3.57',
15631             'Locale::Codes::Currency_Codes'=> '3.57',
15632             'Locale::Codes::Currency_Retired'=> '3.57',
15633             'Locale::Codes::LangExt'=> '3.57',
15634             'Locale::Codes::LangExt_Codes'=> '3.57',
15635             'Locale::Codes::LangExt_Retired'=> '3.57',
15636             'Locale::Codes::LangFam'=> '3.57',
15637             'Locale::Codes::LangFam_Codes'=> '3.57',
15638             'Locale::Codes::LangFam_Retired'=> '3.57',
15639             'Locale::Codes::LangVar'=> '3.57',
15640             'Locale::Codes::LangVar_Codes'=> '3.57',
15641             'Locale::Codes::LangVar_Retired'=> '3.57',
15642             'Locale::Codes::Language'=> '3.57',
15643             'Locale::Codes::Language_Codes'=> '3.57',
15644             'Locale::Codes::Language_Retired'=> '3.57',
15645             'Locale::Codes::Script' => '3.57',
15646             'Locale::Codes::Script_Codes'=> '3.57',
15647             'Locale::Codes::Script_Retired'=> '3.57',
15648             'Locale::Country' => '3.57',
15649             'Locale::Currency' => '3.57',
15650             'Locale::Language' => '3.57',
15651             'Locale::Script' => '3.57',
15652             'Math::BigFloat' => '1.999813',
15653             'Math::BigFloat::Trace' => '0.50',
15654             'Math::BigInt' => '1.999813',
15655             'Math::BigInt::Calc' => '1.999813',
15656             'Math::BigInt::CalcEmu' => '1.999813',
15657             'Math::BigInt::FastCalc'=> '0.5007',
15658             'Math::BigInt::Lib' => '1.999813',
15659             'Math::BigInt::Trace' => '0.50',
15660             'Math::BigRat' => '0.2614',
15661             'Module::CoreList' => '5.20180720',
15662             'Module::CoreList::Utils'=> '5.20180720',
15663             'Pod::Man' => '4.11',
15664             'Pod::ParseLink' => '4.11',
15665             'Pod::Text' => '4.11',
15666             'Pod::Text::Color' => '4.11',
15667             'Pod::Text::Overstrike' => '4.11',
15668             'Pod::Text::Termcap' => '4.11',
15669             'Storable' => '3.11',
15670             'Test2' => '1.302138',
15671             'Test2::API' => '1.302138',
15672             'Test2::API::Breakage' => '1.302138',
15673             'Test2::API::Context' => '1.302138',
15674             'Test2::API::Instance' => '1.302138',
15675             'Test2::API::Stack' => '1.302138',
15676             'Test2::Event' => '1.302138',
15677             'Test2::Event::Bail' => '1.302138',
15678             'Test2::Event::Diag' => '1.302138',
15679             'Test2::Event::Encoding'=> '1.302138',
15680             'Test2::Event::Exception'=> '1.302138',
15681             'Test2::Event::Fail' => '1.302138',
15682             'Test2::Event::Generic' => '1.302138',
15683             'Test2::Event::Note' => '1.302138',
15684             'Test2::Event::Ok' => '1.302138',
15685             'Test2::Event::Pass' => '1.302138',
15686             'Test2::Event::Plan' => '1.302138',
15687             'Test2::Event::Skip' => '1.302138',
15688             'Test2::Event::Subtest' => '1.302138',
15689             'Test2::Event::TAP::Version'=> '1.302138',
15690             'Test2::Event::V2' => '1.302138',
15691             'Test2::Event::Waiting' => '1.302138',
15692             'Test2::EventFacet' => '1.302138',
15693             'Test2::EventFacet::About'=> '1.302138',
15694             'Test2::EventFacet::Amnesty'=> '1.302138',
15695             'Test2::EventFacet::Assert'=> '1.302138',
15696             'Test2::EventFacet::Control'=> '1.302138',
15697             'Test2::EventFacet::Error'=> '1.302138',
15698             'Test2::EventFacet::Hub'=> '1.302138',
15699             'Test2::EventFacet::Info'=> '1.302138',
15700             'Test2::EventFacet::Meta'=> '1.302138',
15701             'Test2::EventFacet::Parent'=> '1.302138',
15702             'Test2::EventFacet::Plan'=> '1.302138',
15703             'Test2::EventFacet::Render'=> '1.302138',
15704             'Test2::EventFacet::Trace'=> '1.302138',
15705             'Test2::Formatter' => '1.302138',
15706             'Test2::Formatter::TAP' => '1.302138',
15707             'Test2::Hub' => '1.302138',
15708             'Test2::Hub::Interceptor'=> '1.302138',
15709             'Test2::Hub::Interceptor::Terminator'=> '1.302138',
15710             'Test2::Hub::Subtest' => '1.302138',
15711             'Test2::IPC' => '1.302138',
15712             'Test2::IPC::Driver' => '1.302138',
15713             'Test2::IPC::Driver::Files'=> '1.302138',
15714             'Test2::Tools::Tiny' => '1.302138',
15715             'Test2::Util' => '1.302138',
15716             'Test2::Util::ExternalMeta'=> '1.302138',
15717             'Test2::Util::Facets2Legacy'=> '1.302138',
15718             'Test2::Util::HashBase' => '1.302138',
15719             'Test2::Util::Trace' => '1.302138',
15720             'Test::Builder' => '1.302138',
15721             'Test::Builder::Formatter'=> '1.302138',
15722             'Test::Builder::Module' => '1.302138',
15723             'Test::Builder::Tester' => '1.302138',
15724             'Test::Builder::Tester::Color'=> '1.302138',
15725             'Test::Builder::TodoDiag'=> '1.302138',
15726             'Test::More' => '1.302138',
15727             'Test::Simple' => '1.302138',
15728             'Test::Tester' => '1.302138',
15729             'Test::Tester::Capture' => '1.302138',
15730             'Test::Tester::CaptureRunner'=> '1.302138',
15731             'Test::Tester::Delegate'=> '1.302138',
15732             'Test::use::ok' => '1.302138',
15733             'Thread::Queue' => '3.13',
15734             'Time::Local' => '1.28',
15735             'bigint' => '0.50',
15736             'bignum' => '0.50',
15737             'bigrat' => '0.50',
15738             'experimental' => '0.020',
15739             'ok' => '1.302138',
15740             'parent' => '0.237',
15741             'perlfaq' => '5.20180605',
15742             'version' => '0.9924',
15743             'version::regex' => '0.9924',
15744             },
15745             removed => {
15746             }
15747             },
15748             5.029002 => {
15749             delta_from => 5.029001,
15750             changed => {
15751             'B::Op_private' => '5.029002',
15752             'Config' => '5.029002',
15753             'Config::Extensions' => '0.03',
15754             'Cwd' => '3.75',
15755             'Data::Dumper' => '2.171',
15756             'Filter::Util::Call' => '1.59',
15757             'HTTP::Tiny' => '0.076',
15758             'Module::CoreList' => '5.20180820',
15759             'Module::CoreList::Utils'=> '5.20180820',
15760             'PerlIO::scalar' => '0.30',
15761             'Storable' => '3.12',
15762             'Test2' => '1.302140',
15763             'Test2::API' => '1.302140',
15764             'Test2::API::Breakage' => '1.302140',
15765             'Test2::API::Context' => '1.302140',
15766             'Test2::API::Instance' => '1.302140',
15767             'Test2::API::Stack' => '1.302140',
15768             'Test2::Event' => '1.302140',
15769             'Test2::Event::Bail' => '1.302140',
15770             'Test2::Event::Diag' => '1.302140',
15771             'Test2::Event::Encoding'=> '1.302140',
15772             'Test2::Event::Exception'=> '1.302140',
15773             'Test2::Event::Fail' => '1.302140',
15774             'Test2::Event::Generic' => '1.302140',
15775             'Test2::Event::Note' => '1.302140',
15776             'Test2::Event::Ok' => '1.302140',
15777             'Test2::Event::Pass' => '1.302140',
15778             'Test2::Event::Plan' => '1.302140',
15779             'Test2::Event::Skip' => '1.302140',
15780             'Test2::Event::Subtest' => '1.302140',
15781             'Test2::Event::TAP::Version'=> '1.302140',
15782             'Test2::Event::V2' => '1.302140',
15783             'Test2::Event::Waiting' => '1.302140',
15784             'Test2::EventFacet' => '1.302140',
15785             'Test2::EventFacet::About'=> '1.302140',
15786             'Test2::EventFacet::Amnesty'=> '1.302140',
15787             'Test2::EventFacet::Assert'=> '1.302140',
15788             'Test2::EventFacet::Control'=> '1.302140',
15789             'Test2::EventFacet::Error'=> '1.302140',
15790             'Test2::EventFacet::Hub'=> '1.302140',
15791             'Test2::EventFacet::Info'=> '1.302140',
15792             'Test2::EventFacet::Meta'=> '1.302140',
15793             'Test2::EventFacet::Parent'=> '1.302140',
15794             'Test2::EventFacet::Plan'=> '1.302140',
15795             'Test2::EventFacet::Render'=> '1.302140',
15796             'Test2::EventFacet::Trace'=> '1.302140',
15797             'Test2::Formatter' => '1.302140',
15798             'Test2::Formatter::TAP' => '1.302140',
15799             'Test2::Hub' => '1.302140',
15800             'Test2::Hub::Interceptor'=> '1.302140',
15801             'Test2::Hub::Interceptor::Terminator'=> '1.302140',
15802             'Test2::Hub::Subtest' => '1.302140',
15803             'Test2::IPC' => '1.302140',
15804             'Test2::IPC::Driver' => '1.302140',
15805             'Test2::IPC::Driver::Files'=> '1.302140',
15806             'Test2::Tools::Tiny' => '1.302140',
15807             'Test2::Util' => '1.302140',
15808             'Test2::Util::ExternalMeta'=> '1.302140',
15809             'Test2::Util::Facets2Legacy'=> '1.302140',
15810             'Test2::Util::HashBase' => '1.302140',
15811             'Test2::Util::Trace' => '1.302140',
15812             'Test::Builder' => '1.302140',
15813             'Test::Builder::Formatter'=> '1.302140',
15814             'Test::Builder::Module' => '1.302140',
15815             'Test::Builder::Tester' => '1.302140',
15816             'Test::Builder::Tester::Color'=> '1.302140',
15817             'Test::Builder::TodoDiag'=> '1.302140',
15818             'Test::More' => '1.302140',
15819             'Test::Simple' => '1.302140',
15820             'Test::Tester' => '1.302140',
15821             'Test::Tester::Capture' => '1.302140',
15822             'Test::Tester::CaptureRunner'=> '1.302140',
15823             'Test::Tester::Delegate'=> '1.302140',
15824             'Test::use::ok' => '1.302140',
15825             'Time::HiRes' => '1.9760',
15826             'Time::Piece' => '1.33',
15827             'Time::Seconds' => '1.33',
15828             'Unicode' => '11.0.0',
15829             'ok' => '1.302140',
15830             'warnings' => '1.43',
15831             },
15832             removed => {
15833             }
15834             },
15835             5.029003 => {
15836             delta_from => 5.029002,
15837             changed => {
15838             'Archive::Tar' => '2.32',
15839             'Archive::Tar::Constant'=> '2.32',
15840             'Archive::Tar::File' => '2.32',
15841             'B::Op_private' => '5.029003',
15842             'Config' => '5.029003',
15843             'Data::Dumper' => '2.172',
15844             'Devel::PPPort' => '3.43',
15845             'File::Path' => '2.16',
15846             'File::Spec' => '3.75',
15847             'File::Spec::AmigaOS' => '3.75',
15848             'File::Spec::Cygwin' => '3.75',
15849             'File::Spec::Epoc' => '3.75',
15850             'File::Spec::Functions' => '3.75',
15851             'File::Spec::Mac' => '3.75',
15852             'File::Spec::OS2' => '3.75',
15853             'File::Spec::Unix' => '3.75',
15854             'File::Spec::VMS' => '3.75',
15855             'File::Spec::Win32' => '3.75',
15856             'Module::CoreList' => '5.20180920',
15857             'Module::CoreList::Utils'=> '5.20180920',
15858             'POSIX' => '1.85',
15859             'Storable' => '3.13',
15860             'User::grent' => '1.03',
15861             'perlfaq' => '5.20180915',
15862             },
15863             removed => {
15864             'Locale::Codes' => 1,
15865             'Locale::Codes::Constants'=> 1,
15866             'Locale::Codes::Country'=> 1,
15867             'Locale::Codes::Country_Codes'=> 1,
15868             'Locale::Codes::Country_Retired'=> 1,
15869             'Locale::Codes::Currency'=> 1,
15870             'Locale::Codes::Currency_Codes'=> 1,
15871             'Locale::Codes::Currency_Retired'=> 1,
15872             'Locale::Codes::LangExt'=> 1,
15873             'Locale::Codes::LangExt_Codes'=> 1,
15874             'Locale::Codes::LangExt_Retired'=> 1,
15875             'Locale::Codes::LangFam'=> 1,
15876             'Locale::Codes::LangFam_Codes'=> 1,
15877             'Locale::Codes::LangFam_Retired'=> 1,
15878             'Locale::Codes::LangVar'=> 1,
15879             'Locale::Codes::LangVar_Codes'=> 1,
15880             'Locale::Codes::LangVar_Retired'=> 1,
15881             'Locale::Codes::Language'=> 1,
15882             'Locale::Codes::Language_Codes'=> 1,
15883             'Locale::Codes::Language_Retired'=> 1,
15884             'Locale::Codes::Script' => 1,
15885             'Locale::Codes::Script_Codes'=> 1,
15886             'Locale::Codes::Script_Retired'=> 1,
15887             'Locale::Country' => 1,
15888             'Locale::Currency' => 1,
15889             'Locale::Language' => 1,
15890             'Locale::Script' => 1,
15891             }
15892             },
15893             5.029004 => {
15894             delta_from => 5.029003,
15895             changed => {
15896             'App::Cpan' => '1.671',
15897             'B' => '1.75',
15898             'B::Concise' => '1.004',
15899             'B::Deparse' => '1.49',
15900             'B::Op_private' => '5.029004',
15901             'B::Terse' => '1.09',
15902             'CPAN' => '2.21',
15903             'CPAN::Distribution' => '2.21',
15904             'CPAN::Mirrors' => '2.21',
15905             'CPAN::Plugin' => '0.97',
15906             'CPAN::Shell' => '5.5008',
15907             'Config' => '5.029004',
15908             'Devel::Peek' => '1.28',
15909             'File::Copy' => '2.34',
15910             'File::Glob' => '1.32',
15911             'Math::BigFloat::Trace' => '0.51',
15912             'Math::BigInt::Trace' => '0.51',
15913             'Module::CoreList' => '5.20181020',
15914             'Module::CoreList::Utils'=> '5.20181020',
15915             'Unicode::UCD' => '0.72',
15916             'bigint' => '0.51',
15917             'bignum' => '0.51',
15918             'bigrat' => '0.51',
15919             'bytes' => '1.07',
15920             'feature' => '1.54',
15921             'sigtrap' => '1.09',
15922             'vars' => '1.05',
15923             },
15924             removed => {
15925             'B::Debug' => 1,
15926             'arybase' => 1,
15927             }
15928             },
15929             5.029005 => {
15930             delta_from => 5.029004,
15931             changed => {
15932             'B::Op_private' => '5.029005',
15933             'Config' => '5.029005',
15934             'Cwd' => '3.76',
15935             'Data::Dumper' => '2.173',
15936             'Errno' => '1.30',
15937             'File::Spec' => '3.76',
15938             'File::Spec::AmigaOS' => '3.76',
15939             'File::Spec::Cygwin' => '3.76',
15940             'File::Spec::Epoc' => '3.76',
15941             'File::Spec::Functions' => '3.76',
15942             'File::Spec::Mac' => '3.76',
15943             'File::Spec::OS2' => '3.76',
15944             'File::Spec::Unix' => '3.76',
15945             'File::Spec::VMS' => '3.76',
15946             'File::Spec::Win32' => '3.76',
15947             'GDBM_File' => '1.18',
15948             'Module::CoreList' => '5.20181120',
15949             'Module::CoreList::Utils'=> '5.20181120',
15950             'NDBM_File' => '1.15',
15951             'ODBM_File' => '1.16',
15952             'SDBM_File' => '1.15',
15953             're' => '0.37',
15954             },
15955             removed => {
15956             }
15957             },
15958             5.026003 => {
15959             delta_from => 5.026002,
15960             changed => {
15961             'Archive::Tar' => '2.24_01',
15962             'B::Op_private' => '5.026003',
15963             'Config' => '5.026003',
15964             'Module::CoreList' => '5.20181129_26',
15965             'Module::CoreList::TieHashDelta'=> '5.20181129_26',
15966             'Module::CoreList::Utils'=> '5.20181129_26',
15967             },
15968             removed => {
15969             }
15970             },
15971             5.028001 => {
15972             delta_from => 5.028,
15973             changed => {
15974             'B::Op_private' => '5.028001',
15975             'Config' => '5.028001',
15976             'Module::CoreList' => '5.20181129_28',
15977             'Module::CoreList::Utils'=> '5.20181129_28',
15978             },
15979             removed => {
15980             }
15981             },
15982             5.029006 => {
15983             delta_from => 5.029005,
15984             changed => {
15985             'B::Op_private' => '5.029006',
15986             'Config' => '5.029006',
15987             'Config::Perl::V' => '0.32',
15988             'ExtUtils::ParseXS' => '3.40',
15989             'ExtUtils::ParseXS::Constants'=> '3.40',
15990             'ExtUtils::ParseXS::CountLines'=> '3.40',
15991             'ExtUtils::ParseXS::Eval'=> '3.40',
15992             'ExtUtils::ParseXS::Utilities'=> '3.40',
15993             'File::Find' => '1.35',
15994             'Module::CoreList' => '5.20181218',
15995             'Module::CoreList::Utils'=> '5.20181218',
15996             'POSIX' => '1.86',
15997             'Storable' => '3.14',
15998             'Test2' => '1.302141',
15999             'Test2::API' => '1.302141',
16000             'Test2::API::Breakage' => '1.302141',
16001             'Test2::API::Context' => '1.302141',
16002             'Test2::API::Instance' => '1.302141',
16003             'Test2::API::Stack' => '1.302141',
16004             'Test2::Event' => '1.302141',
16005             'Test2::Event::Bail' => '1.302141',
16006             'Test2::Event::Diag' => '1.302141',
16007             'Test2::Event::Encoding'=> '1.302141',
16008             'Test2::Event::Exception'=> '1.302141',
16009             'Test2::Event::Fail' => '1.302141',
16010             'Test2::Event::Generic' => '1.302141',
16011             'Test2::Event::Note' => '1.302141',
16012             'Test2::Event::Ok' => '1.302141',
16013             'Test2::Event::Pass' => '1.302141',
16014             'Test2::Event::Plan' => '1.302141',
16015             'Test2::Event::Skip' => '1.302141',
16016             'Test2::Event::Subtest' => '1.302141',
16017             'Test2::Event::TAP::Version'=> '1.302141',
16018             'Test2::Event::V2' => '1.302141',
16019             'Test2::Event::Waiting' => '1.302141',
16020             'Test2::EventFacet' => '1.302141',
16021             'Test2::EventFacet::About'=> '1.302141',
16022             'Test2::EventFacet::Amnesty'=> '1.302141',
16023             'Test2::EventFacet::Assert'=> '1.302141',
16024             'Test2::EventFacet::Control'=> '1.302141',
16025             'Test2::EventFacet::Error'=> '1.302141',
16026             'Test2::EventFacet::Hub'=> '1.302141',
16027             'Test2::EventFacet::Info'=> '1.302141',
16028             'Test2::EventFacet::Meta'=> '1.302141',
16029             'Test2::EventFacet::Parent'=> '1.302141',
16030             'Test2::EventFacet::Plan'=> '1.302141',
16031             'Test2::EventFacet::Render'=> '1.302141',
16032             'Test2::EventFacet::Trace'=> '1.302141',
16033             'Test2::Formatter' => '1.302141',
16034             'Test2::Formatter::TAP' => '1.302141',
16035             'Test2::Hub' => '1.302141',
16036             'Test2::Hub::Interceptor'=> '1.302141',
16037             'Test2::Hub::Interceptor::Terminator'=> '1.302141',
16038             'Test2::Hub::Subtest' => '1.302141',
16039             'Test2::IPC' => '1.302141',
16040             'Test2::IPC::Driver' => '1.302141',
16041             'Test2::IPC::Driver::Files'=> '1.302141',
16042             'Test2::Tools::Tiny' => '1.302141',
16043             'Test2::Util' => '1.302141',
16044             'Test2::Util::ExternalMeta'=> '1.302141',
16045             'Test2::Util::Facets2Legacy'=> '1.302141',
16046             'Test2::Util::HashBase' => '1.302141',
16047             'Test2::Util::Trace' => '1.302141',
16048             'Test::Builder' => '1.302141',
16049             'Test::Builder::Formatter'=> '1.302141',
16050             'Test::Builder::Module' => '1.302141',
16051             'Test::Builder::Tester' => '1.302141',
16052             'Test::Builder::Tester::Color'=> '1.302141',
16053             'Test::Builder::TodoDiag'=> '1.302141',
16054             'Test::More' => '1.302141',
16055             'Test::Simple' => '1.302141',
16056             'Test::Tester' => '1.302141',
16057             'Test::Tester::Capture' => '1.302141',
16058             'Test::Tester::CaptureRunner'=> '1.302141',
16059             'Test::Tester::Delegate'=> '1.302141',
16060             'Test::use::ok' => '1.302141',
16061             'ok' => '1.302141',
16062             'threads::shared' => '1.59',
16063             },
16064             removed => {
16065             'Storable::Limit' => 1,
16066             }
16067             },
16068             5.029007 => {
16069             delta_from => 5.029006,
16070             changed => {
16071             'App::Cpan' => '1.672',
16072             'B::Op_private' => '5.029007',
16073             'CPAN' => '2.22',
16074             'CPAN::Distribution' => '2.22',
16075             'CPAN::Plugin::Specfile'=> '0.02',
16076             'Compress::Raw::Bzip2' => '2.084',
16077             'Compress::Raw::Zlib' => '2.084',
16078             'Compress::Zlib' => '2.084',
16079             'Config' => '5.029007',
16080             'Cwd' => '3.77',
16081             'DB_File' => '1.843',
16082             'File::Find' => '1.36',
16083             'File::Spec' => '3.77',
16084             'File::Spec::AmigaOS' => '3.77',
16085             'File::Spec::Cygwin' => '3.77',
16086             'File::Spec::Epoc' => '3.77',
16087             'File::Spec::Functions' => '3.77',
16088             'File::Spec::Mac' => '3.77',
16089             'File::Spec::OS2' => '3.77',
16090             'File::Spec::Unix' => '3.77',
16091             'File::Spec::VMS' => '3.77',
16092             'File::Spec::Win32' => '3.77',
16093             'File::Temp' => '0.2309',
16094             'IO::Compress::Adapter::Bzip2'=> '2.084',
16095             'IO::Compress::Adapter::Deflate'=> '2.084',
16096             'IO::Compress::Adapter::Identity'=> '2.084',
16097             'IO::Compress::Base' => '2.084',
16098             'IO::Compress::Base::Common'=> '2.084',
16099             'IO::Compress::Bzip2' => '2.084',
16100             'IO::Compress::Deflate' => '2.084',
16101             'IO::Compress::Gzip' => '2.084',
16102             'IO::Compress::Gzip::Constants'=> '2.084',
16103             'IO::Compress::RawDeflate'=> '2.084',
16104             'IO::Compress::Zip' => '2.084',
16105             'IO::Compress::Zip::Constants'=> '2.084',
16106             'IO::Compress::Zlib::Constants'=> '2.084',
16107             'IO::Compress::Zlib::Extra'=> '2.084',
16108             'IO::Uncompress::Adapter::Bunzip2'=> '2.084',
16109             'IO::Uncompress::Adapter::Identity'=> '2.084',
16110             'IO::Uncompress::Adapter::Inflate'=> '2.084',
16111             'IO::Uncompress::AnyInflate'=> '2.084',
16112             'IO::Uncompress::AnyUncompress'=> '2.084',
16113             'IO::Uncompress::Base' => '2.084',
16114             'IO::Uncompress::Bunzip2'=> '2.084',
16115             'IO::Uncompress::Gunzip'=> '2.084',
16116             'IO::Uncompress::Inflate'=> '2.084',
16117             'IO::Uncompress::RawInflate'=> '2.084',
16118             'IO::Uncompress::Unzip' => '2.084',
16119             'Math::BigFloat' => '1.999816',
16120             'Math::BigInt' => '1.999816',
16121             'Math::BigInt::Calc' => '1.999816',
16122             'Math::BigInt::FastCalc'=> '0.5008',
16123             'Math::BigInt::Lib' => '1.999816',
16124             'Module::CoreList' => '5.20190120',
16125             'Module::CoreList::Utils'=> '5.20190120',
16126             'Test2' => '1.302160',
16127             'Test2::API' => '1.302160',
16128             'Test2::API::Breakage' => '1.302160',
16129             'Test2::API::Context' => '1.302160',
16130             'Test2::API::Instance' => '1.302160',
16131             'Test2::API::Stack' => '1.302160',
16132             'Test2::Event' => '1.302160',
16133             'Test2::Event::Bail' => '1.302160',
16134             'Test2::Event::Diag' => '1.302160',
16135             'Test2::Event::Encoding'=> '1.302160',
16136             'Test2::Event::Exception'=> '1.302160',
16137             'Test2::Event::Fail' => '1.302160',
16138             'Test2::Event::Generic' => '1.302160',
16139             'Test2::Event::Note' => '1.302160',
16140             'Test2::Event::Ok' => '1.302160',
16141             'Test2::Event::Pass' => '1.302160',
16142             'Test2::Event::Plan' => '1.302160',
16143             'Test2::Event::Skip' => '1.302160',
16144             'Test2::Event::Subtest' => '1.302160',
16145             'Test2::Event::TAP::Version'=> '1.302160',
16146             'Test2::Event::V2' => '1.302160',
16147             'Test2::Event::Waiting' => '1.302160',
16148             'Test2::EventFacet' => '1.302160',
16149             'Test2::EventFacet::About'=> '1.302160',
16150             'Test2::EventFacet::Amnesty'=> '1.302160',
16151             'Test2::EventFacet::Assert'=> '1.302160',
16152             'Test2::EventFacet::Control'=> '1.302160',
16153             'Test2::EventFacet::Error'=> '1.302160',
16154             'Test2::EventFacet::Hub'=> '1.302160',
16155             'Test2::EventFacet::Info'=> '1.302160',
16156             'Test2::EventFacet::Info::Table'=> undef,
16157             'Test2::EventFacet::Meta'=> '1.302160',
16158             'Test2::EventFacet::Parent'=> '1.302160',
16159             'Test2::EventFacet::Plan'=> '1.302160',
16160             'Test2::EventFacet::Render'=> '1.302160',
16161             'Test2::EventFacet::Trace'=> '1.302160',
16162             'Test2::Formatter' => '1.302160',
16163             'Test2::Formatter::TAP' => '1.302160',
16164             'Test2::Hub' => '1.302160',
16165             'Test2::Hub::Interceptor'=> '1.302160',
16166             'Test2::Hub::Interceptor::Terminator'=> '1.302160',
16167             'Test2::Hub::Subtest' => '1.302160',
16168             'Test2::IPC' => '1.302160',
16169             'Test2::IPC::Driver' => '1.302160',
16170             'Test2::IPC::Driver::Files'=> '1.302160',
16171             'Test2::Tools::Tiny' => '1.302160',
16172             'Test2::Util' => '1.302160',
16173             'Test2::Util::ExternalMeta'=> '1.302160',
16174             'Test2::Util::Facets2Legacy'=> '1.302160',
16175             'Test2::Util::HashBase' => '1.302160',
16176             'Test2::Util::Trace' => '1.302160',
16177             'Test::Builder' => '1.302160',
16178             'Test::Builder::Formatter'=> '1.302160',
16179             'Test::Builder::Module' => '1.302160',
16180             'Test::Builder::Tester' => '1.302160',
16181             'Test::Builder::Tester::Color'=> '1.302160',
16182             'Test::Builder::TodoDiag'=> '1.302160',
16183             'Test::More' => '1.302160',
16184             'Test::Simple' => '1.302160',
16185             'Test::Tester' => '1.302160',
16186             'Test::Tester::Capture' => '1.302160',
16187             'Test::Tester::CaptureRunner'=> '1.302160',
16188             'Test::Tester::Delegate'=> '1.302160',
16189             'Test::use::ok' => '1.302160',
16190             'Unicode::Collate' => '1.27',
16191             'Unicode::Collate::CJK::Big5'=> '1.27',
16192             'Unicode::Collate::CJK::GB2312'=> '1.27',
16193             'Unicode::Collate::CJK::JISX0208'=> '1.27',
16194             'Unicode::Collate::CJK::Korean'=> '1.27',
16195             'Unicode::Collate::CJK::Pinyin'=> '1.27',
16196             'Unicode::Collate::CJK::Stroke'=> '1.27',
16197             'Unicode::Collate::CJK::Zhuyin'=> '1.27',
16198             'Unicode::Collate::Locale'=> '1.27',
16199             'lib' => '0.65',
16200             'ok' => '1.302160',
16201             },
16202             removed => {
16203             'Math::BigInt::CalcEmu' => 1,
16204             }
16205             },
16206             5.029008 => {
16207             delta_from => 5.029007,
16208             changed => {
16209             'B' => '1.76',
16210             'B::Op_private' => '5.029008',
16211             'Config' => '5.029008',
16212             'Devel::PPPort' => '3.44',
16213             'Encode' => '3.00',
16214             'Encode::Unicode' => '2.18',
16215             'ExtUtils::Miniperl' => '1.09',
16216             'IO' => '1.40',
16217             'IO::Dir' => '1.40',
16218             'IO::File' => '1.40',
16219             'IO::Handle' => '1.40',
16220             'IO::Pipe' => '1.40',
16221             'IO::Poll' => '1.40',
16222             'IO::Seekable' => '1.40',
16223             'IO::Select' => '1.40',
16224             'IO::Socket' => '1.40',
16225             'IO::Socket::INET' => '1.40',
16226             'IO::Socket::UNIX' => '1.40',
16227             'JSON::PP' => '4.00',
16228             'JSON::PP::Boolean' => '4.00',
16229             'Module::CoreList' => '5.20190220',
16230             'Module::CoreList::Utils'=> '5.20190220',
16231             'Module::Load' => '0.34',
16232             'Net::Ping' => '2.71',
16233             'POSIX' => '1.87',
16234             'Test2' => '1.302162',
16235             'Test2::API' => '1.302162',
16236             'Test2::API::Breakage' => '1.302162',
16237             'Test2::API::Context' => '1.302162',
16238             'Test2::API::Instance' => '1.302162',
16239             'Test2::API::Stack' => '1.302162',
16240             'Test2::Event' => '1.302162',
16241             'Test2::Event::Bail' => '1.302162',
16242             'Test2::Event::Diag' => '1.302162',
16243             'Test2::Event::Encoding'=> '1.302162',
16244             'Test2::Event::Exception'=> '1.302162',
16245             'Test2::Event::Fail' => '1.302162',
16246             'Test2::Event::Generic' => '1.302162',
16247             'Test2::Event::Note' => '1.302162',
16248             'Test2::Event::Ok' => '1.302162',
16249             'Test2::Event::Pass' => '1.302162',
16250             'Test2::Event::Plan' => '1.302162',
16251             'Test2::Event::Skip' => '1.302162',
16252             'Test2::Event::Subtest' => '1.302162',
16253             'Test2::Event::TAP::Version'=> '1.302162',
16254             'Test2::Event::V2' => '1.302162',
16255             'Test2::Event::Waiting' => '1.302162',
16256             'Test2::EventFacet' => '1.302162',
16257             'Test2::EventFacet::About'=> '1.302162',
16258             'Test2::EventFacet::Amnesty'=> '1.302162',
16259             'Test2::EventFacet::Assert'=> '1.302162',
16260             'Test2::EventFacet::Control'=> '1.302162',
16261             'Test2::EventFacet::Error'=> '1.302162',
16262             'Test2::EventFacet::Hub'=> '1.302162',
16263             'Test2::EventFacet::Info'=> '1.302162',
16264             'Test2::EventFacet::Meta'=> '1.302162',
16265             'Test2::EventFacet::Parent'=> '1.302162',
16266             'Test2::EventFacet::Plan'=> '1.302162',
16267             'Test2::EventFacet::Render'=> '1.302162',
16268             'Test2::EventFacet::Trace'=> '1.302162',
16269             'Test2::Formatter' => '1.302162',
16270             'Test2::Formatter::TAP' => '1.302162',
16271             'Test2::Hub' => '1.302162',
16272             'Test2::Hub::Interceptor'=> '1.302162',
16273             'Test2::Hub::Interceptor::Terminator'=> '1.302162',
16274             'Test2::Hub::Subtest' => '1.302162',
16275             'Test2::IPC' => '1.302162',
16276             'Test2::IPC::Driver' => '1.302162',
16277             'Test2::IPC::Driver::Files'=> '1.302162',
16278             'Test2::Tools::Tiny' => '1.302162',
16279             'Test2::Util' => '1.302162',
16280             'Test2::Util::ExternalMeta'=> '1.302162',
16281             'Test2::Util::Facets2Legacy'=> '1.302162',
16282             'Test2::Util::HashBase' => '1.302162',
16283             'Test2::Util::Trace' => '1.302162',
16284             'Test::Builder' => '1.302162',
16285             'Test::Builder::Formatter'=> '1.302162',
16286             'Test::Builder::Module' => '1.302162',
16287             'Test::Builder::Tester' => '1.302162',
16288             'Test::Builder::Tester::Color'=> '1.302162',
16289             'Test::Builder::TodoDiag'=> '1.302162',
16290             'Test::More' => '1.302162',
16291             'Test::Simple' => '1.302162',
16292             'Test::Tester' => '1.302162',
16293             'Test::Tester::Capture' => '1.302162',
16294             'Test::Tester::CaptureRunner'=> '1.302162',
16295             'Test::Tester::Delegate'=> '1.302162',
16296             'Test::use::ok' => '1.302162',
16297             'XS::APItest' => '1.00',
16298             'deprecate' => '0.04',
16299             'ok' => '1.302162',
16300             'perlfaq' => '5.20190126',
16301             },
16302             removed => {
16303             }
16304             },
16305             5.029009 => {
16306             delta_from => 5.029008,
16307             changed => {
16308             'B::Op_private' => '5.029009',
16309             'Config' => '5.029009',
16310             'Devel::PPPort' => '3.45',
16311             'Encode' => '3.01',
16312             'ExtUtils::Manifest' => '1.72',
16313             'JSON::PP' => '4.02',
16314             'JSON::PP::Boolean' => '4.02',
16315             'Module::CoreList' => '5.20190320',
16316             'Module::CoreList::Utils'=> '5.20190320',
16317             'PerlIO::encoding' => '0.27',
16318             'Unicode' => '12.0.0',
16319             'threads::shared' => '1.60',
16320             'utf8' => '1.22',
16321             'warnings' => '1.44',
16322             },
16323             removed => {
16324             }
16325             },
16326             5.028002 => {
16327             delta_from => 5.028001,
16328             changed => {
16329             'B::Op_private' => '5.028002',
16330             'Config' => '5.028002',
16331             'Module::CoreList' => '5.20190419',
16332             'Module::CoreList::Utils'=> '5.20190419',
16333             'PerlIO::scalar' => '0.30',
16334             'Storable' => '3.08_01',
16335             },
16336             removed => {
16337             }
16338             },
16339             5.029010 => {
16340             delta_from => 5.029009,
16341             changed => {
16342             'B::Op_private' => '5.029010',
16343             'Config' => '5.02901',
16344             'Cwd' => '3.78',
16345             'Data::Dumper' => '2.174',
16346             'ExtUtils::CBuilder' => '0.280231',
16347             'ExtUtils::CBuilder::Base'=> '0.280231',
16348             'ExtUtils::CBuilder::Platform::Unix'=> '0.280231',
16349             'ExtUtils::CBuilder::Platform::VMS'=> '0.280231',
16350             'ExtUtils::CBuilder::Platform::Windows'=> '0.280231',
16351             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280231',
16352             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280231',
16353             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280231',
16354             'ExtUtils::CBuilder::Platform::aix'=> '0.280231',
16355             'ExtUtils::CBuilder::Platform::android'=> '0.280231',
16356             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280231',
16357             'ExtUtils::CBuilder::Platform::darwin'=> '0.280231',
16358             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280231',
16359             'ExtUtils::CBuilder::Platform::os2'=> '0.280231',
16360             'File::Spec' => '3.78',
16361             'File::Spec::AmigaOS' => '3.78',
16362             'File::Spec::Cygwin' => '3.78',
16363             'File::Spec::Epoc' => '3.78',
16364             'File::Spec::Functions' => '3.78',
16365             'File::Spec::Mac' => '3.78',
16366             'File::Spec::OS2' => '3.78',
16367             'File::Spec::Unix' => '3.78',
16368             'File::Spec::VMS' => '3.78',
16369             'File::Spec::Win32' => '3.78',
16370             'I18N::Langinfo' => '0.18',
16371             'Module::CoreList' => '5.20190420',
16372             'Module::CoreList::Utils'=> '5.20190420',
16373             'Module::Metadata' => '1.000036',
16374             'POSIX' => '1.88',
16375             'Storable' => '3.15',
16376             'Unicode' => '12.1.0',
16377             },
16378             removed => {
16379             }
16380             },
16381             5.030000 => {
16382             delta_from => 5.02901,
16383             changed => {
16384             'B::Op_private' => '5.030000',
16385             'Config' => '5.03',
16386             'Devel::PPPort' => '3.52',
16387             'Module::CoreList' => '5.20190522',
16388             'Module::CoreList::Utils'=> '5.20190522',
16389             'XS::Typemap' => '0.17',
16390             },
16391             removed => {
16392             }
16393             },
16394             5.031000 => {
16395             delta_from => 5.03,
16396             changed => {
16397             'B::Op_private' => '5.031000',
16398             'Config' => '5.031',
16399             'Module::CoreList' => '5.20190524',
16400             'Module::CoreList::Utils'=> '5.20190524',
16401             'Pod::Simple' => '3.36',
16402             'Pod::Simple::BlackBox' => '3.36',
16403             'Pod::Simple::Checker' => '3.36',
16404             'Pod::Simple::Debug' => '3.36',
16405             'Pod::Simple::DumpAsText'=> '3.36',
16406             'Pod::Simple::DumpAsXML'=> '3.36',
16407             'Pod::Simple::HTML' => '3.36',
16408             'Pod::Simple::HTMLBatch'=> '3.36',
16409             'Pod::Simple::JustPod' => undef,
16410             'Pod::Simple::LinkSection'=> '3.36',
16411             'Pod::Simple::Methody' => '3.36',
16412             'Pod::Simple::Progress' => '3.36',
16413             'Pod::Simple::PullParser'=> '3.36',
16414             'Pod::Simple::PullParserEndToken'=> '3.36',
16415             'Pod::Simple::PullParserStartToken'=> '3.36',
16416             'Pod::Simple::PullParserTextToken'=> '3.36',
16417             'Pod::Simple::PullParserToken'=> '3.36',
16418             'Pod::Simple::RTF' => '3.36',
16419             'Pod::Simple::Search' => '3.36',
16420             'Pod::Simple::SimpleTree'=> '3.36',
16421             'Pod::Simple::Text' => '3.36',
16422             'Pod::Simple::TextContent'=> '3.36',
16423             'Pod::Simple::TiedOutFH'=> '3.36',
16424             'Pod::Simple::Transcode'=> '3.36',
16425             'Pod::Simple::TranscodeDumb'=> '3.36',
16426             'Pod::Simple::TranscodeSmart'=> '3.36',
16427             'Pod::Simple::XHTML' => '3.36',
16428             'Pod::Simple::XMLOutStream'=> '3.36',
16429             'Socket' => '2.029',
16430             'feature' => '1.55',
16431             },
16432             removed => {
16433             }
16434             },
16435             5.031001 => {
16436             delta_from => 5.031000,
16437             changed => {
16438             'App::Cpan' => '1.675',
16439             'B::Op_private' => '5.031001',
16440             'CPAN' => '2.27',
16441             'CPAN::Bundle' => '5.5005',
16442             'CPAN::Distribution' => '2.27',
16443             'CPAN::FTP' => '5.5012',
16444             'CPAN::FirstTime' => '5.5314',
16445             'CPAN::HandleConfig' => '5.5011',
16446             'CPAN::Mirrors' => '2.27',
16447             'CPAN::Queue' => '5.5003',
16448             'CPAN::Shell' => '5.5009',
16449             'CPAN::Tarzip' => '5.5013',
16450             'Class::Struct' => '0.66',
16451             'Compress::Raw::Bzip2' => '2.086',
16452             'Compress::Raw::Zlib' => '2.086',
16453             'Compress::Zlib' => '2.086',
16454             'Config' => '5.031001',
16455             'DB_File' => '1.852',
16456             'Devel::PPPort' => '3.53',
16457             'ExtUtils::CBuilder' => '0.280232',
16458             'ExtUtils::Command' => '7.36',
16459             'ExtUtils::Command::MM' => '7.36',
16460             'ExtUtils::Liblist' => '7.36',
16461             'ExtUtils::Liblist::Kid'=> '7.36',
16462             'ExtUtils::MM' => '7.36',
16463             'ExtUtils::MM_AIX' => '7.36',
16464             'ExtUtils::MM_Any' => '7.36',
16465             'ExtUtils::MM_BeOS' => '7.36',
16466             'ExtUtils::MM_Cygwin' => '7.36',
16467             'ExtUtils::MM_DOS' => '7.36',
16468             'ExtUtils::MM_Darwin' => '7.36',
16469             'ExtUtils::MM_MacOS' => '7.36',
16470             'ExtUtils::MM_NW5' => '7.36',
16471             'ExtUtils::MM_OS2' => '7.36',
16472             'ExtUtils::MM_QNX' => '7.36',
16473             'ExtUtils::MM_UWIN' => '7.36',
16474             'ExtUtils::MM_Unix' => '7.36',
16475             'ExtUtils::MM_VMS' => '7.36',
16476             'ExtUtils::MM_VOS' => '7.36',
16477             'ExtUtils::MM_Win32' => '7.36',
16478             'ExtUtils::MM_Win95' => '7.36',
16479             'ExtUtils::MY' => '7.36',
16480             'ExtUtils::MakeMaker' => '7.36',
16481             'ExtUtils::MakeMaker::Config'=> '7.36',
16482             'ExtUtils::MakeMaker::Locale'=> '7.36',
16483             'ExtUtils::MakeMaker::version'=> '7.36',
16484             'ExtUtils::MakeMaker::version::regex'=> '7.36',
16485             'ExtUtils::Mkbootstrap' => '7.36',
16486             'ExtUtils::Mksymlists' => '7.36',
16487             'ExtUtils::testlib' => '7.36',
16488             'File::Spec::Win32' => '3.79',
16489             'I18N::LangTags' => '0.44',
16490             'IO' => '1.41',
16491             'IO::Compress::Adapter::Bzip2'=> '2.086',
16492             'IO::Compress::Adapter::Deflate'=> '2.086',
16493             'IO::Compress::Adapter::Identity'=> '2.086',
16494             'IO::Compress::Base' => '2.086',
16495             'IO::Compress::Base::Common'=> '2.086',
16496             'IO::Compress::Bzip2' => '2.086',
16497             'IO::Compress::Deflate' => '2.086',
16498             'IO::Compress::Gzip' => '2.086',
16499             'IO::Compress::Gzip::Constants'=> '2.086',
16500             'IO::Compress::RawDeflate'=> '2.086',
16501             'IO::Compress::Zip' => '2.086',
16502             'IO::Compress::Zip::Constants'=> '2.086',
16503             'IO::Compress::Zlib::Constants'=> '2.086',
16504             'IO::Compress::Zlib::Extra'=> '2.086',
16505             'IO::Dir' => '1.41',
16506             'IO::File' => '1.41',
16507             'IO::Handle' => '1.41',
16508             'IO::Pipe' => '1.41',
16509             'IO::Poll' => '1.41',
16510             'IO::Seekable' => '1.41',
16511             'IO::Select' => '1.41',
16512             'IO::Socket' => '1.41',
16513             'IO::Socket::INET' => '1.41',
16514             'IO::Socket::UNIX' => '1.41',
16515             'IO::Uncompress::Adapter::Bunzip2'=> '2.086',
16516             'IO::Uncompress::Adapter::Identity'=> '2.086',
16517             'IO::Uncompress::Adapter::Inflate'=> '2.086',
16518             'IO::Uncompress::AnyInflate'=> '2.086',
16519             'IO::Uncompress::AnyUncompress'=> '2.086',
16520             'IO::Uncompress::Base' => '2.086',
16521             'IO::Uncompress::Bunzip2'=> '2.086',
16522             'IO::Uncompress::Gunzip'=> '2.086',
16523             'IO::Uncompress::Inflate'=> '2.086',
16524             'IO::Uncompress::RawInflate'=> '2.086',
16525             'IO::Uncompress::Unzip' => '2.086',
16526             'Module::CoreList' => '5.20190620',
16527             'Module::CoreList::Utils'=> '5.20190620',
16528             'POSIX' => '1.89',
16529             'Pod::Man' => '4.12',
16530             'Pod::ParseLink' => '4.12',
16531             'Pod::Simple' => '3.38',
16532             'Pod::Simple::BlackBox' => '3.38',
16533             'Pod::Simple::Checker' => '3.38',
16534             'Pod::Simple::Debug' => '3.38',
16535             'Pod::Simple::DumpAsText'=> '3.38',
16536             'Pod::Simple::DumpAsXML'=> '3.38',
16537             'Pod::Simple::HTML' => '3.38',
16538             'Pod::Simple::HTMLBatch'=> '3.38',
16539             'Pod::Simple::LinkSection'=> '3.38',
16540             'Pod::Simple::Methody' => '3.38',
16541             'Pod::Simple::Progress' => '3.38',
16542             'Pod::Simple::PullParser'=> '3.38',
16543             'Pod::Simple::PullParserEndToken'=> '3.38',
16544             'Pod::Simple::PullParserStartToken'=> '3.38',
16545             'Pod::Simple::PullParserTextToken'=> '3.38',
16546             'Pod::Simple::PullParserToken'=> '3.38',
16547             'Pod::Simple::RTF' => '3.38',
16548             'Pod::Simple::Search' => '3.38',
16549             'Pod::Simple::SimpleTree'=> '3.38',
16550             'Pod::Simple::Text' => '3.38',
16551             'Pod::Simple::TextContent'=> '3.38',
16552             'Pod::Simple::TiedOutFH'=> '3.38',
16553             'Pod::Simple::Transcode'=> '3.38',
16554             'Pod::Simple::TranscodeDumb'=> '3.38',
16555             'Pod::Simple::TranscodeSmart'=> '3.38',
16556             'Pod::Simple::XHTML' => '3.38',
16557             'Pod::Simple::XMLOutStream'=> '3.38',
16558             'Pod::Text' => '4.12',
16559             'Pod::Text::Color' => '4.12',
16560             'Pod::Text::Overstrike' => '4.12',
16561             'Pod::Text::Termcap' => '4.12',
16562             'SelfLoader' => '1.26',
16563             'Storable' => '3.16',
16564             'Sys::Hostname' => '1.23',
16565             'Test2' => '1.302164',
16566             'Test2::API' => '1.302164',
16567             'Test2::API::Breakage' => '1.302164',
16568             'Test2::API::Context' => '1.302164',
16569             'Test2::API::Instance' => '1.302164',
16570             'Test2::API::Stack' => '1.302164',
16571             'Test2::Event' => '1.302164',
16572             'Test2::Event::Bail' => '1.302164',
16573             'Test2::Event::Diag' => '1.302164',
16574             'Test2::Event::Encoding'=> '1.302164',
16575             'Test2::Event::Exception'=> '1.302164',
16576             'Test2::Event::Fail' => '1.302164',
16577             'Test2::Event::Generic' => '1.302164',
16578             'Test2::Event::Note' => '1.302164',
16579             'Test2::Event::Ok' => '1.302164',
16580             'Test2::Event::Pass' => '1.302164',
16581             'Test2::Event::Plan' => '1.302164',
16582             'Test2::Event::Skip' => '1.302164',
16583             'Test2::Event::Subtest' => '1.302164',
16584             'Test2::Event::TAP::Version'=> '1.302164',
16585             'Test2::Event::V2' => '1.302164',
16586             'Test2::Event::Waiting' => '1.302164',
16587             'Test2::EventFacet' => '1.302164',
16588             'Test2::EventFacet::About'=> '1.302164',
16589             'Test2::EventFacet::Amnesty'=> '1.302164',
16590             'Test2::EventFacet::Assert'=> '1.302164',
16591             'Test2::EventFacet::Control'=> '1.302164',
16592             'Test2::EventFacet::Error'=> '1.302164',
16593             'Test2::EventFacet::Hub'=> '1.302164',
16594             'Test2::EventFacet::Info'=> '1.302164',
16595             'Test2::EventFacet::Info::Table'=> '1.302164',
16596             'Test2::EventFacet::Meta'=> '1.302164',
16597             'Test2::EventFacet::Parent'=> '1.302164',
16598             'Test2::EventFacet::Plan'=> '1.302164',
16599             'Test2::EventFacet::Render'=> '1.302164',
16600             'Test2::EventFacet::Trace'=> '1.302164',
16601             'Test2::Formatter' => '1.302164',
16602             'Test2::Formatter::TAP' => '1.302164',
16603             'Test2::Hub' => '1.302164',
16604             'Test2::Hub::Interceptor'=> '1.302164',
16605             'Test2::Hub::Interceptor::Terminator'=> '1.302164',
16606             'Test2::Hub::Subtest' => '1.302164',
16607             'Test2::IPC' => '1.302164',
16608             'Test2::IPC::Driver' => '1.302164',
16609             'Test2::IPC::Driver::Files'=> '1.302164',
16610             'Test2::Tools::Tiny' => '1.302164',
16611             'Test2::Util' => '1.302164',
16612             'Test2::Util::ExternalMeta'=> '1.302164',
16613             'Test2::Util::Facets2Legacy'=> '1.302164',
16614             'Test2::Util::HashBase' => '1.302164',
16615             'Test2::Util::Trace' => '1.302164',
16616             'Test::Builder' => '1.302164',
16617             'Test::Builder::Formatter'=> '1.302164',
16618             'Test::Builder::Module' => '1.302164',
16619             'Test::Builder::Tester' => '1.302164',
16620             'Test::Builder::Tester::Color'=> '1.302164',
16621             'Test::Builder::TodoDiag'=> '1.302164',
16622             'Test::More' => '1.302164',
16623             'Test::Simple' => '1.302164',
16624             'Test::Tester' => '1.302164',
16625             'Test::Tester::Capture' => '1.302164',
16626             'Test::Tester::CaptureRunner'=> '1.302164',
16627             'Test::Tester::Delegate'=> '1.302164',
16628             'Test::use::ok' => '1.302164',
16629             'Tie::File' => '1.03',
16630             'Tie::Hash::NamedCapture'=> '0.11',
16631             'Time::HiRes' => '1.9761',
16632             'Unicode::Normalize' => '1.27',
16633             'Unicode::UCD' => '0.73',
16634             'XS::APItest' => '1.01',
16635             'ok' => '1.302164',
16636             'overload' => '1.31',
16637             'warnings' => '1.45',
16638             },
16639             removed => {
16640             'Pod::Find' => 1,
16641             'Pod::InputObjects' => 1,
16642             'Pod::ParseUtils' => 1,
16643             'Pod::Parser' => 1,
16644             'Pod::PlainText' => 1,
16645             'Pod::Select' => 1,
16646             }
16647             },
16648             5.031002 => {
16649             delta_from => 5.031001,
16650             changed => {
16651             'B::Op_private' => '5.031002',
16652             'Config' => '5.031002',
16653             'Devel::PPPort' => '3.54',
16654             'Exporter' => '5.74',
16655             'Exporter::Heavy' => '5.74',
16656             'IPC::Cmd' => '1.04',
16657             'JSON::PP' => '4.04',
16658             'JSON::PP::Boolean' => '4.04',
16659             'Module::CoreList' => '5.20190720',
16660             'Module::CoreList::Utils'=> '5.20190720',
16661             'Opcode' => '1.44',
16662             'PerlIO::encoding' => '0.28',
16663             'Pod::Simple' => '3.39',
16664             'Pod::Simple::BlackBox' => '3.39',
16665             'Pod::Simple::Checker' => '3.39',
16666             'Pod::Simple::Debug' => '3.39',
16667             'Pod::Simple::DumpAsText'=> '3.39',
16668             'Pod::Simple::DumpAsXML'=> '3.39',
16669             'Pod::Simple::HTML' => '3.39',
16670             'Pod::Simple::HTMLBatch'=> '3.39',
16671             'Pod::Simple::LinkSection'=> '3.39',
16672             'Pod::Simple::Methody' => '3.39',
16673             'Pod::Simple::Progress' => '3.39',
16674             'Pod::Simple::PullParser'=> '3.39',
16675             'Pod::Simple::PullParserEndToken'=> '3.39',
16676             'Pod::Simple::PullParserStartToken'=> '3.39',
16677             'Pod::Simple::PullParserTextToken'=> '3.39',
16678             'Pod::Simple::PullParserToken'=> '3.39',
16679             'Pod::Simple::RTF' => '3.39',
16680             'Pod::Simple::Search' => '3.39',
16681             'Pod::Simple::SimpleTree'=> '3.39',
16682             'Pod::Simple::Text' => '3.39',
16683             'Pod::Simple::TextContent'=> '3.39',
16684             'Pod::Simple::TiedOutFH'=> '3.39',
16685             'Pod::Simple::Transcode'=> '3.39',
16686             'Pod::Simple::TranscodeDumb'=> '3.39',
16687             'Pod::Simple::TranscodeSmart'=> '3.39',
16688             'Pod::Simple::XHTML' => '3.39',
16689             'Pod::Simple::XMLOutStream'=> '3.39',
16690             'threads::shared' => '1.61',
16691             },
16692             removed => {
16693             }
16694             },
16695             5.031003 => {
16696             delta_from => 5.031002,
16697             changed => {
16698             'B::Op_private' => '5.031003',
16699             'Compress::Raw::Bzip2' => '2.087',
16700             'Compress::Raw::Zlib' => '2.087',
16701             'Compress::Zlib' => '2.087',
16702             'Config' => '5.031003',
16703             'Devel::PPPort' => '3.55',
16704             'File::Find' => '1.37',
16705             'Getopt::Long' => '2.51',
16706             'I18N::LangTags::Detect'=> '1.08',
16707             'IO::Compress::Adapter::Bzip2'=> '2.087',
16708             'IO::Compress::Adapter::Deflate'=> '2.087',
16709             'IO::Compress::Adapter::Identity'=> '2.087',
16710             'IO::Compress::Base' => '2.087',
16711             'IO::Compress::Base::Common'=> '2.087',
16712             'IO::Compress::Bzip2' => '2.087',
16713             'IO::Compress::Deflate' => '2.087',
16714             'IO::Compress::Gzip' => '2.087',
16715             'IO::Compress::Gzip::Constants'=> '2.087',
16716             'IO::Compress::RawDeflate'=> '2.087',
16717             'IO::Compress::Zip' => '2.087',
16718             'IO::Compress::Zip::Constants'=> '2.087',
16719             'IO::Compress::Zlib::Constants'=> '2.087',
16720             'IO::Compress::Zlib::Extra'=> '2.087',
16721             'IO::Uncompress::Adapter::Bunzip2'=> '2.087',
16722             'IO::Uncompress::Adapter::Identity'=> '2.087',
16723             'IO::Uncompress::Adapter::Inflate'=> '2.087',
16724             'IO::Uncompress::AnyInflate'=> '2.087',
16725             'IO::Uncompress::AnyUncompress'=> '2.087',
16726             'IO::Uncompress::Base' => '2.087',
16727             'IO::Uncompress::Bunzip2'=> '2.087',
16728             'IO::Uncompress::Gunzip'=> '2.087',
16729             'IO::Uncompress::Inflate'=> '2.087',
16730             'IO::Uncompress::RawInflate'=> '2.087',
16731             'IO::Uncompress::Unzip' => '2.087',
16732             'Module::CoreList' => '5.20190820',
16733             'Module::CoreList::Utils'=> '5.20190820',
16734             'PerlIO::via' => '0.18',
16735             'Storable' => '3.17',
16736             'Test2' => '1.302166',
16737             'Test2::API' => '1.302166',
16738             'Test2::API::Breakage' => '1.302166',
16739             'Test2::API::Context' => '1.302166',
16740             'Test2::API::Instance' => '1.302166',
16741             'Test2::API::Stack' => '1.302166',
16742             'Test2::Event' => '1.302166',
16743             'Test2::Event::Bail' => '1.302166',
16744             'Test2::Event::Diag' => '1.302166',
16745             'Test2::Event::Encoding'=> '1.302166',
16746             'Test2::Event::Exception'=> '1.302166',
16747             'Test2::Event::Fail' => '1.302166',
16748             'Test2::Event::Generic' => '1.302166',
16749             'Test2::Event::Note' => '1.302166',
16750             'Test2::Event::Ok' => '1.302166',
16751             'Test2::Event::Pass' => '1.302166',
16752             'Test2::Event::Plan' => '1.302166',
16753             'Test2::Event::Skip' => '1.302166',
16754             'Test2::Event::Subtest' => '1.302166',
16755             'Test2::Event::TAP::Version'=> '1.302166',
16756             'Test2::Event::V2' => '1.302166',
16757             'Test2::Event::Waiting' => '1.302166',
16758             'Test2::EventFacet' => '1.302166',
16759             'Test2::EventFacet::About'=> '1.302166',
16760             'Test2::EventFacet::Amnesty'=> '1.302166',
16761             'Test2::EventFacet::Assert'=> '1.302166',
16762             'Test2::EventFacet::Control'=> '1.302166',
16763             'Test2::EventFacet::Error'=> '1.302166',
16764             'Test2::EventFacet::Hub'=> '1.302166',
16765             'Test2::EventFacet::Info'=> '1.302166',
16766             'Test2::EventFacet::Info::Table'=> '1.302166',
16767             'Test2::EventFacet::Meta'=> '1.302166',
16768             'Test2::EventFacet::Parent'=> '1.302166',
16769             'Test2::EventFacet::Plan'=> '1.302166',
16770             'Test2::EventFacet::Render'=> '1.302166',
16771             'Test2::EventFacet::Trace'=> '1.302166',
16772             'Test2::Formatter' => '1.302166',
16773             'Test2::Formatter::TAP' => '1.302166',
16774             'Test2::Hub' => '1.302166',
16775             'Test2::Hub::Interceptor'=> '1.302166',
16776             'Test2::Hub::Interceptor::Terminator'=> '1.302166',
16777             'Test2::Hub::Subtest' => '1.302166',
16778             'Test2::IPC' => '1.302166',
16779             'Test2::IPC::Driver' => '1.302166',
16780             'Test2::IPC::Driver::Files'=> '1.302166',
16781             'Test2::Tools::Tiny' => '1.302166',
16782             'Test2::Util' => '1.302166',
16783             'Test2::Util::ExternalMeta'=> '1.302166',
16784             'Test2::Util::Facets2Legacy'=> '1.302166',
16785             'Test2::Util::HashBase' => '1.302166',
16786             'Test2::Util::Trace' => '1.302166',
16787             'Test::Builder' => '1.302166',
16788             'Test::Builder::Formatter'=> '1.302166',
16789             'Test::Builder::Module' => '1.302166',
16790             'Test::Builder::Tester' => '1.302166',
16791             'Test::Builder::Tester::Color'=> '1.302166',
16792             'Test::Builder::TodoDiag'=> '1.302166',
16793             'Test::More' => '1.302166',
16794             'Test::Simple' => '1.302166',
16795             'Test::Tester' => '1.302166',
16796             'Test::Tester::Capture' => '1.302166',
16797             'Test::Tester::CaptureRunner'=> '1.302166',
16798             'Test::Tester::Delegate'=> '1.302166',
16799             'Test::use::ok' => '1.302166',
16800             'Thread' => '3.05',
16801             'Time::HiRes' => '1.9762',
16802             'Win32' => '0.53',
16803             'XS::APItest' => '1.02',
16804             'ok' => '1.302166',
16805             },
16806             removed => {
16807             }
16808             },
16809             5.031004 => {
16810             delta_from => 5.031003,
16811             changed => {
16812             'B::Op_private' => '5.031004',
16813             'Config' => '5.031004',
16814             'ExtUtils::Command' => '7.38',
16815             'ExtUtils::Command::MM' => '7.38',
16816             'ExtUtils::Liblist' => '7.38',
16817             'ExtUtils::Liblist::Kid'=> '7.38',
16818             'ExtUtils::MM' => '7.38',
16819             'ExtUtils::MM_AIX' => '7.38',
16820             'ExtUtils::MM_Any' => '7.38',
16821             'ExtUtils::MM_BeOS' => '7.38',
16822             'ExtUtils::MM_Cygwin' => '7.38',
16823             'ExtUtils::MM_DOS' => '7.38',
16824             'ExtUtils::MM_Darwin' => '7.38',
16825             'ExtUtils::MM_MacOS' => '7.38',
16826             'ExtUtils::MM_NW5' => '7.38',
16827             'ExtUtils::MM_OS2' => '7.38',
16828             'ExtUtils::MM_QNX' => '7.38',
16829             'ExtUtils::MM_UWIN' => '7.38',
16830             'ExtUtils::MM_Unix' => '7.38',
16831             'ExtUtils::MM_VMS' => '7.38',
16832             'ExtUtils::MM_VOS' => '7.38',
16833             'ExtUtils::MM_Win32' => '7.38',
16834             'ExtUtils::MM_Win95' => '7.38',
16835             'ExtUtils::MY' => '7.38',
16836             'ExtUtils::MakeMaker' => '7.38',
16837             'ExtUtils::MakeMaker::Config'=> '7.38',
16838             'ExtUtils::MakeMaker::Locale'=> '7.38',
16839             'ExtUtils::MakeMaker::version'=> '7.38',
16840             'ExtUtils::MakeMaker::version::regex'=> '7.38',
16841             'ExtUtils::Mkbootstrap' => '7.38',
16842             'ExtUtils::Mksymlists' => '7.38',
16843             'ExtUtils::testlib' => '7.38',
16844             'I18N::Langinfo' => '0.19',
16845             'List::Util' => '1.52',
16846             'List::Util::XS' => '1.52',
16847             'Module::CoreList' => '5.20190920',
16848             'Module::CoreList::Utils'=> '5.20190920',
16849             'Module::Metadata' => '1.000037',
16850             'Scalar::Util' => '1.52',
16851             'Sub::Util' => '1.52',
16852             'Test2' => '1.302168',
16853             'Test2::API' => '1.302168',
16854             'Test2::API::Breakage' => '1.302168',
16855             'Test2::API::Context' => '1.302168',
16856             'Test2::API::Instance' => '1.302168',
16857             'Test2::API::Stack' => '1.302168',
16858             'Test2::Event' => '1.302168',
16859             'Test2::Event::Bail' => '1.302168',
16860             'Test2::Event::Diag' => '1.302168',
16861             'Test2::Event::Encoding'=> '1.302168',
16862             'Test2::Event::Exception'=> '1.302168',
16863             'Test2::Event::Fail' => '1.302168',
16864             'Test2::Event::Generic' => '1.302168',
16865             'Test2::Event::Note' => '1.302168',
16866             'Test2::Event::Ok' => '1.302168',
16867             'Test2::Event::Pass' => '1.302168',
16868             'Test2::Event::Plan' => '1.302168',
16869             'Test2::Event::Skip' => '1.302168',
16870             'Test2::Event::Subtest' => '1.302168',
16871             'Test2::Event::TAP::Version'=> '1.302168',
16872             'Test2::Event::V2' => '1.302168',
16873             'Test2::Event::Waiting' => '1.302168',
16874             'Test2::EventFacet' => '1.302168',
16875             'Test2::EventFacet::About'=> '1.302168',
16876             'Test2::EventFacet::Amnesty'=> '1.302168',
16877             'Test2::EventFacet::Assert'=> '1.302168',
16878             'Test2::EventFacet::Control'=> '1.302168',
16879             'Test2::EventFacet::Error'=> '1.302168',
16880             'Test2::EventFacet::Hub'=> '1.302168',
16881             'Test2::EventFacet::Info'=> '1.302168',
16882             'Test2::EventFacet::Info::Table'=> '1.302168',
16883             'Test2::EventFacet::Meta'=> '1.302168',
16884             'Test2::EventFacet::Parent'=> '1.302168',
16885             'Test2::EventFacet::Plan'=> '1.302168',
16886             'Test2::EventFacet::Render'=> '1.302168',
16887             'Test2::EventFacet::Trace'=> '1.302168',
16888             'Test2::Formatter' => '1.302168',
16889             'Test2::Formatter::TAP' => '1.302168',
16890             'Test2::Hub' => '1.302168',
16891             'Test2::Hub::Interceptor'=> '1.302168',
16892             'Test2::Hub::Interceptor::Terminator'=> '1.302168',
16893             'Test2::Hub::Subtest' => '1.302168',
16894             'Test2::IPC' => '1.302168',
16895             'Test2::IPC::Driver' => '1.302168',
16896             'Test2::IPC::Driver::Files'=> '1.302168',
16897             'Test2::Tools::Tiny' => '1.302168',
16898             'Test2::Util' => '1.302168',
16899             'Test2::Util::ExternalMeta'=> '1.302168',
16900             'Test2::Util::Facets2Legacy'=> '1.302168',
16901             'Test2::Util::HashBase' => '1.302168',
16902             'Test2::Util::Trace' => '1.302168',
16903             'Test::Builder' => '1.302168',
16904             'Test::Builder::Formatter'=> '1.302168',
16905             'Test::Builder::Module' => '1.302168',
16906             'Test::Builder::Tester' => '1.302168',
16907             'Test::Builder::Tester::Color'=> '1.302168',
16908             'Test::Builder::TodoDiag'=> '1.302168',
16909             'Test::More' => '1.302168',
16910             'Test::Simple' => '1.302168',
16911             'Test::Tester' => '1.302168',
16912             'Test::Tester::Capture' => '1.302168',
16913             'Test::Tester::CaptureRunner'=> '1.302168',
16914             'Test::Tester::Delegate'=> '1.302168',
16915             'Test::use::ok' => '1.302168',
16916             'Time::HiRes' => '1.9763',
16917             'XS::APItest' => '1.03',
16918             'ok' => '1.302168',
16919             're' => '0.38',
16920             },
16921             removed => {
16922             }
16923             },
16924             5.031005 => {
16925             delta_from => 5.031004,
16926             changed => {
16927             'B' => '1.77',
16928             'B::Deparse' => '1.50',
16929             'B::Op_private' => '5.031005',
16930             'Config' => '5.031005',
16931             'Devel::PPPort' => '3.54',
16932             'Digest::MD5' => '2.55_01',
16933             'Dumpvalue' => '1.21',
16934             'ExtUtils::CBuilder' => '0.280233',
16935             'Math::BigFloat' => '1.999817_01',
16936             'Math::BigInt' => '1.999817_01',
16937             'Math::BigInt::Calc' => '1.999817_01',
16938             'Math::BigInt::FastCalc'=> '0.5009',
16939             'Math::BigInt::Lib' => '1.999817_01',
16940             'Module::CoreList' => '5.20191020',
16941             'Module::CoreList::Utils'=> '5.20191020',
16942             'Safe' => '2.41',
16943             'Time::HiRes' => '1.9764',
16944             'XS::APItest' => '1.04',
16945             'threads' => '2.23',
16946             },
16947             removed => {
16948             }
16949             },
16950             5.030001 => {
16951             delta_from => 5.030000,
16952             changed => {
16953             'B::Op_private' => '5.030001',
16954             'Config' => '5.030001',
16955             'Module::CoreList' => '5.20191110',
16956             'Module::CoreList::Utils'=> '5.20191110',
16957             },
16958             removed => {
16959             }
16960             },
16961             5.031006 => {
16962             delta_from => 5.031005,
16963             changed => {
16964             'B::Deparse' => '1.51',
16965             'B::Op_private' => '5.031006',
16966             'Compress::Raw::Bzip2' => '2.090',
16967             'Compress::Raw::Zlib' => '2.090',
16968             'Compress::Zlib' => '2.090',
16969             'Config' => '5.031006',
16970             'Devel::PPPort' => '3.55',
16971             'DynaLoader' => '1.46',
16972             'IO::Compress::Adapter::Bzip2'=> '2.090',
16973             'IO::Compress::Adapter::Deflate'=> '2.090',
16974             'IO::Compress::Adapter::Identity'=> '2.090',
16975             'IO::Compress::Base' => '2.090',
16976             'IO::Compress::Base::Common'=> '2.090',
16977             'IO::Compress::Bzip2' => '2.090',
16978             'IO::Compress::Deflate' => '2.090',
16979             'IO::Compress::Gzip' => '2.090',
16980             'IO::Compress::Gzip::Constants'=> '2.090',
16981             'IO::Compress::RawDeflate'=> '2.090',
16982             'IO::Compress::Zip' => '2.090',
16983             'IO::Compress::Zip::Constants'=> '2.090',
16984             'IO::Compress::Zlib::Constants'=> '2.090',
16985             'IO::Compress::Zlib::Extra'=> '2.090',
16986             'IO::Uncompress::Adapter::Bunzip2'=> '2.090',
16987             'IO::Uncompress::Adapter::Identity'=> '2.090',
16988             'IO::Uncompress::Adapter::Inflate'=> '2.090',
16989             'IO::Uncompress::AnyInflate'=> '2.090',
16990             'IO::Uncompress::AnyUncompress'=> '2.090',
16991             'IO::Uncompress::Base' => '2.090',
16992             'IO::Uncompress::Bunzip2'=> '2.090',
16993             'IO::Uncompress::Gunzip'=> '2.090',
16994             'IO::Uncompress::Inflate'=> '2.090',
16995             'IO::Uncompress::RawInflate'=> '2.090',
16996             'IO::Uncompress::Unzip' => '2.090',
16997             'List::Util' => '1.53',
16998             'List::Util::XS' => '1.53',
16999             'Math::BigFloat' => '1.999818',
17000             'Math::BigInt' => '1.999818',
17001             'Math::BigInt::Calc' => '1.999818',
17002             'Math::BigInt::Lib' => '1.999818',
17003             'Module::CoreList' => '5.20191120',
17004             'Module::CoreList::Utils'=> '5.20191120',
17005             'Module::Load::Conditional'=> '0.70',
17006             'POSIX' => '1.90',
17007             'Pod::Simple' => '3.40',
17008             'Pod::Simple::BlackBox' => '3.40',
17009             'Pod::Simple::Checker' => '3.40',
17010             'Pod::Simple::Debug' => '3.40',
17011             'Pod::Simple::DumpAsText'=> '3.40',
17012             'Pod::Simple::DumpAsXML'=> '3.40',
17013             'Pod::Simple::HTML' => '3.40',
17014             'Pod::Simple::HTMLBatch'=> '3.40',
17015             'Pod::Simple::LinkSection'=> '3.40',
17016             'Pod::Simple::Methody' => '3.40',
17017             'Pod::Simple::Progress' => '3.40',
17018             'Pod::Simple::PullParser'=> '3.40',
17019             'Pod::Simple::PullParserEndToken'=> '3.40',
17020             'Pod::Simple::PullParserStartToken'=> '3.40',
17021             'Pod::Simple::PullParserTextToken'=> '3.40',
17022             'Pod::Simple::PullParserToken'=> '3.40',
17023             'Pod::Simple::RTF' => '3.40',
17024             'Pod::Simple::Search' => '3.40',
17025             'Pod::Simple::SimpleTree'=> '3.40',
17026             'Pod::Simple::Text' => '3.40',
17027             'Pod::Simple::TextContent'=> '3.40',
17028             'Pod::Simple::TiedOutFH'=> '3.40',
17029             'Pod::Simple::Transcode'=> '3.40',
17030             'Pod::Simple::TranscodeDumb'=> '3.40',
17031             'Pod::Simple::TranscodeSmart'=> '3.40',
17032             'Pod::Simple::XHTML' => '3.40',
17033             'Pod::Simple::XMLOutStream'=> '3.40',
17034             'Scalar::Util' => '1.53',
17035             'Sub::Util' => '1.53',
17036             'Sys::Syslog' => '0.36',
17037             'Test2' => '1.302169',
17038             'Test2::API' => '1.302169',
17039             'Test2::API::Breakage' => '1.302169',
17040             'Test2::API::Context' => '1.302169',
17041             'Test2::API::Instance' => '1.302169',
17042             'Test2::API::Stack' => '1.302169',
17043             'Test2::Event' => '1.302169',
17044             'Test2::Event::Bail' => '1.302169',
17045             'Test2::Event::Diag' => '1.302169',
17046             'Test2::Event::Encoding'=> '1.302169',
17047             'Test2::Event::Exception'=> '1.302169',
17048             'Test2::Event::Fail' => '1.302169',
17049             'Test2::Event::Generic' => '1.302169',
17050             'Test2::Event::Note' => '1.302169',
17051             'Test2::Event::Ok' => '1.302169',
17052             'Test2::Event::Pass' => '1.302169',
17053             'Test2::Event::Plan' => '1.302169',
17054             'Test2::Event::Skip' => '1.302169',
17055             'Test2::Event::Subtest' => '1.302169',
17056             'Test2::Event::TAP::Version'=> '1.302169',
17057             'Test2::Event::V2' => '1.302169',
17058             'Test2::Event::Waiting' => '1.302169',
17059             'Test2::EventFacet' => '1.302169',
17060             'Test2::EventFacet::About'=> '1.302169',
17061             'Test2::EventFacet::Amnesty'=> '1.302169',
17062             'Test2::EventFacet::Assert'=> '1.302169',
17063             'Test2::EventFacet::Control'=> '1.302169',
17064             'Test2::EventFacet::Error'=> '1.302169',
17065             'Test2::EventFacet::Hub'=> '1.302169',
17066             'Test2::EventFacet::Info'=> '1.302169',
17067             'Test2::EventFacet::Info::Table'=> '1.302169',
17068             'Test2::EventFacet::Meta'=> '1.302169',
17069             'Test2::EventFacet::Parent'=> '1.302169',
17070             'Test2::EventFacet::Plan'=> '1.302169',
17071             'Test2::EventFacet::Render'=> '1.302169',
17072             'Test2::EventFacet::Trace'=> '1.302169',
17073             'Test2::Formatter' => '1.302169',
17074             'Test2::Formatter::TAP' => '1.302169',
17075             'Test2::Hub' => '1.302169',
17076             'Test2::Hub::Interceptor'=> '1.302169',
17077             'Test2::Hub::Interceptor::Terminator'=> '1.302169',
17078             'Test2::Hub::Subtest' => '1.302169',
17079             'Test2::IPC' => '1.302169',
17080             'Test2::IPC::Driver' => '1.302169',
17081             'Test2::IPC::Driver::Files'=> '1.302169',
17082             'Test2::Tools::Tiny' => '1.302169',
17083             'Test2::Util' => '1.302169',
17084             'Test2::Util::ExternalMeta'=> '1.302169',
17085             'Test2::Util::Facets2Legacy'=> '1.302169',
17086             'Test2::Util::HashBase' => '1.302169',
17087             'Test2::Util::Trace' => '1.302169',
17088             'Test::Builder' => '1.302169',
17089             'Test::Builder::Formatter'=> '1.302169',
17090             'Test::Builder::Module' => '1.302169',
17091             'Test::Builder::Tester' => '1.302169',
17092             'Test::Builder::Tester::Color'=> '1.302169',
17093             'Test::Builder::TodoDiag'=> '1.302169',
17094             'Test::More' => '1.302169',
17095             'Test::Simple' => '1.302169',
17096             'Test::Tester' => '1.302169',
17097             'Test::Tester::Capture' => '1.302169',
17098             'Test::Tester::CaptureRunner'=> '1.302169',
17099             'Test::Tester::Delegate'=> '1.302169',
17100             'Test::use::ok' => '1.302169',
17101             'Tie::StdHandle' => '4.6',
17102             'Unicode::UCD' => '0.74',
17103             'Win32API::File' => '0.1203_01',
17104             'feature' => '1.56',
17105             'mro' => '1.23',
17106             'ok' => '1.302169',
17107             'perlfaq' => '5.20191102',
17108             },
17109             removed => {
17110             }
17111             },
17112             5.031007 => {
17113             delta_from => 5.031006,
17114             changed => {
17115             'B' => '1.78',
17116             'B::Deparse' => '1.52',
17117             'B::Op_private' => '5.031007',
17118             'Compress::Raw::Bzip2' => '2.093',
17119             'Compress::Raw::Zlib' => '2.093',
17120             'Compress::Zlib' => '2.093',
17121             'Config' => '5.031007',
17122             'Devel::PPPort' => '3.56',
17123             'English' => '1.11',
17124             'ExtUtils::Command' => '7.42',
17125             'ExtUtils::Command::MM' => '7.42',
17126             'ExtUtils::Liblist' => '7.42',
17127             'ExtUtils::Liblist::Kid'=> '7.42',
17128             'ExtUtils::MM' => '7.42',
17129             'ExtUtils::MM_AIX' => '7.42',
17130             'ExtUtils::MM_Any' => '7.42',
17131             'ExtUtils::MM_BeOS' => '7.42',
17132             'ExtUtils::MM_Cygwin' => '7.42',
17133             'ExtUtils::MM_DOS' => '7.42',
17134             'ExtUtils::MM_Darwin' => '7.42',
17135             'ExtUtils::MM_MacOS' => '7.42',
17136             'ExtUtils::MM_NW5' => '7.42',
17137             'ExtUtils::MM_OS2' => '7.42',
17138             'ExtUtils::MM_QNX' => '7.42',
17139             'ExtUtils::MM_UWIN' => '7.42',
17140             'ExtUtils::MM_Unix' => '7.42',
17141             'ExtUtils::MM_VMS' => '7.42',
17142             'ExtUtils::MM_VOS' => '7.42',
17143             'ExtUtils::MM_Win32' => '7.42',
17144             'ExtUtils::MM_Win95' => '7.42',
17145             'ExtUtils::MY' => '7.42',
17146             'ExtUtils::MakeMaker' => '7.42',
17147             'ExtUtils::MakeMaker::Config'=> '7.42',
17148             'ExtUtils::MakeMaker::Locale'=> '7.42',
17149             'ExtUtils::MakeMaker::version'=> '7.42',
17150             'ExtUtils::MakeMaker::version::regex'=> '7.42',
17151             'ExtUtils::Mkbootstrap' => '7.42',
17152             'ExtUtils::Mksymlists' => '7.42',
17153             'ExtUtils::testlib' => '7.42',
17154             'File::stat' => '1.09',
17155             'Filter::Simple' => '0.96',
17156             'IO::Compress::Adapter::Bzip2'=> '2.093',
17157             'IO::Compress::Adapter::Deflate'=> '2.093',
17158             'IO::Compress::Adapter::Identity'=> '2.093',
17159             'IO::Compress::Base' => '2.093',
17160             'IO::Compress::Base::Common'=> '2.093',
17161             'IO::Compress::Bzip2' => '2.093',
17162             'IO::Compress::Deflate' => '2.093',
17163             'IO::Compress::Gzip' => '2.093',
17164             'IO::Compress::Gzip::Constants'=> '2.093',
17165             'IO::Compress::RawDeflate'=> '2.093',
17166             'IO::Compress::Zip' => '2.093',
17167             'IO::Compress::Zip::Constants'=> '2.093',
17168             'IO::Compress::Zlib::Constants'=> '2.093',
17169             'IO::Compress::Zlib::Extra'=> '2.093',
17170             'IO::Uncompress::Adapter::Bunzip2'=> '2.093',
17171             'IO::Uncompress::Adapter::Identity'=> '2.093',
17172             'IO::Uncompress::Adapter::Inflate'=> '2.093',
17173             'IO::Uncompress::AnyInflate'=> '2.093',
17174             'IO::Uncompress::AnyUncompress'=> '2.093',
17175             'IO::Uncompress::Base' => '2.093',
17176             'IO::Uncompress::Bunzip2'=> '2.093',
17177             'IO::Uncompress::Gunzip'=> '2.093',
17178             'IO::Uncompress::Inflate'=> '2.093',
17179             'IO::Uncompress::RawInflate'=> '2.093',
17180             'IO::Uncompress::Unzip' => '2.093',
17181             'Module::CoreList' => '5.20191220',
17182             'Module::CoreList::Utils'=> '5.20191220',
17183             'Net::Ping' => '2.72',
17184             'Opcode' => '1.45',
17185             'Storable' => '3.18',
17186             'Test2' => '1.302170',
17187             'Test2::API' => '1.302170',
17188             'Test2::API::Breakage' => '1.302170',
17189             'Test2::API::Context' => '1.302170',
17190             'Test2::API::Instance' => '1.302170',
17191             'Test2::API::Stack' => '1.302170',
17192             'Test2::Event' => '1.302170',
17193             'Test2::Event::Bail' => '1.302170',
17194             'Test2::Event::Diag' => '1.302170',
17195             'Test2::Event::Encoding'=> '1.302170',
17196             'Test2::Event::Exception'=> '1.302170',
17197             'Test2::Event::Fail' => '1.302170',
17198             'Test2::Event::Generic' => '1.302170',
17199             'Test2::Event::Note' => '1.302170',
17200             'Test2::Event::Ok' => '1.302170',
17201             'Test2::Event::Pass' => '1.302170',
17202             'Test2::Event::Plan' => '1.302170',
17203             'Test2::Event::Skip' => '1.302170',
17204             'Test2::Event::Subtest' => '1.302170',
17205             'Test2::Event::TAP::Version'=> '1.302170',
17206             'Test2::Event::V2' => '1.302170',
17207             'Test2::Event::Waiting' => '1.302170',
17208             'Test2::EventFacet' => '1.302170',
17209             'Test2::EventFacet::About'=> '1.302170',
17210             'Test2::EventFacet::Amnesty'=> '1.302170',
17211             'Test2::EventFacet::Assert'=> '1.302170',
17212             'Test2::EventFacet::Control'=> '1.302170',
17213             'Test2::EventFacet::Error'=> '1.302170',
17214             'Test2::EventFacet::Hub'=> '1.302170',
17215             'Test2::EventFacet::Info'=> '1.302170',
17216             'Test2::EventFacet::Info::Table'=> '1.302170',
17217             'Test2::EventFacet::Meta'=> '1.302170',
17218             'Test2::EventFacet::Parent'=> '1.302170',
17219             'Test2::EventFacet::Plan'=> '1.302170',
17220             'Test2::EventFacet::Render'=> '1.302170',
17221             'Test2::EventFacet::Trace'=> '1.302170',
17222             'Test2::Formatter' => '1.302170',
17223             'Test2::Formatter::TAP' => '1.302170',
17224             'Test2::Hub' => '1.302170',
17225             'Test2::Hub::Interceptor'=> '1.302170',
17226             'Test2::Hub::Interceptor::Terminator'=> '1.302170',
17227             'Test2::Hub::Subtest' => '1.302170',
17228             'Test2::IPC' => '1.302170',
17229             'Test2::IPC::Driver' => '1.302170',
17230             'Test2::IPC::Driver::Files'=> '1.302170',
17231             'Test2::Tools::Tiny' => '1.302170',
17232             'Test2::Util' => '1.302170',
17233             'Test2::Util::ExternalMeta'=> '1.302170',
17234             'Test2::Util::Facets2Legacy'=> '1.302170',
17235             'Test2::Util::HashBase' => '1.302170',
17236             'Test2::Util::Trace' => '1.302170',
17237             'Test::Builder' => '1.302170',
17238             'Test::Builder::Formatter'=> '1.302170',
17239             'Test::Builder::Module' => '1.302170',
17240             'Test::Builder::Tester' => '1.302170',
17241             'Test::Builder::Tester::Color'=> '1.302170',
17242             'Test::Builder::TodoDiag'=> '1.302170',
17243             'Test::More' => '1.302170',
17244             'Test::Simple' => '1.302170',
17245             'Test::Tester' => '1.302170',
17246             'Test::Tester::Capture' => '1.302170',
17247             'Test::Tester::CaptureRunner'=> '1.302170',
17248             'Test::Tester::Delegate'=> '1.302170',
17249             'Test::use::ok' => '1.302170',
17250             'Tie::Hash::NamedCapture'=> '0.13',
17251             'VMS::Stdio' => '2.45',
17252             'XS::APItest' => '1.05',
17253             'feature' => '1.57',
17254             'ok' => '1.302170',
17255             'warnings' => '1.46',
17256             },
17257             removed => {
17258             }
17259             },
17260             5.031008 => {
17261             delta_from => 5.031007,
17262             changed => {
17263             'B::Op_private' => '5.031008',
17264             'Config' => '5.031008',
17265             'DB_File' => '1.853',
17266             'Encode' => '3.02',
17267             'ExtUtils::Command' => '7.44',
17268             'ExtUtils::Command::MM' => '7.44',
17269             'ExtUtils::Liblist' => '7.44',
17270             'ExtUtils::Liblist::Kid'=> '7.44',
17271             'ExtUtils::MM' => '7.44',
17272             'ExtUtils::MM_AIX' => '7.44',
17273             'ExtUtils::MM_Any' => '7.44',
17274             'ExtUtils::MM_BeOS' => '7.44',
17275             'ExtUtils::MM_Cygwin' => '7.44',
17276             'ExtUtils::MM_DOS' => '7.44',
17277             'ExtUtils::MM_Darwin' => '7.44',
17278             'ExtUtils::MM_MacOS' => '7.44',
17279             'ExtUtils::MM_NW5' => '7.44',
17280             'ExtUtils::MM_OS2' => '7.44',
17281             'ExtUtils::MM_QNX' => '7.44',
17282             'ExtUtils::MM_UWIN' => '7.44',
17283             'ExtUtils::MM_Unix' => '7.44',
17284             'ExtUtils::MM_VMS' => '7.44',
17285             'ExtUtils::MM_VOS' => '7.44',
17286             'ExtUtils::MM_Win32' => '7.44',
17287             'ExtUtils::MM_Win95' => '7.44',
17288             'ExtUtils::MY' => '7.44',
17289             'ExtUtils::MakeMaker' => '7.44',
17290             'ExtUtils::MakeMaker::Config'=> '7.44',
17291             'ExtUtils::MakeMaker::Locale'=> '7.44',
17292             'ExtUtils::MakeMaker::version'=> '7.44',
17293             'ExtUtils::MakeMaker::version::regex'=> '7.44',
17294             'ExtUtils::Mkbootstrap' => '7.44',
17295             'ExtUtils::Mksymlists' => '7.44',
17296             'ExtUtils::testlib' => '7.44',
17297             'Fatal' => '2.32',
17298             'Hash::Util' => '0.23',
17299             'IO' => '1.42',
17300             'IO::Handle' => '1.42',
17301             'IO::Socket' => '1.42',
17302             'Module::CoreList' => '5.20200120',
17303             'Module::CoreList::Utils'=> '5.20200120',
17304             'POSIX' => '1.91',
17305             'Pod::Man' => '4.14',
17306             'Pod::ParseLink' => '4.14',
17307             'Pod::Text' => '4.14',
17308             'Pod::Text::Color' => '4.14',
17309             'Pod::Text::Overstrike' => '4.14',
17310             'Pod::Text::Termcap' => '4.14',
17311             'Term::ANSIColor' => '5.01',
17312             'Test2' => '1.302171',
17313             'Test2::API' => '1.302171',
17314             'Test2::API::Breakage' => '1.302171',
17315             'Test2::API::Context' => '1.302171',
17316             'Test2::API::Instance' => '1.302171',
17317             'Test2::API::Stack' => '1.302171',
17318             'Test2::Event' => '1.302171',
17319             'Test2::Event::Bail' => '1.302171',
17320             'Test2::Event::Diag' => '1.302171',
17321             'Test2::Event::Encoding'=> '1.302171',
17322             'Test2::Event::Exception'=> '1.302171',
17323             'Test2::Event::Fail' => '1.302171',
17324             'Test2::Event::Generic' => '1.302171',
17325             'Test2::Event::Note' => '1.302171',
17326             'Test2::Event::Ok' => '1.302171',
17327             'Test2::Event::Pass' => '1.302171',
17328             'Test2::Event::Plan' => '1.302171',
17329             'Test2::Event::Skip' => '1.302171',
17330             'Test2::Event::Subtest' => '1.302171',
17331             'Test2::Event::TAP::Version'=> '1.302171',
17332             'Test2::Event::V2' => '1.302171',
17333             'Test2::Event::Waiting' => '1.302171',
17334             'Test2::EventFacet' => '1.302171',
17335             'Test2::EventFacet::About'=> '1.302171',
17336             'Test2::EventFacet::Amnesty'=> '1.302171',
17337             'Test2::EventFacet::Assert'=> '1.302171',
17338             'Test2::EventFacet::Control'=> '1.302171',
17339             'Test2::EventFacet::Error'=> '1.302171',
17340             'Test2::EventFacet::Hub'=> '1.302171',
17341             'Test2::EventFacet::Info'=> '1.302171',
17342             'Test2::EventFacet::Info::Table'=> '1.302171',
17343             'Test2::EventFacet::Meta'=> '1.302171',
17344             'Test2::EventFacet::Parent'=> '1.302171',
17345             'Test2::EventFacet::Plan'=> '1.302171',
17346             'Test2::EventFacet::Render'=> '1.302171',
17347             'Test2::EventFacet::Trace'=> '1.302171',
17348             'Test2::Formatter' => '1.302171',
17349             'Test2::Formatter::TAP' => '1.302171',
17350             'Test2::Hub' => '1.302171',
17351             'Test2::Hub::Interceptor'=> '1.302171',
17352             'Test2::Hub::Interceptor::Terminator'=> '1.302171',
17353             'Test2::Hub::Subtest' => '1.302171',
17354             'Test2::IPC' => '1.302171',
17355             'Test2::IPC::Driver' => '1.302171',
17356             'Test2::IPC::Driver::Files'=> '1.302171',
17357             'Test2::Tools::Tiny' => '1.302171',
17358             'Test2::Util' => '1.302171',
17359             'Test2::Util::ExternalMeta'=> '1.302171',
17360             'Test2::Util::Facets2Legacy'=> '1.302171',
17361             'Test2::Util::HashBase' => '1.302171',
17362             'Test2::Util::Trace' => '1.302171',
17363             'Test::Builder' => '1.302171',
17364             'Test::Builder::Formatter'=> '1.302171',
17365             'Test::Builder::Module' => '1.302171',
17366             'Test::Builder::Tester' => '1.302171',
17367             'Test::Builder::Tester::Color'=> '1.302171',
17368             'Test::Builder::TodoDiag'=> '1.302171',
17369             'Test::More' => '1.302171',
17370             'Test::Simple' => '1.302171',
17371             'Test::Tester' => '1.302171',
17372             'Test::Tester::Capture' => '1.302171',
17373             'Test::Tester::CaptureRunner'=> '1.302171',
17374             'Test::Tester::Delegate'=> '1.302171',
17375             'Test::use::ok' => '1.302171',
17376             'XS::APItest' => '1.06',
17377             'autodie' => '2.32',
17378             'autodie::Scope::Guard' => '2.32',
17379             'autodie::Scope::GuardStack'=> '2.32',
17380             'autodie::Util' => '2.32',
17381             'autodie::exception' => '2.32',
17382             'autodie::exception::system'=> '2.32',
17383             'autodie::hints' => '2.32',
17384             'autodie::skip' => '2.32',
17385             'ok' => '1.302171',
17386             },
17387             removed => {
17388             }
17389             },
17390             5.031009 => {
17391             delta_from => 5.031008,
17392             changed => {
17393             'Archive::Tar' => '2.36',
17394             'Archive::Tar::Constant'=> '2.36',
17395             'Archive::Tar::File' => '2.36',
17396             'B' => '1.80',
17397             'B::Op_private' => '5.031009',
17398             'Config' => '5.031009',
17399             'Devel::PPPort' => '3.57',
17400             'Encode' => '3.03',
17401             'ExtUtils::CBuilder' => '0.280234',
17402             'ExtUtils::CBuilder::Base'=> '0.280234',
17403             'ExtUtils::CBuilder::Platform::Unix'=> '0.280234',
17404             'ExtUtils::CBuilder::Platform::VMS'=> '0.280234',
17405             'ExtUtils::CBuilder::Platform::Windows'=> '0.280234',
17406             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280234',
17407             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280234',
17408             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280234',
17409             'ExtUtils::CBuilder::Platform::aix'=> '0.280234',
17410             'ExtUtils::CBuilder::Platform::android'=> '0.280234',
17411             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280234',
17412             'ExtUtils::CBuilder::Platform::darwin'=> '0.280234',
17413             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280234',
17414             'ExtUtils::CBuilder::Platform::os2'=> '0.280234',
17415             'IO' => '1.43',
17416             'IO::Select' => '1.42',
17417             'IO::Socket' => '1.43',
17418             'Module::CoreList' => '5.20200220',
17419             'Module::CoreList::Utils'=> '5.20200220',
17420             'POSIX' => '1.92',
17421             'Pod::Html' => '1.25',
17422             'Storable' => '3.19',
17423             'Tie::File' => '1.06',
17424             'Unicode' => '13.0.0',
17425             'XS::APItest' => '1.07',
17426             '_charnames' => '1.46',
17427             'charnames' => '1.46',
17428             'diagnostics' => '1.37',
17429             'feature' => '1.58',
17430             'parent' => '0.238',
17431             'perlfaq' => '5.20200125',
17432             'threads' => '2.24',
17433             },
17434             removed => {
17435             }
17436             },
17437             5.030002 => {
17438             delta_from => 5.030001,
17439             changed => {
17440             'B::Op_private' => '5.030002',
17441             'Compress::Raw::Bzip2' => '2.089',
17442             'Config' => '5.030002',
17443             'Module::CoreList' => '5.20200314',
17444             'Module::CoreList::Utils'=> '5.20200314',
17445             },
17446             removed => {
17447             }
17448             },
17449             5.031010 => {
17450             delta_from => 5.031009,
17451             changed => {
17452             'B::Op_private' => '5.031010',
17453             'Config' => '5.03101',
17454             },
17455             removed => {
17456             }
17457             },
17458             5.031011 => {
17459             delta_from => 5.031010,
17460             changed => {
17461             'B::Deparse' => '1.53',
17462             'B::Op_private' => '5.031011',
17463             'Config' => '5.031011',
17464             'DynaLoader' => '1.47',
17465             'Encode' => '3.04',
17466             'IPC::Open2' => '1.05',
17467             'IPC::Open3' => '1.21',
17468             'Module::CoreList' => '5.20200428',
17469             'Module::CoreList::Utils'=> '5.20200428',
17470             'Opcode' => '1.47',
17471             'POSIX' => '1.93',
17472             'PerlIO' => '1.11',
17473             'Storable' => '3.20',
17474             'Test2' => '1.302175',
17475             'Test2::API' => '1.302175',
17476             'Test2::API::Breakage' => '1.302175',
17477             'Test2::API::Context' => '1.302175',
17478             'Test2::API::Instance' => '1.302175',
17479             'Test2::API::Stack' => '1.302175',
17480             'Test2::Event' => '1.302175',
17481             'Test2::Event::Bail' => '1.302175',
17482             'Test2::Event::Diag' => '1.302175',
17483             'Test2::Event::Encoding'=> '1.302175',
17484             'Test2::Event::Exception'=> '1.302175',
17485             'Test2::Event::Fail' => '1.302175',
17486             'Test2::Event::Generic' => '1.302175',
17487             'Test2::Event::Note' => '1.302175',
17488             'Test2::Event::Ok' => '1.302175',
17489             'Test2::Event::Pass' => '1.302175',
17490             'Test2::Event::Plan' => '1.302175',
17491             'Test2::Event::Skip' => '1.302175',
17492             'Test2::Event::Subtest' => '1.302175',
17493             'Test2::Event::TAP::Version'=> '1.302175',
17494             'Test2::Event::V2' => '1.302175',
17495             'Test2::Event::Waiting' => '1.302175',
17496             'Test2::EventFacet' => '1.302175',
17497             'Test2::EventFacet::About'=> '1.302175',
17498             'Test2::EventFacet::Amnesty'=> '1.302175',
17499             'Test2::EventFacet::Assert'=> '1.302175',
17500             'Test2::EventFacet::Control'=> '1.302175',
17501             'Test2::EventFacet::Error'=> '1.302175',
17502             'Test2::EventFacet::Hub'=> '1.302175',
17503             'Test2::EventFacet::Info'=> '1.302175',
17504             'Test2::EventFacet::Info::Table'=> '1.302175',
17505             'Test2::EventFacet::Meta'=> '1.302175',
17506             'Test2::EventFacet::Parent'=> '1.302175',
17507             'Test2::EventFacet::Plan'=> '1.302175',
17508             'Test2::EventFacet::Render'=> '1.302175',
17509             'Test2::EventFacet::Trace'=> '1.302175',
17510             'Test2::Formatter' => '1.302175',
17511             'Test2::Formatter::TAP' => '1.302175',
17512             'Test2::Hub' => '1.302175',
17513             'Test2::Hub::Interceptor'=> '1.302175',
17514             'Test2::Hub::Interceptor::Terminator'=> '1.302175',
17515             'Test2::Hub::Subtest' => '1.302175',
17516             'Test2::IPC' => '1.302175',
17517             'Test2::IPC::Driver' => '1.302175',
17518             'Test2::IPC::Driver::Files'=> '1.302175',
17519             'Test2::Tools::Tiny' => '1.302175',
17520             'Test2::Util' => '1.302175',
17521             'Test2::Util::ExternalMeta'=> '1.302175',
17522             'Test2::Util::Facets2Legacy'=> '1.302175',
17523             'Test2::Util::HashBase' => '1.302175',
17524             'Test2::Util::Trace' => '1.302175',
17525             'Test::Builder' => '1.302175',
17526             'Test::Builder::Formatter'=> '1.302175',
17527             'Test::Builder::Module' => '1.302175',
17528             'Test::Builder::Tester' => '1.302175',
17529             'Test::Builder::Tester::Color'=> '1.302175',
17530             'Test::Builder::TodoDiag'=> '1.302175',
17531             'Test::More' => '1.302175',
17532             'Test::Simple' => '1.302175',
17533             'Test::Tester' => '1.302175',
17534             'Test::Tester::Capture' => '1.302175',
17535             'Test::Tester::CaptureRunner'=> '1.302175',
17536             'Test::Tester::Delegate'=> '1.302175',
17537             'Test::use::ok' => '1.302175',
17538             'Time::Piece' => '1.3401',
17539             'Time::Seconds' => '1.3401',
17540             'Unicode::UCD' => '0.75',
17541             'XS::APItest' => '1.09',
17542             '_charnames' => '1.47',
17543             'charnames' => '1.47',
17544             'ok' => '1.302175',
17545             'open' => '1.12',
17546             're' => '0.39',
17547             'warnings' => '1.47',
17548             },
17549             removed => {
17550             }
17551             },
17552             5.028003 => {
17553             delta_from => 5.028002,
17554             changed => {
17555             'B::Op_private' => '5.028003',
17556             'Config' => '5.028003',
17557             'Module::CoreList' => '5.20200601_28',
17558             'Module::CoreList::Utils'=> '5.20200601_28',
17559             },
17560             removed => {
17561             }
17562             },
17563             5.030003 => {
17564             delta_from => 5.030002,
17565             changed => {
17566             'B::Op_private' => '5.030003',
17567             'Config' => '5.030003',
17568             'Module::CoreList' => '5.20200601_30',
17569             'Module::CoreList::Utils'=> '5.20200601_30',
17570             },
17571             removed => {
17572             }
17573             },
17574             5.032000 => {
17575             delta_from => 5.031011,
17576             changed => {
17577             'B::Deparse' => '1.54',
17578             'B::Op_private' => '5.032000',
17579             'Benchmark' => '1.23',
17580             'Config' => '5.032',
17581             'Encode' => '3.06',
17582             'Encode::Guess' => '2.08',
17583             'File::Glob' => '1.33',
17584             'List::Util' => '1.55',
17585             'List::Util::XS' => '1.55',
17586             'Module::CoreList' => '5.20200620',
17587             'Module::CoreList::Utils'=> '5.20200620',
17588             'POSIX' => '1.94',
17589             'Scalar::Util' => '1.55',
17590             'Storable' => '3.21',
17591             'Sub::Util' => '1.55',
17592             'Thread::Queue' => '3.14',
17593             'Tie::Scalar' => '1.05',
17594             '_charnames' => '1.48',
17595             'charnames' => '1.48',
17596             'encoding' => '3.00',
17597             'perlfaq' => '5.20200523',
17598             're' => '0.40',
17599             'threads' => '2.25',
17600             },
17601             removed => {
17602             }
17603             },
17604             5.033000 => {
17605             delta_from => 5.032000,
17606             changed => {
17607             'B::Op_private' => '5.033000',
17608             'Config' => '5.033',
17609             'Module::CoreList' => '5.20200717',
17610             'Module::CoreList::Utils'=> '5.20200717',
17611             'feature' => '1.59',
17612             },
17613             removed => {
17614             }
17615             },
17616             5.033001 => {
17617             delta_from => 5.033,
17618             changed => {
17619             'B' => '1.81',
17620             'B::Deparse' => '1.55',
17621             'B::Op_private' => '5.033001',
17622             'Config' => '5.033001',
17623             'Data::Dumper' => '2.175',
17624             'Devel::PPPort' => '3.60',
17625             'Devel::Peek' => '1.29',
17626             'DynaLoader' => '1.48',
17627             'Errno' => '1.31',
17628             'Exporter' => '5.75',
17629             'Exporter::Heavy' => '5.75',
17630             'ExtUtils::Miniperl' => '1.10',
17631             'ExtUtils::PL2Bat' => '0.002',
17632             'ExtUtils::ParseXS' => '3.41',
17633             'ExtUtils::ParseXS::Constants'=> '3.41',
17634             'ExtUtils::ParseXS::CountLines'=> '3.41',
17635             'ExtUtils::ParseXS::Eval'=> '3.41',
17636             'ExtUtils::ParseXS::Utilities'=> '3.41',
17637             'Fcntl' => '1.14',
17638             'File::Path' => '2.17',
17639             'Hash::Util' => '0.24',
17640             'Hash::Util::FieldHash' => '1.21',
17641             'IO' => '1.44',
17642             'IO::Socket' => '1.44',
17643             'IO::Socket::UNIX' => '1.42',
17644             'IPC::Msg' => '2.08',
17645             'IPC::Semaphore' => '2.08',
17646             'IPC::SharedMem' => '2.08',
17647             'IPC::SysV' => '2.08',
17648             'JSON::PP' => '4.05',
17649             'JSON::PP::Boolean' => '4.05',
17650             'Math::Complex' => '1.5902',
17651             'Module::CoreList' => '5.20200820',
17652             'Module::CoreList::Utils'=> '5.20200820',
17653             'Net::Ping' => '2.73_01',
17654             'POSIX' => '1.95',
17655             'PerlIO::mmap' => '0.017',
17656             'Pod::Usage' => '1.70',
17657             'Safe' => '2.42',
17658             'Socket' => '2.030',
17659             'Storable' => '3.22',
17660             'Time::HiRes' => '1.9765',
17661             'Unicode::Normalize' => '1.28',
17662             'XS::APItest' => '1.11',
17663             'XS::Typemap' => '0.18',
17664             'feature' => '1.60',
17665             'mro' => '1.24',
17666             'strict' => '1.12',
17667             'threads' => '2.26',
17668             'threads::shared' => '1.62',
17669             'warnings' => '1.48',
17670             },
17671             removed => {
17672             'Moped::Msg' => 1,
17673             }
17674             },
17675             5.033002 => {
17676             delta_from => 5.033001,
17677             changed => {
17678             'Archive::Tar' => '2.38',
17679             'Archive::Tar::Constant'=> '2.38',
17680             'Archive::Tar::File' => '2.38',
17681             'B::Op_private' => '5.033002',
17682             'Compress::Raw::Bzip2' => '2.096',
17683             'Compress::Raw::Zlib' => '2.096',
17684             'Compress::Zlib' => '2.096',
17685             'Config' => '5.033002',
17686             'DB_File' => '1.854',
17687             'Env' => '1.05',
17688             'Errno' => '1.32',
17689             'ExtUtils::Install' => '2.18',
17690             'ExtUtils::Installed' => '2.18',
17691             'ExtUtils::Packlist' => '2.18',
17692             'Filter::Util::Call' => '1.60',
17693             'IO::Compress::Adapter::Bzip2'=> '2.096',
17694             'IO::Compress::Adapter::Deflate'=> '2.096',
17695             'IO::Compress::Adapter::Identity'=> '2.096',
17696             'IO::Compress::Base' => '2.096',
17697             'IO::Compress::Base::Common'=> '2.096',
17698             'IO::Compress::Bzip2' => '2.096',
17699             'IO::Compress::Deflate' => '2.096',
17700             'IO::Compress::Gzip' => '2.096',
17701             'IO::Compress::Gzip::Constants'=> '2.096',
17702             'IO::Compress::RawDeflate'=> '2.096',
17703             'IO::Compress::Zip' => '2.096',
17704             'IO::Compress::Zip::Constants'=> '2.096',
17705             'IO::Compress::Zlib::Constants'=> '2.096',
17706             'IO::Compress::Zlib::Extra'=> '2.096',
17707             'IO::Socket::IP' => '0.41',
17708             'IO::Uncompress::Adapter::Bunzip2'=> '2.096',
17709             'IO::Uncompress::Adapter::Identity'=> '2.096',
17710             'IO::Uncompress::Adapter::Inflate'=> '2.096',
17711             'IO::Uncompress::AnyInflate'=> '2.096',
17712             'IO::Uncompress::AnyUncompress'=> '2.096',
17713             'IO::Uncompress::Base' => '2.096',
17714             'IO::Uncompress::Bunzip2'=> '2.096',
17715             'IO::Uncompress::Gunzip'=> '2.096',
17716             'IO::Uncompress::Inflate'=> '2.096',
17717             'IO::Uncompress::RawInflate'=> '2.096',
17718             'IO::Uncompress::Unzip' => '2.096',
17719             'IO::Zlib' => '1.11',
17720             'Module::CoreList' => '5.20200920',
17721             'Module::CoreList::Utils'=> '5.20200920',
17722             'Module::Load::Conditional'=> '0.74',
17723             'Opcode' => '1.48',
17724             'PerlIO::scalar' => '0.31',
17725             'Safe' => '2.43',
17726             'Test2' => '1.302181',
17727             'Test2::API' => '1.302181',
17728             'Test2::API::Breakage' => '1.302181',
17729             'Test2::API::Context' => '1.302181',
17730             'Test2::API::Instance' => '1.302181',
17731             'Test2::API::InterceptResult'=> '1.302181',
17732             'Test2::API::InterceptResult::Event'=> '1.302181',
17733             'Test2::API::InterceptResult::Facet'=> '1.302181',
17734             'Test2::API::InterceptResult::Hub'=> '1.302181',
17735             'Test2::API::InterceptResult::Squasher'=> '1.302181',
17736             'Test2::API::Stack' => '1.302181',
17737             'Test2::Event' => '1.302181',
17738             'Test2::Event::Bail' => '1.302181',
17739             'Test2::Event::Diag' => '1.302181',
17740             'Test2::Event::Encoding'=> '1.302181',
17741             'Test2::Event::Exception'=> '1.302181',
17742             'Test2::Event::Fail' => '1.302181',
17743             'Test2::Event::Generic' => '1.302181',
17744             'Test2::Event::Note' => '1.302181',
17745             'Test2::Event::Ok' => '1.302181',
17746             'Test2::Event::Pass' => '1.302181',
17747             'Test2::Event::Plan' => '1.302181',
17748             'Test2::Event::Skip' => '1.302181',
17749             'Test2::Event::Subtest' => '1.302181',
17750             'Test2::Event::TAP::Version'=> '1.302181',
17751             'Test2::Event::V2' => '1.302181',
17752             'Test2::Event::Waiting' => '1.302181',
17753             'Test2::EventFacet' => '1.302181',
17754             'Test2::EventFacet::About'=> '1.302181',
17755             'Test2::EventFacet::Amnesty'=> '1.302181',
17756             'Test2::EventFacet::Assert'=> '1.302181',
17757             'Test2::EventFacet::Control'=> '1.302181',
17758             'Test2::EventFacet::Error'=> '1.302181',
17759             'Test2::EventFacet::Hub'=> '1.302181',
17760             'Test2::EventFacet::Info'=> '1.302181',
17761             'Test2::EventFacet::Info::Table'=> '1.302181',
17762             'Test2::EventFacet::Meta'=> '1.302181',
17763             'Test2::EventFacet::Parent'=> '1.302181',
17764             'Test2::EventFacet::Plan'=> '1.302181',
17765             'Test2::EventFacet::Render'=> '1.302181',
17766             'Test2::EventFacet::Trace'=> '1.302181',
17767             'Test2::Formatter' => '1.302181',
17768             'Test2::Formatter::TAP' => '1.302181',
17769             'Test2::Hub' => '1.302181',
17770             'Test2::Hub::Interceptor'=> '1.302181',
17771             'Test2::Hub::Interceptor::Terminator'=> '1.302181',
17772             'Test2::Hub::Subtest' => '1.302181',
17773             'Test2::IPC' => '1.302181',
17774             'Test2::IPC::Driver' => '1.302181',
17775             'Test2::IPC::Driver::Files'=> '1.302181',
17776             'Test2::Tools::Tiny' => '1.302181',
17777             'Test2::Util' => '1.302181',
17778             'Test2::Util::ExternalMeta'=> '1.302181',
17779             'Test2::Util::Facets2Legacy'=> '1.302181',
17780             'Test2::Util::HashBase' => '1.302181',
17781             'Test2::Util::Trace' => '1.302181',
17782             'Test::Builder' => '1.302181',
17783             'Test::Builder::Formatter'=> '1.302181',
17784             'Test::Builder::Module' => '1.302181',
17785             'Test::Builder::Tester' => '1.302181',
17786             'Test::Builder::Tester::Color'=> '1.302181',
17787             'Test::Builder::TodoDiag'=> '1.302181',
17788             'Test::More' => '1.302181',
17789             'Test::Simple' => '1.302181',
17790             'Test::Tester' => '1.302181',
17791             'Test::Tester::Capture' => '1.302181',
17792             'Test::Tester::CaptureRunner'=> '1.302181',
17793             'Test::Tester::Delegate'=> '1.302181',
17794             'Test::use::ok' => '1.302181',
17795             'ok' => '1.302181',
17796             'overload' => '1.32',
17797             },
17798             removed => {
17799             }
17800             },
17801             5.033003 => {
17802             delta_from => 5.033002,
17803             changed => {
17804             'Amiga::ARexx' => '0.05',
17805             'App::Cpan' => '1.676',
17806             'B::Op_private' => '5.033003',
17807             'CPAN' => '2.28',
17808             'CPAN::FTP' => '5.5013',
17809             'CPAN::FirstTime' => '5.5315',
17810             'Config' => '5.033003',
17811             'DB_File' => '1.855',
17812             'Data::Dumper' => '2.176',
17813             'Devel::PPPort' => '3.62',
17814             'Devel::Peek' => '1.30',
17815             'Digest' => '1.19',
17816             'Digest::MD5' => '2.58',
17817             'Digest::base' => '1.19',
17818             'Digest::file' => '1.19',
17819             'Encode' => '3.07',
17820             'Encode::GSM0338' => '2.08',
17821             'Errno' => '1.33',
17822             'Exporter' => '5.76',
17823             'Exporter::Heavy' => '5.76',
17824             'ExtUtils::Command' => '7.48',
17825             'ExtUtils::Command::MM' => '7.48',
17826             'ExtUtils::Liblist' => '7.48',
17827             'ExtUtils::Liblist::Kid'=> '7.48',
17828             'ExtUtils::MM' => '7.48',
17829             'ExtUtils::MM_AIX' => '7.48',
17830             'ExtUtils::MM_Any' => '7.48',
17831             'ExtUtils::MM_BeOS' => '7.48',
17832             'ExtUtils::MM_Cygwin' => '7.48',
17833             'ExtUtils::MM_DOS' => '7.48',
17834             'ExtUtils::MM_Darwin' => '7.48',
17835             'ExtUtils::MM_MacOS' => '7.48',
17836             'ExtUtils::MM_NW5' => '7.48',
17837             'ExtUtils::MM_OS2' => '7.48',
17838             'ExtUtils::MM_OS390' => '7.48',
17839             'ExtUtils::MM_QNX' => '7.48',
17840             'ExtUtils::MM_UWIN' => '7.48',
17841             'ExtUtils::MM_Unix' => '7.48',
17842             'ExtUtils::MM_VMS' => '7.48',
17843             'ExtUtils::MM_VOS' => '7.48',
17844             'ExtUtils::MM_Win32' => '7.48',
17845             'ExtUtils::MM_Win95' => '7.48',
17846             'ExtUtils::MY' => '7.48',
17847             'ExtUtils::MakeMaker' => '7.48',
17848             'ExtUtils::MakeMaker::Config'=> '7.48',
17849             'ExtUtils::MakeMaker::Locale'=> '7.48',
17850             'ExtUtils::MakeMaker::version'=> '7.48',
17851             'ExtUtils::MakeMaker::version::regex'=> '7.48',
17852             'ExtUtils::Mkbootstrap' => '7.48',
17853             'ExtUtils::Mksymlists' => '7.48',
17854             'ExtUtils::PL2Bat' => '0.003',
17855             'ExtUtils::testlib' => '7.48',
17856             'File::Temp' => '0.2311',
17857             'FindBin' => '1.52',
17858             'Getopt::Long' => '2.52',
17859             'Getopt::Std' => '1.13',
17860             'I18N::LangTags' => '0.45',
17861             'MIME::Base64' => '3.16',
17862             'MIME::QuotedPrint' => '3.16',
17863             'Module::CoreList' => '5.20201020',
17864             'Module::CoreList::Utils'=> '5.20201020',
17865             'Module::Load' => '0.36',
17866             'Pod::Checker' => '1.74',
17867             'Pod::Simple' => '3.41',
17868             'Pod::Simple::BlackBox' => '3.41',
17869             'Pod::Simple::Checker' => '3.41',
17870             'Pod::Simple::Debug' => '3.41',
17871             'Pod::Simple::DumpAsText'=> '3.41',
17872             'Pod::Simple::DumpAsXML'=> '3.41',
17873             'Pod::Simple::HTML' => '3.41',
17874             'Pod::Simple::HTMLBatch'=> '3.41',
17875             'Pod::Simple::LinkSection'=> '3.41',
17876             'Pod::Simple::Methody' => '3.41',
17877             'Pod::Simple::Progress' => '3.41',
17878             'Pod::Simple::PullParser'=> '3.41',
17879             'Pod::Simple::PullParserEndToken'=> '3.41',
17880             'Pod::Simple::PullParserStartToken'=> '3.41',
17881             'Pod::Simple::PullParserTextToken'=> '3.41',
17882             'Pod::Simple::PullParserToken'=> '3.41',
17883             'Pod::Simple::RTF' => '3.41',
17884             'Pod::Simple::Search' => '3.41',
17885             'Pod::Simple::SimpleTree'=> '3.41',
17886             'Pod::Simple::Text' => '3.41',
17887             'Pod::Simple::TextContent'=> '3.41',
17888             'Pod::Simple::TiedOutFH'=> '3.41',
17889             'Pod::Simple::Transcode'=> '3.41',
17890             'Pod::Simple::TranscodeDumb'=> '3.41',
17891             'Pod::Simple::TranscodeSmart'=> '3.41',
17892             'Pod::Simple::XHTML' => '3.41',
17893             'Pod::Simple::XMLOutStream'=> '3.41',
17894             'Pod::Usage' => '2.01',
17895             'Storable' => '3.23',
17896             'Symbol' => '1.09',
17897             'Test2' => '1.302182',
17898             'Test2::API' => '1.302182',
17899             'Test2::API::Breakage' => '1.302182',
17900             'Test2::API::Context' => '1.302182',
17901             'Test2::API::Instance' => '1.302182',
17902             'Test2::API::InterceptResult'=> '1.302182',
17903             'Test2::API::InterceptResult::Event'=> '1.302182',
17904             'Test2::API::InterceptResult::Facet'=> '1.302182',
17905             'Test2::API::InterceptResult::Hub'=> '1.302182',
17906             'Test2::API::InterceptResult::Squasher'=> '1.302182',
17907             'Test2::API::Stack' => '1.302182',
17908             'Test2::Event' => '1.302182',
17909             'Test2::Event::Bail' => '1.302182',
17910             'Test2::Event::Diag' => '1.302182',
17911             'Test2::Event::Encoding'=> '1.302182',
17912             'Test2::Event::Exception'=> '1.302182',
17913             'Test2::Event::Fail' => '1.302182',
17914             'Test2::Event::Generic' => '1.302182',
17915             'Test2::Event::Note' => '1.302182',
17916             'Test2::Event::Ok' => '1.302182',
17917             'Test2::Event::Pass' => '1.302182',
17918             'Test2::Event::Plan' => '1.302182',
17919             'Test2::Event::Skip' => '1.302182',
17920             'Test2::Event::Subtest' => '1.302182',
17921             'Test2::Event::TAP::Version'=> '1.302182',
17922             'Test2::Event::V2' => '1.302182',
17923             'Test2::Event::Waiting' => '1.302182',
17924             'Test2::EventFacet' => '1.302182',
17925             'Test2::EventFacet::About'=> '1.302182',
17926             'Test2::EventFacet::Amnesty'=> '1.302182',
17927             'Test2::EventFacet::Assert'=> '1.302182',
17928             'Test2::EventFacet::Control'=> '1.302182',
17929             'Test2::EventFacet::Error'=> '1.302182',
17930             'Test2::EventFacet::Hub'=> '1.302182',
17931             'Test2::EventFacet::Info'=> '1.302182',
17932             'Test2::EventFacet::Info::Table'=> '1.302182',
17933             'Test2::EventFacet::Meta'=> '1.302182',
17934             'Test2::EventFacet::Parent'=> '1.302182',
17935             'Test2::EventFacet::Plan'=> '1.302182',
17936             'Test2::EventFacet::Render'=> '1.302182',
17937             'Test2::EventFacet::Trace'=> '1.302182',
17938             'Test2::Formatter' => '1.302182',
17939             'Test2::Formatter::TAP' => '1.302182',
17940             'Test2::Hub' => '1.302182',
17941             'Test2::Hub::Interceptor'=> '1.302182',
17942             'Test2::Hub::Interceptor::Terminator'=> '1.302182',
17943             'Test2::Hub::Subtest' => '1.302182',
17944             'Test2::IPC' => '1.302182',
17945             'Test2::IPC::Driver' => '1.302182',
17946             'Test2::IPC::Driver::Files'=> '1.302182',
17947             'Test2::Tools::Tiny' => '1.302182',
17948             'Test2::Util' => '1.302182',
17949             'Test2::Util::ExternalMeta'=> '1.302182',
17950             'Test2::Util::Facets2Legacy'=> '1.302182',
17951             'Test2::Util::HashBase' => '1.302182',
17952             'Test2::Util::Trace' => '1.302182',
17953             'Test::Builder' => '1.302182',
17954             'Test::Builder::Formatter'=> '1.302182',
17955             'Test::Builder::Module' => '1.302182',
17956             'Test::Builder::Tester' => '1.302182',
17957             'Test::Builder::Tester::Color'=> '1.302182',
17958             'Test::Builder::TodoDiag'=> '1.302182',
17959             'Test::More' => '1.302182',
17960             'Test::Simple' => '1.302182',
17961             'Test::Tester' => '1.302182',
17962             'Test::Tester::Capture' => '1.302182',
17963             'Test::Tester::CaptureRunner'=> '1.302182',
17964             'Test::Tester::Delegate'=> '1.302182',
17965             'Test::use::ok' => '1.302182',
17966             'Tie::RefHash' => '1.40',
17967             'Time::Local' => '1.30',
17968             'Unicode::Collate' => '1.29',
17969             'Unicode::Collate::CJK::Big5'=> '1.29',
17970             'Unicode::Collate::CJK::GB2312'=> '1.29',
17971             'Unicode::Collate::CJK::JISX0208'=> '1.29',
17972             'Unicode::Collate::CJK::Korean'=> '1.29',
17973             'Unicode::Collate::CJK::Pinyin'=> '1.29',
17974             'Unicode::Collate::CJK::Stroke'=> '1.29',
17975             'Unicode::Collate::CJK::Zhuyin'=> '1.29',
17976             'Unicode::Collate::Locale'=> '1.29',
17977             'Win32' => '0.54',
17978             'XS::APItest' => '1.12',
17979             'bytes' => '1.08',
17980             'experimental' => '0.022',
17981             'feature' => '1.61',
17982             'if' => '0.0609',
17983             'locale' => '1.10',
17984             'mro' => '1.25',
17985             'ok' => '1.302182',
17986             'overload' => '1.33',
17987             're' => '0.41',
17988             'subs' => '1.04',
17989             'utf8' => '1.24',
17990             'version' => '0.9928',
17991             'version::regex' => '0.9928',
17992             },
17993             removed => {
17994             }
17995             },
17996             5.033004 => {
17997             delta_from => 5.033003,
17998             changed => {
17999             'B' => '1.82',
18000             'B::Op_private' => '5.033004',
18001             'Config' => '5.033004',
18002             'Cwd' => '3.79',
18003             'ExtUtils::CBuilder' => '0.280235',
18004             'ExtUtils::CBuilder::Base'=> '0.280235',
18005             'ExtUtils::CBuilder::Platform::Unix'=> '0.280235',
18006             'ExtUtils::CBuilder::Platform::VMS'=> '0.280235',
18007             'ExtUtils::CBuilder::Platform::Windows'=> '0.280235',
18008             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280235',
18009             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280235',
18010             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280235',
18011             'ExtUtils::CBuilder::Platform::aix'=> '0.280235',
18012             'ExtUtils::CBuilder::Platform::android'=> '0.280235',
18013             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280235',
18014             'ExtUtils::CBuilder::Platform::darwin'=> '0.280235',
18015             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280235',
18016             'ExtUtils::CBuilder::Platform::os2'=> '0.280235',
18017             'ExtUtils::Command' => '7.56',
18018             'ExtUtils::Command::MM' => '7.56',
18019             'ExtUtils::Liblist' => '7.56',
18020             'ExtUtils::Liblist::Kid'=> '7.56',
18021             'ExtUtils::MM' => '7.56',
18022             'ExtUtils::MM_AIX' => '7.56',
18023             'ExtUtils::MM_Any' => '7.56',
18024             'ExtUtils::MM_BeOS' => '7.56',
18025             'ExtUtils::MM_Cygwin' => '7.56',
18026             'ExtUtils::MM_DOS' => '7.56',
18027             'ExtUtils::MM_Darwin' => '7.56',
18028             'ExtUtils::MM_MacOS' => '7.56',
18029             'ExtUtils::MM_NW5' => '7.56',
18030             'ExtUtils::MM_OS2' => '7.56',
18031             'ExtUtils::MM_OS390' => '7.56',
18032             'ExtUtils::MM_QNX' => '7.56',
18033             'ExtUtils::MM_UWIN' => '7.56',
18034             'ExtUtils::MM_Unix' => '7.56',
18035             'ExtUtils::MM_VMS' => '7.56',
18036             'ExtUtils::MM_VOS' => '7.56',
18037             'ExtUtils::MM_Win32' => '7.56',
18038             'ExtUtils::MM_Win95' => '7.56',
18039             'ExtUtils::MY' => '7.56',
18040             'ExtUtils::MakeMaker' => '7.56',
18041             'ExtUtils::MakeMaker::Config'=> '7.56',
18042             'ExtUtils::MakeMaker::Locale'=> '7.56',
18043             'ExtUtils::MakeMaker::version'=> '7.56',
18044             'ExtUtils::MakeMaker::version::regex'=> '7.56',
18045             'ExtUtils::Mkbootstrap' => '7.56',
18046             'ExtUtils::Mksymlists' => '7.56',
18047             'ExtUtils::testlib' => '7.56',
18048             'File::Fetch' => '1.00',
18049             'File::Path' => '2.18',
18050             'File::Spec' => '3.79',
18051             'File::Spec::AmigaOS' => '3.79',
18052             'File::Spec::Cygwin' => '3.79',
18053             'File::Spec::Epoc' => '3.79',
18054             'File::Spec::Functions' => '3.79',
18055             'File::Spec::Mac' => '3.79',
18056             'File::Spec::OS2' => '3.79',
18057             'File::Spec::Unix' => '3.79',
18058             'File::Spec::VMS' => '3.79',
18059             'IPC::Msg' => '2.09',
18060             'IPC::Semaphore' => '2.09',
18061             'IPC::SharedMem' => '2.09',
18062             'IPC::SysV' => '2.09',
18063             'Module::CoreList' => '5.20201120',
18064             'Module::CoreList::Utils'=> '5.20201120',
18065             'Net::Ping' => '2.74',
18066             'Pod::Html' => '1.26',
18067             'Pod::Simple' => '3.42',
18068             'Pod::Simple::BlackBox' => '3.42',
18069             'Pod::Simple::Checker' => '3.42',
18070             'Pod::Simple::Debug' => '3.42',
18071             'Pod::Simple::DumpAsText'=> '3.42',
18072             'Pod::Simple::DumpAsXML'=> '3.42',
18073             'Pod::Simple::HTML' => '3.42',
18074             'Pod::Simple::HTMLBatch'=> '3.42',
18075             'Pod::Simple::LinkSection'=> '3.42',
18076             'Pod::Simple::Methody' => '3.42',
18077             'Pod::Simple::Progress' => '3.42',
18078             'Pod::Simple::PullParser'=> '3.42',
18079             'Pod::Simple::PullParserEndToken'=> '3.42',
18080             'Pod::Simple::PullParserStartToken'=> '3.42',
18081             'Pod::Simple::PullParserTextToken'=> '3.42',
18082             'Pod::Simple::PullParserToken'=> '3.42',
18083             'Pod::Simple::RTF' => '3.42',
18084             'Pod::Simple::Search' => '3.42',
18085             'Pod::Simple::SimpleTree'=> '3.42',
18086             'Pod::Simple::Text' => '3.42',
18087             'Pod::Simple::TextContent'=> '3.42',
18088             'Pod::Simple::TiedOutFH'=> '3.42',
18089             'Pod::Simple::Transcode'=> '3.42',
18090             'Pod::Simple::TranscodeDumb'=> '3.42',
18091             'Pod::Simple::TranscodeSmart'=> '3.42',
18092             'Pod::Simple::XHTML' => '3.42',
18093             'Pod::Simple::XMLOutStream'=> '3.42',
18094             'Test2' => '1.302183',
18095             'Test2::API' => '1.302183',
18096             'Test2::API::Breakage' => '1.302183',
18097             'Test2::API::Context' => '1.302183',
18098             'Test2::API::Instance' => '1.302183',
18099             'Test2::API::InterceptResult'=> '1.302183',
18100             'Test2::API::InterceptResult::Event'=> '1.302183',
18101             'Test2::API::InterceptResult::Facet'=> '1.302183',
18102             'Test2::API::InterceptResult::Hub'=> '1.302183',
18103             'Test2::API::InterceptResult::Squasher'=> '1.302183',
18104             'Test2::API::Stack' => '1.302183',
18105             'Test2::Event' => '1.302183',
18106             'Test2::Event::Bail' => '1.302183',
18107             'Test2::Event::Diag' => '1.302183',
18108             'Test2::Event::Encoding'=> '1.302183',
18109             'Test2::Event::Exception'=> '1.302183',
18110             'Test2::Event::Fail' => '1.302183',
18111             'Test2::Event::Generic' => '1.302183',
18112             'Test2::Event::Note' => '1.302183',
18113             'Test2::Event::Ok' => '1.302183',
18114             'Test2::Event::Pass' => '1.302183',
18115             'Test2::Event::Plan' => '1.302183',
18116             'Test2::Event::Skip' => '1.302183',
18117             'Test2::Event::Subtest' => '1.302183',
18118             'Test2::Event::TAP::Version'=> '1.302183',
18119             'Test2::Event::V2' => '1.302183',
18120             'Test2::Event::Waiting' => '1.302183',
18121             'Test2::EventFacet' => '1.302183',
18122             'Test2::EventFacet::About'=> '1.302183',
18123             'Test2::EventFacet::Amnesty'=> '1.302183',
18124             'Test2::EventFacet::Assert'=> '1.302183',
18125             'Test2::EventFacet::Control'=> '1.302183',
18126             'Test2::EventFacet::Error'=> '1.302183',
18127             'Test2::EventFacet::Hub'=> '1.302183',
18128             'Test2::EventFacet::Info'=> '1.302183',
18129             'Test2::EventFacet::Info::Table'=> '1.302183',
18130             'Test2::EventFacet::Meta'=> '1.302183',
18131             'Test2::EventFacet::Parent'=> '1.302183',
18132             'Test2::EventFacet::Plan'=> '1.302183',
18133             'Test2::EventFacet::Render'=> '1.302183',
18134             'Test2::EventFacet::Trace'=> '1.302183',
18135             'Test2::Formatter' => '1.302183',
18136             'Test2::Formatter::TAP' => '1.302183',
18137             'Test2::Hub' => '1.302183',
18138             'Test2::Hub::Interceptor'=> '1.302183',
18139             'Test2::Hub::Interceptor::Terminator'=> '1.302183',
18140             'Test2::Hub::Subtest' => '1.302183',
18141             'Test2::IPC' => '1.302183',
18142             'Test2::IPC::Driver' => '1.302183',
18143             'Test2::IPC::Driver::Files'=> '1.302183',
18144             'Test2::Tools::Tiny' => '1.302183',
18145             'Test2::Util' => '1.302183',
18146             'Test2::Util::ExternalMeta'=> '1.302183',
18147             'Test2::Util::Facets2Legacy'=> '1.302183',
18148             'Test2::Util::HashBase' => '1.302183',
18149             'Test2::Util::Trace' => '1.302183',
18150             'Test::Builder' => '1.302183',
18151             'Test::Builder::Formatter'=> '1.302183',
18152             'Test::Builder::Module' => '1.302183',
18153             'Test::Builder::Tester' => '1.302183',
18154             'Test::Builder::Tester::Color'=> '1.302183',
18155             'Test::Builder::TodoDiag'=> '1.302183',
18156             'Test::More' => '1.302183',
18157             'Test::Simple' => '1.302183',
18158             'Test::Tester' => '1.302183',
18159             'Test::Tester::Capture' => '1.302183',
18160             'Test::Tester::CaptureRunner'=> '1.302183',
18161             'Test::Tester::Delegate'=> '1.302183',
18162             'Test::use::ok' => '1.302183',
18163             'XS::APItest' => '1.13',
18164             'ok' => '1.302183',
18165             'perlfaq' => '5.20201107',
18166             },
18167             removed => {
18168             }
18169             },
18170             5.033005 => {
18171             delta_from => 5.033004,
18172             changed => {
18173             'App::Prove' => '3.43',
18174             'App::Prove::State' => '3.43',
18175             'App::Prove::State::Result'=> '3.43',
18176             'App::Prove::State::Result::Test'=> '3.43',
18177             'B::Op_private' => '5.033005',
18178             'Carp' => '1.51',
18179             'Carp::Heavy' => '1.51',
18180             'Config' => '5.033005',
18181             'Config::Perl::V' => '0.33',
18182             'Cwd' => '3.80',
18183             'DynaLoader' => '1.49',
18184             'Encode' => '3.08',
18185             'Encode::GSM0338' => '2.09',
18186             'ExtUtils::Install' => '2.20',
18187             'ExtUtils::Installed' => '2.20',
18188             'ExtUtils::Packlist' => '2.20',
18189             'ExtUtils::ParseXS' => '3.42',
18190             'ExtUtils::ParseXS::Constants'=> '3.42',
18191             'ExtUtils::ParseXS::CountLines'=> '3.42',
18192             'ExtUtils::ParseXS::Eval'=> '3.42',
18193             'ExtUtils::ParseXS::Utilities'=> '3.42',
18194             'File::Copy' => '2.35',
18195             'File::Find' => '1.38',
18196             'File::Spec' => '3.80',
18197             'File::Spec::AmigaOS' => '3.80',
18198             'File::Spec::Cygwin' => '3.80',
18199             'File::Spec::Epoc' => '3.80',
18200             'File::Spec::Functions' => '3.80',
18201             'File::Spec::Mac' => '3.80',
18202             'File::Spec::OS2' => '3.80',
18203             'File::Spec::Unix' => '3.80',
18204             'File::Spec::VMS' => '3.80',
18205             'File::Spec::Win32' => '3.80',
18206             'Module::CoreList' => '5.20201220',
18207             'Module::CoreList::Utils'=> '5.20201220',
18208             'Net::Cmd' => '3.12',
18209             'Net::Config' => '3.12',
18210             'Net::Domain' => '3.12',
18211             'Net::FTP' => '3.12',
18212             'Net::FTP::A' => '3.12',
18213             'Net::FTP::E' => '3.12',
18214             'Net::FTP::I' => '3.12',
18215             'Net::FTP::L' => '3.12',
18216             'Net::FTP::dataconn' => '3.12',
18217             'Net::NNTP' => '3.12',
18218             'Net::Netrc' => '3.12',
18219             'Net::POP3' => '3.12',
18220             'Net::SMTP' => '3.12',
18221             'Net::Time' => '3.12',
18222             'ODBM_File' => '1.17',
18223             'Opcode' => '1.49',
18224             'POSIX' => '1.96',
18225             'PerlIO::via::QuotedPrint'=> '0.09',
18226             'TAP::Base' => '3.43',
18227             'TAP::Formatter::Base' => '3.43',
18228             'TAP::Formatter::Color' => '3.43',
18229             'TAP::Formatter::Console'=> '3.43',
18230             'TAP::Formatter::Console::ParallelSession'=> '3.43',
18231             'TAP::Formatter::Console::Session'=> '3.43',
18232             'TAP::Formatter::File' => '3.43',
18233             'TAP::Formatter::File::Session'=> '3.43',
18234             'TAP::Formatter::Session'=> '3.43',
18235             'TAP::Harness' => '3.43',
18236             'TAP::Harness::Env' => '3.43',
18237             'TAP::Object' => '3.43',
18238             'TAP::Parser' => '3.43',
18239             'TAP::Parser::Aggregator'=> '3.43',
18240             'TAP::Parser::Grammar' => '3.43',
18241             'TAP::Parser::Iterator' => '3.43',
18242             'TAP::Parser::Iterator::Array'=> '3.43',
18243             'TAP::Parser::Iterator::Process'=> '3.43',
18244             'TAP::Parser::Iterator::Stream'=> '3.43',
18245             'TAP::Parser::IteratorFactory'=> '3.43',
18246             'TAP::Parser::Multiplexer'=> '3.43',
18247             'TAP::Parser::Result' => '3.43',
18248             'TAP::Parser::Result::Bailout'=> '3.43',
18249             'TAP::Parser::Result::Comment'=> '3.43',
18250             'TAP::Parser::Result::Plan'=> '3.43',
18251             'TAP::Parser::Result::Pragma'=> '3.43',
18252             'TAP::Parser::Result::Test'=> '3.43',
18253             'TAP::Parser::Result::Unknown'=> '3.43',
18254             'TAP::Parser::Result::Version'=> '3.43',
18255             'TAP::Parser::Result::YAML'=> '3.43',
18256             'TAP::Parser::ResultFactory'=> '3.43',
18257             'TAP::Parser::Scheduler'=> '3.43',
18258             'TAP::Parser::Scheduler::Job'=> '3.43',
18259             'TAP::Parser::Scheduler::Spinner'=> '3.43',
18260             'TAP::Parser::Source' => '3.43',
18261             'TAP::Parser::SourceHandler'=> '3.43',
18262             'TAP::Parser::SourceHandler::Executable'=> '3.43',
18263             'TAP::Parser::SourceHandler::File'=> '3.43',
18264             'TAP::Parser::SourceHandler::Handle'=> '3.43',
18265             'TAP::Parser::SourceHandler::Perl'=> '3.43',
18266             'TAP::Parser::SourceHandler::RawTAP'=> '3.43',
18267             'TAP::Parser::YAMLish::Reader'=> '3.43',
18268             'TAP::Parser::YAMLish::Writer'=> '3.43',
18269             'Test::Harness' => '3.43',
18270             'Text::Balanced' => '2.04',
18271             'Time::HiRes' => '1.9766',
18272             'XS::APItest' => '1.14',
18273             'warnings' => '1.49',
18274             },
18275             removed => {
18276             }
18277             },
18278             5.033006 => {
18279             delta_from => 5.033005,
18280             changed => {
18281             'B::Op_private' => '5.033006',
18282             'Carp' => '1.52',
18283             'Carp::Heavy' => '1.52',
18284             'Compress::Raw::Bzip2' => '2.100',
18285             'Compress::Raw::Zlib' => '2.100',
18286             'Compress::Zlib' => '2.100',
18287             'Config' => '5.033006',
18288             'DynaLoader' => '1.50',
18289             'ExtUtils::Command' => '7.58',
18290             'ExtUtils::Command::MM' => '7.58',
18291             'ExtUtils::Liblist' => '7.58',
18292             'ExtUtils::Liblist::Kid'=> '7.58',
18293             'ExtUtils::MM' => '7.58',
18294             'ExtUtils::MM_AIX' => '7.58',
18295             'ExtUtils::MM_Any' => '7.58',
18296             'ExtUtils::MM_BeOS' => '7.58',
18297             'ExtUtils::MM_Cygwin' => '7.58',
18298             'ExtUtils::MM_DOS' => '7.58',
18299             'ExtUtils::MM_Darwin' => '7.58',
18300             'ExtUtils::MM_MacOS' => '7.58',
18301             'ExtUtils::MM_NW5' => '7.58',
18302             'ExtUtils::MM_OS2' => '7.58',
18303             'ExtUtils::MM_OS390' => '7.58',
18304             'ExtUtils::MM_QNX' => '7.58',
18305             'ExtUtils::MM_UWIN' => '7.58',
18306             'ExtUtils::MM_Unix' => '7.58',
18307             'ExtUtils::MM_VMS' => '7.58',
18308             'ExtUtils::MM_VOS' => '7.58',
18309             'ExtUtils::MM_Win32' => '7.58',
18310             'ExtUtils::MM_Win95' => '7.58',
18311             'ExtUtils::MY' => '7.58',
18312             'ExtUtils::MakeMaker' => '7.58',
18313             'ExtUtils::MakeMaker::Config'=> '7.58',
18314             'ExtUtils::MakeMaker::Locale'=> '7.58',
18315             'ExtUtils::MakeMaker::version'=> '7.58',
18316             'ExtUtils::MakeMaker::version::regex'=> '7.58',
18317             'ExtUtils::Manifest' => '1.73',
18318             'ExtUtils::Mkbootstrap' => '7.58',
18319             'ExtUtils::Mksymlists' => '7.58',
18320             'ExtUtils::testlib' => '7.58',
18321             'GDBM_File' => '1.19',
18322             'IO' => '1.45',
18323             'IO::Compress::Adapter::Bzip2'=> '2.100',
18324             'IO::Compress::Adapter::Deflate'=> '2.100',
18325             'IO::Compress::Adapter::Identity'=> '2.100',
18326             'IO::Compress::Base' => '2.100',
18327             'IO::Compress::Base::Common'=> '2.100',
18328             'IO::Compress::Bzip2' => '2.100',
18329             'IO::Compress::Deflate' => '2.100',
18330             'IO::Compress::Gzip' => '2.100',
18331             'IO::Compress::Gzip::Constants'=> '2.100',
18332             'IO::Compress::RawDeflate'=> '2.100',
18333             'IO::Compress::Zip' => '2.100',
18334             'IO::Compress::Zip::Constants'=> '2.100',
18335             'IO::Compress::Zlib::Constants'=> '2.100',
18336             'IO::Compress::Zlib::Extra'=> '2.100',
18337             'IO::Dir' => '1.45',
18338             'IO::File' => '1.45',
18339             'IO::Handle' => '1.45',
18340             'IO::Pipe' => '1.45',
18341             'IO::Poll' => '1.45',
18342             'IO::Seekable' => '1.45',
18343             'IO::Select' => '1.45',
18344             'IO::Socket' => '1.45',
18345             'IO::Socket::INET' => '1.45',
18346             'IO::Socket::UNIX' => '1.45',
18347             'IO::Uncompress::Adapter::Bunzip2'=> '2.100',
18348             'IO::Uncompress::Adapter::Identity'=> '2.100',
18349             'IO::Uncompress::Adapter::Inflate'=> '2.100',
18350             'IO::Uncompress::AnyInflate'=> '2.100',
18351             'IO::Uncompress::AnyUncompress'=> '2.100',
18352             'IO::Uncompress::Base' => '2.100',
18353             'IO::Uncompress::Bunzip2'=> '2.100',
18354             'IO::Uncompress::Gunzip'=> '2.100',
18355             'IO::Uncompress::Inflate'=> '2.100',
18356             'IO::Uncompress::RawInflate'=> '2.100',
18357             'IO::Uncompress::Unzip' => '2.100',
18358             'Module::CoreList' => '5.20210120',
18359             'Module::CoreList::Utils'=> '5.20210120',
18360             'Net::Cmd' => '3.13',
18361             'Net::Config' => '3.13',
18362             'Net::Domain' => '3.13',
18363             'Net::FTP' => '3.13',
18364             'Net::FTP::A' => '3.13',
18365             'Net::FTP::E' => '3.13',
18366             'Net::FTP::I' => '3.13',
18367             'Net::FTP::L' => '3.13',
18368             'Net::FTP::dataconn' => '3.13',
18369             'Net::NNTP' => '3.13',
18370             'Net::Netrc' => '3.13',
18371             'Net::POP3' => '3.13',
18372             'Net::SMTP' => '3.13',
18373             'Net::Time' => '3.13',
18374             'POSIX' => '1.97',
18375             'Socket' => '2.031',
18376             'XS::APItest' => '1.15',
18377             'feature' => '1.62',
18378             'warnings' => '1.50',
18379             },
18380             removed => {
18381             }
18382             },
18383             5.032001 => {
18384             delta_from => 5.032000,
18385             changed => {
18386             'B::Op_private' => '5.032001',
18387             'Config' => '5.032001',
18388             'Data::Dumper' => '2.174_01',
18389             'DynaLoader' => '1.47_01',
18390             'ExtUtils::Liblist::Kid'=> '7.44_01',
18391             'Module::CoreList' => '5.20210123',
18392             'Module::CoreList::Utils'=> '5.20210123',
18393             'Opcode' => '1.48',
18394             'Safe' => '2.41_01',
18395             'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
18396             },
18397             removed => {
18398             }
18399             },
18400             5.033007 => {
18401             delta_from => 5.033006,
18402             changed => {
18403             'B::Deparse' => '1.56',
18404             'B::Op_private' => '5.033007',
18405             'Config' => '5.033007',
18406             'ExtUtils::CBuilder' => '0.280236',
18407             'ExtUtils::CBuilder::Base'=> '0.280236',
18408             'ExtUtils::CBuilder::Platform::Unix'=> '0.280236',
18409             'ExtUtils::CBuilder::Platform::VMS'=> '0.280236',
18410             'ExtUtils::CBuilder::Platform::Windows'=> '0.280236',
18411             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280236',
18412             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280236',
18413             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280236',
18414             'ExtUtils::CBuilder::Platform::aix'=> '0.280236',
18415             'ExtUtils::CBuilder::Platform::android'=> '0.280236',
18416             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280236',
18417             'ExtUtils::CBuilder::Platform::darwin'=> '0.280236',
18418             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280236',
18419             'ExtUtils::CBuilder::Platform::os2'=> '0.280236',
18420             'ExtUtils::Command' => '7.60',
18421             'ExtUtils::Command::MM' => '7.60',
18422             'ExtUtils::Liblist' => '7.60',
18423             'ExtUtils::Liblist::Kid'=> '7.60',
18424             'ExtUtils::MM' => '7.60',
18425             'ExtUtils::MM_AIX' => '7.60',
18426             'ExtUtils::MM_Any' => '7.60',
18427             'ExtUtils::MM_BeOS' => '7.60',
18428             'ExtUtils::MM_Cygwin' => '7.60',
18429             'ExtUtils::MM_DOS' => '7.60',
18430             'ExtUtils::MM_Darwin' => '7.60',
18431             'ExtUtils::MM_MacOS' => '7.60',
18432             'ExtUtils::MM_NW5' => '7.60',
18433             'ExtUtils::MM_OS2' => '7.60',
18434             'ExtUtils::MM_OS390' => '7.60',
18435             'ExtUtils::MM_QNX' => '7.60',
18436             'ExtUtils::MM_UWIN' => '7.60',
18437             'ExtUtils::MM_Unix' => '7.60',
18438             'ExtUtils::MM_VMS' => '7.60',
18439             'ExtUtils::MM_VOS' => '7.60',
18440             'ExtUtils::MM_Win32' => '7.60',
18441             'ExtUtils::MM_Win95' => '7.60',
18442             'ExtUtils::MY' => '7.60',
18443             'ExtUtils::MakeMaker' => '7.60',
18444             'ExtUtils::MakeMaker::Config'=> '7.60',
18445             'ExtUtils::MakeMaker::Locale'=> '7.60',
18446             'ExtUtils::MakeMaker::version'=> '7.60',
18447             'ExtUtils::MakeMaker::version::regex'=> '7.60',
18448             'ExtUtils::Mkbootstrap' => '7.60',
18449             'ExtUtils::Mksymlists' => '7.60',
18450             'ExtUtils::PL2Bat' => '0.004',
18451             'ExtUtils::testlib' => '7.60',
18452             'Fatal' => '2.34',
18453             'File::Find' => '1.39',
18454             'Hash::Util' => '0.25',
18455             'IO' => '1.46',
18456             'IO::Dir' => '1.46',
18457             'IO::File' => '1.46',
18458             'IO::Handle' => '1.46',
18459             'IO::Pipe' => '1.46',
18460             'IO::Poll' => '1.46',
18461             'IO::Seekable' => '1.46',
18462             'IO::Select' => '1.46',
18463             'IO::Socket' => '1.46',
18464             'IO::Socket::INET' => '1.46',
18465             'IO::Socket::UNIX' => '1.46',
18466             'JSON::PP' => '4.06',
18467             'JSON::PP::Boolean' => '4.06',
18468             'Module::CoreList' => '5.20210220',
18469             'Module::CoreList::Utils'=> '5.20210220',
18470             'Opcode' => '1.50',
18471             'PerlIO::encoding' => '0.30',
18472             'Time::HiRes' => '1.9767',
18473             'autodie' => '2.34',
18474             'autodie::Scope::Guard' => '2.34',
18475             'autodie::Scope::GuardStack'=> '2.34',
18476             'autodie::Util' => '2.34',
18477             'autodie::exception' => '2.34',
18478             'autodie::exception::system'=> '2.34',
18479             'autodie::hints' => '2.34',
18480             'autodie::skip' => '2.34',
18481             'feature' => '1.63',
18482             'mro' => '1.25_001',
18483             'warnings' => '1.51',
18484             },
18485             removed => {
18486             }
18487             },
18488             5.033008 => {
18489             delta_from => 5.033007,
18490             changed => {
18491             'B::Op_private' => '5.033008',
18492             'Compress::Raw::Bzip2' => '2.101',
18493             'Compress::Raw::Zlib' => '2.101',
18494             'Compress::Zlib' => '2.102',
18495             'Config' => '5.033008',
18496             'Data::Dumper' => '2.177',
18497             'IO::Compress::Adapter::Bzip2'=> '2.102',
18498             'IO::Compress::Adapter::Deflate'=> '2.102',
18499             'IO::Compress::Adapter::Identity'=> '2.102',
18500             'IO::Compress::Base' => '2.102',
18501             'IO::Compress::Base::Common'=> '2.102',
18502             'IO::Compress::Bzip2' => '2.102',
18503             'IO::Compress::Deflate' => '2.102',
18504             'IO::Compress::Gzip' => '2.102',
18505             'IO::Compress::Gzip::Constants'=> '2.102',
18506             'IO::Compress::RawDeflate'=> '2.102',
18507             'IO::Compress::Zip' => '2.102',
18508             'IO::Compress::Zip::Constants'=> '2.102',
18509             'IO::Compress::Zlib::Constants'=> '2.102',
18510             'IO::Compress::Zlib::Extra'=> '2.102',
18511             'IO::Uncompress::Adapter::Bunzip2'=> '2.102',
18512             'IO::Uncompress::Adapter::Identity'=> '2.102',
18513             'IO::Uncompress::Adapter::Inflate'=> '2.102',
18514             'IO::Uncompress::AnyInflate'=> '2.102',
18515             'IO::Uncompress::AnyUncompress'=> '2.102',
18516             'IO::Uncompress::Base' => '2.102',
18517             'IO::Uncompress::Bunzip2'=> '2.102',
18518             'IO::Uncompress::Gunzip'=> '2.102',
18519             'IO::Uncompress::Inflate'=> '2.102',
18520             'IO::Uncompress::RawInflate'=> '2.102',
18521             'IO::Uncompress::Unzip' => '2.102',
18522             'Module::CoreList' => '5.20210320',
18523             'Module::CoreList::Utils'=> '5.20210320',
18524             'Pod::Html' => '1.27',
18525             'Win32' => '0.57',
18526             },
18527             removed => {
18528             }
18529             },
18530             5.033009 => {
18531             delta_from => 5.033008,
18532             changed => {
18533             'B::Op_private' => '5.033009',
18534             'Config' => '5.033009',
18535             'Data::Dumper' => '2.178',
18536             'ExtUtils::Command' => '7.62',
18537             'ExtUtils::Command::MM' => '7.62',
18538             'ExtUtils::Liblist' => '7.62',
18539             'ExtUtils::Liblist::Kid'=> '7.62',
18540             'ExtUtils::MM' => '7.62',
18541             'ExtUtils::MM_AIX' => '7.62',
18542             'ExtUtils::MM_Any' => '7.62',
18543             'ExtUtils::MM_BeOS' => '7.62',
18544             'ExtUtils::MM_Cygwin' => '7.62',
18545             'ExtUtils::MM_DOS' => '7.62',
18546             'ExtUtils::MM_Darwin' => '7.62',
18547             'ExtUtils::MM_MacOS' => '7.62',
18548             'ExtUtils::MM_NW5' => '7.62',
18549             'ExtUtils::MM_OS2' => '7.62',
18550             'ExtUtils::MM_OS390' => '7.62',
18551             'ExtUtils::MM_QNX' => '7.62',
18552             'ExtUtils::MM_UWIN' => '7.62',
18553             'ExtUtils::MM_Unix' => '7.62',
18554             'ExtUtils::MM_VMS' => '7.62',
18555             'ExtUtils::MM_VOS' => '7.62',
18556             'ExtUtils::MM_Win32' => '7.62',
18557             'ExtUtils::MM_Win95' => '7.62',
18558             'ExtUtils::MY' => '7.62',
18559             'ExtUtils::MakeMaker' => '7.62',
18560             'ExtUtils::MakeMaker::Config'=> '7.62',
18561             'ExtUtils::MakeMaker::Locale'=> '7.62',
18562             'ExtUtils::MakeMaker::version'=> '7.62',
18563             'ExtUtils::MakeMaker::version::regex'=> '7.62',
18564             'ExtUtils::Mkbootstrap' => '7.62',
18565             'ExtUtils::Mksymlists' => '7.62',
18566             'ExtUtils::ParseXS' => '3.43',
18567             'ExtUtils::ParseXS::Constants'=> '3.43',
18568             'ExtUtils::ParseXS::CountLines'=> '3.43',
18569             'ExtUtils::ParseXS::Eval'=> '3.43',
18570             'ExtUtils::ParseXS::Utilities'=> '3.43',
18571             'ExtUtils::Typemaps' => '3.43',
18572             'ExtUtils::Typemaps::Cmd'=> '3.43',
18573             'ExtUtils::Typemaps::InputMap'=> '3.43',
18574             'ExtUtils::Typemaps::OutputMap'=> '3.43',
18575             'ExtUtils::Typemaps::Type'=> '3.43',
18576             'ExtUtils::testlib' => '7.62',
18577             'Module::CoreList' => '5.20210420',
18578             'Module::CoreList::Utils'=> '5.20210420',
18579             'NEXT' => '0.68',
18580             'XS::APItest' => '1.16',
18581             'feature' => '1.64',
18582             'perlfaq' => '5.20210411',
18583             },
18584             removed => {
18585             }
18586             },
18587             5.034000 => {
18588             delta_from => 5.033009,
18589             changed => {
18590             'B::Op_private' => '5.034000',
18591             'Config' => '5.034',
18592             'Data::Dumper' => '2.179',
18593             'Module::CoreList' => '5.20210520',
18594             'Module::CoreList::Utils'=> '5.20210520',
18595             'experimental' => '0.024',
18596             },
18597             removed => {
18598             }
18599             },
18600             5.035000 => {
18601             delta_from => 5.034,
18602             changed => {
18603             'B::Op_private' => '5.035000',
18604             'Config' => '5.035',
18605             'Module::CoreList' => '5.20210521',
18606             'Module::CoreList::Utils'=> '5.20210521',
18607             'feature' => '1.65',
18608             },
18609             removed => {
18610             }
18611             },
18612             5.035001 => {
18613             delta_from => 5.035000,
18614             changed => {
18615             'B::Deparse' => '1.57',
18616             'B::Op_private' => '5.035001',
18617             'Config' => '5.035001',
18618             'Cwd' => '3.81',
18619             'Data::Dumper' => '2.181',
18620             'File::Copy' => '2.36',
18621             'File::Glob' => '1.35',
18622             'File::Spec' => '3.81',
18623             'File::Spec::AmigaOS' => '3.81',
18624             'File::Spec::Cygwin' => '3.81',
18625             'File::Spec::Epoc' => '3.81',
18626             'File::Spec::Functions' => '3.81',
18627             'File::Spec::Mac' => '3.81',
18628             'File::Spec::OS2' => '3.81',
18629             'File::Spec::Unix' => '3.81',
18630             'File::Spec::VMS' => '3.81',
18631             'File::Spec::Win32' => '3.81',
18632             'File::stat' => '1.10',
18633             'IO' => '1.47',
18634             'IO::Dir' => '1.47',
18635             'IO::File' => '1.47',
18636             'IO::Handle' => '1.47',
18637             'IO::Pipe' => '1.47',
18638             'IO::Poll' => '1.47',
18639             'IO::Seekable' => '1.47',
18640             'IO::Select' => '1.47',
18641             'IO::Socket' => '1.47',
18642             'IO::Socket::INET' => '1.47',
18643             'IO::Socket::UNIX' => '1.47',
18644             'List::Util' => '1.56',
18645             'List::Util::XS' => '1.56',
18646             'Module::CoreList' => '5.20210620',
18647             'Module::CoreList::Utils'=> '5.20210620',
18648             'Opcode' => '1.51',
18649             'POSIX' => '1.98',
18650             'Scalar::Util' => '1.56',
18651             'Socket' => '2.032',
18652             'Sub::Util' => '1.56',
18653             'Test2' => '1.302185',
18654             'Test2::API' => '1.302185',
18655             'Test2::API::Breakage' => '1.302185',
18656             'Test2::API::Context' => '1.302185',
18657             'Test2::API::Instance' => '1.302185',
18658             'Test2::API::InterceptResult'=> '1.302185',
18659             'Test2::API::InterceptResult::Event'=> '1.302185',
18660             'Test2::API::InterceptResult::Facet'=> '1.302185',
18661             'Test2::API::InterceptResult::Hub'=> '1.302185',
18662             'Test2::API::InterceptResult::Squasher'=> '1.302185',
18663             'Test2::API::Stack' => '1.302185',
18664             'Test2::Event' => '1.302185',
18665             'Test2::Event::Bail' => '1.302185',
18666             'Test2::Event::Diag' => '1.302185',
18667             'Test2::Event::Encoding'=> '1.302185',
18668             'Test2::Event::Exception'=> '1.302185',
18669             'Test2::Event::Fail' => '1.302185',
18670             'Test2::Event::Generic' => '1.302185',
18671             'Test2::Event::Note' => '1.302185',
18672             'Test2::Event::Ok' => '1.302185',
18673             'Test2::Event::Pass' => '1.302185',
18674             'Test2::Event::Plan' => '1.302185',
18675             'Test2::Event::Skip' => '1.302185',
18676             'Test2::Event::Subtest' => '1.302185',
18677             'Test2::Event::TAP::Version'=> '1.302185',
18678             'Test2::Event::V2' => '1.302185',
18679             'Test2::Event::Waiting' => '1.302185',
18680             'Test2::EventFacet' => '1.302185',
18681             'Test2::EventFacet::About'=> '1.302185',
18682             'Test2::EventFacet::Amnesty'=> '1.302185',
18683             'Test2::EventFacet::Assert'=> '1.302185',
18684             'Test2::EventFacet::Control'=> '1.302185',
18685             'Test2::EventFacet::Error'=> '1.302185',
18686             'Test2::EventFacet::Hub'=> '1.302185',
18687             'Test2::EventFacet::Info'=> '1.302185',
18688             'Test2::EventFacet::Info::Table'=> '1.302185',
18689             'Test2::EventFacet::Meta'=> '1.302185',
18690             'Test2::EventFacet::Parent'=> '1.302185',
18691             'Test2::EventFacet::Plan'=> '1.302185',
18692             'Test2::EventFacet::Render'=> '1.302185',
18693             'Test2::EventFacet::Trace'=> '1.302185',
18694             'Test2::Formatter' => '1.302185',
18695             'Test2::Formatter::TAP' => '1.302185',
18696             'Test2::Hub' => '1.302185',
18697             'Test2::Hub::Interceptor'=> '1.302185',
18698             'Test2::Hub::Interceptor::Terminator'=> '1.302185',
18699             'Test2::Hub::Subtest' => '1.302185',
18700             'Test2::IPC' => '1.302185',
18701             'Test2::IPC::Driver' => '1.302185',
18702             'Test2::IPC::Driver::Files'=> '1.302185',
18703             'Test2::Tools::Tiny' => '1.302185',
18704             'Test2::Util' => '1.302185',
18705             'Test2::Util::ExternalMeta'=> '1.302185',
18706             'Test2::Util::Facets2Legacy'=> '1.302185',
18707             'Test2::Util::HashBase' => '1.302185',
18708             'Test2::Util::Trace' => '1.302185',
18709             'Test::Builder' => '1.302185',
18710             'Test::Builder::Formatter'=> '1.302185',
18711             'Test::Builder::Module' => '1.302185',
18712             'Test::Builder::Tester' => '1.302185',
18713             'Test::Builder::Tester::Color'=> '1.302185',
18714             'Test::Builder::TodoDiag'=> '1.302185',
18715             'Test::More' => '1.302185',
18716             'Test::Simple' => '1.302185',
18717             'Test::Tester' => '1.302185',
18718             'Test::Tester::Capture' => '1.302185',
18719             'Test::Tester::CaptureRunner'=> '1.302185',
18720             'Test::Tester::Delegate'=> '1.302185',
18721             'Test::use::ok' => '1.302185',
18722             'Unicode::Collate' => '1.30',
18723             'Unicode::Collate::CJK::Big5'=> '1.30',
18724             'Unicode::Collate::CJK::GB2312'=> '1.30',
18725             'Unicode::Collate::CJK::JISX0208'=> '1.30',
18726             'Unicode::Collate::CJK::Korean'=> '1.30',
18727             'Unicode::Collate::CJK::Pinyin'=> '1.30',
18728             'Unicode::Collate::CJK::Stroke'=> '1.30',
18729             'Unicode::Collate::CJK::Zhuyin'=> '1.30',
18730             'Unicode::Collate::Locale'=> '1.30',
18731             'Unicode::UCD' => '0.76',
18732             'XS::APItest' => '1.17',
18733             'feature' => '1.66',
18734             'ok' => '1.302185',
18735             'open' => '1.13',
18736             'perlfaq' => '5.20210520',
18737             'version' => '0.9929',
18738             'version::regex' => '0.9929',
18739             },
18740             removed => {
18741             }
18742             },
18743             5.035002 => {
18744             delta_from => 5.035001,
18745             changed => {
18746             'Amiga::ARexx' => '0.06',
18747             'Amiga::Exec' => '0.03',
18748             'B::Concise' => '1.005',
18749             'B::Op_private' => '5.035002',
18750             'Config' => '5.035002',
18751             'Cwd' => '3.82',
18752             'DB_File' => '1.856',
18753             'Data::Dumper' => '2.183',
18754             'Devel::PPPort' => '3.63',
18755             'Devel::Peek' => '1.31',
18756             'DynaLoader' => '1.51',
18757             'Encode' => '3.10',
18758             'Encode::JP' => '2.05',
18759             'Errno' => '1.34',
18760             'ExtUtils::Miniperl' => '1.11',
18761             'Fcntl' => '1.15',
18762             'File::Find' => '1.39_01',
18763             'File::Glob' => '1.36',
18764             'File::stat' => '1.11',
18765             'GDBM_File' => '1.20',
18766             'Hash::Util' => '0.26',
18767             'Hash::Util::FieldHash' => '1.22',
18768             'I18N::Langinfo' => '0.20',
18769             'IPC::Open2' => '1.06',
18770             'IPC::Open3' => '1.22',
18771             'Math::BigFloat' => '1.999823',
18772             'Math::BigFloat::Trace' => '0.53',
18773             'Math::BigInt' => '1.999823',
18774             'Math::BigInt::Calc' => '1.999823',
18775             'Math::BigInt::FastCalc'=> '0.5010',
18776             'Math::BigInt::Lib' => '1.999823',
18777             'Math::BigInt::Trace' => '0.53',
18778             'Math::BigRat' => '0.2617',
18779             'Module::CoreList' => '5.20210723',
18780             'Module::CoreList::Utils'=> '5.20210723',
18781             'Opcode' => '1.52',
18782             'PerlIO' => '1.12',
18783             'Pod::Functions' => '1.14',
18784             'Pod::Html' => '1.31',
18785             'Pod::Html::Util' => '1.31',
18786             'Pod::Simple' => '3.43',
18787             'Pod::Simple::BlackBox' => '3.43',
18788             'Pod::Simple::Checker' => '3.43',
18789             'Pod::Simple::Debug' => '3.43',
18790             'Pod::Simple::DumpAsText'=> '3.43',
18791             'Pod::Simple::DumpAsXML'=> '3.43',
18792             'Pod::Simple::HTML' => '3.43',
18793             'Pod::Simple::HTMLBatch'=> '3.43',
18794             'Pod::Simple::LinkSection'=> '3.43',
18795             'Pod::Simple::Methody' => '3.43',
18796             'Pod::Simple::Progress' => '3.43',
18797             'Pod::Simple::PullParser'=> '3.43',
18798             'Pod::Simple::PullParserEndToken'=> '3.43',
18799             'Pod::Simple::PullParserStartToken'=> '3.43',
18800             'Pod::Simple::PullParserTextToken'=> '3.43',
18801             'Pod::Simple::PullParserToken'=> '3.43',
18802             'Pod::Simple::RTF' => '3.43',
18803             'Pod::Simple::Search' => '3.43',
18804             'Pod::Simple::SimpleTree'=> '3.43',
18805             'Pod::Simple::Text' => '3.43',
18806             'Pod::Simple::TextContent'=> '3.43',
18807             'Pod::Simple::TiedOutFH'=> '3.43',
18808             'Pod::Simple::Transcode'=> '3.43',
18809             'Pod::Simple::TranscodeDumb'=> '3.43',
18810             'Pod::Simple::TranscodeSmart'=> '3.43',
18811             'Pod::Simple::XHTML' => '3.43',
18812             'Pod::Simple::XMLOutStream'=> '3.43',
18813             'Sys::Hostname' => '1.24',
18814             'Text::Tabs' => '2021.0717',
18815             'Text::Wrap' => '2021.0717',
18816             'Time::HiRes' => '1.9768',
18817             'Unicode::UCD' => '0.77',
18818             'VMS::Filespec' => '1.13',
18819             'VMS::Stdio' => '2.46',
18820             'XSLoader' => '0.31',
18821             'bigint' => '0.53',
18822             'bignum' => '0.53',
18823             'bigrat' => '0.53',
18824             'if' => '0.0610',
18825             'threads' => '2.27',
18826             'warnings' => '1.52',
18827             },
18828             removed => {
18829             }
18830             },
18831             5.035003 => {
18832             delta_from => 5.035002,
18833             changed => {
18834             'Archive::Tar' => '2.40',
18835             'Archive::Tar::Constant'=> '2.40',
18836             'Archive::Tar::File' => '2.40',
18837             'B::Op_private' => '5.035003',
18838             'Config' => '5.035003',
18839             'Encode' => '3.12',
18840             'Encode::GSM0338' => '2.10',
18841             'Encode::Unicode' => '2.19',
18842             'Module::CoreList' => '5.20210820',
18843             'Module::CoreList::Utils'=> '5.20210820',
18844             'Net::hostent' => '1.03',
18845             'Opcode' => '1.53',
18846             'POSIX' => '1.99',
18847             'Pod::Html' => '1.32',
18848             'Pod::Html::Util' => '1.32',
18849             'Storable' => '3.24',
18850             'Text::Tabs' => '2021.0804',
18851             'Text::Wrap' => '2021.0804',
18852             'Time::HiRes' => '1.9769',
18853             'Unicode::Normalize' => '1.30',
18854             'XS::APItest' => '1.18',
18855             'diagnostics' => '1.38',
18856             'feature' => '1.67',
18857             'sort' => '2.05',
18858             'threads::shared' => '1.63',
18859             'warnings' => '1.53',
18860             },
18861             removed => {
18862             }
18863             },
18864             5.035004 => {
18865             delta_from => 5.035003,
18866             changed => {
18867             'B' => '1.83',
18868             'B::Deparse' => '1.58',
18869             'B::Op_private' => '5.035004',
18870             'Config' => '5.035004',
18871             'Devel::Peek' => '1.32',
18872             'Exporter' => '5.77',
18873             'Exporter::Heavy' => '5.77',
18874             'ExtUtils::ParseXS' => '3.44',
18875             'ExtUtils::ParseXS::Constants'=> '3.44',
18876             'ExtUtils::ParseXS::CountLines'=> '3.44',
18877             'ExtUtils::ParseXS::Eval'=> '3.44',
18878             'ExtUtils::ParseXS::Utilities'=> '3.44',
18879             'ExtUtils::Typemaps' => '3.44',
18880             'ExtUtils::Typemaps::Cmd'=> '3.44',
18881             'ExtUtils::Typemaps::InputMap'=> '3.44',
18882             'ExtUtils::Typemaps::OutputMap'=> '3.44',
18883             'ExtUtils::Typemaps::Type'=> '3.44',
18884             'Hash::Util::FieldHash' => '1.23',
18885             'IO' => '1.48',
18886             'IO::Dir' => '1.48',
18887             'IO::File' => '1.48',
18888             'IO::Handle' => '1.48',
18889             'IO::Pipe' => '1.48',
18890             'IO::Poll' => '1.48',
18891             'IO::Seekable' => '1.48',
18892             'IO::Select' => '1.48',
18893             'IO::Socket' => '1.48',
18894             'IO::Socket::INET' => '1.48',
18895             'IO::Socket::UNIX' => '1.48',
18896             'List::Util' => '1.56_001',
18897             'List::Util::XS' => '1.56_001',
18898             'Module::CoreList' => '5.20210920',
18899             'Module::CoreList::Utils'=> '5.20210920',
18900             'Opcode' => '1.54',
18901             'Pod::Html' => '1.33',
18902             'Pod::Html::Util' => '1.33',
18903             'Scalar::Util' => '1.56_001',
18904             'Storable' => '3.25',
18905             'Sub::Util' => '1.56_001',
18906             'Text::Tabs' => '2021.0814',
18907             'Text::Wrap' => '2021.0814',
18908             'UNIVERSAL' => '1.14',
18909             'Unicode' => '14.0.0',
18910             'Unicode::Collate' => '1.31',
18911             'Unicode::Collate::CJK::Big5'=> '1.31',
18912             'Unicode::Collate::CJK::GB2312'=> '1.31',
18913             'Unicode::Collate::CJK::JISX0208'=> '1.31',
18914             'Unicode::Collate::CJK::Korean'=> '1.31',
18915             'Unicode::Collate::CJK::Pinyin'=> '1.31',
18916             'Unicode::Collate::CJK::Stroke'=> '1.31',
18917             'Unicode::Collate::CJK::Zhuyin'=> '1.31',
18918             'Unicode::Collate::Locale'=> '1.31',
18919             'Unicode::UCD' => '0.78',
18920             'XS::APItest' => '1.19',
18921             'XS::Typemap' => '0.19',
18922             'attributes' => '0.34',
18923             'feature' => '1.68',
18924             'mro' => '1.26',
18925             'threads::shared' => '1.64',
18926             'warnings' => '1.54',
18927             },
18928             removed => {
18929             }
18930             },
18931             5.035005 => {
18932             delta_from => 5.035004,
18933             changed => {
18934             'B::Concise' => '1.006',
18935             'B::Deparse' => '1.59',
18936             'B::Op_private' => '5.035005',
18937             'Config' => '5.035005',
18938             'Digest' => '1.20',
18939             'Digest::base' => '1.20',
18940             'Digest::file' => '1.20',
18941             'DynaLoader' => '1.52',
18942             'Encode' => '3.16',
18943             'Errno' => '1.35',
18944             'File::Copy' => '2.37',
18945             'File::Spec::Unix' => '3.82',
18946             'FindBin' => '1.53',
18947             'GDBM_File' => '1.21',
18948             'HTTP::Tiny' => '0.078',
18949             'I18N::Langinfo' => '0.21',
18950             'IO::Dir' => '1.49',
18951             'IO::Pipe' => '1.49',
18952             'IO::Poll' => '1.49',
18953             'IO::Select' => '1.49',
18954             'IO::Socket' => '1.49',
18955             'IO::Socket::INET' => '1.49',
18956             'IO::Socket::UNIX' => '1.49',
18957             'List::Util' => '1.60',
18958             'List::Util::XS' => '1.60',
18959             'Math::BigRat::Trace' => '0.63',
18960             'Module::CoreList' => '5.20211020',
18961             'Module::CoreList::Utils'=> '5.20211020',
18962             'POSIX' => '2.01',
18963             'Scalar::Util' => '1.60',
18964             'Sub::Util' => '1.60',
18965             'Test2' => '1.302188',
18966             'Test2::API' => '1.302188',
18967             'Test2::API::Breakage' => '1.302188',
18968             'Test2::API::Context' => '1.302188',
18969             'Test2::API::Instance' => '1.302188',
18970             'Test2::API::InterceptResult'=> '1.302188',
18971             'Test2::API::InterceptResult::Event'=> '1.302188',
18972             'Test2::API::InterceptResult::Facet'=> '1.302188',
18973             'Test2::API::InterceptResult::Hub'=> '1.302188',
18974             'Test2::API::InterceptResult::Squasher'=> '1.302188',
18975             'Test2::API::Stack' => '1.302188',
18976             'Test2::Event' => '1.302188',
18977             'Test2::Event::Bail' => '1.302188',
18978             'Test2::Event::Diag' => '1.302188',
18979             'Test2::Event::Encoding'=> '1.302188',
18980             'Test2::Event::Exception'=> '1.302188',
18981             'Test2::Event::Fail' => '1.302188',
18982             'Test2::Event::Generic' => '1.302188',
18983             'Test2::Event::Note' => '1.302188',
18984             'Test2::Event::Ok' => '1.302188',
18985             'Test2::Event::Pass' => '1.302188',
18986             'Test2::Event::Plan' => '1.302188',
18987             'Test2::Event::Skip' => '1.302188',
18988             'Test2::Event::Subtest' => '1.302188',
18989             'Test2::Event::TAP::Version'=> '1.302188',
18990             'Test2::Event::V2' => '1.302188',
18991             'Test2::Event::Waiting' => '1.302188',
18992             'Test2::EventFacet' => '1.302188',
18993             'Test2::EventFacet::About'=> '1.302188',
18994             'Test2::EventFacet::Amnesty'=> '1.302188',
18995             'Test2::EventFacet::Assert'=> '1.302188',
18996             'Test2::EventFacet::Control'=> '1.302188',
18997             'Test2::EventFacet::Error'=> '1.302188',
18998             'Test2::EventFacet::Hub'=> '1.302188',
18999             'Test2::EventFacet::Info'=> '1.302188',
19000             'Test2::EventFacet::Info::Table'=> '1.302188',
19001             'Test2::EventFacet::Meta'=> '1.302188',
19002             'Test2::EventFacet::Parent'=> '1.302188',
19003             'Test2::EventFacet::Plan'=> '1.302188',
19004             'Test2::EventFacet::Render'=> '1.302188',
19005             'Test2::EventFacet::Trace'=> '1.302188',
19006             'Test2::Formatter' => '1.302188',
19007             'Test2::Formatter::TAP' => '1.302188',
19008             'Test2::Hub' => '1.302188',
19009             'Test2::Hub::Interceptor'=> '1.302188',
19010             'Test2::Hub::Interceptor::Terminator'=> '1.302188',
19011             'Test2::Hub::Subtest' => '1.302188',
19012             'Test2::IPC' => '1.302188',
19013             'Test2::IPC::Driver' => '1.302188',
19014             'Test2::IPC::Driver::Files'=> '1.302188',
19015             'Test2::Tools::Tiny' => '1.302188',
19016             'Test2::Util' => '1.302188',
19017             'Test2::Util::ExternalMeta'=> '1.302188',
19018             'Test2::Util::Facets2Legacy'=> '1.302188',
19019             'Test2::Util::HashBase' => '1.302188',
19020             'Test2::Util::Trace' => '1.302188',
19021             'Test::Builder' => '1.302188',
19022             'Test::Builder::Formatter'=> '1.302188',
19023             'Test::Builder::Module' => '1.302188',
19024             'Test::Builder::Tester' => '1.302188',
19025             'Test::Builder::Tester::Color'=> '1.302188',
19026             'Test::Builder::TodoDiag'=> '1.302188',
19027             'Test::More' => '1.302188',
19028             'Test::Simple' => '1.302188',
19029             'Test::Tester' => '1.302188',
19030             'Test::Tester::Capture' => '1.302188',
19031             'Test::Tester::CaptureRunner'=> '1.302188',
19032             'Test::Tester::Delegate'=> '1.302188',
19033             'Test::use::ok' => '1.302188',
19034             'Tie::Handle' => '4.3',
19035             'Tie::Hash' => '1.06',
19036             'Tie::Scalar' => '1.06',
19037             'XS::APItest' => '1.20',
19038             'experimental' => '0.025',
19039             'ok' => '1.302188',
19040             'warnings' => '1.55',
19041             },
19042             removed => {
19043             }
19044             },
19045             5.035006 => {
19046             delta_from => 5.035005,
19047             changed => {
19048             'B::Op_private' => '5.035006',
19049             'Config' => '5.035006',
19050             'File::Glob' => '1.37',
19051             'File::stat' => '1.12',
19052             'GDBM_File' => '1.22',
19053             'HTTP::Tiny' => '0.080',
19054             'Math::BigFloat' => '1.999827',
19055             'Math::BigFloat::Trace' => '0.63',
19056             'Math::BigInt' => '1.999827',
19057             'Math::BigInt::Calc' => '1.999827',
19058             'Math::BigInt::FastCalc'=> '0.5012',
19059             'Math::BigInt::Lib' => '1.999827',
19060             'Math::BigInt::Trace' => '0.63',
19061             'Math::BigRat' => '0.2620',
19062             'Module::CoreList' => '5.20211120',
19063             'Module::CoreList::Utils'=> '5.20211120',
19064             'POSIX' => '2.02',
19065             'bigint' => '0.63',
19066             'bignum' => '0.63',
19067             'bigrat' => '0.63',
19068             'diagnostics' => '1.39',
19069             'feature' => '1.69',
19070             'warnings' => '1.56',
19071             },
19072             removed => {
19073             }
19074             },
19075             5.035007 => {
19076             delta_from => 5.035006,
19077             changed => {
19078             'B::Deparse' => '1.60',
19079             'B::Op_private' => '5.035007',
19080             'CPAN' => '2.29',
19081             'CPAN::Distribution' => '2.29',
19082             'CPAN::FTP' => '5.5014',
19083             'CPAN::FirstTime' => '5.5316',
19084             'CPAN::HandleConfig' => '5.5012',
19085             'CPAN::Index' => '2.29',
19086             'Config' => '5.035007',
19087             'Cwd' => '3.83',
19088             'ExtUtils::Command' => '7.64',
19089             'ExtUtils::Command::MM' => '7.64',
19090             'ExtUtils::Liblist' => '7.64',
19091             'ExtUtils::Liblist::Kid'=> '7.64',
19092             'ExtUtils::MM' => '7.64',
19093             'ExtUtils::MM_AIX' => '7.64',
19094             'ExtUtils::MM_Any' => '7.64',
19095             'ExtUtils::MM_BeOS' => '7.64',
19096             'ExtUtils::MM_Cygwin' => '7.64',
19097             'ExtUtils::MM_DOS' => '7.64',
19098             'ExtUtils::MM_Darwin' => '7.64',
19099             'ExtUtils::MM_MacOS' => '7.64',
19100             'ExtUtils::MM_NW5' => '7.64',
19101             'ExtUtils::MM_OS2' => '7.64',
19102             'ExtUtils::MM_OS390' => '7.64',
19103             'ExtUtils::MM_QNX' => '7.64',
19104             'ExtUtils::MM_UWIN' => '7.64',
19105             'ExtUtils::MM_Unix' => '7.64',
19106             'ExtUtils::MM_VMS' => '7.64',
19107             'ExtUtils::MM_VOS' => '7.64',
19108             'ExtUtils::MM_Win32' => '7.64',
19109             'ExtUtils::MM_Win95' => '7.64',
19110             'ExtUtils::MY' => '7.64',
19111             'ExtUtils::MakeMaker' => '7.64',
19112             'ExtUtils::MakeMaker::Config'=> '7.64',
19113             'ExtUtils::MakeMaker::Locale'=> '7.64',
19114             'ExtUtils::MakeMaker::version'=> '7.64',
19115             'ExtUtils::MakeMaker::version::regex'=> '7.64',
19116             'ExtUtils::Mkbootstrap' => '7.64',
19117             'ExtUtils::Mksymlists' => '7.64',
19118             'ExtUtils::testlib' => '7.64',
19119             'File::Compare' => '1.1007',
19120             'File::Copy' => '2.38',
19121             'File::Spec' => '3.83',
19122             'File::Spec::AmigaOS' => '3.83',
19123             'File::Spec::Cygwin' => '3.83',
19124             'File::Spec::Epoc' => '3.83',
19125             'File::Spec::Functions' => '3.83',
19126             'File::Spec::Mac' => '3.83',
19127             'File::Spec::OS2' => '3.83',
19128             'File::Spec::Unix' => '3.83',
19129             'File::Spec::VMS' => '3.83',
19130             'File::Spec::Win32' => '3.83',
19131             'Hash::Util' => '0.27',
19132             'Hash::Util::FieldHash' => '1.24',
19133             'IO' => '1.49',
19134             'JSON::PP' => '4.07',
19135             'JSON::PP::Boolean' => '4.07',
19136             'Math::BigFloat' => '1.999828',
19137             'Math::BigInt' => '1.999828',
19138             'Math::BigInt::Calc' => '1.999828',
19139             'Math::BigInt::Lib' => '1.999828',
19140             'Module::CoreList' => '5.20211220',
19141             'Module::CoreList::Utils'=> '5.20211220',
19142             'Opcode' => '1.55',
19143             'builtin' => '0.001',
19144             'overload' => '1.34',
19145             },
19146             removed => {
19147             }
19148             },
19149             5.035008 => {
19150             delta_from => 5.035007,
19151             changed => {
19152             'B::Deparse' => '1.61',
19153             'B::Op_private' => '5.035008',
19154             'Config' => '5.035008',
19155             'Data::Dumper' => '2.184',
19156             'Errno' => '1.36',
19157             'File::Fetch' => '1.04',
19158             'File::Find' => '1.40',
19159             'Hash::Util::FieldHash' => '1.25',
19160             'Locale::Maketext' => '1.30',
19161             'Math::BigFloat' => '1.999829',
19162             'Math::BigFloat::Trace' => '0.64',
19163             'Math::BigInt' => '1.999829',
19164             'Math::BigInt::Calc' => '1.999829',
19165             'Math::BigInt::Lib' => '1.999829',
19166             'Math::BigInt::Trace' => '0.64',
19167             'Math::BigRat::Trace' => '0.64',
19168             'Module::CoreList' => '5.20220120',
19169             'Module::CoreList::Utils'=> '5.20220120',
19170             'NEXT' => '0.69',
19171             'POSIX' => '2.03',
19172             'Win32' => '0.58',
19173             '_charnames' => '1.49',
19174             'bigint' => '0.64',
19175             'bignum' => '0.64',
19176             'bigrat' => '0.64',
19177             'charnames' => '1.49',
19178             },
19179             removed => {
19180             }
19181             },
19182             5.035009 => {
19183             delta_from => 5.035008,
19184             changed => {
19185             'App::Cpan' => '1.678',
19186             'B::Deparse' => '1.62',
19187             'B::Op_private' => '5.035009',
19188             'CPAN' => '2.33',
19189             'CPAN::Distribution' => '2.33',
19190             'CPAN::FTP' => '5.5016',
19191             'CPAN::FirstTime' => '5.5317',
19192             'Config' => '5.035009',
19193             'Devel::PPPort' => '3.64',
19194             'File::Copy' => '2.39',
19195             'Hash::Util' => '0.28',
19196             'Hash::Util::FieldHash' => '1.26',
19197             'List::Util' => '1.61',
19198             'List::Util::XS' => '1.61',
19199             'Module::CoreList' => '5.20220220',
19200             'Module::CoreList::Utils'=> '5.20220220',
19201             'Opcode' => '1.56',
19202             'Scalar::Util' => '1.61',
19203             'Sub::Util' => '1.61',
19204             'Tie::SubstrHash' => '1.01',
19205             'XS::APItest' => '1.21',
19206             '_charnames' => '1.50',
19207             'builtin' => '0.002',
19208             'charnames' => '1.50',
19209             'experimental' => '0.027',
19210             'feature' => '1.70',
19211             'overload' => '1.35',
19212             're' => '0.42',
19213             'sigtrap' => '1.10',
19214             'warnings' => '1.57',
19215             },
19216             removed => {
19217             }
19218             },
19219             5.034001 => {
19220             delta_from => 5.034000,
19221             changed => {
19222             'B::Deparse' => '1.57',
19223             'B::Op_private' => '5.034001',
19224             'Config' => '5.034001',
19225             'Encode' => '3.08_01',
19226             'GDBM_File' => '1.19_01',
19227             'Module::CoreList' => '5.20220313',
19228             'Module::CoreList::Utils'=> '5.20220313',
19229             },
19230             removed => {
19231             }
19232             },
19233             5.035010 => {
19234             delta_from => 5.035009,
19235             changed => {
19236             'Attribute::Handlers' => '1.02',
19237             'B::Deparse' => '1.63',
19238             'B::Op_private' => '5.035010',
19239             'Config' => '5.03501',
19240             'Cwd' => '3.84',
19241             'DB_File' => '1.857',
19242             'Devel::PPPort' => '3.68',
19243             'ExtUtils::ParseXS' => '3.45',
19244             'ExtUtils::ParseXS::Constants'=> '3.45',
19245             'ExtUtils::ParseXS::CountLines'=> '3.45',
19246             'ExtUtils::ParseXS::Eval'=> '3.45',
19247             'ExtUtils::ParseXS::Utilities'=> '3.45',
19248             'ExtUtils::Typemaps' => '3.45',
19249             'ExtUtils::Typemaps::Cmd'=> '3.45',
19250             'ExtUtils::Typemaps::InputMap'=> '3.45',
19251             'ExtUtils::Typemaps::OutputMap'=> '3.45',
19252             'ExtUtils::Typemaps::Type'=> '3.45',
19253             'File::Spec' => '3.84',
19254             'File::Spec::AmigaOS' => '3.84',
19255             'File::Spec::Cygwin' => '3.84',
19256             'File::Spec::Epoc' => '3.84',
19257             'File::Spec::Functions' => '3.84',
19258             'File::Spec::Mac' => '3.84',
19259             'File::Spec::OS2' => '3.84',
19260             'File::Spec::Unix' => '3.84',
19261             'File::Spec::VMS' => '3.84',
19262             'File::Spec::Win32' => '3.84',
19263             'GDBM_File' => '1.23',
19264             'List::Util' => '1.62',
19265             'List::Util::XS' => '1.62',
19266             'Module::CoreList' => '5.20220320',
19267             'Module::CoreList::Utils'=> '5.20220320',
19268             'Opcode' => '1.57',
19269             'Scalar::Util' => '1.62',
19270             'Sub::Util' => '1.62',
19271             'Test2' => '1.302190',
19272             'Test2::API' => '1.302190',
19273             'Test2::API::Breakage' => '1.302190',
19274             'Test2::API::Context' => '1.302190',
19275             'Test2::API::Instance' => '1.302190',
19276             'Test2::API::InterceptResult'=> '1.302190',
19277             'Test2::API::InterceptResult::Event'=> '1.302190',
19278             'Test2::API::InterceptResult::Facet'=> '1.302190',
19279             'Test2::API::InterceptResult::Hub'=> '1.302190',
19280             'Test2::API::InterceptResult::Squasher'=> '1.302190',
19281             'Test2::API::Stack' => '1.302190',
19282             'Test2::Event' => '1.302190',
19283             'Test2::Event::Bail' => '1.302190',
19284             'Test2::Event::Diag' => '1.302190',
19285             'Test2::Event::Encoding'=> '1.302190',
19286             'Test2::Event::Exception'=> '1.302190',
19287             'Test2::Event::Fail' => '1.302190',
19288             'Test2::Event::Generic' => '1.302190',
19289             'Test2::Event::Note' => '1.302190',
19290             'Test2::Event::Ok' => '1.302190',
19291             'Test2::Event::Pass' => '1.302190',
19292             'Test2::Event::Plan' => '1.302190',
19293             'Test2::Event::Skip' => '1.302190',
19294             'Test2::Event::Subtest' => '1.302190',
19295             'Test2::Event::TAP::Version'=> '1.302190',
19296             'Test2::Event::V2' => '1.302190',
19297             'Test2::Event::Waiting' => '1.302190',
19298             'Test2::EventFacet' => '1.302190',
19299             'Test2::EventFacet::About'=> '1.302190',
19300             'Test2::EventFacet::Amnesty'=> '1.302190',
19301             'Test2::EventFacet::Assert'=> '1.302190',
19302             'Test2::EventFacet::Control'=> '1.302190',
19303             'Test2::EventFacet::Error'=> '1.302190',
19304             'Test2::EventFacet::Hub'=> '1.302190',
19305             'Test2::EventFacet::Info'=> '1.302190',
19306             'Test2::EventFacet::Info::Table'=> '1.302190',
19307             'Test2::EventFacet::Meta'=> '1.302190',
19308             'Test2::EventFacet::Parent'=> '1.302190',
19309             'Test2::EventFacet::Plan'=> '1.302190',
19310             'Test2::EventFacet::Render'=> '1.302190',
19311             'Test2::EventFacet::Trace'=> '1.302190',
19312             'Test2::Formatter' => '1.302190',
19313             'Test2::Formatter::TAP' => '1.302190',
19314             'Test2::Hub' => '1.302190',
19315             'Test2::Hub::Interceptor'=> '1.302190',
19316             'Test2::Hub::Interceptor::Terminator'=> '1.302190',
19317             'Test2::Hub::Subtest' => '1.302190',
19318             'Test2::IPC' => '1.302190',
19319             'Test2::IPC::Driver' => '1.302190',
19320             'Test2::IPC::Driver::Files'=> '1.302190',
19321             'Test2::Tools::Tiny' => '1.302190',
19322             'Test2::Util' => '1.302190',
19323             'Test2::Util::ExternalMeta'=> '1.302190',
19324             'Test2::Util::Facets2Legacy'=> '1.302190',
19325             'Test2::Util::HashBase' => '1.302190',
19326             'Test2::Util::Trace' => '1.302190',
19327             'Test::Builder' => '1.302190',
19328             'Test::Builder::Formatter'=> '1.302190',
19329             'Test::Builder::Module' => '1.302190',
19330             'Test::Builder::Tester' => '1.302190',
19331             'Test::Builder::Tester::Color'=> '1.302190',
19332             'Test::Builder::TodoDiag'=> '1.302190',
19333             'Test::More' => '1.302190',
19334             'Test::Simple' => '1.302190',
19335             'Test::Tester' => '1.302190',
19336             'Test::Tester::Capture' => '1.302190',
19337             'Test::Tester::CaptureRunner'=> '1.302190',
19338             'Test::Tester::Delegate'=> '1.302190',
19339             'Test::use::ok' => '1.302190',
19340             'XS::APItest' => '1.22',
19341             'builtin' => '0.004',
19342             'experimental' => '0.028',
19343             'feature' => '1.71',
19344             'ok' => '1.302190',
19345             'warnings' => '1.58',
19346             },
19347             removed => {
19348             }
19349             },
19350             5.035011 => {
19351             delta_from => 5.03501,
19352             changed => {
19353             'App::Prove' => '3.44',
19354             'App::Prove::State' => '3.44',
19355             'App::Prove::State::Result'=> '3.44',
19356             'App::Prove::State::Result::Test'=> '3.44',
19357             'B::Deparse' => '1.64',
19358             'B::Op_private' => '5.035011',
19359             'Compress::Raw::Bzip2' => '2.103',
19360             'Compress::Raw::Zlib' => '2.103',
19361             'Compress::Zlib' => '2.106',
19362             'Config' => '5.035011',
19363             'Encode' => '3.17',
19364             'Encode::Unicode' => '2.20',
19365             'ExtUtils::Constant::Base'=> '0.07',
19366             'IO' => '1.49_01',
19367             'IO::Compress::Adapter::Bzip2'=> '2.106',
19368             'IO::Compress::Adapter::Deflate'=> '2.106',
19369             'IO::Compress::Adapter::Identity'=> '2.106',
19370             'IO::Compress::Base' => '2.106',
19371             'IO::Compress::Base::Common'=> '2.106',
19372             'IO::Compress::Bzip2' => '2.106',
19373             'IO::Compress::Deflate' => '2.106',
19374             'IO::Compress::Gzip' => '2.106',
19375             'IO::Compress::Gzip::Constants'=> '2.106',
19376             'IO::Compress::RawDeflate'=> '2.106',
19377             'IO::Compress::Zip' => '2.106',
19378             'IO::Compress::Zip::Constants'=> '2.106',
19379             'IO::Compress::Zlib::Constants'=> '2.106',
19380             'IO::Compress::Zlib::Extra'=> '2.106',
19381             'IO::Uncompress::Adapter::Bunzip2'=> '2.106',
19382             'IO::Uncompress::Adapter::Identity'=> '2.106',
19383             'IO::Uncompress::Adapter::Inflate'=> '2.106',
19384             'IO::Uncompress::AnyInflate'=> '2.106',
19385             'IO::Uncompress::AnyUncompress'=> '2.106',
19386             'IO::Uncompress::Base' => '2.106',
19387             'IO::Uncompress::Bunzip2'=> '2.106',
19388             'IO::Uncompress::Gunzip'=> '2.106',
19389             'IO::Uncompress::Inflate'=> '2.106',
19390             'IO::Uncompress::RawInflate'=> '2.106',
19391             'IO::Uncompress::Unzip' => '2.106',
19392             'Locale::Maketext' => '1.31',
19393             'Math::BigFloat' => '1.999830',
19394             'Math::BigFloat::Trace' => '0.65',
19395             'Math::BigInt' => '1.999830',
19396             'Math::BigInt::Calc' => '1.999830',
19397             'Math::BigInt::Lib' => '1.999830',
19398             'Math::BigInt::Trace' => '0.65',
19399             'Math::BigRat' => '0.2621',
19400             'Math::BigRat::Trace' => '0.65',
19401             'Module::CoreList' => '5.20220420',
19402             'Module::CoreList::Utils'=> '5.20220420',
19403             'Net::Cmd' => '3.14',
19404             'Net::Config' => '3.14',
19405             'Net::Domain' => '3.14',
19406             'Net::FTP' => '3.14',
19407             'Net::FTP::A' => '3.14',
19408             'Net::FTP::E' => '3.14',
19409             'Net::FTP::I' => '3.14',
19410             'Net::FTP::L' => '3.14',
19411             'Net::FTP::dataconn' => '3.14',
19412             'Net::NNTP' => '3.14',
19413             'Net::Netrc' => '3.14',
19414             'Net::POP3' => '3.14',
19415             'Net::SMTP' => '3.14',
19416             'Net::Time' => '3.14',
19417             'Socket' => '2.033',
19418             'Storable' => '3.26',
19419             'TAP::Base' => '3.44',
19420             'TAP::Formatter::Base' => '3.44',
19421             'TAP::Formatter::Color' => '3.44',
19422             'TAP::Formatter::Console'=> '3.44',
19423             'TAP::Formatter::Console::ParallelSession'=> '3.44',
19424             'TAP::Formatter::Console::Session'=> '3.44',
19425             'TAP::Formatter::File' => '3.44',
19426             'TAP::Formatter::File::Session'=> '3.44',
19427             'TAP::Formatter::Session'=> '3.44',
19428             'TAP::Harness' => '3.44',
19429             'TAP::Harness::Env' => '3.44',
19430             'TAP::Object' => '3.44',
19431             'TAP::Parser' => '3.44',
19432             'TAP::Parser::Aggregator'=> '3.44',
19433             'TAP::Parser::Grammar' => '3.44',
19434             'TAP::Parser::Iterator' => '3.44',
19435             'TAP::Parser::Iterator::Array'=> '3.44',
19436             'TAP::Parser::Iterator::Process'=> '3.44',
19437             'TAP::Parser::Iterator::Stream'=> '3.44',
19438             'TAP::Parser::IteratorFactory'=> '3.44',
19439             'TAP::Parser::Multiplexer'=> '3.44',
19440             'TAP::Parser::Result' => '3.44',
19441             'TAP::Parser::Result::Bailout'=> '3.44',
19442             'TAP::Parser::Result::Comment'=> '3.44',
19443             'TAP::Parser::Result::Plan'=> '3.44',
19444             'TAP::Parser::Result::Pragma'=> '3.44',
19445             'TAP::Parser::Result::Test'=> '3.44',
19446             'TAP::Parser::Result::Unknown'=> '3.44',
19447             'TAP::Parser::Result::Version'=> '3.44',
19448             'TAP::Parser::Result::YAML'=> '3.44',
19449             'TAP::Parser::ResultFactory'=> '3.44',
19450             'TAP::Parser::Scheduler'=> '3.44',
19451             'TAP::Parser::Scheduler::Job'=> '3.44',
19452             'TAP::Parser::Scheduler::Spinner'=> '3.44',
19453             'TAP::Parser::Source' => '3.44',
19454             'TAP::Parser::SourceHandler'=> '3.44',
19455             'TAP::Parser::SourceHandler::Executable'=> '3.44',
19456             'TAP::Parser::SourceHandler::File'=> '3.44',
19457             'TAP::Parser::SourceHandler::Handle'=> '3.44',
19458             'TAP::Parser::SourceHandler::Perl'=> '3.44',
19459             'TAP::Parser::SourceHandler::RawTAP'=> '3.44',
19460             'TAP::Parser::YAMLish::Reader'=> '3.44',
19461             'TAP::Parser::YAMLish::Writer'=> '3.44',
19462             'Test::Harness' => '3.44',
19463             'Text::ParseWords' => '3.31',
19464             'Time::HiRes' => '1.9770',
19465             'Unicode::Normalize' => '1.31',
19466             'bigfloat' => '0.65',
19467             'bigint' => '0.65',
19468             'bignum' => '0.65',
19469             'bigrat' => '0.65',
19470             'builtin' => '0.005',
19471             're' => '0.43',
19472             },
19473             removed => {
19474             }
19475             },
19476             5.036000 => {
19477             delta_from => 5.035011,
19478             changed => {
19479             'Amiga::Exec' => '0.04',
19480             'B::Op_private' => '5.036000',
19481             'Compress::Raw::Zlib' => '2.105',
19482             'Config' => '5.036',
19483             'IO' => '1.50',
19484             'Module::CoreList' => '5.20220520',
19485             'Module::CoreList::Utils'=> '5.20220520',
19486             'Win32' => '0.59',
19487             'builtin' => '0.006',
19488             'feature' => '1.72',
19489             },
19490             removed => {
19491             }
19492             },
19493             5.037000 => {
19494             delta_from => 5.036000,
19495             changed => {
19496             'feature' => '1.73',
19497             'Module::CoreList' => '5.20220527',
19498             'Module::CoreList::Utils'=> '5.20220527',
19499             },
19500             removed => {
19501             }
19502             },
19503             5.037001 => {
19504             delta_from => 5.037000,
19505             changed => {
19506             'B' => '1.84',
19507             'B::Op_private' => '5.037001',
19508             'Carp' => '1.53',
19509             'Carp::Heavy' => '1.53',
19510             'Config' => '5.037001',
19511             'Cwd' => '3.85',
19512             'Data::Dumper' => '2.185',
19513             'ExtUtils::CBuilder' => '0.280237',
19514             'ExtUtils::CBuilder::Base'=> '0.280237',
19515             'ExtUtils::CBuilder::Platform::Unix'=> '0.280237',
19516             'ExtUtils::CBuilder::Platform::VMS'=> '0.280237',
19517             'ExtUtils::CBuilder::Platform::Windows'=> '0.280237',
19518             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280237',
19519             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280237',
19520             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280237',
19521             'ExtUtils::CBuilder::Platform::aix'=> '0.280237',
19522             'ExtUtils::CBuilder::Platform::android'=> '0.280237',
19523             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280237',
19524             'ExtUtils::CBuilder::Platform::darwin'=> '0.280237',
19525             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280237',
19526             'ExtUtils::CBuilder::Platform::os2'=> '0.280237',
19527             'ExtUtils::Miniperl' => '1.12',
19528             'File::Spec' => '3.85',
19529             'File::Spec::AmigaOS' => '3.85',
19530             'File::Spec::Cygwin' => '3.85',
19531             'File::Spec::Epoc' => '3.85',
19532             'File::Spec::Functions' => '3.85',
19533             'File::Spec::Mac' => '3.85',
19534             'File::Spec::OS2' => '3.85',
19535             'File::Spec::Unix' => '3.85',
19536             'File::Spec::VMS' => '3.85',
19537             'File::Spec::Win32' => '3.85',
19538             'FileHandle' => '2.04',
19539             'GDBM_File' => '1.24',
19540             'IO::Handle' => '1.49',
19541             'IO::Pipe' => '1.50',
19542             'IO::Socket::INET' => '1.50',
19543             'IO::Socket::UNIX' => '1.50',
19544             'Module::CoreList' => '5.20220620',
19545             'Module::CoreList::Utils'=> '5.20220620',
19546             'ODBM_File' => '1.18',
19547             'OS2::REXX' => '1.06',
19548             'Opcode' => '1.58',
19549             'POSIX' => '2.04',
19550             'SDBM_File' => '1.16',
19551             'Unicode::Normalize' => '1.32',
19552             'XS::APItest' => '1.23',
19553             'builtin' => '0.007',
19554             'encoding::warnings' => '0.14',
19555             'feature' => '1.74',
19556             'threads' => '2.28',
19557             },
19558             removed => {
19559             }
19560             },
19561             5.037002 => {
19562             delta_from => 5.037001,
19563             changed => {
19564             'B' => '1.85',
19565             'B::Concise' => '1.007',
19566             'B::Deparse' => '1.65',
19567             'B::Op_private' => '5.037002',
19568             'CPAN' => '2.34',
19569             'CPAN::Distribution' => '2.34',
19570             'Compress::Raw::Bzip2' => '2.201',
19571             'Compress::Raw::Zlib' => '2.202',
19572             'Compress::Zlib' => '2.201',
19573             'Config' => '5.037002',
19574             'Cwd' => '3.86',
19575             'DB_File' => '1.858',
19576             'Data::Dumper' => '2.186',
19577             'Encode' => '3.18',
19578             'Encode::MIME::Header' => '2.29',
19579             'File::Glob' => '1.38',
19580             'File::Spec' => '3.86',
19581             'File::Spec::AmigaOS' => '3.86',
19582             'File::Spec::Cygwin' => '3.86',
19583             'File::Spec::Epoc' => '3.86',
19584             'File::Spec::Functions' => '3.86',
19585             'File::Spec::Mac' => '3.86',
19586             'File::Spec::OS2' => '3.86',
19587             'File::Spec::Unix' => '3.86',
19588             'File::Spec::VMS' => '3.86',
19589             'File::Spec::Win32' => '3.86',
19590             'Filter::Util::Call' => '1.61',
19591             'Hash::Util' => '0.29',
19592             'I18N::LangTags::List' => '0.41',
19593             'IO::Compress::Adapter::Bzip2'=> '2.201',
19594             'IO::Compress::Adapter::Deflate'=> '2.201',
19595             'IO::Compress::Adapter::Identity'=> '2.201',
19596             'IO::Compress::Base' => '2.201',
19597             'IO::Compress::Base::Common'=> '2.201',
19598             'IO::Compress::Bzip2' => '2.201',
19599             'IO::Compress::Deflate' => '2.201',
19600             'IO::Compress::Gzip' => '2.201',
19601             'IO::Compress::Gzip::Constants'=> '2.201',
19602             'IO::Compress::RawDeflate'=> '2.201',
19603             'IO::Compress::Zip' => '2.201',
19604             'IO::Compress::Zip::Constants'=> '2.201',
19605             'IO::Compress::Zlib::Constants'=> '2.201',
19606             'IO::Compress::Zlib::Extra'=> '2.201',
19607             'IO::Uncompress::Adapter::Bunzip2'=> '2.201',
19608             'IO::Uncompress::Adapter::Identity'=> '2.201',
19609             'IO::Uncompress::Adapter::Inflate'=> '2.201',
19610             'IO::Uncompress::AnyInflate'=> '2.201',
19611             'IO::Uncompress::AnyUncompress'=> '2.201',
19612             'IO::Uncompress::Base' => '2.201',
19613             'IO::Uncompress::Bunzip2'=> '2.201',
19614             'IO::Uncompress::Gunzip'=> '2.201',
19615             'IO::Uncompress::Inflate'=> '2.201',
19616             'IO::Uncompress::RawInflate'=> '2.201',
19617             'IO::Uncompress::Unzip' => '2.201',
19618             'JSON::PP' => '4.10',
19619             'JSON::PP::Boolean' => '4.10',
19620             'Math::BigFloat' => '1.999837',
19621             'Math::BigFloat::Trace' => '0.66',
19622             'Math::BigInt' => '1.999837',
19623             'Math::BigInt::Calc' => '1.999837',
19624             'Math::BigInt::FastCalc'=> '0.5013',
19625             'Math::BigInt::Lib' => '1.999837',
19626             'Math::BigInt::Trace' => '0.66',
19627             'Math::BigRat' => '0.2624',
19628             'Math::BigRat::Trace' => '0.66',
19629             'Module::CoreList' => '5.20220720',
19630             'Module::CoreList::Utils'=> '5.20220720',
19631             'Opcode' => '1.59',
19632             'PerlIO::via::QuotedPrint'=> '0.10',
19633             'Pod::Checker' => '1.75',
19634             'Pod::Usage' => '2.03',
19635             'Socket' => '2.035',
19636             'Storable' => '3.27',
19637             'Test2' => '1.302191',
19638             'Test2::API' => '1.302191',
19639             'Test2::API::Breakage' => '1.302191',
19640             'Test2::API::Context' => '1.302191',
19641             'Test2::API::Instance' => '1.302191',
19642             'Test2::API::InterceptResult'=> '1.302191',
19643             'Test2::API::InterceptResult::Event'=> '1.302191',
19644             'Test2::API::InterceptResult::Facet'=> '1.302191',
19645             'Test2::API::InterceptResult::Hub'=> '1.302191',
19646             'Test2::API::InterceptResult::Squasher'=> '1.302191',
19647             'Test2::API::Stack' => '1.302191',
19648             'Test2::Event' => '1.302191',
19649             'Test2::Event::Bail' => '1.302191',
19650             'Test2::Event::Diag' => '1.302191',
19651             'Test2::Event::Encoding'=> '1.302191',
19652             'Test2::Event::Exception'=> '1.302191',
19653             'Test2::Event::Fail' => '1.302191',
19654             'Test2::Event::Generic' => '1.302191',
19655             'Test2::Event::Note' => '1.302191',
19656             'Test2::Event::Ok' => '1.302191',
19657             'Test2::Event::Pass' => '1.302191',
19658             'Test2::Event::Plan' => '1.302191',
19659             'Test2::Event::Skip' => '1.302191',
19660             'Test2::Event::Subtest' => '1.302191',
19661             'Test2::Event::TAP::Version'=> '1.302191',
19662             'Test2::Event::V2' => '1.302191',
19663             'Test2::Event::Waiting' => '1.302191',
19664             'Test2::EventFacet' => '1.302191',
19665             'Test2::EventFacet::About'=> '1.302191',
19666             'Test2::EventFacet::Amnesty'=> '1.302191',
19667             'Test2::EventFacet::Assert'=> '1.302191',
19668             'Test2::EventFacet::Control'=> '1.302191',
19669             'Test2::EventFacet::Error'=> '1.302191',
19670             'Test2::EventFacet::Hub'=> '1.302191',
19671             'Test2::EventFacet::Info'=> '1.302191',
19672             'Test2::EventFacet::Info::Table'=> '1.302191',
19673             'Test2::EventFacet::Meta'=> '1.302191',
19674             'Test2::EventFacet::Parent'=> '1.302191',
19675             'Test2::EventFacet::Plan'=> '1.302191',
19676             'Test2::EventFacet::Render'=> '1.302191',
19677             'Test2::EventFacet::Trace'=> '1.302191',
19678             'Test2::Formatter' => '1.302191',
19679             'Test2::Formatter::TAP' => '1.302191',
19680             'Test2::Hub' => '1.302191',
19681             'Test2::Hub::Interceptor'=> '1.302191',
19682             'Test2::Hub::Interceptor::Terminator'=> '1.302191',
19683             'Test2::Hub::Subtest' => '1.302191',
19684             'Test2::IPC' => '1.302191',
19685             'Test2::IPC::Driver' => '1.302191',
19686             'Test2::IPC::Driver::Files'=> '1.302191',
19687             'Test2::Tools::Tiny' => '1.302191',
19688             'Test2::Util' => '1.302191',
19689             'Test2::Util::ExternalMeta'=> '1.302191',
19690             'Test2::Util::Facets2Legacy'=> '1.302191',
19691             'Test2::Util::HashBase' => '1.302191',
19692             'Test2::Util::Trace' => '1.302191',
19693             'Test::Builder' => '1.302191',
19694             'Test::Builder::Formatter'=> '1.302191',
19695             'Test::Builder::Module' => '1.302191',
19696             'Test::Builder::Tester' => '1.302191',
19697             'Test::Builder::Tester::Color'=> '1.302191',
19698             'Test::Builder::TodoDiag'=> '1.302191',
19699             'Test::More' => '1.302191',
19700             'Test::Simple' => '1.302191',
19701             'Test::Tester' => '1.302191',
19702             'Test::Tester::Capture' => '1.302191',
19703             'Test::Tester::CaptureRunner'=> '1.302191',
19704             'Test::Tester::Delegate'=> '1.302191',
19705             'Test::use::ok' => '1.302191',
19706             'Text::Balanced' => '2.06',
19707             'XS::APItest' => '1.24',
19708             'bigfloat' => '0.66',
19709             'bigint' => '0.66',
19710             'bignum' => '0.66',
19711             'bigrat' => '0.66',
19712             'builtin' => '0.008',
19713             'feature' => '1.75',
19714             'ok' => '1.302191',
19715             'threads::shared' => '1.65',
19716             },
19717             removed => {
19718             }
19719             },
19720             5.037003 => {
19721             delta_from => 5.037002,
19722             changed => {
19723             'B' => '1.86',
19724             'B::Deparse' => '1.68',
19725             'B::Op_private' => '5.037003',
19726             'Config' => '5.037003',
19727             'Digest::SHA' => '6.03',
19728             'DynaLoader' => '1.53',
19729             'Encode' => '3.19',
19730             'Encode::Alias' => '2.25',
19731             'ExtUtils::PL2Bat' => '0.005',
19732             'File::Find' => '1.41',
19733             'Filter::Util::Call' => '1.64',
19734             'HTTP::Tiny' => '0.082',
19735             'JSON::PP' => '4.11',
19736             'JSON::PP::Boolean' => '4.11',
19737             'List::Util' => '1.63',
19738             'List::Util::XS' => '1.63',
19739             'Memoize' => '1.10',
19740             'Memoize::AnyDBM_File' => '1.10',
19741             'Memoize::Expire' => '1.10',
19742             'Memoize::NDBM_File' => '1.10',
19743             'Memoize::SDBM_File' => '1.10',
19744             'Memoize::Storable' => '1.10',
19745             'Module::CoreList' => '5.20220820',
19746             'Module::CoreList::Utils'=> '5.20220820',
19747             'NDBM_File' => '1.16',
19748             'Opcode' => '1.60',
19749             'Scalar::Util' => '1.63',
19750             'Socket' => '2.036',
19751             'Sub::Util' => '1.63',
19752             'XS::APItest' => '1.25',
19753             'attributes' => '0.35',
19754             'threads' => '2.29',
19755             },
19756             removed => {
19757             'Memoize::ExpireFile' => 1,
19758             'Memoize::ExpireTest' => 1,
19759             }
19760             },
19761             5.037004 => {
19762             delta_from => 5.037003,
19763             changed => {
19764             'B::Deparse' => '1.69',
19765             'B::Op_private' => '5.037004',
19766             'Carp' => '1.54',
19767             'Carp::Heavy' => '1.54',
19768             'Class::Struct' => '0.67',
19769             'Config' => '5.037004',
19770             'Config::Perl::V' => '0.34',
19771             'Errno' => '1.37',
19772             'ExtUtils::ParseXS' => '3.46',
19773             'ExtUtils::ParseXS::Constants'=> '3.46',
19774             'ExtUtils::ParseXS::CountLines'=> '3.46',
19775             'ExtUtils::ParseXS::Eval'=> '3.46',
19776             'ExtUtils::ParseXS::Utilities'=> '3.46',
19777             'ExtUtils::Typemaps' => '3.46',
19778             'ExtUtils::Typemaps::Cmd'=> '3.46',
19779             'ExtUtils::Typemaps::InputMap'=> '3.46',
19780             'ExtUtils::Typemaps::OutputMap'=> '3.46',
19781             'ExtUtils::Typemaps::Type'=> '3.46',
19782             'File::Basename' => '2.86',
19783             'File::Copy' => '2.40',
19784             'File::Spec' => '3.87',
19785             'File::stat' => '1.13',
19786             'FileHandle' => '2.05',
19787             'Hash::Util' => '0.30',
19788             'I18N::Langinfo' => '0.22',
19789             'IO' => '1.51',
19790             'IO::Dir' => '1.51',
19791             'IO::File' => '1.51',
19792             'IO::Handle' => '1.51',
19793             'IO::Pipe' => '1.51',
19794             'IO::Poll' => '1.51',
19795             'IO::Seekable' => '1.51',
19796             'IO::Select' => '1.51',
19797             'IO::Socket' => '1.51',
19798             'IO::Socket::INET' => '1.51',
19799             'IO::Socket::UNIX' => '1.51',
19800             'Locale::Maketext' => '1.32',
19801             'Module::CoreList' => '5.20220920',
19802             'Module::CoreList::Utils'=> '5.20220920',
19803             'Net::protoent' => '1.02',
19804             'Net::servent' => '1.03',
19805             'Opcode' => '1.61',
19806             'POSIX' => '2.06',
19807             'Safe' => '2.44',
19808             'Sys::Hostname' => '1.25',
19809             'Time::HiRes' => '1.9771',
19810             'User::grent' => '1.04',
19811             'User::pwent' => '1.02',
19812             'XS::APItest' => '1.26',
19813             'XSLoader' => '0.32',
19814             'feature' => '1.76',
19815             },
19816             removed => {
19817             }
19818             },
19819             5.037005 => {
19820             delta_from => 5.037004,
19821             changed => {
19822             'B::Deparse' => '1.70',
19823             'B::Op_private' => '5.037005',
19824             'Config' => '5.037005',
19825             'JSON::PP' => '4.12',
19826             'JSON::PP::Boolean' => '4.12',
19827             'Math::Complex' => '1.5903',
19828             'Math::Trig' => '1.2301',
19829             'Memoize' => '1.14',
19830             'Memoize::AnyDBM_File' => '1.14',
19831             'Memoize::Expire' => '1.14',
19832             'Memoize::NDBM_File' => '1.14',
19833             'Memoize::SDBM_File' => '1.14',
19834             'Memoize::Storable' => '1.14',
19835             'Module::CoreList' => '5.20221020',
19836             'Module::CoreList::Utils'=> '5.20221020',
19837             'Net::Ping' => '2.75',
19838             'POSIX' => '2.07',
19839             'Unicode' => '15.0.0',
19840             'threads' => '2.31',
19841             'warnings' => '1.59',
19842             },
19843             removed => {
19844             }
19845             },
19846             5.037006 => {
19847             delta_from => 5.037005,
19848             changed => {
19849             'Attribute::Handlers' => '1.03',
19850             'B' => '1.87',
19851             'B::Deparse' => '1.71',
19852             'B::Op_private' => '5.037006',
19853             'Config' => '5.037006',
19854             'Data::Dumper' => '2.187',
19855             'Devel::PPPort' => '3.69',
19856             'ExtUtils::CBuilder' => '0.280238',
19857             'ExtUtils::CBuilder::Base'=> '0.280238',
19858             'ExtUtils::CBuilder::Platform::Unix'=> '0.280238',
19859             'ExtUtils::CBuilder::Platform::VMS'=> '0.280238',
19860             'ExtUtils::CBuilder::Platform::Windows'=> '0.280238',
19861             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280238',
19862             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280238',
19863             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280238',
19864             'ExtUtils::CBuilder::Platform::aix'=> '0.280238',
19865             'ExtUtils::CBuilder::Platform::android'=> '0.280238',
19866             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280238',
19867             'ExtUtils::CBuilder::Platform::darwin'=> '0.280238',
19868             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280238',
19869             'ExtUtils::CBuilder::Platform::os2'=> '0.280238',
19870             'ExtUtils::ParseXS' => '3.48',
19871             'ExtUtils::ParseXS::Constants'=> '3.48',
19872             'ExtUtils::ParseXS::CountLines'=> '3.48',
19873             'ExtUtils::ParseXS::Eval'=> '3.48',
19874             'ExtUtils::ParseXS::Utilities'=> '3.48',
19875             'ExtUtils::Typemaps' => '3.48',
19876             'ExtUtils::Typemaps::Cmd'=> '3.48',
19877             'ExtUtils::Typemaps::InputMap'=> '3.48',
19878             'ExtUtils::Typemaps::OutputMap'=> '3.48',
19879             'ExtUtils::Typemaps::Type'=> '3.48',
19880             'Getopt::Long' => '2.54',
19881             'Memoize' => '1.15',
19882             'Memoize::AnyDBM_File' => '1.15',
19883             'Memoize::Expire' => '1.15',
19884             'Memoize::NDBM_File' => '1.15',
19885             'Memoize::SDBM_File' => '1.15',
19886             'Memoize::Storable' => '1.15',
19887             'Module::CoreList' => '5.20221120',
19888             'Module::CoreList::Utils'=> '5.20221120',
19889             'Opcode' => '1.62',
19890             'POSIX' => '2.08',
19891             'Storable' => '3.28',
19892             'Time::HiRes' => '1.9772',
19893             'XS::APItest' => '1.27',
19894             'experimental' => '0.029',
19895             'feature' => '1.77',
19896             'overload' => '1.36',
19897             'threads' => '2.32',
19898             'utf8' => '1.25',
19899             'warnings' => '1.61',
19900             },
19901             removed => {
19902             }
19903             },
19904             5.037007 => {
19905             delta_from => 5.037006,
19906             changed => {
19907             'B::Deparse' => '1.72',
19908             'B::Op_private' => '5.037007',
19909             'Config' => '5.037007',
19910             'Cwd' => '3.88',
19911             'ExtUtils::Miniperl' => '1.13',
19912             'ExtUtils::ParseXS' => '3.49',
19913             'ExtUtils::ParseXS::Constants'=> '3.49',
19914             'ExtUtils::ParseXS::CountLines'=> '3.49',
19915             'ExtUtils::ParseXS::Eval'=> '3.49',
19916             'ExtUtils::ParseXS::Utilities'=> '3.49',
19917             'ExtUtils::Typemaps' => '3.49',
19918             'ExtUtils::Typemaps::Cmd'=> '3.49',
19919             'ExtUtils::Typemaps::InputMap'=> '3.49',
19920             'ExtUtils::Typemaps::OutputMap'=> '3.49',
19921             'ExtUtils::Typemaps::Type'=> '3.49',
19922             'File::Glob' => '1.39',
19923             'File::Spec' => '3.88',
19924             'File::Spec::AmigaOS' => '3.88',
19925             'File::Spec::Cygwin' => '3.88',
19926             'File::Spec::Epoc' => '3.88',
19927             'File::Spec::Functions' => '3.88',
19928             'File::Spec::Mac' => '3.88',
19929             'File::Spec::OS2' => '3.88',
19930             'File::Spec::Unix' => '3.88',
19931             'File::Spec::VMS' => '3.88',
19932             'File::Spec::Win32' => '3.88',
19933             'Module::CoreList' => '5.20221220',
19934             'Module::CoreList::Utils'=> '5.20221220',
19935             'Opcode' => '1.63',
19936             'POSIX' => '2.10',
19937             'Pod::Html' => '1.34',
19938             'Pod::Html::Util' => '1.34',
19939             'Pod::Man' => '5.00',
19940             'Pod::ParseLink' => '5.00',
19941             'Pod::Text' => '5.00',
19942             'Pod::Text::Color' => '5.00',
19943             'Pod::Text::Overstrike' => '5.00',
19944             'Pod::Text::Termcap' => '5.00',
19945             'XS::APItest' => '1.28',
19946             'experimental' => '0.030',
19947             'feature' => '1.78',
19948             'parent' => '0.239',
19949             'threads' => '2.33',
19950             },
19951             removed => {
19952             }
19953             },
19954             5.037008 => {
19955             delta_from => 5.037007,
19956             changed => {
19957             'B::Op_private' => '5.037008',
19958             'Config' => '5.037008',
19959             'Config::Perl::V' => '0.35',
19960             'ExtUtils::Command' => '7.66',
19961             'ExtUtils::Command::MM' => '7.66',
19962             'ExtUtils::Install' => '2.22',
19963             'ExtUtils::Installed' => '2.22',
19964             'ExtUtils::Liblist' => '7.66',
19965             'ExtUtils::Liblist::Kid'=> '7.66',
19966             'ExtUtils::MM' => '7.66',
19967             'ExtUtils::MM_AIX' => '7.66',
19968             'ExtUtils::MM_Any' => '7.66',
19969             'ExtUtils::MM_BeOS' => '7.66',
19970             'ExtUtils::MM_Cygwin' => '7.66',
19971             'ExtUtils::MM_DOS' => '7.66',
19972             'ExtUtils::MM_Darwin' => '7.66',
19973             'ExtUtils::MM_MacOS' => '7.66',
19974             'ExtUtils::MM_NW5' => '7.66',
19975             'ExtUtils::MM_OS2' => '7.66',
19976             'ExtUtils::MM_OS390' => '7.66',
19977             'ExtUtils::MM_QNX' => '7.66',
19978             'ExtUtils::MM_UWIN' => '7.66',
19979             'ExtUtils::MM_Unix' => '7.66',
19980             'ExtUtils::MM_VMS' => '7.66',
19981             'ExtUtils::MM_VOS' => '7.66',
19982             'ExtUtils::MM_Win32' => '7.66',
19983             'ExtUtils::MM_Win95' => '7.66',
19984             'ExtUtils::MY' => '7.66',
19985             'ExtUtils::MakeMaker' => '7.66',
19986             'ExtUtils::MakeMaker::Config'=> '7.66',
19987             'ExtUtils::MakeMaker::Locale'=> '7.66',
19988             'ExtUtils::MakeMaker::version'=> '7.66',
19989             'ExtUtils::MakeMaker::version::regex'=> '7.66',
19990             'ExtUtils::Mkbootstrap' => '7.66',
19991             'ExtUtils::Mksymlists' => '7.66',
19992             'ExtUtils::Packlist' => '2.22',
19993             'ExtUtils::testlib' => '7.66',
19994             'File::Find' => '1.42',
19995             'IO::Zlib' => '1.14',
19996             'JSON::PP' => '4.16',
19997             'JSON::PP::Boolean' => '4.16',
19998             'Math::Complex' => '1.6',
19999             'Math::Trig' => '1.6',
20000             'Module::CoreList' => '5.20230120',
20001             'Module::CoreList::Utils'=> '5.20230120',
20002             'POSIX' => '2.11',
20003             'Pod::Man' => '5.01',
20004             'Pod::ParseLink' => '5.01',
20005             'Pod::Text' => '5.01',
20006             'Pod::Text::Color' => '5.01',
20007             'Pod::Text::Overstrike' => '5.01',
20008             'Pod::Text::Termcap' => '5.01',
20009             'Storable' => '3.29',
20010             'XS::APItest' => '1.30',
20011             'feature' => '1.79',
20012             're' => '0.44',
20013             'threads' => '2.34',
20014             },
20015             removed => {
20016             }
20017             },
20018             5.037009 => {
20019             delta_from => 5.037008,
20020             changed => {
20021             'B' => '1.88',
20022             'B::Op_private' => '5.037009',
20023             'Compress::Raw::Bzip2' => '2.204',
20024             'Compress::Raw::Zlib' => '2.204',
20025             'Compress::Zlib' => '2.204',
20026             'Config' => '5.037009',
20027             'Devel::PPPort' => '3.70',
20028             'Devel::Peek' => '1.33',
20029             'Fatal' => '2.36',
20030             'File::Find' => '1.43',
20031             'IO::Compress::Adapter::Bzip2'=> '2.204',
20032             'IO::Compress::Adapter::Deflate'=> '2.204',
20033             'IO::Compress::Adapter::Identity'=> '2.204',
20034             'IO::Compress::Base' => '2.204',
20035             'IO::Compress::Base::Common'=> '2.204',
20036             'IO::Compress::Bzip2' => '2.204',
20037             'IO::Compress::Deflate' => '2.204',
20038             'IO::Compress::Gzip' => '2.204',
20039             'IO::Compress::Gzip::Constants'=> '2.204',
20040             'IO::Compress::RawDeflate'=> '2.204',
20041             'IO::Compress::Zip' => '2.204',
20042             'IO::Compress::Zip::Constants'=> '2.204',
20043             'IO::Compress::Zlib::Constants'=> '2.204',
20044             'IO::Compress::Zlib::Extra'=> '2.204',
20045             'IO::Uncompress::Adapter::Bunzip2'=> '2.204',
20046             'IO::Uncompress::Adapter::Identity'=> '2.204',
20047             'IO::Uncompress::Adapter::Inflate'=> '2.204',
20048             'IO::Uncompress::AnyInflate'=> '2.204',
20049             'IO::Uncompress::AnyUncompress'=> '2.204',
20050             'IO::Uncompress::Base' => '2.204',
20051             'IO::Uncompress::Bunzip2'=> '2.204',
20052             'IO::Uncompress::Gunzip'=> '2.204',
20053             'IO::Uncompress::Inflate'=> '2.204',
20054             'IO::Uncompress::RawInflate'=> '2.204',
20055             'IO::Uncompress::Unzip' => '2.204',
20056             'Math::Complex' => '1.61',
20057             'Math::Trig' => '1.61',
20058             'Memoize' => '1.16',
20059             'Memoize::AnyDBM_File' => '1.16',
20060             'Memoize::Expire' => '1.16',
20061             'Memoize::NDBM_File' => '1.16',
20062             'Memoize::SDBM_File' => '1.16',
20063             'Memoize::Storable' => '1.16',
20064             'Module::CoreList' => '5.20230220',
20065             'Module::CoreList::Utils'=> '5.20230220',
20066             'Opcode' => '1.64',
20067             'Term::Cap' => '1.18',
20068             'Test2' => '1.302192',
20069             'Test2::API' => '1.302192',
20070             'Test2::API::Breakage' => '1.302192',
20071             'Test2::API::Context' => '1.302192',
20072             'Test2::API::Instance' => '1.302192',
20073             'Test2::API::InterceptResult'=> '1.302192',
20074             'Test2::API::InterceptResult::Event'=> '1.302192',
20075             'Test2::API::InterceptResult::Facet'=> '1.302192',
20076             'Test2::API::InterceptResult::Hub'=> '1.302192',
20077             'Test2::API::InterceptResult::Squasher'=> '1.302192',
20078             'Test2::API::Stack' => '1.302192',
20079             'Test2::Event' => '1.302192',
20080             'Test2::Event::Bail' => '1.302192',
20081             'Test2::Event::Diag' => '1.302192',
20082             'Test2::Event::Encoding'=> '1.302192',
20083             'Test2::Event::Exception'=> '1.302192',
20084             'Test2::Event::Fail' => '1.302192',
20085             'Test2::Event::Generic' => '1.302192',
20086             'Test2::Event::Note' => '1.302192',
20087             'Test2::Event::Ok' => '1.302192',
20088             'Test2::Event::Pass' => '1.302192',
20089             'Test2::Event::Plan' => '1.302192',
20090             'Test2::Event::Skip' => '1.302192',
20091             'Test2::Event::Subtest' => '1.302192',
20092             'Test2::Event::TAP::Version'=> '1.302192',
20093             'Test2::Event::V2' => '1.302192',
20094             'Test2::Event::Waiting' => '1.302192',
20095             'Test2::EventFacet' => '1.302192',
20096             'Test2::EventFacet::About'=> '1.302192',
20097             'Test2::EventFacet::Amnesty'=> '1.302192',
20098             'Test2::EventFacet::Assert'=> '1.302192',
20099             'Test2::EventFacet::Control'=> '1.302192',
20100             'Test2::EventFacet::Error'=> '1.302192',
20101             'Test2::EventFacet::Hub'=> '1.302192',
20102             'Test2::EventFacet::Info'=> '1.302192',
20103             'Test2::EventFacet::Info::Table'=> '1.302192',
20104             'Test2::EventFacet::Meta'=> '1.302192',
20105             'Test2::EventFacet::Parent'=> '1.302192',
20106             'Test2::EventFacet::Plan'=> '1.302192',
20107             'Test2::EventFacet::Render'=> '1.302192',
20108             'Test2::EventFacet::Trace'=> '1.302192',
20109             'Test2::Formatter' => '1.302192',
20110             'Test2::Formatter::TAP' => '1.302192',
20111             'Test2::Hub' => '1.302192',
20112             'Test2::Hub::Interceptor'=> '1.302192',
20113             'Test2::Hub::Interceptor::Terminator'=> '1.302192',
20114             'Test2::Hub::Subtest' => '1.302192',
20115             'Test2::IPC' => '1.302192',
20116             'Test2::IPC::Driver' => '1.302192',
20117             'Test2::IPC::Driver::Files'=> '1.302192',
20118             'Test2::Tools::Tiny' => '1.302192',
20119             'Test2::Util' => '1.302192',
20120             'Test2::Util::ExternalMeta'=> '1.302192',
20121             'Test2::Util::Facets2Legacy'=> '1.302192',
20122             'Test2::Util::HashBase' => '1.302192',
20123             'Test2::Util::Trace' => '1.302192',
20124             'Test::Builder' => '1.302192',
20125             'Test::Builder::Formatter'=> '1.302192',
20126             'Test::Builder::Module' => '1.302192',
20127             'Test::Builder::Tester' => '1.302192',
20128             'Test::Builder::Tester::Color'=> '1.302192',
20129             'Test::Builder::TodoDiag'=> '1.302192',
20130             'Test::More' => '1.302192',
20131             'Test::Simple' => '1.302192',
20132             'Test::Tester' => '1.302192',
20133             'Test::Tester::Capture' => '1.302192',
20134             'Test::Tester::CaptureRunner'=> '1.302192',
20135             'Test::Tester::Delegate'=> '1.302192',
20136             'Test::use::ok' => '1.302192',
20137             'Tie::File' => '1.07',
20138             'UNIVERSAL' => '1.15',
20139             'autodie' => '2.36',
20140             'autodie::Scope::Guard' => '2.36',
20141             'autodie::Scope::GuardStack'=> '2.36',
20142             'autodie::Util' => '2.36',
20143             'autodie::exception' => '2.36',
20144             'autodie::exception::system'=> '2.36',
20145             'autodie::hints' => '2.36',
20146             'autodie::skip' => '2.36',
20147             'experimental' => '0.031',
20148             'feature' => '1.80',
20149             'mro' => '1.28',
20150             'ok' => '1.302192',
20151             'parent' => '0.241',
20152             'stable' => '0.031',
20153             'warnings' => '1.62',
20154             },
20155             removed => {
20156             }
20157             },
20158             5.037010 => {
20159             delta_from => 5.037009,
20160             changed => {
20161             'B::Op_private' => '5.037010',
20162             'Benchmark' => '1.24',
20163             'Class::Struct' => '0.68',
20164             'Config' => '5.03701',
20165             'Config::Perl::V' => '0.36',
20166             'Cwd' => '3.89',
20167             'Data::Dumper' => '2.188',
20168             'Digest::SHA' => '6.04',
20169             'Env' => '1.06',
20170             'Math::Complex' => '1.62',
20171             'Math::Trig' => '1.62',
20172             'Module::CoreList' => '5.20230320',
20173             'Module::CoreList::Utils'=> '5.20230320',
20174             'Net::Cmd' => '3.15',
20175             'Net::Config' => '3.15',
20176             'Net::Domain' => '3.15',
20177             'Net::FTP' => '3.15',
20178             'Net::FTP::A' => '3.15',
20179             'Net::FTP::E' => '3.15',
20180             'Net::FTP::I' => '3.15',
20181             'Net::FTP::L' => '3.15',
20182             'Net::FTP::dataconn' => '3.15',
20183             'Net::NNTP' => '3.15',
20184             'Net::Netrc' => '3.15',
20185             'Net::POP3' => '3.15',
20186             'Net::SMTP' => '3.15',
20187             'Net::Time' => '3.15',
20188             'POSIX' => '2.12',
20189             'Storable' => '3.31',
20190             'Test2' => '1.302194',
20191             'Test2::API' => '1.302194',
20192             'Test2::API::Breakage' => '1.302194',
20193             'Test2::API::Context' => '1.302194',
20194             'Test2::API::Instance' => '1.302194',
20195             'Test2::API::InterceptResult'=> '1.302194',
20196             'Test2::API::InterceptResult::Event'=> '1.302194',
20197             'Test2::API::InterceptResult::Facet'=> '1.302194',
20198             'Test2::API::InterceptResult::Hub'=> '1.302194',
20199             'Test2::API::InterceptResult::Squasher'=> '1.302194',
20200             'Test2::API::Stack' => '1.302194',
20201             'Test2::Event' => '1.302194',
20202             'Test2::Event::Bail' => '1.302194',
20203             'Test2::Event::Diag' => '1.302194',
20204             'Test2::Event::Encoding'=> '1.302194',
20205             'Test2::Event::Exception'=> '1.302194',
20206             'Test2::Event::Fail' => '1.302194',
20207             'Test2::Event::Generic' => '1.302194',
20208             'Test2::Event::Note' => '1.302194',
20209             'Test2::Event::Ok' => '1.302194',
20210             'Test2::Event::Pass' => '1.302194',
20211             'Test2::Event::Plan' => '1.302194',
20212             'Test2::Event::Skip' => '1.302194',
20213             'Test2::Event::Subtest' => '1.302194',
20214             'Test2::Event::TAP::Version'=> '1.302194',
20215             'Test2::Event::V2' => '1.302194',
20216             'Test2::Event::Waiting' => '1.302194',
20217             'Test2::EventFacet' => '1.302194',
20218             'Test2::EventFacet::About'=> '1.302194',
20219             'Test2::EventFacet::Amnesty'=> '1.302194',
20220             'Test2::EventFacet::Assert'=> '1.302194',
20221             'Test2::EventFacet::Control'=> '1.302194',
20222             'Test2::EventFacet::Error'=> '1.302194',
20223             'Test2::EventFacet::Hub'=> '1.302194',
20224             'Test2::EventFacet::Info'=> '1.302194',
20225             'Test2::EventFacet::Info::Table'=> '1.302194',
20226             'Test2::EventFacet::Meta'=> '1.302194',
20227             'Test2::EventFacet::Parent'=> '1.302194',
20228             'Test2::EventFacet::Plan'=> '1.302194',
20229             'Test2::EventFacet::Render'=> '1.302194',
20230             'Test2::EventFacet::Trace'=> '1.302194',
20231             'Test2::Formatter' => '1.302194',
20232             'Test2::Formatter::TAP' => '1.302194',
20233             'Test2::Hub' => '1.302194',
20234             'Test2::Hub::Interceptor'=> '1.302194',
20235             'Test2::Hub::Interceptor::Terminator'=> '1.302194',
20236             'Test2::Hub::Subtest' => '1.302194',
20237             'Test2::IPC' => '1.302194',
20238             'Test2::IPC::Driver' => '1.302194',
20239             'Test2::IPC::Driver::Files'=> '1.302194',
20240             'Test2::Tools::Tiny' => '1.302194',
20241             'Test2::Util' => '1.302194',
20242             'Test2::Util::ExternalMeta'=> '1.302194',
20243             'Test2::Util::Facets2Legacy'=> '1.302194',
20244             'Test2::Util::HashBase' => '1.302194',
20245             'Test2::Util::Trace' => '1.302194',
20246             'Test::Builder' => '1.302194',
20247             'Test::Builder::Formatter'=> '1.302194',
20248             'Test::Builder::Module' => '1.302194',
20249             'Test::Builder::Tester' => '1.302194',
20250             'Test::Builder::Tester::Color'=> '1.302194',
20251             'Test::Builder::TodoDiag'=> '1.302194',
20252             'Test::More' => '1.302194',
20253             'Test::Simple' => '1.302194',
20254             'Test::Tester' => '1.302194',
20255             'Test::Tester::Capture' => '1.302194',
20256             'Test::Tester::CaptureRunner'=> '1.302194',
20257             'Test::Tester::Delegate'=> '1.302194',
20258             'Test::use::ok' => '1.302194',
20259             'Time::HiRes' => '1.9774',
20260             'XS::APItest' => '1.32',
20261             'feature' => '1.81',
20262             'ok' => '1.302194',
20263             'overload' => '1.37',
20264             'threads' => '2.35',
20265             'threads::shared' => '1.67',
20266             'warnings' => '1.63',
20267             'warnings::register' => '1.05',
20268             },
20269             removed => {
20270             }
20271             },
20272             5.037011 => {
20273             delta_from => 5.037010,
20274             changed => {
20275             'B::Deparse' => '1.73',
20276             'B::Op_private' => '5.037011',
20277             'Config' => '5.037011',
20278             'Devel::PPPort' => '3.71',
20279             'ExtUtils::Command' => '7.70',
20280             'ExtUtils::Command::MM' => '7.70',
20281             'ExtUtils::Liblist' => '7.70',
20282             'ExtUtils::Liblist::Kid'=> '7.70',
20283             'ExtUtils::MM' => '7.70',
20284             'ExtUtils::MM_AIX' => '7.70',
20285             'ExtUtils::MM_Any' => '7.70',
20286             'ExtUtils::MM_BeOS' => '7.70',
20287             'ExtUtils::MM_Cygwin' => '7.70',
20288             'ExtUtils::MM_DOS' => '7.70',
20289             'ExtUtils::MM_Darwin' => '7.70',
20290             'ExtUtils::MM_MacOS' => '7.70',
20291             'ExtUtils::MM_NW5' => '7.70',
20292             'ExtUtils::MM_OS2' => '7.70',
20293             'ExtUtils::MM_OS390' => '7.70',
20294             'ExtUtils::MM_QNX' => '7.70',
20295             'ExtUtils::MM_UWIN' => '7.70',
20296             'ExtUtils::MM_Unix' => '7.70',
20297             'ExtUtils::MM_VMS' => '7.70',
20298             'ExtUtils::MM_VOS' => '7.70',
20299             'ExtUtils::MM_Win32' => '7.70',
20300             'ExtUtils::MM_Win95' => '7.70',
20301             'ExtUtils::MY' => '7.70',
20302             'ExtUtils::MakeMaker' => '7.70',
20303             'ExtUtils::MakeMaker::Config'=> '7.70',
20304             'ExtUtils::MakeMaker::Locale'=> '7.70',
20305             'ExtUtils::MakeMaker::version'=> '7.70',
20306             'ExtUtils::MakeMaker::version::regex'=> '7.70',
20307             'ExtUtils::Mkbootstrap' => '7.70',
20308             'ExtUtils::Mksymlists' => '7.70',
20309             'ExtUtils::ParseXS' => '3.50',
20310             'ExtUtils::ParseXS::Constants'=> '3.50',
20311             'ExtUtils::ParseXS::CountLines'=> '3.50',
20312             'ExtUtils::ParseXS::Eval'=> '3.50',
20313             'ExtUtils::ParseXS::Utilities'=> '3.50',
20314             'ExtUtils::testlib' => '7.70',
20315             'File::Copy' => '2.41',
20316             'Locale::Maketext' => '1.33',
20317             'Module::CoreList' => '5.20230420',
20318             'Module::CoreList::Utils'=> '5.20230420',
20319             'Net::Ping' => '2.76',
20320             'feature' => '1.82',
20321             'threads' => '2.36',
20322             'threads::shared' => '1.68',
20323             'warnings' => '1.64',
20324             },
20325             removed => {
20326             }
20327             },
20328             5.036001 => {
20329             delta_from => 5.036000,
20330             changed => {
20331             'B::Op_private' => '5.036001',
20332             'Config' => '5.036001',
20333             'Module::CoreList' => '5.20230423',
20334             'Module::CoreList::Utils'=> '5.20230423',
20335             },
20336             removed => {
20337             }
20338             },
20339             5.038000 => {
20340             delta_from => 5.037011,
20341             changed => {
20342             'B::Deparse' => '1.74',
20343             'B::Op_private' => '5.038000',
20344             'CPAN' => '2.36',
20345             'CPAN::HTTP::Client' => '1.9602',
20346             'Compress::Raw::Bzip2' => '2.204_001',
20347             'Compress::Raw::Zlib' => '2.204_001',
20348             'Config' => '5.038',
20349             'Digest::MD5' => '2.58_01',
20350             'DynaLoader' => '1.54',
20351             'ExtUtils::ParseXS' => '3.51',
20352             'ExtUtils::ParseXS::Constants'=> '3.51',
20353             'ExtUtils::ParseXS::CountLines'=> '3.51',
20354             'ExtUtils::ParseXS::Eval'=> '3.51',
20355             'ExtUtils::ParseXS::Utilities'=> '3.51',
20356             'ExtUtils::Typemaps' => '3.51',
20357             'ExtUtils::Typemaps::Cmd'=> '3.51',
20358             'ExtUtils::Typemaps::InputMap'=> '3.51',
20359             'ExtUtils::Typemaps::OutputMap'=> '3.51',
20360             'ExtUtils::Typemaps::Type'=> '3.51',
20361             'File::Glob' => '1.40',
20362             'HTTP::Tiny' => '0.086',
20363             'IO' => '1.52',
20364             'IO::Dir' => '1.52',
20365             'IO::File' => '1.52',
20366             'IO::Handle' => '1.52',
20367             'IO::Pipe' => '1.52',
20368             'IO::Poll' => '1.52',
20369             'IO::Seekable' => '1.52',
20370             'IO::Select' => '1.52',
20371             'IO::Socket' => '1.52',
20372             'IO::Socket::INET' => '1.52',
20373             'IO::Socket::IP' => '0.41_01',
20374             'IO::Socket::UNIX' => '1.52',
20375             'MIME::Base64' => '3.16_01',
20376             'MIME::QuotedPrint' => '3.16_01',
20377             'Module::CoreList' => '5.20230520',
20378             'Module::CoreList::Utils'=> '5.20230520',
20379             'POSIX' => '2.13',
20380             'SDBM_File' => '1.17',
20381             'Storable' => '3.32',
20382             'Time::HiRes' => '1.9775',
20383             'Time::Piece' => '1.3401_01',
20384             'warnings' => '1.65',
20385             },
20386             removed => {
20387             }
20388             },
20389             5.039001 => {
20390             delta_from => 5.038000,
20391             changed => {
20392             'B::Op_private' => '5.039001',
20393             'CPAN::Meta::Requirements'=> '2.143',
20394             'CPAN::Meta::Requirements::Range'=> '2.143',
20395             'Compress::Raw::Bzip2' => '2.205',
20396             'Compress::Raw::Zlib' => '2.205',
20397             'Compress::Zlib' => '2.205',
20398             'Config' => '5.039001',
20399             'Errno' => '1.38',
20400             'ExtUtils::CBuilder' => '0.280239',
20401             'ExtUtils::CBuilder::Base'=> '0.280239',
20402             'ExtUtils::CBuilder::Platform::Unix'=> '0.280239',
20403             'ExtUtils::CBuilder::Platform::VMS'=> '0.280239',
20404             'ExtUtils::CBuilder::Platform::Windows'=> '0.280239',
20405             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280239',
20406             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280239',
20407             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280239',
20408             'ExtUtils::CBuilder::Platform::aix'=> '0.280239',
20409             'ExtUtils::CBuilder::Platform::android'=> '0.280239',
20410             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280239',
20411             'ExtUtils::CBuilder::Platform::darwin'=> '0.280239',
20412             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280239',
20413             'ExtUtils::CBuilder::Platform::os2'=> '0.280239',
20414             'ExtUtils::Manifest' => '1.75',
20415             'IO::Compress::Adapter::Bzip2'=> '2.205',
20416             'IO::Compress::Adapter::Deflate'=> '2.205',
20417             'IO::Compress::Adapter::Identity'=> '2.205',
20418             'IO::Compress::Base' => '2.205',
20419             'IO::Compress::Base::Common'=> '2.205',
20420             'IO::Compress::Bzip2' => '2.205',
20421             'IO::Compress::Deflate' => '2.205',
20422             'IO::Compress::Gzip' => '2.205',
20423             'IO::Compress::Gzip::Constants'=> '2.205',
20424             'IO::Compress::RawDeflate'=> '2.205',
20425             'IO::Compress::Zip' => '2.205',
20426             'IO::Compress::Zip::Constants'=> '2.205',
20427             'IO::Compress::Zlib::Constants'=> '2.205',
20428             'IO::Compress::Zlib::Extra'=> '2.205',
20429             'IO::Uncompress::Adapter::Bunzip2'=> '2.205',
20430             'IO::Uncompress::Adapter::Identity'=> '2.205',
20431             'IO::Uncompress::Adapter::Inflate'=> '2.205',
20432             'IO::Uncompress::AnyInflate'=> '2.205',
20433             'IO::Uncompress::AnyUncompress'=> '2.205',
20434             'IO::Uncompress::Base' => '2.205',
20435             'IO::Uncompress::Bunzip2'=> '2.205',
20436             'IO::Uncompress::Gunzip'=> '2.205',
20437             'IO::Uncompress::Inflate'=> '2.205',
20438             'IO::Uncompress::RawInflate'=> '2.205',
20439             'IO::Uncompress::Unzip' => '2.205',
20440             'Math::BigFloat' => '1.999839',
20441             'Math::BigInt' => '1.999839',
20442             'Math::BigInt::Calc' => '1.999839',
20443             'Math::BigInt::FastCalc'=> '0.5014',
20444             'Math::BigInt::Lib' => '1.999839',
20445             'Module::CoreList' => '5.20230720',
20446             'Module::CoreList::Utils'=> '5.20230720',
20447             'Module::Metadata' => '1.000038',
20448             'POSIX' => '2.14',
20449             'Socket' => '2.037',
20450             'Test2' => '1.302195',
20451             'Test2::API' => '1.302195',
20452             'Test2::API::Breakage' => '1.302195',
20453             'Test2::API::Context' => '1.302195',
20454             'Test2::API::Instance' => '1.302195',
20455             'Test2::API::InterceptResult'=> '1.302195',
20456             'Test2::API::InterceptResult::Event'=> '1.302195',
20457             'Test2::API::InterceptResult::Facet'=> '1.302195',
20458             'Test2::API::InterceptResult::Hub'=> '1.302195',
20459             'Test2::API::InterceptResult::Squasher'=> '1.302195',
20460             'Test2::API::Stack' => '1.302195',
20461             'Test2::Event' => '1.302195',
20462             'Test2::Event::Bail' => '1.302195',
20463             'Test2::Event::Diag' => '1.302195',
20464             'Test2::Event::Encoding'=> '1.302195',
20465             'Test2::Event::Exception'=> '1.302195',
20466             'Test2::Event::Fail' => '1.302195',
20467             'Test2::Event::Generic' => '1.302195',
20468             'Test2::Event::Note' => '1.302195',
20469             'Test2::Event::Ok' => '1.302195',
20470             'Test2::Event::Pass' => '1.302195',
20471             'Test2::Event::Plan' => '1.302195',
20472             'Test2::Event::Skip' => '1.302195',
20473             'Test2::Event::Subtest' => '1.302195',
20474             'Test2::Event::TAP::Version'=> '1.302195',
20475             'Test2::Event::V2' => '1.302195',
20476             'Test2::Event::Waiting' => '1.302195',
20477             'Test2::EventFacet' => '1.302195',
20478             'Test2::EventFacet::About'=> '1.302195',
20479             'Test2::EventFacet::Amnesty'=> '1.302195',
20480             'Test2::EventFacet::Assert'=> '1.302195',
20481             'Test2::EventFacet::Control'=> '1.302195',
20482             'Test2::EventFacet::Error'=> '1.302195',
20483             'Test2::EventFacet::Hub'=> '1.302195',
20484             'Test2::EventFacet::Info'=> '1.302195',
20485             'Test2::EventFacet::Info::Table'=> '1.302195',
20486             'Test2::EventFacet::Meta'=> '1.302195',
20487             'Test2::EventFacet::Parent'=> '1.302195',
20488             'Test2::EventFacet::Plan'=> '1.302195',
20489             'Test2::EventFacet::Render'=> '1.302195',
20490             'Test2::EventFacet::Trace'=> '1.302195',
20491             'Test2::Formatter' => '1.302195',
20492             'Test2::Formatter::TAP' => '1.302195',
20493             'Test2::Hub' => '1.302195',
20494             'Test2::Hub::Interceptor'=> '1.302195',
20495             'Test2::Hub::Interceptor::Terminator'=> '1.302195',
20496             'Test2::Hub::Subtest' => '1.302195',
20497             'Test2::IPC' => '1.302195',
20498             'Test2::IPC::Driver' => '1.302195',
20499             'Test2::IPC::Driver::Files'=> '1.302195',
20500             'Test2::Tools::Tiny' => '1.302195',
20501             'Test2::Util' => '1.302195',
20502             'Test2::Util::ExternalMeta'=> '1.302195',
20503             'Test2::Util::Facets2Legacy'=> '1.302195',
20504             'Test2::Util::HashBase' => '1.302195',
20505             'Test2::Util::Trace' => '1.302195',
20506             'Test::Builder' => '1.302195',
20507             'Test::Builder::Formatter'=> '1.302195',
20508             'Test::Builder::Module' => '1.302195',
20509             'Test::Builder::Tester' => '1.302195',
20510             'Test::Builder::Tester::Color'=> '1.302195',
20511             'Test::Builder::TodoDiag'=> '1.302195',
20512             'Test::More' => '1.302195',
20513             'Test::Simple' => '1.302195',
20514             'Test::Tester' => '1.302195',
20515             'Test::Tester::Capture' => '1.302195',
20516             'Test::Tester::CaptureRunner'=> '1.302195',
20517             'Test::Tester::Delegate'=> '1.302195',
20518             'Test::use::ok' => '1.302195',
20519             'Text::Tabs' => '2023.0511',
20520             'Text::Wrap' => '2023.0511',
20521             'Time::HiRes' => '1.9776',
20522             'Time::Local' => '1.35',
20523             'UNIVERSAL' => '1.16',
20524             'feature' => '1.83',
20525             'ok' => '1.302195',
20526             'perlfaq' => '5.20230701',
20527             'threads' => '2.37',
20528             'warnings' => '1.66',
20529             'warnings::register' => '1.06',
20530             },
20531             removed => {
20532             }
20533             },
20534             5.039002 => {
20535             delta_from => 5.039001,
20536             changed => {
20537             'App::Prove' => '3.47',
20538             'App::Prove::State' => '3.47',
20539             'App::Prove::State::Result'=> '3.47',
20540             'App::Prove::State::Result::Test'=> '3.47',
20541             'B::Op_private' => '5.039002',
20542             'Compress::Raw::Bzip2' => '2.206',
20543             'Compress::Raw::Zlib' => '2.206',
20544             'Compress::Zlib' => '2.206',
20545             'Config' => '5.039002',
20546             'Cwd' => '3.90',
20547             'Devel::Peek' => '1.34',
20548             'ExtUtils::Miniperl' => '1.14',
20549             'File::Spec' => '3.90',
20550             'File::Spec::AmigaOS' => '3.90',
20551             'File::Spec::Cygwin' => '3.90',
20552             'File::Spec::Epoc' => '3.90',
20553             'File::Spec::Functions' => '3.90',
20554             'File::Spec::Mac' => '3.90',
20555             'File::Spec::OS2' => '3.90',
20556             'File::Spec::Unix' => '3.90',
20557             'File::Spec::VMS' => '3.90',
20558             'File::Spec::Win32' => '3.90',
20559             'HTTP::Tiny' => '0.088',
20560             'IO::Compress::Adapter::Bzip2'=> '2.206',
20561             'IO::Compress::Adapter::Deflate'=> '2.206',
20562             'IO::Compress::Adapter::Identity'=> '2.206',
20563             'IO::Compress::Base' => '2.206',
20564             'IO::Compress::Base::Common'=> '2.206',
20565             'IO::Compress::Bzip2' => '2.206',
20566             'IO::Compress::Deflate' => '2.206',
20567             'IO::Compress::Gzip' => '2.206',
20568             'IO::Compress::Gzip::Constants'=> '2.206',
20569             'IO::Compress::RawDeflate'=> '2.206',
20570             'IO::Compress::Zip' => '2.206',
20571             'IO::Compress::Zip::Constants'=> '2.206',
20572             'IO::Compress::Zlib::Constants'=> '2.206',
20573             'IO::Compress::Zlib::Extra'=> '2.206',
20574             'IO::Socket::IP' => '0.42',
20575             'IO::Uncompress::Adapter::Bunzip2'=> '2.206',
20576             'IO::Uncompress::Adapter::Identity'=> '2.206',
20577             'IO::Uncompress::Adapter::Inflate'=> '2.206',
20578             'IO::Uncompress::AnyInflate'=> '2.206',
20579             'IO::Uncompress::AnyUncompress'=> '2.206',
20580             'IO::Uncompress::Base' => '2.206',
20581             'IO::Uncompress::Bunzip2'=> '2.206',
20582             'IO::Uncompress::Gunzip'=> '2.206',
20583             'IO::Uncompress::Inflate'=> '2.206',
20584             'IO::Uncompress::RawInflate'=> '2.206',
20585             'IO::Uncompress::Unzip' => '2.206',
20586             'Module::CoreList' => '5.20230820',
20587             'Module::CoreList::Utils'=> '5.20230820',
20588             'NDBM_File' => '1.17',
20589             'Opcode' => '1.65',
20590             'POSIX' => '2.15',
20591             'PerlIO::scalar' => '0.32',
20592             'PerlIO::via' => '0.19',
20593             'Pod::Html' => '1.35',
20594             'Pod::Html::Util' => '1.35',
20595             'Pod::Simple' => '3.45',
20596             'Pod::Simple::BlackBox' => '3.45',
20597             'Pod::Simple::Checker' => '3.45',
20598             'Pod::Simple::Debug' => '3.45',
20599             'Pod::Simple::DumpAsText'=> '3.45',
20600             'Pod::Simple::DumpAsXML'=> '3.45',
20601             'Pod::Simple::HTML' => '3.45',
20602             'Pod::Simple::HTMLBatch'=> '3.45',
20603             'Pod::Simple::HTMLLegacy'=> '5.02',
20604             'Pod::Simple::LinkSection'=> '3.45',
20605             'Pod::Simple::Methody' => '3.45',
20606             'Pod::Simple::Progress' => '3.45',
20607             'Pod::Simple::PullParser'=> '3.45',
20608             'Pod::Simple::PullParserEndToken'=> '3.45',
20609             'Pod::Simple::PullParserStartToken'=> '3.45',
20610             'Pod::Simple::PullParserTextToken'=> '3.45',
20611             'Pod::Simple::PullParserToken'=> '3.45',
20612             'Pod::Simple::RTF' => '3.45',
20613             'Pod::Simple::Search' => '3.45',
20614             'Pod::Simple::SimpleTree'=> '3.45',
20615             'Pod::Simple::Text' => '3.45',
20616             'Pod::Simple::TextContent'=> '3.45',
20617             'Pod::Simple::TiedOutFH'=> '3.45',
20618             'Pod::Simple::Transcode'=> '3.45',
20619             'Pod::Simple::TranscodeDumb'=> '3.45',
20620             'Pod::Simple::TranscodeSmart'=> '3.45',
20621             'Pod::Simple::XHTML' => '3.45',
20622             'Pod::Simple::XMLOutStream'=> '3.45',
20623             'Safe' => '2.45',
20624             'TAP::Base' => '3.47',
20625             'TAP::Formatter::Base' => '3.47',
20626             'TAP::Formatter::Color' => '3.47',
20627             'TAP::Formatter::Console'=> '3.47',
20628             'TAP::Formatter::Console::ParallelSession'=> '3.47',
20629             'TAP::Formatter::Console::Session'=> '3.47',
20630             'TAP::Formatter::File' => '3.47',
20631             'TAP::Formatter::File::Session'=> '3.47',
20632             'TAP::Formatter::Session'=> '3.47',
20633             'TAP::Harness' => '3.47',
20634             'TAP::Harness::Env' => '3.47',
20635             'TAP::Object' => '3.47',
20636             'TAP::Parser' => '3.47',
20637             'TAP::Parser::Aggregator'=> '3.47',
20638             'TAP::Parser::Grammar' => '3.47',
20639             'TAP::Parser::Iterator' => '3.47',
20640             'TAP::Parser::Iterator::Array'=> '3.47',
20641             'TAP::Parser::Iterator::Process'=> '3.47',
20642             'TAP::Parser::Iterator::Stream'=> '3.47',
20643             'TAP::Parser::IteratorFactory'=> '3.47',
20644             'TAP::Parser::Multiplexer'=> '3.47',
20645             'TAP::Parser::Result' => '3.47',
20646             'TAP::Parser::Result::Bailout'=> '3.47',
20647             'TAP::Parser::Result::Comment'=> '3.47',
20648             'TAP::Parser::Result::Plan'=> '3.47',
20649             'TAP::Parser::Result::Pragma'=> '3.47',
20650             'TAP::Parser::Result::Test'=> '3.47',
20651             'TAP::Parser::Result::Unknown'=> '3.47',
20652             'TAP::Parser::Result::Version'=> '3.47',
20653             'TAP::Parser::Result::YAML'=> '3.47',
20654             'TAP::Parser::ResultFactory'=> '3.47',
20655             'TAP::Parser::Scheduler'=> '3.47',
20656             'TAP::Parser::Scheduler::Job'=> '3.47',
20657             'TAP::Parser::Scheduler::Spinner'=> '3.47',
20658             'TAP::Parser::Source' => '3.47',
20659             'TAP::Parser::SourceHandler'=> '3.47',
20660             'TAP::Parser::SourceHandler::Executable'=> '3.47',
20661             'TAP::Parser::SourceHandler::File'=> '3.47',
20662             'TAP::Parser::SourceHandler::Handle'=> '3.47',
20663             'TAP::Parser::SourceHandler::Perl'=> '3.47',
20664             'TAP::Parser::SourceHandler::RawTAP'=> '3.47',
20665             'TAP::Parser::YAMLish::Reader'=> '3.47',
20666             'TAP::Parser::YAMLish::Writer'=> '3.47',
20667             'Test::Harness' => '3.47',
20668             'XS::APItest' => '1.33',
20669             'builtin' => '0.009',
20670             'feature' => '1.84',
20671             'perlfaq' => '5.20230812',
20672             'strict' => '1.13',
20673             'threads' => '2.38',
20674             'warnings' => '1.67',
20675             },
20676             removed => {
20677             }
20678             },
20679             5.039003 => {
20680             delta_from => 5.039002,
20681             changed => {
20682             'B' => '1.89',
20683             'B::Op_private' => '5.039003',
20684             'Config' => '5.039003',
20685             'DB_File' => '1.859',
20686             'Data::Dumper' => '2.189',
20687             'Devel::PPPort' => '3.72',
20688             'ExtUtils::CBuilder' => '0.280240',
20689             'ExtUtils::CBuilder::Base'=> '0.280240',
20690             'ExtUtils::CBuilder::Platform::Unix'=> '0.280240',
20691             'ExtUtils::CBuilder::Platform::VMS'=> '0.280240',
20692             'ExtUtils::CBuilder::Platform::Windows'=> '0.280240',
20693             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280240',
20694             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280240',
20695             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280240',
20696             'ExtUtils::CBuilder::Platform::aix'=> '0.280240',
20697             'ExtUtils::CBuilder::Platform::android'=> '0.280240',
20698             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280240',
20699             'ExtUtils::CBuilder::Platform::darwin'=> '0.280240',
20700             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280240',
20701             'ExtUtils::CBuilder::Platform::os2'=> '0.280240',
20702             'File::Compare' => '1.1008',
20703             'File::Spec::AmigaOS' => '3.91',
20704             'File::Spec::Cygwin' => '3.91',
20705             'File::Spec::Epoc' => '3.91',
20706             'File::Spec::Functions' => '3.91',
20707             'File::Spec::Mac' => '3.91',
20708             'File::Spec::OS2' => '3.91',
20709             'File::Spec::Unix' => '3.91',
20710             'File::Spec::VMS' => '3.91',
20711             'File::Spec::Win32' => '3.91',
20712             'FindBin' => '1.54',
20713             'Getopt::Std' => '1.14',
20714             'IO' => '1.53',
20715             'IO::Dir' => '1.53',
20716             'IO::File' => '1.53',
20717             'IO::Handle' => '1.53',
20718             'IO::Pipe' => '1.53',
20719             'IO::Poll' => '1.53',
20720             'IO::Seekable' => '1.53',
20721             'IO::Select' => '1.53',
20722             'IO::Socket' => '1.53',
20723             'IO::Socket::INET' => '1.53',
20724             'IO::Socket::UNIX' => '1.53',
20725             'Module::CoreList' => '5.20230920',
20726             'Module::CoreList::Utils'=> '5.20230920',
20727             'builtin' => '0.010',
20728             'fields' => '2.25',
20729             'threads' => '2.39',
20730             'threads::shared' => '1.69',
20731             },
20732             removed => {
20733             }
20734             },
20735             5.039004 => {
20736             delta_from => 5.039003,
20737             changed => {
20738             'App::Prove' => '3.48',
20739             'App::Prove::State' => '3.48',
20740             'App::Prove::State::Result'=> '3.48',
20741             'App::Prove::State::Result::Test'=> '3.48',
20742             'B::Op_private' => '5.039004',
20743             'Config' => '5.039004',
20744             'File::Find' => '1.44',
20745             'File::stat' => '1.14',
20746             'Math::BigFloat' => '1.999842',
20747             'Math::BigInt' => '1.999842',
20748             'Math::BigInt::Calc' => '1.999842',
20749             'Math::BigInt::FastCalc'=> '0.5015',
20750             'Math::BigInt::Lib' => '1.999842',
20751             'Module::CoreList' => '5.20231025',
20752             'Module::CoreList::Utils'=> '5.20231025',
20753             'Net::hostent' => '1.04',
20754             'Net::netent' => '1.02',
20755             'Net::protoent' => '1.03',
20756             'Net::servent' => '1.04',
20757             'POSIX' => '2.16',
20758             'TAP::Base' => '3.48',
20759             'TAP::Formatter::Base' => '3.48',
20760             'TAP::Formatter::Color' => '3.48',
20761             'TAP::Formatter::Console'=> '3.48',
20762             'TAP::Formatter::Console::ParallelSession'=> '3.48',
20763             'TAP::Formatter::Console::Session'=> '3.48',
20764             'TAP::Formatter::File' => '3.48',
20765             'TAP::Formatter::File::Session'=> '3.48',
20766             'TAP::Formatter::Session'=> '3.48',
20767             'TAP::Harness' => '3.48',
20768             'TAP::Harness::Env' => '3.48',
20769             'TAP::Object' => '3.48',
20770             'TAP::Parser' => '3.48',
20771             'TAP::Parser::Aggregator'=> '3.48',
20772             'TAP::Parser::Grammar' => '3.48',
20773             'TAP::Parser::Iterator' => '3.48',
20774             'TAP::Parser::Iterator::Array'=> '3.48',
20775             'TAP::Parser::Iterator::Process'=> '3.48',
20776             'TAP::Parser::Iterator::Stream'=> '3.48',
20777             'TAP::Parser::IteratorFactory'=> '3.48',
20778             'TAP::Parser::Multiplexer'=> '3.48',
20779             'TAP::Parser::Result' => '3.48',
20780             'TAP::Parser::Result::Bailout'=> '3.48',
20781             'TAP::Parser::Result::Comment'=> '3.48',
20782             'TAP::Parser::Result::Plan'=> '3.48',
20783             'TAP::Parser::Result::Pragma'=> '3.48',
20784             'TAP::Parser::Result::Test'=> '3.48',
20785             'TAP::Parser::Result::Unknown'=> '3.48',
20786             'TAP::Parser::Result::Version'=> '3.48',
20787             'TAP::Parser::Result::YAML'=> '3.48',
20788             'TAP::Parser::ResultFactory'=> '3.48',
20789             'TAP::Parser::Scheduler'=> '3.48',
20790             'TAP::Parser::Scheduler::Job'=> '3.48',
20791             'TAP::Parser::Scheduler::Spinner'=> '3.48',
20792             'TAP::Parser::Source' => '3.48',
20793             'TAP::Parser::SourceHandler'=> '3.48',
20794             'TAP::Parser::SourceHandler::Executable'=> '3.48',
20795             'TAP::Parser::SourceHandler::File'=> '3.48',
20796             'TAP::Parser::SourceHandler::Handle'=> '3.48',
20797             'TAP::Parser::SourceHandler::Perl'=> '3.48',
20798             'TAP::Parser::SourceHandler::RawTAP'=> '3.48',
20799             'TAP::Parser::YAMLish::Reader'=> '3.48',
20800             'TAP::Parser::YAMLish::Writer'=> '3.48',
20801             'Term::Table' => '0.017',
20802             'Term::Table::Cell' => '0.017',
20803             'Term::Table::CellStack'=> '0.017',
20804             'Term::Table::HashBase' => '0.017',
20805             'Term::Table::LineBreak'=> '0.017',
20806             'Term::Table::Spacer' => '0.017',
20807             'Term::Table::Util' => '0.017',
20808             'Test2::AsyncSubtest' => '0.000156',
20809             'Test2::AsyncSubtest::Event::Attach'=> '0.000156',
20810             'Test2::AsyncSubtest::Event::Detach'=> '0.000156',
20811             'Test2::AsyncSubtest::Formatter'=> '0.000156',
20812             'Test2::AsyncSubtest::Hub'=> '0.000156',
20813             'Test2::Bundle' => '0.000156',
20814             'Test2::Bundle::Extended'=> '0.000156',
20815             'Test2::Bundle::More' => '0.000156',
20816             'Test2::Bundle::Simple' => '0.000156',
20817             'Test2::Compare' => '0.000156',
20818             'Test2::Compare::Array' => '0.000156',
20819             'Test2::Compare::Bag' => '0.000156',
20820             'Test2::Compare::Base' => '0.000156',
20821             'Test2::Compare::Bool' => '0.000156',
20822             'Test2::Compare::Custom'=> '0.000156',
20823             'Test2::Compare::DeepRef'=> '0.000156',
20824             'Test2::Compare::Delta' => '0.000156',
20825             'Test2::Compare::Event' => '0.000156',
20826             'Test2::Compare::EventMeta'=> '0.000156',
20827             'Test2::Compare::Float' => '0.000156',
20828             'Test2::Compare::Hash' => '0.000156',
20829             'Test2::Compare::Isa' => '0.000156',
20830             'Test2::Compare::Meta' => '0.000156',
20831             'Test2::Compare::Negatable'=> '0.000156',
20832             'Test2::Compare::Number'=> '0.000156',
20833             'Test2::Compare::Object'=> '0.000156',
20834             'Test2::Compare::OrderedSubset'=> '0.000156',
20835             'Test2::Compare::Pattern'=> '0.000156',
20836             'Test2::Compare::Ref' => '0.000156',
20837             'Test2::Compare::Regex' => '0.000156',
20838             'Test2::Compare::Scalar'=> '0.000156',
20839             'Test2::Compare::Set' => '0.000156',
20840             'Test2::Compare::String'=> '0.000156',
20841             'Test2::Compare::Undef' => '0.000156',
20842             'Test2::Compare::Wildcard'=> '0.000156',
20843             'Test2::Manual' => '0.000156',
20844             'Test2::Manual::Anatomy'=> '0.000156',
20845             'Test2::Manual::Anatomy::API'=> '0.000156',
20846             'Test2::Manual::Anatomy::Context'=> '0.000156',
20847             'Test2::Manual::Anatomy::EndToEnd'=> '0.000156',
20848             'Test2::Manual::Anatomy::Event'=> '0.000156',
20849             'Test2::Manual::Anatomy::Hubs'=> '0.000156',
20850             'Test2::Manual::Anatomy::IPC'=> '0.000156',
20851             'Test2::Manual::Anatomy::Utilities'=> '0.000156',
20852             'Test2::Manual::Concurrency'=> '0.000156',
20853             'Test2::Manual::Contributing'=> '0.000156',
20854             'Test2::Manual::Testing'=> '0.000156',
20855             'Test2::Manual::Testing::Introduction'=> '0.000156',
20856             'Test2::Manual::Testing::Migrating'=> '0.000156',
20857             'Test2::Manual::Testing::Planning'=> '0.000156',
20858             'Test2::Manual::Testing::Todo'=> '0.000156',
20859             'Test2::Manual::Tooling'=> '0.000156',
20860             'Test2::Manual::Tooling::FirstTool'=> '0.000156',
20861             'Test2::Manual::Tooling::Formatter'=> '0.000156',
20862             'Test2::Manual::Tooling::Nesting'=> '0.000156',
20863             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000156',
20864             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000156',
20865             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000156',
20866             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000156',
20867             'Test2::Manual::Tooling::Subtest'=> '0.000156',
20868             'Test2::Manual::Tooling::TestBuilder'=> '0.000156',
20869             'Test2::Manual::Tooling::Testing'=> '0.000156',
20870             'Test2::Mock' => '0.000156',
20871             'Test2::Plugin' => '0.000156',
20872             'Test2::Plugin::BailOnFail'=> '0.000156',
20873             'Test2::Plugin::DieOnFail'=> '0.000156',
20874             'Test2::Plugin::ExitSummary'=> '0.000156',
20875             'Test2::Plugin::SRand' => '0.000156',
20876             'Test2::Plugin::Times' => '0.000156',
20877             'Test2::Plugin::UTF8' => '0.000156',
20878             'Test2::Require' => '0.000156',
20879             'Test2::Require::AuthorTesting'=> '0.000156',
20880             'Test2::Require::EnvVar'=> '0.000156',
20881             'Test2::Require::Fork' => '0.000156',
20882             'Test2::Require::Module'=> '0.000156',
20883             'Test2::Require::Perl' => '0.000156',
20884             'Test2::Require::RealFork'=> '0.000156',
20885             'Test2::Require::Threads'=> '0.000156',
20886             'Test2::Suite' => '0.000156',
20887             'Test2::Todo' => '0.000156',
20888             'Test2::Tools' => '0.000156',
20889             'Test2::Tools::AsyncSubtest'=> '0.000156',
20890             'Test2::Tools::Basic' => '0.000156',
20891             'Test2::Tools::Class' => '0.000156',
20892             'Test2::Tools::ClassicCompare'=> '0.000156',
20893             'Test2::Tools::Compare' => '0.000156',
20894             'Test2::Tools::Defer' => '0.000156',
20895             'Test2::Tools::Encoding'=> '0.000156',
20896             'Test2::Tools::Event' => '0.000156',
20897             'Test2::Tools::Exception'=> '0.000156',
20898             'Test2::Tools::Exports' => '0.000156',
20899             'Test2::Tools::GenTemp' => '0.000156',
20900             'Test2::Tools::Grab' => '0.000156',
20901             'Test2::Tools::Mock' => '0.000156',
20902             'Test2::Tools::Ref' => '0.000156',
20903             'Test2::Tools::Refcount'=> '0.000156',
20904             'Test2::Tools::Spec' => '0.000156',
20905             'Test2::Tools::Subtest' => '0.000156',
20906             'Test2::Tools::Target' => '0.000156',
20907             'Test2::Tools::Tester' => '0.000156',
20908             'Test2::Tools::Warnings'=> '0.000156',
20909             'Test2::Util::Grabber' => '0.000156',
20910             'Test2::Util::Guard' => '0.000156',
20911             'Test2::Util::Importer' => '0.000156',
20912             'Test2::Util::Ref' => '0.000156',
20913             'Test2::Util::Stash' => '0.000156',
20914             'Test2::Util::Sub' => '0.000156',
20915             'Test2::Util::Table' => '0.000156',
20916             'Test2::Util::Table::Cell'=> '0.000156',
20917             'Test2::Util::Table::LineBreak'=> '0.000156',
20918             'Test2::Util::Term' => '0.000156',
20919             'Test2::Util::Times' => '0.000156',
20920             'Test2::V0' => '0.000156',
20921             'Test2::Workflow' => '0.000156',
20922             'Test2::Workflow::BlockBase'=> '0.000156',
20923             'Test2::Workflow::Build'=> '0.000156',
20924             'Test2::Workflow::Runner'=> '0.000156',
20925             'Test2::Workflow::Task' => '0.000156',
20926             'Test2::Workflow::Task::Action'=> '0.000156',
20927             'Test2::Workflow::Task::Group'=> '0.000156',
20928             'Test::Harness' => '3.48',
20929             'Time::gmtime' => '1.05',
20930             'Time::localtime' => '1.04',
20931             'Time::tm' => '1.01',
20932             'User::grent' => '1.05',
20933             'User::pwent' => '1.03',
20934             'XS::APItest' => '1.34',
20935             'XS::Typemap' => '0.20',
20936             'builtin' => '0.011',
20937             'feature' => '1.85',
20938             'version' => '0.9930',
20939             'version::regex' => '0.9930',
20940             },
20941             removed => {
20942             }
20943             },
20944             5.039005 => {
20945             delta_from => 5.039004,
20946             changed => {
20947             'B::Op_private' => '5.039005',
20948             'Benchmark' => '1.25',
20949             'Config' => '5.039005',
20950             'Encode' => '3.20',
20951             'Getopt::Long' => '2.57',
20952             'Getopt::Long::Parser' => '2.57',
20953             'IO' => '1.54',
20954             'IO::Dir' => '1.54',
20955             'IO::File' => '1.54',
20956             'IO::Handle' => '1.54',
20957             'IO::Pipe' => '1.54',
20958             'IO::Poll' => '1.54',
20959             'IO::Seekable' => '1.54',
20960             'IO::Select' => '1.54',
20961             'IO::Socket' => '1.54',
20962             'IO::Socket::INET' => '1.54',
20963             'IO::Socket::UNIX' => '1.54',
20964             'Math::BigFloat' => '2.001000',
20965             'Math::BigInt' => '2.001000',
20966             'Math::BigInt::Calc' => '2.001000',
20967             'Math::BigInt::Lib' => '2.001000',
20968             'Math::BigRat' => '2.001000',
20969             'Module::CoreList' => '5.20231120',
20970             'Module::CoreList::Utils'=> '5.20231120',
20971             'POSIX' => '2.17',
20972             'Term::Table' => '0.018',
20973             'Term::Table::Cell' => '0.018',
20974             'Term::Table::CellStack'=> '0.018',
20975             'Term::Table::HashBase' => '0.018',
20976             'Term::Table::LineBreak'=> '0.018',
20977             'Term::Table::Spacer' => '0.018',
20978             'Term::Table::Util' => '0.018',
20979             'Test2::AsyncSubtest' => '0.000159',
20980             'Test2::AsyncSubtest::Event::Attach'=> '0.000159',
20981             'Test2::AsyncSubtest::Event::Detach'=> '0.000159',
20982             'Test2::AsyncSubtest::Formatter'=> '0.000159',
20983             'Test2::AsyncSubtest::Hub'=> '0.000159',
20984             'Test2::Bundle' => '0.000159',
20985             'Test2::Bundle::Extended'=> '0.000159',
20986             'Test2::Bundle::More' => '0.000159',
20987             'Test2::Bundle::Simple' => '0.000159',
20988             'Test2::Compare' => '0.000159',
20989             'Test2::Compare::Array' => '0.000159',
20990             'Test2::Compare::Bag' => '0.000159',
20991             'Test2::Compare::Base' => '0.000159',
20992             'Test2::Compare::Bool' => '0.000159',
20993             'Test2::Compare::Custom'=> '0.000159',
20994             'Test2::Compare::DeepRef'=> '0.000159',
20995             'Test2::Compare::Delta' => '0.000159',
20996             'Test2::Compare::Event' => '0.000159',
20997             'Test2::Compare::EventMeta'=> '0.000159',
20998             'Test2::Compare::Float' => '0.000159',
20999             'Test2::Compare::Hash' => '0.000159',
21000             'Test2::Compare::Isa' => '0.000159',
21001             'Test2::Compare::Meta' => '0.000159',
21002             'Test2::Compare::Negatable'=> '0.000159',
21003             'Test2::Compare::Number'=> '0.000159',
21004             'Test2::Compare::Object'=> '0.000159',
21005             'Test2::Compare::OrderedSubset'=> '0.000159',
21006             'Test2::Compare::Pattern'=> '0.000159',
21007             'Test2::Compare::Ref' => '0.000159',
21008             'Test2::Compare::Regex' => '0.000159',
21009             'Test2::Compare::Scalar'=> '0.000159',
21010             'Test2::Compare::Set' => '0.000159',
21011             'Test2::Compare::String'=> '0.000159',
21012             'Test2::Compare::Undef' => '0.000159',
21013             'Test2::Compare::Wildcard'=> '0.000159',
21014             'Test2::Manual' => '0.000159',
21015             'Test2::Manual::Anatomy'=> '0.000159',
21016             'Test2::Manual::Anatomy::API'=> '0.000159',
21017             'Test2::Manual::Anatomy::Context'=> '0.000159',
21018             'Test2::Manual::Anatomy::EndToEnd'=> '0.000159',
21019             'Test2::Manual::Anatomy::Event'=> '0.000159',
21020             'Test2::Manual::Anatomy::Hubs'=> '0.000159',
21021             'Test2::Manual::Anatomy::IPC'=> '0.000159',
21022             'Test2::Manual::Anatomy::Utilities'=> '0.000159',
21023             'Test2::Manual::Concurrency'=> '0.000159',
21024             'Test2::Manual::Contributing'=> '0.000159',
21025             'Test2::Manual::Testing'=> '0.000159',
21026             'Test2::Manual::Testing::Introduction'=> '0.000159',
21027             'Test2::Manual::Testing::Migrating'=> '0.000159',
21028             'Test2::Manual::Testing::Planning'=> '0.000159',
21029             'Test2::Manual::Testing::Todo'=> '0.000159',
21030             'Test2::Manual::Tooling'=> '0.000159',
21031             'Test2::Manual::Tooling::FirstTool'=> '0.000159',
21032             'Test2::Manual::Tooling::Formatter'=> '0.000159',
21033             'Test2::Manual::Tooling::Nesting'=> '0.000159',
21034             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000159',
21035             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000159',
21036             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000159',
21037             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000159',
21038             'Test2::Manual::Tooling::Subtest'=> '0.000159',
21039             'Test2::Manual::Tooling::TestBuilder'=> '0.000159',
21040             'Test2::Manual::Tooling::Testing'=> '0.000159',
21041             'Test2::Mock' => '0.000159',
21042             'Test2::Plugin' => '0.000159',
21043             'Test2::Plugin::BailOnFail'=> '0.000159',
21044             'Test2::Plugin::DieOnFail'=> '0.000159',
21045             'Test2::Plugin::ExitSummary'=> '0.000159',
21046             'Test2::Plugin::SRand' => '0.000159',
21047             'Test2::Plugin::Times' => '0.000159',
21048             'Test2::Plugin::UTF8' => '0.000159',
21049             'Test2::Require' => '0.000159',
21050             'Test2::Require::AuthorTesting'=> '0.000159',
21051             'Test2::Require::EnvVar'=> '0.000159',
21052             'Test2::Require::Fork' => '0.000159',
21053             'Test2::Require::Module'=> '0.000159',
21054             'Test2::Require::Perl' => '0.000159',
21055             'Test2::Require::RealFork'=> '0.000159',
21056             'Test2::Require::Threads'=> '0.000159',
21057             'Test2::Suite' => '0.000159',
21058             'Test2::Todo' => '0.000159',
21059             'Test2::Tools' => '0.000159',
21060             'Test2::Tools::AsyncSubtest'=> '0.000159',
21061             'Test2::Tools::Basic' => '0.000159',
21062             'Test2::Tools::Class' => '0.000159',
21063             'Test2::Tools::ClassicCompare'=> '0.000159',
21064             'Test2::Tools::Compare' => '0.000159',
21065             'Test2::Tools::Defer' => '0.000159',
21066             'Test2::Tools::Encoding'=> '0.000159',
21067             'Test2::Tools::Event' => '0.000159',
21068             'Test2::Tools::Exception'=> '0.000159',
21069             'Test2::Tools::Exports' => '0.000159',
21070             'Test2::Tools::GenTemp' => '0.000159',
21071             'Test2::Tools::Grab' => '0.000159',
21072             'Test2::Tools::Mock' => '0.000159',
21073             'Test2::Tools::Ref' => '0.000159',
21074             'Test2::Tools::Refcount'=> '0.000159',
21075             'Test2::Tools::Spec' => '0.000159',
21076             'Test2::Tools::Subtest' => '0.000159',
21077             'Test2::Tools::Target' => '0.000159',
21078             'Test2::Tools::Tester' => '0.000159',
21079             'Test2::Tools::Warnings'=> '0.000159',
21080             'Test2::Util::Grabber' => '0.000159',
21081             'Test2::Util::Guard' => '0.000159',
21082             'Test2::Util::Importer' => '0.000159',
21083             'Test2::Util::Ref' => '0.000159',
21084             'Test2::Util::Stash' => '0.000159',
21085             'Test2::Util::Sub' => '0.000159',
21086             'Test2::Util::Table' => '0.000159',
21087             'Test2::Util::Table::Cell'=> '0.000159',
21088             'Test2::Util::Table::LineBreak'=> '0.000159',
21089             'Test2::Util::Term' => '0.000159',
21090             'Test2::Util::Times' => '0.000159',
21091             'Test2::V0' => '0.000159',
21092             'Test2::Workflow' => '0.000159',
21093             'Test2::Workflow::BlockBase'=> '0.000159',
21094             'Test2::Workflow::Build'=> '0.000159',
21095             'Test2::Workflow::Runner'=> '0.000159',
21096             'Test2::Workflow::Task' => '0.000159',
21097             'Test2::Workflow::Task::Action'=> '0.000159',
21098             'Test2::Workflow::Task::Group'=> '0.000159',
21099             'builtin' => '0.012',
21100             'locale' => '1.11',
21101             },
21102             removed => {
21103             }
21104             },
21105             5.034002 => {
21106             delta_from => 5.034001,
21107             changed => {
21108             'B::Op_private' => '5.034002',
21109             'Config' => '5.034002',
21110             'Module::CoreList' => '5.20231125',
21111             'Module::CoreList::Utils'=> '5.20231125',
21112             },
21113             removed => {
21114             }
21115             },
21116             5.036002 => {
21117             delta_from => 5.036001,
21118             changed => {
21119             'B::Op_private' => '5.036002',
21120             'Config' => '5.036002',
21121             'Module::CoreList' => '5.20231125',
21122             'Module::CoreList::Utils'=> '5.20231125',
21123             },
21124             removed => {
21125             }
21126             },
21127             5.038001 => {
21128             delta_from => 5.038000,
21129             changed => {
21130             'B::Op_private' => '5.038001',
21131             'Config' => '5.038001',
21132             'Module::CoreList' => '5.20231125',
21133             'Module::CoreList::Utils'=> '5.20231125',
21134             },
21135             removed => {
21136             }
21137             },
21138             5.034003 => {
21139             delta_from => 5.034002,
21140             changed => {
21141             'B::Op_private' => '5.034003',
21142             'Config' => '5.034003',
21143             'Module::CoreList' => '5.20231129',
21144             'Module::CoreList::Utils'=> '5.20231129',
21145             },
21146             removed => {
21147             }
21148             },
21149             5.036003 => {
21150             delta_from => 5.036002,
21151             changed => {
21152             'B::Op_private' => '5.036003',
21153             'Config' => '5.036003',
21154             'Module::CoreList' => '5.20231129',
21155             'Module::CoreList::Utils'=> '5.20231129',
21156             },
21157             removed => {
21158             }
21159             },
21160             5.038002 => {
21161             delta_from => 5.038001,
21162             changed => {
21163             'B::Op_private' => '5.038002',
21164             'Config' => '5.038002',
21165             'Module::CoreList' => '5.20231129',
21166             'Module::CoreList::Utils'=> '5.20231129',
21167             },
21168             removed => {
21169             }
21170             },
21171             5.039006 => {
21172             delta_from => 5.039005,
21173             changed => {
21174             'Archive::Tar' => '3.02_001',
21175             'Archive::Tar::Constant'=> '3.02_001',
21176             'Archive::Tar::File' => '3.02_001',
21177             'B::Op_private' => '5.039006',
21178             'Config' => '5.039006',
21179             'Fatal' => '2.37',
21180             'Fcntl' => '1.16',
21181             'File::Glob' => '1.41',
21182             'IO' => '1.55',
21183             'IO::Dir' => '1.55',
21184             'IO::File' => '1.55',
21185             'IO::Handle' => '1.55',
21186             'IO::Pipe' => '1.55',
21187             'IO::Poll' => '1.55',
21188             'IO::Seekable' => '1.55',
21189             'IO::Select' => '1.55',
21190             'IO::Socket' => '1.55',
21191             'IO::Socket::INET' => '1.55',
21192             'IO::Socket::UNIX' => '1.55',
21193             'Math::BigFloat' => '2.003001',
21194             'Math::BigFloat::Trace' => '0.67',
21195             'Math::BigInt' => '2.003001',
21196             'Math::BigInt::Calc' => '2.003001',
21197             'Math::BigInt::FastCalc'=> '0.5016',
21198             'Math::BigInt::Lib' => '2.003001',
21199             'Math::BigInt::Trace' => '0.67',
21200             'Math::BigRat' => '2.003001',
21201             'Math::BigRat::Trace' => '0.67',
21202             'Module::CoreList' => '5.20231230',
21203             'Module::CoreList::Utils'=> '5.20231230',
21204             'Test2' => '1.302198',
21205             'Test2::API' => '1.302198',
21206             'Test2::API::Breakage' => '1.302198',
21207             'Test2::API::Context' => '1.302198',
21208             'Test2::API::Instance' => '1.302198',
21209             'Test2::API::InterceptResult'=> '1.302198',
21210             'Test2::API::InterceptResult::Event'=> '1.302198',
21211             'Test2::API::InterceptResult::Facet'=> '1.302198',
21212             'Test2::API::InterceptResult::Hub'=> '1.302198',
21213             'Test2::API::InterceptResult::Squasher'=> '1.302198',
21214             'Test2::API::Stack' => '1.302198',
21215             'Test2::Event' => '1.302198',
21216             'Test2::Event::Bail' => '1.302198',
21217             'Test2::Event::Diag' => '1.302198',
21218             'Test2::Event::Encoding'=> '1.302198',
21219             'Test2::Event::Exception'=> '1.302198',
21220             'Test2::Event::Fail' => '1.302198',
21221             'Test2::Event::Generic' => '1.302198',
21222             'Test2::Event::Note' => '1.302198',
21223             'Test2::Event::Ok' => '1.302198',
21224             'Test2::Event::Pass' => '1.302198',
21225             'Test2::Event::Plan' => '1.302198',
21226             'Test2::Event::Skip' => '1.302198',
21227             'Test2::Event::Subtest' => '1.302198',
21228             'Test2::Event::TAP::Version'=> '1.302198',
21229             'Test2::Event::V2' => '1.302198',
21230             'Test2::Event::Waiting' => '1.302198',
21231             'Test2::EventFacet' => '1.302198',
21232             'Test2::EventFacet::About'=> '1.302198',
21233             'Test2::EventFacet::Amnesty'=> '1.302198',
21234             'Test2::EventFacet::Assert'=> '1.302198',
21235             'Test2::EventFacet::Control'=> '1.302198',
21236             'Test2::EventFacet::Error'=> '1.302198',
21237             'Test2::EventFacet::Hub'=> '1.302198',
21238             'Test2::EventFacet::Info'=> '1.302198',
21239             'Test2::EventFacet::Info::Table'=> '1.302198',
21240             'Test2::EventFacet::Meta'=> '1.302198',
21241             'Test2::EventFacet::Parent'=> '1.302198',
21242             'Test2::EventFacet::Plan'=> '1.302198',
21243             'Test2::EventFacet::Render'=> '1.302198',
21244             'Test2::EventFacet::Trace'=> '1.302198',
21245             'Test2::Formatter' => '1.302198',
21246             'Test2::Formatter::TAP' => '1.302198',
21247             'Test2::Hub' => '1.302198',
21248             'Test2::Hub::Interceptor'=> '1.302198',
21249             'Test2::Hub::Interceptor::Terminator'=> '1.302198',
21250             'Test2::Hub::Subtest' => '1.302198',
21251             'Test2::IPC' => '1.302198',
21252             'Test2::IPC::Driver' => '1.302198',
21253             'Test2::IPC::Driver::Files'=> '1.302198',
21254             'Test2::Tools::Tiny' => '1.302198',
21255             'Test2::Util' => '1.302198',
21256             'Test2::Util::ExternalMeta'=> '1.302198',
21257             'Test2::Util::Facets2Legacy'=> '1.302198',
21258             'Test2::Util::HashBase' => '1.302198',
21259             'Test2::Util::Trace' => '1.302198',
21260             'Test::Builder' => '1.302198',
21261             'Test::Builder::Formatter'=> '1.302198',
21262             'Test::Builder::Module' => '1.302198',
21263             'Test::Builder::Tester' => '1.302198',
21264             'Test::Builder::Tester::Color'=> '1.302198',
21265             'Test::Builder::TodoDiag'=> '1.302198',
21266             'Test::More' => '1.302198',
21267             'Test::Simple' => '1.302198',
21268             'Test::Tester' => '1.302198',
21269             'Test::Tester::Capture' => '1.302198',
21270             'Test::Tester::CaptureRunner'=> '1.302198',
21271             'Test::Tester::Delegate'=> '1.302198',
21272             'Test::use::ok' => '1.302198',
21273             'autodie' => '2.37',
21274             'autodie::Scope::Guard' => '2.37',
21275             'autodie::Scope::GuardStack'=> '2.37',
21276             'autodie::Util' => '2.37',
21277             'autodie::exception' => '2.37',
21278             'autodie::exception::system'=> '2.37',
21279             'autodie::hints' => '2.37',
21280             'autodie::skip' => '2.37',
21281             'bigfloat' => '0.67',
21282             'bigint' => '0.67',
21283             'bignum' => '0.67',
21284             'bigrat' => '0.67',
21285             'diagnostics' => '1.40',
21286             'feature' => '1.86',
21287             'ok' => '1.302198',
21288             're' => '0.45',
21289             'threads' => '2.40',
21290             },
21291             removed => {
21292             }
21293             },
21294             5.039007 => {
21295             delta_from => 5.039006,
21296             changed => {
21297             'B::Op_private' => '5.039007',
21298             'Config' => '5.039007',
21299             'Exporter' => '5.78',
21300             'Exporter::Heavy' => '5.78',
21301             'Hash::Util' => '0.31',
21302             'I18N::Langinfo' => '0.23',
21303             'Math::BigFloat' => '2.003002',
21304             'Math::BigInt' => '2.003002',
21305             'Math::BigInt::Calc' => '2.003002',
21306             'Math::BigInt::FastCalc'=> '0.5018',
21307             'Math::BigInt::Lib' => '2.003002',
21308             'Math::BigRat' => '2.003002',
21309             'Module::CoreList' => '5.20240120',
21310             'Module::CoreList::Utils'=> '5.20240120',
21311             'Pod::Checker' => '1.76',
21312             'SelfLoader' => '1.27',
21313             },
21314             removed => {
21315             }
21316             },
21317             5.039008 => {
21318             delta_from => 5.039007,
21319             changed => {
21320             'B::Deparse' => '1.75',
21321             'B::Op_private' => '5.039008',
21322             'Config' => '5.039008',
21323             'DynaLoader' => '1.55',
21324             'File::Glob' => '1.42',
21325             'Hash::Util' => '0.32',
21326             'Hash::Util::FieldHash' => '1.27',
21327             'I18N::Langinfo' => '0.24',
21328             'Module::CoreList' => '5.20240223',
21329             'Module::CoreList::Utils'=> '5.20240223',
21330             'POSIX' => '2.18',
21331             'PerlIO::encoding' => '0.31',
21332             'Pod::Checker' => '1.77',
21333             'Safe' => '2.46',
21334             'Tie::File' => '1.08',
21335             'XS::APItest' => '1.35',
21336             'attributes' => '0.36',
21337             'builtin' => '0.014',
21338             'mro' => '1.29',
21339             'perlfaq' => '5.20240218',
21340             'warnings' => '1.68',
21341             },
21342             removed => {
21343             }
21344             },
21345             5.039009 => {
21346             delta_from => 5.039008,
21347             changed => {
21348             'B::Op_private' => '5.039009',
21349             'Compress::Raw::Bzip2' => '2.210',
21350             'Compress::Raw::Zlib' => '2.209',
21351             'Compress::Zlib' => '2.207',
21352             'Config' => '5.039009',
21353             'DynaLoader' => '1.56',
21354             'Encode' => '3.21',
21355             'Fcntl' => '1.17',
21356             'IO::Compress::Adapter::Bzip2'=> '2.207',
21357             'IO::Compress::Adapter::Deflate'=> '2.207',
21358             'IO::Compress::Adapter::Identity'=> '2.207',
21359             'IO::Compress::Base' => '2.207',
21360             'IO::Compress::Base::Common'=> '2.207',
21361             'IO::Compress::Bzip2' => '2.207',
21362             'IO::Compress::Deflate' => '2.207',
21363             'IO::Compress::Gzip' => '2.207',
21364             'IO::Compress::Gzip::Constants'=> '2.207',
21365             'IO::Compress::RawDeflate'=> '2.207',
21366             'IO::Compress::Zip' => '2.207',
21367             'IO::Compress::Zip::Constants'=> '2.207',
21368             'IO::Compress::Zlib::Constants'=> '2.207',
21369             'IO::Compress::Zlib::Extra'=> '2.207',
21370             'IO::Uncompress::Adapter::Bunzip2'=> '2.207',
21371             'IO::Uncompress::Adapter::Identity'=> '2.207',
21372             'IO::Uncompress::Adapter::Inflate'=> '2.207',
21373             'IO::Uncompress::AnyInflate'=> '2.207',
21374             'IO::Uncompress::AnyUncompress'=> '2.207',
21375             'IO::Uncompress::Base' => '2.207',
21376             'IO::Uncompress::Bunzip2'=> '2.207',
21377             'IO::Uncompress::Gunzip'=> '2.207',
21378             'IO::Uncompress::Inflate'=> '2.207',
21379             'IO::Uncompress::RawInflate'=> '2.207',
21380             'IO::Uncompress::Unzip' => '2.207',
21381             'IO::Zlib' => '1.15',
21382             'Module::CoreList' => '5.20240320',
21383             'Module::CoreList::Utils'=> '5.20240320',
21384             'Text::Tabs' => '2024.001',
21385             'Text::Wrap' => '2024.001',
21386             'Tie::File' => '1.09',
21387             'Time::HiRes' => '1.9777',
21388             'bytes' => '1.09',
21389             're' => '0.47',
21390             },
21391             removed => {
21392             }
21393             },
21394             5.039010 => {
21395             delta_from => 5.039009,
21396             changed => {
21397             'B::Deparse' => '1.76',
21398             'B::Op_private' => '5.039010',
21399             'Compress::Raw::Bzip2' => '2.212',
21400             'Compress::Raw::Zlib' => '2.212',
21401             'Compress::Zlib' => '2.212',
21402             'Config' => '5.03901',
21403             'IO::Compress::Adapter::Bzip2'=> '2.212',
21404             'IO::Compress::Adapter::Deflate'=> '2.212',
21405             'IO::Compress::Adapter::Identity'=> '2.212',
21406             'IO::Compress::Base' => '2.212',
21407             'IO::Compress::Base::Common'=> '2.212',
21408             'IO::Compress::Bzip2' => '2.212',
21409             'IO::Compress::Deflate' => '2.212',
21410             'IO::Compress::Gzip' => '2.212',
21411             'IO::Compress::Gzip::Constants'=> '2.212',
21412             'IO::Compress::RawDeflate'=> '2.212',
21413             'IO::Compress::Zip' => '2.212',
21414             'IO::Compress::Zip::Constants'=> '2.212',
21415             'IO::Compress::Zlib::Constants'=> '2.212',
21416             'IO::Compress::Zlib::Extra'=> '2.212',
21417             'IO::Uncompress::Adapter::Bunzip2'=> '2.212',
21418             'IO::Uncompress::Adapter::Identity'=> '2.212',
21419             'IO::Uncompress::Adapter::Inflate'=> '2.212',
21420             'IO::Uncompress::AnyInflate'=> '2.212',
21421             'IO::Uncompress::AnyUncompress'=> '2.212',
21422             'IO::Uncompress::Base' => '2.212',
21423             'IO::Uncompress::Bunzip2'=> '2.212',
21424             'IO::Uncompress::Gunzip'=> '2.212',
21425             'IO::Uncompress::Inflate'=> '2.212',
21426             'IO::Uncompress::RawInflate'=> '2.212',
21427             'IO::Uncompress::Unzip' => '2.212',
21428             'Module::CoreList' => '5.20240420',
21429             'Module::CoreList::Utils'=> '5.20240420',
21430             'POSIX' => '2.19',
21431             'Pod::Man' => '5.01_01',
21432             'Pod::ParseLink' => '5.01_01',
21433             'Pod::Text' => '5.01_01',
21434             'Pod::Text::Color' => '5.01_01',
21435             'Pod::Text::Overstrike' => '5.01_01',
21436             'Pod::Text::Termcap' => '5.01_01',
21437             'Socket' => '2.038',
21438             'Test2' => '1.302199',
21439             'Test2::API' => '1.302199',
21440             'Test2::API::Breakage' => '1.302199',
21441             'Test2::API::Context' => '1.302199',
21442             'Test2::API::Instance' => '1.302199',
21443             'Test2::API::InterceptResult'=> '1.302199',
21444             'Test2::API::InterceptResult::Event'=> '1.302199',
21445             'Test2::API::InterceptResult::Facet'=> '1.302199',
21446             'Test2::API::InterceptResult::Hub'=> '1.302199',
21447             'Test2::API::InterceptResult::Squasher'=> '1.302199',
21448             'Test2::API::Stack' => '1.302199',
21449             'Test2::AsyncSubtest' => '0.000162',
21450             'Test2::AsyncSubtest::Event::Attach'=> '0.000162',
21451             'Test2::AsyncSubtest::Event::Detach'=> '0.000162',
21452             'Test2::AsyncSubtest::Formatter'=> '0.000162',
21453             'Test2::AsyncSubtest::Hub'=> '0.000162',
21454             'Test2::Bundle' => '0.000162',
21455             'Test2::Bundle::Extended'=> '0.000162',
21456             'Test2::Bundle::More' => '0.000162',
21457             'Test2::Bundle::Simple' => '0.000162',
21458             'Test2::Compare' => '0.000162',
21459             'Test2::Compare::Array' => '0.000162',
21460             'Test2::Compare::Bag' => '0.000162',
21461             'Test2::Compare::Base' => '0.000162',
21462             'Test2::Compare::Bool' => '0.000162',
21463             'Test2::Compare::Custom'=> '0.000162',
21464             'Test2::Compare::DeepRef'=> '0.000162',
21465             'Test2::Compare::Delta' => '0.000162',
21466             'Test2::Compare::Event' => '0.000162',
21467             'Test2::Compare::EventMeta'=> '0.000162',
21468             'Test2::Compare::Float' => '0.000162',
21469             'Test2::Compare::Hash' => '0.000162',
21470             'Test2::Compare::Isa' => '0.000162',
21471             'Test2::Compare::Meta' => '0.000162',
21472             'Test2::Compare::Negatable'=> '0.000162',
21473             'Test2::Compare::Number'=> '0.000162',
21474             'Test2::Compare::Object'=> '0.000162',
21475             'Test2::Compare::OrderedSubset'=> '0.000162',
21476             'Test2::Compare::Pattern'=> '0.000162',
21477             'Test2::Compare::Ref' => '0.000162',
21478             'Test2::Compare::Regex' => '0.000162',
21479             'Test2::Compare::Scalar'=> '0.000162',
21480             'Test2::Compare::Set' => '0.000162',
21481             'Test2::Compare::String'=> '0.000162',
21482             'Test2::Compare::Undef' => '0.000162',
21483             'Test2::Compare::Wildcard'=> '0.000162',
21484             'Test2::Event' => '1.302199',
21485             'Test2::Event::Bail' => '1.302199',
21486             'Test2::Event::Diag' => '1.302199',
21487             'Test2::Event::Encoding'=> '1.302199',
21488             'Test2::Event::Exception'=> '1.302199',
21489             'Test2::Event::Fail' => '1.302199',
21490             'Test2::Event::Generic' => '1.302199',
21491             'Test2::Event::Note' => '1.302199',
21492             'Test2::Event::Ok' => '1.302199',
21493             'Test2::Event::Pass' => '1.302199',
21494             'Test2::Event::Plan' => '1.302199',
21495             'Test2::Event::Skip' => '1.302199',
21496             'Test2::Event::Subtest' => '1.302199',
21497             'Test2::Event::TAP::Version'=> '1.302199',
21498             'Test2::Event::V2' => '1.302199',
21499             'Test2::Event::Waiting' => '1.302199',
21500             'Test2::EventFacet' => '1.302199',
21501             'Test2::EventFacet::About'=> '1.302199',
21502             'Test2::EventFacet::Amnesty'=> '1.302199',
21503             'Test2::EventFacet::Assert'=> '1.302199',
21504             'Test2::EventFacet::Control'=> '1.302199',
21505             'Test2::EventFacet::Error'=> '1.302199',
21506             'Test2::EventFacet::Hub'=> '1.302199',
21507             'Test2::EventFacet::Info'=> '1.302199',
21508             'Test2::EventFacet::Info::Table'=> '1.302199',
21509             'Test2::EventFacet::Meta'=> '1.302199',
21510             'Test2::EventFacet::Parent'=> '1.302199',
21511             'Test2::EventFacet::Plan'=> '1.302199',
21512             'Test2::EventFacet::Render'=> '1.302199',
21513             'Test2::EventFacet::Trace'=> '1.302199',
21514             'Test2::Formatter' => '1.302199',
21515             'Test2::Formatter::TAP' => '1.302199',
21516             'Test2::Hub' => '1.302199',
21517             'Test2::Hub::Interceptor'=> '1.302199',
21518             'Test2::Hub::Interceptor::Terminator'=> '1.302199',
21519             'Test2::Hub::Subtest' => '1.302199',
21520             'Test2::IPC' => '1.302199',
21521             'Test2::IPC::Driver' => '1.302199',
21522             'Test2::IPC::Driver::Files'=> '1.302199',
21523             'Test2::Manual' => '0.000162',
21524             'Test2::Manual::Anatomy'=> '0.000162',
21525             'Test2::Manual::Anatomy::API'=> '0.000162',
21526             'Test2::Manual::Anatomy::Context'=> '0.000162',
21527             'Test2::Manual::Anatomy::EndToEnd'=> '0.000162',
21528             'Test2::Manual::Anatomy::Event'=> '0.000162',
21529             'Test2::Manual::Anatomy::Hubs'=> '0.000162',
21530             'Test2::Manual::Anatomy::IPC'=> '0.000162',
21531             'Test2::Manual::Anatomy::Utilities'=> '0.000162',
21532             'Test2::Manual::Concurrency'=> '0.000162',
21533             'Test2::Manual::Contributing'=> '0.000162',
21534             'Test2::Manual::Testing'=> '0.000162',
21535             'Test2::Manual::Testing::Introduction'=> '0.000162',
21536             'Test2::Manual::Testing::Migrating'=> '0.000162',
21537             'Test2::Manual::Testing::Planning'=> '0.000162',
21538             'Test2::Manual::Testing::Todo'=> '0.000162',
21539             'Test2::Manual::Tooling'=> '0.000162',
21540             'Test2::Manual::Tooling::FirstTool'=> '0.000162',
21541             'Test2::Manual::Tooling::Formatter'=> '0.000162',
21542             'Test2::Manual::Tooling::Nesting'=> '0.000162',
21543             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000162',
21544             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000162',
21545             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000162',
21546             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000162',
21547             'Test2::Manual::Tooling::Subtest'=> '0.000162',
21548             'Test2::Manual::Tooling::TestBuilder'=> '0.000162',
21549             'Test2::Manual::Tooling::Testing'=> '0.000162',
21550             'Test2::Mock' => '0.000162',
21551             'Test2::Plugin' => '0.000162',
21552             'Test2::Plugin::BailOnFail'=> '0.000162',
21553             'Test2::Plugin::DieOnFail'=> '0.000162',
21554             'Test2::Plugin::ExitSummary'=> '0.000162',
21555             'Test2::Plugin::SRand' => '0.000162',
21556             'Test2::Plugin::Times' => '0.000162',
21557             'Test2::Plugin::UTF8' => '0.000162',
21558             'Test2::Require' => '0.000162',
21559             'Test2::Require::AuthorTesting'=> '0.000162',
21560             'Test2::Require::AutomatedTesting'=> '0.000162',
21561             'Test2::Require::EnvVar'=> '0.000162',
21562             'Test2::Require::ExtendedTesting'=> '0.000162',
21563             'Test2::Require::Fork' => '0.000162',
21564             'Test2::Require::Module'=> '0.000162',
21565             'Test2::Require::NonInteractiveTesting'=> '0.000162',
21566             'Test2::Require::Perl' => '0.000162',
21567             'Test2::Require::RealFork'=> '0.000162',
21568             'Test2::Require::ReleaseTesting'=> '0.000162',
21569             'Test2::Require::Threads'=> '0.000162',
21570             'Test2::Suite' => '0.000162',
21571             'Test2::Todo' => '0.000162',
21572             'Test2::Tools' => '0.000162',
21573             'Test2::Tools::AsyncSubtest'=> '0.000162',
21574             'Test2::Tools::Basic' => '0.000162',
21575             'Test2::Tools::Class' => '0.000162',
21576             'Test2::Tools::ClassicCompare'=> '0.000162',
21577             'Test2::Tools::Compare' => '0.000162',
21578             'Test2::Tools::Defer' => '0.000162',
21579             'Test2::Tools::Encoding'=> '0.000162',
21580             'Test2::Tools::Event' => '0.000162',
21581             'Test2::Tools::Exception'=> '0.000162',
21582             'Test2::Tools::Exports' => '0.000162',
21583             'Test2::Tools::GenTemp' => '0.000162',
21584             'Test2::Tools::Grab' => '0.000162',
21585             'Test2::Tools::Mock' => '0.000162',
21586             'Test2::Tools::Ref' => '0.000162',
21587             'Test2::Tools::Refcount'=> '0.000162',
21588             'Test2::Tools::Spec' => '0.000162',
21589             'Test2::Tools::Subtest' => '0.000162',
21590             'Test2::Tools::Target' => '0.000162',
21591             'Test2::Tools::Tester' => '0.000162',
21592             'Test2::Tools::Tiny' => '1.302199',
21593             'Test2::Tools::Warnings'=> '0.000162',
21594             'Test2::Util' => '1.302199',
21595             'Test2::Util::ExternalMeta'=> '1.302199',
21596             'Test2::Util::Facets2Legacy'=> '1.302199',
21597             'Test2::Util::Grabber' => '0.000162',
21598             'Test2::Util::Guard' => '0.000162',
21599             'Test2::Util::HashBase' => '1.302199',
21600             'Test2::Util::Importer' => '0.000162',
21601             'Test2::Util::Ref' => '0.000162',
21602             'Test2::Util::Stash' => '0.000162',
21603             'Test2::Util::Sub' => '0.000162',
21604             'Test2::Util::Table' => '0.000162',
21605             'Test2::Util::Table::Cell'=> '0.000162',
21606             'Test2::Util::Table::LineBreak'=> '0.000162',
21607             'Test2::Util::Term' => '0.000162',
21608             'Test2::Util::Times' => '0.000162',
21609             'Test2::Util::Trace' => '1.302199',
21610             'Test2::V0' => '0.000162',
21611             'Test2::Workflow' => '0.000162',
21612             'Test2::Workflow::BlockBase'=> '0.000162',
21613             'Test2::Workflow::Build'=> '0.000162',
21614             'Test2::Workflow::Runner'=> '0.000162',
21615             'Test2::Workflow::Task' => '0.000162',
21616             'Test2::Workflow::Task::Action'=> '0.000162',
21617             'Test2::Workflow::Task::Group'=> '0.000162',
21618             'Test::Builder' => '1.302199',
21619             'Test::Builder::Formatter'=> '1.302199',
21620             'Test::Builder::Module' => '1.302199',
21621             'Test::Builder::Tester' => '1.302199',
21622             'Test::Builder::Tester::Color'=> '1.302199',
21623             'Test::Builder::TodoDiag'=> '1.302199',
21624             'Test::More' => '1.302199',
21625             'Test::Simple' => '1.302199',
21626             'Test::Tester' => '1.302199',
21627             'Test::Tester::Capture' => '1.302199',
21628             'Test::Tester::CaptureRunner'=> '1.302199',
21629             'Test::Tester::Delegate'=> '1.302199',
21630             'Test::use::ok' => '1.302199',
21631             'XS::APItest' => '1.36',
21632             'experimental' => '0.032',
21633             'feature' => '1.88',
21634             'locale' => '1.12',
21635             'ok' => '1.302199',
21636             'stable' => '0.032',
21637             'warnings' => '1.69',
21638             },
21639             removed => {
21640             }
21641             },
21642             5.040000 => {
21643             delta_from => 5.039010,
21644             changed => {
21645             'B::Op_private' => '5.040000',
21646             'Config' => '5.04',
21647             'Fcntl' => '1.18',
21648             'Module::CoreList' => '5.20240609',
21649             'Module::CoreList::Utils'=> '5.20240609',
21650             'POSIX' => '2.20',
21651             'Pod::Man' => '5.01_02',
21652             'Pod::ParseLink' => '5.01_02',
21653             'Pod::Text' => '5.01_02',
21654             'Pod::Text::Color' => '5.01_02',
21655             'Pod::Text::Overstrike' => '5.01_02',
21656             'Pod::Text::Termcap' => '5.01_02',
21657             'UNIVERSAL' => '1.17',
21658             'feature' => '1.89',
21659             'stable' => '0.033',
21660             },
21661             removed => {
21662             }
21663             },
21664             5.041000 => {
21665             delta_from => 5.040000,
21666             changed => {
21667             'B::Op_private' => '5.041000',
21668             'Config' => '5.041000',
21669             'Module::CoreList' => '5.20240610',
21670             'Module::CoreList::Utils'=> '5.20240610',
21671             'feature' => '1.90',
21672             },
21673             removed => {
21674             }
21675             },
21676             5.041001 => {
21677             delta_from => 5.041000,
21678             changed => {
21679             'B::Op_private' => '5.041001',
21680             'Config' => '5.041001',
21681             'Data::Dumper' => '2.190',
21682             'ExtUtils::ParseXS' => '3.52',
21683             'ExtUtils::ParseXS::Constants'=> '3.52',
21684             'ExtUtils::ParseXS::CountLines'=> '3.52',
21685             'ExtUtils::ParseXS::Eval'=> '3.52',
21686             'ExtUtils::ParseXS::Utilities'=> '3.52',
21687             'ExtUtils::Typemaps::Cmd'=> '3.52',
21688             'ExtUtils::Typemaps::InputMap'=> '3.52',
21689             'ExtUtils::Typemaps::OutputMap'=> '3.52',
21690             'ExtUtils::Typemaps::Type'=> '3.52',
21691             'Fcntl' => '1.19',
21692             'Getopt::Long' => '2.58',
21693             'Getopt::Long::Parser' => '2.58',
21694             'Math::BigFloat' => '2.003003',
21695             'Math::BigInt' => '2.003003',
21696             'Math::BigInt::Calc' => '2.003003',
21697             'Math::BigInt::Lib' => '2.003003',
21698             'Math::BigRat' => '2.003003',
21699             'Module::CoreList' => '5.20240620',
21700             'Module::CoreList::Utils'=> '5.20240620',
21701             'POSIX' => '2.21',
21702             'Test2::AsyncSubtest' => '0.000163',
21703             'Test2::AsyncSubtest::Event::Attach'=> '0.000163',
21704             'Test2::AsyncSubtest::Event::Detach'=> '0.000163',
21705             'Test2::AsyncSubtest::Formatter'=> '0.000163',
21706             'Test2::AsyncSubtest::Hub'=> '0.000163',
21707             'Test2::Bundle' => '0.000163',
21708             'Test2::Bundle::Extended'=> '0.000163',
21709             'Test2::Bundle::More' => '0.000163',
21710             'Test2::Bundle::Simple' => '0.000163',
21711             'Test2::Compare' => '0.000163',
21712             'Test2::Compare::Array' => '0.000163',
21713             'Test2::Compare::Bag' => '0.000163',
21714             'Test2::Compare::Base' => '0.000163',
21715             'Test2::Compare::Bool' => '0.000163',
21716             'Test2::Compare::Custom'=> '0.000163',
21717             'Test2::Compare::DeepRef'=> '0.000163',
21718             'Test2::Compare::Delta' => '0.000163',
21719             'Test2::Compare::Event' => '0.000163',
21720             'Test2::Compare::EventMeta'=> '0.000163',
21721             'Test2::Compare::Float' => '0.000163',
21722             'Test2::Compare::Hash' => '0.000163',
21723             'Test2::Compare::Isa' => '0.000163',
21724             'Test2::Compare::Meta' => '0.000163',
21725             'Test2::Compare::Negatable'=> '0.000163',
21726             'Test2::Compare::Number'=> '0.000163',
21727             'Test2::Compare::Object'=> '0.000163',
21728             'Test2::Compare::OrderedSubset'=> '0.000163',
21729             'Test2::Compare::Pattern'=> '0.000163',
21730             'Test2::Compare::Ref' => '0.000163',
21731             'Test2::Compare::Regex' => '0.000163',
21732             'Test2::Compare::Scalar'=> '0.000163',
21733             'Test2::Compare::Set' => '0.000163',
21734             'Test2::Compare::String'=> '0.000163',
21735             'Test2::Compare::Undef' => '0.000163',
21736             'Test2::Compare::Wildcard'=> '0.000163',
21737             'Test2::Manual' => '0.000163',
21738             'Test2::Manual::Anatomy'=> '0.000163',
21739             'Test2::Manual::Anatomy::API'=> '0.000163',
21740             'Test2::Manual::Anatomy::Context'=> '0.000163',
21741             'Test2::Manual::Anatomy::EndToEnd'=> '0.000163',
21742             'Test2::Manual::Anatomy::Event'=> '0.000163',
21743             'Test2::Manual::Anatomy::Hubs'=> '0.000163',
21744             'Test2::Manual::Anatomy::IPC'=> '0.000163',
21745             'Test2::Manual::Anatomy::Utilities'=> '0.000163',
21746             'Test2::Manual::Concurrency'=> '0.000163',
21747             'Test2::Manual::Contributing'=> '0.000163',
21748             'Test2::Manual::Testing'=> '0.000163',
21749             'Test2::Manual::Testing::Introduction'=> '0.000163',
21750             'Test2::Manual::Testing::Migrating'=> '0.000163',
21751             'Test2::Manual::Testing::Planning'=> '0.000163',
21752             'Test2::Manual::Testing::Todo'=> '0.000163',
21753             'Test2::Manual::Tooling'=> '0.000163',
21754             'Test2::Manual::Tooling::FirstTool'=> '0.000163',
21755             'Test2::Manual::Tooling::Formatter'=> '0.000163',
21756             'Test2::Manual::Tooling::Nesting'=> '0.000163',
21757             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000163',
21758             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000163',
21759             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000163',
21760             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000163',
21761             'Test2::Manual::Tooling::Subtest'=> '0.000163',
21762             'Test2::Manual::Tooling::TestBuilder'=> '0.000163',
21763             'Test2::Manual::Tooling::Testing'=> '0.000163',
21764             'Test2::Mock' => '0.000163',
21765             'Test2::Plugin' => '0.000163',
21766             'Test2::Plugin::BailOnFail'=> '0.000163',
21767             'Test2::Plugin::DieOnFail'=> '0.000163',
21768             'Test2::Plugin::ExitSummary'=> '0.000163',
21769             'Test2::Plugin::SRand' => '0.000163',
21770             'Test2::Plugin::Times' => '0.000163',
21771             'Test2::Plugin::UTF8' => '0.000163',
21772             'Test2::Require' => '0.000163',
21773             'Test2::Require::AuthorTesting'=> '0.000163',
21774             'Test2::Require::AutomatedTesting'=> '0.000163',
21775             'Test2::Require::EnvVar'=> '0.000163',
21776             'Test2::Require::ExtendedTesting'=> '0.000163',
21777             'Test2::Require::Fork' => '0.000163',
21778             'Test2::Require::Module'=> '0.000163',
21779             'Test2::Require::NonInteractiveTesting'=> '0.000163',
21780             'Test2::Require::Perl' => '0.000163',
21781             'Test2::Require::RealFork'=> '0.000163',
21782             'Test2::Require::ReleaseTesting'=> '0.000163',
21783             'Test2::Require::Threads'=> '0.000163',
21784             'Test2::Suite' => '0.000163',
21785             'Test2::Todo' => '0.000163',
21786             'Test2::Tools' => '0.000163',
21787             'Test2::Tools::AsyncSubtest'=> '0.000163',
21788             'Test2::Tools::Basic' => '0.000163',
21789             'Test2::Tools::Class' => '0.000163',
21790             'Test2::Tools::ClassicCompare'=> '0.000163',
21791             'Test2::Tools::Compare' => '0.000163',
21792             'Test2::Tools::Defer' => '0.000163',
21793             'Test2::Tools::Encoding'=> '0.000163',
21794             'Test2::Tools::Event' => '0.000163',
21795             'Test2::Tools::Exception'=> '0.000163',
21796             'Test2::Tools::Exports' => '0.000163',
21797             'Test2::Tools::GenTemp' => '0.000163',
21798             'Test2::Tools::Grab' => '0.000163',
21799             'Test2::Tools::Mock' => '0.000163',
21800             'Test2::Tools::Ref' => '0.000163',
21801             'Test2::Tools::Refcount'=> '0.000163',
21802             'Test2::Tools::Spec' => '0.000163',
21803             'Test2::Tools::Subtest' => '0.000163',
21804             'Test2::Tools::Target' => '0.000163',
21805             'Test2::Tools::Tester' => '0.000163',
21806             'Test2::Tools::Warnings'=> '0.000163',
21807             'Test2::Util::Grabber' => '0.000163',
21808             'Test2::Util::Guard' => '0.000163',
21809             'Test2::Util::Importer' => '0.000163',
21810             'Test2::Util::Ref' => '0.000163',
21811             'Test2::Util::Stash' => '0.000163',
21812             'Test2::Util::Sub' => '0.000163',
21813             'Test2::Util::Table' => '0.000163',
21814             'Test2::Util::Table::Cell'=> '0.000163',
21815             'Test2::Util::Table::LineBreak'=> '0.000163',
21816             'Test2::Util::Term' => '0.000163',
21817             'Test2::Util::Times' => '0.000163',
21818             'Test2::V0' => '0.000163',
21819             'Test2::Workflow' => '0.000163',
21820             'Test2::Workflow::BlockBase'=> '0.000163',
21821             'Test2::Workflow::Build'=> '0.000163',
21822             'Test2::Workflow::Runner'=> '0.000163',
21823             'Test2::Workflow::Task' => '0.000163',
21824             'Test2::Workflow::Task::Action'=> '0.000163',
21825             'Test2::Workflow::Task::Group'=> '0.000163',
21826             'VMS::Filespec' => '1.14',
21827             'builtin' => '0.015',
21828             'sort' => '2.06',
21829             'warnings' => '1.70',
21830             },
21831             removed => {
21832             }
21833             },
21834             5.041002 => {
21835             delta_from => 5.041001,
21836             changed => {
21837             'B::Deparse' => '1.77',
21838             'B::Op_private' => '5.041002',
21839             'Benchmark' => '1.26',
21840             'Config' => '5.041002',
21841             'Cwd' => '3.92',
21842             'Devel::PPPort' => '3.73',
21843             'File::Spec' => '3.92',
21844             'File::Spec::AmigaOS' => '3.92',
21845             'File::Spec::Cygwin' => '3.92',
21846             'File::Spec::Epoc' => '3.92',
21847             'File::Spec::Functions' => '3.92',
21848             'File::Spec::Mac' => '3.92',
21849             'File::Spec::OS2' => '3.92',
21850             'File::Spec::Unix' => '3.92',
21851             'File::Spec::VMS' => '3.92',
21852             'File::Spec::Win32' => '3.92',
21853             'Module::CoreList' => '5.20240720',
21854             'Module::CoreList::Utils'=> '5.20240720',
21855             'POSIX' => '2.22',
21856             'Pod::Man' => 'v6.0.2',
21857             'Pod::ParseLink' => 'v6.0.2',
21858             'Pod::Text' => 'v6.0.2',
21859             'Pod::Text::Color' => 'v6.0.2',
21860             'Pod::Text::Overstrike' => 'v6.0.2',
21861             'Pod::Text::Termcap' => 'v6.0.2',
21862             'Storable' => '3.33',
21863             'Win32' => '0.59_01',
21864             'XS::APItest' => '1.37',
21865             'locale' => '1.13',
21866             'source::encoding' => '0.01',
21867             'threads' => '2.41',
21868             'utf8' => '1.27',
21869             },
21870             removed => {
21871             }
21872             },
21873             5.041003 => {
21874             delta_from => 5.041002,
21875             changed => {
21876             'App::Prove' => '3.50',
21877             'App::Prove::State' => '3.50',
21878             'App::Prove::State::Result'=> '3.50',
21879             'App::Prove::State::Result::Test'=> '3.50',
21880             'B::Deparse' => '1.78',
21881             'B::Op_private' => '5.041003',
21882             'Compress::Raw::Bzip2' => '2.213',
21883             'Compress::Raw::Zlib' => '2.213',
21884             'Compress::Zlib' => '2.213',
21885             'Config' => '5.041003',
21886             'DynaLoader' => '1.57',
21887             'ExtUtils::ParseXS' => '3.53',
21888             'ExtUtils::ParseXS::Constants'=> '3.53',
21889             'ExtUtils::ParseXS::CountLines'=> '3.53',
21890             'ExtUtils::ParseXS::Eval'=> '3.53',
21891             'ExtUtils::ParseXS::Utilities'=> '3.53',
21892             'ExtUtils::Typemaps' => '3.53',
21893             'ExtUtils::Typemaps::Cmd'=> '3.53',
21894             'ExtUtils::Typemaps::InputMap'=> '3.53',
21895             'ExtUtils::Typemaps::OutputMap'=> '3.53',
21896             'ExtUtils::Typemaps::Type'=> '3.53',
21897             'IO::Compress' => '2.213',
21898             'IO::Compress::Adapter::Bzip2'=> '2.213',
21899             'IO::Compress::Adapter::Deflate'=> '2.213',
21900             'IO::Compress::Adapter::Identity'=> '2.213',
21901             'IO::Compress::Base' => '2.213',
21902             'IO::Compress::Base::Common'=> '2.213',
21903             'IO::Compress::Bzip2' => '2.213',
21904             'IO::Compress::Deflate' => '2.213',
21905             'IO::Compress::Gzip' => '2.213',
21906             'IO::Compress::Gzip::Constants'=> '2.213',
21907             'IO::Compress::RawDeflate'=> '2.213',
21908             'IO::Compress::Zip' => '2.213',
21909             'IO::Compress::Zip::Constants'=> '2.213',
21910             'IO::Compress::Zlib::Constants'=> '2.213',
21911             'IO::Compress::Zlib::Extra'=> '2.213',
21912             'IO::Uncompress::Adapter::Bunzip2'=> '2.213',
21913             'IO::Uncompress::Adapter::Identity'=> '2.213',
21914             'IO::Uncompress::Adapter::Inflate'=> '2.213',
21915             'IO::Uncompress::AnyInflate'=> '2.213',
21916             'IO::Uncompress::AnyUncompress'=> '2.213',
21917             'IO::Uncompress::Base' => '2.213',
21918             'IO::Uncompress::Bunzip2'=> '2.213',
21919             'IO::Uncompress::Gunzip'=> '2.213',
21920             'IO::Uncompress::Inflate'=> '2.213',
21921             'IO::Uncompress::RawInflate'=> '2.213',
21922             'IO::Uncompress::Unzip' => '2.213',
21923             'List::Util' => '1.65',
21924             'List::Util::XS' => '1.65',
21925             'Module::CoreList' => '5.20240829',
21926             'Module::CoreList::Utils'=> '5.20240829',
21927             'Opcode' => '1.66',
21928             'Safe' => '2.47',
21929             'Scalar::Util' => '1.65',
21930             'Storable' => '3.34',
21931             'Sub::Util' => '1.65',
21932             'TAP::Base' => '3.50',
21933             'TAP::Formatter::Base' => '3.50',
21934             'TAP::Formatter::Color' => '3.50',
21935             'TAP::Formatter::Console'=> '3.50',
21936             'TAP::Formatter::Console::ParallelSession'=> '3.50',
21937             'TAP::Formatter::Console::Session'=> '3.50',
21938             'TAP::Formatter::File' => '3.50',
21939             'TAP::Formatter::File::Session'=> '3.50',
21940             'TAP::Formatter::Session'=> '3.50',
21941             'TAP::Harness' => '3.50',
21942             'TAP::Harness::Env' => '3.50',
21943             'TAP::Object' => '3.50',
21944             'TAP::Parser' => '3.50',
21945             'TAP::Parser::Aggregator'=> '3.50',
21946             'TAP::Parser::Grammar' => '3.50',
21947             'TAP::Parser::Iterator' => '3.50',
21948             'TAP::Parser::Iterator::Array'=> '3.50',
21949             'TAP::Parser::Iterator::Process'=> '3.50',
21950             'TAP::Parser::Iterator::Stream'=> '3.50',
21951             'TAP::Parser::IteratorFactory'=> '3.50',
21952             'TAP::Parser::Multiplexer'=> '3.50',
21953             'TAP::Parser::Result' => '3.50',
21954             'TAP::Parser::Result::Bailout'=> '3.50',
21955             'TAP::Parser::Result::Comment'=> '3.50',
21956             'TAP::Parser::Result::Plan'=> '3.50',
21957             'TAP::Parser::Result::Pragma'=> '3.50',
21958             'TAP::Parser::Result::Test'=> '3.50',
21959             'TAP::Parser::Result::Unknown'=> '3.50',
21960             'TAP::Parser::Result::Version'=> '3.50',
21961             'TAP::Parser::Result::YAML'=> '3.50',
21962             'TAP::Parser::ResultFactory'=> '3.50',
21963             'TAP::Parser::Scheduler'=> '3.50',
21964             'TAP::Parser::Scheduler::Job'=> '3.50',
21965             'TAP::Parser::Scheduler::Spinner'=> '3.50',
21966             'TAP::Parser::Source' => '3.50',
21967             'TAP::Parser::SourceHandler'=> '3.50',
21968             'TAP::Parser::SourceHandler::Executable'=> '3.50',
21969             'TAP::Parser::SourceHandler::File'=> '3.50',
21970             'TAP::Parser::SourceHandler::Handle'=> '3.50',
21971             'TAP::Parser::SourceHandler::Perl'=> '3.50',
21972             'TAP::Parser::SourceHandler::RawTAP'=> '3.50',
21973             'TAP::Parser::YAMLish::Reader'=> '3.50',
21974             'TAP::Parser::YAMLish::Writer'=> '3.50',
21975             'Term::Table' => '0.022',
21976             'Term::Table::Cell' => '0.022',
21977             'Term::Table::CellStack'=> '0.022',
21978             'Term::Table::HashBase' => '0.022',
21979             'Term::Table::LineBreak'=> '0.022',
21980             'Term::Table::Spacer' => '0.022',
21981             'Term::Table::Util' => '0.022',
21982             'Test2' => '1.302201',
21983             'Test2::API' => '1.302201',
21984             'Test2::API::Breakage' => '1.302201',
21985             'Test2::API::Context' => '1.302201',
21986             'Test2::API::Instance' => '1.302201',
21987             'Test2::API::InterceptResult'=> '1.302201',
21988             'Test2::API::InterceptResult::Event'=> '1.302201',
21989             'Test2::API::InterceptResult::Facet'=> '1.302201',
21990             'Test2::API::InterceptResult::Hub'=> '1.302201',
21991             'Test2::API::InterceptResult::Squasher'=> '1.302201',
21992             'Test2::API::Stack' => '1.302201',
21993             'Test2::AsyncSubtest' => '1.302201',
21994             'Test2::AsyncSubtest::Event::Attach'=> '1.302201',
21995             'Test2::AsyncSubtest::Event::Detach'=> '1.302201',
21996             'Test2::AsyncSubtest::Formatter'=> '1.302201',
21997             'Test2::AsyncSubtest::Hub'=> '1.302201',
21998             'Test2::Bundle' => '1.302201',
21999             'Test2::Bundle::Extended'=> '1.302201',
22000             'Test2::Bundle::More' => '1.302201',
22001             'Test2::Bundle::Simple' => '1.302201',
22002             'Test2::Compare' => '1.302201',
22003             'Test2::Compare::Array' => '1.302201',
22004             'Test2::Compare::Bag' => '1.302201',
22005             'Test2::Compare::Base' => '1.302201',
22006             'Test2::Compare::Bool' => '1.302201',
22007             'Test2::Compare::Custom'=> '1.302201',
22008             'Test2::Compare::DeepRef'=> '1.302201',
22009             'Test2::Compare::Delta' => '1.302201',
22010             'Test2::Compare::Event' => '1.302201',
22011             'Test2::Compare::EventMeta'=> '1.302201',
22012             'Test2::Compare::Float' => '1.302201',
22013             'Test2::Compare::Hash' => '1.302201',
22014             'Test2::Compare::Isa' => '1.302201',
22015             'Test2::Compare::Meta' => '1.302201',
22016             'Test2::Compare::Negatable'=> '1.302201',
22017             'Test2::Compare::Number'=> '1.302201',
22018             'Test2::Compare::Object'=> '1.302201',
22019             'Test2::Compare::OrderedSubset'=> '1.302201',
22020             'Test2::Compare::Pattern'=> '1.302201',
22021             'Test2::Compare::Ref' => '1.302201',
22022             'Test2::Compare::Regex' => '1.302201',
22023             'Test2::Compare::Scalar'=> '1.302201',
22024             'Test2::Compare::Set' => '1.302201',
22025             'Test2::Compare::String'=> '1.302201',
22026             'Test2::Compare::Undef' => '1.302201',
22027             'Test2::Compare::Wildcard'=> '1.302201',
22028             'Test2::Event' => '1.302201',
22029             'Test2::Event::Bail' => '1.302201',
22030             'Test2::Event::Diag' => '1.302201',
22031             'Test2::Event::Encoding'=> '1.302201',
22032             'Test2::Event::Exception'=> '1.302201',
22033             'Test2::Event::Fail' => '1.302201',
22034             'Test2::Event::Generic' => '1.302201',
22035             'Test2::Event::Note' => '1.302201',
22036             'Test2::Event::Ok' => '1.302201',
22037             'Test2::Event::Pass' => '1.302201',
22038             'Test2::Event::Plan' => '1.302201',
22039             'Test2::Event::Skip' => '1.302201',
22040             'Test2::Event::Subtest' => '1.302201',
22041             'Test2::Event::TAP::Version'=> '1.302201',
22042             'Test2::Event::V2' => '1.302201',
22043             'Test2::Event::Waiting' => '1.302201',
22044             'Test2::EventFacet' => '1.302201',
22045             'Test2::EventFacet::About'=> '1.302201',
22046             'Test2::EventFacet::Amnesty'=> '1.302201',
22047             'Test2::EventFacet::Assert'=> '1.302201',
22048             'Test2::EventFacet::Control'=> '1.302201',
22049             'Test2::EventFacet::Error'=> '1.302201',
22050             'Test2::EventFacet::Hub'=> '1.302201',
22051             'Test2::EventFacet::Info'=> '1.302201',
22052             'Test2::EventFacet::Info::Table'=> '1.302201',
22053             'Test2::EventFacet::Meta'=> '1.302201',
22054             'Test2::EventFacet::Parent'=> '1.302201',
22055             'Test2::EventFacet::Plan'=> '1.302201',
22056             'Test2::EventFacet::Render'=> '1.302201',
22057             'Test2::EventFacet::Trace'=> '1.302201',
22058             'Test2::Formatter' => '1.302201',
22059             'Test2::Formatter::TAP' => '1.302201',
22060             'Test2::Hub' => '1.302201',
22061             'Test2::Hub::Interceptor'=> '1.302201',
22062             'Test2::Hub::Interceptor::Terminator'=> '1.302201',
22063             'Test2::Hub::Subtest' => '1.302201',
22064             'Test2::IPC' => '1.302201',
22065             'Test2::IPC::Driver' => '1.302201',
22066             'Test2::IPC::Driver::Files'=> '1.302201',
22067             'Test2::Manual' => '1.302201',
22068             'Test2::Manual::Anatomy'=> '1.302201',
22069             'Test2::Manual::Anatomy::API'=> '1.302201',
22070             'Test2::Manual::Anatomy::Context'=> '1.302201',
22071             'Test2::Manual::Anatomy::EndToEnd'=> '1.302201',
22072             'Test2::Manual::Anatomy::Event'=> '1.302201',
22073             'Test2::Manual::Anatomy::Hubs'=> '1.302201',
22074             'Test2::Manual::Anatomy::IPC'=> '1.302201',
22075             'Test2::Manual::Anatomy::Utilities'=> '1.302201',
22076             'Test2::Manual::Concurrency'=> '1.302201',
22077             'Test2::Manual::Contributing'=> '1.302201',
22078             'Test2::Manual::Testing'=> '1.302201',
22079             'Test2::Manual::Testing::Introduction'=> '1.302201',
22080             'Test2::Manual::Testing::Migrating'=> '1.302201',
22081             'Test2::Manual::Testing::Planning'=> '1.302201',
22082             'Test2::Manual::Testing::Todo'=> '1.302201',
22083             'Test2::Manual::Tooling'=> '1.302201',
22084             'Test2::Manual::Tooling::FirstTool'=> '1.302201',
22085             'Test2::Manual::Tooling::Formatter'=> '1.302201',
22086             'Test2::Manual::Tooling::Nesting'=> '1.302201',
22087             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302201',
22088             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302201',
22089             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302201',
22090             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302201',
22091             'Test2::Manual::Tooling::Subtest'=> '1.302201',
22092             'Test2::Manual::Tooling::TestBuilder'=> '1.302201',
22093             'Test2::Manual::Tooling::Testing'=> '1.302201',
22094             'Test2::Mock' => '1.302201',
22095             'Test2::Plugin' => '1.302201',
22096             'Test2::Plugin::BailOnFail'=> '1.302201',
22097             'Test2::Plugin::DieOnFail'=> '1.302201',
22098             'Test2::Plugin::ExitSummary'=> '1.302201',
22099             'Test2::Plugin::SRand' => '1.302201',
22100             'Test2::Plugin::Times' => '1.302201',
22101             'Test2::Plugin::UTF8' => '1.302201',
22102             'Test2::Require' => '1.302201',
22103             'Test2::Require::AuthorTesting'=> '1.302201',
22104             'Test2::Require::AutomatedTesting'=> '1.302201',
22105             'Test2::Require::EnvVar'=> '1.302201',
22106             'Test2::Require::ExtendedTesting'=> '1.302201',
22107             'Test2::Require::Fork' => '1.302201',
22108             'Test2::Require::Module'=> '1.302201',
22109             'Test2::Require::NonInteractiveTesting'=> '1.302201',
22110             'Test2::Require::Perl' => '1.302201',
22111             'Test2::Require::RealFork'=> '1.302201',
22112             'Test2::Require::ReleaseTesting'=> '1.302201',
22113             'Test2::Require::Threads'=> '1.302201',
22114             'Test2::Suite' => '1.302201',
22115             'Test2::Todo' => '1.302201',
22116             'Test2::Tools' => '1.302201',
22117             'Test2::Tools::AsyncSubtest'=> '1.302201',
22118             'Test2::Tools::Basic' => '1.302201',
22119             'Test2::Tools::Class' => '1.302201',
22120             'Test2::Tools::ClassicCompare'=> '1.302201',
22121             'Test2::Tools::Compare' => '1.302201',
22122             'Test2::Tools::Defer' => '1.302201',
22123             'Test2::Tools::Encoding'=> '1.302201',
22124             'Test2::Tools::Event' => '1.302201',
22125             'Test2::Tools::Exception'=> '1.302201',
22126             'Test2::Tools::Exports' => '1.302201',
22127             'Test2::Tools::GenTemp' => '1.302201',
22128             'Test2::Tools::Grab' => '1.302201',
22129             'Test2::Tools::Mock' => '1.302201',
22130             'Test2::Tools::Ref' => '1.302201',
22131             'Test2::Tools::Refcount'=> '1.302201',
22132             'Test2::Tools::Spec' => '1.302201',
22133             'Test2::Tools::Subtest' => '1.302201',
22134             'Test2::Tools::Target' => '1.302201',
22135             'Test2::Tools::Tester' => '1.302201',
22136             'Test2::Tools::Tiny' => '1.302201',
22137             'Test2::Tools::Warnings'=> '1.302201',
22138             'Test2::Util' => '1.302201',
22139             'Test2::Util::ExternalMeta'=> '1.302201',
22140             'Test2::Util::Facets2Legacy'=> '1.302201',
22141             'Test2::Util::Grabber' => '1.302201',
22142             'Test2::Util::Guard' => '1.302201',
22143             'Test2::Util::HashBase' => '1.302201',
22144             'Test2::Util::Importer' => '1.302201',
22145             'Test2::Util::Ref' => '1.302201',
22146             'Test2::Util::Stash' => '1.302201',
22147             'Test2::Util::Sub' => '1.302201',
22148             'Test2::Util::Table' => '1.302201',
22149             'Test2::Util::Table::Cell'=> '1.302201',
22150             'Test2::Util::Table::LineBreak'=> '1.302201',
22151             'Test2::Util::Term' => '1.302201',
22152             'Test2::Util::Times' => '1.302201',
22153             'Test2::Util::Trace' => '1.302201',
22154             'Test2::V0' => '1.302201',
22155             'Test2::Workflow' => '1.302201',
22156             'Test2::Workflow::BlockBase'=> '1.302201',
22157             'Test2::Workflow::Build'=> '1.302201',
22158             'Test2::Workflow::Runner'=> '1.302201',
22159             'Test2::Workflow::Task' => '1.302201',
22160             'Test2::Workflow::Task::Action'=> '1.302201',
22161             'Test2::Workflow::Task::Group'=> '1.302201',
22162             'Test::Builder' => '1.302201',
22163             'Test::Builder::Formatter'=> '1.302201',
22164             'Test::Builder::Module' => '1.302201',
22165             'Test::Builder::Tester' => '1.302201',
22166             'Test::Builder::Tester::Color'=> '1.302201',
22167             'Test::Builder::TodoDiag'=> '1.302201',
22168             'Test::Harness' => '3.50',
22169             'Test::More' => '1.302201',
22170             'Test::Simple' => '1.302201',
22171             'Test::Tester' => '1.302201',
22172             'Test::Tester::Capture' => '1.302201',
22173             'Test::Tester::CaptureRunner'=> '1.302201',
22174             'Test::Tester::Delegate'=> '1.302201',
22175             'Test::use::ok' => '1.302201',
22176             'Tie::RefHash' => '1.41',
22177             'feature' => '1.91',
22178             'ok' => '1.302201',
22179             'overload' => '1.38',
22180             'parent' => '0.242',
22181             'threads' => '2.42',
22182             },
22183             removed => {
22184             }
22185             },
22186             5.041004 => {
22187             delta_from => 5.041003,
22188             changed => {
22189             'B::Op_private' => '5.041004',
22190             'CPAN' => '2.37',
22191             'CPAN::HandleConfig' => '5.5013',
22192             'Config' => '5.041004',
22193             'Devel::Peek' => '1.36',
22194             'ExtUtils::ParseXS' => '3.54',
22195             'ExtUtils::ParseXS::Constants'=> '3.54',
22196             'ExtUtils::ParseXS::CountLines'=> '3.54',
22197             'ExtUtils::ParseXS::Eval'=> '3.54',
22198             'ExtUtils::ParseXS::Utilities'=> '3.54',
22199             'ExtUtils::Typemaps' => '3.54',
22200             'ExtUtils::Typemaps::Cmd'=> '3.54',
22201             'ExtUtils::Typemaps::InputMap'=> '3.54',
22202             'ExtUtils::Typemaps::OutputMap'=> '3.54',
22203             'ExtUtils::Typemaps::Type'=> '3.54',
22204             'File::Spec' => '3.93',
22205             'File::Spec::AmigaOS' => '3.93',
22206             'File::Spec::Cygwin' => '3.93',
22207             'File::Spec::Epoc' => '3.93',
22208             'File::Spec::Functions' => '3.93',
22209             'File::Spec::Mac' => '3.93',
22210             'File::Spec::OS2' => '3.93',
22211             'File::Spec::Unix' => '3.93',
22212             'File::Spec::VMS' => '3.93',
22213             'File::Spec::Win32' => '3.93',
22214             'List::Util' => '1.66',
22215             'List::Util::XS' => '1.66',
22216             'Module::CoreList' => '5.20240920',
22217             'Module::CoreList::Utils'=> '5.20240920',
22218             'Scalar::Util' => '1.66',
22219             'Storable' => '3.35',
22220             'Sub::Util' => '1.66',
22221             'Test2' => '1.302204',
22222             'Test2::API' => '1.302204',
22223             'Test2::API::Breakage' => '1.302204',
22224             'Test2::API::Context' => '1.302204',
22225             'Test2::API::Instance' => '1.302204',
22226             'Test2::API::InterceptResult'=> '1.302204',
22227             'Test2::API::InterceptResult::Event'=> '1.302204',
22228             'Test2::API::InterceptResult::Facet'=> '1.302204',
22229             'Test2::API::InterceptResult::Hub'=> '1.302204',
22230             'Test2::API::InterceptResult::Squasher'=> '1.302204',
22231             'Test2::API::Stack' => '1.302204',
22232             'Test2::AsyncSubtest' => '1.302204',
22233             'Test2::AsyncSubtest::Event::Attach'=> '1.302204',
22234             'Test2::AsyncSubtest::Event::Detach'=> '1.302204',
22235             'Test2::AsyncSubtest::Formatter'=> '1.302204',
22236             'Test2::AsyncSubtest::Hub'=> '1.302204',
22237             'Test2::Bundle' => '1.302204',
22238             'Test2::Bundle::Extended'=> '1.302204',
22239             'Test2::Bundle::More' => '1.302204',
22240             'Test2::Bundle::Simple' => '1.302204',
22241             'Test2::Compare' => '1.302204',
22242             'Test2::Compare::Array' => '1.302204',
22243             'Test2::Compare::Bag' => '1.302204',
22244             'Test2::Compare::Base' => '1.302204',
22245             'Test2::Compare::Bool' => '1.302204',
22246             'Test2::Compare::Custom'=> '1.302204',
22247             'Test2::Compare::DeepRef'=> '1.302204',
22248             'Test2::Compare::Delta' => '1.302204',
22249             'Test2::Compare::Event' => '1.302204',
22250             'Test2::Compare::EventMeta'=> '1.302204',
22251             'Test2::Compare::Float' => '1.302204',
22252             'Test2::Compare::Hash' => '1.302204',
22253             'Test2::Compare::Isa' => '1.302204',
22254             'Test2::Compare::Meta' => '1.302204',
22255             'Test2::Compare::Negatable'=> '1.302204',
22256             'Test2::Compare::Number'=> '1.302204',
22257             'Test2::Compare::Object'=> '1.302204',
22258             'Test2::Compare::OrderedSubset'=> '1.302204',
22259             'Test2::Compare::Pattern'=> '1.302204',
22260             'Test2::Compare::Ref' => '1.302204',
22261             'Test2::Compare::Regex' => '1.302204',
22262             'Test2::Compare::Scalar'=> '1.302204',
22263             'Test2::Compare::Set' => '1.302204',
22264             'Test2::Compare::String'=> '1.302204',
22265             'Test2::Compare::Undef' => '1.302204',
22266             'Test2::Compare::Wildcard'=> '1.302204',
22267             'Test2::Event' => '1.302204',
22268             'Test2::Event::Bail' => '1.302204',
22269             'Test2::Event::Diag' => '1.302204',
22270             'Test2::Event::Encoding'=> '1.302204',
22271             'Test2::Event::Exception'=> '1.302204',
22272             'Test2::Event::Fail' => '1.302204',
22273             'Test2::Event::Generic' => '1.302204',
22274             'Test2::Event::Note' => '1.302204',
22275             'Test2::Event::Ok' => '1.302204',
22276             'Test2::Event::Pass' => '1.302204',
22277             'Test2::Event::Plan' => '1.302204',
22278             'Test2::Event::Skip' => '1.302204',
22279             'Test2::Event::Subtest' => '1.302204',
22280             'Test2::Event::TAP::Version'=> '1.302204',
22281             'Test2::Event::V2' => '1.302204',
22282             'Test2::Event::Waiting' => '1.302204',
22283             'Test2::EventFacet' => '1.302204',
22284             'Test2::EventFacet::About'=> '1.302204',
22285             'Test2::EventFacet::Amnesty'=> '1.302204',
22286             'Test2::EventFacet::Assert'=> '1.302204',
22287             'Test2::EventFacet::Control'=> '1.302204',
22288             'Test2::EventFacet::Error'=> '1.302204',
22289             'Test2::EventFacet::Hub'=> '1.302204',
22290             'Test2::EventFacet::Info'=> '1.302204',
22291             'Test2::EventFacet::Info::Table'=> '1.302204',
22292             'Test2::EventFacet::Meta'=> '1.302204',
22293             'Test2::EventFacet::Parent'=> '1.302204',
22294             'Test2::EventFacet::Plan'=> '1.302204',
22295             'Test2::EventFacet::Render'=> '1.302204',
22296             'Test2::EventFacet::Trace'=> '1.302204',
22297             'Test2::Formatter' => '1.302204',
22298             'Test2::Formatter::TAP' => '1.302204',
22299             'Test2::Hub' => '1.302204',
22300             'Test2::Hub::Interceptor'=> '1.302204',
22301             'Test2::Hub::Interceptor::Terminator'=> '1.302204',
22302             'Test2::Hub::Subtest' => '1.302204',
22303             'Test2::IPC' => '1.302204',
22304             'Test2::IPC::Driver' => '1.302204',
22305             'Test2::IPC::Driver::Files'=> '1.302204',
22306             'Test2::Manual' => '1.302204',
22307             'Test2::Manual::Anatomy'=> '1.302204',
22308             'Test2::Manual::Anatomy::API'=> '1.302204',
22309             'Test2::Manual::Anatomy::Context'=> '1.302204',
22310             'Test2::Manual::Anatomy::EndToEnd'=> '1.302204',
22311             'Test2::Manual::Anatomy::Event'=> '1.302204',
22312             'Test2::Manual::Anatomy::Hubs'=> '1.302204',
22313             'Test2::Manual::Anatomy::IPC'=> '1.302204',
22314             'Test2::Manual::Anatomy::Utilities'=> '1.302204',
22315             'Test2::Manual::Concurrency'=> '1.302204',
22316             'Test2::Manual::Contributing'=> '1.302204',
22317             'Test2::Manual::Testing'=> '1.302204',
22318             'Test2::Manual::Testing::Introduction'=> '1.302204',
22319             'Test2::Manual::Testing::Migrating'=> '1.302204',
22320             'Test2::Manual::Testing::Planning'=> '1.302204',
22321             'Test2::Manual::Testing::Todo'=> '1.302204',
22322             'Test2::Manual::Tooling'=> '1.302204',
22323             'Test2::Manual::Tooling::FirstTool'=> '1.302204',
22324             'Test2::Manual::Tooling::Formatter'=> '1.302204',
22325             'Test2::Manual::Tooling::Nesting'=> '1.302204',
22326             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302204',
22327             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302204',
22328             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302204',
22329             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302204',
22330             'Test2::Manual::Tooling::Subtest'=> '1.302204',
22331             'Test2::Manual::Tooling::TestBuilder'=> '1.302204',
22332             'Test2::Manual::Tooling::Testing'=> '1.302204',
22333             'Test2::Mock' => '1.302204',
22334             'Test2::Plugin' => '1.302204',
22335             'Test2::Plugin::BailOnFail'=> '1.302204',
22336             'Test2::Plugin::DieOnFail'=> '1.302204',
22337             'Test2::Plugin::ExitSummary'=> '1.302204',
22338             'Test2::Plugin::SRand' => '1.302204',
22339             'Test2::Plugin::Times' => '1.302204',
22340             'Test2::Plugin::UTF8' => '1.302204',
22341             'Test2::Require' => '1.302204',
22342             'Test2::Require::AuthorTesting'=> '1.302204',
22343             'Test2::Require::AutomatedTesting'=> '1.302204',
22344             'Test2::Require::EnvVar'=> '1.302204',
22345             'Test2::Require::ExtendedTesting'=> '1.302204',
22346             'Test2::Require::Fork' => '1.302204',
22347             'Test2::Require::Module'=> '1.302204',
22348             'Test2::Require::NonInteractiveTesting'=> '1.302204',
22349             'Test2::Require::Perl' => '1.302204',
22350             'Test2::Require::RealFork'=> '1.302204',
22351             'Test2::Require::ReleaseTesting'=> '1.302204',
22352             'Test2::Require::Threads'=> '1.302204',
22353             'Test2::Suite' => '1.302204',
22354             'Test2::Todo' => '1.302204',
22355             'Test2::Tools' => '1.302204',
22356             'Test2::Tools::AsyncSubtest'=> '1.302204',
22357             'Test2::Tools::Basic' => '1.302204',
22358             'Test2::Tools::Class' => '1.302204',
22359             'Test2::Tools::ClassicCompare'=> '1.302204',
22360             'Test2::Tools::Compare' => '1.302204',
22361             'Test2::Tools::Defer' => '1.302204',
22362             'Test2::Tools::Encoding'=> '1.302204',
22363             'Test2::Tools::Event' => '1.302204',
22364             'Test2::Tools::Exception'=> '1.302204',
22365             'Test2::Tools::Exports' => '1.302204',
22366             'Test2::Tools::GenTemp' => '1.302204',
22367             'Test2::Tools::Grab' => '1.302204',
22368             'Test2::Tools::Mock' => '1.302204',
22369             'Test2::Tools::Ref' => '1.302204',
22370             'Test2::Tools::Refcount'=> '1.302204',
22371             'Test2::Tools::Spec' => '1.302204',
22372             'Test2::Tools::Subtest' => '1.302204',
22373             'Test2::Tools::Target' => '1.302204',
22374             'Test2::Tools::Tester' => '1.302204',
22375             'Test2::Tools::Tiny' => '1.302204',
22376             'Test2::Tools::Warnings'=> '1.302204',
22377             'Test2::Util' => '1.302204',
22378             'Test2::Util::ExternalMeta'=> '1.302204',
22379             'Test2::Util::Facets2Legacy'=> '1.302204',
22380             'Test2::Util::Grabber' => '1.302204',
22381             'Test2::Util::Guard' => '1.302204',
22382             'Test2::Util::HashBase' => '1.302204',
22383             'Test2::Util::Importer' => '1.302204',
22384             'Test2::Util::Ref' => '1.302204',
22385             'Test2::Util::Stash' => '1.302204',
22386             'Test2::Util::Sub' => '1.302204',
22387             'Test2::Util::Table' => '1.302204',
22388             'Test2::Util::Table::Cell'=> '1.302204',
22389             'Test2::Util::Table::LineBreak'=> '1.302204',
22390             'Test2::Util::Term' => '1.302204',
22391             'Test2::Util::Times' => '1.302204',
22392             'Test2::Util::Trace' => '1.302204',
22393             'Test2::V0' => '1.302204',
22394             'Test2::Workflow' => '1.302204',
22395             'Test2::Workflow::BlockBase'=> '1.302204',
22396             'Test2::Workflow::Build'=> '1.302204',
22397             'Test2::Workflow::Runner'=> '1.302204',
22398             'Test2::Workflow::Task' => '1.302204',
22399             'Test2::Workflow::Task::Action'=> '1.302204',
22400             'Test2::Workflow::Task::Group'=> '1.302204',
22401             'Test::Builder' => '1.302204',
22402             'Test::Builder::Formatter'=> '1.302204',
22403             'Test::Builder::Module' => '1.302204',
22404             'Test::Builder::Tester' => '1.302204',
22405             'Test::Builder::Tester::Color'=> '1.302204',
22406             'Test::Builder::TodoDiag'=> '1.302204',
22407             'Test::More' => '1.302204',
22408             'Test::Simple' => '1.302204',
22409             'Test::Tester' => '1.302204',
22410             'Test::Tester::Capture' => '1.302204',
22411             'Test::Tester::CaptureRunner'=> '1.302204',
22412             'Test::Tester::Delegate'=> '1.302204',
22413             'Test::use::ok' => '1.302204',
22414             'XS::APItest' => '1.38',
22415             'ok' => '1.302204',
22416             'overload' => '1.39',
22417             'version' => '0.9933',
22418             'version::regex' => '0.9933',
22419             },
22420             removed => {
22421             }
22422             },
22423             5.041005 => {
22424             delta_from => 5.041004,
22425             changed => {
22426             'B::Op_private' => '5.041005',
22427             'Config' => '5.041005',
22428             'Digest::MD5' => '2.59',
22429             'ExtUtils::ParseXS' => '3.55',
22430             'ExtUtils::ParseXS::Constants'=> '3.55',
22431             'ExtUtils::ParseXS::CountLines'=> '3.55',
22432             'ExtUtils::ParseXS::Eval'=> '3.55',
22433             'ExtUtils::ParseXS::Node'=> '3.55',
22434             'ExtUtils::ParseXS::Utilities'=> '3.55',
22435             'ExtUtils::Typemaps' => '3.55',
22436             'ExtUtils::Typemaps::Cmd'=> '3.55',
22437             'ExtUtils::Typemaps::InputMap'=> '3.55',
22438             'ExtUtils::Typemaps::OutputMap'=> '3.55',
22439             'ExtUtils::Typemaps::Type'=> '3.55',
22440             'IPC::Open2' => '1.07',
22441             'IPC::Open3' => '1.23',
22442             'List::Util' => '1.68',
22443             'List::Util::XS' => '1.68',
22444             'Module::CoreList' => '5.20241020',
22445             'Module::CoreList::Utils'=> '5.20241020',
22446             'Scalar::List::Utils' => '1.68',
22447             'Scalar::Util' => '1.68',
22448             'Sub::Util' => '1.68',
22449             'threads::shared' => '1.70',
22450             },
22451             removed => {
22452             }
22453             },
22454             5.041006 => {
22455             delta_from => 5.041005,
22456             changed => {
22457             'B::Deparse' => '1.80',
22458             'B::Op_private' => '5.041006',
22459             'CPAN' => '2.38',
22460             'Config' => '5.041006',
22461             'DB' => '1.09',
22462             'ExtUtils::ParseXS' => '3.56',
22463             'ExtUtils::ParseXS::Constants'=> '3.56',
22464             'ExtUtils::ParseXS::CountLines'=> '3.56',
22465             'ExtUtils::ParseXS::Eval'=> '3.56',
22466             'ExtUtils::ParseXS::Node'=> '3.56',
22467             'ExtUtils::ParseXS::Utilities'=> '3.56',
22468             'ExtUtils::Typemaps' => '3.56',
22469             'ExtUtils::Typemaps::Cmd'=> '3.56',
22470             'ExtUtils::Typemaps::InputMap'=> '3.56',
22471             'ExtUtils::Typemaps::OutputMap'=> '3.56',
22472             'ExtUtils::Typemaps::Type'=> '3.56',
22473             'HTTP::Tiny' => '0.090',
22474             'IPC::Open2' => '1.08',
22475             'IPC::Open3' => '1.24',
22476             'List::Util' => '1.68_01',
22477             'List::Util::XS' => '1.68_01',
22478             'Math::Complex' => '1.63',
22479             'Math::Trig' => '1.63',
22480             'Memoize' => '1.17',
22481             'Memoize::AnyDBM_File' => '1.17',
22482             'Memoize::Expire' => '1.17',
22483             'Memoize::NDBM_File' => '1.17',
22484             'Memoize::SDBM_File' => '1.17',
22485             'Memoize::Storable' => '1.17',
22486             'Module::CoreList' => '5.20241120',
22487             'Module::CoreList::Utils'=> '5.20241120',
22488             'NDBM_File' => '1.18',
22489             'ODBM_File' => '1.19',
22490             'POSIX' => '2.23',
22491             'Scalar::Util' => '1.68_01',
22492             'Sub::Util' => '1.68_01',
22493             'Term::Table' => '0.023',
22494             'Term::Table::Cell' => '0.023',
22495             'Term::Table::CellStack'=> '0.023',
22496             'Term::Table::HashBase' => '0.023',
22497             'Term::Table::LineBreak'=> '0.023',
22498             'Term::Table::Spacer' => '0.023',
22499             'Term::Table::Util' => '0.023',
22500             'builtin' => '0.016',
22501             'feature' => '1.92',
22502             'fields' => '2.26',
22503             'parent' => '0.242_001',
22504             'warnings' => '1.71',
22505             },
22506             removed => {
22507             }
22508             },
22509             5.041007 => {
22510             delta_from => 5.041006,
22511             changed => {
22512             'B::Deparse' => '1.81',
22513             'B::Op_private' => '5.041007',
22514             'CPAN::Meta::YAML' => '0.020',
22515             'Config' => '5.041007',
22516             'IO::Socket::IP' => '0.43',
22517             'Module::CoreList' => '5.20241220',
22518             'Module::CoreList::Utils'=> '5.20241220',
22519             'Opcode' => '1.67',
22520             'XS::APItest' => '1.40',
22521             'builtin' => '0.017',
22522             'feature' => '1.93',
22523             'parent' => '0.244',
22524             'warnings' => '1.72',
22525             },
22526             removed => {
22527             }
22528             },
22529             5.038003 => {
22530             delta_from => 5.038002,
22531             changed => {
22532             'B::Op_private' => '5.038003',
22533             'Config' => '5.038003',
22534             'DynaLoader' => '1.54_01',
22535             'Module::CoreList' => '5.20250118_38',
22536             'Module::CoreList::Utils'=> '5.20250118_38',
22537             },
22538             removed => {
22539             }
22540             },
22541             5.040001 => {
22542             delta_from => 5.040000,
22543             changed => {
22544             'B::Op_private' => '5.040001',
22545             'Config' => '5.040001',
22546             'Cwd' => '3.91',
22547             'File::Spec' => '3.91',
22548             'Module::CoreList' => '5.20250118_40',
22549             'Module::CoreList::Utils'=> '5.20250118_40',
22550             'warnings' => '1.70',
22551             },
22552             removed => {
22553             }
22554             },
22555             5.041008 => {
22556             delta_from => 5.041007,
22557             changed => {
22558             'B::Deparse' => '1.82',
22559             'B::Op_private' => '5.041008',
22560             'Config' => '5.041008',
22561             'Config::Perl::V' => '0.38',
22562             'DBM_Filter' => '0.07',
22563             'Data::Dumper' => '2.191',
22564             'ExtUtils::ParseXS' => '3.57',
22565             'ExtUtils::ParseXS::Constants'=> '3.57',
22566             'ExtUtils::ParseXS::CountLines'=> '3.57',
22567             'ExtUtils::ParseXS::Eval'=> '3.57',
22568             'ExtUtils::ParseXS::Node'=> '3.57',
22569             'ExtUtils::ParseXS::Utilities'=> '3.57',
22570             'ExtUtils::Typemaps' => '3.57',
22571             'ExtUtils::Typemaps::Cmd'=> '3.57',
22572             'ExtUtils::Typemaps::InputMap'=> '3.57',
22573             'ExtUtils::Typemaps::OutputMap'=> '3.57',
22574             'ExtUtils::Typemaps::Type'=> '3.57',
22575             'Module::CoreList' => '5.20250120',
22576             'Module::CoreList::Utils'=> '5.20250120',
22577             'Opcode' => '1.68',
22578             'Term::Table' => '0.024',
22579             'Term::Table::Cell' => '0.024',
22580             'Term::Table::CellStack'=> '0.024',
22581             'Term::Table::HashBase' => '0.024',
22582             'Term::Table::LineBreak'=> '0.024',
22583             'Term::Table::Spacer' => '0.024',
22584             'Term::Table::Util' => '0.024',
22585             'Test2' => '1.302207',
22586             'Test2::API' => '1.302207',
22587             'Test2::API::Breakage' => '1.302207',
22588             'Test2::API::Context' => '1.302207',
22589             'Test2::API::Instance' => '1.302207',
22590             'Test2::API::InterceptResult'=> '1.302207',
22591             'Test2::API::InterceptResult::Event'=> '1.302207',
22592             'Test2::API::InterceptResult::Facet'=> '1.302207',
22593             'Test2::API::InterceptResult::Hub'=> '1.302207',
22594             'Test2::API::InterceptResult::Squasher'=> '1.302207',
22595             'Test2::API::Stack' => '1.302207',
22596             'Test2::AsyncSubtest' => '1.302207',
22597             'Test2::AsyncSubtest::Event::Attach'=> '1.302207',
22598             'Test2::AsyncSubtest::Event::Detach'=> '1.302207',
22599             'Test2::AsyncSubtest::Formatter'=> '1.302207',
22600             'Test2::AsyncSubtest::Hub'=> '1.302207',
22601             'Test2::Bundle' => '1.302207',
22602             'Test2::Bundle::Extended'=> '1.302207',
22603             'Test2::Bundle::More' => '1.302207',
22604             'Test2::Bundle::Simple' => '1.302207',
22605             'Test2::Compare' => '1.302207',
22606             'Test2::Compare::Array' => '1.302207',
22607             'Test2::Compare::Bag' => '1.302207',
22608             'Test2::Compare::Base' => '1.302207',
22609             'Test2::Compare::Bool' => '1.302207',
22610             'Test2::Compare::Custom'=> '1.302207',
22611             'Test2::Compare::DeepRef'=> '1.302207',
22612             'Test2::Compare::Delta' => '1.302207',
22613             'Test2::Compare::Event' => '1.302207',
22614             'Test2::Compare::EventMeta'=> '1.302207',
22615             'Test2::Compare::Float' => '1.302207',
22616             'Test2::Compare::Hash' => '1.302207',
22617             'Test2::Compare::Isa' => '1.302207',
22618             'Test2::Compare::Meta' => '1.302207',
22619             'Test2::Compare::Negatable'=> '1.302207',
22620             'Test2::Compare::Number'=> '1.302207',
22621             'Test2::Compare::Object'=> '1.302207',
22622             'Test2::Compare::OrderedSubset'=> '1.302207',
22623             'Test2::Compare::Pattern'=> '1.302207',
22624             'Test2::Compare::Ref' => '1.302207',
22625             'Test2::Compare::Regex' => '1.302207',
22626             'Test2::Compare::Scalar'=> '1.302207',
22627             'Test2::Compare::Set' => '1.302207',
22628             'Test2::Compare::String'=> '1.302207',
22629             'Test2::Compare::Undef' => '1.302207',
22630             'Test2::Compare::Wildcard'=> '1.302207',
22631             'Test2::Env' => '1.302207',
22632             'Test2::Event' => '1.302207',
22633             'Test2::Event::Bail' => '1.302207',
22634             'Test2::Event::Diag' => '1.302207',
22635             'Test2::Event::Encoding'=> '1.302207',
22636             'Test2::Event::Exception'=> '1.302207',
22637             'Test2::Event::Fail' => '1.302207',
22638             'Test2::Event::Generic' => '1.302207',
22639             'Test2::Event::Note' => '1.302207',
22640             'Test2::Event::Ok' => '1.302207',
22641             'Test2::Event::Pass' => '1.302207',
22642             'Test2::Event::Plan' => '1.302207',
22643             'Test2::Event::Skip' => '1.302207',
22644             'Test2::Event::Subtest' => '1.302207',
22645             'Test2::Event::TAP::Version'=> '1.302207',
22646             'Test2::Event::V2' => '1.302207',
22647             'Test2::Event::Waiting' => '1.302207',
22648             'Test2::EventFacet' => '1.302207',
22649             'Test2::EventFacet::About'=> '1.302207',
22650             'Test2::EventFacet::Amnesty'=> '1.302207',
22651             'Test2::EventFacet::Assert'=> '1.302207',
22652             'Test2::EventFacet::Control'=> '1.302207',
22653             'Test2::EventFacet::Error'=> '1.302207',
22654             'Test2::EventFacet::Hub'=> '1.302207',
22655             'Test2::EventFacet::Info'=> '1.302207',
22656             'Test2::EventFacet::Info::Table'=> '1.302207',
22657             'Test2::EventFacet::Meta'=> '1.302207',
22658             'Test2::EventFacet::Parent'=> '1.302207',
22659             'Test2::EventFacet::Plan'=> '1.302207',
22660             'Test2::EventFacet::Render'=> '1.302207',
22661             'Test2::EventFacet::Trace'=> '1.302207',
22662             'Test2::Formatter' => '1.302207',
22663             'Test2::Formatter::TAP' => '1.302207',
22664             'Test2::Hub' => '1.302207',
22665             'Test2::Hub::Interceptor'=> '1.302207',
22666             'Test2::Hub::Interceptor::Terminator'=> '1.302207',
22667             'Test2::Hub::Subtest' => '1.302207',
22668             'Test2::IPC' => '1.302207',
22669             'Test2::IPC::Driver' => '1.302207',
22670             'Test2::IPC::Driver::Files'=> '1.302207',
22671             'Test2::Manual' => '1.302207',
22672             'Test2::Manual::Anatomy'=> '1.302207',
22673             'Test2::Manual::Anatomy::API'=> '1.302207',
22674             'Test2::Manual::Anatomy::Context'=> '1.302207',
22675             'Test2::Manual::Anatomy::EndToEnd'=> '1.302207',
22676             'Test2::Manual::Anatomy::Event'=> '1.302207',
22677             'Test2::Manual::Anatomy::Hubs'=> '1.302207',
22678             'Test2::Manual::Anatomy::IPC'=> '1.302207',
22679             'Test2::Manual::Anatomy::Utilities'=> '1.302207',
22680             'Test2::Manual::Concurrency'=> '1.302207',
22681             'Test2::Manual::Contributing'=> '1.302207',
22682             'Test2::Manual::Testing'=> '1.302207',
22683             'Test2::Manual::Testing::Introduction'=> '1.302207',
22684             'Test2::Manual::Testing::Migrating'=> '1.302207',
22685             'Test2::Manual::Testing::Planning'=> '1.302207',
22686             'Test2::Manual::Testing::Todo'=> '1.302207',
22687             'Test2::Manual::Tooling'=> '1.302207',
22688             'Test2::Manual::Tooling::FirstTool'=> '1.302207',
22689             'Test2::Manual::Tooling::Formatter'=> '1.302207',
22690             'Test2::Manual::Tooling::Nesting'=> '1.302207',
22691             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302207',
22692             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302207',
22693             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302207',
22694             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302207',
22695             'Test2::Manual::Tooling::Subtest'=> '1.302207',
22696             'Test2::Manual::Tooling::TestBuilder'=> '1.302207',
22697             'Test2::Manual::Tooling::Testing'=> '1.302207',
22698             'Test2::Mock' => '1.302207',
22699             'Test2::Plugin' => '1.302207',
22700             'Test2::Plugin::BailOnFail'=> '1.302207',
22701             'Test2::Plugin::DieOnFail'=> '1.302207',
22702             'Test2::Plugin::ExitSummary'=> '1.302207',
22703             'Test2::Plugin::SRand' => '1.302207',
22704             'Test2::Plugin::Times' => '1.302207',
22705             'Test2::Plugin::UTF8' => '1.302207',
22706             'Test2::Require' => '1.302207',
22707             'Test2::Require::AuthorTesting'=> '1.302207',
22708             'Test2::Require::AutomatedTesting'=> '1.302207',
22709             'Test2::Require::EnvVar'=> '1.302207',
22710             'Test2::Require::ExtendedTesting'=> '1.302207',
22711             'Test2::Require::Fork' => '1.302207',
22712             'Test2::Require::Module'=> '1.302207',
22713             'Test2::Require::NonInteractiveTesting'=> '1.302207',
22714             'Test2::Require::Perl' => '1.302207',
22715             'Test2::Require::RealFork'=> '1.302207',
22716             'Test2::Require::ReleaseTesting'=> '1.302207',
22717             'Test2::Require::Threads'=> '1.302207',
22718             'Test2::Suite' => '1.302207',
22719             'Test2::Todo' => '1.302207',
22720             'Test2::Tools' => '1.302207',
22721             'Test2::Tools::AsyncSubtest'=> '1.302207',
22722             'Test2::Tools::Basic' => '1.302207',
22723             'Test2::Tools::Class' => '1.302207',
22724             'Test2::Tools::ClassicCompare'=> '1.302207',
22725             'Test2::Tools::Compare' => '1.302207',
22726             'Test2::Tools::Defer' => '1.302207',
22727             'Test2::Tools::Encoding'=> '1.302207',
22728             'Test2::Tools::Event' => '1.302207',
22729             'Test2::Tools::Exception'=> '1.302207',
22730             'Test2::Tools::Exports' => '1.302207',
22731             'Test2::Tools::GenTemp' => '1.302207',
22732             'Test2::Tools::Grab' => '1.302207',
22733             'Test2::Tools::Mock' => '1.302207',
22734             'Test2::Tools::Ref' => '1.302207',
22735             'Test2::Tools::Refcount'=> '1.302207',
22736             'Test2::Tools::Spec' => '1.302207',
22737             'Test2::Tools::Subtest' => '1.302207',
22738             'Test2::Tools::Target' => '1.302207',
22739             'Test2::Tools::Tester' => '1.302207',
22740             'Test2::Tools::Tiny' => '1.302207',
22741             'Test2::Tools::Warnings'=> '1.302207',
22742             'Test2::Util' => '1.302207',
22743             'Test2::Util::ExternalMeta'=> '1.302207',
22744             'Test2::Util::Facets2Legacy'=> '1.302207',
22745             'Test2::Util::Grabber' => '1.302207',
22746             'Test2::Util::Guard' => '1.302207',
22747             'Test2::Util::HashBase' => '1.302207',
22748             'Test2::Util::Importer' => '1.302207',
22749             'Test2::Util::Ref' => '1.302207',
22750             'Test2::Util::Stash' => '1.302207',
22751             'Test2::Util::Sub' => '1.302207',
22752             'Test2::Util::Table' => '1.302207',
22753             'Test2::Util::Table::Cell'=> '1.302207',
22754             'Test2::Util::Table::LineBreak'=> '1.302207',
22755             'Test2::Util::Term' => '1.302207',
22756             'Test2::Util::Times' => '1.302207',
22757             'Test2::Util::Trace' => '1.302207',
22758             'Test2::V0' => '1.302207',
22759             'Test2::Workflow' => '1.302207',
22760             'Test2::Workflow::BlockBase'=> '1.302207',
22761             'Test2::Workflow::Build'=> '1.302207',
22762             'Test2::Workflow::Runner'=> '1.302207',
22763             'Test2::Workflow::Task' => '1.302207',
22764             'Test2::Workflow::Task::Action'=> '1.302207',
22765             'Test2::Workflow::Task::Group'=> '1.302207',
22766             'Test::Builder' => '1.302207',
22767             'Test::Builder::Formatter'=> '1.302207',
22768             'Test::Builder::Module' => '1.302207',
22769             'Test::Builder::Tester' => '1.302207',
22770             'Test::Builder::Tester::Color'=> '1.302207',
22771             'Test::Builder::TodoDiag'=> '1.302207',
22772             'Test::More' => '1.302207',
22773             'Test::Simple' => '1.302207',
22774             'Test::Tester' => '1.302207',
22775             'Test::Tester::Capture' => '1.302207',
22776             'Test::Tester::CaptureRunner'=> '1.302207',
22777             'Test::Tester::Delegate'=> '1.302207',
22778             'Test::use::ok' => '1.302207',
22779             'Time::Piece' => '1.35',
22780             'Time::Seconds' => '1.35',
22781             'experimental' => '0.034',
22782             'ok' => '1.302207',
22783             'stable' => '0.034',
22784             },
22785             removed => {
22786             'Test::Builder::IO::Scalar'=> 1,
22787             }
22788             },
22789             5.041009 => {
22790             delta_from => 5.041008,
22791             changed => {
22792             'B::Deparse' => '1.83',
22793             'B::Op_private' => '5.041009',
22794             'Config' => '5.041009',
22795             'Exporter' => '5.79',
22796             'Exporter::Heavy' => '5.79',
22797             'IO::Poll' => '1.56',
22798             'Math::BigFloat' => '2.003004',
22799             'Math::BigInt' => '2.003004',
22800             'Math::BigInt::Calc' => '2.003004',
22801             'Math::BigInt::Lib' => '2.003004',
22802             'Math::BigRat' => '2.003004',
22803             'Module::CoreList' => '5.20250220',
22804             'Module::CoreList::Utils'=> '5.20250220',
22805             'ODBM_File' => '1.20',
22806             'Opcode' => '1.69',
22807             'Safe' => '2.46',
22808             'Test2' => '1.302209',
22809             'Test2::API' => '1.302209',
22810             'Test2::API::Breakage' => '1.302209',
22811             'Test2::API::Context' => '1.302209',
22812             'Test2::API::Instance' => '1.302209',
22813             'Test2::API::InterceptResult'=> '1.302209',
22814             'Test2::API::InterceptResult::Event'=> '1.302209',
22815             'Test2::API::InterceptResult::Facet'=> '1.302209',
22816             'Test2::API::InterceptResult::Hub'=> '1.302209',
22817             'Test2::API::InterceptResult::Squasher'=> '1.302209',
22818             'Test2::API::Stack' => '1.302209',
22819             'Test2::AsyncSubtest' => '1.302209',
22820             'Test2::AsyncSubtest::Event::Attach'=> '1.302209',
22821             'Test2::AsyncSubtest::Event::Detach'=> '1.302209',
22822             'Test2::AsyncSubtest::Formatter'=> '1.302209',
22823             'Test2::AsyncSubtest::Hub'=> '1.302209',
22824             'Test2::Bundle' => '1.302209',
22825             'Test2::Bundle::Extended'=> '1.302209',
22826             'Test2::Bundle::More' => '1.302209',
22827             'Test2::Bundle::Simple' => '1.302209',
22828             'Test2::Compare' => '1.302209',
22829             'Test2::Compare::Array' => '1.302209',
22830             'Test2::Compare::Bag' => '1.302209',
22831             'Test2::Compare::Base' => '1.302209',
22832             'Test2::Compare::Bool' => '1.302209',
22833             'Test2::Compare::Custom'=> '1.302209',
22834             'Test2::Compare::DeepRef'=> '1.302209',
22835             'Test2::Compare::Delta' => '1.302209',
22836             'Test2::Compare::Event' => '1.302209',
22837             'Test2::Compare::EventMeta'=> '1.302209',
22838             'Test2::Compare::Float' => '1.302209',
22839             'Test2::Compare::Hash' => '1.302209',
22840             'Test2::Compare::Isa' => '1.302209',
22841             'Test2::Compare::Meta' => '1.302209',
22842             'Test2::Compare::Negatable'=> '1.302209',
22843             'Test2::Compare::Number'=> '1.302209',
22844             'Test2::Compare::Object'=> '1.302209',
22845             'Test2::Compare::OrderedSubset'=> '1.302209',
22846             'Test2::Compare::Pattern'=> '1.302209',
22847             'Test2::Compare::Ref' => '1.302209',
22848             'Test2::Compare::Regex' => '1.302209',
22849             'Test2::Compare::Scalar'=> '1.302209',
22850             'Test2::Compare::Set' => '1.302209',
22851             'Test2::Compare::String'=> '1.302209',
22852             'Test2::Compare::Undef' => '1.302209',
22853             'Test2::Compare::Wildcard'=> '1.302209',
22854             'Test2::Env' => '1.302209',
22855             'Test2::Event' => '1.302209',
22856             'Test2::Event::Bail' => '1.302209',
22857             'Test2::Event::Diag' => '1.302209',
22858             'Test2::Event::Encoding'=> '1.302209',
22859             'Test2::Event::Exception'=> '1.302209',
22860             'Test2::Event::Fail' => '1.302209',
22861             'Test2::Event::Generic' => '1.302209',
22862             'Test2::Event::Note' => '1.302209',
22863             'Test2::Event::Ok' => '1.302209',
22864             'Test2::Event::Pass' => '1.302209',
22865             'Test2::Event::Plan' => '1.302209',
22866             'Test2::Event::Skip' => '1.302209',
22867             'Test2::Event::Subtest' => '1.302209',
22868             'Test2::Event::TAP::Version'=> '1.302209',
22869             'Test2::Event::V2' => '1.302209',
22870             'Test2::Event::Waiting' => '1.302209',
22871             'Test2::EventFacet' => '1.302209',
22872             'Test2::EventFacet::About'=> '1.302209',
22873             'Test2::EventFacet::Amnesty'=> '1.302209',
22874             'Test2::EventFacet::Assert'=> '1.302209',
22875             'Test2::EventFacet::Control'=> '1.302209',
22876             'Test2::EventFacet::Error'=> '1.302209',
22877             'Test2::EventFacet::Hub'=> '1.302209',
22878             'Test2::EventFacet::Info'=> '1.302209',
22879             'Test2::EventFacet::Info::Table'=> '1.302209',
22880             'Test2::EventFacet::Meta'=> '1.302209',
22881             'Test2::EventFacet::Parent'=> '1.302209',
22882             'Test2::EventFacet::Plan'=> '1.302209',
22883             'Test2::EventFacet::Render'=> '1.302209',
22884             'Test2::EventFacet::Trace'=> '1.302209',
22885             'Test2::Formatter' => '1.302209',
22886             'Test2::Formatter::TAP' => '1.302209',
22887             'Test2::Hub' => '1.302209',
22888             'Test2::Hub::Interceptor'=> '1.302209',
22889             'Test2::Hub::Interceptor::Terminator'=> '1.302209',
22890             'Test2::Hub::Subtest' => '1.302209',
22891             'Test2::IPC' => '1.302209',
22892             'Test2::IPC::Driver' => '1.302209',
22893             'Test2::IPC::Driver::Files'=> '1.302209',
22894             'Test2::Manual' => '1.302209',
22895             'Test2::Manual::Anatomy'=> '1.302209',
22896             'Test2::Manual::Anatomy::API'=> '1.302209',
22897             'Test2::Manual::Anatomy::Context'=> '1.302209',
22898             'Test2::Manual::Anatomy::EndToEnd'=> '1.302209',
22899             'Test2::Manual::Anatomy::Event'=> '1.302209',
22900             'Test2::Manual::Anatomy::Hubs'=> '1.302209',
22901             'Test2::Manual::Anatomy::IPC'=> '1.302209',
22902             'Test2::Manual::Anatomy::Utilities'=> '1.302209',
22903             'Test2::Manual::Concurrency'=> '1.302209',
22904             'Test2::Manual::Contributing'=> '1.302209',
22905             'Test2::Manual::Testing'=> '1.302209',
22906             'Test2::Manual::Testing::Introduction'=> '1.302209',
22907             'Test2::Manual::Testing::Migrating'=> '1.302209',
22908             'Test2::Manual::Testing::Planning'=> '1.302209',
22909             'Test2::Manual::Testing::Todo'=> '1.302209',
22910             'Test2::Manual::Tooling'=> '1.302209',
22911             'Test2::Manual::Tooling::FirstTool'=> '1.302209',
22912             'Test2::Manual::Tooling::Formatter'=> '1.302209',
22913             'Test2::Manual::Tooling::Nesting'=> '1.302209',
22914             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302209',
22915             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302209',
22916             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302209',
22917             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302209',
22918             'Test2::Manual::Tooling::Subtest'=> '1.302209',
22919             'Test2::Manual::Tooling::TestBuilder'=> '1.302209',
22920             'Test2::Manual::Tooling::Testing'=> '1.302209',
22921             'Test2::Mock' => '1.302209',
22922             'Test2::Plugin' => '1.302209',
22923             'Test2::Plugin::BailOnFail'=> '1.302209',
22924             'Test2::Plugin::DieOnFail'=> '1.302209',
22925             'Test2::Plugin::ExitSummary'=> '1.302209',
22926             'Test2::Plugin::SRand' => '1.302209',
22927             'Test2::Plugin::Times' => '1.302209',
22928             'Test2::Plugin::UTF8' => '1.302209',
22929             'Test2::Require' => '1.302209',
22930             'Test2::Require::AuthorTesting'=> '1.302209',
22931             'Test2::Require::AutomatedTesting'=> '1.302209',
22932             'Test2::Require::EnvVar'=> '1.302209',
22933             'Test2::Require::ExtendedTesting'=> '1.302209',
22934             'Test2::Require::Fork' => '1.302209',
22935             'Test2::Require::Module'=> '1.302209',
22936             'Test2::Require::NonInteractiveTesting'=> '1.302209',
22937             'Test2::Require::Perl' => '1.302209',
22938             'Test2::Require::RealFork'=> '1.302209',
22939             'Test2::Require::ReleaseTesting'=> '1.302209',
22940             'Test2::Require::Threads'=> '1.302209',
22941             'Test2::Suite' => '1.302209',
22942             'Test2::Todo' => '1.302209',
22943             'Test2::Tools' => '1.302209',
22944             'Test2::Tools::AsyncSubtest'=> '1.302209',
22945             'Test2::Tools::Basic' => '1.302209',
22946             'Test2::Tools::Class' => '1.302209',
22947             'Test2::Tools::ClassicCompare'=> '1.302209',
22948             'Test2::Tools::Compare' => '1.302209',
22949             'Test2::Tools::Defer' => '1.302209',
22950             'Test2::Tools::Encoding'=> '1.302209',
22951             'Test2::Tools::Event' => '1.302209',
22952             'Test2::Tools::Exception'=> '1.302209',
22953             'Test2::Tools::Exports' => '1.302209',
22954             'Test2::Tools::GenTemp' => '1.302209',
22955             'Test2::Tools::Grab' => '1.302209',
22956             'Test2::Tools::Mock' => '1.302209',
22957             'Test2::Tools::Ref' => '1.302209',
22958             'Test2::Tools::Refcount'=> '1.302209',
22959             'Test2::Tools::Spec' => '1.302209',
22960             'Test2::Tools::Subtest' => '1.302209',
22961             'Test2::Tools::Target' => '1.302209',
22962             'Test2::Tools::Tester' => '1.302209',
22963             'Test2::Tools::Tiny' => '1.302209',
22964             'Test2::Tools::Warnings'=> '1.302209',
22965             'Test2::Util' => '1.302209',
22966             'Test2::Util::ExternalMeta'=> '1.302209',
22967             'Test2::Util::Facets2Legacy'=> '1.302209',
22968             'Test2::Util::Grabber' => '1.302209',
22969             'Test2::Util::Guard' => '1.302209',
22970             'Test2::Util::HashBase' => '1.302209',
22971             'Test2::Util::Importer' => '1.302209',
22972             'Test2::Util::Ref' => '1.302209',
22973             'Test2::Util::Sig' => '1.302209',
22974             'Test2::Util::Stash' => '1.302209',
22975             'Test2::Util::Sub' => '1.302209',
22976             'Test2::Util::Table' => '1.302209',
22977             'Test2::Util::Table::Cell'=> '1.302209',
22978             'Test2::Util::Table::LineBreak'=> '1.302209',
22979             'Test2::Util::Term' => '1.302209',
22980             'Test2::Util::Times' => '1.302209',
22981             'Test2::Util::Trace' => '1.302209',
22982             'Test2::V0' => '1.302209',
22983             'Test2::Workflow' => '1.302209',
22984             'Test2::Workflow::BlockBase'=> '1.302209',
22985             'Test2::Workflow::Build'=> '1.302209',
22986             'Test2::Workflow::Runner'=> '1.302209',
22987             'Test2::Workflow::Task' => '1.302209',
22988             'Test2::Workflow::Task::Action'=> '1.302209',
22989             'Test2::Workflow::Task::Group'=> '1.302209',
22990             'Test::Builder' => '1.302209',
22991             'Test::Builder::Formatter'=> '1.302209',
22992             'Test::Builder::Module' => '1.302209',
22993             'Test::Builder::Tester' => '1.302209',
22994             'Test::Builder::Tester::Color'=> '1.302209',
22995             'Test::Builder::TodoDiag'=> '1.302209',
22996             'Test::More' => '1.302209',
22997             'Test::Simple' => '1.302209',
22998             'Test::Tester' => '1.302209',
22999             'Test::Tester::Capture' => '1.302209',
23000             'Test::Tester::CaptureRunner'=> '1.302209',
23001             'Test::Tester::Delegate'=> '1.302209',
23002             'Test::use::ok' => '1.302209',
23003             'Unicode::UCD' => '0.79',
23004             'feature' => '1.94',
23005             'ok' => '1.302209',
23006             'overload' => '1.40',
23007             'warnings' => '1.73',
23008             },
23009             removed => {
23010             }
23011             },
23012             5.041010 => {
23013             delta_from => 5.041009,
23014             changed => {
23015             'Archive::Tar' => '3.04',
23016             'Archive::Tar::Constant'=> '3.04',
23017             'Archive::Tar::File' => '3.04',
23018             'B::Op_private' => '5.041010',
23019             'Benchmark' => '1.27',
23020             'Config' => '5.04101',
23021             'ExtUtils::Command' => '7.72',
23022             'ExtUtils::Command::MM' => '7.72',
23023             'ExtUtils::Liblist' => '7.72',
23024             'ExtUtils::Liblist::Kid'=> '7.72',
23025             'ExtUtils::MM' => '7.72',
23026             'ExtUtils::MM_AIX' => '7.72',
23027             'ExtUtils::MM_Any' => '7.72',
23028             'ExtUtils::MM_BeOS' => '7.72',
23029             'ExtUtils::MM_Cygwin' => '7.72',
23030             'ExtUtils::MM_DOS' => '7.72',
23031             'ExtUtils::MM_Darwin' => '7.72',
23032             'ExtUtils::MM_MacOS' => '7.72',
23033             'ExtUtils::MM_NW5' => '7.72',
23034             'ExtUtils::MM_OS2' => '7.72',
23035             'ExtUtils::MM_OS390' => '7.72',
23036             'ExtUtils::MM_QNX' => '7.72',
23037             'ExtUtils::MM_UWIN' => '7.72',
23038             'ExtUtils::MM_Unix' => '7.72',
23039             'ExtUtils::MM_VMS' => '7.72',
23040             'ExtUtils::MM_VOS' => '7.72',
23041             'ExtUtils::MM_Win32' => '7.72',
23042             'ExtUtils::MM_Win95' => '7.72',
23043             'ExtUtils::MY' => '7.72',
23044             'ExtUtils::MakeMaker' => '7.72',
23045             'ExtUtils::MakeMaker::Config'=> '7.72',
23046             'ExtUtils::MakeMaker::Locale'=> '7.72',
23047             'ExtUtils::MakeMaker::version'=> '7.72',
23048             'ExtUtils::MakeMaker::version::regex'=> '7.72',
23049             'ExtUtils::Mkbootstrap' => '7.72',
23050             'ExtUtils::Mksymlists' => '7.72',
23051             'ExtUtils::testlib' => '7.72',
23052             'Math::BigFloat' => '2.004001',
23053             'Math::BigInt' => '2.004001',
23054             'Math::BigInt::Calc' => '2.004001',
23055             'Math::BigInt::FastCalc'=> '0.5019',
23056             'Math::BigInt::Lib' => '2.004001',
23057             'Math::BigRat' => '2.004001',
23058             'Module::CoreList' => '5.20250321',
23059             'Module::CoreList::Utils'=> '5.20250321',
23060             'Safe' => '2.47',
23061             'Search::Dict' => '1.08',
23062             'Storable' => '3.36',
23063             'VMS::Filespec' => '1.15',
23064             'XS::APItest' => '1.41',
23065             'builtin' => '0.018',
23066             'feature' => '1.95',
23067             'fields' => '2.27',
23068             'threads' => '2.43',
23069             'warnings' => '1.74',
23070             },
23071             removed => {
23072             }
23073             },
23074             5.038004 => {
23075             delta_from => 5.038003,
23076             changed => {
23077             'B::Op_private' => '5.038004',
23078             'Config' => '5.038004',
23079             'Module::CoreList' => '5.20250413_38',
23080             'Module::CoreList::Utils'=> '5.20250413_38',
23081             },
23082             removed => {
23083             }
23084             },
23085             5.040002 => {
23086             delta_from => 5.040001,
23087             changed => {
23088             'B::Op_private' => '5.040002',
23089             'Config' => '5.040002',
23090             'Module::CoreList' => '5.20250413_40',
23091             'Module::CoreList::Utils'=> '5.20250413_40',
23092             },
23093             removed => {
23094             }
23095             },
23096             5.041011 => {
23097             delta_from => 5.041010,
23098             changed => {
23099             'B::Op_private' => '5.041011',
23100             'Config' => '5.041011',
23101             'Cwd' => '3.94',
23102             'Data::Dumper' => '2.192',
23103             'ExtUtils::Command' => '7.74',
23104             'ExtUtils::Command::MM' => '7.74',
23105             'ExtUtils::Liblist' => '7.74',
23106             'ExtUtils::Liblist::Kid'=> '7.74',
23107             'ExtUtils::MM' => '7.74',
23108             'ExtUtils::MM_AIX' => '7.74',
23109             'ExtUtils::MM_Any' => '7.74',
23110             'ExtUtils::MM_BeOS' => '7.74',
23111             'ExtUtils::MM_Cygwin' => '7.74',
23112             'ExtUtils::MM_DOS' => '7.74',
23113             'ExtUtils::MM_Darwin' => '7.74',
23114             'ExtUtils::MM_MacOS' => '7.74',
23115             'ExtUtils::MM_NW5' => '7.74',
23116             'ExtUtils::MM_OS2' => '7.74',
23117             'ExtUtils::MM_OS390' => '7.74',
23118             'ExtUtils::MM_QNX' => '7.74',
23119             'ExtUtils::MM_UWIN' => '7.74',
23120             'ExtUtils::MM_Unix' => '7.74',
23121             'ExtUtils::MM_VMS' => '7.74',
23122             'ExtUtils::MM_VOS' => '7.74',
23123             'ExtUtils::MM_Win32' => '7.74',
23124             'ExtUtils::MM_Win95' => '7.74',
23125             'ExtUtils::MY' => '7.74',
23126             'ExtUtils::MakeMaker' => '7.74',
23127             'ExtUtils::MakeMaker::Config'=> '7.74',
23128             'ExtUtils::MakeMaker::Locale'=> '7.74',
23129             'ExtUtils::MakeMaker::version'=> '7.74',
23130             'ExtUtils::MakeMaker::version::regex'=> '7.74',
23131             'ExtUtils::Mkbootstrap' => '7.74',
23132             'ExtUtils::Mksymlists' => '7.74',
23133             'ExtUtils::testlib' => '7.74',
23134             'Fcntl' => '1.20',
23135             'File::Spec' => '3.94',
23136             'File::Spec::AmigaOS' => '3.94',
23137             'File::Spec::Cygwin' => '3.94',
23138             'File::Spec::Epoc' => '3.94',
23139             'File::Spec::Functions' => '3.94',
23140             'File::Spec::Mac' => '3.94',
23141             'File::Spec::OS2' => '3.94',
23142             'File::Spec::Unix' => '3.94',
23143             'File::Spec::VMS' => '3.94',
23144             'File::Spec::Win32' => '3.94',
23145             'Math::BigFloat' => '2.005002',
23146             'Math::BigInt' => '2.005002',
23147             'Math::BigInt::Calc' => '2.005002',
23148             'Math::BigInt::FastCalc'=> '0.5020',
23149             'Math::BigInt::Lib' => '2.005002',
23150             'Math::BigRat' => '2.005002',
23151             'Module::CoreList' => '5.20250420',
23152             'Module::CoreList::Utils'=> '5.20250420',
23153             'Pod::Usage' => '2.05',
23154             'Scalar::List::Utils' => '1.69',
23155             'Storable' => '3.37',
23156             'Test2' => '1.302210',
23157             'Test2::API' => '1.302210',
23158             'Test2::API::Breakage' => '1.302210',
23159             'Test2::API::Context' => '1.302210',
23160             'Test2::API::Instance' => '1.302210',
23161             'Test2::API::InterceptResult'=> '1.302210',
23162             'Test2::API::InterceptResult::Event'=> '1.302210',
23163             'Test2::API::InterceptResult::Facet'=> '1.302210',
23164             'Test2::API::InterceptResult::Hub'=> '1.302210',
23165             'Test2::API::InterceptResult::Squasher'=> '1.302210',
23166             'Test2::API::Stack' => '1.302210',
23167             'Test2::AsyncSubtest' => '1.302210',
23168             'Test2::AsyncSubtest::Event::Attach'=> '1.302210',
23169             'Test2::AsyncSubtest::Event::Detach'=> '1.302210',
23170             'Test2::AsyncSubtest::Formatter'=> '1.302210',
23171             'Test2::AsyncSubtest::Hub'=> '1.302210',
23172             'Test2::Bundle' => '1.302210',
23173             'Test2::Bundle::Extended'=> '1.302210',
23174             'Test2::Bundle::More' => '1.302210',
23175             'Test2::Bundle::Simple' => '1.302210',
23176             'Test2::Compare' => '1.302210',
23177             'Test2::Compare::Array' => '1.302210',
23178             'Test2::Compare::Bag' => '1.302210',
23179             'Test2::Compare::Base' => '1.302210',
23180             'Test2::Compare::Bool' => '1.302210',
23181             'Test2::Compare::Custom'=> '1.302210',
23182             'Test2::Compare::DeepRef'=> '1.302210',
23183             'Test2::Compare::Delta' => '1.302210',
23184             'Test2::Compare::Event' => '1.302210',
23185             'Test2::Compare::EventMeta'=> '1.302210',
23186             'Test2::Compare::Float' => '1.302210',
23187             'Test2::Compare::Hash' => '1.302210',
23188             'Test2::Compare::Isa' => '1.302210',
23189             'Test2::Compare::Meta' => '1.302210',
23190             'Test2::Compare::Negatable'=> '1.302210',
23191             'Test2::Compare::Number'=> '1.302210',
23192             'Test2::Compare::Object'=> '1.302210',
23193             'Test2::Compare::OrderedSubset'=> '1.302210',
23194             'Test2::Compare::Pattern'=> '1.302210',
23195             'Test2::Compare::Ref' => '1.302210',
23196             'Test2::Compare::Regex' => '1.302210',
23197             'Test2::Compare::Scalar'=> '1.302210',
23198             'Test2::Compare::Set' => '1.302210',
23199             'Test2::Compare::String'=> '1.302210',
23200             'Test2::Compare::Undef' => '1.302210',
23201             'Test2::Compare::Wildcard'=> '1.302210',
23202             'Test2::Env' => '1.302210',
23203             'Test2::Event' => '1.302210',
23204             'Test2::Event::Bail' => '1.302210',
23205             'Test2::Event::Diag' => '1.302210',
23206             'Test2::Event::Encoding'=> '1.302210',
23207             'Test2::Event::Exception'=> '1.302210',
23208             'Test2::Event::Fail' => '1.302210',
23209             'Test2::Event::Generic' => '1.302210',
23210             'Test2::Event::Note' => '1.302210',
23211             'Test2::Event::Ok' => '1.302210',
23212             'Test2::Event::Pass' => '1.302210',
23213             'Test2::Event::Plan' => '1.302210',
23214             'Test2::Event::Skip' => '1.302210',
23215             'Test2::Event::Subtest' => '1.302210',
23216             'Test2::Event::TAP::Version'=> '1.302210',
23217             'Test2::Event::V2' => '1.302210',
23218             'Test2::Event::Waiting' => '1.302210',
23219             'Test2::EventFacet' => '1.302210',
23220             'Test2::EventFacet::About'=> '1.302210',
23221             'Test2::EventFacet::Amnesty'=> '1.302210',
23222             'Test2::EventFacet::Assert'=> '1.302210',
23223             'Test2::EventFacet::Control'=> '1.302210',
23224             'Test2::EventFacet::Error'=> '1.302210',
23225             'Test2::EventFacet::Hub'=> '1.302210',
23226             'Test2::EventFacet::Info'=> '1.302210',
23227             'Test2::EventFacet::Info::Table'=> '1.302210',
23228             'Test2::EventFacet::Meta'=> '1.302210',
23229             'Test2::EventFacet::Parent'=> '1.302210',
23230             'Test2::EventFacet::Plan'=> '1.302210',
23231             'Test2::EventFacet::Render'=> '1.302210',
23232             'Test2::EventFacet::Trace'=> '1.302210',
23233             'Test2::Formatter' => '1.302210',
23234             'Test2::Formatter::TAP' => '1.302210',
23235             'Test2::Hub' => '1.302210',
23236             'Test2::Hub::Interceptor'=> '1.302210',
23237             'Test2::Hub::Interceptor::Terminator'=> '1.302210',
23238             'Test2::Hub::Subtest' => '1.302210',
23239             'Test2::IPC' => '1.302210',
23240             'Test2::IPC::Driver' => '1.302210',
23241             'Test2::IPC::Driver::Files'=> '1.302210',
23242             'Test2::Manual' => '1.302210',
23243             'Test2::Manual::Anatomy'=> '1.302210',
23244             'Test2::Manual::Anatomy::API'=> '1.302210',
23245             'Test2::Manual::Anatomy::Context'=> '1.302210',
23246             'Test2::Manual::Anatomy::EndToEnd'=> '1.302210',
23247             'Test2::Manual::Anatomy::Event'=> '1.302210',
23248             'Test2::Manual::Anatomy::Hubs'=> '1.302210',
23249             'Test2::Manual::Anatomy::IPC'=> '1.302210',
23250             'Test2::Manual::Anatomy::Utilities'=> '1.302210',
23251             'Test2::Manual::Concurrency'=> '1.302210',
23252             'Test2::Manual::Contributing'=> '1.302210',
23253             'Test2::Manual::Testing'=> '1.302210',
23254             'Test2::Manual::Testing::Introduction'=> '1.302210',
23255             'Test2::Manual::Testing::Migrating'=> '1.302210',
23256             'Test2::Manual::Testing::Planning'=> '1.302210',
23257             'Test2::Manual::Testing::Todo'=> '1.302210',
23258             'Test2::Manual::Tooling'=> '1.302210',
23259             'Test2::Manual::Tooling::FirstTool'=> '1.302210',
23260             'Test2::Manual::Tooling::Formatter'=> '1.302210',
23261             'Test2::Manual::Tooling::Nesting'=> '1.302210',
23262             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302210',
23263             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302210',
23264             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302210',
23265             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302210',
23266             'Test2::Manual::Tooling::Subtest'=> '1.302210',
23267             'Test2::Manual::Tooling::TestBuilder'=> '1.302210',
23268             'Test2::Manual::Tooling::Testing'=> '1.302210',
23269             'Test2::Mock' => '1.302210',
23270             'Test2::Plugin' => '1.302210',
23271             'Test2::Plugin::BailOnFail'=> '1.302210',
23272             'Test2::Plugin::DieOnFail'=> '1.302210',
23273             'Test2::Plugin::ExitSummary'=> '1.302210',
23274             'Test2::Plugin::SRand' => '1.302210',
23275             'Test2::Plugin::Times' => '1.302210',
23276             'Test2::Plugin::UTF8' => '1.302210',
23277             'Test2::Require' => '1.302210',
23278             'Test2::Require::AuthorTesting'=> '1.302210',
23279             'Test2::Require::AutomatedTesting'=> '1.302210',
23280             'Test2::Require::EnvVar'=> '1.302210',
23281             'Test2::Require::ExtendedTesting'=> '1.302210',
23282             'Test2::Require::Fork' => '1.302210',
23283             'Test2::Require::Module'=> '1.302210',
23284             'Test2::Require::NonInteractiveTesting'=> '1.302210',
23285             'Test2::Require::Perl' => '1.302210',
23286             'Test2::Require::RealFork'=> '1.302210',
23287             'Test2::Require::ReleaseTesting'=> '1.302210',
23288             'Test2::Require::Threads'=> '1.302210',
23289             'Test2::Suite' => '1.302210',
23290             'Test2::Todo' => '1.302210',
23291             'Test2::Tools' => '1.302210',
23292             'Test2::Tools::AsyncSubtest'=> '1.302210',
23293             'Test2::Tools::Basic' => '1.302210',
23294             'Test2::Tools::Class' => '1.302210',
23295             'Test2::Tools::ClassicCompare'=> '1.302210',
23296             'Test2::Tools::Compare' => '1.302210',
23297             'Test2::Tools::Defer' => '1.302210',
23298             'Test2::Tools::Encoding'=> '1.302210',
23299             'Test2::Tools::Event' => '1.302210',
23300             'Test2::Tools::Exception'=> '1.302210',
23301             'Test2::Tools::Exports' => '1.302210',
23302             'Test2::Tools::GenTemp' => '1.302210',
23303             'Test2::Tools::Grab' => '1.302210',
23304             'Test2::Tools::Mock' => '1.302210',
23305             'Test2::Tools::Ref' => '1.302210',
23306             'Test2::Tools::Refcount'=> '1.302210',
23307             'Test2::Tools::Spec' => '1.302210',
23308             'Test2::Tools::Subtest' => '1.302210',
23309             'Test2::Tools::Target' => '1.302210',
23310             'Test2::Tools::Tester' => '1.302210',
23311             'Test2::Tools::Tiny' => '1.302210',
23312             'Test2::Tools::Warnings'=> '1.302210',
23313             'Test2::Util' => '1.302210',
23314             'Test2::Util::ExternalMeta'=> '1.302210',
23315             'Test2::Util::Facets2Legacy'=> '1.302210',
23316             'Test2::Util::Grabber' => '1.302210',
23317             'Test2::Util::Guard' => '1.302210',
23318             'Test2::Util::HashBase' => '1.302210',
23319             'Test2::Util::Importer' => '1.302210',
23320             'Test2::Util::Ref' => '1.302210',
23321             'Test2::Util::Sig' => '1.302210',
23322             'Test2::Util::Stash' => '1.302210',
23323             'Test2::Util::Sub' => '1.302210',
23324             'Test2::Util::Table' => '1.302210',
23325             'Test2::Util::Table::Cell'=> '1.302210',
23326             'Test2::Util::Table::LineBreak'=> '1.302210',
23327             'Test2::Util::Term' => '1.302210',
23328             'Test2::Util::Times' => '1.302210',
23329             'Test2::Util::Trace' => '1.302210',
23330             'Test2::V0' => '1.302210',
23331             'Test2::Workflow' => '1.302210',
23332             'Test2::Workflow::BlockBase'=> '1.302210',
23333             'Test2::Workflow::Build'=> '1.302210',
23334             'Test2::Workflow::Runner'=> '1.302210',
23335             'Test2::Workflow::Task' => '1.302210',
23336             'Test2::Workflow::Task::Action'=> '1.302210',
23337             'Test2::Workflow::Task::Group'=> '1.302210',
23338             'Test::Builder' => '1.302210',
23339             'Test::Builder::Formatter'=> '1.302210',
23340             'Test::Builder::Module' => '1.302210',
23341             'Test::Builder::Tester' => '1.302210',
23342             'Test::Builder::Tester::Color'=> '1.302210',
23343             'Test::Builder::TodoDiag'=> '1.302210',
23344             'Test::More' => '1.302210',
23345             'Test::Simple' => '1.302210',
23346             'Test::Tester' => '1.302210',
23347             'Test::Tester::Capture' => '1.302210',
23348             'Test::Tester::CaptureRunner'=> '1.302210',
23349             'Test::Tester::Delegate'=> '1.302210',
23350             'Test::use::ok' => '1.302210',
23351             'Time::HiRes' => '1.9778',
23352             'Time::Piece' => '1.36',
23353             'Time::Seconds' => '1.36',
23354             'Unicode' => '16.0.0',
23355             'Unicode::UCD' => '0.80',
23356             'XS::APItest' => '1.42',
23357             'ok' => '1.302210',
23358             },
23359             removed => {
23360             }
23361             },
23362             5.041012 => {
23363             delta_from => 5.041011,
23364             changed => {
23365             'B::Op_private' => '5.041012',
23366             'Config' => '5.041012',
23367             },
23368             removed => {
23369             }
23370             },
23371             5.041013 => {
23372             delta_from => 5.041012,
23373             changed => {
23374             'B::Deparse' => '1.85',
23375             'B::Op_private' => '5.041013',
23376             'Config' => '5.041013',
23377             'ExtUtils::CBuilder' => '0.280241',
23378             'ExtUtils::CBuilder::Base'=> '0.280241',
23379             'ExtUtils::CBuilder::Platform::Unix'=> '0.280241',
23380             'ExtUtils::CBuilder::Platform::VMS'=> '0.280241',
23381             'ExtUtils::CBuilder::Platform::Windows'=> '0.280241',
23382             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280241',
23383             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280241',
23384             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280241',
23385             'ExtUtils::CBuilder::Platform::aix'=> '0.280241',
23386             'ExtUtils::CBuilder::Platform::android'=> '0.280241',
23387             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280241',
23388             'ExtUtils::CBuilder::Platform::darwin'=> '0.280241',
23389             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280241',
23390             'ExtUtils::CBuilder::Platform::os2'=> '0.280241',
23391             'ExtUtils::Command' => '7.76',
23392             'ExtUtils::Command::MM' => '7.76',
23393             'ExtUtils::Liblist' => '7.76',
23394             'ExtUtils::Liblist::Kid'=> '7.76',
23395             'ExtUtils::MM' => '7.76',
23396             'ExtUtils::MM_AIX' => '7.76',
23397             'ExtUtils::MM_Any' => '7.76',
23398             'ExtUtils::MM_BeOS' => '7.76',
23399             'ExtUtils::MM_Cygwin' => '7.76',
23400             'ExtUtils::MM_DOS' => '7.76',
23401             'ExtUtils::MM_Darwin' => '7.76',
23402             'ExtUtils::MM_MacOS' => '7.76',
23403             'ExtUtils::MM_NW5' => '7.76',
23404             'ExtUtils::MM_OS2' => '7.76',
23405             'ExtUtils::MM_OS390' => '7.76',
23406             'ExtUtils::MM_QNX' => '7.76',
23407             'ExtUtils::MM_UWIN' => '7.76',
23408             'ExtUtils::MM_Unix' => '7.76',
23409             'ExtUtils::MM_VMS' => '7.76',
23410             'ExtUtils::MM_VOS' => '7.76',
23411             'ExtUtils::MM_Win32' => '7.76',
23412             'ExtUtils::MM_Win95' => '7.76',
23413             'ExtUtils::MY' => '7.76',
23414             'ExtUtils::MakeMaker' => '7.76',
23415             'ExtUtils::MakeMaker::Config'=> '7.76',
23416             'ExtUtils::MakeMaker::Locale'=> '7.76',
23417             'ExtUtils::MakeMaker::version'=> '7.76',
23418             'ExtUtils::MakeMaker::version::regex'=> '7.76',
23419             'ExtUtils::Mkbootstrap' => '7.76',
23420             'ExtUtils::Mksymlists' => '7.76',
23421             'ExtUtils::testlib' => '7.76',
23422             'Module::CoreList' => '5.20250528',
23423             'Module::CoreList::Utils'=> '5.20250528',
23424             'SelfLoader' => '1.28',
23425             'Thread' => '3.06',
23426             'Tie::File' => '1.10',
23427             'Unicode::UCD' => '0.81',
23428             'builtin' => '0.019',
23429             'experimental' => '0.035',
23430             'feature' => '1.96',
23431             're' => '0.48',
23432             'stable' => '0.035',
23433             'strict' => '1.14',
23434             },
23435             removed => {
23436             }
23437             },
23438             5.042000 => {
23439             delta_from => 5.041013,
23440             changed => {
23441             'B::Op_private' => '5.042000',
23442             'Config' => '5.042',
23443             'ExtUtils::CBuilder' => '0.280242',
23444             'ExtUtils::CBuilder::Base'=> '0.280242',
23445             'ExtUtils::CBuilder::Platform::Unix'=> '0.280242',
23446             'ExtUtils::CBuilder::Platform::VMS'=> '0.280242',
23447             'ExtUtils::CBuilder::Platform::Windows'=> '0.280242',
23448             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280242',
23449             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280242',
23450             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280242',
23451             'ExtUtils::CBuilder::Platform::aix'=> '0.280242',
23452             'ExtUtils::CBuilder::Platform::android'=> '0.280242',
23453             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280242',
23454             'ExtUtils::CBuilder::Platform::darwin'=> '0.280242',
23455             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280242',
23456             'ExtUtils::CBuilder::Platform::os2'=> '0.280242',
23457             'Module::CoreList' => '5.20250702',
23458             'Module::CoreList::Utils'=> '5.20250702',
23459             'XS::APItest' => '1.43',
23460             'feature' => '1.97',
23461             'perlfaq' => '5.20250619',
23462             },
23463             removed => {
23464             }
23465             },
23466              
23467             5.043000 => {
23468             delta_from => 5.042000,
23469             changed => {
23470             'B::Op_private' => '5.043000',
23471             'Config' => '5.043',
23472             'Math::BigFloat' => '2.005003',
23473             'Math::BigInt' => '2.005003',
23474             'Math::BigInt::Calc' => '2.005003',
23475             'Math::BigInt::Lib' => '2.005003',
23476             'Math::BigRat' => '2.005003',
23477             'Module::CoreList' => '5.20250703',
23478             'Module::CoreList::Utils'=> '5.20250703',
23479             'feature' => '1.98',
23480             },
23481             removed => {
23482             }
23483             },
23484             5.043001 => {
23485             delta_from => 5.043,
23486             changed => {
23487             'App::Prove' => '3.52',
23488             'App::Prove::State' => '3.52',
23489             'App::Prove::State::Result'=> '3.52',
23490             'App::Prove::State::Result::Test'=> '3.52',
23491             'B::Op_private' => '5.043001',
23492             'Config' => '5.043001',
23493             'ExtUtils::ParseXS' => '3.58',
23494             'ExtUtils::ParseXS::Constants'=> '3.58',
23495             'ExtUtils::ParseXS::CountLines'=> '3.58',
23496             'ExtUtils::ParseXS::Eval'=> '3.58',
23497             'ExtUtils::ParseXS::Node'=> '3.58',
23498             'ExtUtils::ParseXS::Utilities'=> '3.58',
23499             'ExtUtils::Typemaps' => '3.58',
23500             'ExtUtils::Typemaps::Cmd'=> '3.58',
23501             'ExtUtils::Typemaps::InputMap'=> '3.58',
23502             'ExtUtils::Typemaps::OutputMap'=> '3.58',
23503             'ExtUtils::Typemaps::Type'=> '3.58',
23504             'File::Fetch' => '1.08',
23505             'Module::CoreList' => '5.20250720',
23506             'Module::CoreList::Utils'=> '5.20250720',
23507             'PerlIO::via' => '0.20',
23508             'Pod::Simple' => '3.47',
23509             'Pod::Simple::BlackBox' => '3.47',
23510             'Pod::Simple::Checker' => '3.47',
23511             'Pod::Simple::Debug' => '3.47',
23512             'Pod::Simple::DumpAsText'=> '3.47',
23513             'Pod::Simple::DumpAsXML'=> '3.47',
23514             'Pod::Simple::HTML' => '3.47',
23515             'Pod::Simple::HTMLBatch'=> '3.47',
23516             'Pod::Simple::LinkSection'=> '3.47',
23517             'Pod::Simple::Methody' => '3.47',
23518             'Pod::Simple::Progress' => '3.47',
23519             'Pod::Simple::PullParser'=> '3.47',
23520             'Pod::Simple::PullParserEndToken'=> '3.47',
23521             'Pod::Simple::PullParserStartToken'=> '3.47',
23522             'Pod::Simple::PullParserTextToken'=> '3.47',
23523             'Pod::Simple::PullParserToken'=> '3.47',
23524             'Pod::Simple::RTF' => '3.47',
23525             'Pod::Simple::Search' => '3.47',
23526             'Pod::Simple::SimpleTree'=> '3.47',
23527             'Pod::Simple::Text' => '3.47',
23528             'Pod::Simple::TextContent'=> '3.47',
23529             'Pod::Simple::TiedOutFH'=> '3.47',
23530             'Pod::Simple::Transcode'=> '3.47',
23531             'Pod::Simple::TranscodeDumb'=> '3.47',
23532             'Pod::Simple::TranscodeSmart'=> '3.47',
23533             'Pod::Simple::XHTML' => '3.47',
23534             'Pod::Simple::XMLOutStream'=> '3.47',
23535             'Socket' => '2.040',
23536             'TAP::Base' => '3.52',
23537             'TAP::Formatter::Base' => '3.52',
23538             'TAP::Formatter::Color' => '3.52',
23539             'TAP::Formatter::Console'=> '3.52',
23540             'TAP::Formatter::Console::ParallelSession'=> '3.52',
23541             'TAP::Formatter::Console::Session'=> '3.52',
23542             'TAP::Formatter::File' => '3.52',
23543             'TAP::Formatter::File::Session'=> '3.52',
23544             'TAP::Formatter::Session'=> '3.52',
23545             'TAP::Harness' => '3.52',
23546             'TAP::Harness::Env' => '3.52',
23547             'TAP::Object' => '3.52',
23548             'TAP::Parser' => '3.52',
23549             'TAP::Parser::Aggregator'=> '3.52',
23550             'TAP::Parser::Grammar' => '3.52',
23551             'TAP::Parser::Iterator' => '3.52',
23552             'TAP::Parser::Iterator::Array'=> '3.52',
23553             'TAP::Parser::Iterator::Process'=> '3.52',
23554             'TAP::Parser::Iterator::Stream'=> '3.52',
23555             'TAP::Parser::IteratorFactory'=> '3.52',
23556             'TAP::Parser::Multiplexer'=> '3.52',
23557             'TAP::Parser::Result' => '3.52',
23558             'TAP::Parser::Result::Bailout'=> '3.52',
23559             'TAP::Parser::Result::Comment'=> '3.52',
23560             'TAP::Parser::Result::Plan'=> '3.52',
23561             'TAP::Parser::Result::Pragma'=> '3.52',
23562             'TAP::Parser::Result::Test'=> '3.52',
23563             'TAP::Parser::Result::Unknown'=> '3.52',
23564             'TAP::Parser::Result::Version'=> '3.52',
23565             'TAP::Parser::Result::YAML'=> '3.52',
23566             'TAP::Parser::ResultFactory'=> '3.52',
23567             'TAP::Parser::Scheduler'=> '3.52',
23568             'TAP::Parser::Scheduler::Job'=> '3.52',
23569             'TAP::Parser::Scheduler::Spinner'=> '3.52',
23570             'TAP::Parser::Source' => '3.52',
23571             'TAP::Parser::SourceHandler'=> '3.52',
23572             'TAP::Parser::SourceHandler::Executable'=> '3.52',
23573             'TAP::Parser::SourceHandler::File'=> '3.52',
23574             'TAP::Parser::SourceHandler::Handle'=> '3.52',
23575             'TAP::Parser::SourceHandler::Perl'=> '3.52',
23576             'TAP::Parser::SourceHandler::RawTAP'=> '3.52',
23577             'TAP::Parser::YAMLish::Reader'=> '3.52',
23578             'TAP::Parser::YAMLish::Writer'=> '3.52',
23579             'Test2' => '1.302214',
23580             'Test2::API' => '1.302214',
23581             'Test2::API::Breakage' => '1.302214',
23582             'Test2::API::Context' => '1.302214',
23583             'Test2::API::Instance' => '1.302214',
23584             'Test2::API::InterceptResult'=> '1.302214',
23585             'Test2::API::InterceptResult::Event'=> '1.302214',
23586             'Test2::API::InterceptResult::Facet'=> '1.302214',
23587             'Test2::API::InterceptResult::Hub'=> '1.302214',
23588             'Test2::API::InterceptResult::Squasher'=> '1.302214',
23589             'Test2::API::Stack' => '1.302214',
23590             'Test2::AsyncSubtest' => '1.302214',
23591             'Test2::AsyncSubtest::Event::Attach'=> '1.302214',
23592             'Test2::AsyncSubtest::Event::Detach'=> '1.302214',
23593             'Test2::AsyncSubtest::Formatter'=> '1.302214',
23594             'Test2::AsyncSubtest::Hub'=> '1.302214',
23595             'Test2::Bundle' => '1.302214',
23596             'Test2::Bundle::Extended'=> '1.302214',
23597             'Test2::Bundle::More' => '1.302214',
23598             'Test2::Bundle::Simple' => '1.302214',
23599             'Test2::Compare' => '1.302214',
23600             'Test2::Compare::Array' => '1.302214',
23601             'Test2::Compare::Bag' => '1.302214',
23602             'Test2::Compare::Base' => '1.302214',
23603             'Test2::Compare::Bool' => '1.302214',
23604             'Test2::Compare::Custom'=> '1.302214',
23605             'Test2::Compare::DeepRef'=> '1.302214',
23606             'Test2::Compare::Delta' => '1.302214',
23607             'Test2::Compare::Event' => '1.302214',
23608             'Test2::Compare::EventMeta'=> '1.302214',
23609             'Test2::Compare::Float' => '1.302214',
23610             'Test2::Compare::Hash' => '1.302214',
23611             'Test2::Compare::Isa' => '1.302214',
23612             'Test2::Compare::Meta' => '1.302214',
23613             'Test2::Compare::Negatable'=> '1.302214',
23614             'Test2::Compare::Number'=> '1.302214',
23615             'Test2::Compare::Object'=> '1.302214',
23616             'Test2::Compare::OrderedSubset'=> '1.302214',
23617             'Test2::Compare::Pattern'=> '1.302214',
23618             'Test2::Compare::Ref' => '1.302214',
23619             'Test2::Compare::Regex' => '1.302214',
23620             'Test2::Compare::Scalar'=> '1.302214',
23621             'Test2::Compare::Set' => '1.302214',
23622             'Test2::Compare::String'=> '1.302214',
23623             'Test2::Compare::Undef' => '1.302214',
23624             'Test2::Compare::Wildcard'=> '1.302214',
23625             'Test2::Env' => '1.302214',
23626             'Test2::Event' => '1.302214',
23627             'Test2::Event::Bail' => '1.302214',
23628             'Test2::Event::Diag' => '1.302214',
23629             'Test2::Event::Encoding'=> '1.302214',
23630             'Test2::Event::Exception'=> '1.302214',
23631             'Test2::Event::Fail' => '1.302214',
23632             'Test2::Event::Generic' => '1.302214',
23633             'Test2::Event::Note' => '1.302214',
23634             'Test2::Event::Ok' => '1.302214',
23635             'Test2::Event::Pass' => '1.302214',
23636             'Test2::Event::Plan' => '1.302214',
23637             'Test2::Event::Skip' => '1.302214',
23638             'Test2::Event::Subtest' => '1.302214',
23639             'Test2::Event::TAP::Version'=> '1.302214',
23640             'Test2::Event::V2' => '1.302214',
23641             'Test2::Event::Waiting' => '1.302214',
23642             'Test2::EventFacet' => '1.302214',
23643             'Test2::EventFacet::About'=> '1.302214',
23644             'Test2::EventFacet::Amnesty'=> '1.302214',
23645             'Test2::EventFacet::Assert'=> '1.302214',
23646             'Test2::EventFacet::Control'=> '1.302214',
23647             'Test2::EventFacet::Error'=> '1.302214',
23648             'Test2::EventFacet::Hub'=> '1.302214',
23649             'Test2::EventFacet::Info'=> '1.302214',
23650             'Test2::EventFacet::Info::Table'=> '1.302214',
23651             'Test2::EventFacet::Meta'=> '1.302214',
23652             'Test2::EventFacet::Parent'=> '1.302214',
23653             'Test2::EventFacet::Plan'=> '1.302214',
23654             'Test2::EventFacet::Render'=> '1.302214',
23655             'Test2::EventFacet::Trace'=> '1.302214',
23656             'Test2::Formatter' => '1.302214',
23657             'Test2::Formatter::TAP' => '1.302214',
23658             'Test2::Hub' => '1.302214',
23659             'Test2::Hub::Interceptor'=> '1.302214',
23660             'Test2::Hub::Interceptor::Terminator'=> '1.302214',
23661             'Test2::Hub::Subtest' => '1.302214',
23662             'Test2::IPC' => '1.302214',
23663             'Test2::IPC::Driver' => '1.302214',
23664             'Test2::IPC::Driver::Files'=> '1.302214',
23665             'Test2::Manual' => '1.302214',
23666             'Test2::Manual::Anatomy'=> '1.302214',
23667             'Test2::Manual::Anatomy::API'=> '1.302214',
23668             'Test2::Manual::Anatomy::Context'=> '1.302214',
23669             'Test2::Manual::Anatomy::EndToEnd'=> '1.302214',
23670             'Test2::Manual::Anatomy::Event'=> '1.302214',
23671             'Test2::Manual::Anatomy::Hubs'=> '1.302214',
23672             'Test2::Manual::Anatomy::IPC'=> '1.302214',
23673             'Test2::Manual::Anatomy::Utilities'=> '1.302214',
23674             'Test2::Manual::Concurrency'=> '1.302214',
23675             'Test2::Manual::Contributing'=> '1.302214',
23676             'Test2::Manual::Testing'=> '1.302214',
23677             'Test2::Manual::Testing::Introduction'=> '1.302214',
23678             'Test2::Manual::Testing::Migrating'=> '1.302214',
23679             'Test2::Manual::Testing::Planning'=> '1.302214',
23680             'Test2::Manual::Testing::Todo'=> '1.302214',
23681             'Test2::Manual::Tooling'=> '1.302214',
23682             'Test2::Manual::Tooling::FirstTool'=> '1.302214',
23683             'Test2::Manual::Tooling::Formatter'=> '1.302214',
23684             'Test2::Manual::Tooling::Nesting'=> '1.302214',
23685             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302214',
23686             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302214',
23687             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302214',
23688             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302214',
23689             'Test2::Manual::Tooling::Subtest'=> '1.302214',
23690             'Test2::Manual::Tooling::TestBuilder'=> '1.302214',
23691             'Test2::Manual::Tooling::Testing'=> '1.302214',
23692             'Test2::Mock' => '1.302214',
23693             'Test2::Plugin' => '1.302214',
23694             'Test2::Plugin::BailOnFail'=> '1.302214',
23695             'Test2::Plugin::DieOnFail'=> '1.302214',
23696             'Test2::Plugin::ExitSummary'=> '1.302214',
23697             'Test2::Plugin::SRand' => '1.302214',
23698             'Test2::Plugin::Times' => '1.302214',
23699             'Test2::Plugin::UTF8' => '1.302214',
23700             'Test2::Require' => '1.302214',
23701             'Test2::Require::AuthorTesting'=> '1.302214',
23702             'Test2::Require::AutomatedTesting'=> '1.302214',
23703             'Test2::Require::EnvVar'=> '1.302214',
23704             'Test2::Require::ExtendedTesting'=> '1.302214',
23705             'Test2::Require::Fork' => '1.302214',
23706             'Test2::Require::Module'=> '1.302214',
23707             'Test2::Require::NonInteractiveTesting'=> '1.302214',
23708             'Test2::Require::Perl' => '1.302214',
23709             'Test2::Require::RealFork'=> '1.302214',
23710             'Test2::Require::ReleaseTesting'=> '1.302214',
23711             'Test2::Require::Threads'=> '1.302214',
23712             'Test2::Suite' => '1.302214',
23713             'Test2::Todo' => '1.302214',
23714             'Test2::Tools' => '1.302214',
23715             'Test2::Tools::AsyncSubtest'=> '1.302214',
23716             'Test2::Tools::Basic' => '1.302214',
23717             'Test2::Tools::Class' => '1.302214',
23718             'Test2::Tools::ClassicCompare'=> '1.302214',
23719             'Test2::Tools::Compare' => '1.302214',
23720             'Test2::Tools::Defer' => '1.302214',
23721             'Test2::Tools::Encoding'=> '1.302214',
23722             'Test2::Tools::Event' => '1.302214',
23723             'Test2::Tools::Exception'=> '1.302214',
23724             'Test2::Tools::Exports' => '1.302214',
23725             'Test2::Tools::GenTemp' => '1.302214',
23726             'Test2::Tools::Grab' => '1.302214',
23727             'Test2::Tools::Mock' => '1.302214',
23728             'Test2::Tools::Ref' => '1.302214',
23729             'Test2::Tools::Refcount'=> '1.302214',
23730             'Test2::Tools::Spec' => '1.302214',
23731             'Test2::Tools::Subtest' => '1.302214',
23732             'Test2::Tools::Target' => '1.302214',
23733             'Test2::Tools::Tester' => '1.302214',
23734             'Test2::Tools::Tiny' => '1.302214',
23735             'Test2::Tools::Warnings'=> '1.302214',
23736             'Test2::Util' => '1.302214',
23737             'Test2::Util::ExternalMeta'=> '1.302214',
23738             'Test2::Util::Facets2Legacy'=> '1.302214',
23739             'Test2::Util::Grabber' => '1.302214',
23740             'Test2::Util::Guard' => '1.302214',
23741             'Test2::Util::HashBase' => '1.302214',
23742             'Test2::Util::Importer' => '1.302214',
23743             'Test2::Util::Ref' => '1.302214',
23744             'Test2::Util::Sig' => '1.302214',
23745             'Test2::Util::Stash' => '1.302214',
23746             'Test2::Util::Sub' => '1.302214',
23747             'Test2::Util::Table' => '1.302214',
23748             'Test2::Util::Table::Cell'=> '1.302214',
23749             'Test2::Util::Table::LineBreak'=> '1.302214',
23750             'Test2::Util::Term' => '1.302214',
23751             'Test2::Util::Times' => '1.302214',
23752             'Test2::Util::Trace' => '1.302214',
23753             'Test2::V0' => '1.302214',
23754             'Test2::Workflow' => '1.302214',
23755             'Test2::Workflow::BlockBase'=> '1.302214',
23756             'Test2::Workflow::Build'=> '1.302214',
23757             'Test2::Workflow::Runner'=> '1.302214',
23758             'Test2::Workflow::Task' => '1.302214',
23759             'Test2::Workflow::Task::Action'=> '1.302214',
23760             'Test2::Workflow::Task::Group'=> '1.302214',
23761             'Test::Builder' => '1.302214',
23762             'Test::Builder::Formatter'=> '1.302214',
23763             'Test::Builder::Module' => '1.302214',
23764             'Test::Builder::Tester' => '1.302214',
23765             'Test::Builder::Tester::Color'=> '1.302214',
23766             'Test::Builder::TodoDiag'=> '1.302214',
23767             'Test::Harness' => '3.52',
23768             'Test::More' => '1.302214',
23769             'Test::Simple' => '1.302214',
23770             'Test::Tester' => '1.302214',
23771             'Test::Tester::Capture' => '1.302214',
23772             'Test::Tester::CaptureRunner'=> '1.302214',
23773             'Test::Tester::Delegate'=> '1.302214',
23774             'Test::use::ok' => '1.302214',
23775             'Unicode::UCD' => '0.82',
23776             'experimental' => '0.036',
23777             'ok' => '1.302214',
23778             'stable' => '0.036',
23779             },
23780             removed => {
23781             }
23782             },
23783             5.038005 => {
23784             delta_from => 5.038004,
23785             changed => {
23786             'B::Op_private' => '5.038005',
23787             'Config' => '5.038005',
23788             'Module::CoreList' => '5.20250803_38',
23789             'Module::CoreList::Utils'=> '5.20250803_38',
23790             },
23791             removed => {
23792             }
23793             },
23794             5.040003 => {
23795             delta_from => 5.040002,
23796             changed => {
23797             'B::Op_private' => '5.040003',
23798             'Config' => '5.040003',
23799             'Module::CoreList' => '5.20250803_40',
23800             'Module::CoreList::Utils'=> '5.20250803_40',
23801             },
23802             removed => {
23803             }
23804             },
23805             5.043002 => {
23806             delta_from => 5.043001,
23807             changed => {
23808             'B::Deparse' => '1.86',
23809             'B::Op_private' => '5.043002',
23810             'Config' => '5.043002',
23811             'ExtUtils::Miniperl' => '1.15',
23812             'ExtUtils::ParseXS' => '3.59',
23813             'ExtUtils::ParseXS::Constants'=> '3.59',
23814             'ExtUtils::ParseXS::CountLines'=> '3.59',
23815             'ExtUtils::ParseXS::Eval'=> '3.59',
23816             'ExtUtils::ParseXS::Node'=> '3.59',
23817             'ExtUtils::ParseXS::Utilities'=> '3.59',
23818             'ExtUtils::Typemaps' => '3.59',
23819             'ExtUtils::Typemaps::Cmd'=> '3.59',
23820             'ExtUtils::Typemaps::InputMap'=> '3.59',
23821             'ExtUtils::Typemaps::OutputMap'=> '3.59',
23822             'ExtUtils::Typemaps::Type'=> '3.59',
23823             'File::Copy' => '2.42',
23824             'File::stat' => '1.15',
23825             'Filter::Simple' => '0.97',
23826             'List::Util' => '1.70',
23827             'List::Util::XS' => '1.70',
23828             'Module::CoreList' => '5.20250820',
23829             'Module::CoreList::Utils'=> '5.20250820',
23830             'POSIX' => '2.24',
23831             'Scalar::List::Utils' => '1.70',
23832             'Scalar::Util' => '1.70',
23833             'Storable' => '3.38',
23834             'Sub::Util' => '1.70',
23835             'Text::Balanced' => '2.07',
23836             'Unicode::UCD' => '0.83',
23837             'XS::APItest' => '1.44',
23838             'feature' => '1.99',
23839             'mro' => '1.30',
23840             'threads::shared' => '1.71',
23841             },
23842             removed => {
23843             }
23844             },
23845             5.043003 => {
23846             delta_from => 5.043002,
23847             changed => {
23848             'B' => '1.90',
23849             'B::Concise' => '1.009',
23850             'B::Deparse' => '1.87',
23851             'B::Op_private' => '5.043003',
23852             'Config' => '5.043003',
23853             'ExtUtils::ParseXS' => '3.60',
23854             'ExtUtils::ParseXS::Constants'=> '3.60',
23855             'ExtUtils::ParseXS::CountLines'=> '3.60',
23856             'ExtUtils::ParseXS::Eval'=> '3.60',
23857             'ExtUtils::ParseXS::Node'=> '3.60',
23858             'ExtUtils::ParseXS::Utilities'=> '3.60',
23859             'ExtUtils::Typemaps' => '3.60',
23860             'ExtUtils::Typemaps::Cmd'=> '3.60',
23861             'ExtUtils::Typemaps::InputMap'=> '3.60',
23862             'ExtUtils::Typemaps::OutputMap'=> '3.60',
23863             'ExtUtils::Typemaps::Type'=> '3.60',
23864             'File::Copy' => '2.43',
23865             'File::Temp' => '0.2312',
23866             'Filter::Util::Call' => '1.65',
23867             'Module::CoreList' => '5.20250923',
23868             'Module::CoreList::Utils'=> '5.20250923',
23869             'Net::Ping' => '2.77',
23870             'Opcode' => '1.70',
23871             'PerlIO::via' => '0.21',
23872             'Storable' => '3.39',
23873             'Term::Table' => '0.025',
23874             'Term::Table::Cell' => '0.025',
23875             'Term::Table::CellStack'=> '0.025',
23876             'Term::Table::HashBase' => '0.025',
23877             'Term::Table::LineBreak'=> '0.025',
23878             'Term::Table::Spacer' => '0.025',
23879             'Term::Table::Util' => '0.025',
23880             'Time::HiRes' => '1.9779',
23881             'Time::Piece' => '1.3701',
23882             'Time::Seconds' => '1.3701',
23883             'Unicode' => '17.0.0',
23884             'XS::APItest' => '1.46',
23885             'overloading' => '0.03',
23886             'utf8' => '1.29',
23887             },
23888             removed => {
23889             }
23890             },
23891             5.043004 => {
23892             delta_from => 5.043003,
23893             changed => {
23894             'B::Deparse' => '1.88',
23895             'B::Op_private' => '5.043004',
23896             'Config' => '5.043004',
23897             'Module::CoreList' => '5.20251022',
23898             'Module::CoreList::Utils'=> '5.20251022',
23899             'SelectSaver' => '1.03',
23900             'Time::Piece' => '1.38',
23901             'Time::Seconds' => '1.38',
23902             'XS::APItest' => '1.47',
23903             'attributes' => '0.37',
23904             'feature' => '2.00',
23905             },
23906             removed => {
23907             }
23908             },
23909             5.043005 => {
23910             delta_from => 5.043004,
23911             changed => {
23912             'B::Op_private' => '5.043005',
23913             'Compress::Raw::Bzip2' => '2.214',
23914             'Compress::Raw::Zlib' => '2.214',
23915             'Compress::Zlib' => '2.214',
23916             'Config' => '5.043005',
23917             'Getopt::Std' => '1.15',
23918             'IO::Compress' => '2.214',
23919             'IO::Compress::Adapter::Bzip2'=> '2.214',
23920             'IO::Compress::Adapter::Deflate'=> '2.214',
23921             'IO::Compress::Adapter::Identity'=> '2.214',
23922             'IO::Compress::Base' => '2.214',
23923             'IO::Compress::Base::Common'=> '2.214',
23924             'IO::Compress::Bzip2' => '2.214',
23925             'IO::Compress::Deflate' => '2.214',
23926             'IO::Compress::Gzip' => '2.214',
23927             'IO::Compress::Gzip::Constants'=> '2.214',
23928             'IO::Compress::RawDeflate'=> '2.214',
23929             'IO::Compress::Zip' => '2.214',
23930             'IO::Compress::Zip::Constants'=> '2.214',
23931             'IO::Compress::Zlib::Constants'=> '2.214',
23932             'IO::Compress::Zlib::Extra'=> '2.214',
23933             'IO::Uncompress::Adapter::Bunzip2'=> '2.214',
23934             'IO::Uncompress::Adapter::Identity'=> '2.214',
23935             'IO::Uncompress::Adapter::Inflate'=> '2.214',
23936             'IO::Uncompress::AnyInflate'=> '2.214',
23937             'IO::Uncompress::AnyUncompress'=> '2.214',
23938             'IO::Uncompress::Base' => '2.214',
23939             'IO::Uncompress::Bunzip2'=> '2.214',
23940             'IO::Uncompress::Gunzip'=> '2.214',
23941             'IO::Uncompress::Inflate'=> '2.214',
23942             'IO::Uncompress::RawInflate'=> '2.214',
23943             'IO::Uncompress::Unzip' => '2.214',
23944             'Module::CoreList' => '5.20251120',
23945             'Module::CoreList::Utils'=> '5.20251120',
23946             'Term::Table' => '0.027',
23947             'Term::Table::Cell' => '0.027',
23948             'Term::Table::CellStack'=> '0.027',
23949             'Term::Table::HashBase' => '0.027',
23950             'Term::Table::LineBreak'=> '0.027',
23951             'Term::Table::Spacer' => '0.027',
23952             'Term::Table::Util' => '0.027',
23953             'Test2' => '1.302216',
23954             'Test2::API' => '1.302216',
23955             'Test2::API::Breakage' => '1.302216',
23956             'Test2::API::Context' => '1.302216',
23957             'Test2::API::Instance' => '1.302216',
23958             'Test2::API::InterceptResult'=> '1.302216',
23959             'Test2::API::InterceptResult::Event'=> '1.302216',
23960             'Test2::API::InterceptResult::Facet'=> '1.302216',
23961             'Test2::API::InterceptResult::Hub'=> '1.302216',
23962             'Test2::API::InterceptResult::Squasher'=> '1.302216',
23963             'Test2::API::Stack' => '1.302216',
23964             'Test2::AsyncSubtest' => '1.302216',
23965             'Test2::AsyncSubtest::Event::Attach'=> '1.302216',
23966             'Test2::AsyncSubtest::Event::Detach'=> '1.302216',
23967             'Test2::AsyncSubtest::Formatter'=> '1.302216',
23968             'Test2::AsyncSubtest::Hub'=> '1.302216',
23969             'Test2::Bundle' => '1.302216',
23970             'Test2::Bundle::Extended'=> '1.302216',
23971             'Test2::Bundle::More' => '1.302216',
23972             'Test2::Bundle::Simple' => '1.302216',
23973             'Test2::Compare' => '1.302216',
23974             'Test2::Compare::Array' => '1.302216',
23975             'Test2::Compare::Bag' => '1.302216',
23976             'Test2::Compare::Base' => '1.302216',
23977             'Test2::Compare::Bool' => '1.302216',
23978             'Test2::Compare::Custom'=> '1.302216',
23979             'Test2::Compare::DeepRef'=> '1.302216',
23980             'Test2::Compare::Delta' => '1.302216',
23981             'Test2::Compare::Event' => '1.302216',
23982             'Test2::Compare::EventMeta'=> '1.302216',
23983             'Test2::Compare::Float' => '1.302216',
23984             'Test2::Compare::Hash' => '1.302216',
23985             'Test2::Compare::Isa' => '1.302216',
23986             'Test2::Compare::Meta' => '1.302216',
23987             'Test2::Compare::Negatable'=> '1.302216',
23988             'Test2::Compare::Number'=> '1.302216',
23989             'Test2::Compare::Object'=> '1.302216',
23990             'Test2::Compare::OrderedSubset'=> '1.302216',
23991             'Test2::Compare::Pattern'=> '1.302216',
23992             'Test2::Compare::Ref' => '1.302216',
23993             'Test2::Compare::Regex' => '1.302216',
23994             'Test2::Compare::Scalar'=> '1.302216',
23995             'Test2::Compare::Set' => '1.302216',
23996             'Test2::Compare::String'=> '1.302216',
23997             'Test2::Compare::Undef' => '1.302216',
23998             'Test2::Compare::Wildcard'=> '1.302216',
23999             'Test2::Env' => '1.302216',
24000             'Test2::Event' => '1.302216',
24001             'Test2::Event::Bail' => '1.302216',
24002             'Test2::Event::Diag' => '1.302216',
24003             'Test2::Event::Encoding'=> '1.302216',
24004             'Test2::Event::Exception'=> '1.302216',
24005             'Test2::Event::Fail' => '1.302216',
24006             'Test2::Event::Generic' => '1.302216',
24007             'Test2::Event::Note' => '1.302216',
24008             'Test2::Event::Ok' => '1.302216',
24009             'Test2::Event::Pass' => '1.302216',
24010             'Test2::Event::Plan' => '1.302216',
24011             'Test2::Event::Skip' => '1.302216',
24012             'Test2::Event::Subtest' => '1.302216',
24013             'Test2::Event::TAP::Version'=> '1.302216',
24014             'Test2::Event::V2' => '1.302216',
24015             'Test2::Event::Waiting' => '1.302216',
24016             'Test2::EventFacet' => '1.302216',
24017             'Test2::EventFacet::About'=> '1.302216',
24018             'Test2::EventFacet::Amnesty'=> '1.302216',
24019             'Test2::EventFacet::Assert'=> '1.302216',
24020             'Test2::EventFacet::Control'=> '1.302216',
24021             'Test2::EventFacet::Error'=> '1.302216',
24022             'Test2::EventFacet::Hub'=> '1.302216',
24023             'Test2::EventFacet::Info'=> '1.302216',
24024             'Test2::EventFacet::Info::Table'=> '1.302216',
24025             'Test2::EventFacet::Meta'=> '1.302216',
24026             'Test2::EventFacet::Parent'=> '1.302216',
24027             'Test2::EventFacet::Plan'=> '1.302216',
24028             'Test2::EventFacet::Render'=> '1.302216',
24029             'Test2::EventFacet::Trace'=> '1.302216',
24030             'Test2::Formatter' => '1.302216',
24031             'Test2::Formatter::TAP' => '1.302216',
24032             'Test2::Hub' => '1.302216',
24033             'Test2::Hub::Interceptor'=> '1.302216',
24034             'Test2::Hub::Interceptor::Terminator'=> '1.302216',
24035             'Test2::Hub::Subtest' => '1.302216',
24036             'Test2::IPC' => '1.302216',
24037             'Test2::IPC::Driver' => '1.302216',
24038             'Test2::IPC::Driver::Files'=> '1.302216',
24039             'Test2::Manual' => '1.302216',
24040             'Test2::Manual::Anatomy'=> '1.302216',
24041             'Test2::Manual::Anatomy::API'=> '1.302216',
24042             'Test2::Manual::Anatomy::Context'=> '1.302216',
24043             'Test2::Manual::Anatomy::EndToEnd'=> '1.302216',
24044             'Test2::Manual::Anatomy::Event'=> '1.302216',
24045             'Test2::Manual::Anatomy::Hubs'=> '1.302216',
24046             'Test2::Manual::Anatomy::IPC'=> '1.302216',
24047             'Test2::Manual::Anatomy::Utilities'=> '1.302216',
24048             'Test2::Manual::Concurrency'=> '1.302216',
24049             'Test2::Manual::Contributing'=> '1.302216',
24050             'Test2::Manual::Testing'=> '1.302216',
24051             'Test2::Manual::Testing::Introduction'=> '1.302216',
24052             'Test2::Manual::Testing::Migrating'=> '1.302216',
24053             'Test2::Manual::Testing::Planning'=> '1.302216',
24054             'Test2::Manual::Testing::Todo'=> '1.302216',
24055             'Test2::Manual::Tooling'=> '1.302216',
24056             'Test2::Manual::Tooling::FirstTool'=> '1.302216',
24057             'Test2::Manual::Tooling::Formatter'=> '1.302216',
24058             'Test2::Manual::Tooling::Nesting'=> '1.302216',
24059             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302216',
24060             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302216',
24061             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302216',
24062             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302216',
24063             'Test2::Manual::Tooling::Subtest'=> '1.302216',
24064             'Test2::Manual::Tooling::TestBuilder'=> '1.302216',
24065             'Test2::Manual::Tooling::Testing'=> '1.302216',
24066             'Test2::Mock' => '1.302216',
24067             'Test2::Plugin' => '1.302216',
24068             'Test2::Plugin::BailOnFail'=> '1.302216',
24069             'Test2::Plugin::DieOnFail'=> '1.302216',
24070             'Test2::Plugin::ExitSummary'=> '1.302216',
24071             'Test2::Plugin::SRand' => '1.302216',
24072             'Test2::Plugin::Times' => '1.302216',
24073             'Test2::Plugin::UTF8' => '1.302216',
24074             'Test2::Require' => '1.302216',
24075             'Test2::Require::AuthorTesting'=> '1.302216',
24076             'Test2::Require::AutomatedTesting'=> '1.302216',
24077             'Test2::Require::EnvVar'=> '1.302216',
24078             'Test2::Require::ExtendedTesting'=> '1.302216',
24079             'Test2::Require::Fork' => '1.302216',
24080             'Test2::Require::Module'=> '1.302216',
24081             'Test2::Require::NonInteractiveTesting'=> '1.302216',
24082             'Test2::Require::Perl' => '1.302216',
24083             'Test2::Require::RealFork'=> '1.302216',
24084             'Test2::Require::ReleaseTesting'=> '1.302216',
24085             'Test2::Require::Threads'=> '1.302216',
24086             'Test2::Suite' => '1.302216',
24087             'Test2::Todo' => '1.302216',
24088             'Test2::Tools' => '1.302216',
24089             'Test2::Tools::AsyncSubtest'=> '1.302216',
24090             'Test2::Tools::Basic' => '1.302216',
24091             'Test2::Tools::Class' => '1.302216',
24092             'Test2::Tools::ClassicCompare'=> '1.302216',
24093             'Test2::Tools::Compare' => '1.302216',
24094             'Test2::Tools::Defer' => '1.302216',
24095             'Test2::Tools::Encoding'=> '1.302216',
24096             'Test2::Tools::Event' => '1.302216',
24097             'Test2::Tools::Exception'=> '1.302216',
24098             'Test2::Tools::Exports' => '1.302216',
24099             'Test2::Tools::GenTemp' => '1.302216',
24100             'Test2::Tools::Grab' => '1.302216',
24101             'Test2::Tools::Mock' => '1.302216',
24102             'Test2::Tools::Ref' => '1.302216',
24103             'Test2::Tools::Refcount'=> '1.302216',
24104             'Test2::Tools::Spec' => '1.302216',
24105             'Test2::Tools::Subtest' => '1.302216',
24106             'Test2::Tools::Target' => '1.302216',
24107             'Test2::Tools::Tester' => '1.302216',
24108             'Test2::Tools::Tiny' => '1.302216',
24109             'Test2::Tools::Warnings'=> '1.302216',
24110             'Test2::Util' => '1.302216',
24111             'Test2::Util::ExternalMeta'=> '1.302216',
24112             'Test2::Util::Facets2Legacy'=> '1.302216',
24113             'Test2::Util::Grabber' => '1.302216',
24114             'Test2::Util::Guard' => '1.302216',
24115             'Test2::Util::HashBase' => '1.302216',
24116             'Test2::Util::Importer' => '1.302216',
24117             'Test2::Util::Ref' => '1.302216',
24118             'Test2::Util::Sig' => '1.302216',
24119             'Test2::Util::Stash' => '1.302216',
24120             'Test2::Util::Sub' => '1.302216',
24121             'Test2::Util::Table' => '1.302216',
24122             'Test2::Util::Table::Cell'=> '1.302216',
24123             'Test2::Util::Table::LineBreak'=> '1.302216',
24124             'Test2::Util::Term' => '1.302216',
24125             'Test2::Util::Times' => '1.302216',
24126             'Test2::Util::Trace' => '1.302216',
24127             'Test2::V0' => '1.302216',
24128             'Test2::Workflow' => '1.302216',
24129             'Test2::Workflow::BlockBase'=> '1.302216',
24130             'Test2::Workflow::Build'=> '1.302216',
24131             'Test2::Workflow::Runner'=> '1.302216',
24132             'Test2::Workflow::Task' => '1.302216',
24133             'Test2::Workflow::Task::Action'=> '1.302216',
24134             'Test2::Workflow::Task::Group'=> '1.302216',
24135             'Test::Builder' => '1.302216',
24136             'Test::Builder::Formatter'=> '1.302216',
24137             'Test::Builder::Module' => '1.302216',
24138             'Test::Builder::Tester' => '1.302216',
24139             'Test::Builder::Tester::Color'=> '1.302216',
24140             'Test::Builder::TodoDiag'=> '1.302216',
24141             'Test::More' => '1.302216',
24142             'Test::Simple' => '1.302216',
24143             'Test::Tester' => '1.302216',
24144             'Test::Tester::Capture' => '1.302216',
24145             'Test::Tester::CaptureRunner'=> '1.302216',
24146             'Test::Tester::Delegate'=> '1.302216',
24147             'Test::use::ok' => '1.302216',
24148             'Time::Piece' => '1.41',
24149             'Time::Seconds' => '1.41',
24150             'ok' => '1.302216',
24151             'warnings' => '1.75',
24152             },
24153             removed => {
24154             }
24155             },
24156             5.043006 => {
24157             delta_from => 5.043005,
24158             changed => {
24159             'B::Op_private' => '5.043006',
24160             'Config' => '5.043006',
24161             'ExtUtils::ParseXS' => '3.61',
24162             'ExtUtils::ParseXS::Constants'=> '3.61',
24163             'ExtUtils::ParseXS::CountLines'=> '3.61',
24164             'ExtUtils::ParseXS::Eval'=> '3.61',
24165             'ExtUtils::ParseXS::Node'=> '3.61',
24166             'ExtUtils::ParseXS::Utilities'=> '3.61',
24167             'ExtUtils::Typemaps' => '3.61',
24168             'ExtUtils::Typemaps::Cmd'=> '3.61',
24169             'ExtUtils::Typemaps::InputMap'=> '3.61',
24170             'ExtUtils::Typemaps::OutputMap'=> '3.61',
24171             'ExtUtils::Typemaps::Type'=> '3.61',
24172             'Module::CoreList' => '5.20251220',
24173             'Module::CoreList::Utils'=> '5.20251220',
24174             'Term::Table' => '0.028',
24175             'Term::Table::Cell' => '0.028',
24176             'Term::Table::CellStack'=> '0.028',
24177             'Term::Table::HashBase' => '0.028',
24178             'Term::Table::LineBreak'=> '0.028',
24179             'Term::Table::Spacer' => '0.028',
24180             'Term::Table::Util' => '0.028',
24181             'Test2' => '1.302219',
24182             'Test2::API' => '1.302219',
24183             'Test2::API::Breakage' => '1.302219',
24184             'Test2::API::Context' => '1.302219',
24185             'Test2::API::Instance' => '1.302219',
24186             'Test2::API::InterceptResult'=> '1.302219',
24187             'Test2::API::InterceptResult::Event'=> '1.302219',
24188             'Test2::API::InterceptResult::Facet'=> '1.302219',
24189             'Test2::API::InterceptResult::Hub'=> '1.302219',
24190             'Test2::API::InterceptResult::Squasher'=> '1.302219',
24191             'Test2::API::Stack' => '1.302219',
24192             'Test2::AsyncSubtest' => '1.302219',
24193             'Test2::AsyncSubtest::Event::Attach'=> '1.302219',
24194             'Test2::AsyncSubtest::Event::Detach'=> '1.302219',
24195             'Test2::AsyncSubtest::Formatter'=> '1.302219',
24196             'Test2::AsyncSubtest::Hub'=> '1.302219',
24197             'Test2::Bundle' => '1.302219',
24198             'Test2::Bundle::Extended'=> '1.302219',
24199             'Test2::Bundle::More' => '1.302219',
24200             'Test2::Bundle::Simple' => '1.302219',
24201             'Test2::Compare' => '1.302219',
24202             'Test2::Compare::Array' => '1.302219',
24203             'Test2::Compare::Bag' => '1.302219',
24204             'Test2::Compare::Base' => '1.302219',
24205             'Test2::Compare::Bool' => '1.302219',
24206             'Test2::Compare::Custom'=> '1.302219',
24207             'Test2::Compare::DeepRef'=> '1.302219',
24208             'Test2::Compare::Delta' => '1.302219',
24209             'Test2::Compare::Event' => '1.302219',
24210             'Test2::Compare::EventMeta'=> '1.302219',
24211             'Test2::Compare::Float' => '1.302219',
24212             'Test2::Compare::Hash' => '1.302219',
24213             'Test2::Compare::Isa' => '1.302219',
24214             'Test2::Compare::Meta' => '1.302219',
24215             'Test2::Compare::Negatable'=> '1.302219',
24216             'Test2::Compare::Number'=> '1.302219',
24217             'Test2::Compare::Object'=> '1.302219',
24218             'Test2::Compare::OrderedSubset'=> '1.302219',
24219             'Test2::Compare::Pattern'=> '1.302219',
24220             'Test2::Compare::Ref' => '1.302219',
24221             'Test2::Compare::Regex' => '1.302219',
24222             'Test2::Compare::Scalar'=> '1.302219',
24223             'Test2::Compare::Set' => '1.302219',
24224             'Test2::Compare::String'=> '1.302219',
24225             'Test2::Compare::Undef' => '1.302219',
24226             'Test2::Compare::Wildcard'=> '1.302219',
24227             'Test2::Env' => '1.302219',
24228             'Test2::Event' => '1.302219',
24229             'Test2::Event::Bail' => '1.302219',
24230             'Test2::Event::Diag' => '1.302219',
24231             'Test2::Event::Encoding'=> '1.302219',
24232             'Test2::Event::Exception'=> '1.302219',
24233             'Test2::Event::Fail' => '1.302219',
24234             'Test2::Event::Generic' => '1.302219',
24235             'Test2::Event::Note' => '1.302219',
24236             'Test2::Event::Ok' => '1.302219',
24237             'Test2::Event::Pass' => '1.302219',
24238             'Test2::Event::Plan' => '1.302219',
24239             'Test2::Event::Skip' => '1.302219',
24240             'Test2::Event::Subtest' => '1.302219',
24241             'Test2::Event::TAP::Version'=> '1.302219',
24242             'Test2::Event::V2' => '1.302219',
24243             'Test2::Event::Waiting' => '1.302219',
24244             'Test2::EventFacet' => '1.302219',
24245             'Test2::EventFacet::About'=> '1.302219',
24246             'Test2::EventFacet::Amnesty'=> '1.302219',
24247             'Test2::EventFacet::Assert'=> '1.302219',
24248             'Test2::EventFacet::Control'=> '1.302219',
24249             'Test2::EventFacet::Error'=> '1.302219',
24250             'Test2::EventFacet::Hub'=> '1.302219',
24251             'Test2::EventFacet::Info'=> '1.302219',
24252             'Test2::EventFacet::Info::Table'=> '1.302219',
24253             'Test2::EventFacet::Meta'=> '1.302219',
24254             'Test2::EventFacet::Parent'=> '1.302219',
24255             'Test2::EventFacet::Plan'=> '1.302219',
24256             'Test2::EventFacet::Render'=> '1.302219',
24257             'Test2::EventFacet::Trace'=> '1.302219',
24258             'Test2::Formatter' => '1.302219',
24259             'Test2::Formatter::TAP' => '1.302219',
24260             'Test2::Handle' => '1.302219',
24261             'Test2::Hub' => '1.302219',
24262             'Test2::Hub::Interceptor'=> '1.302219',
24263             'Test2::Hub::Interceptor::Terminator'=> '1.302219',
24264             'Test2::Hub::Subtest' => '1.302219',
24265             'Test2::IPC' => '1.302219',
24266             'Test2::IPC::Driver' => '1.302219',
24267             'Test2::IPC::Driver::Files'=> '1.302219',
24268             'Test2::Manual' => '1.302219',
24269             'Test2::Manual::Anatomy'=> '1.302219',
24270             'Test2::Manual::Anatomy::API'=> '1.302219',
24271             'Test2::Manual::Anatomy::Context'=> '1.302219',
24272             'Test2::Manual::Anatomy::EndToEnd'=> '1.302219',
24273             'Test2::Manual::Anatomy::Event'=> '1.302219',
24274             'Test2::Manual::Anatomy::Hubs'=> '1.302219',
24275             'Test2::Manual::Anatomy::IPC'=> '1.302219',
24276             'Test2::Manual::Anatomy::Utilities'=> '1.302219',
24277             'Test2::Manual::Concurrency'=> '1.302219',
24278             'Test2::Manual::Contributing'=> '1.302219',
24279             'Test2::Manual::Testing'=> '1.302219',
24280             'Test2::Manual::Testing::Introduction'=> '1.302219',
24281             'Test2::Manual::Testing::Migrating'=> '1.302219',
24282             'Test2::Manual::Testing::Planning'=> '1.302219',
24283             'Test2::Manual::Testing::Todo'=> '1.302219',
24284             'Test2::Manual::Tooling'=> '1.302219',
24285             'Test2::Manual::Tooling::FirstTool'=> '1.302219',
24286             'Test2::Manual::Tooling::Formatter'=> '1.302219',
24287             'Test2::Manual::Tooling::Nesting'=> '1.302219',
24288             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302219',
24289             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302219',
24290             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302219',
24291             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302219',
24292             'Test2::Manual::Tooling::Subtest'=> '1.302219',
24293             'Test2::Manual::Tooling::TestBuilder'=> '1.302219',
24294             'Test2::Manual::Tooling::Testing'=> '1.302219',
24295             'Test2::Mock' => '1.302219',
24296             'Test2::Plugin' => '1.302219',
24297             'Test2::Plugin::BailOnFail'=> '1.302219',
24298             'Test2::Plugin::DieOnFail'=> '1.302219',
24299             'Test2::Plugin::ExitSummary'=> '1.302219',
24300             'Test2::Plugin::SRand' => '1.302219',
24301             'Test2::Plugin::Times' => '1.302219',
24302             'Test2::Plugin::UTF8' => '1.302219',
24303             'Test2::Require' => '1.302219',
24304             'Test2::Require::AuthorTesting'=> '1.302219',
24305             'Test2::Require::AutomatedTesting'=> '1.302219',
24306             'Test2::Require::EnvVar'=> '1.302219',
24307             'Test2::Require::ExtendedTesting'=> '1.302219',
24308             'Test2::Require::Fork' => '1.302219',
24309             'Test2::Require::Module'=> '1.302219',
24310             'Test2::Require::NonInteractiveTesting'=> '1.302219',
24311             'Test2::Require::Perl' => '1.302219',
24312             'Test2::Require::RealFork'=> '1.302219',
24313             'Test2::Require::ReleaseTesting'=> '1.302219',
24314             'Test2::Require::Threads'=> '1.302219',
24315             'Test2::Suite' => '1.302219',
24316             'Test2::Todo' => '1.302219',
24317             'Test2::Tools' => '1.302219',
24318             'Test2::Tools::AsyncSubtest'=> '1.302219',
24319             'Test2::Tools::Basic' => '1.302219',
24320             'Test2::Tools::Class' => '1.302219',
24321             'Test2::Tools::ClassicCompare'=> '1.302219',
24322             'Test2::Tools::Compare' => '1.302219',
24323             'Test2::Tools::Defer' => '1.302219',
24324             'Test2::Tools::Encoding'=> '1.302219',
24325             'Test2::Tools::Event' => '1.302219',
24326             'Test2::Tools::Exception'=> '1.302219',
24327             'Test2::Tools::Exports' => '1.302219',
24328             'Test2::Tools::GenTemp' => '1.302219',
24329             'Test2::Tools::Grab' => '1.302219',
24330             'Test2::Tools::Mock' => '1.302219',
24331             'Test2::Tools::Ref' => '1.302219',
24332             'Test2::Tools::Refcount'=> '1.302219',
24333             'Test2::Tools::Spec' => '1.302219',
24334             'Test2::Tools::Subtest' => '1.302219',
24335             'Test2::Tools::Target' => '1.302219',
24336             'Test2::Tools::Tester' => '1.302219',
24337             'Test2::Tools::Tiny' => '1.302219',
24338             'Test2::Tools::Warnings'=> '1.302219',
24339             'Test2::Util' => '1.302219',
24340             'Test2::Util::ExternalMeta'=> '1.302219',
24341             'Test2::Util::Facets2Legacy'=> '1.302219',
24342             'Test2::Util::Grabber' => '1.302219',
24343             'Test2::Util::Guard' => '1.302219',
24344             'Test2::Util::HashBase' => '1.302219',
24345             'Test2::Util::Importer' => '1.302219',
24346             'Test2::Util::Ref' => '1.302219',
24347             'Test2::Util::Sig' => '1.302219',
24348             'Test2::Util::Stash' => '1.302219',
24349             'Test2::Util::Sub' => '1.302219',
24350             'Test2::Util::Table' => '1.302219',
24351             'Test2::Util::Table::Cell'=> '1.302219',
24352             'Test2::Util::Table::LineBreak'=> '1.302219',
24353             'Test2::Util::Term' => '1.302219',
24354             'Test2::Util::Times' => '1.302219',
24355             'Test2::Util::Trace' => '1.302219',
24356             'Test2::V0' => '1.302219',
24357             'Test2::V1' => '1.302219',
24358             'Test2::V1::Base' => '1.302219',
24359             'Test2::V1::Handle' => '1.302219',
24360             'Test2::Workflow' => '1.302219',
24361             'Test2::Workflow::BlockBase'=> '1.302219',
24362             'Test2::Workflow::Build'=> '1.302219',
24363             'Test2::Workflow::Runner'=> '1.302219',
24364             'Test2::Workflow::Task' => '1.302219',
24365             'Test2::Workflow::Task::Action'=> '1.302219',
24366             'Test2::Workflow::Task::Group'=> '1.302219',
24367             'Test::Builder' => '1.302219',
24368             'Test::Builder::Formatter'=> '1.302219',
24369             'Test::Builder::Module' => '1.302219',
24370             'Test::Builder::Tester' => '1.302219',
24371             'Test::Builder::Tester::Color'=> '1.302219',
24372             'Test::Builder::TodoDiag'=> '1.302219',
24373             'Test::More' => '1.302219',
24374             'Test::Simple' => '1.302219',
24375             'Test::Tester' => '1.302219',
24376             'Test::Tester::Capture' => '1.302219',
24377             'Test::Tester::CaptureRunner'=> '1.302219',
24378             'Test::Tester::Delegate'=> '1.302219',
24379             'Test::use::ok' => '1.302219',
24380             'XS::APItest' => '1.48',
24381             '_charnames' => '1.51',
24382             'charnames' => '1.51',
24383             'ok' => '1.302219',
24384             'warnings' => '1.76',
24385             },
24386             removed => {
24387             }
24388             },
24389             5.043007 => {
24390             delta_from => 5.043006,
24391             changed => {
24392             'B' => '1.91',
24393             'B::Concise' => '1.010',
24394             'B::Op_private' => '5.043007',
24395             'Config' => '5.043007',
24396             'ExtUtils::ParseXS' => '3.62',
24397             'ExtUtils::ParseXS::Constants'=> '3.62',
24398             'ExtUtils::ParseXS::CountLines'=> '3.62',
24399             'ExtUtils::ParseXS::Eval'=> '3.62',
24400             'ExtUtils::ParseXS::Node'=> '3.62',
24401             'ExtUtils::ParseXS::Utilities'=> '3.62',
24402             'ExtUtils::Typemaps' => '3.62',
24403             'ExtUtils::Typemaps::Cmd'=> '3.62',
24404             'ExtUtils::Typemaps::InputMap'=> '3.62',
24405             'ExtUtils::Typemaps::OutputMap'=> '3.62',
24406             'ExtUtils::Typemaps::Type'=> '3.62',
24407             'HTTP::Tiny' => '0.092',
24408             'Module::CoreList' => '5.20260119',
24409             'Module::CoreList::Utils'=> '5.20260119',
24410             'POSIX' => '2.25',
24411             'Pod::Html' => '1.36',
24412             'Pod::Html::Util' => '1.36',
24413             },
24414             removed => {
24415             }
24416             },
24417             5.043008 => {
24418             delta_from => 5.043007,
24419             changed => {
24420             'B::Concise' => '1.011',
24421             'B::Deparse' => '1.89',
24422             'B::Op_private' => '5.043008',
24423             'CPAN::Meta' => '2.150012',
24424             'CPAN::Meta::Converter' => '2.150012',
24425             'CPAN::Meta::Feature' => '2.150012',
24426             'CPAN::Meta::History' => '2.150012',
24427             'CPAN::Meta::Merge' => '2.150012',
24428             'CPAN::Meta::Prereqs' => '2.150012',
24429             'CPAN::Meta::Spec' => '2.150012',
24430             'CPAN::Meta::Validator' => '2.150012',
24431             'Compress::Raw::Bzip2' => '2.217',
24432             'Compress::Raw::Zlib' => '2.218',
24433             'Compress::Zlib' => '2.217',
24434             'Config' => '5.043008',
24435             'Config::Perl::V' => '0.39',
24436             'DB_File' => '1.860',
24437             'English' => '1.12',
24438             'ExtUtils::ParseXS' => '3.63',
24439             'ExtUtils::ParseXS::Constants'=> '3.63',
24440             'ExtUtils::ParseXS::CountLines'=> '3.63',
24441             'ExtUtils::ParseXS::Eval'=> '3.63',
24442             'ExtUtils::ParseXS::Node'=> '3.63',
24443             'ExtUtils::ParseXS::Utilities'=> '3.63',
24444             'ExtUtils::Typemaps' => '3.63',
24445             'ExtUtils::Typemaps::Cmd'=> '3.63',
24446             'ExtUtils::Typemaps::InputMap'=> '3.63',
24447             'ExtUtils::Typemaps::OutputMap'=> '3.63',
24448             'ExtUtils::Typemaps::Type'=> '3.63',
24449             'IO::Compress' => '2.217',
24450             'IO::Compress::Adapter::Bzip2'=> '2.217',
24451             'IO::Compress::Adapter::Deflate'=> '2.217',
24452             'IO::Compress::Adapter::Identity'=> '2.217',
24453             'IO::Compress::Base' => '2.217',
24454             'IO::Compress::Base::Common'=> '2.217',
24455             'IO::Compress::Bzip2' => '2.217',
24456             'IO::Compress::Deflate' => '2.217',
24457             'IO::Compress::Gzip' => '2.217',
24458             'IO::Compress::Gzip::Constants'=> '2.217',
24459             'IO::Compress::RawDeflate'=> '2.217',
24460             'IO::Compress::Zip' => '2.217',
24461             'IO::Compress::Zip::Constants'=> '2.217',
24462             'IO::Compress::Zlib::Constants'=> '2.217',
24463             'IO::Compress::Zlib::Extra'=> '2.217',
24464             'IO::Uncompress::Adapter::Bunzip2'=> '2.217',
24465             'IO::Uncompress::Adapter::Identity'=> '2.217',
24466             'IO::Uncompress::Adapter::Inflate'=> '2.217',
24467             'IO::Uncompress::AnyInflate'=> '2.217',
24468             'IO::Uncompress::AnyUncompress'=> '2.217',
24469             'IO::Uncompress::Base' => '2.217',
24470             'IO::Uncompress::Bunzip2'=> '2.217',
24471             'IO::Uncompress::Gunzip'=> '2.217',
24472             'IO::Uncompress::Inflate'=> '2.217',
24473             'IO::Uncompress::RawInflate'=> '2.217',
24474             'IO::Uncompress::Unzip' => '2.217',
24475             'Module::CoreList' => '5.20260220',
24476             'Module::CoreList::Utils'=> '5.20260220',
24477             'Parse::CPAN::Meta' => '2.150012',
24478             'Time::HiRes' => '1.9780',
24479             'XS::APItest' => '1.49',
24480             'XS::Typemap' => '0.21',
24481             'feature' => '2.01',
24482             'threads' => '2.44',
24483             'threads::shared' => '1.72',
24484             'warnings' => '1.77',
24485             },
24486             removed => {
24487             }
24488             },
24489             5.042001 => {
24490             delta_from => 5.042000,
24491             changed => {
24492             'B::Op_private' => '5.042001',
24493             'Config' => '5.042001',
24494             'Module::CoreList' => '5.20260308',
24495             'Module::CoreList::Utils'=> '5.20260308',
24496             'POSIX' => '2.23_01',
24497             },
24498             removed => {
24499             }
24500             },
24501             5.043009 => {
24502             delta_from => 5.043008,
24503             changed => {
24504             'B' => '1.92',
24505             'B::Op_private' => '5.043009',
24506             'CPAN::Meta' => '2.150013',
24507             'CPAN::Meta::Converter' => '2.150013',
24508             'CPAN::Meta::Feature' => '2.150013',
24509             'CPAN::Meta::History' => '2.150013',
24510             'CPAN::Meta::Merge' => '2.150013',
24511             'CPAN::Meta::Prereqs' => '2.150013',
24512             'CPAN::Meta::Requirements'=> '2.145',
24513             'CPAN::Meta::Requirements::Range'=> '2.145',
24514             'CPAN::Meta::Spec' => '2.150013',
24515             'CPAN::Meta::Validator' => '2.150013',
24516             'Compress::Raw::Bzip2' => '2.218',
24517             'Compress::Raw::Zlib' => '2.222',
24518             'Compress::Zlib' => '2.219',
24519             'Config' => '5.043009',
24520             'Cwd' => '3.95',
24521             'ExtUtils::CBuilder' => '0.280243',
24522             'ExtUtils::CBuilder::Base'=> '0.280243',
24523             'ExtUtils::CBuilder::Platform::Unix'=> '0.280243',
24524             'ExtUtils::CBuilder::Platform::VMS'=> '0.280243',
24525             'ExtUtils::CBuilder::Platform::Windows'=> '0.280243',
24526             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280243',
24527             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280243',
24528             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280243',
24529             'ExtUtils::CBuilder::Platform::aix'=> '0.280243',
24530             'ExtUtils::CBuilder::Platform::android'=> '0.280243',
24531             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280243',
24532             'ExtUtils::CBuilder::Platform::darwin'=> '0.280243',
24533             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280243',
24534             'ExtUtils::CBuilder::Platform::os2'=> '0.280243',
24535             'ExtUtils::Command' => '7.78',
24536             'ExtUtils::Command::MM' => '7.78',
24537             'ExtUtils::Liblist' => '7.78',
24538             'ExtUtils::Liblist::Kid'=> '7.78',
24539             'ExtUtils::MM' => '7.78',
24540             'ExtUtils::MM_AIX' => '7.78',
24541             'ExtUtils::MM_Any' => '7.78',
24542             'ExtUtils::MM_BeOS' => '7.78',
24543             'ExtUtils::MM_Cygwin' => '7.78',
24544             'ExtUtils::MM_DOS' => '7.78',
24545             'ExtUtils::MM_Darwin' => '7.78',
24546             'ExtUtils::MM_MacOS' => '7.78',
24547             'ExtUtils::MM_NW5' => '7.78',
24548             'ExtUtils::MM_OS2' => '7.78',
24549             'ExtUtils::MM_OS390' => '7.78',
24550             'ExtUtils::MM_QNX' => '7.78',
24551             'ExtUtils::MM_UWIN' => '7.78',
24552             'ExtUtils::MM_Unix' => '7.78',
24553             'ExtUtils::MM_VMS' => '7.78',
24554             'ExtUtils::MM_VOS' => '7.78',
24555             'ExtUtils::MM_Win32' => '7.78',
24556             'ExtUtils::MM_Win95' => '7.78',
24557             'ExtUtils::MY' => '7.78',
24558             'ExtUtils::MakeMaker' => '7.78',
24559             'ExtUtils::MakeMaker::Config'=> '7.78',
24560             'ExtUtils::MakeMaker::Locale'=> '7.78',
24561             'ExtUtils::MakeMaker::version'=> '7.78',
24562             'ExtUtils::MakeMaker::version::regex'=> '7.78',
24563             'ExtUtils::Mkbootstrap' => '7.78',
24564             'ExtUtils::Mksymlists' => '7.78',
24565             'ExtUtils::testlib' => '7.78',
24566             'File::Glob' => '1.43',
24567             'File::Spec' => '3.95',
24568             'File::Spec::AmigaOS' => '3.95',
24569             'File::Spec::Cygwin' => '3.95',
24570             'File::Spec::Epoc' => '3.95',
24571             'File::Spec::Functions' => '3.95',
24572             'File::Spec::Mac' => '3.95',
24573             'File::Spec::OS2' => '3.95',
24574             'File::Spec::Unix' => '3.95',
24575             'File::Spec::VMS' => '3.95',
24576             'File::Spec::Win32' => '3.95',
24577             'IO' => '1.56',
24578             'IO::Compress' => '2.219',
24579             'IO::Compress::Adapter::Bzip2'=> '2.219',
24580             'IO::Compress::Adapter::Deflate'=> '2.219',
24581             'IO::Compress::Adapter::Identity'=> '2.219',
24582             'IO::Compress::Base' => '2.219',
24583             'IO::Compress::Base::Common'=> '2.219',
24584             'IO::Compress::Bzip2' => '2.219',
24585             'IO::Compress::Deflate' => '2.219',
24586             'IO::Compress::Gzip' => '2.219',
24587             'IO::Compress::Gzip::Constants'=> '2.219',
24588             'IO::Compress::RawDeflate'=> '2.219',
24589             'IO::Compress::Zip' => '2.219',
24590             'IO::Compress::Zip::Constants'=> '2.219',
24591             'IO::Compress::Zlib::Constants'=> '2.219',
24592             'IO::Compress::Zlib::Extra'=> '2.219',
24593             'IO::Dir' => '1.56',
24594             'IO::File' => '1.56',
24595             'IO::Handle' => '1.56',
24596             'IO::Pipe' => '1.56',
24597             'IO::Seekable' => '1.56',
24598             'IO::Select' => '1.56',
24599             'IO::Socket' => '1.56',
24600             'IO::Socket::INET' => '1.56',
24601             'IO::Socket::UNIX' => '1.56',
24602             'IO::Uncompress::Adapter::Bunzip2'=> '2.219',
24603             'IO::Uncompress::Adapter::Identity'=> '2.219',
24604             'IO::Uncompress::Adapter::Inflate'=> '2.219',
24605             'IO::Uncompress::AnyInflate'=> '2.219',
24606             'IO::Uncompress::AnyUncompress'=> '2.219',
24607             'IO::Uncompress::Base' => '2.219',
24608             'IO::Uncompress::Bunzip2'=> '2.219',
24609             'IO::Uncompress::Gunzip'=> '2.219',
24610             'IO::Uncompress::Inflate'=> '2.219',
24611             'IO::Uncompress::RawInflate'=> '2.219',
24612             'IO::Uncompress::Unzip' => '2.219',
24613             'Module::CoreList' => '5.20260320',
24614             'Module::CoreList::Utils'=> '5.20260320',
24615             'Opcode' => '1.71',
24616             'POSIX' => '2.26',
24617             'Parse::CPAN::Meta' => '2.150013',
24618             'Storable' => '3.40',
24619             'XS::APItest' => '1.50',
24620             'feature' => '2.02',
24621             'threads' => '2.45',
24622             'threads::shared' => '1.73',
24623             'warnings' => '1.78',
24624             },
24625             removed => {
24626             }
24627             },
24628             5.040004 => {
24629             delta_from => 5.040003,
24630             changed => {
24631             'B::Op_private' => '5.040004',
24632             'Compress::Raw::Zlib' => '2.222',
24633             'Config' => '5.040004',
24634             'Module::CoreList' => '5.20260329_40',
24635             'Module::CoreList::Utils'=> '5.20260329_40',
24636             },
24637             removed => {
24638             }
24639             },
24640             5.042002 => {
24641             delta_from => 5.042001,
24642             changed => {
24643             'B::Op_private' => '5.042002',
24644             'Compress::Raw::Zlib' => '2.222',
24645             'Config' => '5.042002',
24646             'Module::CoreList' => '5.20260329_42',
24647             'Module::CoreList::Utils'=> '5.20260329_42',
24648             },
24649             removed => {
24650             }
24651             },
24652             5.043010 => {
24653             delta_from => 5.043009,
24654             changed => {
24655             'B::Concise' => '1.012',
24656             'B::Op_private' => '5.043010',
24657             'Config' => '5.04301',
24658             'File::Glob' => '1.44',
24659             'Module::CoreList' => '5.20260420',
24660             'Module::CoreList::Utils'=> '5.20260420',
24661             'Module::Metadata' => '1.000039',
24662             'Pod::Simple' => '3.48',
24663             'Pod::Simple::BlackBox' => '3.48',
24664             'Pod::Simple::Checker' => '3.48',
24665             'Pod::Simple::Debug' => '3.48',
24666             'Pod::Simple::DumpAsText'=> '3.48',
24667             'Pod::Simple::DumpAsXML'=> '3.48',
24668             'Pod::Simple::HTML' => '3.48',
24669             'Pod::Simple::HTMLBatch'=> '3.48',
24670             'Pod::Simple::LinkSection'=> '3.48',
24671             'Pod::Simple::Methody' => '3.48',
24672             'Pod::Simple::Progress' => '3.48',
24673             'Pod::Simple::PullParser'=> '3.48',
24674             'Pod::Simple::PullParserEndToken'=> '3.48',
24675             'Pod::Simple::PullParserStartToken'=> '3.48',
24676             'Pod::Simple::PullParserTextToken'=> '3.48',
24677             'Pod::Simple::PullParserToken'=> '3.48',
24678             'Pod::Simple::RTF' => '3.48',
24679             'Pod::Simple::Search' => '3.48',
24680             'Pod::Simple::SimpleTree'=> '3.48',
24681             'Pod::Simple::Text' => '3.48',
24682             'Pod::Simple::TextContent'=> '3.48',
24683             'Pod::Simple::TiedOutFH'=> '3.48',
24684             'Pod::Simple::Transcode'=> '3.48',
24685             'Pod::Simple::TranscodeDumb'=> '3.48',
24686             'Pod::Simple::TranscodeSmart'=> '3.48',
24687             'Pod::Simple::XHTML' => '3.48',
24688             'Pod::Simple::XMLOutStream'=> '3.48',
24689             'version' => '0.9934',
24690             'version::regex' => '0.9934',
24691             },
24692             removed => {
24693             }
24694             },
24695             5.043011 => {
24696             delta_from => 5.043010,
24697             changed => {
24698             'Archive::Tar' => '3.10',
24699             'Archive::Tar::Constant'=> '3.10',
24700             'Archive::Tar::File' => '3.10',
24701             'B::Op_private' => '5.043011',
24702             'Compress::Zlib' => '2.220',
24703             'Config' => '5.043011',
24704             'Encode' => '3.24',
24705             'Errno' => '1.39',
24706             'HTTP::Tiny' => '0.094',
24707             'IO::Compress' => '2.220',
24708             'IO::Compress::Adapter::Bzip2'=> '2.220',
24709             'IO::Compress::Adapter::Deflate'=> '2.220',
24710             'IO::Compress::Adapter::Identity'=> '2.220',
24711             'IO::Compress::Base' => '2.220',
24712             'IO::Compress::Base::Common'=> '2.220',
24713             'IO::Compress::Bzip2' => '2.220',
24714             'IO::Compress::Deflate' => '2.220',
24715             'IO::Compress::Gzip' => '2.220',
24716             'IO::Compress::Gzip::Constants'=> '2.220',
24717             'IO::Compress::RawDeflate'=> '2.220',
24718             'IO::Compress::Zip' => '2.220',
24719             'IO::Compress::Zip::Constants'=> '2.220',
24720             'IO::Compress::Zlib::Constants'=> '2.220',
24721             'IO::Compress::Zlib::Extra'=> '2.220',
24722             'IO::Socket::IP' => '0.44',
24723             'IO::Uncompress::Adapter::Bunzip2'=> '2.220',
24724             'IO::Uncompress::Adapter::Identity'=> '2.220',
24725             'IO::Uncompress::Adapter::Inflate'=> '2.220',
24726             'IO::Uncompress::AnyInflate'=> '2.220',
24727             'IO::Uncompress::AnyUncompress'=> '2.220',
24728             'IO::Uncompress::Base' => '2.220',
24729             'IO::Uncompress::Bunzip2'=> '2.220',
24730             'IO::Uncompress::Gunzip'=> '2.220',
24731             'IO::Uncompress::Inflate'=> '2.220',
24732             'IO::Uncompress::RawInflate'=> '2.220',
24733             'IO::Uncompress::Unzip' => '2.220',
24734             'Module::CoreList' => '5.20260601',
24735             'Module::CoreList::Utils'=> '5.20260601',
24736             'SelfLoader' => '1.29',
24737             'Socket' => '2.041',
24738             'Storable' => '3.41',
24739             'XS::Typemap' => '0.22',
24740             },
24741             removed => {
24742             }
24743             },
24744             );
24745              
24746             sub is_core
24747             {
24748 43 100 66 43 1 221829 shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
      100        
24749 43         60 my $module = shift;
24750 43 100       134 my $module_version = @_ > 0 ? shift : undef;
24751 43 100       93 my $perl_version = @_ > 0 ? shift : $];
24752              
24753 43         91 my $first_release = first_release($module);
24754              
24755 43 100 100     460 return 0 if !defined($first_release) || $first_release > $perl_version;
24756              
24757 32         79 my $final_release = removed_from($module);
24758              
24759 32 100 100     177 return 0 if defined($final_release) && $perl_version >= $final_release;
24760              
24761             # If a minimum version of the module was specified:
24762             # Step through all perl releases ($prn)
24763             # so we can find what version of the module
24764             # was included in the specified version of perl.
24765             # On the way if we pass the required module version, we can
24766             # short-circuit and return true
24767 28 100       70 if (defined($module_version)) {
24768 21         35 my $module_version_object = eval { version->parse($module_version) };
  21         323  
24769 21 100       51 if (!defined($module_version_object)) {
24770 1         12 (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/;
24771 1         7 die $err;
24772             }
24773             # The Perl releases aren't a linear sequence, but a tree. We need to build the path
24774             # of releases from 5 to the specified release, and follow the module's version(s)
24775             # along that path.
24776 20         42 my @releases = ($perl_version);
24777 20         34 my $rel = $perl_version;
24778 20         44 while (defined($rel)) {
24779             # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
24780 598   66     1437 my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
24781 598         917 $rel = $this_delta->{delta_from};
24782 598 100       1054 unshift(@releases, $rel) if defined($rel);
24783             }
24784             RELEASE:
24785 20         46 foreach my $prn (@releases) {
24786 531 100       733 next RELEASE if $prn < $first_release;
24787 440 50       556 last RELEASE if $prn > $perl_version;
24788             next unless defined(my $next_module_version
24789 440 100       1292 = $delta{$prn}->{changed}->{$module});
24790 68 100       77 return 1 if eval { version->parse($next_module_version) >= $module_version_object };
  68         639  
24791             }
24792 4         39 return 0;
24793             }
24794              
24795 7 100       57 return 1 if !defined($final_release);
24796              
24797 2         16 return $perl_version <= $final_release;
24798             }
24799              
24800             %version = _undelta(\%delta);
24801              
24802             %deprecated = (
24803             5.011 => {
24804             changed => { map { $_ => 1 } qw/
24805             Class::ISA
24806             Pod::Plainer
24807             Shell
24808             Switch
24809             /},
24810             },
24811             5.011001 => { delta_from => 5.011 },
24812             5.011002 => { delta_from => 5.011001 },
24813             5.011003 => { delta_from => 5.011002 },
24814             5.011004 => { delta_from => 5.011003 },
24815             5.011005 => { delta_from => 5.011004 },
24816              
24817             5.012 => { delta_from => 5.011005 },
24818             5.012001 => { delta_from => 5.012 },
24819             5.012002 => { delta_from => 5.012001 },
24820             5.012003 => { delta_from => 5.012002 },
24821             5.012004 => { delta_from => 5.012003 },
24822             5.012005 => { delta_from => 5.012004 },
24823              
24824             5.013 => { delta_from => 5.012005 },
24825             5.013001 => {
24826             delta_from => 5.013,
24827             removed => { map { $_ => 1 } qw/
24828             Class::ISA
24829             Pod::Plainer
24830             Switch
24831             /},
24832             },
24833             5.013002 => { delta_from => 5.013001 },
24834             5.013003 => { delta_from => 5.013002 },
24835             5.013004 => { delta_from => 5.013003 },
24836             5.013005 => { delta_from => 5.013004 },
24837             5.013006 => { delta_from => 5.013005 },
24838             5.013007 => { delta_from => 5.013006 },
24839             5.013008 => { delta_from => 5.013007 },
24840             5.013009 => { delta_from => 5.013008 },
24841             5.01301 => { delta_from => 5.013009 },
24842             5.013011 => { delta_from => 5.01301 },
24843              
24844             5.014 => { delta_from => 5.013011 },
24845             5.014001 => { delta_from => 5.014 },
24846             5.014002 => { delta_from => 5.014001 },
24847             5.014003 => { delta_from => 5.014002 },
24848             5.014004 => { delta_from => 5.014003 },
24849              
24850             5.015 => {
24851             delta_from => 5.014004,
24852             removed => { Shell => 1 },
24853             },
24854             5.015001 => { delta_from => 5.015 },
24855             5.015002 => { delta_from => 5.015001 },
24856             5.015003 => { delta_from => 5.015002 },
24857             5.015004 => { delta_from => 5.015003 },
24858             5.015005 => { delta_from => 5.015004 },
24859             5.015006 => { delta_from => 5.015005 },
24860             5.015007 => { delta_from => 5.015006 },
24861             5.015008 => { delta_from => 5.015007 },
24862             5.015009 => { delta_from => 5.015008 },
24863              
24864             5.016 => { delta_from => 5.015009 },
24865             5.016001 => { delta_from => 5.016 },
24866             5.016002 => { delta_from => 5.016001 },
24867             5.016003 => { delta_from => 5.016002 },
24868              
24869             5.017 => { delta_from => 5.016003 },
24870             5.017001 => { delta_from => 5.017 },
24871             5.017002 => { delta_from => 5.017001 },
24872             5.017003 => { delta_from => 5.017002 },
24873             5.017004 => { delta_from => 5.017003 },
24874             5.017005 => { delta_from => 5.017004 },
24875             5.017006 => { delta_from => 5.017005 },
24876             5.017007 => { delta_from => 5.017006 },
24877             5.017008 => {
24878             delta_from => 5.017007,
24879             changed => { 'Pod::LaTeX' => 1 },
24880             },
24881             5.017009 => {
24882             delta_from => 5.017008,
24883             changed => { map { $_ => 1 } qw/
24884             Archive::Extract
24885             B::Lint
24886             B::Lint::Debug
24887             CPANPLUS
24888             CPANPLUS::Backend
24889             CPANPLUS::Backend::RV
24890             CPANPLUS::Config
24891             CPANPLUS::Config::HomeEnv
24892             CPANPLUS::Configure
24893             CPANPLUS::Configure::Setup
24894             CPANPLUS::Dist
24895             CPANPLUS::Dist::Autobundle
24896             CPANPLUS::Dist::Base
24897             CPANPLUS::Dist::Build
24898             CPANPLUS::Dist::Build::Constants
24899             CPANPLUS::Dist::MM
24900             CPANPLUS::Dist::Sample
24901             CPANPLUS::Error
24902             CPANPLUS::Internals
24903             CPANPLUS::Internals::Constants
24904             CPANPLUS::Internals::Constants::Report
24905             CPANPLUS::Internals::Extract
24906             CPANPLUS::Internals::Fetch
24907             CPANPLUS::Internals::Report
24908             CPANPLUS::Internals::Search
24909             CPANPLUS::Internals::Source
24910             CPANPLUS::Internals::Source::Memory
24911             CPANPLUS::Internals::Source::SQLite
24912             CPANPLUS::Internals::Source::SQLite::Tie
24913             CPANPLUS::Internals::Utils
24914             CPANPLUS::Internals::Utils::Autoflush
24915             CPANPLUS::Module
24916             CPANPLUS::Module::Author
24917             CPANPLUS::Module::Author::Fake
24918             CPANPLUS::Module::Checksums
24919             CPANPLUS::Module::Fake
24920             CPANPLUS::Module::Signature
24921             CPANPLUS::Selfupdate
24922             CPANPLUS::Shell
24923             CPANPLUS::Shell::Classic
24924             CPANPLUS::Shell::Default
24925             CPANPLUS::Shell::Default::Plugins::CustomSource
24926             CPANPLUS::Shell::Default::Plugins::Remote
24927             CPANPLUS::Shell::Default::Plugins::Source
24928             Devel::InnerPackage
24929             File::CheckTree
24930             Log::Message
24931             Log::Message::Config
24932             Log::Message::Handlers
24933             Log::Message::Item
24934             Log::Message::Simple
24935             Module::Pluggable
24936             Module::Pluggable::Object
24937             Object::Accessor
24938             Term::UI
24939             Term::UI::History
24940             Text::Soundex
24941             /},
24942             },
24943             5.01701 => { delta_from => 5.017009 },
24944             5.017011 => { delta_from => 5.01701 },
24945              
24946             5.018 => { delta_from => 5.017011 },
24947             5.018001 => {
24948             delta_from => 5.018,
24949             changed => {
24950             },
24951             removed => {
24952             }
24953             },
24954             5.018002 => {
24955             delta_from => 5.018001,
24956             changed => {
24957             },
24958             removed => {
24959             }
24960             },
24961             5.018003 => {
24962             delta_from => 5.018,
24963             changed => {
24964             },
24965             removed => {
24966             }
24967             },
24968             5.018004 => {
24969             delta_from => 5.018,
24970             changed => {
24971             },
24972             removed => {
24973             }
24974             },
24975              
24976             5.019 => {
24977             delta_from => 5.018,
24978             changed => { 'Module::Build' => 1 },
24979             removed => { map { $_ => 1 } qw/
24980             Archive::Extract
24981             B::Lint
24982             B::Lint::Debug
24983             CPANPLUS
24984             CPANPLUS::Backend
24985             CPANPLUS::Backend::RV
24986             CPANPLUS::Config
24987             CPANPLUS::Config::HomeEnv
24988             CPANPLUS::Configure
24989             CPANPLUS::Configure::Setup
24990             CPANPLUS::Dist
24991             CPANPLUS::Dist::Autobundle
24992             CPANPLUS::Dist::Base
24993             CPANPLUS::Dist::Build
24994             CPANPLUS::Dist::Build::Constants
24995             CPANPLUS::Dist::MM
24996             CPANPLUS::Dist::Sample
24997             CPANPLUS::Error
24998             CPANPLUS::Internals
24999             CPANPLUS::Internals::Constants
25000             CPANPLUS::Internals::Constants::Report
25001             CPANPLUS::Internals::Extract
25002             CPANPLUS::Internals::Fetch
25003             CPANPLUS::Internals::Report
25004             CPANPLUS::Internals::Search
25005             CPANPLUS::Internals::Source
25006             CPANPLUS::Internals::Source::Memory
25007             CPANPLUS::Internals::Source::SQLite
25008             CPANPLUS::Internals::Source::SQLite::Tie
25009             CPANPLUS::Internals::Utils
25010             CPANPLUS::Internals::Utils::Autoflush
25011             CPANPLUS::Module
25012             CPANPLUS::Module::Author
25013             CPANPLUS::Module::Author::Fake
25014             CPANPLUS::Module::Checksums
25015             CPANPLUS::Module::Fake
25016             CPANPLUS::Module::Signature
25017             CPANPLUS::Selfupdate
25018             CPANPLUS::Shell
25019             CPANPLUS::Shell::Classic
25020             CPANPLUS::Shell::Default
25021             CPANPLUS::Shell::Default::Plugins::CustomSource
25022             CPANPLUS::Shell::Default::Plugins::Remote
25023             CPANPLUS::Shell::Default::Plugins::Source
25024             Devel::InnerPackage
25025             File::CheckTree
25026             Log::Message
25027             Log::Message::Config
25028             Log::Message::Handlers
25029             Log::Message::Item
25030             Log::Message::Simple
25031             Module::Pluggable
25032             Module::Pluggable::Object
25033             Object::Accessor
25034             Pod::LaTeX
25035             Term::UI
25036             Term::UI::History
25037             Text::Soundex
25038             /}
25039             },
25040             5.019001 => {
25041             delta_from => 5.019,
25042             changed => {
25043             },
25044             removed => {
25045             }
25046             },
25047             5.019002 => {
25048             delta_from => 5.019001,
25049             changed => {
25050             },
25051             removed => {
25052             }
25053             },
25054             5.019003 => {
25055             delta_from => 5.019002,
25056             changed => {
25057             },
25058             removed => {
25059             }
25060             },
25061             5.019004 => {
25062             delta_from => 5.019003,
25063             changed => {
25064             'Module::Build::Base' => '1',
25065             'Module::Build::Compat' => '1',
25066             'Module::Build::Config' => '1',
25067             'Module::Build::ConfigData'=> '1',
25068             'Module::Build::Cookbook'=> '1',
25069             'Module::Build::Dumper' => '1',
25070             'Module::Build::ModuleInfo'=> '1',
25071             'Module::Build::Notes' => '1',
25072             'Module::Build::PPMMaker'=> '1',
25073             'Module::Build::Platform::Default'=> '1',
25074             'Module::Build::Platform::MacOS'=> '1',
25075             'Module::Build::Platform::Unix'=> '1',
25076             'Module::Build::Platform::VMS'=> '1',
25077             'Module::Build::Platform::VOS'=> '1',
25078             'Module::Build::Platform::Windows'=> '1',
25079             'Module::Build::Platform::aix'=> '1',
25080             'Module::Build::Platform::cygwin'=> '1',
25081             'Module::Build::Platform::darwin'=> '1',
25082             'Module::Build::Platform::os2'=> '1',
25083             'Module::Build::PodParser'=> '1',
25084             'Module::Build::Version'=> '1',
25085             'Module::Build::YAML' => '1',
25086             'inc::latest' => '1',
25087             },
25088             removed => {
25089             }
25090             },
25091             5.019005 => {
25092             delta_from => 5.019004,
25093             changed => {
25094             },
25095             removed => {
25096             }
25097             },
25098             5.019006 => {
25099             delta_from => 5.019005,
25100             changed => {
25101             'Package::Constants' => '1',
25102             },
25103             removed => {
25104             }
25105             },
25106             5.019007 => {
25107             delta_from => 5.019006,
25108             changed => {
25109             'CGI' => '1',
25110             'CGI::Apache' => '1',
25111             'CGI::Carp' => '1',
25112             'CGI::Cookie' => '1',
25113             'CGI::Fast' => '1',
25114             'CGI::Pretty' => '1',
25115             'CGI::Push' => '1',
25116             'CGI::Switch' => '1',
25117             'CGI::Util' => '1',
25118             },
25119             removed => {
25120             }
25121             },
25122             5.019008 => {
25123             delta_from => 5.019007,
25124             changed => {
25125             },
25126             removed => {
25127             }
25128             },
25129             5.019009 => {
25130             delta_from => 5.019008,
25131             changed => {
25132             },
25133             removed => {
25134             }
25135             },
25136             5.01901 => {
25137             delta_from => 5.019009,
25138             changed => {
25139             },
25140             removed => {
25141             }
25142             },
25143             5.019011 => {
25144             delta_from => 5.019010,
25145             changed => {
25146             },
25147             removed => {
25148             }
25149             },
25150             5.020000 => {
25151             delta_from => 5.019011,
25152             changed => {
25153             },
25154             removed => {
25155             }
25156             },
25157             5.021000 => {
25158             delta_from => 5.020000,
25159             changed => {
25160             },
25161             removed => {
25162             'CGI' => 1,
25163             'CGI::Apache' => 1,
25164             'CGI::Carp' => 1,
25165             'CGI::Cookie' => 1,
25166             'CGI::Fast' => 1,
25167             'CGI::Pretty' => 1,
25168             'CGI::Push' => 1,
25169             'CGI::Switch' => 1,
25170             'CGI::Util' => 1,
25171             'Module::Build' => 1,
25172             'Module::Build::Base' => 1,
25173             'Module::Build::Compat' => 1,
25174             'Module::Build::Config' => 1,
25175             'Module::Build::ConfigData'=> 1,
25176             'Module::Build::Cookbook'=> 1,
25177             'Module::Build::Dumper' => 1,
25178             'Module::Build::ModuleInfo'=> 1,
25179             'Module::Build::Notes' => 1,
25180             'Module::Build::PPMMaker'=> 1,
25181             'Module::Build::Platform::Default'=> 1,
25182             'Module::Build::Platform::MacOS'=> 1,
25183             'Module::Build::Platform::Unix'=> 1,
25184             'Module::Build::Platform::VMS'=> 1,
25185             'Module::Build::Platform::VOS'=> 1,
25186             'Module::Build::Platform::Windows'=> 1,
25187             'Module::Build::Platform::aix'=> 1,
25188             'Module::Build::Platform::cygwin'=> 1,
25189             'Module::Build::Platform::darwin'=> 1,
25190             'Module::Build::Platform::os2'=> 1,
25191             'Module::Build::PodParser'=> 1,
25192             'Module::Build::Version'=> 1,
25193             'Module::Build::YAML' => 1,
25194             'Package::Constants' => 1,
25195             'inc::latest' => 1,
25196             }
25197             },
25198             5.021001 => {
25199             delta_from => 5.021000,
25200             changed => {
25201             },
25202             removed => {
25203             }
25204             },
25205             5.021002 => {
25206             delta_from => 5.021001,
25207             changed => {
25208             },
25209             removed => {
25210             }
25211             },
25212             5.021003 => {
25213             delta_from => 5.021002,
25214             changed => {
25215             },
25216             removed => {
25217             }
25218             },
25219             5.020001 => {
25220             delta_from => 5.020000,
25221             changed => {
25222             },
25223             removed => {
25224             }
25225             },
25226             5.021004 => {
25227             delta_from => 5.021003,
25228             changed => {
25229             },
25230             removed => {
25231             }
25232             },
25233             5.021005 => {
25234             delta_from => 5.021004,
25235             changed => {
25236             },
25237             removed => {
25238             }
25239             },
25240             5.021006 => {
25241             delta_from => 5.021005,
25242             changed => {
25243             },
25244             removed => {
25245             }
25246             },
25247             5.021007 => {
25248             delta_from => 5.021006,
25249             changed => {
25250             },
25251             removed => {
25252             }
25253             },
25254             5.021008 => {
25255             delta_from => 5.021007,
25256             changed => {
25257             },
25258             removed => {
25259             }
25260             },
25261             5.020002 => {
25262             delta_from => 5.020001,
25263             changed => {
25264             },
25265             removed => {
25266             }
25267             },
25268             5.021009 => {
25269             delta_from => 5.021008,
25270             changed => {
25271             },
25272             removed => {
25273             }
25274             },
25275             5.021010 => {
25276             delta_from => 5.021009,
25277             changed => {
25278             },
25279             removed => {
25280             }
25281             },
25282             5.021011 => {
25283             delta_from => 5.02101,
25284             changed => {
25285             },
25286             removed => {
25287             }
25288             },
25289             5.022000 => {
25290             delta_from => 5.021011,
25291             changed => {
25292             },
25293             removed => {
25294             }
25295             },
25296             5.023000 => {
25297             delta_from => 5.022000,
25298             changed => {
25299             },
25300             removed => {
25301             }
25302             },
25303             5.023001 => {
25304             delta_from => 5.023000,
25305             changed => {
25306             },
25307             removed => {
25308             }
25309             },
25310             5.023002 => {
25311             delta_from => 5.023001,
25312             changed => {
25313             },
25314             removed => {
25315             }
25316             },
25317             5.020003 => {
25318             delta_from => 5.020002,
25319             changed => {
25320             },
25321             removed => {
25322             }
25323             },
25324             5.023003 => {
25325             delta_from => 5.023002,
25326             changed => {
25327             },
25328             removed => {
25329             }
25330             },
25331             5.023004 => {
25332             delta_from => 5.023003,
25333             changed => {
25334             },
25335             removed => {
25336             }
25337             },
25338             5.023005 => {
25339             delta_from => 5.023004,
25340             changed => {
25341             },
25342             removed => {
25343             }
25344             },
25345             5.022001 => {
25346             delta_from => 5.022,
25347             changed => {
25348             },
25349             removed => {
25350             }
25351             },
25352             5.023006 => {
25353             delta_from => 5.023005,
25354             changed => {
25355             },
25356             removed => {
25357             }
25358             },
25359             5.023007 => {
25360             delta_from => 5.023006,
25361             changed => {
25362             },
25363             removed => {
25364             }
25365             },
25366             5.023008 => {
25367             delta_from => 5.023007,
25368             changed => {
25369             },
25370             removed => {
25371             }
25372             },
25373             5.023009 => {
25374             delta_from => 5.023008,
25375             changed => {
25376             },
25377             removed => {
25378             }
25379             },
25380             5.022002 => {
25381             delta_from => 5.022001,
25382             changed => {
25383             },
25384             removed => {
25385             }
25386             },
25387             5.024000 => {
25388             delta_from => 5.023009,
25389             changed => {
25390             },
25391             removed => {
25392             }
25393             },
25394             5.025000 => {
25395             delta_from => 5.024,
25396             changed => {
25397             },
25398             removed => {
25399             }
25400             },
25401             5.025001 => {
25402             delta_from => 5.025,
25403             changed => {
25404             },
25405             removed => {
25406             }
25407             },
25408             5.025002 => {
25409             delta_from => 5.025001,
25410             changed => {
25411             },
25412             removed => {
25413             }
25414             },
25415             5.025003 => {
25416             delta_from => 5.025002,
25417             changed => {
25418             },
25419             removed => {
25420             }
25421             },
25422             5.025004 => {
25423             delta_from => 5.025003,
25424             changed => {
25425             },
25426             removed => {
25427             }
25428             },
25429             5.025005 => {
25430             delta_from => 5.025004,
25431             changed => {
25432             },
25433             removed => {
25434             }
25435             },
25436             5.025006 => {
25437             delta_from => 5.025005,
25438             changed => {
25439             },
25440             removed => {
25441             }
25442             },
25443             5.025007 => {
25444             delta_from => 5.025006,
25445             changed => {
25446             },
25447             removed => {
25448             }
25449             },
25450             5.025008 => {
25451             delta_from => 5.025007,
25452             changed => {
25453             },
25454             removed => {
25455             }
25456             },
25457             5.022003 => {
25458             delta_from => 5.022002,
25459             changed => {
25460             },
25461             removed => {
25462             }
25463             },
25464             5.024001 => {
25465             delta_from => 5.024000,
25466             changed => {
25467             },
25468             removed => {
25469             }
25470             },
25471             5.025009 => {
25472             delta_from => 5.025008,
25473             changed => {
25474             },
25475             removed => {
25476             }
25477             },
25478             5.025010 => {
25479             delta_from => 5.025009,
25480             changed => {
25481             },
25482             removed => {
25483             }
25484             },
25485             5.025011 => {
25486             delta_from => 5.025010,
25487             changed => {
25488             },
25489             removed => {
25490             }
25491             },
25492             5.025012 => {
25493             delta_from => 5.025011,
25494             changed => {
25495             },
25496             removed => {
25497             }
25498             },
25499             5.026000 => {
25500             delta_from => 5.025012,
25501             changed => {
25502             },
25503             removed => {
25504             }
25505             },
25506             5.027000 => {
25507             delta_from => 5.026,
25508             changed => {
25509             },
25510             removed => {
25511             }
25512             },
25513             5.027001 => {
25514             delta_from => 5.027,
25515             changed => {
25516             },
25517             removed => {
25518             }
25519             },
25520             5.022004 => {
25521             delta_from => 5.022003,
25522             changed => {
25523             },
25524             removed => {
25525             }
25526             },
25527             5.024002 => {
25528             delta_from => 5.024001,
25529             changed => {
25530             },
25531             removed => {
25532             }
25533             },
25534             5.027002 => {
25535             delta_from => 5.027001,
25536             changed => {
25537             },
25538             removed => {
25539             }
25540             },
25541             5.027003 => {
25542             delta_from => 5.027002,
25543             changed => {
25544             'B::Debug' => '1',
25545             },
25546             removed => {
25547             }
25548             },
25549             5.027004 => {
25550             delta_from => 5.027003,
25551             changed => {
25552             },
25553             removed => {
25554             }
25555             },
25556             5.024003 => {
25557             delta_from => 5.024002,
25558             changed => {
25559             },
25560             removed => {
25561             }
25562             },
25563             5.026001 => {
25564             delta_from => 5.026000,
25565             changed => {
25566             },
25567             removed => {
25568             }
25569             },
25570             5.027005 => {
25571             delta_from => 5.027004,
25572             changed => {
25573             },
25574             removed => {
25575             }
25576             },
25577             5.027006 => {
25578             delta_from => 5.027005,
25579             changed => {
25580             },
25581             removed => {
25582             }
25583             },
25584             5.027007 => {
25585             delta_from => 5.027006,
25586             changed => {
25587             },
25588             removed => {
25589             }
25590             },
25591             5.027008 => {
25592             delta_from => 5.027007,
25593             changed => {
25594             },
25595             removed => {
25596             }
25597             },
25598             5.027009 => {
25599             delta_from => 5.027008,
25600             changed => {
25601             },
25602             removed => {
25603             }
25604             },
25605             5.027010 => {
25606             delta_from => 5.027009,
25607             changed => {
25608             },
25609             removed => {
25610             }
25611             },
25612             5.024004 => {
25613             delta_from => 5.024003,
25614             changed => {
25615             },
25616             removed => {
25617             }
25618             },
25619             5.026002 => {
25620             delta_from => 5.026001,
25621             changed => {
25622             },
25623             removed => {
25624             }
25625             },
25626             5.027011 => {
25627             delta_from => 5.02701,
25628             changed => {
25629             },
25630             removed => {
25631             }
25632             },
25633             5.028000 => {
25634             delta_from => 5.027011,
25635             changed => {
25636             },
25637             removed => {
25638             }
25639             },
25640             5.029000 => {
25641             delta_from => 5.028,
25642             changed => {
25643             },
25644             removed => {
25645             }
25646             },
25647             5.029001 => {
25648             delta_from => 5.029,
25649             changed => {
25650             },
25651             removed => {
25652             }
25653             },
25654             5.029002 => {
25655             delta_from => 5.029001,
25656             changed => {
25657             },
25658             removed => {
25659             }
25660             },
25661             5.029003 => {
25662             delta_from => 5.029002,
25663             changed => {
25664             },
25665             removed => {
25666             }
25667             },
25668             5.029004 => {
25669             delta_from => 5.029003,
25670             changed => {
25671             },
25672             removed => {
25673             arybase => '1',
25674             }
25675             },
25676             5.029005 => {
25677             delta_from => 5.027002,
25678             changed => {
25679             },
25680             removed => {
25681             }
25682             },
25683             5.026003 => {
25684             delta_from => 5.026002,
25685             changed => {
25686             },
25687             removed => {
25688             }
25689             },
25690             5.028001 => {
25691             delta_from => 5.028000,
25692             changed => {
25693             },
25694             removed => {
25695             }
25696             },
25697             5.029006 => {
25698             delta_from => 5.029005,
25699             changed => {
25700             },
25701             removed => {
25702             }
25703             },
25704             5.029007 => {
25705             delta_from => 5.029006,
25706             changed => {
25707             },
25708             removed => {
25709             }
25710             },
25711             5.029008 => {
25712             delta_from => 5.029007,
25713             changed => {
25714             },
25715             removed => {
25716             }
25717             },
25718             5.029009 => {
25719             delta_from => 5.029008,
25720             changed => {
25721             },
25722             removed => {
25723             }
25724             },
25725             5.028002 => {
25726             delta_from => 5.028001,
25727             changed => {
25728             },
25729             removed => {
25730             }
25731             },
25732             5.029010 => {
25733             delta_from => 5.029009,
25734             changed => {
25735             },
25736             removed => {
25737             }
25738             },
25739             5.030000 => {
25740             delta_from => 5.02901,
25741             changed => {
25742             },
25743             removed => {
25744             }
25745             },
25746             5.031000 => {
25747             delta_from => 5.030000,
25748             changed => {
25749             },
25750             removed => {
25751             }
25752             },
25753             5.031001 => {
25754             delta_from => 5.031000,
25755             changed => {
25756             },
25757             removed => {
25758             }
25759             },
25760             5.031002 => {
25761             delta_from => 5.031001,
25762             changed => {
25763             },
25764             removed => {
25765             }
25766             },
25767             5.031003 => {
25768             delta_from => 5.031002,
25769             changed => {
25770             },
25771             removed => {
25772             }
25773             },
25774             5.031004 => {
25775             delta_from => 5.031003,
25776             changed => {
25777             },
25778             removed => {
25779             }
25780             },
25781             5.031005 => {
25782             delta_from => 5.031004,
25783             changed => {
25784             },
25785             removed => {
25786             }
25787             },
25788             5.030001 => {
25789             delta_from => 5.030000,
25790             changed => {
25791             },
25792             removed => {
25793             }
25794             },
25795             5.031006 => {
25796             delta_from => 5.031005,
25797             changed => {
25798             },
25799             removed => {
25800             }
25801             },
25802             5.031007 => {
25803             delta_from => 5.031006,
25804             changed => {
25805             },
25806             removed => {
25807             }
25808             },
25809             5.031008 => {
25810             delta_from => 5.031007,
25811             changed => {
25812             },
25813             removed => {
25814             }
25815             },
25816             5.031009 => {
25817             delta_from => 5.031008,
25818             changed => {
25819             },
25820             removed => {
25821             }
25822             },
25823             5.030002 => {
25824             delta_from => 5.030001,
25825             changed => {
25826             },
25827             removed => {
25828             }
25829             },
25830             5.031010 => {
25831             delta_from => 5.031009,
25832             changed => {
25833             },
25834             removed => {
25835             }
25836             },
25837             5.031011 => {
25838             delta_from => 5.03101,
25839             changed => {
25840             },
25841             removed => {
25842             }
25843             },
25844             5.028003 => {
25845             delta_from => 5.028002,
25846             changed => {
25847             },
25848             removed => {
25849             }
25850             },
25851             5.030003 => {
25852             delta_from => 5.030002,
25853             changed => {
25854             },
25855             removed => {
25856             }
25857             },
25858             5.032000 => {
25859             delta_from => 5.031011,
25860             changed => {
25861             },
25862             removed => {
25863             }
25864             },
25865             5.033000 => {
25866             delta_from => 5.032,
25867             changed => {
25868             },
25869             removed => {
25870             }
25871             },
25872             5.033001 => {
25873             delta_from => 5.033000,
25874             changed => {
25875             },
25876             removed => {
25877             }
25878             },
25879             5.033002 => {
25880             delta_from => 5.033001,
25881             changed => {
25882             },
25883             removed => {
25884             }
25885             },
25886             5.033003 => {
25887             delta_from => 5.033002,
25888             changed => {
25889             },
25890             removed => {
25891             }
25892             },
25893             5.033004 => {
25894             delta_from => 5.033003,
25895             changed => {
25896             },
25897             removed => {
25898             }
25899             },
25900             5.033005 => {
25901             delta_from => 5.033004,
25902             changed => {
25903             },
25904             removed => {
25905             }
25906             },
25907             5.033006 => {
25908             delta_from => 5.033005,
25909             changed => {
25910             },
25911             removed => {
25912             }
25913             },
25914             5.032001 => {
25915             delta_from => 5.032,
25916             changed => {
25917             },
25918             removed => {
25919             }
25920             },
25921             5.033007 => {
25922             delta_from => 5.033006,
25923             changed => {
25924             },
25925             removed => {
25926             }
25927             },
25928             5.033008 => {
25929             delta_from => 5.033007,
25930             changed => {
25931             },
25932             removed => {
25933             }
25934             },
25935             5.033009 => {
25936             delta_from => 5.033008,
25937             changed => {
25938             },
25939             removed => {
25940             }
25941             },
25942             5.034000 => {
25943             delta_from => 5.033009,
25944             changed => {
25945             },
25946             removed => {
25947             }
25948             },
25949             5.035000 => {
25950             delta_from => 5.034,
25951             changed => {
25952             },
25953             removed => {
25954             }
25955             },
25956             5.035001 => {
25957             delta_from => 5.035,
25958             changed => {
25959             },
25960             removed => {
25961             }
25962             },
25963             5.035002 => {
25964             delta_from => 5.035001,
25965             changed => {
25966             },
25967             removed => {
25968             }
25969             },
25970             5.035003 => {
25971             delta_from => 5.035002,
25972             changed => {
25973             },
25974             removed => {
25975             }
25976             },
25977             5.035004 => {
25978             delta_from => 5.035003,
25979             changed => {
25980             },
25981             removed => {
25982             }
25983             },
25984             5.035005 => {
25985             delta_from => 5.035004,
25986             changed => {
25987             },
25988             removed => {
25989             }
25990             },
25991             5.035006 => {
25992             delta_from => 5.035005,
25993             changed => {
25994             },
25995             removed => {
25996             }
25997             },
25998             5.035007 => {
25999             delta_from => 5.035006,
26000             changed => {
26001             },
26002             removed => {
26003             }
26004             },
26005             5.035008 => {
26006             delta_from => 5.035007,
26007             changed => {
26008             },
26009             removed => {
26010             }
26011             },
26012             5.035009 => {
26013             delta_from => 5.035008,
26014             changed => {
26015             },
26016             removed => {
26017             }
26018             },
26019             5.034001 => {
26020             delta_from => 5.034000,
26021             changed => {
26022             },
26023             removed => {
26024             }
26025             },
26026             5.035010 => {
26027             delta_from => 5.035009,
26028             changed => {
26029             },
26030             removed => {
26031             }
26032             },
26033             5.035011 => {
26034             delta_from => 5.035010,
26035             changed => {
26036             },
26037             removed => {
26038             }
26039             },
26040             5.036000 => {
26041             delta_from => 5.035011,
26042             changed => {
26043             },
26044             removed => {
26045             }
26046             },
26047             5.037000 => {
26048             delta_from => 5.036000,
26049             changed => {
26050             },
26051             removed => {
26052             }
26053             },
26054             5.037001 => {
26055             delta_from => 5.037000,
26056             changed => {
26057             },
26058             removed => {
26059             }
26060             },
26061             5.037002 => {
26062             delta_from => 5.037001,
26063             changed => {
26064             },
26065             removed => {
26066             }
26067             },
26068             5.037003 => {
26069             delta_from => 5.037002,
26070             changed => {
26071             },
26072             removed => {
26073             }
26074             },
26075             5.037004 => {
26076             delta_from => 5.037003,
26077             changed => {
26078             },
26079             removed => {
26080             }
26081             },
26082             5.037005 => {
26083             delta_from => 5.037004,
26084             changed => {
26085             },
26086             removed => {
26087             }
26088             },
26089             5.037006 => {
26090             delta_from => 5.037005,
26091             changed => {
26092             },
26093             removed => {
26094             }
26095             },
26096             5.037007 => {
26097             delta_from => 5.037006,
26098             changed => {
26099             },
26100             removed => {
26101             }
26102             },
26103             5.037008 => {
26104             delta_from => 5.037007,
26105             changed => {
26106             },
26107             removed => {
26108             }
26109             },
26110             5.037009 => {
26111             delta_from => 5.037008,
26112             changed => {
26113             },
26114             removed => {
26115             }
26116             },
26117             5.037010 => {
26118             delta_from => 5.037009,
26119             changed => {
26120             },
26121             removed => {
26122             }
26123             },
26124             5.037011 => {
26125             delta_from => 5.037010,
26126             changed => {
26127             },
26128             removed => {
26129             }
26130             },
26131             5.036001 => {
26132             delta_from => 5.036,
26133             changed => {
26134             },
26135             removed => {
26136             }
26137             },
26138             5.038000 => {
26139             delta_from => 5.037011,
26140             changed => {
26141             },
26142             removed => {
26143             }
26144             },
26145             5.039001 => {
26146             delta_from => 5.038,
26147             changed => {
26148             },
26149             removed => {
26150             }
26151             },
26152             5.039002 => {
26153             delta_from => 5.039001,
26154             changed => {
26155             },
26156             removed => {
26157             }
26158             },
26159             5.039003 => {
26160             delta_from => 5.039002,
26161             changed => {
26162             },
26163             removed => {
26164             }
26165             },
26166             5.039004 => {
26167             delta_from => 5.039003,
26168             changed => {
26169             },
26170             removed => {
26171             }
26172             },
26173             5.039005 => {
26174             delta_from => 5.039004,
26175             changed => {
26176             },
26177             removed => {
26178             }
26179             },
26180             5.034002 => {
26181             delta_from => 5.034001,
26182             changed => {
26183             },
26184             removed => {
26185             }
26186             },
26187             5.036002 => {
26188             delta_from => 5.036001,
26189             changed => {
26190             },
26191             removed => {
26192             }
26193             },
26194             5.038001 => {
26195             delta_from => 5.038,
26196             changed => {
26197             },
26198             removed => {
26199             }
26200             },
26201             5.034003 => {
26202             delta_from => 5.034002,
26203             changed => {
26204             },
26205             removed => {
26206             }
26207             },
26208             5.036003 => {
26209             delta_from => 5.036002,
26210             changed => {
26211             },
26212             removed => {
26213             }
26214             },
26215             5.038002 => {
26216             delta_from => 5.038001,
26217             changed => {
26218             },
26219             removed => {
26220             }
26221             },
26222             5.039006 => {
26223             delta_from => 5.039005,
26224             changed => {
26225             },
26226             removed => {
26227             }
26228             },
26229             5.039007 => {
26230             delta_from => 5.039006,
26231             changed => {
26232             },
26233             removed => {
26234             }
26235             },
26236             5.039008 => {
26237             delta_from => 5.039007,
26238             changed => {
26239             },
26240             removed => {
26241             }
26242             },
26243             5.039009 => {
26244             delta_from => 5.039008,
26245             changed => {
26246             },
26247             removed => {
26248             }
26249             },
26250             5.039010 => {
26251             delta_from => 5.039009,
26252             changed => {
26253             },
26254             removed => {
26255             }
26256             },
26257             5.040000 => {
26258             delta_from => 5.039010,
26259             changed => {
26260             },
26261             removed => {
26262             }
26263             },
26264             5.041001 => {
26265             delta_from => 5.040000,
26266             changed => {
26267             },
26268             removed => {
26269             }
26270             },
26271             5.041002 => {
26272             delta_from => 5.041001,
26273             changed => {
26274             },
26275             removed => {
26276             }
26277             },
26278             5.041003 => {
26279             delta_from => 5.041002,
26280             changed => {
26281             },
26282             removed => {
26283             }
26284             },
26285             5.041004 => {
26286             delta_from => 5.041003,
26287             changed => {
26288             },
26289             removed => {
26290             }
26291             },
26292             5.041005 => {
26293             delta_from => 5.041004,
26294             changed => {
26295             },
26296             removed => {
26297             }
26298             },
26299             5.041006 => {
26300             delta_from => 5.041005,
26301             changed => {
26302             },
26303             removed => {
26304             }
26305             },
26306             5.041007 => {
26307             delta_from => 5.041006,
26308             changed => {
26309             },
26310             removed => {
26311             }
26312             },
26313             5.038003 => {
26314             delta_from => 5.038002,
26315             changed => {
26316             },
26317             removed => {
26318             }
26319             },
26320             5.040001 => {
26321             delta_from => 5.040000,
26322             changed => {
26323             },
26324             removed => {
26325             }
26326             },
26327             5.041008 => {
26328             delta_from => 5.041007,
26329             changed => {
26330             },
26331             removed => {
26332             }
26333             },
26334             5.041009 => {
26335             delta_from => 5.041008,
26336             changed => {
26337             },
26338             removed => {
26339             }
26340             },
26341             5.041010 => {
26342             delta_from => 5.041009,
26343             changed => {
26344             },
26345             removed => {
26346             }
26347             },
26348             5.038004 => {
26349             delta_from => 5.038003,
26350             changed => {
26351             },
26352             removed => {
26353             }
26354             },
26355             5.040002 => {
26356             delta_from => 5.040001,
26357             changed => {
26358             },
26359             removed => {
26360             }
26361             },
26362             5.041011 => {
26363             delta_from => 5.041010,
26364             changed => {
26365             },
26366             removed => {
26367             }
26368             },
26369             5.041012 => {
26370             delta_from => 5.041011,
26371             changed => {
26372             },
26373             removed => {
26374             }
26375             },
26376             5.041013 => {
26377             delta_from => 5.041012,
26378             changed => {
26379             },
26380             removed => {
26381             }
26382             },
26383             5.042000 => {
26384             delta_from => 5.041013,
26385             changed => {
26386             },
26387             removed => {
26388             }
26389             },
26390             5.043000 => {
26391             delta_from => 5.042,
26392             changed => {
26393             },
26394             removed => {
26395             }
26396             },
26397             5.043001 => {
26398             delta_from => 5.043000,
26399             changed => {
26400             },
26401             removed => {
26402             }
26403             },
26404             5.038005 => {
26405             delta_from => 5.038004,
26406             changed => {
26407             },
26408             removed => {
26409             }
26410             },
26411             5.040003 => {
26412             delta_from => 5.040002,
26413             changed => {
26414             },
26415             removed => {
26416             }
26417             },
26418             5.043002 => {
26419             delta_from => 5.043001,
26420             changed => {
26421             },
26422             removed => {
26423             }
26424             },
26425             5.043003 => {
26426             delta_from => 5.043002,
26427             changed => {
26428             },
26429             removed => {
26430             }
26431             },
26432             5.043004 => {
26433             delta_from => 5.043003,
26434             changed => {
26435             },
26436             removed => {
26437             }
26438             },
26439             5.043005 => {
26440             delta_from => 5.043004,
26441             changed => {
26442             },
26443             removed => {
26444             }
26445             },
26446             5.043006 => {
26447             delta_from => 5.043005,
26448             changed => {
26449             },
26450             removed => {
26451             }
26452             },
26453             5.043007 => {
26454             delta_from => 5.043006,
26455             changed => {
26456             },
26457             removed => {
26458             }
26459             },
26460             5.043008 => {
26461             delta_from => 5.043007,
26462             changed => {
26463             },
26464             removed => {
26465             }
26466             },
26467             5.042001 => {
26468             delta_from => 5.042,
26469             changed => {
26470             },
26471             removed => {
26472             }
26473             },
26474             5.043009 => {
26475             delta_from => 5.043008,
26476             changed => {
26477             },
26478             removed => {
26479             }
26480             },
26481             5.040004 => {
26482             delta_from => 5.040003,
26483             changed => {
26484             },
26485             removed => {
26486             }
26487             },
26488             5.042002 => {
26489             delta_from => 5.042001,
26490             changed => {
26491             },
26492             removed => {
26493             }
26494             },
26495             5.043010 => {
26496             delta_from => 5.043009,
26497             changed => {
26498             },
26499             removed => {
26500             }
26501             },
26502             5.043011 => {
26503             delta_from => 5.043010,
26504             changed => {
26505             },
26506             removed => {
26507             }
26508             },
26509             );
26510              
26511             %deprecated = _undelta(\%deprecated);
26512              
26513             %upstream = (
26514             'App::Cpan' => 'cpan',
26515             'App::Prove' => 'cpan',
26516             'App::Prove::State' => 'cpan',
26517             'App::Prove::State::Result'=> 'cpan',
26518             'App::Prove::State::Result::Test'=> 'cpan',
26519             'Archive::Tar' => 'cpan',
26520             'Archive::Tar::Constant'=> 'cpan',
26521             'Archive::Tar::File' => 'cpan',
26522             'AutoLoader' => 'cpan',
26523             'AutoSplit' => 'cpan',
26524             'CPAN' => 'cpan',
26525             'CPAN::Author' => 'cpan',
26526             'CPAN::Bundle' => 'cpan',
26527             'CPAN::CacheMgr' => 'cpan',
26528             'CPAN::Complete' => 'cpan',
26529             'CPAN::Debug' => 'cpan',
26530             'CPAN::DeferredCode' => 'cpan',
26531             'CPAN::Distribution' => 'cpan',
26532             'CPAN::Distroprefs' => 'cpan',
26533             'CPAN::Distrostatus' => 'cpan',
26534             'CPAN::Exception::RecursiveDependency'=> 'cpan',
26535             'CPAN::Exception::blocked_urllist'=> 'cpan',
26536             'CPAN::Exception::yaml_not_installed'=> 'cpan',
26537             'CPAN::Exception::yaml_process_error'=> 'cpan',
26538             'CPAN::FTP' => 'cpan',
26539             'CPAN::FTP::netrc' => 'cpan',
26540             'CPAN::FirstTime' => 'cpan',
26541             'CPAN::HTTP::Client' => 'cpan',
26542             'CPAN::HTTP::Credentials'=> 'cpan',
26543             'CPAN::HandleConfig' => 'cpan',
26544             'CPAN::Index' => 'cpan',
26545             'CPAN::InfoObj' => 'cpan',
26546             'CPAN::Kwalify' => 'cpan',
26547             'CPAN::LWP::UserAgent' => 'cpan',
26548             'CPAN::Meta' => 'cpan',
26549             'CPAN::Meta::Converter' => 'cpan',
26550             'CPAN::Meta::Feature' => 'cpan',
26551             'CPAN::Meta::History' => 'cpan',
26552             'CPAN::Meta::Merge' => 'cpan',
26553             'CPAN::Meta::Prereqs' => 'cpan',
26554             'CPAN::Meta::Requirements'=> 'cpan',
26555             'CPAN::Meta::Requirements::Range'=> 'cpan',
26556             'CPAN::Meta::Spec' => 'cpan',
26557             'CPAN::Meta::Validator' => 'cpan',
26558             'CPAN::Meta::YAML' => 'cpan',
26559             'CPAN::Mirrors' => 'cpan',
26560             'CPAN::Module' => 'cpan',
26561             'CPAN::Nox' => 'cpan',
26562             'CPAN::Plugin' => 'cpan',
26563             'CPAN::Plugin::Specfile'=> 'cpan',
26564             'CPAN::Prompt' => 'cpan',
26565             'CPAN::Queue' => 'cpan',
26566             'CPAN::Shell' => 'cpan',
26567             'CPAN::Tarzip' => 'cpan',
26568             'CPAN::URL' => 'cpan',
26569             'CPAN::Version' => 'cpan',
26570             'Compress::Raw::Bzip2' => 'cpan',
26571             'Compress::Raw::Zlib' => 'cpan',
26572             'Compress::Zlib' => 'cpan',
26573             'Config::Perl::V' => 'cpan',
26574             'DB_File' => 'cpan',
26575             'Digest' => 'cpan',
26576             'Digest::MD5' => 'cpan',
26577             'Digest::SHA' => 'cpan',
26578             'Digest::base' => 'cpan',
26579             'Digest::file' => 'cpan',
26580             'Encode' => 'cpan',
26581             'Encode::Alias' => 'cpan',
26582             'Encode::Byte' => 'cpan',
26583             'Encode::CJKConstants' => 'cpan',
26584             'Encode::CN' => 'cpan',
26585             'Encode::CN::HZ' => 'cpan',
26586             'Encode::Config' => 'cpan',
26587             'Encode::EBCDIC' => 'cpan',
26588             'Encode::Encoder' => 'cpan',
26589             'Encode::Encoding' => 'cpan',
26590             'Encode::GSM0338' => 'cpan',
26591             'Encode::Guess' => 'cpan',
26592             'Encode::JP' => 'cpan',
26593             'Encode::JP::H2Z' => 'cpan',
26594             'Encode::JP::JIS7' => 'cpan',
26595             'Encode::KR' => 'cpan',
26596             'Encode::KR::2022_KR' => 'cpan',
26597             'Encode::MIME::Header' => 'cpan',
26598             'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
26599             'Encode::MIME::Name' => 'cpan',
26600             'Encode::Symbol' => 'cpan',
26601             'Encode::TW' => 'cpan',
26602             'Encode::Unicode' => 'cpan',
26603             'Encode::Unicode::UTF7' => 'cpan',
26604             'ExtUtils::Command' => 'cpan',
26605             'ExtUtils::Command::MM' => 'cpan',
26606             'ExtUtils::Constant' => 'cpan',
26607             'ExtUtils::Constant::Base'=> 'cpan',
26608             'ExtUtils::Constant::ProxySubs'=> 'cpan',
26609             'ExtUtils::Constant::Utils'=> 'cpan',
26610             'ExtUtils::Constant::XS'=> 'cpan',
26611             'ExtUtils::Install' => 'cpan',
26612             'ExtUtils::Installed' => 'cpan',
26613             'ExtUtils::Liblist' => 'cpan',
26614             'ExtUtils::Liblist::Kid'=> 'cpan',
26615             'ExtUtils::MM' => 'cpan',
26616             'ExtUtils::MM_AIX' => 'cpan',
26617             'ExtUtils::MM_Any' => 'cpan',
26618             'ExtUtils::MM_BeOS' => 'cpan',
26619             'ExtUtils::MM_Cygwin' => 'cpan',
26620             'ExtUtils::MM_DOS' => 'cpan',
26621             'ExtUtils::MM_Darwin' => 'cpan',
26622             'ExtUtils::MM_MacOS' => 'cpan',
26623             'ExtUtils::MM_NW5' => 'cpan',
26624             'ExtUtils::MM_OS2' => 'cpan',
26625             'ExtUtils::MM_OS390' => 'cpan',
26626             'ExtUtils::MM_QNX' => 'cpan',
26627             'ExtUtils::MM_UWIN' => 'cpan',
26628             'ExtUtils::MM_Unix' => 'cpan',
26629             'ExtUtils::MM_VMS' => 'cpan',
26630             'ExtUtils::MM_VOS' => 'cpan',
26631             'ExtUtils::MM_Win32' => 'cpan',
26632             'ExtUtils::MM_Win95' => 'cpan',
26633             'ExtUtils::MY' => 'cpan',
26634             'ExtUtils::MakeMaker' => 'cpan',
26635             'ExtUtils::MakeMaker::Config'=> 'cpan',
26636             'ExtUtils::MakeMaker::Locale'=> 'cpan',
26637             'ExtUtils::MakeMaker::version'=> 'cpan',
26638             'ExtUtils::MakeMaker::version::regex'=> 'cpan',
26639             'ExtUtils::Manifest' => 'cpan',
26640             'ExtUtils::Mkbootstrap' => 'cpan',
26641             'ExtUtils::Mksymlists' => 'cpan',
26642             'ExtUtils::PL2Bat' => 'cpan',
26643             'ExtUtils::Packlist' => 'cpan',
26644             'ExtUtils::testlib' => 'cpan',
26645             'Fatal' => 'cpan',
26646             'File::Fetch' => 'cpan',
26647             'File::GlobMapper' => 'cpan',
26648             'File::Path' => 'cpan',
26649             'File::Temp' => 'cpan',
26650             'Filter::Util::Call' => 'cpan',
26651             'Getopt::Long' => 'cpan',
26652             'Getopt::Long::Parser' => 'cpan',
26653             'HTTP::Tiny' => 'cpan',
26654             'IO::Compress' => 'cpan',
26655             'IO::Compress::Adapter::Bzip2'=> 'cpan',
26656             'IO::Compress::Adapter::Deflate'=> 'cpan',
26657             'IO::Compress::Adapter::Identity'=> 'cpan',
26658             'IO::Compress::Base' => 'cpan',
26659             'IO::Compress::Base::Common'=> 'cpan',
26660             'IO::Compress::Bzip2' => 'cpan',
26661             'IO::Compress::Deflate' => 'cpan',
26662             'IO::Compress::Gzip' => 'cpan',
26663             'IO::Compress::Gzip::Constants'=> 'cpan',
26664             'IO::Compress::RawDeflate'=> 'cpan',
26665             'IO::Compress::Zip' => 'cpan',
26666             'IO::Compress::Zip::Constants'=> 'cpan',
26667             'IO::Compress::Zlib::Constants'=> 'cpan',
26668             'IO::Compress::Zlib::Extra'=> 'cpan',
26669             'IO::Socket::IP' => 'cpan',
26670             'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
26671             'IO::Uncompress::Adapter::Identity'=> 'cpan',
26672             'IO::Uncompress::Adapter::Inflate'=> 'cpan',
26673             'IO::Uncompress::AnyInflate'=> 'cpan',
26674             'IO::Uncompress::AnyUncompress'=> 'cpan',
26675             'IO::Uncompress::Base' => 'cpan',
26676             'IO::Uncompress::Bunzip2'=> 'cpan',
26677             'IO::Uncompress::Gunzip'=> 'cpan',
26678             'IO::Uncompress::Inflate'=> 'cpan',
26679             'IO::Uncompress::RawInflate'=> 'cpan',
26680             'IO::Uncompress::Unzip' => 'cpan',
26681             'IO::Zlib' => 'cpan',
26682             'IPC::Cmd' => 'cpan',
26683             'IPC::Msg' => 'cpan',
26684             'IPC::Semaphore' => 'cpan',
26685             'IPC::SharedMem' => 'cpan',
26686             'IPC::SysV' => 'cpan',
26687             'JSON::PP' => 'cpan',
26688             'JSON::PP::Boolean' => 'cpan',
26689             'List::Util' => 'cpan',
26690             'List::Util::XS' => 'cpan',
26691             'Locale::Maketext::Simple'=> 'cpan',
26692             'MIME::Base64' => 'cpan',
26693             'MIME::QuotedPrint' => 'cpan',
26694             'Math::BigFloat' => 'cpan',
26695             'Math::BigFloat::Trace' => 'cpan',
26696             'Math::BigInt' => 'cpan',
26697             'Math::BigInt::Calc' => 'cpan',
26698             'Math::BigInt::FastCalc'=> 'cpan',
26699             'Math::BigInt::Lib' => 'cpan',
26700             'Math::BigInt::Trace' => 'cpan',
26701             'Math::BigRat' => 'cpan',
26702             'Math::BigRat::Trace' => 'cpan',
26703             'Memoize' => 'cpan',
26704             'Memoize::AnyDBM_File' => 'cpan',
26705             'Memoize::Expire' => 'cpan',
26706             'Memoize::NDBM_File' => 'cpan',
26707             'Memoize::SDBM_File' => 'cpan',
26708             'Memoize::Storable' => 'cpan',
26709             'Module::Load' => 'cpan',
26710             'Module::Load::Conditional'=> 'cpan',
26711             'Module::Loaded' => 'cpan',
26712             'Module::Metadata' => 'cpan',
26713             'NEXT' => 'cpan',
26714             'Net::Cmd' => 'cpan',
26715             'Net::Config' => 'cpan',
26716             'Net::Domain' => 'cpan',
26717             'Net::FTP' => 'cpan',
26718             'Net::FTP::A' => 'cpan',
26719             'Net::FTP::E' => 'cpan',
26720             'Net::FTP::I' => 'cpan',
26721             'Net::FTP::L' => 'cpan',
26722             'Net::FTP::dataconn' => 'cpan',
26723             'Net::NNTP' => 'cpan',
26724             'Net::Netrc' => 'cpan',
26725             'Net::POP3' => 'cpan',
26726             'Net::SMTP' => 'cpan',
26727             'Net::Time' => 'cpan',
26728             'Params::Check' => 'cpan',
26729             'Parse::CPAN::Meta' => 'cpan',
26730             'Perl::OSType' => 'cpan',
26731             'PerlIO::via::QuotedPrint'=> 'cpan',
26732             'Pod::Checker' => 'cpan',
26733             'Pod::Escapes' => 'cpan',
26734             'Pod::Man' => 'cpan',
26735             'Pod::ParseLink' => 'cpan',
26736             'Pod::Perldoc' => 'cpan',
26737             'Pod::Perldoc::BaseTo' => 'cpan',
26738             'Pod::Perldoc::GetOptsOO'=> 'cpan',
26739             'Pod::Perldoc::ToANSI' => 'cpan',
26740             'Pod::Perldoc::ToChecker'=> 'cpan',
26741             'Pod::Perldoc::ToMan' => 'cpan',
26742             'Pod::Perldoc::ToNroff' => 'cpan',
26743             'Pod::Perldoc::ToPod' => 'cpan',
26744             'Pod::Perldoc::ToRtf' => 'cpan',
26745             'Pod::Perldoc::ToTerm' => 'cpan',
26746             'Pod::Perldoc::ToText' => 'cpan',
26747             'Pod::Perldoc::ToTk' => 'cpan',
26748             'Pod::Perldoc::ToXml' => 'cpan',
26749             'Pod::Simple' => 'cpan',
26750             'Pod::Simple::BlackBox' => 'cpan',
26751             'Pod::Simple::Checker' => 'cpan',
26752             'Pod::Simple::Debug' => 'cpan',
26753             'Pod::Simple::DumpAsText'=> 'cpan',
26754             'Pod::Simple::DumpAsXML'=> 'cpan',
26755             'Pod::Simple::HTML' => 'cpan',
26756             'Pod::Simple::HTMLBatch'=> 'cpan',
26757             'Pod::Simple::HTMLLegacy'=> 'cpan',
26758             'Pod::Simple::JustPod' => 'cpan',
26759             'Pod::Simple::LinkSection'=> 'cpan',
26760             'Pod::Simple::Methody' => 'cpan',
26761             'Pod::Simple::Progress' => 'cpan',
26762             'Pod::Simple::PullParser'=> 'cpan',
26763             'Pod::Simple::PullParserEndToken'=> 'cpan',
26764             'Pod::Simple::PullParserStartToken'=> 'cpan',
26765             'Pod::Simple::PullParserTextToken'=> 'cpan',
26766             'Pod::Simple::PullParserToken'=> 'cpan',
26767             'Pod::Simple::RTF' => 'cpan',
26768             'Pod::Simple::Search' => 'cpan',
26769             'Pod::Simple::SimpleTree'=> 'cpan',
26770             'Pod::Simple::Text' => 'cpan',
26771             'Pod::Simple::TextContent'=> 'cpan',
26772             'Pod::Simple::TiedOutFH'=> 'cpan',
26773             'Pod::Simple::Transcode'=> 'cpan',
26774             'Pod::Simple::TranscodeDumb'=> 'cpan',
26775             'Pod::Simple::TranscodeSmart'=> 'cpan',
26776             'Pod::Simple::XHTML' => 'cpan',
26777             'Pod::Simple::XMLOutStream'=> 'cpan',
26778             'Pod::Text' => 'cpan',
26779             'Pod::Text::Color' => 'cpan',
26780             'Pod::Text::Overstrike' => 'cpan',
26781             'Pod::Text::Termcap' => 'cpan',
26782             'Pod::Usage' => 'cpan',
26783             'Scalar::List::Utils' => 'cpan',
26784             'Scalar::Util' => 'cpan',
26785             'Socket' => 'cpan',
26786             'Sub::Util' => 'cpan',
26787             'Sys::Syslog' => 'cpan',
26788             'Sys::Syslog::Win32' => 'cpan',
26789             'TAP::Base' => 'cpan',
26790             'TAP::Formatter::Base' => 'cpan',
26791             'TAP::Formatter::Color' => 'cpan',
26792             'TAP::Formatter::Console'=> 'cpan',
26793             'TAP::Formatter::Console::ParallelSession'=> 'cpan',
26794             'TAP::Formatter::Console::Session'=> 'cpan',
26795             'TAP::Formatter::File' => 'cpan',
26796             'TAP::Formatter::File::Session'=> 'cpan',
26797             'TAP::Formatter::Session'=> 'cpan',
26798             'TAP::Harness' => 'cpan',
26799             'TAP::Harness::Env' => 'cpan',
26800             'TAP::Object' => 'cpan',
26801             'TAP::Parser' => 'cpan',
26802             'TAP::Parser::Aggregator'=> 'cpan',
26803             'TAP::Parser::Grammar' => 'cpan',
26804             'TAP::Parser::Iterator' => 'cpan',
26805             'TAP::Parser::Iterator::Array'=> 'cpan',
26806             'TAP::Parser::Iterator::Process'=> 'cpan',
26807             'TAP::Parser::Iterator::Stream'=> 'cpan',
26808             'TAP::Parser::IteratorFactory'=> 'cpan',
26809             'TAP::Parser::Multiplexer'=> 'cpan',
26810             'TAP::Parser::Result' => 'cpan',
26811             'TAP::Parser::Result::Bailout'=> 'cpan',
26812             'TAP::Parser::Result::Comment'=> 'cpan',
26813             'TAP::Parser::Result::Plan'=> 'cpan',
26814             'TAP::Parser::Result::Pragma'=> 'cpan',
26815             'TAP::Parser::Result::Test'=> 'cpan',
26816             'TAP::Parser::Result::Unknown'=> 'cpan',
26817             'TAP::Parser::Result::Version'=> 'cpan',
26818             'TAP::Parser::Result::YAML'=> 'cpan',
26819             'TAP::Parser::ResultFactory'=> 'cpan',
26820             'TAP::Parser::Scheduler'=> 'cpan',
26821             'TAP::Parser::Scheduler::Job'=> 'cpan',
26822             'TAP::Parser::Scheduler::Spinner'=> 'cpan',
26823             'TAP::Parser::Source' => 'cpan',
26824             'TAP::Parser::SourceHandler'=> 'cpan',
26825             'TAP::Parser::SourceHandler::Executable'=> 'cpan',
26826             'TAP::Parser::SourceHandler::File'=> 'cpan',
26827             'TAP::Parser::SourceHandler::Handle'=> 'cpan',
26828             'TAP::Parser::SourceHandler::Perl'=> 'cpan',
26829             'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
26830             'TAP::Parser::YAMLish::Reader'=> 'cpan',
26831             'TAP::Parser::YAMLish::Writer'=> 'cpan',
26832             'Term::ANSIColor' => 'cpan',
26833             'Term::Cap' => 'cpan',
26834             'Term::Table' => 'cpan',
26835             'Term::Table::Cell' => 'cpan',
26836             'Term::Table::CellStack'=> 'cpan',
26837             'Term::Table::HashBase' => 'cpan',
26838             'Term::Table::LineBreak'=> 'cpan',
26839             'Term::Table::Spacer' => 'cpan',
26840             'Term::Table::Util' => 'cpan',
26841             'Test2' => 'cpan',
26842             'Test2::API' => 'cpan',
26843             'Test2::API::Breakage' => 'cpan',
26844             'Test2::API::Context' => 'cpan',
26845             'Test2::API::Instance' => 'cpan',
26846             'Test2::API::InterceptResult'=> 'cpan',
26847             'Test2::API::InterceptResult::Event'=> 'cpan',
26848             'Test2::API::InterceptResult::Facet'=> 'cpan',
26849             'Test2::API::InterceptResult::Hub'=> 'cpan',
26850             'Test2::API::InterceptResult::Squasher'=> 'cpan',
26851             'Test2::API::Stack' => 'cpan',
26852             'Test2::AsyncSubtest' => 'cpan',
26853             'Test2::AsyncSubtest::Event::Attach'=> 'cpan',
26854             'Test2::AsyncSubtest::Event::Detach'=> 'cpan',
26855             'Test2::AsyncSubtest::Formatter'=> 'cpan',
26856             'Test2::AsyncSubtest::Hub'=> 'cpan',
26857             'Test2::Bundle' => 'cpan',
26858             'Test2::Bundle::Extended'=> 'cpan',
26859             'Test2::Bundle::More' => 'cpan',
26860             'Test2::Bundle::Simple' => 'cpan',
26861             'Test2::Compare' => 'cpan',
26862             'Test2::Compare::Array' => 'cpan',
26863             'Test2::Compare::Bag' => 'cpan',
26864             'Test2::Compare::Base' => 'cpan',
26865             'Test2::Compare::Bool' => 'cpan',
26866             'Test2::Compare::Custom'=> 'cpan',
26867             'Test2::Compare::DeepRef'=> 'cpan',
26868             'Test2::Compare::Delta' => 'cpan',
26869             'Test2::Compare::Event' => 'cpan',
26870             'Test2::Compare::EventMeta'=> 'cpan',
26871             'Test2::Compare::Float' => 'cpan',
26872             'Test2::Compare::Hash' => 'cpan',
26873             'Test2::Compare::Isa' => 'cpan',
26874             'Test2::Compare::Meta' => 'cpan',
26875             'Test2::Compare::Negatable'=> 'cpan',
26876             'Test2::Compare::Number'=> 'cpan',
26877             'Test2::Compare::Object'=> 'cpan',
26878             'Test2::Compare::OrderedSubset'=> 'cpan',
26879             'Test2::Compare::Pattern'=> 'cpan',
26880             'Test2::Compare::Ref' => 'cpan',
26881             'Test2::Compare::Regex' => 'cpan',
26882             'Test2::Compare::Scalar'=> 'cpan',
26883             'Test2::Compare::Set' => 'cpan',
26884             'Test2::Compare::String'=> 'cpan',
26885             'Test2::Compare::Undef' => 'cpan',
26886             'Test2::Compare::Wildcard'=> 'cpan',
26887             'Test2::Env' => 'cpan',
26888             'Test2::Event' => 'cpan',
26889             'Test2::Event::Bail' => 'cpan',
26890             'Test2::Event::Diag' => 'cpan',
26891             'Test2::Event::Encoding'=> 'cpan',
26892             'Test2::Event::Exception'=> 'cpan',
26893             'Test2::Event::Fail' => 'cpan',
26894             'Test2::Event::Generic' => 'cpan',
26895             'Test2::Event::Note' => 'cpan',
26896             'Test2::Event::Ok' => 'cpan',
26897             'Test2::Event::Pass' => 'cpan',
26898             'Test2::Event::Plan' => 'cpan',
26899             'Test2::Event::Skip' => 'cpan',
26900             'Test2::Event::Subtest' => 'cpan',
26901             'Test2::Event::TAP::Version'=> 'cpan',
26902             'Test2::Event::V2' => 'cpan',
26903             'Test2::Event::Waiting' => 'cpan',
26904             'Test2::EventFacet' => 'cpan',
26905             'Test2::EventFacet::About'=> 'cpan',
26906             'Test2::EventFacet::Amnesty'=> 'cpan',
26907             'Test2::EventFacet::Assert'=> 'cpan',
26908             'Test2::EventFacet::Control'=> 'cpan',
26909             'Test2::EventFacet::Error'=> 'cpan',
26910             'Test2::EventFacet::Hub'=> 'cpan',
26911             'Test2::EventFacet::Info'=> 'cpan',
26912             'Test2::EventFacet::Info::Table'=> 'cpan',
26913             'Test2::EventFacet::Meta'=> 'cpan',
26914             'Test2::EventFacet::Parent'=> 'cpan',
26915             'Test2::EventFacet::Plan'=> 'cpan',
26916             'Test2::EventFacet::Render'=> 'cpan',
26917             'Test2::EventFacet::Trace'=> 'cpan',
26918             'Test2::Formatter' => 'cpan',
26919             'Test2::Formatter::TAP' => 'cpan',
26920             'Test2::Handle' => 'cpan',
26921             'Test2::Hub' => 'cpan',
26922             'Test2::Hub::Interceptor'=> 'cpan',
26923             'Test2::Hub::Interceptor::Terminator'=> 'cpan',
26924             'Test2::Hub::Subtest' => 'cpan',
26925             'Test2::IPC' => 'cpan',
26926             'Test2::IPC::Driver' => 'cpan',
26927             'Test2::IPC::Driver::Files'=> 'cpan',
26928             'Test2::Manual' => 'cpan',
26929             'Test2::Manual::Anatomy'=> 'cpan',
26930             'Test2::Manual::Anatomy::API'=> 'cpan',
26931             'Test2::Manual::Anatomy::Context'=> 'cpan',
26932             'Test2::Manual::Anatomy::EndToEnd'=> 'cpan',
26933             'Test2::Manual::Anatomy::Event'=> 'cpan',
26934             'Test2::Manual::Anatomy::Hubs'=> 'cpan',
26935             'Test2::Manual::Anatomy::IPC'=> 'cpan',
26936             'Test2::Manual::Anatomy::Utilities'=> 'cpan',
26937             'Test2::Manual::Concurrency'=> 'cpan',
26938             'Test2::Manual::Contributing'=> 'cpan',
26939             'Test2::Manual::Testing'=> 'cpan',
26940             'Test2::Manual::Testing::Introduction'=> 'cpan',
26941             'Test2::Manual::Testing::Migrating'=> 'cpan',
26942             'Test2::Manual::Testing::Planning'=> 'cpan',
26943             'Test2::Manual::Testing::Todo'=> 'cpan',
26944             'Test2::Manual::Tooling'=> 'cpan',
26945             'Test2::Manual::Tooling::FirstTool'=> 'cpan',
26946             'Test2::Manual::Tooling::Formatter'=> 'cpan',
26947             'Test2::Manual::Tooling::Nesting'=> 'cpan',
26948             'Test2::Manual::Tooling::Plugin::TestExit'=> 'cpan',
26949             'Test2::Manual::Tooling::Plugin::TestingDone'=> 'cpan',
26950             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> 'cpan',
26951             'Test2::Manual::Tooling::Plugin::ToolStarts'=> 'cpan',
26952             'Test2::Manual::Tooling::Subtest'=> 'cpan',
26953             'Test2::Manual::Tooling::TestBuilder'=> 'cpan',
26954             'Test2::Manual::Tooling::Testing'=> 'cpan',
26955             'Test2::Mock' => 'cpan',
26956             'Test2::Plugin' => 'cpan',
26957             'Test2::Plugin::BailOnFail'=> 'cpan',
26958             'Test2::Plugin::DieOnFail'=> 'cpan',
26959             'Test2::Plugin::ExitSummary'=> 'cpan',
26960             'Test2::Plugin::SRand' => 'cpan',
26961             'Test2::Plugin::Times' => 'cpan',
26962             'Test2::Plugin::UTF8' => 'cpan',
26963             'Test2::Require' => 'cpan',
26964             'Test2::Require::AuthorTesting'=> 'cpan',
26965             'Test2::Require::AutomatedTesting'=> 'cpan',
26966             'Test2::Require::EnvVar'=> 'cpan',
26967             'Test2::Require::ExtendedTesting'=> 'cpan',
26968             'Test2::Require::Fork' => 'cpan',
26969             'Test2::Require::Module'=> 'cpan',
26970             'Test2::Require::NonInteractiveTesting'=> 'cpan',
26971             'Test2::Require::Perl' => 'cpan',
26972             'Test2::Require::RealFork'=> 'cpan',
26973             'Test2::Require::ReleaseTesting'=> 'cpan',
26974             'Test2::Require::Threads'=> 'cpan',
26975             'Test2::Suite' => 'cpan',
26976             'Test2::Todo' => 'cpan',
26977             'Test2::Tools' => 'cpan',
26978             'Test2::Tools::AsyncSubtest'=> 'cpan',
26979             'Test2::Tools::Basic' => 'cpan',
26980             'Test2::Tools::Class' => 'cpan',
26981             'Test2::Tools::ClassicCompare'=> 'cpan',
26982             'Test2::Tools::Compare' => 'cpan',
26983             'Test2::Tools::Defer' => 'cpan',
26984             'Test2::Tools::Encoding'=> 'cpan',
26985             'Test2::Tools::Event' => 'cpan',
26986             'Test2::Tools::Exception'=> 'cpan',
26987             'Test2::Tools::Exports' => 'cpan',
26988             'Test2::Tools::GenTemp' => 'cpan',
26989             'Test2::Tools::Grab' => 'cpan',
26990             'Test2::Tools::Mock' => 'cpan',
26991             'Test2::Tools::Ref' => 'cpan',
26992             'Test2::Tools::Refcount'=> 'cpan',
26993             'Test2::Tools::Spec' => 'cpan',
26994             'Test2::Tools::Subtest' => 'cpan',
26995             'Test2::Tools::Target' => 'cpan',
26996             'Test2::Tools::Tester' => 'cpan',
26997             'Test2::Tools::Tiny' => 'cpan',
26998             'Test2::Tools::Warnings'=> 'cpan',
26999             'Test2::Util' => 'cpan',
27000             'Test2::Util::ExternalMeta'=> 'cpan',
27001             'Test2::Util::Facets2Legacy'=> 'cpan',
27002             'Test2::Util::Grabber' => 'cpan',
27003             'Test2::Util::Guard' => 'cpan',
27004             'Test2::Util::HashBase' => 'cpan',
27005             'Test2::Util::Importer' => 'cpan',
27006             'Test2::Util::Ref' => 'cpan',
27007             'Test2::Util::Sig' => 'cpan',
27008             'Test2::Util::Stash' => 'cpan',
27009             'Test2::Util::Sub' => 'cpan',
27010             'Test2::Util::Table' => 'cpan',
27011             'Test2::Util::Table::Cell'=> 'cpan',
27012             'Test2::Util::Table::LineBreak'=> 'cpan',
27013             'Test2::Util::Term' => 'cpan',
27014             'Test2::Util::Times' => 'cpan',
27015             'Test2::Util::Trace' => 'cpan',
27016             'Test2::V0' => 'cpan',
27017             'Test2::V1' => 'cpan',
27018             'Test2::V1::Base' => 'cpan',
27019             'Test2::V1::Handle' => 'cpan',
27020             'Test2::Workflow' => 'cpan',
27021             'Test2::Workflow::BlockBase'=> 'cpan',
27022             'Test2::Workflow::Build'=> 'cpan',
27023             'Test2::Workflow::Runner'=> 'cpan',
27024             'Test2::Workflow::Task' => 'cpan',
27025             'Test2::Workflow::Task::Action'=> 'cpan',
27026             'Test2::Workflow::Task::Group'=> 'cpan',
27027             'Test::Builder' => 'cpan',
27028             'Test::Builder::Formatter'=> 'cpan',
27029             'Test::Builder::Module' => 'cpan',
27030             'Test::Builder::Tester' => 'cpan',
27031             'Test::Builder::Tester::Color'=> 'cpan',
27032             'Test::Builder::TodoDiag'=> 'cpan',
27033             'Test::Harness' => 'cpan',
27034             'Test::More' => 'cpan',
27035             'Test::Simple' => 'cpan',
27036             'Test::Tester' => 'cpan',
27037             'Test::Tester::Capture' => 'cpan',
27038             'Test::Tester::CaptureRunner'=> 'cpan',
27039             'Test::Tester::Delegate'=> 'cpan',
27040             'Test::use::ok' => 'cpan',
27041             'Text::Balanced' => 'cpan',
27042             'Text::ParseWords' => 'cpan',
27043             'Text::Tabs' => 'cpan',
27044             'Text::Wrap' => 'cpan',
27045             'Tie::RefHash' => 'cpan',
27046             'Time::Local' => 'cpan',
27047             'Time::Piece' => 'cpan',
27048             'Time::Seconds' => 'cpan',
27049             'Unicode::Collate' => 'cpan',
27050             'Unicode::Collate::CJK::Big5'=> 'cpan',
27051             'Unicode::Collate::CJK::GB2312'=> 'cpan',
27052             'Unicode::Collate::CJK::JISX0208'=> 'cpan',
27053             'Unicode::Collate::CJK::Korean'=> 'cpan',
27054             'Unicode::Collate::CJK::Pinyin'=> 'cpan',
27055             'Unicode::Collate::CJK::Stroke'=> 'cpan',
27056             'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
27057             'Unicode::Collate::Locale'=> 'cpan',
27058             'Win32' => 'cpan',
27059             'Win32API::File' => 'cpan',
27060             'autodie' => 'cpan',
27061             'autodie::Scope::Guard' => 'cpan',
27062             'autodie::Scope::GuardStack'=> 'cpan',
27063             'autodie::Util' => 'cpan',
27064             'autodie::exception' => 'cpan',
27065             'autodie::exception::system'=> 'cpan',
27066             'autodie::hints' => 'cpan',
27067             'autodie::skip' => 'cpan',
27068             'bigfloat' => 'cpan',
27069             'bigint' => 'cpan',
27070             'bignum' => 'cpan',
27071             'bigrat' => 'cpan',
27072             'encoding' => 'cpan',
27073             'experimental' => 'cpan',
27074             'ok' => 'cpan',
27075             'parent' => 'cpan',
27076             'perlfaq' => 'cpan',
27077             'stable' => 'cpan',
27078             'version' => 'cpan',
27079             'version::regex' => 'cpan',
27080             );
27081              
27082             %bug_tracker = (
27083             'App::Cpan' => undef,
27084             'App::Prove' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27085             'App::Prove::State' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27086             'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27087             'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27088             'Archive::Tar' => undef,
27089             'Archive::Tar::Constant'=> undef,
27090             'Archive::Tar::File' => undef,
27091             'CPAN' => undef,
27092             'CPAN::Author' => undef,
27093             'CPAN::Bundle' => undef,
27094             'CPAN::CacheMgr' => undef,
27095             'CPAN::Complete' => undef,
27096             'CPAN::Debug' => undef,
27097             'CPAN::DeferredCode' => undef,
27098             'CPAN::Distribution' => undef,
27099             'CPAN::Distroprefs' => undef,
27100             'CPAN::Distrostatus' => undef,
27101             'CPAN::Exception::RecursiveDependency'=> undef,
27102             'CPAN::Exception::blocked_urllist'=> undef,
27103             'CPAN::Exception::yaml_not_installed'=> undef,
27104             'CPAN::Exception::yaml_process_error'=> undef,
27105             'CPAN::FTP' => undef,
27106             'CPAN::FTP::netrc' => undef,
27107             'CPAN::FirstTime' => undef,
27108             'CPAN::HTTP::Client' => undef,
27109             'CPAN::HTTP::Credentials'=> undef,
27110             'CPAN::HandleConfig' => undef,
27111             'CPAN::Index' => undef,
27112             'CPAN::InfoObj' => undef,
27113             'CPAN::Kwalify' => undef,
27114             'CPAN::LWP::UserAgent' => undef,
27115             'CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27116             'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27117             'CPAN::Meta::Feature' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27118             'CPAN::Meta::History' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27119             'CPAN::Meta::Merge' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27120             'CPAN::Meta::Prereqs' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27121             'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
27122             'CPAN::Meta::Requirements::Range'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
27123             'CPAN::Meta::Spec' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27124             'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27125             'CPAN::Meta::YAML' => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
27126             'CPAN::Mirrors' => undef,
27127             'CPAN::Module' => undef,
27128             'CPAN::Nox' => undef,
27129             'CPAN::Plugin' => undef,
27130             'CPAN::Plugin::Specfile'=> undef,
27131             'CPAN::Prompt' => undef,
27132             'CPAN::Queue' => undef,
27133             'CPAN::Shell' => undef,
27134             'CPAN::Tarzip' => undef,
27135             'CPAN::URL' => undef,
27136             'CPAN::Version' => undef,
27137             'Compress::Raw::Bzip2' => 'https://github.com/pmqs/Compress-Raw-Bzip2/issues',
27138             'Compress::Raw::Zlib' => 'https://github.com/pmqs/Compress-Raw-Zlib/issues',
27139             'Compress::Zlib' => 'https://github.com/pmqs/IO-Compress/issues',
27140             'Config::Perl::V' => 'https://github.com/Tux/Config-Perl-V/issues',
27141             'DB_File' => 'https://github.com/pmqs/DB_File/issues',
27142             'Digest' => 'https://github.com/Dual-Life/digest/issues',
27143             'Digest::MD5' => 'https://github.com/Dual-Life/digest-md5/issues',
27144             'Digest::SHA' => undef,
27145             'Digest::base' => 'https://github.com/Dual-Life/digest/issues',
27146             'Digest::file' => 'https://github.com/Dual-Life/digest/issues',
27147             'Encode' => undef,
27148             'Encode::Alias' => undef,
27149             'Encode::Byte' => undef,
27150             'Encode::CJKConstants' => undef,
27151             'Encode::CN' => undef,
27152             'Encode::CN::HZ' => undef,
27153             'Encode::Config' => undef,
27154             'Encode::EBCDIC' => undef,
27155             'Encode::Encoder' => undef,
27156             'Encode::Encoding' => undef,
27157             'Encode::GSM0338' => undef,
27158             'Encode::Guess' => undef,
27159             'Encode::JP' => undef,
27160             'Encode::JP::H2Z' => undef,
27161             'Encode::JP::JIS7' => undef,
27162             'Encode::KR' => undef,
27163             'Encode::KR::2022_KR' => undef,
27164             'Encode::MIME::Header' => undef,
27165             'Encode::MIME::Header::ISO_2022_JP'=> undef,
27166             'Encode::MIME::Name' => undef,
27167             'Encode::Symbol' => undef,
27168             'Encode::TW' => undef,
27169             'Encode::Unicode' => undef,
27170             'Encode::Unicode::UTF7' => undef,
27171             'ExtUtils::Command' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27172             'ExtUtils::Command::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27173             'ExtUtils::Constant' => undef,
27174             'ExtUtils::Constant::Base'=> undef,
27175             'ExtUtils::Constant::ProxySubs'=> undef,
27176             'ExtUtils::Constant::Utils'=> undef,
27177             'ExtUtils::Constant::XS'=> undef,
27178             'ExtUtils::Install' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
27179             'ExtUtils::Installed' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
27180             'ExtUtils::Liblist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27181             'ExtUtils::Liblist::Kid'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27182             'ExtUtils::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27183             'ExtUtils::MM_AIX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27184             'ExtUtils::MM_Any' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27185             'ExtUtils::MM_BeOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27186             'ExtUtils::MM_Cygwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27187             'ExtUtils::MM_DOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27188             'ExtUtils::MM_Darwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27189             'ExtUtils::MM_MacOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27190             'ExtUtils::MM_NW5' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27191             'ExtUtils::MM_OS2' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27192             'ExtUtils::MM_OS390' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27193             'ExtUtils::MM_QNX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27194             'ExtUtils::MM_UWIN' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27195             'ExtUtils::MM_Unix' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27196             'ExtUtils::MM_VMS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27197             'ExtUtils::MM_VOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27198             'ExtUtils::MM_Win32' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27199             'ExtUtils::MM_Win95' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27200             'ExtUtils::MY' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27201             'ExtUtils::MakeMaker' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27202             'ExtUtils::MakeMaker::Config'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27203             'ExtUtils::MakeMaker::Locale'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27204             'ExtUtils::MakeMaker::version'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27205             'ExtUtils::MakeMaker::version::regex'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27206             'ExtUtils::Manifest' => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
27207             'ExtUtils::Mkbootstrap' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27208             'ExtUtils::Mksymlists' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27209             'ExtUtils::PL2Bat' => 'https://github.com/Perl-Toolchain-Gang/extutils-pl2bat/issues',
27210             'ExtUtils::Packlist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
27211             'ExtUtils::testlib' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27212             'Fatal' => 'https://github.com/pjf/autodie/issues',
27213             'File::Fetch' => undef,
27214             'File::GlobMapper' => 'https://github.com/pmqs/IO-Compress/issues',
27215             'File::Path' => undef,
27216             'File::Temp' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
27217             'Filter::Util::Call' => undef,
27218             'Getopt::Long' => 'https://github.com/sciurius/perl-Getopt-Long/issues',
27219             'Getopt::Long::Parser' => 'https://github.com/sciurius/perl-Getopt-Long/issues',
27220             'HTTP::Tiny' => 'https://github.com/Perl-Toolchain-Gang/HTTP-Tiny/issues',
27221             'IO::Compress' => 'https://github.com/pmqs/IO-Compress/issues',
27222             'IO::Compress::Adapter::Bzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
27223             'IO::Compress::Adapter::Deflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27224             'IO::Compress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
27225             'IO::Compress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
27226             'IO::Compress::Base::Common'=> 'https://github.com/pmqs/IO-Compress/issues',
27227             'IO::Compress::Bzip2' => 'https://github.com/pmqs/IO-Compress/issues',
27228             'IO::Compress::Deflate' => 'https://github.com/pmqs/IO-Compress/issues',
27229             'IO::Compress::Gzip' => 'https://github.com/pmqs/IO-Compress/issues',
27230             'IO::Compress::Gzip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
27231             'IO::Compress::RawDeflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27232             'IO::Compress::Zip' => 'https://github.com/pmqs/IO-Compress/issues',
27233             'IO::Compress::Zip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
27234             'IO::Compress::Zlib::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
27235             'IO::Compress::Zlib::Extra'=> 'https://github.com/pmqs/IO-Compress/issues',
27236             'IO::Socket::IP' => undef,
27237             'IO::Uncompress::Adapter::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
27238             'IO::Uncompress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
27239             'IO::Uncompress::Adapter::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27240             'IO::Uncompress::AnyInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27241             'IO::Uncompress::AnyUncompress'=> 'https://github.com/pmqs/IO-Compress/issues',
27242             'IO::Uncompress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
27243             'IO::Uncompress::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
27244             'IO::Uncompress::Gunzip'=> 'https://github.com/pmqs/IO-Compress/issues',
27245             'IO::Uncompress::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27246             'IO::Uncompress::RawInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27247             'IO::Uncompress::Unzip' => 'https://github.com/pmqs/IO-Compress/issues',
27248             'IO::Zlib' => 'https://github.com/tomhughes/IO-Zlib/issues',
27249             'IPC::Cmd' => undef,
27250             'IPC::Msg' => undef,
27251             'IPC::Semaphore' => undef,
27252             'IPC::SharedMem' => undef,
27253             'IPC::SysV' => undef,
27254             'JSON::PP' => 'https://github.com/makamaka/JSON-PP/issues',
27255             'JSON::PP::Boolean' => 'https://github.com/makamaka/JSON-PP/issues',
27256             'List::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27257             'List::Util::XS' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27258             'Locale::Maketext::Simple'=> undef,
27259             'MIME::Base64' => 'https://github.com/Dual-Life/mime-base64/issues',
27260             'MIME::QuotedPrint' => 'https://github.com/Dual-Life/mime-base64/issues',
27261             'Math::BigFloat' => undef,
27262             'Math::BigFloat::Trace' => undef,
27263             'Math::BigInt' => undef,
27264             'Math::BigInt::Calc' => undef,
27265             'Math::BigInt::FastCalc'=> undef,
27266             'Math::BigInt::Lib' => undef,
27267             'Math::BigInt::Trace' => undef,
27268             'Math::BigRat' => undef,
27269             'Math::BigRat::Trace' => undef,
27270             'Memoize' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27271             'Memoize::AnyDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27272             'Memoize::Expire' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27273             'Memoize::NDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27274             'Memoize::SDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27275             'Memoize::Storable' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27276             'Module::Load' => undef,
27277             'Module::Load::Conditional'=> undef,
27278             'Module::Loaded' => undef,
27279             'Module::Metadata' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
27280             'NEXT' => undef,
27281             'Net::Cmd' => undef,
27282             'Net::Config' => undef,
27283             'Net::Domain' => undef,
27284             'Net::FTP' => undef,
27285             'Net::FTP::A' => undef,
27286             'Net::FTP::E' => undef,
27287             'Net::FTP::I' => undef,
27288             'Net::FTP::L' => undef,
27289             'Net::FTP::dataconn' => undef,
27290             'Net::NNTP' => undef,
27291             'Net::Netrc' => undef,
27292             'Net::POP3' => undef,
27293             'Net::SMTP' => undef,
27294             'Net::Time' => undef,
27295             'Params::Check' => undef,
27296             'Parse::CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27297             'Perl::OSType' => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
27298             'PerlIO::via::QuotedPrint'=> undef,
27299             'Pod::Checker' => undef,
27300             'Pod::Escapes' => undef,
27301             'Pod::Man' => 'https://github.com/rra/podlators/issues',
27302             'Pod::ParseLink' => 'https://github.com/rra/podlators/issues',
27303             'Pod::Perldoc' => undef,
27304             'Pod::Perldoc::BaseTo' => undef,
27305             'Pod::Perldoc::GetOptsOO'=> undef,
27306             'Pod::Perldoc::ToANSI' => undef,
27307             'Pod::Perldoc::ToChecker'=> undef,
27308             'Pod::Perldoc::ToMan' => undef,
27309             'Pod::Perldoc::ToNroff' => undef,
27310             'Pod::Perldoc::ToPod' => undef,
27311             'Pod::Perldoc::ToRtf' => undef,
27312             'Pod::Perldoc::ToTerm' => undef,
27313             'Pod::Perldoc::ToText' => undef,
27314             'Pod::Perldoc::ToTk' => undef,
27315             'Pod::Perldoc::ToXml' => undef,
27316             'Pod::Simple' => 'https://github.com/perl-pod/pod-simple/issues',
27317             'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
27318             'Pod::Simple::Checker' => 'https://github.com/perl-pod/pod-simple/issues',
27319             'Pod::Simple::Debug' => 'https://github.com/perl-pod/pod-simple/issues',
27320             'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
27321             'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
27322             'Pod::Simple::HTML' => 'https://github.com/perl-pod/pod-simple/issues',
27323             'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
27324             'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
27325             'Pod::Simple::JustPod' => 'https://github.com/perl-pod/pod-simple/issues',
27326             'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
27327             'Pod::Simple::Methody' => 'https://github.com/perl-pod/pod-simple/issues',
27328             'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
27329             'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
27330             'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27331             'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27332             'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27333             'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27334             'Pod::Simple::RTF' => 'https://github.com/perl-pod/pod-simple/issues',
27335             'Pod::Simple::Search' => 'https://github.com/perl-pod/pod-simple/issues',
27336             'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
27337             'Pod::Simple::Text' => 'https://github.com/perl-pod/pod-simple/issues',
27338             'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
27339             'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
27340             'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
27341             'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
27342             'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
27343             'Pod::Simple::XHTML' => 'https://github.com/perl-pod/pod-simple/issues',
27344             'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
27345             'Pod::Text' => 'https://github.com/rra/podlators/issues',
27346             'Pod::Text::Color' => 'https://github.com/rra/podlators/issues',
27347             'Pod::Text::Overstrike' => 'https://github.com/rra/podlators/issues',
27348             'Pod::Text::Termcap' => 'https://github.com/rra/podlators/issues',
27349             'Pod::Usage' => 'https://github.com/Dual-Life/Pod-Usage/issues',
27350             'Scalar::List::Utils' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27351             'Scalar::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27352             'Socket' => undef,
27353             'Sub::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27354             'Sys::Syslog' => undef,
27355             'Sys::Syslog::Win32' => undef,
27356             'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27357             'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27358             'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27359             'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27360             'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27361             'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27362             'TAP::Formatter::File' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27363             'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27364             'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27365             'TAP::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27366             'TAP::Harness::Env' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27367             'TAP::Object' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27368             'TAP::Parser' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27369             'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27370             'TAP::Parser::Grammar' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27371             'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27372             'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27373             'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27374             'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27375             'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27376             'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27377             'TAP::Parser::Result' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27378             'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27379             'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27380             'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27381             'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27382             'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27383             'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27384             'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27385             'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27386             'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27387             'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27388             'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27389             'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27390             'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27391             'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27392             'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27393             'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27394             'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27395             'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27396             'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27397             'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27398             'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27399             'Term::ANSIColor' => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor',
27400             'Term::Cap' => undef,
27401             'Term::Table' => 'http://github.com/exodist/Term-Table/issues',
27402             'Term::Table::Cell' => 'http://github.com/exodist/Term-Table/issues',
27403             'Term::Table::CellStack'=> 'http://github.com/exodist/Term-Table/issues',
27404             'Term::Table::HashBase' => 'http://github.com/exodist/Term-Table/issues',
27405             'Term::Table::LineBreak'=> 'http://github.com/exodist/Term-Table/issues',
27406             'Term::Table::Spacer' => 'http://github.com/exodist/Term-Table/issues',
27407             'Term::Table::Util' => 'http://github.com/exodist/Term-Table/issues',
27408             'Test2' => 'https://github.com/Test-More/test-more/issues',
27409             'Test2::API' => 'https://github.com/Test-More/test-more/issues',
27410             'Test2::API::Breakage' => 'https://github.com/Test-More/test-more/issues',
27411             'Test2::API::Context' => 'https://github.com/Test-More/test-more/issues',
27412             'Test2::API::Instance' => 'https://github.com/Test-More/test-more/issues',
27413             'Test2::API::InterceptResult'=> 'https://github.com/Test-More/test-more/issues',
27414             'Test2::API::InterceptResult::Event'=> 'https://github.com/Test-More/test-more/issues',
27415             'Test2::API::InterceptResult::Facet'=> 'https://github.com/Test-More/test-more/issues',
27416             'Test2::API::InterceptResult::Hub'=> 'https://github.com/Test-More/test-more/issues',
27417             'Test2::API::InterceptResult::Squasher'=> 'https://github.com/Test-More/test-more/issues',
27418             'Test2::API::Stack' => 'https://github.com/Test-More/test-more/issues',
27419             'Test2::AsyncSubtest' => 'https://github.com/Test-More/test-more/issues',
27420             'Test2::AsyncSubtest::Event::Attach'=> 'https://github.com/Test-More/test-more/issues',
27421             'Test2::AsyncSubtest::Event::Detach'=> 'https://github.com/Test-More/test-more/issues',
27422             'Test2::AsyncSubtest::Formatter'=> 'https://github.com/Test-More/test-more/issues',
27423             'Test2::AsyncSubtest::Hub'=> 'https://github.com/Test-More/test-more/issues',
27424             'Test2::Bundle' => 'https://github.com/Test-More/test-more/issues',
27425             'Test2::Bundle::Extended'=> 'https://github.com/Test-More/test-more/issues',
27426             'Test2::Bundle::More' => 'https://github.com/Test-More/test-more/issues',
27427             'Test2::Bundle::Simple' => 'https://github.com/Test-More/test-more/issues',
27428             'Test2::Compare' => 'https://github.com/Test-More/test-more/issues',
27429             'Test2::Compare::Array' => 'https://github.com/Test-More/test-more/issues',
27430             'Test2::Compare::Bag' => 'https://github.com/Test-More/test-more/issues',
27431             'Test2::Compare::Base' => 'https://github.com/Test-More/test-more/issues',
27432             'Test2::Compare::Bool' => 'https://github.com/Test-More/test-more/issues',
27433             'Test2::Compare::Custom'=> 'https://github.com/Test-More/test-more/issues',
27434             'Test2::Compare::DeepRef'=> 'https://github.com/Test-More/test-more/issues',
27435             'Test2::Compare::Delta' => 'https://github.com/Test-More/test-more/issues',
27436             'Test2::Compare::Event' => 'https://github.com/Test-More/test-more/issues',
27437             'Test2::Compare::EventMeta'=> 'https://github.com/Test-More/test-more/issues',
27438             'Test2::Compare::Float' => 'https://github.com/Test-More/test-more/issues',
27439             'Test2::Compare::Hash' => 'https://github.com/Test-More/test-more/issues',
27440             'Test2::Compare::Isa' => 'https://github.com/Test-More/test-more/issues',
27441             'Test2::Compare::Meta' => 'https://github.com/Test-More/test-more/issues',
27442             'Test2::Compare::Negatable'=> 'https://github.com/Test-More/test-more/issues',
27443             'Test2::Compare::Number'=> 'https://github.com/Test-More/test-more/issues',
27444             'Test2::Compare::Object'=> 'https://github.com/Test-More/test-more/issues',
27445             'Test2::Compare::OrderedSubset'=> 'https://github.com/Test-More/test-more/issues',
27446             'Test2::Compare::Pattern'=> 'https://github.com/Test-More/test-more/issues',
27447             'Test2::Compare::Ref' => 'https://github.com/Test-More/test-more/issues',
27448             'Test2::Compare::Regex' => 'https://github.com/Test-More/test-more/issues',
27449             'Test2::Compare::Scalar'=> 'https://github.com/Test-More/test-more/issues',
27450             'Test2::Compare::Set' => 'https://github.com/Test-More/test-more/issues',
27451             'Test2::Compare::String'=> 'https://github.com/Test-More/test-more/issues',
27452             'Test2::Compare::Undef' => 'https://github.com/Test-More/test-more/issues',
27453             'Test2::Compare::Wildcard'=> 'https://github.com/Test-More/test-more/issues',
27454             'Test2::Env' => 'https://github.com/Test-More/test-more/issues',
27455             'Test2::Event' => 'https://github.com/Test-More/test-more/issues',
27456             'Test2::Event::Bail' => 'https://github.com/Test-More/test-more/issues',
27457             'Test2::Event::Diag' => 'https://github.com/Test-More/test-more/issues',
27458             'Test2::Event::Encoding'=> 'https://github.com/Test-More/test-more/issues',
27459             'Test2::Event::Exception'=> 'https://github.com/Test-More/test-more/issues',
27460             'Test2::Event::Fail' => 'https://github.com/Test-More/test-more/issues',
27461             'Test2::Event::Generic' => 'https://github.com/Test-More/test-more/issues',
27462             'Test2::Event::Note' => 'https://github.com/Test-More/test-more/issues',
27463             'Test2::Event::Ok' => 'https://github.com/Test-More/test-more/issues',
27464             'Test2::Event::Pass' => 'https://github.com/Test-More/test-more/issues',
27465             'Test2::Event::Plan' => 'https://github.com/Test-More/test-more/issues',
27466             'Test2::Event::Skip' => 'https://github.com/Test-More/test-more/issues',
27467             'Test2::Event::Subtest' => 'https://github.com/Test-More/test-more/issues',
27468             'Test2::Event::TAP::Version'=> 'https://github.com/Test-More/test-more/issues',
27469             'Test2::Event::V2' => 'https://github.com/Test-More/test-more/issues',
27470             'Test2::Event::Waiting' => 'https://github.com/Test-More/test-more/issues',
27471             'Test2::EventFacet' => 'https://github.com/Test-More/test-more/issues',
27472             'Test2::EventFacet::About'=> 'https://github.com/Test-More/test-more/issues',
27473             'Test2::EventFacet::Amnesty'=> 'https://github.com/Test-More/test-more/issues',
27474             'Test2::EventFacet::Assert'=> 'https://github.com/Test-More/test-more/issues',
27475             'Test2::EventFacet::Control'=> 'https://github.com/Test-More/test-more/issues',
27476             'Test2::EventFacet::Error'=> 'https://github.com/Test-More/test-more/issues',
27477             'Test2::EventFacet::Hub'=> 'https://github.com/Test-More/test-more/issues',
27478             'Test2::EventFacet::Info'=> 'https://github.com/Test-More/test-more/issues',
27479             'Test2::EventFacet::Info::Table'=> 'https://github.com/Test-More/test-more/issues',
27480             'Test2::EventFacet::Meta'=> 'https://github.com/Test-More/test-more/issues',
27481             'Test2::EventFacet::Parent'=> 'https://github.com/Test-More/test-more/issues',
27482             'Test2::EventFacet::Plan'=> 'https://github.com/Test-More/test-more/issues',
27483             'Test2::EventFacet::Render'=> 'https://github.com/Test-More/test-more/issues',
27484             'Test2::EventFacet::Trace'=> 'https://github.com/Test-More/test-more/issues',
27485             'Test2::Formatter' => 'https://github.com/Test-More/test-more/issues',
27486             'Test2::Formatter::TAP' => 'https://github.com/Test-More/test-more/issues',
27487             'Test2::Handle' => 'https://github.com/Test-More/test-more/issues',
27488             'Test2::Hub' => 'https://github.com/Test-More/test-more/issues',
27489             'Test2::Hub::Interceptor'=> 'https://github.com/Test-More/test-more/issues',
27490             'Test2::Hub::Interceptor::Terminator'=> 'https://github.com/Test-More/test-more/issues',
27491             'Test2::Hub::Subtest' => 'https://github.com/Test-More/test-more/issues',
27492             'Test2::IPC' => 'https://github.com/Test-More/test-more/issues',
27493             'Test2::IPC::Driver' => 'https://github.com/Test-More/test-more/issues',
27494             'Test2::IPC::Driver::Files'=> 'https://github.com/Test-More/test-more/issues',
27495             'Test2::Manual' => 'https://github.com/Test-More/test-more/issues',
27496             'Test2::Manual::Anatomy'=> 'https://github.com/Test-More/test-more/issues',
27497             'Test2::Manual::Anatomy::API'=> 'https://github.com/Test-More/test-more/issues',
27498             'Test2::Manual::Anatomy::Context'=> 'https://github.com/Test-More/test-more/issues',
27499             'Test2::Manual::Anatomy::EndToEnd'=> 'https://github.com/Test-More/test-more/issues',
27500             'Test2::Manual::Anatomy::Event'=> 'https://github.com/Test-More/test-more/issues',
27501             'Test2::Manual::Anatomy::Hubs'=> 'https://github.com/Test-More/test-more/issues',
27502             'Test2::Manual::Anatomy::IPC'=> 'https://github.com/Test-More/test-more/issues',
27503             'Test2::Manual::Anatomy::Utilities'=> 'https://github.com/Test-More/test-more/issues',
27504             'Test2::Manual::Concurrency'=> 'https://github.com/Test-More/test-more/issues',
27505             'Test2::Manual::Contributing'=> 'https://github.com/Test-More/test-more/issues',
27506             'Test2::Manual::Testing'=> 'https://github.com/Test-More/test-more/issues',
27507             'Test2::Manual::Testing::Introduction'=> 'https://github.com/Test-More/test-more/issues',
27508             'Test2::Manual::Testing::Migrating'=> 'https://github.com/Test-More/test-more/issues',
27509             'Test2::Manual::Testing::Planning'=> 'https://github.com/Test-More/test-more/issues',
27510             'Test2::Manual::Testing::Todo'=> 'https://github.com/Test-More/test-more/issues',
27511             'Test2::Manual::Tooling'=> 'https://github.com/Test-More/test-more/issues',
27512             'Test2::Manual::Tooling::FirstTool'=> 'https://github.com/Test-More/test-more/issues',
27513             'Test2::Manual::Tooling::Formatter'=> 'https://github.com/Test-More/test-more/issues',
27514             'Test2::Manual::Tooling::Nesting'=> 'https://github.com/Test-More/test-more/issues',
27515             'Test2::Manual::Tooling::Plugin::TestExit'=> 'https://github.com/Test-More/test-more/issues',
27516             'Test2::Manual::Tooling::Plugin::TestingDone'=> 'https://github.com/Test-More/test-more/issues',
27517             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> 'https://github.com/Test-More/test-more/issues',
27518             'Test2::Manual::Tooling::Plugin::ToolStarts'=> 'https://github.com/Test-More/test-more/issues',
27519             'Test2::Manual::Tooling::Subtest'=> 'https://github.com/Test-More/test-more/issues',
27520             'Test2::Manual::Tooling::TestBuilder'=> 'https://github.com/Test-More/test-more/issues',
27521             'Test2::Manual::Tooling::Testing'=> 'https://github.com/Test-More/test-more/issues',
27522             'Test2::Mock' => 'https://github.com/Test-More/test-more/issues',
27523             'Test2::Plugin' => 'https://github.com/Test-More/test-more/issues',
27524             'Test2::Plugin::BailOnFail'=> 'https://github.com/Test-More/test-more/issues',
27525             'Test2::Plugin::DieOnFail'=> 'https://github.com/Test-More/test-more/issues',
27526             'Test2::Plugin::ExitSummary'=> 'https://github.com/Test-More/test-more/issues',
27527             'Test2::Plugin::SRand' => 'https://github.com/Test-More/test-more/issues',
27528             'Test2::Plugin::Times' => 'https://github.com/Test-More/test-more/issues',
27529             'Test2::Plugin::UTF8' => 'https://github.com/Test-More/test-more/issues',
27530             'Test2::Require' => 'https://github.com/Test-More/test-more/issues',
27531             'Test2::Require::AuthorTesting'=> 'https://github.com/Test-More/test-more/issues',
27532             'Test2::Require::AutomatedTesting'=> 'https://github.com/Test-More/test-more/issues',
27533             'Test2::Require::EnvVar'=> 'https://github.com/Test-More/test-more/issues',
27534             'Test2::Require::ExtendedTesting'=> 'https://github.com/Test-More/test-more/issues',
27535             'Test2::Require::Fork' => 'https://github.com/Test-More/test-more/issues',
27536             'Test2::Require::Module'=> 'https://github.com/Test-More/test-more/issues',
27537             'Test2::Require::NonInteractiveTesting'=> 'https://github.com/Test-More/test-more/issues',
27538             'Test2::Require::Perl' => 'https://github.com/Test-More/test-more/issues',
27539             'Test2::Require::RealFork'=> 'https://github.com/Test-More/test-more/issues',
27540             'Test2::Require::ReleaseTesting'=> 'https://github.com/Test-More/test-more/issues',
27541             'Test2::Require::Threads'=> 'https://github.com/Test-More/test-more/issues',
27542             'Test2::Suite' => 'https://github.com/Test-More/test-more/issues',
27543             'Test2::Todo' => 'https://github.com/Test-More/test-more/issues',
27544             'Test2::Tools' => 'https://github.com/Test-More/test-more/issues',
27545             'Test2::Tools::AsyncSubtest'=> 'https://github.com/Test-More/test-more/issues',
27546             'Test2::Tools::Basic' => 'https://github.com/Test-More/test-more/issues',
27547             'Test2::Tools::Class' => 'https://github.com/Test-More/test-more/issues',
27548             'Test2::Tools::ClassicCompare'=> 'https://github.com/Test-More/test-more/issues',
27549             'Test2::Tools::Compare' => 'https://github.com/Test-More/test-more/issues',
27550             'Test2::Tools::Defer' => 'https://github.com/Test-More/test-more/issues',
27551             'Test2::Tools::Encoding'=> 'https://github.com/Test-More/test-more/issues',
27552             'Test2::Tools::Event' => 'https://github.com/Test-More/test-more/issues',
27553             'Test2::Tools::Exception'=> 'https://github.com/Test-More/test-more/issues',
27554             'Test2::Tools::Exports' => 'https://github.com/Test-More/test-more/issues',
27555             'Test2::Tools::GenTemp' => 'https://github.com/Test-More/test-more/issues',
27556             'Test2::Tools::Grab' => 'https://github.com/Test-More/test-more/issues',
27557             'Test2::Tools::Mock' => 'https://github.com/Test-More/test-more/issues',
27558             'Test2::Tools::Ref' => 'https://github.com/Test-More/test-more/issues',
27559             'Test2::Tools::Refcount'=> 'https://github.com/Test-More/test-more/issues',
27560             'Test2::Tools::Spec' => 'https://github.com/Test-More/test-more/issues',
27561             'Test2::Tools::Subtest' => 'https://github.com/Test-More/test-more/issues',
27562             'Test2::Tools::Target' => 'https://github.com/Test-More/test-more/issues',
27563             'Test2::Tools::Tester' => 'https://github.com/Test-More/test-more/issues',
27564             'Test2::Tools::Tiny' => 'https://github.com/Test-More/test-more/issues',
27565             'Test2::Tools::Warnings'=> 'https://github.com/Test-More/test-more/issues',
27566             'Test2::Util' => 'https://github.com/Test-More/test-more/issues',
27567             'Test2::Util::ExternalMeta'=> 'https://github.com/Test-More/test-more/issues',
27568             'Test2::Util::Facets2Legacy'=> 'https://github.com/Test-More/test-more/issues',
27569             'Test2::Util::Grabber' => 'https://github.com/Test-More/test-more/issues',
27570             'Test2::Util::Guard' => 'https://github.com/Test-More/test-more/issues',
27571             'Test2::Util::HashBase' => 'https://github.com/Test-More/test-more/issues',
27572             'Test2::Util::Importer' => 'https://github.com/Test-More/test-more/issues',
27573             'Test2::Util::Ref' => 'https://github.com/Test-More/test-more/issues',
27574             'Test2::Util::Sig' => 'https://github.com/Test-More/test-more/issues',
27575             'Test2::Util::Stash' => 'https://github.com/Test-More/test-more/issues',
27576             'Test2::Util::Sub' => 'https://github.com/Test-More/test-more/issues',
27577             'Test2::Util::Table' => 'https://github.com/Test-More/test-more/issues',
27578             'Test2::Util::Table::Cell'=> 'https://github.com/Test-More/test-more/issues',
27579             'Test2::Util::Table::LineBreak'=> 'https://github.com/Test-More/test-more/issues',
27580             'Test2::Util::Term' => 'https://github.com/Test-More/test-more/issues',
27581             'Test2::Util::Times' => 'https://github.com/Test-More/test-more/issues',
27582             'Test2::Util::Trace' => 'https://github.com/Test-More/test-more/issues',
27583             'Test2::V0' => 'https://github.com/Test-More/test-more/issues',
27584             'Test2::V1' => 'https://github.com/Test-More/test-more/issues',
27585             'Test2::V1::Base' => 'https://github.com/Test-More/test-more/issues',
27586             'Test2::V1::Handle' => 'https://github.com/Test-More/test-more/issues',
27587             'Test2::Workflow' => 'https://github.com/Test-More/test-more/issues',
27588             'Test2::Workflow::BlockBase'=> 'https://github.com/Test-More/test-more/issues',
27589             'Test2::Workflow::Build'=> 'https://github.com/Test-More/test-more/issues',
27590             'Test2::Workflow::Runner'=> 'https://github.com/Test-More/test-more/issues',
27591             'Test2::Workflow::Task' => 'https://github.com/Test-More/test-more/issues',
27592             'Test2::Workflow::Task::Action'=> 'https://github.com/Test-More/test-more/issues',
27593             'Test2::Workflow::Task::Group'=> 'https://github.com/Test-More/test-more/issues',
27594             'Test::Builder' => 'https://github.com/Test-More/test-more/issues',
27595             'Test::Builder::Formatter'=> 'https://github.com/Test-More/test-more/issues',
27596             'Test::Builder::Module' => 'https://github.com/Test-More/test-more/issues',
27597             'Test::Builder::Tester' => 'https://github.com/Test-More/test-more/issues',
27598             'Test::Builder::Tester::Color'=> 'https://github.com/Test-More/test-more/issues',
27599             'Test::Builder::TodoDiag'=> 'https://github.com/Test-More/test-more/issues',
27600             'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27601             'Test::More' => 'https://github.com/Test-More/test-more/issues',
27602             'Test::Simple' => 'https://github.com/Test-More/test-more/issues',
27603             'Test::Tester' => 'https://github.com/Test-More/test-more/issues',
27604             'Test::Tester::Capture' => 'https://github.com/Test-More/test-more/issues',
27605             'Test::Tester::CaptureRunner'=> 'https://github.com/Test-More/test-more/issues',
27606             'Test::Tester::Delegate'=> 'https://github.com/Test-More/test-more/issues',
27607             'Test::use::ok' => 'https://github.com/Test-More/test-more/issues',
27608             'Text::Balanced' => undef,
27609             'Text::ParseWords' => undef,
27610             'Text::Tabs' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
27611             'Text::Wrap' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
27612             'Tie::RefHash' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Tie-RefHash',
27613             'Time::Local' => 'https://github.com/houseabsolute/Time-Local/issues',
27614             'Time::Piece' => undef,
27615             'Time::Seconds' => undef,
27616             'Unicode::Collate' => undef,
27617             'Unicode::Collate::CJK::Big5'=> undef,
27618             'Unicode::Collate::CJK::GB2312'=> undef,
27619             'Unicode::Collate::CJK::JISX0208'=> undef,
27620             'Unicode::Collate::CJK::Korean'=> undef,
27621             'Unicode::Collate::CJK::Pinyin'=> undef,
27622             'Unicode::Collate::CJK::Stroke'=> undef,
27623             'Unicode::Collate::CJK::Zhuyin'=> undef,
27624             'Unicode::Collate::Locale'=> undef,
27625             'Win32' => 'https://github.com/perl-libwin32/win32/issues',
27626             'Win32API::File' => undef,
27627             'autodie' => 'https://github.com/pjf/autodie/issues',
27628             'autodie::Scope::Guard' => 'https://github.com/pjf/autodie/issues',
27629             'autodie::Scope::GuardStack'=> 'https://github.com/pjf/autodie/issues',
27630             'autodie::Util' => 'https://github.com/pjf/autodie/issues',
27631             'autodie::exception' => 'https://github.com/pjf/autodie/issues',
27632             'autodie::exception::system'=> 'https://github.com/pjf/autodie/issues',
27633             'autodie::hints' => 'https://github.com/pjf/autodie/issues',
27634             'autodie::skip' => 'https://github.com/pjf/autodie/issues',
27635             'bigfloat' => undef,
27636             'bigint' => undef,
27637             'bignum' => undef,
27638             'bigrat' => undef,
27639             'encoding' => undef,
27640             'experimental' => 'https://github.com/Dual-Life/experimental/issues',
27641             'ok' => 'https://github.com/Test-More/test-more/issues',
27642             'parent' => undef,
27643             'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues',
27644             'stable' => 'https://github.com/Dual-Life/experimental/issues',
27645             'version' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
27646             'version::regex' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
27647             );
27648              
27649             # Create aliases with trailing zeros for $] use
27650              
27651             $released{'5.000'} = $released{5};
27652             $version{'5.000'} = $version{5};
27653              
27654             _create_aliases(\%delta);
27655             _create_aliases(\%released);
27656             _create_aliases(\%version);
27657             _create_aliases(\%deprecated);
27658              
27659             sub _create_aliases {
27660 20     20   43 my ($hash) = @_;
27661              
27662 20         1123 for my $version (keys %$hash) {
27663 5710 100       10346 next unless $version >= 5.006;
27664              
27665 5565         8962 my $padded = sprintf "%0.6f", $version;
27666              
27667             # If the version in string form isn't the same as the numeric version,
27668             # alias it.
27669 5565 100 66     9496 if ($padded ne $version && $version == $padded) {
27670 955         2157 $hash->{$padded} = $hash->{$version};
27671             }
27672             }
27673             }
27674              
27675             1;
27676             __END__