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   381252 use strict;
  5         13  
  5         488  
3              
4             our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
5              
6 5     5   2245 use version;
  5         12370  
  5         58  
7             our $VERSION = '5.20260308';
8              
9             sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
10 42     42   92 sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
  42         120  
  42         481  
11              
12             sub _undelta {
13 11     11   58 my ($delta) = @_;
14 11         48 my (%expanded, $delta_from, $base, $changed, $removed);
15 11         1961 for my $v (sort keys %$delta) {
16 3008         5507 ($delta_from, $changed, $removed) = @{$delta->{$v}}{qw( delta_from changed removed )};
  3008         9867  
17 3008 100       13349 $base = $delta_from ? $expanded{$delta_from} : {};
18 3008 100       114885 my %full = ( %$base, %{$changed || {}} );
  3008         486357  
19 3008         82787 delete @full{ keys %$removed };
20 3008         11819 $expanded{$v} = \%full;
21             }
22 11         4016 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 9090 0   9090   26882 : $released{$a} cmp $released{$b} )
    50          
    50          
33             }
34              
35             my $dumpinc = 0;
36             sub import {
37 4     4   70 my $self = shift;
38 4   50     37 my $what = shift || '';
39 4 50       12584 if ($what eq 'dumpinc') {
40 0         0 $dumpinc = 1;
41             }
42             }
43              
44             END {
45 5 50   5   1925 print "---INC---\n", join "\n" => keys %INC
46             if $dumpinc;
47             }
48              
49              
50             sub first_release_raw {
51 91 100 100 91 0 450 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
52 91         166 my $module = shift;
53 91         151 my $version = shift;
54              
55             my @perls = $version
56             ? grep { defined $version{$_}{ $module } &&
57 1685 100       9687 $version{$_}{ $module } ge $version } keys %version
58 91 100       7585 : grep { exists $version{$_}{ $module } } keys %version;
  28982         80450  
59              
60 91         4917 return @perls;
61             }
62              
63             sub first_release_by_date {
64 4     4 1 404400 my @perls = &first_release_raw;
65 4 50       23 return unless @perls;
66 4         103 return (sort _released_order @perls)[0];
67             }
68              
69             sub first_release {
70 53     53 1 180 my @perls = &first_release_raw;
71 53 100       296 return unless @perls;
72 49         459 return (sort { $a cmp $b } @perls)[0];
  87961         136424  
73             }
74              
75             sub find_modules {
76 5 100   5 1 386447 shift if _looks_like_invocant $_[0];
77 5         12 my $regex = shift;
78 5 100       484 my @perls = @_ ? @_ : keys %version;
79              
80 5         16 my %mods;
81 5         15 foreach (@perls) {
82 1014         1846 while (my ($k, $v) = each %{$version{$_}}) {
  634213         1867092  
83 633199 100       2202236 $mods{$k}++ if $k =~ $regex;
84             }
85             }
86 5         302 return sort keys %mods
87             }
88              
89             sub find_version {
90 3 50   3 1 895 shift if _looks_like_invocant $_[0];
91 3         7 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 3548 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      33        
98 3         5 my $module = shift;
99 3   66     201 my $perl_version = shift || $];
100 3 50 33     22 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       7 my $module = shift or return;
107 2         78 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
  600         822  
108 2 100       27 return unless @perls;
109 1         10 require List::Util;
110 1         9 return List::Util::minstr(@perls);
111             }
112              
113             sub removed_from {
114 34     34 1 101 my @perls = &removed_raw;
115 34         314 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 152 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
125 34         98 my $mod = shift;
126 34 50       133 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
  51449         79822  
127 34         938 my $last = pop @perls;
128 34         2563 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
  11458         29489  
  82956         139981  
129 34         1788 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             );
458              
459             for my $version ( sort { $a <=> $b } keys %released ) {
460             my $family = int ($version * 1000) / 1000;
461             push @{ $families{ $family }} , $version;
462             }
463              
464             %delta = (
465             5 => {
466             changed => {
467             'AnyDBM_File' => undef,
468             'AutoLoader' => undef,
469             'AutoSplit' => undef,
470             'Benchmark' => undef,
471             'Carp' => undef,
472             'Cwd' => undef,
473             'DB_File' => undef,
474             'DynaLoader' => undef,
475             'English' => undef,
476             'Env' => undef,
477             'Exporter' => undef,
478             'ExtUtils::MakeMaker' => undef,
479             'Fcntl' => undef,
480             'File::Basename' => undef,
481             'File::CheckTree' => undef,
482             'File::Find' => undef,
483             'FileHandle' => undef,
484             'GDBM_File' => undef,
485             'Getopt::Long' => undef,
486             'Getopt::Std' => undef,
487             'I18N::Collate' => undef,
488             'IPC::Open2' => undef,
489             'IPC::Open3' => undef,
490             'Math::BigFloat' => undef,
491             'Math::BigInt' => undef,
492             'Math::Complex' => undef,
493             'NDBM_File' => undef,
494             'Net::Ping' => undef,
495             'ODBM_File' => undef,
496             'POSIX' => undef,
497             'SDBM_File' => undef,
498             'Search::Dict' => undef,
499             'Shell' => undef,
500             'Socket' => undef,
501             'Sys::Hostname' => undef,
502             'Sys::Syslog' => undef,
503             'Term::Cap' => undef,
504             'Term::Complete' => undef,
505             'Test::Harness' => undef,
506             'Text::Abbrev' => undef,
507             'Text::ParseWords' => undef,
508             'Text::Soundex' => undef,
509             'Text::Tabs' => undef,
510             'TieHash' => undef,
511             'Time::Local' => undef,
512             'integer' => undef,
513             'less' => undef,
514             'sigtrap' => undef,
515             'strict' => undef,
516             'subs' => undef,
517             },
518             removed => {
519             }
520             },
521             5.001 => {
522             delta_from => 5,
523             changed => {
524             'ExtUtils::Liblist' => undef,
525             'ExtUtils::Manifest' => undef,
526             'ExtUtils::Mkbootstrap' => undef,
527             'File::Path' => undef,
528             'SubstrHash' => undef,
529             'lib' => undef,
530             },
531             removed => {
532             }
533             },
534             5.002 => {
535             delta_from => 5.001,
536             changed => {
537             'DB_File' => '1.01',
538             'Devel::SelfStubber' => '1.01',
539             'DirHandle' => undef,
540             'DynaLoader' => '1.00',
541             'ExtUtils::Install' => undef,
542             'ExtUtils::MM_OS2' => undef,
543             'ExtUtils::MM_Unix' => undef,
544             'ExtUtils::MM_VMS' => undef,
545             'ExtUtils::MakeMaker' => '5.21',
546             'ExtUtils::Manifest' => '1.22',
547             'ExtUtils::Mksymlists' => '1.00',
548             'Fcntl' => '1.00',
549             'File::Copy' => '1.5',
550             'File::Path' => '1.01',
551             'FileCache' => undef,
552             'FileHandle' => '1.00',
553             'GDBM_File' => '1.00',
554             'Getopt::Long' => '2.01',
555             'NDBM_File' => '1.00',
556             'Net::Ping' => '1',
557             'ODBM_File' => '1.00',
558             'POSIX' => '1.00',
559             'Pod::Functions' => undef,
560             'Pod::Text' => undef,
561             'SDBM_File' => '1.00',
562             'Safe' => '1.00',
563             'SelectSaver' => undef,
564             'SelfLoader' => '1.06',
565             'Socket' => '1.5',
566             'Symbol' => undef,
567             'Term::ReadLine' => undef,
568             'Test::Harness' => '1.07',
569             'Text::Wrap' => undef,
570             'Tie::Hash' => undef,
571             'Tie::Scalar' => undef,
572             'Tie::SubstrHash' => undef,
573             'diagnostics' => undef,
574             'overload' => undef,
575             'vars' => undef,
576             },
577             removed => {
578             'SubstrHash' => 1,
579             'TieHash' => 1,
580             }
581             },
582             5.00307 => {
583             delta_from => 5.002,
584             changed => {
585             'Config' => undef,
586             'DB_File' => '1.03',
587             'ExtUtils::Embed' => '1.18',
588             'ExtUtils::Install' => '1.15',
589             'ExtUtils::Liblist' => '1.20',
590             'ExtUtils::MM_Unix' => '1.107',
591             'ExtUtils::MakeMaker' => '5.38',
592             'ExtUtils::Manifest' => '1.27',
593             'ExtUtils::Mkbootstrap' => '1.13',
594             'ExtUtils::Mksymlists' => '1.12',
595             'ExtUtils::testlib' => '1.11',
596             'Fatal' => undef,
597             'File::Basename' => '2.4',
598             'FindBin' => '1.04',
599             'Getopt::Long' => '2.04',
600             'IO' => undef,
601             'IO::File' => '1.05',
602             'IO::Handle' => '1.12',
603             'IO::Pipe' => '1.07',
604             'IO::Seekable' => '1.05',
605             'IO::Select' => '1.09',
606             'IO::Socket' => '1.13',
607             'Net::Ping' => '1.01',
608             'OS2::ExtAttr' => '0.01',
609             'OS2::PrfDB' => '0.02',
610             'OS2::Process' => undef,
611             'OS2::REXX' => undef,
612             'Opcode' => '1.01',
613             'Safe' => '2.06',
614             'Test::Harness' => '1.13',
615             'Text::Tabs' => '96.051501',
616             'Text::Wrap' => '96.041801',
617             'UNIVERSAL' => undef,
618             'VMS::Filespec' => undef,
619             'VMS::Stdio' => '2.0',
620             'ops' => undef,
621             'sigtrap' => '1.01',
622             },
623             removed => {
624             }
625             },
626             5.004 => {
627             delta_from => 5.00307,
628             changed => {
629             'Bundle::CPAN' => '0.02',
630             'CGI' => '2.36',
631             'CGI::Apache' => '1.01',
632             'CGI::Carp' => '1.06',
633             'CGI::Fast' => '1.00a',
634             'CGI::Push' => '1.00',
635             'CGI::Switch' => '0.05',
636             'CPAN' => '1.2401',
637             'CPAN::FirstTime' => '1.18',
638             'CPAN::Nox' => undef,
639             'Class::Struct' => undef,
640             'Cwd' => '2.00',
641             'DB_File' => '1.14',
642             'DynaLoader' => '1.02',
643             'ExtUtils::Command' => '1.00',
644             'ExtUtils::Embed' => '1.2501',
645             'ExtUtils::Install' => '1.16',
646             'ExtUtils::Liblist' => '1.2201',
647             'ExtUtils::MM_Unix' => '1.114',
648             'ExtUtils::MM_Win32' => undef,
649             'ExtUtils::MakeMaker' => '5.4002',
650             'ExtUtils::Manifest' => '1.33',
651             'ExtUtils::Mksymlists' => '1.13',
652             'ExtUtils::XSSymSet' => '1.0',
653             'Fcntl' => '1.03',
654             'File::Basename' => '2.5',
655             'File::Compare' => '1.1001',
656             'File::Copy' => '2.02',
657             'File::Path' => '1.04',
658             'File::stat' => undef,
659             'FileHandle' => '2.00',
660             'Getopt::Long' => '2.10',
661             'IO::File' => '1.0602',
662             'IO::Handle' => '1.1504',
663             'IO::Pipe' => '1.0901',
664             'IO::Seekable' => '1.06',
665             'IO::Select' => '1.10',
666             'IO::Socket' => '1.1602',
667             'IPC::Open2' => '1.01',
668             'IPC::Open3' => '1.0101',
669             'Math::Complex' => '1.01',
670             'Math::Trig' => '1',
671             'Net::Ping' => '2.02',
672             'Net::hostent' => undef,
673             'Net::netent' => undef,
674             'Net::protoent' => undef,
675             'Net::servent' => undef,
676             'Opcode' => '1.04',
677             'POSIX' => '1.02',
678             'Pod::Html' => undef,
679             'Pod::Text' => '1.0203',
680             'SelfLoader' => '1.07',
681             'Socket' => '1.6',
682             'Symbol' => '1.02',
683             'Test::Harness' => '1.1502',
684             'Text::Tabs' => '96.121201',
685             'Text::Wrap' => '97.011701',
686             'Tie::RefHash' => undef,
687             'Time::gmtime' => '1.01',
688             'Time::localtime' => '1.01',
689             'Time::tm' => undef,
690             'User::grent' => undef,
691             'User::pwent' => undef,
692             'VMS::DCLsym' => '1.01',
693             'VMS::Stdio' => '2.02',
694             'autouse' => '1.01',
695             'blib' => undef,
696             'constant' => '1.00',
697             'locale' => undef,
698             'sigtrap' => '1.02',
699             'vmsish' => undef,
700             },
701             removed => {
702             'Fatal' => 1,
703             }
704             },
705             5.00405 => {
706             delta_from => 5.004,
707             changed => {
708             'AutoLoader' => '5.56',
709             'AutoSplit' => '1.0303',
710             'Bundle::CPAN' => '0.03',
711             'CGI' => '2.42',
712             'CGI::Apache' => '1.1',
713             'CGI::Carp' => '1.10',
714             'CGI::Cookie' => '1.06',
715             'CGI::Push' => '1.01',
716             'CGI::Switch' => '0.06',
717             'CPAN' => '1.40',
718             'CPAN::FirstTime' => '1.30',
719             'Cwd' => '2.01',
720             'DB_File' => '1.15',
721             'DynaLoader' => '1.03',
722             'ExtUtils::Command' => '1.01',
723             'ExtUtils::Embed' => '1.2505',
724             'ExtUtils::Install' => '1.28',
725             'ExtUtils::Liblist' => '1.25',
726             'ExtUtils::MM_Unix' => '1.118',
727             'ExtUtils::MakeMaker' => '5.42',
728             'ExtUtils::Mkbootstrap' => '1.14',
729             'ExtUtils::Mksymlists' => '1.16',
730             'File::Basename' => '2.6',
731             'File::DosGlob' => undef,
732             'File::Path' => '1.0402',
733             'File::Spec' => '0.6',
734             'File::Spec::Mac' => '1.0',
735             'File::Spec::OS2' => undef,
736             'File::Spec::Unix' => undef,
737             'File::Spec::VMS' => undef,
738             'File::Spec::Win32' => undef,
739             'FindBin' => '1.41',
740             'Getopt::Long' => '2.19',
741             'IO::File' => '1.06021',
742             'IO::Socket' => '1.1603',
743             'IPC::Open3' => '1.0103',
744             'Math::Complex' => '1.25',
745             'NDBM_File' => '1.01',
746             'Pod::Html' => '1.0101',
747             'Pod::Text' => '1.0204',
748             'SelfLoader' => '1.08',
749             'Socket' => '1.7',
750             'Test' => '1.04',
751             'Test::Harness' => '1.1602',
752             'Text::ParseWords' => '3.1001',
753             'Text::Wrap' => '98.112902',
754             'Tie::Handle' => undef,
755             'attrs' => '0.1',
756             'base' => undef,
757             'blib' => '1.00',
758             're' => undef,
759             'strict' => '1.01',
760             },
761             removed => {
762             }
763             },
764             5.005 => {
765             delta_from => 5.00405,
766             changed => {
767             'AutoLoader' => undef,
768             'AutoSplit' => '1.0302',
769             'B' => undef,
770             'B::Asmdata' => undef,
771             'B::Assembler' => undef,
772             'B::Bblock' => undef,
773             'B::Bytecode' => undef,
774             'B::C' => undef,
775             'B::CC' => undef,
776             'B::Debug' => undef,
777             'B::Deparse' => '0.56',
778             'B::Disassembler' => undef,
779             'B::Lint' => undef,
780             'B::Showlex' => undef,
781             'B::Stackobj' => undef,
782             'B::Terse' => undef,
783             'B::Xref' => undef,
784             'CGI::Carp' => '1.101',
785             'CPAN' => '1.3901',
786             'CPAN::FirstTime' => '1.29',
787             'DB_File' => '1.60',
788             'Data::Dumper' => '2.09',
789             'Errno' => '1.09',
790             'ExtUtils::Installed' => '0.02',
791             'ExtUtils::MM_Unix' => '1.12601',
792             'ExtUtils::MakeMaker' => '5.4301',
793             'ExtUtils::Mkbootstrap' => '1.13',
794             'ExtUtils::Mksymlists' => '1.17',
795             'ExtUtils::Packlist' => '0.03',
796             'Fatal' => '1.02',
797             'File::Path' => '1.0401',
798             'Getopt::Long' => '2.17',
799             'IO::Handle' => '1.1505',
800             'IPC::Msg' => '1.00',
801             'IPC::Open3' => '1.0102',
802             'IPC::Semaphore' => '1.00',
803             'IPC::SysV' => '1.03',
804             'O' => undef,
805             'OS2::Process' => '0.2',
806             'Pod::Html' => '1.01',
807             'Pod::Text' => '1.0203',
808             'Text::ParseWords' => '3.1',
809             'Text::Wrap' => '97.02',
810             'Thread' => '1.0',
811             'Thread::Queue' => undef,
812             'Thread::Semaphore' => undef,
813             'Thread::Signal' => undef,
814             'Thread::Specific' => undef,
815             'Tie::Array' => '1.00',
816             'VMS::Stdio' => '2.1',
817             'attrs' => '1.0',
818             'fields' => '0.02',
819             're' => '0.02',
820             },
821             removed => {
822             'Bundle::CPAN' => 1,
823             }
824             },
825             5.00503 => {
826             delta_from => 5.005,
827             changed => {
828             'AutoSplit' => '1.0303',
829             'CGI' => '2.46',
830             'CGI::Carp' => '1.13',
831             'CGI::Fast' => '1.01',
832             'CPAN' => '1.48',
833             'CPAN::FirstTime' => '1.36',
834             'CPAN::Nox' => '1.00',
835             'DB_File' => '1.65',
836             'Data::Dumper' => '2.101',
837             'Dumpvalue' => undef,
838             'Errno' => '1.111',
839             'ExtUtils::Install' => '1.28',
840             'ExtUtils::Liblist' => '1.25',
841             'ExtUtils::MM_Unix' => '1.12602',
842             'ExtUtils::MakeMaker' => '5.4302',
843             'ExtUtils::Manifest' => '1.33',
844             'ExtUtils::Mkbootstrap' => '1.14',
845             'ExtUtils::Mksymlists' => '1.17',
846             'ExtUtils::testlib' => '1.11',
847             'FindBin' => '1.42',
848             'Getopt::Long' => '2.19',
849             'Getopt::Std' => '1.01',
850             'IO::Pipe' => '1.0902',
851             'IPC::Open3' => '1.0103',
852             'Math::Complex' => '1.26',
853             'Test' => '1.122',
854             'Text::Wrap' => '98.112902',
855             },
856             removed => {
857             }
858             },
859             5.00504 => {
860             delta_from => 5.00503,
861             changed => {
862             'CPAN::FirstTime' => '1.36',
863             'DB_File' => '1.807',
864             'ExtUtils::Install' => '1.28',
865             'ExtUtils::Liblist' => '1.25',
866             'ExtUtils::MM_Unix' => '1.12602',
867             'ExtUtils::Manifest' => '1.33',
868             'ExtUtils::Miniperl' => undef,
869             'ExtUtils::Mkbootstrap' => '1.14',
870             'ExtUtils::Mksymlists' => '1.17',
871             'ExtUtils::testlib' => '1.11',
872             'File::Compare' => '1.1002',
873             'File::Spec' => '0.8',
874             'File::Spec::Functions' => undef,
875             'File::Spec::Mac' => undef,
876             'Getopt::Long' => '2.20',
877             'Pod::Html' => '1.02',
878             },
879             removed => {
880             }
881             },
882             5.006 => {
883             delta_from => 5.00504,
884             changed => {
885             'AutoLoader' => '5.57',
886             'AutoSplit' => '1.0305',
887             'B::Deparse' => '0.59',
888             'B::Stash' => undef,
889             'Benchmark' => '1',
890             'ByteLoader' => '0.03',
891             'CGI' => '2.56',
892             'CGI::Apache' => undef,
893             'CGI::Carp' => '1.14',
894             'CGI::Cookie' => '1.12',
895             'CGI::Fast' => '1.02',
896             'CGI::Pretty' => '1.03',
897             'CGI::Switch' => undef,
898             'CPAN' => '1.52',
899             'CPAN::FirstTime' => '1.38',
900             'Carp::Heavy' => undef,
901             'Class::Struct' => '0.58',
902             'Cwd' => '2.02',
903             'DB' => '1.0',
904             'DB_File' => '1.72',
905             'Devel::DProf' => '20000000.00_00',
906             'Devel::Peek' => '1.00_01',
907             'DynaLoader' => '1.04',
908             'Exporter' => '5.562',
909             'Exporter::Heavy' => undef,
910             'ExtUtils::MM_Cygwin' => undef,
911             'ExtUtils::MM_Unix' => '1.12603',
912             'ExtUtils::MakeMaker' => '5.45',
913             'File::Copy' => '2.03',
914             'File::Glob' => '0.991',
915             'File::Path' => '1.0403',
916             'GDBM_File' => '1.03',
917             'Getopt::Long' => '2.23',
918             'Getopt::Std' => '1.02',
919             'IO' => '1.20',
920             'IO::Dir' => '1.03',
921             'IO::File' => '1.08',
922             'IO::Handle' => '1.21',
923             'IO::Pipe' => '1.121',
924             'IO::Poll' => '0.01',
925             'IO::Seekable' => '1.08',
926             'IO::Select' => '1.14',
927             'IO::Socket' => '1.26',
928             'IO::Socket::INET' => '1.25',
929             'IO::Socket::UNIX' => '1.20',
930             'JNI' => '0.01',
931             'JPL::AutoLoader' => undef,
932             'JPL::Class' => undef,
933             'JPL::Compile' => undef,
934             'NDBM_File' => '1.03',
935             'ODBM_File' => '1.02',
936             'OS2::DLL' => undef,
937             'POSIX' => '1.03',
938             'Pod::Checker' => '1.098',
939             'Pod::Find' => '0.12',
940             'Pod::Html' => '1.03',
941             'Pod::InputObjects' => '1.12',
942             'Pod::Man' => '1.02',
943             'Pod::ParseUtils' => '0.2',
944             'Pod::Parser' => '1.12',
945             'Pod::Plainer' => '0.01',
946             'Pod::Select' => '1.12',
947             'Pod::Text' => '2.03',
948             'Pod::Text::Color' => '0.05',
949             'Pod::Text::Termcap' => '0.04',
950             'Pod::Usage' => '1.12',
951             'SDBM_File' => '1.02',
952             'SelfLoader' => '1.0901',
953             'Shell' => '0.2',
954             'Socket' => '1.72',
955             'Sys::Hostname' => '1.1',
956             'Sys::Syslog' => '0.01',
957             'Term::ANSIColor' => '1.01',
958             'Test' => '1.13',
959             'Test::Harness' => '1.1604',
960             'Text::ParseWords' => '3.2',
961             'Text::Soundex' => '1.0',
962             'Text::Tabs' => '98.112801',
963             'Tie::Array' => '1.01',
964             'Tie::Handle' => '1.0',
965             'VMS::Stdio' => '2.2',
966             'XSLoader' => '0.01',
967             'attributes' => '0.03',
968             'autouse' => '1.02',
969             'base' => '1.01',
970             'bytes' => undef,
971             'charnames' => undef,
972             'constant' => '1.02',
973             'diagnostics' => '1.0',
974             'fields' => '1.01',
975             'filetest' => undef,
976             'lib' => '0.5564',
977             'open' => undef,
978             'utf8' => undef,
979             'warnings' => undef,
980             'warnings::register' => undef,
981             },
982             removed => {
983             }
984             },
985             5.006001 => {
986             delta_from => 5.006,
987             changed => {
988             'AutoLoader' => '5.58',
989             'B::Assembler' => '0.02',
990             'B::Concise' => '0.51',
991             'B::Deparse' => '0.6',
992             'ByteLoader' => '0.04',
993             'CGI' => '2.752',
994             'CGI::Carp' => '1.20',
995             'CGI::Cookie' => '1.18',
996             'CGI::Pretty' => '1.05',
997             'CGI::Push' => '1.04',
998             'CGI::Util' => '1.1',
999             'CPAN' => '1.59_54',
1000             'CPAN::FirstTime' => '1.53',
1001             'Class::Struct' => '0.59',
1002             'Cwd' => '2.04',
1003             'DB_File' => '1.75',
1004             'Data::Dumper' => '2.102',
1005             'ExtUtils::Install' => '1.28',
1006             'ExtUtils::Liblist' => '1.26',
1007             'ExtUtils::MM_Unix' => '1.12603',
1008             'ExtUtils::Manifest' => '1.33',
1009             'ExtUtils::Mkbootstrap' => '1.14',
1010             'ExtUtils::Mksymlists' => '1.17',
1011             'ExtUtils::testlib' => '1.11',
1012             'File::Path' => '1.0404',
1013             'File::Spec' => '0.82',
1014             'File::Spec::Epoc' => undef,
1015             'File::Spec::Functions' => '1.1',
1016             'File::Spec::Mac' => '1.2',
1017             'File::Spec::OS2' => '1.1',
1018             'File::Spec::Unix' => '1.2',
1019             'File::Spec::VMS' => '1.1',
1020             'File::Spec::Win32' => '1.2',
1021             'File::Temp' => '0.12',
1022             'GDBM_File' => '1.05',
1023             'Getopt::Long' => '2.25',
1024             'IO::Poll' => '0.05',
1025             'JNI' => '0.1',
1026             'Math::BigFloat' => '0.02',
1027             'Math::BigInt' => '0.01',
1028             'Math::Complex' => '1.31',
1029             'NDBM_File' => '1.04',
1030             'ODBM_File' => '1.03',
1031             'OS2::REXX' => '1.00',
1032             'Pod::Checker' => '1.2',
1033             'Pod::Find' => '0.21',
1034             'Pod::InputObjects' => '1.13',
1035             'Pod::LaTeX' => '0.53',
1036             'Pod::Man' => '1.15',
1037             'Pod::ParseUtils' => '0.22',
1038             'Pod::Parser' => '1.13',
1039             'Pod::Select' => '1.13',
1040             'Pod::Text' => '2.08',
1041             'Pod::Text::Color' => '0.06',
1042             'Pod::Text::Overstrike' => '1.01',
1043             'Pod::Text::Termcap' => '1',
1044             'Pod::Usage' => '1.14',
1045             'SDBM_File' => '1.03',
1046             'SelfLoader' => '1.0902',
1047             'Shell' => '0.3',
1048             'Term::ANSIColor' => '1.03',
1049             'Test' => '1.15',
1050             'Text::Wrap' => '2001.0131',
1051             'Tie::Handle' => '4.0',
1052             'Tie::RefHash' => '1.3',
1053             },
1054             removed => {
1055             }
1056             },
1057             5.006002 => {
1058             delta_from => 5.006001,
1059             changed => {
1060             'CPAN::FirstTime' => '1.53',
1061             'DB_File' => '1.806',
1062             'Data::Dumper' => '2.121',
1063             'ExtUtils::Command' => '1.05',
1064             'ExtUtils::Command::MM' => '0.03',
1065             'ExtUtils::Install' => '1.32',
1066             'ExtUtils::Installed' => '0.08',
1067             'ExtUtils::Liblist' => '1.01',
1068             'ExtUtils::Liblist::Kid'=> '1.3',
1069             'ExtUtils::MM' => '0.04',
1070             'ExtUtils::MM_Any' => '0.07',
1071             'ExtUtils::MM_BeOS' => '1.04',
1072             'ExtUtils::MM_Cygwin' => '1.06',
1073             'ExtUtils::MM_DOS' => '0.02',
1074             'ExtUtils::MM_MacOS' => '1.07',
1075             'ExtUtils::MM_NW5' => '2.06',
1076             'ExtUtils::MM_OS2' => '1.04',
1077             'ExtUtils::MM_UWIN' => '0.02',
1078             'ExtUtils::MM_Unix' => '1.42',
1079             'ExtUtils::MM_VMS' => '5.70',
1080             'ExtUtils::MM_Win32' => '1.09',
1081             'ExtUtils::MM_Win95' => '0.03',
1082             'ExtUtils::MY' => '0.01',
1083             'ExtUtils::MakeMaker' => '6.17',
1084             'ExtUtils::MakeMaker::bytes'=> '0.01',
1085             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1086             'ExtUtils::Manifest' => '1.42',
1087             'ExtUtils::Mkbootstrap' => '1.15',
1088             'ExtUtils::Mksymlists' => '1.19',
1089             'ExtUtils::Packlist' => '0.04',
1090             'ExtUtils::testlib' => '1.15',
1091             'File::Spec' => '0.86',
1092             'File::Spec::Cygwin' => '1.1',
1093             'File::Spec::Epoc' => '1.1',
1094             'File::Spec::Functions' => '1.3',
1095             'File::Spec::Mac' => '1.4',
1096             'File::Spec::OS2' => '1.2',
1097             'File::Spec::Unix' => '1.5',
1098             'File::Spec::VMS' => '1.4',
1099             'File::Spec::Win32' => '1.4',
1100             'File::Temp' => '0.14',
1101             'Safe' => '2.10',
1102             'Test' => '1.24',
1103             'Test::Builder' => '0.17',
1104             'Test::Harness' => '2.30',
1105             'Test::Harness::Assert' => '0.01',
1106             'Test::Harness::Iterator'=> '0.01',
1107             'Test::Harness::Straps' => '0.15',
1108             'Test::More' => '0.47',
1109             'Test::Simple' => '0.47',
1110             'Unicode' => '3.0.1',
1111             'if' => '0.03',
1112             'ops' => '1.00',
1113             },
1114             removed => {
1115             }
1116             },
1117             5.007003 => {
1118             delta_from => 5.006001,
1119             changed => {
1120             'AnyDBM_File' => '1.00',
1121             'Attribute::Handlers' => '0.76',
1122             'AutoLoader' => '5.59',
1123             'AutoSplit' => '1.0307',
1124             'B' => '1.00',
1125             'B::Asmdata' => '1.00',
1126             'B::Assembler' => '0.04',
1127             'B::Bblock' => '1.00',
1128             'B::Bytecode' => '1.00',
1129             'B::C' => '1.01',
1130             'B::CC' => '1.00',
1131             'B::Concise' => '0.52',
1132             'B::Debug' => '1.00',
1133             'B::Deparse' => '0.63',
1134             'B::Disassembler' => '1.01',
1135             'B::Lint' => '1.00',
1136             'B::Showlex' => '1.00',
1137             'B::Stackobj' => '1.00',
1138             'B::Stash' => '1.00',
1139             'B::Terse' => '1.00',
1140             'B::Xref' => '1.00',
1141             'Benchmark' => '1.04',
1142             'CGI' => '2.80',
1143             'CGI::Apache' => '1.00',
1144             'CGI::Carp' => '1.22',
1145             'CGI::Cookie' => '1.20',
1146             'CGI::Fast' => '1.04',
1147             'CGI::Pretty' => '1.05_00',
1148             'CGI::Switch' => '1.00',
1149             'CGI::Util' => '1.3',
1150             'CPAN' => '1.59_56',
1151             'CPAN::FirstTime' => '1.54',
1152             'CPAN::Nox' => '1.00_01',
1153             'Carp' => '1.01',
1154             'Carp::Heavy' => '1.01',
1155             'Class::ISA' => '0.32',
1156             'Class::Struct' => '0.61',
1157             'Cwd' => '2.06',
1158             'DB_File' => '1.804',
1159             'Data::Dumper' => '2.12',
1160             'Devel::DProf' => '20000000.00_01',
1161             'Devel::PPPort' => '2.0002',
1162             'Devel::Peek' => '1.00_03',
1163             'Devel::SelfStubber' => '1.03',
1164             'Digest' => '1.00',
1165             'Digest::MD5' => '2.16',
1166             'DirHandle' => '1.00',
1167             'Dumpvalue' => '1.10',
1168             'Encode' => '0.40',
1169             'Encode::CN' => '0.02',
1170             'Encode::CN::HZ' => undef,
1171             'Encode::Encoding' => '0.02',
1172             'Encode::Internal' => '0.30',
1173             'Encode::JP' => '0.02',
1174             'Encode::JP::Constants' => '1.02',
1175             'Encode::JP::H2Z' => '0.77',
1176             'Encode::JP::ISO_2022_JP'=> undef,
1177             'Encode::JP::JIS' => undef,
1178             'Encode::JP::Tr' => '0.77',
1179             'Encode::KR' => '0.02',
1180             'Encode::TW' => '0.02',
1181             'Encode::Tcl' => '1.01',
1182             'Encode::Tcl::Escape' => '1.01',
1183             'Encode::Tcl::Extended' => '1.01',
1184             'Encode::Tcl::HanZi' => '1.01',
1185             'Encode::Tcl::Table' => '1.01',
1186             'Encode::Unicode' => '0.30',
1187             'Encode::XS' => '0.40',
1188             'Encode::iso10646_1' => '0.30',
1189             'Encode::usc2_le' => '0.30',
1190             'Encode::utf8' => '0.30',
1191             'English' => '1.00',
1192             'Env' => '1.00',
1193             'Exporter' => '5.566',
1194             'Exporter::Heavy' => '5.562',
1195             'ExtUtils::Command' => '1.02',
1196             'ExtUtils::Constant' => '0.11',
1197             'ExtUtils::Embed' => '1.250601',
1198             'ExtUtils::Install' => '1.29',
1199             'ExtUtils::Installed' => '0.04',
1200             'ExtUtils::Liblist' => '1.2701',
1201             'ExtUtils::MM_BeOS' => '1.00',
1202             'ExtUtils::MM_Cygwin' => '1.00',
1203             'ExtUtils::MM_OS2' => '1.00',
1204             'ExtUtils::MM_Unix' => '1.12607',
1205             'ExtUtils::MM_VMS' => '5.56',
1206             'ExtUtils::MM_Win32' => '1.00_02',
1207             'ExtUtils::MakeMaker' => '5.48_03',
1208             'ExtUtils::Manifest' => '1.35',
1209             'ExtUtils::Mkbootstrap' => '1.1401',
1210             'ExtUtils::Mksymlists' => '1.18',
1211             'ExtUtils::Packlist' => '0.04',
1212             'ExtUtils::testlib' => '1.1201',
1213             'Fatal' => '1.03',
1214             'Fcntl' => '1.04',
1215             'File::Basename' => '2.71',
1216             'File::CheckTree' => '4.1',
1217             'File::Compare' => '1.1003',
1218             'File::Copy' => '2.05',
1219             'File::DosGlob' => '1.00',
1220             'File::Find' => '1.04',
1221             'File::Glob' => '1.01',
1222             'File::Path' => '1.05',
1223             'File::Spec' => '0.83',
1224             'File::Spec::Cygwin' => '1.0',
1225             'File::Spec::Epoc' => '1.00',
1226             'File::Spec::Functions' => '1.2',
1227             'File::Spec::Mac' => '1.3',
1228             'File::Spec::Unix' => '1.4',
1229             'File::Spec::VMS' => '1.2',
1230             'File::Spec::Win32' => '1.3',
1231             'File::Temp' => '0.13',
1232             'File::stat' => '1.00',
1233             'FileCache' => '1.00',
1234             'FileHandle' => '2.01',
1235             'Filter::Simple' => '0.77',
1236             'Filter::Util::Call' => '1.06',
1237             'FindBin' => '1.43',
1238             'GDBM_File' => '1.06',
1239             'Getopt::Long' => '2.28',
1240             'Getopt::Std' => '1.03',
1241             'I18N::Collate' => '1.00',
1242             'I18N::LangTags' => '0.27',
1243             'I18N::LangTags::List' => '0.25',
1244             'I18N::Langinfo' => '0.01',
1245             'IO::Dir' => '1.03_00',
1246             'IO::File' => '1.09',
1247             'IO::Handle' => '1.21_00',
1248             'IO::Pipe' => '1.122',
1249             'IO::Poll' => '0.06',
1250             'IO::Seekable' => '1.08_00',
1251             'IO::Select' => '1.15',
1252             'IO::Socket' => '1.27',
1253             'IO::Socket::INET' => '1.26',
1254             'IO::Socket::UNIX' => '1.20_00',
1255             'IPC::Msg' => '1.00_00',
1256             'IPC::Open3' => '1.0104',
1257             'IPC::Semaphore' => '1.00_00',
1258             'IPC::SysV' => '1.03_00',
1259             'List::Util' => '1.06_00',
1260             'Locale::Constants' => '2.01',
1261             'Locale::Country' => '2.01',
1262             'Locale::Currency' => '2.01',
1263             'Locale::Language' => '2.01',
1264             'Locale::Maketext' => '1.03',
1265             'Locale::Script' => '2.01',
1266             'MIME::Base64' => '2.12',
1267             'MIME::QuotedPrint' => '2.03',
1268             'Math::BigFloat' => '1.30',
1269             'Math::BigInt' => '1.54',
1270             'Math::BigInt::Calc' => '0.25',
1271             'Math::Complex' => '1.34',
1272             'Math::Trig' => '1.01',
1273             'Memoize' => '0.66',
1274             'Memoize::AnyDBM_File' => '0.65',
1275             'Memoize::Expire' => '0.66',
1276             'Memoize::ExpireFile' => '0.65',
1277             'Memoize::ExpireTest' => '0.65',
1278             'Memoize::NDBM_File' => '0.65',
1279             'Memoize::SDBM_File' => '0.65',
1280             'Memoize::Storable' => '0.65',
1281             'NEXT' => '0.50',
1282             'Net::Cmd' => '2.21',
1283             'Net::Config' => '1.10',
1284             'Net::Domain' => '2.17',
1285             'Net::FTP' => '2.64',
1286             'Net::FTP::A' => '1.15',
1287             'Net::FTP::E' => '0.01',
1288             'Net::FTP::I' => '1.12',
1289             'Net::FTP::L' => '0.01',
1290             'Net::FTP::dataconn' => '0.10',
1291             'Net::NNTP' => '2.21',
1292             'Net::Netrc' => '2.12',
1293             'Net::POP3' => '2.23',
1294             'Net::Ping' => '2.12',
1295             'Net::SMTP' => '2.21',
1296             'Net::Time' => '2.09',
1297             'Net::hostent' => '1.00',
1298             'Net::netent' => '1.00',
1299             'Net::protoent' => '1.00',
1300             'Net::servent' => '1.00',
1301             'O' => '1.00',
1302             'OS2::DLL' => '1.00',
1303             'OS2::Process' => '1.0',
1304             'OS2::REXX' => '1.01',
1305             'Opcode' => '1.05',
1306             'POSIX' => '1.05',
1307             'PerlIO' => '1.00',
1308             'PerlIO::Scalar' => '0.01',
1309             'PerlIO::Via' => '0.01',
1310             'Pod::Checker' => '1.3',
1311             'Pod::Find' => '0.22',
1312             'Pod::Functions' => '1.01',
1313             'Pod::Html' => '1.04',
1314             'Pod::LaTeX' => '0.54',
1315             'Pod::Man' => '1.32',
1316             'Pod::ParseLink' => '1.05',
1317             'Pod::Text' => '2.18',
1318             'Pod::Text::Color' => '1.03',
1319             'Pod::Text::Overstrike' => '1.08',
1320             'Pod::Text::Termcap' => '1.09',
1321             'Safe' => '2.07',
1322             'Scalar::Util' => '1.06_00',
1323             'Search::Dict' => '1.02',
1324             'SelectSaver' => '1.00',
1325             'SelfLoader' => '1.0903',
1326             'Shell' => '0.4',
1327             'Socket' => '1.75',
1328             'Storable' => '1.015',
1329             'Switch' => '2.06',
1330             'Symbol' => '1.04',
1331             'Sys::Syslog' => '0.02',
1332             'Term::ANSIColor' => '1.04',
1333             'Term::Cap' => '1.07',
1334             'Term::Complete' => '1.4',
1335             'Term::ReadLine' => '1.00',
1336             'Test' => '1.18',
1337             'Test::Builder' => '0.11',
1338             'Test::Harness' => '2.01',
1339             'Test::Harness::Assert' => '0.01',
1340             'Test::Harness::Iterator'=> '0.01',
1341             'Test::Harness::Straps' => '0.08',
1342             'Test::More' => '0.41',
1343             'Test::Simple' => '0.41',
1344             'Text::Abbrev' => '1.00',
1345             'Text::Balanced' => '1.89',
1346             'Text::ParseWords' => '3.21',
1347             'Text::Soundex' => '1.01',
1348             'Text::Wrap' => '2001.0929',
1349             'Thread' => '2.00',
1350             'Thread::Queue' => '1.00',
1351             'Thread::Semaphore' => '1.00',
1352             'Thread::Signal' => '1.00',
1353             'Thread::Specific' => '1.00',
1354             'Tie::Array' => '1.02',
1355             'Tie::File' => '0.17',
1356             'Tie::Handle' => '4.1',
1357             'Tie::Hash' => '1.00',
1358             'Tie::Memoize' => '1.0',
1359             'Tie::RefHash' => '1.3_00',
1360             'Tie::Scalar' => '1.00',
1361             'Tie::SubstrHash' => '1.00',
1362             'Time::HiRes' => '1.20_00',
1363             'Time::Local' => '1.04',
1364             'Time::gmtime' => '1.02',
1365             'Time::localtime' => '1.02',
1366             'Time::tm' => '1.00',
1367             'UNIVERSAL' => '1.00',
1368             'Unicode::Collate' => '0.10',
1369             'Unicode::Normalize' => '0.14',
1370             'Unicode::UCD' => '0.2',
1371             'User::grent' => '1.00',
1372             'User::pwent' => '1.00',
1373             'VMS::DCLsym' => '1.02',
1374             'VMS::Filespec' => '1.1',
1375             'VMS::Stdio' => '2.3',
1376             'XS::Typemap' => '0.01',
1377             'attributes' => '0.04_01',
1378             'attrs' => '1.01',
1379             'autouse' => '1.03',
1380             'base' => '1.02',
1381             'blib' => '1.01',
1382             'bytes' => '1.00',
1383             'charnames' => '1.01',
1384             'constant' => '1.04',
1385             'diagnostics' => '1.1',
1386             'encoding' => '1.00',
1387             'fields' => '1.02',
1388             'filetest' => '1.00',
1389             'if' => '0.01',
1390             'integer' => '1.00',
1391             'less' => '0.01',
1392             'locale' => '1.00',
1393             'open' => '1.01',
1394             'ops' => '1.00',
1395             'overload' => '1.00',
1396             're' => '0.03',
1397             'sort' => '1.00',
1398             'strict' => '1.02',
1399             'subs' => '1.00',
1400             'threads' => '0.05',
1401             'threads::shared' => '0.90',
1402             'utf8' => '1.00',
1403             'vars' => '1.01',
1404             'vmsish' => '1.00',
1405             'warnings' => '1.00',
1406             'warnings::register' => '1.00',
1407             },
1408             removed => {
1409             }
1410             },
1411             5.008 => {
1412             delta_from => 5.007003,
1413             changed => {
1414             'Attribute::Handlers' => '0.77',
1415             'B' => '1.01',
1416             'B::Lint' => '1.01',
1417             'B::Xref' => '1.01',
1418             'CGI' => '2.81',
1419             'CGI::Carp' => '1.23',
1420             'CPAN' => '1.61',
1421             'CPAN::FirstTime' => '1.56',
1422             'CPAN::Nox' => '1.02',
1423             'Digest::MD5' => '2.20',
1424             'Dumpvalue' => '1.11',
1425             'Encode' => '1.75',
1426             'Encode::Alias' => '1.32',
1427             'Encode::Byte' => '1.22',
1428             'Encode::CJKConstants' => '1.00',
1429             'Encode::CN' => '1.24',
1430             'Encode::CN::HZ' => '1.04',
1431             'Encode::Config' => '1.06',
1432             'Encode::EBCDIC' => '1.21',
1433             'Encode::Encoder' => '0.05',
1434             'Encode::Encoding' => '1.30',
1435             'Encode::Guess' => '1.06',
1436             'Encode::JP' => '1.25',
1437             'Encode::JP::H2Z' => '1.02',
1438             'Encode::JP::JIS7' => '1.08',
1439             'Encode::KR' => '1.22',
1440             'Encode::KR::2022_KR' => '1.05',
1441             'Encode::MIME::Header' => '1.05',
1442             'Encode::Symbol' => '1.22',
1443             'Encode::TW' => '1.26',
1444             'Encode::Unicode' => '1.37',
1445             'Exporter::Heavy' => '5.566',
1446             'ExtUtils::Command' => '1.04',
1447             'ExtUtils::Command::MM' => '0.01',
1448             'ExtUtils::Constant' => '0.12',
1449             'ExtUtils::Installed' => '0.06',
1450             'ExtUtils::Liblist' => '1.00',
1451             'ExtUtils::Liblist::Kid'=> '1.29',
1452             'ExtUtils::MM' => '0.04',
1453             'ExtUtils::MM_Any' => '0.04',
1454             'ExtUtils::MM_BeOS' => '1.03',
1455             'ExtUtils::MM_Cygwin' => '1.04',
1456             'ExtUtils::MM_DOS' => '0.01',
1457             'ExtUtils::MM_MacOS' => '1.03',
1458             'ExtUtils::MM_NW5' => '2.05',
1459             'ExtUtils::MM_OS2' => '1.03',
1460             'ExtUtils::MM_UWIN' => '0.01',
1461             'ExtUtils::MM_Unix' => '1.33',
1462             'ExtUtils::MM_VMS' => '5.65',
1463             'ExtUtils::MM_Win32' => '1.05',
1464             'ExtUtils::MM_Win95' => '0.02',
1465             'ExtUtils::MY' => '0.01',
1466             'ExtUtils::MakeMaker' => '6.03',
1467             'ExtUtils::Manifest' => '1.38',
1468             'ExtUtils::Mkbootstrap' => '1.15',
1469             'ExtUtils::Mksymlists' => '1.19',
1470             'ExtUtils::testlib' => '1.15',
1471             'File::CheckTree' => '4.2',
1472             'FileCache' => '1.021',
1473             'Filter::Simple' => '0.78',
1474             'Getopt::Long' => '2.32',
1475             'Hash::Util' => '0.04',
1476             'List::Util' => '1.07_00',
1477             'Locale::Country' => '2.04',
1478             'Math::BigFloat' => '1.35',
1479             'Math::BigFloat::Trace' => '0.01',
1480             'Math::BigInt' => '1.60',
1481             'Math::BigInt::Calc' => '0.30',
1482             'Math::BigInt::Trace' => '0.01',
1483             'Math::BigRat' => '0.07',
1484             'Memoize' => '1.01',
1485             'Memoize::Expire' => '1.00',
1486             'Memoize::ExpireFile' => '1.01',
1487             'Net::FTP' => '2.65',
1488             'Net::FTP::dataconn' => '0.11',
1489             'Net::Ping' => '2.19',
1490             'Net::SMTP' => '2.24',
1491             'PerlIO' => '1.01',
1492             'PerlIO::encoding' => '0.06',
1493             'PerlIO::scalar' => '0.01',
1494             'PerlIO::via' => '0.01',
1495             'PerlIO::via::QuotedPrint'=> '0.04',
1496             'Pod::Man' => '1.33',
1497             'Pod::Text' => '2.19',
1498             'Scalar::Util' => '1.07_00',
1499             'Storable' => '2.04',
1500             'Switch' => '2.09',
1501             'Sys::Syslog' => '0.03',
1502             'Test' => '1.20',
1503             'Test::Builder' => '0.15',
1504             'Test::Harness' => '2.26',
1505             'Test::Harness::Straps' => '0.14',
1506             'Test::More' => '0.45',
1507             'Test::Simple' => '0.45',
1508             'Thread::Queue' => '2.00',
1509             'Thread::Semaphore' => '2.00',
1510             'Tie::File' => '0.93',
1511             'Tie::RefHash' => '1.30',
1512             'Unicode' => '3.2.0',
1513             'Unicode::Collate' => '0.12',
1514             'Unicode::Normalize' => '0.17',
1515             'XS::APItest' => '0.01',
1516             'attributes' => '0.05',
1517             'base' => '1.03',
1518             'bigint' => '0.02',
1519             'bignum' => '0.11',
1520             'bigrat' => '0.04',
1521             'blib' => '1.02',
1522             'encoding' => '1.35',
1523             'sort' => '1.01',
1524             'threads' => '0.99',
1525             },
1526             removed => {
1527             'Encode::Internal' => 1,
1528             'Encode::JP::Constants' => 1,
1529             'Encode::JP::ISO_2022_JP'=> 1,
1530             'Encode::JP::JIS' => 1,
1531             'Encode::JP::Tr' => 1,
1532             'Encode::Tcl' => 1,
1533             'Encode::Tcl::Escape' => 1,
1534             'Encode::Tcl::Extended' => 1,
1535             'Encode::Tcl::HanZi' => 1,
1536             'Encode::Tcl::Table' => 1,
1537             'Encode::XS' => 1,
1538             'Encode::iso10646_1' => 1,
1539             'Encode::usc2_le' => 1,
1540             'Encode::utf8' => 1,
1541             'PerlIO::Scalar' => 1,
1542             'PerlIO::Via' => 1,
1543             }
1544             },
1545             5.008001 => {
1546             delta_from => 5.008,
1547             changed => {
1548             'Attribute::Handlers' => '0.78',
1549             'AutoLoader' => '5.60',
1550             'AutoSplit' => '1.04',
1551             'B' => '1.02',
1552             'B::Asmdata' => '1.01',
1553             'B::Assembler' => '0.06',
1554             'B::Bblock' => '1.02',
1555             'B::Bytecode' => '1.01',
1556             'B::C' => '1.02',
1557             'B::Concise' => '0.56',
1558             'B::Debug' => '1.01',
1559             'B::Deparse' => '0.64',
1560             'B::Disassembler' => '1.03',
1561             'B::Lint' => '1.02',
1562             'B::Terse' => '1.02',
1563             'Benchmark' => '1.051',
1564             'ByteLoader' => '0.05',
1565             'CGI' => '3.00',
1566             'CGI::Carp' => '1.26',
1567             'CGI::Cookie' => '1.24',
1568             'CGI::Fast' => '1.041',
1569             'CGI::Pretty' => '1.07_00',
1570             'CGI::Util' => '1.31',
1571             'CPAN' => '1.76_01',
1572             'CPAN::FirstTime' => '1.60',
1573             'CPAN::Nox' => '1.03',
1574             'Class::Struct' => '0.63',
1575             'Cwd' => '2.08',
1576             'DB_File' => '1.806',
1577             'Data::Dumper' => '2.121',
1578             'Devel::DProf' => '20030813.00',
1579             'Devel::PPPort' => '2.007',
1580             'Devel::Peek' => '1.01',
1581             'Digest' => '1.02',
1582             'Digest::MD5' => '2.27',
1583             'Encode' => '1.9801',
1584             'Encode::Alias' => '1.38',
1585             'Encode::Byte' => '1.23',
1586             'Encode::CJKConstants' => '1.02',
1587             'Encode::CN::HZ' => '1.05',
1588             'Encode::Config' => '1.07',
1589             'Encode::Encoder' => '0.07',
1590             'Encode::Encoding' => '1.33',
1591             'Encode::Guess' => '1.09',
1592             'Encode::JP::JIS7' => '1.12',
1593             'Encode::KR' => '1.23',
1594             'Encode::KR::2022_KR' => '1.06',
1595             'Encode::MIME::Header' => '1.09',
1596             'Encode::Unicode' => '1.40',
1597             'Encode::Unicode::UTF7' => '0.02',
1598             'English' => '1.01',
1599             'Errno' => '1.09_00',
1600             'Exporter' => '5.567',
1601             'Exporter::Heavy' => '5.567',
1602             'ExtUtils::Command' => '1.05',
1603             'ExtUtils::Command::MM' => '0.03',
1604             'ExtUtils::Constant' => '0.14',
1605             'ExtUtils::Install' => '1.32',
1606             'ExtUtils::Installed' => '0.08',
1607             'ExtUtils::Liblist' => '1.01',
1608             'ExtUtils::Liblist::Kid'=> '1.3',
1609             'ExtUtils::MM_Any' => '0.07',
1610             'ExtUtils::MM_BeOS' => '1.04',
1611             'ExtUtils::MM_Cygwin' => '1.06',
1612             'ExtUtils::MM_DOS' => '0.02',
1613             'ExtUtils::MM_MacOS' => '1.07',
1614             'ExtUtils::MM_NW5' => '2.06',
1615             'ExtUtils::MM_OS2' => '1.04',
1616             'ExtUtils::MM_UWIN' => '0.02',
1617             'ExtUtils::MM_Unix' => '1.42',
1618             'ExtUtils::MM_VMS' => '5.70',
1619             'ExtUtils::MM_Win32' => '1.09',
1620             'ExtUtils::MM_Win95' => '0.03',
1621             'ExtUtils::MakeMaker' => '6.17',
1622             'ExtUtils::MakeMaker::bytes'=> '0.01',
1623             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1624             'ExtUtils::Manifest' => '1.42',
1625             'Fcntl' => '1.05',
1626             'File::Basename' => '2.72',
1627             'File::Copy' => '2.06',
1628             'File::Find' => '1.05',
1629             'File::Glob' => '1.02',
1630             'File::Path' => '1.06',
1631             'File::Spec' => '0.86',
1632             'File::Spec::Cygwin' => '1.1',
1633             'File::Spec::Epoc' => '1.1',
1634             'File::Spec::Functions' => '1.3',
1635             'File::Spec::Mac' => '1.4',
1636             'File::Spec::OS2' => '1.2',
1637             'File::Spec::Unix' => '1.5',
1638             'File::Spec::VMS' => '1.4',
1639             'File::Spec::Win32' => '1.4',
1640             'File::Temp' => '0.14',
1641             'FileCache' => '1.03',
1642             'Filter::Util::Call' => '1.0601',
1643             'GDBM_File' => '1.07',
1644             'Getopt::Long' => '2.34',
1645             'Getopt::Std' => '1.04',
1646             'Hash::Util' => '0.05',
1647             'I18N::LangTags' => '0.28',
1648             'I18N::LangTags::List' => '0.26',
1649             'I18N::Langinfo' => '0.02',
1650             'IO' => '1.21',
1651             'IO::Dir' => '1.04',
1652             'IO::File' => '1.10',
1653             'IO::Handle' => '1.23',
1654             'IO::Seekable' => '1.09',
1655             'IO::Select' => '1.16',
1656             'IO::Socket' => '1.28',
1657             'IO::Socket::INET' => '1.27',
1658             'IO::Socket::UNIX' => '1.21',
1659             'IPC::Msg' => '1.02',
1660             'IPC::Open3' => '1.0105',
1661             'IPC::Semaphore' => '1.02',
1662             'IPC::SysV' => '1.04',
1663             'JNI' => '0.2',
1664             'List::Util' => '1.13',
1665             'Locale::Country' => '2.61',
1666             'Locale::Currency' => '2.21',
1667             'Locale::Language' => '2.21',
1668             'Locale::Maketext' => '1.06',
1669             'Locale::Maketext::Guts'=> undef,
1670             'Locale::Maketext::GutsLoader'=> undef,
1671             'Locale::Script' => '2.21',
1672             'MIME::Base64' => '2.20',
1673             'MIME::QuotedPrint' => '2.20',
1674             'Math::BigFloat' => '1.40',
1675             'Math::BigInt' => '1.66',
1676             'Math::BigInt::Calc' => '0.36',
1677             'Math::BigInt::Scalar' => '0.11',
1678             'Math::BigRat' => '0.10',
1679             'Math::Trig' => '1.02',
1680             'NDBM_File' => '1.05',
1681             'NEXT' => '0.60',
1682             'Net::Cmd' => '2.24',
1683             'Net::Domain' => '2.18',
1684             'Net::FTP' => '2.71',
1685             'Net::FTP::A' => '1.16',
1686             'Net::NNTP' => '2.22',
1687             'Net::POP3' => '2.24',
1688             'Net::Ping' => '2.31',
1689             'Net::SMTP' => '2.26',
1690             'Net::hostent' => '1.01',
1691             'Net::servent' => '1.01',
1692             'ODBM_File' => '1.04',
1693             'OS2::DLL' => '1.01',
1694             'OS2::ExtAttr' => '0.02',
1695             'OS2::PrfDB' => '0.03',
1696             'OS2::Process' => '1.01',
1697             'OS2::REXX' => '1.02',
1698             'POSIX' => '1.06',
1699             'PerlIO' => '1.02',
1700             'PerlIO::encoding' => '0.07',
1701             'PerlIO::scalar' => '0.02',
1702             'PerlIO::via' => '0.02',
1703             'PerlIO::via::QuotedPrint'=> '0.05',
1704             'Pod::Checker' => '1.41',
1705             'Pod::Find' => '0.24',
1706             'Pod::Functions' => '1.02',
1707             'Pod::Html' => '1.0501',
1708             'Pod::InputObjects' => '1.14',
1709             'Pod::LaTeX' => '0.55',
1710             'Pod::Man' => '1.37',
1711             'Pod::ParseLink' => '1.06',
1712             'Pod::ParseUtils' => '0.3',
1713             'Pod::Perldoc' => '3.10',
1714             'Pod::Perldoc::BaseTo' => undef,
1715             'Pod::Perldoc::GetOptsOO'=> undef,
1716             'Pod::Perldoc::ToChecker'=> undef,
1717             'Pod::Perldoc::ToMan' => undef,
1718             'Pod::Perldoc::ToNroff' => undef,
1719             'Pod::Perldoc::ToPod' => undef,
1720             'Pod::Perldoc::ToRtf' => undef,
1721             'Pod::Perldoc::ToText' => undef,
1722             'Pod::Perldoc::ToTk' => undef,
1723             'Pod::Perldoc::ToXml' => undef,
1724             'Pod::PlainText' => '2.01',
1725             'Pod::Text' => '2.21',
1726             'Pod::Text::Color' => '1.04',
1727             'Pod::Text::Overstrike' => '1.1',
1728             'Pod::Text::Termcap' => '1.11',
1729             'Pod::Usage' => '1.16',
1730             'SDBM_File' => '1.04',
1731             'Safe' => '2.10',
1732             'Scalar::Util' => '1.13',
1733             'SelfLoader' => '1.0904',
1734             'Shell' => '0.5',
1735             'Socket' => '1.76',
1736             'Storable' => '2.08',
1737             'Switch' => '2.10',
1738             'Symbol' => '1.05',
1739             'Sys::Hostname' => '1.11',
1740             'Sys::Syslog' => '0.04',
1741             'Term::ANSIColor' => '1.07',
1742             'Term::Cap' => '1.08',
1743             'Term::Complete' => '1.401',
1744             'Term::ReadLine' => '1.01',
1745             'Test' => '1.24',
1746             'Test::Builder' => '0.17',
1747             'Test::Harness' => '2.30',
1748             'Test::Harness::Straps' => '0.15',
1749             'Test::More' => '0.47',
1750             'Test::Simple' => '0.47',
1751             'Text::Abbrev' => '1.01',
1752             'Text::Balanced' => '1.95',
1753             'Text::Wrap' => '2001.09291',
1754             'Thread::Semaphore' => '2.01',
1755             'Tie::Array' => '1.03',
1756             'Tie::File' => '0.97',
1757             'Tie::RefHash' => '1.31',
1758             'Time::HiRes' => '1.51',
1759             'Time::Local' => '1.07',
1760             'UNIVERSAL' => '1.01',
1761             'Unicode' => '4.0.0',
1762             'Unicode::Collate' => '0.28',
1763             'Unicode::Normalize' => '0.23',
1764             'Unicode::UCD' => '0.21',
1765             'VMS::Filespec' => '1.11',
1766             'XS::APItest' => '0.02',
1767             'XSLoader' => '0.02',
1768             'attributes' => '0.06',
1769             'base' => '2.03',
1770             'bigint' => '0.04',
1771             'bignum' => '0.14',
1772             'bigrat' => '0.06',
1773             'bytes' => '1.01',
1774             'charnames' => '1.02',
1775             'diagnostics' => '1.11',
1776             'encoding' => '1.47',
1777             'fields' => '2.03',
1778             'filetest' => '1.01',
1779             'if' => '0.03',
1780             'lib' => '0.5565',
1781             'open' => '1.02',
1782             'overload' => '1.01',
1783             're' => '0.04',
1784             'sort' => '1.02',
1785             'strict' => '1.03',
1786             'threads' => '1.00',
1787             'threads::shared' => '0.91',
1788             'utf8' => '1.02',
1789             'vmsish' => '1.01',
1790             'warnings' => '1.03',
1791             },
1792             removed => {
1793             }
1794             },
1795             5.008002 => {
1796             delta_from => 5.008001,
1797             changed => {
1798             'DB_File' => '1.807',
1799             'Devel::PPPort' => '2.009',
1800             'Digest::MD5' => '2.30',
1801             'I18N::LangTags' => '0.29',
1802             'I18N::LangTags::List' => '0.29',
1803             'MIME::Base64' => '2.21',
1804             'MIME::QuotedPrint' => '2.21',
1805             'Net::Domain' => '2.19',
1806             'Net::FTP' => '2.72',
1807             'Pod::Perldoc' => '3.11',
1808             'Time::HiRes' => '1.52',
1809             'Unicode::Collate' => '0.30',
1810             'Unicode::Normalize' => '0.25',
1811             },
1812             removed => {
1813             }
1814             },
1815             5.008003 => {
1816             delta_from => 5.008002,
1817             changed => {
1818             'Benchmark' => '1.052',
1819             'CGI' => '3.01',
1820             'CGI::Carp' => '1.27',
1821             'CGI::Fast' => '1.05',
1822             'CGI::Pretty' => '1.08',
1823             'CGI::Util' => '1.4',
1824             'Cwd' => '2.12',
1825             'DB_File' => '1.808',
1826             'Devel::PPPort' => '2.011',
1827             'Digest' => '1.05',
1828             'Digest::MD5' => '2.33',
1829             'Digest::base' => '1.00',
1830             'Encode' => '1.99',
1831             'Exporter' => '5.57',
1832             'File::CheckTree' => '4.3',
1833             'File::Copy' => '2.07',
1834             'File::Find' => '1.06',
1835             'File::Spec' => '0.87',
1836             'FindBin' => '1.44',
1837             'Getopt::Std' => '1.05',
1838             'Math::BigFloat' => '1.42',
1839             'Math::BigInt' => '1.68',
1840             'Math::BigInt::Calc' => '0.38',
1841             'Math::BigInt::CalcEmu' => '0.02',
1842             'OS2::DLL' => '1.02',
1843             'POSIX' => '1.07',
1844             'PerlIO' => '1.03',
1845             'PerlIO::via::QuotedPrint'=> '0.06',
1846             'Pod::Html' => '1.0502',
1847             'Pod::Parser' => '1.14',
1848             'Pod::Perldoc' => '3.12',
1849             'Pod::PlainText' => '2.02',
1850             'Storable' => '2.09',
1851             'Test::Harness' => '2.40',
1852             'Test::Harness::Assert' => '0.02',
1853             'Test::Harness::Iterator'=> '0.02',
1854             'Test::Harness::Straps' => '0.19',
1855             'Tie::Hash' => '1.01',
1856             'Unicode::Collate' => '0.33',
1857             'Unicode::Normalize' => '0.28',
1858             'XS::APItest' => '0.03',
1859             'base' => '2.04',
1860             'diagnostics' => '1.12',
1861             'encoding' => '1.48',
1862             'threads' => '1.01',
1863             'threads::shared' => '0.92',
1864             },
1865             removed => {
1866             'Math::BigInt::Scalar' => 1,
1867             }
1868             },
1869             5.008004 => {
1870             delta_from => 5.008003,
1871             changed => {
1872             'Attribute::Handlers' => '0.78_01',
1873             'B::Assembler' => '0.07',
1874             'B::Concise' => '0.60',
1875             'B::Deparse' => '0.66',
1876             'Benchmark' => '1.06',
1877             'CGI' => '3.04',
1878             'Carp' => '1.02',
1879             'Cwd' => '2.17',
1880             'DBM_Filter' => '0.01',
1881             'DBM_Filter::compress' => '0.01',
1882             'DBM_Filter::encode' => '0.01',
1883             'DBM_Filter::int32' => '0.01',
1884             'DBM_Filter::null' => '0.01',
1885             'DBM_Filter::utf8' => '0.01',
1886             'Digest' => '1.06',
1887             'DynaLoader' => '1.05',
1888             'Encode' => '1.99_01',
1889             'Encode::CN::HZ' => '1.0501',
1890             'Exporter' => '5.58',
1891             'Exporter::Heavy' => '5.57',
1892             'ExtUtils::Liblist::Kid'=> '1.3001',
1893             'ExtUtils::MM_NW5' => '2.07_02',
1894             'ExtUtils::MM_Win95' => '0.0301',
1895             'File::Find' => '1.07',
1896             'IO::Handle' => '1.24',
1897             'IO::Pipe' => '1.123',
1898             'IPC::Open3' => '1.0106',
1899             'Locale::Maketext' => '1.08',
1900             'MIME::Base64' => '3.01',
1901             'MIME::QuotedPrint' => '3.01',
1902             'Math::BigFloat' => '1.44',
1903             'Math::BigInt' => '1.70',
1904             'Math::BigInt::Calc' => '0.40',
1905             'Math::BigInt::CalcEmu' => '0.04',
1906             'Math::BigRat' => '0.12',
1907             'ODBM_File' => '1.05',
1908             'POSIX' => '1.08',
1909             'Shell' => '0.5.2',
1910             'Socket' => '1.77',
1911             'Storable' => '2.12',
1912             'Sys::Syslog' => '0.05',
1913             'Term::ANSIColor' => '1.08',
1914             'Time::HiRes' => '1.59',
1915             'Unicode' => '4.0.1',
1916             'Unicode::UCD' => '0.22',
1917             'Win32' => '0.23',
1918             'base' => '2.05',
1919             'bigint' => '0.05',
1920             'bignum' => '0.15',
1921             'charnames' => '1.03',
1922             'open' => '1.03',
1923             'threads' => '1.03',
1924             'utf8' => '1.03',
1925             },
1926             removed => {
1927             }
1928             },
1929             5.008005 => {
1930             delta_from => 5.008004,
1931             changed => {
1932             'B::Concise' => '0.61',
1933             'B::Deparse' => '0.67',
1934             'CGI' => '3.05',
1935             'CGI::Carp' => '1.28',
1936             'CGI::Util' => '1.5',
1937             'Carp' => '1.03',
1938             'Carp::Heavy' => '1.03',
1939             'Cwd' => '2.19',
1940             'DB_File' => '1.809',
1941             'Digest' => '1.08',
1942             'Encode' => '2.01',
1943             'Encode::Alias' => '2.00',
1944             'Encode::Byte' => '2.00',
1945             'Encode::CJKConstants' => '2.00',
1946             'Encode::CN' => '2.00',
1947             'Encode::CN::HZ' => '2.01',
1948             'Encode::Config' => '2.00',
1949             'Encode::EBCDIC' => '2.00',
1950             'Encode::Encoder' => '2.00',
1951             'Encode::Encoding' => '2.00',
1952             'Encode::Guess' => '2.00',
1953             'Encode::JP' => '2.00',
1954             'Encode::JP::H2Z' => '2.00',
1955             'Encode::JP::JIS7' => '2.00',
1956             'Encode::KR' => '2.00',
1957             'Encode::KR::2022_KR' => '2.00',
1958             'Encode::MIME::Header' => '2.00',
1959             'Encode::Symbol' => '2.00',
1960             'Encode::TW' => '2.00',
1961             'Encode::Unicode' => '2.00',
1962             'Encode::Unicode::UTF7' => '2.01',
1963             'File::Basename' => '2.73',
1964             'File::Copy' => '2.08',
1965             'File::Glob' => '1.03',
1966             'FileCache' => '1.04_01',
1967             'I18N::LangTags' => '0.33',
1968             'I18N::LangTags::Detect'=> '1.03',
1969             'List::Util' => '1.14',
1970             'Locale::Constants' => '2.07',
1971             'Locale::Country' => '2.07',
1972             'Locale::Currency' => '2.07',
1973             'Locale::Language' => '2.07',
1974             'Locale::Maketext' => '1.09',
1975             'Locale::Script' => '2.07',
1976             'Net::Cmd' => '2.26',
1977             'Net::FTP' => '2.75',
1978             'Net::NNTP' => '2.23',
1979             'Net::POP3' => '2.28',
1980             'Net::SMTP' => '2.29',
1981             'Net::Time' => '2.10',
1982             'Pod::Checker' => '1.42',
1983             'Pod::Find' => '0.2401',
1984             'Pod::LaTeX' => '0.56',
1985             'Pod::ParseUtils' => '1.2',
1986             'Pod::Perldoc' => '3.13',
1987             'Safe' => '2.11',
1988             'Scalar::Util' => '1.14',
1989             'Shell' => '0.6',
1990             'Storable' => '2.13',
1991             'Term::Cap' => '1.09',
1992             'Test' => '1.25',
1993             'Test::Harness' => '2.42',
1994             'Text::ParseWords' => '3.22',
1995             'Text::Wrap' => '2001.09292',
1996             'Time::Local' => '1.10',
1997             'Unicode::Collate' => '0.40',
1998             'Unicode::Normalize' => '0.30',
1999             'XS::APItest' => '0.04',
2000             'autouse' => '1.04',
2001             'base' => '2.06',
2002             'charnames' => '1.04',
2003             'diagnostics' => '1.13',
2004             'encoding' => '2.00',
2005             'threads' => '1.05',
2006             'utf8' => '1.04',
2007             },
2008             removed => {
2009             }
2010             },
2011             5.008006 => {
2012             delta_from => 5.008005,
2013             changed => {
2014             'B' => '1.07',
2015             'B::C' => '1.04',
2016             'B::Concise' => '0.64',
2017             'B::Debug' => '1.02',
2018             'B::Deparse' => '0.69',
2019             'B::Lint' => '1.03',
2020             'B::Showlex' => '1.02',
2021             'Cwd' => '3.01',
2022             'DB_File' => '1.810',
2023             'Data::Dumper' => '2.121_02',
2024             'Devel::PPPort' => '3.03',
2025             'Devel::Peek' => '1.02',
2026             'Encode' => '2.08',
2027             'Encode::Alias' => '2.02',
2028             'Encode::Encoding' => '2.02',
2029             'Encode::JP' => '2.01',
2030             'Encode::Unicode' => '2.02',
2031             'Exporter::Heavy' => '5.58',
2032             'ExtUtils::Constant' => '0.1401',
2033             'File::Spec' => '3.01',
2034             'File::Spec::Win32' => '1.5',
2035             'I18N::LangTags' => '0.35',
2036             'I18N::LangTags::List' => '0.35',
2037             'MIME::Base64' => '3.05',
2038             'MIME::QuotedPrint' => '3.03',
2039             'Math::BigFloat' => '1.47',
2040             'Math::BigInt' => '1.73',
2041             'Math::BigInt::Calc' => '0.43',
2042             'Math::BigRat' => '0.13',
2043             'Text::ParseWords' => '3.23',
2044             'Time::HiRes' => '1.65',
2045             'XS::APItest' => '0.05',
2046             'diagnostics' => '1.14',
2047             'encoding' => '2.01',
2048             'open' => '1.04',
2049             'overload' => '1.02',
2050             },
2051             removed => {
2052             }
2053             },
2054             5.008007 => {
2055             delta_from => 5.008006,
2056             changed => {
2057             'B' => '1.09',
2058             'B::Concise' => '0.65',
2059             'B::Deparse' => '0.7',
2060             'B::Disassembler' => '1.04',
2061             'B::Terse' => '1.03',
2062             'Benchmark' => '1.07',
2063             'CGI' => '3.10',
2064             'CGI::Carp' => '1.29',
2065             'CGI::Cookie' => '1.25',
2066             'Carp' => '1.04',
2067             'Carp::Heavy' => '1.04',
2068             'Class::ISA' => '0.33',
2069             'Cwd' => '3.05',
2070             'DB_File' => '1.811',
2071             'Data::Dumper' => '2.121_04',
2072             'Devel::DProf' => '20050310.00',
2073             'Devel::PPPort' => '3.06',
2074             'Digest' => '1.10',
2075             'Digest::file' => '0.01',
2076             'Encode' => '2.10',
2077             'Encode::Alias' => '2.03',
2078             'Errno' => '1.09_01',
2079             'ExtUtils::Constant' => '0.16',
2080             'ExtUtils::Constant::Base'=> '0.01',
2081             'ExtUtils::Constant::Utils'=> '0.01',
2082             'ExtUtils::Constant::XS'=> '0.01',
2083             'File::Find' => '1.09',
2084             'File::Glob' => '1.04',
2085             'File::Path' => '1.07',
2086             'File::Spec' => '3.05',
2087             'File::Temp' => '0.16',
2088             'FileCache' => '1.05',
2089             'IO::File' => '1.11',
2090             'IO::Socket::INET' => '1.28',
2091             'Math::BigFloat' => '1.51',
2092             'Math::BigInt' => '1.77',
2093             'Math::BigInt::Calc' => '0.47',
2094             'Math::BigInt::CalcEmu' => '0.05',
2095             'Math::BigRat' => '0.15',
2096             'Pod::Find' => '1.3',
2097             'Pod::Html' => '1.0503',
2098             'Pod::InputObjects' => '1.3',
2099             'Pod::LaTeX' => '0.58',
2100             'Pod::ParseUtils' => '1.3',
2101             'Pod::Parser' => '1.3',
2102             'Pod::Perldoc' => '3.14',
2103             'Pod::Select' => '1.3',
2104             'Pod::Usage' => '1.3',
2105             'SelectSaver' => '1.01',
2106             'Symbol' => '1.06',
2107             'Sys::Syslog' => '0.06',
2108             'Term::ANSIColor' => '1.09',
2109             'Term::Complete' => '1.402',
2110             'Test::Builder' => '0.22',
2111             'Test::Harness' => '2.48',
2112             'Test::Harness::Point' => '0.01',
2113             'Test::Harness::Straps' => '0.23',
2114             'Test::More' => '0.54',
2115             'Test::Simple' => '0.54',
2116             'Text::ParseWords' => '3.24',
2117             'Text::Wrap' => '2001.09293',
2118             'Tie::RefHash' => '1.32',
2119             'Time::HiRes' => '1.66',
2120             'Time::Local' => '1.11',
2121             'Unicode' => '4.1.0',
2122             'Unicode::Normalize' => '0.32',
2123             'Unicode::UCD' => '0.23',
2124             'Win32' => '0.24',
2125             'XS::APItest' => '0.06',
2126             'base' => '2.07',
2127             'bigint' => '0.07',
2128             'bignum' => '0.17',
2129             'bigrat' => '0.08',
2130             'bytes' => '1.02',
2131             'constant' => '1.05',
2132             'overload' => '1.03',
2133             'threads::shared' => '0.93',
2134             'utf8' => '1.05',
2135             },
2136             removed => {
2137             'JNI' => 1,
2138             'JPL::AutoLoader' => 1,
2139             'JPL::Class' => 1,
2140             'JPL::Compile' => 1,
2141             }
2142             },
2143             5.008008 => {
2144             delta_from => 5.008007,
2145             changed => {
2146             'Attribute::Handlers' => '0.78_02',
2147             'B' => '1.09_01',
2148             'B::Bblock' => '1.02_01',
2149             'B::Bytecode' => '1.01_01',
2150             'B::C' => '1.04_01',
2151             'B::CC' => '1.00_01',
2152             'B::Concise' => '0.66',
2153             'B::Debug' => '1.02_01',
2154             'B::Deparse' => '0.71',
2155             'B::Disassembler' => '1.05',
2156             'B::Terse' => '1.03_01',
2157             'ByteLoader' => '0.06',
2158             'CGI' => '3.15',
2159             'CGI::Cookie' => '1.26',
2160             'CPAN' => '1.76_02',
2161             'Cwd' => '3.12',
2162             'DB' => '1.01',
2163             'DB_File' => '1.814',
2164             'Data::Dumper' => '2.121_08',
2165             'Devel::DProf' => '20050603.00',
2166             'Devel::PPPort' => '3.06_01',
2167             'Devel::Peek' => '1.03',
2168             'Digest' => '1.14',
2169             'Digest::MD5' => '2.36',
2170             'Digest::file' => '1.00',
2171             'Dumpvalue' => '1.12',
2172             'Encode' => '2.12',
2173             'Encode::Alias' => '2.04',
2174             'Encode::Config' => '2.01',
2175             'Encode::MIME::Header' => '2.01',
2176             'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2177             'English' => '1.02',
2178             'ExtUtils::Command' => '1.09',
2179             'ExtUtils::Command::MM' => '0.05',
2180             'ExtUtils::Constant' => '0.17',
2181             'ExtUtils::Embed' => '1.26',
2182             'ExtUtils::Install' => '1.33',
2183             'ExtUtils::Liblist::Kid'=> '1.3',
2184             'ExtUtils::MM' => '0.05',
2185             'ExtUtils::MM_AIX' => '0.03',
2186             'ExtUtils::MM_Any' => '0.13',
2187             'ExtUtils::MM_BeOS' => '1.05',
2188             'ExtUtils::MM_Cygwin' => '1.08',
2189             'ExtUtils::MM_MacOS' => '1.08',
2190             'ExtUtils::MM_NW5' => '2.08',
2191             'ExtUtils::MM_OS2' => '1.05',
2192             'ExtUtils::MM_QNX' => '0.02',
2193             'ExtUtils::MM_Unix' => '1.50',
2194             'ExtUtils::MM_VMS' => '5.73',
2195             'ExtUtils::MM_VOS' => '0.02',
2196             'ExtUtils::MM_Win32' => '1.12',
2197             'ExtUtils::MM_Win95' => '0.04',
2198             'ExtUtils::MakeMaker' => '6.30',
2199             'ExtUtils::MakeMaker::Config'=> '0.02',
2200             'ExtUtils::Manifest' => '1.46',
2201             'File::Basename' => '2.74',
2202             'File::Copy' => '2.09',
2203             'File::Find' => '1.10',
2204             'File::Glob' => '1.05',
2205             'File::Path' => '1.08',
2206             'File::Spec' => '3.12',
2207             'File::Spec::Win32' => '1.6',
2208             'FileCache' => '1.06',
2209             'Filter::Simple' => '0.82',
2210             'FindBin' => '1.47',
2211             'GDBM_File' => '1.08',
2212             'Getopt::Long' => '2.35',
2213             'IO' => '1.22',
2214             'IO::Dir' => '1.05',
2215             'IO::File' => '1.13',
2216             'IO::Handle' => '1.25',
2217             'IO::Pipe' => '1.13',
2218             'IO::Poll' => '0.07',
2219             'IO::Seekable' => '1.10',
2220             'IO::Select' => '1.17',
2221             'IO::Socket' => '1.29',
2222             'IO::Socket::INET' => '1.29',
2223             'IO::Socket::UNIX' => '1.22',
2224             'IPC::Open2' => '1.02',
2225             'IPC::Open3' => '1.02',
2226             'List::Util' => '1.18',
2227             'MIME::Base64' => '3.07',
2228             'MIME::QuotedPrint' => '3.07',
2229             'Math::Complex' => '1.35',
2230             'Math::Trig' => '1.03',
2231             'NDBM_File' => '1.06',
2232             'ODBM_File' => '1.06',
2233             'OS2::PrfDB' => '0.04',
2234             'OS2::Process' => '1.02',
2235             'OS2::REXX' => '1.03',
2236             'Opcode' => '1.06',
2237             'POSIX' => '1.09',
2238             'PerlIO' => '1.04',
2239             'PerlIO::encoding' => '0.09',
2240             'PerlIO::scalar' => '0.04',
2241             'PerlIO::via' => '0.03',
2242             'Pod::Checker' => '1.43',
2243             'Pod::Find' => '1.34',
2244             'Pod::Functions' => '1.03',
2245             'Pod::Html' => '1.0504',
2246             'Pod::ParseUtils' => '1.33',
2247             'Pod::Parser' => '1.32',
2248             'Pod::Usage' => '1.33',
2249             'SDBM_File' => '1.05',
2250             'Safe' => '2.12',
2251             'Scalar::Util' => '1.18',
2252             'Socket' => '1.78',
2253             'Storable' => '2.15',
2254             'Switch' => '2.10_01',
2255             'Sys::Syslog' => '0.13',
2256             'Term::ANSIColor' => '1.10',
2257             'Term::ReadLine' => '1.02',
2258             'Test::Builder' => '0.32',
2259             'Test::Builder::Module' => '0.02',
2260             'Test::Builder::Tester' => '1.02',
2261             'Test::Builder::Tester::Color'=> undef,
2262             'Test::Harness' => '2.56',
2263             'Test::Harness::Straps' => '0.26',
2264             'Test::More' => '0.62',
2265             'Test::Simple' => '0.62',
2266             'Text::Tabs' => '2005.0824',
2267             'Text::Wrap' => '2005.082401',
2268             'Tie::Hash' => '1.02',
2269             'Time::HiRes' => '1.86',
2270             'Unicode::Collate' => '0.52',
2271             'Unicode::UCD' => '0.24',
2272             'User::grent' => '1.01',
2273             'Win32' => '0.2601',
2274             'XS::APItest' => '0.08',
2275             'XS::Typemap' => '0.02',
2276             'XSLoader' => '0.06',
2277             'attrs' => '1.02',
2278             'autouse' => '1.05',
2279             'blib' => '1.03',
2280             'charnames' => '1.05',
2281             'diagnostics' => '1.15',
2282             'encoding' => '2.02',
2283             'if' => '0.05',
2284             'open' => '1.05',
2285             'ops' => '1.01',
2286             'overload' => '1.04',
2287             're' => '0.05',
2288             'threads' => '1.07',
2289             'threads::shared' => '0.94',
2290             'utf8' => '1.06',
2291             'vmsish' => '1.02',
2292             'warnings' => '1.05',
2293             'warnings::register' => '1.01',
2294             },
2295             removed => {
2296             }
2297             },
2298             5.008009 => {
2299             delta_from => 5.008008,
2300             changed => {
2301             'Attribute::Handlers' => '0.78_03',
2302             'AutoLoader' => '5.67',
2303             'AutoSplit' => '1.06',
2304             'B' => '1.19',
2305             'B::Asmdata' => '1.02',
2306             'B::Assembler' => '0.08',
2307             'B::C' => '1.05',
2308             'B::Concise' => '0.76',
2309             'B::Debug' => '1.05',
2310             'B::Deparse' => '0.87',
2311             'B::Lint' => '1.11',
2312             'B::Lint::Debug' => undef,
2313             'B::Terse' => '1.05',
2314             'Benchmark' => '1.1',
2315             'CGI' => '3.42',
2316             'CGI::Carp' => '1.30_01',
2317             'CGI::Cookie' => '1.29',
2318             'CGI::Fast' => '1.07',
2319             'CGI::Util' => '1.5_01',
2320             'CPAN' => '1.9301',
2321             'CPAN::Debug' => '5.5',
2322             'CPAN::DeferedCode' => '5.50',
2323             'CPAN::Distroprefs' => '6',
2324             'CPAN::FirstTime' => '5.5_01',
2325             'CPAN::HandleConfig' => '5.5',
2326             'CPAN::Kwalify' => '5.50',
2327             'CPAN::Nox' => '5.50',
2328             'CPAN::Queue' => '5.5',
2329             'CPAN::Tarzip' => '5.5',
2330             'CPAN::Version' => '5.5',
2331             'Carp' => '1.10',
2332             'Carp::Heavy' => '1.10',
2333             'Cwd' => '3.29',
2334             'DBM_Filter' => '0.02',
2335             'DBM_Filter::compress' => '0.02',
2336             'DBM_Filter::encode' => '0.02',
2337             'DBM_Filter::int32' => '0.02',
2338             'DBM_Filter::null' => '0.02',
2339             'DBM_Filter::utf8' => '0.02',
2340             'DB_File' => '1.817',
2341             'Data::Dumper' => '2.121_17',
2342             'Devel::DProf' => '20080331.00',
2343             'Devel::InnerPackage' => '0.3',
2344             'Devel::PPPort' => '3.14',
2345             'Devel::Peek' => '1.04',
2346             'Digest' => '1.15',
2347             'Digest::MD5' => '2.37',
2348             'DirHandle' => '1.02',
2349             'DynaLoader' => '1.09',
2350             'Encode' => '2.26',
2351             'Encode::Alias' => '2.10',
2352             'Encode::Byte' => '2.03',
2353             'Encode::CJKConstants' => '2.02',
2354             'Encode::CN' => '2.02',
2355             'Encode::CN::HZ' => '2.05',
2356             'Encode::Config' => '2.05',
2357             'Encode::EBCDIC' => '2.02',
2358             'Encode::Encoder' => '2.01',
2359             'Encode::Encoding' => '2.05',
2360             'Encode::GSM0338' => '2.01',
2361             'Encode::Guess' => '2.02',
2362             'Encode::JP' => '2.03',
2363             'Encode::JP::H2Z' => '2.02',
2364             'Encode::JP::JIS7' => '2.04',
2365             'Encode::KR' => '2.02',
2366             'Encode::KR::2022_KR' => '2.02',
2367             'Encode::MIME::Header' => '2.05',
2368             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2369             'Encode::MIME::Name' => '1.01',
2370             'Encode::Symbol' => '2.02',
2371             'Encode::TW' => '2.02',
2372             'Encode::Unicode' => '2.05',
2373             'Encode::Unicode::UTF7' => '2.04',
2374             'English' => '1.03',
2375             'Errno' => '1.10',
2376             'Exporter' => '5.63',
2377             'Exporter::Heavy' => '5.63',
2378             'ExtUtils::Command' => '1.15',
2379             'ExtUtils::Command::MM' => '6.48',
2380             'ExtUtils::Constant' => '0.21',
2381             'ExtUtils::Constant::Base'=> '0.04',
2382             'ExtUtils::Constant::ProxySubs'=> '0.06',
2383             'ExtUtils::Constant::Utils'=> '0.02',
2384             'ExtUtils::Constant::XS'=> '0.02',
2385             'ExtUtils::Embed' => '1.28',
2386             'ExtUtils::Install' => '1.50_01',
2387             'ExtUtils::Installed' => '1.43',
2388             'ExtUtils::Liblist' => '6.48',
2389             'ExtUtils::Liblist::Kid'=> '6.48',
2390             'ExtUtils::MM' => '6.48',
2391             'ExtUtils::MM_AIX' => '6.48',
2392             'ExtUtils::MM_Any' => '6.48',
2393             'ExtUtils::MM_BeOS' => '6.48',
2394             'ExtUtils::MM_Cygwin' => '6.48',
2395             'ExtUtils::MM_DOS' => '6.48',
2396             'ExtUtils::MM_Darwin' => '6.48',
2397             'ExtUtils::MM_MacOS' => '6.48',
2398             'ExtUtils::MM_NW5' => '6.48',
2399             'ExtUtils::MM_OS2' => '6.48',
2400             'ExtUtils::MM_QNX' => '6.48',
2401             'ExtUtils::MM_UWIN' => '6.48',
2402             'ExtUtils::MM_Unix' => '6.48',
2403             'ExtUtils::MM_VMS' => '6.48',
2404             'ExtUtils::MM_VOS' => '6.48',
2405             'ExtUtils::MM_Win32' => '6.48',
2406             'ExtUtils::MM_Win95' => '6.48',
2407             'ExtUtils::MY' => '6.48',
2408             'ExtUtils::MakeMaker' => '6.48',
2409             'ExtUtils::MakeMaker::Config'=> '6.48',
2410             'ExtUtils::MakeMaker::bytes'=> '6.48',
2411             'ExtUtils::MakeMaker::vmsish'=> '6.48',
2412             'ExtUtils::Manifest' => '1.55',
2413             'ExtUtils::Mkbootstrap' => '6.48',
2414             'ExtUtils::Mksymlists' => '6.48',
2415             'ExtUtils::Packlist' => '1.43',
2416             'ExtUtils::ParseXS' => '2.19',
2417             'ExtUtils::XSSymSet' => '1.1',
2418             'ExtUtils::testlib' => '6.48',
2419             'Fatal' => '1.06',
2420             'Fcntl' => '1.06',
2421             'File::Basename' => '2.77',
2422             'File::CheckTree' => '4.4',
2423             'File::Compare' => '1.1005',
2424             'File::Copy' => '2.13',
2425             'File::DosGlob' => '1.01',
2426             'File::Find' => '1.13',
2427             'File::Glob' => '1.06',
2428             'File::Path' => '2.07_02',
2429             'File::Spec' => '3.29',
2430             'File::Spec::Cygwin' => '3.29',
2431             'File::Spec::Epoc' => '3.29',
2432             'File::Spec::Functions' => '3.29',
2433             'File::Spec::Mac' => '3.29',
2434             'File::Spec::OS2' => '3.29',
2435             'File::Spec::Unix' => '3.29',
2436             'File::Spec::VMS' => '3.29',
2437             'File::Spec::Win32' => '3.29',
2438             'File::Temp' => '0.20',
2439             'File::stat' => '1.01',
2440             'FileCache' => '1.07',
2441             'Filter::Simple' => '0.83',
2442             'Filter::Util::Call' => '1.07',
2443             'FindBin' => '1.49',
2444             'GDBM_File' => '1.09',
2445             'Getopt::Long' => '2.37',
2446             'Getopt::Std' => '1.06',
2447             'Hash::Util' => '0.06',
2448             'IO' => '1.23',
2449             'IO::Dir' => '1.06',
2450             'IO::File' => '1.14',
2451             'IO::Handle' => '1.27',
2452             'IO::Socket' => '1.30',
2453             'IO::Socket::INET' => '1.31',
2454             'IO::Socket::UNIX' => '1.23',
2455             'IPC::Msg' => '2.00',
2456             'IPC::Open2' => '1.03',
2457             'IPC::Open3' => '1.03',
2458             'IPC::Semaphore' => '2.00',
2459             'IPC::SharedMem' => '2.00',
2460             'IPC::SysV' => '2.00',
2461             'List::Util' => '1.19',
2462             'Locale::Maketext' => '1.13',
2463             'Locale::Maketext::Guts'=> '1.13',
2464             'Locale::Maketext::GutsLoader'=> '1.13',
2465             'Math::BigFloat' => '1.60',
2466             'Math::BigInt' => '1.89',
2467             'Math::BigInt::Calc' => '0.52',
2468             'Math::BigRat' => '0.22',
2469             'Math::Complex' => '1.54',
2470             'Math::Trig' => '1.18',
2471             'Module::CoreList' => '2.17',
2472             'Module::Pluggable' => '3.8',
2473             'Module::Pluggable::Object'=> '3.6',
2474             'NDBM_File' => '1.07',
2475             'NEXT' => '0.61',
2476             'Net::Cmd' => '2.29',
2477             'Net::Config' => '1.11',
2478             'Net::Domain' => '2.20',
2479             'Net::FTP' => '2.77',
2480             'Net::FTP::A' => '1.18',
2481             'Net::NNTP' => '2.24',
2482             'Net::POP3' => '2.29',
2483             'Net::Ping' => '2.35',
2484             'Net::SMTP' => '2.31',
2485             'O' => '1.01',
2486             'ODBM_File' => '1.07',
2487             'OS2::DLL' => '1.03',
2488             'OS2::Process' => '1.03',
2489             'Opcode' => '1.0601',
2490             'POSIX' => '1.15',
2491             'PerlIO' => '1.05',
2492             'PerlIO::encoding' => '0.11',
2493             'PerlIO::scalar' => '0.06',
2494             'PerlIO::via' => '0.05',
2495             'Pod::Html' => '1.09',
2496             'Pod::ParseUtils' => '1.35',
2497             'Pod::Parser' => '1.35',
2498             'Pod::Select' => '1.35',
2499             'Pod::Usage' => '1.35',
2500             'SDBM_File' => '1.06',
2501             'Safe' => '2.16',
2502             'Scalar::Util' => '1.19',
2503             'SelfLoader' => '1.17',
2504             'Shell' => '0.72',
2505             'Socket' => '1.81',
2506             'Storable' => '2.19',
2507             'Switch' => '2.13',
2508             'Sys::Syslog' => '0.27',
2509             'Sys::Syslog::win32::Win32'=> undef,
2510             'Term::ANSIColor' => '1.12',
2511             'Term::Cap' => '1.12',
2512             'Term::ReadLine' => '1.03',
2513             'Test::Builder' => '0.80',
2514             'Test::Builder::Module' => '0.80',
2515             'Test::Builder::Tester' => '1.13',
2516             'Test::Harness' => '2.64',
2517             'Test::Harness::Results'=> '0.01_01',
2518             'Test::Harness::Straps' => '0.26_01',
2519             'Test::Harness::Util' => '0.01',
2520             'Test::More' => '0.80',
2521             'Test::Simple' => '0.80',
2522             'Text::Balanced' => '1.98',
2523             'Text::ParseWords' => '3.27',
2524             'Text::Soundex' => '3.03',
2525             'Text::Tabs' => '2007.1117',
2526             'Text::Wrap' => '2006.1117',
2527             'Thread' => '2.01',
2528             'Thread::Queue' => '2.11',
2529             'Thread::Semaphore' => '2.09',
2530             'Tie::Handle' => '4.2',
2531             'Tie::Hash' => '1.03',
2532             'Tie::Memoize' => '1.1',
2533             'Tie::RefHash' => '1.38',
2534             'Tie::Scalar' => '1.01',
2535             'Tie::StdHandle' => '4.2',
2536             'Time::HiRes' => '1.9715',
2537             'Time::Local' => '1.1901',
2538             'Time::gmtime' => '1.03',
2539             'Unicode' => '5.1.0',
2540             'Unicode::Normalize' => '1.02',
2541             'Unicode::UCD' => '0.25',
2542             'VMS::DCLsym' => '1.03',
2543             'VMS::Stdio' => '2.4',
2544             'Win32' => '0.38',
2545             'Win32API::File' => '0.1001_01',
2546             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2547             'Win32CORE' => '0.02',
2548             'XS::APItest' => '0.15',
2549             'XS::Typemap' => '0.03',
2550             'XSLoader' => '0.10',
2551             'attributes' => '0.09',
2552             'autouse' => '1.06',
2553             'base' => '2.13',
2554             'bigint' => '0.23',
2555             'bignum' => '0.23',
2556             'bigrat' => '0.23',
2557             'blib' => '1.04',
2558             'charnames' => '1.06',
2559             'constant' => '1.17',
2560             'diagnostics' => '1.16',
2561             'encoding' => '2.6_01',
2562             'fields' => '2.12',
2563             'filetest' => '1.02',
2564             'lib' => '0.61',
2565             'open' => '1.06',
2566             'ops' => '1.02',
2567             'overload' => '1.06',
2568             're' => '0.0601',
2569             'sigtrap' => '1.04',
2570             'threads' => '1.71',
2571             'threads::shared' => '1.27',
2572             'utf8' => '1.07',
2573             'warnings' => '1.05_01',
2574             },
2575             removed => {
2576             }
2577             },
2578             5.009 => {
2579             delta_from => 5.008002,
2580             changed => {
2581             'B' => '1.03',
2582             'B::C' => '1.03',
2583             'B::Concise' => '0.57',
2584             'B::Deparse' => '0.65',
2585             'DB_File' => '1.806',
2586             'Devel::PPPort' => '2.008',
2587             'English' => '1.02',
2588             'Fatal' => '1.04',
2589             'OS2::DLL' => '1.02',
2590             'Opcode' => '1.06',
2591             'Time::HiRes' => '1.51',
2592             'Unicode::Collate' => '0.28',
2593             'Unicode::Normalize' => '0.23',
2594             'XSLoader' => '0.03',
2595             'assertions' => '0.01',
2596             'assertions::activate' => '0.01',
2597             'overload' => '1.02',
2598             'version' => '0.29',
2599             },
2600             removed => {
2601             }
2602             },
2603             5.009001 => {
2604             delta_from => 5.008004,
2605             changed => {
2606             'B' => '1.05',
2607             'B::Assembler' => '0.06',
2608             'B::C' => '1.04',
2609             'B::Concise' => '0.59',
2610             'B::Debug' => '1.02',
2611             'B::Deparse' => '0.65',
2612             'DB_File' => '1.808_01',
2613             'Devel::PPPort' => '2.011_01',
2614             'Digest' => '1.05',
2615             'DynaLoader' => '1.04',
2616             'English' => '1.02',
2617             'Exporter::Heavy' => '5.567',
2618             'ExtUtils::Command' => '1.07',
2619             'ExtUtils::Liblist::Kid'=> '1.3',
2620             'ExtUtils::MM_Any' => '0.0901',
2621             'ExtUtils::MM_Cygwin' => '1.07',
2622             'ExtUtils::MM_NW5' => '2.07_01',
2623             'ExtUtils::MM_Unix' => '1.45_01',
2624             'ExtUtils::MM_VMS' => '5.71_01',
2625             'ExtUtils::MM_Win32' => '1.10_01',
2626             'ExtUtils::MM_Win95' => '0.03',
2627             'ExtUtils::MakeMaker' => '6.21_02',
2628             'ExtUtils::Manifest' => '1.43',
2629             'Fatal' => '1.04',
2630             'Getopt::Long' => '2.3401',
2631             'IO::Handle' => '1.23',
2632             'IO::Pipe' => '1.122',
2633             'IPC::Open3' => '1.0105',
2634             'MIME::Base64' => '3.00_01',
2635             'MIME::QuotedPrint' => '3.00',
2636             'Memoize' => '1.01_01',
2637             'ODBM_File' => '1.04',
2638             'Opcode' => '1.06',
2639             'POSIX' => '1.07',
2640             'Storable' => '2.11',
2641             'Time::HiRes' => '1.56',
2642             'Time::Local' => '1.07_94',
2643             'UNIVERSAL' => '1.02',
2644             'Unicode' => '4.0.0',
2645             'Unicode::UCD' => '0.21',
2646             'XSLoader' => '0.03',
2647             'assertions' => '0.01',
2648             'assertions::activate' => '0.01',
2649             'base' => '2.04',
2650             'if' => '0.0401',
2651             'open' => '1.02',
2652             'overload' => '1.02',
2653             'threads' => '1.02',
2654             'utf8' => '1.02',
2655             'version' => '0.36',
2656             },
2657             removed => {
2658             }
2659             },
2660             5.009002 => {
2661             delta_from => 5.008007,
2662             changed => {
2663             'B' => '1.07',
2664             'B::Concise' => '0.64',
2665             'B::Deparse' => '0.69',
2666             'B::Disassembler' => '1.03',
2667             'B::Terse' => '1.02',
2668             'CGI' => '3.07',
2669             'Config::Extensions' => '0.01',
2670             'Devel::DProf' => '20030813.00',
2671             'DynaLoader' => '1.07',
2672             'Encode' => '2.09',
2673             'Encode::Alias' => '2.02',
2674             'English' => '1.03',
2675             'Exporter' => '5.59',
2676             'Exporter::Heavy' => '5.59',
2677             'ExtUtils::Command' => '1.07',
2678             'ExtUtils::Command::MM' => '0.03_01',
2679             'ExtUtils::Embed' => '1.26',
2680             'ExtUtils::Liblist::Kid'=> '1.3',
2681             'ExtUtils::MM_Any' => '0.10',
2682             'ExtUtils::MM_Cygwin' => '1.07',
2683             'ExtUtils::MM_MacOS' => '1.08',
2684             'ExtUtils::MM_NW5' => '2.07',
2685             'ExtUtils::MM_Unix' => '1.46_01',
2686             'ExtUtils::MM_VMS' => '5.71',
2687             'ExtUtils::MM_Win32' => '1.10',
2688             'ExtUtils::MM_Win95' => '0.03',
2689             'ExtUtils::MakeMaker' => '6.25',
2690             'ExtUtils::Manifest' => '1.44',
2691             'Fatal' => '1.04',
2692             'File::Path' => '1.06',
2693             'FileCache' => '1.04_01',
2694             'Getopt::Long' => '2.3401',
2695             'IO::File' => '1.10',
2696             'IO::Socket::INET' => '1.27',
2697             'Math::BigFloat' => '1.49',
2698             'Math::BigInt' => '1.75',
2699             'Math::BigInt::Calc' => '0.45',
2700             'Math::BigRat' => '0.14',
2701             'Memoize' => '1.01_01',
2702             'Module::CoreList' => '1.99',
2703             'NEXT' => '0.60_01',
2704             'Opcode' => '1.06',
2705             'Pod::Html' => '1.0502',
2706             'Scalar::Util' => '1.14_1',
2707             'Storable' => '2.14',
2708             'Symbol' => '1.05',
2709             'Test::Harness' => '2.46',
2710             'Test::Harness::Straps' => '0.20_01',
2711             'Text::Balanced' => '1.95_01',
2712             'Text::Wrap' => '2001.09292',
2713             'UNIVERSAL' => '1.02',
2714             'Unicode' => '4.0.1',
2715             'Unicode::Normalize' => '0.30',
2716             'Unicode::UCD' => '0.22',
2717             'Win32' => '0.23',
2718             'XS::APItest' => '0.05',
2719             'XSLoader' => '0.03',
2720             'assertions' => '0.01',
2721             'assertions::activate' => '0.01',
2722             'base' => '2.06',
2723             'bigint' => '0.06',
2724             'bignum' => '0.16',
2725             'bigrat' => '0.07',
2726             'bytes' => '1.01',
2727             'encoding::warnings' => '0.05',
2728             'if' => '0.0401',
2729             're' => '0.05',
2730             'threads::shared' => '0.92',
2731             'utf8' => '1.04',
2732             'version' => '0.42',
2733             'warnings' => '1.04',
2734             },
2735             removed => {
2736             'Test::Harness::Point' => 1,
2737             }
2738             },
2739             5.009003 => {
2740             delta_from => 5.008008,
2741             changed => {
2742             'Archive::Tar' => '1.26_01',
2743             'Archive::Tar::Constant'=> '0.02',
2744             'Archive::Tar::File' => '0.02',
2745             'AutoSplit' => '1.04_01',
2746             'B' => '1.10',
2747             'B::Bblock' => '1.02',
2748             'B::Bytecode' => '1.01',
2749             'B::C' => '1.04',
2750             'B::CC' => '1.00',
2751             'B::Concise' => '0.67',
2752             'B::Debug' => '1.02',
2753             'B::Deparse' => '0.73',
2754             'B::Lint' => '1.04',
2755             'B::Terse' => '1.03',
2756             'CGI' => '3.15_01',
2757             'CPAN' => '1.83_58',
2758             'CPAN::Debug' => '4.44',
2759             'CPAN::FirstTime' => '4.50',
2760             'CPAN::HandleConfig' => '4.31',
2761             'CPAN::Nox' => '2.31',
2762             'CPAN::Tarzip' => '3.36',
2763             'CPAN::Version' => '2.55',
2764             'Carp' => '1.05',
2765             'Carp::Heavy' => '1.05',
2766             'Compress::Zlib' => '2.000_07',
2767             'Compress::Zlib::Common'=> '2.000_07',
2768             'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2769             'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2770             'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2771             'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2772             'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2773             'Compress::Zlib::FileConstants'=> '2.000_07',
2774             'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2775             'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2776             'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2777             'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2778             'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2779             'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2780             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2781             'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2782             'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2783             'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2784             'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2785             'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2786             'Compress::Zlib::ParseParameters'=> '2.000_07',
2787             'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2788             'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2789             'Config::Extensions' => '0.01',
2790             'Cwd' => '3.15',
2791             'Devel::PPPort' => '3.08',
2792             'Digest::SHA' => '5.32',
2793             'DirHandle' => '1.01',
2794             'DynaLoader' => '1.07',
2795             'Encode' => '2.14',
2796             'Encode::CN::HZ' => '2.02',
2797             'Encode::MIME::Header' => '2.02',
2798             'English' => '1.04',
2799             'Exporter' => '5.59',
2800             'Exporter::Heavy' => '5.59',
2801             'ExtUtils::CBuilder' => '0.15',
2802             'ExtUtils::CBuilder::Base'=> '0.12',
2803             'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2804             'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2805             'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2806             'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2807             'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2808             'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2809             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2810             'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2811             'ExtUtils::Command::MM' => '0.05_01',
2812             'ExtUtils::Constant' => '0.2',
2813             'ExtUtils::Constant::Base'=> '0.02',
2814             'ExtUtils::Constant::ProxySubs'=> '0.01',
2815             'ExtUtils::Constant::XS'=> '0.02',
2816             'ExtUtils::MM_Any' => '0.13_01',
2817             'ExtUtils::MM_Unix' => '1.50_01',
2818             'ExtUtils::MakeMaker' => '6.30_01',
2819             'ExtUtils::ParseXS' => '2.15_02',
2820             'Fatal' => '1.04',
2821             'File::Compare' => '1.1005',
2822             'File::Spec' => '3.15',
2823             'File::Temp' => '0.16_01',
2824             'IO::File' => '1.13_01',
2825             'IO::Handle' => '1.26',
2826             'IO::Socket' => '1.29_01',
2827             'IO::Socket::INET' => '1.29_02',
2828             'IO::Socket::UNIX' => '1.22_01',
2829             'IO::Zlib' => '1.04_02',
2830             'Locale::Maketext' => '1.10_01',
2831             'Math::BigInt::FastCalc'=> '0.10',
2832             'Memoize' => '1.01_01',
2833             'Module::CoreList' => '2.02',
2834             'Moped::Msg' => '0.01',
2835             'NEXT' => '0.60_01',
2836             'Net::Cmd' => '2.26_01',
2837             'Net::Domain' => '2.19_01',
2838             'Net::Ping' => '2.31_04',
2839             'Opcode' => '1.08',
2840             'POSIX' => '1.10',
2841             'Pod::Escapes' => '1.04',
2842             'Pod::Man' => '2.04',
2843             'Pod::Perldoc' => '3.14_01',
2844             'Pod::Simple' => '3.04',
2845             'Pod::Simple::BlackBox' => undef,
2846             'Pod::Simple::Checker' => '2.02',
2847             'Pod::Simple::Debug' => undef,
2848             'Pod::Simple::DumpAsText'=> '2.02',
2849             'Pod::Simple::DumpAsXML'=> '2.02',
2850             'Pod::Simple::HTML' => '3.03',
2851             'Pod::Simple::HTMLBatch'=> '3.02',
2852             'Pod::Simple::HTMLLegacy'=> '5.01',
2853             'Pod::Simple::LinkSection'=> undef,
2854             'Pod::Simple::Methody' => '2.02',
2855             'Pod::Simple::Progress' => '1.01',
2856             'Pod::Simple::PullParser'=> '2.02',
2857             'Pod::Simple::PullParserEndToken'=> undef,
2858             'Pod::Simple::PullParserStartToken'=> undef,
2859             'Pod::Simple::PullParserTextToken'=> undef,
2860             'Pod::Simple::PullParserToken'=> '2.02',
2861             'Pod::Simple::RTF' => '2.02',
2862             'Pod::Simple::Search' => '3.04',
2863             'Pod::Simple::SimpleTree'=> '2.02',
2864             'Pod::Simple::Text' => '2.02',
2865             'Pod::Simple::TextContent'=> '2.02',
2866             'Pod::Simple::TiedOutFH'=> undef,
2867             'Pod::Simple::Transcode'=> undef,
2868             'Pod::Simple::TranscodeDumb'=> '2.02',
2869             'Pod::Simple::TranscodeSmart'=> undef,
2870             'Pod::Simple::XMLOutStream'=> '2.02',
2871             'Pod::Text' => '3.01',
2872             'Pod::Text::Color' => '2.01',
2873             'Pod::Text::Overstrike' => '2',
2874             'Pod::Text::Termcap' => '2.01',
2875             'Pod::Usage' => '1.33_01',
2876             'SelfLoader' => '1.0905',
2877             'Storable' => '2.15_02',
2878             'Test::Builder::Module' => '0.03',
2879             'Text::Balanced' => '1.95_01',
2880             'Tie::File' => '0.97_01',
2881             'UNIVERSAL' => '1.03',
2882             'XS::APItest' => '0.09',
2883             'assertions' => '0.02',
2884             'assertions::activate' => '0.02',
2885             'assertions::compat' => undef,
2886             'constant' => '1.07',
2887             'encoding::warnings' => '0.05',
2888             'feature' => '1.00',
2889             're' => '0.06',
2890             'sort' => '2.00',
2891             'version' => '0.53',
2892             },
2893             removed => {
2894             }
2895             },
2896             5.009004 => {
2897             delta_from => 5.009003,
2898             changed => {
2899             'Archive::Tar' => '1.30_01',
2900             'AutoLoader' => '5.61',
2901             'B' => '1.11',
2902             'B::Bytecode' => '1.02',
2903             'B::C' => '1.05',
2904             'B::Concise' => '0.69',
2905             'B::Deparse' => '0.76',
2906             'B::Lint' => '1.08',
2907             'Benchmark' => '1.08',
2908             'CGI' => '3.20',
2909             'CGI::Cookie' => '1.27',
2910             'CGI::Fast' => '1.07',
2911             'CPAN' => '1.87_55',
2912             'CPAN::Debug' => '5.400561',
2913             'CPAN::FirstTime' => '5.400742',
2914             'CPAN::HandleConfig' => '5.400740',
2915             'CPAN::Nox' => '5.400561',
2916             'CPAN::Tarzip' => '5.400714',
2917             'CPAN::Version' => '5.400561',
2918             'Compress::Raw::Zlib' => '2.000_13',
2919             'Compress::Zlib' => '2.000_13',
2920             'Cwd' => '3.19',
2921             'Devel::PPPort' => '3.10',
2922             'Digest' => '1.15',
2923             'Digest::SHA' => '5.43',
2924             'Encode' => '2.18_01',
2925             'Encode::Alias' => '2.06',
2926             'Encode::Byte' => '2.02',
2927             'Encode::CJKConstants' => '2.02',
2928             'Encode::CN' => '2.02',
2929             'Encode::CN::HZ' => '2.04',
2930             'Encode::Config' => '2.03',
2931             'Encode::EBCDIC' => '2.02',
2932             'Encode::Encoder' => '2.01',
2933             'Encode::Encoding' => '2.04',
2934             'Encode::Guess' => '2.02',
2935             'Encode::JP' => '2.03',
2936             'Encode::JP::H2Z' => '2.02',
2937             'Encode::JP::JIS7' => '2.02',
2938             'Encode::KR' => '2.02',
2939             'Encode::KR::2022_KR' => '2.02',
2940             'Encode::MIME::Header' => '2.04',
2941             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2942             'Encode::Symbol' => '2.02',
2943             'Encode::TW' => '2.02',
2944             'Encode::Unicode' => '2.03',
2945             'Encode::Unicode::UTF7' => '2.04',
2946             'ExtUtils::CBuilder' => '0.18',
2947             'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2948             'ExtUtils::Constant::Base'=> '0.03',
2949             'ExtUtils::Constant::ProxySubs'=> '0.03',
2950             'ExtUtils::Install' => '1.41',
2951             'ExtUtils::Installed' => '1.41',
2952             'ExtUtils::MM_Any' => '0.13_02',
2953             'ExtUtils::MM_NW5' => '2.08_01',
2954             'ExtUtils::MM_Unix' => '1.5003',
2955             'ExtUtils::MM_VMS' => '5.73_03',
2956             'ExtUtils::MM_Win32' => '1.12_02',
2957             'ExtUtils::MM_Win95' => '0.04_01',
2958             'ExtUtils::MakeMaker' => '6.30_02',
2959             'ExtUtils::Manifest' => '1.46_01',
2960             'ExtUtils::Mkbootstrap' => '1.15_01',
2961             'ExtUtils::Mksymlists' => '1.19_01',
2962             'ExtUtils::Packlist' => '1.41',
2963             'File::Basename' => '2.75',
2964             'File::Find' => '1.11',
2965             'File::GlobMapper' => '0.000_02',
2966             'File::Spec' => '3.19',
2967             'FileCache' => '1.07',
2968             'Getopt::Long' => '2.3501',
2969             'Hash::Util' => '0.07',
2970             'Hash::Util::FieldHash' => '0.01',
2971             'IO' => '1.23_01',
2972             'IO::Compress::Adapter::Deflate'=> '2.000_13',
2973             'IO::Compress::Adapter::Identity'=> '2.000_13',
2974             'IO::Compress::Base' => '2.000_13',
2975             'IO::Compress::Base::Common'=> '2.000_13',
2976             'IO::Compress::Deflate' => '2.000_13',
2977             'IO::Compress::Gzip' => '2.000_13',
2978             'IO::Compress::Gzip::Constants'=> '2.000_13',
2979             'IO::Compress::RawDeflate'=> '2.000_13',
2980             'IO::Compress::Zip' => '2.000_13',
2981             'IO::Compress::Zip::Constants'=> '2.000_13',
2982             'IO::Compress::Zlib::Constants'=> '2.000_13',
2983             'IO::Compress::Zlib::Extra'=> '2.000_13',
2984             'IO::Dir' => '1.06',
2985             'IO::File' => '1.14',
2986             'IO::Handle' => '1.27',
2987             'IO::Socket' => '1.30_01',
2988             'IO::Socket::INET' => '1.31',
2989             'IO::Socket::UNIX' => '1.23',
2990             'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2991             'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2992             'IO::Uncompress::AnyInflate'=> '2.000_13',
2993             'IO::Uncompress::AnyUncompress'=> '2.000_13',
2994             'IO::Uncompress::Base' => '2.000_13',
2995             'IO::Uncompress::Gunzip'=> '2.000_13',
2996             'IO::Uncompress::Inflate'=> '2.000_13',
2997             'IO::Uncompress::RawInflate'=> '2.000_13',
2998             'IO::Uncompress::Unzip' => '2.000_13',
2999             'MIME::Base64' => '3.07_01',
3000             'Math::Complex' => '1.36',
3001             'Math::Trig' => '1.04',
3002             'Module::Build' => '0.2805',
3003             'Module::Build::Base' => undef,
3004             'Module::Build::Compat' => '0.03',
3005             'Module::Build::ConfigData'=> undef,
3006             'Module::Build::Cookbook'=> undef,
3007             'Module::Build::ModuleInfo'=> undef,
3008             'Module::Build::Notes' => undef,
3009             'Module::Build::PPMMaker'=> undef,
3010             'Module::Build::Platform::Amiga'=> undef,
3011             'Module::Build::Platform::Default'=> undef,
3012             'Module::Build::Platform::EBCDIC'=> undef,
3013             'Module::Build::Platform::MPEiX'=> undef,
3014             'Module::Build::Platform::MacOS'=> undef,
3015             'Module::Build::Platform::RiscOS'=> undef,
3016             'Module::Build::Platform::Unix'=> undef,
3017             'Module::Build::Platform::VMS'=> undef,
3018             'Module::Build::Platform::VOS'=> undef,
3019             'Module::Build::Platform::Windows'=> undef,
3020             'Module::Build::Platform::aix'=> undef,
3021             'Module::Build::Platform::cygwin'=> undef,
3022             'Module::Build::Platform::darwin'=> undef,
3023             'Module::Build::Platform::os2'=> undef,
3024             'Module::Build::PodParser'=> undef,
3025             'Module::Build::Version'=> '0',
3026             'Module::Build::YAML' => '0.50',
3027             'Module::CoreList' => '2.08',
3028             'Module::Load' => '0.10',
3029             'Module::Loaded' => '0.01',
3030             'Package::Constants' => '0.01',
3031             'Pod::Html' => '1.07',
3032             'Pod::Man' => '2.09',
3033             'Pod::Text' => '3.07',
3034             'Pod::Text::Color' => '2.03',
3035             'Pod::Text::Termcap' => '2.03',
3036             'SDBM_File' => '1.06',
3037             'Shell' => '0.7',
3038             'Sys::Syslog' => '0.17',
3039             'Term::ANSIColor' => '1.11',
3040             'Test::Builder' => '0.33',
3041             'Test::Builder::Tester' => '1.04',
3042             'Test::Harness' => '2.62',
3043             'Test::Harness::Util' => '0.01',
3044             'Test::More' => '0.64',
3045             'Test::Simple' => '0.64',
3046             'Text::Balanced' => '1.98_01',
3047             'Text::ParseWords' => '3.25',
3048             'Text::Tabs' => '2007.071101',
3049             'Text::Wrap' => '2006.0711',
3050             'Tie::RefHash' => '1.34_01',
3051             'Time::HiRes' => '1.87',
3052             'Time::Local' => '1.13',
3053             'Time::gmtime' => '1.03',
3054             'UNIVERSAL' => '1.04',
3055             'Unicode::Normalize' => '1.01',
3056             'Win32API::File' => '0.1001',
3057             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
3058             'assertions' => '0.03',
3059             'assertions::compat' => '0.02',
3060             'autouse' => '1.06',
3061             'diagnostics' => '1.16',
3062             'encoding' => '2.04',
3063             'encoding::warnings' => '0.10',
3064             'feature' => '1.01',
3065             're' => '0.0601',
3066             'threads' => '1.38',
3067             'threads::shared' => '0.94_01',
3068             'version' => '0.67',
3069             },
3070             removed => {
3071             'Compress::Zlib::Common'=> 1,
3072             'Compress::Zlib::Compress::Gzip::Constants'=> 1,
3073             'Compress::Zlib::Compress::Zip::Constants'=> 1,
3074             'Compress::Zlib::CompressPlugin::Deflate'=> 1,
3075             'Compress::Zlib::CompressPlugin::Identity'=> 1,
3076             'Compress::Zlib::File::GlobMapper'=> 1,
3077             'Compress::Zlib::FileConstants'=> 1,
3078             'Compress::Zlib::IO::Compress::Base'=> 1,
3079             'Compress::Zlib::IO::Compress::Deflate'=> 1,
3080             'Compress::Zlib::IO::Compress::Gzip'=> 1,
3081             'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
3082             'Compress::Zlib::IO::Compress::Zip'=> 1,
3083             'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
3084             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
3085             'Compress::Zlib::IO::Uncompress::Base'=> 1,
3086             'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
3087             'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
3088             'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
3089             'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
3090             'Compress::Zlib::ParseParameters'=> 1,
3091             'Compress::Zlib::UncompressPlugin::Identity'=> 1,
3092             'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
3093             }
3094             },
3095             5.009005 => {
3096             delta_from => 5.009004,
3097             changed => {
3098             'Archive::Extract' => '0.22_01',
3099             'Archive::Tar' => '1.32',
3100             'Attribute::Handlers' => '0.78_06',
3101             'AutoLoader' => '5.63',
3102             'AutoSplit' => '1.05',
3103             'B' => '1.16',
3104             'B::Concise' => '0.72',
3105             'B::Debug' => '1.05',
3106             'B::Deparse' => '0.82',
3107             'B::Lint' => '1.09',
3108             'B::Terse' => '1.05',
3109             'Benchmark' => '1.1',
3110             'CGI' => '3.29',
3111             'CGI::Cookie' => '1.28',
3112             'CGI::Util' => '1.5_01',
3113             'CPAN' => '1.9102',
3114             'CPAN::Debug' => '5.400955',
3115             'CPAN::FirstTime' => '5.401669',
3116             'CPAN::HandleConfig' => '5.401744',
3117             'CPAN::Kwalify' => '5.401418',
3118             'CPAN::Nox' => '5.400844',
3119             'CPAN::Queue' => '5.401704',
3120             'CPAN::Tarzip' => '5.401717',
3121             'CPAN::Version' => '5.401387',
3122             'CPANPLUS' => '0.81_01',
3123             'CPANPLUS::Backend' => undef,
3124             'CPANPLUS::Backend::RV' => undef,
3125             'CPANPLUS::Config' => undef,
3126             'CPANPLUS::Configure' => undef,
3127             'CPANPLUS::Configure::Setup'=> undef,
3128             'CPANPLUS::Dist' => undef,
3129             'CPANPLUS::Dist::Base' => '0.01',
3130             'CPANPLUS::Dist::Build' => '0.06_01',
3131             'CPANPLUS::Dist::Build::Constants'=> '0.01',
3132             'CPANPLUS::Dist::MM' => undef,
3133             'CPANPLUS::Dist::Sample'=> undef,
3134             'CPANPLUS::Error' => undef,
3135             'CPANPLUS::Internals' => '0.81_01',
3136             'CPANPLUS::Internals::Constants'=> '0.01',
3137             'CPANPLUS::Internals::Constants::Report'=> '0.01',
3138             'CPANPLUS::Internals::Extract'=> undef,
3139             'CPANPLUS::Internals::Fetch'=> undef,
3140             'CPANPLUS::Internals::Report'=> undef,
3141             'CPANPLUS::Internals::Search'=> undef,
3142             'CPANPLUS::Internals::Source'=> undef,
3143             'CPANPLUS::Internals::Utils'=> undef,
3144             'CPANPLUS::Internals::Utils::Autoflush'=> undef,
3145             'CPANPLUS::Module' => undef,
3146             'CPANPLUS::Module::Author'=> undef,
3147             'CPANPLUS::Module::Author::Fake'=> undef,
3148             'CPANPLUS::Module::Checksums'=> undef,
3149             'CPANPLUS::Module::Fake'=> undef,
3150             'CPANPLUS::Module::Signature'=> undef,
3151             'CPANPLUS::Selfupdate' => undef,
3152             'CPANPLUS::Shell' => undef,
3153             'CPANPLUS::Shell::Classic'=> '0.0562',
3154             'CPANPLUS::Shell::Default'=> '0.81_01',
3155             'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
3156             'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
3157             'CPANPLUS::inc' => undef,
3158             'Carp' => '1.07',
3159             'Carp::Heavy' => '1.07',
3160             'Compress::Raw::Zlib' => '2.005',
3161             'Compress::Zlib' => '2.005',
3162             'Cwd' => '3.25',
3163             'DBM_Filter' => '0.02',
3164             'DB_File' => '1.815',
3165             'Data::Dumper' => '2.121_13',
3166             'Devel::InnerPackage' => '0.3',
3167             'Devel::PPPort' => '3.11_01',
3168             'Digest::MD5' => '2.36_01',
3169             'Digest::SHA' => '5.44',
3170             'DynaLoader' => '1.08',
3171             'Encode' => '2.23',
3172             'Encode::Alias' => '2.07',
3173             'Encode::Byte' => '2.03',
3174             'Encode::Config' => '2.04',
3175             'Encode::Encoding' => '2.05',
3176             'Encode::GSM0338' => '2.00',
3177             'Encode::JP::JIS7' => '2.03',
3178             'Encode::MIME::Header' => '2.05',
3179             'Encode::MIME::Name' => '1.01',
3180             'Encode::Unicode' => '2.05',
3181             'Errno' => '1.10',
3182             'Exporter' => '5.60',
3183             'Exporter::Heavy' => '5.60',
3184             'ExtUtils::CBuilder' => '0.19',
3185             'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3186             'ExtUtils::Command' => '1.13',
3187             'ExtUtils::Command::MM' => '0.07',
3188             'ExtUtils::Constant::Base'=> '0.04',
3189             'ExtUtils::Install' => '1.41_01',
3190             'ExtUtils::Liblist' => '1.03',
3191             'ExtUtils::Liblist::Kid'=> '1.33',
3192             'ExtUtils::MM' => '0.07',
3193             'ExtUtils::MM_AIX' => '0.05',
3194             'ExtUtils::MM_Any' => '0.15',
3195             'ExtUtils::MM_BeOS' => '1.07',
3196             'ExtUtils::MM_Cygwin' => '1.1',
3197             'ExtUtils::MM_DOS' => '0.04',
3198             'ExtUtils::MM_MacOS' => '1.1',
3199             'ExtUtils::MM_NW5' => '2.1',
3200             'ExtUtils::MM_OS2' => '1.07',
3201             'ExtUtils::MM_QNX' => '0.04',
3202             'ExtUtils::MM_UWIN' => '0.04',
3203             'ExtUtils::MM_Unix' => '1.54_01',
3204             'ExtUtils::MM_VMS' => '5.76',
3205             'ExtUtils::MM_VOS' => '0.04',
3206             'ExtUtils::MM_Win32' => '1.15',
3207             'ExtUtils::MM_Win95' => '0.06',
3208             'ExtUtils::MY' => '0.03',
3209             'ExtUtils::MakeMaker' => '6.36',
3210             'ExtUtils::MakeMaker::Config'=> '0.04',
3211             'ExtUtils::MakeMaker::bytes'=> '0.03',
3212             'ExtUtils::MakeMaker::vmsish'=> '0.03',
3213             'ExtUtils::Manifest' => '1.51_01',
3214             'ExtUtils::Mkbootstrap' => '1.17',
3215             'ExtUtils::Mksymlists' => '1.21',
3216             'ExtUtils::ParseXS' => '2.18',
3217             'ExtUtils::XSSymSet' => '1.1',
3218             'ExtUtils::testlib' => '1.17',
3219             'Fatal' => '1.05',
3220             'Fcntl' => '1.06',
3221             'File::Basename' => '2.76',
3222             'File::Copy' => '2.10',
3223             'File::Fetch' => '0.10',
3224             'File::Glob' => '1.06',
3225             'File::Path' => '2.01',
3226             'File::Spec' => '3.25',
3227             'File::Spec::Cygwin' => '1.1_01',
3228             'File::Spec::VMS' => '1.4_01',
3229             'File::Temp' => '0.18',
3230             'Filter::Util::Call' => '1.0602',
3231             'FindBin' => '1.49',
3232             'Getopt::Long' => '2.36',
3233             'Hash::Util::FieldHash' => '1.01',
3234             'IO::Compress::Adapter::Deflate'=> '2.005',
3235             'IO::Compress::Adapter::Identity'=> '2.005',
3236             'IO::Compress::Base' => '2.005',
3237             'IO::Compress::Base::Common'=> '2.005',
3238             'IO::Compress::Deflate' => '2.005',
3239             'IO::Compress::Gzip' => '2.005',
3240             'IO::Compress::Gzip::Constants'=> '2.005',
3241             'IO::Compress::RawDeflate'=> '2.005',
3242             'IO::Compress::Zip' => '2.005',
3243             'IO::Compress::Zip::Constants'=> '2.005',
3244             'IO::Compress::Zlib::Constants'=> '2.005',
3245             'IO::Compress::Zlib::Extra'=> '2.005',
3246             'IO::Uncompress::Adapter::Identity'=> '2.005',
3247             'IO::Uncompress::Adapter::Inflate'=> '2.005',
3248             'IO::Uncompress::AnyInflate'=> '2.005',
3249             'IO::Uncompress::AnyUncompress'=> '2.005',
3250             'IO::Uncompress::Base' => '2.005',
3251             'IO::Uncompress::Gunzip'=> '2.005',
3252             'IO::Uncompress::Inflate'=> '2.005',
3253             'IO::Uncompress::RawInflate'=> '2.005',
3254             'IO::Uncompress::Unzip' => '2.005',
3255             'IO::Zlib' => '1.05_01',
3256             'IPC::Cmd' => '0.36_01',
3257             'List::Util' => '1.19',
3258             'Locale::Maketext::Simple'=> '0.18',
3259             'Log::Message' => '0.01',
3260             'Log::Message::Config' => '0.01',
3261             'Log::Message::Handlers'=> undef,
3262             'Log::Message::Item' => undef,
3263             'Log::Message::Simple' => '0.0201',
3264             'Math::BigFloat' => '1.58',
3265             'Math::BigInt' => '1.87',
3266             'Math::BigInt::Calc' => '0.51',
3267             'Math::BigInt::FastCalc'=> '0.15_01',
3268             'Math::BigRat' => '0.19',
3269             'Math::Complex' => '1.37',
3270             'Memoize' => '1.01_02',
3271             'Module::Build' => '0.2808',
3272             'Module::Build::Config' => undef,
3273             'Module::Build::Version'=> '0.7203',
3274             'Module::CoreList' => '2.12',
3275             'Module::Load::Conditional'=> '0.16',
3276             'Module::Pluggable' => '3.6',
3277             'Module::Pluggable::Object'=> '3.6',
3278             'NDBM_File' => '1.07',
3279             'Net::Cmd' => '2.28',
3280             'Net::Config' => '1.11',
3281             'Net::Domain' => '2.20',
3282             'Net::FTP' => '2.77',
3283             'Net::FTP::A' => '1.18',
3284             'Net::NNTP' => '2.24',
3285             'Net::POP3' => '2.29',
3286             'Net::SMTP' => '2.31',
3287             'ODBM_File' => '1.07',
3288             'OS2::DLL' => '1.03',
3289             'Object::Accessor' => '0.32',
3290             'Opcode' => '1.09',
3291             'POSIX' => '1.13',
3292             'Params::Check' => '0.26',
3293             'PerlIO::encoding' => '0.10',
3294             'PerlIO::scalar' => '0.05',
3295             'PerlIO::via' => '0.04',
3296             'Pod::Html' => '1.08',
3297             'Pod::Man' => '2.12',
3298             'Pod::ParseUtils' => '1.35',
3299             'Pod::Parser' => '1.35',
3300             'Pod::Select' => '1.35',
3301             'Pod::Simple' => '3.05',
3302             'Pod::Text' => '3.08',
3303             'Pod::Usage' => '1.35',
3304             'Scalar::Util' => '1.19',
3305             'SelfLoader' => '1.11',
3306             'Shell' => '0.72_01',
3307             'Socket' => '1.79',
3308             'Storable' => '2.16',
3309             'Switch' => '2.13',
3310             'Sys::Syslog' => '0.18_01',
3311             'Term::ANSIColor' => '1.12',
3312             'Term::UI' => '0.14_01',
3313             'Term::UI::History' => undef,
3314             'Test::Builder' => '0.70',
3315             'Test::Builder::Module' => '0.68',
3316             'Test::Builder::Tester' => '1.07',
3317             'Test::Harness' => '2.64',
3318             'Test::Harness::Results'=> '0.01',
3319             'Test::More' => '0.70',
3320             'Test::Simple' => '0.70',
3321             'Text::Balanced' => '2.0.0',
3322             'Text::Soundex' => '3.02',
3323             'Text::Tabs' => '2007.1117',
3324             'Text::Wrap' => '2006.1117',
3325             'Thread' => '3.02',
3326             'Tie::File' => '0.97_02',
3327             'Tie::Hash::NamedCapture'=> '0.06',
3328             'Tie::Memoize' => '1.1',
3329             'Tie::RefHash' => '1.37',
3330             'Time::HiRes' => '1.9707',
3331             'Time::Local' => '1.17',
3332             'Time::Piece' => '1.11_02',
3333             'Time::Seconds' => undef,
3334             'Unicode' => '5.0.0',
3335             'Unicode::Normalize' => '1.02',
3336             'Unicode::UCD' => '0.25',
3337             'VMS::DCLsym' => '1.03',
3338             'Win32' => '0.30',
3339             'Win32API::File' => '0.1001_01',
3340             'Win32CORE' => '0.02',
3341             'XS::APItest' => '0.12',
3342             'XSLoader' => '0.08',
3343             'attributes' => '0.08',
3344             'base' => '2.12',
3345             'bigint' => '0.22',
3346             'bignum' => '0.22',
3347             'bigrat' => '0.22',
3348             'bytes' => '1.03',
3349             'charnames' => '1.06',
3350             'constant' => '1.10',
3351             'diagnostics' => '1.17',
3352             'encoding' => '2.06',
3353             'encoding::warnings' => '0.11',
3354             'feature' => '1.10',
3355             'fields' => '2.12',
3356             'less' => '0.02',
3357             'mro' => '1.00',
3358             'overload' => '1.06',
3359             're' => '0.08',
3360             'sigtrap' => '1.04',
3361             'sort' => '2.01',
3362             'strict' => '1.04',
3363             'threads' => '1.63',
3364             'threads::shared' => '1.12',
3365             'utf8' => '1.07',
3366             'version' => '0.7203',
3367             'warnings' => '1.06',
3368             },
3369             removed => {
3370             'B::Asmdata' => 1,
3371             'B::Assembler' => 1,
3372             'B::Bblock' => 1,
3373             'B::Bytecode' => 1,
3374             'B::C' => 1,
3375             'B::CC' => 1,
3376             'B::Disassembler' => 1,
3377             'B::Stackobj' => 1,
3378             'B::Stash' => 1,
3379             'ByteLoader' => 1,
3380             'Thread::Signal' => 1,
3381             'Thread::Specific' => 1,
3382             'assertions' => 1,
3383             'assertions::activate' => 1,
3384             'assertions::compat' => 1,
3385             }
3386             },
3387             5.01 => {
3388             delta_from => 5.009005,
3389             changed => {
3390             'Archive::Extract' => '0.24',
3391             'Archive::Tar' => '1.38',
3392             'Attribute::Handlers' => '0.79',
3393             'B' => '1.17',
3394             'B::Concise' => '0.74',
3395             'B::Deparse' => '0.83',
3396             'CPAN' => '1.9205',
3397             'CPAN::API::HOWTO' => undef,
3398             'CPAN::Debug' => '5.402212',
3399             'CPAN::DeferedCode' => '5.50',
3400             'CPAN::FirstTime' => '5.402229',
3401             'CPAN::HandleConfig' => '5.402212',
3402             'CPAN::Nox' => '5.402411',
3403             'CPAN::Queue' => '5.402212',
3404             'CPAN::Tarzip' => '5.402213',
3405             'CPAN::Version' => '5.5',
3406             'CPANPLUS' => '0.84',
3407             'CPANPLUS::Dist::Build' => '0.06_02',
3408             'CPANPLUS::Internals' => '0.84',
3409             'CPANPLUS::Shell::Default'=> '0.84',
3410             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3411             'Carp' => '1.08',
3412             'Carp::Heavy' => '1.08',
3413             'Compress::Raw::Zlib' => '2.008',
3414             'Compress::Zlib' => '2.008',
3415             'Cwd' => '3.2501',
3416             'DB_File' => '1.816_1',
3417             'Data::Dumper' => '2.121_14',
3418             'Devel::PPPort' => '3.13',
3419             'Digest::SHA' => '5.45',
3420             'Exporter' => '5.62',
3421             'Exporter::Heavy' => '5.62',
3422             'ExtUtils::CBuilder' => '0.21',
3423             'ExtUtils::CBuilder::Base'=> '0.21',
3424             'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3425             'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3426             'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3427             'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3428             'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3429             'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3430             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3431             'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3432             'ExtUtils::Command::MM' => '6.42',
3433             'ExtUtils::Constant::ProxySubs'=> '0.05',
3434             'ExtUtils::Embed' => '1.27',
3435             'ExtUtils::Install' => '1.44',
3436             'ExtUtils::Installed' => '1.43',
3437             'ExtUtils::Liblist' => '6.42',
3438             'ExtUtils::Liblist::Kid'=> '6.42',
3439             'ExtUtils::MM' => '6.42',
3440             'ExtUtils::MM_AIX' => '6.42',
3441             'ExtUtils::MM_Any' => '6.42',
3442             'ExtUtils::MM_BeOS' => '6.42',
3443             'ExtUtils::MM_Cygwin' => '6.42',
3444             'ExtUtils::MM_DOS' => '6.42',
3445             'ExtUtils::MM_MacOS' => '6.42',
3446             'ExtUtils::MM_NW5' => '6.42',
3447             'ExtUtils::MM_OS2' => '6.42',
3448             'ExtUtils::MM_QNX' => '6.42',
3449             'ExtUtils::MM_UWIN' => '6.42',
3450             'ExtUtils::MM_Unix' => '6.42',
3451             'ExtUtils::MM_VMS' => '6.42',
3452             'ExtUtils::MM_VOS' => '6.42',
3453             'ExtUtils::MM_Win32' => '6.42',
3454             'ExtUtils::MM_Win95' => '6.42',
3455             'ExtUtils::MY' => '6.42',
3456             'ExtUtils::MakeMaker' => '6.42',
3457             'ExtUtils::MakeMaker::Config'=> '6.42',
3458             'ExtUtils::MakeMaker::bytes'=> '6.42',
3459             'ExtUtils::MakeMaker::vmsish'=> '6.42',
3460             'ExtUtils::Mkbootstrap' => '6.42',
3461             'ExtUtils::Mksymlists' => '6.42',
3462             'ExtUtils::Packlist' => '1.43',
3463             'ExtUtils::ParseXS' => '2.18_02',
3464             'ExtUtils::testlib' => '6.42',
3465             'File::Copy' => '2.11',
3466             'File::Fetch' => '0.14',
3467             'File::Find' => '1.12',
3468             'File::Path' => '2.04',
3469             'File::Spec' => '3.2501',
3470             'File::Spec::Cygwin' => '3.2501',
3471             'File::Spec::Epoc' => '3.2501',
3472             'File::Spec::Functions' => '3.2501',
3473             'File::Spec::Mac' => '3.2501',
3474             'File::Spec::OS2' => '3.2501',
3475             'File::Spec::Unix' => '3.2501',
3476             'File::Spec::VMS' => '3.2501',
3477             'File::Spec::Win32' => '3.2501',
3478             'Filter::Util::Call' => '1.07',
3479             'Getopt::Long' => '2.37',
3480             'Hash::Util::FieldHash' => '1.03',
3481             'IO::Compress::Adapter::Deflate'=> '2.008',
3482             'IO::Compress::Adapter::Identity'=> '2.008',
3483             'IO::Compress::Base' => '2.008',
3484             'IO::Compress::Base::Common'=> '2.008',
3485             'IO::Compress::Deflate' => '2.008',
3486             'IO::Compress::Gzip' => '2.008',
3487             'IO::Compress::Gzip::Constants'=> '2.008',
3488             'IO::Compress::RawDeflate'=> '2.008',
3489             'IO::Compress::Zip' => '2.008',
3490             'IO::Compress::Zip::Constants'=> '2.008',
3491             'IO::Compress::Zlib::Constants'=> '2.008',
3492             'IO::Compress::Zlib::Extra'=> '2.008',
3493             'IO::Uncompress::Adapter::Identity'=> '2.008',
3494             'IO::Uncompress::Adapter::Inflate'=> '2.008',
3495             'IO::Uncompress::AnyInflate'=> '2.008',
3496             'IO::Uncompress::AnyUncompress'=> '2.008',
3497             'IO::Uncompress::Base' => '2.008',
3498             'IO::Uncompress::Gunzip'=> '2.008',
3499             'IO::Uncompress::Inflate'=> '2.008',
3500             'IO::Uncompress::RawInflate'=> '2.008',
3501             'IO::Uncompress::Unzip' => '2.008',
3502             'IO::Zlib' => '1.07',
3503             'IPC::Cmd' => '0.40_1',
3504             'IPC::SysV' => '1.05',
3505             'Locale::Maketext' => '1.12',
3506             'Log::Message::Simple' => '0.04',
3507             'Math::BigFloat' => '1.59',
3508             'Math::BigInt' => '1.88',
3509             'Math::BigInt::Calc' => '0.52',
3510             'Math::BigInt::FastCalc'=> '0.16',
3511             'Math::BigRat' => '0.21',
3512             'Module::Build' => '0.2808_01',
3513             'Module::Build::Base' => '0.2808_01',
3514             'Module::Build::Compat' => '0.2808_01',
3515             'Module::Build::Config' => '0.2808_01',
3516             'Module::Build::Dumper' => undef,
3517             'Module::Build::ModuleInfo'=> '0.2808_01',
3518             'Module::Build::Notes' => '0.2808_01',
3519             'Module::Build::PPMMaker'=> '0.2808_01',
3520             'Module::Build::Platform::Amiga'=> '0.2808_01',
3521             'Module::Build::Platform::Default'=> '0.2808_01',
3522             'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3523             'Module::Build::Platform::MPEiX'=> '0.2808_01',
3524             'Module::Build::Platform::MacOS'=> '0.2808_01',
3525             'Module::Build::Platform::RiscOS'=> '0.2808_01',
3526             'Module::Build::Platform::Unix'=> '0.2808_01',
3527             'Module::Build::Platform::VMS'=> '0.2808_01',
3528             'Module::Build::Platform::VOS'=> '0.2808_01',
3529             'Module::Build::Platform::Windows'=> '0.2808_01',
3530             'Module::Build::Platform::aix'=> '0.2808_01',
3531             'Module::Build::Platform::cygwin'=> '0.2808_01',
3532             'Module::Build::Platform::darwin'=> '0.2808_01',
3533             'Module::Build::Platform::os2'=> '0.2808_01',
3534             'Module::Build::PodParser'=> '0.2808_01',
3535             'Module::CoreList' => '2.13',
3536             'Module::Load' => '0.12',
3537             'Module::Load::Conditional'=> '0.22',
3538             'Net::Cmd' => '2.29',
3539             'Net::Ping' => '2.33',
3540             'Opcode' => '1.11',
3541             'Pod::Checker' => '1.43_01',
3542             'Pod::Man' => '2.16',
3543             'Pod::Perldoc' => '3.14_02',
3544             'Socket' => '1.80',
3545             'Storable' => '2.18',
3546             'Sys::Syslog' => '0.22',
3547             'Sys::Syslog::win32::Win32'=> undef,
3548             'Term::Cap' => '1.12',
3549             'Term::ReadLine' => '1.03',
3550             'Term::UI' => '0.18',
3551             'Test::Builder' => '0.72',
3552             'Test::Builder::Module' => '0.72',
3553             'Test::Builder::Tester' => '1.09',
3554             'Test::Harness::Straps' => '0.26_01',
3555             'Test::More' => '0.72',
3556             'Test::Simple' => '0.72',
3557             'Text::ParseWords' => '3.26',
3558             'Text::Soundex' => '3.03',
3559             'Tie::StdHandle' => undef,
3560             'Time::HiRes' => '1.9711',
3561             'Time::Local' => '1.18',
3562             'Time::Piece' => '1.12',
3563             'VMS::Filespec' => '1.12',
3564             'Win32' => '0.34',
3565             'base' => '2.13',
3566             'constant' => '1.13',
3567             'feature' => '1.11',
3568             'fields' => '2.13',
3569             'filetest' => '1.02',
3570             'open' => '1.06',
3571             'threads' => '1.67',
3572             'threads::shared' => '1.14',
3573             'version' => '0.74',
3574             },
3575             removed => {
3576             }
3577             },
3578             5.010001 => {
3579             delta_from => 5.01,
3580             changed => {
3581             'App::Prove' => '3.17',
3582             'App::Prove::State' => '3.17',
3583             'App::Prove::State::Result'=> '3.17',
3584             'App::Prove::State::Result::Test'=> '3.17',
3585             'Archive::Extract' => '0.34',
3586             'Archive::Tar' => '1.52',
3587             'Attribute::Handlers' => '0.85',
3588             'AutoLoader' => '5.68',
3589             'AutoSplit' => '1.06',
3590             'B' => '1.22',
3591             'B::Concise' => '0.76',
3592             'B::Debug' => '1.11',
3593             'B::Deparse' => '0.89',
3594             'B::Lint' => '1.11',
3595             'B::Lint::Debug' => undef,
3596             'B::Xref' => '1.02',
3597             'Benchmark' => '1.11',
3598             'CGI' => '3.43',
3599             'CGI::Carp' => '1.30_01',
3600             'CGI::Cookie' => '1.29',
3601             'CPAN' => '1.9402',
3602             'CPAN::Author' => '5.5',
3603             'CPAN::Bundle' => '5.5',
3604             'CPAN::CacheMgr' => '5.5',
3605             'CPAN::Complete' => '5.5',
3606             'CPAN::Debug' => '5.5',
3607             'CPAN::DeferredCode' => '5.50',
3608             'CPAN::Distribution' => '1.93',
3609             'CPAN::Distroprefs' => '6',
3610             'CPAN::Distrostatus' => '5.5',
3611             'CPAN::Exception::RecursiveDependency'=> '5.5',
3612             'CPAN::Exception::blocked_urllist'=> '1.0',
3613             'CPAN::Exception::yaml_not_installed'=> '5.5',
3614             'CPAN::FTP' => '5.5001',
3615             'CPAN::FTP::netrc' => '1.00',
3616             'CPAN::FirstTime' => '5.53',
3617             'CPAN::HandleConfig' => '5.5',
3618             'CPAN::Index' => '1.93',
3619             'CPAN::InfoObj' => '5.5',
3620             'CPAN::Kwalify' => '5.50',
3621             'CPAN::LWP::UserAgent' => '1.00',
3622             'CPAN::Module' => '5.5',
3623             'CPAN::Nox' => '5.50',
3624             'CPAN::Prompt' => '5.5',
3625             'CPAN::Queue' => '5.5',
3626             'CPAN::Shell' => '5.5',
3627             'CPAN::Tarzip' => '5.501',
3628             'CPAN::URL' => '5.5',
3629             'CPANPLUS' => '0.88',
3630             'CPANPLUS::Dist::Autobundle'=> undef,
3631             'CPANPLUS::Dist::Base' => undef,
3632             'CPANPLUS::Dist::Build' => '0.36',
3633             'CPANPLUS::Dist::Build::Constants'=> '0.36',
3634             'CPANPLUS::Internals' => '0.88',
3635             'CPANPLUS::Internals::Constants'=> undef,
3636             'CPANPLUS::Internals::Constants::Report'=> undef,
3637             'CPANPLUS::Internals::Source::Memory'=> undef,
3638             'CPANPLUS::Internals::Source::SQLite'=> undef,
3639             'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3640             'CPANPLUS::Shell::Default'=> '0.88',
3641             'Carp' => '1.11',
3642             'Carp::Heavy' => '1.11',
3643             'Compress::Raw::Bzip2' => '2.020',
3644             'Compress::Raw::Zlib' => '2.020',
3645             'Compress::Zlib' => '2.020',
3646             'Cwd' => '3.30',
3647             'DB' => '1.02',
3648             'DBM_Filter::compress' => '0.02',
3649             'DBM_Filter::encode' => '0.02',
3650             'DBM_Filter::int32' => '0.02',
3651             'DBM_Filter::null' => '0.02',
3652             'DBM_Filter::utf8' => '0.02',
3653             'DB_File' => '1.820',
3654             'Data::Dumper' => '2.124',
3655             'Devel::DProf' => '20080331.00',
3656             'Devel::PPPort' => '3.19',
3657             'Devel::Peek' => '1.04',
3658             'Digest' => '1.16',
3659             'Digest::MD5' => '2.39',
3660             'Digest::SHA' => '5.47',
3661             'Digest::base' => '1.16',
3662             'Digest::file' => '1.16',
3663             'DirHandle' => '1.03',
3664             'Dumpvalue' => '1.13',
3665             'DynaLoader' => '1.10',
3666             'Encode' => '2.35',
3667             'Encode::Alias' => '2.12',
3668             'Encode::CN::HZ' => '2.05',
3669             'Encode::Config' => '2.05',
3670             'Encode::GSM0338' => '2.01',
3671             'Encode::Guess' => '2.03',
3672             'Encode::JP::JIS7' => '2.04',
3673             'Encode::MIME::Header' => '2.11',
3674             'Encode::Unicode' => '2.06',
3675             'Errno' => '1.11',
3676             'Exporter' => '5.63',
3677             'Exporter::Heavy' => '5.63',
3678             'ExtUtils::CBuilder' => '0.2602',
3679             'ExtUtils::CBuilder::Base'=> '0.2602',
3680             'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3681             'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3682             'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3683             'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3684             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3685             'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3686             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3687             'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3688             'ExtUtils::Command' => '1.16',
3689             'ExtUtils::Command::MM' => '6.55_02',
3690             'ExtUtils::Constant' => '0.22',
3691             'ExtUtils::Constant::ProxySubs'=> '0.06',
3692             'ExtUtils::Constant::Utils'=> '0.02',
3693             'ExtUtils::Constant::XS'=> '0.03',
3694             'ExtUtils::Embed' => '1.28',
3695             'ExtUtils::Install' => '1.54',
3696             'ExtUtils::Installed' => '1.999_001',
3697             'ExtUtils::Liblist' => '6.55_02',
3698             'ExtUtils::Liblist::Kid'=> '6.5502',
3699             'ExtUtils::MM' => '6.55_02',
3700             'ExtUtils::MM_AIX' => '6.55_02',
3701             'ExtUtils::MM_Any' => '6.55_02',
3702             'ExtUtils::MM_BeOS' => '6.55_02',
3703             'ExtUtils::MM_Cygwin' => '6.55_02',
3704             'ExtUtils::MM_DOS' => '6.5502',
3705             'ExtUtils::MM_Darwin' => '6.55_02',
3706             'ExtUtils::MM_MacOS' => '6.5502',
3707             'ExtUtils::MM_NW5' => '6.55_02',
3708             'ExtUtils::MM_OS2' => '6.55_02',
3709             'ExtUtils::MM_QNX' => '6.55_02',
3710             'ExtUtils::MM_UWIN' => '6.5502',
3711             'ExtUtils::MM_Unix' => '6.55_02',
3712             'ExtUtils::MM_VMS' => '6.55_02',
3713             'ExtUtils::MM_VOS' => '6.55_02',
3714             'ExtUtils::MM_Win32' => '6.55_02',
3715             'ExtUtils::MM_Win95' => '6.55_02',
3716             'ExtUtils::MY' => '6.5502',
3717             'ExtUtils::MakeMaker' => '6.55_02',
3718             'ExtUtils::MakeMaker::Config'=> '6.55_02',
3719             'ExtUtils::Manifest' => '1.56',
3720             'ExtUtils::Mkbootstrap' => '6.55_02',
3721             'ExtUtils::Mksymlists' => '6.55_02',
3722             'ExtUtils::ParseXS' => '2.2002',
3723             'ExtUtils::testlib' => '6.5502',
3724             'Fatal' => '2.06_01',
3725             'File::Basename' => '2.77',
3726             'File::CheckTree' => '4.4',
3727             'File::Compare' => '1.1006',
3728             'File::Copy' => '2.14',
3729             'File::DosGlob' => '1.01',
3730             'File::Fetch' => '0.20',
3731             'File::Find' => '1.14',
3732             'File::GlobMapper' => '1.000',
3733             'File::Path' => '2.07_03',
3734             'File::Spec' => '3.30',
3735             'File::Spec::Cygwin' => '3.30',
3736             'File::Spec::Epoc' => '3.30',
3737             'File::Spec::Functions' => '3.30',
3738             'File::Spec::Mac' => '3.30',
3739             'File::Spec::OS2' => '3.30',
3740             'File::Spec::Unix' => '3.30',
3741             'File::Spec::VMS' => '3.30',
3742             'File::Spec::Win32' => '3.30',
3743             'File::Temp' => '0.22',
3744             'File::stat' => '1.01',
3745             'FileCache' => '1.08',
3746             'FileHandle' => '2.02',
3747             'Filter::Simple' => '0.84',
3748             'Filter::Util::Call' => '1.08',
3749             'FindBin' => '1.50',
3750             'GDBM_File' => '1.09',
3751             'Getopt::Long' => '2.38',
3752             'Getopt::Std' => '1.06',
3753             'Hash::Util::FieldHash' => '1.04',
3754             'I18N::Collate' => '1.01',
3755             'IO' => '1.25',
3756             'IO::Compress::Adapter::Bzip2'=> '2.020',
3757             'IO::Compress::Adapter::Deflate'=> '2.020',
3758             'IO::Compress::Adapter::Identity'=> '2.020',
3759             'IO::Compress::Base' => '2.020',
3760             'IO::Compress::Base::Common'=> '2.020',
3761             'IO::Compress::Bzip2' => '2.020',
3762             'IO::Compress::Deflate' => '2.020',
3763             'IO::Compress::Gzip' => '2.020',
3764             'IO::Compress::Gzip::Constants'=> '2.020',
3765             'IO::Compress::RawDeflate'=> '2.020',
3766             'IO::Compress::Zip' => '2.020',
3767             'IO::Compress::Zip::Constants'=> '2.020',
3768             'IO::Compress::Zlib::Constants'=> '2.020',
3769             'IO::Compress::Zlib::Extra'=> '2.020',
3770             'IO::Dir' => '1.07',
3771             'IO::Handle' => '1.28',
3772             'IO::Socket' => '1.31',
3773             'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3774             'IO::Uncompress::Adapter::Identity'=> '2.020',
3775             'IO::Uncompress::Adapter::Inflate'=> '2.020',
3776             'IO::Uncompress::AnyInflate'=> '2.020',
3777             'IO::Uncompress::AnyUncompress'=> '2.020',
3778             'IO::Uncompress::Base' => '2.020',
3779             'IO::Uncompress::Bunzip2'=> '2.020',
3780             'IO::Uncompress::Gunzip'=> '2.020',
3781             'IO::Uncompress::Inflate'=> '2.020',
3782             'IO::Uncompress::RawInflate'=> '2.020',
3783             'IO::Uncompress::Unzip' => '2.020',
3784             'IO::Zlib' => '1.09',
3785             'IPC::Cmd' => '0.46',
3786             'IPC::Msg' => '2.01',
3787             'IPC::Open2' => '1.03',
3788             'IPC::Open3' => '1.04',
3789             'IPC::Semaphore' => '2.01',
3790             'IPC::SharedMem' => '2.01',
3791             'IPC::SysV' => '2.01',
3792             'List::Util' => '1.21',
3793             'List::Util::PP' => '1.21',
3794             'List::Util::XS' => '1.21',
3795             'Locale::Maketext' => '1.13',
3796             'Locale::Maketext::Guts'=> '1.13',
3797             'Locale::Maketext::GutsLoader'=> '1.13',
3798             'Log::Message' => '0.02',
3799             'MIME::Base64' => '3.08',
3800             'MIME::QuotedPrint' => '3.08',
3801             'Math::BigFloat' => '1.60',
3802             'Math::BigInt' => '1.89',
3803             'Math::BigInt::FastCalc'=> '0.19',
3804             'Math::BigRat' => '0.22',
3805             'Math::Complex' => '1.56',
3806             'Math::Trig' => '1.2',
3807             'Memoize' => '1.01_03',
3808             'Module::Build' => '0.340201',
3809             'Module::Build::Base' => '0.340201',
3810             'Module::Build::Compat' => '0.340201',
3811             'Module::Build::Config' => '0.340201',
3812             'Module::Build::Cookbook'=> '0.340201',
3813             'Module::Build::Dumper' => '0.340201',
3814             'Module::Build::ModuleInfo'=> '0.340201',
3815             'Module::Build::Notes' => '0.340201',
3816             'Module::Build::PPMMaker'=> '0.340201',
3817             'Module::Build::Platform::Amiga'=> '0.340201',
3818             'Module::Build::Platform::Default'=> '0.340201',
3819             'Module::Build::Platform::EBCDIC'=> '0.340201',
3820             'Module::Build::Platform::MPEiX'=> '0.340201',
3821             'Module::Build::Platform::MacOS'=> '0.340201',
3822             'Module::Build::Platform::RiscOS'=> '0.340201',
3823             'Module::Build::Platform::Unix'=> '0.340201',
3824             'Module::Build::Platform::VMS'=> '0.340201',
3825             'Module::Build::Platform::VOS'=> '0.340201',
3826             'Module::Build::Platform::Windows'=> '0.340201',
3827             'Module::Build::Platform::aix'=> '0.340201',
3828             'Module::Build::Platform::cygwin'=> '0.340201',
3829             'Module::Build::Platform::darwin'=> '0.340201',
3830             'Module::Build::Platform::os2'=> '0.340201',
3831             'Module::Build::PodParser'=> '0.340201',
3832             'Module::Build::Version'=> '0.77',
3833             'Module::CoreList' => '2.18',
3834             'Module::Load' => '0.16',
3835             'Module::Load::Conditional'=> '0.30',
3836             'Module::Loaded' => '0.02',
3837             'Module::Pluggable' => '3.9',
3838             'Module::Pluggable::Object'=> '3.9',
3839             'NDBM_File' => '1.08',
3840             'NEXT' => '0.64',
3841             'Net::Ping' => '2.36',
3842             'O' => '1.01',
3843             'OS2::Process' => '1.03',
3844             'OS2::REXX' => '1.04',
3845             'Object::Accessor' => '0.34',
3846             'POSIX' => '1.17',
3847             'Package::Constants' => '0.02',
3848             'Parse::CPAN::Meta' => '1.39',
3849             'PerlIO' => '1.06',
3850             'PerlIO::encoding' => '0.11',
3851             'PerlIO::scalar' => '0.07',
3852             'PerlIO::via' => '0.07',
3853             'Pod::Checker' => '1.45',
3854             'Pod::Find' => '1.35',
3855             'Pod::Html' => '1.09',
3856             'Pod::InputObjects' => '1.31',
3857             'Pod::Man' => '2.22',
3858             'Pod::ParseLink' => '1.09',
3859             'Pod::ParseUtils' => '1.36',
3860             'Pod::Parser' => '1.37',
3861             'Pod::Perldoc' => '3.14_04',
3862             'Pod::PlainText' => '2.04',
3863             'Pod::Select' => '1.36',
3864             'Pod::Simple' => '3.07',
3865             'Pod::Simple::XHTML' => '3.04',
3866             'Pod::Text' => '3.13',
3867             'Pod::Text::Color' => '2.05',
3868             'Pod::Text::Overstrike' => '2.03',
3869             'Pod::Text::Termcap' => '2.05',
3870             'Pod::Usage' => '1.36',
3871             'Safe' => '2.18',
3872             'Scalar::Util' => '1.21',
3873             'Scalar::Util::PP' => '1.21',
3874             'SelectSaver' => '1.02',
3875             'SelfLoader' => '1.17',
3876             'Socket' => '1.82',
3877             'Storable' => '2.20',
3878             'Switch' => '2.14',
3879             'Symbol' => '1.07',
3880             'Sys::Syslog' => '0.27',
3881             'TAP::Base' => '3.17',
3882             'TAP::Formatter::Base' => '3.17',
3883             'TAP::Formatter::Color' => '3.17',
3884             'TAP::Formatter::Console'=> '3.17',
3885             'TAP::Formatter::Console::ParallelSession'=> '3.17',
3886             'TAP::Formatter::Console::Session'=> '3.17',
3887             'TAP::Formatter::File' => '3.17',
3888             'TAP::Formatter::File::Session'=> '3.17',
3889             'TAP::Formatter::Session'=> '3.17',
3890             'TAP::Harness' => '3.17',
3891             'TAP::Object' => '3.17',
3892             'TAP::Parser' => '3.17',
3893             'TAP::Parser::Aggregator'=> '3.17',
3894             'TAP::Parser::Grammar' => '3.17',
3895             'TAP::Parser::Iterator' => '3.17',
3896             'TAP::Parser::Iterator::Array'=> '3.17',
3897             'TAP::Parser::Iterator::Process'=> '3.17',
3898             'TAP::Parser::Iterator::Stream'=> '3.17',
3899             'TAP::Parser::IteratorFactory'=> '3.17',
3900             'TAP::Parser::Multiplexer'=> '3.17',
3901             'TAP::Parser::Result' => '3.17',
3902             'TAP::Parser::Result::Bailout'=> '3.17',
3903             'TAP::Parser::Result::Comment'=> '3.17',
3904             'TAP::Parser::Result::Plan'=> '3.17',
3905             'TAP::Parser::Result::Pragma'=> '3.17',
3906             'TAP::Parser::Result::Test'=> '3.17',
3907             'TAP::Parser::Result::Unknown'=> '3.17',
3908             'TAP::Parser::Result::Version'=> '3.17',
3909             'TAP::Parser::Result::YAML'=> '3.17',
3910             'TAP::Parser::ResultFactory'=> '3.17',
3911             'TAP::Parser::Scheduler'=> '3.17',
3912             'TAP::Parser::Scheduler::Job'=> '3.17',
3913             'TAP::Parser::Scheduler::Spinner'=> '3.17',
3914             'TAP::Parser::Source' => '3.17',
3915             'TAP::Parser::Source::Perl'=> '3.17',
3916             'TAP::Parser::Utils' => '3.17',
3917             'TAP::Parser::YAMLish::Reader'=> '3.17',
3918             'TAP::Parser::YAMLish::Writer'=> '3.17',
3919             'Term::ANSIColor' => '2.00',
3920             'Term::ReadLine' => '1.04',
3921             'Term::UI' => '0.20',
3922             'Test' => '1.25_02',
3923             'Test::Builder' => '0.92',
3924             'Test::Builder::Module' => '0.92',
3925             'Test::Builder::Tester' => '1.18',
3926             'Test::Builder::Tester::Color'=> '1.18',
3927             'Test::Harness' => '3.17',
3928             'Test::More' => '0.92',
3929             'Test::Simple' => '0.92',
3930             'Text::ParseWords' => '3.27',
3931             'Text::Tabs' => '2009.0305',
3932             'Text::Wrap' => '2009.0305',
3933             'Thread::Queue' => '2.11',
3934             'Thread::Semaphore' => '2.09',
3935             'Tie::Handle' => '4.2',
3936             'Tie::Hash' => '1.03',
3937             'Tie::RefHash' => '1.38',
3938             'Tie::Scalar' => '1.01',
3939             'Tie::StdHandle' => '4.2',
3940             'Time::HiRes' => '1.9719',
3941             'Time::Local' => '1.1901',
3942             'Time::Piece' => '1.15',
3943             'UNIVERSAL' => '1.05',
3944             'Unicode' => '5.1.0',
3945             'Unicode::Normalize' => '1.03',
3946             'Unicode::UCD' => '0.27',
3947             'VMS::Stdio' => '2.4',
3948             'Win32' => '0.39',
3949             'Win32API::File' => '0.1101',
3950             'XS::APItest' => '0.15',
3951             'XS::Typemap' => '0.03',
3952             'XSLoader' => '0.10',
3953             'attributes' => '0.09',
3954             'attrs' => '1.03',
3955             'autodie' => '2.06_01',
3956             'autodie::exception' => '2.06_01',
3957             'autodie::exception::system'=> '2.06_01',
3958             'autodie::hints' => '2.06_01',
3959             'base' => '2.14',
3960             'bigint' => '0.23',
3961             'bignum' => '0.23',
3962             'bigrat' => '0.23',
3963             'blib' => '1.04',
3964             'charnames' => '1.07',
3965             'constant' => '1.17',
3966             'encoding' => '2.6_01',
3967             'feature' => '1.13',
3968             'fields' => '2.14',
3969             'lib' => '0.62',
3970             'mro' => '1.01',
3971             'open' => '1.07',
3972             'ops' => '1.02',
3973             'overload' => '1.07',
3974             'overload::numbers' => undef,
3975             'overloading' => '0.01',
3976             'parent' => '0.221',
3977             're' => '0.09',
3978             'threads' => '1.72',
3979             'threads::shared' => '1.29',
3980             'version' => '0.77',
3981             },
3982             removed => {
3983             'CPAN::API::HOWTO' => 1,
3984             'CPAN::DeferedCode' => 1,
3985             'CPANPLUS::inc' => 1,
3986             'ExtUtils::MakeMaker::bytes'=> 1,
3987             'ExtUtils::MakeMaker::vmsish'=> 1,
3988             'Test::Harness::Assert' => 1,
3989             'Test::Harness::Iterator'=> 1,
3990             'Test::Harness::Point' => 1,
3991             'Test::Harness::Results'=> 1,
3992             'Test::Harness::Straps' => 1,
3993             'Test::Harness::Util' => 1,
3994             }
3995             },
3996             5.011 => {
3997             delta_from => 5.010001,
3998             changed => {
3999             'Archive::Tar' => '1.54',
4000             'Attribute::Handlers' => '0.87',
4001             'AutoLoader' => '5.70',
4002             'B::Deparse' => '0.91',
4003             'B::Lint' => '1.11_01',
4004             'B::Lint::Debug' => '0.01',
4005             'CGI' => '3.45',
4006             'CGI::Apache' => '1.01',
4007             'CGI::Carp' => '3.45',
4008             'CGI::Pretty' => '3.44',
4009             'CGI::Switch' => '1.01',
4010             'CGI::Util' => '3.45',
4011             'CPAN' => '1.94_51',
4012             'CPAN::Distribution' => '1.94',
4013             'CPAN::FTP' => '5.5002',
4014             'CPAN::Index' => '1.94',
4015             'CPAN::LWP::UserAgent' => '1.94',
4016             'CPANPLUS::Dist::Build' => '0.40',
4017             'CPANPLUS::Dist::Build::Constants'=> '0.40',
4018             'Carp' => '1.12',
4019             'Carp::Heavy' => '1.12',
4020             'Class::ISA' => '0.36',
4021             'Compress::Raw::Bzip2' => '2.021',
4022             'Compress::Raw::Zlib' => '2.021',
4023             'Compress::Zlib' => '2.021',
4024             'Cwd' => '3.3002',
4025             'Data::Dumper' => '2.125',
4026             'Encode' => '2.37',
4027             'Exporter' => '5.64',
4028             'Exporter::Heavy' => '5.64',
4029             'ExtUtils::ParseXS' => '2.200403',
4030             'File::Basename' => '2.78',
4031             'File::Copy' => '2.16',
4032             'File::stat' => '1.02',
4033             'IO' => '1.25_01',
4034             'IO::Compress::Adapter::Bzip2'=> '2.021',
4035             'IO::Compress::Adapter::Deflate'=> '2.021',
4036             'IO::Compress::Adapter::Identity'=> '2.021',
4037             'IO::Compress::Base' => '2.021',
4038             'IO::Compress::Base::Common'=> '2.021',
4039             'IO::Compress::Bzip2' => '2.021',
4040             'IO::Compress::Deflate' => '2.021',
4041             'IO::Compress::Gzip' => '2.021',
4042             'IO::Compress::Gzip::Constants'=> '2.021',
4043             'IO::Compress::RawDeflate'=> '2.021',
4044             'IO::Compress::Zip' => '2.021',
4045             'IO::Compress::Zip::Constants'=> '2.021',
4046             'IO::Compress::Zlib::Constants'=> '2.021',
4047             'IO::Compress::Zlib::Extra'=> '2.021',
4048             'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
4049             'IO::Uncompress::Adapter::Identity'=> '2.021',
4050             'IO::Uncompress::Adapter::Inflate'=> '2.021',
4051             'IO::Uncompress::AnyInflate'=> '2.021',
4052             'IO::Uncompress::AnyUncompress'=> '2.021',
4053             'IO::Uncompress::Base' => '2.021',
4054             'IO::Uncompress::Bunzip2'=> '2.021',
4055             'IO::Uncompress::Gunzip'=> '2.021',
4056             'IO::Uncompress::Inflate'=> '2.021',
4057             'IO::Uncompress::RawInflate'=> '2.021',
4058             'IO::Uncompress::Unzip' => '2.021',
4059             'IO::Zlib' => '1.10',
4060             'IPC::Cmd' => '0.50',
4061             'IPC::Open3' => '1.05',
4062             'Locale::Maketext::Simple'=> '0.21',
4063             'Log::Message::Simple' => '0.06',
4064             'Math::BigInt' => '1.89_01',
4065             'Math::BigRat' => '0.24',
4066             'Module::Build' => '0.35',
4067             'Module::Build::Base' => '0.35',
4068             'Module::Build::Compat' => '0.35',
4069             'Module::Build::Config' => '0.35',
4070             'Module::Build::Cookbook'=> '0.35',
4071             'Module::Build::Dumper' => '0.35',
4072             'Module::Build::ModuleInfo'=> '0.35',
4073             'Module::Build::Notes' => '0.35',
4074             'Module::Build::PPMMaker'=> '0.35',
4075             'Module::Build::Platform::Amiga'=> '0.35',
4076             'Module::Build::Platform::Default'=> '0.35',
4077             'Module::Build::Platform::EBCDIC'=> '0.35',
4078             'Module::Build::Platform::MPEiX'=> '0.35',
4079             'Module::Build::Platform::MacOS'=> '0.35',
4080             'Module::Build::Platform::RiscOS'=> '0.35',
4081             'Module::Build::Platform::Unix'=> '0.35',
4082             'Module::Build::Platform::VMS'=> '0.35',
4083             'Module::Build::Platform::VOS'=> '0.35',
4084             'Module::Build::Platform::Windows'=> '0.35',
4085             'Module::Build::Platform::aix'=> '0.35',
4086             'Module::Build::Platform::cygwin'=> '0.35',
4087             'Module::Build::Platform::darwin'=> '0.35',
4088             'Module::Build::Platform::os2'=> '0.35',
4089             'Module::Build::PodParser'=> '0.35',
4090             'Module::CoreList' => '2.19',
4091             'Module::Loaded' => '0.06',
4092             'Opcode' => '1.13',
4093             'PerlIO::via' => '0.08',
4094             'Pod::Perldoc' => '3.15_01',
4095             'Pod::Plainer' => '1.01',
4096             'Safe' => '2.19',
4097             'Socket' => '1.84',
4098             'Switch' => '2.14_01',
4099             'Term::ANSIColor' => '2.02',
4100             'Term::ReadLine' => '1.05',
4101             'Text::Balanced' => '2.02',
4102             'Text::Soundex' => '3.03_01',
4103             'Time::Local' => '1.1901_01',
4104             'Unicode::Collate' => '0.52_01',
4105             'attributes' => '0.12',
4106             'constant' => '1.19',
4107             'deprecate' => '0.01',
4108             'overload' => '1.08',
4109             'parent' => '0.223',
4110             're' => '0.10',
4111             'threads' => '1.74',
4112             'threads::shared' => '1.31',
4113             'warnings' => '1.07',
4114             },
4115             removed => {
4116             'attrs' => 1,
4117             }
4118             },
4119             5.011001 => {
4120             delta_from => 5.011,
4121             changed => {
4122             'B' => '1.23',
4123             'B::Concise' => '0.77',
4124             'B::Deparse' => '0.92',
4125             'CGI' => '3.48',
4126             'CGI::Pretty' => '3.46',
4127             'CGI::Util' => '3.48',
4128             'CPANPLUS' => '0.89_03',
4129             'CPANPLUS::Internals' => '0.89_03',
4130             'CPANPLUS::Shell::Default'=> '0.89_03',
4131             'Carp' => '1.13',
4132             'Carp::Heavy' => '1.13',
4133             'ExtUtils::CBuilder' => '0.260301',
4134             'ExtUtils::CBuilder::Base'=> '0.260301',
4135             'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
4136             'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
4137             'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
4138             'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
4139             'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
4140             'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
4141             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
4142             'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
4143             'ExtUtils::Install' => '1.55',
4144             'ExtUtils::Manifest' => '1.57',
4145             'ExtUtils::Packlist' => '1.44',
4146             'ExtUtils::ParseXS' => '2.21',
4147             'File::Glob' => '1.07',
4148             'File::Path' => '2.08',
4149             'IO' => '1.25_02',
4150             'Module::CoreList' => '2.21',
4151             'OS2::DLL' => '1.04',
4152             'OS2::Process' => '1.04',
4153             'Object::Accessor' => '0.36',
4154             'Opcode' => '1.15',
4155             'POSIX' => '1.18',
4156             'Parse::CPAN::Meta' => '1.40',
4157             'PerlIO::via' => '0.09',
4158             'Pod::Simple' => '3.08',
4159             'Socket' => '1.85',
4160             'Storable' => '2.22',
4161             'Switch' => '2.15',
4162             'Test::Builder' => '0.94',
4163             'Test::Builder::Module' => '0.94',
4164             'Test::More' => '0.94',
4165             'Test::Simple' => '0.94',
4166             'XS::APItest' => '0.16',
4167             'mro' => '1.02',
4168             'overload' => '1.09',
4169             'threads::shared' => '1.32',
4170             },
4171             removed => {
4172             }
4173             },
4174             5.011002 => {
4175             delta_from => 5.011001,
4176             changed => {
4177             'B::Concise' => '0.78',
4178             'B::Deparse' => '0.93',
4179             'CPANPLUS' => '0.89_09',
4180             'CPANPLUS::Dist::Build' => '0.44',
4181             'CPANPLUS::Dist::Build::Constants'=> '0.44',
4182             'CPANPLUS::Internals' => '0.89_09',
4183             'CPANPLUS::Shell::Default'=> '0.89_09',
4184             'Carp' => '1.14',
4185             'Carp::Heavy' => '1.14',
4186             'Compress::Zlib' => '2.022',
4187             'DBM_Filter' => '0.03',
4188             'Encode' => '2.38',
4189             'Encode::Byte' => '2.04',
4190             'Encode::CN' => '2.03',
4191             'Encode::JP' => '2.04',
4192             'Encode::KR' => '2.03',
4193             'Encode::TW' => '2.03',
4194             'Encode::Unicode' => '2.07',
4195             'Env' => '1.01',
4196             'Exporter' => '5.64_01',
4197             'Exporter::Heavy' => '5.64_01',
4198             'ExtUtils::CBuilder' => '0.27',
4199             'ExtUtils::CBuilder::Base'=> '0.27',
4200             'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4201             'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4202             'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4203             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4204             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4205             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4206             'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4207             'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4208             'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4209             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4210             'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4211             'File::Fetch' => '0.22',
4212             'I18N::LangTags::Detect'=> '1.04',
4213             'I18N::Langinfo' => '0.03',
4214             'IO::Compress::Adapter::Bzip2'=> '2.022',
4215             'IO::Compress::Adapter::Deflate'=> '2.022',
4216             'IO::Compress::Adapter::Identity'=> '2.022',
4217             'IO::Compress::Base' => '2.022',
4218             'IO::Compress::Base::Common'=> '2.022',
4219             'IO::Compress::Bzip2' => '2.022',
4220             'IO::Compress::Deflate' => '2.022',
4221             'IO::Compress::Gzip' => '2.022',
4222             'IO::Compress::Gzip::Constants'=> '2.022',
4223             'IO::Compress::RawDeflate'=> '2.022',
4224             'IO::Compress::Zip' => '2.022',
4225             'IO::Compress::Zip::Constants'=> '2.022',
4226             'IO::Compress::Zlib::Constants'=> '2.022',
4227             'IO::Compress::Zlib::Extra'=> '2.022',
4228             'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4229             'IO::Uncompress::Adapter::Identity'=> '2.022',
4230             'IO::Uncompress::Adapter::Inflate'=> '2.022',
4231             'IO::Uncompress::AnyInflate'=> '2.022',
4232             'IO::Uncompress::AnyUncompress'=> '2.022',
4233             'IO::Uncompress::Base' => '2.022',
4234             'IO::Uncompress::Bunzip2'=> '2.022',
4235             'IO::Uncompress::Gunzip'=> '2.022',
4236             'IO::Uncompress::Inflate'=> '2.022',
4237             'IO::Uncompress::RawInflate'=> '2.022',
4238             'IO::Uncompress::Unzip' => '2.022',
4239             'IPC::Cmd' => '0.54',
4240             'List::Util' => '1.22',
4241             'List::Util::PP' => '1.22',
4242             'List::Util::XS' => '1.22',
4243             'Locale::Maketext' => '1.14',
4244             'Module::Build' => '0.35_09',
4245             'Module::Build::Base' => '0.35_09',
4246             'Module::Build::Compat' => '0.35_09',
4247             'Module::Build::Config' => '0.35_09',
4248             'Module::Build::Cookbook'=> '0.35_09',
4249             'Module::Build::Dumper' => '0.35_09',
4250             'Module::Build::ModuleInfo'=> '0.35_09',
4251             'Module::Build::Notes' => '0.35_09',
4252             'Module::Build::PPMMaker'=> '0.35_09',
4253             'Module::Build::Platform::Amiga'=> '0.35_09',
4254             'Module::Build::Platform::Default'=> '0.35_09',
4255             'Module::Build::Platform::EBCDIC'=> '0.35_09',
4256             'Module::Build::Platform::MPEiX'=> '0.35_09',
4257             'Module::Build::Platform::MacOS'=> '0.35_09',
4258             'Module::Build::Platform::RiscOS'=> '0.35_09',
4259             'Module::Build::Platform::Unix'=> '0.35_09',
4260             'Module::Build::Platform::VMS'=> '0.35_09',
4261             'Module::Build::Platform::VOS'=> '0.35_09',
4262             'Module::Build::Platform::Windows'=> '0.35_09',
4263             'Module::Build::Platform::aix'=> '0.35_09',
4264             'Module::Build::Platform::cygwin'=> '0.35_09',
4265             'Module::Build::Platform::darwin'=> '0.35_09',
4266             'Module::Build::Platform::os2'=> '0.35_09',
4267             'Module::Build::PodParser'=> '0.35_09',
4268             'Module::Build::YAML' => '1.40',
4269             'Module::CoreList' => '2.23',
4270             'Module::Load::Conditional'=> '0.34',
4271             'Pod::Simple' => '3.10',
4272             'Pod::Simple::XHTML' => '3.10',
4273             'Scalar::Util' => '1.22',
4274             'Scalar::Util::PP' => '1.22',
4275             'Switch' => '2.16',
4276             'XS::APItest' => '0.17',
4277             'XS::APItest::KeywordRPN'=> '0.003',
4278             'base' => '2.15',
4279             'diagnostics' => '1.18',
4280             'fields' => '2.15',
4281             'inc::latest' => '0.35_09',
4282             'legacy' => '1.00',
4283             'overload' => '1.10',
4284             },
4285             removed => {
4286             }
4287             },
4288             5.011003 => {
4289             delta_from => 5.011002,
4290             changed => {
4291             'App::Cpan' => '1.570001',
4292             'Archive::Extract' => '0.36',
4293             'CPAN' => '1.94_5301',
4294             'CPAN::FTP' => '5.5004',
4295             'CPAN::FirstTime' => '5.530001',
4296             'CPAN::Mirrors' => '1.770001',
4297             'CPANPLUS' => '0.90',
4298             'CPANPLUS::Internals' => '0.90',
4299             'CPANPLUS::Shell::Default'=> '0.90',
4300             'Cwd' => '3.31',
4301             'Encode' => '2.39',
4302             'ExtUtils::Command::MM' => '6.56',
4303             'ExtUtils::Liblist' => '6.56',
4304             'ExtUtils::Liblist::Kid'=> '6.56',
4305             'ExtUtils::MM' => '6.56',
4306             'ExtUtils::MM_AIX' => '6.56',
4307             'ExtUtils::MM_Any' => '6.56',
4308             'ExtUtils::MM_BeOS' => '6.56',
4309             'ExtUtils::MM_Cygwin' => '6.56',
4310             'ExtUtils::MM_DOS' => '6.56',
4311             'ExtUtils::MM_Darwin' => '6.56',
4312             'ExtUtils::MM_MacOS' => '6.56',
4313             'ExtUtils::MM_NW5' => '6.56',
4314             'ExtUtils::MM_OS2' => '6.56',
4315             'ExtUtils::MM_QNX' => '6.56',
4316             'ExtUtils::MM_UWIN' => '6.56',
4317             'ExtUtils::MM_Unix' => '6.56',
4318             'ExtUtils::MM_VMS' => '6.56',
4319             'ExtUtils::MM_VOS' => '6.56',
4320             'ExtUtils::MM_Win32' => '6.56',
4321             'ExtUtils::MM_Win95' => '6.56',
4322             'ExtUtils::MY' => '6.56',
4323             'ExtUtils::MakeMaker' => '6.56',
4324             'ExtUtils::MakeMaker::Config'=> '6.56',
4325             'ExtUtils::Mkbootstrap' => '6.56',
4326             'ExtUtils::Mksymlists' => '6.56',
4327             'ExtUtils::testlib' => '6.56',
4328             'File::Find' => '1.15',
4329             'File::Path' => '2.08_01',
4330             'File::Spec' => '3.31',
4331             'Module::Build' => '0.36',
4332             'Module::Build::Base' => '0.36',
4333             'Module::Build::Compat' => '0.36',
4334             'Module::Build::Config' => '0.36',
4335             'Module::Build::Cookbook'=> '0.36',
4336             'Module::Build::Dumper' => '0.36',
4337             'Module::Build::ModuleInfo'=> '0.36',
4338             'Module::Build::Notes' => '0.36',
4339             'Module::Build::PPMMaker'=> '0.36',
4340             'Module::Build::Platform::Amiga'=> '0.36',
4341             'Module::Build::Platform::Default'=> '0.36',
4342             'Module::Build::Platform::EBCDIC'=> '0.36',
4343             'Module::Build::Platform::MPEiX'=> '0.36',
4344             'Module::Build::Platform::MacOS'=> '0.36',
4345             'Module::Build::Platform::RiscOS'=> '0.36',
4346             'Module::Build::Platform::Unix'=> '0.36',
4347             'Module::Build::Platform::VMS'=> '0.36',
4348             'Module::Build::Platform::VOS'=> '0.36',
4349             'Module::Build::Platform::Windows'=> '0.36',
4350             'Module::Build::Platform::aix'=> '0.36',
4351             'Module::Build::Platform::cygwin'=> '0.36',
4352             'Module::Build::Platform::darwin'=> '0.36',
4353             'Module::Build::Platform::os2'=> '0.36',
4354             'Module::Build::PodParser'=> '0.36',
4355             'Module::CoreList' => '2.24',
4356             'POSIX' => '1.19',
4357             'Pod::Simple' => '3.13',
4358             'Pod::Simple::BlackBox' => '3.13',
4359             'Pod::Simple::Checker' => '3.13',
4360             'Pod::Simple::Debug' => '3.13',
4361             'Pod::Simple::DumpAsText'=> '3.13',
4362             'Pod::Simple::DumpAsXML'=> '3.13',
4363             'Pod::Simple::HTML' => '3.13',
4364             'Pod::Simple::HTMLBatch'=> '3.13',
4365             'Pod::Simple::LinkSection'=> '3.13',
4366             'Pod::Simple::Methody' => '3.13',
4367             'Pod::Simple::Progress' => '3.13',
4368             'Pod::Simple::PullParser'=> '3.13',
4369             'Pod::Simple::PullParserEndToken'=> '3.13',
4370             'Pod::Simple::PullParserStartToken'=> '3.13',
4371             'Pod::Simple::PullParserTextToken'=> '3.13',
4372             'Pod::Simple::PullParserToken'=> '3.13',
4373             'Pod::Simple::RTF' => '3.13',
4374             'Pod::Simple::Search' => '3.13',
4375             'Pod::Simple::SimpleTree'=> '3.13',
4376             'Pod::Simple::Text' => '3.13',
4377             'Pod::Simple::TextContent'=> '3.13',
4378             'Pod::Simple::TiedOutFH'=> '3.13',
4379             'Pod::Simple::Transcode'=> '3.13',
4380             'Pod::Simple::TranscodeDumb'=> '3.13',
4381             'Pod::Simple::TranscodeSmart'=> '3.13',
4382             'Pod::Simple::XHTML' => '3.13',
4383             'Pod::Simple::XMLOutStream'=> '3.13',
4384             'Safe' => '2.20',
4385             'Unicode' => '5.2.0',
4386             'constant' => '1.20',
4387             'diagnostics' => '1.19',
4388             'feature' => '1.14',
4389             'inc::latest' => '0.36',
4390             'threads' => '1.75',
4391             'warnings' => '1.08',
4392             },
4393             removed => {
4394             'legacy' => 1,
4395             }
4396             },
4397             5.011004 => {
4398             delta_from => 5.011003,
4399             changed => {
4400             'App::Cpan' => '1.5701',
4401             'Archive::Extract' => '0.38',
4402             'B::Deparse' => '0.94',
4403             'CPAN' => '1.94_54',
4404             'CPAN::FirstTime' => '5.53',
4405             'CPAN::Mirrors' => '1.77',
4406             'Carp' => '1.15',
4407             'Carp::Heavy' => '1.15',
4408             'Compress::Raw::Bzip2' => '2.024',
4409             'Compress::Raw::Zlib' => '2.024',
4410             'Compress::Zlib' => '2.024',
4411             'File::Copy' => '2.17',
4412             'File::Fetch' => '0.24',
4413             'GDBM_File' => '1.10',
4414             'IO::Compress::Adapter::Bzip2'=> '2.024',
4415             'IO::Compress::Adapter::Deflate'=> '2.024',
4416             'IO::Compress::Adapter::Identity'=> '2.024',
4417             'IO::Compress::Base' => '2.024',
4418             'IO::Compress::Base::Common'=> '2.024',
4419             'IO::Compress::Bzip2' => '2.024',
4420             'IO::Compress::Deflate' => '2.024',
4421             'IO::Compress::Gzip' => '2.024',
4422             'IO::Compress::Gzip::Constants'=> '2.024',
4423             'IO::Compress::RawDeflate'=> '2.024',
4424             'IO::Compress::Zip' => '2.024',
4425             'IO::Compress::Zip::Constants'=> '2.024',
4426             'IO::Compress::Zlib::Constants'=> '2.024',
4427             'IO::Compress::Zlib::Extra'=> '2.024',
4428             'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4429             'IO::Uncompress::Adapter::Identity'=> '2.024',
4430             'IO::Uncompress::Adapter::Inflate'=> '2.024',
4431             'IO::Uncompress::AnyInflate'=> '2.024',
4432             'IO::Uncompress::AnyUncompress'=> '2.024',
4433             'IO::Uncompress::Base' => '2.024',
4434             'IO::Uncompress::Bunzip2'=> '2.024',
4435             'IO::Uncompress::Gunzip'=> '2.024',
4436             'IO::Uncompress::Inflate'=> '2.024',
4437             'IO::Uncompress::RawInflate'=> '2.024',
4438             'IO::Uncompress::Unzip' => '2.024',
4439             'Module::Build' => '0.3603',
4440             'Module::Build::Base' => '0.3603',
4441             'Module::Build::Compat' => '0.3603',
4442             'Module::Build::Config' => '0.3603',
4443             'Module::Build::Cookbook'=> '0.3603',
4444             'Module::Build::Dumper' => '0.3603',
4445             'Module::Build::ModuleInfo'=> '0.3603',
4446             'Module::Build::Notes' => '0.3603',
4447             'Module::Build::PPMMaker'=> '0.3603',
4448             'Module::Build::Platform::Amiga'=> '0.3603',
4449             'Module::Build::Platform::Default'=> '0.3603',
4450             'Module::Build::Platform::EBCDIC'=> '0.3603',
4451             'Module::Build::Platform::MPEiX'=> '0.3603',
4452             'Module::Build::Platform::MacOS'=> '0.3603',
4453             'Module::Build::Platform::RiscOS'=> '0.3603',
4454             'Module::Build::Platform::Unix'=> '0.3603',
4455             'Module::Build::Platform::VMS'=> '0.3603',
4456             'Module::Build::Platform::VOS'=> '0.3603',
4457             'Module::Build::Platform::Windows'=> '0.3603',
4458             'Module::Build::Platform::aix'=> '0.3603',
4459             'Module::Build::Platform::cygwin'=> '0.3603',
4460             'Module::Build::Platform::darwin'=> '0.3603',
4461             'Module::Build::Platform::os2'=> '0.3603',
4462             'Module::Build::PodParser'=> '0.3603',
4463             'Module::CoreList' => '2.25',
4464             'PerlIO::encoding' => '0.12',
4465             'Safe' => '2.21',
4466             'UNIVERSAL' => '1.06',
4467             'feature' => '1.15',
4468             'inc::latest' => '0.3603',
4469             'less' => '0.03',
4470             're' => '0.11',
4471             'version' => '0.81',
4472             'warnings' => '1.09',
4473             },
4474             removed => {
4475             }
4476             },
4477             5.011005 => {
4478             delta_from => 5.011004,
4479             changed => {
4480             'B::Debug' => '1.12',
4481             'CPAN' => '1.94_56',
4482             'CPAN::Debug' => '5.5001',
4483             'CPAN::Distribution' => '1.9456',
4484             'CPAN::FirstTime' => '5.5301',
4485             'CPAN::HandleConfig' => '5.5001',
4486             'CPAN::Shell' => '5.5001',
4487             'CPAN::Tarzip' => '5.5011',
4488             'CPANPLUS::Dist::Build' => '0.46',
4489             'CPANPLUS::Dist::Build::Constants'=> '0.46',
4490             'Module::CoreList' => '2.26',
4491             'Pod::Man' => '2.23',
4492             'Pod::ParseLink' => '1.10',
4493             'Pod::Perldoc' => '3.15_02',
4494             'Pod::Plainer' => '1.02',
4495             'Pod::Text' => '3.14',
4496             'Pod::Text::Color' => '2.06',
4497             'Pod::Text::Overstrike' => '2.04',
4498             'Pod::Text::Termcap' => '2.06',
4499             'Safe' => '2.22',
4500             'Socket' => '1.86',
4501             'version' => '0.82',
4502             },
4503             removed => {
4504             }
4505             },
4506             5.012 => {
4507             delta_from => 5.011005,
4508             changed => {
4509             'B::Deparse' => '0.96',
4510             'CPAN::Distribution' => '1.9456_01',
4511             'Module::CoreList' => '2.29',
4512             'Safe' => '2.25',
4513             'Socket' => '1.87',
4514             'Tie::Scalar' => '1.02',
4515             'Time::Piece' => '1.15_01',
4516             'bytes' => '1.04',
4517             'feature' => '1.16',
4518             'utf8' => '1.08',
4519             },
4520             removed => {
4521             }
4522             },
4523             5.012001 => {
4524             delta_from => 5.012,
4525             changed => {
4526             'B::Deparse' => '0.97',
4527             'CGI' => '3.49',
4528             'CGI::Fast' => '1.08',
4529             'Carp' => '1.16',
4530             'Carp::Heavy' => '1.16',
4531             'File::Copy' => '2.18',
4532             'Module::CoreList' => '2.32',
4533             'Pod::Functions' => '1.04',
4534             'Pod::Simple' => '3.14',
4535             'Pod::Simple::BlackBox' => '3.14',
4536             'Pod::Simple::Checker' => '3.14',
4537             'Pod::Simple::Debug' => '3.14',
4538             'Pod::Simple::DumpAsText'=> '3.14',
4539             'Pod::Simple::DumpAsXML'=> '3.14',
4540             'Pod::Simple::HTML' => '3.14',
4541             'Pod::Simple::HTMLBatch'=> '3.14',
4542             'Pod::Simple::LinkSection'=> '3.14',
4543             'Pod::Simple::Methody' => '3.14',
4544             'Pod::Simple::Progress' => '3.14',
4545             'Pod::Simple::PullParser'=> '3.14',
4546             'Pod::Simple::PullParserEndToken'=> '3.14',
4547             'Pod::Simple::PullParserStartToken'=> '3.14',
4548             'Pod::Simple::PullParserTextToken'=> '3.14',
4549             'Pod::Simple::PullParserToken'=> '3.14',
4550             'Pod::Simple::RTF' => '3.14',
4551             'Pod::Simple::Search' => '3.14',
4552             'Pod::Simple::SimpleTree'=> '3.14',
4553             'Pod::Simple::Text' => '3.14',
4554             'Pod::Simple::TextContent'=> '3.14',
4555             'Pod::Simple::TiedOutFH'=> '3.14',
4556             'Pod::Simple::Transcode'=> '3.14',
4557             'Pod::Simple::TranscodeDumb'=> '3.14',
4558             'Pod::Simple::TranscodeSmart'=> '3.14',
4559             'Pod::Simple::XHTML' => '3.14',
4560             'Pod::Simple::XMLOutStream'=> '3.14',
4561             'Safe' => '2.27',
4562             },
4563             removed => {
4564             }
4565             },
4566             5.012002 => {
4567             delta_from => 5.012001,
4568             changed => {
4569             'Carp' => '1.17',
4570             'Carp::Heavy' => '1.17',
4571             'File::Spec' => '3.31_01',
4572             'Module::CoreList' => '2.38',
4573             'Module::Load::Conditional'=> '0.38',
4574             'PerlIO::scalar' => '0.08',
4575             },
4576             removed => {
4577             }
4578             },
4579             5.012003 => {
4580             delta_from => 5.012002,
4581             changed => {
4582             'B::Deparse' => '0.9701',
4583             'Module::Build::Platform::cygwin'=> '0.360301',
4584             'Module::CoreList' => '2.43',
4585             'Socket' => '1.87_01',
4586             },
4587             removed => {
4588             }
4589             },
4590             5.012004 => {
4591             delta_from => 5.012003,
4592             changed => {
4593             'Module::CoreList' => '2.50',
4594             },
4595             removed => {
4596             }
4597             },
4598             5.012005 => {
4599             delta_from => 5.012004,
4600             changed => {
4601             'B::Concise' => '0.78_01',
4602             'Encode' => '2.39_01',
4603             'File::Glob' => '1.07_01',
4604             'Module::CoreList' => '2.50_02',
4605             'Unicode::UCD' => '0.29',
4606             'charnames' => '1.07_01',
4607             },
4608             removed => {
4609             }
4610             },
4611             5.013 => {
4612             delta_from => 5.012,
4613             changed => {
4614             'CGI' => '3.49',
4615             'CGI::Fast' => '1.08',
4616             'Data::Dumper' => '2.126',
4617             'ExtUtils::MM_Unix' => '6.5601',
4618             'ExtUtils::MakeMaker' => '6.5601',
4619             'File::Copy' => '2.18',
4620             'IPC::Open3' => '1.06',
4621             'MIME::Base64' => '3.09',
4622             'MIME::QuotedPrint' => '3.09',
4623             'Module::CoreList' => '2.31',
4624             'Pod::Functions' => '1.04',
4625             'XS::APItest' => '0.18',
4626             'XS::APItest::KeywordRPN'=> '0.004',
4627             'feature' => '1.17',
4628             'threads' => '1.77_01',
4629             'threads::shared' => '1.33',
4630             },
4631             removed => {
4632             }
4633             },
4634             5.013001 => {
4635             delta_from => 5.012001,
4636             changed => {
4637             'Data::Dumper' => '2.126',
4638             'Dumpvalue' => '1.14',
4639             'Errno' => '1.12',
4640             'ExtUtils::MM_Unix' => '6.5601',
4641             'ExtUtils::MakeMaker' => '6.5601',
4642             'ExtUtils::ParseXS' => '2.2205',
4643             'File::Find' => '1.16',
4644             'IPC::Cmd' => '0.58',
4645             'IPC::Open3' => '1.06',
4646             'List::Util' => '1.23',
4647             'List::Util::PP' => '1.23',
4648             'List::Util::XS' => '1.23',
4649             'Locale::Codes' => '3.12',
4650             'Locale::Codes::Country'=> '3.12',
4651             'Locale::Codes::Currency'=> '3.12',
4652             'Locale::Codes::Language'=> '3.12',
4653             'Locale::Codes::Script' => '3.12',
4654             'Locale::Constants' => '3.12',
4655             'Locale::Country' => '3.12',
4656             'Locale::Currency' => '3.12',
4657             'Locale::Language' => '3.12',
4658             'Locale::Script' => '3.12',
4659             'MIME::Base64' => '3.09',
4660             'MIME::QuotedPrint' => '3.09',
4661             'Module::Build::Platform::cygwin'=> '0.360301',
4662             'Module::CoreList' => '2.34',
4663             'Module::Load::Conditional'=> '0.38',
4664             'PerlIO::scalar' => '0.08',
4665             'Scalar::Util' => '1.23',
4666             'Scalar::Util::PP' => '1.23',
4667             'Socket' => '1.88',
4668             'Term::ReadLine' => '1.06',
4669             'Unicode::UCD' => '0.28',
4670             'XS::APItest' => '0.19',
4671             'XS::APItest::KeywordRPN'=> '0.004',
4672             'charnames' => '1.08',
4673             'feature' => '1.17',
4674             'threads' => '1.77_01',
4675             'threads::shared' => '1.33',
4676             },
4677             removed => {
4678             'Class::ISA' => 1,
4679             'Pod::Plainer' => 1,
4680             'Switch' => 1,
4681             }
4682             },
4683             5.013002 => {
4684             delta_from => 5.013001,
4685             changed => {
4686             'B::Concise' => '0.79',
4687             'B::Deparse' => '0.98',
4688             'CPAN' => '1.94_57',
4689             'CPAN::Distribution' => '1.9600',
4690             'Exporter' => '5.64_02',
4691             'Exporter::Heavy' => '5.64_02',
4692             'File::Copy' => '2.19',
4693             'Hash::Util' => '0.08',
4694             'IO::Socket' => '1.32',
4695             'Locale::Codes' => '3.13',
4696             'Locale::Codes::Country'=> '3.13',
4697             'Locale::Codes::Currency'=> '3.13',
4698             'Locale::Codes::Language'=> '3.13',
4699             'Locale::Codes::Script' => '3.13',
4700             'Locale::Constants' => '3.13',
4701             'Locale::Country' => '3.13',
4702             'Locale::Currency' => '3.13',
4703             'Locale::Language' => '3.13',
4704             'Locale::Script' => '3.13',
4705             'Search::Dict' => '1.03',
4706             'Socket' => '1.89',
4707             'Thread::Semaphore' => '2.11',
4708             'UNIVERSAL' => '1.07',
4709             'VMS::DCLsym' => '1.04',
4710             'mro' => '1.03',
4711             'threads' => '1.77_02',
4712             'threads::shared' => '1.33_01',
4713             },
4714             removed => {
4715             }
4716             },
4717             5.013003 => {
4718             delta_from => 5.013002,
4719             changed => {
4720             'App::Prove' => '3.21',
4721             'App::Prove::State' => '3.21',
4722             'App::Prove::State::Result'=> '3.21',
4723             'App::Prove::State::Result::Test'=> '3.21',
4724             'Archive::Extract' => '0.42',
4725             'Archive::Tar' => '1.64',
4726             'Archive::Tar::Constant'=> '1.64',
4727             'Archive::Tar::File' => '1.64',
4728             'Attribute::Handlers' => '0.88',
4729             'CPANPLUS' => '0.9007',
4730             'CPANPLUS::Internals' => '0.9007',
4731             'CPANPLUS::Shell::Default'=> '0.9007',
4732             'Compress::Raw::Bzip2' => '2.027',
4733             'Compress::Raw::Zlib' => '2.027_01',
4734             'Compress::Zlib' => '2.027',
4735             'DB' => '1.03',
4736             'Digest::MD5' => '2.40',
4737             'Digest::SHA' => '5.48',
4738             'Exporter' => '5.64_03',
4739             'Exporter::Heavy' => '5.64_03',
4740             'ExtUtils::CBuilder' => '0.2703',
4741             'ExtUtils::CBuilder::Base'=> '0.2703_01',
4742             'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4743             'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4744             'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4745             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4746             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4747             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4748             'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4749             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4750             'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4751             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4752             'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4753             'ExtUtils::Manifest' => '1.58',
4754             'ExtUtils::ParseXS' => '2.2206',
4755             'Fatal' => '2.10',
4756             'File::Basename' => '2.79',
4757             'File::Copy' => '2.20',
4758             'File::DosGlob' => '1.02',
4759             'File::Find' => '1.17',
4760             'File::Glob' => '1.08',
4761             'File::stat' => '1.03',
4762             'I18N::LangTags' => '0.35_01',
4763             'I18N::LangTags::List' => '0.35_01',
4764             'IO::Compress::Adapter::Bzip2'=> '2.027',
4765             'IO::Compress::Adapter::Deflate'=> '2.027',
4766             'IO::Compress::Adapter::Identity'=> '2.027',
4767             'IO::Compress::Base' => '2.027',
4768             'IO::Compress::Base::Common'=> '2.027',
4769             'IO::Compress::Bzip2' => '2.027',
4770             'IO::Compress::Deflate' => '2.027',
4771             'IO::Compress::Gzip' => '2.027',
4772             'IO::Compress::Gzip::Constants'=> '2.027',
4773             'IO::Compress::RawDeflate'=> '2.027',
4774             'IO::Compress::Zip' => '2.027',
4775             'IO::Compress::Zip::Constants'=> '2.027',
4776             'IO::Compress::Zlib::Constants'=> '2.027',
4777             'IO::Compress::Zlib::Extra'=> '2.027',
4778             'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4779             'IO::Uncompress::Adapter::Identity'=> '2.027',
4780             'IO::Uncompress::Adapter::Inflate'=> '2.027',
4781             'IO::Uncompress::AnyInflate'=> '2.027',
4782             'IO::Uncompress::AnyUncompress'=> '2.027',
4783             'IO::Uncompress::Base' => '2.027',
4784             'IO::Uncompress::Bunzip2'=> '2.027',
4785             'IO::Uncompress::Gunzip'=> '2.027',
4786             'IO::Uncompress::Inflate'=> '2.027',
4787             'IO::Uncompress::RawInflate'=> '2.027',
4788             'IO::Uncompress::Unzip' => '2.027',
4789             'IPC::Cmd' => '0.60',
4790             'IPC::Msg' => '2.03',
4791             'IPC::Semaphore' => '2.03',
4792             'IPC::SharedMem' => '2.03',
4793             'IPC::SysV' => '2.03',
4794             'Locale::Maketext' => '1.15',
4795             'Locale::Maketext::Guts'=> undef,
4796             'Locale::Maketext::GutsLoader'=> undef,
4797             'Module::Build' => '0.3607',
4798             'Module::Build::Base' => '0.3607',
4799             'Module::Build::Compat' => '0.3607',
4800             'Module::Build::Config' => '0.3607',
4801             'Module::Build::Cookbook'=> '0.3607',
4802             'Module::Build::Dumper' => '0.3607',
4803             'Module::Build::ModuleInfo'=> '0.3607',
4804             'Module::Build::Notes' => '0.3607',
4805             'Module::Build::PPMMaker'=> '0.3607',
4806             'Module::Build::Platform::Amiga'=> '0.3607',
4807             'Module::Build::Platform::Default'=> '0.3607',
4808             'Module::Build::Platform::EBCDIC'=> '0.3607',
4809             'Module::Build::Platform::MPEiX'=> '0.3607',
4810             'Module::Build::Platform::MacOS'=> '0.3607',
4811             'Module::Build::Platform::RiscOS'=> '0.3607',
4812             'Module::Build::Platform::Unix'=> '0.3607',
4813             'Module::Build::Platform::VMS'=> '0.3607',
4814             'Module::Build::Platform::VOS'=> '0.3607',
4815             'Module::Build::Platform::Windows'=> '0.3607',
4816             'Module::Build::Platform::aix'=> '0.3607',
4817             'Module::Build::Platform::cygwin'=> '0.3607',
4818             'Module::Build::Platform::darwin'=> '0.3607',
4819             'Module::Build::Platform::os2'=> '0.3607',
4820             'Module::Build::PodParser'=> '0.3607',
4821             'Module::CoreList' => '2.36',
4822             'Module::Load' => '0.18',
4823             'TAP::Base' => '3.21',
4824             'TAP::Formatter::Base' => '3.21',
4825             'TAP::Formatter::Color' => '3.21',
4826             'TAP::Formatter::Console'=> '3.21',
4827             'TAP::Formatter::Console::ParallelSession'=> '3.21',
4828             'TAP::Formatter::Console::Session'=> '3.21',
4829             'TAP::Formatter::File' => '3.21',
4830             'TAP::Formatter::File::Session'=> '3.21',
4831             'TAP::Formatter::Session'=> '3.21',
4832             'TAP::Harness' => '3.21',
4833             'TAP::Object' => '3.21',
4834             'TAP::Parser' => '3.21',
4835             'TAP::Parser::Aggregator'=> '3.21',
4836             'TAP::Parser::Grammar' => '3.21',
4837             'TAP::Parser::Iterator' => '3.21',
4838             'TAP::Parser::Iterator::Array'=> '3.21',
4839             'TAP::Parser::Iterator::Process'=> '3.21',
4840             'TAP::Parser::Iterator::Stream'=> '3.21',
4841             'TAP::Parser::IteratorFactory'=> '3.21',
4842             'TAP::Parser::Multiplexer'=> '3.21',
4843             'TAP::Parser::Result' => '3.21',
4844             'TAP::Parser::Result::Bailout'=> '3.21',
4845             'TAP::Parser::Result::Comment'=> '3.21',
4846             'TAP::Parser::Result::Plan'=> '3.21',
4847             'TAP::Parser::Result::Pragma'=> '3.21',
4848             'TAP::Parser::Result::Test'=> '3.21',
4849             'TAP::Parser::Result::Unknown'=> '3.21',
4850             'TAP::Parser::Result::Version'=> '3.21',
4851             'TAP::Parser::Result::YAML'=> '3.21',
4852             'TAP::Parser::ResultFactory'=> '3.21',
4853             'TAP::Parser::Scheduler'=> '3.21',
4854             'TAP::Parser::Scheduler::Job'=> '3.21',
4855             'TAP::Parser::Scheduler::Spinner'=> '3.21',
4856             'TAP::Parser::Source' => '3.21',
4857             'TAP::Parser::SourceHandler'=> '3.21',
4858             'TAP::Parser::SourceHandler::Executable'=> '3.21',
4859             'TAP::Parser::SourceHandler::File'=> '3.21',
4860             'TAP::Parser::SourceHandler::Handle'=> '3.21',
4861             'TAP::Parser::SourceHandler::Perl'=> '3.21',
4862             'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4863             'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4864             'TAP::Parser::Utils' => '3.21',
4865             'TAP::Parser::YAMLish::Reader'=> '3.21',
4866             'TAP::Parser::YAMLish::Writer'=> '3.21',
4867             'Term::ANSIColor' => '3.00',
4868             'Term::ReadLine' => '1.07',
4869             'Test::Harness' => '3.21',
4870             'Tie::Array' => '1.04',
4871             'Time::HiRes' => '1.9721',
4872             'Time::Piece' => '1.20_01',
4873             'Unicode::Collate' => '0.53',
4874             'Unicode::Normalize' => '1.06',
4875             'Unicode::UCD' => '0.29',
4876             'autodie' => '2.10',
4877             'autodie::exception' => '2.10',
4878             'autodie::exception::system'=> '2.10',
4879             'autodie::hints' => '2.10',
4880             'blib' => '1.05',
4881             'charnames' => '1.11',
4882             'diagnostics' => '1.20',
4883             'inc::latest' => '0.3607',
4884             'lib' => '0.63',
4885             're' => '0.12',
4886             'threads' => '1.77_03',
4887             'threads::shared' => '1.33_02',
4888             'vars' => '1.02',
4889             'warnings' => '1.10',
4890             },
4891             removed => {
4892             'TAP::Parser::Source::Perl'=> 1,
4893             }
4894             },
4895             5.013004 => {
4896             delta_from => 5.013003,
4897             changed => {
4898             'App::Prove' => '3.22',
4899             'App::Prove::State' => '3.22',
4900             'App::Prove::State::Result'=> '3.22',
4901             'App::Prove::State::Result::Test'=> '3.22',
4902             'Archive::Tar' => '1.68',
4903             'Archive::Tar::Constant'=> '1.68',
4904             'Archive::Tar::File' => '1.68',
4905             'B::Lint' => '1.12',
4906             'B::Lint::Debug' => '1.12',
4907             'Carp' => '1.18',
4908             'Carp::Heavy' => '1.18',
4909             'Compress::Raw::Bzip2' => '2.030',
4910             'Compress::Raw::Zlib' => '2.030',
4911             'Compress::Zlib' => '2.030',
4912             'ExtUtils::ParseXS' => '2.2207',
4913             'File::Spec' => '3.31_01',
4914             'I18N::Langinfo' => '0.04',
4915             'IO::Compress::Adapter::Bzip2'=> '2.030',
4916             'IO::Compress::Adapter::Deflate'=> '2.030',
4917             'IO::Compress::Adapter::Identity'=> '2.030',
4918             'IO::Compress::Base' => '2.030',
4919             'IO::Compress::Base::Common'=> '2.030',
4920             'IO::Compress::Bzip2' => '2.030',
4921             'IO::Compress::Deflate' => '2.030',
4922             'IO::Compress::Gzip' => '2.030',
4923             'IO::Compress::Gzip::Constants'=> '2.030',
4924             'IO::Compress::RawDeflate'=> '2.030',
4925             'IO::Compress::Zip' => '2.030',
4926             'IO::Compress::Zip::Constants'=> '2.030',
4927             'IO::Compress::Zlib::Constants'=> '2.030',
4928             'IO::Compress::Zlib::Extra'=> '2.030',
4929             'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4930             'IO::Uncompress::Adapter::Identity'=> '2.030',
4931             'IO::Uncompress::Adapter::Inflate'=> '2.030',
4932             'IO::Uncompress::AnyInflate'=> '2.030',
4933             'IO::Uncompress::AnyUncompress'=> '2.030',
4934             'IO::Uncompress::Base' => '2.030',
4935             'IO::Uncompress::Bunzip2'=> '2.030',
4936             'IO::Uncompress::Gunzip'=> '2.030',
4937             'IO::Uncompress::Inflate'=> '2.030',
4938             'IO::Uncompress::RawInflate'=> '2.030',
4939             'IO::Uncompress::Unzip' => '2.030',
4940             'Module::CoreList' => '2.37',
4941             'TAP::Base' => '3.22',
4942             'TAP::Formatter::Base' => '3.22',
4943             'TAP::Formatter::Color' => '3.22',
4944             'TAP::Formatter::Console'=> '3.22',
4945             'TAP::Formatter::Console::ParallelSession'=> '3.22',
4946             'TAP::Formatter::Console::Session'=> '3.22',
4947             'TAP::Formatter::File' => '3.22',
4948             'TAP::Formatter::File::Session'=> '3.22',
4949             'TAP::Formatter::Session'=> '3.22',
4950             'TAP::Harness' => '3.22',
4951             'TAP::Object' => '3.22',
4952             'TAP::Parser' => '3.22',
4953             'TAP::Parser::Aggregator'=> '3.22',
4954             'TAP::Parser::Grammar' => '3.22',
4955             'TAP::Parser::Iterator' => '3.22',
4956             'TAP::Parser::Iterator::Array'=> '3.22',
4957             'TAP::Parser::Iterator::Process'=> '3.22',
4958             'TAP::Parser::Iterator::Stream'=> '3.22',
4959             'TAP::Parser::IteratorFactory'=> '3.22',
4960             'TAP::Parser::Multiplexer'=> '3.22',
4961             'TAP::Parser::Result' => '3.22',
4962             'TAP::Parser::Result::Bailout'=> '3.22',
4963             'TAP::Parser::Result::Comment'=> '3.22',
4964             'TAP::Parser::Result::Plan'=> '3.22',
4965             'TAP::Parser::Result::Pragma'=> '3.22',
4966             'TAP::Parser::Result::Test'=> '3.22',
4967             'TAP::Parser::Result::Unknown'=> '3.22',
4968             'TAP::Parser::Result::Version'=> '3.22',
4969             'TAP::Parser::Result::YAML'=> '3.22',
4970             'TAP::Parser::ResultFactory'=> '3.22',
4971             'TAP::Parser::Scheduler'=> '3.22',
4972             'TAP::Parser::Scheduler::Job'=> '3.22',
4973             'TAP::Parser::Scheduler::Spinner'=> '3.22',
4974             'TAP::Parser::Source' => '3.22',
4975             'TAP::Parser::SourceHandler'=> '3.22',
4976             'TAP::Parser::SourceHandler::Executable'=> '3.22',
4977             'TAP::Parser::SourceHandler::File'=> '3.22',
4978             'TAP::Parser::SourceHandler::Handle'=> '3.22',
4979             'TAP::Parser::SourceHandler::Perl'=> '3.22',
4980             'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4981             'TAP::Parser::Utils' => '3.22',
4982             'TAP::Parser::YAMLish::Reader'=> '3.22',
4983             'TAP::Parser::YAMLish::Writer'=> '3.22',
4984             'Test::Builder' => '0.96',
4985             'Test::Builder::Module' => '0.96',
4986             'Test::Builder::Tester' => '1.20',
4987             'Test::Builder::Tester::Color'=> '1.20',
4988             'Test::Harness' => '3.22',
4989             'Test::More' => '0.96',
4990             'Test::Simple' => '0.96',
4991             'Unicode::Collate' => '0.56',
4992             'Unicode::Collate::Locale'=> '0.56',
4993             'XS::APItest' => '0.20',
4994             'charnames' => '1.15',
4995             'feature' => '1.18',
4996             },
4997             removed => {
4998             'TAP::Parser::SourceHandler::pgTAP'=> 1,
4999             }
5000             },
5001             5.013005 => {
5002             delta_from => 5.013004,
5003             changed => {
5004             'B::Debug' => '1.16',
5005             'CPANPLUS::Dist::Build' => '0.48',
5006             'CPANPLUS::Dist::Build::Constants'=> '0.48',
5007             'Data::Dumper' => '2.128',
5008             'Encode' => '2.40',
5009             'Encode::Guess' => '2.04',
5010             'Encode::MIME::Header' => '2.12',
5011             'Encode::Unicode::UTF7' => '2.05',
5012             'Errno' => '1.13',
5013             'ExtUtils::Command::MM' => '6.57_05',
5014             'ExtUtils::Liblist' => '6.57_05',
5015             'ExtUtils::Liblist::Kid'=> '6.5705',
5016             'ExtUtils::MM' => '6.57_05',
5017             'ExtUtils::MM_AIX' => '6.57_05',
5018             'ExtUtils::MM_Any' => '6.57_05',
5019             'ExtUtils::MM_BeOS' => '6.57_05',
5020             'ExtUtils::MM_Cygwin' => '6.57_05',
5021             'ExtUtils::MM_DOS' => '6.5705',
5022             'ExtUtils::MM_Darwin' => '6.57_05',
5023             'ExtUtils::MM_MacOS' => '6.5705',
5024             'ExtUtils::MM_NW5' => '6.57_05',
5025             'ExtUtils::MM_OS2' => '6.57_05',
5026             'ExtUtils::MM_QNX' => '6.57_05',
5027             'ExtUtils::MM_UWIN' => '6.5705',
5028             'ExtUtils::MM_Unix' => '6.57_05',
5029             'ExtUtils::MM_VMS' => '6.57_05',
5030             'ExtUtils::MM_VOS' => '6.57_05',
5031             'ExtUtils::MM_Win32' => '6.57_05',
5032             'ExtUtils::MM_Win95' => '6.57_05',
5033             'ExtUtils::MY' => '6.5705',
5034             'ExtUtils::MakeMaker' => '6.57_05',
5035             'ExtUtils::MakeMaker::Config'=> '6.57_05',
5036             'ExtUtils::MakeMaker::YAML'=> '1.44',
5037             'ExtUtils::Mkbootstrap' => '6.57_05',
5038             'ExtUtils::Mksymlists' => '6.57_05',
5039             'ExtUtils::testlib' => '6.5705',
5040             'Filter::Simple' => '0.85',
5041             'Hash::Util' => '0.09',
5042             'Math::BigFloat' => '1.62',
5043             'Math::BigInt' => '1.95',
5044             'Math::BigInt::Calc' => '0.54',
5045             'Math::BigInt::CalcEmu' => '0.06',
5046             'Math::BigInt::FastCalc'=> '0.22',
5047             'Math::BigRat' => '0.26',
5048             'Module::CoreList' => '2.39',
5049             'POSIX' => '1.20',
5050             'PerlIO::scalar' => '0.09',
5051             'Safe' => '2.28',
5052             'Test::Builder' => '0.97_01',
5053             'Test::Builder::Module' => '0.97_01',
5054             'Test::Builder::Tester' => '1.21_01',
5055             'Test::Builder::Tester::Color'=> '1.21_01',
5056             'Test::More' => '0.97_01',
5057             'Test::Simple' => '0.97_01',
5058             'Tie::Hash' => '1.04',
5059             'Unicode::Collate' => '0.59',
5060             'Unicode::Collate::Locale'=> '0.59',
5061             'XS::APItest' => '0.21',
5062             'XS::APItest::KeywordRPN'=> '0.005',
5063             'XSLoader' => '0.11',
5064             'bigint' => '0.25',
5065             'bignum' => '0.25',
5066             'bigrat' => '0.25',
5067             'blib' => '1.06',
5068             'open' => '1.08',
5069             'threads::shared' => '1.33_03',
5070             'warnings' => '1.11',
5071             'warnings::register' => '1.02',
5072             },
5073             removed => {
5074             }
5075             },
5076             5.013006 => {
5077             delta_from => 5.013005,
5078             changed => {
5079             'Archive::Extract' => '0.44',
5080             'B' => '1.24',
5081             'B::Deparse' => '0.99',
5082             'CPAN' => '1.94_61',
5083             'CPAN::FTP' => '5.5005',
5084             'CPAN::Queue' => '5.5001',
5085             'CPAN::Version' => '5.5001',
5086             'Carp' => '1.19',
5087             'Carp::Heavy' => '1.19',
5088             'Compress::Raw::Bzip2' => '2.031',
5089             'Cwd' => '3.34',
5090             'Data::Dumper' => '2.129',
5091             'Devel::Peek' => '1.05',
5092             'Digest::MD5' => '2.51',
5093             'ExtUtils::Constant::Base'=> '0.05',
5094             'ExtUtils::Constant::ProxySubs'=> '0.07',
5095             'ExtUtils::Embed' => '1.29',
5096             'ExtUtils::XSSymSet' => '1.2',
5097             'Fcntl' => '1.09',
5098             'File::DosGlob' => '1.03',
5099             'File::Find' => '1.18',
5100             'File::Glob' => '1.09',
5101             'File::Spec' => '3.33',
5102             'File::Spec::Cygwin' => '3.33',
5103             'File::Spec::Epoc' => '3.33',
5104             'File::Spec::Functions' => '3.33',
5105             'File::Spec::Mac' => '3.33',
5106             'File::Spec::OS2' => '3.33',
5107             'File::Spec::Unix' => '3.33',
5108             'File::Spec::VMS' => '3.33',
5109             'File::Spec::Win32' => '3.33',
5110             'GDBM_File' => '1.11',
5111             'Hash::Util::FieldHash' => '1.05',
5112             'I18N::Langinfo' => '0.06',
5113             'IPC::Cmd' => '0.64',
5114             'IPC::Open3' => '1.07',
5115             'Locale::Codes' => '3.14',
5116             'Locale::Codes::Country'=> '3.14',
5117             'Locale::Codes::Currency'=> '3.14',
5118             'Locale::Codes::Language'=> '3.14',
5119             'Locale::Codes::Script' => '3.14',
5120             'Locale::Constants' => '3.14',
5121             'Locale::Country' => '3.14',
5122             'Locale::Currency' => '3.14',
5123             'Locale::Language' => '3.14',
5124             'Locale::Maketext' => '1.16',
5125             'Locale::Script' => '3.14',
5126             'Math::BigFloat' => '1.63',
5127             'Math::BigInt' => '1.97',
5128             'Math::BigInt::Calc' => '0.55',
5129             'Math::BigInt::CalcEmu' => '0.07',
5130             'Module::CoreList' => '2.40',
5131             'NDBM_File' => '1.09',
5132             'NEXT' => '0.65',
5133             'ODBM_File' => '1.08',
5134             'Opcode' => '1.16',
5135             'POSIX' => '1.21',
5136             'PerlIO::encoding' => '0.13',
5137             'PerlIO::scalar' => '0.10',
5138             'PerlIO::via' => '0.10',
5139             'Pod::Man' => '2.25',
5140             'Pod::Text' => '3.15',
5141             'SDBM_File' => '1.07',
5142             'Socket' => '1.90',
5143             'Sys::Hostname' => '1.13',
5144             'Tie::Hash::NamedCapture'=> '0.07',
5145             'Unicode::Collate' => '0.63',
5146             'Unicode::Collate::Locale'=> '0.63',
5147             'Unicode::Normalize' => '1.07',
5148             'XS::APItest' => '0.23',
5149             'XSLoader' => '0.13',
5150             'attributes' => '0.13',
5151             'charnames' => '1.16',
5152             'if' => '0.06',
5153             'mro' => '1.04',
5154             'overload' => '1.11',
5155             're' => '0.13',
5156             'sigtrap' => '1.05',
5157             'threads' => '1.81_01',
5158             'threads::shared' => '1.34',
5159             },
5160             removed => {
5161             'XS::APItest::KeywordRPN'=> 1,
5162             }
5163             },
5164             5.013007 => {
5165             delta_from => 5.013006,
5166             changed => {
5167             'Archive::Extract' => '0.46',
5168             'Archive::Tar' => '1.72',
5169             'Archive::Tar::Constant'=> '1.72',
5170             'Archive::Tar::File' => '1.72',
5171             'AutoLoader' => '5.71',
5172             'B' => '1.26',
5173             'B::Concise' => '0.81',
5174             'B::Deparse' => '1.01',
5175             'CGI' => '3.50',
5176             'CPAN' => '1.94_62',
5177             'CPANPLUS' => '0.9010',
5178             'CPANPLUS::Dist::Build' => '0.50',
5179             'CPANPLUS::Dist::Build::Constants'=> '0.50',
5180             'CPANPLUS::Internals' => '0.9010',
5181             'CPANPLUS::Shell::Default'=> '0.9010',
5182             'Data::Dumper' => '2.130_01',
5183             'DynaLoader' => '1.11',
5184             'ExtUtils::Constant' => '0.23',
5185             'ExtUtils::Constant::ProxySubs'=> '0.08',
5186             'Fcntl' => '1.10',
5187             'File::Fetch' => '0.28',
5188             'File::Glob' => '1.10',
5189             'File::stat' => '1.04',
5190             'GDBM_File' => '1.12',
5191             'Hash::Util' => '0.10',
5192             'Hash::Util::FieldHash' => '1.06',
5193             'I18N::Langinfo' => '0.07',
5194             'Locale::Maketext' => '1.17',
5195             'Locale::Maketext::Guts'=> '1.17',
5196             'Locale::Maketext::GutsLoader'=> '1.17',
5197             'MIME::Base64' => '3.10',
5198             'MIME::QuotedPrint' => '3.10',
5199             'Math::BigFloat' => '1.99_01',
5200             'Math::BigInt' => '1.99_01',
5201             'Math::BigInt::Calc' => '1.99_01',
5202             'Math::BigInt::CalcEmu' => '1.99_01',
5203             'Math::BigInt::FastCalc'=> '0.24_01',
5204             'Math::BigRat' => '0.26_01',
5205             'Module::CoreList' => '2.41',
5206             'NDBM_File' => '1.10',
5207             'ODBM_File' => '1.09',
5208             'Opcode' => '1.17',
5209             'POSIX' => '1.22',
5210             'Pod::Simple' => '3.15',
5211             'Pod::Simple::BlackBox' => '3.15',
5212             'Pod::Simple::Checker' => '3.15',
5213             'Pod::Simple::Debug' => '3.15',
5214             'Pod::Simple::DumpAsText'=> '3.15',
5215             'Pod::Simple::DumpAsXML'=> '3.15',
5216             'Pod::Simple::HTML' => '3.15',
5217             'Pod::Simple::HTMLBatch'=> '3.15',
5218             'Pod::Simple::LinkSection'=> '3.15',
5219             'Pod::Simple::Methody' => '3.15',
5220             'Pod::Simple::Progress' => '3.15',
5221             'Pod::Simple::PullParser'=> '3.15',
5222             'Pod::Simple::PullParserEndToken'=> '3.15',
5223             'Pod::Simple::PullParserStartToken'=> '3.15',
5224             'Pod::Simple::PullParserTextToken'=> '3.15',
5225             'Pod::Simple::PullParserToken'=> '3.15',
5226             'Pod::Simple::RTF' => '3.15',
5227             'Pod::Simple::Search' => '3.15',
5228             'Pod::Simple::SimpleTree'=> '3.15',
5229             'Pod::Simple::Text' => '3.15',
5230             'Pod::Simple::TextContent'=> '3.15',
5231             'Pod::Simple::TiedOutFH'=> '3.15',
5232             'Pod::Simple::Transcode'=> '3.15',
5233             'Pod::Simple::TranscodeDumb'=> '3.15',
5234             'Pod::Simple::TranscodeSmart'=> '3.15',
5235             'Pod::Simple::XHTML' => '3.15',
5236             'Pod::Simple::XMLOutStream'=> '3.15',
5237             'SDBM_File' => '1.08',
5238             'Safe' => '2.29',
5239             'SelfLoader' => '1.18',
5240             'Socket' => '1.91',
5241             'Storable' => '2.24',
5242             'Sys::Hostname' => '1.14',
5243             'Unicode' => '6.0.0',
5244             'Unicode::Collate' => '0.67',
5245             'Unicode::Collate::CJK::Big5'=> '0.65',
5246             'Unicode::Collate::CJK::GB2312'=> '0.65',
5247             'Unicode::Collate::CJK::JISX0208'=> '0.64',
5248             'Unicode::Collate::CJK::Korean'=> '0.66',
5249             'Unicode::Collate::CJK::Pinyin'=> '0.65',
5250             'Unicode::Collate::CJK::Stroke'=> '0.65',
5251             'Unicode::Collate::Locale'=> '0.67',
5252             'XS::APItest' => '0.26',
5253             'XS::Typemap' => '0.04',
5254             'charnames' => '1.17',
5255             'mro' => '1.05',
5256             'parent' => '0.224',
5257             're' => '0.14',
5258             'threads' => '1.81_02',
5259             },
5260             removed => {
5261             }
5262             },
5263             5.013008 => {
5264             delta_from => 5.013007,
5265             changed => {
5266             'Archive::Tar' => '1.74',
5267             'Archive::Tar::Constant'=> '1.74',
5268             'Archive::Tar::File' => '1.74',
5269             'B' => '1.27',
5270             'B::Concise' => '0.82',
5271             'B::Deparse' => '1.02',
5272             'Carp::Heavy' => '1.17',
5273             'Cwd' => '3.35',
5274             'Data::Dumper' => '2.130_02',
5275             'Devel::Peek' => '1.06',
5276             'Devel::SelfStubber' => '1.05',
5277             'Digest::SHA' => '5.50',
5278             'Dumpvalue' => '1.15',
5279             'DynaLoader' => '1.12',
5280             'Env' => '1.02',
5281             'Exporter::Heavy' => '5.64_01',
5282             'ExtUtils::CBuilder' => '0.280201',
5283             'ExtUtils::CBuilder::Base'=> '0.280201',
5284             'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5285             'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5286             'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5287             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5288             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5289             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5290             'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5291             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5292             'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5293             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5294             'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5295             'ExtUtils::Constant::Utils'=> '0.03',
5296             'ExtUtils::Embed' => '1.30',
5297             'ExtUtils::ParseXS' => '2.2208',
5298             'Fatal' => '2.1001',
5299             'Fcntl' => '1.11',
5300             'File::CheckTree' => '4.41',
5301             'File::Glob' => '1.11',
5302             'GDBM_File' => '1.13',
5303             'Hash::Util::FieldHash' => '1.07',
5304             'I18N::Collate' => '1.02',
5305             'IO' => '1.25_03',
5306             'IPC::Cmd' => '0.66',
5307             'IPC::Open3' => '1.08',
5308             'Locale::Codes' => '3.15',
5309             'Locale::Codes::Country'=> '3.15',
5310             'Locale::Codes::Currency'=> '3.15',
5311             'Locale::Codes::Language'=> '3.15',
5312             'Locale::Codes::Script' => '3.15',
5313             'Locale::Constants' => '3.15',
5314             'Locale::Country' => '3.15',
5315             'Locale::Currency' => '3.15',
5316             'Locale::Language' => '3.15',
5317             'Locale::Script' => '3.15',
5318             'MIME::Base64' => '3.13',
5319             'MIME::QuotedPrint' => '3.13',
5320             'Math::BigFloat' => '1.99_02',
5321             'Math::BigInt' => '1.99_02',
5322             'Math::BigInt::Calc' => '1.99_02',
5323             'Math::BigInt::CalcEmu' => '1.99_02',
5324             'Memoize' => '1.02',
5325             'Memoize::AnyDBM_File' => '1.02',
5326             'Memoize::Expire' => '1.02',
5327             'Memoize::ExpireFile' => '1.02',
5328             'Memoize::ExpireTest' => '1.02',
5329             'Memoize::NDBM_File' => '1.02',
5330             'Memoize::SDBM_File' => '1.02',
5331             'Memoize::Storable' => '1.02',
5332             'Module::CoreList' => '2.43',
5333             'NDBM_File' => '1.11',
5334             'Net::Ping' => '2.37',
5335             'ODBM_File' => '1.10',
5336             'Opcode' => '1.18',
5337             'POSIX' => '1.23',
5338             'PerlIO::encoding' => '0.14',
5339             'PerlIO::scalar' => '0.11',
5340             'PerlIO::via' => '0.11',
5341             'SDBM_File' => '1.09',
5342             'Socket' => '1.92',
5343             'Storable' => '2.25',
5344             'Time::HiRes' => '1.9721_01',
5345             'Unicode::Collate' => '0.6801',
5346             'Unicode::Collate::Locale'=> '0.68',
5347             'Unicode::Normalize' => '1.08',
5348             'Unicode::UCD' => '0.30',
5349             'Win32' => '0.41',
5350             'XS::APItest' => '0.27',
5351             'autodie' => '2.1001',
5352             'autodie::exception' => '2.1001',
5353             'autodie::exception::system'=> '2.1001',
5354             'autodie::hints' => '2.1001',
5355             'feature' => '1.19',
5356             'if' => '0.0601',
5357             'mro' => '1.06',
5358             'overload' => '1.12',
5359             're' => '0.15',
5360             'threads' => '1.81_03',
5361             'threads::shared' => '1.35',
5362             'version' => '0.86',
5363             },
5364             removed => {
5365             }
5366             },
5367             5.013009 => {
5368             delta_from => 5.013008,
5369             changed => {
5370             'Archive::Extract' => '0.48',
5371             'Archive::Tar' => '1.76',
5372             'Archive::Tar::Constant'=> '1.76',
5373             'Archive::Tar::File' => '1.76',
5374             'B::Concise' => '0.83',
5375             'B::Deparse' => '1.03',
5376             'B::Lint' => '1.13',
5377             'Benchmark' => '1.12',
5378             'CGI' => '3.51',
5379             'CGI::Carp' => '3.51',
5380             'CGI::Cookie' => '1.30',
5381             'CGI::Push' => '1.05',
5382             'CGI::Util' => '3.51',
5383             'CPAN' => '1.94_63',
5384             'CPAN::HTTP::Client' => '1.94',
5385             'CPAN::HTTP::Credentials'=> '1.94',
5386             'CPAN::Meta::YAML' => '0.003',
5387             'CPANPLUS' => '0.9011',
5388             'CPANPLUS::Dist::Build' => '0.52',
5389             'CPANPLUS::Dist::Build::Constants'=> '0.52',
5390             'CPANPLUS::Internals' => '0.9011',
5391             'CPANPLUS::Shell::Default'=> '0.9011',
5392             'Carp::Heavy' => '1.19',
5393             'Compress::Raw::Bzip2' => '2.033',
5394             'Compress::Raw::Zlib' => '2.033',
5395             'Compress::Zlib' => '2.033',
5396             'Cwd' => '3.36',
5397             'DBM_Filter' => '0.04',
5398             'DB_File' => '1.821',
5399             'Devel::Peek' => '1.07',
5400             'DirHandle' => '1.04',
5401             'Dumpvalue' => '1.16',
5402             'Encode' => '2.42',
5403             'Encode::Alias' => '2.13',
5404             'Encode::MIME::Header' => '2.13',
5405             'Exporter::Heavy' => '5.64_03',
5406             'ExtUtils::Install' => '1.56',
5407             'ExtUtils::ParseXS' => '2.2209',
5408             'File::Basename' => '2.80',
5409             'File::Copy' => '2.21',
5410             'File::DosGlob' => '1.04',
5411             'File::Fetch' => '0.32',
5412             'File::Find' => '1.19',
5413             'File::Spec::Mac' => '3.34',
5414             'File::Spec::VMS' => '3.34',
5415             'File::stat' => '1.05',
5416             'HTTP::Tiny' => '0.009',
5417             'Hash::Util::FieldHash' => '1.08',
5418             'IO::Compress::Adapter::Bzip2'=> '2.033',
5419             'IO::Compress::Adapter::Deflate'=> '2.033',
5420             'IO::Compress::Adapter::Identity'=> '2.033',
5421             'IO::Compress::Base' => '2.033',
5422             'IO::Compress::Base::Common'=> '2.033',
5423             'IO::Compress::Bzip2' => '2.033',
5424             'IO::Compress::Deflate' => '2.033',
5425             'IO::Compress::Gzip' => '2.033',
5426             'IO::Compress::Gzip::Constants'=> '2.033',
5427             'IO::Compress::RawDeflate'=> '2.033',
5428             'IO::Compress::Zip' => '2.033',
5429             'IO::Compress::Zip::Constants'=> '2.033',
5430             'IO::Compress::Zlib::Constants'=> '2.033',
5431             'IO::Compress::Zlib::Extra'=> '2.033',
5432             'IO::Handle' => '1.29',
5433             'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5434             'IO::Uncompress::Adapter::Identity'=> '2.033',
5435             'IO::Uncompress::Adapter::Inflate'=> '2.033',
5436             'IO::Uncompress::AnyInflate'=> '2.033',
5437             'IO::Uncompress::AnyUncompress'=> '2.033',
5438             'IO::Uncompress::Base' => '2.033',
5439             'IO::Uncompress::Bunzip2'=> '2.033',
5440             'IO::Uncompress::Gunzip'=> '2.033',
5441             'IO::Uncompress::Inflate'=> '2.033',
5442             'IO::Uncompress::RawInflate'=> '2.033',
5443             'IO::Uncompress::Unzip' => '2.033',
5444             'IPC::Cmd' => '0.68',
5445             'IPC::Open3' => '1.09',
5446             'JSON::PP' => '2.27103',
5447             'JSON::PP::Boolean' => undef,
5448             'Locale::Maketext' => '1.18',
5449             'Log::Message' => '0.04',
5450             'Log::Message::Config' => '0.04',
5451             'Log::Message::Handlers'=> '0.04',
5452             'Log::Message::Item' => '0.04',
5453             'Log::Message::Simple' => '0.08',
5454             'Math::BigFloat' => '1.99_03',
5455             'Math::BigInt' => '1.99_03',
5456             'Math::BigInt::Calc' => '1.99_03',
5457             'Math::BigInt::FastCalc'=> '0.24_02',
5458             'Math::BigRat' => '0.26_02',
5459             'Module::CoreList' => '2.42_01',
5460             'Module::Load::Conditional'=> '0.40',
5461             'Module::Metadata' => '1.000003',
5462             'Net::Ping' => '2.38',
5463             'OS2::Process' => '1.05',
5464             'Object::Accessor' => '0.38',
5465             'POSIX' => '1.24',
5466             'Params::Check' => '0.28',
5467             'Perl::OSType' => '1.002',
5468             'Pod::LaTeX' => '0.59',
5469             'Pod::Perldoc' => '3.15_03',
5470             'Socket' => '1.93',
5471             'Storable' => '2.26',
5472             'Sys::Hostname' => '1.15',
5473             'Term::UI' => '0.24',
5474             'Thread::Queue' => '2.12',
5475             'Thread::Semaphore' => '2.12',
5476             'Time::Local' => '1.2000',
5477             'UNIVERSAL' => '1.08',
5478             'Unicode::Normalize' => '1.10',
5479             'Win32' => '0.44',
5480             'bigint' => '0.26',
5481             'bignum' => '0.26',
5482             'bigrat' => '0.26',
5483             'charnames' => '1.18',
5484             'diagnostics' => '1.21',
5485             're' => '0.16',
5486             'threads' => '1.83',
5487             'threads::shared' => '1.36',
5488             'version' => '0.88',
5489             },
5490             removed => {
5491             }
5492             },
5493             5.01301 => {
5494             delta_from => 5.013009,
5495             changed => {
5496             'Attribute::Handlers' => '0.89',
5497             'B' => '1.28',
5498             'B::Showlex' => '1.03',
5499             'CGI' => '3.52',
5500             'CPAN' => '1.94_65',
5501             'CPAN::Distribution' => '1.9601',
5502             'CPAN::FTP::netrc' => '1.01',
5503             'CPAN::FirstTime' => '5.5303',
5504             'CPAN::HandleConfig' => '5.5003',
5505             'CPAN::Meta' => '2.110440',
5506             'CPAN::Meta::Converter' => '2.110440',
5507             'CPAN::Meta::Feature' => '2.110440',
5508             'CPAN::Meta::History' => '2.110440',
5509             'CPAN::Meta::Prereqs' => '2.110440',
5510             'CPAN::Meta::Spec' => '2.110440',
5511             'CPAN::Meta::Validator' => '2.110440',
5512             'CPAN::Shell' => '5.5002',
5513             'CPANPLUS' => '0.9101',
5514             'CPANPLUS::Internals' => '0.9101',
5515             'CPANPLUS::Shell::Default'=> '0.9101',
5516             'Carp' => '1.20',
5517             'Carp::Heavy' => '1.20',
5518             'Cwd' => '3.37',
5519             'Devel::DProf' => '20110217.00',
5520             'DynaLoader' => '1.13',
5521             'ExtUtils::CBuilder' => '0.280202',
5522             'ExtUtils::CBuilder::Base'=> '0.280202',
5523             'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5524             'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5525             'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5526             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5527             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5528             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5529             'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5530             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5531             'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5532             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5533             'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5534             'File::Copy' => '2.22',
5535             'Filter::Simple' => '0.86',
5536             'HTTP::Tiny' => '0.010',
5537             'I18N::LangTags::Detect'=> '1.05',
5538             'IO::Select' => '1.18',
5539             'IPC::Cmd' => '0.70',
5540             'Locale::Maketext' => '1.19',
5541             'Math::BigFloat' => '1.992',
5542             'Math::BigInt' => '1.992',
5543             'Math::BigInt::Calc' => '1.992',
5544             'Math::BigInt::CalcEmu' => '1.992',
5545             'Module::Build' => '0.37_05',
5546             'Module::Build::Base' => '0.37_05',
5547             'Module::Build::Compat' => '0.37_05',
5548             'Module::Build::Config' => '0.37_05',
5549             'Module::Build::Cookbook'=> '0.37_05',
5550             'Module::Build::Dumper' => '0.37_05',
5551             'Module::Build::ModuleInfo'=> '0.37_05',
5552             'Module::Build::Notes' => '0.37_05',
5553             'Module::Build::PPMMaker'=> '0.37_05',
5554             'Module::Build::Platform::Amiga'=> '0.37_05',
5555             'Module::Build::Platform::Default'=> '0.37_05',
5556             'Module::Build::Platform::EBCDIC'=> '0.37_05',
5557             'Module::Build::Platform::MPEiX'=> '0.37_05',
5558             'Module::Build::Platform::MacOS'=> '0.37_05',
5559             'Module::Build::Platform::RiscOS'=> '0.37_05',
5560             'Module::Build::Platform::Unix'=> '0.37_05',
5561             'Module::Build::Platform::VMS'=> '0.37_05',
5562             'Module::Build::Platform::VOS'=> '0.37_05',
5563             'Module::Build::Platform::Windows'=> '0.37_05',
5564             'Module::Build::Platform::aix'=> '0.37_05',
5565             'Module::Build::Platform::cygwin'=> '0.37_05',
5566             'Module::Build::Platform::darwin'=> '0.37_05',
5567             'Module::Build::Platform::os2'=> '0.37_05',
5568             'Module::Build::PodParser'=> '0.37_05',
5569             'Module::Build::Version'=> '0.87',
5570             'Module::Build::YAML' => '1.41',
5571             'Module::CoreList' => '2.45',
5572             'Module::Load::Conditional'=> '0.44',
5573             'Module::Metadata' => '1.000004',
5574             'OS2::Process' => '1.06',
5575             'Parse::CPAN::Meta' => '1.4401',
5576             'Pod::Html' => '1.1',
5577             'Socket' => '1.94',
5578             'Term::UI' => '0.26',
5579             'Unicode::Collate' => '0.72',
5580             'Unicode::Collate::Locale'=> '0.71',
5581             'Unicode::UCD' => '0.31',
5582             'VMS::DCLsym' => '1.05',
5583             'Version::Requirements' => '0.101020',
5584             'bigrat' => '0.27',
5585             'deprecate' => '0.02',
5586             'diagnostics' => '1.22',
5587             'inc::latest' => '0.37_05',
5588             'overload' => '1.13',
5589             're' => '0.17',
5590             'utf8' => '1.09',
5591             'warnings' => '1.12',
5592             },
5593             removed => {
5594             }
5595             },
5596             5.013011 => {
5597             delta_from => 5.01301,
5598             changed => {
5599             'App::Prove' => '3.23',
5600             'App::Prove::State' => '3.23',
5601             'App::Prove::State::Result'=> '3.23',
5602             'App::Prove::State::Result::Test'=> '3.23',
5603             'B' => '1.29',
5604             'CPAN' => '1.9600',
5605             'CPAN::Author' => '5.5001',
5606             'CPAN::CacheMgr' => '5.5001',
5607             'CPAN::Distribution' => '1.9602',
5608             'CPAN::Exception::blocked_urllist'=> '1.001',
5609             'CPAN::HTTP::Client' => '1.9600',
5610             'CPAN::HTTP::Credentials'=> '1.9600',
5611             'CPAN::Index' => '1.9600',
5612             'CPAN::LWP::UserAgent' => '1.9600',
5613             'CPAN::Mirrors' => '1.9600',
5614             'CPAN::Module' => '5.5001',
5615             'CPANPLUS' => '0.9103',
5616             'CPANPLUS::Dist::Build' => '0.54',
5617             'CPANPLUS::Dist::Build::Constants'=> '0.54',
5618             'CPANPLUS::Internals' => '0.9103',
5619             'CPANPLUS::Shell::Default'=> '0.9103',
5620             'Cwd' => '3.36',
5621             'Devel::DProf' => '20110228.00',
5622             'Digest::SHA' => '5.61',
5623             'ExtUtils::Command' => '1.17',
5624             'File::Basename' => '2.81',
5625             'File::Copy' => '2.21',
5626             'File::Glob' => '1.12',
5627             'GDBM_File' => '1.14',
5628             'HTTP::Tiny' => '0.011',
5629             'Hash::Util' => '0.11',
5630             'Hash::Util::FieldHash' => '1.09',
5631             'I18N::Langinfo' => '0.08',
5632             'IO' => '1.25_04',
5633             'IO::Dir' => '1.08',
5634             'IO::File' => '1.15',
5635             'IO::Handle' => '1.30',
5636             'IO::Pipe' => '1.14',
5637             'IO::Poll' => '0.08',
5638             'IO::Select' => '1.20',
5639             'JSON::PP' => '2.27105',
5640             'Locale::Codes' => '3.16',
5641             'Locale::Codes::Country'=> '3.16',
5642             'Locale::Codes::Currency'=> '3.16',
5643             'Locale::Codes::Language'=> '3.16',
5644             'Locale::Codes::Script' => '3.16',
5645             'Locale::Constants' => '3.16',
5646             'Locale::Country' => '3.16',
5647             'Locale::Currency' => '3.16',
5648             'Locale::Language' => '3.16',
5649             'Locale::Script' => '3.16',
5650             'Math::BigFloat' => '1.993',
5651             'Math::BigInt' => '1.994',
5652             'Math::BigInt::Calc' => '1.993',
5653             'Math::BigInt::CalcEmu' => '1.993',
5654             'Math::BigInt::FastCalc'=> '0.28',
5655             'Module::Build' => '0.3800',
5656             'Module::Build::Base' => '0.3800',
5657             'Module::Build::Compat' => '0.3800',
5658             'Module::Build::Config' => '0.3800',
5659             'Module::Build::Cookbook'=> '0.3800',
5660             'Module::Build::Dumper' => '0.3800',
5661             'Module::Build::ModuleInfo'=> '0.3800',
5662             'Module::Build::Notes' => '0.3800',
5663             'Module::Build::PPMMaker'=> '0.3800',
5664             'Module::Build::Platform::Amiga'=> '0.3800',
5665             'Module::Build::Platform::Default'=> '0.3800',
5666             'Module::Build::Platform::EBCDIC'=> '0.3800',
5667             'Module::Build::Platform::MPEiX'=> '0.3800',
5668             'Module::Build::Platform::MacOS'=> '0.3800',
5669             'Module::Build::Platform::RiscOS'=> '0.3800',
5670             'Module::Build::Platform::Unix'=> '0.3800',
5671             'Module::Build::Platform::VMS'=> '0.3800',
5672             'Module::Build::Platform::VOS'=> '0.3800',
5673             'Module::Build::Platform::Windows'=> '0.3800',
5674             'Module::Build::Platform::aix'=> '0.3800',
5675             'Module::Build::Platform::cygwin'=> '0.3800',
5676             'Module::Build::Platform::darwin'=> '0.3800',
5677             'Module::Build::Platform::os2'=> '0.3800',
5678             'Module::Build::PodParser'=> '0.3800',
5679             'Module::CoreList' => '2.46',
5680             'NDBM_File' => '1.12',
5681             'Pod::Simple' => '3.16',
5682             'Pod::Simple::BlackBox' => '3.16',
5683             'Pod::Simple::Checker' => '3.16',
5684             'Pod::Simple::Debug' => '3.16',
5685             'Pod::Simple::DumpAsText'=> '3.16',
5686             'Pod::Simple::DumpAsXML'=> '3.16',
5687             'Pod::Simple::HTML' => '3.16',
5688             'Pod::Simple::HTMLBatch'=> '3.16',
5689             'Pod::Simple::LinkSection'=> '3.16',
5690             'Pod::Simple::Methody' => '3.16',
5691             'Pod::Simple::Progress' => '3.16',
5692             'Pod::Simple::PullParser'=> '3.16',
5693             'Pod::Simple::PullParserEndToken'=> '3.16',
5694             'Pod::Simple::PullParserStartToken'=> '3.16',
5695             'Pod::Simple::PullParserTextToken'=> '3.16',
5696             'Pod::Simple::PullParserToken'=> '3.16',
5697             'Pod::Simple::RTF' => '3.16',
5698             'Pod::Simple::Search' => '3.16',
5699             'Pod::Simple::SimpleTree'=> '3.16',
5700             'Pod::Simple::Text' => '3.16',
5701             'Pod::Simple::TextContent'=> '3.16',
5702             'Pod::Simple::TiedOutFH'=> '3.16',
5703             'Pod::Simple::Transcode'=> '3.16',
5704             'Pod::Simple::TranscodeDumb'=> '3.16',
5705             'Pod::Simple::TranscodeSmart'=> '3.16',
5706             'Pod::Simple::XHTML' => '3.16',
5707             'Pod::Simple::XMLOutStream'=> '3.16',
5708             'Storable' => '2.27',
5709             'Sys::Hostname' => '1.16',
5710             'TAP::Base' => '3.23',
5711             'TAP::Formatter::Base' => '3.23',
5712             'TAP::Formatter::Color' => '3.23',
5713             'TAP::Formatter::Console'=> '3.23',
5714             'TAP::Formatter::Console::ParallelSession'=> '3.23',
5715             'TAP::Formatter::Console::Session'=> '3.23',
5716             'TAP::Formatter::File' => '3.23',
5717             'TAP::Formatter::File::Session'=> '3.23',
5718             'TAP::Formatter::Session'=> '3.23',
5719             'TAP::Harness' => '3.23',
5720             'TAP::Object' => '3.23',
5721             'TAP::Parser' => '3.23',
5722             'TAP::Parser::Aggregator'=> '3.23',
5723             'TAP::Parser::Grammar' => '3.23',
5724             'TAP::Parser::Iterator' => '3.23',
5725             'TAP::Parser::Iterator::Array'=> '3.23',
5726             'TAP::Parser::Iterator::Process'=> '3.23',
5727             'TAP::Parser::Iterator::Stream'=> '3.23',
5728             'TAP::Parser::IteratorFactory'=> '3.23',
5729             'TAP::Parser::Multiplexer'=> '3.23',
5730             'TAP::Parser::Result' => '3.23',
5731             'TAP::Parser::Result::Bailout'=> '3.23',
5732             'TAP::Parser::Result::Comment'=> '3.23',
5733             'TAP::Parser::Result::Plan'=> '3.23',
5734             'TAP::Parser::Result::Pragma'=> '3.23',
5735             'TAP::Parser::Result::Test'=> '3.23',
5736             'TAP::Parser::Result::Unknown'=> '3.23',
5737             'TAP::Parser::Result::Version'=> '3.23',
5738             'TAP::Parser::Result::YAML'=> '3.23',
5739             'TAP::Parser::ResultFactory'=> '3.23',
5740             'TAP::Parser::Scheduler'=> '3.23',
5741             'TAP::Parser::Scheduler::Job'=> '3.23',
5742             'TAP::Parser::Scheduler::Spinner'=> '3.23',
5743             'TAP::Parser::Source' => '3.23',
5744             'TAP::Parser::SourceHandler'=> '3.23',
5745             'TAP::Parser::SourceHandler::Executable'=> '3.23',
5746             'TAP::Parser::SourceHandler::File'=> '3.23',
5747             'TAP::Parser::SourceHandler::Handle'=> '3.23',
5748             'TAP::Parser::SourceHandler::Perl'=> '3.23',
5749             'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5750             'TAP::Parser::Utils' => '3.23',
5751             'TAP::Parser::YAMLish::Reader'=> '3.23',
5752             'TAP::Parser::YAMLish::Writer'=> '3.23',
5753             'Test::Builder' => '0.98',
5754             'Test::Builder::Module' => '0.98',
5755             'Test::Builder::Tester' => '1.22',
5756             'Test::Builder::Tester::Color'=> '1.22',
5757             'Test::Harness' => '3.23',
5758             'Test::More' => '0.98',
5759             'Test::Simple' => '0.98',
5760             'Tie::Hash::NamedCapture'=> '0.08',
5761             'Tie::RefHash' => '1.39',
5762             'Unicode::Collate' => '0.73',
5763             'Unicode::Collate::Locale'=> '0.73',
5764             'Unicode::UCD' => '0.32',
5765             'XS::Typemap' => '0.05',
5766             'attributes' => '0.14',
5767             'base' => '2.16',
5768             'inc::latest' => '0.3800',
5769             'mro' => '1.07',
5770             'parent' => '0.225',
5771             },
5772             removed => {
5773             }
5774             },
5775             5.014 => {
5776             delta_from => 5.013011,
5777             changed => {
5778             'ExtUtils::CBuilder' => '0.280203',
5779             'ExtUtils::CBuilder::Base'=> '0.280203',
5780             'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5781             'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5782             'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5783             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5784             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5785             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5786             'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5787             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5788             'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5789             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5790             'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5791             'ExtUtils::ParseXS' => '2.2210',
5792             'File::Basename' => '2.82',
5793             'HTTP::Tiny' => '0.012',
5794             'IO::Handle' => '1.31',
5795             'Module::CoreList' => '2.49',
5796             'PerlIO' => '1.07',
5797             'Pod::Html' => '1.11',
5798             'XS::APItest' => '0.28',
5799             'bigint' => '0.27',
5800             'bignum' => '0.27',
5801             'bigrat' => '0.28',
5802             'constant' => '1.21',
5803             'feature' => '1.20',
5804             're' => '0.18',
5805             'threads::shared' => '1.37',
5806             },
5807             removed => {
5808             }
5809             },
5810             5.014001 => {
5811             delta_from => 5.014,
5812             changed => {
5813             'B::Deparse' => '1.04',
5814             'Module::CoreList' => '2.49_01',
5815             'Pod::Perldoc' => '3.15_04',
5816             },
5817             removed => {
5818             }
5819             },
5820             5.014002 => {
5821             delta_from => 5.014001,
5822             changed => {
5823             'CPAN' => '1.9600_01',
5824             'CPAN::Distribution' => '1.9602_01',
5825             'Devel::DProf::dprof::V'=> undef,
5826             'Encode' => '2.42_01',
5827             'File::Glob' => '1.13',
5828             'Module::CoreList' => '2.49_02',
5829             'PerlIO::scalar' => '0.11_01',
5830             'Time::Piece::Seconds' => undef,
5831             },
5832             removed => {
5833             }
5834             },
5835             5.014003 => {
5836             delta_from => 5.014002,
5837             changed => {
5838             'Digest' => '1.16_01',
5839             'IPC::Open3' => '1.09_01',
5840             'Module::CoreList' => '2.49_04',
5841             },
5842             removed => {
5843             }
5844             },
5845             5.014004 => {
5846             delta_from => 5.014003,
5847             changed => {
5848             'Encode' => '2.42_02',
5849             'IPC::Open3' => '1.0901',
5850             'Module::CoreList' => '2.49_06',
5851             },
5852             removed => {
5853             }
5854             },
5855             5.015 => {
5856             delta_from => 5.014001,
5857             changed => {
5858             'Archive::Extract' => '0.52',
5859             'Attribute::Handlers' => '0.91',
5860             'B' => '1.30',
5861             'B::Concise' => '0.84',
5862             'B::Deparse' => '1.05',
5863             'Benchmark' => '1.13',
5864             'CGI' => '3.54',
5865             'CGI::Util' => '3.53',
5866             'CPAN::Meta' => '2.110930',
5867             'CPAN::Meta::Converter' => '2.110930',
5868             'CPAN::Meta::Feature' => '2.110930',
5869             'CPAN::Meta::History' => '2.110930',
5870             'CPAN::Meta::Prereqs' => '2.110930',
5871             'CPAN::Meta::Spec' => '2.110930',
5872             'CPAN::Meta::Validator' => '2.110930',
5873             'CPANPLUS' => '0.9105',
5874             'CPANPLUS::Dist::Build' => '0.56',
5875             'CPANPLUS::Dist::Build::Constants'=> '0.56',
5876             'CPANPLUS::Internals' => '0.9105',
5877             'CPANPLUS::Shell::Default'=> '0.9105',
5878             'Compress::Raw::Bzip2' => '2.035',
5879             'Compress::Raw::Zlib' => '2.035',
5880             'Compress::Zlib' => '2.035',
5881             'DB_File' => '1.822',
5882             'Data::Dumper' => '2.131',
5883             'Devel::Peek' => '1.08',
5884             'Digest::SHA' => '5.62',
5885             'Encode' => '2.43',
5886             'Encode::Alias' => '2.14',
5887             'ExtUtils::CBuilder' => '0.280204',
5888             'ExtUtils::CBuilder::Base'=> '0.280204',
5889             'Fatal' => '2.10',
5890             'File::Spec::Win32' => '3.34',
5891             'Filter::Simple' => '0.87',
5892             'Filter::Util::Call' => '1.39',
5893             'FindBin' => '1.51',
5894             'Hash::Util::FieldHash' => '1.10',
5895             'I18N::LangTags' => '0.36',
5896             'IO::Compress::Adapter::Bzip2'=> '2.035',
5897             'IO::Compress::Adapter::Deflate'=> '2.035',
5898             'IO::Compress::Adapter::Identity'=> '2.035',
5899             'IO::Compress::Base' => '2.035',
5900             'IO::Compress::Base::Common'=> '2.035',
5901             'IO::Compress::Bzip2' => '2.035',
5902             'IO::Compress::Deflate' => '2.035',
5903             'IO::Compress::Gzip' => '2.035',
5904             'IO::Compress::Gzip::Constants'=> '2.035',
5905             'IO::Compress::RawDeflate'=> '2.035',
5906             'IO::Compress::Zip' => '2.035',
5907             'IO::Compress::Zip::Constants'=> '2.035',
5908             'IO::Compress::Zlib::Constants'=> '2.035',
5909             'IO::Compress::Zlib::Extra'=> '2.035',
5910             'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5911             'IO::Uncompress::Adapter::Identity'=> '2.035',
5912             'IO::Uncompress::Adapter::Inflate'=> '2.035',
5913             'IO::Uncompress::AnyInflate'=> '2.035',
5914             'IO::Uncompress::AnyUncompress'=> '2.035',
5915             'IO::Uncompress::Base' => '2.035',
5916             'IO::Uncompress::Bunzip2'=> '2.035',
5917             'IO::Uncompress::Gunzip'=> '2.035',
5918             'IO::Uncompress::Inflate'=> '2.035',
5919             'IO::Uncompress::RawInflate'=> '2.035',
5920             'IO::Uncompress::Unzip' => '2.035',
5921             'IPC::Open2' => '1.04',
5922             'IPC::Open3' => '1.11',
5923             'JSON::PP' => '2.27200',
5924             'Math::BigFloat' => '1.994',
5925             'Math::BigInt' => '1.995',
5926             'Math::Complex' => '1.57',
5927             'Math::Trig' => '1.21',
5928             'Module::CoreList' => '2.51',
5929             'ODBM_File' => '1.11',
5930             'Object::Accessor' => '0.42',
5931             'Opcode' => '1.19',
5932             'PerlIO::encoding' => '0.15',
5933             'PerlIO::scalar' => '0.12',
5934             'Pod::Perldoc' => '3.15_05',
5935             'Storable' => '2.28',
5936             'Sys::Syslog' => '0.29',
5937             'Time::HiRes' => '1.9722',
5938             'Unicode::Collate' => '0.76',
5939             'Unicode::Collate::CJK::Pinyin'=> '0.76',
5940             'Unicode::Collate::CJK::Stroke'=> '0.76',
5941             'Unicode::Collate::Locale'=> '0.76',
5942             'Unicode::Normalize' => '1.12',
5943             'XS::APItest' => '0.29',
5944             'XSLoader' => '0.15',
5945             'autodie' => '2.10',
5946             'autodie::exception' => '2.10',
5947             'autodie::exception::system'=> '2.10',
5948             'autodie::hints' => '2.10',
5949             'base' => '2.17',
5950             'charnames' => '1.22',
5951             'constant' => '1.22',
5952             'feature' => '1.21',
5953             'mro' => '1.08',
5954             'overload' => '1.14',
5955             'threads::shared' => '1.38',
5956             'vmsish' => '1.03',
5957             },
5958             removed => {
5959             'Devel::DProf' => 1,
5960             'Shell' => 1,
5961             }
5962             },
5963             5.015001 => {
5964             delta_from => 5.015,
5965             changed => {
5966             'B::Deparse' => '1.06',
5967             'CGI' => '3.55',
5968             'CPAN::Meta' => '2.110930001',
5969             'CPAN::Meta::Converter' => '2.110930001',
5970             'CPANPLUS' => '0.9108',
5971             'CPANPLUS::Internals' => '0.9108',
5972             'CPANPLUS::Shell::Default'=> '0.9108',
5973             'Carp' => '1.21',
5974             'Carp::Heavy' => '1.21',
5975             'Compress::Raw::Bzip2' => '2.037',
5976             'Compress::Raw::Zlib' => '2.037',
5977             'Compress::Zlib' => '2.037',
5978             'Cwd' => '3.37',
5979             'Env' => '1.03',
5980             'ExtUtils::Command::MM' => '6.58',
5981             'ExtUtils::Liblist' => '6.58',
5982             'ExtUtils::Liblist::Kid'=> '6.58',
5983             'ExtUtils::MM' => '6.58',
5984             'ExtUtils::MM_AIX' => '6.58',
5985             'ExtUtils::MM_Any' => '6.58',
5986             'ExtUtils::MM_BeOS' => '6.58',
5987             'ExtUtils::MM_Cygwin' => '6.58',
5988             'ExtUtils::MM_DOS' => '6.58',
5989             'ExtUtils::MM_Darwin' => '6.58',
5990             'ExtUtils::MM_MacOS' => '6.58',
5991             'ExtUtils::MM_NW5' => '6.58',
5992             'ExtUtils::MM_OS2' => '6.58',
5993             'ExtUtils::MM_QNX' => '6.58',
5994             'ExtUtils::MM_UWIN' => '6.58',
5995             'ExtUtils::MM_Unix' => '6.58',
5996             'ExtUtils::MM_VMS' => '6.58',
5997             'ExtUtils::MM_VOS' => '6.58',
5998             'ExtUtils::MM_Win32' => '6.58',
5999             'ExtUtils::MM_Win95' => '6.58',
6000             'ExtUtils::MY' => '6.58',
6001             'ExtUtils::MakeMaker' => '6.58',
6002             'ExtUtils::MakeMaker::Config'=> '6.58',
6003             'ExtUtils::Mkbootstrap' => '6.58',
6004             'ExtUtils::Mksymlists' => '6.58',
6005             'ExtUtils::ParseXS' => '3.00_01',
6006             'ExtUtils::ParseXS::Constants'=> undef,
6007             'ExtUtils::ParseXS::CountLines'=> undef,
6008             'ExtUtils::ParseXS::Utilities'=> undef,
6009             'ExtUtils::Typemaps' => '1.00',
6010             'ExtUtils::Typemaps::InputMap'=> undef,
6011             'ExtUtils::Typemaps::OutputMap'=> undef,
6012             'ExtUtils::Typemaps::Type'=> '0.05',
6013             'ExtUtils::testlib' => '6.58',
6014             'File::Basename' => '2.83',
6015             'File::Find' => '1.20',
6016             'HTTP::Tiny' => '0.013',
6017             'I18N::Langinfo' => '0.08_02',
6018             'IO::Compress::Adapter::Bzip2'=> '2.037',
6019             'IO::Compress::Adapter::Deflate'=> '2.037',
6020             'IO::Compress::Adapter::Identity'=> '2.037',
6021             'IO::Compress::Base' => '2.037',
6022             'IO::Compress::Base::Common'=> '2.037',
6023             'IO::Compress::Bzip2' => '2.037',
6024             'IO::Compress::Deflate' => '2.037',
6025             'IO::Compress::Gzip' => '2.037',
6026             'IO::Compress::Gzip::Constants'=> '2.037',
6027             'IO::Compress::RawDeflate'=> '2.037',
6028             'IO::Compress::Zip' => '2.037',
6029             'IO::Compress::Zip::Constants'=> '2.037',
6030             'IO::Compress::Zlib::Constants'=> '2.037',
6031             'IO::Compress::Zlib::Extra'=> '2.037',
6032             'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
6033             'IO::Uncompress::Adapter::Identity'=> '2.037',
6034             'IO::Uncompress::Adapter::Inflate'=> '2.037',
6035             'IO::Uncompress::AnyInflate'=> '2.037',
6036             'IO::Uncompress::AnyUncompress'=> '2.037',
6037             'IO::Uncompress::Base' => '2.037',
6038             'IO::Uncompress::Bunzip2'=> '2.037',
6039             'IO::Uncompress::Gunzip'=> '2.037',
6040             'IO::Uncompress::Inflate'=> '2.037',
6041             'IO::Uncompress::RawInflate'=> '2.037',
6042             'IO::Uncompress::Unzip' => '2.037',
6043             'IPC::Cmd' => '0.72',
6044             'Locale::Codes' => '3.17',
6045             'Locale::Codes::Constants'=> '3.17',
6046             'Locale::Codes::Country'=> '3.17',
6047             'Locale::Codes::Country_Codes'=> '3.17',
6048             'Locale::Codes::Currency'=> '3.17',
6049             'Locale::Codes::Currency_Codes'=> '3.17',
6050             'Locale::Codes::LangExt'=> '3.17',
6051             'Locale::Codes::LangExt_Codes'=> '3.17',
6052             'Locale::Codes::LangVar'=> '3.17',
6053             'Locale::Codes::LangVar_Codes'=> '3.17',
6054             'Locale::Codes::Language'=> '3.17',
6055             'Locale::Codes::Language_Codes'=> '3.17',
6056             'Locale::Codes::Script' => '3.17',
6057             'Locale::Codes::Script_Codes'=> '3.17',
6058             'Locale::Country' => '3.17',
6059             'Locale::Currency' => '3.17',
6060             'Locale::Language' => '3.17',
6061             'Locale::Script' => '3.17',
6062             'Math::BigFloat::Trace' => '0.28',
6063             'Math::BigInt::FastCalc'=> '0.29',
6064             'Math::BigInt::Trace' => '0.28',
6065             'Math::BigRat' => '0.2602',
6066             'Math::Complex' => '1.58',
6067             'Math::Trig' => '1.22',
6068             'Module::CoreList' => '2.54',
6069             'OS2::Process' => '1.07',
6070             'Pod::Perldoc' => '3.15_06',
6071             'Pod::Simple' => '3.18',
6072             'Pod::Simple::BlackBox' => '3.18',
6073             'Pod::Simple::Checker' => '3.18',
6074             'Pod::Simple::Debug' => '3.18',
6075             'Pod::Simple::DumpAsText'=> '3.18',
6076             'Pod::Simple::DumpAsXML'=> '3.18',
6077             'Pod::Simple::HTML' => '3.18',
6078             'Pod::Simple::HTMLBatch'=> '3.18',
6079             'Pod::Simple::LinkSection'=> '3.18',
6080             'Pod::Simple::Methody' => '3.18',
6081             'Pod::Simple::Progress' => '3.18',
6082             'Pod::Simple::PullParser'=> '3.18',
6083             'Pod::Simple::PullParserEndToken'=> '3.18',
6084             'Pod::Simple::PullParserStartToken'=> '3.18',
6085             'Pod::Simple::PullParserTextToken'=> '3.18',
6086             'Pod::Simple::PullParserToken'=> '3.18',
6087             'Pod::Simple::RTF' => '3.18',
6088             'Pod::Simple::Search' => '3.18',
6089             'Pod::Simple::SimpleTree'=> '3.18',
6090             'Pod::Simple::Text' => '3.18',
6091             'Pod::Simple::TextContent'=> '3.18',
6092             'Pod::Simple::TiedOutFH'=> '3.18',
6093             'Pod::Simple::Transcode'=> '3.18',
6094             'Pod::Simple::TranscodeDumb'=> '3.18',
6095             'Pod::Simple::TranscodeSmart'=> '3.18',
6096             'Pod::Simple::XHTML' => '3.18',
6097             'Pod::Simple::XMLOutStream'=> '3.18',
6098             'Storable' => '2.31',
6099             'Sys::Syslog::Win32' => undef,
6100             'Time::HiRes' => '1.9724',
6101             'Unicode::Collate' => '0.77',
6102             'Unicode::UCD' => '0.33',
6103             'Win32API::File' => '0.1200',
6104             'XS::APItest' => '0.30',
6105             'attributes' => '0.15',
6106             'bigint' => '0.28',
6107             'bignum' => '0.28',
6108             'charnames' => '1.23',
6109             'diagnostics' => '1.23',
6110             'feature' => '1.22',
6111             'overload' => '1.15',
6112             'perlfaq' => '5.015000',
6113             'threads' => '1.84',
6114             'version' => '0.93',
6115             },
6116             removed => {
6117             'ExtUtils::MakeMaker::YAML'=> 1,
6118             'Locale::Constants' => 1,
6119             'Sys::Syslog::win32::Win32'=> 1,
6120             }
6121             },
6122             5.015002 => {
6123             delta_from => 5.015001,
6124             changed => {
6125             'Attribute::Handlers' => '0.92',
6126             'B' => '1.31',
6127             'B::Concise' => '0.85',
6128             'B::Deparse' => '1.07',
6129             'B::Terse' => '1.06',
6130             'B::Xref' => '1.03',
6131             'CPAN' => '1.9800',
6132             'CPAN::Exception::yaml_process_error'=> '5.5',
6133             'CPAN::Meta' => '2.112150',
6134             'CPAN::Meta::Converter' => '2.112150',
6135             'CPAN::Meta::Feature' => '2.112150',
6136             'CPAN::Meta::History' => '2.112150',
6137             'CPAN::Meta::Prereqs' => '2.112150',
6138             'CPAN::Meta::Spec' => '2.112150',
6139             'CPAN::Meta::Validator' => '2.112150',
6140             'CPANPLUS' => '0.9109',
6141             'CPANPLUS::Internals' => '0.9109',
6142             'CPANPLUS::Shell::Default'=> '0.9109',
6143             'DB_File' => '1.824',
6144             'Data::Dumper' => '2.132',
6145             'Encode' => '2.44',
6146             'Encode::Alias' => '2.15',
6147             'Encode::Encoder' => '2.02',
6148             'Encode::Guess' => '2.05',
6149             'ExtUtils::Command::MM' => '6.59',
6150             'ExtUtils::Install' => '1.57',
6151             'ExtUtils::Installed' => '1.999002',
6152             'ExtUtils::Liblist' => '6.59',
6153             'ExtUtils::Liblist::Kid'=> '6.59',
6154             'ExtUtils::MM' => '6.59',
6155             'ExtUtils::MM_AIX' => '6.59',
6156             'ExtUtils::MM_Any' => '6.59',
6157             'ExtUtils::MM_BeOS' => '6.59',
6158             'ExtUtils::MM_Cygwin' => '6.59',
6159             'ExtUtils::MM_DOS' => '6.59',
6160             'ExtUtils::MM_Darwin' => '6.59',
6161             'ExtUtils::MM_MacOS' => '6.59',
6162             'ExtUtils::MM_NW5' => '6.59',
6163             'ExtUtils::MM_OS2' => '6.59',
6164             'ExtUtils::MM_QNX' => '6.59',
6165             'ExtUtils::MM_UWIN' => '6.59',
6166             'ExtUtils::MM_Unix' => '6.59',
6167             'ExtUtils::MM_VMS' => '6.59',
6168             'ExtUtils::MM_VOS' => '6.59',
6169             'ExtUtils::MM_Win32' => '6.59',
6170             'ExtUtils::MM_Win95' => '6.59',
6171             'ExtUtils::MY' => '6.59',
6172             'ExtUtils::MakeMaker' => '6.59',
6173             'ExtUtils::MakeMaker::Config'=> '6.59',
6174             'ExtUtils::Manifest' => '1.60',
6175             'ExtUtils::Mkbootstrap' => '6.59',
6176             'ExtUtils::Mksymlists' => '6.59',
6177             'ExtUtils::ParseXS' => '3.03_01',
6178             'ExtUtils::Typemaps' => '1.01',
6179             'ExtUtils::testlib' => '6.59',
6180             'File::Spec' => '3.34',
6181             'File::Spec::Mac' => '3.35',
6182             'File::Spec::Unix' => '3.34',
6183             'File::Spec::VMS' => '3.35',
6184             'File::Spec::Win32' => '3.35',
6185             'I18N::LangTags' => '0.37',
6186             'IO' => '1.25_05',
6187             'IO::Handle' => '1.32',
6188             'IO::Socket' => '1.33',
6189             'IO::Socket::INET' => '1.32',
6190             'IPC::Open3' => '1.12',
6191             'Math::BigFloat' => '1.995',
6192             'Math::BigFloat::Trace' => '0.29',
6193             'Math::BigInt' => '1.996',
6194             'Math::BigInt::Trace' => '0.29',
6195             'Module::Build' => '0.39_01',
6196             'Module::Build::Base' => '0.39_01',
6197             'Module::Build::Compat' => '0.39_01',
6198             'Module::Build::Config' => '0.39_01',
6199             'Module::Build::Cookbook'=> '0.39_01',
6200             'Module::Build::Dumper' => '0.39_01',
6201             'Module::Build::ModuleInfo'=> '0.39_01',
6202             'Module::Build::Notes' => '0.39_01',
6203             'Module::Build::PPMMaker'=> '0.39_01',
6204             'Module::Build::Platform::Amiga'=> '0.39_01',
6205             'Module::Build::Platform::Default'=> '0.39_01',
6206             'Module::Build::Platform::EBCDIC'=> '0.39_01',
6207             'Module::Build::Platform::MPEiX'=> '0.39_01',
6208             'Module::Build::Platform::MacOS'=> '0.39_01',
6209             'Module::Build::Platform::RiscOS'=> '0.39_01',
6210             'Module::Build::Platform::Unix'=> '0.39_01',
6211             'Module::Build::Platform::VMS'=> '0.39_01',
6212             'Module::Build::Platform::VOS'=> '0.39_01',
6213             'Module::Build::Platform::Windows'=> '0.39_01',
6214             'Module::Build::Platform::aix'=> '0.39_01',
6215             'Module::Build::Platform::cygwin'=> '0.39_01',
6216             'Module::Build::Platform::darwin'=> '0.39_01',
6217             'Module::Build::Platform::os2'=> '0.39_01',
6218             'Module::Build::PodParser'=> '0.39_01',
6219             'Module::CoreList' => '2.55',
6220             'Module::Load' => '0.20',
6221             'Module::Metadata' => '1.000005_01',
6222             'Opcode' => '1.20',
6223             'Params::Check' => '0.32',
6224             'PerlIO::via' => '0.12',
6225             'Term::ANSIColor' => '3.01',
6226             'Unicode::Collate' => '0.78',
6227             'Unicode::Normalize' => '1.13',
6228             'Unicode::UCD' => '0.34',
6229             'bigint' => '0.29',
6230             'bignum' => '0.29',
6231             'bigrat' => '0.29',
6232             'diagnostics' => '1.24',
6233             'fields' => '2.16',
6234             'inc::latest' => '0.39_01',
6235             },
6236             removed => {
6237             }
6238             },
6239             5.015003 => {
6240             delta_from => 5.015002,
6241             changed => {
6242             'AnyDBM_File' => '1.01',
6243             'Archive::Extract' => '0.56',
6244             'Archive::Tar' => '1.78',
6245             'Archive::Tar::Constant'=> '1.78',
6246             'Archive::Tar::File' => '1.78',
6247             'Attribute::Handlers' => '0.93',
6248             'B' => '1.32',
6249             'B::Concise' => '0.86',
6250             'B::Deparse' => '1.08',
6251             'CPAN::Meta' => '2.112621',
6252             'CPAN::Meta::Converter' => '2.112621',
6253             'CPAN::Meta::Feature' => '2.112621',
6254             'CPAN::Meta::History' => '2.112621',
6255             'CPAN::Meta::Prereqs' => '2.112621',
6256             'CPAN::Meta::Spec' => '2.112621',
6257             'CPAN::Meta::Validator' => '2.112621',
6258             'CPAN::Meta::YAML' => '0.004',
6259             'CPANPLUS' => '0.9111',
6260             'CPANPLUS::Dist::Build' => '0.58',
6261             'CPANPLUS::Dist::Build::Constants'=> '0.58',
6262             'CPANPLUS::Internals' => '0.9111',
6263             'CPANPLUS::Shell::Default'=> '0.9111',
6264             'Carp' => '1.23',
6265             'Carp::Heavy' => '1.23',
6266             'Data::Dumper' => '2.134',
6267             'Devel::PPPort' => '3.20',
6268             'Errno' => '1.14',
6269             'Exporter' => '5.65',
6270             'Exporter::Heavy' => '5.65',
6271             'ExtUtils::ParseXS' => '3.04_04',
6272             'ExtUtils::ParseXS::Constants'=> '3.04_04',
6273             'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6274             'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6275             'ExtUtils::Typemaps' => '1.02',
6276             'File::Glob' => '1.13',
6277             'Filter::Simple' => '0.88',
6278             'IO' => '1.25_06',
6279             'IO::Handle' => '1.33',
6280             'Locale::Codes' => '3.18',
6281             'Locale::Codes::Constants'=> '3.18',
6282             'Locale::Codes::Country'=> '3.18',
6283             'Locale::Codes::Country_Codes'=> '3.18',
6284             'Locale::Codes::Currency'=> '3.18',
6285             'Locale::Codes::Currency_Codes'=> '3.18',
6286             'Locale::Codes::LangExt'=> '3.18',
6287             'Locale::Codes::LangExt_Codes'=> '3.18',
6288             'Locale::Codes::LangVar'=> '3.18',
6289             'Locale::Codes::LangVar_Codes'=> '3.18',
6290             'Locale::Codes::Language'=> '3.18',
6291             'Locale::Codes::Language_Codes'=> '3.18',
6292             'Locale::Codes::Script' => '3.18',
6293             'Locale::Codes::Script_Codes'=> '3.18',
6294             'Locale::Country' => '3.18',
6295             'Locale::Currency' => '3.18',
6296             'Locale::Language' => '3.18',
6297             'Locale::Script' => '3.18',
6298             'Math::BigFloat' => '1.997',
6299             'Math::BigInt' => '1.997',
6300             'Math::BigInt::Calc' => '1.997',
6301             'Math::BigInt::CalcEmu' => '1.997',
6302             'Math::BigInt::FastCalc'=> '0.30',
6303             'Math::BigRat' => '0.2603',
6304             'Module::CoreList' => '2.56',
6305             'Module::Load::Conditional'=> '0.46',
6306             'Module::Metadata' => '1.000007',
6307             'ODBM_File' => '1.12',
6308             'POSIX' => '1.26',
6309             'Pod::Perldoc' => '3.15_07',
6310             'Pod::Simple' => '3.19',
6311             'Pod::Simple::BlackBox' => '3.19',
6312             'Pod::Simple::Checker' => '3.19',
6313             'Pod::Simple::Debug' => '3.19',
6314             'Pod::Simple::DumpAsText'=> '3.19',
6315             'Pod::Simple::DumpAsXML'=> '3.19',
6316             'Pod::Simple::HTML' => '3.19',
6317             'Pod::Simple::HTMLBatch'=> '3.19',
6318             'Pod::Simple::LinkSection'=> '3.19',
6319             'Pod::Simple::Methody' => '3.19',
6320             'Pod::Simple::Progress' => '3.19',
6321             'Pod::Simple::PullParser'=> '3.19',
6322             'Pod::Simple::PullParserEndToken'=> '3.19',
6323             'Pod::Simple::PullParserStartToken'=> '3.19',
6324             'Pod::Simple::PullParserTextToken'=> '3.19',
6325             'Pod::Simple::PullParserToken'=> '3.19',
6326             'Pod::Simple::RTF' => '3.19',
6327             'Pod::Simple::Search' => '3.19',
6328             'Pod::Simple::SimpleTree'=> '3.19',
6329             'Pod::Simple::Text' => '3.19',
6330             'Pod::Simple::TextContent'=> '3.19',
6331             'Pod::Simple::TiedOutFH'=> '3.19',
6332             'Pod::Simple::Transcode'=> '3.19',
6333             'Pod::Simple::TranscodeDumb'=> '3.19',
6334             'Pod::Simple::TranscodeSmart'=> '3.19',
6335             'Pod::Simple::XHTML' => '3.19',
6336             'Pod::Simple::XMLOutStream'=> '3.19',
6337             'Search::Dict' => '1.04',
6338             'Socket' => '1.94_01',
6339             'Storable' => '2.32',
6340             'Text::Abbrev' => '1.02',
6341             'Tie::Array' => '1.05',
6342             'UNIVERSAL' => '1.09',
6343             'Unicode::UCD' => '0.35',
6344             'XS::APItest' => '0.31',
6345             'XSLoader' => '0.16',
6346             'attributes' => '0.16',
6347             'diagnostics' => '1.25',
6348             'open' => '1.09',
6349             'perlfaq' => '5.0150034',
6350             'threads' => '1.85',
6351             'threads::shared' => '1.40',
6352             },
6353             removed => {
6354             }
6355             },
6356             5.015004 => {
6357             delta_from => 5.015003,
6358             changed => {
6359             'Archive::Tar' => '1.80',
6360             'Archive::Tar::Constant'=> '1.80',
6361             'Archive::Tar::File' => '1.80',
6362             'Digest' => '1.17',
6363             'DynaLoader' => '1.14',
6364             'ExtUtils::Command::MM' => '6.61_01',
6365             'ExtUtils::Liblist' => '6.61_01',
6366             'ExtUtils::Liblist::Kid'=> '6.61_01',
6367             'ExtUtils::MM' => '6.61_01',
6368             'ExtUtils::MM_AIX' => '6.61_01',
6369             'ExtUtils::MM_Any' => '6.61_01',
6370             'ExtUtils::MM_BeOS' => '6.61_01',
6371             'ExtUtils::MM_Cygwin' => '6.61_01',
6372             'ExtUtils::MM_DOS' => '6.61_01',
6373             'ExtUtils::MM_Darwin' => '6.61_01',
6374             'ExtUtils::MM_MacOS' => '6.61_01',
6375             'ExtUtils::MM_NW5' => '6.61_01',
6376             'ExtUtils::MM_OS2' => '6.61_01',
6377             'ExtUtils::MM_QNX' => '6.61_01',
6378             'ExtUtils::MM_UWIN' => '6.61_01',
6379             'ExtUtils::MM_Unix' => '6.61_01',
6380             'ExtUtils::MM_VMS' => '6.61_01',
6381             'ExtUtils::MM_VOS' => '6.61_01',
6382             'ExtUtils::MM_Win32' => '6.61_01',
6383             'ExtUtils::MM_Win95' => '6.61_01',
6384             'ExtUtils::MY' => '6.61_01',
6385             'ExtUtils::MakeMaker' => '6.61_01',
6386             'ExtUtils::MakeMaker::Config'=> '6.61_01',
6387             'ExtUtils::Mkbootstrap' => '6.61_01',
6388             'ExtUtils::Mksymlists' => '6.61_01',
6389             'ExtUtils::ParseXS' => '3.05',
6390             'ExtUtils::ParseXS::Constants'=> '3.05',
6391             'ExtUtils::ParseXS::CountLines'=> '3.05',
6392             'ExtUtils::ParseXS::Utilities'=> '3.05',
6393             'ExtUtils::testlib' => '6.61_01',
6394             'File::DosGlob' => '1.05',
6395             'Module::CoreList' => '2.57',
6396             'Module::Load' => '0.22',
6397             'Unicode::Collate' => '0.80',
6398             'Unicode::Collate::Locale'=> '0.80',
6399             'Unicode::UCD' => '0.36',
6400             'XS::APItest' => '0.32',
6401             'XS::Typemap' => '0.07',
6402             'attributes' => '0.17',
6403             'base' => '2.18',
6404             'constant' => '1.23',
6405             'mro' => '1.09',
6406             'open' => '1.10',
6407             'perlfaq' => '5.0150035',
6408             },
6409             removed => {
6410             }
6411             },
6412             5.015005 => {
6413             delta_from => 5.015004,
6414             changed => {
6415             'Archive::Extract' => '0.58',
6416             'B::Concise' => '0.87',
6417             'B::Deparse' => '1.09',
6418             'CGI' => '3.58',
6419             'CGI::Fast' => '1.09',
6420             'CPANPLUS' => '0.9112',
6421             'CPANPLUS::Dist::Build' => '0.60',
6422             'CPANPLUS::Dist::Build::Constants'=> '0.60',
6423             'CPANPLUS::Internals' => '0.9112',
6424             'CPANPLUS::Shell::Default'=> '0.9112',
6425             'Compress::Raw::Bzip2' => '2.042',
6426             'Compress::Raw::Zlib' => '2.042',
6427             'Compress::Zlib' => '2.042',
6428             'Digest::SHA' => '5.63',
6429             'Errno' => '1.15',
6430             'ExtUtils::Command::MM' => '6.63_02',
6431             'ExtUtils::Liblist' => '6.63_02',
6432             'ExtUtils::Liblist::Kid'=> '6.63_02',
6433             'ExtUtils::MM' => '6.63_02',
6434             'ExtUtils::MM_AIX' => '6.63_02',
6435             'ExtUtils::MM_Any' => '6.63_02',
6436             'ExtUtils::MM_BeOS' => '6.63_02',
6437             'ExtUtils::MM_Cygwin' => '6.63_02',
6438             'ExtUtils::MM_DOS' => '6.63_02',
6439             'ExtUtils::MM_Darwin' => '6.63_02',
6440             'ExtUtils::MM_MacOS' => '6.63_02',
6441             'ExtUtils::MM_NW5' => '6.63_02',
6442             'ExtUtils::MM_OS2' => '6.63_02',
6443             'ExtUtils::MM_QNX' => '6.63_02',
6444             'ExtUtils::MM_UWIN' => '6.63_02',
6445             'ExtUtils::MM_Unix' => '6.63_02',
6446             'ExtUtils::MM_VMS' => '6.63_02',
6447             'ExtUtils::MM_VOS' => '6.63_02',
6448             'ExtUtils::MM_Win32' => '6.63_02',
6449             'ExtUtils::MM_Win95' => '6.63_02',
6450             'ExtUtils::MY' => '6.63_02',
6451             'ExtUtils::MakeMaker' => '6.63_02',
6452             'ExtUtils::MakeMaker::Config'=> '6.63_02',
6453             'ExtUtils::Mkbootstrap' => '6.63_02',
6454             'ExtUtils::Mksymlists' => '6.63_02',
6455             'ExtUtils::testlib' => '6.63_02',
6456             'File::DosGlob' => '1.06',
6457             'File::Glob' => '1.14',
6458             'HTTP::Tiny' => '0.016',
6459             'IO::Compress::Adapter::Bzip2'=> '2.042',
6460             'IO::Compress::Adapter::Deflate'=> '2.042',
6461             'IO::Compress::Adapter::Identity'=> '2.042',
6462             'IO::Compress::Base' => '2.042',
6463             'IO::Compress::Base::Common'=> '2.042',
6464             'IO::Compress::Bzip2' => '2.042',
6465             'IO::Compress::Deflate' => '2.042',
6466             'IO::Compress::Gzip' => '2.042',
6467             'IO::Compress::Gzip::Constants'=> '2.042',
6468             'IO::Compress::RawDeflate'=> '2.042',
6469             'IO::Compress::Zip' => '2.042',
6470             'IO::Compress::Zip::Constants'=> '2.042',
6471             'IO::Compress::Zlib::Constants'=> '2.042',
6472             'IO::Compress::Zlib::Extra'=> '2.042',
6473             'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6474             'IO::Uncompress::Adapter::Identity'=> '2.042',
6475             'IO::Uncompress::Adapter::Inflate'=> '2.042',
6476             'IO::Uncompress::AnyInflate'=> '2.042',
6477             'IO::Uncompress::AnyUncompress'=> '2.042',
6478             'IO::Uncompress::Base' => '2.042',
6479             'IO::Uncompress::Bunzip2'=> '2.042',
6480             'IO::Uncompress::Gunzip'=> '2.042',
6481             'IO::Uncompress::Inflate'=> '2.042',
6482             'IO::Uncompress::RawInflate'=> '2.042',
6483             'IO::Uncompress::Unzip' => '2.042',
6484             'Locale::Maketext' => '1.20',
6485             'Locale::Maketext::Guts'=> '1.20',
6486             'Locale::Maketext::GutsLoader'=> '1.20',
6487             'Module::CoreList' => '2.58',
6488             'Opcode' => '1.21',
6489             'Socket' => '1.94_02',
6490             'Storable' => '2.33',
6491             'UNIVERSAL' => '1.10',
6492             'Unicode::Collate' => '0.85',
6493             'Unicode::Collate::CJK::Pinyin'=> '0.85',
6494             'Unicode::Collate::CJK::Stroke'=> '0.85',
6495             'Unicode::Collate::Locale'=> '0.85',
6496             'Unicode::UCD' => '0.37',
6497             'XS::APItest' => '0.33',
6498             'arybase' => '0.01',
6499             'charnames' => '1.24',
6500             'feature' => '1.23',
6501             'perlfaq' => '5.0150036',
6502             'strict' => '1.05',
6503             'unicore::Name' => undef,
6504             },
6505             removed => {
6506             }
6507             },
6508             5.015006 => {
6509             delta_from => 5.015005,
6510             changed => {
6511             'Archive::Tar' => '1.82',
6512             'Archive::Tar::Constant'=> '1.82',
6513             'Archive::Tar::File' => '1.82',
6514             'AutoLoader' => '5.72',
6515             'B::Concise' => '0.88',
6516             'B::Debug' => '1.17',
6517             'B::Deparse' => '1.10',
6518             'CPAN::Meta::YAML' => '0.005',
6519             'CPANPLUS' => '0.9113',
6520             'CPANPLUS::Internals' => '0.9113',
6521             'CPANPLUS::Shell::Default'=> '0.9113',
6522             'Carp' => '1.24',
6523             'Compress::Raw::Bzip2' => '2.045',
6524             'Compress::Raw::Zlib' => '2.045',
6525             'Compress::Zlib' => '2.045',
6526             'Cwd' => '3.38',
6527             'DB' => '1.04',
6528             'Data::Dumper' => '2.135_01',
6529             'Digest::SHA' => '5.70',
6530             'Dumpvalue' => '1.17',
6531             'Exporter' => '5.66',
6532             'Exporter::Heavy' => '5.66',
6533             'ExtUtils::CBuilder' => '0.280205',
6534             'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6535             'ExtUtils::Packlist' => '1.45',
6536             'ExtUtils::ParseXS' => '3.08',
6537             'ExtUtils::ParseXS::Constants'=> '3.08',
6538             'ExtUtils::ParseXS::CountLines'=> '3.08',
6539             'ExtUtils::ParseXS::Utilities'=> '3.08',
6540             'File::Basename' => '2.84',
6541             'File::Glob' => '1.15',
6542             'File::Spec::Unix' => '3.35',
6543             'Getopt::Std' => '1.07',
6544             'I18N::LangTags' => '0.38',
6545             'IO::Compress::Adapter::Bzip2'=> '2.045',
6546             'IO::Compress::Adapter::Deflate'=> '2.045',
6547             'IO::Compress::Adapter::Identity'=> '2.045',
6548             'IO::Compress::Base' => '2.046',
6549             'IO::Compress::Base::Common'=> '2.045',
6550             'IO::Compress::Bzip2' => '2.045',
6551             'IO::Compress::Deflate' => '2.045',
6552             'IO::Compress::Gzip' => '2.045',
6553             'IO::Compress::Gzip::Constants'=> '2.045',
6554             'IO::Compress::RawDeflate'=> '2.045',
6555             'IO::Compress::Zip' => '2.046',
6556             'IO::Compress::Zip::Constants'=> '2.045',
6557             'IO::Compress::Zlib::Constants'=> '2.045',
6558             'IO::Compress::Zlib::Extra'=> '2.045',
6559             'IO::Dir' => '1.09',
6560             'IO::File' => '1.16',
6561             'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6562             'IO::Uncompress::Adapter::Identity'=> '2.045',
6563             'IO::Uncompress::Adapter::Inflate'=> '2.045',
6564             'IO::Uncompress::AnyInflate'=> '2.045',
6565             'IO::Uncompress::AnyUncompress'=> '2.045',
6566             'IO::Uncompress::Base' => '2.046',
6567             'IO::Uncompress::Bunzip2'=> '2.045',
6568             'IO::Uncompress::Gunzip'=> '2.045',
6569             'IO::Uncompress::Inflate'=> '2.045',
6570             'IO::Uncompress::RawInflate'=> '2.045',
6571             'IO::Uncompress::Unzip' => '2.046',
6572             'Locale::Codes' => '3.20',
6573             'Locale::Codes::Constants'=> '3.20',
6574             'Locale::Codes::Country'=> '3.20',
6575             'Locale::Codes::Country_Codes'=> '3.20',
6576             'Locale::Codes::Country_Retired'=> '3.20',
6577             'Locale::Codes::Currency'=> '3.20',
6578             'Locale::Codes::Currency_Codes'=> '3.20',
6579             'Locale::Codes::Currency_Retired'=> '3.20',
6580             'Locale::Codes::LangExt'=> '3.20',
6581             'Locale::Codes::LangExt_Codes'=> '3.20',
6582             'Locale::Codes::LangExt_Retired'=> '3.20',
6583             'Locale::Codes::LangFam'=> '3.20',
6584             'Locale::Codes::LangFam_Codes'=> '3.20',
6585             'Locale::Codes::LangFam_Retired'=> '3.20',
6586             'Locale::Codes::LangVar'=> '3.20',
6587             'Locale::Codes::LangVar_Codes'=> '3.20',
6588             'Locale::Codes::LangVar_Retired'=> '3.20',
6589             'Locale::Codes::Language'=> '3.20',
6590             'Locale::Codes::Language_Codes'=> '3.20',
6591             'Locale::Codes::Language_Retired'=> '3.20',
6592             'Locale::Codes::Script' => '3.20',
6593             'Locale::Codes::Script_Codes'=> '3.20',
6594             'Locale::Codes::Script_Retired'=> '3.20',
6595             'Locale::Country' => '3.20',
6596             'Locale::Currency' => '3.20',
6597             'Locale::Language' => '3.20',
6598             'Locale::Maketext' => '1.21',
6599             'Locale::Script' => '3.20',
6600             'Module::CoreList' => '2.59',
6601             'Module::Loaded' => '0.08',
6602             'Opcode' => '1.22',
6603             'POSIX' => '1.27',
6604             'Pod::Html' => '1.12',
6605             'Pod::LaTeX' => '0.60',
6606             'Pod::Perldoc' => '3.15_08',
6607             'Safe' => '2.30',
6608             'SelfLoader' => '1.20',
6609             'Socket' => '1.97',
6610             'Storable' => '2.34',
6611             'UNIVERSAL' => '1.11',
6612             'Unicode::Collate' => '0.87',
6613             'Unicode::Collate::Locale'=> '0.87',
6614             'XS::APItest' => '0.34',
6615             'arybase' => '0.02',
6616             'charnames' => '1.27',
6617             'diagnostics' => '1.26',
6618             'feature' => '1.24',
6619             'if' => '0.0602',
6620             'overload' => '1.16',
6621             'sigtrap' => '1.06',
6622             'strict' => '1.06',
6623             'threads' => '1.86',
6624             'version' => '0.96',
6625             },
6626             removed => {
6627             }
6628             },
6629             5.015007 => {
6630             delta_from => 5.015006,
6631             changed => {
6632             'B' => '1.33',
6633             'B::Deparse' => '1.11',
6634             'CGI' => '3.59',
6635             'CPAN::Meta' => '2.113640',
6636             'CPAN::Meta::Converter' => '2.113640',
6637             'CPAN::Meta::Feature' => '2.113640',
6638             'CPAN::Meta::History' => '2.113640',
6639             'CPAN::Meta::Prereqs' => '2.113640',
6640             'CPAN::Meta::Requirements'=> '2.113640',
6641             'CPAN::Meta::Spec' => '2.113640',
6642             'CPAN::Meta::Validator' => '2.113640',
6643             'CPANPLUS' => '0.9116',
6644             'CPANPLUS::Internals' => '0.9116',
6645             'CPANPLUS::Shell::Default'=> '0.9116',
6646             'Cwd' => '3.39_01',
6647             'Data::Dumper' => '2.135_03',
6648             'Devel::InnerPackage' => '0.4',
6649             'ExtUtils::CBuilder::Base'=> '0.280205',
6650             'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6651             'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6652             'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6653             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6654             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6655             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6656             'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6657             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6658             'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6659             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6660             'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6661             'ExtUtils::Manifest' => '1.61',
6662             'ExtUtils::Packlist' => '1.46',
6663             'ExtUtils::ParseXS' => '3.12',
6664             'ExtUtils::ParseXS::Constants'=> '3.12',
6665             'ExtUtils::ParseXS::CountLines'=> '3.12',
6666             'ExtUtils::ParseXS::Utilities'=> '3.12',
6667             'ExtUtils::Typemaps' => '1.03',
6668             'ExtUtils::Typemaps::Cmd'=> undef,
6669             'ExtUtils::Typemaps::Type'=> '0.06',
6670             'File::Glob' => '1.16',
6671             'File::Spec' => '3.39_01',
6672             'File::Spec::Cygwin' => '3.39_01',
6673             'File::Spec::Epoc' => '3.39_01',
6674             'File::Spec::Functions' => '3.39_01',
6675             'File::Spec::Mac' => '3.39_01',
6676             'File::Spec::OS2' => '3.39_01',
6677             'File::Spec::Unix' => '3.39_01',
6678             'File::Spec::VMS' => '3.39_01',
6679             'File::Spec::Win32' => '3.39_01',
6680             'IO::Dir' => '1.10',
6681             'IO::Pipe' => '1.15',
6682             'IO::Poll' => '0.09',
6683             'IO::Select' => '1.21',
6684             'IO::Socket' => '1.34',
6685             'IO::Socket::INET' => '1.33',
6686             'IO::Socket::UNIX' => '1.24',
6687             'Locale::Maketext' => '1.22',
6688             'Math::BigInt' => '1.998',
6689             'Module::CoreList' => '2.60',
6690             'Module::Pluggable' => '4.0',
6691             'POSIX' => '1.28',
6692             'PerlIO::scalar' => '0.13',
6693             'Pod::Html' => '1.13',
6694             'Pod::Perldoc' => '3.15_15',
6695             'Pod::Perldoc::BaseTo' => '3.15_15',
6696             'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6697             'Pod::Perldoc::ToANSI' => '3.15_15',
6698             'Pod::Perldoc::ToChecker'=> '3.15_15',
6699             'Pod::Perldoc::ToMan' => '3.15_15',
6700             'Pod::Perldoc::ToNroff' => '3.15_15',
6701             'Pod::Perldoc::ToPod' => '3.15_15',
6702             'Pod::Perldoc::ToRtf' => '3.15_15',
6703             'Pod::Perldoc::ToTerm' => '3.15_15',
6704             'Pod::Perldoc::ToText' => '3.15_15',
6705             'Pod::Perldoc::ToTk' => '3.15_15',
6706             'Pod::Perldoc::ToXml' => '3.15_15',
6707             'Term::UI' => '0.30',
6708             'Tie::File' => '0.98',
6709             'Unicode::UCD' => '0.39',
6710             'Version::Requirements' => '0.101021',
6711             'XS::APItest' => '0.35',
6712             '_charnames' => '1.28',
6713             'arybase' => '0.03',
6714             'autouse' => '1.07',
6715             'charnames' => '1.28',
6716             'diagnostics' => '1.27',
6717             'feature' => '1.25',
6718             'overload' => '1.17',
6719             'overloading' => '0.02',
6720             'perlfaq' => '5.0150038',
6721             },
6722             removed => {
6723             }
6724             },
6725             5.015008 => {
6726             delta_from => 5.015007,
6727             changed => {
6728             'B' => '1.34',
6729             'B::Deparse' => '1.12',
6730             'CPAN::Meta' => '2.120351',
6731             'CPAN::Meta::Converter' => '2.120351',
6732             'CPAN::Meta::Feature' => '2.120351',
6733             'CPAN::Meta::History' => '2.120351',
6734             'CPAN::Meta::Prereqs' => '2.120351',
6735             'CPAN::Meta::Requirements'=> '2.120351',
6736             'CPAN::Meta::Spec' => '2.120351',
6737             'CPAN::Meta::Validator' => '2.120351',
6738             'CPAN::Meta::YAML' => '0.007',
6739             'CPANPLUS' => '0.9118',
6740             'CPANPLUS::Dist::Build' => '0.62',
6741             'CPANPLUS::Dist::Build::Constants'=> '0.62',
6742             'CPANPLUS::Internals' => '0.9118',
6743             'CPANPLUS::Shell::Default'=> '0.9118',
6744             'Carp' => '1.25',
6745             'Carp::Heavy' => '1.25',
6746             'Compress::Raw::Bzip2' => '2.048',
6747             'Compress::Raw::Zlib' => '2.048',
6748             'Compress::Zlib' => '2.048',
6749             'Cwd' => '3.39_02',
6750             'DB_File' => '1.826',
6751             'Data::Dumper' => '2.135_05',
6752             'English' => '1.05',
6753             'ExtUtils::Install' => '1.58',
6754             'ExtUtils::ParseXS' => '3.16',
6755             'ExtUtils::ParseXS::Constants'=> '3.16',
6756             'ExtUtils::ParseXS::CountLines'=> '3.16',
6757             'ExtUtils::ParseXS::Utilities'=> '3.16',
6758             'ExtUtils::Typemaps' => '3.16',
6759             'ExtUtils::Typemaps::Cmd'=> '3.16',
6760             'ExtUtils::Typemaps::InputMap'=> '3.16',
6761             'ExtUtils::Typemaps::OutputMap'=> '3.16',
6762             'ExtUtils::Typemaps::Type'=> '3.16',
6763             'File::Copy' => '2.23',
6764             'File::Glob' => '1.17',
6765             'File::Spec' => '3.39_02',
6766             'File::Spec::Cygwin' => '3.39_02',
6767             'File::Spec::Epoc' => '3.39_02',
6768             'File::Spec::Functions' => '3.39_02',
6769             'File::Spec::Mac' => '3.39_02',
6770             'File::Spec::OS2' => '3.39_02',
6771             'File::Spec::Unix' => '3.39_02',
6772             'File::Spec::VMS' => '3.39_02',
6773             'File::Spec::Win32' => '3.39_02',
6774             'Filter::Util::Call' => '1.40',
6775             'IO::Compress::Adapter::Bzip2'=> '2.048',
6776             'IO::Compress::Adapter::Deflate'=> '2.048',
6777             'IO::Compress::Adapter::Identity'=> '2.048',
6778             'IO::Compress::Base' => '2.048',
6779             'IO::Compress::Base::Common'=> '2.048',
6780             'IO::Compress::Bzip2' => '2.048',
6781             'IO::Compress::Deflate' => '2.048',
6782             'IO::Compress::Gzip' => '2.048',
6783             'IO::Compress::Gzip::Constants'=> '2.048',
6784             'IO::Compress::RawDeflate'=> '2.048',
6785             'IO::Compress::Zip' => '2.048',
6786             'IO::Compress::Zip::Constants'=> '2.048',
6787             'IO::Compress::Zlib::Constants'=> '2.048',
6788             'IO::Compress::Zlib::Extra'=> '2.048',
6789             'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6790             'IO::Uncompress::Adapter::Identity'=> '2.048',
6791             'IO::Uncompress::Adapter::Inflate'=> '2.048',
6792             'IO::Uncompress::AnyInflate'=> '2.048',
6793             'IO::Uncompress::AnyUncompress'=> '2.048',
6794             'IO::Uncompress::Base' => '2.048',
6795             'IO::Uncompress::Bunzip2'=> '2.048',
6796             'IO::Uncompress::Gunzip'=> '2.048',
6797             'IO::Uncompress::Inflate'=> '2.048',
6798             'IO::Uncompress::RawInflate'=> '2.048',
6799             'IO::Uncompress::Unzip' => '2.048',
6800             'IPC::Cmd' => '0.76',
6801             'Math::Complex' => '1.59',
6802             'Math::Trig' => '1.23',
6803             'Module::Metadata' => '1.000009',
6804             'Opcode' => '1.23',
6805             'POSIX' => '1.30',
6806             'Parse::CPAN::Meta' => '1.4402',
6807             'PerlIO::mmap' => '0.010',
6808             'Pod::Checker' => '1.51',
6809             'Pod::Find' => '1.51',
6810             'Pod::Functions' => '1.05',
6811             'Pod::Html' => '1.14',
6812             'Pod::InputObjects' => '1.51',
6813             'Pod::ParseUtils' => '1.51',
6814             'Pod::Parser' => '1.51',
6815             'Pod::PlainText' => '2.05',
6816             'Pod::Select' => '1.51',
6817             'Pod::Usage' => '1.51',
6818             'Safe' => '2.31',
6819             'Socket' => '1.98',
6820             'Term::Cap' => '1.13',
6821             'Term::ReadLine' => '1.08',
6822             'Time::HiRes' => '1.9725',
6823             'Unicode' => '6.1.0',
6824             'Unicode::UCD' => '0.41',
6825             'Version::Requirements' => '0.101022',
6826             'XS::APItest' => '0.36',
6827             'XS::Typemap' => '0.08',
6828             '_charnames' => '1.29',
6829             'arybase' => '0.04',
6830             'charnames' => '1.29',
6831             'diagnostics' => '1.28',
6832             'feature' => '1.26',
6833             'locale' => '1.01',
6834             'overload' => '1.18',
6835             'perlfaq' => '5.0150039',
6836             're' => '0.19',
6837             'subs' => '1.01',
6838             'warnings' => '1.13',
6839             },
6840             removed => {
6841             }
6842             },
6843             5.015009 => {
6844             delta_from => 5.015008,
6845             changed => {
6846             'B::Deparse' => '1.13',
6847             'B::Lint' => '1.14',
6848             'B::Lint::Debug' => '1.14',
6849             'CPAN::Meta' => '2.120630',
6850             'CPAN::Meta::Converter' => '2.120630',
6851             'CPAN::Meta::Feature' => '2.120630',
6852             'CPAN::Meta::History' => '2.120630',
6853             'CPAN::Meta::Prereqs' => '2.120630',
6854             'CPAN::Meta::Requirements'=> '2.120630',
6855             'CPAN::Meta::Spec' => '2.120630',
6856             'CPAN::Meta::Validator' => '2.120630',
6857             'CPANPLUS' => '0.9121',
6858             'CPANPLUS::Internals' => '0.9121',
6859             'CPANPLUS::Shell::Default'=> '0.9121',
6860             'Data::Dumper' => '2.135_06',
6861             'Digest::SHA' => '5.71',
6862             'ExtUtils::CBuilder' => '0.280206',
6863             'ExtUtils::CBuilder::Base'=> '0.280206',
6864             'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6865             'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6866             'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6867             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6868             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6869             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6870             'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6871             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6872             'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6873             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6874             'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6875             'HTTP::Tiny' => '0.017',
6876             'Locale::Codes' => '3.21',
6877             'Locale::Codes::Constants'=> '3.21',
6878             'Locale::Codes::Country'=> '3.21',
6879             'Locale::Codes::Country_Codes'=> '3.21',
6880             'Locale::Codes::Country_Retired'=> '3.21',
6881             'Locale::Codes::Currency'=> '3.21',
6882             'Locale::Codes::Currency_Codes'=> '3.21',
6883             'Locale::Codes::Currency_Retired'=> '3.21',
6884             'Locale::Codes::LangExt'=> '3.21',
6885             'Locale::Codes::LangExt_Codes'=> '3.21',
6886             'Locale::Codes::LangExt_Retired'=> '3.21',
6887             'Locale::Codes::LangFam'=> '3.21',
6888             'Locale::Codes::LangFam_Codes'=> '3.21',
6889             'Locale::Codes::LangFam_Retired'=> '3.21',
6890             'Locale::Codes::LangVar'=> '3.21',
6891             'Locale::Codes::LangVar_Codes'=> '3.21',
6892             'Locale::Codes::LangVar_Retired'=> '3.21',
6893             'Locale::Codes::Language'=> '3.21',
6894             'Locale::Codes::Language_Codes'=> '3.21',
6895             'Locale::Codes::Language_Retired'=> '3.21',
6896             'Locale::Codes::Script' => '3.21',
6897             'Locale::Codes::Script_Codes'=> '3.21',
6898             'Locale::Codes::Script_Retired'=> '3.21',
6899             'Locale::Country' => '3.21',
6900             'Locale::Currency' => '3.21',
6901             'Locale::Language' => '3.21',
6902             'Locale::Script' => '3.21',
6903             'Module::CoreList' => '2.65',
6904             'Pod::Html' => '1.1501',
6905             'Pod::Perldoc' => '3.17',
6906             'Pod::Perldoc::BaseTo' => '3.17',
6907             'Pod::Perldoc::GetOptsOO'=> '3.17',
6908             'Pod::Perldoc::ToANSI' => '3.17',
6909             'Pod::Perldoc::ToChecker'=> '3.17',
6910             'Pod::Perldoc::ToMan' => '3.17',
6911             'Pod::Perldoc::ToNroff' => '3.17',
6912             'Pod::Perldoc::ToPod' => '3.17',
6913             'Pod::Perldoc::ToRtf' => '3.17',
6914             'Pod::Perldoc::ToTerm' => '3.17',
6915             'Pod::Perldoc::ToText' => '3.17',
6916             'Pod::Perldoc::ToTk' => '3.17',
6917             'Pod::Perldoc::ToXml' => '3.17',
6918             'Pod::Simple' => '3.20',
6919             'Pod::Simple::BlackBox' => '3.20',
6920             'Pod::Simple::Checker' => '3.20',
6921             'Pod::Simple::Debug' => '3.20',
6922             'Pod::Simple::DumpAsText'=> '3.20',
6923             'Pod::Simple::DumpAsXML'=> '3.20',
6924             'Pod::Simple::HTML' => '3.20',
6925             'Pod::Simple::HTMLBatch'=> '3.20',
6926             'Pod::Simple::LinkSection'=> '3.20',
6927             'Pod::Simple::Methody' => '3.20',
6928             'Pod::Simple::Progress' => '3.20',
6929             'Pod::Simple::PullParser'=> '3.20',
6930             'Pod::Simple::PullParserEndToken'=> '3.20',
6931             'Pod::Simple::PullParserStartToken'=> '3.20',
6932             'Pod::Simple::PullParserTextToken'=> '3.20',
6933             'Pod::Simple::PullParserToken'=> '3.20',
6934             'Pod::Simple::RTF' => '3.20',
6935             'Pod::Simple::Search' => '3.20',
6936             'Pod::Simple::SimpleTree'=> '3.20',
6937             'Pod::Simple::Text' => '3.20',
6938             'Pod::Simple::TextContent'=> '3.20',
6939             'Pod::Simple::TiedOutFH'=> '3.20',
6940             'Pod::Simple::Transcode'=> '3.20',
6941             'Pod::Simple::TranscodeDumb'=> '3.20',
6942             'Pod::Simple::TranscodeSmart'=> '3.20',
6943             'Pod::Simple::XHTML' => '3.20',
6944             'Pod::Simple::XMLOutStream'=> '3.20',
6945             'Socket' => '2.000',
6946             'Term::ReadLine' => '1.09',
6947             'Unicode::Collate' => '0.89',
6948             'Unicode::Collate::CJK::Korean'=> '0.88',
6949             'Unicode::Collate::Locale'=> '0.89',
6950             'Unicode::Normalize' => '1.14',
6951             'Unicode::UCD' => '0.42',
6952             'XS::APItest' => '0.37',
6953             'arybase' => '0.05',
6954             'attributes' => '0.18',
6955             'charnames' => '1.30',
6956             'feature' => '1.27',
6957             },
6958             removed => {
6959             }
6960             },
6961             5.016 => {
6962             delta_from => 5.015009,
6963             changed => {
6964             'B::Concise' => '0.89',
6965             'B::Deparse' => '1.14',
6966             'Carp' => '1.26',
6967             'Carp::Heavy' => '1.26',
6968             'IO::Socket' => '1.35',
6969             'Module::CoreList' => '2.66',
6970             'PerlIO::scalar' => '0.14',
6971             'Pod::Html' => '1.1502',
6972             'Safe' => '2.31_01',
6973             'Socket' => '2.001',
6974             'Unicode::UCD' => '0.43',
6975             'XS::APItest' => '0.38',
6976             '_charnames' => '1.31',
6977             'attributes' => '0.19',
6978             'strict' => '1.07',
6979             'version' => '0.99',
6980             },
6981             removed => {
6982             }
6983             },
6984             5.016001 => {
6985             delta_from => 5.016,
6986             changed => {
6987             'B' => '1.35',
6988             'B::Deparse' => '1.14_01',
6989             'List::Util' => '1.25',
6990             'List::Util::PP' => '1.25',
6991             'List::Util::XS' => '1.25',
6992             'Module::CoreList' => '2.70',
6993             'PerlIO::scalar' => '0.14_01',
6994             'Scalar::Util' => '1.25',
6995             'Scalar::Util::PP' => '1.25',
6996             're' => '0.19_01',
6997             },
6998             removed => {
6999             }
7000             },
7001             5.016002 => {
7002             delta_from => 5.016001,
7003             changed => {
7004             'Module::CoreList' => '2.76',
7005             },
7006             removed => {
7007             }
7008             },
7009             5.016003 => {
7010             delta_from => 5.016002,
7011             changed => {
7012             'Encode' => '2.44_01',
7013             'Module::CoreList' => '2.76_02',
7014             'XS::APItest' => '0.39',
7015             },
7016             removed => {
7017             }
7018             },
7019             5.017 => {
7020             delta_from => 5.016,
7021             changed => {
7022             'B' => '1.35',
7023             'B::Concise' => '0.90',
7024             'ExtUtils::ParseXS' => '3.17',
7025             'ExtUtils::ParseXS::Utilities'=> '3.17',
7026             'File::DosGlob' => '1.07',
7027             'File::Find' => '1.21',
7028             'File::stat' => '1.06',
7029             'Hash::Util' => '0.12',
7030             'IO::Socket' => '1.34',
7031             'Module::CoreList' => '2.67',
7032             'Pod::Functions' => '1.06',
7033             'Storable' => '2.35',
7034             'XS::APItest' => '0.39',
7035             'diagnostics' => '1.29',
7036             'feature' => '1.28',
7037             'overload' => '1.19',
7038             'utf8' => '1.10',
7039             },
7040             removed => {
7041             'Version::Requirements' => 1,
7042             }
7043             },
7044             5.017001 => {
7045             delta_from => 5.017,
7046             changed => {
7047             'App::Prove' => '3.25',
7048             'App::Prove::State' => '3.25',
7049             'App::Prove::State::Result'=> '3.25',
7050             'App::Prove::State::Result::Test'=> '3.25',
7051             'Archive::Extract' => '0.60',
7052             'Archive::Tar' => '1.88',
7053             'Archive::Tar::Constant'=> '1.88',
7054             'Archive::Tar::File' => '1.88',
7055             'B' => '1.36',
7056             'B::Deparse' => '1.15',
7057             'CPAN::Meta' => '2.120921',
7058             'CPAN::Meta::Converter' => '2.120921',
7059             'CPAN::Meta::Feature' => '2.120921',
7060             'CPAN::Meta::History' => '2.120921',
7061             'CPAN::Meta::Prereqs' => '2.120921',
7062             'CPAN::Meta::Requirements'=> '2.122',
7063             'CPAN::Meta::Spec' => '2.120921',
7064             'CPAN::Meta::Validator' => '2.120921',
7065             'CPAN::Meta::YAML' => '0.008',
7066             'CPANPLUS' => '0.9130',
7067             'CPANPLUS::Config::HomeEnv'=> '0.04',
7068             'CPANPLUS::Internals' => '0.9130',
7069             'CPANPLUS::Shell::Default'=> '0.9130',
7070             'Class::Struct' => '0.64',
7071             'Compress::Raw::Bzip2' => '2.052',
7072             'Compress::Raw::Zlib' => '2.054',
7073             'Compress::Zlib' => '2.052',
7074             'Digest::MD5' => '2.52',
7075             'DynaLoader' => '1.15',
7076             'ExtUtils::CBuilder' => '0.280208',
7077             'ExtUtils::CBuilder::Base'=> '0.280208',
7078             'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
7079             'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
7080             'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
7081             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
7082             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
7083             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
7084             'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
7085             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
7086             'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
7087             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
7088             'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
7089             'Fatal' => '2.11',
7090             'File::DosGlob' => '1.08',
7091             'File::Fetch' => '0.34',
7092             'File::Spec::Unix' => '3.39_03',
7093             'Filter::Util::Call' => '1.45',
7094             'HTTP::Tiny' => '0.022',
7095             'IO' => '1.25_07',
7096             'IO::Compress::Adapter::Bzip2'=> '2.052',
7097             'IO::Compress::Adapter::Deflate'=> '2.052',
7098             'IO::Compress::Adapter::Identity'=> '2.052',
7099             'IO::Compress::Base' => '2.052',
7100             'IO::Compress::Base::Common'=> '2.052',
7101             'IO::Compress::Bzip2' => '2.052',
7102             'IO::Compress::Deflate' => '2.052',
7103             'IO::Compress::Gzip' => '2.052',
7104             'IO::Compress::Gzip::Constants'=> '2.052',
7105             'IO::Compress::RawDeflate'=> '2.052',
7106             'IO::Compress::Zip' => '2.052',
7107             'IO::Compress::Zip::Constants'=> '2.052',
7108             'IO::Compress::Zlib::Constants'=> '2.052',
7109             'IO::Compress::Zlib::Extra'=> '2.052',
7110             'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
7111             'IO::Uncompress::Adapter::Identity'=> '2.052',
7112             'IO::Uncompress::Adapter::Inflate'=> '2.052',
7113             'IO::Uncompress::AnyInflate'=> '2.052',
7114             'IO::Uncompress::AnyUncompress'=> '2.052',
7115             'IO::Uncompress::Base' => '2.052',
7116             'IO::Uncompress::Bunzip2'=> '2.052',
7117             'IO::Uncompress::Gunzip'=> '2.052',
7118             'IO::Uncompress::Inflate'=> '2.052',
7119             'IO::Uncompress::RawInflate'=> '2.052',
7120             'IO::Uncompress::Unzip' => '2.052',
7121             'IPC::Cmd' => '0.78',
7122             'List::Util' => '1.25',
7123             'List::Util::XS' => '1.25',
7124             'Locale::Codes' => '3.22',
7125             'Locale::Codes::Constants'=> '3.22',
7126             'Locale::Codes::Country'=> '3.22',
7127             'Locale::Codes::Country_Codes'=> '3.22',
7128             'Locale::Codes::Country_Retired'=> '3.22',
7129             'Locale::Codes::Currency'=> '3.22',
7130             'Locale::Codes::Currency_Codes'=> '3.22',
7131             'Locale::Codes::Currency_Retired'=> '3.22',
7132             'Locale::Codes::LangExt'=> '3.22',
7133             'Locale::Codes::LangExt_Codes'=> '3.22',
7134             'Locale::Codes::LangExt_Retired'=> '3.22',
7135             'Locale::Codes::LangFam'=> '3.22',
7136             'Locale::Codes::LangFam_Codes'=> '3.22',
7137             'Locale::Codes::LangFam_Retired'=> '3.22',
7138             'Locale::Codes::LangVar'=> '3.22',
7139             'Locale::Codes::LangVar_Codes'=> '3.22',
7140             'Locale::Codes::LangVar_Retired'=> '3.22',
7141             'Locale::Codes::Language'=> '3.22',
7142             'Locale::Codes::Language_Codes'=> '3.22',
7143             'Locale::Codes::Language_Retired'=> '3.22',
7144             'Locale::Codes::Script' => '3.22',
7145             'Locale::Codes::Script_Codes'=> '3.22',
7146             'Locale::Codes::Script_Retired'=> '3.22',
7147             'Locale::Country' => '3.22',
7148             'Locale::Currency' => '3.22',
7149             'Locale::Language' => '3.22',
7150             'Locale::Script' => '3.22',
7151             'Memoize' => '1.03',
7152             'Memoize::AnyDBM_File' => '1.03',
7153             'Memoize::Expire' => '1.03',
7154             'Memoize::ExpireFile' => '1.03',
7155             'Memoize::ExpireTest' => '1.03',
7156             'Memoize::NDBM_File' => '1.03',
7157             'Memoize::SDBM_File' => '1.03',
7158             'Memoize::Storable' => '1.03',
7159             'Module::Build' => '0.40',
7160             'Module::Build::Base' => '0.40',
7161             'Module::Build::Compat' => '0.40',
7162             'Module::Build::Config' => '0.40',
7163             'Module::Build::Cookbook'=> '0.40',
7164             'Module::Build::Dumper' => '0.40',
7165             'Module::Build::ModuleInfo'=> '0.40',
7166             'Module::Build::Notes' => '0.40',
7167             'Module::Build::PPMMaker'=> '0.40',
7168             'Module::Build::Platform::Amiga'=> '0.40',
7169             'Module::Build::Platform::Default'=> '0.40',
7170             'Module::Build::Platform::EBCDIC'=> '0.40',
7171             'Module::Build::Platform::MPEiX'=> '0.40',
7172             'Module::Build::Platform::MacOS'=> '0.40',
7173             'Module::Build::Platform::RiscOS'=> '0.40',
7174             'Module::Build::Platform::Unix'=> '0.40',
7175             'Module::Build::Platform::VMS'=> '0.40',
7176             'Module::Build::Platform::VOS'=> '0.40',
7177             'Module::Build::Platform::Windows'=> '0.40',
7178             'Module::Build::Platform::aix'=> '0.40',
7179             'Module::Build::Platform::cygwin'=> '0.40',
7180             'Module::Build::Platform::darwin'=> '0.40',
7181             'Module::Build::Platform::os2'=> '0.40',
7182             'Module::Build::PodParser'=> '0.40',
7183             'Module::CoreList' => '2.68',
7184             'Module::Load::Conditional'=> '0.50',
7185             'Object::Accessor' => '0.44',
7186             'POSIX' => '1.31',
7187             'Params::Check' => '0.36',
7188             'Parse::CPAN::Meta' => '1.4404',
7189             'PerlIO::mmap' => '0.011',
7190             'PerlIO::via::QuotedPrint'=> '0.07',
7191             'Pod::Html' => '1.16',
7192             'Pod::Man' => '2.26',
7193             'Pod::Text' => '3.16',
7194             'Safe' => '2.33_01',
7195             'Scalar::Util' => '1.25',
7196             'Search::Dict' => '1.07',
7197             'Storable' => '2.36',
7198             'TAP::Base' => '3.25',
7199             'TAP::Formatter::Base' => '3.25',
7200             'TAP::Formatter::Color' => '3.25',
7201             'TAP::Formatter::Console'=> '3.25',
7202             'TAP::Formatter::Console::ParallelSession'=> '3.25',
7203             'TAP::Formatter::Console::Session'=> '3.25',
7204             'TAP::Formatter::File' => '3.25',
7205             'TAP::Formatter::File::Session'=> '3.25',
7206             'TAP::Formatter::Session'=> '3.25',
7207             'TAP::Harness' => '3.25',
7208             'TAP::Object' => '3.25',
7209             'TAP::Parser' => '3.25',
7210             'TAP::Parser::Aggregator'=> '3.25',
7211             'TAP::Parser::Grammar' => '3.25',
7212             'TAP::Parser::Iterator' => '3.25',
7213             'TAP::Parser::Iterator::Array'=> '3.25',
7214             'TAP::Parser::Iterator::Process'=> '3.25',
7215             'TAP::Parser::Iterator::Stream'=> '3.25',
7216             'TAP::Parser::IteratorFactory'=> '3.25',
7217             'TAP::Parser::Multiplexer'=> '3.25',
7218             'TAP::Parser::Result' => '3.25',
7219             'TAP::Parser::Result::Bailout'=> '3.25',
7220             'TAP::Parser::Result::Comment'=> '3.25',
7221             'TAP::Parser::Result::Plan'=> '3.25',
7222             'TAP::Parser::Result::Pragma'=> '3.25',
7223             'TAP::Parser::Result::Test'=> '3.25',
7224             'TAP::Parser::Result::Unknown'=> '3.25',
7225             'TAP::Parser::Result::Version'=> '3.25',
7226             'TAP::Parser::Result::YAML'=> '3.25',
7227             'TAP::Parser::ResultFactory'=> '3.25',
7228             'TAP::Parser::Scheduler'=> '3.25',
7229             'TAP::Parser::Scheduler::Job'=> '3.25',
7230             'TAP::Parser::Scheduler::Spinner'=> '3.25',
7231             'TAP::Parser::Source' => '3.25',
7232             'TAP::Parser::SourceHandler'=> '3.25',
7233             'TAP::Parser::SourceHandler::Executable'=> '3.25',
7234             'TAP::Parser::SourceHandler::File'=> '3.25',
7235             'TAP::Parser::SourceHandler::Handle'=> '3.25',
7236             'TAP::Parser::SourceHandler::Perl'=> '3.25',
7237             'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7238             'TAP::Parser::Utils' => '3.25',
7239             'TAP::Parser::YAMLish::Reader'=> '3.25',
7240             'TAP::Parser::YAMLish::Writer'=> '3.25',
7241             'Term::ANSIColor' => '3.02',
7242             'Test::Harness' => '3.25',
7243             'Unicode' => '6.2.0',
7244             'Unicode::UCD' => '0.44',
7245             'XS::APItest' => '0.40',
7246             '_charnames' => '1.32',
7247             'attributes' => '0.2',
7248             'autodie' => '2.11',
7249             'autodie::exception' => '2.11',
7250             'autodie::exception::system'=> '2.11',
7251             'autodie::hints' => '2.11',
7252             'bigint' => '0.30',
7253             'charnames' => '1.32',
7254             'feature' => '1.29',
7255             'inc::latest' => '0.40',
7256             'perlfaq' => '5.0150040',
7257             're' => '0.20',
7258             },
7259             removed => {
7260             'List::Util::PP' => 1,
7261             'Scalar::Util::PP' => 1,
7262             }
7263             },
7264             5.017002 => {
7265             delta_from => 5.017001,
7266             changed => {
7267             'App::Prove' => '3.25_01',
7268             'App::Prove::State' => '3.25_01',
7269             'App::Prove::State::Result'=> '3.25_01',
7270             'App::Prove::State::Result::Test'=> '3.25_01',
7271             'B::Concise' => '0.91',
7272             'Compress::Raw::Bzip2' => '2.05201',
7273             'Compress::Raw::Zlib' => '2.05401',
7274             'Exporter' => '5.67',
7275             'Exporter::Heavy' => '5.67',
7276             'Fatal' => '2.12',
7277             'File::Fetch' => '0.36',
7278             'File::stat' => '1.07',
7279             'IO' => '1.25_08',
7280             'IO::Socket' => '1.35',
7281             'Module::CoreList' => '2.69',
7282             'PerlIO::scalar' => '0.15',
7283             'Socket' => '2.002',
7284             'Storable' => '2.37',
7285             'TAP::Base' => '3.25_01',
7286             'TAP::Formatter::Base' => '3.25_01',
7287             'TAP::Formatter::Color' => '3.25_01',
7288             'TAP::Formatter::Console'=> '3.25_01',
7289             'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7290             'TAP::Formatter::Console::Session'=> '3.25_01',
7291             'TAP::Formatter::File' => '3.25_01',
7292             'TAP::Formatter::File::Session'=> '3.25_01',
7293             'TAP::Formatter::Session'=> '3.25_01',
7294             'TAP::Harness' => '3.25_01',
7295             'TAP::Object' => '3.25_01',
7296             'TAP::Parser' => '3.25_01',
7297             'TAP::Parser::Aggregator'=> '3.25_01',
7298             'TAP::Parser::Grammar' => '3.25_01',
7299             'TAP::Parser::Iterator' => '3.25_01',
7300             'TAP::Parser::Iterator::Array'=> '3.25_01',
7301             'TAP::Parser::Iterator::Process'=> '3.25_01',
7302             'TAP::Parser::Iterator::Stream'=> '3.25_01',
7303             'TAP::Parser::IteratorFactory'=> '3.25_01',
7304             'TAP::Parser::Multiplexer'=> '3.25_01',
7305             'TAP::Parser::Result' => '3.25_01',
7306             'TAP::Parser::Result::Bailout'=> '3.25_01',
7307             'TAP::Parser::Result::Comment'=> '3.25_01',
7308             'TAP::Parser::Result::Plan'=> '3.25_01',
7309             'TAP::Parser::Result::Pragma'=> '3.25_01',
7310             'TAP::Parser::Result::Test'=> '3.25_01',
7311             'TAP::Parser::Result::Unknown'=> '3.25_01',
7312             'TAP::Parser::Result::Version'=> '3.25_01',
7313             'TAP::Parser::Result::YAML'=> '3.25_01',
7314             'TAP::Parser::ResultFactory'=> '3.25_01',
7315             'TAP::Parser::Scheduler'=> '3.25_01',
7316             'TAP::Parser::Scheduler::Job'=> '3.25_01',
7317             'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7318             'TAP::Parser::Source' => '3.25_01',
7319             'TAP::Parser::SourceHandler'=> '3.25_01',
7320             'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7321             'TAP::Parser::SourceHandler::File'=> '3.25_01',
7322             'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7323             'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7324             'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7325             'TAP::Parser::Utils' => '3.25_01',
7326             'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7327             'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7328             'Test::Harness' => '3.25_01',
7329             'Tie::StdHandle' => '4.3',
7330             'XS::APItest' => '0.41',
7331             'autodie' => '2.12',
7332             'autodie::exception' => '2.12',
7333             'autodie::exception::system'=> '2.12',
7334             'autodie::hints' => '2.12',
7335             'diagnostics' => '1.30',
7336             'overload' => '1.20',
7337             're' => '0.21',
7338             'vars' => '1.03',
7339             },
7340             removed => {
7341             }
7342             },
7343             5.017003 => {
7344             delta_from => 5.017002,
7345             changed => {
7346             'B' => '1.37',
7347             'B::Concise' => '0.92',
7348             'B::Debug' => '1.18',
7349             'B::Deparse' => '1.16',
7350             'CGI' => '3.60',
7351             'Compress::Raw::Bzip2' => '2.055',
7352             'Compress::Raw::Zlib' => '2.056',
7353             'Compress::Zlib' => '2.055',
7354             'Data::Dumper' => '2.135_07',
7355             'Devel::Peek' => '1.09',
7356             'Encode' => '2.47',
7357             'Encode::Alias' => '2.16',
7358             'Encode::GSM0338' => '2.02',
7359             'Encode::Unicode::UTF7' => '2.06',
7360             'IO::Compress::Adapter::Bzip2'=> '2.055',
7361             'IO::Compress::Adapter::Deflate'=> '2.055',
7362             'IO::Compress::Adapter::Identity'=> '2.055',
7363             'IO::Compress::Base' => '2.055',
7364             'IO::Compress::Base::Common'=> '2.055',
7365             'IO::Compress::Bzip2' => '2.055',
7366             'IO::Compress::Deflate' => '2.055',
7367             'IO::Compress::Gzip' => '2.055',
7368             'IO::Compress::Gzip::Constants'=> '2.055',
7369             'IO::Compress::RawDeflate'=> '2.055',
7370             'IO::Compress::Zip' => '2.055',
7371             'IO::Compress::Zip::Constants'=> '2.055',
7372             'IO::Compress::Zlib::Constants'=> '2.055',
7373             'IO::Compress::Zlib::Extra'=> '2.055',
7374             'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7375             'IO::Uncompress::Adapter::Identity'=> '2.055',
7376             'IO::Uncompress::Adapter::Inflate'=> '2.055',
7377             'IO::Uncompress::AnyInflate'=> '2.055',
7378             'IO::Uncompress::AnyUncompress'=> '2.055',
7379             'IO::Uncompress::Base' => '2.055',
7380             'IO::Uncompress::Bunzip2'=> '2.055',
7381             'IO::Uncompress::Gunzip'=> '2.055',
7382             'IO::Uncompress::Inflate'=> '2.055',
7383             'IO::Uncompress::RawInflate'=> '2.055',
7384             'IO::Uncompress::Unzip' => '2.055',
7385             'Module::Build' => '0.4003',
7386             'Module::Build::Base' => '0.4003',
7387             'Module::Build::Compat' => '0.4003',
7388             'Module::Build::Config' => '0.4003',
7389             'Module::Build::Cookbook'=> '0.4003',
7390             'Module::Build::Dumper' => '0.4003',
7391             'Module::Build::ModuleInfo'=> '0.4003',
7392             'Module::Build::Notes' => '0.4003',
7393             'Module::Build::PPMMaker'=> '0.4003',
7394             'Module::Build::Platform::Amiga'=> '0.4003',
7395             'Module::Build::Platform::Default'=> '0.4003',
7396             'Module::Build::Platform::EBCDIC'=> '0.4003',
7397             'Module::Build::Platform::MPEiX'=> '0.4003',
7398             'Module::Build::Platform::MacOS'=> '0.4003',
7399             'Module::Build::Platform::RiscOS'=> '0.4003',
7400             'Module::Build::Platform::Unix'=> '0.4003',
7401             'Module::Build::Platform::VMS'=> '0.4003',
7402             'Module::Build::Platform::VOS'=> '0.4003',
7403             'Module::Build::Platform::Windows'=> '0.4003',
7404             'Module::Build::Platform::aix'=> '0.4003',
7405             'Module::Build::Platform::cygwin'=> '0.4003',
7406             'Module::Build::Platform::darwin'=> '0.4003',
7407             'Module::Build::Platform::os2'=> '0.4003',
7408             'Module::Build::PodParser'=> '0.4003',
7409             'Module::CoreList' => '2.71',
7410             'Module::CoreList::TieHashDelta'=> '2.71',
7411             'Module::Load::Conditional'=> '0.54',
7412             'Module::Metadata' => '1.000011',
7413             'Module::Pluggable' => '4.3',
7414             'Module::Pluggable::Object'=> '4.3',
7415             'Pod::Simple' => '3.23',
7416             'Pod::Simple::BlackBox' => '3.23',
7417             'Pod::Simple::Checker' => '3.23',
7418             'Pod::Simple::Debug' => '3.23',
7419             'Pod::Simple::DumpAsText'=> '3.23',
7420             'Pod::Simple::DumpAsXML'=> '3.23',
7421             'Pod::Simple::HTML' => '3.23',
7422             'Pod::Simple::HTMLBatch'=> '3.23',
7423             'Pod::Simple::LinkSection'=> '3.23',
7424             'Pod::Simple::Methody' => '3.23',
7425             'Pod::Simple::Progress' => '3.23',
7426             'Pod::Simple::PullParser'=> '3.23',
7427             'Pod::Simple::PullParserEndToken'=> '3.23',
7428             'Pod::Simple::PullParserStartToken'=> '3.23',
7429             'Pod::Simple::PullParserTextToken'=> '3.23',
7430             'Pod::Simple::PullParserToken'=> '3.23',
7431             'Pod::Simple::RTF' => '3.23',
7432             'Pod::Simple::Search' => '3.23',
7433             'Pod::Simple::SimpleTree'=> '3.23',
7434             'Pod::Simple::Text' => '3.23',
7435             'Pod::Simple::TextContent'=> '3.23',
7436             'Pod::Simple::TiedOutFH'=> '3.23',
7437             'Pod::Simple::Transcode'=> '3.23',
7438             'Pod::Simple::TranscodeDumb'=> '3.23',
7439             'Pod::Simple::TranscodeSmart'=> '3.23',
7440             'Pod::Simple::XHTML' => '3.23',
7441             'Pod::Simple::XMLOutStream'=> '3.23',
7442             'Socket' => '2.004',
7443             'Storable' => '2.38',
7444             'Sys::Syslog' => '0.31',
7445             'Term::ReadLine' => '1.10',
7446             'Text::Tabs' => '2012.0818',
7447             'Text::Wrap' => '2012.0818',
7448             'Time::Local' => '1.2300',
7449             'Unicode::UCD' => '0.45',
7450             'Win32' => '0.45',
7451             'Win32CORE' => '0.03',
7452             'XS::APItest' => '0.42',
7453             'inc::latest' => '0.4003',
7454             'perlfaq' => '5.0150041',
7455             're' => '0.22',
7456             },
7457             removed => {
7458             }
7459             },
7460             5.017004 => {
7461             delta_from => 5.017003,
7462             changed => {
7463             'Archive::Tar' => '1.90',
7464             'Archive::Tar::Constant'=> '1.90',
7465             'Archive::Tar::File' => '1.90',
7466             'B' => '1.38',
7467             'B::Concise' => '0.93',
7468             'B::Deparse' => '1.17',
7469             'B::Xref' => '1.04',
7470             'CPANPLUS' => '0.9131',
7471             'CPANPLUS::Internals' => '0.9131',
7472             'CPANPLUS::Shell::Default'=> '0.9131',
7473             'DB_File' => '1.827',
7474             'Devel::Peek' => '1.10',
7475             'DynaLoader' => '1.16',
7476             'Errno' => '1.16',
7477             'ExtUtils::ParseXS' => '3.18',
7478             'ExtUtils::ParseXS::Constants'=> '3.18',
7479             'ExtUtils::ParseXS::CountLines'=> '3.18',
7480             'ExtUtils::ParseXS::Utilities'=> '3.18',
7481             'File::Copy' => '2.24',
7482             'File::Find' => '1.22',
7483             'IPC::Open3' => '1.13',
7484             'Locale::Codes' => '3.23',
7485             'Locale::Codes::Constants'=> '3.23',
7486             'Locale::Codes::Country'=> '3.23',
7487             'Locale::Codes::Country_Codes'=> '3.23',
7488             'Locale::Codes::Country_Retired'=> '3.23',
7489             'Locale::Codes::Currency'=> '3.23',
7490             'Locale::Codes::Currency_Codes'=> '3.23',
7491             'Locale::Codes::Currency_Retired'=> '3.23',
7492             'Locale::Codes::LangExt'=> '3.23',
7493             'Locale::Codes::LangExt_Codes'=> '3.23',
7494             'Locale::Codes::LangExt_Retired'=> '3.23',
7495             'Locale::Codes::LangFam'=> '3.23',
7496             'Locale::Codes::LangFam_Codes'=> '3.23',
7497             'Locale::Codes::LangFam_Retired'=> '3.23',
7498             'Locale::Codes::LangVar'=> '3.23',
7499             'Locale::Codes::LangVar_Codes'=> '3.23',
7500             'Locale::Codes::LangVar_Retired'=> '3.23',
7501             'Locale::Codes::Language'=> '3.23',
7502             'Locale::Codes::Language_Codes'=> '3.23',
7503             'Locale::Codes::Language_Retired'=> '3.23',
7504             'Locale::Codes::Script' => '3.23',
7505             'Locale::Codes::Script_Codes'=> '3.23',
7506             'Locale::Codes::Script_Retired'=> '3.23',
7507             'Locale::Country' => '3.23',
7508             'Locale::Currency' => '3.23',
7509             'Locale::Language' => '3.23',
7510             'Locale::Script' => '3.23',
7511             'Math::BigFloat::Trace' => '0.30',
7512             'Math::BigInt::Trace' => '0.30',
7513             'Module::CoreList' => '2.73',
7514             'Module::CoreList::TieHashDelta'=> '2.73',
7515             'Opcode' => '1.24',
7516             'Socket' => '2.006',
7517             'Storable' => '2.39',
7518             'Sys::Syslog' => '0.32',
7519             'Unicode::UCD' => '0.46',
7520             'XS::APItest' => '0.43',
7521             'bignum' => '0.30',
7522             'bigrat' => '0.30',
7523             'constant' => '1.24',
7524             'feature' => '1.30',
7525             'threads::shared' => '1.41',
7526             'version' => '0.9901',
7527             'warnings' => '1.14',
7528             },
7529             removed => {
7530             }
7531             },
7532             5.017005 => {
7533             delta_from => 5.017004,
7534             changed => {
7535             'AutoLoader' => '5.73',
7536             'B' => '1.39',
7537             'B::Deparse' => '1.18',
7538             'CPANPLUS' => '0.9133',
7539             'CPANPLUS::Internals' => '0.9133',
7540             'CPANPLUS::Shell::Default'=> '0.9133',
7541             'Carp' => '1.27',
7542             'Carp::Heavy' => '1.27',
7543             'Data::Dumper' => '2.136',
7544             'Digest::SHA' => '5.72',
7545             'ExtUtils::CBuilder' => '0.280209',
7546             'ExtUtils::CBuilder::Base'=> '0.280209',
7547             'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7548             'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7549             'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7550             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7551             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7552             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7553             'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7554             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7555             'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7556             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7557             'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7558             'File::Copy' => '2.25',
7559             'File::Glob' => '1.18',
7560             'HTTP::Tiny' => '0.024',
7561             'Module::CoreList' => '2.75',
7562             'Module::CoreList::TieHashDelta'=> '2.75',
7563             'PerlIO::encoding' => '0.16',
7564             'Unicode::Collate' => '0.90',
7565             'Unicode::Collate::Locale'=> '0.90',
7566             'Unicode::Normalize' => '1.15',
7567             'Win32CORE' => '0.04',
7568             'XS::APItest' => '0.44',
7569             'attributes' => '0.21',
7570             'bigint' => '0.31',
7571             'bignum' => '0.31',
7572             'bigrat' => '0.31',
7573             'feature' => '1.31',
7574             'threads::shared' => '1.42',
7575             'warnings' => '1.15',
7576             },
7577             removed => {
7578             }
7579             },
7580             5.017006 => {
7581             delta_from => 5.017005,
7582             changed => {
7583             'B' => '1.40',
7584             'B::Concise' => '0.94',
7585             'B::Deparse' => '1.19',
7586             'B::Xref' => '1.05',
7587             'CGI' => '3.63',
7588             'CGI::Util' => '3.62',
7589             'CPAN' => '1.99_51',
7590             'CPANPLUS::Dist::Build' => '0.64',
7591             'CPANPLUS::Dist::Build::Constants'=> '0.64',
7592             'Carp' => '1.28',
7593             'Carp::Heavy' => '1.28',
7594             'Compress::Raw::Bzip2' => '2.058',
7595             'Compress::Raw::Zlib' => '2.058',
7596             'Compress::Zlib' => '2.058',
7597             'Data::Dumper' => '2.137',
7598             'Digest::SHA' => '5.73',
7599             'DynaLoader' => '1.17',
7600             'Env' => '1.04',
7601             'Errno' => '1.17',
7602             'ExtUtils::Manifest' => '1.62',
7603             'ExtUtils::Typemaps' => '3.18',
7604             'ExtUtils::Typemaps::Cmd'=> '3.18',
7605             'ExtUtils::Typemaps::InputMap'=> '3.18',
7606             'ExtUtils::Typemaps::OutputMap'=> '3.18',
7607             'ExtUtils::Typemaps::Type'=> '3.18',
7608             'Fatal' => '2.13',
7609             'File::Find' => '1.23',
7610             'Hash::Util' => '0.13',
7611             'IO::Compress::Adapter::Bzip2'=> '2.058',
7612             'IO::Compress::Adapter::Deflate'=> '2.058',
7613             'IO::Compress::Adapter::Identity'=> '2.058',
7614             'IO::Compress::Base' => '2.058',
7615             'IO::Compress::Base::Common'=> '2.058',
7616             'IO::Compress::Bzip2' => '2.058',
7617             'IO::Compress::Deflate' => '2.058',
7618             'IO::Compress::Gzip' => '2.058',
7619             'IO::Compress::Gzip::Constants'=> '2.058',
7620             'IO::Compress::RawDeflate'=> '2.058',
7621             'IO::Compress::Zip' => '2.058',
7622             'IO::Compress::Zip::Constants'=> '2.058',
7623             'IO::Compress::Zlib::Constants'=> '2.058',
7624             'IO::Compress::Zlib::Extra'=> '2.058',
7625             'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7626             'IO::Uncompress::Adapter::Identity'=> '2.058',
7627             'IO::Uncompress::Adapter::Inflate'=> '2.058',
7628             'IO::Uncompress::AnyInflate'=> '2.058',
7629             'IO::Uncompress::AnyUncompress'=> '2.058',
7630             'IO::Uncompress::Base' => '2.058',
7631             'IO::Uncompress::Bunzip2'=> '2.058',
7632             'IO::Uncompress::Gunzip'=> '2.058',
7633             'IO::Uncompress::Inflate'=> '2.058',
7634             'IO::Uncompress::RawInflate'=> '2.058',
7635             'IO::Uncompress::Unzip' => '2.058',
7636             'Module::CoreList' => '2.78',
7637             'Module::CoreList::TieHashDelta'=> '2.77',
7638             'Module::Pluggable' => '4.5',
7639             'Module::Pluggable::Object'=> '4.5',
7640             'Opcode' => '1.25',
7641             'Sys::Hostname' => '1.17',
7642             'Term::UI' => '0.32',
7643             'Thread::Queue' => '3.01',
7644             'Tie::Hash::NamedCapture'=> '0.09',
7645             'Unicode::Collate' => '0.93',
7646             'Unicode::Collate::CJK::Korean'=> '0.93',
7647             'Unicode::Collate::Locale'=> '0.93',
7648             'Unicode::Normalize' => '1.16',
7649             'Unicode::UCD' => '0.47',
7650             'XS::APItest' => '0.46',
7651             '_charnames' => '1.33',
7652             'autodie' => '2.13',
7653             'autodie::exception' => '2.13',
7654             'autodie::exception::system'=> '2.13',
7655             'autodie::hints' => '2.13',
7656             'charnames' => '1.33',
7657             're' => '0.23',
7658             },
7659             removed => {
7660             }
7661             },
7662             5.017007 => {
7663             delta_from => 5.017006,
7664             changed => {
7665             'B' => '1.41',
7666             'CPANPLUS::Dist::Build' => '0.68',
7667             'CPANPLUS::Dist::Build::Constants'=> '0.68',
7668             'Compress::Raw::Bzip2' => '2.059',
7669             'Compress::Raw::Zlib' => '2.059',
7670             'Compress::Zlib' => '2.059',
7671             'Cwd' => '3.39_03',
7672             'Data::Dumper' => '2.139',
7673             'Devel::Peek' => '1.11',
7674             'Digest::SHA' => '5.80',
7675             'DynaLoader' => '1.18',
7676             'English' => '1.06',
7677             'Errno' => '1.18',
7678             'ExtUtils::Command::MM' => '6.64',
7679             'ExtUtils::Liblist' => '6.64',
7680             'ExtUtils::Liblist::Kid'=> '6.64',
7681             'ExtUtils::MM' => '6.64',
7682             'ExtUtils::MM_AIX' => '6.64',
7683             'ExtUtils::MM_Any' => '6.64',
7684             'ExtUtils::MM_BeOS' => '6.64',
7685             'ExtUtils::MM_Cygwin' => '6.64',
7686             'ExtUtils::MM_DOS' => '6.64',
7687             'ExtUtils::MM_Darwin' => '6.64',
7688             'ExtUtils::MM_MacOS' => '6.64',
7689             'ExtUtils::MM_NW5' => '6.64',
7690             'ExtUtils::MM_OS2' => '6.64',
7691             'ExtUtils::MM_QNX' => '6.64',
7692             'ExtUtils::MM_UWIN' => '6.64',
7693             'ExtUtils::MM_Unix' => '6.64',
7694             'ExtUtils::MM_VMS' => '6.64',
7695             'ExtUtils::MM_VOS' => '6.64',
7696             'ExtUtils::MM_Win32' => '6.64',
7697             'ExtUtils::MM_Win95' => '6.64',
7698             'ExtUtils::MY' => '6.64',
7699             'ExtUtils::MakeMaker' => '6.64',
7700             'ExtUtils::MakeMaker::Config'=> '6.64',
7701             'ExtUtils::Mkbootstrap' => '6.64',
7702             'ExtUtils::Mksymlists' => '6.64',
7703             'ExtUtils::testlib' => '6.64',
7704             'File::DosGlob' => '1.09',
7705             'File::Glob' => '1.19',
7706             'GDBM_File' => '1.15',
7707             'IO::Compress::Adapter::Bzip2'=> '2.059',
7708             'IO::Compress::Adapter::Deflate'=> '2.059',
7709             'IO::Compress::Adapter::Identity'=> '2.059',
7710             'IO::Compress::Base' => '2.059',
7711             'IO::Compress::Base::Common'=> '2.059',
7712             'IO::Compress::Bzip2' => '2.059',
7713             'IO::Compress::Deflate' => '2.059',
7714             'IO::Compress::Gzip' => '2.059',
7715             'IO::Compress::Gzip::Constants'=> '2.059',
7716             'IO::Compress::RawDeflate'=> '2.059',
7717             'IO::Compress::Zip' => '2.059',
7718             'IO::Compress::Zip::Constants'=> '2.059',
7719             'IO::Compress::Zlib::Constants'=> '2.059',
7720             'IO::Compress::Zlib::Extra'=> '2.059',
7721             'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7722             'IO::Uncompress::Adapter::Identity'=> '2.059',
7723             'IO::Uncompress::Adapter::Inflate'=> '2.059',
7724             'IO::Uncompress::AnyInflate'=> '2.059',
7725             'IO::Uncompress::AnyUncompress'=> '2.059',
7726             'IO::Uncompress::Base' => '2.059',
7727             'IO::Uncompress::Bunzip2'=> '2.059',
7728             'IO::Uncompress::Gunzip'=> '2.059',
7729             'IO::Uncompress::Inflate'=> '2.059',
7730             'IO::Uncompress::RawInflate'=> '2.059',
7731             'IO::Uncompress::Unzip' => '2.059',
7732             'List::Util' => '1.26',
7733             'List::Util::XS' => '1.26',
7734             'Locale::Codes' => '3.24',
7735             'Locale::Codes::Constants'=> '3.24',
7736             'Locale::Codes::Country'=> '3.24',
7737             'Locale::Codes::Country_Codes'=> '3.24',
7738             'Locale::Codes::Country_Retired'=> '3.24',
7739             'Locale::Codes::Currency'=> '3.24',
7740             'Locale::Codes::Currency_Codes'=> '3.24',
7741             'Locale::Codes::Currency_Retired'=> '3.24',
7742             'Locale::Codes::LangExt'=> '3.24',
7743             'Locale::Codes::LangExt_Codes'=> '3.24',
7744             'Locale::Codes::LangExt_Retired'=> '3.24',
7745             'Locale::Codes::LangFam'=> '3.24',
7746             'Locale::Codes::LangFam_Codes'=> '3.24',
7747             'Locale::Codes::LangFam_Retired'=> '3.24',
7748             'Locale::Codes::LangVar'=> '3.24',
7749             'Locale::Codes::LangVar_Codes'=> '3.24',
7750             'Locale::Codes::LangVar_Retired'=> '3.24',
7751             'Locale::Codes::Language'=> '3.24',
7752             'Locale::Codes::Language_Codes'=> '3.24',
7753             'Locale::Codes::Language_Retired'=> '3.24',
7754             'Locale::Codes::Script' => '3.24',
7755             'Locale::Codes::Script_Codes'=> '3.24',
7756             'Locale::Codes::Script_Retired'=> '3.24',
7757             'Locale::Country' => '3.24',
7758             'Locale::Currency' => '3.24',
7759             'Locale::Language' => '3.24',
7760             'Locale::Maketext' => '1.23',
7761             'Locale::Script' => '3.24',
7762             'Module::CoreList' => '2.79',
7763             'Module::CoreList::TieHashDelta'=> '2.79',
7764             'POSIX' => '1.32',
7765             'Scalar::Util' => '1.26',
7766             'Socket' => '2.006_001',
7767             'Storable' => '2.40',
7768             'Term::ReadLine' => '1.11',
7769             'Unicode::Collate' => '0.96',
7770             'Unicode::Collate::CJK::Stroke'=> '0.94',
7771             'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7772             'Unicode::Collate::Locale'=> '0.96',
7773             'XS::APItest' => '0.48',
7774             'XS::Typemap' => '0.09',
7775             '_charnames' => '1.34',
7776             'charnames' => '1.34',
7777             'feature' => '1.32',
7778             'mro' => '1.10',
7779             'sigtrap' => '1.07',
7780             'sort' => '2.02',
7781             },
7782             removed => {
7783             }
7784             },
7785             5.017008 => {
7786             delta_from => 5.017007,
7787             changed => {
7788             'Archive::Extract' => '0.62',
7789             'B' => '1.42',
7790             'B::Concise' => '0.95',
7791             'Compress::Raw::Bzip2' => '2.060',
7792             'Compress::Raw::Zlib' => '2.060',
7793             'Compress::Zlib' => '2.060',
7794             'Cwd' => '3.40',
7795             'Data::Dumper' => '2.141',
7796             'Digest::SHA' => '5.81',
7797             'ExtUtils::Install' => '1.59',
7798             'File::Fetch' => '0.38',
7799             'File::Path' => '2.09',
7800             'File::Spec' => '3.40',
7801             'File::Spec::Cygwin' => '3.40',
7802             'File::Spec::Epoc' => '3.40',
7803             'File::Spec::Functions' => '3.40',
7804             'File::Spec::Mac' => '3.40',
7805             'File::Spec::OS2' => '3.40',
7806             'File::Spec::Unix' => '3.40',
7807             'File::Spec::VMS' => '3.40',
7808             'File::Spec::Win32' => '3.40',
7809             'HTTP::Tiny' => '0.025',
7810             'Hash::Util' => '0.14',
7811             'I18N::LangTags' => '0.39',
7812             'I18N::LangTags::List' => '0.39',
7813             'I18N::Langinfo' => '0.09',
7814             'IO' => '1.26',
7815             'IO::Compress::Adapter::Bzip2'=> '2.060',
7816             'IO::Compress::Adapter::Deflate'=> '2.060',
7817             'IO::Compress::Adapter::Identity'=> '2.060',
7818             'IO::Compress::Base' => '2.060',
7819             'IO::Compress::Base::Common'=> '2.060',
7820             'IO::Compress::Bzip2' => '2.060',
7821             'IO::Compress::Deflate' => '2.060',
7822             'IO::Compress::Gzip' => '2.060',
7823             'IO::Compress::Gzip::Constants'=> '2.060',
7824             'IO::Compress::RawDeflate'=> '2.060',
7825             'IO::Compress::Zip' => '2.060',
7826             'IO::Compress::Zip::Constants'=> '2.060',
7827             'IO::Compress::Zlib::Constants'=> '2.060',
7828             'IO::Compress::Zlib::Extra'=> '2.060',
7829             'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7830             'IO::Uncompress::Adapter::Identity'=> '2.060',
7831             'IO::Uncompress::Adapter::Inflate'=> '2.060',
7832             'IO::Uncompress::AnyInflate'=> '2.060',
7833             'IO::Uncompress::AnyUncompress'=> '2.060',
7834             'IO::Uncompress::Base' => '2.060',
7835             'IO::Uncompress::Bunzip2'=> '2.060',
7836             'IO::Uncompress::Gunzip'=> '2.060',
7837             'IO::Uncompress::Inflate'=> '2.060',
7838             'IO::Uncompress::RawInflate'=> '2.060',
7839             'IO::Uncompress::Unzip' => '2.060',
7840             'List::Util' => '1.27',
7841             'List::Util::XS' => '1.27',
7842             'Module::CoreList' => '2.80',
7843             'Module::CoreList::TieHashDelta'=> '2.80',
7844             'Pod::Html' => '1.17',
7845             'Pod::LaTeX' => '0.61',
7846             'Pod::Man' => '2.27',
7847             'Pod::Text' => '3.17',
7848             'Pod::Text::Color' => '2.07',
7849             'Pod::Text::Overstrike' => '2.05',
7850             'Pod::Text::Termcap' => '2.07',
7851             'Safe' => '2.34',
7852             'Scalar::Util' => '1.27',
7853             'Socket' => '2.009',
7854             'Term::ANSIColor' => '4.02',
7855             'Test' => '1.26',
7856             'Unicode::Collate' => '0.97',
7857             'XS::APItest' => '0.51',
7858             'XS::Typemap' => '0.10',
7859             '_charnames' => '1.35',
7860             'charnames' => '1.35',
7861             'constant' => '1.25',
7862             'diagnostics' => '1.31',
7863             'threads::shared' => '1.43',
7864             'warnings' => '1.16',
7865             },
7866             removed => {
7867             }
7868             },
7869             5.017009 => {
7870             delta_from => 5.017008,
7871             changed => {
7872             'App::Cpan' => '1.60_02',
7873             'App::Prove' => '3.26',
7874             'App::Prove::State' => '3.26',
7875             'App::Prove::State::Result'=> '3.26',
7876             'App::Prove::State::Result::Test'=> '3.26',
7877             'Archive::Extract' => '0.68',
7878             'Attribute::Handlers' => '0.94',
7879             'B::Lint' => '1.17',
7880             'B::Lint::Debug' => '1.17',
7881             'Benchmark' => '1.14',
7882             'CPAN' => '2.00',
7883             'CPAN::Distribution' => '2.00',
7884             'CPAN::FirstTime' => '5.5304',
7885             'CPAN::Nox' => '5.5001',
7886             'CPANPLUS' => '0.9135',
7887             'CPANPLUS::Backend' => '0.9135',
7888             'CPANPLUS::Backend::RV' => '0.9135',
7889             'CPANPLUS::Config' => '0.9135',
7890             'CPANPLUS::Config::HomeEnv'=> '0.9135',
7891             'CPANPLUS::Configure' => '0.9135',
7892             'CPANPLUS::Configure::Setup'=> '0.9135',
7893             'CPANPLUS::Dist' => '0.9135',
7894             'CPANPLUS::Dist::Autobundle'=> '0.9135',
7895             'CPANPLUS::Dist::Base' => '0.9135',
7896             'CPANPLUS::Dist::Build' => '0.70',
7897             'CPANPLUS::Dist::Build::Constants'=> '0.70',
7898             'CPANPLUS::Dist::MM' => '0.9135',
7899             'CPANPLUS::Dist::Sample'=> '0.9135',
7900             'CPANPLUS::Error' => '0.9135',
7901             'CPANPLUS::Internals' => '0.9135',
7902             'CPANPLUS::Internals::Constants'=> '0.9135',
7903             'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7904             'CPANPLUS::Internals::Extract'=> '0.9135',
7905             'CPANPLUS::Internals::Fetch'=> '0.9135',
7906             'CPANPLUS::Internals::Report'=> '0.9135',
7907             'CPANPLUS::Internals::Search'=> '0.9135',
7908             'CPANPLUS::Internals::Source'=> '0.9135',
7909             'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7910             'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7911             'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7912             'CPANPLUS::Internals::Utils'=> '0.9135',
7913             'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7914             'CPANPLUS::Module' => '0.9135',
7915             'CPANPLUS::Module::Author'=> '0.9135',
7916             'CPANPLUS::Module::Author::Fake'=> '0.9135',
7917             'CPANPLUS::Module::Checksums'=> '0.9135',
7918             'CPANPLUS::Module::Fake'=> '0.9135',
7919             'CPANPLUS::Module::Signature'=> '0.9135',
7920             'CPANPLUS::Selfupdate' => '0.9135',
7921             'CPANPLUS::Shell' => '0.9135',
7922             'CPANPLUS::Shell::Classic'=> '0.9135',
7923             'CPANPLUS::Shell::Default'=> '0.9135',
7924             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7925             'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7926             'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
7927             'Config' => '5.017009',
7928             'Config::Perl::V' => '0.17',
7929             'DBM_Filter' => '0.05',
7930             'Data::Dumper' => '2.142',
7931             'Digest::SHA' => '5.82',
7932             'Encode' => '2.48',
7933             'ExtUtils::Installed' => '1.999003',
7934             'ExtUtils::Manifest' => '1.63',
7935             'ExtUtils::ParseXS::Utilities'=> '3.19',
7936             'ExtUtils::Typemaps' => '3.19',
7937             'File::CheckTree' => '4.42',
7938             'File::DosGlob' => '1.10',
7939             'File::Temp' => '0.22_90',
7940             'Filter::Simple' => '0.89',
7941             'IO' => '1.27',
7942             'Log::Message' => '0.06',
7943             'Log::Message::Config' => '0.06',
7944             'Log::Message::Handlers'=> '0.06',
7945             'Log::Message::Item' => '0.06',
7946             'Log::Message::Simple' => '0.10',
7947             'Math::BigInt' => '1.999',
7948             'Module::CoreList' => '2.82',
7949             'Module::CoreList::TieHashDelta'=> '2.82',
7950             'Module::Load' => '0.24',
7951             'Module::Pluggable' => '4.6',
7952             'Module::Pluggable::Object'=> '4.6',
7953             'OS2::DLL' => '1.05',
7954             'OS2::ExtAttr' => '0.03',
7955             'OS2::Process' => '1.08',
7956             'Object::Accessor' => '0.46',
7957             'PerlIO::scalar' => '0.16',
7958             'Pod::Checker' => '1.60',
7959             'Pod::Find' => '1.60',
7960             'Pod::Html' => '1.18',
7961             'Pod::InputObjects' => '1.60',
7962             'Pod::ParseUtils' => '1.60',
7963             'Pod::Parser' => '1.60',
7964             'Pod::Perldoc' => '3.19',
7965             'Pod::Perldoc::BaseTo' => '3.19',
7966             'Pod::Perldoc::GetOptsOO'=> '3.19',
7967             'Pod::Perldoc::ToANSI' => '3.19',
7968             'Pod::Perldoc::ToChecker'=> '3.19',
7969             'Pod::Perldoc::ToMan' => '3.19',
7970             'Pod::Perldoc::ToNroff' => '3.19',
7971             'Pod::Perldoc::ToPod' => '3.19',
7972             'Pod::Perldoc::ToRtf' => '3.19',
7973             'Pod::Perldoc::ToTerm' => '3.19',
7974             'Pod::Perldoc::ToText' => '3.19',
7975             'Pod::Perldoc::ToTk' => '3.19',
7976             'Pod::Perldoc::ToXml' => '3.19',
7977             'Pod::PlainText' => '2.06',
7978             'Pod::Select' => '1.60',
7979             'Pod::Usage' => '1.61',
7980             'SelfLoader' => '1.21',
7981             'TAP::Base' => '3.26',
7982             'TAP::Formatter::Base' => '3.26',
7983             'TAP::Formatter::Color' => '3.26',
7984             'TAP::Formatter::Console'=> '3.26',
7985             'TAP::Formatter::Console::ParallelSession'=> '3.26',
7986             'TAP::Formatter::Console::Session'=> '3.26',
7987             'TAP::Formatter::File' => '3.26',
7988             'TAP::Formatter::File::Session'=> '3.26',
7989             'TAP::Formatter::Session'=> '3.26',
7990             'TAP::Harness' => '3.26',
7991             'TAP::Object' => '3.26',
7992             'TAP::Parser' => '3.26',
7993             'TAP::Parser::Aggregator'=> '3.26',
7994             'TAP::Parser::Grammar' => '3.26',
7995             'TAP::Parser::Iterator' => '3.26',
7996             'TAP::Parser::Iterator::Array'=> '3.26',
7997             'TAP::Parser::Iterator::Process'=> '3.26',
7998             'TAP::Parser::Iterator::Stream'=> '3.26',
7999             'TAP::Parser::IteratorFactory'=> '3.26',
8000             'TAP::Parser::Multiplexer'=> '3.26',
8001             'TAP::Parser::Result' => '3.26',
8002             'TAP::Parser::Result::Bailout'=> '3.26',
8003             'TAP::Parser::Result::Comment'=> '3.26',
8004             'TAP::Parser::Result::Plan'=> '3.26',
8005             'TAP::Parser::Result::Pragma'=> '3.26',
8006             'TAP::Parser::Result::Test'=> '3.26',
8007             'TAP::Parser::Result::Unknown'=> '3.26',
8008             'TAP::Parser::Result::Version'=> '3.26',
8009             'TAP::Parser::Result::YAML'=> '3.26',
8010             'TAP::Parser::ResultFactory'=> '3.26',
8011             'TAP::Parser::Scheduler'=> '3.26',
8012             'TAP::Parser::Scheduler::Job'=> '3.26',
8013             'TAP::Parser::Scheduler::Spinner'=> '3.26',
8014             'TAP::Parser::Source' => '3.26',
8015             'TAP::Parser::SourceHandler'=> '3.26',
8016             'TAP::Parser::SourceHandler::Executable'=> '3.26',
8017             'TAP::Parser::SourceHandler::File'=> '3.26',
8018             'TAP::Parser::SourceHandler::Handle'=> '3.26',
8019             'TAP::Parser::SourceHandler::Perl'=> '3.26',
8020             'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
8021             'TAP::Parser::Utils' => '3.26',
8022             'TAP::Parser::YAMLish::Reader'=> '3.26',
8023             'TAP::Parser::YAMLish::Writer'=> '3.26',
8024             'Term::UI' => '0.34',
8025             'Test::Harness' => '3.26',
8026             'Text::Soundex' => '3.04',
8027             'Thread::Queue' => '3.02',
8028             'Unicode::UCD' => '0.50',
8029             'Win32' => '0.46',
8030             'Win32API::File' => '0.1201',
8031             '_charnames' => '1.36',
8032             'arybase' => '0.06',
8033             'bigint' => '0.32',
8034             'bignum' => '0.32',
8035             'charnames' => '1.36',
8036             'filetest' => '1.03',
8037             'locale' => '1.02',
8038             'overload' => '1.21',
8039             'warnings' => '1.17',
8040             },
8041             removed => {
8042             }
8043             },
8044             5.017010 => {
8045             delta_from => 5.017009,
8046             changed => {
8047             'Benchmark' => '1.15',
8048             'Config' => '5.017009',
8049             'Data::Dumper' => '2.145',
8050             'Digest::SHA' => '5.84',
8051             'Encode' => '2.49',
8052             'ExtUtils::Command::MM' => '6.65_01',
8053             'ExtUtils::Liblist' => '6.65_01',
8054             'ExtUtils::Liblist::Kid'=> '6.65_01',
8055             'ExtUtils::MM' => '6.65_01',
8056             'ExtUtils::MM_AIX' => '6.65_01',
8057             'ExtUtils::MM_Any' => '6.65_01',
8058             'ExtUtils::MM_BeOS' => '6.65_01',
8059             'ExtUtils::MM_Cygwin' => '6.65_01',
8060             'ExtUtils::MM_DOS' => '6.65_01',
8061             'ExtUtils::MM_Darwin' => '6.65_01',
8062             'ExtUtils::MM_MacOS' => '6.65_01',
8063             'ExtUtils::MM_NW5' => '6.65_01',
8064             'ExtUtils::MM_OS2' => '6.65_01',
8065             'ExtUtils::MM_QNX' => '6.65_01',
8066             'ExtUtils::MM_UWIN' => '6.65_01',
8067             'ExtUtils::MM_Unix' => '6.65_01',
8068             'ExtUtils::MM_VMS' => '6.65_01',
8069             'ExtUtils::MM_VOS' => '6.65_01',
8070             'ExtUtils::MM_Win32' => '6.65_01',
8071             'ExtUtils::MM_Win95' => '6.65_01',
8072             'ExtUtils::MY' => '6.65_01',
8073             'ExtUtils::MakeMaker' => '6.65_01',
8074             'ExtUtils::MakeMaker::Config'=> '6.65_01',
8075             'ExtUtils::Mkbootstrap' => '6.65_01',
8076             'ExtUtils::Mksymlists' => '6.65_01',
8077             'ExtUtils::testlib' => '6.65_01',
8078             'File::Copy' => '2.26',
8079             'File::Temp' => '0.23',
8080             'Getopt::Long' => '2.39',
8081             'Hash::Util' => '0.15',
8082             'I18N::Langinfo' => '0.10',
8083             'IPC::Cmd' => '0.80',
8084             'JSON::PP' => '2.27202',
8085             'Locale::Codes' => '3.25',
8086             'Locale::Codes::Constants'=> '3.25',
8087             'Locale::Codes::Country'=> '3.25',
8088             'Locale::Codes::Country_Codes'=> '3.25',
8089             'Locale::Codes::Country_Retired'=> '3.25',
8090             'Locale::Codes::Currency'=> '3.25',
8091             'Locale::Codes::Currency_Codes'=> '3.25',
8092             'Locale::Codes::Currency_Retired'=> '3.25',
8093             'Locale::Codes::LangExt'=> '3.25',
8094             'Locale::Codes::LangExt_Codes'=> '3.25',
8095             'Locale::Codes::LangExt_Retired'=> '3.25',
8096             'Locale::Codes::LangFam'=> '3.25',
8097             'Locale::Codes::LangFam_Codes'=> '3.25',
8098             'Locale::Codes::LangFam_Retired'=> '3.25',
8099             'Locale::Codes::LangVar'=> '3.25',
8100             'Locale::Codes::LangVar_Codes'=> '3.25',
8101             'Locale::Codes::LangVar_Retired'=> '3.25',
8102             'Locale::Codes::Language'=> '3.25',
8103             'Locale::Codes::Language_Codes'=> '3.25',
8104             'Locale::Codes::Language_Retired'=> '3.25',
8105             'Locale::Codes::Script' => '3.25',
8106             'Locale::Codes::Script_Codes'=> '3.25',
8107             'Locale::Codes::Script_Retired'=> '3.25',
8108             'Locale::Country' => '3.25',
8109             'Locale::Currency' => '3.25',
8110             'Locale::Language' => '3.25',
8111             'Locale::Script' => '3.25',
8112             'Math::BigFloat' => '1.998',
8113             'Math::BigFloat::Trace' => '0.32',
8114             'Math::BigInt' => '1.9991',
8115             'Math::BigInt::CalcEmu' => '1.998',
8116             'Math::BigInt::Trace' => '0.32',
8117             'Math::BigRat' => '0.2604',
8118             'Module::CoreList' => '2.84',
8119             'Module::CoreList::TieHashDelta'=> '2.84',
8120             'Module::Pluggable' => '4.7',
8121             'Net::Ping' => '2.41',
8122             'Perl::OSType' => '1.003',
8123             'Pod::Simple' => '3.26',
8124             'Pod::Simple::BlackBox' => '3.26',
8125             'Pod::Simple::Checker' => '3.26',
8126             'Pod::Simple::Debug' => '3.26',
8127             'Pod::Simple::DumpAsText'=> '3.26',
8128             'Pod::Simple::DumpAsXML'=> '3.26',
8129             'Pod::Simple::HTML' => '3.26',
8130             'Pod::Simple::HTMLBatch'=> '3.26',
8131             'Pod::Simple::LinkSection'=> '3.26',
8132             'Pod::Simple::Methody' => '3.26',
8133             'Pod::Simple::Progress' => '3.26',
8134             'Pod::Simple::PullParser'=> '3.26',
8135             'Pod::Simple::PullParserEndToken'=> '3.26',
8136             'Pod::Simple::PullParserStartToken'=> '3.26',
8137             'Pod::Simple::PullParserTextToken'=> '3.26',
8138             'Pod::Simple::PullParserToken'=> '3.26',
8139             'Pod::Simple::RTF' => '3.26',
8140             'Pod::Simple::Search' => '3.26',
8141             'Pod::Simple::SimpleTree'=> '3.26',
8142             'Pod::Simple::Text' => '3.26',
8143             'Pod::Simple::TextContent'=> '3.26',
8144             'Pod::Simple::TiedOutFH'=> '3.26',
8145             'Pod::Simple::Transcode'=> '3.26',
8146             'Pod::Simple::TranscodeDumb'=> '3.26',
8147             'Pod::Simple::TranscodeSmart'=> '3.26',
8148             'Pod::Simple::XHTML' => '3.26',
8149             'Pod::Simple::XMLOutStream'=> '3.26',
8150             'Safe' => '2.35',
8151             'Term::ReadLine' => '1.12',
8152             'Text::ParseWords' => '3.28',
8153             'Tie::File' => '0.99',
8154             'Unicode::UCD' => '0.51',
8155             'Win32' => '0.47',
8156             'bigint' => '0.33',
8157             'bignum' => '0.33',
8158             'bigrat' => '0.33',
8159             'constant' => '1.27',
8160             'perlfaq' => '5.0150042',
8161             'version' => '0.9902',
8162             },
8163             removed => {
8164             }
8165             },
8166             5.017011 => {
8167             delta_from => 5.017010,
8168             changed => {
8169             'App::Cpan' => '1.61',
8170             'B::Deparse' => '1.20',
8171             'Config' => '5.017009',
8172             'Exporter' => '5.68',
8173             'Exporter::Heavy' => '5.68',
8174             'ExtUtils::CBuilder' => '0.280210',
8175             'ExtUtils::Command::MM' => '6.66',
8176             'ExtUtils::Liblist' => '6.66',
8177             'ExtUtils::Liblist::Kid'=> '6.66',
8178             'ExtUtils::MM' => '6.66',
8179             'ExtUtils::MM_AIX' => '6.66',
8180             'ExtUtils::MM_Any' => '6.66',
8181             'ExtUtils::MM_BeOS' => '6.66',
8182             'ExtUtils::MM_Cygwin' => '6.66',
8183             'ExtUtils::MM_DOS' => '6.66',
8184             'ExtUtils::MM_Darwin' => '6.66',
8185             'ExtUtils::MM_MacOS' => '6.66',
8186             'ExtUtils::MM_NW5' => '6.66',
8187             'ExtUtils::MM_OS2' => '6.66',
8188             'ExtUtils::MM_QNX' => '6.66',
8189             'ExtUtils::MM_UWIN' => '6.66',
8190             'ExtUtils::MM_Unix' => '6.66',
8191             'ExtUtils::MM_VMS' => '6.66',
8192             'ExtUtils::MM_VOS' => '6.66',
8193             'ExtUtils::MM_Win32' => '6.66',
8194             'ExtUtils::MM_Win95' => '6.66',
8195             'ExtUtils::MY' => '6.66',
8196             'ExtUtils::MakeMaker' => '6.66',
8197             'ExtUtils::MakeMaker::Config'=> '6.66',
8198             'ExtUtils::Mkbootstrap' => '6.66',
8199             'ExtUtils::Mksymlists' => '6.66',
8200             'ExtUtils::testlib' => '6.66',
8201             'File::Glob' => '1.20',
8202             'IO' => '1.28',
8203             'Module::CoreList' => '2.87',
8204             'Module::CoreList::TieHashDelta'=> '2.87',
8205             'Storable' => '2.41',
8206             'bigint' => '0.34',
8207             'mro' => '1.11',
8208             'overload' => '1.22',
8209             'warnings' => '1.18',
8210             },
8211             removed => {
8212             }
8213             },
8214             5.018000 => {
8215             delta_from => 5.017011,
8216             changed => {
8217             'Carp' => '1.29',
8218             'Carp::Heavy' => '1.29',
8219             'Config' => '5.018000',
8220             'Hash::Util' => '0.16',
8221             'IO::Handle' => '1.34',
8222             'IO::Socket' => '1.36',
8223             'Module::CoreList' => '2.89',
8224             'Module::CoreList::TieHashDelta'=> '2.89',
8225             'Pod::Simple' => '3.28',
8226             'Pod::Simple::BlackBox' => '3.28',
8227             'Pod::Simple::Checker' => '3.28',
8228             'Pod::Simple::Debug' => '3.28',
8229             'Pod::Simple::DumpAsText'=> '3.28',
8230             'Pod::Simple::DumpAsXML'=> '3.28',
8231             'Pod::Simple::HTML' => '3.28',
8232             'Pod::Simple::HTMLBatch'=> '3.28',
8233             'Pod::Simple::LinkSection'=> '3.28',
8234             'Pod::Simple::Methody' => '3.28',
8235             'Pod::Simple::Progress' => '3.28',
8236             'Pod::Simple::PullParser'=> '3.28',
8237             'Pod::Simple::PullParserEndToken'=> '3.28',
8238             'Pod::Simple::PullParserStartToken'=> '3.28',
8239             'Pod::Simple::PullParserTextToken'=> '3.28',
8240             'Pod::Simple::PullParserToken'=> '3.28',
8241             'Pod::Simple::RTF' => '3.28',
8242             'Pod::Simple::Search' => '3.28',
8243             'Pod::Simple::SimpleTree'=> '3.28',
8244             'Pod::Simple::Text' => '3.28',
8245             'Pod::Simple::TextContent'=> '3.28',
8246             'Pod::Simple::TiedOutFH'=> '3.28',
8247             'Pod::Simple::Transcode'=> '3.28',
8248             'Pod::Simple::TranscodeDumb'=> '3.28',
8249             'Pod::Simple::TranscodeSmart'=> '3.28',
8250             'Pod::Simple::XHTML' => '3.28',
8251             'Pod::Simple::XMLOutStream'=> '3.28',
8252             },
8253             removed => {
8254             }
8255             },
8256             5.018001 => {
8257             delta_from => 5.018000,
8258             changed => {
8259             'B' => '1.42_01',
8260             'Config' => '5.018001',
8261             'Digest::SHA' => '5.84_01',
8262             'Module::CoreList' => '2.96',
8263             'Module::CoreList::TieHashDelta'=> '2.96',
8264             'Module::CoreList::Utils'=> '2.96',
8265             },
8266             removed => {
8267             'VMS::Filespec' => 1,
8268             }
8269             },
8270             5.018002 => {
8271             delta_from => 5.018001,
8272             changed => {
8273             'B' => '1.42_02',
8274             'B::Concise' => '0.95_01',
8275             'Config' => '5.018002',
8276             'File::Glob' => '1.20_01',
8277             'Module::CoreList' => '3.03',
8278             'Module::CoreList::TieHashDelta'=> '3.03',
8279             'Module::CoreList::Utils'=> '3.03',
8280             },
8281             },
8282             5.018003 => {
8283             delta_from => 5.018002,
8284             changed => {
8285             'Config' => '5.018003',
8286             'Digest::SHA' => '5.84_02',
8287             'Module::CoreList' => '3.12',
8288             'Module::CoreList::TieHashDelta'=> '3.12',
8289             'Module::CoreList::Utils'=> '3.12',
8290             },
8291             },
8292             5.018004 => {
8293             delta_from => 5.018003,
8294             changed => {
8295             'Config' => '5.018004',
8296             'Module::CoreList' => '3.13',
8297             'Module::CoreList::TieHashDelta'=> '3.13',
8298             'Module::CoreList::Utils'=> '3.13',
8299             },
8300             },
8301             5.019000 => {
8302             delta_from => 5.018000,
8303             changed => {
8304             'Config' => '5.019000',
8305             'Getopt::Std' => '1.08',
8306             'Module::CoreList' => '2.91',
8307             'Module::CoreList::TieHashDelta'=> '2.91',
8308             'Storable' => '2.42',
8309             'feature' => '1.33',
8310             'utf8' => '1.11',
8311             },
8312             removed => {
8313             'Archive::Extract' => 1,
8314             'B::Lint' => 1,
8315             'B::Lint::Debug' => 1,
8316             'CPANPLUS' => 1,
8317             'CPANPLUS::Backend' => 1,
8318             'CPANPLUS::Backend::RV' => 1,
8319             'CPANPLUS::Config' => 1,
8320             'CPANPLUS::Config::HomeEnv'=> 1,
8321             'CPANPLUS::Configure' => 1,
8322             'CPANPLUS::Configure::Setup'=> 1,
8323             'CPANPLUS::Dist' => 1,
8324             'CPANPLUS::Dist::Autobundle'=> 1,
8325             'CPANPLUS::Dist::Base' => 1,
8326             'CPANPLUS::Dist::Build' => 1,
8327             'CPANPLUS::Dist::Build::Constants'=> 1,
8328             'CPANPLUS::Dist::MM' => 1,
8329             'CPANPLUS::Dist::Sample'=> 1,
8330             'CPANPLUS::Error' => 1,
8331             'CPANPLUS::Internals' => 1,
8332             'CPANPLUS::Internals::Constants'=> 1,
8333             'CPANPLUS::Internals::Constants::Report'=> 1,
8334             'CPANPLUS::Internals::Extract'=> 1,
8335             'CPANPLUS::Internals::Fetch'=> 1,
8336             'CPANPLUS::Internals::Report'=> 1,
8337             'CPANPLUS::Internals::Search'=> 1,
8338             'CPANPLUS::Internals::Source'=> 1,
8339             'CPANPLUS::Internals::Source::Memory'=> 1,
8340             'CPANPLUS::Internals::Source::SQLite'=> 1,
8341             'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8342             'CPANPLUS::Internals::Utils'=> 1,
8343             'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8344             'CPANPLUS::Module' => 1,
8345             'CPANPLUS::Module::Author'=> 1,
8346             'CPANPLUS::Module::Author::Fake'=> 1,
8347             'CPANPLUS::Module::Checksums'=> 1,
8348             'CPANPLUS::Module::Fake'=> 1,
8349             'CPANPLUS::Module::Signature'=> 1,
8350             'CPANPLUS::Selfupdate' => 1,
8351             'CPANPLUS::Shell' => 1,
8352             'CPANPLUS::Shell::Classic'=> 1,
8353             'CPANPLUS::Shell::Default'=> 1,
8354             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8355             'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8356             'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8357             'Devel::InnerPackage' => 1,
8358             'File::CheckTree' => 1,
8359             'Log::Message' => 1,
8360             'Log::Message::Config' => 1,
8361             'Log::Message::Handlers'=> 1,
8362             'Log::Message::Item' => 1,
8363             'Log::Message::Simple' => 1,
8364             'Module::Pluggable' => 1,
8365             'Module::Pluggable::Object'=> 1,
8366             'Object::Accessor' => 1,
8367             'Pod::LaTeX' => 1,
8368             'Term::UI' => 1,
8369             'Term::UI::History' => 1,
8370             'Text::Soundex' => 1,
8371             }
8372             },
8373             5.019001 => {
8374             delta_from => 5.019000,
8375             changed => {
8376             'App::Prove' => '3.28',
8377             'App::Prove::State' => '3.28',
8378             'App::Prove::State::Result'=> '3.28',
8379             'App::Prove::State::Result::Test'=> '3.28',
8380             'Archive::Tar' => '1.92',
8381             'Archive::Tar::Constant'=> '1.92',
8382             'Archive::Tar::File' => '1.92',
8383             'Attribute::Handlers' => '0.95',
8384             'B' => '1.43',
8385             'B::Concise' => '0.96',
8386             'B::Deparse' => '1.21',
8387             'B::Showlex' => '1.04',
8388             'Benchmark' => '1.16',
8389             'CPAN::Meta' => '2.131560',
8390             'CPAN::Meta::Converter' => '2.131560',
8391             'CPAN::Meta::Feature' => '2.131560',
8392             'CPAN::Meta::History' => '2.131560',
8393             'CPAN::Meta::Prereqs' => '2.131560',
8394             'CPAN::Meta::Spec' => '2.131560',
8395             'CPAN::Meta::Validator' => '2.131560',
8396             'Carp' => '1.30',
8397             'Carp::Heavy' => '1.30',
8398             'Compress::Raw::Bzip2' => '2.061',
8399             'Compress::Raw::Zlib' => '2.061',
8400             'Compress::Zlib' => '2.061',
8401             'Config' => '5.019001',
8402             'Config::Perl::V' => '0.18',
8403             'Cwd' => '3.41',
8404             'DB' => '1.06',
8405             'DB_File' => '1.828',
8406             'Data::Dumper' => '2.146',
8407             'Encode' => '2.51',
8408             'Encode::CN::HZ' => '2.06',
8409             'Encode::GSM0338' => '2.03',
8410             'Encode::Unicode::UTF7' => '2.07',
8411             'ExtUtils::CBuilder::Base'=> '0.280210',
8412             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8413             'ExtUtils::Command::MM' => '6.68',
8414             'ExtUtils::Install' => '1.60',
8415             'ExtUtils::Liblist' => '6.68',
8416             'ExtUtils::Liblist::Kid'=> '6.68',
8417             'ExtUtils::MM' => '6.68',
8418             'ExtUtils::MM_AIX' => '6.68',
8419             'ExtUtils::MM_Any' => '6.68',
8420             'ExtUtils::MM_BeOS' => '6.68',
8421             'ExtUtils::MM_Cygwin' => '6.68',
8422             'ExtUtils::MM_DOS' => '6.68',
8423             'ExtUtils::MM_Darwin' => '6.68',
8424             'ExtUtils::MM_MacOS' => '6.68',
8425             'ExtUtils::MM_NW5' => '6.68',
8426             'ExtUtils::MM_OS2' => '6.68',
8427             'ExtUtils::MM_QNX' => '6.68',
8428             'ExtUtils::MM_UWIN' => '6.68',
8429             'ExtUtils::MM_Unix' => '6.68',
8430             'ExtUtils::MM_VMS' => '6.68',
8431             'ExtUtils::MM_VOS' => '6.68',
8432             'ExtUtils::MM_Win32' => '6.68',
8433             'ExtUtils::MM_Win95' => '6.68',
8434             'ExtUtils::MY' => '6.68',
8435             'ExtUtils::MakeMaker' => '6.68',
8436             'ExtUtils::MakeMaker::Config'=> '6.68',
8437             'ExtUtils::Mkbootstrap' => '6.68',
8438             'ExtUtils::Mksymlists' => '6.68',
8439             'ExtUtils::ParseXS' => '3.19',
8440             'ExtUtils::testlib' => '6.68',
8441             'Fatal' => '2.19',
8442             'File::Copy' => '2.27',
8443             'File::DosGlob' => '1.11',
8444             'File::Fetch' => '0.42',
8445             'File::Find' => '1.24',
8446             'File::Spec' => '3.41',
8447             'File::Spec::Cygwin' => '3.41',
8448             'File::Spec::Epoc' => '3.41',
8449             'File::Spec::Mac' => '3.41',
8450             'File::Spec::OS2' => '3.41',
8451             'File::Spec::Unix' => '3.41',
8452             'File::Spec::VMS' => '3.41',
8453             'File::Spec::Win32' => '3.41',
8454             'File::Temp' => '0.2301',
8455             'Filter::Simple' => '0.90',
8456             'Filter::Util::Call' => '1.49',
8457             'Getopt::Long' => '2.4',
8458             'HTTP::Tiny' => '0.031',
8459             'Hash::Util::FieldHash' => '1.11',
8460             'IO::Compress::Adapter::Bzip2'=> '2.061',
8461             'IO::Compress::Adapter::Deflate'=> '2.061',
8462             'IO::Compress::Adapter::Identity'=> '2.061',
8463             'IO::Compress::Base' => '2.061',
8464             'IO::Compress::Base::Common'=> '2.061',
8465             'IO::Compress::Bzip2' => '2.061',
8466             'IO::Compress::Deflate' => '2.061',
8467             'IO::Compress::Gzip' => '2.061',
8468             'IO::Compress::Gzip::Constants'=> '2.061',
8469             'IO::Compress::RawDeflate'=> '2.061',
8470             'IO::Compress::Zip' => '2.061',
8471             'IO::Compress::Zip::Constants'=> '2.061',
8472             'IO::Compress::Zlib::Constants'=> '2.061',
8473             'IO::Compress::Zlib::Extra'=> '2.061',
8474             'IO::Handle' => '1.35',
8475             'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8476             'IO::Uncompress::Adapter::Identity'=> '2.061',
8477             'IO::Uncompress::Adapter::Inflate'=> '2.061',
8478             'IO::Uncompress::AnyInflate'=> '2.061',
8479             'IO::Uncompress::AnyUncompress'=> '2.061',
8480             'IO::Uncompress::Base' => '2.061',
8481             'IO::Uncompress::Bunzip2'=> '2.061',
8482             'IO::Uncompress::Gunzip'=> '2.061',
8483             'IO::Uncompress::Inflate'=> '2.061',
8484             'IO::Uncompress::RawInflate'=> '2.061',
8485             'IO::Uncompress::Unzip' => '2.061',
8486             'IPC::Open3' => '1.14',
8487             'Locale::Codes' => '3.26',
8488             'Locale::Codes::Constants'=> '3.26',
8489             'Locale::Codes::Country'=> '3.26',
8490             'Locale::Codes::Country_Codes'=> '3.26',
8491             'Locale::Codes::Country_Retired'=> '3.26',
8492             'Locale::Codes::Currency'=> '3.26',
8493             'Locale::Codes::Currency_Codes'=> '3.26',
8494             'Locale::Codes::Currency_Retired'=> '3.26',
8495             'Locale::Codes::LangExt'=> '3.26',
8496             'Locale::Codes::LangExt_Codes'=> '3.26',
8497             'Locale::Codes::LangExt_Retired'=> '3.26',
8498             'Locale::Codes::LangFam'=> '3.26',
8499             'Locale::Codes::LangFam_Codes'=> '3.26',
8500             'Locale::Codes::LangFam_Retired'=> '3.26',
8501             'Locale::Codes::LangVar'=> '3.26',
8502             'Locale::Codes::LangVar_Codes'=> '3.26',
8503             'Locale::Codes::LangVar_Retired'=> '3.26',
8504             'Locale::Codes::Language'=> '3.26',
8505             'Locale::Codes::Language_Codes'=> '3.26',
8506             'Locale::Codes::Language_Retired'=> '3.26',
8507             'Locale::Codes::Script' => '3.26',
8508             'Locale::Codes::Script_Codes'=> '3.26',
8509             'Locale::Codes::Script_Retired'=> '3.26',
8510             'Locale::Country' => '3.26',
8511             'Locale::Currency' => '3.26',
8512             'Locale::Language' => '3.26',
8513             'Locale::Maketext' => '1.24',
8514             'Locale::Script' => '3.26',
8515             'Math::BigFloat' => '1.999',
8516             'Math::BigInt' => '1.9992',
8517             'Math::BigInt::Calc' => '1.998',
8518             'Math::BigInt::CalcEmu' => '1.9991',
8519             'Math::BigRat' => '0.2606',
8520             'Module::Build' => '0.4005',
8521             'Module::Build::Base' => '0.4005',
8522             'Module::Build::Compat' => '0.4005',
8523             'Module::Build::Config' => '0.4005',
8524             'Module::Build::Cookbook'=> '0.4005',
8525             'Module::Build::Dumper' => '0.4005',
8526             'Module::Build::ModuleInfo'=> '0.4005',
8527             'Module::Build::Notes' => '0.4005',
8528             'Module::Build::PPMMaker'=> '0.4005',
8529             'Module::Build::Platform::Amiga'=> '0.4005',
8530             'Module::Build::Platform::Default'=> '0.4005',
8531             'Module::Build::Platform::EBCDIC'=> '0.4005',
8532             'Module::Build::Platform::MPEiX'=> '0.4005',
8533             'Module::Build::Platform::MacOS'=> '0.4005',
8534             'Module::Build::Platform::RiscOS'=> '0.4005',
8535             'Module::Build::Platform::Unix'=> '0.4005',
8536             'Module::Build::Platform::VMS'=> '0.4005',
8537             'Module::Build::Platform::VOS'=> '0.4005',
8538             'Module::Build::Platform::Windows'=> '0.4005',
8539             'Module::Build::Platform::aix'=> '0.4005',
8540             'Module::Build::Platform::cygwin'=> '0.4005',
8541             'Module::Build::Platform::darwin'=> '0.4005',
8542             'Module::Build::Platform::os2'=> '0.4005',
8543             'Module::Build::PodParser'=> '0.4005',
8544             'Module::CoreList' => '2.92',
8545             'Module::CoreList::TieHashDelta'=> '2.92',
8546             'Module::CoreList::Utils'=> '2.92',
8547             'Module::Metadata' => '1.000014',
8548             'Net::Ping' => '2.42',
8549             'OS2::Process' => '1.09',
8550             'POSIX' => '1.33',
8551             'Pod::Find' => '1.61',
8552             'Pod::Html' => '1.19',
8553             'Pod::InputObjects' => '1.61',
8554             'Pod::ParseUtils' => '1.61',
8555             'Pod::Parser' => '1.61',
8556             'Pod::Perldoc' => '3.20',
8557             'Pod::Perldoc::BaseTo' => '3.20',
8558             'Pod::Perldoc::GetOptsOO'=> '3.20',
8559             'Pod::Perldoc::ToANSI' => '3.20',
8560             'Pod::Perldoc::ToChecker'=> '3.20',
8561             'Pod::Perldoc::ToMan' => '3.20',
8562             'Pod::Perldoc::ToNroff' => '3.20',
8563             'Pod::Perldoc::ToPod' => '3.20',
8564             'Pod::Perldoc::ToRtf' => '3.20',
8565             'Pod::Perldoc::ToTerm' => '3.20',
8566             'Pod::Perldoc::ToText' => '3.20',
8567             'Pod::Perldoc::ToTk' => '3.20',
8568             'Pod::Perldoc::ToXml' => '3.20',
8569             'Pod::Select' => '1.61',
8570             'Pod::Usage' => '1.63',
8571             'Safe' => '2.36',
8572             'Storable' => '2.43',
8573             'Sys::Hostname' => '1.18',
8574             'Sys::Syslog' => '0.33',
8575             'TAP::Base' => '3.28',
8576             'TAP::Formatter::Base' => '3.28',
8577             'TAP::Formatter::Color' => '3.28',
8578             'TAP::Formatter::Console'=> '3.28',
8579             'TAP::Formatter::Console::ParallelSession'=> '3.28',
8580             'TAP::Formatter::Console::Session'=> '3.28',
8581             'TAP::Formatter::File' => '3.28',
8582             'TAP::Formatter::File::Session'=> '3.28',
8583             'TAP::Formatter::Session'=> '3.28',
8584             'TAP::Harness' => '3.28',
8585             'TAP::Object' => '3.28',
8586             'TAP::Parser' => '3.28',
8587             'TAP::Parser::Aggregator'=> '3.28',
8588             'TAP::Parser::Grammar' => '3.28',
8589             'TAP::Parser::Iterator' => '3.28',
8590             'TAP::Parser::Iterator::Array'=> '3.28',
8591             'TAP::Parser::Iterator::Process'=> '3.28',
8592             'TAP::Parser::Iterator::Stream'=> '3.28',
8593             'TAP::Parser::IteratorFactory'=> '3.28',
8594             'TAP::Parser::Multiplexer'=> '3.28',
8595             'TAP::Parser::Result' => '3.28',
8596             'TAP::Parser::Result::Bailout'=> '3.28',
8597             'TAP::Parser::Result::Comment'=> '3.28',
8598             'TAP::Parser::Result::Plan'=> '3.28',
8599             'TAP::Parser::Result::Pragma'=> '3.28',
8600             'TAP::Parser::Result::Test'=> '3.28',
8601             'TAP::Parser::Result::Unknown'=> '3.28',
8602             'TAP::Parser::Result::Version'=> '3.28',
8603             'TAP::Parser::Result::YAML'=> '3.28',
8604             'TAP::Parser::ResultFactory'=> '3.28',
8605             'TAP::Parser::Scheduler'=> '3.28',
8606             'TAP::Parser::Scheduler::Job'=> '3.28',
8607             'TAP::Parser::Scheduler::Spinner'=> '3.28',
8608             'TAP::Parser::Source' => '3.28',
8609             'TAP::Parser::SourceHandler'=> '3.28',
8610             'TAP::Parser::SourceHandler::Executable'=> '3.28',
8611             'TAP::Parser::SourceHandler::File'=> '3.28',
8612             'TAP::Parser::SourceHandler::Handle'=> '3.28',
8613             'TAP::Parser::SourceHandler::Perl'=> '3.28',
8614             'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8615             'TAP::Parser::Utils' => '3.28',
8616             'TAP::Parser::YAMLish::Reader'=> '3.28',
8617             'TAP::Parser::YAMLish::Writer'=> '3.28',
8618             'Term::ReadLine' => '1.13',
8619             'Test::Harness' => '3.28',
8620             'Text::Tabs' => '2013.0523',
8621             'Text::Wrap' => '2013.0523',
8622             'Thread' => '3.04',
8623             'Tie::File' => '1.00',
8624             'Time::Piece' => '1.2002',
8625             'Unicode::Collate' => '0.98',
8626             'Unicode::UCD' => '0.53',
8627             'XS::APItest' => '0.53',
8628             '_charnames' => '1.37',
8629             'autodie' => '2.19',
8630             'autodie::exception' => '2.19',
8631             'autodie::exception::system'=> '2.19',
8632             'autodie::hints' => '2.19',
8633             'autodie::skip' => '2.19',
8634             'bigint' => '0.35',
8635             'charnames' => '1.38',
8636             'encoding' => '2.12',
8637             'inc::latest' => '0.4005',
8638             'mro' => '1.12',
8639             'perlfaq' => '5.0150043',
8640             're' => '0.25',
8641             'threads' => '1.87',
8642             'threads::shared' => '1.44',
8643             'utf8' => '1.12',
8644             },
8645             removed => {
8646             }
8647             },
8648             5.019002 => {
8649             delta_from => 5.019001,
8650             changed => {
8651             'B' => '1.44',
8652             'B::Concise' => '0.98',
8653             'B::Deparse' => '1.22',
8654             'Benchmark' => '1.17',
8655             'Class::Struct' => '0.65',
8656             'Config' => '5.019002',
8657             'DB' => '1.07',
8658             'DBM_Filter' => '0.06',
8659             'DBM_Filter::compress' => '0.03',
8660             'DBM_Filter::encode' => '0.03',
8661             'DBM_Filter::int32' => '0.03',
8662             'DBM_Filter::null' => '0.03',
8663             'DBM_Filter::utf8' => '0.03',
8664             'DB_File' => '1.829',
8665             'Data::Dumper' => '2.147',
8666             'Devel::Peek' => '1.12',
8667             'Digest::MD5' => '2.53',
8668             'Digest::SHA' => '5.85',
8669             'English' => '1.07',
8670             'Errno' => '1.19',
8671             'ExtUtils::Embed' => '1.31',
8672             'ExtUtils::Miniperl' => '1',
8673             'ExtUtils::ParseXS' => '3.21',
8674             'ExtUtils::ParseXS::Constants'=> '3.21',
8675             'ExtUtils::ParseXS::CountLines'=> '3.21',
8676             'ExtUtils::ParseXS::Eval'=> '3.19',
8677             'ExtUtils::ParseXS::Utilities'=> '3.21',
8678             'ExtUtils::Typemaps' => '3.21',
8679             'ExtUtils::Typemaps::Cmd'=> '3.21',
8680             'ExtUtils::Typemaps::InputMap'=> '3.21',
8681             'ExtUtils::Typemaps::OutputMap'=> '3.21',
8682             'ExtUtils::Typemaps::Type'=> '3.21',
8683             'ExtUtils::XSSymSet' => '1.3',
8684             'Fatal' => '2.20',
8685             'File::Basename' => '2.85',
8686             'File::Spec::VMS' => '3.43',
8687             'File::Spec::Win32' => '3.42',
8688             'Getopt::Long' => '2.41',
8689             'Getopt::Std' => '1.09',
8690             'HTTP::Tiny' => '0.034',
8691             'Hash::Util::FieldHash' => '1.12',
8692             'I18N::Langinfo' => '0.11',
8693             'IO::Socket::INET' => '1.34',
8694             'IO::Socket::UNIX' => '1.25',
8695             'IPC::Cmd' => '0.82',
8696             'MIME::Base64' => '3.14',
8697             'Module::CoreList' => '2.94',
8698             'Module::CoreList::TieHashDelta'=> '2.94',
8699             'Module::CoreList::Utils'=> '2.94',
8700             'POSIX' => '1.34',
8701             'Params::Check' => '0.38',
8702             'Parse::CPAN::Meta' => '1.4405',
8703             'Pod::Functions' => '1.07',
8704             'Pod::Html' => '1.2',
8705             'Safe' => '2.37',
8706             'Socket' => '2.010',
8707             'Storable' => '2.45',
8708             'Text::ParseWords' => '3.29',
8709             'Tie::Array' => '1.06',
8710             'Tie::Hash' => '1.05',
8711             'Tie::Scalar' => '1.03',
8712             'Time::Piece' => '1.21',
8713             'Time::Seconds' => '1.21',
8714             'XS::APItest' => '0.54',
8715             'autodie' => '2.20',
8716             'autodie::exception' => '2.20',
8717             'autodie::exception::system'=> '2.20',
8718             'autodie::hints' => '2.20',
8719             'autodie::skip' => '2.20',
8720             'base' => '2.19',
8721             'deprecate' => '0.03',
8722             'if' => '0.0603',
8723             'integer' => '1.01',
8724             'strict' => '1.08',
8725             'subs' => '1.02',
8726             'vmsish' => '1.04',
8727             },
8728             removed => {
8729             }
8730             },
8731             5.019003 => {
8732             delta_from => 5.019002,
8733             changed => {
8734             'B' => '1.45',
8735             'CPAN::Meta' => '2.132140',
8736             'CPAN::Meta::Converter' => '2.132140',
8737             'CPAN::Meta::Feature' => '2.132140',
8738             'CPAN::Meta::History' => '2.132140',
8739             'CPAN::Meta::Prereqs' => '2.132140',
8740             'CPAN::Meta::Spec' => '2.132140',
8741             'CPAN::Meta::Validator' => '2.132140',
8742             'Carp' => '1.31',
8743             'Carp::Heavy' => '1.31',
8744             'Compress::Raw::Bzip2' => '2.062',
8745             'Compress::Raw::Zlib' => '2.062',
8746             'Compress::Zlib' => '2.062',
8747             'Config' => '5.019003',
8748             'Config::Perl::V' => '0.19',
8749             'Cwd' => '3.44',
8750             'Data::Dumper' => '2.148',
8751             'Devel::PPPort' => '3.21',
8752             'Devel::Peek' => '1.13',
8753             'DynaLoader' => '1.19',
8754             'Encode' => '2.52',
8755             'Encode::Alias' => '2.17',
8756             'Encode::Encoding' => '2.06',
8757             'Encode::GSM0338' => '2.04',
8758             'Encode::MIME::Header' => '2.14',
8759             'Encode::Unicode' => '2.08',
8760             'English' => '1.08',
8761             'Exporter' => '5.69',
8762             'Exporter::Heavy' => '5.69',
8763             'ExtUtils::Command::MM' => '6.72',
8764             'ExtUtils::Liblist' => '6.72',
8765             'ExtUtils::Liblist::Kid'=> '6.72',
8766             'ExtUtils::MM' => '6.72',
8767             'ExtUtils::MM_AIX' => '6.72',
8768             'ExtUtils::MM_Any' => '6.72',
8769             'ExtUtils::MM_BeOS' => '6.72',
8770             'ExtUtils::MM_Cygwin' => '6.72',
8771             'ExtUtils::MM_DOS' => '6.72',
8772             'ExtUtils::MM_Darwin' => '6.72',
8773             'ExtUtils::MM_MacOS' => '6.72',
8774             'ExtUtils::MM_NW5' => '6.72',
8775             'ExtUtils::MM_OS2' => '6.72',
8776             'ExtUtils::MM_QNX' => '6.72',
8777             'ExtUtils::MM_UWIN' => '6.72',
8778             'ExtUtils::MM_Unix' => '6.72',
8779             'ExtUtils::MM_VMS' => '6.72',
8780             'ExtUtils::MM_VOS' => '6.72',
8781             'ExtUtils::MM_Win32' => '6.72',
8782             'ExtUtils::MM_Win95' => '6.72',
8783             'ExtUtils::MY' => '6.72',
8784             'ExtUtils::MakeMaker' => '6.72',
8785             'ExtUtils::MakeMaker::Config'=> '6.72',
8786             'ExtUtils::Mkbootstrap' => '6.72',
8787             'ExtUtils::Mksymlists' => '6.72',
8788             'ExtUtils::ParseXS::Eval'=> '3.21',
8789             'ExtUtils::testlib' => '6.72',
8790             'File::Spec' => '3.44',
8791             'File::Spec::Cygwin' => '3.44',
8792             'File::Spec::Epoc' => '3.44',
8793             'File::Spec::Functions' => '3.44',
8794             'File::Spec::Mac' => '3.44',
8795             'File::Spec::OS2' => '3.44',
8796             'File::Spec::Unix' => '3.44',
8797             'File::Spec::VMS' => '3.44',
8798             'File::Spec::Win32' => '3.44',
8799             'Getopt::Std' => '1.10',
8800             'IO::Compress::Adapter::Bzip2'=> '2.062',
8801             'IO::Compress::Adapter::Deflate'=> '2.062',
8802             'IO::Compress::Adapter::Identity'=> '2.062',
8803             'IO::Compress::Base' => '2.062',
8804             'IO::Compress::Base::Common'=> '2.062',
8805             'IO::Compress::Bzip2' => '2.062',
8806             'IO::Compress::Deflate' => '2.062',
8807             'IO::Compress::Gzip' => '2.062',
8808             'IO::Compress::Gzip::Constants'=> '2.062',
8809             'IO::Compress::RawDeflate'=> '2.062',
8810             'IO::Compress::Zip' => '2.062',
8811             'IO::Compress::Zip::Constants'=> '2.062',
8812             'IO::Compress::Zlib::Constants'=> '2.062',
8813             'IO::Compress::Zlib::Extra'=> '2.062',
8814             'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8815             'IO::Uncompress::Adapter::Identity'=> '2.062',
8816             'IO::Uncompress::Adapter::Inflate'=> '2.062',
8817             'IO::Uncompress::AnyInflate'=> '2.062',
8818             'IO::Uncompress::AnyUncompress'=> '2.062',
8819             'IO::Uncompress::Base' => '2.062',
8820             'IO::Uncompress::Bunzip2'=> '2.062',
8821             'IO::Uncompress::Gunzip'=> '2.062',
8822             'IO::Uncompress::Inflate'=> '2.062',
8823             'IO::Uncompress::RawInflate'=> '2.062',
8824             'IO::Uncompress::Unzip' => '2.062',
8825             'IPC::Cmd' => '0.84',
8826             'IPC::Msg' => '2.04',
8827             'IPC::Open3' => '1.15',
8828             'IPC::Semaphore' => '2.04',
8829             'IPC::SharedMem' => '2.04',
8830             'IPC::SysV' => '2.04',
8831             'List::Util' => '1.31',
8832             'List::Util::XS' => '1.31',
8833             'Math::BigFloat::Trace' => '0.36',
8834             'Math::BigInt::Trace' => '0.36',
8835             'Module::Build' => '0.4007',
8836             'Module::Build::Base' => '0.4007',
8837             'Module::Build::Compat' => '0.4007',
8838             'Module::Build::Config' => '0.4007',
8839             'Module::Build::Cookbook'=> '0.4007',
8840             'Module::Build::Dumper' => '0.4007',
8841             'Module::Build::ModuleInfo'=> '0.4007',
8842             'Module::Build::Notes' => '0.4007',
8843             'Module::Build::PPMMaker'=> '0.4007',
8844             'Module::Build::Platform::Default'=> '0.4007',
8845             'Module::Build::Platform::MacOS'=> '0.4007',
8846             'Module::Build::Platform::Unix'=> '0.4007',
8847             'Module::Build::Platform::VMS'=> '0.4007',
8848             'Module::Build::Platform::VOS'=> '0.4007',
8849             'Module::Build::Platform::Windows'=> '0.4007',
8850             'Module::Build::Platform::aix'=> '0.4007',
8851             'Module::Build::Platform::cygwin'=> '0.4007',
8852             'Module::Build::Platform::darwin'=> '0.4007',
8853             'Module::Build::Platform::os2'=> '0.4007',
8854             'Module::Build::PodParser'=> '0.4007',
8855             'Module::CoreList' => '2.97',
8856             'Module::CoreList::TieHashDelta'=> '2.97',
8857             'Module::CoreList::Utils'=> '2.97',
8858             'Net::Cmd' => '2.30',
8859             'Net::Config' => '1.12',
8860             'Net::Domain' => '2.22',
8861             'Net::FTP' => '2.78',
8862             'Net::FTP::dataconn' => '0.12',
8863             'Net::NNTP' => '2.25',
8864             'Net::Netrc' => '2.14',
8865             'Net::POP3' => '2.30',
8866             'Net::SMTP' => '2.32',
8867             'PerlIO' => '1.08',
8868             'Pod::Functions' => '1.08',
8869             'Scalar::Util' => '1.31',
8870             'Socket' => '2.011',
8871             'Storable' => '2.46',
8872             'Time::HiRes' => '1.9726',
8873             'Time::Piece' => '1.22',
8874             'Time::Seconds' => '1.22',
8875             'XS::APItest' => '0.55',
8876             'bigint' => '0.36',
8877             'bignum' => '0.36',
8878             'bigrat' => '0.36',
8879             'constant' => '1.28',
8880             'diagnostics' => '1.32',
8881             'inc::latest' => '0.4007',
8882             'mro' => '1.13',
8883             'parent' => '0.226',
8884             'utf8' => '1.13',
8885             'version' => '0.9903',
8886             },
8887             removed => {
8888             'Module::Build::Platform::Amiga'=> 1,
8889             'Module::Build::Platform::EBCDIC'=> 1,
8890             'Module::Build::Platform::MPEiX'=> 1,
8891             'Module::Build::Platform::RiscOS'=> 1,
8892             }
8893             },
8894             5.019004 => {
8895             delta_from => 5.019003,
8896             changed => {
8897             'B' => '1.46',
8898             'B::Concise' => '0.99',
8899             'B::Deparse' => '1.23',
8900             'CPAN' => '2.03',
8901             'CPAN::Meta' => '2.132620',
8902             'CPAN::Meta::Converter' => '2.132620',
8903             'CPAN::Meta::Feature' => '2.132620',
8904             'CPAN::Meta::History' => '2.132620',
8905             'CPAN::Meta::Prereqs' => '2.132620',
8906             'CPAN::Meta::Requirements'=> '2.123',
8907             'CPAN::Meta::Spec' => '2.132620',
8908             'CPAN::Meta::Validator' => '2.132620',
8909             'Carp' => '1.32',
8910             'Carp::Heavy' => '1.32',
8911             'Config' => '5.019004',
8912             'Data::Dumper' => '2.149',
8913             'Devel::Peek' => '1.14',
8914             'DynaLoader' => '1.20',
8915             'Encode' => '2.55',
8916             'Encode::Alias' => '2.18',
8917             'Encode::CN::HZ' => '2.07',
8918             'Encode::Encoder' => '2.03',
8919             'Encode::Encoding' => '2.07',
8920             'Encode::GSM0338' => '2.05',
8921             'Encode::Guess' => '2.06',
8922             'Encode::JP::JIS7' => '2.05',
8923             'Encode::KR::2022_KR' => '2.03',
8924             'Encode::MIME::Header' => '2.15',
8925             'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8926             'Encode::Unicode' => '2.09',
8927             'Encode::Unicode::UTF7' => '2.08',
8928             'Errno' => '1.20',
8929             'Exporter' => '5.70',
8930             'Exporter::Heavy' => '5.70',
8931             'ExtUtils::CBuilder' => '0.280212',
8932             'ExtUtils::CBuilder::Base'=> '0.280212',
8933             'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8934             'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8935             'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8936             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8937             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8938             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8939             'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8940             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8941             'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8942             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8943             'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8944             'ExtUtils::Command' => '1.18',
8945             'ExtUtils::Command::MM' => '6.76',
8946             'ExtUtils::Liblist' => '6.76',
8947             'ExtUtils::Liblist::Kid'=> '6.76',
8948             'ExtUtils::MM' => '6.76',
8949             'ExtUtils::MM_AIX' => '6.76',
8950             'ExtUtils::MM_Any' => '6.76',
8951             'ExtUtils::MM_BeOS' => '6.76',
8952             'ExtUtils::MM_Cygwin' => '6.76',
8953             'ExtUtils::MM_DOS' => '6.76',
8954             'ExtUtils::MM_Darwin' => '6.76',
8955             'ExtUtils::MM_MacOS' => '6.76',
8956             'ExtUtils::MM_NW5' => '6.76',
8957             'ExtUtils::MM_OS2' => '6.76',
8958             'ExtUtils::MM_QNX' => '6.76',
8959             'ExtUtils::MM_UWIN' => '6.76',
8960             'ExtUtils::MM_Unix' => '6.76',
8961             'ExtUtils::MM_VMS' => '6.76',
8962             'ExtUtils::MM_VOS' => '6.76',
8963             'ExtUtils::MM_Win32' => '6.76',
8964             'ExtUtils::MM_Win95' => '6.76',
8965             'ExtUtils::MY' => '6.76',
8966             'ExtUtils::MakeMaker' => '6.76',
8967             'ExtUtils::MakeMaker::Config'=> '6.76',
8968             'ExtUtils::Mkbootstrap' => '6.76',
8969             'ExtUtils::Mksymlists' => '6.76',
8970             'ExtUtils::ParseXS' => '3.23',
8971             'ExtUtils::ParseXS::Constants'=> '3.23',
8972             'ExtUtils::ParseXS::CountLines'=> '3.23',
8973             'ExtUtils::ParseXS::Eval'=> '3.23',
8974             'ExtUtils::ParseXS::Utilities'=> '3.23',
8975             'ExtUtils::Typemaps' => '3.23',
8976             'ExtUtils::Typemaps::Cmd'=> '3.23',
8977             'ExtUtils::Typemaps::InputMap'=> '3.23',
8978             'ExtUtils::Typemaps::OutputMap'=> '3.23',
8979             'ExtUtils::Typemaps::Type'=> '3.23',
8980             'ExtUtils::testlib' => '6.76',
8981             'Fatal' => '2.21',
8982             'File::Copy' => '2.28',
8983             'File::Find' => '1.25',
8984             'File::Glob' => '1.21',
8985             'FileCache' => '1.09',
8986             'HTTP::Tiny' => '0.035',
8987             'Hash::Util::FieldHash' => '1.13',
8988             'I18N::LangTags' => '0.40',
8989             'IO' => '1.29',
8990             'IO::Socket' => '1.37',
8991             'IPC::Open3' => '1.16',
8992             'JSON::PP' => '2.27202_01',
8993             'List::Util' => '1.32',
8994             'List::Util::XS' => '1.32',
8995             'Locale::Codes' => '3.27',
8996             'Locale::Codes::Constants'=> '3.27',
8997             'Locale::Codes::Country'=> '3.27',
8998             'Locale::Codes::Country_Codes'=> '3.27',
8999             'Locale::Codes::Country_Retired'=> '3.27',
9000             'Locale::Codes::Currency'=> '3.27',
9001             'Locale::Codes::Currency_Codes'=> '3.27',
9002             'Locale::Codes::Currency_Retired'=> '3.27',
9003             'Locale::Codes::LangExt'=> '3.27',
9004             'Locale::Codes::LangExt_Codes'=> '3.27',
9005             'Locale::Codes::LangExt_Retired'=> '3.27',
9006             'Locale::Codes::LangFam'=> '3.27',
9007             'Locale::Codes::LangFam_Codes'=> '3.27',
9008             'Locale::Codes::LangFam_Retired'=> '3.27',
9009             'Locale::Codes::LangVar'=> '3.27',
9010             'Locale::Codes::LangVar_Codes'=> '3.27',
9011             'Locale::Codes::LangVar_Retired'=> '3.27',
9012             'Locale::Codes::Language'=> '3.27',
9013             'Locale::Codes::Language_Codes'=> '3.27',
9014             'Locale::Codes::Language_Retired'=> '3.27',
9015             'Locale::Codes::Script' => '3.27',
9016             'Locale::Codes::Script_Codes'=> '3.27',
9017             'Locale::Codes::Script_Retired'=> '3.27',
9018             'Locale::Country' => '3.27',
9019             'Locale::Currency' => '3.27',
9020             'Locale::Language' => '3.27',
9021             'Locale::Script' => '3.27',
9022             'Math::BigFloat' => '1.9991',
9023             'Math::BigInt' => '1.9993',
9024             'Math::BigInt::FastCalc'=> '0.31',
9025             'Module::CoreList' => '2.99',
9026             'Module::CoreList::TieHashDelta'=> '2.99',
9027             'Module::CoreList::Utils'=> '2.99',
9028             'Module::Load::Conditional'=> '0.58',
9029             'Module::Metadata' => '1.000018',
9030             'Opcode' => '1.26',
9031             'POSIX' => '1.35',
9032             'Parse::CPAN::Meta' => '1.4407',
9033             'Perl::OSType' => '1.005',
9034             'Pod::Html' => '1.21',
9035             'Scalar::Util' => '1.32',
9036             'Socket' => '2.012',
9037             'Storable' => '2.47',
9038             'Term::ReadLine' => '1.14',
9039             'Test::Builder' => '0.98_06',
9040             'Test::Builder::Module' => '0.98_06',
9041             'Test::More' => '0.98_06',
9042             'Test::Simple' => '0.98_06',
9043             'Time::Piece' => '1.23',
9044             'Time::Seconds' => '1.23',
9045             'Unicode::Collate' => '0.99',
9046             'Unicode::UCD' => '0.54',
9047             'XS::APItest' => '0.56',
9048             'XS::Typemap' => '0.11',
9049             '_charnames' => '1.39',
9050             'autodie' => '2.21',
9051             'autodie::exception' => '2.21',
9052             'autodie::exception::system'=> '2.21',
9053             'autodie::hints' => '2.21',
9054             'autodie::skip' => '2.21',
9055             'charnames' => '1.39',
9056             'diagnostics' => '1.33',
9057             'mro' => '1.14',
9058             'parent' => '0.228',
9059             'perlfaq' => '5.0150044',
9060             're' => '0.26',
9061             'version' => '0.9904',
9062             'warnings' => '1.19',
9063             },
9064             removed => {
9065             }
9066             },
9067             5.019005 => {
9068             delta_from => 5.019004,
9069             changed => {
9070             'App::Prove' => '3.29',
9071             'App::Prove::State' => '3.29',
9072             'App::Prove::State::Result'=> '3.29',
9073             'App::Prove::State::Result::Test'=> '3.29',
9074             'CPAN::Meta' => '2.132830',
9075             'CPAN::Meta::Converter' => '2.132830',
9076             'CPAN::Meta::Feature' => '2.132830',
9077             'CPAN::Meta::History' => '2.132830',
9078             'CPAN::Meta::Prereqs' => '2.132830',
9079             'CPAN::Meta::Requirements'=> '2.125',
9080             'CPAN::Meta::Spec' => '2.132830',
9081             'CPAN::Meta::Validator' => '2.132830',
9082             'CPAN::Meta::YAML' => '0.010',
9083             'Config' => '5.019005',
9084             'Cwd' => '3.45',
9085             'ExtUtils::Command::MM' => '6.80',
9086             'ExtUtils::Install' => '1.61',
9087             'ExtUtils::Liblist' => '6.80',
9088             'ExtUtils::Liblist::Kid'=> '6.80',
9089             'ExtUtils::MM' => '6.80',
9090             'ExtUtils::MM_AIX' => '6.80',
9091             'ExtUtils::MM_Any' => '6.80',
9092             'ExtUtils::MM_BeOS' => '6.80',
9093             'ExtUtils::MM_Cygwin' => '6.80',
9094             'ExtUtils::MM_DOS' => '6.80',
9095             'ExtUtils::MM_Darwin' => '6.80',
9096             'ExtUtils::MM_MacOS' => '6.80',
9097             'ExtUtils::MM_NW5' => '6.80',
9098             'ExtUtils::MM_OS2' => '6.80',
9099             'ExtUtils::MM_QNX' => '6.80',
9100             'ExtUtils::MM_UWIN' => '6.80',
9101             'ExtUtils::MM_Unix' => '6.80',
9102             'ExtUtils::MM_VMS' => '6.80',
9103             'ExtUtils::MM_VOS' => '6.80',
9104             'ExtUtils::MM_Win32' => '6.80',
9105             'ExtUtils::MM_Win95' => '6.80',
9106             'ExtUtils::MY' => '6.80',
9107             'ExtUtils::MakeMaker' => '6.80',
9108             'ExtUtils::MakeMaker::Config'=> '6.80',
9109             'ExtUtils::Mkbootstrap' => '6.80',
9110             'ExtUtils::Mksymlists' => '6.80',
9111             'ExtUtils::testlib' => '6.80',
9112             'Fatal' => '2.22',
9113             'File::Fetch' => '0.44',
9114             'File::Glob' => '1.22',
9115             'File::Spec' => '3.45',
9116             'File::Spec::Cygwin' => '3.45',
9117             'File::Spec::Epoc' => '3.45',
9118             'File::Spec::Functions' => '3.45',
9119             'File::Spec::Mac' => '3.45',
9120             'File::Spec::OS2' => '3.45',
9121             'File::Spec::Unix' => '3.45',
9122             'File::Spec::VMS' => '3.45',
9123             'File::Spec::Win32' => '3.45',
9124             'File::Temp' => '0.2304',
9125             'Getopt::Long' => '2.42',
9126             'HTTP::Tiny' => '0.036',
9127             'IPC::Cmd' => '0.84_01',
9128             'JSON::PP' => '2.27203',
9129             'List::Util' => '1.35',
9130             'List::Util::XS' => '1.35',
9131             'Module::CoreList' => '3.00',
9132             'Module::CoreList::TieHashDelta'=> '3.00',
9133             'Module::CoreList::Utils'=> '3.00',
9134             'Module::Metadata' => '1.000019',
9135             'Parse::CPAN::Meta' => '1.4409',
9136             'Perl::OSType' => '1.006',
9137             'PerlIO::scalar' => '0.17',
9138             'Pod::Man' => '2.28',
9139             'Pod::Text' => '3.18',
9140             'Pod::Text::Termcap' => '2.08',
9141             'Scalar::Util' => '1.35',
9142             'TAP::Base' => '3.29',
9143             'TAP::Formatter::Base' => '3.29',
9144             'TAP::Formatter::Color' => '3.29',
9145             'TAP::Formatter::Console'=> '3.29',
9146             'TAP::Formatter::Console::ParallelSession'=> '3.29',
9147             'TAP::Formatter::Console::Session'=> '3.29',
9148             'TAP::Formatter::File' => '3.29',
9149             'TAP::Formatter::File::Session'=> '3.29',
9150             'TAP::Formatter::Session'=> '3.29',
9151             'TAP::Harness' => '3.29',
9152             'TAP::Harness::Env' => '3.29',
9153             'TAP::Object' => '3.29',
9154             'TAP::Parser' => '3.29',
9155             'TAP::Parser::Aggregator'=> '3.29',
9156             'TAP::Parser::Grammar' => '3.29',
9157             'TAP::Parser::Iterator' => '3.29',
9158             'TAP::Parser::Iterator::Array'=> '3.29',
9159             'TAP::Parser::Iterator::Process'=> '3.29',
9160             'TAP::Parser::Iterator::Stream'=> '3.29',
9161             'TAP::Parser::IteratorFactory'=> '3.29',
9162             'TAP::Parser::Multiplexer'=> '3.29',
9163             'TAP::Parser::Result' => '3.29',
9164             'TAP::Parser::Result::Bailout'=> '3.29',
9165             'TAP::Parser::Result::Comment'=> '3.29',
9166             'TAP::Parser::Result::Plan'=> '3.29',
9167             'TAP::Parser::Result::Pragma'=> '3.29',
9168             'TAP::Parser::Result::Test'=> '3.29',
9169             'TAP::Parser::Result::Unknown'=> '3.29',
9170             'TAP::Parser::Result::Version'=> '3.29',
9171             'TAP::Parser::Result::YAML'=> '3.29',
9172             'TAP::Parser::ResultFactory'=> '3.29',
9173             'TAP::Parser::Scheduler'=> '3.29',
9174             'TAP::Parser::Scheduler::Job'=> '3.29',
9175             'TAP::Parser::Scheduler::Spinner'=> '3.29',
9176             'TAP::Parser::Source' => '3.29',
9177             'TAP::Parser::SourceHandler'=> '3.29',
9178             'TAP::Parser::SourceHandler::Executable'=> '3.29',
9179             'TAP::Parser::SourceHandler::File'=> '3.29',
9180             'TAP::Parser::SourceHandler::Handle'=> '3.29',
9181             'TAP::Parser::SourceHandler::Perl'=> '3.29',
9182             'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9183             'TAP::Parser::YAMLish::Reader'=> '3.29',
9184             'TAP::Parser::YAMLish::Writer'=> '3.29',
9185             'Test::Builder' => '0.99',
9186             'Test::Builder::Module' => '0.99',
9187             'Test::Builder::Tester' => '1.23_002',
9188             'Test::Builder::Tester::Color'=> '1.23_002',
9189             'Test::Harness' => '3.29',
9190             'Test::More' => '0.99',
9191             'Test::Simple' => '0.99',
9192             'Unicode' => '6.3.0',
9193             'Unicode::Normalize' => '1.17',
9194             'Unicode::UCD' => '0.55',
9195             'attributes' => '0.22',
9196             'autodie' => '2.22',
9197             'autodie::exception' => '2.22',
9198             'autodie::exception::system'=> '2.22',
9199             'autodie::hints' => '2.22',
9200             'autodie::skip' => '2.22',
9201             'feature' => '1.34',
9202             'threads' => '1.89',
9203             'warnings' => '1.20',
9204             },
9205             removed => {
9206             'TAP::Parser::Utils' => 1,
9207             }
9208             },
9209             5.019006 => {
9210             delta_from => 5.019005,
9211             changed => {
9212             'App::Prove' => '3.30',
9213             'App::Prove::State' => '3.30',
9214             'App::Prove::State::Result'=> '3.30',
9215             'App::Prove::State::Result::Test'=> '3.30',
9216             'Archive::Tar' => '1.96',
9217             'Archive::Tar::Constant'=> '1.96',
9218             'Archive::Tar::File' => '1.96',
9219             'AutoLoader' => '5.74',
9220             'B' => '1.47',
9221             'B::Concise' => '0.991',
9222             'B::Debug' => '1.19',
9223             'B::Deparse' => '1.24',
9224             'Benchmark' => '1.18',
9225             'Compress::Raw::Bzip2' => '2.063',
9226             'Compress::Raw::Zlib' => '2.063',
9227             'Compress::Zlib' => '2.063',
9228             'Config' => '5.019006',
9229             'DB_File' => '1.831',
9230             'Devel::Peek' => '1.15',
9231             'DynaLoader' => '1.21',
9232             'Errno' => '1.20_01',
9233             'ExtUtils::Command::MM' => '6.82',
9234             'ExtUtils::Liblist' => '6.82',
9235             'ExtUtils::Liblist::Kid'=> '6.82',
9236             'ExtUtils::MM' => '6.82',
9237             'ExtUtils::MM_AIX' => '6.82',
9238             'ExtUtils::MM_Any' => '6.82',
9239             'ExtUtils::MM_BeOS' => '6.82',
9240             'ExtUtils::MM_Cygwin' => '6.82',
9241             'ExtUtils::MM_DOS' => '6.82',
9242             'ExtUtils::MM_Darwin' => '6.82',
9243             'ExtUtils::MM_MacOS' => '6.82',
9244             'ExtUtils::MM_NW5' => '6.82',
9245             'ExtUtils::MM_OS2' => '6.82',
9246             'ExtUtils::MM_QNX' => '6.82',
9247             'ExtUtils::MM_UWIN' => '6.82',
9248             'ExtUtils::MM_Unix' => '6.82',
9249             'ExtUtils::MM_VMS' => '6.82',
9250             'ExtUtils::MM_VOS' => '6.82',
9251             'ExtUtils::MM_Win32' => '6.82',
9252             'ExtUtils::MM_Win95' => '6.82',
9253             'ExtUtils::MY' => '6.82',
9254             'ExtUtils::MakeMaker' => '6.82',
9255             'ExtUtils::MakeMaker::Config'=> '6.82',
9256             'ExtUtils::Mkbootstrap' => '6.82',
9257             'ExtUtils::Mksymlists' => '6.82',
9258             'ExtUtils::testlib' => '6.82',
9259             'File::DosGlob' => '1.12',
9260             'File::Find' => '1.26',
9261             'File::Glob' => '1.23',
9262             'HTTP::Tiny' => '0.038',
9263             'IO' => '1.30',
9264             'IO::Compress::Adapter::Bzip2'=> '2.063',
9265             'IO::Compress::Adapter::Deflate'=> '2.063',
9266             'IO::Compress::Adapter::Identity'=> '2.063',
9267             'IO::Compress::Base' => '2.063',
9268             'IO::Compress::Base::Common'=> '2.063',
9269             'IO::Compress::Bzip2' => '2.063',
9270             'IO::Compress::Deflate' => '2.063',
9271             'IO::Compress::Gzip' => '2.063',
9272             'IO::Compress::Gzip::Constants'=> '2.063',
9273             'IO::Compress::RawDeflate'=> '2.063',
9274             'IO::Compress::Zip' => '2.063',
9275             'IO::Compress::Zip::Constants'=> '2.063',
9276             'IO::Compress::Zlib::Constants'=> '2.063',
9277             'IO::Compress::Zlib::Extra'=> '2.063',
9278             'IO::Select' => '1.22',
9279             'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9280             'IO::Uncompress::Adapter::Identity'=> '2.063',
9281             'IO::Uncompress::Adapter::Inflate'=> '2.063',
9282             'IO::Uncompress::AnyInflate'=> '2.063',
9283             'IO::Uncompress::AnyUncompress'=> '2.063',
9284             'IO::Uncompress::Base' => '2.063',
9285             'IO::Uncompress::Bunzip2'=> '2.063',
9286             'IO::Uncompress::Gunzip'=> '2.063',
9287             'IO::Uncompress::Inflate'=> '2.063',
9288             'IO::Uncompress::RawInflate'=> '2.063',
9289             'IO::Uncompress::Unzip' => '2.063',
9290             'IPC::Cmd' => '0.90',
9291             'Locale::Maketext' => '1.25',
9292             'Module::Build' => '0.4202',
9293             'Module::Build::Base' => '0.4202',
9294             'Module::Build::Compat' => '0.4202',
9295             'Module::Build::Config' => '0.4202',
9296             'Module::Build::Cookbook'=> '0.4202',
9297             'Module::Build::Dumper' => '0.4202',
9298             'Module::Build::ModuleInfo'=> '0.4202',
9299             'Module::Build::Notes' => '0.4202',
9300             'Module::Build::PPMMaker'=> '0.4202',
9301             'Module::Build::Platform::Default'=> '0.4202',
9302             'Module::Build::Platform::MacOS'=> '0.4202',
9303             'Module::Build::Platform::Unix'=> '0.4202',
9304             'Module::Build::Platform::VMS'=> '0.4202',
9305             'Module::Build::Platform::VOS'=> '0.4202',
9306             'Module::Build::Platform::Windows'=> '0.4202',
9307             'Module::Build::Platform::aix'=> '0.4202',
9308             'Module::Build::Platform::cygwin'=> '0.4202',
9309             'Module::Build::Platform::darwin'=> '0.4202',
9310             'Module::Build::Platform::os2'=> '0.4202',
9311             'Module::Build::PodParser'=> '0.4202',
9312             'Module::CoreList' => '3.01',
9313             'Module::CoreList::TieHashDelta'=> '3.01',
9314             'Module::CoreList::Utils'=> '3.01',
9315             'Opcode' => '1.27',
9316             'POSIX' => '1.36',
9317             'Package::Constants' => '0.04',
9318             'PerlIO::scalar' => '0.18',
9319             'PerlIO::via' => '0.13',
9320             'SDBM_File' => '1.10',
9321             'Socket' => '2.013',
9322             'TAP::Base' => '3.30',
9323             'TAP::Formatter::Base' => '3.30',
9324             'TAP::Formatter::Color' => '3.30',
9325             'TAP::Formatter::Console'=> '3.30',
9326             'TAP::Formatter::Console::ParallelSession'=> '3.30',
9327             'TAP::Formatter::Console::Session'=> '3.30',
9328             'TAP::Formatter::File' => '3.30',
9329             'TAP::Formatter::File::Session'=> '3.30',
9330             'TAP::Formatter::Session'=> '3.30',
9331             'TAP::Harness' => '3.30',
9332             'TAP::Harness::Env' => '3.30',
9333             'TAP::Object' => '3.30',
9334             'TAP::Parser' => '3.30',
9335             'TAP::Parser::Aggregator'=> '3.30',
9336             'TAP::Parser::Grammar' => '3.30',
9337             'TAP::Parser::Iterator' => '3.30',
9338             'TAP::Parser::Iterator::Array'=> '3.30',
9339             'TAP::Parser::Iterator::Process'=> '3.30',
9340             'TAP::Parser::Iterator::Stream'=> '3.30',
9341             'TAP::Parser::IteratorFactory'=> '3.30',
9342             'TAP::Parser::Multiplexer'=> '3.30',
9343             'TAP::Parser::Result' => '3.30',
9344             'TAP::Parser::Result::Bailout'=> '3.30',
9345             'TAP::Parser::Result::Comment'=> '3.30',
9346             'TAP::Parser::Result::Plan'=> '3.30',
9347             'TAP::Parser::Result::Pragma'=> '3.30',
9348             'TAP::Parser::Result::Test'=> '3.30',
9349             'TAP::Parser::Result::Unknown'=> '3.30',
9350             'TAP::Parser::Result::Version'=> '3.30',
9351             'TAP::Parser::Result::YAML'=> '3.30',
9352             'TAP::Parser::ResultFactory'=> '3.30',
9353             'TAP::Parser::Scheduler'=> '3.30',
9354             'TAP::Parser::Scheduler::Job'=> '3.30',
9355             'TAP::Parser::Scheduler::Spinner'=> '3.30',
9356             'TAP::Parser::Source' => '3.30',
9357             'TAP::Parser::SourceHandler'=> '3.30',
9358             'TAP::Parser::SourceHandler::Executable'=> '3.30',
9359             'TAP::Parser::SourceHandler::File'=> '3.30',
9360             'TAP::Parser::SourceHandler::Handle'=> '3.30',
9361             'TAP::Parser::SourceHandler::Perl'=> '3.30',
9362             'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9363             'TAP::Parser::YAMLish::Reader'=> '3.30',
9364             'TAP::Parser::YAMLish::Writer'=> '3.30',
9365             'Term::Cap' => '1.15',
9366             'Test::Builder' => '1.001002',
9367             'Test::Builder::Module' => '1.001002',
9368             'Test::Harness' => '3.30',
9369             'Test::More' => '1.001002',
9370             'Test::Simple' => '1.001002',
9371             'Tie::StdHandle' => '4.4',
9372             'Unicode::Collate' => '1.02',
9373             'Unicode::Collate::CJK::Korean'=> '1.02',
9374             'Unicode::Collate::Locale'=> '1.02',
9375             'XS::APItest' => '0.57',
9376             'XS::Typemap' => '0.12',
9377             'arybase' => '0.07',
9378             'bignum' => '0.37',
9379             'constant' => '1.29',
9380             'fields' => '2.17',
9381             'inc::latest' => '0.4202',
9382             'threads' => '1.90',
9383             'threads::shared' => '1.45',
9384             },
9385             removed => {
9386             }
9387             },
9388             5.019007 => {
9389             delta_from => 5.019006,
9390             changed => {
9391             'CGI' => '3.64',
9392             'CGI::Apache' => '1.02',
9393             'CGI::Carp' => '3.64',
9394             'CGI::Cookie' => '1.31',
9395             'CGI::Fast' => '1.10',
9396             'CGI::Pretty' => '3.64',
9397             'CGI::Push' => '1.06',
9398             'CGI::Switch' => '1.02',
9399             'CGI::Util' => '3.64',
9400             'CPAN::Meta' => '2.133380',
9401             'CPAN::Meta::Converter' => '2.133380',
9402             'CPAN::Meta::Feature' => '2.133380',
9403             'CPAN::Meta::History' => '2.133380',
9404             'CPAN::Meta::Prereqs' => '2.133380',
9405             'CPAN::Meta::Spec' => '2.133380',
9406             'CPAN::Meta::Validator' => '2.133380',
9407             'Config' => '5.019007',
9408             'Data::Dumper' => '2.150',
9409             'DynaLoader' => '1.22',
9410             'ExtUtils::Command::MM' => '6.84',
9411             'ExtUtils::Liblist' => '6.84',
9412             'ExtUtils::Liblist::Kid'=> '6.84',
9413             'ExtUtils::MM' => '6.84',
9414             'ExtUtils::MM_AIX' => '6.84',
9415             'ExtUtils::MM_Any' => '6.84',
9416             'ExtUtils::MM_BeOS' => '6.84',
9417             'ExtUtils::MM_Cygwin' => '6.84',
9418             'ExtUtils::MM_DOS' => '6.84',
9419             'ExtUtils::MM_Darwin' => '6.84',
9420             'ExtUtils::MM_MacOS' => '6.84',
9421             'ExtUtils::MM_NW5' => '6.84',
9422             'ExtUtils::MM_OS2' => '6.84',
9423             'ExtUtils::MM_QNX' => '6.84',
9424             'ExtUtils::MM_UWIN' => '6.84',
9425             'ExtUtils::MM_Unix' => '6.84',
9426             'ExtUtils::MM_VMS' => '6.84',
9427             'ExtUtils::MM_VOS' => '6.84',
9428             'ExtUtils::MM_Win32' => '6.84',
9429             'ExtUtils::MM_Win95' => '6.84',
9430             'ExtUtils::MY' => '6.84',
9431             'ExtUtils::MakeMaker' => '6.84',
9432             'ExtUtils::MakeMaker::Config'=> '6.84',
9433             'ExtUtils::Mkbootstrap' => '6.84',
9434             'ExtUtils::Mksymlists' => '6.84',
9435             'ExtUtils::testlib' => '6.84',
9436             'File::Fetch' => '0.46',
9437             'HTTP::Tiny' => '0.039',
9438             'Locale::Codes' => '3.28',
9439             'Locale::Codes::Constants'=> '3.28',
9440             'Locale::Codes::Country'=> '3.28',
9441             'Locale::Codes::Country_Codes'=> '3.28',
9442             'Locale::Codes::Country_Retired'=> '3.28',
9443             'Locale::Codes::Currency'=> '3.28',
9444             'Locale::Codes::Currency_Codes'=> '3.28',
9445             'Locale::Codes::Currency_Retired'=> '3.28',
9446             'Locale::Codes::LangExt'=> '3.28',
9447             'Locale::Codes::LangExt_Codes'=> '3.28',
9448             'Locale::Codes::LangExt_Retired'=> '3.28',
9449             'Locale::Codes::LangFam'=> '3.28',
9450             'Locale::Codes::LangFam_Codes'=> '3.28',
9451             'Locale::Codes::LangFam_Retired'=> '3.28',
9452             'Locale::Codes::LangVar'=> '3.28',
9453             'Locale::Codes::LangVar_Codes'=> '3.28',
9454             'Locale::Codes::LangVar_Retired'=> '3.28',
9455             'Locale::Codes::Language'=> '3.28',
9456             'Locale::Codes::Language_Codes'=> '3.28',
9457             'Locale::Codes::Language_Retired'=> '3.28',
9458             'Locale::Codes::Script' => '3.28',
9459             'Locale::Codes::Script_Codes'=> '3.28',
9460             'Locale::Codes::Script_Retired'=> '3.28',
9461             'Locale::Country' => '3.28',
9462             'Locale::Currency' => '3.28',
9463             'Locale::Language' => '3.28',
9464             'Locale::Script' => '3.28',
9465             'Module::Build' => '0.4203',
9466             'Module::Build::Base' => '0.4203',
9467             'Module::Build::Compat' => '0.4203',
9468             'Module::Build::Config' => '0.4203',
9469             'Module::Build::Cookbook'=> '0.4203',
9470             'Module::Build::Dumper' => '0.4203',
9471             'Module::Build::ModuleInfo'=> '0.4203',
9472             'Module::Build::Notes' => '0.4203',
9473             'Module::Build::PPMMaker'=> '0.4203',
9474             'Module::Build::Platform::Default'=> '0.4203',
9475             'Module::Build::Platform::MacOS'=> '0.4203',
9476             'Module::Build::Platform::Unix'=> '0.4203',
9477             'Module::Build::Platform::VMS'=> '0.4203',
9478             'Module::Build::Platform::VOS'=> '0.4203',
9479             'Module::Build::Platform::Windows'=> '0.4203',
9480             'Module::Build::Platform::aix'=> '0.4203',
9481             'Module::Build::Platform::cygwin'=> '0.4203',
9482             'Module::Build::Platform::darwin'=> '0.4203',
9483             'Module::Build::Platform::os2'=> '0.4203',
9484             'Module::Build::PodParser'=> '0.4203',
9485             'Module::CoreList' => '3.02',
9486             'Module::CoreList::TieHashDelta'=> '3.02',
9487             'Module::CoreList::Utils'=> '3.02',
9488             'POSIX' => '1.37',
9489             'PerlIO::encoding' => '0.17',
9490             'PerlIO::via' => '0.14',
9491             'SDBM_File' => '1.11',
9492             'Storable' => '2.48',
9493             'Time::Piece' => '1.24',
9494             'Time::Seconds' => '1.24',
9495             'Unicode::Collate' => '1.04',
9496             'Win32' => '0.48',
9497             'XS::APItest' => '0.58',
9498             'base' => '2.20',
9499             'constant' => '1.30',
9500             'inc::latest' => '0.4203',
9501             'threads' => '1.91',
9502             },
9503             removed => {
9504             }
9505             },
9506             5.019008 => {
9507             delta_from => 5.019007,
9508             changed => {
9509             'Config' => '5.019008',
9510             'DynaLoader' => '1.24',
9511             'Encode' => '2.57',
9512             'Errno' => '1.20_02',
9513             'ExtUtils::CBuilder' => '0.280213',
9514             'ExtUtils::CBuilder::Base'=> '0.280213',
9515             'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9516             'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9517             'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9518             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9519             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9520             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9521             'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9522             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9523             'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9524             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9525             'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9526             'ExtUtils::Command::MM' => '6.86',
9527             'ExtUtils::Liblist' => '6.86',
9528             'ExtUtils::Liblist::Kid'=> '6.86',
9529             'ExtUtils::MM' => '6.86',
9530             'ExtUtils::MM_AIX' => '6.86',
9531             'ExtUtils::MM_Any' => '6.86',
9532             'ExtUtils::MM_BeOS' => '6.86',
9533             'ExtUtils::MM_Cygwin' => '6.86',
9534             'ExtUtils::MM_DOS' => '6.86',
9535             'ExtUtils::MM_Darwin' => '6.86',
9536             'ExtUtils::MM_MacOS' => '6.86',
9537             'ExtUtils::MM_NW5' => '6.86',
9538             'ExtUtils::MM_OS2' => '6.86',
9539             'ExtUtils::MM_QNX' => '6.86',
9540             'ExtUtils::MM_UWIN' => '6.86',
9541             'ExtUtils::MM_Unix' => '6.86',
9542             'ExtUtils::MM_VMS' => '6.86',
9543             'ExtUtils::MM_VOS' => '6.86',
9544             'ExtUtils::MM_Win32' => '6.86',
9545             'ExtUtils::MM_Win95' => '6.86',
9546             'ExtUtils::MY' => '6.86',
9547             'ExtUtils::MakeMaker' => '6.86',
9548             'ExtUtils::MakeMaker::Config'=> '6.86',
9549             'ExtUtils::Mkbootstrap' => '6.86',
9550             'ExtUtils::Mksymlists' => '6.86',
9551             'ExtUtils::testlib' => '6.86',
9552             'File::Copy' => '2.29',
9553             'Hash::Util::FieldHash' => '1.14',
9554             'IO::Socket::IP' => '0.26',
9555             'IO::Socket::UNIX' => '1.26',
9556             'List::Util' => '1.36',
9557             'List::Util::XS' => '1.36',
9558             'Module::Build' => '0.4204',
9559             'Module::Build::Base' => '0.4204',
9560             'Module::Build::Compat' => '0.4204',
9561             'Module::Build::Config' => '0.4204',
9562             'Module::Build::Cookbook'=> '0.4204',
9563             'Module::Build::Dumper' => '0.4204',
9564             'Module::Build::ModuleInfo'=> '0.4204',
9565             'Module::Build::Notes' => '0.4204',
9566             'Module::Build::PPMMaker'=> '0.4204',
9567             'Module::Build::Platform::Default'=> '0.4204',
9568             'Module::Build::Platform::MacOS'=> '0.4204',
9569             'Module::Build::Platform::Unix'=> '0.4204',
9570             'Module::Build::Platform::VMS'=> '0.4204',
9571             'Module::Build::Platform::VOS'=> '0.4204',
9572             'Module::Build::Platform::Windows'=> '0.4204',
9573             'Module::Build::Platform::aix'=> '0.4204',
9574             'Module::Build::Platform::cygwin'=> '0.4204',
9575             'Module::Build::Platform::darwin'=> '0.4204',
9576             'Module::Build::Platform::os2'=> '0.4204',
9577             'Module::Build::PodParser'=> '0.4204',
9578             'Module::CoreList' => '3.04',
9579             'Module::CoreList::TieHashDelta'=> '3.04',
9580             'Module::CoreList::Utils'=> '3.04',
9581             'Module::Load' => '0.28',
9582             'Module::Load::Conditional'=> '0.60',
9583             'Net::Config' => '1.13',
9584             'Net::FTP::A' => '1.19',
9585             'POSIX' => '1.38_01',
9586             'Perl::OSType' => '1.007',
9587             'PerlIO::encoding' => '0.18',
9588             'Pod::Perldoc' => '3.21',
9589             'Pod::Perldoc::BaseTo' => '3.21',
9590             'Pod::Perldoc::GetOptsOO'=> '3.21',
9591             'Pod::Perldoc::ToANSI' => '3.21',
9592             'Pod::Perldoc::ToChecker'=> '3.21',
9593             'Pod::Perldoc::ToMan' => '3.21',
9594             'Pod::Perldoc::ToNroff' => '3.21',
9595             'Pod::Perldoc::ToPod' => '3.21',
9596             'Pod::Perldoc::ToRtf' => '3.21',
9597             'Pod::Perldoc::ToTerm' => '3.21',
9598             'Pod::Perldoc::ToText' => '3.21',
9599             'Pod::Perldoc::ToTk' => '3.21',
9600             'Pod::Perldoc::ToXml' => '3.21',
9601             'Scalar::Util' => '1.36',
9602             'Time::Piece' => '1.27',
9603             'Time::Seconds' => '1.27',
9604             'Unicode::UCD' => '0.57',
9605             'XS::APItest' => '0.59',
9606             'XSLoader' => '0.17',
9607             'base' => '2.21',
9608             'constant' => '1.31',
9609             'inc::latest' => '0.4204',
9610             'threads::shared' => '1.46',
9611             'version' => '0.9907',
9612             'version::regex' => '0.9907',
9613             'version::vpp' => '0.9907',
9614             'warnings' => '1.21',
9615             },
9616             removed => {
9617             }
9618             },
9619             5.019009 => {
9620             delta_from => 5.019008,
9621             changed => {
9622             'B' => '1.48',
9623             'B::Concise' => '0.992',
9624             'B::Deparse' => '1.25',
9625             'CGI' => '3.65',
9626             'CPAN::Meta::YAML' => '0.011',
9627             'Compress::Raw::Bzip2' => '2.064',
9628             'Compress::Raw::Zlib' => '2.065',
9629             'Compress::Zlib' => '2.064',
9630             'Config' => '5.019009',
9631             'Config::Perl::V' => '0.20',
9632             'Cwd' => '3.47',
9633             'Devel::Peek' => '1.16',
9634             'Digest::SHA' => '5.87',
9635             'DynaLoader' => '1.25',
9636             'English' => '1.09',
9637             'ExtUtils::CBuilder' => '0.280216',
9638             'ExtUtils::CBuilder::Base'=> '0.280216',
9639             'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9640             'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9641             'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9642             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9643             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9644             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9645             'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9646             'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9647             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9648             'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9649             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9650             'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9651             'ExtUtils::Command::MM' => '6.88',
9652             'ExtUtils::Embed' => '1.32',
9653             'ExtUtils::Install' => '1.62',
9654             'ExtUtils::Installed' => '1.999004',
9655             'ExtUtils::Liblist' => '6.88',
9656             'ExtUtils::Liblist::Kid'=> '6.88',
9657             'ExtUtils::MM' => '6.88',
9658             'ExtUtils::MM_AIX' => '6.88',
9659             'ExtUtils::MM_Any' => '6.88',
9660             'ExtUtils::MM_BeOS' => '6.88',
9661             'ExtUtils::MM_Cygwin' => '6.88',
9662             'ExtUtils::MM_DOS' => '6.88',
9663             'ExtUtils::MM_Darwin' => '6.88',
9664             'ExtUtils::MM_MacOS' => '6.88',
9665             'ExtUtils::MM_NW5' => '6.88',
9666             'ExtUtils::MM_OS2' => '6.88',
9667             'ExtUtils::MM_QNX' => '6.88',
9668             'ExtUtils::MM_UWIN' => '6.88',
9669             'ExtUtils::MM_Unix' => '6.88',
9670             'ExtUtils::MM_VMS' => '6.88',
9671             'ExtUtils::MM_VOS' => '6.88',
9672             'ExtUtils::MM_Win32' => '6.88',
9673             'ExtUtils::MM_Win95' => '6.88',
9674             'ExtUtils::MY' => '6.88',
9675             'ExtUtils::MakeMaker' => '6.88',
9676             'ExtUtils::MakeMaker::Config'=> '6.88',
9677             'ExtUtils::Mkbootstrap' => '6.88',
9678             'ExtUtils::Mksymlists' => '6.88',
9679             'ExtUtils::Packlist' => '1.47',
9680             'ExtUtils::testlib' => '6.88',
9681             'Fatal' => '2.23',
9682             'File::Fetch' => '0.48',
9683             'File::Spec' => '3.47',
9684             'File::Spec::Cygwin' => '3.47',
9685             'File::Spec::Epoc' => '3.47',
9686             'File::Spec::Functions' => '3.47',
9687             'File::Spec::Mac' => '3.47',
9688             'File::Spec::OS2' => '3.47',
9689             'File::Spec::Unix' => '3.47',
9690             'File::Spec::VMS' => '3.47',
9691             'File::Spec::Win32' => '3.47',
9692             'HTTP::Tiny' => '0.042',
9693             'IO::Compress::Adapter::Bzip2'=> '2.064',
9694             'IO::Compress::Adapter::Deflate'=> '2.064',
9695             'IO::Compress::Adapter::Identity'=> '2.064',
9696             'IO::Compress::Base' => '2.064',
9697             'IO::Compress::Base::Common'=> '2.064',
9698             'IO::Compress::Bzip2' => '2.064',
9699             'IO::Compress::Deflate' => '2.064',
9700             'IO::Compress::Gzip' => '2.064',
9701             'IO::Compress::Gzip::Constants'=> '2.064',
9702             'IO::Compress::RawDeflate'=> '2.064',
9703             'IO::Compress::Zip' => '2.064',
9704             'IO::Compress::Zip::Constants'=> '2.064',
9705             'IO::Compress::Zlib::Constants'=> '2.064',
9706             'IO::Compress::Zlib::Extra'=> '2.064',
9707             'IO::Socket::INET' => '1.35',
9708             'IO::Socket::IP' => '0.28',
9709             'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9710             'IO::Uncompress::Adapter::Identity'=> '2.064',
9711             'IO::Uncompress::Adapter::Inflate'=> '2.064',
9712             'IO::Uncompress::AnyInflate'=> '2.064',
9713             'IO::Uncompress::AnyUncompress'=> '2.064',
9714             'IO::Uncompress::Base' => '2.064',
9715             'IO::Uncompress::Bunzip2'=> '2.064',
9716             'IO::Uncompress::Gunzip'=> '2.064',
9717             'IO::Uncompress::Inflate'=> '2.064',
9718             'IO::Uncompress::RawInflate'=> '2.064',
9719             'IO::Uncompress::Unzip' => '2.064',
9720             'IPC::Cmd' => '0.92',
9721             'List::Util' => '1.38',
9722             'List::Util::XS' => '1.38',
9723             'Locale::Codes' => '3.29',
9724             'Locale::Codes::Constants'=> '3.29',
9725             'Locale::Codes::Country'=> '3.29',
9726             'Locale::Codes::Country_Codes'=> '3.29',
9727             'Locale::Codes::Country_Retired'=> '3.29',
9728             'Locale::Codes::Currency'=> '3.29',
9729             'Locale::Codes::Currency_Codes'=> '3.29',
9730             'Locale::Codes::Currency_Retired'=> '3.29',
9731             'Locale::Codes::LangExt'=> '3.29',
9732             'Locale::Codes::LangExt_Codes'=> '3.29',
9733             'Locale::Codes::LangExt_Retired'=> '3.29',
9734             'Locale::Codes::LangFam'=> '3.29',
9735             'Locale::Codes::LangFam_Codes'=> '3.29',
9736             'Locale::Codes::LangFam_Retired'=> '3.29',
9737             'Locale::Codes::LangVar'=> '3.29',
9738             'Locale::Codes::LangVar_Codes'=> '3.29',
9739             'Locale::Codes::LangVar_Retired'=> '3.29',
9740             'Locale::Codes::Language'=> '3.29',
9741             'Locale::Codes::Language_Codes'=> '3.29',
9742             'Locale::Codes::Language_Retired'=> '3.29',
9743             'Locale::Codes::Script' => '3.29',
9744             'Locale::Codes::Script_Codes'=> '3.29',
9745             'Locale::Codes::Script_Retired'=> '3.29',
9746             'Locale::Country' => '3.29',
9747             'Locale::Currency' => '3.29',
9748             'Locale::Language' => '3.29',
9749             'Locale::Script' => '3.29',
9750             'Module::Build' => '0.4205',
9751             'Module::Build::Base' => '0.4205',
9752             'Module::Build::Compat' => '0.4205',
9753             'Module::Build::Config' => '0.4205',
9754             'Module::Build::Cookbook'=> '0.4205',
9755             'Module::Build::Dumper' => '0.4205',
9756             'Module::Build::ModuleInfo'=> '0.4205',
9757             'Module::Build::Notes' => '0.4205',
9758             'Module::Build::PPMMaker'=> '0.4205',
9759             'Module::Build::Platform::Default'=> '0.4205',
9760             'Module::Build::Platform::MacOS'=> '0.4205',
9761             'Module::Build::Platform::Unix'=> '0.4205',
9762             'Module::Build::Platform::VMS'=> '0.4205',
9763             'Module::Build::Platform::VOS'=> '0.4205',
9764             'Module::Build::Platform::Windows'=> '0.4205',
9765             'Module::Build::Platform::aix'=> '0.4205',
9766             'Module::Build::Platform::cygwin'=> '0.4205',
9767             'Module::Build::Platform::darwin'=> '0.4205',
9768             'Module::Build::Platform::os2'=> '0.4205',
9769             'Module::Build::PodParser'=> '0.4205',
9770             'Module::CoreList' => '3.06',
9771             'Module::CoreList::TieHashDelta'=> '3.06',
9772             'Module::CoreList::Utils'=> '3.06',
9773             'Module::Load' => '0.30',
9774             'Module::Load::Conditional'=> '0.62',
9775             'Net::Domain' => '2.23',
9776             'Net::FTP' => '2.79',
9777             'Net::NNTP' => '2.26',
9778             'Net::POP3' => '2.31',
9779             'Net::Ping' => '2.43',
9780             'Net::SMTP' => '2.33',
9781             'POSIX' => '1.38_02',
9782             'Parse::CPAN::Meta' => '1.4413',
9783             'Pod::Escapes' => '1.06',
9784             'Pod::Find' => '1.62',
9785             'Pod::InputObjects' => '1.62',
9786             'Pod::ParseUtils' => '1.62',
9787             'Pod::Parser' => '1.62',
9788             'Pod::Select' => '1.62',
9789             'Scalar::Util' => '1.38',
9790             'autodie' => '2.23',
9791             'autodie::exception' => '2.23',
9792             'autodie::exception::system'=> '2.23',
9793             'autodie::hints' => '2.23',
9794             'autodie::skip' => '2.23',
9795             'diagnostics' => '1.34',
9796             'feature' => '1.35',
9797             'inc::latest' => '0.4205',
9798             'locale' => '1.03',
9799             'mro' => '1.15',
9800             'threads' => '1.92',
9801             'version' => '0.9908',
9802             'version::regex' => '0.9908',
9803             'version::vpp' => '0.9908',
9804             'warnings' => '1.22',
9805             },
9806             removed => {
9807             }
9808             },
9809             5.01901 => {
9810             delta_from => 5.019009,
9811             changed => {
9812             'App::Cpan' => '1.62',
9813             'Attribute::Handlers' => '0.96',
9814             'B::Deparse' => '1.26',
9815             'CPAN' => '2.04',
9816             'CPAN::Bundle' => '5.5001',
9817             'CPAN::Complete' => '5.5001',
9818             'CPAN::Distribution' => '2.01',
9819             'CPAN::Distroprefs' => '6.0001',
9820             'CPAN::FirstTime' => '5.5305',
9821             'CPAN::Meta' => '2.140640',
9822             'CPAN::Meta::Converter' => '2.140640',
9823             'CPAN::Meta::Feature' => '2.140640',
9824             'CPAN::Meta::History' => '2.140640',
9825             'CPAN::Meta::Prereqs' => '2.140640',
9826             'CPAN::Meta::Spec' => '2.140640',
9827             'CPAN::Meta::Validator' => '2.140640',
9828             'CPAN::Meta::YAML' => '0.012',
9829             'CPAN::Queue' => '5.5002',
9830             'CPAN::Shell' => '5.5003',
9831             'CPAN::Tarzip' => '5.5012',
9832             'CPAN::Version' => '5.5003',
9833             'Carp' => '1.33',
9834             'Carp::Heavy' => '1.33',
9835             'Config' => '5.019010',
9836             'Data::Dumper' => '2.151',
9837             'Devel::PPPort' => '3.22',
9838             'Digest::SHA' => '5.88',
9839             'ExtUtils::Command::MM' => '6.92',
9840             'ExtUtils::Install' => '1.63',
9841             'ExtUtils::Installed' => '1.999005',
9842             'ExtUtils::Liblist' => '6.92',
9843             'ExtUtils::Liblist::Kid'=> '6.92',
9844             'ExtUtils::MM' => '6.92',
9845             'ExtUtils::MM_AIX' => '6.92',
9846             'ExtUtils::MM_Any' => '6.92',
9847             'ExtUtils::MM_BeOS' => '6.92',
9848             'ExtUtils::MM_Cygwin' => '6.92',
9849             'ExtUtils::MM_DOS' => '6.92',
9850             'ExtUtils::MM_Darwin' => '6.92',
9851             'ExtUtils::MM_MacOS' => '6.92',
9852             'ExtUtils::MM_NW5' => '6.92',
9853             'ExtUtils::MM_OS2' => '6.92',
9854             'ExtUtils::MM_QNX' => '6.92',
9855             'ExtUtils::MM_UWIN' => '6.92',
9856             'ExtUtils::MM_Unix' => '6.92',
9857             'ExtUtils::MM_VMS' => '6.92',
9858             'ExtUtils::MM_VOS' => '6.92',
9859             'ExtUtils::MM_Win32' => '6.92',
9860             'ExtUtils::MM_Win95' => '6.92',
9861             'ExtUtils::MY' => '6.92',
9862             'ExtUtils::MakeMaker' => '6.92',
9863             'ExtUtils::MakeMaker::Config'=> '6.92',
9864             'ExtUtils::Mkbootstrap' => '6.92',
9865             'ExtUtils::Mksymlists' => '6.92',
9866             'ExtUtils::Packlist' => '1.48',
9867             'ExtUtils::ParseXS' => '3.24',
9868             'ExtUtils::ParseXS::Constants'=> '3.24',
9869             'ExtUtils::ParseXS::CountLines'=> '3.24',
9870             'ExtUtils::ParseXS::Eval'=> '3.24',
9871             'ExtUtils::ParseXS::Utilities'=> '3.24',
9872             'ExtUtils::Typemaps' => '3.24',
9873             'ExtUtils::Typemaps::Cmd'=> '3.24',
9874             'ExtUtils::Typemaps::InputMap'=> '3.24',
9875             'ExtUtils::Typemaps::OutputMap'=> '3.24',
9876             'ExtUtils::Typemaps::Type'=> '3.24',
9877             'ExtUtils::testlib' => '6.92',
9878             'File::Find' => '1.27',
9879             'Filter::Simple' => '0.91',
9880             'HTTP::Tiny' => '0.043',
9881             'Hash::Util::FieldHash' => '1.15',
9882             'IO' => '1.31',
9883             'IO::Socket::IP' => '0.29',
9884             'Locale::Codes' => '3.30',
9885             'Locale::Codes::Constants'=> '3.30',
9886             'Locale::Codes::Country'=> '3.30',
9887             'Locale::Codes::Country_Codes'=> '3.30',
9888             'Locale::Codes::Country_Retired'=> '3.30',
9889             'Locale::Codes::Currency'=> '3.30',
9890             'Locale::Codes::Currency_Codes'=> '3.30',
9891             'Locale::Codes::Currency_Retired'=> '3.30',
9892             'Locale::Codes::LangExt'=> '3.30',
9893             'Locale::Codes::LangExt_Codes'=> '3.30',
9894             'Locale::Codes::LangExt_Retired'=> '3.30',
9895             'Locale::Codes::LangFam'=> '3.30',
9896             'Locale::Codes::LangFam_Codes'=> '3.30',
9897             'Locale::Codes::LangFam_Retired'=> '3.30',
9898             'Locale::Codes::LangVar'=> '3.30',
9899             'Locale::Codes::LangVar_Codes'=> '3.30',
9900             'Locale::Codes::LangVar_Retired'=> '3.30',
9901             'Locale::Codes::Language'=> '3.30',
9902             'Locale::Codes::Language_Codes'=> '3.30',
9903             'Locale::Codes::Language_Retired'=> '3.30',
9904             'Locale::Codes::Script' => '3.30',
9905             'Locale::Codes::Script_Codes'=> '3.30',
9906             'Locale::Codes::Script_Retired'=> '3.30',
9907             'Locale::Country' => '3.30',
9908             'Locale::Currency' => '3.30',
9909             'Locale::Language' => '3.30',
9910             'Locale::Script' => '3.30',
9911             'Module::CoreList' => '3.09',
9912             'Module::CoreList::TieHashDelta'=> '3.09',
9913             'Module::CoreList::Utils'=> '3.09',
9914             'Module::Load' => '0.32',
9915             'POSIX' => '1.38_03',
9916             'Parse::CPAN::Meta' => '1.4414',
9917             'Pod::Perldoc' => '3.23',
9918             'Pod::Perldoc::BaseTo' => '3.23',
9919             'Pod::Perldoc::GetOptsOO'=> '3.23',
9920             'Pod::Perldoc::ToANSI' => '3.23',
9921             'Pod::Perldoc::ToChecker'=> '3.23',
9922             'Pod::Perldoc::ToMan' => '3.23',
9923             'Pod::Perldoc::ToNroff' => '3.23',
9924             'Pod::Perldoc::ToPod' => '3.23',
9925             'Pod::Perldoc::ToRtf' => '3.23',
9926             'Pod::Perldoc::ToTerm' => '3.23',
9927             'Pod::Perldoc::ToText' => '3.23',
9928             'Pod::Perldoc::ToTk' => '3.23',
9929             'Pod::Perldoc::ToXml' => '3.23',
9930             'Thread::Queue' => '3.05',
9931             'XS::APItest' => '0.60',
9932             'XS::Typemap' => '0.13',
9933             'autouse' => '1.08',
9934             'base' => '2.22',
9935             'charnames' => '1.40',
9936             'feature' => '1.36',
9937             'mro' => '1.16',
9938             'threads' => '1.93',
9939             'warnings' => '1.23',
9940             'warnings::register' => '1.03',
9941             },
9942             removed => {
9943             }
9944             },
9945             5.019011 => {
9946             delta_from => 5.01901,
9947             changed => {
9948             'CPAN' => '2.05',
9949             'CPAN::Distribution' => '2.02',
9950             'CPAN::FirstTime' => '5.5306',
9951             'CPAN::Shell' => '5.5004',
9952             'Carp' => '1.3301',
9953             'Carp::Heavy' => '1.3301',
9954             'Config' => '5.019011',
9955             'ExtUtils::Command::MM' => '6.94',
9956             'ExtUtils::Install' => '1.67',
9957             'ExtUtils::Liblist' => '6.94',
9958             'ExtUtils::Liblist::Kid'=> '6.94',
9959             'ExtUtils::MM' => '6.94',
9960             'ExtUtils::MM_AIX' => '6.94',
9961             'ExtUtils::MM_Any' => '6.94',
9962             'ExtUtils::MM_BeOS' => '6.94',
9963             'ExtUtils::MM_Cygwin' => '6.94',
9964             'ExtUtils::MM_DOS' => '6.94',
9965             'ExtUtils::MM_Darwin' => '6.94',
9966             'ExtUtils::MM_MacOS' => '6.94',
9967             'ExtUtils::MM_NW5' => '6.94',
9968             'ExtUtils::MM_OS2' => '6.94',
9969             'ExtUtils::MM_QNX' => '6.94',
9970             'ExtUtils::MM_UWIN' => '6.94',
9971             'ExtUtils::MM_Unix' => '6.94',
9972             'ExtUtils::MM_VMS' => '6.94',
9973             'ExtUtils::MM_VOS' => '6.94',
9974             'ExtUtils::MM_Win32' => '6.94',
9975             'ExtUtils::MM_Win95' => '6.94',
9976             'ExtUtils::MY' => '6.94',
9977             'ExtUtils::MakeMaker' => '6.94',
9978             'ExtUtils::MakeMaker::Config'=> '6.94',
9979             'ExtUtils::Mkbootstrap' => '6.94',
9980             'ExtUtils::Mksymlists' => '6.94',
9981             'ExtUtils::testlib' => '6.94',
9982             'Module::CoreList' => '3.10',
9983             'Module::CoreList::TieHashDelta'=> '3.10',
9984             'Module::CoreList::Utils'=> '3.10',
9985             'PerlIO' => '1.09',
9986             'Storable' => '2.49',
9987             'Win32' => '0.49',
9988             'experimental' => '0.007',
9989             },
9990             removed => {
9991             }
9992             },
9993             5.020000 => {
9994             delta_from => 5.019011,
9995             changed => {
9996             'Config' => '5.02',
9997             'Devel::PPPort' => '3.21',
9998             'Encode' => '2.60',
9999             'Errno' => '1.20_03',
10000             'ExtUtils::Command::MM' => '6.98',
10001             'ExtUtils::Liblist' => '6.98',
10002             'ExtUtils::Liblist::Kid'=> '6.98',
10003             'ExtUtils::MM' => '6.98',
10004             'ExtUtils::MM_AIX' => '6.98',
10005             'ExtUtils::MM_Any' => '6.98',
10006             'ExtUtils::MM_BeOS' => '6.98',
10007             'ExtUtils::MM_Cygwin' => '6.98',
10008             'ExtUtils::MM_DOS' => '6.98',
10009             'ExtUtils::MM_Darwin' => '6.98',
10010             'ExtUtils::MM_MacOS' => '6.98',
10011             'ExtUtils::MM_NW5' => '6.98',
10012             'ExtUtils::MM_OS2' => '6.98',
10013             'ExtUtils::MM_QNX' => '6.98',
10014             'ExtUtils::MM_UWIN' => '6.98',
10015             'ExtUtils::MM_Unix' => '6.98',
10016             'ExtUtils::MM_VMS' => '6.98',
10017             'ExtUtils::MM_VOS' => '6.98',
10018             'ExtUtils::MM_Win32' => '6.98',
10019             'ExtUtils::MM_Win95' => '6.98',
10020             'ExtUtils::MY' => '6.98',
10021             'ExtUtils::MakeMaker' => '6.98',
10022             'ExtUtils::MakeMaker::Config'=> '6.98',
10023             'ExtUtils::Miniperl' => '1.01',
10024             'ExtUtils::Mkbootstrap' => '6.98',
10025             'ExtUtils::Mksymlists' => '6.98',
10026             'ExtUtils::testlib' => '6.98',
10027             },
10028             removed => {
10029             }
10030             },
10031             5.021000 => {
10032             delta_from => 5.020000,
10033             changed => {
10034             'Module::CoreList' => '5.021001',
10035             'Module::CoreList::TieHashDelta'=> '5.021001',
10036             'Module::CoreList::Utils'=> '5.021001',
10037             'feature' => '1.37',
10038             },
10039             removed => {
10040             'CGI' => 1,
10041             'CGI::Apache' => 1,
10042             'CGI::Carp' => 1,
10043             'CGI::Cookie' => 1,
10044             'CGI::Fast' => 1,
10045             'CGI::Pretty' => 1,
10046             'CGI::Push' => 1,
10047             'CGI::Switch' => 1,
10048             'CGI::Util' => 1,
10049             'Module::Build' => 1,
10050             'Module::Build::Base' => 1,
10051             'Module::Build::Compat' => 1,
10052             'Module::Build::Config' => 1,
10053             'Module::Build::ConfigData'=> 1,
10054             'Module::Build::Cookbook'=> 1,
10055             'Module::Build::Dumper' => 1,
10056             'Module::Build::ModuleInfo'=> 1,
10057             'Module::Build::Notes' => 1,
10058             'Module::Build::PPMMaker'=> 1,
10059             'Module::Build::Platform::Default'=> 1,
10060             'Module::Build::Platform::MacOS'=> 1,
10061             'Module::Build::Platform::Unix'=> 1,
10062             'Module::Build::Platform::VMS'=> 1,
10063             'Module::Build::Platform::VOS'=> 1,
10064             'Module::Build::Platform::Windows'=> 1,
10065             'Module::Build::Platform::aix'=> 1,
10066             'Module::Build::Platform::cygwin'=> 1,
10067             'Module::Build::Platform::darwin'=> 1,
10068             'Module::Build::Platform::os2'=> 1,
10069             'Module::Build::PodParser'=> 1,
10070             'Module::Build::Version'=> 1,
10071             'Module::Build::YAML' => 1,
10072             'Package::Constants' => 1,
10073             'inc::latest' => 1,
10074             }
10075             },
10076             5.021001 => {
10077             delta_from => 5.021000,
10078             changed => {
10079             'App::Prove' => '3.32',
10080             'App::Prove::State' => '3.32',
10081             'App::Prove::State::Result'=> '3.32',
10082             'App::Prove::State::Result::Test'=> '3.32',
10083             'Archive::Tar' => '2.00',
10084             'Archive::Tar::Constant'=> '2.00',
10085             'Archive::Tar::File' => '2.00',
10086             'B' => '1.49',
10087             'B::Deparse' => '1.27',
10088             'Benchmark' => '1.19',
10089             'CPAN::Meta' => '2.141520',
10090             'CPAN::Meta::Converter' => '2.141520',
10091             'CPAN::Meta::Feature' => '2.141520',
10092             'CPAN::Meta::History' => '2.141520',
10093             'CPAN::Meta::Prereqs' => '2.141520',
10094             'CPAN::Meta::Spec' => '2.141520',
10095             'CPAN::Meta::Validator' => '2.141520',
10096             'Carp' => '1.34',
10097             'Carp::Heavy' => '1.34',
10098             'Config' => '5.021001',
10099             'Cwd' => '3.48',
10100             'Data::Dumper' => '2.152',
10101             'Devel::PPPort' => '3.24',
10102             'Devel::Peek' => '1.17',
10103             'Digest::SHA' => '5.92',
10104             'DynaLoader' => '1.26',
10105             'Encode' => '2.62',
10106             'Errno' => '1.20_04',
10107             'Exporter' => '5.71',
10108             'Exporter::Heavy' => '5.71',
10109             'ExtUtils::Install' => '1.68',
10110             'ExtUtils::Miniperl' => '1.02',
10111             'ExtUtils::ParseXS' => '3.25',
10112             'ExtUtils::ParseXS::Constants'=> '3.25',
10113             'ExtUtils::ParseXS::CountLines'=> '3.25',
10114             'ExtUtils::ParseXS::Eval'=> '3.25',
10115             'ExtUtils::ParseXS::Utilities'=> '3.25',
10116             'ExtUtils::Typemaps' => '3.25',
10117             'ExtUtils::Typemaps::Cmd'=> '3.25',
10118             'ExtUtils::Typemaps::InputMap'=> '3.25',
10119             'ExtUtils::Typemaps::OutputMap'=> '3.25',
10120             'ExtUtils::Typemaps::Type'=> '3.25',
10121             'Fatal' => '2.25',
10122             'File::Spec' => '3.48',
10123             'File::Spec::Cygwin' => '3.48',
10124             'File::Spec::Epoc' => '3.48',
10125             'File::Spec::Functions' => '3.48',
10126             'File::Spec::Mac' => '3.48',
10127             'File::Spec::OS2' => '3.48',
10128             'File::Spec::Unix' => '3.48',
10129             'File::Spec::VMS' => '3.48',
10130             'File::Spec::Win32' => '3.48',
10131             'Hash::Util' => '0.17',
10132             'IO' => '1.32',
10133             'List::Util' => '1.39',
10134             'List::Util::XS' => '1.39',
10135             'Locale::Codes' => '3.31',
10136             'Locale::Codes::Constants'=> '3.31',
10137             'Locale::Codes::Country'=> '3.31',
10138             'Locale::Codes::Country_Codes'=> '3.31',
10139             'Locale::Codes::Country_Retired'=> '3.31',
10140             'Locale::Codes::Currency'=> '3.31',
10141             'Locale::Codes::Currency_Codes'=> '3.31',
10142             'Locale::Codes::Currency_Retired'=> '3.31',
10143             'Locale::Codes::LangExt'=> '3.31',
10144             'Locale::Codes::LangExt_Codes'=> '3.31',
10145             'Locale::Codes::LangExt_Retired'=> '3.31',
10146             'Locale::Codes::LangFam'=> '3.31',
10147             'Locale::Codes::LangFam_Codes'=> '3.31',
10148             'Locale::Codes::LangFam_Retired'=> '3.31',
10149             'Locale::Codes::LangVar'=> '3.31',
10150             'Locale::Codes::LangVar_Codes'=> '3.31',
10151             'Locale::Codes::LangVar_Retired'=> '3.31',
10152             'Locale::Codes::Language'=> '3.31',
10153             'Locale::Codes::Language_Codes'=> '3.31',
10154             'Locale::Codes::Language_Retired'=> '3.31',
10155             'Locale::Codes::Script' => '3.31',
10156             'Locale::Codes::Script_Codes'=> '3.31',
10157             'Locale::Codes::Script_Retired'=> '3.31',
10158             'Locale::Country' => '3.31',
10159             'Locale::Currency' => '3.31',
10160             'Locale::Language' => '3.31',
10161             'Locale::Script' => '3.31',
10162             'Math::BigFloat' => '1.9994',
10163             'Math::BigInt' => '1.9995',
10164             'Math::BigInt::Calc' => '1.9994',
10165             'Math::BigInt::CalcEmu' => '1.9994',
10166             'Math::BigRat' => '0.2608',
10167             'Module::CoreList' => '5.021001_01',
10168             'Module::CoreList::TieHashDelta'=> '5.021001_01',
10169             'Module::CoreList::Utils'=> '5.021001_01',
10170             'Module::Metadata' => '1.000024',
10171             'NDBM_File' => '1.13',
10172             'Net::Config' => '1.14',
10173             'Net::SMTP' => '2.34',
10174             'Net::Time' => '2.11',
10175             'OS2::Process' => '1.10',
10176             'POSIX' => '1.40',
10177             'PerlIO::encoding' => '0.19',
10178             'PerlIO::mmap' => '0.013',
10179             'PerlIO::scalar' => '0.19',
10180             'PerlIO::via' => '0.15',
10181             'Pod::Html' => '1.22',
10182             'Scalar::Util' => '1.39',
10183             'SelfLoader' => '1.22',
10184             'Socket' => '2.014',
10185             'Storable' => '2.51',
10186             'TAP::Base' => '3.32',
10187             'TAP::Formatter::Base' => '3.32',
10188             'TAP::Formatter::Color' => '3.32',
10189             'TAP::Formatter::Console'=> '3.32',
10190             'TAP::Formatter::Console::ParallelSession'=> '3.32',
10191             'TAP::Formatter::Console::Session'=> '3.32',
10192             'TAP::Formatter::File' => '3.32',
10193             'TAP::Formatter::File::Session'=> '3.32',
10194             'TAP::Formatter::Session'=> '3.32',
10195             'TAP::Harness' => '3.32',
10196             'TAP::Harness::Env' => '3.32',
10197             'TAP::Object' => '3.32',
10198             'TAP::Parser' => '3.32',
10199             'TAP::Parser::Aggregator'=> '3.32',
10200             'TAP::Parser::Grammar' => '3.32',
10201             'TAP::Parser::Iterator' => '3.32',
10202             'TAP::Parser::Iterator::Array'=> '3.32',
10203             'TAP::Parser::Iterator::Process'=> '3.32',
10204             'TAP::Parser::Iterator::Stream'=> '3.32',
10205             'TAP::Parser::IteratorFactory'=> '3.32',
10206             'TAP::Parser::Multiplexer'=> '3.32',
10207             'TAP::Parser::Result' => '3.32',
10208             'TAP::Parser::Result::Bailout'=> '3.32',
10209             'TAP::Parser::Result::Comment'=> '3.32',
10210             'TAP::Parser::Result::Plan'=> '3.32',
10211             'TAP::Parser::Result::Pragma'=> '3.32',
10212             'TAP::Parser::Result::Test'=> '3.32',
10213             'TAP::Parser::Result::Unknown'=> '3.32',
10214             'TAP::Parser::Result::Version'=> '3.32',
10215             'TAP::Parser::Result::YAML'=> '3.32',
10216             'TAP::Parser::ResultFactory'=> '3.32',
10217             'TAP::Parser::Scheduler'=> '3.32',
10218             'TAP::Parser::Scheduler::Job'=> '3.32',
10219             'TAP::Parser::Scheduler::Spinner'=> '3.32',
10220             'TAP::Parser::Source' => '3.32',
10221             'TAP::Parser::SourceHandler'=> '3.32',
10222             'TAP::Parser::SourceHandler::Executable'=> '3.32',
10223             'TAP::Parser::SourceHandler::File'=> '3.32',
10224             'TAP::Parser::SourceHandler::Handle'=> '3.32',
10225             'TAP::Parser::SourceHandler::Perl'=> '3.32',
10226             'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10227             'TAP::Parser::YAMLish::Reader'=> '3.32',
10228             'TAP::Parser::YAMLish::Writer'=> '3.32',
10229             'Term::ANSIColor' => '4.03',
10230             'Test::Builder' => '1.001003',
10231             'Test::Builder::Module' => '1.001003',
10232             'Test::Builder::Tester' => '1.23_003',
10233             'Test::Harness' => '3.32',
10234             'Test::More' => '1.001003',
10235             'Test::Simple' => '1.001003',
10236             'Tie::File' => '1.01',
10237             'Unicode' => '7.0.0',
10238             'Unicode::Collate' => '1.07',
10239             'Unicode::Normalize' => '1.18',
10240             'Unicode::UCD' => '0.58',
10241             'XS::APItest' => '0.61',
10242             '_charnames' => '1.41',
10243             'autodie' => '2.25',
10244             'autodie::Scope::Guard' => '2.25',
10245             'autodie::Scope::GuardStack'=> '2.25',
10246             'autodie::ScopeUtil' => '2.25',
10247             'autodie::exception' => '2.25',
10248             'autodie::exception::system'=> '2.25',
10249             'autodie::hints' => '2.25',
10250             'autodie::skip' => '2.25',
10251             'charnames' => '1.41',
10252             'locale' => '1.04',
10253             'threads' => '1.94',
10254             'utf8' => '1.14',
10255             'warnings' => '1.24',
10256             },
10257             removed => {
10258             }
10259             },
10260             5.021002 => {
10261             delta_from => 5.021001,
10262             changed => {
10263             'B' => '1.50',
10264             'Config' => '5.021002',
10265             'Cwd' => '3.49',
10266             'Devel::Peek' => '1.18',
10267             'ExtUtils::Manifest' => '1.64',
10268             'File::Copy' => '2.30',
10269             'File::Spec' => '3.49',
10270             'File::Spec::Cygwin' => '3.49',
10271             'File::Spec::Epoc' => '3.49',
10272             'File::Spec::Functions' => '3.49',
10273             'File::Spec::Mac' => '3.49',
10274             'File::Spec::OS2' => '3.49',
10275             'File::Spec::Unix' => '3.49',
10276             'File::Spec::VMS' => '3.49',
10277             'File::Spec::Win32' => '3.49',
10278             'Filter::Simple' => '0.92',
10279             'Hash::Util' => '0.18',
10280             'IO' => '1.33',
10281             'IO::Socket::IP' => '0.31',
10282             'IPC::Open3' => '1.17',
10283             'Math::BigFloat' => '1.9996',
10284             'Math::BigInt' => '1.9996',
10285             'Math::BigInt::Calc' => '1.9996',
10286             'Math::BigInt::CalcEmu' => '1.9996',
10287             'Module::CoreList' => '5.021002',
10288             'Module::CoreList::TieHashDelta'=> '5.021002',
10289             'Module::CoreList::Utils'=> '5.021002',
10290             'POSIX' => '1.41',
10291             'Pod::Usage' => '1.64',
10292             'XS::APItest' => '0.62',
10293             'arybase' => '0.08',
10294             'experimental' => '0.008',
10295             'threads' => '1.95',
10296             'warnings' => '1.26',
10297             },
10298             removed => {
10299             }
10300             },
10301             5.021003 => {
10302             delta_from => 5.021002,
10303             changed => {
10304             'B::Debug' => '1.21',
10305             'CPAN::Meta' => '2.142060',
10306             'CPAN::Meta::Converter' => '2.142060',
10307             'CPAN::Meta::Feature' => '2.142060',
10308             'CPAN::Meta::History' => '2.142060',
10309             'CPAN::Meta::Merge' => '2.142060',
10310             'CPAN::Meta::Prereqs' => '2.142060',
10311             'CPAN::Meta::Requirements'=> '2.126',
10312             'CPAN::Meta::Spec' => '2.142060',
10313             'CPAN::Meta::Validator' => '2.142060',
10314             'Config' => '5.021003',
10315             'Config::Perl::V' => '0.22',
10316             'ExtUtils::CBuilder' => '0.280217',
10317             'ExtUtils::CBuilder::Base'=> '0.280217',
10318             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10319             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10320             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10321             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10322             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10323             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10324             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10325             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10326             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10327             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10328             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10329             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10330             'ExtUtils::Manifest' => '1.65',
10331             'HTTP::Tiny' => '0.047',
10332             'IPC::Open3' => '1.18',
10333             'Module::CoreList' => '5.021003',
10334             'Module::CoreList::TieHashDelta'=> '5.021003',
10335             'Module::CoreList::Utils'=> '5.021003',
10336             'Opcode' => '1.28',
10337             'POSIX' => '1.42',
10338             'Safe' => '2.38',
10339             'Socket' => '2.015',
10340             'Sys::Hostname' => '1.19',
10341             'UNIVERSAL' => '1.12',
10342             'XS::APItest' => '0.63',
10343             'perlfaq' => '5.0150045',
10344             },
10345             removed => {
10346             }
10347             },
10348             5.020001 => {
10349             delta_from => 5.020000,
10350             changed => {
10351             'Config' => '5.020001',
10352             'Config::Perl::V' => '0.22',
10353             'Cwd' => '3.48',
10354             'Exporter' => '5.71',
10355             'Exporter::Heavy' => '5.71',
10356             'ExtUtils::CBuilder' => '0.280217',
10357             'ExtUtils::CBuilder::Base'=> '0.280217',
10358             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10359             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10360             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10361             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10362             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10363             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10364             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10365             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10366             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10367             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10368             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10369             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10370             'File::Copy' => '2.30',
10371             'File::Spec' => '3.48',
10372             'File::Spec::Cygwin' => '3.48',
10373             'File::Spec::Epoc' => '3.48',
10374             'File::Spec::Functions' => '3.48',
10375             'File::Spec::Mac' => '3.48',
10376             'File::Spec::OS2' => '3.48',
10377             'File::Spec::Unix' => '3.48',
10378             'File::Spec::VMS' => '3.48',
10379             'File::Spec::Win32' => '3.48',
10380             'Module::CoreList' => '5.020001',
10381             'Module::CoreList::TieHashDelta'=> '5.020001',
10382             'Module::CoreList::Utils'=> '5.020001',
10383             'PerlIO::via' => '0.15',
10384             'Unicode::UCD' => '0.58',
10385             'XS::APItest' => '0.60_01',
10386             'utf8' => '1.13_01',
10387             'version' => '0.9909',
10388             'version::regex' => '0.9909',
10389             'version::vpp' => '0.9909',
10390             },
10391             removed => {
10392             }
10393             },
10394             5.021004 => {
10395             delta_from => 5.021003,
10396             changed => {
10397             'App::Prove' => '3.33',
10398             'App::Prove::State' => '3.33',
10399             'App::Prove::State::Result'=> '3.33',
10400             'App::Prove::State::Result::Test'=> '3.33',
10401             'Archive::Tar' => '2.02',
10402             'Archive::Tar::Constant'=> '2.02',
10403             'Archive::Tar::File' => '2.02',
10404             'Attribute::Handlers' => '0.97',
10405             'B' => '1.51',
10406             'B::Concise' => '0.993',
10407             'B::Deparse' => '1.28',
10408             'B::Op_private' => '5.021004',
10409             'CPAN::Meta::Requirements'=> '2.128',
10410             'Config' => '5.021004',
10411             'Cwd' => '3.50',
10412             'Data::Dumper' => '2.154',
10413             'ExtUtils::CBuilder' => '0.280219',
10414             'ExtUtils::CBuilder::Base'=> '0.280219',
10415             'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10416             'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10417             'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10418             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10419             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10420             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10421             'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10422             'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10423             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10424             'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10425             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10426             'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10427             'ExtUtils::Install' => '2.04',
10428             'ExtUtils::Installed' => '2.04',
10429             'ExtUtils::Liblist::Kid'=> '6.98_01',
10430             'ExtUtils::Manifest' => '1.68',
10431             'ExtUtils::Packlist' => '2.04',
10432             'File::Find' => '1.28',
10433             'File::Spec' => '3.50',
10434             'File::Spec::Cygwin' => '3.50',
10435             'File::Spec::Epoc' => '3.50',
10436             'File::Spec::Functions' => '3.50',
10437             'File::Spec::Mac' => '3.50',
10438             'File::Spec::OS2' => '3.50',
10439             'File::Spec::Unix' => '3.50',
10440             'File::Spec::VMS' => '3.50',
10441             'File::Spec::Win32' => '3.50',
10442             'Getopt::Std' => '1.11',
10443             'HTTP::Tiny' => '0.049',
10444             'IO' => '1.34',
10445             'IO::Socket::IP' => '0.32',
10446             'List::Util' => '1.41',
10447             'List::Util::XS' => '1.41',
10448             'Locale::Codes' => '3.32',
10449             'Locale::Codes::Constants'=> '3.32',
10450             'Locale::Codes::Country'=> '3.32',
10451             'Locale::Codes::Country_Codes'=> '3.32',
10452             'Locale::Codes::Country_Retired'=> '3.32',
10453             'Locale::Codes::Currency'=> '3.32',
10454             'Locale::Codes::Currency_Codes'=> '3.32',
10455             'Locale::Codes::Currency_Retired'=> '3.32',
10456             'Locale::Codes::LangExt'=> '3.32',
10457             'Locale::Codes::LangExt_Codes'=> '3.32',
10458             'Locale::Codes::LangExt_Retired'=> '3.32',
10459             'Locale::Codes::LangFam'=> '3.32',
10460             'Locale::Codes::LangFam_Codes'=> '3.32',
10461             'Locale::Codes::LangFam_Retired'=> '3.32',
10462             'Locale::Codes::LangVar'=> '3.32',
10463             'Locale::Codes::LangVar_Codes'=> '3.32',
10464             'Locale::Codes::LangVar_Retired'=> '3.32',
10465             'Locale::Codes::Language'=> '3.32',
10466             'Locale::Codes::Language_Codes'=> '3.32',
10467             'Locale::Codes::Language_Retired'=> '3.32',
10468             'Locale::Codes::Script' => '3.32',
10469             'Locale::Codes::Script_Codes'=> '3.32',
10470             'Locale::Codes::Script_Retired'=> '3.32',
10471             'Locale::Country' => '3.32',
10472             'Locale::Currency' => '3.32',
10473             'Locale::Language' => '3.32',
10474             'Locale::Script' => '3.32',
10475             'Math::BigFloat' => '1.9997',
10476             'Math::BigInt' => '1.9997',
10477             'Math::BigInt::Calc' => '1.9997',
10478             'Math::BigInt::CalcEmu' => '1.9997',
10479             'Module::CoreList' => '5.20140920',
10480             'Module::CoreList::TieHashDelta'=> '5.20140920',
10481             'Module::CoreList::Utils'=> '5.20140920',
10482             'POSIX' => '1.43',
10483             'Pod::Perldoc' => '3.24',
10484             'Pod::Perldoc::BaseTo' => '3.24',
10485             'Pod::Perldoc::GetOptsOO'=> '3.24',
10486             'Pod::Perldoc::ToANSI' => '3.24',
10487             'Pod::Perldoc::ToChecker'=> '3.24',
10488             'Pod::Perldoc::ToMan' => '3.24',
10489             'Pod::Perldoc::ToNroff' => '3.24',
10490             'Pod::Perldoc::ToPod' => '3.24',
10491             'Pod::Perldoc::ToRtf' => '3.24',
10492             'Pod::Perldoc::ToTerm' => '3.24',
10493             'Pod::Perldoc::ToText' => '3.24',
10494             'Pod::Perldoc::ToTk' => '3.24',
10495             'Pod::Perldoc::ToXml' => '3.24',
10496             'Scalar::Util' => '1.41',
10497             'Sub::Util' => '1.41',
10498             'TAP::Base' => '3.33',
10499             'TAP::Formatter::Base' => '3.33',
10500             'TAP::Formatter::Color' => '3.33',
10501             'TAP::Formatter::Console'=> '3.33',
10502             'TAP::Formatter::Console::ParallelSession'=> '3.33',
10503             'TAP::Formatter::Console::Session'=> '3.33',
10504             'TAP::Formatter::File' => '3.33',
10505             'TAP::Formatter::File::Session'=> '3.33',
10506             'TAP::Formatter::Session'=> '3.33',
10507             'TAP::Harness' => '3.33',
10508             'TAP::Harness::Env' => '3.33',
10509             'TAP::Object' => '3.33',
10510             'TAP::Parser' => '3.33',
10511             'TAP::Parser::Aggregator'=> '3.33',
10512             'TAP::Parser::Grammar' => '3.33',
10513             'TAP::Parser::Iterator' => '3.33',
10514             'TAP::Parser::Iterator::Array'=> '3.33',
10515             'TAP::Parser::Iterator::Process'=> '3.33',
10516             'TAP::Parser::Iterator::Stream'=> '3.33',
10517             'TAP::Parser::IteratorFactory'=> '3.33',
10518             'TAP::Parser::Multiplexer'=> '3.33',
10519             'TAP::Parser::Result' => '3.33',
10520             'TAP::Parser::Result::Bailout'=> '3.33',
10521             'TAP::Parser::Result::Comment'=> '3.33',
10522             'TAP::Parser::Result::Plan'=> '3.33',
10523             'TAP::Parser::Result::Pragma'=> '3.33',
10524             'TAP::Parser::Result::Test'=> '3.33',
10525             'TAP::Parser::Result::Unknown'=> '3.33',
10526             'TAP::Parser::Result::Version'=> '3.33',
10527             'TAP::Parser::Result::YAML'=> '3.33',
10528             'TAP::Parser::ResultFactory'=> '3.33',
10529             'TAP::Parser::Scheduler'=> '3.33',
10530             'TAP::Parser::Scheduler::Job'=> '3.33',
10531             'TAP::Parser::Scheduler::Spinner'=> '3.33',
10532             'TAP::Parser::Source' => '3.33',
10533             'TAP::Parser::SourceHandler'=> '3.33',
10534             'TAP::Parser::SourceHandler::Executable'=> '3.33',
10535             'TAP::Parser::SourceHandler::File'=> '3.33',
10536             'TAP::Parser::SourceHandler::Handle'=> '3.33',
10537             'TAP::Parser::SourceHandler::Perl'=> '3.33',
10538             'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10539             'TAP::Parser::YAMLish::Reader'=> '3.33',
10540             'TAP::Parser::YAMLish::Writer'=> '3.33',
10541             'Term::ReadLine' => '1.15',
10542             'Test::Builder' => '1.001006',
10543             'Test::Builder::Module' => '1.001006',
10544             'Test::Builder::Tester' => '1.24',
10545             'Test::Builder::Tester::Color'=> '1.24',
10546             'Test::Harness' => '3.33',
10547             'Test::More' => '1.001006',
10548             'Test::Simple' => '1.001006',
10549             'Time::Piece' => '1.29',
10550             'Time::Seconds' => '1.29',
10551             'XS::APItest' => '0.64',
10552             '_charnames' => '1.42',
10553             'attributes' => '0.23',
10554             'bigint' => '0.37',
10555             'bignum' => '0.38',
10556             'bigrat' => '0.37',
10557             'constant' => '1.32',
10558             'experimental' => '0.010',
10559             'overload' => '1.23',
10560             'threads' => '1.96',
10561             'version' => '0.9909',
10562             'version::regex' => '0.9909',
10563             'version::vpp' => '0.9909',
10564             },
10565             removed => {
10566             }
10567             },
10568             5.021005 => {
10569             delta_from => 5.021004,
10570             changed => {
10571             'B' => '1.52',
10572             'B::Concise' => '0.994',
10573             'B::Debug' => '1.22',
10574             'B::Deparse' => '1.29',
10575             'B::Op_private' => '5.021005',
10576             'CPAN::Meta' => '2.142690',
10577             'CPAN::Meta::Converter' => '2.142690',
10578             'CPAN::Meta::Feature' => '2.142690',
10579             'CPAN::Meta::History' => '2.142690',
10580             'CPAN::Meta::Merge' => '2.142690',
10581             'CPAN::Meta::Prereqs' => '2.142690',
10582             'CPAN::Meta::Spec' => '2.142690',
10583             'CPAN::Meta::Validator' => '2.142690',
10584             'Compress::Raw::Bzip2' => '2.066',
10585             'Compress::Raw::Zlib' => '2.066',
10586             'Compress::Zlib' => '2.066',
10587             'Config' => '5.021005',
10588             'Cwd' => '3.51',
10589             'DynaLoader' => '1.27',
10590             'Errno' => '1.21',
10591             'ExtUtils::CBuilder' => '0.280220',
10592             'ExtUtils::CBuilder::Base'=> '0.280220',
10593             'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10594             'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10595             'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10596             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10597             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10598             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10599             'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10600             'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10601             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10602             'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10603             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10604             'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10605             'ExtUtils::Miniperl' => '1.03',
10606             'Fcntl' => '1.13',
10607             'File::Find' => '1.29',
10608             'File::Spec' => '3.51',
10609             'File::Spec::Cygwin' => '3.51',
10610             'File::Spec::Epoc' => '3.51',
10611             'File::Spec::Functions' => '3.51',
10612             'File::Spec::Mac' => '3.51',
10613             'File::Spec::OS2' => '3.51',
10614             'File::Spec::Unix' => '3.51',
10615             'File::Spec::VMS' => '3.51',
10616             'File::Spec::Win32' => '3.51',
10617             'HTTP::Tiny' => '0.050',
10618             'IO::Compress::Adapter::Bzip2'=> '2.066',
10619             'IO::Compress::Adapter::Deflate'=> '2.066',
10620             'IO::Compress::Adapter::Identity'=> '2.066',
10621             'IO::Compress::Base' => '2.066',
10622             'IO::Compress::Base::Common'=> '2.066',
10623             'IO::Compress::Bzip2' => '2.066',
10624             'IO::Compress::Deflate' => '2.066',
10625             'IO::Compress::Gzip' => '2.066',
10626             'IO::Compress::Gzip::Constants'=> '2.066',
10627             'IO::Compress::RawDeflate'=> '2.066',
10628             'IO::Compress::Zip' => '2.066',
10629             'IO::Compress::Zip::Constants'=> '2.066',
10630             'IO::Compress::Zlib::Constants'=> '2.066',
10631             'IO::Compress::Zlib::Extra'=> '2.066',
10632             'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10633             'IO::Uncompress::Adapter::Identity'=> '2.066',
10634             'IO::Uncompress::Adapter::Inflate'=> '2.066',
10635             'IO::Uncompress::AnyInflate'=> '2.066',
10636             'IO::Uncompress::AnyUncompress'=> '2.066',
10637             'IO::Uncompress::Base' => '2.066',
10638             'IO::Uncompress::Bunzip2'=> '2.066',
10639             'IO::Uncompress::Gunzip'=> '2.066',
10640             'IO::Uncompress::Inflate'=> '2.066',
10641             'IO::Uncompress::RawInflate'=> '2.066',
10642             'IO::Uncompress::Unzip' => '2.066',
10643             'JSON::PP' => '2.27300',
10644             'Module::CoreList' => '5.20141020',
10645             'Module::CoreList::TieHashDelta'=> '5.20141020',
10646             'Module::CoreList::Utils'=> '5.20141020',
10647             'Net::Cmd' => '3.02',
10648             'Net::Config' => '3.02',
10649             'Net::Domain' => '3.02',
10650             'Net::FTP' => '3.02',
10651             'Net::FTP::A' => '3.02',
10652             'Net::FTP::E' => '3.02',
10653             'Net::FTP::I' => '3.02',
10654             'Net::FTP::L' => '3.02',
10655             'Net::FTP::dataconn' => '3.02',
10656             'Net::NNTP' => '3.02',
10657             'Net::Netrc' => '3.02',
10658             'Net::POP3' => '3.02',
10659             'Net::SMTP' => '3.02',
10660             'Net::Time' => '3.02',
10661             'Opcode' => '1.29',
10662             'POSIX' => '1.45',
10663             'Socket' => '2.016',
10664             'Test::Builder' => '1.001008',
10665             'Test::Builder::Module' => '1.001008',
10666             'Test::More' => '1.001008',
10667             'Test::Simple' => '1.001008',
10668             'XS::APItest' => '0.65',
10669             'XSLoader' => '0.18',
10670             'attributes' => '0.24',
10671             'experimental' => '0.012',
10672             'feature' => '1.38',
10673             'perlfaq' => '5.0150046',
10674             're' => '0.27',
10675             'threads::shared' => '1.47',
10676             'warnings' => '1.28',
10677             'warnings::register' => '1.04',
10678             },
10679             removed => {
10680             }
10681             },
10682             5.021006 => {
10683             delta_from => 5.021005,
10684             changed => {
10685             'App::Prove' => '3.34',
10686             'App::Prove::State' => '3.34',
10687             'App::Prove::State::Result'=> '3.34',
10688             'App::Prove::State::Result::Test'=> '3.34',
10689             'B' => '1.53',
10690             'B::Concise' => '0.995',
10691             'B::Deparse' => '1.30',
10692             'B::Op_private' => '5.021006',
10693             'CPAN::Meta' => '2.143240',
10694             'CPAN::Meta::Converter' => '2.143240',
10695             'CPAN::Meta::Feature' => '2.143240',
10696             'CPAN::Meta::History' => '2.143240',
10697             'CPAN::Meta::Merge' => '2.143240',
10698             'CPAN::Meta::Prereqs' => '2.143240',
10699             'CPAN::Meta::Requirements'=> '2.130',
10700             'CPAN::Meta::Spec' => '2.143240',
10701             'CPAN::Meta::Validator' => '2.143240',
10702             'Config' => '5.021006',
10703             'Devel::Peek' => '1.19',
10704             'Digest::SHA' => '5.93',
10705             'DynaLoader' => '1.28',
10706             'Encode' => '2.64',
10707             'Exporter' => '5.72',
10708             'Exporter::Heavy' => '5.72',
10709             'ExtUtils::Command::MM' => '7.02',
10710             'ExtUtils::Liblist' => '7.02',
10711             'ExtUtils::Liblist::Kid'=> '7.02',
10712             'ExtUtils::MM' => '7.02',
10713             'ExtUtils::MM_AIX' => '7.02',
10714             'ExtUtils::MM_Any' => '7.02',
10715             'ExtUtils::MM_BeOS' => '7.02',
10716             'ExtUtils::MM_Cygwin' => '7.02',
10717             'ExtUtils::MM_DOS' => '7.02',
10718             'ExtUtils::MM_Darwin' => '7.02',
10719             'ExtUtils::MM_MacOS' => '7.02',
10720             'ExtUtils::MM_NW5' => '7.02',
10721             'ExtUtils::MM_OS2' => '7.02',
10722             'ExtUtils::MM_QNX' => '7.02',
10723             'ExtUtils::MM_UWIN' => '7.02',
10724             'ExtUtils::MM_Unix' => '7.02',
10725             'ExtUtils::MM_VMS' => '7.02',
10726             'ExtUtils::MM_VOS' => '7.02',
10727             'ExtUtils::MM_Win32' => '7.02',
10728             'ExtUtils::MM_Win95' => '7.02',
10729             'ExtUtils::MY' => '7.02',
10730             'ExtUtils::MakeMaker' => '7.02',
10731             'ExtUtils::MakeMaker::Config'=> '7.02',
10732             'ExtUtils::MakeMaker::Locale'=> '7.02',
10733             'ExtUtils::MakeMaker::version'=> '7.02',
10734             'ExtUtils::MakeMaker::version::regex'=> '7.02',
10735             'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10736             'ExtUtils::Manifest' => '1.69',
10737             'ExtUtils::Mkbootstrap' => '7.02',
10738             'ExtUtils::Mksymlists' => '7.02',
10739             'ExtUtils::ParseXS' => '3.26',
10740             'ExtUtils::ParseXS::Constants'=> '3.26',
10741             'ExtUtils::ParseXS::CountLines'=> '3.26',
10742             'ExtUtils::ParseXS::Eval'=> '3.26',
10743             'ExtUtils::ParseXS::Utilities'=> '3.26',
10744             'ExtUtils::testlib' => '7.02',
10745             'File::Spec::VMS' => '3.52',
10746             'HTTP::Tiny' => '0.051',
10747             'I18N::Langinfo' => '0.12',
10748             'IO::Socket' => '1.38',
10749             'Module::CoreList' => '5.20141120',
10750             'Module::CoreList::TieHashDelta'=> '5.20141120',
10751             'Module::CoreList::Utils'=> '5.20141120',
10752             'POSIX' => '1.46',
10753             'PerlIO::encoding' => '0.20',
10754             'PerlIO::scalar' => '0.20',
10755             'TAP::Base' => '3.34',
10756             'TAP::Formatter::Base' => '3.34',
10757             'TAP::Formatter::Color' => '3.34',
10758             'TAP::Formatter::Console'=> '3.34',
10759             'TAP::Formatter::Console::ParallelSession'=> '3.34',
10760             'TAP::Formatter::Console::Session'=> '3.34',
10761             'TAP::Formatter::File' => '3.34',
10762             'TAP::Formatter::File::Session'=> '3.34',
10763             'TAP::Formatter::Session'=> '3.34',
10764             'TAP::Harness' => '3.34',
10765             'TAP::Harness::Env' => '3.34',
10766             'TAP::Object' => '3.34',
10767             'TAP::Parser' => '3.34',
10768             'TAP::Parser::Aggregator'=> '3.34',
10769             'TAP::Parser::Grammar' => '3.34',
10770             'TAP::Parser::Iterator' => '3.34',
10771             'TAP::Parser::Iterator::Array'=> '3.34',
10772             'TAP::Parser::Iterator::Process'=> '3.34',
10773             'TAP::Parser::Iterator::Stream'=> '3.34',
10774             'TAP::Parser::IteratorFactory'=> '3.34',
10775             'TAP::Parser::Multiplexer'=> '3.34',
10776             'TAP::Parser::Result' => '3.34',
10777             'TAP::Parser::Result::Bailout'=> '3.34',
10778             'TAP::Parser::Result::Comment'=> '3.34',
10779             'TAP::Parser::Result::Plan'=> '3.34',
10780             'TAP::Parser::Result::Pragma'=> '3.34',
10781             'TAP::Parser::Result::Test'=> '3.34',
10782             'TAP::Parser::Result::Unknown'=> '3.34',
10783             'TAP::Parser::Result::Version'=> '3.34',
10784             'TAP::Parser::Result::YAML'=> '3.34',
10785             'TAP::Parser::ResultFactory'=> '3.34',
10786             'TAP::Parser::Scheduler'=> '3.34',
10787             'TAP::Parser::Scheduler::Job'=> '3.34',
10788             'TAP::Parser::Scheduler::Spinner'=> '3.34',
10789             'TAP::Parser::Source' => '3.34',
10790             'TAP::Parser::SourceHandler'=> '3.34',
10791             'TAP::Parser::SourceHandler::Executable'=> '3.34',
10792             'TAP::Parser::SourceHandler::File'=> '3.34',
10793             'TAP::Parser::SourceHandler::Handle'=> '3.34',
10794             'TAP::Parser::SourceHandler::Perl'=> '3.34',
10795             'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10796             'TAP::Parser::YAMLish::Reader'=> '3.34',
10797             'TAP::Parser::YAMLish::Writer'=> '3.34',
10798             'Test::Builder' => '1.301001_075',
10799             'Test::Builder::Module' => '1.301001_075',
10800             'Test::Builder::Tester' => '1.301001_075',
10801             'Test::Builder::Tester::Color'=> '1.301001_075',
10802             'Test::Harness' => '3.34',
10803             'Test::More' => '1.301001_075',
10804             'Test::More::DeepCheck' => undef,
10805             'Test::More::DeepCheck::Strict'=> undef,
10806             'Test::More::DeepCheck::Tolerant'=> undef,
10807             'Test::More::Tools' => undef,
10808             'Test::MostlyLike' => undef,
10809             'Test::Simple' => '1.301001_075',
10810             'Test::Stream' => '1.301001_075',
10811             'Test::Stream::ArrayBase'=> undef,
10812             'Test::Stream::ArrayBase::Meta'=> undef,
10813             'Test::Stream::Carp' => undef,
10814             'Test::Stream::Context' => undef,
10815             'Test::Stream::Event' => undef,
10816             'Test::Stream::Event::Bail'=> undef,
10817             'Test::Stream::Event::Child'=> undef,
10818             'Test::Stream::Event::Diag'=> undef,
10819             'Test::Stream::Event::Finish'=> undef,
10820             'Test::Stream::Event::Note'=> undef,
10821             'Test::Stream::Event::Ok'=> undef,
10822             'Test::Stream::Event::Plan'=> undef,
10823             'Test::Stream::Event::Subtest'=> undef,
10824             'Test::Stream::ExitMagic'=> undef,
10825             'Test::Stream::ExitMagic::Context'=> undef,
10826             'Test::Stream::Exporter'=> undef,
10827             'Test::Stream::Exporter::Meta'=> undef,
10828             'Test::Stream::IOSets' => undef,
10829             'Test::Stream::Meta' => undef,
10830             'Test::Stream::PackageUtil'=> undef,
10831             'Test::Stream::Tester' => undef,
10832             'Test::Stream::Tester::Checks'=> undef,
10833             'Test::Stream::Tester::Checks::Event'=> undef,
10834             'Test::Stream::Tester::Events'=> undef,
10835             'Test::Stream::Tester::Events::Event'=> undef,
10836             'Test::Stream::Tester::Grab'=> undef,
10837             'Test::Stream::Threads' => undef,
10838             'Test::Stream::Toolset' => undef,
10839             'Test::Stream::Util' => undef,
10840             'Test::Tester' => '1.301001_075',
10841             'Test::Tester::Capture' => undef,
10842             'Test::use::ok' => '1.301001_075',
10843             'Unicode::UCD' => '0.59',
10844             'XS::APItest' => '0.68',
10845             'XSLoader' => '0.19',
10846             'experimental' => '0.013',
10847             'locale' => '1.05',
10848             'ok' => '1.301001_075',
10849             'overload' => '1.24',
10850             're' => '0.28',
10851             'warnings' => '1.29',
10852             },
10853             removed => {
10854             }
10855             },
10856             5.021007 => {
10857             delta_from => 5.021006,
10858             changed => {
10859             'Archive::Tar' => '2.04',
10860             'Archive::Tar::Constant'=> '2.04',
10861             'Archive::Tar::File' => '2.04',
10862             'B' => '1.54',
10863             'B::Concise' => '0.996',
10864             'B::Deparse' => '1.31',
10865             'B::Op_private' => '5.021007',
10866             'B::Showlex' => '1.05',
10867             'Compress::Raw::Bzip2' => '2.067',
10868             'Compress::Raw::Zlib' => '2.067',
10869             'Compress::Zlib' => '2.067',
10870             'Config' => '5.021007',
10871             'Cwd' => '3.54',
10872             'DB_File' => '1.834',
10873             'Data::Dumper' => '2.155',
10874             'Devel::PPPort' => '3.25',
10875             'Devel::Peek' => '1.20',
10876             'DynaLoader' => '1.29',
10877             'Encode' => '2.67',
10878             'Errno' => '1.22',
10879             'ExtUtils::CBuilder' => '0.280221',
10880             'ExtUtils::CBuilder::Base'=> '0.280221',
10881             'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10882             'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10883             'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10884             'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10885             'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10886             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10887             'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10888             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10889             'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10890             'ExtUtils::Command::MM' => '7.04',
10891             'ExtUtils::Liblist' => '7.04',
10892             'ExtUtils::Liblist::Kid'=> '7.04',
10893             'ExtUtils::MM' => '7.04',
10894             'ExtUtils::MM_AIX' => '7.04',
10895             'ExtUtils::MM_Any' => '7.04',
10896             'ExtUtils::MM_BeOS' => '7.04',
10897             'ExtUtils::MM_Cygwin' => '7.04',
10898             'ExtUtils::MM_DOS' => '7.04',
10899             'ExtUtils::MM_Darwin' => '7.04',
10900             'ExtUtils::MM_MacOS' => '7.04',
10901             'ExtUtils::MM_NW5' => '7.04',
10902             'ExtUtils::MM_OS2' => '7.04',
10903             'ExtUtils::MM_QNX' => '7.04',
10904             'ExtUtils::MM_UWIN' => '7.04',
10905             'ExtUtils::MM_Unix' => '7.04',
10906             'ExtUtils::MM_VMS' => '7.04',
10907             'ExtUtils::MM_VOS' => '7.04',
10908             'ExtUtils::MM_Win32' => '7.04',
10909             'ExtUtils::MM_Win95' => '7.04',
10910             'ExtUtils::MY' => '7.04',
10911             'ExtUtils::MakeMaker' => '7.04',
10912             'ExtUtils::MakeMaker::Config'=> '7.04',
10913             'ExtUtils::MakeMaker::Locale'=> '7.04',
10914             'ExtUtils::MakeMaker::version'=> '7.04',
10915             'ExtUtils::MakeMaker::version::regex'=> '7.04',
10916             'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10917             'ExtUtils::Mkbootstrap' => '7.04',
10918             'ExtUtils::Mksymlists' => '7.04',
10919             'ExtUtils::ParseXS' => '3.27',
10920             'ExtUtils::ParseXS::Constants'=> '3.27',
10921             'ExtUtils::ParseXS::CountLines'=> '3.27',
10922             'ExtUtils::ParseXS::Eval'=> '3.27',
10923             'ExtUtils::ParseXS::Utilities'=> '3.27',
10924             'ExtUtils::testlib' => '7.04',
10925             'File::Spec' => '3.53',
10926             'File::Spec::Cygwin' => '3.54',
10927             'File::Spec::Epoc' => '3.54',
10928             'File::Spec::Functions' => '3.54',
10929             'File::Spec::Mac' => '3.54',
10930             'File::Spec::OS2' => '3.54',
10931             'File::Spec::Unix' => '3.54',
10932             'File::Spec::VMS' => '3.54',
10933             'File::Spec::Win32' => '3.54',
10934             'Filter::Util::Call' => '1.51',
10935             'HTTP::Tiny' => '0.053',
10936             'IO' => '1.35',
10937             'IO::Compress::Adapter::Bzip2'=> '2.067',
10938             'IO::Compress::Adapter::Deflate'=> '2.067',
10939             'IO::Compress::Adapter::Identity'=> '2.067',
10940             'IO::Compress::Base' => '2.067',
10941             'IO::Compress::Base::Common'=> '2.067',
10942             'IO::Compress::Bzip2' => '2.067',
10943             'IO::Compress::Deflate' => '2.067',
10944             'IO::Compress::Gzip' => '2.067',
10945             'IO::Compress::Gzip::Constants'=> '2.067',
10946             'IO::Compress::RawDeflate'=> '2.067',
10947             'IO::Compress::Zip' => '2.067',
10948             'IO::Compress::Zip::Constants'=> '2.067',
10949             'IO::Compress::Zlib::Constants'=> '2.067',
10950             'IO::Compress::Zlib::Extra'=> '2.067',
10951             'IO::Socket::IP' => '0.34',
10952             'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10953             'IO::Uncompress::Adapter::Identity'=> '2.067',
10954             'IO::Uncompress::Adapter::Inflate'=> '2.067',
10955             'IO::Uncompress::AnyInflate'=> '2.067',
10956             'IO::Uncompress::AnyUncompress'=> '2.067',
10957             'IO::Uncompress::Base' => '2.067',
10958             'IO::Uncompress::Bunzip2'=> '2.067',
10959             'IO::Uncompress::Gunzip'=> '2.067',
10960             'IO::Uncompress::Inflate'=> '2.067',
10961             'IO::Uncompress::RawInflate'=> '2.067',
10962             'IO::Uncompress::Unzip' => '2.067',
10963             'Locale::Codes' => '3.33',
10964             'Locale::Codes::Constants'=> '3.33',
10965             'Locale::Codes::Country'=> '3.33',
10966             'Locale::Codes::Country_Codes'=> '3.33',
10967             'Locale::Codes::Country_Retired'=> '3.33',
10968             'Locale::Codes::Currency'=> '3.33',
10969             'Locale::Codes::Currency_Codes'=> '3.33',
10970             'Locale::Codes::Currency_Retired'=> '3.33',
10971             'Locale::Codes::LangExt'=> '3.33',
10972             'Locale::Codes::LangExt_Codes'=> '3.33',
10973             'Locale::Codes::LangExt_Retired'=> '3.33',
10974             'Locale::Codes::LangFam'=> '3.33',
10975             'Locale::Codes::LangFam_Codes'=> '3.33',
10976             'Locale::Codes::LangFam_Retired'=> '3.33',
10977             'Locale::Codes::LangVar'=> '3.33',
10978             'Locale::Codes::LangVar_Codes'=> '3.33',
10979             'Locale::Codes::LangVar_Retired'=> '3.33',
10980             'Locale::Codes::Language'=> '3.33',
10981             'Locale::Codes::Language_Codes'=> '3.33',
10982             'Locale::Codes::Language_Retired'=> '3.33',
10983             'Locale::Codes::Script' => '3.33',
10984             'Locale::Codes::Script_Codes'=> '3.33',
10985             'Locale::Codes::Script_Retired'=> '3.33',
10986             'Locale::Country' => '3.33',
10987             'Locale::Currency' => '3.33',
10988             'Locale::Language' => '3.33',
10989             'Locale::Maketext' => '1.26',
10990             'Locale::Script' => '3.33',
10991             'Module::CoreList' => '5.20141220',
10992             'Module::CoreList::TieHashDelta'=> '5.20141220',
10993             'Module::CoreList::Utils'=> '5.20141220',
10994             'NDBM_File' => '1.14',
10995             'Net::Cmd' => '3.04',
10996             'Net::Config' => '3.04',
10997             'Net::Domain' => '3.04',
10998             'Net::FTP' => '3.04',
10999             'Net::FTP::A' => '3.04',
11000             'Net::FTP::E' => '3.04',
11001             'Net::FTP::I' => '3.04',
11002             'Net::FTP::L' => '3.04',
11003             'Net::FTP::dataconn' => '3.04',
11004             'Net::NNTP' => '3.04',
11005             'Net::Netrc' => '3.04',
11006             'Net::POP3' => '3.04',
11007             'Net::SMTP' => '3.04',
11008             'Net::Time' => '3.04',
11009             'Opcode' => '1.30',
11010             'POSIX' => '1.48',
11011             'PerlIO::scalar' => '0.21',
11012             'Pod::Escapes' => '1.07',
11013             'SDBM_File' => '1.12',
11014             'Storable' => '2.52',
11015             'Sys::Hostname' => '1.20',
11016             'Test::Builder' => '1.301001_090',
11017             'Test::Builder::Module' => '1.301001_090',
11018             'Test::Builder::Tester' => '1.301001_090',
11019             'Test::Builder::Tester::Color'=> '1.301001_090',
11020             'Test::CanFork' => undef,
11021             'Test::CanThread' => undef,
11022             'Test::More' => '1.301001_090',
11023             'Test::Simple' => '1.301001_090',
11024             'Test::Stream' => '1.301001_090',
11025             'Test::Stream::API' => undef,
11026             'Test::Stream::ForceExit'=> undef,
11027             'Test::Stream::Subtest' => undef,
11028             'Test::Tester' => '1.301001_090',
11029             'Test::use::ok' => '1.301001_090',
11030             'Unicode::Collate' => '1.09',
11031             'Unicode::Collate::CJK::Big5'=> '1.09',
11032             'Unicode::Collate::CJK::GB2312'=> '1.09',
11033             'Unicode::Collate::CJK::JISX0208'=> '1.09',
11034             'Unicode::Collate::CJK::Korean'=> '1.09',
11035             'Unicode::Collate::CJK::Pinyin'=> '1.09',
11036             'Unicode::Collate::CJK::Stroke'=> '1.09',
11037             'Unicode::Collate::CJK::Zhuyin'=> '1.09',
11038             'Unicode::Collate::Locale'=> '1.09',
11039             'XS::APItest' => '0.69',
11040             'XSLoader' => '0.20',
11041             '_charnames' => '1.43',
11042             'arybase' => '0.09',
11043             'charnames' => '1.43',
11044             'feature' => '1.39',
11045             'mro' => '1.17',
11046             'ok' => '1.301001_090',
11047             'strict' => '1.09',
11048             'threads' => '1.96_001',
11049             },
11050             removed => {
11051             }
11052             },
11053             5.021008 => {
11054             delta_from => 5.021007,
11055             changed => {
11056             'App::Prove' => '3.35',
11057             'App::Prove::State' => '3.35',
11058             'App::Prove::State::Result'=> '3.35',
11059             'App::Prove::State::Result::Test'=> '3.35',
11060             'B' => '1.55',
11061             'B::Deparse' => '1.32',
11062             'B::Op_private' => '5.021008',
11063             'CPAN::Meta::Requirements'=> '2.131',
11064             'Compress::Raw::Bzip2' => '2.068',
11065             'Compress::Raw::Zlib' => '2.068',
11066             'Compress::Zlib' => '2.068',
11067             'Config' => '5.021008',
11068             'DB_File' => '1.835',
11069             'Data::Dumper' => '2.156',
11070             'Devel::PPPort' => '3.28',
11071             'Devel::Peek' => '1.21',
11072             'Digest::MD5' => '2.54',
11073             'Digest::SHA' => '5.95',
11074             'DynaLoader' => '1.30',
11075             'ExtUtils::Command' => '1.20',
11076             'ExtUtils::Manifest' => '1.70',
11077             'Fatal' => '2.26',
11078             'File::Glob' => '1.24',
11079             'Filter::Util::Call' => '1.54',
11080             'Getopt::Long' => '2.43',
11081             'IO::Compress::Adapter::Bzip2'=> '2.068',
11082             'IO::Compress::Adapter::Deflate'=> '2.068',
11083             'IO::Compress::Adapter::Identity'=> '2.068',
11084             'IO::Compress::Base' => '2.068',
11085             'IO::Compress::Base::Common'=> '2.068',
11086             'IO::Compress::Bzip2' => '2.068',
11087             'IO::Compress::Deflate' => '2.068',
11088             'IO::Compress::Gzip' => '2.068',
11089             'IO::Compress::Gzip::Constants'=> '2.068',
11090             'IO::Compress::RawDeflate'=> '2.068',
11091             'IO::Compress::Zip' => '2.068',
11092             'IO::Compress::Zip::Constants'=> '2.068',
11093             'IO::Compress::Zlib::Constants'=> '2.068',
11094             'IO::Compress::Zlib::Extra'=> '2.068',
11095             'IO::Socket::IP' => '0.36',
11096             'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
11097             'IO::Uncompress::Adapter::Identity'=> '2.068',
11098             'IO::Uncompress::Adapter::Inflate'=> '2.068',
11099             'IO::Uncompress::AnyInflate'=> '2.068',
11100             'IO::Uncompress::AnyUncompress'=> '2.068',
11101             'IO::Uncompress::Base' => '2.068',
11102             'IO::Uncompress::Bunzip2'=> '2.068',
11103             'IO::Uncompress::Gunzip'=> '2.068',
11104             'IO::Uncompress::Inflate'=> '2.068',
11105             'IO::Uncompress::RawInflate'=> '2.068',
11106             'IO::Uncompress::Unzip' => '2.068',
11107             'MIME::Base64' => '3.15',
11108             'Module::CoreList' => '5.20150220',
11109             'Module::CoreList::TieHashDelta'=> '5.20150220',
11110             'Module::CoreList::Utils'=> '5.20150220',
11111             'Module::Load::Conditional'=> '0.64',
11112             'Module::Metadata' => '1.000026',
11113             'Net::Cmd' => '3.05',
11114             'Net::Config' => '3.05',
11115             'Net::Domain' => '3.05',
11116             'Net::FTP' => '3.05',
11117             'Net::FTP::A' => '3.05',
11118             'Net::FTP::E' => '3.05',
11119             'Net::FTP::I' => '3.05',
11120             'Net::FTP::L' => '3.05',
11121             'Net::FTP::dataconn' => '3.05',
11122             'Net::NNTP' => '3.05',
11123             'Net::Netrc' => '3.05',
11124             'Net::POP3' => '3.05',
11125             'Net::SMTP' => '3.05',
11126             'Net::Time' => '3.05',
11127             'Opcode' => '1.31',
11128             'POSIX' => '1.49',
11129             'PerlIO::encoding' => '0.21',
11130             'Pod::Simple' => '3.29',
11131             'Pod::Simple::BlackBox' => '3.29',
11132             'Pod::Simple::Checker' => '3.29',
11133             'Pod::Simple::Debug' => '3.29',
11134             'Pod::Simple::DumpAsText'=> '3.29',
11135             'Pod::Simple::DumpAsXML'=> '3.29',
11136             'Pod::Simple::HTML' => '3.29',
11137             'Pod::Simple::HTMLBatch'=> '3.29',
11138             'Pod::Simple::LinkSection'=> '3.29',
11139             'Pod::Simple::Methody' => '3.29',
11140             'Pod::Simple::Progress' => '3.29',
11141             'Pod::Simple::PullParser'=> '3.29',
11142             'Pod::Simple::PullParserEndToken'=> '3.29',
11143             'Pod::Simple::PullParserStartToken'=> '3.29',
11144             'Pod::Simple::PullParserTextToken'=> '3.29',
11145             'Pod::Simple::PullParserToken'=> '3.29',
11146             'Pod::Simple::RTF' => '3.29',
11147             'Pod::Simple::Search' => '3.29',
11148             'Pod::Simple::SimpleTree'=> '3.29',
11149             'Pod::Simple::Text' => '3.29',
11150             'Pod::Simple::TextContent'=> '3.29',
11151             'Pod::Simple::TiedOutFH'=> '3.29',
11152             'Pod::Simple::Transcode'=> '3.29',
11153             'Pod::Simple::TranscodeDumb'=> '3.29',
11154             'Pod::Simple::TranscodeSmart'=> '3.29',
11155             'Pod::Simple::XHTML' => '3.29',
11156             'Pod::Simple::XMLOutStream'=> '3.29',
11157             'SDBM_File' => '1.13',
11158             'Safe' => '2.39',
11159             'TAP::Base' => '3.35',
11160             'TAP::Formatter::Base' => '3.35',
11161             'TAP::Formatter::Color' => '3.35',
11162             'TAP::Formatter::Console'=> '3.35',
11163             'TAP::Formatter::Console::ParallelSession'=> '3.35',
11164             'TAP::Formatter::Console::Session'=> '3.35',
11165             'TAP::Formatter::File' => '3.35',
11166             'TAP::Formatter::File::Session'=> '3.35',
11167             'TAP::Formatter::Session'=> '3.35',
11168             'TAP::Harness' => '3.35',
11169             'TAP::Harness::Env' => '3.35',
11170             'TAP::Object' => '3.35',
11171             'TAP::Parser' => '3.35',
11172             'TAP::Parser::Aggregator'=> '3.35',
11173             'TAP::Parser::Grammar' => '3.35',
11174             'TAP::Parser::Iterator' => '3.35',
11175             'TAP::Parser::Iterator::Array'=> '3.35',
11176             'TAP::Parser::Iterator::Process'=> '3.35',
11177             'TAP::Parser::Iterator::Stream'=> '3.35',
11178             'TAP::Parser::IteratorFactory'=> '3.35',
11179             'TAP::Parser::Multiplexer'=> '3.35',
11180             'TAP::Parser::Result' => '3.35',
11181             'TAP::Parser::Result::Bailout'=> '3.35',
11182             'TAP::Parser::Result::Comment'=> '3.35',
11183             'TAP::Parser::Result::Plan'=> '3.35',
11184             'TAP::Parser::Result::Pragma'=> '3.35',
11185             'TAP::Parser::Result::Test'=> '3.35',
11186             'TAP::Parser::Result::Unknown'=> '3.35',
11187             'TAP::Parser::Result::Version'=> '3.35',
11188             'TAP::Parser::Result::YAML'=> '3.35',
11189             'TAP::Parser::ResultFactory'=> '3.35',
11190             'TAP::Parser::Scheduler'=> '3.35',
11191             'TAP::Parser::Scheduler::Job'=> '3.35',
11192             'TAP::Parser::Scheduler::Spinner'=> '3.35',
11193             'TAP::Parser::Source' => '3.35',
11194             'TAP::Parser::SourceHandler'=> '3.35',
11195             'TAP::Parser::SourceHandler::Executable'=> '3.35',
11196             'TAP::Parser::SourceHandler::File'=> '3.35',
11197             'TAP::Parser::SourceHandler::Handle'=> '3.35',
11198             'TAP::Parser::SourceHandler::Perl'=> '3.35',
11199             'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11200             'TAP::Parser::YAMLish::Reader'=> '3.35',
11201             'TAP::Parser::YAMLish::Writer'=> '3.35',
11202             'Test::Builder' => '1.301001_097',
11203             'Test::Builder::Module' => '1.301001_097',
11204             'Test::Builder::Tester' => '1.301001_097',
11205             'Test::Builder::Tester::Color'=> '1.301001_097',
11206             'Test::Harness' => '3.35',
11207             'Test::More' => '1.301001_097',
11208             'Test::Simple' => '1.301001_097',
11209             'Test::Stream' => '1.301001_097',
11210             'Test::Stream::Block' => undef,
11211             'Test::Tester' => '1.301001_097',
11212             'Test::Tester::CaptureRunner'=> undef,
11213             'Test::Tester::Delegate'=> undef,
11214             'Test::use::ok' => '1.301001_097',
11215             'Unicode::Collate' => '1.10',
11216             'Unicode::Collate::CJK::Big5'=> '1.10',
11217             'Unicode::Collate::CJK::GB2312'=> '1.10',
11218             'Unicode::Collate::CJK::JISX0208'=> '1.10',
11219             'Unicode::Collate::CJK::Korean'=> '1.10',
11220             'Unicode::Collate::CJK::Pinyin'=> '1.10',
11221             'Unicode::Collate::CJK::Stroke'=> '1.10',
11222             'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11223             'Unicode::Collate::Locale'=> '1.10',
11224             'VMS::DCLsym' => '1.06',
11225             'XS::APItest' => '0.70',
11226             'arybase' => '0.10',
11227             'attributes' => '0.25',
11228             'autodie' => '2.26',
11229             'autodie::Scope::Guard' => '2.26',
11230             'autodie::Scope::GuardStack'=> '2.26',
11231             'autodie::ScopeUtil' => '2.26',
11232             'autodie::exception' => '2.26',
11233             'autodie::exception::system'=> '2.26',
11234             'autodie::hints' => '2.26',
11235             'autodie::skip' => '2.26',
11236             'ok' => '1.301001_097',
11237             're' => '0.30',
11238             'warnings' => '1.30',
11239             },
11240             removed => {
11241             }
11242             },
11243             5.020002 => {
11244             delta_from => 5.020001,
11245             changed => {
11246             'CPAN::Author' => '5.5002',
11247             'CPAN::CacheMgr' => '5.5002',
11248             'CPAN::FTP' => '5.5006',
11249             'CPAN::HTTP::Client' => '1.9601',
11250             'CPAN::HandleConfig' => '5.5005',
11251             'CPAN::Index' => '1.9601',
11252             'CPAN::LWP::UserAgent' => '1.9601',
11253             'CPAN::Mirrors' => '1.9601',
11254             'Config' => '5.020002',
11255             'Cwd' => '3.48_01',
11256             'Data::Dumper' => '2.151_01',
11257             'Errno' => '1.20_05',
11258             'File::Spec' => '3.48_01',
11259             'File::Spec::Cygwin' => '3.48_01',
11260             'File::Spec::Epoc' => '3.48_01',
11261             'File::Spec::Functions' => '3.48_01',
11262             'File::Spec::Mac' => '3.48_01',
11263             'File::Spec::OS2' => '3.48_01',
11264             'File::Spec::Unix' => '3.48_01',
11265             'File::Spec::VMS' => '3.48_01',
11266             'File::Spec::Win32' => '3.48_01',
11267             'IO::Socket' => '1.38',
11268             'Module::CoreList' => '5.20150214',
11269             'Module::CoreList::TieHashDelta'=> '5.20150214',
11270             'Module::CoreList::Utils'=> '5.20150214',
11271             'PerlIO::scalar' => '0.18_01',
11272             'Pod::PlainText' => '2.07',
11273             'Storable' => '2.49_01',
11274             'VMS::DCLsym' => '1.05_01',
11275             'VMS::Stdio' => '2.41',
11276             'attributes' => '0.23',
11277             'feature' => '1.36_01',
11278             },
11279             removed => {
11280             }
11281             },
11282             5.021009 => {
11283             delta_from => 5.021008,
11284             changed => {
11285             'B' => '1.56',
11286             'B::Debug' => '1.23',
11287             'B::Deparse' => '1.33',
11288             'B::Op_private' => '5.021009',
11289             'Benchmark' => '1.20',
11290             'CPAN::Author' => '5.5002',
11291             'CPAN::CacheMgr' => '5.5002',
11292             'CPAN::FTP' => '5.5006',
11293             'CPAN::HTTP::Client' => '1.9601',
11294             'CPAN::HandleConfig' => '5.5005',
11295             'CPAN::Index' => '1.9601',
11296             'CPAN::LWP::UserAgent' => '1.9601',
11297             'CPAN::Meta::Requirements'=> '2.132',
11298             'CPAN::Mirrors' => '1.9601',
11299             'Carp' => '1.35',
11300             'Carp::Heavy' => '1.35',
11301             'Config' => '5.021009',
11302             'Config::Perl::V' => '0.23',
11303             'Data::Dumper' => '2.157',
11304             'Devel::Peek' => '1.22',
11305             'DynaLoader' => '1.31',
11306             'Encode' => '2.70',
11307             'Encode::MIME::Header' => '2.16',
11308             'Errno' => '1.23',
11309             'ExtUtils::Miniperl' => '1.04',
11310             'HTTP::Tiny' => '0.054',
11311             'Module::CoreList' => '5.20150220',
11312             'Module::CoreList::TieHashDelta'=> '5.20150220',
11313             'Module::CoreList::Utils'=> '5.20150220',
11314             'Opcode' => '1.32',
11315             'POSIX' => '1.51',
11316             'Perl::OSType' => '1.008',
11317             'PerlIO::scalar' => '0.22',
11318             'Pod::Find' => '1.63',
11319             'Pod::InputObjects' => '1.63',
11320             'Pod::ParseUtils' => '1.63',
11321             'Pod::Parser' => '1.63',
11322             'Pod::Perldoc' => '3.25',
11323             'Pod::Perldoc::BaseTo' => '3.25',
11324             'Pod::Perldoc::GetOptsOO'=> '3.25',
11325             'Pod::Perldoc::ToANSI' => '3.25',
11326             'Pod::Perldoc::ToChecker'=> '3.25',
11327             'Pod::Perldoc::ToMan' => '3.25',
11328             'Pod::Perldoc::ToNroff' => '3.25',
11329             'Pod::Perldoc::ToPod' => '3.25',
11330             'Pod::Perldoc::ToRtf' => '3.25',
11331             'Pod::Perldoc::ToTerm' => '3.25',
11332             'Pod::Perldoc::ToText' => '3.25',
11333             'Pod::Perldoc::ToTk' => '3.25',
11334             'Pod::Perldoc::ToXml' => '3.25',
11335             'Pod::PlainText' => '2.07',
11336             'Pod::Select' => '1.63',
11337             'Socket' => '2.018',
11338             'Storable' => '2.53',
11339             'Test::Builder' => '1.301001_098',
11340             'Test::Builder::Module' => '1.301001_098',
11341             'Test::Builder::Tester' => '1.301001_098',
11342             'Test::Builder::Tester::Color'=> '1.301001_098',
11343             'Test::More' => '1.301001_098',
11344             'Test::Simple' => '1.301001_098',
11345             'Test::Stream' => '1.301001_098',
11346             'Test::Tester' => '1.301001_098',
11347             'Test::use::ok' => '1.301001_098',
11348             'Unicode::Collate' => '1.11',
11349             'Unicode::Collate::CJK::Big5'=> '1.11',
11350             'Unicode::Collate::CJK::GB2312'=> '1.11',
11351             'Unicode::Collate::CJK::JISX0208'=> '1.11',
11352             'Unicode::Collate::CJK::Korean'=> '1.11',
11353             'Unicode::Collate::CJK::Pinyin'=> '1.11',
11354             'Unicode::Collate::CJK::Stroke'=> '1.11',
11355             'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11356             'Unicode::Collate::Locale'=> '1.11',
11357             'Unicode::UCD' => '0.61',
11358             'VMS::Stdio' => '2.41',
11359             'Win32' => '0.51',
11360             'Win32API::File' => '0.1202',
11361             'attributes' => '0.26',
11362             'bigint' => '0.39',
11363             'bignum' => '0.39',
11364             'bigrat' => '0.39',
11365             'constant' => '1.33',
11366             'encoding' => '2.13',
11367             'feature' => '1.40',
11368             'ok' => '1.301001_098',
11369             'overload' => '1.25',
11370             'perlfaq' => '5.021009',
11371             're' => '0.31',
11372             'threads::shared' => '1.48',
11373             'warnings' => '1.31',
11374             },
11375             removed => {
11376             }
11377             },
11378             5.021010 => {
11379             delta_from => 5.021009,
11380             changed => {
11381             'App::Cpan' => '1.63',
11382             'B' => '1.57',
11383             'B::Deparse' => '1.34',
11384             'B::Op_private' => '5.021010',
11385             'Benchmark' => '1.2',
11386             'CPAN' => '2.10',
11387             'CPAN::Distribution' => '2.04',
11388             'CPAN::FirstTime' => '5.5307',
11389             'CPAN::HTTP::Credentials'=> '1.9601',
11390             'CPAN::HandleConfig' => '5.5006',
11391             'CPAN::Meta' => '2.150001',
11392             'CPAN::Meta::Converter' => '2.150001',
11393             'CPAN::Meta::Feature' => '2.150001',
11394             'CPAN::Meta::History' => '2.150001',
11395             'CPAN::Meta::Merge' => '2.150001',
11396             'CPAN::Meta::Prereqs' => '2.150001',
11397             'CPAN::Meta::Spec' => '2.150001',
11398             'CPAN::Meta::Validator' => '2.150001',
11399             'CPAN::Module' => '5.5002',
11400             'CPAN::Plugin' => '0.95',
11401             'CPAN::Plugin::Specfile'=> '0.01',
11402             'CPAN::Shell' => '5.5005',
11403             'Carp' => '1.36',
11404             'Carp::Heavy' => '1.36',
11405             'Config' => '5.02101',
11406             'Cwd' => '3.55',
11407             'DB' => '1.08',
11408             'Data::Dumper' => '2.158',
11409             'Devel::PPPort' => '3.31',
11410             'DynaLoader' => '1.32',
11411             'Encode' => '2.72',
11412             'Encode::Alias' => '2.19',
11413             'File::Spec' => '3.55',
11414             'File::Spec::Cygwin' => '3.55',
11415             'File::Spec::Epoc' => '3.55',
11416             'File::Spec::Functions' => '3.55',
11417             'File::Spec::Mac' => '3.55',
11418             'File::Spec::OS2' => '3.55',
11419             'File::Spec::Unix' => '3.55',
11420             'File::Spec::VMS' => '3.55',
11421             'File::Spec::Win32' => '3.55',
11422             'Getopt::Long' => '2.45',
11423             'Locale::Codes' => '3.34',
11424             'Locale::Codes::Constants'=> '3.34',
11425             'Locale::Codes::Country'=> '3.34',
11426             'Locale::Codes::Country_Codes'=> '3.34',
11427             'Locale::Codes::Country_Retired'=> '3.34',
11428             'Locale::Codes::Currency'=> '3.34',
11429             'Locale::Codes::Currency_Codes'=> '3.34',
11430             'Locale::Codes::Currency_Retired'=> '3.34',
11431             'Locale::Codes::LangExt'=> '3.34',
11432             'Locale::Codes::LangExt_Codes'=> '3.34',
11433             'Locale::Codes::LangExt_Retired'=> '3.34',
11434             'Locale::Codes::LangFam'=> '3.34',
11435             'Locale::Codes::LangFam_Codes'=> '3.34',
11436             'Locale::Codes::LangFam_Retired'=> '3.34',
11437             'Locale::Codes::LangVar'=> '3.34',
11438             'Locale::Codes::LangVar_Codes'=> '3.34',
11439             'Locale::Codes::LangVar_Retired'=> '3.34',
11440             'Locale::Codes::Language'=> '3.34',
11441             'Locale::Codes::Language_Codes'=> '3.34',
11442             'Locale::Codes::Language_Retired'=> '3.34',
11443             'Locale::Codes::Script' => '3.34',
11444             'Locale::Codes::Script_Codes'=> '3.34',
11445             'Locale::Codes::Script_Retired'=> '3.34',
11446             'Locale::Country' => '3.34',
11447             'Locale::Currency' => '3.34',
11448             'Locale::Language' => '3.34',
11449             'Locale::Script' => '3.34',
11450             'Module::CoreList' => '5.20150320',
11451             'Module::CoreList::TieHashDelta'=> '5.20150320',
11452             'Module::CoreList::Utils'=> '5.20150320',
11453             'POSIX' => '1.52',
11454             'Pod::Functions' => '1.09',
11455             'Term::Complete' => '1.403',
11456             'Test::Builder' => '1.001014',
11457             'Test::Builder::IO::Scalar'=> '2.113',
11458             'Test::Builder::Module' => '1.001014',
11459             'Test::Builder::Tester' => '1.28',
11460             'Test::Builder::Tester::Color'=> '1.290001',
11461             'Test::More' => '1.001014',
11462             'Test::Simple' => '1.001014',
11463             'Test::Tester' => '0.114',
11464             'Test::use::ok' => '0.16',
11465             'Text::Balanced' => '2.03',
11466             'Text::ParseWords' => '3.30',
11467             'Unicode::Collate' => '1.12',
11468             'Unicode::Collate::CJK::Big5'=> '1.12',
11469             'Unicode::Collate::CJK::GB2312'=> '1.12',
11470             'Unicode::Collate::CJK::JISX0208'=> '1.12',
11471             'Unicode::Collate::CJK::Korean'=> '1.12',
11472             'Unicode::Collate::CJK::Pinyin'=> '1.12',
11473             'Unicode::Collate::CJK::Stroke'=> '1.12',
11474             'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11475             'Unicode::Collate::Locale'=> '1.12',
11476             'XS::APItest' => '0.71',
11477             'encoding' => '2.14',
11478             'locale' => '1.06',
11479             'meta_notation' => undef,
11480             'ok' => '0.16',
11481             'parent' => '0.232',
11482             're' => '0.32',
11483             'sigtrap' => '1.08',
11484             'threads' => '2.01',
11485             'utf8' => '1.15',
11486             },
11487             removed => {
11488             'Test::CanFork' => 1,
11489             'Test::CanThread' => 1,
11490             'Test::More::DeepCheck' => 1,
11491             'Test::More::DeepCheck::Strict'=> 1,
11492             'Test::More::DeepCheck::Tolerant'=> 1,
11493             'Test::More::Tools' => 1,
11494             'Test::MostlyLike' => 1,
11495             'Test::Stream' => 1,
11496             'Test::Stream::API' => 1,
11497             'Test::Stream::ArrayBase'=> 1,
11498             'Test::Stream::ArrayBase::Meta'=> 1,
11499             'Test::Stream::Block' => 1,
11500             'Test::Stream::Carp' => 1,
11501             'Test::Stream::Context' => 1,
11502             'Test::Stream::Event' => 1,
11503             'Test::Stream::Event::Bail'=> 1,
11504             'Test::Stream::Event::Child'=> 1,
11505             'Test::Stream::Event::Diag'=> 1,
11506             'Test::Stream::Event::Finish'=> 1,
11507             'Test::Stream::Event::Note'=> 1,
11508             'Test::Stream::Event::Ok'=> 1,
11509             'Test::Stream::Event::Plan'=> 1,
11510             'Test::Stream::Event::Subtest'=> 1,
11511             'Test::Stream::ExitMagic'=> 1,
11512             'Test::Stream::ExitMagic::Context'=> 1,
11513             'Test::Stream::Exporter'=> 1,
11514             'Test::Stream::Exporter::Meta'=> 1,
11515             'Test::Stream::ForceExit'=> 1,
11516             'Test::Stream::IOSets' => 1,
11517             'Test::Stream::Meta' => 1,
11518             'Test::Stream::PackageUtil'=> 1,
11519             'Test::Stream::Subtest' => 1,
11520             'Test::Stream::Tester' => 1,
11521             'Test::Stream::Tester::Checks'=> 1,
11522             'Test::Stream::Tester::Checks::Event'=> 1,
11523             'Test::Stream::Tester::Events'=> 1,
11524             'Test::Stream::Tester::Events::Event'=> 1,
11525             'Test::Stream::Tester::Grab'=> 1,
11526             'Test::Stream::Threads' => 1,
11527             'Test::Stream::Toolset' => 1,
11528             'Test::Stream::Util' => 1,
11529             }
11530             },
11531             5.021011 => {
11532             delta_from => 5.021010,
11533             changed => {
11534             'B' => '1.58',
11535             'B::Deparse' => '1.35',
11536             'B::Op_private' => '5.021011',
11537             'CPAN' => '2.11',
11538             'Config' => '5.021011',
11539             'Config::Perl::V' => '0.24',
11540             'Cwd' => '3.56',
11541             'ExtUtils::Miniperl' => '1.05',
11542             'ExtUtils::ParseXS' => '3.28',
11543             'ExtUtils::ParseXS::Constants'=> '3.28',
11544             'ExtUtils::ParseXS::CountLines'=> '3.28',
11545             'ExtUtils::ParseXS::Eval'=> '3.28',
11546             'ExtUtils::ParseXS::Utilities'=> '3.28',
11547             'ExtUtils::Typemaps' => '3.28',
11548             'ExtUtils::Typemaps::Cmd'=> '3.28',
11549             'ExtUtils::Typemaps::InputMap'=> '3.28',
11550             'ExtUtils::Typemaps::OutputMap'=> '3.28',
11551             'ExtUtils::Typemaps::Type'=> '3.28',
11552             'File::Spec' => '3.56',
11553             'File::Spec::Cygwin' => '3.56',
11554             'File::Spec::Epoc' => '3.56',
11555             'File::Spec::Functions' => '3.56',
11556             'File::Spec::Mac' => '3.56',
11557             'File::Spec::OS2' => '3.56',
11558             'File::Spec::Unix' => '3.56',
11559             'File::Spec::VMS' => '3.56',
11560             'File::Spec::Win32' => '3.56',
11561             'IO::Socket::IP' => '0.37',
11562             'Module::CoreList' => '5.20150420',
11563             'Module::CoreList::TieHashDelta'=> '5.20150420',
11564             'Module::CoreList::Utils'=> '5.20150420',
11565             'PerlIO::mmap' => '0.014',
11566             'XS::APItest' => '0.72',
11567             'attributes' => '0.27',
11568             'if' => '0.0604',
11569             'utf8' => '1.16',
11570             'warnings' => '1.32',
11571             },
11572             removed => {
11573             }
11574             },
11575             5.022000 => {
11576             delta_from => 5.021011,
11577             changed => {
11578             'B::Op_private' => '5.022000',
11579             'Config' => '5.022',
11580             'ExtUtils::Command::MM' => '7.04_01',
11581             'ExtUtils::Liblist' => '7.04_01',
11582             'ExtUtils::Liblist::Kid'=> '7.04_01',
11583             'ExtUtils::MM' => '7.04_01',
11584             'ExtUtils::MM_AIX' => '7.04_01',
11585             'ExtUtils::MM_Any' => '7.04_01',
11586             'ExtUtils::MM_BeOS' => '7.04_01',
11587             'ExtUtils::MM_Cygwin' => '7.04_01',
11588             'ExtUtils::MM_DOS' => '7.04_01',
11589             'ExtUtils::MM_Darwin' => '7.04_01',
11590             'ExtUtils::MM_MacOS' => '7.04_01',
11591             'ExtUtils::MM_NW5' => '7.04_01',
11592             'ExtUtils::MM_OS2' => '7.04_01',
11593             'ExtUtils::MM_QNX' => '7.04_01',
11594             'ExtUtils::MM_UWIN' => '7.04_01',
11595             'ExtUtils::MM_Unix' => '7.04_01',
11596             'ExtUtils::MM_VMS' => '7.04_01',
11597             'ExtUtils::MM_VOS' => '7.04_01',
11598             'ExtUtils::MM_Win32' => '7.04_01',
11599             'ExtUtils::MM_Win95' => '7.04_01',
11600             'ExtUtils::MY' => '7.04_01',
11601             'ExtUtils::MakeMaker' => '7.04_01',
11602             'ExtUtils::MakeMaker::Config'=> '7.04_01',
11603             'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11604             'ExtUtils::MakeMaker::version'=> '7.04_01',
11605             'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11606             'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11607             'ExtUtils::Mkbootstrap' => '7.04_01',
11608             'ExtUtils::Mksymlists' => '7.04_01',
11609             'ExtUtils::testlib' => '7.04_01',
11610             'Module::CoreList' => '5.20150520',
11611             'Module::CoreList::TieHashDelta'=> '5.20150520',
11612             'Module::CoreList::Utils'=> '5.20150520',
11613             'POSIX' => '1.53',
11614             'PerlIO::via::QuotedPrint'=> '0.08',
11615             'overload' => '1.26',
11616             'utf8' => '1.17',
11617             },
11618             removed => {
11619             }
11620             },
11621             5.023000 => {
11622             delta_from => 5.022000,
11623             changed => {
11624             'B::Op_private' => '5.023000',
11625             'CPAN::Meta' => '2.150005',
11626             'CPAN::Meta::Converter' => '2.150005',
11627             'CPAN::Meta::Feature' => '2.150005',
11628             'CPAN::Meta::History' => '2.150005',
11629             'CPAN::Meta::Merge' => '2.150005',
11630             'CPAN::Meta::Prereqs' => '2.150005',
11631             'CPAN::Meta::Requirements'=> '2.133',
11632             'CPAN::Meta::Spec' => '2.150005',
11633             'CPAN::Meta::Validator' => '2.150005',
11634             'CPAN::Meta::YAML' => '0.016',
11635             'Config' => '5.023',
11636             'Encode' => '2.73',
11637             'ExtUtils::CBuilder' => '0.280223',
11638             'ExtUtils::CBuilder::Base'=> '0.280223',
11639             'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11640             'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11641             'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11642             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11643             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11644             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11645             'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11646             'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11647             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11648             'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11649             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11650             'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11651             'Fatal' => '2.27',
11652             'Getopt::Long' => '2.46',
11653             'HTTP::Tiny' => '0.056',
11654             'List::Util' => '1.42_01',
11655             'List::Util::XS' => '1.42_01',
11656             'Locale::Codes' => '3.35',
11657             'Locale::Codes::Constants'=> '3.35',
11658             'Locale::Codes::Country'=> '3.35',
11659             'Locale::Codes::Country_Codes'=> '3.35',
11660             'Locale::Codes::Country_Retired'=> '3.35',
11661             'Locale::Codes::Currency'=> '3.35',
11662             'Locale::Codes::Currency_Codes'=> '3.35',
11663             'Locale::Codes::Currency_Retired'=> '3.35',
11664             'Locale::Codes::LangExt'=> '3.35',
11665             'Locale::Codes::LangExt_Codes'=> '3.35',
11666             'Locale::Codes::LangExt_Retired'=> '3.35',
11667             'Locale::Codes::LangFam'=> '3.35',
11668             'Locale::Codes::LangFam_Codes'=> '3.35',
11669             'Locale::Codes::LangFam_Retired'=> '3.35',
11670             'Locale::Codes::LangVar'=> '3.35',
11671             'Locale::Codes::LangVar_Codes'=> '3.35',
11672             'Locale::Codes::LangVar_Retired'=> '3.35',
11673             'Locale::Codes::Language'=> '3.35',
11674             'Locale::Codes::Language_Codes'=> '3.35',
11675             'Locale::Codes::Language_Retired'=> '3.35',
11676             'Locale::Codes::Script' => '3.35',
11677             'Locale::Codes::Script_Codes'=> '3.35',
11678             'Locale::Codes::Script_Retired'=> '3.35',
11679             'Locale::Country' => '3.35',
11680             'Locale::Currency' => '3.35',
11681             'Locale::Language' => '3.35',
11682             'Locale::Script' => '3.35',
11683             'Math::BigFloat' => '1.999701',
11684             'Math::BigInt' => '1.999701',
11685             'Math::BigInt::Calc' => '1.999701',
11686             'Math::BigInt::CalcEmu' => '1.999701',
11687             'Math::BigRat' => '0.260801',
11688             'Module::CoreList' => '5.20150620',
11689             'Module::CoreList::TieHashDelta'=> '5.20150620',
11690             'Module::CoreList::Utils'=> '5.20150620',
11691             'Module::Metadata' => '1.000027',
11692             'Net::Cmd' => '3.06',
11693             'Net::Config' => '3.06',
11694             'Net::Domain' => '3.06',
11695             'Net::FTP' => '3.06',
11696             'Net::FTP::A' => '3.06',
11697             'Net::FTP::E' => '3.06',
11698             'Net::FTP::I' => '3.06',
11699             'Net::FTP::L' => '3.06',
11700             'Net::FTP::dataconn' => '3.06',
11701             'Net::NNTP' => '3.06',
11702             'Net::Netrc' => '3.06',
11703             'Net::POP3' => '3.06',
11704             'Net::SMTP' => '3.06',
11705             'Net::Time' => '3.06',
11706             'POSIX' => '1.54',
11707             'Parse::CPAN::Meta' => '1.4417',
11708             'Pod::Simple' => '3.30',
11709             'Pod::Simple::BlackBox' => '3.30',
11710             'Pod::Simple::Checker' => '3.30',
11711             'Pod::Simple::Debug' => '3.30',
11712             'Pod::Simple::DumpAsText'=> '3.30',
11713             'Pod::Simple::DumpAsXML'=> '3.30',
11714             'Pod::Simple::HTML' => '3.30',
11715             'Pod::Simple::HTMLBatch'=> '3.30',
11716             'Pod::Simple::LinkSection'=> '3.30',
11717             'Pod::Simple::Methody' => '3.30',
11718             'Pod::Simple::Progress' => '3.30',
11719             'Pod::Simple::PullParser'=> '3.30',
11720             'Pod::Simple::PullParserEndToken'=> '3.30',
11721             'Pod::Simple::PullParserStartToken'=> '3.30',
11722             'Pod::Simple::PullParserTextToken'=> '3.30',
11723             'Pod::Simple::PullParserToken'=> '3.30',
11724             'Pod::Simple::RTF' => '3.30',
11725             'Pod::Simple::Search' => '3.30',
11726             'Pod::Simple::SimpleTree'=> '3.30',
11727             'Pod::Simple::Text' => '3.30',
11728             'Pod::Simple::TextContent'=> '3.30',
11729             'Pod::Simple::TiedOutFH'=> '3.30',
11730             'Pod::Simple::Transcode'=> '3.30',
11731             'Pod::Simple::TranscodeDumb'=> '3.30',
11732             'Pod::Simple::TranscodeSmart'=> '3.30',
11733             'Pod::Simple::XHTML' => '3.30',
11734             'Pod::Simple::XMLOutStream'=> '3.30',
11735             'Pod::Usage' => '1.67',
11736             'Scalar::Util' => '1.42_01',
11737             'Socket' => '2.019',
11738             'Sub::Util' => '1.42_01',
11739             'Time::Piece' => '1.30',
11740             'Time::Seconds' => '1.30',
11741             'UNIVERSAL' => '1.13',
11742             'Unicode' => '8.0.0',
11743             'XS::APItest' => '0.73',
11744             'autodie' => '2.27',
11745             'autodie::Scope::Guard' => '2.27',
11746             'autodie::Scope::GuardStack'=> '2.27',
11747             'autodie::Util' => '2.27',
11748             'autodie::exception' => '2.27',
11749             'autodie::exception::system'=> '2.27',
11750             'autodie::hints' => '2.27',
11751             'autodie::skip' => '2.27',
11752             'encoding' => '2.15',
11753             'feature' => '1.41',
11754             'parent' => '0.234',
11755             'threads' => '2.02',
11756             },
11757             removed => {
11758             }
11759             },
11760             5.023001 => {
11761             delta_from => 5.023000,
11762             changed => {
11763             'B::Op_private' => '5.023001',
11764             'Config' => '5.023001',
11765             'DynaLoader' => '1.33',
11766             'Encode' => '2.75',
11767             'Encode::MIME::Header' => '2.17',
11768             'Encode::Unicode' => '2.13',
11769             'Fatal' => '2.29',
11770             'File::Path' => '2.11',
11771             'Getopt::Long' => '2.47',
11772             'I18N::Langinfo' => '0.13',
11773             'IPC::Open3' => '1.19',
11774             'Module::CoreList' => '5.20150720',
11775             'Module::CoreList::TieHashDelta'=> '5.20150720',
11776             'Module::CoreList::Utils'=> '5.20150720',
11777             'Net::Cmd' => '3.07',
11778             'Net::Config' => '3.07',
11779             'Net::Domain' => '3.07',
11780             'Net::FTP' => '3.07',
11781             'Net::FTP::A' => '3.07',
11782             'Net::FTP::E' => '3.07',
11783             'Net::FTP::I' => '3.07',
11784             'Net::FTP::L' => '3.07',
11785             'Net::FTP::dataconn' => '3.07',
11786             'Net::NNTP' => '3.07',
11787             'Net::Netrc' => '3.07',
11788             'Net::POP3' => '3.07',
11789             'Net::SMTP' => '3.07',
11790             'Net::Time' => '3.07',
11791             'Opcode' => '1.33',
11792             'POSIX' => '1.55',
11793             'PerlIO::scalar' => '0.23',
11794             'Socket' => '2.020',
11795             'Storable' => '2.54',
11796             'Unicode::Collate' => '1.14',
11797             'Unicode::Collate::CJK::Big5'=> '1.14',
11798             'Unicode::Collate::CJK::GB2312'=> '1.14',
11799             'Unicode::Collate::CJK::JISX0208'=> '1.14',
11800             'Unicode::Collate::CJK::Korean'=> '1.14',
11801             'Unicode::Collate::CJK::Pinyin'=> '1.14',
11802             'Unicode::Collate::CJK::Stroke'=> '1.14',
11803             'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11804             'Unicode::Collate::Locale'=> '1.14',
11805             'Unicode::Normalize' => '1.19',
11806             'XS::APItest' => '0.74',
11807             'XS::Typemap' => '0.14',
11808             'autodie' => '2.29',
11809             'autodie::Scope::Guard' => '2.29',
11810             'autodie::Scope::GuardStack'=> '2.29',
11811             'autodie::Util' => '2.29',
11812             'autodie::exception' => '2.29',
11813             'autodie::exception::system'=> '2.29',
11814             'autodie::hints' => '2.29',
11815             'autodie::skip' => '2.29',
11816             'encoding' => '2.16',
11817             'feature' => '1.42',
11818             'warnings' => '1.33',
11819             },
11820             removed => {
11821             'autodie::ScopeUtil' => 1,
11822             }
11823             },
11824             5.023002 => {
11825             delta_from => 5.023001,
11826             changed => {
11827             'Attribute::Handlers' => '0.99',
11828             'B::Op_private' => '5.023002',
11829             'CPAN::Meta::YAML' => '0.017',
11830             'Config' => '5.023002',
11831             'Cwd' => '3.57',
11832             'Encode' => '2.76',
11833             'ExtUtils::ParseXS' => '3.29',
11834             'ExtUtils::ParseXS::Constants'=> '3.29',
11835             'ExtUtils::ParseXS::CountLines'=> '3.29',
11836             'ExtUtils::ParseXS::Eval'=> '3.29',
11837             'ExtUtils::ParseXS::Utilities'=> '3.29',
11838             'ExtUtils::Typemaps' => '3.29',
11839             'File::Find' => '1.30',
11840             'File::Spec' => '3.57',
11841             'File::Spec::Cygwin' => '3.57',
11842             'File::Spec::Epoc' => '3.57',
11843             'File::Spec::Functions' => '3.57',
11844             'File::Spec::Mac' => '3.57',
11845             'File::Spec::OS2' => '3.57',
11846             'File::Spec::Unix' => '3.57',
11847             'File::Spec::VMS' => '3.57',
11848             'File::Spec::Win32' => '3.57',
11849             'Filter::Util::Call' => '1.55',
11850             'Hash::Util' => '0.19',
11851             'Module::CoreList' => '5.20150820',
11852             'Module::CoreList::TieHashDelta'=> '5.20150820',
11853             'Module::CoreList::Utils'=> '5.20150820',
11854             'POSIX' => '1.56',
11855             'Term::Cap' => '1.17',
11856             'Unicode::UCD' => '0.62',
11857             'perlfaq' => '5.021010',
11858             },
11859             removed => {
11860             }
11861             },
11862             5.020003 => {
11863             delta_from => 5.020002,
11864             changed => {
11865             'Config' => '5.020003',
11866             'Errno' => '1.20_06',
11867             'Module::CoreList' => '5.20150912',
11868             'Module::CoreList::TieHashDelta'=> '5.20150912',
11869             'Module::CoreList::Utils'=> '5.20150912',
11870             },
11871             removed => {
11872             }
11873             },
11874             5.023003 => {
11875             delta_from => 5.023002,
11876             changed => {
11877             'Amiga::ARexx' => '0.02',
11878             'Amiga::Exec' => '0.01',
11879             'B' => '1.59',
11880             'B::Op_private' => '5.023003',
11881             'Carp' => '1.37',
11882             'Carp::Heavy' => '1.37',
11883             'Compress::Raw::Zlib' => '2.068_01',
11884             'Config' => '5.023003',
11885             'Cwd' => '3.58',
11886             'DynaLoader' => '1.34',
11887             'Encode' => '2.77',
11888             'Encode::Unicode' => '2.14',
11889             'English' => '1.10',
11890             'Errno' => '1.24',
11891             'ExtUtils::Command' => '7.10',
11892             'ExtUtils::Command::MM' => '7.10',
11893             'ExtUtils::Liblist' => '7.10',
11894             'ExtUtils::Liblist::Kid'=> '7.10',
11895             'ExtUtils::MM' => '7.10',
11896             'ExtUtils::MM_AIX' => '7.10',
11897             'ExtUtils::MM_Any' => '7.10',
11898             'ExtUtils::MM_BeOS' => '7.10',
11899             'ExtUtils::MM_Cygwin' => '7.10',
11900             'ExtUtils::MM_DOS' => '7.10',
11901             'ExtUtils::MM_Darwin' => '7.10',
11902             'ExtUtils::MM_MacOS' => '7.10',
11903             'ExtUtils::MM_NW5' => '7.10',
11904             'ExtUtils::MM_OS2' => '7.10',
11905             'ExtUtils::MM_QNX' => '7.10',
11906             'ExtUtils::MM_UWIN' => '7.10',
11907             'ExtUtils::MM_Unix' => '7.10',
11908             'ExtUtils::MM_VMS' => '7.10',
11909             'ExtUtils::MM_VOS' => '7.10',
11910             'ExtUtils::MM_Win32' => '7.10',
11911             'ExtUtils::MM_Win95' => '7.10',
11912             'ExtUtils::MY' => '7.10',
11913             'ExtUtils::MakeMaker' => '7.10',
11914             'ExtUtils::MakeMaker::Config'=> '7.10',
11915             'ExtUtils::MakeMaker::Locale'=> '7.10',
11916             'ExtUtils::MakeMaker::version'=> '7.10',
11917             'ExtUtils::MakeMaker::version::regex'=> '7.10',
11918             'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11919             'ExtUtils::Mkbootstrap' => '7.10',
11920             'ExtUtils::Mksymlists' => '7.10',
11921             'ExtUtils::ParseXS' => '3.30',
11922             'ExtUtils::ParseXS::Constants'=> '3.30',
11923             'ExtUtils::ParseXS::CountLines'=> '3.30',
11924             'ExtUtils::ParseXS::Eval'=> '3.30',
11925             'ExtUtils::ParseXS::Utilities'=> '3.30',
11926             'ExtUtils::Typemaps' => '3.30',
11927             'ExtUtils::Typemaps::Cmd'=> '3.30',
11928             'ExtUtils::Typemaps::InputMap'=> '3.30',
11929             'ExtUtils::Typemaps::OutputMap'=> '3.30',
11930             'ExtUtils::Typemaps::Type'=> '3.30',
11931             'ExtUtils::testlib' => '7.10',
11932             'File::Find' => '1.31',
11933             'File::Glob' => '1.25',
11934             'File::Spec' => '3.58',
11935             'File::Spec::AmigaOS' => '3.58',
11936             'File::Spec::Cygwin' => '3.58',
11937             'File::Spec::Epoc' => '3.58',
11938             'File::Spec::Functions' => '3.58',
11939             'File::Spec::Mac' => '3.58',
11940             'File::Spec::OS2' => '3.58',
11941             'File::Spec::Unix' => '3.58',
11942             'File::Spec::VMS' => '3.58',
11943             'File::Spec::Win32' => '3.58',
11944             'Hash::Util::FieldHash' => '1.17',
11945             'Locale::Codes' => '3.36',
11946             'Locale::Codes::Constants'=> '3.36',
11947             'Locale::Codes::Country'=> '3.36',
11948             'Locale::Codes::Country_Codes'=> '3.36',
11949             'Locale::Codes::Country_Retired'=> '3.36',
11950             'Locale::Codes::Currency'=> '3.36',
11951             'Locale::Codes::Currency_Codes'=> '3.36',
11952             'Locale::Codes::Currency_Retired'=> '3.36',
11953             'Locale::Codes::LangExt'=> '3.36',
11954             'Locale::Codes::LangExt_Codes'=> '3.36',
11955             'Locale::Codes::LangExt_Retired'=> '3.36',
11956             'Locale::Codes::LangFam'=> '3.36',
11957             'Locale::Codes::LangFam_Codes'=> '3.36',
11958             'Locale::Codes::LangFam_Retired'=> '3.36',
11959             'Locale::Codes::LangVar'=> '3.36',
11960             'Locale::Codes::LangVar_Codes'=> '3.36',
11961             'Locale::Codes::LangVar_Retired'=> '3.36',
11962             'Locale::Codes::Language'=> '3.36',
11963             'Locale::Codes::Language_Codes'=> '3.36',
11964             'Locale::Codes::Language_Retired'=> '3.36',
11965             'Locale::Codes::Script' => '3.36',
11966             'Locale::Codes::Script_Codes'=> '3.36',
11967             'Locale::Codes::Script_Retired'=> '3.36',
11968             'Locale::Country' => '3.36',
11969             'Locale::Currency' => '3.36',
11970             'Locale::Language' => '3.36',
11971             'Locale::Script' => '3.36',
11972             'Math::BigFloat::Trace' => '0.40',
11973             'Math::BigInt::Trace' => '0.40',
11974             'Module::CoreList' => '5.20150920',
11975             'Module::CoreList::TieHashDelta'=> '5.20150920',
11976             'Module::CoreList::Utils'=> '5.20150920',
11977             'OS2::DLL' => '1.06',
11978             'OS2::ExtAttr' => '0.04',
11979             'OS2::Process' => '1.11',
11980             'OS2::REXX' => '1.05',
11981             'POSIX' => '1.57',
11982             'Pod::Perldoc' => '3.25_01',
11983             'Socket' => '2.020_01',
11984             'Test' => '1.27',
11985             'Thread::Queue' => '3.06',
11986             'Time::HiRes' => '1.9727_02',
11987             'Unicode::UCD' => '0.63',
11988             'Win32' => '0.52',
11989             'XS::APItest' => '0.75',
11990             'bigint' => '0.40',
11991             'bignum' => '0.40',
11992             'bigrat' => '0.40',
11993             'encoding' => '2.17',
11994             'experimental' => '0.014',
11995             'if' => '0.0605',
11996             'locale' => '1.07',
11997             'mro' => '1.18',
11998             'threads' => '2.03',
11999             },
12000             removed => {
12001             }
12002             },
12003             5.023004 => {
12004             delta_from => 5.023003,
12005             changed => {
12006             'B' => '1.60',
12007             'B::Op_private' => '5.023004',
12008             'Compress::Raw::Bzip2' => '2.069',
12009             'Compress::Raw::Zlib' => '2.069',
12010             'Compress::Zlib' => '2.069',
12011             'Config' => '5.023004',
12012             'Devel::PPPort' => '3.32',
12013             'DynaLoader' => '1.35',
12014             'Encode' => '2.78',
12015             'ExtUtils::CBuilder' => '0.280224',
12016             'ExtUtils::CBuilder::Base'=> '0.280224',
12017             'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
12018             'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
12019             'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
12020             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
12021             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
12022             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
12023             'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
12024             'ExtUtils::CBuilder::Platform::android'=> '0.280224',
12025             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
12026             'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
12027             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
12028             'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
12029             'File::Path' => '2.12',
12030             'IO' => '1.36',
12031             'IO::Compress::Adapter::Bzip2'=> '2.069',
12032             'IO::Compress::Adapter::Deflate'=> '2.069',
12033             'IO::Compress::Adapter::Identity'=> '2.069',
12034             'IO::Compress::Base' => '2.069',
12035             'IO::Compress::Base::Common'=> '2.069',
12036             'IO::Compress::Bzip2' => '2.069',
12037             'IO::Compress::Deflate' => '2.069',
12038             'IO::Compress::Gzip' => '2.069',
12039             'IO::Compress::Gzip::Constants'=> '2.069',
12040             'IO::Compress::RawDeflate'=> '2.069',
12041             'IO::Compress::Zip' => '2.069',
12042             'IO::Compress::Zip::Constants'=> '2.069',
12043             'IO::Compress::Zlib::Constants'=> '2.069',
12044             'IO::Compress::Zlib::Extra'=> '2.069',
12045             'IO::Poll' => '0.10',
12046             'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
12047             'IO::Uncompress::Adapter::Identity'=> '2.069',
12048             'IO::Uncompress::Adapter::Inflate'=> '2.069',
12049             'IO::Uncompress::AnyInflate'=> '2.069',
12050             'IO::Uncompress::AnyUncompress'=> '2.069',
12051             'IO::Uncompress::Base' => '2.069',
12052             'IO::Uncompress::Bunzip2'=> '2.069',
12053             'IO::Uncompress::Gunzip'=> '2.069',
12054             'IO::Uncompress::Inflate'=> '2.069',
12055             'IO::Uncompress::RawInflate'=> '2.069',
12056             'IO::Uncompress::Unzip' => '2.069',
12057             'Math::BigFloat' => '1.999704',
12058             'Math::BigFloat::Trace' => '0.41',
12059             'Math::BigInt' => '1.999704',
12060             'Math::BigInt::Calc' => '1.999704',
12061             'Math::BigInt::CalcEmu' => '1.999704',
12062             'Math::BigInt::FastCalc'=> '0.34',
12063             'Math::BigInt::Trace' => '0.41',
12064             'Module::CoreList' => '5.20151020',
12065             'Module::CoreList::TieHashDelta'=> '5.20151020',
12066             'Module::CoreList::Utils'=> '5.20151020',
12067             'Module::Metadata' => '1.000029',
12068             'POSIX' => '1.58',
12069             'Perl::OSType' => '1.009',
12070             'PerlIO::encoding' => '0.22',
12071             'Socket' => '2.020_02',
12072             'Unicode::Normalize' => '1.21',
12073             'XS::APItest' => '0.76',
12074             'bigint' => '0.41',
12075             'bignum' => '0.41',
12076             'bigrat' => '0.41',
12077             'experimental' => '0.016',
12078             'if' => '0.0606',
12079             'warnings' => '1.35',
12080             },
12081             removed => {
12082             }
12083             },
12084             5.023005 => {
12085             delta_from => 5.023004,
12086             changed => {
12087             'B' => '1.61',
12088             'B::Op_private' => '5.023005',
12089             'Carp' => '1.38',
12090             'Carp::Heavy' => '1.38',
12091             'Config' => '5.023005',
12092             'Config::Perl::V' => '0.25',
12093             'Cwd' => '3.59',
12094             'Devel::Peek' => '1.23',
12095             'Dumpvalue' => '1.18',
12096             'DynaLoader' => '1.36',
12097             'File::Find' => '1.32',
12098             'File::Spec' => '3.59',
12099             'File::Spec::AmigaOS' => '3.59',
12100             'File::Spec::Cygwin' => '3.59',
12101             'File::Spec::Epoc' => '3.59',
12102             'File::Spec::Functions' => '3.59',
12103             'File::Spec::Mac' => '3.59',
12104             'File::Spec::OS2' => '3.59',
12105             'File::Spec::Unix' => '3.59',
12106             'File::Spec::VMS' => '3.59',
12107             'File::Spec::Win32' => '3.59',
12108             'Getopt::Long' => '2.48',
12109             'Hash::Util::FieldHash' => '1.18',
12110             'IPC::Open3' => '1.20',
12111             'Math::BigFloat' => '1.999710',
12112             'Math::BigInt' => '1.999710',
12113             'Math::BigInt::Calc' => '1.999710',
12114             'Math::BigInt::CalcEmu' => '1.999710',
12115             'Math::BigInt::FastCalc'=> '0.37',
12116             'Module::CoreList' => '5.20151120',
12117             'Module::CoreList::TieHashDelta'=> '5.20151120',
12118             'Module::CoreList::Utils'=> '5.20151120',
12119             'Module::Metadata' => '1.000030',
12120             'POSIX' => '1.59',
12121             'PerlIO::encoding' => '0.23',
12122             'PerlIO::mmap' => '0.015',
12123             'PerlIO::scalar' => '0.24',
12124             'PerlIO::via' => '0.16',
12125             'Pod::Simple' => '3.32',
12126             'Pod::Simple::BlackBox' => '3.32',
12127             'Pod::Simple::Checker' => '3.32',
12128             'Pod::Simple::Debug' => '3.32',
12129             'Pod::Simple::DumpAsText'=> '3.32',
12130             'Pod::Simple::DumpAsXML'=> '3.32',
12131             'Pod::Simple::HTML' => '3.32',
12132             'Pod::Simple::HTMLBatch'=> '3.32',
12133             'Pod::Simple::LinkSection'=> '3.32',
12134             'Pod::Simple::Methody' => '3.32',
12135             'Pod::Simple::Progress' => '3.32',
12136             'Pod::Simple::PullParser'=> '3.32',
12137             'Pod::Simple::PullParserEndToken'=> '3.32',
12138             'Pod::Simple::PullParserStartToken'=> '3.32',
12139             'Pod::Simple::PullParserTextToken'=> '3.32',
12140             'Pod::Simple::PullParserToken'=> '3.32',
12141             'Pod::Simple::RTF' => '3.32',
12142             'Pod::Simple::Search' => '3.32',
12143             'Pod::Simple::SimpleTree'=> '3.32',
12144             'Pod::Simple::Text' => '3.32',
12145             'Pod::Simple::TextContent'=> '3.32',
12146             'Pod::Simple::TiedOutFH'=> '3.32',
12147             'Pod::Simple::Transcode'=> '3.32',
12148             'Pod::Simple::TranscodeDumb'=> '3.32',
12149             'Pod::Simple::TranscodeSmart'=> '3.32',
12150             'Pod::Simple::XHTML' => '3.32',
12151             'Pod::Simple::XMLOutStream'=> '3.32',
12152             'Thread::Queue' => '3.07',
12153             'Tie::Scalar' => '1.04',
12154             'Time::HiRes' => '1.9728',
12155             'Time::Piece' => '1.31',
12156             'Time::Seconds' => '1.31',
12157             'Unicode::Normalize' => '1.23',
12158             'XSLoader' => '0.21',
12159             'arybase' => '0.11',
12160             'base' => '2.22_01',
12161             'fields' => '2.22_01',
12162             'threads' => '2.04',
12163             'threads::shared' => '1.49',
12164             },
12165             removed => {
12166             'ExtUtils::MakeMaker::version::vpp'=> 1,
12167             'version::vpp' => 1,
12168             }
12169             },
12170             5.022001 => {
12171             delta_from => 5.022,
12172             changed => {
12173             'B::Op_private' => '5.022001',
12174             'Config' => '5.022001',
12175             'Module::CoreList' => '5.20151213',
12176             'Module::CoreList::TieHashDelta'=> '5.20151213',
12177             'Module::CoreList::Utils'=> '5.20151213',
12178             'POSIX' => '1.53_01',
12179             'PerlIO::scalar' => '0.23',
12180             'Storable' => '2.53_01',
12181             'Win32' => '0.52',
12182             'warnings' => '1.34',
12183             },
12184             removed => {
12185             }
12186             },
12187             5.023006 => {
12188             delta_from => 5.023005,
12189             changed => {
12190             'B::Deparse' => '1.36',
12191             'B::Op_private' => '5.023006',
12192             'Benchmark' => '1.21',
12193             'CPAN::Meta::Requirements'=> '2.140',
12194             'CPAN::Meta::YAML' => '0.018',
12195             'Config' => '5.023006',
12196             'Cwd' => '3.60',
12197             'Data::Dumper' => '2.159',
12198             'DynaLoader' => '1.37',
12199             'File::Spec' => '3.60',
12200             'File::Spec::AmigaOS' => '3.60',
12201             'File::Spec::Cygwin' => '3.60',
12202             'File::Spec::Epoc' => '3.60',
12203             'File::Spec::Functions' => '3.60',
12204             'File::Spec::Mac' => '3.60',
12205             'File::Spec::OS2' => '3.60',
12206             'File::Spec::Unix' => '3.60',
12207             'File::Spec::VMS' => '3.60',
12208             'File::Spec::Win32' => '3.60',
12209             'Hash::Util::FieldHash' => '1.19',
12210             'Locale::Codes' => '3.37',
12211             'Locale::Codes::Constants'=> '3.37',
12212             'Locale::Codes::Country'=> '3.37',
12213             'Locale::Codes::Country_Codes'=> '3.37',
12214             'Locale::Codes::Country_Retired'=> '3.37',
12215             'Locale::Codes::Currency'=> '3.37',
12216             'Locale::Codes::Currency_Codes'=> '3.37',
12217             'Locale::Codes::Currency_Retired'=> '3.37',
12218             'Locale::Codes::LangExt'=> '3.37',
12219             'Locale::Codes::LangExt_Codes'=> '3.37',
12220             'Locale::Codes::LangExt_Retired'=> '3.37',
12221             'Locale::Codes::LangFam'=> '3.37',
12222             'Locale::Codes::LangFam_Codes'=> '3.37',
12223             'Locale::Codes::LangFam_Retired'=> '3.37',
12224             'Locale::Codes::LangVar'=> '3.37',
12225             'Locale::Codes::LangVar_Codes'=> '3.37',
12226             'Locale::Codes::LangVar_Retired'=> '3.37',
12227             'Locale::Codes::Language'=> '3.37',
12228             'Locale::Codes::Language_Codes'=> '3.37',
12229             'Locale::Codes::Language_Retired'=> '3.37',
12230             'Locale::Codes::Script' => '3.37',
12231             'Locale::Codes::Script_Codes'=> '3.37',
12232             'Locale::Codes::Script_Retired'=> '3.37',
12233             'Locale::Country' => '3.37',
12234             'Locale::Currency' => '3.37',
12235             'Locale::Language' => '3.37',
12236             'Locale::Script' => '3.37',
12237             'Math::BigInt::FastCalc'=> '0.38',
12238             'Module::CoreList' => '5.20151220',
12239             'Module::CoreList::TieHashDelta'=> '5.20151220',
12240             'Module::CoreList::Utils'=> '5.20151220',
12241             'Module::Metadata' => '1.000031',
12242             'Opcode' => '1.34',
12243             'PerlIO::mmap' => '0.016',
12244             'Pod::Perldoc' => '3.25_02',
12245             'SDBM_File' => '1.14',
12246             'Term::ANSIColor' => '4.04',
12247             'Test' => '1.28',
12248             'Unicode::Normalize' => '1.24',
12249             'XS::APItest' => '0.77',
12250             'base' => '2.23',
12251             'encoding::warnings' => '0.12',
12252             'fields' => '2.23',
12253             'locale' => '1.08',
12254             'strict' => '1.10',
12255             'threads' => '2.05',
12256             'threads::shared' => '1.50',
12257             'utf8' => '1.18',
12258             },
12259             removed => {
12260             }
12261             },
12262             5.023007 => {
12263             delta_from => 5.023006,
12264             changed => {
12265             'App::Prove' => '3.36',
12266             'App::Prove::State' => '3.36',
12267             'App::Prove::State::Result'=> '3.36',
12268             'App::Prove::State::Result::Test'=> '3.36',
12269             'B' => '1.62',
12270             'B::Deparse' => '1.37',
12271             'B::Op_private' => '5.023007',
12272             'Benchmark' => '1.22',
12273             'Config' => '5.023007',
12274             'Cwd' => '3.62',
12275             'Data::Dumper' => '2.160',
12276             'ExtUtils::ParseXS' => '3.31',
12277             'ExtUtils::ParseXS::Constants'=> '3.31',
12278             'ExtUtils::ParseXS::CountLines'=> '3.31',
12279             'ExtUtils::ParseXS::Eval'=> '3.31',
12280             'ExtUtils::ParseXS::Utilities'=> '3.31',
12281             'ExtUtils::Typemaps' => '3.31',
12282             'ExtUtils::Typemaps::Cmd'=> '3.31',
12283             'ExtUtils::Typemaps::InputMap'=> '3.31',
12284             'ExtUtils::Typemaps::OutputMap'=> '3.31',
12285             'ExtUtils::Typemaps::Type'=> '3.31',
12286             'File::Find' => '1.33',
12287             'File::Spec' => '3.62',
12288             'File::Spec::AmigaOS' => '3.62',
12289             'File::Spec::Cygwin' => '3.62',
12290             'File::Spec::Epoc' => '3.62',
12291             'File::Spec::Functions' => '3.62',
12292             'File::Spec::Mac' => '3.62',
12293             'File::Spec::OS2' => '3.62',
12294             'File::Spec::Unix' => '3.62',
12295             'File::Spec::VMS' => '3.62',
12296             'File::Spec::Win32' => '3.62',
12297             'Math::BigFloat' => '1.999715',
12298             'Math::BigFloat::Trace' => '0.42',
12299             'Math::BigInt' => '1.999715',
12300             'Math::BigInt::Calc' => '1.999715',
12301             'Math::BigInt::CalcEmu' => '1.999715',
12302             'Math::BigInt::FastCalc'=> '0.40',
12303             'Math::BigInt::Trace' => '0.42',
12304             'Math::BigRat' => '0.260802',
12305             'Module::CoreList' => '5.20160120',
12306             'Module::CoreList::TieHashDelta'=> '5.20160120',
12307             'Module::CoreList::Utils'=> '5.20160120',
12308             'Net::Cmd' => '3.08',
12309             'Net::Config' => '3.08',
12310             'Net::Domain' => '3.08',
12311             'Net::FTP' => '3.08',
12312             'Net::FTP::A' => '3.08',
12313             'Net::FTP::E' => '3.08',
12314             'Net::FTP::I' => '3.08',
12315             'Net::FTP::L' => '3.08',
12316             'Net::FTP::dataconn' => '3.08',
12317             'Net::NNTP' => '3.08',
12318             'Net::Netrc' => '3.08',
12319             'Net::POP3' => '3.08',
12320             'Net::SMTP' => '3.08',
12321             'Net::Time' => '3.08',
12322             'Pod::Man' => '4.04',
12323             'Pod::ParseLink' => '4.04',
12324             'Pod::Text' => '4.04',
12325             'Pod::Text::Color' => '4.04',
12326             'Pod::Text::Overstrike' => '4.04',
12327             'Pod::Text::Termcap' => '4.04',
12328             'Pod::Usage' => '1.68',
12329             'TAP::Base' => '3.36',
12330             'TAP::Formatter::Base' => '3.36',
12331             'TAP::Formatter::Color' => '3.36',
12332             'TAP::Formatter::Console'=> '3.36',
12333             'TAP::Formatter::Console::ParallelSession'=> '3.36',
12334             'TAP::Formatter::Console::Session'=> '3.36',
12335             'TAP::Formatter::File' => '3.36',
12336             'TAP::Formatter::File::Session'=> '3.36',
12337             'TAP::Formatter::Session'=> '3.36',
12338             'TAP::Harness' => '3.36',
12339             'TAP::Harness::Env' => '3.36',
12340             'TAP::Object' => '3.36',
12341             'TAP::Parser' => '3.36',
12342             'TAP::Parser::Aggregator'=> '3.36',
12343             'TAP::Parser::Grammar' => '3.36',
12344             'TAP::Parser::Iterator' => '3.36',
12345             'TAP::Parser::Iterator::Array'=> '3.36',
12346             'TAP::Parser::Iterator::Process'=> '3.36',
12347             'TAP::Parser::Iterator::Stream'=> '3.36',
12348             'TAP::Parser::IteratorFactory'=> '3.36',
12349             'TAP::Parser::Multiplexer'=> '3.36',
12350             'TAP::Parser::Result' => '3.36',
12351             'TAP::Parser::Result::Bailout'=> '3.36',
12352             'TAP::Parser::Result::Comment'=> '3.36',
12353             'TAP::Parser::Result::Plan'=> '3.36',
12354             'TAP::Parser::Result::Pragma'=> '3.36',
12355             'TAP::Parser::Result::Test'=> '3.36',
12356             'TAP::Parser::Result::Unknown'=> '3.36',
12357             'TAP::Parser::Result::Version'=> '3.36',
12358             'TAP::Parser::Result::YAML'=> '3.36',
12359             'TAP::Parser::ResultFactory'=> '3.36',
12360             'TAP::Parser::Scheduler'=> '3.36',
12361             'TAP::Parser::Scheduler::Job'=> '3.36',
12362             'TAP::Parser::Scheduler::Spinner'=> '3.36',
12363             'TAP::Parser::Source' => '3.36',
12364             'TAP::Parser::SourceHandler'=> '3.36',
12365             'TAP::Parser::SourceHandler::Executable'=> '3.36',
12366             'TAP::Parser::SourceHandler::File'=> '3.36',
12367             'TAP::Parser::SourceHandler::Handle'=> '3.36',
12368             'TAP::Parser::SourceHandler::Perl'=> '3.36',
12369             'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
12370             'TAP::Parser::YAMLish::Reader'=> '3.36',
12371             'TAP::Parser::YAMLish::Writer'=> '3.36',
12372             'Test::Harness' => '3.36',
12373             'Unicode::Normalize' => '1.25',
12374             'Unicode::UCD' => '0.64',
12375             'XS::APItest' => '0.78',
12376             'bigint' => '0.42',
12377             'bignum' => '0.42',
12378             'bigrat' => '0.42',
12379             'utf8' => '1.19',
12380             },
12381             removed => {
12382             }
12383             },
12384             5.023008 => {
12385             delta_from => 5.023007,
12386             changed => {
12387             'B::Op_private' => '5.023008',
12388             'Config' => '5.023008',
12389             'Cwd' => '3.63',
12390             'DynaLoader' => '1.38',
12391             'Encode' => '2.80',
12392             'Encode::Alias' => '2.20',
12393             'Encode::MIME::Header' => '2.19',
12394             'Encode::Unicode' => '2.15',
12395             'ExtUtils::CBuilder' => '0.280225',
12396             'ExtUtils::CBuilder::Base'=> '0.280225',
12397             'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
12398             'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
12399             'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
12400             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
12401             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
12402             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
12403             'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
12404             'ExtUtils::CBuilder::Platform::android'=> '0.280225',
12405             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
12406             'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
12407             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
12408             'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
12409             'ExtUtils::Command::MM' => '7.10_01',
12410             'ExtUtils::Liblist' => '7.10_01',
12411             'ExtUtils::Liblist::Kid'=> '7.10_01',
12412             'ExtUtils::MM' => '7.10_01',
12413             'ExtUtils::MM_AIX' => '7.10_01',
12414             'ExtUtils::MM_Any' => '7.10_01',
12415             'ExtUtils::MM_BeOS' => '7.10_01',
12416             'ExtUtils::MM_Cygwin' => '7.10_01',
12417             'ExtUtils::MM_DOS' => '7.10_01',
12418             'ExtUtils::MM_Darwin' => '7.10_01',
12419             'ExtUtils::MM_MacOS' => '7.10_01',
12420             'ExtUtils::MM_NW5' => '7.10_01',
12421             'ExtUtils::MM_OS2' => '7.10_01',
12422             'ExtUtils::MM_QNX' => '7.10_01',
12423             'ExtUtils::MM_UWIN' => '7.10_01',
12424             'ExtUtils::MM_Unix' => '7.10_01',
12425             'ExtUtils::MM_VMS' => '7.10_01',
12426             'ExtUtils::MM_VOS' => '7.10_01',
12427             'ExtUtils::MM_Win32' => '7.10_01',
12428             'ExtUtils::MM_Win95' => '7.10_01',
12429             'ExtUtils::MY' => '7.10_01',
12430             'ExtUtils::MakeMaker' => '7.10_01',
12431             'ExtUtils::MakeMaker::Config'=> '7.10_01',
12432             'ExtUtils::MakeMaker::version'=> '7.10_01',
12433             'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
12434             'ExtUtils::Mkbootstrap' => '7.10_01',
12435             'ExtUtils::Mksymlists' => '7.10_01',
12436             'ExtUtils::testlib' => '7.10_01',
12437             'File::Spec' => '3.63',
12438             'File::Spec::AmigaOS' => '3.63',
12439             'File::Spec::Cygwin' => '3.63',
12440             'File::Spec::Epoc' => '3.63',
12441             'File::Spec::Functions' => '3.63',
12442             'File::Spec::Mac' => '3.63',
12443             'File::Spec::OS2' => '3.63',
12444             'File::Spec::Unix' => '3.63',
12445             'File::Spec::VMS' => '3.63',
12446             'File::Spec::Win32' => '3.63',
12447             'IPC::Msg' => '2.05',
12448             'IPC::Semaphore' => '2.05',
12449             'IPC::SharedMem' => '2.05',
12450             'IPC::SysV' => '2.05',
12451             'Module::CoreList' => '5.20160121',
12452             'Module::CoreList::TieHashDelta'=> '5.20160121',
12453             'Module::CoreList::Utils'=> '5.20160121',
12454             'ODBM_File' => '1.13',
12455             'POSIX' => '1.63',
12456             'PerlIO::encoding' => '0.24',
12457             'Pod::Man' => '4.06',
12458             'Pod::ParseLink' => '4.06',
12459             'Pod::Text' => '4.06',
12460             'Pod::Text::Color' => '4.06',
12461             'Pod::Text::Overstrike' => '4.06',
12462             'Pod::Text::Termcap' => '4.06',
12463             'Storable' => '2.55',
12464             'Time::HiRes' => '1.9730',
12465             'XS::APItest' => '0.79',
12466             },
12467             removed => {
12468             }
12469             },
12470             5.023009 => {
12471             delta_from => 5.023008,
12472             changed => {
12473             'Amiga::ARexx' => '0.04',
12474             'Amiga::Exec' => '0.02',
12475             'B::Op_private' => '5.023009',
12476             'Carp' => '1.40',
12477             'Carp::Heavy' => '1.40',
12478             'Config' => '5.023009',
12479             'Errno' => '1.25',
12480             'ExtUtils::Embed' => '1.33',
12481             'File::Find' => '1.34',
12482             'File::Glob' => '1.26',
12483             'File::Spec::AmigaOS' => ';.64',
12484             'IPC::Msg' => '2.06_01',
12485             'IPC::Semaphore' => '2.06_01',
12486             'IPC::SharedMem' => '2.06_01',
12487             'IPC::SysV' => '2.06_01',
12488             'List::Util' => '1.42_02',
12489             'List::Util::XS' => '1.42_02',
12490             'Module::CoreList' => '5.20160320',
12491             'Module::CoreList::TieHashDelta'=> '5.20160320',
12492             'Module::CoreList::Utils'=> '5.20160320',
12493             'POSIX' => '1.64',
12494             'Pod::Functions' => '1.10',
12495             'Scalar::Util' => '1.42_02',
12496             'SelfLoader' => '1.23',
12497             'Socket' => '2.020_03',
12498             'Storable' => '2.56',
12499             'Sub::Util' => '1.42_02',
12500             'Thread::Queue' => '3.08',
12501             'Tie::File' => '1.02',
12502             'Time::HiRes' => '1.9732',
12503             'Win32API::File' => '0.1203',
12504             'XS::APItest' => '0.80',
12505             'autouse' => '1.11',
12506             'bytes' => '1.05',
12507             'strict' => '1.11',
12508             'threads' => '2.06',
12509             'version' => '0.9916',
12510             'version::regex' => '0.9916',
12511             'warnings' => '1.36',
12512             },
12513             removed => {
12514             'Win32API::File::ExtUtils::Myconst2perl'=> 1,
12515             }
12516             },
12517             5.022002 => {
12518             delta_from => 5.022001,
12519             changed => {
12520             'B::Op_private' => '5.022002',
12521             'Config' => '5.022002',
12522             'Cwd' => '3.56_01',
12523             'File::Spec' => '3.56_01',
12524             'File::Spec::Cygwin' => '3.56_01',
12525             'File::Spec::Epoc' => '3.56_01',
12526             'File::Spec::Functions' => '3.56_01',
12527             'File::Spec::Mac' => '3.56_01',
12528             'File::Spec::OS2' => '3.56_01',
12529             'File::Spec::Unix' => '3.56_01',
12530             'File::Spec::VMS' => '3.56_01',
12531             'File::Spec::Win32' => '3.56_01',
12532             'Module::CoreList' => '5.20160429',
12533             'Module::CoreList::TieHashDelta'=> '5.20160429',
12534             'Module::CoreList::Utils'=> '5.20160429',
12535             'XS::APItest' => '0.72_01',
12536             },
12537             removed => {
12538             }
12539             },
12540             5.024000 => {
12541             delta_from => 5.023009,
12542             changed => {
12543             'B::Op_private' => '5.024000',
12544             'Config' => '5.024',
12545             'File::Copy' => '2.31',
12546             'File::Path' => '2.12_01',
12547             'File::Spec::AmigaOS' => '3.64',
12548             'IO::Handle' => '1.36',
12549             'Module::CoreList' => '5.20160506',
12550             'Module::CoreList::TieHashDelta'=> '5.20160506',
12551             'Module::CoreList::Utils'=> '5.20160506',
12552             'ODBM_File' => '1.14',
12553             'POSIX' => '1.65',
12554             'Pod::Man' => '4.07',
12555             'Pod::ParseLink' => '4.07',
12556             'Pod::Text' => '4.07',
12557             'Pod::Text::Color' => '4.07',
12558             'Pod::Text::Overstrike' => '4.07',
12559             'Pod::Text::Termcap' => '4.07',
12560             'Thread::Queue' => '3.09',
12561             'Time::HiRes' => '1.9733',
12562             'threads' => '2.07',
12563             'threads::shared' => '1.51',
12564             'locale' => '1.09',
12565             },
12566             removed => {
12567             }
12568             },
12569             5.025000 => {
12570             delta_from => 5.024,
12571             changed => {
12572             'B::Op_private' => '5.025000',
12573             'Config' => '5.025',
12574             'Module::CoreList' => '5.20160507',
12575             'Module::CoreList::TieHashDelta'=> '5.20160507',
12576             'Module::CoreList::Utils'=> '5.20160507',
12577             'feature' => '1.43',
12578             },
12579             removed => {
12580             }
12581             },
12582             5.025001 => {
12583             delta_from => 5.025,
12584             changed => {
12585             'Archive::Tar' => '2.08',
12586             'Archive::Tar::Constant'=> '2.08',
12587             'Archive::Tar::File' => '2.08',
12588             'B::Op_private' => '5.025001',
12589             'Carp' => '1.41',
12590             'Carp::Heavy' => '1.41',
12591             'Config' => '5.025001',
12592             'Config::Perl::V' => '0.26',
12593             'DB_File' => '1.838',
12594             'Digest::MD5' => '2.55',
12595             'IPC::Cmd' => '0.94',
12596             'IPC::Msg' => '2.07',
12597             'IPC::Semaphore' => '2.07',
12598             'IPC::SharedMem' => '2.07',
12599             'IPC::SysV' => '2.07',
12600             'List::Util' => '1.45_01',
12601             'List::Util::XS' => '1.45_01',
12602             'Locale::Codes' => '3.38',
12603             'Locale::Codes::Constants'=> '3.38',
12604             'Locale::Codes::Country'=> '3.38',
12605             'Locale::Codes::Country_Codes'=> '3.38',
12606             'Locale::Codes::Country_Retired'=> '3.38',
12607             'Locale::Codes::Currency'=> '3.38',
12608             'Locale::Codes::Currency_Codes'=> '3.38',
12609             'Locale::Codes::Currency_Retired'=> '3.38',
12610             'Locale::Codes::LangExt'=> '3.38',
12611             'Locale::Codes::LangExt_Codes'=> '3.38',
12612             'Locale::Codes::LangExt_Retired'=> '3.38',
12613             'Locale::Codes::LangFam'=> '3.38',
12614             'Locale::Codes::LangFam_Codes'=> '3.38',
12615             'Locale::Codes::LangFam_Retired'=> '3.38',
12616             'Locale::Codes::LangVar'=> '3.38',
12617             'Locale::Codes::LangVar_Codes'=> '3.38',
12618             'Locale::Codes::LangVar_Retired'=> '3.38',
12619             'Locale::Codes::Language'=> '3.38',
12620             'Locale::Codes::Language_Codes'=> '3.38',
12621             'Locale::Codes::Language_Retired'=> '3.38',
12622             'Locale::Codes::Script' => '3.38',
12623             'Locale::Codes::Script_Codes'=> '3.38',
12624             'Locale::Codes::Script_Retired'=> '3.38',
12625             'Locale::Country' => '3.38',
12626             'Locale::Currency' => '3.38',
12627             'Locale::Language' => '3.38',
12628             'Locale::Maketext' => '1.27',
12629             'Locale::Script' => '3.38',
12630             'Module::CoreList' => '5.20160520',
12631             'Module::CoreList::TieHashDelta'=> '5.20160520',
12632             'Module::CoreList::Utils'=> '5.20160520',
12633             'Module::Metadata' => '1.000032',
12634             'POSIX' => '1.69',
12635             'Scalar::Util' => '1.45_01',
12636             'Sub::Util' => '1.45_01',
12637             'Sys::Syslog' => '0.34',
12638             'Term::ANSIColor' => '4.05',
12639             'Test2' => '1.302015',
12640             'Test2::API' => '1.302015',
12641             'Test2::API::Breakage' => '1.302015',
12642             'Test2::API::Context' => '1.302015',
12643             'Test2::API::Instance' => '1.302015',
12644             'Test2::API::Stack' => '1.302015',
12645             'Test2::Event' => '1.302015',
12646             'Test2::Event::Bail' => '1.302015',
12647             'Test2::Event::Diag' => '1.302015',
12648             'Test2::Event::Exception'=> '1.302015',
12649             'Test2::Event::Note' => '1.302015',
12650             'Test2::Event::Ok' => '1.302015',
12651             'Test2::Event::Plan' => '1.302015',
12652             'Test2::Event::Skip' => '1.302015',
12653             'Test2::Event::Subtest' => '1.302015',
12654             'Test2::Event::Waiting' => '1.302015',
12655             'Test2::Formatter' => '1.302015',
12656             'Test2::Formatter::TAP' => '1.302015',
12657             'Test2::Hub' => '1.302015',
12658             'Test2::Hub::Interceptor'=> '1.302015',
12659             'Test2::Hub::Interceptor::Terminator'=> '1.302015',
12660             'Test2::Hub::Subtest' => '1.302015',
12661             'Test2::IPC' => '1.302015',
12662             'Test2::IPC::Driver' => '1.302015',
12663             'Test2::IPC::Driver::Files'=> '1.302015',
12664             'Test2::Util' => '1.302015',
12665             'Test2::Util::ExternalMeta'=> '1.302015',
12666             'Test2::Util::HashBase' => '1.302015',
12667             'Test2::Util::Trace' => '1.302015',
12668             'Test::Builder' => '1.302015',
12669             'Test::Builder::Formatter'=> '1.302015',
12670             'Test::Builder::Module' => '1.302015',
12671             'Test::Builder::Tester' => '1.302015',
12672             'Test::Builder::Tester::Color'=> '1.302015',
12673             'Test::Builder::TodoDiag'=> '1.302015',
12674             'Test::More' => '1.302015',
12675             'Test::Simple' => '1.302015',
12676             'Test::Tester' => '1.302015',
12677             'Test::Tester::Capture' => '1.302015',
12678             'Test::Tester::CaptureRunner'=> '1.302015',
12679             'Test::Tester::Delegate'=> '1.302015',
12680             'Test::use::ok' => '1.302015',
12681             'XS::APItest' => '0.81',
12682             '_charnames' => '1.44',
12683             'charnames' => '1.44',
12684             'ok' => '1.302015',
12685             'perlfaq' => '5.021011',
12686             're' => '0.33',
12687             'threads' => '2.08',
12688             'threads::shared' => '1.52',
12689             },
12690             removed => {
12691             }
12692             },
12693             5.025002 => {
12694             delta_from => 5.025001,
12695             changed => {
12696             'App::Cpan' => '1.64',
12697             'B::Op_private' => '5.025002',
12698             'CPAN' => '2.14',
12699             'CPAN::Distribution' => '2.12',
12700             'CPAN::FTP' => '5.5007',
12701             'CPAN::FirstTime' => '5.5309',
12702             'CPAN::HandleConfig' => '5.5007',
12703             'CPAN::Index' => '2.12',
12704             'CPAN::Mirrors' => '2.12',
12705             'CPAN::Plugin' => '0.96',
12706             'CPAN::Shell' => '5.5006',
12707             'Config' => '5.025002',
12708             'Cwd' => '3.64',
12709             'Devel::Peek' => '1.24',
12710             'DynaLoader' => '1.39',
12711             'ExtUtils::Command' => '7.18',
12712             'ExtUtils::Command::MM' => '7.18',
12713             'ExtUtils::Liblist' => '7.18',
12714             'ExtUtils::Liblist::Kid'=> '7.18',
12715             'ExtUtils::MM' => '7.18',
12716             'ExtUtils::MM_AIX' => '7.18',
12717             'ExtUtils::MM_Any' => '7.18',
12718             'ExtUtils::MM_BeOS' => '7.18',
12719             'ExtUtils::MM_Cygwin' => '7.18',
12720             'ExtUtils::MM_DOS' => '7.18',
12721             'ExtUtils::MM_Darwin' => '7.18',
12722             'ExtUtils::MM_MacOS' => '7.18',
12723             'ExtUtils::MM_NW5' => '7.18',
12724             'ExtUtils::MM_OS2' => '7.18',
12725             'ExtUtils::MM_QNX' => '7.18',
12726             'ExtUtils::MM_UWIN' => '7.18',
12727             'ExtUtils::MM_Unix' => '7.18',
12728             'ExtUtils::MM_VMS' => '7.18',
12729             'ExtUtils::MM_VOS' => '7.18',
12730             'ExtUtils::MM_Win32' => '7.18',
12731             'ExtUtils::MM_Win95' => '7.18',
12732             'ExtUtils::MY' => '7.18',
12733             'ExtUtils::MakeMaker' => '7.18',
12734             'ExtUtils::MakeMaker::Config'=> '7.18',
12735             'ExtUtils::MakeMaker::Locale'=> '7.18',
12736             'ExtUtils::MakeMaker::version'=> '7.18',
12737             'ExtUtils::MakeMaker::version::regex'=> '7.18',
12738             'ExtUtils::Miniperl' => '1.06',
12739             'ExtUtils::Mkbootstrap' => '7.18',
12740             'ExtUtils::Mksymlists' => '7.18',
12741             'ExtUtils::ParseXS' => '3.32',
12742             'ExtUtils::ParseXS::Constants'=> '3.32',
12743             'ExtUtils::ParseXS::CountLines'=> '3.32',
12744             'ExtUtils::ParseXS::Eval'=> '3.32',
12745             'ExtUtils::ParseXS::Utilities'=> '3.32',
12746             'ExtUtils::Typemaps' => '3.32',
12747             'ExtUtils::Typemaps::Cmd'=> '3.32',
12748             'ExtUtils::Typemaps::InputMap'=> '3.32',
12749             'ExtUtils::Typemaps::OutputMap'=> '3.32',
12750             'ExtUtils::Typemaps::Type'=> '3.32',
12751             'ExtUtils::testlib' => '7.18',
12752             'File::Copy' => '2.32',
12753             'File::Glob' => '1.27',
12754             'File::Spec' => '3.64',
12755             'File::Spec::Cygwin' => '3.64',
12756             'File::Spec::Epoc' => '3.64',
12757             'File::Spec::Functions' => '3.64',
12758             'File::Spec::Mac' => '3.64',
12759             'File::Spec::OS2' => '3.64',
12760             'File::Spec::Unix' => '3.64',
12761             'File::Spec::VMS' => '3.64',
12762             'File::Spec::Win32' => '3.64',
12763             'FileHandle' => '2.03',
12764             'Getopt::Long' => '2.49',
12765             'HTTP::Tiny' => '0.058',
12766             'JSON::PP' => '2.27400',
12767             'Locale::Codes' => '3.39',
12768             'Locale::Codes::Constants'=> '3.39',
12769             'Locale::Codes::Country'=> '3.39',
12770             'Locale::Codes::Country_Codes'=> '3.39',
12771             'Locale::Codes::Country_Retired'=> '3.39',
12772             'Locale::Codes::Currency'=> '3.39',
12773             'Locale::Codes::Currency_Codes'=> '3.39',
12774             'Locale::Codes::Currency_Retired'=> '3.39',
12775             'Locale::Codes::LangExt'=> '3.39',
12776             'Locale::Codes::LangExt_Codes'=> '3.39',
12777             'Locale::Codes::LangExt_Retired'=> '3.39',
12778             'Locale::Codes::LangFam'=> '3.39',
12779             'Locale::Codes::LangFam_Codes'=> '3.39',
12780             'Locale::Codes::LangFam_Retired'=> '3.39',
12781             'Locale::Codes::LangVar'=> '3.39',
12782             'Locale::Codes::LangVar_Codes'=> '3.39',
12783             'Locale::Codes::LangVar_Retired'=> '3.39',
12784             'Locale::Codes::Language'=> '3.39',
12785             'Locale::Codes::Language_Codes'=> '3.39',
12786             'Locale::Codes::Language_Retired'=> '3.39',
12787             'Locale::Codes::Script' => '3.39',
12788             'Locale::Codes::Script_Codes'=> '3.39',
12789             'Locale::Codes::Script_Retired'=> '3.39',
12790             'Locale::Country' => '3.39',
12791             'Locale::Currency' => '3.39',
12792             'Locale::Language' => '3.39',
12793             'Locale::Script' => '3.39',
12794             'Module::CoreList' => '5.20160620',
12795             'Module::CoreList::TieHashDelta'=> '5.20160620',
12796             'Module::CoreList::Utils'=> '5.20160620',
12797             'Opcode' => '1.35',
12798             'POSIX' => '1.70',
12799             'Pod::Checker' => '1.73',
12800             'Pod::Functions' => '1.11',
12801             'Pod::Usage' => '1.69',
12802             'Test2' => '1.302026',
12803             'Test2::API' => '1.302026',
12804             'Test2::API::Breakage' => '1.302026',
12805             'Test2::API::Context' => '1.302026',
12806             'Test2::API::Instance' => '1.302026',
12807             'Test2::API::Stack' => '1.302026',
12808             'Test2::Event' => '1.302026',
12809             'Test2::Event::Bail' => '1.302026',
12810             'Test2::Event::Diag' => '1.302026',
12811             'Test2::Event::Exception'=> '1.302026',
12812             'Test2::Event::Generic' => '1.302026',
12813             'Test2::Event::Note' => '1.302026',
12814             'Test2::Event::Ok' => '1.302026',
12815             'Test2::Event::Plan' => '1.302026',
12816             'Test2::Event::Skip' => '1.302026',
12817             'Test2::Event::Subtest' => '1.302026',
12818             'Test2::Event::Waiting' => '1.302026',
12819             'Test2::Formatter' => '1.302026',
12820             'Test2::Formatter::TAP' => '1.302026',
12821             'Test2::Hub' => '1.302026',
12822             'Test2::Hub::Interceptor'=> '1.302026',
12823             'Test2::Hub::Interceptor::Terminator'=> '1.302026',
12824             'Test2::Hub::Subtest' => '1.302026',
12825             'Test2::IPC' => '1.302026',
12826             'Test2::IPC::Driver' => '1.302026',
12827             'Test2::IPC::Driver::Files'=> '1.302026',
12828             'Test2::Util' => '1.302026',
12829             'Test2::Util::ExternalMeta'=> '1.302026',
12830             'Test2::Util::HashBase' => '1.302026',
12831             'Test2::Util::Trace' => '1.302026',
12832             'Test::Builder' => '1.302026',
12833             'Test::Builder::Formatter'=> '1.302026',
12834             'Test::Builder::Module' => '1.302026',
12835             'Test::Builder::Tester' => '1.302026',
12836             'Test::Builder::Tester::Color'=> '1.302026',
12837             'Test::Builder::TodoDiag'=> '1.302026',
12838             'Test::More' => '1.302026',
12839             'Test::Simple' => '1.302026',
12840             'Test::Tester' => '1.302026',
12841             'Test::Tester::Capture' => '1.302026',
12842             'Test::Tester::CaptureRunner'=> '1.302026',
12843             'Test::Tester::Delegate'=> '1.302026',
12844             'Test::use::ok' => '1.302026',
12845             'Thread::Queue' => '3.11',
12846             'Time::HiRes' => '1.9734',
12847             'Unicode::UCD' => '0.65',
12848             'VMS::DCLsym' => '1.07',
12849             'XS::APItest' => '0.82',
12850             'diagnostics' => '1.35',
12851             'feature' => '1.44',
12852             'ok' => '1.302026',
12853             'threads' => '2.09',
12854             },
12855             removed => {
12856             }
12857             },
12858             5.025003 => {
12859             delta_from => 5.025002,
12860             changed => {
12861             'B::Op_private' => '5.025003',
12862             'Config' => '5.025003',
12863             'Data::Dumper' => '2.161',
12864             'Devel::PPPort' => '3.35',
12865             'Encode' => '2.84',
12866             'Encode::MIME::Header' => '2.23',
12867             'Encode::MIME::Header::ISO_2022_JP'=> '1.07',
12868             'ExtUtils::ParseXS' => '3.33',
12869             'ExtUtils::ParseXS::Constants'=> '3.33',
12870             'ExtUtils::ParseXS::CountLines'=> '3.33',
12871             'ExtUtils::ParseXS::Eval'=> '3.33',
12872             'ExtUtils::ParseXS::Utilities'=> '3.33',
12873             'ExtUtils::Typemaps' => '3.33',
12874             'ExtUtils::Typemaps::Cmd'=> '3.33',
12875             'ExtUtils::Typemaps::InputMap'=> '3.33',
12876             'ExtUtils::Typemaps::OutputMap'=> '3.33',
12877             'ExtUtils::Typemaps::Type'=> '3.33',
12878             'Hash::Util' => '0.20',
12879             'Math::BigFloat' => '1.999726',
12880             'Math::BigFloat::Trace' => '0.43',
12881             'Math::BigInt' => '1.999726',
12882             'Math::BigInt::Calc' => '1.999726',
12883             'Math::BigInt::CalcEmu' => '1.999726',
12884             'Math::BigInt::FastCalc'=> '0.42',
12885             'Math::BigInt::Trace' => '0.43',
12886             'Math::BigRat' => '0.260804',
12887             'Module::CoreList' => '5.20160720',
12888             'Module::CoreList::TieHashDelta'=> '5.20160720',
12889             'Module::CoreList::Utils'=> '5.20160720',
12890             'Net::Cmd' => '3.09',
12891             'Net::Config' => '3.09',
12892             'Net::Domain' => '3.09',
12893             'Net::FTP' => '3.09',
12894             'Net::FTP::A' => '3.09',
12895             'Net::FTP::E' => '3.09',
12896             'Net::FTP::I' => '3.09',
12897             'Net::FTP::L' => '3.09',
12898             'Net::FTP::dataconn' => '3.09',
12899             'Net::NNTP' => '3.09',
12900             'Net::Netrc' => '3.09',
12901             'Net::POP3' => '3.09',
12902             'Net::SMTP' => '3.09',
12903             'Net::Time' => '3.09',
12904             'Parse::CPAN::Meta' => '1.4422',
12905             'Perl::OSType' => '1.010',
12906             'Test2' => '1.302045',
12907             'Test2::API' => '1.302045',
12908             'Test2::API::Breakage' => '1.302045',
12909             'Test2::API::Context' => '1.302045',
12910             'Test2::API::Instance' => '1.302045',
12911             'Test2::API::Stack' => '1.302045',
12912             'Test2::Event' => '1.302045',
12913             'Test2::Event::Bail' => '1.302045',
12914             'Test2::Event::Diag' => '1.302045',
12915             'Test2::Event::Exception'=> '1.302045',
12916             'Test2::Event::Generic' => '1.302045',
12917             'Test2::Event::Info' => '1.302045',
12918             'Test2::Event::Note' => '1.302045',
12919             'Test2::Event::Ok' => '1.302045',
12920             'Test2::Event::Plan' => '1.302045',
12921             'Test2::Event::Skip' => '1.302045',
12922             'Test2::Event::Subtest' => '1.302045',
12923             'Test2::Event::Waiting' => '1.302045',
12924             'Test2::Formatter' => '1.302045',
12925             'Test2::Formatter::TAP' => '1.302045',
12926             'Test2::Hub' => '1.302045',
12927             'Test2::Hub::Interceptor'=> '1.302045',
12928             'Test2::Hub::Interceptor::Terminator'=> '1.302045',
12929             'Test2::Hub::Subtest' => '1.302045',
12930             'Test2::IPC' => '1.302045',
12931             'Test2::IPC::Driver' => '1.302045',
12932             'Test2::IPC::Driver::Files'=> '1.302045',
12933             'Test2::Util' => '1.302045',
12934             'Test2::Util::ExternalMeta'=> '1.302045',
12935             'Test2::Util::HashBase' => '1.302045',
12936             'Test2::Util::Trace' => '1.302045',
12937             'Test::Builder' => '1.302045',
12938             'Test::Builder::Formatter'=> '1.302045',
12939             'Test::Builder::Module' => '1.302045',
12940             'Test::Builder::Tester' => '1.302045',
12941             'Test::Builder::Tester::Color'=> '1.302045',
12942             'Test::Builder::TodoDiag'=> '1.302045',
12943             'Test::More' => '1.302045',
12944             'Test::Simple' => '1.302045',
12945             'Test::Tester' => '1.302045',
12946             'Test::Tester::Capture' => '1.302045',
12947             'Test::Tester::CaptureRunner'=> '1.302045',
12948             'Test::Tester::Delegate'=> '1.302045',
12949             'Test::use::ok' => '1.302045',
12950             'Time::HiRes' => '1.9739',
12951             'Unicode' => '9.0.0',
12952             'Unicode::UCD' => '0.66',
12953             'XSLoader' => '0.22',
12954             'bigint' => '0.43',
12955             'bignum' => '0.43',
12956             'bigrat' => '0.43',
12957             'encoding' => '2.17_01',
12958             'encoding::warnings' => '0.13',
12959             'feature' => '1.45',
12960             'ok' => '1.302045',
12961             'version' => '0.9917',
12962             'version::regex' => '0.9917',
12963             'warnings' => '1.37',
12964             },
12965             removed => {
12966             }
12967             },
12968             5.025004 => {
12969             delta_from => 5.025003,
12970             changed => {
12971             'App::Cpan' => '1.64_01',
12972             'App::Prove' => '3.36_01',
12973             'App::Prove::State' => '3.36_01',
12974             'App::Prove::State::Result'=> '3.36_01',
12975             'App::Prove::State::Result::Test'=> '3.36_01',
12976             'Archive::Tar' => '2.10',
12977             'Archive::Tar::Constant'=> '2.10',
12978             'Archive::Tar::File' => '2.10',
12979             'B' => '1.63',
12980             'B::Concise' => '0.998',
12981             'B::Deparse' => '1.38',
12982             'B::Op_private' => '5.025004',
12983             'CPAN' => '2.14_01',
12984             'CPAN::Meta' => '2.150010',
12985             'CPAN::Meta::Converter' => '2.150010',
12986             'CPAN::Meta::Feature' => '2.150010',
12987             'CPAN::Meta::History' => '2.150010',
12988             'CPAN::Meta::Merge' => '2.150010',
12989             'CPAN::Meta::Prereqs' => '2.150010',
12990             'CPAN::Meta::Spec' => '2.150010',
12991             'CPAN::Meta::Validator' => '2.150010',
12992             'Carp' => '1.42',
12993             'Carp::Heavy' => '1.42',
12994             'Compress::Zlib' => '2.069_01',
12995             'Config' => '5.025004',
12996             'Config::Perl::V' => '0.27',
12997             'Cwd' => '3.65',
12998             'Digest' => '1.17_01',
12999             'Digest::SHA' => '5.96',
13000             'Encode' => '2.86',
13001             'Errno' => '1.26',
13002             'ExtUtils::Command' => '7.24',
13003             'ExtUtils::Command::MM' => '7.24',
13004             'ExtUtils::Liblist' => '7.24',
13005             'ExtUtils::Liblist::Kid'=> '7.24',
13006             'ExtUtils::MM' => '7.24',
13007             'ExtUtils::MM_AIX' => '7.24',
13008             'ExtUtils::MM_Any' => '7.24',
13009             'ExtUtils::MM_BeOS' => '7.24',
13010             'ExtUtils::MM_Cygwin' => '7.24',
13011             'ExtUtils::MM_DOS' => '7.24',
13012             'ExtUtils::MM_Darwin' => '7.24',
13013             'ExtUtils::MM_MacOS' => '7.24',
13014             'ExtUtils::MM_NW5' => '7.24',
13015             'ExtUtils::MM_OS2' => '7.24',
13016             'ExtUtils::MM_QNX' => '7.24',
13017             'ExtUtils::MM_UWIN' => '7.24',
13018             'ExtUtils::MM_Unix' => '7.24',
13019             'ExtUtils::MM_VMS' => '7.24',
13020             'ExtUtils::MM_VOS' => '7.24',
13021             'ExtUtils::MM_Win32' => '7.24',
13022             'ExtUtils::MM_Win95' => '7.24',
13023             'ExtUtils::MY' => '7.24',
13024             'ExtUtils::MakeMaker' => '7.24',
13025             'ExtUtils::MakeMaker::Config'=> '7.24',
13026             'ExtUtils::MakeMaker::Locale'=> '7.24',
13027             'ExtUtils::MakeMaker::version'=> '7.24',
13028             'ExtUtils::MakeMaker::version::regex'=> '7.24',
13029             'ExtUtils::Mkbootstrap' => '7.24',
13030             'ExtUtils::Mksymlists' => '7.24',
13031             'ExtUtils::testlib' => '7.24',
13032             'File::Fetch' => '0.52',
13033             'File::Spec' => '3.65',
13034             'File::Spec::AmigaOS' => '3.65',
13035             'File::Spec::Cygwin' => '3.65',
13036             'File::Spec::Epoc' => '3.65',
13037             'File::Spec::Functions' => '3.65',
13038             'File::Spec::Mac' => '3.65',
13039             'File::Spec::OS2' => '3.65',
13040             'File::Spec::Unix' => '3.65',
13041             'File::Spec::VMS' => '3.65',
13042             'File::Spec::Win32' => '3.65',
13043             'HTTP::Tiny' => '0.064',
13044             'Hash::Util' => '0.21',
13045             'I18N::LangTags' => '0.41',
13046             'I18N::LangTags::Detect'=> '1.06',
13047             'IO' => '1.37',
13048             'IO::Compress::Adapter::Bzip2'=> '2.069_01',
13049             'IO::Compress::Adapter::Deflate'=> '2.069_01',
13050             'IO::Compress::Adapter::Identity'=> '2.069_01',
13051             'IO::Compress::Base' => '2.069_01',
13052             'IO::Compress::Base::Common'=> '2.069_01',
13053             'IO::Compress::Bzip2' => '2.069_01',
13054             'IO::Compress::Deflate' => '2.069_01',
13055             'IO::Compress::Gzip' => '2.069_01',
13056             'IO::Compress::Gzip::Constants'=> '2.069_01',
13057             'IO::Compress::RawDeflate'=> '2.069_01',
13058             'IO::Compress::Zip' => '2.069_01',
13059             'IO::Compress::Zip::Constants'=> '2.069_01',
13060             'IO::Compress::Zlib::Constants'=> '2.069_01',
13061             'IO::Compress::Zlib::Extra'=> '2.069_01',
13062             'IO::Socket::IP' => '0.38',
13063             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01',
13064             'IO::Uncompress::Adapter::Identity'=> '2.069_01',
13065             'IO::Uncompress::Adapter::Inflate'=> '2.069_01',
13066             'IO::Uncompress::AnyInflate'=> '2.069_01',
13067             'IO::Uncompress::AnyUncompress'=> '2.069_01',
13068             'IO::Uncompress::Base' => '2.069_01',
13069             'IO::Uncompress::Bunzip2'=> '2.069_01',
13070             'IO::Uncompress::Gunzip'=> '2.069_01',
13071             'IO::Uncompress::Inflate'=> '2.069_01',
13072             'IO::Uncompress::RawInflate'=> '2.069_01',
13073             'IO::Uncompress::Unzip' => '2.069_01',
13074             'IPC::Cmd' => '0.96',
13075             'JSON::PP' => '2.27400_01',
13076             'Locale::Maketext' => '1.28',
13077             'Locale::Maketext::Simple'=> '0.21_01',
13078             'Math::BigFloat::Trace' => '0.43_01',
13079             'Math::BigInt::Trace' => '0.43_01',
13080             'Memoize' => '1.03_01',
13081             'Module::CoreList' => '5.20160820',
13082             'Module::CoreList::TieHashDelta'=> '5.20160820',
13083             'Module::CoreList::Utils'=> '5.20160820',
13084             'Module::Load::Conditional'=> '0.68',
13085             'Module::Metadata' => '1.000033',
13086             'NEXT' => '0.67',
13087             'Net::Cmd' => '3.10',
13088             'Net::Config' => '3.10',
13089             'Net::Domain' => '3.10',
13090             'Net::FTP' => '3.10',
13091             'Net::FTP::A' => '3.10',
13092             'Net::FTP::E' => '3.10',
13093             'Net::FTP::I' => '3.10',
13094             'Net::FTP::L' => '3.10',
13095             'Net::FTP::dataconn' => '3.10',
13096             'Net::NNTP' => '3.10',
13097             'Net::Netrc' => '3.10',
13098             'Net::POP3' => '3.10',
13099             'Net::Ping' => '2.44',
13100             'Net::SMTP' => '3.10',
13101             'Net::Time' => '3.10',
13102             'Opcode' => '1.37',
13103             'POSIX' => '1.71',
13104             'Parse::CPAN::Meta' => '2.150010',
13105             'Pod::Html' => '1.2201',
13106             'Pod::Perldoc' => '3.27',
13107             'Pod::Perldoc::BaseTo' => '3.27',
13108             'Pod::Perldoc::GetOptsOO'=> '3.27',
13109             'Pod::Perldoc::ToANSI' => '3.27',
13110             'Pod::Perldoc::ToChecker'=> '3.27',
13111             'Pod::Perldoc::ToMan' => '3.27',
13112             'Pod::Perldoc::ToNroff' => '3.27',
13113             'Pod::Perldoc::ToPod' => '3.27',
13114             'Pod::Perldoc::ToRtf' => '3.27',
13115             'Pod::Perldoc::ToTerm' => '3.27',
13116             'Pod::Perldoc::ToText' => '3.27',
13117             'Pod::Perldoc::ToTk' => '3.27',
13118             'Pod::Perldoc::ToXml' => '3.27',
13119             'Storable' => '2.57',
13120             'Sys::Syslog' => '0.34_01',
13121             'TAP::Base' => '3.36_01',
13122             'TAP::Formatter::Base' => '3.36_01',
13123             'TAP::Formatter::Color' => '3.36_01',
13124             'TAP::Formatter::Console'=> '3.36_01',
13125             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13126             'TAP::Formatter::Console::Session'=> '3.36_01',
13127             'TAP::Formatter::File' => '3.36_01',
13128             'TAP::Formatter::File::Session'=> '3.36_01',
13129             'TAP::Formatter::Session'=> '3.36_01',
13130             'TAP::Harness' => '3.36_01',
13131             'TAP::Harness::Env' => '3.36_01',
13132             'TAP::Object' => '3.36_01',
13133             'TAP::Parser' => '3.36_01',
13134             'TAP::Parser::Aggregator'=> '3.36_01',
13135             'TAP::Parser::Grammar' => '3.36_01',
13136             'TAP::Parser::Iterator' => '3.36_01',
13137             'TAP::Parser::Iterator::Array'=> '3.36_01',
13138             'TAP::Parser::Iterator::Process'=> '3.36_01',
13139             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13140             'TAP::Parser::IteratorFactory'=> '3.36_01',
13141             'TAP::Parser::Multiplexer'=> '3.36_01',
13142             'TAP::Parser::Result' => '3.36_01',
13143             'TAP::Parser::Result::Bailout'=> '3.36_01',
13144             'TAP::Parser::Result::Comment'=> '3.36_01',
13145             'TAP::Parser::Result::Plan'=> '3.36_01',
13146             'TAP::Parser::Result::Pragma'=> '3.36_01',
13147             'TAP::Parser::Result::Test'=> '3.36_01',
13148             'TAP::Parser::Result::Unknown'=> '3.36_01',
13149             'TAP::Parser::Result::Version'=> '3.36_01',
13150             'TAP::Parser::Result::YAML'=> '3.36_01',
13151             'TAP::Parser::ResultFactory'=> '3.36_01',
13152             'TAP::Parser::Scheduler'=> '3.36_01',
13153             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13154             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13155             'TAP::Parser::Source' => '3.36_01',
13156             'TAP::Parser::SourceHandler'=> '3.36_01',
13157             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13158             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13159             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13160             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13161             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13162             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13163             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13164             'Test' => '1.29',
13165             'Test2' => '1.302052',
13166             'Test2::API' => '1.302052',
13167             'Test2::API::Breakage' => '1.302052',
13168             'Test2::API::Context' => '1.302052',
13169             'Test2::API::Instance' => '1.302052',
13170             'Test2::API::Stack' => '1.302052',
13171             'Test2::Event' => '1.302052',
13172             'Test2::Event::Bail' => '1.302052',
13173             'Test2::Event::Diag' => '1.302052',
13174             'Test2::Event::Exception'=> '1.302052',
13175             'Test2::Event::Generic' => '1.302052',
13176             'Test2::Event::Info' => '1.302052',
13177             'Test2::Event::Note' => '1.302052',
13178             'Test2::Event::Ok' => '1.302052',
13179             'Test2::Event::Plan' => '1.302052',
13180             'Test2::Event::Skip' => '1.302052',
13181             'Test2::Event::Subtest' => '1.302052',
13182             'Test2::Event::Waiting' => '1.302052',
13183             'Test2::Formatter' => '1.302052',
13184             'Test2::Formatter::TAP' => '1.302052',
13185             'Test2::Hub' => '1.302052',
13186             'Test2::Hub::Interceptor'=> '1.302052',
13187             'Test2::Hub::Interceptor::Terminator'=> '1.302052',
13188             'Test2::Hub::Subtest' => '1.302052',
13189             'Test2::IPC' => '1.302052',
13190             'Test2::IPC::Driver' => '1.302052',
13191             'Test2::IPC::Driver::Files'=> '1.302052',
13192             'Test2::Util' => '1.302052',
13193             'Test2::Util::ExternalMeta'=> '1.302052',
13194             'Test2::Util::HashBase' => '1.302052',
13195             'Test2::Util::Trace' => '1.302052',
13196             'Test::Builder' => '1.302052',
13197             'Test::Builder::Formatter'=> '1.302052',
13198             'Test::Builder::Module' => '1.302052',
13199             'Test::Builder::Tester' => '1.302052',
13200             'Test::Builder::Tester::Color'=> '1.302052',
13201             'Test::Builder::TodoDiag'=> '1.302052',
13202             'Test::Harness' => '3.36_01',
13203             'Test::More' => '1.302052',
13204             'Test::Simple' => '1.302052',
13205             'Test::Tester' => '1.302052',
13206             'Test::Tester::Capture' => '1.302052',
13207             'Test::Tester::CaptureRunner'=> '1.302052',
13208             'Test::Tester::Delegate'=> '1.302052',
13209             'Test::use::ok' => '1.302052',
13210             'Tie::Hash::NamedCapture'=> '0.10',
13211             'Time::Local' => '1.24',
13212             'XS::APItest' => '0.83',
13213             'arybase' => '0.12',
13214             'base' => '2.24',
13215             'bigint' => '0.43_01',
13216             'bignum' => '0.43_01',
13217             'bigrat' => '0.43_01',
13218             'encoding' => '2.18',
13219             'ok' => '1.302052',
13220             },
13221             removed => {
13222             }
13223             },
13224             5.025005 => {
13225             delta_from => 5.025004,
13226             changed => {
13227             'B::Op_private' => '5.025005',
13228             'Config' => '5.025005',
13229             'Filter::Simple' => '0.93',
13230             'Locale::Codes' => '3.40',
13231             'Locale::Codes::Constants'=> '3.40',
13232             'Locale::Codes::Country'=> '3.40',
13233             'Locale::Codes::Country_Codes'=> '3.40',
13234             'Locale::Codes::Country_Retired'=> '3.40',
13235             'Locale::Codes::Currency'=> '3.40',
13236             'Locale::Codes::Currency_Codes'=> '3.40',
13237             'Locale::Codes::Currency_Retired'=> '3.40',
13238             'Locale::Codes::LangExt'=> '3.40',
13239             'Locale::Codes::LangExt_Codes'=> '3.40',
13240             'Locale::Codes::LangExt_Retired'=> '3.40',
13241             'Locale::Codes::LangFam'=> '3.40',
13242             'Locale::Codes::LangFam_Codes'=> '3.40',
13243             'Locale::Codes::LangFam_Retired'=> '3.40',
13244             'Locale::Codes::LangVar'=> '3.40',
13245             'Locale::Codes::LangVar_Codes'=> '3.40',
13246             'Locale::Codes::LangVar_Retired'=> '3.40',
13247             'Locale::Codes::Language'=> '3.40',
13248             'Locale::Codes::Language_Codes'=> '3.40',
13249             'Locale::Codes::Language_Retired'=> '3.40',
13250             'Locale::Codes::Script' => '3.40',
13251             'Locale::Codes::Script_Codes'=> '3.40',
13252             'Locale::Codes::Script_Retired'=> '3.40',
13253             'Locale::Country' => '3.40',
13254             'Locale::Currency' => '3.40',
13255             'Locale::Language' => '3.40',
13256             'Locale::Script' => '3.40',
13257             'Module::CoreList' => '5.20160920',
13258             'Module::CoreList::TieHashDelta'=> '5.20160920',
13259             'Module::CoreList::Utils'=> '5.20160920',
13260             'POSIX' => '1.72',
13261             'Sys::Syslog' => '0.35',
13262             'Test2' => '1.302056',
13263             'Test2::API' => '1.302056',
13264             'Test2::API::Breakage' => '1.302056',
13265             'Test2::API::Context' => '1.302056',
13266             'Test2::API::Instance' => '1.302056',
13267             'Test2::API::Stack' => '1.302056',
13268             'Test2::Event' => '1.302056',
13269             'Test2::Event::Bail' => '1.302056',
13270             'Test2::Event::Diag' => '1.302056',
13271             'Test2::Event::Exception'=> '1.302056',
13272             'Test2::Event::Generic' => '1.302056',
13273             'Test2::Event::Info' => '1.302056',
13274             'Test2::Event::Note' => '1.302056',
13275             'Test2::Event::Ok' => '1.302056',
13276             'Test2::Event::Plan' => '1.302056',
13277             'Test2::Event::Skip' => '1.302056',
13278             'Test2::Event::Subtest' => '1.302056',
13279             'Test2::Event::Waiting' => '1.302056',
13280             'Test2::Formatter' => '1.302056',
13281             'Test2::Formatter::TAP' => '1.302056',
13282             'Test2::Hub' => '1.302056',
13283             'Test2::Hub::Interceptor'=> '1.302056',
13284             'Test2::Hub::Interceptor::Terminator'=> '1.302056',
13285             'Test2::Hub::Subtest' => '1.302056',
13286             'Test2::IPC' => '1.302056',
13287             'Test2::IPC::Driver' => '1.302056',
13288             'Test2::IPC::Driver::Files'=> '1.302056',
13289             'Test2::Util' => '1.302056',
13290             'Test2::Util::ExternalMeta'=> '1.302056',
13291             'Test2::Util::HashBase' => '1.302056',
13292             'Test2::Util::Trace' => '1.302056',
13293             'Test::Builder' => '1.302056',
13294             'Test::Builder::Formatter'=> '1.302056',
13295             'Test::Builder::Module' => '1.302056',
13296             'Test::Builder::Tester' => '1.302056',
13297             'Test::Builder::Tester::Color'=> '1.302056',
13298             'Test::Builder::TodoDiag'=> '1.302056',
13299             'Test::More' => '1.302056',
13300             'Test::Simple' => '1.302056',
13301             'Test::Tester' => '1.302056',
13302             'Test::Tester::Capture' => '1.302056',
13303             'Test::Tester::CaptureRunner'=> '1.302056',
13304             'Test::Tester::Delegate'=> '1.302056',
13305             'Test::use::ok' => '1.302056',
13306             'Thread::Semaphore' => '2.13',
13307             'XS::APItest' => '0.84',
13308             'XSLoader' => '0.24',
13309             'ok' => '1.302056',
13310             },
13311             removed => {
13312             }
13313             },
13314             5.025006 => {
13315             delta_from => 5.025005,
13316             changed => {
13317             'Archive::Tar' => '2.14',
13318             'Archive::Tar::Constant'=> '2.14',
13319             'Archive::Tar::File' => '2.14',
13320             'B' => '1.64',
13321             'B::Concise' => '0.999',
13322             'B::Deparse' => '1.39',
13323             'B::Op_private' => '5.025006',
13324             'Config' => '5.025006',
13325             'Data::Dumper' => '2.162',
13326             'Devel::Peek' => '1.25',
13327             'HTTP::Tiny' => '0.070',
13328             'List::Util' => '1.46',
13329             'List::Util::XS' => '1.46',
13330             'Module::CoreList' => '5.20161020',
13331             'Module::CoreList::TieHashDelta'=> '5.20161020',
13332             'Module::CoreList::Utils'=> '5.20161020',
13333             'Net::Ping' => '2.51',
13334             'OS2::DLL' => '1.07',
13335             'Opcode' => '1.38',
13336             'POSIX' => '1.73',
13337             'PerlIO::encoding' => '0.25',
13338             'Pod::Man' => '4.08',
13339             'Pod::ParseLink' => '4.08',
13340             'Pod::Text' => '4.08',
13341             'Pod::Text::Color' => '4.08',
13342             'Pod::Text::Overstrike' => '4.08',
13343             'Pod::Text::Termcap' => '4.08',
13344             'Scalar::Util' => '1.46',
13345             'Storable' => '2.58',
13346             'Sub::Util' => '1.46',
13347             'Test2' => '1.302059',
13348             'Test2::API' => '1.302059',
13349             'Test2::API::Breakage' => '1.302059',
13350             'Test2::API::Context' => '1.302059',
13351             'Test2::API::Instance' => '1.302059',
13352             'Test2::API::Stack' => '1.302059',
13353             'Test2::Event' => '1.302059',
13354             'Test2::Event::Bail' => '1.302059',
13355             'Test2::Event::Diag' => '1.302059',
13356             'Test2::Event::Exception'=> '1.302059',
13357             'Test2::Event::Generic' => '1.302059',
13358             'Test2::Event::Info' => '1.302059',
13359             'Test2::Event::Note' => '1.302059',
13360             'Test2::Event::Ok' => '1.302059',
13361             'Test2::Event::Plan' => '1.302059',
13362             'Test2::Event::Skip' => '1.302059',
13363             'Test2::Event::Subtest' => '1.302059',
13364             'Test2::Event::Waiting' => '1.302059',
13365             'Test2::Formatter' => '1.302059',
13366             'Test2::Formatter::TAP' => '1.302059',
13367             'Test2::Hub' => '1.302059',
13368             'Test2::Hub::Interceptor'=> '1.302059',
13369             'Test2::Hub::Interceptor::Terminator'=> '1.302059',
13370             'Test2::Hub::Subtest' => '1.302059',
13371             'Test2::IPC' => '1.302059',
13372             'Test2::IPC::Driver' => '1.302059',
13373             'Test2::IPC::Driver::Files'=> '1.302059',
13374             'Test2::Util' => '1.302059',
13375             'Test2::Util::ExternalMeta'=> '1.302059',
13376             'Test2::Util::HashBase' => '1.302059',
13377             'Test2::Util::Trace' => '1.302059',
13378             'Test::Builder' => '1.302059',
13379             'Test::Builder::Formatter'=> '1.302059',
13380             'Test::Builder::Module' => '1.302059',
13381             'Test::Builder::Tester' => '1.302059',
13382             'Test::Builder::Tester::Color'=> '1.302059',
13383             'Test::Builder::TodoDiag'=> '1.302059',
13384             'Test::More' => '1.302059',
13385             'Test::Simple' => '1.302059',
13386             'Test::Tester' => '1.302059',
13387             'Test::Tester::Capture' => '1.302059',
13388             'Test::Tester::CaptureRunner'=> '1.302059',
13389             'Test::Tester::Delegate'=> '1.302059',
13390             'Test::use::ok' => '1.302059',
13391             'Time::HiRes' => '1.9740_01',
13392             'VMS::Stdio' => '2.42',
13393             'XS::APItest' => '0.86',
13394             'attributes' => '0.28',
13395             'mro' => '1.19',
13396             'ok' => '1.302059',
13397             'overload' => '1.27',
13398             'parent' => '0.236',
13399             },
13400             removed => {
13401             }
13402             },
13403             5.025007 => {
13404             delta_from => 5.025006,
13405             changed => {
13406             'Archive::Tar' => '2.18',
13407             'Archive::Tar::Constant'=> '2.18',
13408             'Archive::Tar::File' => '2.18',
13409             'B' => '1.65',
13410             'B::Op_private' => '5.025007',
13411             'Config' => '5.025007',
13412             'Cwd' => '3.66',
13413             'Data::Dumper' => '2.165',
13414             'Devel::Peek' => '1.26',
13415             'DynaLoader' => '1.40',
13416             'Errno' => '1.27',
13417             'ExtUtils::ParseXS::Utilities'=> '3.34',
13418             'File::Spec' => '3.66',
13419             'File::Spec::AmigaOS' => '3.66',
13420             'File::Spec::Cygwin' => '3.66',
13421             'File::Spec::Epoc' => '3.66',
13422             'File::Spec::Functions' => '3.66',
13423             'File::Spec::Mac' => '3.66',
13424             'File::Spec::OS2' => '3.66',
13425             'File::Spec::Unix' => '3.66',
13426             'File::Spec::VMS' => '3.66',
13427             'File::Spec::Win32' => '3.66',
13428             'Hash::Util' => '0.22',
13429             'JSON::PP' => '2.27400_02',
13430             'List::Util' => '1.46_02',
13431             'List::Util::XS' => '1.46_02',
13432             'Math::BigFloat' => '1.999727',
13433             'Math::BigInt' => '1.999727',
13434             'Math::BigInt::Calc' => '1.999727',
13435             'Math::BigInt::CalcEmu' => '1.999727',
13436             'Math::Complex' => '1.5901',
13437             'Module::CoreList' => '5.20161120',
13438             'Module::CoreList::TieHashDelta'=> '5.20161120',
13439             'Module::CoreList::Utils'=> '5.20161120',
13440             'Net::Ping' => '2.55',
13441             'Opcode' => '1.39',
13442             'POSIX' => '1.75',
13443             'Pod::Man' => '4.09',
13444             'Pod::ParseLink' => '4.09',
13445             'Pod::Text' => '4.09',
13446             'Pod::Text::Color' => '4.09',
13447             'Pod::Text::Overstrike' => '4.09',
13448             'Pod::Text::Termcap' => '4.09',
13449             'Scalar::Util' => '1.46_02',
13450             'Storable' => '2.59',
13451             'Sub::Util' => '1.46_02',
13452             'Term::ANSIColor' => '4.06',
13453             'Test2' => '1.302062',
13454             'Test2::API' => '1.302062',
13455             'Test2::API::Breakage' => '1.302062',
13456             'Test2::API::Context' => '1.302062',
13457             'Test2::API::Instance' => '1.302062',
13458             'Test2::API::Stack' => '1.302062',
13459             'Test2::Event' => '1.302062',
13460             'Test2::Event::Bail' => '1.302062',
13461             'Test2::Event::Diag' => '1.302062',
13462             'Test2::Event::Exception'=> '1.302062',
13463             'Test2::Event::Generic' => '1.302062',
13464             'Test2::Event::Info' => '1.302062',
13465             'Test2::Event::Note' => '1.302062',
13466             'Test2::Event::Ok' => '1.302062',
13467             'Test2::Event::Plan' => '1.302062',
13468             'Test2::Event::Skip' => '1.302062',
13469             'Test2::Event::Subtest' => '1.302062',
13470             'Test2::Event::Waiting' => '1.302062',
13471             'Test2::Formatter' => '1.302062',
13472             'Test2::Formatter::TAP' => '1.302062',
13473             'Test2::Hub' => '1.302062',
13474             'Test2::Hub::Interceptor'=> '1.302062',
13475             'Test2::Hub::Interceptor::Terminator'=> '1.302062',
13476             'Test2::Hub::Subtest' => '1.302062',
13477             'Test2::IPC' => '1.302062',
13478             'Test2::IPC::Driver' => '1.302062',
13479             'Test2::IPC::Driver::Files'=> '1.302062',
13480             'Test2::Util' => '1.302062',
13481             'Test2::Util::ExternalMeta'=> '1.302062',
13482             'Test2::Util::HashBase' => '1.302062',
13483             'Test2::Util::Trace' => '1.302062',
13484             'Test::Builder' => '1.302062',
13485             'Test::Builder::Formatter'=> '1.302062',
13486             'Test::Builder::Module' => '1.302062',
13487             'Test::Builder::Tester' => '1.302062',
13488             'Test::Builder::Tester::Color'=> '1.302062',
13489             'Test::Builder::TodoDiag'=> '1.302062',
13490             'Test::More' => '1.302062',
13491             'Test::Simple' => '1.302062',
13492             'Test::Tester' => '1.302062',
13493             'Test::Tester::Capture' => '1.302062',
13494             'Test::Tester::CaptureRunner'=> '1.302062',
13495             'Test::Tester::Delegate'=> '1.302062',
13496             'Test::use::ok' => '1.302062',
13497             'Time::HiRes' => '1.9740_03',
13498             'Unicode::Collate' => '1.18',
13499             'Unicode::Collate::CJK::Big5'=> '1.18',
13500             'Unicode::Collate::CJK::GB2312'=> '1.18',
13501             'Unicode::Collate::CJK::JISX0208'=> '1.18',
13502             'Unicode::Collate::CJK::Korean'=> '1.18',
13503             'Unicode::Collate::CJK::Pinyin'=> '1.18',
13504             'Unicode::Collate::CJK::Stroke'=> '1.18',
13505             'Unicode::Collate::CJK::Zhuyin'=> '1.18',
13506             'Unicode::Collate::Locale'=> '1.18',
13507             'Unicode::UCD' => '0.67',
13508             'XS::APItest' => '0.87',
13509             'XS::Typemap' => '0.15',
13510             'mro' => '1.20',
13511             'ok' => '1.302062',
13512             'threads' => '2.10',
13513             },
13514             removed => {
13515             }
13516             },
13517             5.025008 => {
13518             delta_from => 5.025007,
13519             changed => {
13520             'Archive::Tar' => '2.24',
13521             'Archive::Tar::Constant'=> '2.24',
13522             'Archive::Tar::File' => '2.24',
13523             'B::Debug' => '1.24',
13524             'B::Op_private' => '5.025008',
13525             'Config' => '5.025008',
13526             'Data::Dumper' => '2.166',
13527             'Encode' => '2.88',
13528             'Encode::Alias' => '2.21',
13529             'Encode::CN::HZ' => '2.08',
13530             'Encode::MIME::Header' => '2.24',
13531             'Encode::MIME::Name' => '1.02',
13532             'Encode::Unicode' => '2.1501',
13533             'IO' => '1.38',
13534             'Locale::Codes' => '3.42',
13535             'Locale::Codes::Constants'=> '3.42',
13536             'Locale::Codes::Country'=> '3.42',
13537             'Locale::Codes::Country_Codes'=> '3.42',
13538             'Locale::Codes::Country_Retired'=> '3.42',
13539             'Locale::Codes::Currency'=> '3.42',
13540             'Locale::Codes::Currency_Codes'=> '3.42',
13541             'Locale::Codes::Currency_Retired'=> '3.42',
13542             'Locale::Codes::LangExt'=> '3.42',
13543             'Locale::Codes::LangExt_Codes'=> '3.42',
13544             'Locale::Codes::LangExt_Retired'=> '3.42',
13545             'Locale::Codes::LangFam'=> '3.42',
13546             'Locale::Codes::LangFam_Codes'=> '3.42',
13547             'Locale::Codes::LangFam_Retired'=> '3.42',
13548             'Locale::Codes::LangVar'=> '3.42',
13549             'Locale::Codes::LangVar_Codes'=> '3.42',
13550             'Locale::Codes::LangVar_Retired'=> '3.42',
13551             'Locale::Codes::Language'=> '3.42',
13552             'Locale::Codes::Language_Codes'=> '3.42',
13553             'Locale::Codes::Language_Retired'=> '3.42',
13554             'Locale::Codes::Script' => '3.42',
13555             'Locale::Codes::Script_Codes'=> '3.42',
13556             'Locale::Codes::Script_Retired'=> '3.42',
13557             'Locale::Country' => '3.42',
13558             'Locale::Currency' => '3.42',
13559             'Locale::Language' => '3.42',
13560             'Locale::Script' => '3.42',
13561             'Math::BigFloat' => '1.999806',
13562             'Math::BigFloat::Trace' => '0.47',
13563             'Math::BigInt' => '1.999806',
13564             'Math::BigInt::Calc' => '1.999806',
13565             'Math::BigInt::CalcEmu' => '1.999806',
13566             'Math::BigInt::FastCalc'=> '0.5005',
13567             'Math::BigInt::Lib' => '1.999806',
13568             'Math::BigInt::Trace' => '0.47',
13569             'Math::BigRat' => '0.2611',
13570             'Module::CoreList' => '5.20161220',
13571             'Module::CoreList::TieHashDelta'=> '5.20161220',
13572             'Module::CoreList::Utils'=> '5.20161220',
13573             'POSIX' => '1.76',
13574             'PerlIO::scalar' => '0.25',
13575             'Pod::Simple' => '3.35',
13576             'Pod::Simple::BlackBox' => '3.35',
13577             'Pod::Simple::Checker' => '3.35',
13578             'Pod::Simple::Debug' => '3.35',
13579             'Pod::Simple::DumpAsText'=> '3.35',
13580             'Pod::Simple::DumpAsXML'=> '3.35',
13581             'Pod::Simple::HTML' => '3.35',
13582             'Pod::Simple::HTMLBatch'=> '3.35',
13583             'Pod::Simple::LinkSection'=> '3.35',
13584             'Pod::Simple::Methody' => '3.35',
13585             'Pod::Simple::Progress' => '3.35',
13586             'Pod::Simple::PullParser'=> '3.35',
13587             'Pod::Simple::PullParserEndToken'=> '3.35',
13588             'Pod::Simple::PullParserStartToken'=> '3.35',
13589             'Pod::Simple::PullParserTextToken'=> '3.35',
13590             'Pod::Simple::PullParserToken'=> '3.35',
13591             'Pod::Simple::RTF' => '3.35',
13592             'Pod::Simple::Search' => '3.35',
13593             'Pod::Simple::SimpleTree'=> '3.35',
13594             'Pod::Simple::Text' => '3.35',
13595             'Pod::Simple::TextContent'=> '3.35',
13596             'Pod::Simple::TiedOutFH'=> '3.35',
13597             'Pod::Simple::Transcode'=> '3.35',
13598             'Pod::Simple::TranscodeDumb'=> '3.35',
13599             'Pod::Simple::TranscodeSmart'=> '3.35',
13600             'Pod::Simple::XHTML' => '3.35',
13601             'Pod::Simple::XMLOutStream'=> '3.35',
13602             'Test2' => '1.302073',
13603             'Test2::API' => '1.302073',
13604             'Test2::API::Breakage' => '1.302073',
13605             'Test2::API::Context' => '1.302073',
13606             'Test2::API::Instance' => '1.302073',
13607             'Test2::API::Stack' => '1.302073',
13608             'Test2::Event' => '1.302073',
13609             'Test2::Event::Bail' => '1.302073',
13610             'Test2::Event::Diag' => '1.302073',
13611             'Test2::Event::Encoding'=> '1.302073',
13612             'Test2::Event::Exception'=> '1.302073',
13613             'Test2::Event::Generic' => '1.302073',
13614             'Test2::Event::Info' => '1.302073',
13615             'Test2::Event::Note' => '1.302073',
13616             'Test2::Event::Ok' => '1.302073',
13617             'Test2::Event::Plan' => '1.302073',
13618             'Test2::Event::Skip' => '1.302073',
13619             'Test2::Event::Subtest' => '1.302073',
13620             'Test2::Event::TAP::Version'=> '1.302073',
13621             'Test2::Event::Waiting' => '1.302073',
13622             'Test2::Formatter' => '1.302073',
13623             'Test2::Formatter::TAP' => '1.302073',
13624             'Test2::Hub' => '1.302073',
13625             'Test2::Hub::Interceptor'=> '1.302073',
13626             'Test2::Hub::Interceptor::Terminator'=> '1.302073',
13627             'Test2::Hub::Subtest' => '1.302073',
13628             'Test2::IPC' => '1.302073',
13629             'Test2::IPC::Driver' => '1.302073',
13630             'Test2::IPC::Driver::Files'=> '1.302073',
13631             'Test2::Tools::Tiny' => '1.302073',
13632             'Test2::Util' => '1.302073',
13633             'Test2::Util::ExternalMeta'=> '1.302073',
13634             'Test2::Util::HashBase' => '0.002',
13635             'Test2::Util::Trace' => '1.302073',
13636             'Test::Builder' => '1.302073',
13637             'Test::Builder::Formatter'=> '1.302073',
13638             'Test::Builder::Module' => '1.302073',
13639             'Test::Builder::Tester' => '1.302073',
13640             'Test::Builder::Tester::Color'=> '1.302073',
13641             'Test::Builder::TodoDiag'=> '1.302073',
13642             'Test::More' => '1.302073',
13643             'Test::Simple' => '1.302073',
13644             'Test::Tester' => '1.302073',
13645             'Test::Tester::Capture' => '1.302073',
13646             'Test::Tester::CaptureRunner'=> '1.302073',
13647             'Test::Tester::Delegate'=> '1.302073',
13648             'Test::use::ok' => '1.302073',
13649             'Time::HiRes' => '1.9741',
13650             'Time::Local' => '1.25',
13651             'Unicode::Collate' => '1.19',
13652             'Unicode::Collate::CJK::Big5'=> '1.19',
13653             'Unicode::Collate::CJK::GB2312'=> '1.19',
13654             'Unicode::Collate::CJK::JISX0208'=> '1.19',
13655             'Unicode::Collate::CJK::Korean'=> '1.19',
13656             'Unicode::Collate::CJK::Pinyin'=> '1.19',
13657             'Unicode::Collate::CJK::Stroke'=> '1.19',
13658             'Unicode::Collate::CJK::Zhuyin'=> '1.19',
13659             'Unicode::Collate::Locale'=> '1.19',
13660             'bigint' => '0.47',
13661             'bignum' => '0.47',
13662             'bigrat' => '0.47',
13663             'encoding' => '2.19',
13664             'ok' => '1.302073',
13665             },
13666             removed => {
13667             }
13668             },
13669             5.022003 => {
13670             delta_from => 5.022002,
13671             changed => {
13672             'App::Cpan' => '1.63_01',
13673             'App::Prove' => '3.35_01',
13674             'App::Prove::State' => '3.35_01',
13675             'App::Prove::State::Result'=> '3.35_01',
13676             'App::Prove::State::Result::Test'=> '3.35_01',
13677             'Archive::Tar' => '2.04_01',
13678             'Archive::Tar::Constant'=> '2.04_01',
13679             'Archive::Tar::File' => '2.04_01',
13680             'B::Op_private' => '5.022003',
13681             'CPAN' => '2.11_01',
13682             'Compress::Zlib' => '2.068_001',
13683             'Config' => '5.022003',
13684             'Cwd' => '3.56_02',
13685             'Digest' => '1.17_01',
13686             'Digest::SHA' => '5.95_01',
13687             'Encode' => '2.72_01',
13688             'ExtUtils::Command' => '1.20_01',
13689             'ExtUtils::Command::MM' => '7.04_02',
13690             'ExtUtils::Liblist' => '7.04_02',
13691             'ExtUtils::Liblist::Kid'=> '7.04_02',
13692             'ExtUtils::MM' => '7.04_02',
13693             'ExtUtils::MM_AIX' => '7.04_02',
13694             'ExtUtils::MM_Any' => '7.04_02',
13695             'ExtUtils::MM_BeOS' => '7.04_02',
13696             'ExtUtils::MM_Cygwin' => '7.04_02',
13697             'ExtUtils::MM_DOS' => '7.04_02',
13698             'ExtUtils::MM_Darwin' => '7.04_02',
13699             'ExtUtils::MM_MacOS' => '7.04_02',
13700             'ExtUtils::MM_NW5' => '7.04_02',
13701             'ExtUtils::MM_OS2' => '7.04_02',
13702             'ExtUtils::MM_QNX' => '7.04_02',
13703             'ExtUtils::MM_UWIN' => '7.04_02',
13704             'ExtUtils::MM_Unix' => '7.04_02',
13705             'ExtUtils::MM_VMS' => '7.04_02',
13706             'ExtUtils::MM_VOS' => '7.04_02',
13707             'ExtUtils::MM_Win32' => '7.04_02',
13708             'ExtUtils::MM_Win95' => '7.04_02',
13709             'ExtUtils::MY' => '7.04_02',
13710             'ExtUtils::MakeMaker' => '7.04_02',
13711             'ExtUtils::MakeMaker::Config'=> '7.04_02',
13712             'ExtUtils::Mkbootstrap' => '7.04_02',
13713             'ExtUtils::Mksymlists' => '7.04_02',
13714             'ExtUtils::testlib' => '7.04_02',
13715             'File::Fetch' => '0.48_01',
13716             'File::Spec' => '3.56_02',
13717             'File::Spec::Cygwin' => '3.56_02',
13718             'File::Spec::Epoc' => '3.56_02',
13719             'File::Spec::Functions' => '3.56_02',
13720             'File::Spec::Mac' => '3.56_02',
13721             'File::Spec::OS2' => '3.56_02',
13722             'File::Spec::Unix' => '3.56_02',
13723             'File::Spec::VMS' => '3.56_02',
13724             'File::Spec::Win32' => '3.56_02',
13725             'HTTP::Tiny' => '0.054_01',
13726             'I18N::LangTags::Detect'=> '1.05_01',
13727             'IO' => '1.35_01',
13728             'IO::Compress::Adapter::Bzip2'=> '2.068_001',
13729             'IO::Compress::Adapter::Deflate'=> '2.068_001',
13730             'IO::Compress::Adapter::Identity'=> '2.068_001',
13731             'IO::Compress::Base' => '2.068_001',
13732             'IO::Compress::Base::Common'=> '2.068_001',
13733             'IO::Compress::Bzip2' => '2.068_001',
13734             'IO::Compress::Deflate' => '2.068_001',
13735             'IO::Compress::Gzip' => '2.068_001',
13736             'IO::Compress::Gzip::Constants'=> '2.068_001',
13737             'IO::Compress::RawDeflate'=> '2.068_001',
13738             'IO::Compress::Zip' => '2.068_001',
13739             'IO::Compress::Zip::Constants'=> '2.068_001',
13740             'IO::Compress::Zlib::Constants'=> '2.068_001',
13741             'IO::Compress::Zlib::Extra'=> '2.068_001',
13742             'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001',
13743             'IO::Uncompress::Adapter::Identity'=> '2.068_001',
13744             'IO::Uncompress::Adapter::Inflate'=> '2.068_001',
13745             'IO::Uncompress::AnyInflate'=> '2.068_001',
13746             'IO::Uncompress::AnyUncompress'=> '2.068_001',
13747             'IO::Uncompress::Base' => '2.068_001',
13748             'IO::Uncompress::Bunzip2'=> '2.068_001',
13749             'IO::Uncompress::Gunzip'=> '2.068_001',
13750             'IO::Uncompress::Inflate'=> '2.068_001',
13751             'IO::Uncompress::RawInflate'=> '2.068_001',
13752             'IO::Uncompress::Unzip' => '2.068_001',
13753             'IPC::Cmd' => '0.92_01',
13754             'JSON::PP' => '2.27300_01',
13755             'Locale::Maketext' => '1.26_01',
13756             'Locale::Maketext::Simple'=> '0.21_01',
13757             'Memoize' => '1.03_01',
13758             'Module::CoreList' => '5.20170114_22',
13759             'Module::CoreList::TieHashDelta'=> '5.20170114_22',
13760             'Module::CoreList::Utils'=> '5.20170114_22',
13761             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13762             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13763             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13764             'Net::Cmd' => '3.05_01',
13765             'Net::Config' => '3.05_01',
13766             'Net::Domain' => '3.05_01',
13767             'Net::FTP' => '3.05_01',
13768             'Net::FTP::A' => '3.05_01',
13769             'Net::FTP::E' => '3.05_01',
13770             'Net::FTP::I' => '3.05_01',
13771             'Net::FTP::L' => '3.05_01',
13772             'Net::FTP::dataconn' => '3.05_01',
13773             'Net::NNTP' => '3.05_01',
13774             'Net::Netrc' => '3.05_01',
13775             'Net::POP3' => '3.05_01',
13776             'Net::Ping' => '2.43_01',
13777             'Net::SMTP' => '3.05_01',
13778             'Net::Time' => '3.05_01',
13779             'Parse::CPAN::Meta' => '1.4414_001',
13780             'Pod::Html' => '1.2201',
13781             'Pod::Perldoc' => '3.25_01',
13782             'Storable' => '2.53_02',
13783             'Sys::Syslog' => '0.33_01',
13784             'TAP::Base' => '3.35_01',
13785             'TAP::Formatter::Base' => '3.35_01',
13786             'TAP::Formatter::Color' => '3.35_01',
13787             'TAP::Formatter::Console'=> '3.35_01',
13788             'TAP::Formatter::Console::ParallelSession'=> '3.35_01',
13789             'TAP::Formatter::Console::Session'=> '3.35_01',
13790             'TAP::Formatter::File' => '3.35_01',
13791             'TAP::Formatter::File::Session'=> '3.35_01',
13792             'TAP::Formatter::Session'=> '3.35_01',
13793             'TAP::Harness' => '3.35_01',
13794             'TAP::Harness::Env' => '3.35_01',
13795             'TAP::Object' => '3.35_01',
13796             'TAP::Parser' => '3.35_01',
13797             'TAP::Parser::Aggregator'=> '3.35_01',
13798             'TAP::Parser::Grammar' => '3.35_01',
13799             'TAP::Parser::Iterator' => '3.35_01',
13800             'TAP::Parser::Iterator::Array'=> '3.35_01',
13801             'TAP::Parser::Iterator::Process'=> '3.35_01',
13802             'TAP::Parser::Iterator::Stream'=> '3.35_01',
13803             'TAP::Parser::IteratorFactory'=> '3.35_01',
13804             'TAP::Parser::Multiplexer'=> '3.35_01',
13805             'TAP::Parser::Result' => '3.35_01',
13806             'TAP::Parser::Result::Bailout'=> '3.35_01',
13807             'TAP::Parser::Result::Comment'=> '3.35_01',
13808             'TAP::Parser::Result::Plan'=> '3.35_01',
13809             'TAP::Parser::Result::Pragma'=> '3.35_01',
13810             'TAP::Parser::Result::Test'=> '3.35_01',
13811             'TAP::Parser::Result::Unknown'=> '3.35_01',
13812             'TAP::Parser::Result::Version'=> '3.35_01',
13813             'TAP::Parser::Result::YAML'=> '3.35_01',
13814             'TAP::Parser::ResultFactory'=> '3.35_01',
13815             'TAP::Parser::Scheduler'=> '3.35_01',
13816             'TAP::Parser::Scheduler::Job'=> '3.35_01',
13817             'TAP::Parser::Scheduler::Spinner'=> '3.35_01',
13818             'TAP::Parser::Source' => '3.35_01',
13819             'TAP::Parser::SourceHandler'=> '3.35_01',
13820             'TAP::Parser::SourceHandler::Executable'=> '3.35_01',
13821             'TAP::Parser::SourceHandler::File'=> '3.35_01',
13822             'TAP::Parser::SourceHandler::Handle'=> '3.35_01',
13823             'TAP::Parser::SourceHandler::Perl'=> '3.35_01',
13824             'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01',
13825             'TAP::Parser::YAMLish::Reader'=> '3.35_01',
13826             'TAP::Parser::YAMLish::Writer'=> '3.35_01',
13827             'Test' => '1.26_01',
13828             'Test::Harness' => '3.35_01',
13829             'XSLoader' => '0.20_01',
13830             'bigint' => '0.39_01',
13831             'bignum' => '0.39_01',
13832             'bigrat' => '0.39_01',
13833             },
13834             removed => {
13835             }
13836             },
13837             5.024001 => {
13838             delta_from => 5.024000,
13839             changed => {
13840             'App::Cpan' => '1.63_01',
13841             'App::Prove' => '3.36_01',
13842             'App::Prove::State' => '3.36_01',
13843             'App::Prove::State::Result'=> '3.36_01',
13844             'App::Prove::State::Result::Test'=> '3.36_01',
13845             'Archive::Tar' => '2.04_01',
13846             'Archive::Tar::Constant'=> '2.04_01',
13847             'Archive::Tar::File' => '2.04_01',
13848             'B::Op_private' => '5.024001',
13849             'CPAN' => '2.11_01',
13850             'Compress::Zlib' => '2.069_001',
13851             'Config' => '5.024001',
13852             'Cwd' => '3.63_01',
13853             'Digest' => '1.17_01',
13854             'Digest::SHA' => '5.95_01',
13855             'Encode' => '2.80_01',
13856             'ExtUtils::Command' => '7.10_02',
13857             'ExtUtils::Command::MM' => '7.10_02',
13858             'ExtUtils::Liblist' => '7.10_02',
13859             'ExtUtils::Liblist::Kid'=> '7.10_02',
13860             'ExtUtils::MM' => '7.10_02',
13861             'ExtUtils::MM_AIX' => '7.10_02',
13862             'ExtUtils::MM_Any' => '7.10_02',
13863             'ExtUtils::MM_BeOS' => '7.10_02',
13864             'ExtUtils::MM_Cygwin' => '7.10_02',
13865             'ExtUtils::MM_DOS' => '7.10_02',
13866             'ExtUtils::MM_Darwin' => '7.10_02',
13867             'ExtUtils::MM_MacOS' => '7.10_02',
13868             'ExtUtils::MM_NW5' => '7.10_02',
13869             'ExtUtils::MM_OS2' => '7.10_02',
13870             'ExtUtils::MM_QNX' => '7.10_02',
13871             'ExtUtils::MM_UWIN' => '7.10_02',
13872             'ExtUtils::MM_Unix' => '7.10_02',
13873             'ExtUtils::MM_VMS' => '7.10_02',
13874             'ExtUtils::MM_VOS' => '7.10_02',
13875             'ExtUtils::MM_Win32' => '7.10_02',
13876             'ExtUtils::MM_Win95' => '7.10_02',
13877             'ExtUtils::MY' => '7.10_02',
13878             'ExtUtils::MakeMaker' => '7.10_02',
13879             'ExtUtils::MakeMaker::Config'=> '7.10_02',
13880             'ExtUtils::Mkbootstrap' => '7.10_02',
13881             'ExtUtils::Mksymlists' => '7.10_02',
13882             'ExtUtils::testlib' => '7.10_02',
13883             'File::Fetch' => '0.48_01',
13884             'File::Spec' => '3.63_01',
13885             'File::Spec::Cygwin' => '3.63_01',
13886             'File::Spec::Epoc' => '3.63_01',
13887             'File::Spec::Functions' => '3.63_01',
13888             'File::Spec::Mac' => '3.63_01',
13889             'File::Spec::OS2' => '3.63_01',
13890             'File::Spec::Unix' => '3.63_01',
13891             'File::Spec::VMS' => '3.63_01',
13892             'File::Spec::Win32' => '3.63_01',
13893             'HTTP::Tiny' => '0.056_001',
13894             'I18N::LangTags::Detect'=> '1.05_01',
13895             'IO' => '1.36_01',
13896             'IO::Compress::Adapter::Bzip2'=> '2.069_001',
13897             'IO::Compress::Adapter::Deflate'=> '2.069_001',
13898             'IO::Compress::Adapter::Identity'=> '2.069_001',
13899             'IO::Compress::Base' => '2.069_001',
13900             'IO::Compress::Base::Common'=> '2.069_001',
13901             'IO::Compress::Bzip2' => '2.069_001',
13902             'IO::Compress::Deflate' => '2.069_001',
13903             'IO::Compress::Gzip' => '2.069_001',
13904             'IO::Compress::Gzip::Constants'=> '2.069_001',
13905             'IO::Compress::RawDeflate'=> '2.069_001',
13906             'IO::Compress::Zip' => '2.069_001',
13907             'IO::Compress::Zip::Constants'=> '2.069_001',
13908             'IO::Compress::Zlib::Constants'=> '2.069_001',
13909             'IO::Compress::Zlib::Extra'=> '2.069_001',
13910             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001',
13911             'IO::Uncompress::Adapter::Identity'=> '2.069_001',
13912             'IO::Uncompress::Adapter::Inflate'=> '2.069_001',
13913             'IO::Uncompress::AnyInflate'=> '2.069_001',
13914             'IO::Uncompress::AnyUncompress'=> '2.069_001',
13915             'IO::Uncompress::Base' => '2.069_001',
13916             'IO::Uncompress::Bunzip2'=> '2.069_001',
13917             'IO::Uncompress::Gunzip'=> '2.069_001',
13918             'IO::Uncompress::Inflate'=> '2.069_001',
13919             'IO::Uncompress::RawInflate'=> '2.069_001',
13920             'IO::Uncompress::Unzip' => '2.069_001',
13921             'IPC::Cmd' => '0.92_01',
13922             'JSON::PP' => '2.27300_01',
13923             'Locale::Maketext' => '1.26_01',
13924             'Locale::Maketext::Simple'=> '0.21_01',
13925             'Math::BigFloat::Trace' => '0.42_01',
13926             'Math::BigInt::Trace' => '0.42_01',
13927             'Memoize' => '1.03_01',
13928             'Module::CoreList' => '5.20170114_24',
13929             'Module::CoreList::TieHashDelta'=> '5.20170114_24',
13930             'Module::CoreList::Utils'=> '5.20170114_24',
13931             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13932             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13933             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13934             'Net::Cmd' => '3.08_01',
13935             'Net::Config' => '3.08_01',
13936             'Net::Domain' => '3.08_01',
13937             'Net::FTP' => '3.08_01',
13938             'Net::FTP::A' => '3.08_01',
13939             'Net::FTP::E' => '3.08_01',
13940             'Net::FTP::I' => '3.08_01',
13941             'Net::FTP::L' => '3.08_01',
13942             'Net::FTP::dataconn' => '3.08_01',
13943             'Net::NNTP' => '3.08_01',
13944             'Net::Netrc' => '3.08_01',
13945             'Net::POP3' => '3.08_01',
13946             'Net::Ping' => '2.43_01',
13947             'Net::SMTP' => '3.08_01',
13948             'Net::Time' => '3.08_01',
13949             'Parse::CPAN::Meta' => '1.4417_001',
13950             'Pod::Html' => '1.2201',
13951             'Pod::Perldoc' => '3.25_03',
13952             'Storable' => '2.56_01',
13953             'Sys::Syslog' => '0.33_01',
13954             'TAP::Base' => '3.36_01',
13955             'TAP::Formatter::Base' => '3.36_01',
13956             'TAP::Formatter::Color' => '3.36_01',
13957             'TAP::Formatter::Console'=> '3.36_01',
13958             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13959             'TAP::Formatter::Console::Session'=> '3.36_01',
13960             'TAP::Formatter::File' => '3.36_01',
13961             'TAP::Formatter::File::Session'=> '3.36_01',
13962             'TAP::Formatter::Session'=> '3.36_01',
13963             'TAP::Harness' => '3.36_01',
13964             'TAP::Harness::Env' => '3.36_01',
13965             'TAP::Object' => '3.36_01',
13966             'TAP::Parser' => '3.36_01',
13967             'TAP::Parser::Aggregator'=> '3.36_01',
13968             'TAP::Parser::Grammar' => '3.36_01',
13969             'TAP::Parser::Iterator' => '3.36_01',
13970             'TAP::Parser::Iterator::Array'=> '3.36_01',
13971             'TAP::Parser::Iterator::Process'=> '3.36_01',
13972             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13973             'TAP::Parser::IteratorFactory'=> '3.36_01',
13974             'TAP::Parser::Multiplexer'=> '3.36_01',
13975             'TAP::Parser::Result' => '3.36_01',
13976             'TAP::Parser::Result::Bailout'=> '3.36_01',
13977             'TAP::Parser::Result::Comment'=> '3.36_01',
13978             'TAP::Parser::Result::Plan'=> '3.36_01',
13979             'TAP::Parser::Result::Pragma'=> '3.36_01',
13980             'TAP::Parser::Result::Test'=> '3.36_01',
13981             'TAP::Parser::Result::Unknown'=> '3.36_01',
13982             'TAP::Parser::Result::Version'=> '3.36_01',
13983             'TAP::Parser::Result::YAML'=> '3.36_01',
13984             'TAP::Parser::ResultFactory'=> '3.36_01',
13985             'TAP::Parser::Scheduler'=> '3.36_01',
13986             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13987             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13988             'TAP::Parser::Source' => '3.36_01',
13989             'TAP::Parser::SourceHandler'=> '3.36_01',
13990             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13991             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13992             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13993             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13994             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13995             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13996             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13997             'Test' => '1.28_01',
13998             'Test::Harness' => '3.36_01',
13999             'XSLoader' => '0.22',
14000             'bigint' => '0.42_01',
14001             'bignum' => '0.42_01',
14002             'bigrat' => '0.42_01',
14003             },
14004             removed => {
14005             }
14006             },
14007             5.025009 => {
14008             delta_from => 5.025008,
14009             changed => {
14010             'App::Cpan' => '1.66',
14011             'B::Deparse' => '1.40',
14012             'B::Op_private' => '5.025009',
14013             'B::Terse' => '1.07',
14014             'B::Xref' => '1.06',
14015             'CPAN' => '2.16',
14016             'CPAN::Bundle' => '5.5002',
14017             'CPAN::Distribution' => '2.16',
14018             'CPAN::Exception::RecursiveDependency'=> '5.5001',
14019             'CPAN::FTP' => '5.5008',
14020             'CPAN::FirstTime' => '5.5310',
14021             'CPAN::HandleConfig' => '5.5008',
14022             'CPAN::Module' => '5.5003',
14023             'Compress::Raw::Bzip2' => '2.070',
14024             'Compress::Raw::Zlib' => '2.070',
14025             'Config' => '5.025009',
14026             'DB_File' => '1.840',
14027             'Data::Dumper' => '2.167',
14028             'Devel::SelfStubber' => '1.06',
14029             'DynaLoader' => '1.41',
14030             'Errno' => '1.28',
14031             'ExtUtils::Embed' => '1.34',
14032             'File::Glob' => '1.28',
14033             'I18N::LangTags' => '0.42',
14034             'Module::CoreList' => '5.20170120',
14035             'Module::CoreList::TieHashDelta'=> '5.20170120',
14036             'Module::CoreList::Utils'=> '5.20170120',
14037             'OS2::Process' => '1.12',
14038             'PerlIO::scalar' => '0.26',
14039             'Pod::Html' => '1.2202',
14040             'Storable' => '2.61',
14041             'Symbol' => '1.08',
14042             'Term::ReadLine' => '1.16',
14043             'Test' => '1.30',
14044             'Unicode::UCD' => '0.68',
14045             'VMS::DCLsym' => '1.08',
14046             'XS::APItest' => '0.88',
14047             'XSLoader' => '0.26',
14048             'attributes' => '0.29',
14049             'diagnostics' => '1.36',
14050             'feature' => '1.46',
14051             'lib' => '0.64',
14052             'overload' => '1.28',
14053             're' => '0.34',
14054             'threads' => '2.12',
14055             'threads::shared' => '1.54',
14056             },
14057             removed => {
14058             }
14059             },
14060             5.025010 => {
14061             delta_from => 5.025009,
14062             changed => {
14063             'B' => '1.68',
14064             'B::Op_private' => '5.025010',
14065             'CPAN' => '2.17',
14066             'CPAN::Distribution' => '2.17',
14067             'Config' => '5.02501',
14068             'Getopt::Std' => '1.12',
14069             'Module::CoreList' => '5.20170220',
14070             'Module::CoreList::TieHashDelta'=> '5.20170220',
14071             'Module::CoreList::Utils'=> '5.20170220',
14072             'PerlIO' => '1.10',
14073             'Storable' => '2.62',
14074             'Thread::Queue' => '3.12',
14075             'feature' => '1.47',
14076             'open' => '1.11',
14077             'threads' => '2.13',
14078             },
14079             removed => {
14080             }
14081             },
14082             5.025011 => {
14083             delta_from => 5.025010,
14084             changed => {
14085             'App::Prove' => '3.38',
14086             'App::Prove::State' => '3.38',
14087             'App::Prove::State::Result'=> '3.38',
14088             'App::Prove::State::Result::Test'=> '3.38',
14089             'B::Op_private' => '5.025011',
14090             'Compress::Raw::Bzip2' => '2.074',
14091             'Compress::Raw::Zlib' => '2.074',
14092             'Compress::Zlib' => '2.074',
14093             'Config' => '5.025011',
14094             'Config::Perl::V' => '0.28',
14095             'Cwd' => '3.67',
14096             'ExtUtils::ParseXS' => '3.34',
14097             'ExtUtils::ParseXS::Constants'=> '3.34',
14098             'ExtUtils::ParseXS::CountLines'=> '3.34',
14099             'ExtUtils::ParseXS::Eval'=> '3.34',
14100             'ExtUtils::Typemaps' => '3.34',
14101             'ExtUtils::Typemaps::Cmd'=> '3.34',
14102             'ExtUtils::Typemaps::InputMap'=> '3.34',
14103             'ExtUtils::Typemaps::OutputMap'=> '3.34',
14104             'ExtUtils::Typemaps::Type'=> '3.34',
14105             'File::Spec' => '3.67',
14106             'File::Spec::AmigaOS' => '3.67',
14107             'File::Spec::Cygwin' => '3.67',
14108             'File::Spec::Epoc' => '3.67',
14109             'File::Spec::Functions' => '3.67',
14110             'File::Spec::Mac' => '3.67',
14111             'File::Spec::OS2' => '3.67',
14112             'File::Spec::Unix' => '3.67',
14113             'File::Spec::VMS' => '3.67',
14114             'File::Spec::Win32' => '3.67',
14115             'IO::Compress::Adapter::Bzip2'=> '2.074',
14116             'IO::Compress::Adapter::Deflate'=> '2.074',
14117             'IO::Compress::Adapter::Identity'=> '2.074',
14118             'IO::Compress::Base' => '2.074',
14119             'IO::Compress::Base::Common'=> '2.074',
14120             'IO::Compress::Bzip2' => '2.074',
14121             'IO::Compress::Deflate' => '2.074',
14122             'IO::Compress::Gzip' => '2.074',
14123             'IO::Compress::Gzip::Constants'=> '2.074',
14124             'IO::Compress::RawDeflate'=> '2.074',
14125             'IO::Compress::Zip' => '2.074',
14126             'IO::Compress::Zip::Constants'=> '2.074',
14127             'IO::Compress::Zlib::Constants'=> '2.074',
14128             'IO::Compress::Zlib::Extra'=> '2.074',
14129             'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
14130             'IO::Uncompress::Adapter::Identity'=> '2.074',
14131             'IO::Uncompress::Adapter::Inflate'=> '2.074',
14132             'IO::Uncompress::AnyInflate'=> '2.074',
14133             'IO::Uncompress::AnyUncompress'=> '2.074',
14134             'IO::Uncompress::Base' => '2.074',
14135             'IO::Uncompress::Bunzip2'=> '2.074',
14136             'IO::Uncompress::Gunzip'=> '2.074',
14137             'IO::Uncompress::Inflate'=> '2.074',
14138             'IO::Uncompress::RawInflate'=> '2.074',
14139             'IO::Uncompress::Unzip' => '2.074',
14140             'Module::CoreList' => '5.20170320',
14141             'Module::CoreList::TieHashDelta'=> '5.20170230',
14142             'Module::CoreList::Utils'=> '5.20170320',
14143             'Pod::Perldoc' => '3.28',
14144             'Pod::Perldoc::BaseTo' => '3.28',
14145             'Pod::Perldoc::GetOptsOO'=> '3.28',
14146             'Pod::Perldoc::ToANSI' => '3.28',
14147             'Pod::Perldoc::ToChecker'=> '3.28',
14148             'Pod::Perldoc::ToMan' => '3.28',
14149             'Pod::Perldoc::ToNroff' => '3.28',
14150             'Pod::Perldoc::ToPod' => '3.28',
14151             'Pod::Perldoc::ToRtf' => '3.28',
14152             'Pod::Perldoc::ToTerm' => '3.28',
14153             'Pod::Perldoc::ToText' => '3.28',
14154             'Pod::Perldoc::ToTk' => '3.28',
14155             'Pod::Perldoc::ToXml' => '3.28',
14156             'TAP::Base' => '3.38',
14157             'TAP::Formatter::Base' => '3.38',
14158             'TAP::Formatter::Color' => '3.38',
14159             'TAP::Formatter::Console'=> '3.38',
14160             'TAP::Formatter::Console::ParallelSession'=> '3.38',
14161             'TAP::Formatter::Console::Session'=> '3.38',
14162             'TAP::Formatter::File' => '3.38',
14163             'TAP::Formatter::File::Session'=> '3.38',
14164             'TAP::Formatter::Session'=> '3.38',
14165             'TAP::Harness' => '3.38',
14166             'TAP::Harness::Env' => '3.38',
14167             'TAP::Object' => '3.38',
14168             'TAP::Parser' => '3.38',
14169             'TAP::Parser::Aggregator'=> '3.38',
14170             'TAP::Parser::Grammar' => '3.38',
14171             'TAP::Parser::Iterator' => '3.38',
14172             'TAP::Parser::Iterator::Array'=> '3.38',
14173             'TAP::Parser::Iterator::Process'=> '3.38',
14174             'TAP::Parser::Iterator::Stream'=> '3.38',
14175             'TAP::Parser::IteratorFactory'=> '3.38',
14176             'TAP::Parser::Multiplexer'=> '3.38',
14177             'TAP::Parser::Result' => '3.38',
14178             'TAP::Parser::Result::Bailout'=> '3.38',
14179             'TAP::Parser::Result::Comment'=> '3.38',
14180             'TAP::Parser::Result::Plan'=> '3.38',
14181             'TAP::Parser::Result::Pragma'=> '3.38',
14182             'TAP::Parser::Result::Test'=> '3.38',
14183             'TAP::Parser::Result::Unknown'=> '3.38',
14184             'TAP::Parser::Result::Version'=> '3.38',
14185             'TAP::Parser::Result::YAML'=> '3.38',
14186             'TAP::Parser::ResultFactory'=> '3.38',
14187             'TAP::Parser::Scheduler'=> '3.38',
14188             'TAP::Parser::Scheduler::Job'=> '3.38',
14189             'TAP::Parser::Scheduler::Spinner'=> '3.38',
14190             'TAP::Parser::Source' => '3.38',
14191             'TAP::Parser::SourceHandler'=> '3.38',
14192             'TAP::Parser::SourceHandler::Executable'=> '3.38',
14193             'TAP::Parser::SourceHandler::File'=> '3.38',
14194             'TAP::Parser::SourceHandler::Handle'=> '3.38',
14195             'TAP::Parser::SourceHandler::Perl'=> '3.38',
14196             'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
14197             'TAP::Parser::YAMLish::Reader'=> '3.38',
14198             'TAP::Parser::YAMLish::Writer'=> '3.38',
14199             'Test::Harness' => '3.38',
14200             'VMS::Stdio' => '2.41',
14201             'threads' => '2.15',
14202             'threads::shared' => '1.55',
14203             },
14204             removed => {
14205             }
14206             },
14207             5.025012 => {
14208             delta_from => 5.025011,
14209             changed => {
14210             'B::Op_private' => '5.025012',
14211             'CPAN' => '2.18',
14212             'CPAN::Bundle' => '5.5003',
14213             'CPAN::Distribution' => '2.18',
14214             'Config' => '5.025012',
14215             'DynaLoader' => '1.42',
14216             'Module::CoreList' => '5.20170420',
14217             'Module::CoreList::TieHashDelta'=> '5.20170420',
14218             'Module::CoreList::Utils'=> '5.20170420',
14219             'Safe' => '2.40',
14220             'XSLoader' => '0.27',
14221             'base' => '2.25',
14222             'threads::shared' => '1.56',
14223             },
14224             removed => {
14225             }
14226             },
14227             5.026000 => {
14228             delta_from => 5.025012,
14229             changed => {
14230             'B::Op_private' => '5.026000',
14231             'Config' => '5.026',
14232             'Module::CoreList' => '5.20170530',
14233             'Module::CoreList::TieHashDelta'=> '5.20170530',
14234             'Module::CoreList::Utils'=> '5.20170530',
14235             },
14236             removed => {
14237             }
14238             },
14239             5.027000 => {
14240             delta_from => 5.026000,
14241             changed => {
14242             'Attribute::Handlers' => '1.00',
14243             'B::Concise' => '1.000',
14244             'B::Deparse' => '1.41',
14245             'B::Op_private' => '5.027000',
14246             'Config' => '5.027',
14247             'Module::CoreList' => '5.20170531',
14248             'Module::CoreList::TieHashDelta'=> '5.20170531',
14249             'Module::CoreList::Utils'=> '5.20170531',
14250             'O' => '1.02',
14251             'attributes' => '0.3',
14252             'feature' => '1.48',
14253             },
14254             removed => {
14255             }
14256             },
14257             5.027001 => {
14258             delta_from => 5.027,
14259             changed => {
14260             'App::Prove' => '3.39',
14261             'App::Prove::State' => '3.39',
14262             'App::Prove::State::Result'=> '3.39',
14263             'App::Prove::State::Result::Test'=> '3.39',
14264             'Archive::Tar' => '2.26',
14265             'Archive::Tar::Constant'=> '2.26',
14266             'Archive::Tar::File' => '2.26',
14267             'B::Op_private' => '5.027001',
14268             'B::Terse' => '1.08',
14269             'Config' => '5.027001',
14270             'Devel::PPPort' => '3.36',
14271             'DirHandle' => '1.05',
14272             'ExtUtils::Command' => '7.30',
14273             'ExtUtils::Command::MM' => '7.30',
14274             'ExtUtils::Install' => '2.14',
14275             'ExtUtils::Installed' => '2.14',
14276             'ExtUtils::Liblist' => '7.30',
14277             'ExtUtils::Liblist::Kid'=> '7.30',
14278             'ExtUtils::MM' => '7.30',
14279             'ExtUtils::MM_AIX' => '7.30',
14280             'ExtUtils::MM_Any' => '7.30',
14281             'ExtUtils::MM_BeOS' => '7.30',
14282             'ExtUtils::MM_Cygwin' => '7.30',
14283             'ExtUtils::MM_DOS' => '7.30',
14284             'ExtUtils::MM_Darwin' => '7.30',
14285             'ExtUtils::MM_MacOS' => '7.30',
14286             'ExtUtils::MM_NW5' => '7.30',
14287             'ExtUtils::MM_OS2' => '7.30',
14288             'ExtUtils::MM_QNX' => '7.30',
14289             'ExtUtils::MM_UWIN' => '7.30',
14290             'ExtUtils::MM_Unix' => '7.30',
14291             'ExtUtils::MM_VMS' => '7.30',
14292             'ExtUtils::MM_VOS' => '7.30',
14293             'ExtUtils::MM_Win32' => '7.30',
14294             'ExtUtils::MM_Win95' => '7.30',
14295             'ExtUtils::MY' => '7.30',
14296             'ExtUtils::MakeMaker' => '7.30',
14297             'ExtUtils::MakeMaker::Config'=> '7.30',
14298             'ExtUtils::MakeMaker::Locale'=> '7.30',
14299             'ExtUtils::MakeMaker::version'=> '7.30',
14300             'ExtUtils::MakeMaker::version::regex'=> '7.30',
14301             'ExtUtils::Mkbootstrap' => '7.30',
14302             'ExtUtils::Mksymlists' => '7.30',
14303             'ExtUtils::Packlist' => '2.14',
14304             'ExtUtils::testlib' => '7.30',
14305             'File::Path' => '2.14',
14306             'Filter::Util::Call' => '1.57',
14307             'GDBM_File' => '1.16',
14308             'Getopt::Long' => '2.5',
14309             'IO::Socket::IP' => '0.39',
14310             'IPC::Cmd' => '0.98',
14311             'JSON::PP' => '2.94',
14312             'JSON::PP::Boolean' => '2.94',
14313             'Locale::Codes' => '3.52',
14314             'Locale::Codes::Constants'=> '3.52',
14315             'Locale::Codes::Country'=> '3.52',
14316             'Locale::Codes::Country_Codes'=> '3.52',
14317             'Locale::Codes::Country_Retired'=> '3.52',
14318             'Locale::Codes::Currency'=> '3.52',
14319             'Locale::Codes::Currency_Codes'=> '3.52',
14320             'Locale::Codes::Currency_Retired'=> '3.52',
14321             'Locale::Codes::LangExt'=> '3.52',
14322             'Locale::Codes::LangExt_Codes'=> '3.52',
14323             'Locale::Codes::LangExt_Retired'=> '3.52',
14324             'Locale::Codes::LangFam'=> '3.52',
14325             'Locale::Codes::LangFam_Codes'=> '3.52',
14326             'Locale::Codes::LangFam_Retired'=> '3.52',
14327             'Locale::Codes::LangVar'=> '3.52',
14328             'Locale::Codes::LangVar_Codes'=> '3.52',
14329             'Locale::Codes::LangVar_Retired'=> '3.52',
14330             'Locale::Codes::Language'=> '3.52',
14331             'Locale::Codes::Language_Codes'=> '3.52',
14332             'Locale::Codes::Language_Retired'=> '3.52',
14333             'Locale::Codes::Script' => '3.52',
14334             'Locale::Codes::Script_Codes'=> '3.52',
14335             'Locale::Codes::Script_Retired'=> '3.52',
14336             'Locale::Country' => '3.52',
14337             'Locale::Currency' => '3.52',
14338             'Locale::Language' => '3.52',
14339             'Locale::Script' => '3.52',
14340             'Module::CoreList' => '5.20170621',
14341             'Module::CoreList::TieHashDelta'=> '5.20170621',
14342             'Module::CoreList::Utils'=> '5.20170621',
14343             'PerlIO::scalar' => '0.27',
14344             'PerlIO::via' => '0.17',
14345             'Storable' => '2.63',
14346             'TAP::Base' => '3.39',
14347             'TAP::Formatter::Base' => '3.39',
14348             'TAP::Formatter::Color' => '3.39',
14349             'TAP::Formatter::Console'=> '3.39',
14350             'TAP::Formatter::Console::ParallelSession'=> '3.39',
14351             'TAP::Formatter::Console::Session'=> '3.39',
14352             'TAP::Formatter::File' => '3.39',
14353             'TAP::Formatter::File::Session'=> '3.39',
14354             'TAP::Formatter::Session'=> '3.39',
14355             'TAP::Harness' => '3.39',
14356             'TAP::Harness::Env' => '3.39',
14357             'TAP::Object' => '3.39',
14358             'TAP::Parser' => '3.39',
14359             'TAP::Parser::Aggregator'=> '3.39',
14360             'TAP::Parser::Grammar' => '3.39',
14361             'TAP::Parser::Iterator' => '3.39',
14362             'TAP::Parser::Iterator::Array'=> '3.39',
14363             'TAP::Parser::Iterator::Process'=> '3.39',
14364             'TAP::Parser::Iterator::Stream'=> '3.39',
14365             'TAP::Parser::IteratorFactory'=> '3.39',
14366             'TAP::Parser::Multiplexer'=> '3.39',
14367             'TAP::Parser::Result' => '3.39',
14368             'TAP::Parser::Result::Bailout'=> '3.39',
14369             'TAP::Parser::Result::Comment'=> '3.39',
14370             'TAP::Parser::Result::Plan'=> '3.39',
14371             'TAP::Parser::Result::Pragma'=> '3.39',
14372             'TAP::Parser::Result::Test'=> '3.39',
14373             'TAP::Parser::Result::Unknown'=> '3.39',
14374             'TAP::Parser::Result::Version'=> '3.39',
14375             'TAP::Parser::Result::YAML'=> '3.39',
14376             'TAP::Parser::ResultFactory'=> '3.39',
14377             'TAP::Parser::Scheduler'=> '3.39',
14378             'TAP::Parser::Scheduler::Job'=> '3.39',
14379             'TAP::Parser::Scheduler::Spinner'=> '3.39',
14380             'TAP::Parser::Source' => '3.39',
14381             'TAP::Parser::SourceHandler'=> '3.39',
14382             'TAP::Parser::SourceHandler::Executable'=> '3.39',
14383             'TAP::Parser::SourceHandler::File'=> '3.39',
14384             'TAP::Parser::SourceHandler::Handle'=> '3.39',
14385             'TAP::Parser::SourceHandler::Perl'=> '3.39',
14386             'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
14387             'TAP::Parser::YAMLish::Reader'=> '3.39',
14388             'TAP::Parser::YAMLish::Writer'=> '3.39',
14389             'Test::Harness' => '3.39',
14390             'XS::APItest' => '0.89',
14391             '_charnames' => '1.45',
14392             'charnames' => '1.45',
14393             'if' => '0.0607',
14394             'mro' => '1.21',
14395             'threads' => '2.16',
14396             'threads::shared' => '1.57',
14397             'version' => '0.9918',
14398             'version::regex' => '0.9918',
14399             },
14400             removed => {
14401             }
14402             },
14403             5.022004 => {
14404             delta_from => 5.022003,
14405             changed => {
14406             'B::Op_private' => '5.022004',
14407             'Config' => '5.022004',
14408             'Module::CoreList' => '5.20170715_22',
14409             'Module::CoreList::TieHashDelta'=> '5.20170715_22',
14410             'Module::CoreList::Utils'=> '5.20170715_22',
14411             'base' => '2.22_01',
14412             },
14413             removed => {
14414             }
14415             },
14416             5.024002 => {
14417             delta_from => 5.024001,
14418             changed => {
14419             'B::Op_private' => '5.024002',
14420             'Config' => '5.024002',
14421             'Module::CoreList' => '5.20170715_24',
14422             'Module::CoreList::TieHashDelta'=> '5.20170715_24',
14423             'Module::CoreList::Utils'=> '5.20170715_24',
14424             'base' => '2.23_01',
14425             },
14426             removed => {
14427             }
14428             },
14429             5.027002 => {
14430             delta_from => 5.027001,
14431             changed => {
14432             'B::Op_private' => '5.027002',
14433             'Carp' => '1.43',
14434             'Carp::Heavy' => '1.43',
14435             'Config' => '5.027002',
14436             'Cwd' => '3.68',
14437             'Encode' => '2.92',
14438             'Encode::Alias' => '2.23',
14439             'Encode::CN::HZ' => '2.09',
14440             'Encode::Encoding' => '2.08',
14441             'Encode::GSM0338' => '2.07',
14442             'Encode::Guess' => '2.07',
14443             'Encode::JP::JIS7' => '2.07',
14444             'Encode::KR::2022_KR' => '2.04',
14445             'Encode::MIME::Header' => '2.27',
14446             'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
14447             'Encode::Unicode' => '2.16',
14448             'Encode::Unicode::UTF7' => '2.10',
14449             'ExtUtils::CBuilder' => '0.280228',
14450             'ExtUtils::CBuilder::Base'=> '0.280228',
14451             'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
14452             'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
14453             'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
14454             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
14455             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
14456             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
14457             'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
14458             'ExtUtils::CBuilder::Platform::android'=> '0.280228',
14459             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
14460             'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
14461             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
14462             'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
14463             'File::Glob' => '1.29',
14464             'File::Spec' => '3.68',
14465             'File::Spec::AmigaOS' => '3.68',
14466             'File::Spec::Cygwin' => '3.68',
14467             'File::Spec::Epoc' => '3.68',
14468             'File::Spec::Functions' => '3.68',
14469             'File::Spec::Mac' => '3.68',
14470             'File::Spec::OS2' => '3.68',
14471             'File::Spec::Unix' => '3.68',
14472             'File::Spec::VMS' => '3.68',
14473             'File::Spec::Win32' => '3.68',
14474             'List::Util' => '1.48',
14475             'List::Util::XS' => '1.48',
14476             'Math::BigRat' => '0.2613',
14477             'Module::CoreList' => '5.20170720',
14478             'Module::CoreList::TieHashDelta'=> '5.20170720',
14479             'Module::CoreList::Utils'=> '5.20170720',
14480             'Opcode' => '1.40',
14481             'POSIX' => '1.77',
14482             'PerlIO::scalar' => '0.29',
14483             'Scalar::Util' => '1.48',
14484             'Sub::Util' => '1.48',
14485             'Time::HiRes' => '1.9743',
14486             'Time::Piece' => '1.3201',
14487             'Time::Seconds' => '1.3201',
14488             'Unicode' => '10.0.0',
14489             'XS::APItest' => '0.90',
14490             'arybase' => '0.13',
14491             'encoding' => '2.20',
14492             'feature' => '1.49',
14493             're' => '0.35',
14494             },
14495             removed => {
14496             }
14497             },
14498             5.027003 => {
14499             delta_from => 5.027002,
14500             changed => {
14501             'B' => '1.69',
14502             'B::Concise' => '1.001',
14503             'B::Debug' => '1.25',
14504             'B::Deparse' => '1.42',
14505             'B::Op_private' => '5.027003',
14506             'Config' => '5.027003',
14507             'Data::Dumper' => '2.167_02',
14508             'Devel::Peek' => '1.27',
14509             'ExtUtils::Constant' => '0.24',
14510             'ExtUtils::Constant::Base'=> '0.06',
14511             'ExtUtils::Constant::ProxySubs'=> '0.09',
14512             'ExtUtils::Constant::Utils'=> '0.04',
14513             'ExtUtils::ParseXS' => '3.35',
14514             'ExtUtils::ParseXS::Constants'=> '3.35',
14515             'ExtUtils::ParseXS::CountLines'=> '3.35',
14516             'ExtUtils::ParseXS::Eval'=> '3.35',
14517             'ExtUtils::ParseXS::Utilities'=> '3.35',
14518             'ExtUtils::Typemaps' => '3.35',
14519             'ExtUtils::Typemaps::Cmd'=> '3.35',
14520             'ExtUtils::Typemaps::InputMap'=> '3.35',
14521             'ExtUtils::Typemaps::OutputMap'=> '3.35',
14522             'ExtUtils::Typemaps::Type'=> '3.35',
14523             'Filter::Simple' => '0.94',
14524             'Module::CoreList' => '5.20170821',
14525             'Module::CoreList::TieHashDelta'=> '5.20170821',
14526             'Module::CoreList::Utils'=> '5.20170821',
14527             'SelfLoader' => '1.24',
14528             'Storable' => '2.64',
14529             'XS::APItest' => '0.91',
14530             'base' => '2.26',
14531             'threads' => '2.17',
14532             'utf8' => '1.20',
14533             },
14534             removed => {
14535             }
14536             },
14537             5.027004 => {
14538             delta_from => 5.027003,
14539             changed => {
14540             'B::Op_private' => '5.027004',
14541             'Config' => '5.027004',
14542             'File::Glob' => '1.30',
14543             'I18N::Langinfo' => '0.14',
14544             'Module::CoreList' => '5.20170920',
14545             'Module::CoreList::TieHashDelta'=> '5.20170920',
14546             'Module::CoreList::Utils'=> '5.20170920',
14547             'Term::ReadLine' => '1.17',
14548             'VMS::Stdio' => '2.42',
14549             'XS::APItest' => '0.92',
14550             'attributes' => '0.31',
14551             'sort' => '2.03',
14552             'threads' => '2.18',
14553             },
14554             removed => {
14555             }
14556             },
14557             5.024003 => {
14558             delta_from => 5.024002,
14559             changed => {
14560             'B::Op_private' => '5.024003',
14561             'Config' => '5.024003',
14562             'Module::CoreList' => '5.20170922_24',
14563             'Module::CoreList::TieHashDelta'=> '5.20170922_24',
14564             'Module::CoreList::Utils'=> '5.20170922_24',
14565             'POSIX' => '1.65_01',
14566             'Time::HiRes' => '1.9741',
14567             },
14568             removed => {
14569             }
14570             },
14571             5.026001 => {
14572             delta_from => 5.026000,
14573             changed => {
14574             'B::Op_private' => '5.026001',
14575             'Config' => '5.026001',
14576             'Module::CoreList' => '5.20170922_26',
14577             'Module::CoreList::TieHashDelta'=> '5.20170922_26',
14578             'Module::CoreList::Utils'=> '5.20170922_26',
14579             '_charnames' => '1.45',
14580             'base' => '2.26',
14581             'charnames' => '1.45',
14582             },
14583             removed => {
14584             }
14585             },
14586             5.027005 => {
14587             delta_from => 5.027004,
14588             changed => {
14589             'B' => '1.70',
14590             'B::Concise' => '1.002',
14591             'B::Deparse' => '1.43',
14592             'B::Op_private' => '5.027005',
14593             'B::Xref' => '1.07',
14594             'Config' => '5.027005',
14595             'Config::Perl::V' => '0.29',
14596             'Digest::SHA' => '5.98',
14597             'Encode' => '2.93',
14598             'Encode::CN::HZ' => '2.10',
14599             'Encode::JP::JIS7' => '2.08',
14600             'Encode::MIME::Header' => '2.28',
14601             'Encode::MIME::Name' => '1.03',
14602             'File::Fetch' => '0.54',
14603             'File::Path' => '2.15',
14604             'List::Util' => '1.49',
14605             'List::Util::XS' => '1.49',
14606             'Locale::Codes' => '3.54',
14607             'Locale::Codes::Constants'=> '3.54',
14608             'Locale::Codes::Country'=> '3.54',
14609             'Locale::Codes::Country_Codes'=> '3.54',
14610             'Locale::Codes::Country_Retired'=> '3.54',
14611             'Locale::Codes::Currency'=> '3.54',
14612             'Locale::Codes::Currency_Codes'=> '3.54',
14613             'Locale::Codes::Currency_Retired'=> '3.54',
14614             'Locale::Codes::LangExt'=> '3.54',
14615             'Locale::Codes::LangExt_Codes'=> '3.54',
14616             'Locale::Codes::LangExt_Retired'=> '3.54',
14617             'Locale::Codes::LangFam'=> '3.54',
14618             'Locale::Codes::LangFam_Codes'=> '3.54',
14619             'Locale::Codes::LangFam_Retired'=> '3.54',
14620             'Locale::Codes::LangVar'=> '3.54',
14621             'Locale::Codes::LangVar_Codes'=> '3.54',
14622             'Locale::Codes::LangVar_Retired'=> '3.54',
14623             'Locale::Codes::Language'=> '3.54',
14624             'Locale::Codes::Language_Codes'=> '3.54',
14625             'Locale::Codes::Language_Retired'=> '3.54',
14626             'Locale::Codes::Script' => '3.54',
14627             'Locale::Codes::Script_Codes'=> '3.54',
14628             'Locale::Codes::Script_Retired'=> '3.54',
14629             'Locale::Country' => '3.54',
14630             'Locale::Currency' => '3.54',
14631             'Locale::Language' => '3.54',
14632             'Locale::Script' => '3.54',
14633             'Math::BigFloat' => '1.999811',
14634             'Math::BigInt' => '1.999811',
14635             'Math::BigInt::Calc' => '1.999811',
14636             'Math::BigInt::CalcEmu' => '1.999811',
14637             'Math::BigInt::FastCalc'=> '0.5006',
14638             'Math::BigInt::Lib' => '1.999811',
14639             'Module::CoreList' => '5.20171020',
14640             'Module::CoreList::TieHashDelta'=> '5.20171020',
14641             'Module::CoreList::Utils'=> '5.20171020',
14642             'NEXT' => '0.67_01',
14643             'POSIX' => '1.78',
14644             'Pod::Perldoc' => '3.2801',
14645             'Scalar::Util' => '1.49',
14646             'Sub::Util' => '1.49',
14647             'Sys::Hostname' => '1.21',
14648             'Test2' => '1.302103',
14649             'Test2::API' => '1.302103',
14650             'Test2::API::Breakage' => '1.302103',
14651             'Test2::API::Context' => '1.302103',
14652             'Test2::API::Instance' => '1.302103',
14653             'Test2::API::Stack' => '1.302103',
14654             'Test2::Event' => '1.302103',
14655             'Test2::Event::Bail' => '1.302103',
14656             'Test2::Event::Diag' => '1.302103',
14657             'Test2::Event::Encoding'=> '1.302103',
14658             'Test2::Event::Exception'=> '1.302103',
14659             'Test2::Event::Fail' => '1.302103',
14660             'Test2::Event::Generic' => '1.302103',
14661             'Test2::Event::Note' => '1.302103',
14662             'Test2::Event::Ok' => '1.302103',
14663             'Test2::Event::Pass' => '1.302103',
14664             'Test2::Event::Plan' => '1.302103',
14665             'Test2::Event::Skip' => '1.302103',
14666             'Test2::Event::Subtest' => '1.302103',
14667             'Test2::Event::TAP::Version'=> '1.302103',
14668             'Test2::Event::Waiting' => '1.302103',
14669             'Test2::EventFacet' => '1.302103',
14670             'Test2::EventFacet::About'=> '1.302103',
14671             'Test2::EventFacet::Amnesty'=> '1.302103',
14672             'Test2::EventFacet::Assert'=> '1.302103',
14673             'Test2::EventFacet::Control'=> '1.302103',
14674             'Test2::EventFacet::Error'=> '1.302103',
14675             'Test2::EventFacet::Info'=> '1.302103',
14676             'Test2::EventFacet::Meta'=> '1.302103',
14677             'Test2::EventFacet::Parent'=> '1.302103',
14678             'Test2::EventFacet::Plan'=> '1.302103',
14679             'Test2::EventFacet::Trace'=> '1.302103',
14680             'Test2::Formatter' => '1.302103',
14681             'Test2::Formatter::TAP' => '1.302103',
14682             'Test2::Hub' => '1.302103',
14683             'Test2::Hub::Interceptor'=> '1.302103',
14684             'Test2::Hub::Interceptor::Terminator'=> '1.302103',
14685             'Test2::Hub::Subtest' => '1.302103',
14686             'Test2::IPC' => '1.302103',
14687             'Test2::IPC::Driver' => '1.302103',
14688             'Test2::IPC::Driver::Files'=> '1.302103',
14689             'Test2::Tools::Tiny' => '1.302103',
14690             'Test2::Util' => '1.302103',
14691             'Test2::Util::ExternalMeta'=> '1.302103',
14692             'Test2::Util::Facets2Legacy'=> '1.302103',
14693             'Test2::Util::HashBase' => '0.005',
14694             'Test2::Util::Trace' => '1.302103',
14695             'Test::Builder' => '1.302103',
14696             'Test::Builder::Formatter'=> '1.302103',
14697             'Test::Builder::IO::Scalar'=> '2.114',
14698             'Test::Builder::Module' => '1.302103',
14699             'Test::Builder::Tester' => '1.302103',
14700             'Test::Builder::Tester::Color'=> '1.302103',
14701             'Test::Builder::TodoDiag'=> '1.302103',
14702             'Test::More' => '1.302103',
14703             'Test::Simple' => '1.302103',
14704             'Test::Tester' => '1.302103',
14705             'Test::Tester::Capture' => '1.302103',
14706             'Test::Tester::CaptureRunner'=> '1.302103',
14707             'Test::Tester::Delegate'=> '1.302103',
14708             'Test::use::ok' => '1.302103',
14709             'Time::HiRes' => '1.9746',
14710             'Time::Piece' => '1.3202',
14711             'Time::Seconds' => '1.3202',
14712             'arybase' => '0.14',
14713             'encoding' => '2.21',
14714             'ok' => '1.302103',
14715             },
14716             removed => {
14717             'Test2::Event::Info' => 1,
14718             }
14719             },
14720             5.027006 => {
14721             delta_from => 5.027005,
14722             changed => {
14723             'Attribute::Handlers' => '1.01',
14724             'B' => '1.72',
14725             'B::Concise' => '1.003',
14726             'B::Deparse' => '1.45',
14727             'B::Op_private' => '5.027006',
14728             'Carp' => '1.44',
14729             'Carp::Heavy' => '1.44',
14730             'Compress::Raw::Zlib' => '2.075',
14731             'Config' => '5.027006',
14732             'Config::Extensions' => '0.02',
14733             'Cwd' => '3.70',
14734             'DynaLoader' => '1.44',
14735             'ExtUtils::CBuilder' => '0.280229',
14736             'ExtUtils::CBuilder::Platform::Unix'=> '0.280229',
14737             'ExtUtils::CBuilder::Platform::VMS'=> '0.280229',
14738             'ExtUtils::CBuilder::Platform::Windows'=> '0.280229',
14739             'ExtUtils::CBuilder::Platform::aix'=> '0.280229',
14740             'ExtUtils::CBuilder::Platform::android'=> '0.280229',
14741             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229',
14742             'ExtUtils::CBuilder::Platform::darwin'=> '0.280229',
14743             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229',
14744             'ExtUtils::CBuilder::Platform::os2'=> '0.280229',
14745             'ExtUtils::Embed' => '1.35',
14746             'ExtUtils::Miniperl' => '1.07',
14747             'ExtUtils::ParseXS' => '3.36',
14748             'ExtUtils::ParseXS::Constants'=> '3.36',
14749             'ExtUtils::ParseXS::CountLines'=> '3.36',
14750             'ExtUtils::ParseXS::Eval'=> '3.36',
14751             'ExtUtils::ParseXS::Utilities'=> '3.36',
14752             'ExtUtils::Typemaps' => '3.36',
14753             'ExtUtils::Typemaps::Cmd'=> '3.36',
14754             'ExtUtils::Typemaps::InputMap'=> '3.36',
14755             'ExtUtils::Typemaps::OutputMap'=> '3.36',
14756             'ExtUtils::Typemaps::Type'=> '3.36',
14757             'ExtUtils::XSSymSet' => '1.4',
14758             'File::Copy' => '2.33',
14759             'File::Spec' => '3.69',
14760             'File::Spec::AmigaOS' => '3.69',
14761             'File::Spec::Cygwin' => '3.69',
14762             'File::Spec::Epoc' => '3.69',
14763             'File::Spec::Functions' => '3.69',
14764             'File::Spec::Mac' => '3.69',
14765             'File::Spec::OS2' => '3.69',
14766             'File::Spec::Unix' => '3.69',
14767             'File::Spec::VMS' => '3.69',
14768             'File::Spec::Win32' => '3.69',
14769             'File::stat' => '1.08',
14770             'FileCache' => '1.10',
14771             'Filter::Simple' => '0.95',
14772             'Hash::Util::FieldHash' => '1.20',
14773             'I18N::LangTags' => '0.43',
14774             'I18N::LangTags::Detect'=> '1.07',
14775             'I18N::LangTags::List' => '0.40',
14776             'I18N::Langinfo' => '0.15',
14777             'IO::Handle' => '1.37',
14778             'IO::Select' => '1.23',
14779             'Locale::Maketext' => '1.29',
14780             'Module::CoreList' => '5.20171120',
14781             'Module::CoreList::TieHashDelta'=> '5.20171120',
14782             'Module::CoreList::Utils'=> '5.20171120',
14783             'Net::Cmd' => '3.11',
14784             'Net::Config' => '3.11',
14785             'Net::Domain' => '3.11',
14786             'Net::FTP' => '3.11',
14787             'Net::FTP::A' => '3.11',
14788             'Net::FTP::E' => '3.11',
14789             'Net::FTP::I' => '3.11',
14790             'Net::FTP::L' => '3.11',
14791             'Net::FTP::dataconn' => '3.11',
14792             'Net::NNTP' => '3.11',
14793             'Net::Netrc' => '3.11',
14794             'Net::POP3' => '3.11',
14795             'Net::Ping' => '2.62',
14796             'Net::SMTP' => '3.11',
14797             'Net::Time' => '3.11',
14798             'Net::hostent' => '1.02',
14799             'Net::netent' => '1.01',
14800             'Net::protoent' => '1.01',
14801             'Net::servent' => '1.02',
14802             'O' => '1.03',
14803             'ODBM_File' => '1.15',
14804             'Opcode' => '1.41',
14805             'POSIX' => '1.80',
14806             'Pod::Html' => '1.2203',
14807             'SelfLoader' => '1.25',
14808             'Socket' => '2.020_04',
14809             'Storable' => '2.65',
14810             'Test' => '1.31',
14811             'Test2' => '1.302111',
14812             'Test2::API' => '1.302111',
14813             'Test2::API::Breakage' => '1.302111',
14814             'Test2::API::Context' => '1.302111',
14815             'Test2::API::Instance' => '1.302111',
14816             'Test2::API::Stack' => '1.302111',
14817             'Test2::Event' => '1.302111',
14818             'Test2::Event::Bail' => '1.302111',
14819             'Test2::Event::Diag' => '1.302111',
14820             'Test2::Event::Encoding'=> '1.302111',
14821             'Test2::Event::Exception'=> '1.302111',
14822             'Test2::Event::Fail' => '1.302111',
14823             'Test2::Event::Generic' => '1.302111',
14824             'Test2::Event::Note' => '1.302111',
14825             'Test2::Event::Ok' => '1.302111',
14826             'Test2::Event::Pass' => '1.302111',
14827             'Test2::Event::Plan' => '1.302111',
14828             'Test2::Event::Skip' => '1.302111',
14829             'Test2::Event::Subtest' => '1.302111',
14830             'Test2::Event::TAP::Version'=> '1.302111',
14831             'Test2::Event::Waiting' => '1.302111',
14832             'Test2::EventFacet' => '1.302111',
14833             'Test2::EventFacet::About'=> '1.302111',
14834             'Test2::EventFacet::Amnesty'=> '1.302111',
14835             'Test2::EventFacet::Assert'=> '1.302111',
14836             'Test2::EventFacet::Control'=> '1.302111',
14837             'Test2::EventFacet::Error'=> '1.302111',
14838             'Test2::EventFacet::Info'=> '1.302111',
14839             'Test2::EventFacet::Meta'=> '1.302111',
14840             'Test2::EventFacet::Parent'=> '1.302111',
14841             'Test2::EventFacet::Plan'=> '1.302111',
14842             'Test2::EventFacet::Trace'=> '1.302111',
14843             'Test2::Formatter' => '1.302111',
14844             'Test2::Formatter::TAP' => '1.302111',
14845             'Test2::Hub' => '1.302111',
14846             'Test2::Hub::Interceptor'=> '1.302111',
14847             'Test2::Hub::Interceptor::Terminator'=> '1.302111',
14848             'Test2::Hub::Subtest' => '1.302111',
14849             'Test2::IPC' => '1.302111',
14850             'Test2::IPC::Driver' => '1.302111',
14851             'Test2::IPC::Driver::Files'=> '1.302111',
14852             'Test2::Tools::Tiny' => '1.302111',
14853             'Test2::Util' => '1.302111',
14854             'Test2::Util::ExternalMeta'=> '1.302111',
14855             'Test2::Util::Facets2Legacy'=> '1.302111',
14856             'Test2::Util::HashBase' => '1.302111',
14857             'Test2::Util::Trace' => '1.302111',
14858             'Test::Builder' => '1.302111',
14859             'Test::Builder::Formatter'=> '1.302111',
14860             'Test::Builder::Module' => '1.302111',
14861             'Test::Builder::Tester' => '1.302111',
14862             'Test::Builder::Tester::Color'=> '1.302111',
14863             'Test::Builder::TodoDiag'=> '1.302111',
14864             'Test::More' => '1.302111',
14865             'Test::Simple' => '1.302111',
14866             'Test::Tester' => '1.302111',
14867             'Test::Tester::Capture' => '1.302111',
14868             'Test::Tester::CaptureRunner'=> '1.302111',
14869             'Test::Tester::Delegate'=> '1.302111',
14870             'Test::use::ok' => '1.302111',
14871             'Tie::Array' => '1.07',
14872             'Tie::StdHandle' => '4.5',
14873             'Time::HiRes' => '1.9747',
14874             'Time::gmtime' => '1.04',
14875             'Time::localtime' => '1.03',
14876             'Unicode::Collate' => '1.23',
14877             'Unicode::Collate::CJK::Big5'=> '1.23',
14878             'Unicode::Collate::CJK::GB2312'=> '1.23',
14879             'Unicode::Collate::CJK::JISX0208'=> '1.23',
14880             'Unicode::Collate::CJK::Korean'=> '1.23',
14881             'Unicode::Collate::CJK::Pinyin'=> '1.23',
14882             'Unicode::Collate::CJK::Stroke'=> '1.23',
14883             'Unicode::Collate::CJK::Zhuyin'=> '1.23',
14884             'Unicode::Collate::Locale'=> '1.23',
14885             'Unicode::Normalize' => '1.26',
14886             'User::grent' => '1.02',
14887             'User::pwent' => '1.01',
14888             'VMS::DCLsym' => '1.09',
14889             'VMS::Stdio' => '2.44',
14890             'XS::APItest' => '0.93',
14891             'XS::Typemap' => '0.16',
14892             'XSLoader' => '0.28',
14893             'attributes' => '0.32',
14894             'base' => '2.27',
14895             'blib' => '1.07',
14896             'experimental' => '0.017',
14897             'fields' => '2.24',
14898             'ok' => '1.302111',
14899             're' => '0.36',
14900             'sort' => '2.04',
14901             'threads' => '2.19',
14902             'warnings' => '1.38',
14903             },
14904             removed => {
14905             }
14906             },
14907             5.027007 => {
14908             delta_from => 5.027006,
14909             changed => {
14910             'App::Cpan' => '1.67',
14911             'B' => '1.73',
14912             'B::Debug' => '1.26',
14913             'B::Deparse' => '1.46',
14914             'B::Op_private' => '5.027007',
14915             'CPAN' => '2.20',
14916             'CPAN::Distribution' => '2.19',
14917             'CPAN::FTP' => '5.5011',
14918             'CPAN::FirstTime' => '5.5311',
14919             'CPAN::Shell' => '5.5007',
14920             'Carp' => '1.45',
14921             'Carp::Heavy' => '1.45',
14922             'Compress::Raw::Zlib' => '2.076',
14923             'Config' => '5.027007',
14924             'Cwd' => '3.71',
14925             'Data::Dumper' => '2.169',
14926             'Devel::PPPort' => '3.37',
14927             'Digest::SHA' => '6.00',
14928             'DynaLoader' => '1.45',
14929             'ExtUtils::CBuilder' => '0.280230',
14930             'ExtUtils::CBuilder::Base'=> '0.280230',
14931             'ExtUtils::CBuilder::Platform::Unix'=> '0.280230',
14932             'ExtUtils::CBuilder::Platform::VMS'=> '0.280230',
14933             'ExtUtils::CBuilder::Platform::Windows'=> '0.280230',
14934             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230',
14935             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230',
14936             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230',
14937             'ExtUtils::CBuilder::Platform::aix'=> '0.280230',
14938             'ExtUtils::CBuilder::Platform::android'=> '0.280230',
14939             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230',
14940             'ExtUtils::CBuilder::Platform::darwin'=> '0.280230',
14941             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230',
14942             'ExtUtils::CBuilder::Platform::os2'=> '0.280230',
14943             'ExtUtils::Typemaps' => '3.37',
14944             'File::Fetch' => '0.56',
14945             'File::Spec' => '3.71',
14946             'File::Spec::AmigaOS' => '3.71',
14947             'File::Spec::Cygwin' => '3.71',
14948             'File::Spec::Epoc' => '3.71',
14949             'File::Spec::Functions' => '3.71',
14950             'File::Spec::Mac' => '3.71',
14951             'File::Spec::OS2' => '3.71',
14952             'File::Spec::Unix' => '3.71',
14953             'File::Spec::VMS' => '3.71',
14954             'File::Spec::Win32' => '3.71',
14955             'Filter::Util::Call' => '1.58',
14956             'GDBM_File' => '1.17',
14957             'JSON::PP' => '2.97000',
14958             'JSON::PP::Boolean' => '2.97000',
14959             'Locale::Codes' => '3.55',
14960             'Locale::Codes::Constants'=> '3.55',
14961             'Locale::Codes::Country'=> '3.55',
14962             'Locale::Codes::Country_Codes'=> '3.55',
14963             'Locale::Codes::Country_Retired'=> '3.55',
14964             'Locale::Codes::Currency'=> '3.55',
14965             'Locale::Codes::Currency_Codes'=> '3.55',
14966             'Locale::Codes::Currency_Retired'=> '3.55',
14967             'Locale::Codes::LangExt'=> '3.55',
14968             'Locale::Codes::LangExt_Codes'=> '3.55',
14969             'Locale::Codes::LangExt_Retired'=> '3.55',
14970             'Locale::Codes::LangFam'=> '3.55',
14971             'Locale::Codes::LangFam_Codes'=> '3.55',
14972             'Locale::Codes::LangFam_Retired'=> '3.55',
14973             'Locale::Codes::LangVar'=> '3.55',
14974             'Locale::Codes::LangVar_Codes'=> '3.55',
14975             'Locale::Codes::LangVar_Retired'=> '3.55',
14976             'Locale::Codes::Language'=> '3.55',
14977             'Locale::Codes::Language_Codes'=> '3.55',
14978             'Locale::Codes::Language_Retired'=> '3.55',
14979             'Locale::Codes::Script' => '3.55',
14980             'Locale::Codes::Script_Codes'=> '3.55',
14981             'Locale::Codes::Script_Retired'=> '3.55',
14982             'Locale::Country' => '3.55',
14983             'Locale::Currency' => '3.55',
14984             'Locale::Language' => '3.55',
14985             'Locale::Script' => '3.55',
14986             'Module::CoreList' => '5.20171220',
14987             'Module::CoreList::TieHashDelta'=> '5.20171220',
14988             'Module::CoreList::Utils'=> '5.20171220',
14989             'Opcode' => '1.42',
14990             'POSIX' => '1.81',
14991             'Pod::Functions' => '1.12',
14992             'Pod::Html' => '1.23',
14993             'Sys::Hostname' => '1.22',
14994             'Test2' => '1.302120',
14995             'Test2::API' => '1.302120',
14996             'Test2::API::Breakage' => '1.302120',
14997             'Test2::API::Context' => '1.302120',
14998             'Test2::API::Instance' => '1.302120',
14999             'Test2::API::Stack' => '1.302120',
15000             'Test2::Event' => '1.302120',
15001             'Test2::Event::Bail' => '1.302120',
15002             'Test2::Event::Diag' => '1.302120',
15003             'Test2::Event::Encoding'=> '1.302120',
15004             'Test2::Event::Exception'=> '1.302120',
15005             'Test2::Event::Fail' => '1.302120',
15006             'Test2::Event::Generic' => '1.302120',
15007             'Test2::Event::Note' => '1.302120',
15008             'Test2::Event::Ok' => '1.302120',
15009             'Test2::Event::Pass' => '1.302120',
15010             'Test2::Event::Plan' => '1.302120',
15011             'Test2::Event::Skip' => '1.302120',
15012             'Test2::Event::Subtest' => '1.302120',
15013             'Test2::Event::TAP::Version'=> '1.302120',
15014             'Test2::Event::Waiting' => '1.302120',
15015             'Test2::EventFacet' => '1.302120',
15016             'Test2::EventFacet::About'=> '1.302120',
15017             'Test2::EventFacet::Amnesty'=> '1.302120',
15018             'Test2::EventFacet::Assert'=> '1.302120',
15019             'Test2::EventFacet::Control'=> '1.302120',
15020             'Test2::EventFacet::Error'=> '1.302120',
15021             'Test2::EventFacet::Info'=> '1.302120',
15022             'Test2::EventFacet::Meta'=> '1.302120',
15023             'Test2::EventFacet::Parent'=> '1.302120',
15024             'Test2::EventFacet::Plan'=> '1.302120',
15025             'Test2::EventFacet::Trace'=> '1.302120',
15026             'Test2::Formatter' => '1.302120',
15027             'Test2::Formatter::TAP' => '1.302120',
15028             'Test2::Hub' => '1.302120',
15029             'Test2::Hub::Interceptor'=> '1.302120',
15030             'Test2::Hub::Interceptor::Terminator'=> '1.302120',
15031             'Test2::Hub::Subtest' => '1.302120',
15032             'Test2::IPC' => '1.302120',
15033             'Test2::IPC::Driver' => '1.302120',
15034             'Test2::IPC::Driver::Files'=> '1.302120',
15035             'Test2::Tools::Tiny' => '1.302120',
15036             'Test2::Util' => '1.302120',
15037             'Test2::Util::ExternalMeta'=> '1.302120',
15038             'Test2::Util::Facets2Legacy'=> '1.302120',
15039             'Test2::Util::HashBase' => '1.302120',
15040             'Test2::Util::Trace' => '1.302120',
15041             'Test::Builder' => '1.302120',
15042             'Test::Builder::Formatter'=> '1.302120',
15043             'Test::Builder::Module' => '1.302120',
15044             'Test::Builder::Tester' => '1.302120',
15045             'Test::Builder::Tester::Color'=> '1.302120',
15046             'Test::Builder::TodoDiag'=> '1.302120',
15047             'Test::More' => '1.302120',
15048             'Test::Simple' => '1.302120',
15049             'Test::Tester' => '1.302120',
15050             'Test::Tester::Capture' => '1.302120',
15051             'Test::Tester::CaptureRunner'=> '1.302120',
15052             'Test::Tester::Delegate'=> '1.302120',
15053             'Test::use::ok' => '1.302120',
15054             'Time::HiRes' => '1.9748',
15055             'Time::Piece' => '1.3203',
15056             'Time::Seconds' => '1.3203',
15057             'Unicode::Collate' => '1.25',
15058             'Unicode::Collate::CJK::Big5'=> '1.25',
15059             'Unicode::Collate::CJK::GB2312'=> '1.25',
15060             'Unicode::Collate::CJK::JISX0208'=> '1.25',
15061             'Unicode::Collate::CJK::Korean'=> '1.25',
15062             'Unicode::Collate::CJK::Pinyin'=> '1.25',
15063             'Unicode::Collate::CJK::Stroke'=> '1.25',
15064             'Unicode::Collate::CJK::Zhuyin'=> '1.25',
15065             'Unicode::Collate::Locale'=> '1.25',
15066             'Unicode::UCD' => '0.69',
15067             'XS::APItest' => '0.94',
15068             'XSLoader' => '0.29',
15069             'arybase' => '0.15',
15070             'autodie::exception' => '2.29001',
15071             'autodie::hints' => '2.29001',
15072             'experimental' => '0.019',
15073             'feature' => '1.50',
15074             'ok' => '1.302120',
15075             'overload' => '1.29',
15076             'threads' => '2.21',
15077             'threads::shared' => '1.58',
15078             'warnings' => '1.39',
15079             },
15080             removed => {
15081             }
15082             },
15083             5.027008 => {
15084             delta_from => 5.027007,
15085             changed => {
15086             'B' => '1.74',
15087             'B::Deparse' => '1.47',
15088             'B::Op_private' => '5.027008',
15089             'Config' => '5.027008',
15090             'Cwd' => '3.72',
15091             'Data::Dumper' => '2.170',
15092             'Devel::PPPort' => '3.38',
15093             'Digest::SHA' => '6.01',
15094             'Encode' => '2.94',
15095             'Encode::Alias' => '2.24',
15096             'ExtUtils::Miniperl' => '1.08',
15097             'File::Spec' => '3.72',
15098             'File::Spec::AmigaOS' => '3.72',
15099             'File::Spec::Cygwin' => '3.72',
15100             'File::Spec::Epoc' => '3.72',
15101             'File::Spec::Functions' => '3.72',
15102             'File::Spec::Mac' => '3.72',
15103             'File::Spec::OS2' => '3.72',
15104             'File::Spec::Unix' => '3.72',
15105             'File::Spec::VMS' => '3.72',
15106             'File::Spec::Win32' => '3.72',
15107             'JSON::PP' => '2.97001',
15108             'JSON::PP::Boolean' => '2.97001',
15109             'Module::CoreList' => '5.20180120',
15110             'Module::CoreList::TieHashDelta'=> '5.20180120',
15111             'Module::CoreList::Utils'=> '5.20180120',
15112             'Opcode' => '1.43',
15113             'Pod::Functions' => '1.13',
15114             'Pod::Html' => '1.24',
15115             'Pod::Man' => '4.10',
15116             'Pod::ParseLink' => '4.10',
15117             'Pod::Text' => '4.10',
15118             'Pod::Text::Color' => '4.10',
15119             'Pod::Text::Overstrike' => '4.10',
15120             'Pod::Text::Termcap' => '4.10',
15121             'Socket' => '2.027',
15122             'Time::HiRes' => '1.9752',
15123             'Unicode::UCD' => '0.70',
15124             'XS::APItest' => '0.95',
15125             'XSLoader' => '0.30',
15126             'autodie::exception' => '2.29002',
15127             'feature' => '1.51',
15128             'overload' => '1.30',
15129             'utf8' => '1.21',
15130             'warnings' => '1.40',
15131             },
15132             removed => {
15133             }
15134             },
15135             5.027009 => {
15136             delta_from => 5.027008,
15137             changed => {
15138             'B::Op_private' => '5.027009',
15139             'Carp' => '1.46',
15140             'Carp::Heavy' => '1.46',
15141             'Config' => '5.027009',
15142             'Cwd' => '3.74',
15143             'Devel::PPPort' => '3.39',
15144             'Encode' => '2.96',
15145             'Encode::Unicode' => '2.17',
15146             'Errno' => '1.29',
15147             'ExtUtils::Command' => '7.32',
15148             'ExtUtils::Command::MM' => '7.32',
15149             'ExtUtils::Liblist' => '7.32',
15150             'ExtUtils::Liblist::Kid'=> '7.32',
15151             'ExtUtils::MM' => '7.32',
15152             'ExtUtils::MM_AIX' => '7.32',
15153             'ExtUtils::MM_Any' => '7.32',
15154             'ExtUtils::MM_BeOS' => '7.32',
15155             'ExtUtils::MM_Cygwin' => '7.32',
15156             'ExtUtils::MM_DOS' => '7.32',
15157             'ExtUtils::MM_Darwin' => '7.32',
15158             'ExtUtils::MM_MacOS' => '7.32',
15159             'ExtUtils::MM_NW5' => '7.32',
15160             'ExtUtils::MM_OS2' => '7.32',
15161             'ExtUtils::MM_QNX' => '7.32',
15162             'ExtUtils::MM_UWIN' => '7.32',
15163             'ExtUtils::MM_Unix' => '7.32',
15164             'ExtUtils::MM_VMS' => '7.32',
15165             'ExtUtils::MM_VOS' => '7.32',
15166             'ExtUtils::MM_Win32' => '7.32',
15167             'ExtUtils::MM_Win95' => '7.32',
15168             'ExtUtils::MY' => '7.32',
15169             'ExtUtils::MakeMaker' => '7.32',
15170             'ExtUtils::MakeMaker::Config'=> '7.32',
15171             'ExtUtils::MakeMaker::Locale'=> '7.32',
15172             'ExtUtils::MakeMaker::version'=> '7.32',
15173             'ExtUtils::MakeMaker::version::regex'=> '7.32',
15174             'ExtUtils::Mkbootstrap' => '7.32',
15175             'ExtUtils::Mksymlists' => '7.32',
15176             'ExtUtils::ParseXS' => '3.38',
15177             'ExtUtils::ParseXS::Constants'=> '3.38',
15178             'ExtUtils::ParseXS::CountLines'=> '3.38',
15179             'ExtUtils::ParseXS::Eval'=> '3.38',
15180             'ExtUtils::ParseXS::Utilities'=> '3.38',
15181             'ExtUtils::Typemaps' => '3.38',
15182             'ExtUtils::Typemaps::Cmd'=> '3.38',
15183             'ExtUtils::Typemaps::InputMap'=> '3.38',
15184             'ExtUtils::Typemaps::OutputMap'=> '3.38',
15185             'ExtUtils::Typemaps::Type'=> '3.38',
15186             'ExtUtils::testlib' => '7.32',
15187             'File::Spec' => '3.74',
15188             'File::Spec::AmigaOS' => '3.74',
15189             'File::Spec::Cygwin' => '3.74',
15190             'File::Spec::Epoc' => '3.74',
15191             'File::Spec::Functions' => '3.74',
15192             'File::Spec::Mac' => '3.74',
15193             'File::Spec::OS2' => '3.74',
15194             'File::Spec::Unix' => '3.74',
15195             'File::Spec::VMS' => '3.74',
15196             'File::Spec::Win32' => '3.74',
15197             'IPC::Cmd' => '1.00',
15198             'Math::BigFloat::Trace' => '0.49',
15199             'Math::BigInt::Trace' => '0.49',
15200             'Module::CoreList' => '5.20180220',
15201             'Module::CoreList::Utils'=> '5.20180220',
15202             'POSIX' => '1.82',
15203             'PerlIO::encoding' => '0.26',
15204             'Storable' => '3.06',
15205             'Storable::Limit' => undef,
15206             'Test2' => '1.302122',
15207             'Test2::API' => '1.302122',
15208             'Test2::API::Breakage' => '1.302122',
15209             'Test2::API::Context' => '1.302122',
15210             'Test2::API::Instance' => '1.302122',
15211             'Test2::API::Stack' => '1.302122',
15212             'Test2::Event' => '1.302122',
15213             'Test2::Event::Bail' => '1.302122',
15214             'Test2::Event::Diag' => '1.302122',
15215             'Test2::Event::Encoding'=> '1.302122',
15216             'Test2::Event::Exception'=> '1.302122',
15217             'Test2::Event::Fail' => '1.302122',
15218             'Test2::Event::Generic' => '1.302122',
15219             'Test2::Event::Note' => '1.302122',
15220             'Test2::Event::Ok' => '1.302122',
15221             'Test2::Event::Pass' => '1.302122',
15222             'Test2::Event::Plan' => '1.302122',
15223             'Test2::Event::Skip' => '1.302122',
15224             'Test2::Event::Subtest' => '1.302122',
15225             'Test2::Event::TAP::Version'=> '1.302122',
15226             'Test2::Event::Waiting' => '1.302122',
15227             'Test2::EventFacet' => '1.302122',
15228             'Test2::EventFacet::About'=> '1.302122',
15229             'Test2::EventFacet::Amnesty'=> '1.302122',
15230             'Test2::EventFacet::Assert'=> '1.302122',
15231             'Test2::EventFacet::Control'=> '1.302122',
15232             'Test2::EventFacet::Error'=> '1.302122',
15233             'Test2::EventFacet::Info'=> '1.302122',
15234             'Test2::EventFacet::Meta'=> '1.302122',
15235             'Test2::EventFacet::Parent'=> '1.302122',
15236             'Test2::EventFacet::Plan'=> '1.302122',
15237             'Test2::EventFacet::Render'=> '1.302122',
15238             'Test2::EventFacet::Trace'=> '1.302122',
15239             'Test2::Formatter' => '1.302122',
15240             'Test2::Formatter::TAP' => '1.302122',
15241             'Test2::Hub' => '1.302122',
15242             'Test2::Hub::Interceptor'=> '1.302122',
15243             'Test2::Hub::Interceptor::Terminator'=> '1.302122',
15244             'Test2::Hub::Subtest' => '1.302122',
15245             'Test2::IPC' => '1.302122',
15246             'Test2::IPC::Driver' => '1.302122',
15247             'Test2::IPC::Driver::Files'=> '1.302122',
15248             'Test2::Tools::Tiny' => '1.302122',
15249             'Test2::Util' => '1.302122',
15250             'Test2::Util::ExternalMeta'=> '1.302122',
15251             'Test2::Util::Facets2Legacy'=> '1.302122',
15252             'Test2::Util::HashBase' => '1.302122',
15253             'Test2::Util::Trace' => '1.302122',
15254             'Test::Builder' => '1.302122',
15255             'Test::Builder::Formatter'=> '1.302122',
15256             'Test::Builder::Module' => '1.302122',
15257             'Test::Builder::Tester' => '1.302122',
15258             'Test::Builder::Tester::Color'=> '1.302122',
15259             'Test::Builder::TodoDiag'=> '1.302122',
15260             'Test::More' => '1.302122',
15261             'Test::Simple' => '1.302122',
15262             'Test::Tester' => '1.302122',
15263             'Test::Tester::Capture' => '1.302122',
15264             'Test::Tester::CaptureRunner'=> '1.302122',
15265             'Test::Tester::Delegate'=> '1.302122',
15266             'Test::use::ok' => '1.302122',
15267             'Time::HiRes' => '1.9753',
15268             'XS::APItest' => '0.96',
15269             'bigint' => '0.49',
15270             'bignum' => '0.49',
15271             'bigrat' => '0.49',
15272             'encoding' => '2.22',
15273             'if' => '0.0608',
15274             'mro' => '1.22',
15275             'ok' => '1.302122',
15276             'threads' => '2.22',
15277             'warnings' => '1.41',
15278             },
15279             removed => {
15280             'Module::CoreList::TieHashDelta'=> 1,
15281             }
15282             },
15283             5.027010 => {
15284             delta_from => 5.027009,
15285             changed => {
15286             'App::Prove' => '3.42',
15287             'App::Prove::State' => '3.42',
15288             'App::Prove::State::Result'=> '3.42',
15289             'App::Prove::State::Result::Test'=> '3.42',
15290             'B::Deparse' => '1.48',
15291             'B::Op_private' => '5.027010',
15292             'Carp' => '1.49',
15293             'Carp::Heavy' => '1.49',
15294             'Config' => '5.02701',
15295             'Encode' => '2.97',
15296             'ExtUtils::Command' => '7.34',
15297             'ExtUtils::Command::MM' => '7.34',
15298             'ExtUtils::Liblist' => '7.34',
15299             'ExtUtils::Liblist::Kid'=> '7.34',
15300             'ExtUtils::MM' => '7.34',
15301             'ExtUtils::MM_AIX' => '7.34',
15302             'ExtUtils::MM_Any' => '7.34',
15303             'ExtUtils::MM_BeOS' => '7.34',
15304             'ExtUtils::MM_Cygwin' => '7.34',
15305             'ExtUtils::MM_DOS' => '7.34',
15306             'ExtUtils::MM_Darwin' => '7.34',
15307             'ExtUtils::MM_MacOS' => '7.34',
15308             'ExtUtils::MM_NW5' => '7.34',
15309             'ExtUtils::MM_OS2' => '7.34',
15310             'ExtUtils::MM_QNX' => '7.34',
15311             'ExtUtils::MM_UWIN' => '7.34',
15312             'ExtUtils::MM_Unix' => '7.34',
15313             'ExtUtils::MM_VMS' => '7.34',
15314             'ExtUtils::MM_VOS' => '7.34',
15315             'ExtUtils::MM_Win32' => '7.34',
15316             'ExtUtils::MM_Win95' => '7.34',
15317             'ExtUtils::MY' => '7.34',
15318             'ExtUtils::MakeMaker' => '7.34',
15319             'ExtUtils::MakeMaker::Config'=> '7.34',
15320             'ExtUtils::MakeMaker::Locale'=> '7.34',
15321             'ExtUtils::MakeMaker::version'=> '7.34',
15322             'ExtUtils::MakeMaker::version::regex'=> '7.34',
15323             'ExtUtils::Mkbootstrap' => '7.34',
15324             'ExtUtils::Mksymlists' => '7.34',
15325             'ExtUtils::ParseXS' => '3.39',
15326             'ExtUtils::ParseXS::Constants'=> '3.39',
15327             'ExtUtils::ParseXS::CountLines'=> '3.39',
15328             'ExtUtils::ParseXS::Eval'=> '3.39',
15329             'ExtUtils::ParseXS::Utilities'=> '3.39',
15330             'ExtUtils::testlib' => '7.34',
15331             'File::Glob' => '1.31',
15332             'I18N::Langinfo' => '0.16',
15333             'List::Util' => '1.50',
15334             'List::Util::XS' => '1.50',
15335             'Locale::Codes' => '3.56',
15336             'Locale::Codes::Constants'=> '3.56',
15337             'Locale::Codes::Country'=> '3.56',
15338             'Locale::Codes::Country_Codes'=> '3.56',
15339             'Locale::Codes::Country_Retired'=> '3.56',
15340             'Locale::Codes::Currency'=> '3.56',
15341             'Locale::Codes::Currency_Codes'=> '3.56',
15342             'Locale::Codes::Currency_Retired'=> '3.56',
15343             'Locale::Codes::LangExt'=> '3.56',
15344             'Locale::Codes::LangExt_Codes'=> '3.56',
15345             'Locale::Codes::LangExt_Retired'=> '3.56',
15346             'Locale::Codes::LangFam'=> '3.56',
15347             'Locale::Codes::LangFam_Codes'=> '3.56',
15348             'Locale::Codes::LangFam_Retired'=> '3.56',
15349             'Locale::Codes::LangVar'=> '3.56',
15350             'Locale::Codes::LangVar_Codes'=> '3.56',
15351             'Locale::Codes::LangVar_Retired'=> '3.56',
15352             'Locale::Codes::Language'=> '3.56',
15353             'Locale::Codes::Language_Codes'=> '3.56',
15354             'Locale::Codes::Language_Retired'=> '3.56',
15355             'Locale::Codes::Script' => '3.56',
15356             'Locale::Codes::Script_Codes'=> '3.56',
15357             'Locale::Codes::Script_Retired'=> '3.56',
15358             'Locale::Country' => '3.56',
15359             'Locale::Currency' => '3.56',
15360             'Locale::Language' => '3.56',
15361             'Locale::Script' => '3.56',
15362             'Module::CoreList' => '5.20180221',
15363             'Module::CoreList::Utils'=> '5.20180221',
15364             'POSIX' => '1.83',
15365             'Scalar::Util' => '1.50',
15366             'Sub::Util' => '1.50',
15367             'TAP::Base' => '3.42',
15368             'TAP::Formatter::Base' => '3.42',
15369             'TAP::Formatter::Color' => '3.42',
15370             'TAP::Formatter::Console'=> '3.42',
15371             'TAP::Formatter::Console::ParallelSession'=> '3.42',
15372             'TAP::Formatter::Console::Session'=> '3.42',
15373             'TAP::Formatter::File' => '3.42',
15374             'TAP::Formatter::File::Session'=> '3.42',
15375             'TAP::Formatter::Session'=> '3.42',
15376             'TAP::Harness' => '3.42',
15377             'TAP::Harness::Env' => '3.42',
15378             'TAP::Object' => '3.42',
15379             'TAP::Parser' => '3.42',
15380             'TAP::Parser::Aggregator'=> '3.42',
15381             'TAP::Parser::Grammar' => '3.42',
15382             'TAP::Parser::Iterator' => '3.42',
15383             'TAP::Parser::Iterator::Array'=> '3.42',
15384             'TAP::Parser::Iterator::Process'=> '3.42',
15385             'TAP::Parser::Iterator::Stream'=> '3.42',
15386             'TAP::Parser::IteratorFactory'=> '3.42',
15387             'TAP::Parser::Multiplexer'=> '3.42',
15388             'TAP::Parser::Result' => '3.42',
15389             'TAP::Parser::Result::Bailout'=> '3.42',
15390             'TAP::Parser::Result::Comment'=> '3.42',
15391             'TAP::Parser::Result::Plan'=> '3.42',
15392             'TAP::Parser::Result::Pragma'=> '3.42',
15393             'TAP::Parser::Result::Test'=> '3.42',
15394             'TAP::Parser::Result::Unknown'=> '3.42',
15395             'TAP::Parser::Result::Version'=> '3.42',
15396             'TAP::Parser::Result::YAML'=> '3.42',
15397             'TAP::Parser::ResultFactory'=> '3.42',
15398             'TAP::Parser::Scheduler'=> '3.42',
15399             'TAP::Parser::Scheduler::Job'=> '3.42',
15400             'TAP::Parser::Scheduler::Spinner'=> '3.42',
15401             'TAP::Parser::Source' => '3.42',
15402             'TAP::Parser::SourceHandler'=> '3.42',
15403             'TAP::Parser::SourceHandler::Executable'=> '3.42',
15404             'TAP::Parser::SourceHandler::File'=> '3.42',
15405             'TAP::Parser::SourceHandler::Handle'=> '3.42',
15406             'TAP::Parser::SourceHandler::Perl'=> '3.42',
15407             'TAP::Parser::SourceHandler::RawTAP'=> '3.42',
15408             'TAP::Parser::YAMLish::Reader'=> '3.42',
15409             'TAP::Parser::YAMLish::Writer'=> '3.42',
15410             'Test2' => '1.302133',
15411             'Test2::API' => '1.302133',
15412             'Test2::API::Breakage' => '1.302133',
15413             'Test2::API::Context' => '1.302133',
15414             'Test2::API::Instance' => '1.302133',
15415             'Test2::API::Stack' => '1.302133',
15416             'Test2::Event' => '1.302133',
15417             'Test2::Event::Bail' => '1.302133',
15418             'Test2::Event::Diag' => '1.302133',
15419             'Test2::Event::Encoding'=> '1.302133',
15420             'Test2::Event::Exception'=> '1.302133',
15421             'Test2::Event::Fail' => '1.302133',
15422             'Test2::Event::Generic' => '1.302133',
15423             'Test2::Event::Note' => '1.302133',
15424             'Test2::Event::Ok' => '1.302133',
15425             'Test2::Event::Pass' => '1.302133',
15426             'Test2::Event::Plan' => '1.302133',
15427             'Test2::Event::Skip' => '1.302133',
15428             'Test2::Event::Subtest' => '1.302133',
15429             'Test2::Event::TAP::Version'=> '1.302133',
15430             'Test2::Event::V2' => '1.302133',
15431             'Test2::Event::Waiting' => '1.302133',
15432             'Test2::EventFacet' => '1.302133',
15433             'Test2::EventFacet::About'=> '1.302133',
15434             'Test2::EventFacet::Amnesty'=> '1.302133',
15435             'Test2::EventFacet::Assert'=> '1.302133',
15436             'Test2::EventFacet::Control'=> '1.302133',
15437             'Test2::EventFacet::Error'=> '1.302133',
15438             'Test2::EventFacet::Hub'=> '1.302133',
15439             'Test2::EventFacet::Info'=> '1.302133',
15440             'Test2::EventFacet::Meta'=> '1.302133',
15441             'Test2::EventFacet::Parent'=> '1.302133',
15442             'Test2::EventFacet::Plan'=> '1.302133',
15443             'Test2::EventFacet::Render'=> '1.302133',
15444             'Test2::EventFacet::Trace'=> '1.302133',
15445             'Test2::Formatter' => '1.302133',
15446             'Test2::Formatter::TAP' => '1.302133',
15447             'Test2::Hub' => '1.302133',
15448             'Test2::Hub::Interceptor'=> '1.302133',
15449             'Test2::Hub::Interceptor::Terminator'=> '1.302133',
15450             'Test2::Hub::Subtest' => '1.302133',
15451             'Test2::IPC' => '1.302133',
15452             'Test2::IPC::Driver' => '1.302133',
15453             'Test2::IPC::Driver::Files'=> '1.302133',
15454             'Test2::Tools::Tiny' => '1.302133',
15455             'Test2::Util' => '1.302133',
15456             'Test2::Util::ExternalMeta'=> '1.302133',
15457             'Test2::Util::Facets2Legacy'=> '1.302133',
15458             'Test2::Util::HashBase' => '1.302133',
15459             'Test2::Util::Trace' => '1.302133',
15460             'Test::Builder' => '1.302133',
15461             'Test::Builder::Formatter'=> '1.302133',
15462             'Test::Builder::Module' => '1.302133',
15463             'Test::Builder::Tester' => '1.302133',
15464             'Test::Builder::Tester::Color'=> '1.302133',
15465             'Test::Builder::TodoDiag'=> '1.302133',
15466             'Test::Harness' => '3.42',
15467             'Test::More' => '1.302133',
15468             'Test::Simple' => '1.302133',
15469             'Test::Tester' => '1.302133',
15470             'Test::Tester::Capture' => '1.302133',
15471             'Test::Tester::CaptureRunner'=> '1.302133',
15472             'Test::Tester::Delegate'=> '1.302133',
15473             'Test::use::ok' => '1.302133',
15474             'Time::HiRes' => '1.9757',
15475             'Time::Piece' => '1.3204',
15476             'Time::Seconds' => '1.3204',
15477             'attributes' => '0.33',
15478             'ok' => '1.302133',
15479             'warnings' => '1.42',
15480             },
15481             removed => {
15482             }
15483             },
15484             5.024004 => {
15485             delta_from => 5.024003,
15486             changed => {
15487             'B::Op_private' => '5.024004',
15488             'Config' => '5.024004',
15489             'Module::CoreList' => '5.20180414_24',
15490             'Module::CoreList::TieHashDelta'=> '5.20180414_24',
15491             'Module::CoreList::Utils'=> '5.20180414_24',
15492             },
15493             removed => {
15494             }
15495             },
15496             5.026002 => {
15497             delta_from => 5.026001,
15498             changed => {
15499             'B::Op_private' => '5.026002',
15500             'Config' => '5.026002',
15501             'Module::CoreList' => '5.20180414_26',
15502             'Module::CoreList::TieHashDelta'=> '5.20180414_26',
15503             'Module::CoreList::Utils'=> '5.20180414_26',
15504             'PerlIO::via' => '0.17',
15505             'Term::ReadLine' => '1.17',
15506             'Unicode::UCD' => '0.69',
15507             },
15508             removed => {
15509             }
15510             },
15511             5.027011 => {
15512             delta_from => 5.027010,
15513             changed => {
15514             'B::Op_private' => '5.027011',
15515             'Carp' => '1.50',
15516             'Carp::Heavy' => '1.50',
15517             'Config' => '5.027011',
15518             'Devel::PPPort' => '3.40',
15519             'Exporter' => '5.73',
15520             'Exporter::Heavy' => '5.73',
15521             'ExtUtils::Constant' => '0.25',
15522             'I18N::Langinfo' => '0.17',
15523             'IO' => '1.39',
15524             'IO::Dir' => '1.39',
15525             'IO::File' => '1.39',
15526             'IO::Handle' => '1.39',
15527             'IO::Pipe' => '1.39',
15528             'IO::Poll' => '1.39',
15529             'IO::Seekable' => '1.39',
15530             'IO::Select' => '1.39',
15531             'IO::Socket' => '1.39',
15532             'IO::Socket::INET' => '1.39',
15533             'IO::Socket::UNIX' => '1.39',
15534             'Module::CoreList' => '5.20180420',
15535             'Module::CoreList::Utils'=> '5.20180420',
15536             'POSIX' => '1.84',
15537             'Time::HiRes' => '1.9759',
15538             'XS::APItest' => '0.97',
15539             'bytes' => '1.06',
15540             'subs' => '1.03',
15541             'vars' => '1.04',
15542             'version' => '0.9923',
15543             'version::regex' => '0.9923',
15544             },
15545             removed => {
15546             }
15547             },
15548             5.028000 => {
15549             delta_from => 5.027011,
15550             changed => {
15551             'Archive::Tar' => '2.30',
15552             'Archive::Tar::Constant'=> '2.30',
15553             'Archive::Tar::File' => '2.30',
15554             'B::Op_private' => '5.028000',
15555             'Config' => '5.028',
15556             'Module::CoreList' => '5.20180622',
15557             'Module::CoreList::Utils'=> '5.20180622',
15558             'Storable' => '3.08',
15559             'XS::APItest' => '0.98',
15560             'feature' => '1.52',
15561             },
15562             removed => {
15563             }
15564             },
15565             5.029000 => {
15566             delta_from => 5.028,
15567             changed => {
15568             'B::Op_private' => '5.029000',
15569             'Config' => '5.029',
15570             'Module::CoreList' => '5.20180626',
15571             'Module::CoreList::Utils'=> '5.20180626',
15572             'Unicode::UCD' => '0.71',
15573             'XS::APItest' => '0.99',
15574             'feature' => '1.53',
15575             },
15576             removed => {
15577             }
15578             },
15579             5.029001 => {
15580             delta_from => 5.029000,
15581             changed => {
15582             'B::Op_private' => '5.029001',
15583             'Compress::Raw::Bzip2' => '2.081',
15584             'Compress::Raw::Zlib' => '2.081',
15585             'Compress::Zlib' => '2.081',
15586             'Config' => '5.029001',
15587             'Config::Perl::V' => '0.30',
15588             'DB_File' => '1.842',
15589             'Devel::PPPort' => '3.42',
15590             'Digest::SHA' => '6.02',
15591             'ExtUtils::Manifest' => '1.71',
15592             'File::GlobMapper' => '1.001',
15593             'File::Temp' => '0.2308',
15594             'IO::Compress::Adapter::Bzip2'=> '2.081',
15595             'IO::Compress::Adapter::Deflate'=> '2.081',
15596             'IO::Compress::Adapter::Identity'=> '2.081',
15597             'IO::Compress::Base' => '2.081',
15598             'IO::Compress::Base::Common'=> '2.081',
15599             'IO::Compress::Bzip2' => '2.081',
15600             'IO::Compress::Deflate' => '2.081',
15601             'IO::Compress::Gzip' => '2.081',
15602             'IO::Compress::Gzip::Constants'=> '2.081',
15603             'IO::Compress::RawDeflate'=> '2.081',
15604             'IO::Compress::Zip' => '2.081',
15605             'IO::Compress::Zip::Constants'=> '2.081',
15606             'IO::Compress::Zlib::Constants'=> '2.081',
15607             'IO::Compress::Zlib::Extra'=> '2.081',
15608             'IO::Uncompress::Adapter::Bunzip2'=> '2.081',
15609             'IO::Uncompress::Adapter::Identity'=> '2.081',
15610             'IO::Uncompress::Adapter::Inflate'=> '2.081',
15611             'IO::Uncompress::AnyInflate'=> '2.081',
15612             'IO::Uncompress::AnyUncompress'=> '2.081',
15613             'IO::Uncompress::Base' => '2.081',
15614             'IO::Uncompress::Bunzip2'=> '2.081',
15615             'IO::Uncompress::Gunzip'=> '2.081',
15616             'IO::Uncompress::Inflate'=> '2.081',
15617             'IO::Uncompress::RawInflate'=> '2.081',
15618             'IO::Uncompress::Unzip' => '2.081',
15619             'IPC::Cmd' => '1.02',
15620             'Locale::Codes' => '3.57',
15621             'Locale::Codes::Constants'=> '3.57',
15622             'Locale::Codes::Country'=> '3.57',
15623             'Locale::Codes::Country_Codes'=> '3.57',
15624             'Locale::Codes::Country_Retired'=> '3.57',
15625             'Locale::Codes::Currency'=> '3.57',
15626             'Locale::Codes::Currency_Codes'=> '3.57',
15627             'Locale::Codes::Currency_Retired'=> '3.57',
15628             'Locale::Codes::LangExt'=> '3.57',
15629             'Locale::Codes::LangExt_Codes'=> '3.57',
15630             'Locale::Codes::LangExt_Retired'=> '3.57',
15631             'Locale::Codes::LangFam'=> '3.57',
15632             'Locale::Codes::LangFam_Codes'=> '3.57',
15633             'Locale::Codes::LangFam_Retired'=> '3.57',
15634             'Locale::Codes::LangVar'=> '3.57',
15635             'Locale::Codes::LangVar_Codes'=> '3.57',
15636             'Locale::Codes::LangVar_Retired'=> '3.57',
15637             'Locale::Codes::Language'=> '3.57',
15638             'Locale::Codes::Language_Codes'=> '3.57',
15639             'Locale::Codes::Language_Retired'=> '3.57',
15640             'Locale::Codes::Script' => '3.57',
15641             'Locale::Codes::Script_Codes'=> '3.57',
15642             'Locale::Codes::Script_Retired'=> '3.57',
15643             'Locale::Country' => '3.57',
15644             'Locale::Currency' => '3.57',
15645             'Locale::Language' => '3.57',
15646             'Locale::Script' => '3.57',
15647             'Math::BigFloat' => '1.999813',
15648             'Math::BigFloat::Trace' => '0.50',
15649             'Math::BigInt' => '1.999813',
15650             'Math::BigInt::Calc' => '1.999813',
15651             'Math::BigInt::CalcEmu' => '1.999813',
15652             'Math::BigInt::FastCalc'=> '0.5007',
15653             'Math::BigInt::Lib' => '1.999813',
15654             'Math::BigInt::Trace' => '0.50',
15655             'Math::BigRat' => '0.2614',
15656             'Module::CoreList' => '5.20180720',
15657             'Module::CoreList::Utils'=> '5.20180720',
15658             'Pod::Man' => '4.11',
15659             'Pod::ParseLink' => '4.11',
15660             'Pod::Text' => '4.11',
15661             'Pod::Text::Color' => '4.11',
15662             'Pod::Text::Overstrike' => '4.11',
15663             'Pod::Text::Termcap' => '4.11',
15664             'Storable' => '3.11',
15665             'Test2' => '1.302138',
15666             'Test2::API' => '1.302138',
15667             'Test2::API::Breakage' => '1.302138',
15668             'Test2::API::Context' => '1.302138',
15669             'Test2::API::Instance' => '1.302138',
15670             'Test2::API::Stack' => '1.302138',
15671             'Test2::Event' => '1.302138',
15672             'Test2::Event::Bail' => '1.302138',
15673             'Test2::Event::Diag' => '1.302138',
15674             'Test2::Event::Encoding'=> '1.302138',
15675             'Test2::Event::Exception'=> '1.302138',
15676             'Test2::Event::Fail' => '1.302138',
15677             'Test2::Event::Generic' => '1.302138',
15678             'Test2::Event::Note' => '1.302138',
15679             'Test2::Event::Ok' => '1.302138',
15680             'Test2::Event::Pass' => '1.302138',
15681             'Test2::Event::Plan' => '1.302138',
15682             'Test2::Event::Skip' => '1.302138',
15683             'Test2::Event::Subtest' => '1.302138',
15684             'Test2::Event::TAP::Version'=> '1.302138',
15685             'Test2::Event::V2' => '1.302138',
15686             'Test2::Event::Waiting' => '1.302138',
15687             'Test2::EventFacet' => '1.302138',
15688             'Test2::EventFacet::About'=> '1.302138',
15689             'Test2::EventFacet::Amnesty'=> '1.302138',
15690             'Test2::EventFacet::Assert'=> '1.302138',
15691             'Test2::EventFacet::Control'=> '1.302138',
15692             'Test2::EventFacet::Error'=> '1.302138',
15693             'Test2::EventFacet::Hub'=> '1.302138',
15694             'Test2::EventFacet::Info'=> '1.302138',
15695             'Test2::EventFacet::Meta'=> '1.302138',
15696             'Test2::EventFacet::Parent'=> '1.302138',
15697             'Test2::EventFacet::Plan'=> '1.302138',
15698             'Test2::EventFacet::Render'=> '1.302138',
15699             'Test2::EventFacet::Trace'=> '1.302138',
15700             'Test2::Formatter' => '1.302138',
15701             'Test2::Formatter::TAP' => '1.302138',
15702             'Test2::Hub' => '1.302138',
15703             'Test2::Hub::Interceptor'=> '1.302138',
15704             'Test2::Hub::Interceptor::Terminator'=> '1.302138',
15705             'Test2::Hub::Subtest' => '1.302138',
15706             'Test2::IPC' => '1.302138',
15707             'Test2::IPC::Driver' => '1.302138',
15708             'Test2::IPC::Driver::Files'=> '1.302138',
15709             'Test2::Tools::Tiny' => '1.302138',
15710             'Test2::Util' => '1.302138',
15711             'Test2::Util::ExternalMeta'=> '1.302138',
15712             'Test2::Util::Facets2Legacy'=> '1.302138',
15713             'Test2::Util::HashBase' => '1.302138',
15714             'Test2::Util::Trace' => '1.302138',
15715             'Test::Builder' => '1.302138',
15716             'Test::Builder::Formatter'=> '1.302138',
15717             'Test::Builder::Module' => '1.302138',
15718             'Test::Builder::Tester' => '1.302138',
15719             'Test::Builder::Tester::Color'=> '1.302138',
15720             'Test::Builder::TodoDiag'=> '1.302138',
15721             'Test::More' => '1.302138',
15722             'Test::Simple' => '1.302138',
15723             'Test::Tester' => '1.302138',
15724             'Test::Tester::Capture' => '1.302138',
15725             'Test::Tester::CaptureRunner'=> '1.302138',
15726             'Test::Tester::Delegate'=> '1.302138',
15727             'Test::use::ok' => '1.302138',
15728             'Thread::Queue' => '3.13',
15729             'Time::Local' => '1.28',
15730             'bigint' => '0.50',
15731             'bignum' => '0.50',
15732             'bigrat' => '0.50',
15733             'experimental' => '0.020',
15734             'ok' => '1.302138',
15735             'parent' => '0.237',
15736             'perlfaq' => '5.20180605',
15737             'version' => '0.9924',
15738             'version::regex' => '0.9924',
15739             },
15740             removed => {
15741             }
15742             },
15743             5.029002 => {
15744             delta_from => 5.029001,
15745             changed => {
15746             'B::Op_private' => '5.029002',
15747             'Config' => '5.029002',
15748             'Config::Extensions' => '0.03',
15749             'Cwd' => '3.75',
15750             'Data::Dumper' => '2.171',
15751             'Filter::Util::Call' => '1.59',
15752             'HTTP::Tiny' => '0.076',
15753             'Module::CoreList' => '5.20180820',
15754             'Module::CoreList::Utils'=> '5.20180820',
15755             'PerlIO::scalar' => '0.30',
15756             'Storable' => '3.12',
15757             'Test2' => '1.302140',
15758             'Test2::API' => '1.302140',
15759             'Test2::API::Breakage' => '1.302140',
15760             'Test2::API::Context' => '1.302140',
15761             'Test2::API::Instance' => '1.302140',
15762             'Test2::API::Stack' => '1.302140',
15763             'Test2::Event' => '1.302140',
15764             'Test2::Event::Bail' => '1.302140',
15765             'Test2::Event::Diag' => '1.302140',
15766             'Test2::Event::Encoding'=> '1.302140',
15767             'Test2::Event::Exception'=> '1.302140',
15768             'Test2::Event::Fail' => '1.302140',
15769             'Test2::Event::Generic' => '1.302140',
15770             'Test2::Event::Note' => '1.302140',
15771             'Test2::Event::Ok' => '1.302140',
15772             'Test2::Event::Pass' => '1.302140',
15773             'Test2::Event::Plan' => '1.302140',
15774             'Test2::Event::Skip' => '1.302140',
15775             'Test2::Event::Subtest' => '1.302140',
15776             'Test2::Event::TAP::Version'=> '1.302140',
15777             'Test2::Event::V2' => '1.302140',
15778             'Test2::Event::Waiting' => '1.302140',
15779             'Test2::EventFacet' => '1.302140',
15780             'Test2::EventFacet::About'=> '1.302140',
15781             'Test2::EventFacet::Amnesty'=> '1.302140',
15782             'Test2::EventFacet::Assert'=> '1.302140',
15783             'Test2::EventFacet::Control'=> '1.302140',
15784             'Test2::EventFacet::Error'=> '1.302140',
15785             'Test2::EventFacet::Hub'=> '1.302140',
15786             'Test2::EventFacet::Info'=> '1.302140',
15787             'Test2::EventFacet::Meta'=> '1.302140',
15788             'Test2::EventFacet::Parent'=> '1.302140',
15789             'Test2::EventFacet::Plan'=> '1.302140',
15790             'Test2::EventFacet::Render'=> '1.302140',
15791             'Test2::EventFacet::Trace'=> '1.302140',
15792             'Test2::Formatter' => '1.302140',
15793             'Test2::Formatter::TAP' => '1.302140',
15794             'Test2::Hub' => '1.302140',
15795             'Test2::Hub::Interceptor'=> '1.302140',
15796             'Test2::Hub::Interceptor::Terminator'=> '1.302140',
15797             'Test2::Hub::Subtest' => '1.302140',
15798             'Test2::IPC' => '1.302140',
15799             'Test2::IPC::Driver' => '1.302140',
15800             'Test2::IPC::Driver::Files'=> '1.302140',
15801             'Test2::Tools::Tiny' => '1.302140',
15802             'Test2::Util' => '1.302140',
15803             'Test2::Util::ExternalMeta'=> '1.302140',
15804             'Test2::Util::Facets2Legacy'=> '1.302140',
15805             'Test2::Util::HashBase' => '1.302140',
15806             'Test2::Util::Trace' => '1.302140',
15807             'Test::Builder' => '1.302140',
15808             'Test::Builder::Formatter'=> '1.302140',
15809             'Test::Builder::Module' => '1.302140',
15810             'Test::Builder::Tester' => '1.302140',
15811             'Test::Builder::Tester::Color'=> '1.302140',
15812             'Test::Builder::TodoDiag'=> '1.302140',
15813             'Test::More' => '1.302140',
15814             'Test::Simple' => '1.302140',
15815             'Test::Tester' => '1.302140',
15816             'Test::Tester::Capture' => '1.302140',
15817             'Test::Tester::CaptureRunner'=> '1.302140',
15818             'Test::Tester::Delegate'=> '1.302140',
15819             'Test::use::ok' => '1.302140',
15820             'Time::HiRes' => '1.9760',
15821             'Time::Piece' => '1.33',
15822             'Time::Seconds' => '1.33',
15823             'Unicode' => '11.0.0',
15824             'ok' => '1.302140',
15825             'warnings' => '1.43',
15826             },
15827             removed => {
15828             }
15829             },
15830             5.029003 => {
15831             delta_from => 5.029002,
15832             changed => {
15833             'Archive::Tar' => '2.32',
15834             'Archive::Tar::Constant'=> '2.32',
15835             'Archive::Tar::File' => '2.32',
15836             'B::Op_private' => '5.029003',
15837             'Config' => '5.029003',
15838             'Data::Dumper' => '2.172',
15839             'Devel::PPPort' => '3.43',
15840             'File::Path' => '2.16',
15841             'File::Spec' => '3.75',
15842             'File::Spec::AmigaOS' => '3.75',
15843             'File::Spec::Cygwin' => '3.75',
15844             'File::Spec::Epoc' => '3.75',
15845             'File::Spec::Functions' => '3.75',
15846             'File::Spec::Mac' => '3.75',
15847             'File::Spec::OS2' => '3.75',
15848             'File::Spec::Unix' => '3.75',
15849             'File::Spec::VMS' => '3.75',
15850             'File::Spec::Win32' => '3.75',
15851             'Module::CoreList' => '5.20180920',
15852             'Module::CoreList::Utils'=> '5.20180920',
15853             'POSIX' => '1.85',
15854             'Storable' => '3.13',
15855             'User::grent' => '1.03',
15856             'perlfaq' => '5.20180915',
15857             },
15858             removed => {
15859             'Locale::Codes' => 1,
15860             'Locale::Codes::Constants'=> 1,
15861             'Locale::Codes::Country'=> 1,
15862             'Locale::Codes::Country_Codes'=> 1,
15863             'Locale::Codes::Country_Retired'=> 1,
15864             'Locale::Codes::Currency'=> 1,
15865             'Locale::Codes::Currency_Codes'=> 1,
15866             'Locale::Codes::Currency_Retired'=> 1,
15867             'Locale::Codes::LangExt'=> 1,
15868             'Locale::Codes::LangExt_Codes'=> 1,
15869             'Locale::Codes::LangExt_Retired'=> 1,
15870             'Locale::Codes::LangFam'=> 1,
15871             'Locale::Codes::LangFam_Codes'=> 1,
15872             'Locale::Codes::LangFam_Retired'=> 1,
15873             'Locale::Codes::LangVar'=> 1,
15874             'Locale::Codes::LangVar_Codes'=> 1,
15875             'Locale::Codes::LangVar_Retired'=> 1,
15876             'Locale::Codes::Language'=> 1,
15877             'Locale::Codes::Language_Codes'=> 1,
15878             'Locale::Codes::Language_Retired'=> 1,
15879             'Locale::Codes::Script' => 1,
15880             'Locale::Codes::Script_Codes'=> 1,
15881             'Locale::Codes::Script_Retired'=> 1,
15882             'Locale::Country' => 1,
15883             'Locale::Currency' => 1,
15884             'Locale::Language' => 1,
15885             'Locale::Script' => 1,
15886             }
15887             },
15888             5.029004 => {
15889             delta_from => 5.029003,
15890             changed => {
15891             'App::Cpan' => '1.671',
15892             'B' => '1.75',
15893             'B::Concise' => '1.004',
15894             'B::Deparse' => '1.49',
15895             'B::Op_private' => '5.029004',
15896             'B::Terse' => '1.09',
15897             'CPAN' => '2.21',
15898             'CPAN::Distribution' => '2.21',
15899             'CPAN::Mirrors' => '2.21',
15900             'CPAN::Plugin' => '0.97',
15901             'CPAN::Shell' => '5.5008',
15902             'Config' => '5.029004',
15903             'Devel::Peek' => '1.28',
15904             'File::Copy' => '2.34',
15905             'File::Glob' => '1.32',
15906             'Math::BigFloat::Trace' => '0.51',
15907             'Math::BigInt::Trace' => '0.51',
15908             'Module::CoreList' => '5.20181020',
15909             'Module::CoreList::Utils'=> '5.20181020',
15910             'Unicode::UCD' => '0.72',
15911             'bigint' => '0.51',
15912             'bignum' => '0.51',
15913             'bigrat' => '0.51',
15914             'bytes' => '1.07',
15915             'feature' => '1.54',
15916             'sigtrap' => '1.09',
15917             'vars' => '1.05',
15918             },
15919             removed => {
15920             'B::Debug' => 1,
15921             'arybase' => 1,
15922             }
15923             },
15924             5.029005 => {
15925             delta_from => 5.029004,
15926             changed => {
15927             'B::Op_private' => '5.029005',
15928             'Config' => '5.029005',
15929             'Cwd' => '3.76',
15930             'Data::Dumper' => '2.173',
15931             'Errno' => '1.30',
15932             'File::Spec' => '3.76',
15933             'File::Spec::AmigaOS' => '3.76',
15934             'File::Spec::Cygwin' => '3.76',
15935             'File::Spec::Epoc' => '3.76',
15936             'File::Spec::Functions' => '3.76',
15937             'File::Spec::Mac' => '3.76',
15938             'File::Spec::OS2' => '3.76',
15939             'File::Spec::Unix' => '3.76',
15940             'File::Spec::VMS' => '3.76',
15941             'File::Spec::Win32' => '3.76',
15942             'GDBM_File' => '1.18',
15943             'Module::CoreList' => '5.20181120',
15944             'Module::CoreList::Utils'=> '5.20181120',
15945             'NDBM_File' => '1.15',
15946             'ODBM_File' => '1.16',
15947             'SDBM_File' => '1.15',
15948             're' => '0.37',
15949             },
15950             removed => {
15951             }
15952             },
15953             5.026003 => {
15954             delta_from => 5.026002,
15955             changed => {
15956             'Archive::Tar' => '2.24_01',
15957             'B::Op_private' => '5.026003',
15958             'Config' => '5.026003',
15959             'Module::CoreList' => '5.20181129_26',
15960             'Module::CoreList::TieHashDelta'=> '5.20181129_26',
15961             'Module::CoreList::Utils'=> '5.20181129_26',
15962             },
15963             removed => {
15964             }
15965             },
15966             5.028001 => {
15967             delta_from => 5.028,
15968             changed => {
15969             'B::Op_private' => '5.028001',
15970             'Config' => '5.028001',
15971             'Module::CoreList' => '5.20181129_28',
15972             'Module::CoreList::Utils'=> '5.20181129_28',
15973             },
15974             removed => {
15975             }
15976             },
15977             5.029006 => {
15978             delta_from => 5.029005,
15979             changed => {
15980             'B::Op_private' => '5.029006',
15981             'Config' => '5.029006',
15982             'Config::Perl::V' => '0.32',
15983             'ExtUtils::ParseXS' => '3.40',
15984             'ExtUtils::ParseXS::Constants'=> '3.40',
15985             'ExtUtils::ParseXS::CountLines'=> '3.40',
15986             'ExtUtils::ParseXS::Eval'=> '3.40',
15987             'ExtUtils::ParseXS::Utilities'=> '3.40',
15988             'File::Find' => '1.35',
15989             'Module::CoreList' => '5.20181218',
15990             'Module::CoreList::Utils'=> '5.20181218',
15991             'POSIX' => '1.86',
15992             'Storable' => '3.14',
15993             'Test2' => '1.302141',
15994             'Test2::API' => '1.302141',
15995             'Test2::API::Breakage' => '1.302141',
15996             'Test2::API::Context' => '1.302141',
15997             'Test2::API::Instance' => '1.302141',
15998             'Test2::API::Stack' => '1.302141',
15999             'Test2::Event' => '1.302141',
16000             'Test2::Event::Bail' => '1.302141',
16001             'Test2::Event::Diag' => '1.302141',
16002             'Test2::Event::Encoding'=> '1.302141',
16003             'Test2::Event::Exception'=> '1.302141',
16004             'Test2::Event::Fail' => '1.302141',
16005             'Test2::Event::Generic' => '1.302141',
16006             'Test2::Event::Note' => '1.302141',
16007             'Test2::Event::Ok' => '1.302141',
16008             'Test2::Event::Pass' => '1.302141',
16009             'Test2::Event::Plan' => '1.302141',
16010             'Test2::Event::Skip' => '1.302141',
16011             'Test2::Event::Subtest' => '1.302141',
16012             'Test2::Event::TAP::Version'=> '1.302141',
16013             'Test2::Event::V2' => '1.302141',
16014             'Test2::Event::Waiting' => '1.302141',
16015             'Test2::EventFacet' => '1.302141',
16016             'Test2::EventFacet::About'=> '1.302141',
16017             'Test2::EventFacet::Amnesty'=> '1.302141',
16018             'Test2::EventFacet::Assert'=> '1.302141',
16019             'Test2::EventFacet::Control'=> '1.302141',
16020             'Test2::EventFacet::Error'=> '1.302141',
16021             'Test2::EventFacet::Hub'=> '1.302141',
16022             'Test2::EventFacet::Info'=> '1.302141',
16023             'Test2::EventFacet::Meta'=> '1.302141',
16024             'Test2::EventFacet::Parent'=> '1.302141',
16025             'Test2::EventFacet::Plan'=> '1.302141',
16026             'Test2::EventFacet::Render'=> '1.302141',
16027             'Test2::EventFacet::Trace'=> '1.302141',
16028             'Test2::Formatter' => '1.302141',
16029             'Test2::Formatter::TAP' => '1.302141',
16030             'Test2::Hub' => '1.302141',
16031             'Test2::Hub::Interceptor'=> '1.302141',
16032             'Test2::Hub::Interceptor::Terminator'=> '1.302141',
16033             'Test2::Hub::Subtest' => '1.302141',
16034             'Test2::IPC' => '1.302141',
16035             'Test2::IPC::Driver' => '1.302141',
16036             'Test2::IPC::Driver::Files'=> '1.302141',
16037             'Test2::Tools::Tiny' => '1.302141',
16038             'Test2::Util' => '1.302141',
16039             'Test2::Util::ExternalMeta'=> '1.302141',
16040             'Test2::Util::Facets2Legacy'=> '1.302141',
16041             'Test2::Util::HashBase' => '1.302141',
16042             'Test2::Util::Trace' => '1.302141',
16043             'Test::Builder' => '1.302141',
16044             'Test::Builder::Formatter'=> '1.302141',
16045             'Test::Builder::Module' => '1.302141',
16046             'Test::Builder::Tester' => '1.302141',
16047             'Test::Builder::Tester::Color'=> '1.302141',
16048             'Test::Builder::TodoDiag'=> '1.302141',
16049             'Test::More' => '1.302141',
16050             'Test::Simple' => '1.302141',
16051             'Test::Tester' => '1.302141',
16052             'Test::Tester::Capture' => '1.302141',
16053             'Test::Tester::CaptureRunner'=> '1.302141',
16054             'Test::Tester::Delegate'=> '1.302141',
16055             'Test::use::ok' => '1.302141',
16056             'ok' => '1.302141',
16057             'threads::shared' => '1.59',
16058             },
16059             removed => {
16060             'Storable::Limit' => 1,
16061             }
16062             },
16063             5.029007 => {
16064             delta_from => 5.029006,
16065             changed => {
16066             'App::Cpan' => '1.672',
16067             'B::Op_private' => '5.029007',
16068             'CPAN' => '2.22',
16069             'CPAN::Distribution' => '2.22',
16070             'CPAN::Plugin::Specfile'=> '0.02',
16071             'Compress::Raw::Bzip2' => '2.084',
16072             'Compress::Raw::Zlib' => '2.084',
16073             'Compress::Zlib' => '2.084',
16074             'Config' => '5.029007',
16075             'Cwd' => '3.77',
16076             'DB_File' => '1.843',
16077             'File::Find' => '1.36',
16078             'File::Spec' => '3.77',
16079             'File::Spec::AmigaOS' => '3.77',
16080             'File::Spec::Cygwin' => '3.77',
16081             'File::Spec::Epoc' => '3.77',
16082             'File::Spec::Functions' => '3.77',
16083             'File::Spec::Mac' => '3.77',
16084             'File::Spec::OS2' => '3.77',
16085             'File::Spec::Unix' => '3.77',
16086             'File::Spec::VMS' => '3.77',
16087             'File::Spec::Win32' => '3.77',
16088             'File::Temp' => '0.2309',
16089             'IO::Compress::Adapter::Bzip2'=> '2.084',
16090             'IO::Compress::Adapter::Deflate'=> '2.084',
16091             'IO::Compress::Adapter::Identity'=> '2.084',
16092             'IO::Compress::Base' => '2.084',
16093             'IO::Compress::Base::Common'=> '2.084',
16094             'IO::Compress::Bzip2' => '2.084',
16095             'IO::Compress::Deflate' => '2.084',
16096             'IO::Compress::Gzip' => '2.084',
16097             'IO::Compress::Gzip::Constants'=> '2.084',
16098             'IO::Compress::RawDeflate'=> '2.084',
16099             'IO::Compress::Zip' => '2.084',
16100             'IO::Compress::Zip::Constants'=> '2.084',
16101             'IO::Compress::Zlib::Constants'=> '2.084',
16102             'IO::Compress::Zlib::Extra'=> '2.084',
16103             'IO::Uncompress::Adapter::Bunzip2'=> '2.084',
16104             'IO::Uncompress::Adapter::Identity'=> '2.084',
16105             'IO::Uncompress::Adapter::Inflate'=> '2.084',
16106             'IO::Uncompress::AnyInflate'=> '2.084',
16107             'IO::Uncompress::AnyUncompress'=> '2.084',
16108             'IO::Uncompress::Base' => '2.084',
16109             'IO::Uncompress::Bunzip2'=> '2.084',
16110             'IO::Uncompress::Gunzip'=> '2.084',
16111             'IO::Uncompress::Inflate'=> '2.084',
16112             'IO::Uncompress::RawInflate'=> '2.084',
16113             'IO::Uncompress::Unzip' => '2.084',
16114             'Math::BigFloat' => '1.999816',
16115             'Math::BigInt' => '1.999816',
16116             'Math::BigInt::Calc' => '1.999816',
16117             'Math::BigInt::FastCalc'=> '0.5008',
16118             'Math::BigInt::Lib' => '1.999816',
16119             'Module::CoreList' => '5.20190120',
16120             'Module::CoreList::Utils'=> '5.20190120',
16121             'Test2' => '1.302160',
16122             'Test2::API' => '1.302160',
16123             'Test2::API::Breakage' => '1.302160',
16124             'Test2::API::Context' => '1.302160',
16125             'Test2::API::Instance' => '1.302160',
16126             'Test2::API::Stack' => '1.302160',
16127             'Test2::Event' => '1.302160',
16128             'Test2::Event::Bail' => '1.302160',
16129             'Test2::Event::Diag' => '1.302160',
16130             'Test2::Event::Encoding'=> '1.302160',
16131             'Test2::Event::Exception'=> '1.302160',
16132             'Test2::Event::Fail' => '1.302160',
16133             'Test2::Event::Generic' => '1.302160',
16134             'Test2::Event::Note' => '1.302160',
16135             'Test2::Event::Ok' => '1.302160',
16136             'Test2::Event::Pass' => '1.302160',
16137             'Test2::Event::Plan' => '1.302160',
16138             'Test2::Event::Skip' => '1.302160',
16139             'Test2::Event::Subtest' => '1.302160',
16140             'Test2::Event::TAP::Version'=> '1.302160',
16141             'Test2::Event::V2' => '1.302160',
16142             'Test2::Event::Waiting' => '1.302160',
16143             'Test2::EventFacet' => '1.302160',
16144             'Test2::EventFacet::About'=> '1.302160',
16145             'Test2::EventFacet::Amnesty'=> '1.302160',
16146             'Test2::EventFacet::Assert'=> '1.302160',
16147             'Test2::EventFacet::Control'=> '1.302160',
16148             'Test2::EventFacet::Error'=> '1.302160',
16149             'Test2::EventFacet::Hub'=> '1.302160',
16150             'Test2::EventFacet::Info'=> '1.302160',
16151             'Test2::EventFacet::Info::Table'=> undef,
16152             'Test2::EventFacet::Meta'=> '1.302160',
16153             'Test2::EventFacet::Parent'=> '1.302160',
16154             'Test2::EventFacet::Plan'=> '1.302160',
16155             'Test2::EventFacet::Render'=> '1.302160',
16156             'Test2::EventFacet::Trace'=> '1.302160',
16157             'Test2::Formatter' => '1.302160',
16158             'Test2::Formatter::TAP' => '1.302160',
16159             'Test2::Hub' => '1.302160',
16160             'Test2::Hub::Interceptor'=> '1.302160',
16161             'Test2::Hub::Interceptor::Terminator'=> '1.302160',
16162             'Test2::Hub::Subtest' => '1.302160',
16163             'Test2::IPC' => '1.302160',
16164             'Test2::IPC::Driver' => '1.302160',
16165             'Test2::IPC::Driver::Files'=> '1.302160',
16166             'Test2::Tools::Tiny' => '1.302160',
16167             'Test2::Util' => '1.302160',
16168             'Test2::Util::ExternalMeta'=> '1.302160',
16169             'Test2::Util::Facets2Legacy'=> '1.302160',
16170             'Test2::Util::HashBase' => '1.302160',
16171             'Test2::Util::Trace' => '1.302160',
16172             'Test::Builder' => '1.302160',
16173             'Test::Builder::Formatter'=> '1.302160',
16174             'Test::Builder::Module' => '1.302160',
16175             'Test::Builder::Tester' => '1.302160',
16176             'Test::Builder::Tester::Color'=> '1.302160',
16177             'Test::Builder::TodoDiag'=> '1.302160',
16178             'Test::More' => '1.302160',
16179             'Test::Simple' => '1.302160',
16180             'Test::Tester' => '1.302160',
16181             'Test::Tester::Capture' => '1.302160',
16182             'Test::Tester::CaptureRunner'=> '1.302160',
16183             'Test::Tester::Delegate'=> '1.302160',
16184             'Test::use::ok' => '1.302160',
16185             'Unicode::Collate' => '1.27',
16186             'Unicode::Collate::CJK::Big5'=> '1.27',
16187             'Unicode::Collate::CJK::GB2312'=> '1.27',
16188             'Unicode::Collate::CJK::JISX0208'=> '1.27',
16189             'Unicode::Collate::CJK::Korean'=> '1.27',
16190             'Unicode::Collate::CJK::Pinyin'=> '1.27',
16191             'Unicode::Collate::CJK::Stroke'=> '1.27',
16192             'Unicode::Collate::CJK::Zhuyin'=> '1.27',
16193             'Unicode::Collate::Locale'=> '1.27',
16194             'lib' => '0.65',
16195             'ok' => '1.302160',
16196             },
16197             removed => {
16198             'Math::BigInt::CalcEmu' => 1,
16199             }
16200             },
16201             5.029008 => {
16202             delta_from => 5.029007,
16203             changed => {
16204             'B' => '1.76',
16205             'B::Op_private' => '5.029008',
16206             'Config' => '5.029008',
16207             'Devel::PPPort' => '3.44',
16208             'Encode' => '3.00',
16209             'Encode::Unicode' => '2.18',
16210             'ExtUtils::Miniperl' => '1.09',
16211             'IO' => '1.40',
16212             'IO::Dir' => '1.40',
16213             'IO::File' => '1.40',
16214             'IO::Handle' => '1.40',
16215             'IO::Pipe' => '1.40',
16216             'IO::Poll' => '1.40',
16217             'IO::Seekable' => '1.40',
16218             'IO::Select' => '1.40',
16219             'IO::Socket' => '1.40',
16220             'IO::Socket::INET' => '1.40',
16221             'IO::Socket::UNIX' => '1.40',
16222             'JSON::PP' => '4.00',
16223             'JSON::PP::Boolean' => '4.00',
16224             'Module::CoreList' => '5.20190220',
16225             'Module::CoreList::Utils'=> '5.20190220',
16226             'Module::Load' => '0.34',
16227             'Net::Ping' => '2.71',
16228             'POSIX' => '1.87',
16229             'Test2' => '1.302162',
16230             'Test2::API' => '1.302162',
16231             'Test2::API::Breakage' => '1.302162',
16232             'Test2::API::Context' => '1.302162',
16233             'Test2::API::Instance' => '1.302162',
16234             'Test2::API::Stack' => '1.302162',
16235             'Test2::Event' => '1.302162',
16236             'Test2::Event::Bail' => '1.302162',
16237             'Test2::Event::Diag' => '1.302162',
16238             'Test2::Event::Encoding'=> '1.302162',
16239             'Test2::Event::Exception'=> '1.302162',
16240             'Test2::Event::Fail' => '1.302162',
16241             'Test2::Event::Generic' => '1.302162',
16242             'Test2::Event::Note' => '1.302162',
16243             'Test2::Event::Ok' => '1.302162',
16244             'Test2::Event::Pass' => '1.302162',
16245             'Test2::Event::Plan' => '1.302162',
16246             'Test2::Event::Skip' => '1.302162',
16247             'Test2::Event::Subtest' => '1.302162',
16248             'Test2::Event::TAP::Version'=> '1.302162',
16249             'Test2::Event::V2' => '1.302162',
16250             'Test2::Event::Waiting' => '1.302162',
16251             'Test2::EventFacet' => '1.302162',
16252             'Test2::EventFacet::About'=> '1.302162',
16253             'Test2::EventFacet::Amnesty'=> '1.302162',
16254             'Test2::EventFacet::Assert'=> '1.302162',
16255             'Test2::EventFacet::Control'=> '1.302162',
16256             'Test2::EventFacet::Error'=> '1.302162',
16257             'Test2::EventFacet::Hub'=> '1.302162',
16258             'Test2::EventFacet::Info'=> '1.302162',
16259             'Test2::EventFacet::Meta'=> '1.302162',
16260             'Test2::EventFacet::Parent'=> '1.302162',
16261             'Test2::EventFacet::Plan'=> '1.302162',
16262             'Test2::EventFacet::Render'=> '1.302162',
16263             'Test2::EventFacet::Trace'=> '1.302162',
16264             'Test2::Formatter' => '1.302162',
16265             'Test2::Formatter::TAP' => '1.302162',
16266             'Test2::Hub' => '1.302162',
16267             'Test2::Hub::Interceptor'=> '1.302162',
16268             'Test2::Hub::Interceptor::Terminator'=> '1.302162',
16269             'Test2::Hub::Subtest' => '1.302162',
16270             'Test2::IPC' => '1.302162',
16271             'Test2::IPC::Driver' => '1.302162',
16272             'Test2::IPC::Driver::Files'=> '1.302162',
16273             'Test2::Tools::Tiny' => '1.302162',
16274             'Test2::Util' => '1.302162',
16275             'Test2::Util::ExternalMeta'=> '1.302162',
16276             'Test2::Util::Facets2Legacy'=> '1.302162',
16277             'Test2::Util::HashBase' => '1.302162',
16278             'Test2::Util::Trace' => '1.302162',
16279             'Test::Builder' => '1.302162',
16280             'Test::Builder::Formatter'=> '1.302162',
16281             'Test::Builder::Module' => '1.302162',
16282             'Test::Builder::Tester' => '1.302162',
16283             'Test::Builder::Tester::Color'=> '1.302162',
16284             'Test::Builder::TodoDiag'=> '1.302162',
16285             'Test::More' => '1.302162',
16286             'Test::Simple' => '1.302162',
16287             'Test::Tester' => '1.302162',
16288             'Test::Tester::Capture' => '1.302162',
16289             'Test::Tester::CaptureRunner'=> '1.302162',
16290             'Test::Tester::Delegate'=> '1.302162',
16291             'Test::use::ok' => '1.302162',
16292             'XS::APItest' => '1.00',
16293             'deprecate' => '0.04',
16294             'ok' => '1.302162',
16295             'perlfaq' => '5.20190126',
16296             },
16297             removed => {
16298             }
16299             },
16300             5.029009 => {
16301             delta_from => 5.029008,
16302             changed => {
16303             'B::Op_private' => '5.029009',
16304             'Config' => '5.029009',
16305             'Devel::PPPort' => '3.45',
16306             'Encode' => '3.01',
16307             'ExtUtils::Manifest' => '1.72',
16308             'JSON::PP' => '4.02',
16309             'JSON::PP::Boolean' => '4.02',
16310             'Module::CoreList' => '5.20190320',
16311             'Module::CoreList::Utils'=> '5.20190320',
16312             'PerlIO::encoding' => '0.27',
16313             'Unicode' => '12.0.0',
16314             'threads::shared' => '1.60',
16315             'utf8' => '1.22',
16316             'warnings' => '1.44',
16317             },
16318             removed => {
16319             }
16320             },
16321             5.028002 => {
16322             delta_from => 5.028001,
16323             changed => {
16324             'B::Op_private' => '5.028002',
16325             'Config' => '5.028002',
16326             'Module::CoreList' => '5.20190419',
16327             'Module::CoreList::Utils'=> '5.20190419',
16328             'PerlIO::scalar' => '0.30',
16329             'Storable' => '3.08_01',
16330             },
16331             removed => {
16332             }
16333             },
16334             5.029010 => {
16335             delta_from => 5.029009,
16336             changed => {
16337             'B::Op_private' => '5.029010',
16338             'Config' => '5.02901',
16339             'Cwd' => '3.78',
16340             'Data::Dumper' => '2.174',
16341             'ExtUtils::CBuilder' => '0.280231',
16342             'ExtUtils::CBuilder::Base'=> '0.280231',
16343             'ExtUtils::CBuilder::Platform::Unix'=> '0.280231',
16344             'ExtUtils::CBuilder::Platform::VMS'=> '0.280231',
16345             'ExtUtils::CBuilder::Platform::Windows'=> '0.280231',
16346             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280231',
16347             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280231',
16348             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280231',
16349             'ExtUtils::CBuilder::Platform::aix'=> '0.280231',
16350             'ExtUtils::CBuilder::Platform::android'=> '0.280231',
16351             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280231',
16352             'ExtUtils::CBuilder::Platform::darwin'=> '0.280231',
16353             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280231',
16354             'ExtUtils::CBuilder::Platform::os2'=> '0.280231',
16355             'File::Spec' => '3.78',
16356             'File::Spec::AmigaOS' => '3.78',
16357             'File::Spec::Cygwin' => '3.78',
16358             'File::Spec::Epoc' => '3.78',
16359             'File::Spec::Functions' => '3.78',
16360             'File::Spec::Mac' => '3.78',
16361             'File::Spec::OS2' => '3.78',
16362             'File::Spec::Unix' => '3.78',
16363             'File::Spec::VMS' => '3.78',
16364             'File::Spec::Win32' => '3.78',
16365             'I18N::Langinfo' => '0.18',
16366             'Module::CoreList' => '5.20190420',
16367             'Module::CoreList::Utils'=> '5.20190420',
16368             'Module::Metadata' => '1.000036',
16369             'POSIX' => '1.88',
16370             'Storable' => '3.15',
16371             'Unicode' => '12.1.0',
16372             },
16373             removed => {
16374             }
16375             },
16376             5.030000 => {
16377             delta_from => 5.02901,
16378             changed => {
16379             'B::Op_private' => '5.030000',
16380             'Config' => '5.03',
16381             'Devel::PPPort' => '3.52',
16382             'Module::CoreList' => '5.20190522',
16383             'Module::CoreList::Utils'=> '5.20190522',
16384             'XS::Typemap' => '0.17',
16385             },
16386             removed => {
16387             }
16388             },
16389             5.031000 => {
16390             delta_from => 5.03,
16391             changed => {
16392             'B::Op_private' => '5.031000',
16393             'Config' => '5.031',
16394             'Module::CoreList' => '5.20190524',
16395             'Module::CoreList::Utils'=> '5.20190524',
16396             'Pod::Simple' => '3.36',
16397             'Pod::Simple::BlackBox' => '3.36',
16398             'Pod::Simple::Checker' => '3.36',
16399             'Pod::Simple::Debug' => '3.36',
16400             'Pod::Simple::DumpAsText'=> '3.36',
16401             'Pod::Simple::DumpAsXML'=> '3.36',
16402             'Pod::Simple::HTML' => '3.36',
16403             'Pod::Simple::HTMLBatch'=> '3.36',
16404             'Pod::Simple::JustPod' => undef,
16405             'Pod::Simple::LinkSection'=> '3.36',
16406             'Pod::Simple::Methody' => '3.36',
16407             'Pod::Simple::Progress' => '3.36',
16408             'Pod::Simple::PullParser'=> '3.36',
16409             'Pod::Simple::PullParserEndToken'=> '3.36',
16410             'Pod::Simple::PullParserStartToken'=> '3.36',
16411             'Pod::Simple::PullParserTextToken'=> '3.36',
16412             'Pod::Simple::PullParserToken'=> '3.36',
16413             'Pod::Simple::RTF' => '3.36',
16414             'Pod::Simple::Search' => '3.36',
16415             'Pod::Simple::SimpleTree'=> '3.36',
16416             'Pod::Simple::Text' => '3.36',
16417             'Pod::Simple::TextContent'=> '3.36',
16418             'Pod::Simple::TiedOutFH'=> '3.36',
16419             'Pod::Simple::Transcode'=> '3.36',
16420             'Pod::Simple::TranscodeDumb'=> '3.36',
16421             'Pod::Simple::TranscodeSmart'=> '3.36',
16422             'Pod::Simple::XHTML' => '3.36',
16423             'Pod::Simple::XMLOutStream'=> '3.36',
16424             'Socket' => '2.029',
16425             'feature' => '1.55',
16426             },
16427             removed => {
16428             }
16429             },
16430             5.031001 => {
16431             delta_from => 5.031000,
16432             changed => {
16433             'App::Cpan' => '1.675',
16434             'B::Op_private' => '5.031001',
16435             'CPAN' => '2.27',
16436             'CPAN::Bundle' => '5.5005',
16437             'CPAN::Distribution' => '2.27',
16438             'CPAN::FTP' => '5.5012',
16439             'CPAN::FirstTime' => '5.5314',
16440             'CPAN::HandleConfig' => '5.5011',
16441             'CPAN::Mirrors' => '2.27',
16442             'CPAN::Queue' => '5.5003',
16443             'CPAN::Shell' => '5.5009',
16444             'CPAN::Tarzip' => '5.5013',
16445             'Class::Struct' => '0.66',
16446             'Compress::Raw::Bzip2' => '2.086',
16447             'Compress::Raw::Zlib' => '2.086',
16448             'Compress::Zlib' => '2.086',
16449             'Config' => '5.031001',
16450             'DB_File' => '1.852',
16451             'Devel::PPPort' => '3.53',
16452             'ExtUtils::CBuilder' => '0.280232',
16453             'ExtUtils::Command' => '7.36',
16454             'ExtUtils::Command::MM' => '7.36',
16455             'ExtUtils::Liblist' => '7.36',
16456             'ExtUtils::Liblist::Kid'=> '7.36',
16457             'ExtUtils::MM' => '7.36',
16458             'ExtUtils::MM_AIX' => '7.36',
16459             'ExtUtils::MM_Any' => '7.36',
16460             'ExtUtils::MM_BeOS' => '7.36',
16461             'ExtUtils::MM_Cygwin' => '7.36',
16462             'ExtUtils::MM_DOS' => '7.36',
16463             'ExtUtils::MM_Darwin' => '7.36',
16464             'ExtUtils::MM_MacOS' => '7.36',
16465             'ExtUtils::MM_NW5' => '7.36',
16466             'ExtUtils::MM_OS2' => '7.36',
16467             'ExtUtils::MM_QNX' => '7.36',
16468             'ExtUtils::MM_UWIN' => '7.36',
16469             'ExtUtils::MM_Unix' => '7.36',
16470             'ExtUtils::MM_VMS' => '7.36',
16471             'ExtUtils::MM_VOS' => '7.36',
16472             'ExtUtils::MM_Win32' => '7.36',
16473             'ExtUtils::MM_Win95' => '7.36',
16474             'ExtUtils::MY' => '7.36',
16475             'ExtUtils::MakeMaker' => '7.36',
16476             'ExtUtils::MakeMaker::Config'=> '7.36',
16477             'ExtUtils::MakeMaker::Locale'=> '7.36',
16478             'ExtUtils::MakeMaker::version'=> '7.36',
16479             'ExtUtils::MakeMaker::version::regex'=> '7.36',
16480             'ExtUtils::Mkbootstrap' => '7.36',
16481             'ExtUtils::Mksymlists' => '7.36',
16482             'ExtUtils::testlib' => '7.36',
16483             'File::Spec::Win32' => '3.79',
16484             'I18N::LangTags' => '0.44',
16485             'IO' => '1.41',
16486             'IO::Compress::Adapter::Bzip2'=> '2.086',
16487             'IO::Compress::Adapter::Deflate'=> '2.086',
16488             'IO::Compress::Adapter::Identity'=> '2.086',
16489             'IO::Compress::Base' => '2.086',
16490             'IO::Compress::Base::Common'=> '2.086',
16491             'IO::Compress::Bzip2' => '2.086',
16492             'IO::Compress::Deflate' => '2.086',
16493             'IO::Compress::Gzip' => '2.086',
16494             'IO::Compress::Gzip::Constants'=> '2.086',
16495             'IO::Compress::RawDeflate'=> '2.086',
16496             'IO::Compress::Zip' => '2.086',
16497             'IO::Compress::Zip::Constants'=> '2.086',
16498             'IO::Compress::Zlib::Constants'=> '2.086',
16499             'IO::Compress::Zlib::Extra'=> '2.086',
16500             'IO::Dir' => '1.41',
16501             'IO::File' => '1.41',
16502             'IO::Handle' => '1.41',
16503             'IO::Pipe' => '1.41',
16504             'IO::Poll' => '1.41',
16505             'IO::Seekable' => '1.41',
16506             'IO::Select' => '1.41',
16507             'IO::Socket' => '1.41',
16508             'IO::Socket::INET' => '1.41',
16509             'IO::Socket::UNIX' => '1.41',
16510             'IO::Uncompress::Adapter::Bunzip2'=> '2.086',
16511             'IO::Uncompress::Adapter::Identity'=> '2.086',
16512             'IO::Uncompress::Adapter::Inflate'=> '2.086',
16513             'IO::Uncompress::AnyInflate'=> '2.086',
16514             'IO::Uncompress::AnyUncompress'=> '2.086',
16515             'IO::Uncompress::Base' => '2.086',
16516             'IO::Uncompress::Bunzip2'=> '2.086',
16517             'IO::Uncompress::Gunzip'=> '2.086',
16518             'IO::Uncompress::Inflate'=> '2.086',
16519             'IO::Uncompress::RawInflate'=> '2.086',
16520             'IO::Uncompress::Unzip' => '2.086',
16521             'Module::CoreList' => '5.20190620',
16522             'Module::CoreList::Utils'=> '5.20190620',
16523             'POSIX' => '1.89',
16524             'Pod::Man' => '4.12',
16525             'Pod::ParseLink' => '4.12',
16526             'Pod::Simple' => '3.38',
16527             'Pod::Simple::BlackBox' => '3.38',
16528             'Pod::Simple::Checker' => '3.38',
16529             'Pod::Simple::Debug' => '3.38',
16530             'Pod::Simple::DumpAsText'=> '3.38',
16531             'Pod::Simple::DumpAsXML'=> '3.38',
16532             'Pod::Simple::HTML' => '3.38',
16533             'Pod::Simple::HTMLBatch'=> '3.38',
16534             'Pod::Simple::LinkSection'=> '3.38',
16535             'Pod::Simple::Methody' => '3.38',
16536             'Pod::Simple::Progress' => '3.38',
16537             'Pod::Simple::PullParser'=> '3.38',
16538             'Pod::Simple::PullParserEndToken'=> '3.38',
16539             'Pod::Simple::PullParserStartToken'=> '3.38',
16540             'Pod::Simple::PullParserTextToken'=> '3.38',
16541             'Pod::Simple::PullParserToken'=> '3.38',
16542             'Pod::Simple::RTF' => '3.38',
16543             'Pod::Simple::Search' => '3.38',
16544             'Pod::Simple::SimpleTree'=> '3.38',
16545             'Pod::Simple::Text' => '3.38',
16546             'Pod::Simple::TextContent'=> '3.38',
16547             'Pod::Simple::TiedOutFH'=> '3.38',
16548             'Pod::Simple::Transcode'=> '3.38',
16549             'Pod::Simple::TranscodeDumb'=> '3.38',
16550             'Pod::Simple::TranscodeSmart'=> '3.38',
16551             'Pod::Simple::XHTML' => '3.38',
16552             'Pod::Simple::XMLOutStream'=> '3.38',
16553             'Pod::Text' => '4.12',
16554             'Pod::Text::Color' => '4.12',
16555             'Pod::Text::Overstrike' => '4.12',
16556             'Pod::Text::Termcap' => '4.12',
16557             'SelfLoader' => '1.26',
16558             'Storable' => '3.16',
16559             'Sys::Hostname' => '1.23',
16560             'Test2' => '1.302164',
16561             'Test2::API' => '1.302164',
16562             'Test2::API::Breakage' => '1.302164',
16563             'Test2::API::Context' => '1.302164',
16564             'Test2::API::Instance' => '1.302164',
16565             'Test2::API::Stack' => '1.302164',
16566             'Test2::Event' => '1.302164',
16567             'Test2::Event::Bail' => '1.302164',
16568             'Test2::Event::Diag' => '1.302164',
16569             'Test2::Event::Encoding'=> '1.302164',
16570             'Test2::Event::Exception'=> '1.302164',
16571             'Test2::Event::Fail' => '1.302164',
16572             'Test2::Event::Generic' => '1.302164',
16573             'Test2::Event::Note' => '1.302164',
16574             'Test2::Event::Ok' => '1.302164',
16575             'Test2::Event::Pass' => '1.302164',
16576             'Test2::Event::Plan' => '1.302164',
16577             'Test2::Event::Skip' => '1.302164',
16578             'Test2::Event::Subtest' => '1.302164',
16579             'Test2::Event::TAP::Version'=> '1.302164',
16580             'Test2::Event::V2' => '1.302164',
16581             'Test2::Event::Waiting' => '1.302164',
16582             'Test2::EventFacet' => '1.302164',
16583             'Test2::EventFacet::About'=> '1.302164',
16584             'Test2::EventFacet::Amnesty'=> '1.302164',
16585             'Test2::EventFacet::Assert'=> '1.302164',
16586             'Test2::EventFacet::Control'=> '1.302164',
16587             'Test2::EventFacet::Error'=> '1.302164',
16588             'Test2::EventFacet::Hub'=> '1.302164',
16589             'Test2::EventFacet::Info'=> '1.302164',
16590             'Test2::EventFacet::Info::Table'=> '1.302164',
16591             'Test2::EventFacet::Meta'=> '1.302164',
16592             'Test2::EventFacet::Parent'=> '1.302164',
16593             'Test2::EventFacet::Plan'=> '1.302164',
16594             'Test2::EventFacet::Render'=> '1.302164',
16595             'Test2::EventFacet::Trace'=> '1.302164',
16596             'Test2::Formatter' => '1.302164',
16597             'Test2::Formatter::TAP' => '1.302164',
16598             'Test2::Hub' => '1.302164',
16599             'Test2::Hub::Interceptor'=> '1.302164',
16600             'Test2::Hub::Interceptor::Terminator'=> '1.302164',
16601             'Test2::Hub::Subtest' => '1.302164',
16602             'Test2::IPC' => '1.302164',
16603             'Test2::IPC::Driver' => '1.302164',
16604             'Test2::IPC::Driver::Files'=> '1.302164',
16605             'Test2::Tools::Tiny' => '1.302164',
16606             'Test2::Util' => '1.302164',
16607             'Test2::Util::ExternalMeta'=> '1.302164',
16608             'Test2::Util::Facets2Legacy'=> '1.302164',
16609             'Test2::Util::HashBase' => '1.302164',
16610             'Test2::Util::Trace' => '1.302164',
16611             'Test::Builder' => '1.302164',
16612             'Test::Builder::Formatter'=> '1.302164',
16613             'Test::Builder::Module' => '1.302164',
16614             'Test::Builder::Tester' => '1.302164',
16615             'Test::Builder::Tester::Color'=> '1.302164',
16616             'Test::Builder::TodoDiag'=> '1.302164',
16617             'Test::More' => '1.302164',
16618             'Test::Simple' => '1.302164',
16619             'Test::Tester' => '1.302164',
16620             'Test::Tester::Capture' => '1.302164',
16621             'Test::Tester::CaptureRunner'=> '1.302164',
16622             'Test::Tester::Delegate'=> '1.302164',
16623             'Test::use::ok' => '1.302164',
16624             'Tie::File' => '1.03',
16625             'Tie::Hash::NamedCapture'=> '0.11',
16626             'Time::HiRes' => '1.9761',
16627             'Unicode::Normalize' => '1.27',
16628             'Unicode::UCD' => '0.73',
16629             'XS::APItest' => '1.01',
16630             'ok' => '1.302164',
16631             'overload' => '1.31',
16632             'warnings' => '1.45',
16633             },
16634             removed => {
16635             'Pod::Find' => 1,
16636             'Pod::InputObjects' => 1,
16637             'Pod::ParseUtils' => 1,
16638             'Pod::Parser' => 1,
16639             'Pod::PlainText' => 1,
16640             'Pod::Select' => 1,
16641             }
16642             },
16643             5.031002 => {
16644             delta_from => 5.031001,
16645             changed => {
16646             'B::Op_private' => '5.031002',
16647             'Config' => '5.031002',
16648             'Devel::PPPort' => '3.54',
16649             'Exporter' => '5.74',
16650             'Exporter::Heavy' => '5.74',
16651             'IPC::Cmd' => '1.04',
16652             'JSON::PP' => '4.04',
16653             'JSON::PP::Boolean' => '4.04',
16654             'Module::CoreList' => '5.20190720',
16655             'Module::CoreList::Utils'=> '5.20190720',
16656             'Opcode' => '1.44',
16657             'PerlIO::encoding' => '0.28',
16658             'Pod::Simple' => '3.39',
16659             'Pod::Simple::BlackBox' => '3.39',
16660             'Pod::Simple::Checker' => '3.39',
16661             'Pod::Simple::Debug' => '3.39',
16662             'Pod::Simple::DumpAsText'=> '3.39',
16663             'Pod::Simple::DumpAsXML'=> '3.39',
16664             'Pod::Simple::HTML' => '3.39',
16665             'Pod::Simple::HTMLBatch'=> '3.39',
16666             'Pod::Simple::LinkSection'=> '3.39',
16667             'Pod::Simple::Methody' => '3.39',
16668             'Pod::Simple::Progress' => '3.39',
16669             'Pod::Simple::PullParser'=> '3.39',
16670             'Pod::Simple::PullParserEndToken'=> '3.39',
16671             'Pod::Simple::PullParserStartToken'=> '3.39',
16672             'Pod::Simple::PullParserTextToken'=> '3.39',
16673             'Pod::Simple::PullParserToken'=> '3.39',
16674             'Pod::Simple::RTF' => '3.39',
16675             'Pod::Simple::Search' => '3.39',
16676             'Pod::Simple::SimpleTree'=> '3.39',
16677             'Pod::Simple::Text' => '3.39',
16678             'Pod::Simple::TextContent'=> '3.39',
16679             'Pod::Simple::TiedOutFH'=> '3.39',
16680             'Pod::Simple::Transcode'=> '3.39',
16681             'Pod::Simple::TranscodeDumb'=> '3.39',
16682             'Pod::Simple::TranscodeSmart'=> '3.39',
16683             'Pod::Simple::XHTML' => '3.39',
16684             'Pod::Simple::XMLOutStream'=> '3.39',
16685             'threads::shared' => '1.61',
16686             },
16687             removed => {
16688             }
16689             },
16690             5.031003 => {
16691             delta_from => 5.031002,
16692             changed => {
16693             'B::Op_private' => '5.031003',
16694             'Compress::Raw::Bzip2' => '2.087',
16695             'Compress::Raw::Zlib' => '2.087',
16696             'Compress::Zlib' => '2.087',
16697             'Config' => '5.031003',
16698             'Devel::PPPort' => '3.55',
16699             'File::Find' => '1.37',
16700             'Getopt::Long' => '2.51',
16701             'I18N::LangTags::Detect'=> '1.08',
16702             'IO::Compress::Adapter::Bzip2'=> '2.087',
16703             'IO::Compress::Adapter::Deflate'=> '2.087',
16704             'IO::Compress::Adapter::Identity'=> '2.087',
16705             'IO::Compress::Base' => '2.087',
16706             'IO::Compress::Base::Common'=> '2.087',
16707             'IO::Compress::Bzip2' => '2.087',
16708             'IO::Compress::Deflate' => '2.087',
16709             'IO::Compress::Gzip' => '2.087',
16710             'IO::Compress::Gzip::Constants'=> '2.087',
16711             'IO::Compress::RawDeflate'=> '2.087',
16712             'IO::Compress::Zip' => '2.087',
16713             'IO::Compress::Zip::Constants'=> '2.087',
16714             'IO::Compress::Zlib::Constants'=> '2.087',
16715             'IO::Compress::Zlib::Extra'=> '2.087',
16716             'IO::Uncompress::Adapter::Bunzip2'=> '2.087',
16717             'IO::Uncompress::Adapter::Identity'=> '2.087',
16718             'IO::Uncompress::Adapter::Inflate'=> '2.087',
16719             'IO::Uncompress::AnyInflate'=> '2.087',
16720             'IO::Uncompress::AnyUncompress'=> '2.087',
16721             'IO::Uncompress::Base' => '2.087',
16722             'IO::Uncompress::Bunzip2'=> '2.087',
16723             'IO::Uncompress::Gunzip'=> '2.087',
16724             'IO::Uncompress::Inflate'=> '2.087',
16725             'IO::Uncompress::RawInflate'=> '2.087',
16726             'IO::Uncompress::Unzip' => '2.087',
16727             'Module::CoreList' => '5.20190820',
16728             'Module::CoreList::Utils'=> '5.20190820',
16729             'PerlIO::via' => '0.18',
16730             'Storable' => '3.17',
16731             'Test2' => '1.302166',
16732             'Test2::API' => '1.302166',
16733             'Test2::API::Breakage' => '1.302166',
16734             'Test2::API::Context' => '1.302166',
16735             'Test2::API::Instance' => '1.302166',
16736             'Test2::API::Stack' => '1.302166',
16737             'Test2::Event' => '1.302166',
16738             'Test2::Event::Bail' => '1.302166',
16739             'Test2::Event::Diag' => '1.302166',
16740             'Test2::Event::Encoding'=> '1.302166',
16741             'Test2::Event::Exception'=> '1.302166',
16742             'Test2::Event::Fail' => '1.302166',
16743             'Test2::Event::Generic' => '1.302166',
16744             'Test2::Event::Note' => '1.302166',
16745             'Test2::Event::Ok' => '1.302166',
16746             'Test2::Event::Pass' => '1.302166',
16747             'Test2::Event::Plan' => '1.302166',
16748             'Test2::Event::Skip' => '1.302166',
16749             'Test2::Event::Subtest' => '1.302166',
16750             'Test2::Event::TAP::Version'=> '1.302166',
16751             'Test2::Event::V2' => '1.302166',
16752             'Test2::Event::Waiting' => '1.302166',
16753             'Test2::EventFacet' => '1.302166',
16754             'Test2::EventFacet::About'=> '1.302166',
16755             'Test2::EventFacet::Amnesty'=> '1.302166',
16756             'Test2::EventFacet::Assert'=> '1.302166',
16757             'Test2::EventFacet::Control'=> '1.302166',
16758             'Test2::EventFacet::Error'=> '1.302166',
16759             'Test2::EventFacet::Hub'=> '1.302166',
16760             'Test2::EventFacet::Info'=> '1.302166',
16761             'Test2::EventFacet::Info::Table'=> '1.302166',
16762             'Test2::EventFacet::Meta'=> '1.302166',
16763             'Test2::EventFacet::Parent'=> '1.302166',
16764             'Test2::EventFacet::Plan'=> '1.302166',
16765             'Test2::EventFacet::Render'=> '1.302166',
16766             'Test2::EventFacet::Trace'=> '1.302166',
16767             'Test2::Formatter' => '1.302166',
16768             'Test2::Formatter::TAP' => '1.302166',
16769             'Test2::Hub' => '1.302166',
16770             'Test2::Hub::Interceptor'=> '1.302166',
16771             'Test2::Hub::Interceptor::Terminator'=> '1.302166',
16772             'Test2::Hub::Subtest' => '1.302166',
16773             'Test2::IPC' => '1.302166',
16774             'Test2::IPC::Driver' => '1.302166',
16775             'Test2::IPC::Driver::Files'=> '1.302166',
16776             'Test2::Tools::Tiny' => '1.302166',
16777             'Test2::Util' => '1.302166',
16778             'Test2::Util::ExternalMeta'=> '1.302166',
16779             'Test2::Util::Facets2Legacy'=> '1.302166',
16780             'Test2::Util::HashBase' => '1.302166',
16781             'Test2::Util::Trace' => '1.302166',
16782             'Test::Builder' => '1.302166',
16783             'Test::Builder::Formatter'=> '1.302166',
16784             'Test::Builder::Module' => '1.302166',
16785             'Test::Builder::Tester' => '1.302166',
16786             'Test::Builder::Tester::Color'=> '1.302166',
16787             'Test::Builder::TodoDiag'=> '1.302166',
16788             'Test::More' => '1.302166',
16789             'Test::Simple' => '1.302166',
16790             'Test::Tester' => '1.302166',
16791             'Test::Tester::Capture' => '1.302166',
16792             'Test::Tester::CaptureRunner'=> '1.302166',
16793             'Test::Tester::Delegate'=> '1.302166',
16794             'Test::use::ok' => '1.302166',
16795             'Thread' => '3.05',
16796             'Time::HiRes' => '1.9762',
16797             'Win32' => '0.53',
16798             'XS::APItest' => '1.02',
16799             'ok' => '1.302166',
16800             },
16801             removed => {
16802             }
16803             },
16804             5.031004 => {
16805             delta_from => 5.031003,
16806             changed => {
16807             'B::Op_private' => '5.031004',
16808             'Config' => '5.031004',
16809             'ExtUtils::Command' => '7.38',
16810             'ExtUtils::Command::MM' => '7.38',
16811             'ExtUtils::Liblist' => '7.38',
16812             'ExtUtils::Liblist::Kid'=> '7.38',
16813             'ExtUtils::MM' => '7.38',
16814             'ExtUtils::MM_AIX' => '7.38',
16815             'ExtUtils::MM_Any' => '7.38',
16816             'ExtUtils::MM_BeOS' => '7.38',
16817             'ExtUtils::MM_Cygwin' => '7.38',
16818             'ExtUtils::MM_DOS' => '7.38',
16819             'ExtUtils::MM_Darwin' => '7.38',
16820             'ExtUtils::MM_MacOS' => '7.38',
16821             'ExtUtils::MM_NW5' => '7.38',
16822             'ExtUtils::MM_OS2' => '7.38',
16823             'ExtUtils::MM_QNX' => '7.38',
16824             'ExtUtils::MM_UWIN' => '7.38',
16825             'ExtUtils::MM_Unix' => '7.38',
16826             'ExtUtils::MM_VMS' => '7.38',
16827             'ExtUtils::MM_VOS' => '7.38',
16828             'ExtUtils::MM_Win32' => '7.38',
16829             'ExtUtils::MM_Win95' => '7.38',
16830             'ExtUtils::MY' => '7.38',
16831             'ExtUtils::MakeMaker' => '7.38',
16832             'ExtUtils::MakeMaker::Config'=> '7.38',
16833             'ExtUtils::MakeMaker::Locale'=> '7.38',
16834             'ExtUtils::MakeMaker::version'=> '7.38',
16835             'ExtUtils::MakeMaker::version::regex'=> '7.38',
16836             'ExtUtils::Mkbootstrap' => '7.38',
16837             'ExtUtils::Mksymlists' => '7.38',
16838             'ExtUtils::testlib' => '7.38',
16839             'I18N::Langinfo' => '0.19',
16840             'List::Util' => '1.52',
16841             'List::Util::XS' => '1.52',
16842             'Module::CoreList' => '5.20190920',
16843             'Module::CoreList::Utils'=> '5.20190920',
16844             'Module::Metadata' => '1.000037',
16845             'Scalar::Util' => '1.52',
16846             'Sub::Util' => '1.52',
16847             'Test2' => '1.302168',
16848             'Test2::API' => '1.302168',
16849             'Test2::API::Breakage' => '1.302168',
16850             'Test2::API::Context' => '1.302168',
16851             'Test2::API::Instance' => '1.302168',
16852             'Test2::API::Stack' => '1.302168',
16853             'Test2::Event' => '1.302168',
16854             'Test2::Event::Bail' => '1.302168',
16855             'Test2::Event::Diag' => '1.302168',
16856             'Test2::Event::Encoding'=> '1.302168',
16857             'Test2::Event::Exception'=> '1.302168',
16858             'Test2::Event::Fail' => '1.302168',
16859             'Test2::Event::Generic' => '1.302168',
16860             'Test2::Event::Note' => '1.302168',
16861             'Test2::Event::Ok' => '1.302168',
16862             'Test2::Event::Pass' => '1.302168',
16863             'Test2::Event::Plan' => '1.302168',
16864             'Test2::Event::Skip' => '1.302168',
16865             'Test2::Event::Subtest' => '1.302168',
16866             'Test2::Event::TAP::Version'=> '1.302168',
16867             'Test2::Event::V2' => '1.302168',
16868             'Test2::Event::Waiting' => '1.302168',
16869             'Test2::EventFacet' => '1.302168',
16870             'Test2::EventFacet::About'=> '1.302168',
16871             'Test2::EventFacet::Amnesty'=> '1.302168',
16872             'Test2::EventFacet::Assert'=> '1.302168',
16873             'Test2::EventFacet::Control'=> '1.302168',
16874             'Test2::EventFacet::Error'=> '1.302168',
16875             'Test2::EventFacet::Hub'=> '1.302168',
16876             'Test2::EventFacet::Info'=> '1.302168',
16877             'Test2::EventFacet::Info::Table'=> '1.302168',
16878             'Test2::EventFacet::Meta'=> '1.302168',
16879             'Test2::EventFacet::Parent'=> '1.302168',
16880             'Test2::EventFacet::Plan'=> '1.302168',
16881             'Test2::EventFacet::Render'=> '1.302168',
16882             'Test2::EventFacet::Trace'=> '1.302168',
16883             'Test2::Formatter' => '1.302168',
16884             'Test2::Formatter::TAP' => '1.302168',
16885             'Test2::Hub' => '1.302168',
16886             'Test2::Hub::Interceptor'=> '1.302168',
16887             'Test2::Hub::Interceptor::Terminator'=> '1.302168',
16888             'Test2::Hub::Subtest' => '1.302168',
16889             'Test2::IPC' => '1.302168',
16890             'Test2::IPC::Driver' => '1.302168',
16891             'Test2::IPC::Driver::Files'=> '1.302168',
16892             'Test2::Tools::Tiny' => '1.302168',
16893             'Test2::Util' => '1.302168',
16894             'Test2::Util::ExternalMeta'=> '1.302168',
16895             'Test2::Util::Facets2Legacy'=> '1.302168',
16896             'Test2::Util::HashBase' => '1.302168',
16897             'Test2::Util::Trace' => '1.302168',
16898             'Test::Builder' => '1.302168',
16899             'Test::Builder::Formatter'=> '1.302168',
16900             'Test::Builder::Module' => '1.302168',
16901             'Test::Builder::Tester' => '1.302168',
16902             'Test::Builder::Tester::Color'=> '1.302168',
16903             'Test::Builder::TodoDiag'=> '1.302168',
16904             'Test::More' => '1.302168',
16905             'Test::Simple' => '1.302168',
16906             'Test::Tester' => '1.302168',
16907             'Test::Tester::Capture' => '1.302168',
16908             'Test::Tester::CaptureRunner'=> '1.302168',
16909             'Test::Tester::Delegate'=> '1.302168',
16910             'Test::use::ok' => '1.302168',
16911             'Time::HiRes' => '1.9763',
16912             'XS::APItest' => '1.03',
16913             'ok' => '1.302168',
16914             're' => '0.38',
16915             },
16916             removed => {
16917             }
16918             },
16919             5.031005 => {
16920             delta_from => 5.031004,
16921             changed => {
16922             'B' => '1.77',
16923             'B::Deparse' => '1.50',
16924             'B::Op_private' => '5.031005',
16925             'Config' => '5.031005',
16926             'Devel::PPPort' => '3.54',
16927             'Digest::MD5' => '2.55_01',
16928             'Dumpvalue' => '1.21',
16929             'ExtUtils::CBuilder' => '0.280233',
16930             'Math::BigFloat' => '1.999817_01',
16931             'Math::BigInt' => '1.999817_01',
16932             'Math::BigInt::Calc' => '1.999817_01',
16933             'Math::BigInt::FastCalc'=> '0.5009',
16934             'Math::BigInt::Lib' => '1.999817_01',
16935             'Module::CoreList' => '5.20191020',
16936             'Module::CoreList::Utils'=> '5.20191020',
16937             'Safe' => '2.41',
16938             'Time::HiRes' => '1.9764',
16939             'XS::APItest' => '1.04',
16940             'threads' => '2.23',
16941             },
16942             removed => {
16943             }
16944             },
16945             5.030001 => {
16946             delta_from => 5.030000,
16947             changed => {
16948             'B::Op_private' => '5.030001',
16949             'Config' => '5.030001',
16950             'Module::CoreList' => '5.20191110',
16951             'Module::CoreList::Utils'=> '5.20191110',
16952             },
16953             removed => {
16954             }
16955             },
16956             5.031006 => {
16957             delta_from => 5.031005,
16958             changed => {
16959             'B::Deparse' => '1.51',
16960             'B::Op_private' => '5.031006',
16961             'Compress::Raw::Bzip2' => '2.090',
16962             'Compress::Raw::Zlib' => '2.090',
16963             'Compress::Zlib' => '2.090',
16964             'Config' => '5.031006',
16965             'Devel::PPPort' => '3.55',
16966             'DynaLoader' => '1.46',
16967             'IO::Compress::Adapter::Bzip2'=> '2.090',
16968             'IO::Compress::Adapter::Deflate'=> '2.090',
16969             'IO::Compress::Adapter::Identity'=> '2.090',
16970             'IO::Compress::Base' => '2.090',
16971             'IO::Compress::Base::Common'=> '2.090',
16972             'IO::Compress::Bzip2' => '2.090',
16973             'IO::Compress::Deflate' => '2.090',
16974             'IO::Compress::Gzip' => '2.090',
16975             'IO::Compress::Gzip::Constants'=> '2.090',
16976             'IO::Compress::RawDeflate'=> '2.090',
16977             'IO::Compress::Zip' => '2.090',
16978             'IO::Compress::Zip::Constants'=> '2.090',
16979             'IO::Compress::Zlib::Constants'=> '2.090',
16980             'IO::Compress::Zlib::Extra'=> '2.090',
16981             'IO::Uncompress::Adapter::Bunzip2'=> '2.090',
16982             'IO::Uncompress::Adapter::Identity'=> '2.090',
16983             'IO::Uncompress::Adapter::Inflate'=> '2.090',
16984             'IO::Uncompress::AnyInflate'=> '2.090',
16985             'IO::Uncompress::AnyUncompress'=> '2.090',
16986             'IO::Uncompress::Base' => '2.090',
16987             'IO::Uncompress::Bunzip2'=> '2.090',
16988             'IO::Uncompress::Gunzip'=> '2.090',
16989             'IO::Uncompress::Inflate'=> '2.090',
16990             'IO::Uncompress::RawInflate'=> '2.090',
16991             'IO::Uncompress::Unzip' => '2.090',
16992             'List::Util' => '1.53',
16993             'List::Util::XS' => '1.53',
16994             'Math::BigFloat' => '1.999818',
16995             'Math::BigInt' => '1.999818',
16996             'Math::BigInt::Calc' => '1.999818',
16997             'Math::BigInt::Lib' => '1.999818',
16998             'Module::CoreList' => '5.20191120',
16999             'Module::CoreList::Utils'=> '5.20191120',
17000             'Module::Load::Conditional'=> '0.70',
17001             'POSIX' => '1.90',
17002             'Pod::Simple' => '3.40',
17003             'Pod::Simple::BlackBox' => '3.40',
17004             'Pod::Simple::Checker' => '3.40',
17005             'Pod::Simple::Debug' => '3.40',
17006             'Pod::Simple::DumpAsText'=> '3.40',
17007             'Pod::Simple::DumpAsXML'=> '3.40',
17008             'Pod::Simple::HTML' => '3.40',
17009             'Pod::Simple::HTMLBatch'=> '3.40',
17010             'Pod::Simple::LinkSection'=> '3.40',
17011             'Pod::Simple::Methody' => '3.40',
17012             'Pod::Simple::Progress' => '3.40',
17013             'Pod::Simple::PullParser'=> '3.40',
17014             'Pod::Simple::PullParserEndToken'=> '3.40',
17015             'Pod::Simple::PullParserStartToken'=> '3.40',
17016             'Pod::Simple::PullParserTextToken'=> '3.40',
17017             'Pod::Simple::PullParserToken'=> '3.40',
17018             'Pod::Simple::RTF' => '3.40',
17019             'Pod::Simple::Search' => '3.40',
17020             'Pod::Simple::SimpleTree'=> '3.40',
17021             'Pod::Simple::Text' => '3.40',
17022             'Pod::Simple::TextContent'=> '3.40',
17023             'Pod::Simple::TiedOutFH'=> '3.40',
17024             'Pod::Simple::Transcode'=> '3.40',
17025             'Pod::Simple::TranscodeDumb'=> '3.40',
17026             'Pod::Simple::TranscodeSmart'=> '3.40',
17027             'Pod::Simple::XHTML' => '3.40',
17028             'Pod::Simple::XMLOutStream'=> '3.40',
17029             'Scalar::Util' => '1.53',
17030             'Sub::Util' => '1.53',
17031             'Sys::Syslog' => '0.36',
17032             'Test2' => '1.302169',
17033             'Test2::API' => '1.302169',
17034             'Test2::API::Breakage' => '1.302169',
17035             'Test2::API::Context' => '1.302169',
17036             'Test2::API::Instance' => '1.302169',
17037             'Test2::API::Stack' => '1.302169',
17038             'Test2::Event' => '1.302169',
17039             'Test2::Event::Bail' => '1.302169',
17040             'Test2::Event::Diag' => '1.302169',
17041             'Test2::Event::Encoding'=> '1.302169',
17042             'Test2::Event::Exception'=> '1.302169',
17043             'Test2::Event::Fail' => '1.302169',
17044             'Test2::Event::Generic' => '1.302169',
17045             'Test2::Event::Note' => '1.302169',
17046             'Test2::Event::Ok' => '1.302169',
17047             'Test2::Event::Pass' => '1.302169',
17048             'Test2::Event::Plan' => '1.302169',
17049             'Test2::Event::Skip' => '1.302169',
17050             'Test2::Event::Subtest' => '1.302169',
17051             'Test2::Event::TAP::Version'=> '1.302169',
17052             'Test2::Event::V2' => '1.302169',
17053             'Test2::Event::Waiting' => '1.302169',
17054             'Test2::EventFacet' => '1.302169',
17055             'Test2::EventFacet::About'=> '1.302169',
17056             'Test2::EventFacet::Amnesty'=> '1.302169',
17057             'Test2::EventFacet::Assert'=> '1.302169',
17058             'Test2::EventFacet::Control'=> '1.302169',
17059             'Test2::EventFacet::Error'=> '1.302169',
17060             'Test2::EventFacet::Hub'=> '1.302169',
17061             'Test2::EventFacet::Info'=> '1.302169',
17062             'Test2::EventFacet::Info::Table'=> '1.302169',
17063             'Test2::EventFacet::Meta'=> '1.302169',
17064             'Test2::EventFacet::Parent'=> '1.302169',
17065             'Test2::EventFacet::Plan'=> '1.302169',
17066             'Test2::EventFacet::Render'=> '1.302169',
17067             'Test2::EventFacet::Trace'=> '1.302169',
17068             'Test2::Formatter' => '1.302169',
17069             'Test2::Formatter::TAP' => '1.302169',
17070             'Test2::Hub' => '1.302169',
17071             'Test2::Hub::Interceptor'=> '1.302169',
17072             'Test2::Hub::Interceptor::Terminator'=> '1.302169',
17073             'Test2::Hub::Subtest' => '1.302169',
17074             'Test2::IPC' => '1.302169',
17075             'Test2::IPC::Driver' => '1.302169',
17076             'Test2::IPC::Driver::Files'=> '1.302169',
17077             'Test2::Tools::Tiny' => '1.302169',
17078             'Test2::Util' => '1.302169',
17079             'Test2::Util::ExternalMeta'=> '1.302169',
17080             'Test2::Util::Facets2Legacy'=> '1.302169',
17081             'Test2::Util::HashBase' => '1.302169',
17082             'Test2::Util::Trace' => '1.302169',
17083             'Test::Builder' => '1.302169',
17084             'Test::Builder::Formatter'=> '1.302169',
17085             'Test::Builder::Module' => '1.302169',
17086             'Test::Builder::Tester' => '1.302169',
17087             'Test::Builder::Tester::Color'=> '1.302169',
17088             'Test::Builder::TodoDiag'=> '1.302169',
17089             'Test::More' => '1.302169',
17090             'Test::Simple' => '1.302169',
17091             'Test::Tester' => '1.302169',
17092             'Test::Tester::Capture' => '1.302169',
17093             'Test::Tester::CaptureRunner'=> '1.302169',
17094             'Test::Tester::Delegate'=> '1.302169',
17095             'Test::use::ok' => '1.302169',
17096             'Tie::StdHandle' => '4.6',
17097             'Unicode::UCD' => '0.74',
17098             'Win32API::File' => '0.1203_01',
17099             'feature' => '1.56',
17100             'mro' => '1.23',
17101             'ok' => '1.302169',
17102             'perlfaq' => '5.20191102',
17103             },
17104             removed => {
17105             }
17106             },
17107             5.031007 => {
17108             delta_from => 5.031006,
17109             changed => {
17110             'B' => '1.78',
17111             'B::Deparse' => '1.52',
17112             'B::Op_private' => '5.031007',
17113             'Compress::Raw::Bzip2' => '2.093',
17114             'Compress::Raw::Zlib' => '2.093',
17115             'Compress::Zlib' => '2.093',
17116             'Config' => '5.031007',
17117             'Devel::PPPort' => '3.56',
17118             'English' => '1.11',
17119             'ExtUtils::Command' => '7.42',
17120             'ExtUtils::Command::MM' => '7.42',
17121             'ExtUtils::Liblist' => '7.42',
17122             'ExtUtils::Liblist::Kid'=> '7.42',
17123             'ExtUtils::MM' => '7.42',
17124             'ExtUtils::MM_AIX' => '7.42',
17125             'ExtUtils::MM_Any' => '7.42',
17126             'ExtUtils::MM_BeOS' => '7.42',
17127             'ExtUtils::MM_Cygwin' => '7.42',
17128             'ExtUtils::MM_DOS' => '7.42',
17129             'ExtUtils::MM_Darwin' => '7.42',
17130             'ExtUtils::MM_MacOS' => '7.42',
17131             'ExtUtils::MM_NW5' => '7.42',
17132             'ExtUtils::MM_OS2' => '7.42',
17133             'ExtUtils::MM_QNX' => '7.42',
17134             'ExtUtils::MM_UWIN' => '7.42',
17135             'ExtUtils::MM_Unix' => '7.42',
17136             'ExtUtils::MM_VMS' => '7.42',
17137             'ExtUtils::MM_VOS' => '7.42',
17138             'ExtUtils::MM_Win32' => '7.42',
17139             'ExtUtils::MM_Win95' => '7.42',
17140             'ExtUtils::MY' => '7.42',
17141             'ExtUtils::MakeMaker' => '7.42',
17142             'ExtUtils::MakeMaker::Config'=> '7.42',
17143             'ExtUtils::MakeMaker::Locale'=> '7.42',
17144             'ExtUtils::MakeMaker::version'=> '7.42',
17145             'ExtUtils::MakeMaker::version::regex'=> '7.42',
17146             'ExtUtils::Mkbootstrap' => '7.42',
17147             'ExtUtils::Mksymlists' => '7.42',
17148             'ExtUtils::testlib' => '7.42',
17149             'File::stat' => '1.09',
17150             'Filter::Simple' => '0.96',
17151             'IO::Compress::Adapter::Bzip2'=> '2.093',
17152             'IO::Compress::Adapter::Deflate'=> '2.093',
17153             'IO::Compress::Adapter::Identity'=> '2.093',
17154             'IO::Compress::Base' => '2.093',
17155             'IO::Compress::Base::Common'=> '2.093',
17156             'IO::Compress::Bzip2' => '2.093',
17157             'IO::Compress::Deflate' => '2.093',
17158             'IO::Compress::Gzip' => '2.093',
17159             'IO::Compress::Gzip::Constants'=> '2.093',
17160             'IO::Compress::RawDeflate'=> '2.093',
17161             'IO::Compress::Zip' => '2.093',
17162             'IO::Compress::Zip::Constants'=> '2.093',
17163             'IO::Compress::Zlib::Constants'=> '2.093',
17164             'IO::Compress::Zlib::Extra'=> '2.093',
17165             'IO::Uncompress::Adapter::Bunzip2'=> '2.093',
17166             'IO::Uncompress::Adapter::Identity'=> '2.093',
17167             'IO::Uncompress::Adapter::Inflate'=> '2.093',
17168             'IO::Uncompress::AnyInflate'=> '2.093',
17169             'IO::Uncompress::AnyUncompress'=> '2.093',
17170             'IO::Uncompress::Base' => '2.093',
17171             'IO::Uncompress::Bunzip2'=> '2.093',
17172             'IO::Uncompress::Gunzip'=> '2.093',
17173             'IO::Uncompress::Inflate'=> '2.093',
17174             'IO::Uncompress::RawInflate'=> '2.093',
17175             'IO::Uncompress::Unzip' => '2.093',
17176             'Module::CoreList' => '5.20191220',
17177             'Module::CoreList::Utils'=> '5.20191220',
17178             'Net::Ping' => '2.72',
17179             'Opcode' => '1.45',
17180             'Storable' => '3.18',
17181             'Test2' => '1.302170',
17182             'Test2::API' => '1.302170',
17183             'Test2::API::Breakage' => '1.302170',
17184             'Test2::API::Context' => '1.302170',
17185             'Test2::API::Instance' => '1.302170',
17186             'Test2::API::Stack' => '1.302170',
17187             'Test2::Event' => '1.302170',
17188             'Test2::Event::Bail' => '1.302170',
17189             'Test2::Event::Diag' => '1.302170',
17190             'Test2::Event::Encoding'=> '1.302170',
17191             'Test2::Event::Exception'=> '1.302170',
17192             'Test2::Event::Fail' => '1.302170',
17193             'Test2::Event::Generic' => '1.302170',
17194             'Test2::Event::Note' => '1.302170',
17195             'Test2::Event::Ok' => '1.302170',
17196             'Test2::Event::Pass' => '1.302170',
17197             'Test2::Event::Plan' => '1.302170',
17198             'Test2::Event::Skip' => '1.302170',
17199             'Test2::Event::Subtest' => '1.302170',
17200             'Test2::Event::TAP::Version'=> '1.302170',
17201             'Test2::Event::V2' => '1.302170',
17202             'Test2::Event::Waiting' => '1.302170',
17203             'Test2::EventFacet' => '1.302170',
17204             'Test2::EventFacet::About'=> '1.302170',
17205             'Test2::EventFacet::Amnesty'=> '1.302170',
17206             'Test2::EventFacet::Assert'=> '1.302170',
17207             'Test2::EventFacet::Control'=> '1.302170',
17208             'Test2::EventFacet::Error'=> '1.302170',
17209             'Test2::EventFacet::Hub'=> '1.302170',
17210             'Test2::EventFacet::Info'=> '1.302170',
17211             'Test2::EventFacet::Info::Table'=> '1.302170',
17212             'Test2::EventFacet::Meta'=> '1.302170',
17213             'Test2::EventFacet::Parent'=> '1.302170',
17214             'Test2::EventFacet::Plan'=> '1.302170',
17215             'Test2::EventFacet::Render'=> '1.302170',
17216             'Test2::EventFacet::Trace'=> '1.302170',
17217             'Test2::Formatter' => '1.302170',
17218             'Test2::Formatter::TAP' => '1.302170',
17219             'Test2::Hub' => '1.302170',
17220             'Test2::Hub::Interceptor'=> '1.302170',
17221             'Test2::Hub::Interceptor::Terminator'=> '1.302170',
17222             'Test2::Hub::Subtest' => '1.302170',
17223             'Test2::IPC' => '1.302170',
17224             'Test2::IPC::Driver' => '1.302170',
17225             'Test2::IPC::Driver::Files'=> '1.302170',
17226             'Test2::Tools::Tiny' => '1.302170',
17227             'Test2::Util' => '1.302170',
17228             'Test2::Util::ExternalMeta'=> '1.302170',
17229             'Test2::Util::Facets2Legacy'=> '1.302170',
17230             'Test2::Util::HashBase' => '1.302170',
17231             'Test2::Util::Trace' => '1.302170',
17232             'Test::Builder' => '1.302170',
17233             'Test::Builder::Formatter'=> '1.302170',
17234             'Test::Builder::Module' => '1.302170',
17235             'Test::Builder::Tester' => '1.302170',
17236             'Test::Builder::Tester::Color'=> '1.302170',
17237             'Test::Builder::TodoDiag'=> '1.302170',
17238             'Test::More' => '1.302170',
17239             'Test::Simple' => '1.302170',
17240             'Test::Tester' => '1.302170',
17241             'Test::Tester::Capture' => '1.302170',
17242             'Test::Tester::CaptureRunner'=> '1.302170',
17243             'Test::Tester::Delegate'=> '1.302170',
17244             'Test::use::ok' => '1.302170',
17245             'Tie::Hash::NamedCapture'=> '0.13',
17246             'VMS::Stdio' => '2.45',
17247             'XS::APItest' => '1.05',
17248             'feature' => '1.57',
17249             'ok' => '1.302170',
17250             'warnings' => '1.46',
17251             },
17252             removed => {
17253             }
17254             },
17255             5.031008 => {
17256             delta_from => 5.031007,
17257             changed => {
17258             'B::Op_private' => '5.031008',
17259             'Config' => '5.031008',
17260             'DB_File' => '1.853',
17261             'Encode' => '3.02',
17262             'ExtUtils::Command' => '7.44',
17263             'ExtUtils::Command::MM' => '7.44',
17264             'ExtUtils::Liblist' => '7.44',
17265             'ExtUtils::Liblist::Kid'=> '7.44',
17266             'ExtUtils::MM' => '7.44',
17267             'ExtUtils::MM_AIX' => '7.44',
17268             'ExtUtils::MM_Any' => '7.44',
17269             'ExtUtils::MM_BeOS' => '7.44',
17270             'ExtUtils::MM_Cygwin' => '7.44',
17271             'ExtUtils::MM_DOS' => '7.44',
17272             'ExtUtils::MM_Darwin' => '7.44',
17273             'ExtUtils::MM_MacOS' => '7.44',
17274             'ExtUtils::MM_NW5' => '7.44',
17275             'ExtUtils::MM_OS2' => '7.44',
17276             'ExtUtils::MM_QNX' => '7.44',
17277             'ExtUtils::MM_UWIN' => '7.44',
17278             'ExtUtils::MM_Unix' => '7.44',
17279             'ExtUtils::MM_VMS' => '7.44',
17280             'ExtUtils::MM_VOS' => '7.44',
17281             'ExtUtils::MM_Win32' => '7.44',
17282             'ExtUtils::MM_Win95' => '7.44',
17283             'ExtUtils::MY' => '7.44',
17284             'ExtUtils::MakeMaker' => '7.44',
17285             'ExtUtils::MakeMaker::Config'=> '7.44',
17286             'ExtUtils::MakeMaker::Locale'=> '7.44',
17287             'ExtUtils::MakeMaker::version'=> '7.44',
17288             'ExtUtils::MakeMaker::version::regex'=> '7.44',
17289             'ExtUtils::Mkbootstrap' => '7.44',
17290             'ExtUtils::Mksymlists' => '7.44',
17291             'ExtUtils::testlib' => '7.44',
17292             'Fatal' => '2.32',
17293             'Hash::Util' => '0.23',
17294             'IO' => '1.42',
17295             'IO::Handle' => '1.42',
17296             'IO::Socket' => '1.42',
17297             'Module::CoreList' => '5.20200120',
17298             'Module::CoreList::Utils'=> '5.20200120',
17299             'POSIX' => '1.91',
17300             'Pod::Man' => '4.14',
17301             'Pod::ParseLink' => '4.14',
17302             'Pod::Text' => '4.14',
17303             'Pod::Text::Color' => '4.14',
17304             'Pod::Text::Overstrike' => '4.14',
17305             'Pod::Text::Termcap' => '4.14',
17306             'Term::ANSIColor' => '5.01',
17307             'Test2' => '1.302171',
17308             'Test2::API' => '1.302171',
17309             'Test2::API::Breakage' => '1.302171',
17310             'Test2::API::Context' => '1.302171',
17311             'Test2::API::Instance' => '1.302171',
17312             'Test2::API::Stack' => '1.302171',
17313             'Test2::Event' => '1.302171',
17314             'Test2::Event::Bail' => '1.302171',
17315             'Test2::Event::Diag' => '1.302171',
17316             'Test2::Event::Encoding'=> '1.302171',
17317             'Test2::Event::Exception'=> '1.302171',
17318             'Test2::Event::Fail' => '1.302171',
17319             'Test2::Event::Generic' => '1.302171',
17320             'Test2::Event::Note' => '1.302171',
17321             'Test2::Event::Ok' => '1.302171',
17322             'Test2::Event::Pass' => '1.302171',
17323             'Test2::Event::Plan' => '1.302171',
17324             'Test2::Event::Skip' => '1.302171',
17325             'Test2::Event::Subtest' => '1.302171',
17326             'Test2::Event::TAP::Version'=> '1.302171',
17327             'Test2::Event::V2' => '1.302171',
17328             'Test2::Event::Waiting' => '1.302171',
17329             'Test2::EventFacet' => '1.302171',
17330             'Test2::EventFacet::About'=> '1.302171',
17331             'Test2::EventFacet::Amnesty'=> '1.302171',
17332             'Test2::EventFacet::Assert'=> '1.302171',
17333             'Test2::EventFacet::Control'=> '1.302171',
17334             'Test2::EventFacet::Error'=> '1.302171',
17335             'Test2::EventFacet::Hub'=> '1.302171',
17336             'Test2::EventFacet::Info'=> '1.302171',
17337             'Test2::EventFacet::Info::Table'=> '1.302171',
17338             'Test2::EventFacet::Meta'=> '1.302171',
17339             'Test2::EventFacet::Parent'=> '1.302171',
17340             'Test2::EventFacet::Plan'=> '1.302171',
17341             'Test2::EventFacet::Render'=> '1.302171',
17342             'Test2::EventFacet::Trace'=> '1.302171',
17343             'Test2::Formatter' => '1.302171',
17344             'Test2::Formatter::TAP' => '1.302171',
17345             'Test2::Hub' => '1.302171',
17346             'Test2::Hub::Interceptor'=> '1.302171',
17347             'Test2::Hub::Interceptor::Terminator'=> '1.302171',
17348             'Test2::Hub::Subtest' => '1.302171',
17349             'Test2::IPC' => '1.302171',
17350             'Test2::IPC::Driver' => '1.302171',
17351             'Test2::IPC::Driver::Files'=> '1.302171',
17352             'Test2::Tools::Tiny' => '1.302171',
17353             'Test2::Util' => '1.302171',
17354             'Test2::Util::ExternalMeta'=> '1.302171',
17355             'Test2::Util::Facets2Legacy'=> '1.302171',
17356             'Test2::Util::HashBase' => '1.302171',
17357             'Test2::Util::Trace' => '1.302171',
17358             'Test::Builder' => '1.302171',
17359             'Test::Builder::Formatter'=> '1.302171',
17360             'Test::Builder::Module' => '1.302171',
17361             'Test::Builder::Tester' => '1.302171',
17362             'Test::Builder::Tester::Color'=> '1.302171',
17363             'Test::Builder::TodoDiag'=> '1.302171',
17364             'Test::More' => '1.302171',
17365             'Test::Simple' => '1.302171',
17366             'Test::Tester' => '1.302171',
17367             'Test::Tester::Capture' => '1.302171',
17368             'Test::Tester::CaptureRunner'=> '1.302171',
17369             'Test::Tester::Delegate'=> '1.302171',
17370             'Test::use::ok' => '1.302171',
17371             'XS::APItest' => '1.06',
17372             'autodie' => '2.32',
17373             'autodie::Scope::Guard' => '2.32',
17374             'autodie::Scope::GuardStack'=> '2.32',
17375             'autodie::Util' => '2.32',
17376             'autodie::exception' => '2.32',
17377             'autodie::exception::system'=> '2.32',
17378             'autodie::hints' => '2.32',
17379             'autodie::skip' => '2.32',
17380             'ok' => '1.302171',
17381             },
17382             removed => {
17383             }
17384             },
17385             5.031009 => {
17386             delta_from => 5.031008,
17387             changed => {
17388             'Archive::Tar' => '2.36',
17389             'Archive::Tar::Constant'=> '2.36',
17390             'Archive::Tar::File' => '2.36',
17391             'B' => '1.80',
17392             'B::Op_private' => '5.031009',
17393             'Config' => '5.031009',
17394             'Devel::PPPort' => '3.57',
17395             'Encode' => '3.03',
17396             'ExtUtils::CBuilder' => '0.280234',
17397             'ExtUtils::CBuilder::Base'=> '0.280234',
17398             'ExtUtils::CBuilder::Platform::Unix'=> '0.280234',
17399             'ExtUtils::CBuilder::Platform::VMS'=> '0.280234',
17400             'ExtUtils::CBuilder::Platform::Windows'=> '0.280234',
17401             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280234',
17402             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280234',
17403             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280234',
17404             'ExtUtils::CBuilder::Platform::aix'=> '0.280234',
17405             'ExtUtils::CBuilder::Platform::android'=> '0.280234',
17406             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280234',
17407             'ExtUtils::CBuilder::Platform::darwin'=> '0.280234',
17408             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280234',
17409             'ExtUtils::CBuilder::Platform::os2'=> '0.280234',
17410             'IO' => '1.43',
17411             'IO::Select' => '1.42',
17412             'IO::Socket' => '1.43',
17413             'Module::CoreList' => '5.20200220',
17414             'Module::CoreList::Utils'=> '5.20200220',
17415             'POSIX' => '1.92',
17416             'Pod::Html' => '1.25',
17417             'Storable' => '3.19',
17418             'Tie::File' => '1.06',
17419             'Unicode' => '13.0.0',
17420             'XS::APItest' => '1.07',
17421             '_charnames' => '1.46',
17422             'charnames' => '1.46',
17423             'diagnostics' => '1.37',
17424             'feature' => '1.58',
17425             'parent' => '0.238',
17426             'perlfaq' => '5.20200125',
17427             'threads' => '2.24',
17428             },
17429             removed => {
17430             }
17431             },
17432             5.030002 => {
17433             delta_from => 5.030001,
17434             changed => {
17435             'B::Op_private' => '5.030002',
17436             'Compress::Raw::Bzip2' => '2.089',
17437             'Config' => '5.030002',
17438             'Module::CoreList' => '5.20200314',
17439             'Module::CoreList::Utils'=> '5.20200314',
17440             },
17441             removed => {
17442             }
17443             },
17444             5.031010 => {
17445             delta_from => 5.031009,
17446             changed => {
17447             'B::Op_private' => '5.031010',
17448             'Config' => '5.03101',
17449             },
17450             removed => {
17451             }
17452             },
17453             5.031011 => {
17454             delta_from => 5.031010,
17455             changed => {
17456             'B::Deparse' => '1.53',
17457             'B::Op_private' => '5.031011',
17458             'Config' => '5.031011',
17459             'DynaLoader' => '1.47',
17460             'Encode' => '3.04',
17461             'IPC::Open2' => '1.05',
17462             'IPC::Open3' => '1.21',
17463             'Module::CoreList' => '5.20200428',
17464             'Module::CoreList::Utils'=> '5.20200428',
17465             'Opcode' => '1.47',
17466             'POSIX' => '1.93',
17467             'PerlIO' => '1.11',
17468             'Storable' => '3.20',
17469             'Test2' => '1.302175',
17470             'Test2::API' => '1.302175',
17471             'Test2::API::Breakage' => '1.302175',
17472             'Test2::API::Context' => '1.302175',
17473             'Test2::API::Instance' => '1.302175',
17474             'Test2::API::Stack' => '1.302175',
17475             'Test2::Event' => '1.302175',
17476             'Test2::Event::Bail' => '1.302175',
17477             'Test2::Event::Diag' => '1.302175',
17478             'Test2::Event::Encoding'=> '1.302175',
17479             'Test2::Event::Exception'=> '1.302175',
17480             'Test2::Event::Fail' => '1.302175',
17481             'Test2::Event::Generic' => '1.302175',
17482             'Test2::Event::Note' => '1.302175',
17483             'Test2::Event::Ok' => '1.302175',
17484             'Test2::Event::Pass' => '1.302175',
17485             'Test2::Event::Plan' => '1.302175',
17486             'Test2::Event::Skip' => '1.302175',
17487             'Test2::Event::Subtest' => '1.302175',
17488             'Test2::Event::TAP::Version'=> '1.302175',
17489             'Test2::Event::V2' => '1.302175',
17490             'Test2::Event::Waiting' => '1.302175',
17491             'Test2::EventFacet' => '1.302175',
17492             'Test2::EventFacet::About'=> '1.302175',
17493             'Test2::EventFacet::Amnesty'=> '1.302175',
17494             'Test2::EventFacet::Assert'=> '1.302175',
17495             'Test2::EventFacet::Control'=> '1.302175',
17496             'Test2::EventFacet::Error'=> '1.302175',
17497             'Test2::EventFacet::Hub'=> '1.302175',
17498             'Test2::EventFacet::Info'=> '1.302175',
17499             'Test2::EventFacet::Info::Table'=> '1.302175',
17500             'Test2::EventFacet::Meta'=> '1.302175',
17501             'Test2::EventFacet::Parent'=> '1.302175',
17502             'Test2::EventFacet::Plan'=> '1.302175',
17503             'Test2::EventFacet::Render'=> '1.302175',
17504             'Test2::EventFacet::Trace'=> '1.302175',
17505             'Test2::Formatter' => '1.302175',
17506             'Test2::Formatter::TAP' => '1.302175',
17507             'Test2::Hub' => '1.302175',
17508             'Test2::Hub::Interceptor'=> '1.302175',
17509             'Test2::Hub::Interceptor::Terminator'=> '1.302175',
17510             'Test2::Hub::Subtest' => '1.302175',
17511             'Test2::IPC' => '1.302175',
17512             'Test2::IPC::Driver' => '1.302175',
17513             'Test2::IPC::Driver::Files'=> '1.302175',
17514             'Test2::Tools::Tiny' => '1.302175',
17515             'Test2::Util' => '1.302175',
17516             'Test2::Util::ExternalMeta'=> '1.302175',
17517             'Test2::Util::Facets2Legacy'=> '1.302175',
17518             'Test2::Util::HashBase' => '1.302175',
17519             'Test2::Util::Trace' => '1.302175',
17520             'Test::Builder' => '1.302175',
17521             'Test::Builder::Formatter'=> '1.302175',
17522             'Test::Builder::Module' => '1.302175',
17523             'Test::Builder::Tester' => '1.302175',
17524             'Test::Builder::Tester::Color'=> '1.302175',
17525             'Test::Builder::TodoDiag'=> '1.302175',
17526             'Test::More' => '1.302175',
17527             'Test::Simple' => '1.302175',
17528             'Test::Tester' => '1.302175',
17529             'Test::Tester::Capture' => '1.302175',
17530             'Test::Tester::CaptureRunner'=> '1.302175',
17531             'Test::Tester::Delegate'=> '1.302175',
17532             'Test::use::ok' => '1.302175',
17533             'Time::Piece' => '1.3401',
17534             'Time::Seconds' => '1.3401',
17535             'Unicode::UCD' => '0.75',
17536             'XS::APItest' => '1.09',
17537             '_charnames' => '1.47',
17538             'charnames' => '1.47',
17539             'ok' => '1.302175',
17540             'open' => '1.12',
17541             're' => '0.39',
17542             'warnings' => '1.47',
17543             },
17544             removed => {
17545             }
17546             },
17547             5.028003 => {
17548             delta_from => 5.028002,
17549             changed => {
17550             'B::Op_private' => '5.028003',
17551             'Config' => '5.028003',
17552             'Module::CoreList' => '5.20200601_28',
17553             'Module::CoreList::Utils'=> '5.20200601_28',
17554             },
17555             removed => {
17556             }
17557             },
17558             5.030003 => {
17559             delta_from => 5.030002,
17560             changed => {
17561             'B::Op_private' => '5.030003',
17562             'Config' => '5.030003',
17563             'Module::CoreList' => '5.20200601_30',
17564             'Module::CoreList::Utils'=> '5.20200601_30',
17565             },
17566             removed => {
17567             }
17568             },
17569             5.032000 => {
17570             delta_from => 5.031011,
17571             changed => {
17572             'B::Deparse' => '1.54',
17573             'B::Op_private' => '5.032000',
17574             'Benchmark' => '1.23',
17575             'Config' => '5.032',
17576             'Encode' => '3.06',
17577             'Encode::Guess' => '2.08',
17578             'File::Glob' => '1.33',
17579             'List::Util' => '1.55',
17580             'List::Util::XS' => '1.55',
17581             'Module::CoreList' => '5.20200620',
17582             'Module::CoreList::Utils'=> '5.20200620',
17583             'POSIX' => '1.94',
17584             'Scalar::Util' => '1.55',
17585             'Storable' => '3.21',
17586             'Sub::Util' => '1.55',
17587             'Thread::Queue' => '3.14',
17588             'Tie::Scalar' => '1.05',
17589             '_charnames' => '1.48',
17590             'charnames' => '1.48',
17591             'encoding' => '3.00',
17592             'perlfaq' => '5.20200523',
17593             're' => '0.40',
17594             'threads' => '2.25',
17595             },
17596             removed => {
17597             }
17598             },
17599             5.033000 => {
17600             delta_from => 5.032000,
17601             changed => {
17602             'B::Op_private' => '5.033000',
17603             'Config' => '5.033',
17604             'Module::CoreList' => '5.20200717',
17605             'Module::CoreList::Utils'=> '5.20200717',
17606             'feature' => '1.59',
17607             },
17608             removed => {
17609             }
17610             },
17611             5.033001 => {
17612             delta_from => 5.033,
17613             changed => {
17614             'B' => '1.81',
17615             'B::Deparse' => '1.55',
17616             'B::Op_private' => '5.033001',
17617             'Config' => '5.033001',
17618             'Data::Dumper' => '2.175',
17619             'Devel::PPPort' => '3.60',
17620             'Devel::Peek' => '1.29',
17621             'DynaLoader' => '1.48',
17622             'Errno' => '1.31',
17623             'Exporter' => '5.75',
17624             'Exporter::Heavy' => '5.75',
17625             'ExtUtils::Miniperl' => '1.10',
17626             'ExtUtils::PL2Bat' => '0.002',
17627             'ExtUtils::ParseXS' => '3.41',
17628             'ExtUtils::ParseXS::Constants'=> '3.41',
17629             'ExtUtils::ParseXS::CountLines'=> '3.41',
17630             'ExtUtils::ParseXS::Eval'=> '3.41',
17631             'ExtUtils::ParseXS::Utilities'=> '3.41',
17632             'Fcntl' => '1.14',
17633             'File::Path' => '2.17',
17634             'Hash::Util' => '0.24',
17635             'Hash::Util::FieldHash' => '1.21',
17636             'IO' => '1.44',
17637             'IO::Socket' => '1.44',
17638             'IO::Socket::UNIX' => '1.42',
17639             'IPC::Msg' => '2.08',
17640             'IPC::Semaphore' => '2.08',
17641             'IPC::SharedMem' => '2.08',
17642             'IPC::SysV' => '2.08',
17643             'JSON::PP' => '4.05',
17644             'JSON::PP::Boolean' => '4.05',
17645             'Math::Complex' => '1.5902',
17646             'Module::CoreList' => '5.20200820',
17647             'Module::CoreList::Utils'=> '5.20200820',
17648             'Net::Ping' => '2.73_01',
17649             'POSIX' => '1.95',
17650             'PerlIO::mmap' => '0.017',
17651             'Pod::Usage' => '1.70',
17652             'Safe' => '2.42',
17653             'Socket' => '2.030',
17654             'Storable' => '3.22',
17655             'Time::HiRes' => '1.9765',
17656             'Unicode::Normalize' => '1.28',
17657             'XS::APItest' => '1.11',
17658             'XS::Typemap' => '0.18',
17659             'feature' => '1.60',
17660             'mro' => '1.24',
17661             'strict' => '1.12',
17662             'threads' => '2.26',
17663             'threads::shared' => '1.62',
17664             'warnings' => '1.48',
17665             },
17666             removed => {
17667             'Moped::Msg' => 1,
17668             }
17669             },
17670             5.033002 => {
17671             delta_from => 5.033001,
17672             changed => {
17673             'Archive::Tar' => '2.38',
17674             'Archive::Tar::Constant'=> '2.38',
17675             'Archive::Tar::File' => '2.38',
17676             'B::Op_private' => '5.033002',
17677             'Compress::Raw::Bzip2' => '2.096',
17678             'Compress::Raw::Zlib' => '2.096',
17679             'Compress::Zlib' => '2.096',
17680             'Config' => '5.033002',
17681             'DB_File' => '1.854',
17682             'Env' => '1.05',
17683             'Errno' => '1.32',
17684             'ExtUtils::Install' => '2.18',
17685             'ExtUtils::Installed' => '2.18',
17686             'ExtUtils::Packlist' => '2.18',
17687             'Filter::Util::Call' => '1.60',
17688             'IO::Compress::Adapter::Bzip2'=> '2.096',
17689             'IO::Compress::Adapter::Deflate'=> '2.096',
17690             'IO::Compress::Adapter::Identity'=> '2.096',
17691             'IO::Compress::Base' => '2.096',
17692             'IO::Compress::Base::Common'=> '2.096',
17693             'IO::Compress::Bzip2' => '2.096',
17694             'IO::Compress::Deflate' => '2.096',
17695             'IO::Compress::Gzip' => '2.096',
17696             'IO::Compress::Gzip::Constants'=> '2.096',
17697             'IO::Compress::RawDeflate'=> '2.096',
17698             'IO::Compress::Zip' => '2.096',
17699             'IO::Compress::Zip::Constants'=> '2.096',
17700             'IO::Compress::Zlib::Constants'=> '2.096',
17701             'IO::Compress::Zlib::Extra'=> '2.096',
17702             'IO::Socket::IP' => '0.41',
17703             'IO::Uncompress::Adapter::Bunzip2'=> '2.096',
17704             'IO::Uncompress::Adapter::Identity'=> '2.096',
17705             'IO::Uncompress::Adapter::Inflate'=> '2.096',
17706             'IO::Uncompress::AnyInflate'=> '2.096',
17707             'IO::Uncompress::AnyUncompress'=> '2.096',
17708             'IO::Uncompress::Base' => '2.096',
17709             'IO::Uncompress::Bunzip2'=> '2.096',
17710             'IO::Uncompress::Gunzip'=> '2.096',
17711             'IO::Uncompress::Inflate'=> '2.096',
17712             'IO::Uncompress::RawInflate'=> '2.096',
17713             'IO::Uncompress::Unzip' => '2.096',
17714             'IO::Zlib' => '1.11',
17715             'Module::CoreList' => '5.20200920',
17716             'Module::CoreList::Utils'=> '5.20200920',
17717             'Module::Load::Conditional'=> '0.74',
17718             'Opcode' => '1.48',
17719             'PerlIO::scalar' => '0.31',
17720             'Safe' => '2.43',
17721             'Test2' => '1.302181',
17722             'Test2::API' => '1.302181',
17723             'Test2::API::Breakage' => '1.302181',
17724             'Test2::API::Context' => '1.302181',
17725             'Test2::API::Instance' => '1.302181',
17726             'Test2::API::InterceptResult'=> '1.302181',
17727             'Test2::API::InterceptResult::Event'=> '1.302181',
17728             'Test2::API::InterceptResult::Facet'=> '1.302181',
17729             'Test2::API::InterceptResult::Hub'=> '1.302181',
17730             'Test2::API::InterceptResult::Squasher'=> '1.302181',
17731             'Test2::API::Stack' => '1.302181',
17732             'Test2::Event' => '1.302181',
17733             'Test2::Event::Bail' => '1.302181',
17734             'Test2::Event::Diag' => '1.302181',
17735             'Test2::Event::Encoding'=> '1.302181',
17736             'Test2::Event::Exception'=> '1.302181',
17737             'Test2::Event::Fail' => '1.302181',
17738             'Test2::Event::Generic' => '1.302181',
17739             'Test2::Event::Note' => '1.302181',
17740             'Test2::Event::Ok' => '1.302181',
17741             'Test2::Event::Pass' => '1.302181',
17742             'Test2::Event::Plan' => '1.302181',
17743             'Test2::Event::Skip' => '1.302181',
17744             'Test2::Event::Subtest' => '1.302181',
17745             'Test2::Event::TAP::Version'=> '1.302181',
17746             'Test2::Event::V2' => '1.302181',
17747             'Test2::Event::Waiting' => '1.302181',
17748             'Test2::EventFacet' => '1.302181',
17749             'Test2::EventFacet::About'=> '1.302181',
17750             'Test2::EventFacet::Amnesty'=> '1.302181',
17751             'Test2::EventFacet::Assert'=> '1.302181',
17752             'Test2::EventFacet::Control'=> '1.302181',
17753             'Test2::EventFacet::Error'=> '1.302181',
17754             'Test2::EventFacet::Hub'=> '1.302181',
17755             'Test2::EventFacet::Info'=> '1.302181',
17756             'Test2::EventFacet::Info::Table'=> '1.302181',
17757             'Test2::EventFacet::Meta'=> '1.302181',
17758             'Test2::EventFacet::Parent'=> '1.302181',
17759             'Test2::EventFacet::Plan'=> '1.302181',
17760             'Test2::EventFacet::Render'=> '1.302181',
17761             'Test2::EventFacet::Trace'=> '1.302181',
17762             'Test2::Formatter' => '1.302181',
17763             'Test2::Formatter::TAP' => '1.302181',
17764             'Test2::Hub' => '1.302181',
17765             'Test2::Hub::Interceptor'=> '1.302181',
17766             'Test2::Hub::Interceptor::Terminator'=> '1.302181',
17767             'Test2::Hub::Subtest' => '1.302181',
17768             'Test2::IPC' => '1.302181',
17769             'Test2::IPC::Driver' => '1.302181',
17770             'Test2::IPC::Driver::Files'=> '1.302181',
17771             'Test2::Tools::Tiny' => '1.302181',
17772             'Test2::Util' => '1.302181',
17773             'Test2::Util::ExternalMeta'=> '1.302181',
17774             'Test2::Util::Facets2Legacy'=> '1.302181',
17775             'Test2::Util::HashBase' => '1.302181',
17776             'Test2::Util::Trace' => '1.302181',
17777             'Test::Builder' => '1.302181',
17778             'Test::Builder::Formatter'=> '1.302181',
17779             'Test::Builder::Module' => '1.302181',
17780             'Test::Builder::Tester' => '1.302181',
17781             'Test::Builder::Tester::Color'=> '1.302181',
17782             'Test::Builder::TodoDiag'=> '1.302181',
17783             'Test::More' => '1.302181',
17784             'Test::Simple' => '1.302181',
17785             'Test::Tester' => '1.302181',
17786             'Test::Tester::Capture' => '1.302181',
17787             'Test::Tester::CaptureRunner'=> '1.302181',
17788             'Test::Tester::Delegate'=> '1.302181',
17789             'Test::use::ok' => '1.302181',
17790             'ok' => '1.302181',
17791             'overload' => '1.32',
17792             },
17793             removed => {
17794             }
17795             },
17796             5.033003 => {
17797             delta_from => 5.033002,
17798             changed => {
17799             'Amiga::ARexx' => '0.05',
17800             'App::Cpan' => '1.676',
17801             'B::Op_private' => '5.033003',
17802             'CPAN' => '2.28',
17803             'CPAN::FTP' => '5.5013',
17804             'CPAN::FirstTime' => '5.5315',
17805             'Config' => '5.033003',
17806             'DB_File' => '1.855',
17807             'Data::Dumper' => '2.176',
17808             'Devel::PPPort' => '3.62',
17809             'Devel::Peek' => '1.30',
17810             'Digest' => '1.19',
17811             'Digest::MD5' => '2.58',
17812             'Digest::base' => '1.19',
17813             'Digest::file' => '1.19',
17814             'Encode' => '3.07',
17815             'Encode::GSM0338' => '2.08',
17816             'Errno' => '1.33',
17817             'Exporter' => '5.76',
17818             'Exporter::Heavy' => '5.76',
17819             'ExtUtils::Command' => '7.48',
17820             'ExtUtils::Command::MM' => '7.48',
17821             'ExtUtils::Liblist' => '7.48',
17822             'ExtUtils::Liblist::Kid'=> '7.48',
17823             'ExtUtils::MM' => '7.48',
17824             'ExtUtils::MM_AIX' => '7.48',
17825             'ExtUtils::MM_Any' => '7.48',
17826             'ExtUtils::MM_BeOS' => '7.48',
17827             'ExtUtils::MM_Cygwin' => '7.48',
17828             'ExtUtils::MM_DOS' => '7.48',
17829             'ExtUtils::MM_Darwin' => '7.48',
17830             'ExtUtils::MM_MacOS' => '7.48',
17831             'ExtUtils::MM_NW5' => '7.48',
17832             'ExtUtils::MM_OS2' => '7.48',
17833             'ExtUtils::MM_OS390' => '7.48',
17834             'ExtUtils::MM_QNX' => '7.48',
17835             'ExtUtils::MM_UWIN' => '7.48',
17836             'ExtUtils::MM_Unix' => '7.48',
17837             'ExtUtils::MM_VMS' => '7.48',
17838             'ExtUtils::MM_VOS' => '7.48',
17839             'ExtUtils::MM_Win32' => '7.48',
17840             'ExtUtils::MM_Win95' => '7.48',
17841             'ExtUtils::MY' => '7.48',
17842             'ExtUtils::MakeMaker' => '7.48',
17843             'ExtUtils::MakeMaker::Config'=> '7.48',
17844             'ExtUtils::MakeMaker::Locale'=> '7.48',
17845             'ExtUtils::MakeMaker::version'=> '7.48',
17846             'ExtUtils::MakeMaker::version::regex'=> '7.48',
17847             'ExtUtils::Mkbootstrap' => '7.48',
17848             'ExtUtils::Mksymlists' => '7.48',
17849             'ExtUtils::PL2Bat' => '0.003',
17850             'ExtUtils::testlib' => '7.48',
17851             'File::Temp' => '0.2311',
17852             'FindBin' => '1.52',
17853             'Getopt::Long' => '2.52',
17854             'Getopt::Std' => '1.13',
17855             'I18N::LangTags' => '0.45',
17856             'MIME::Base64' => '3.16',
17857             'MIME::QuotedPrint' => '3.16',
17858             'Module::CoreList' => '5.20201020',
17859             'Module::CoreList::Utils'=> '5.20201020',
17860             'Module::Load' => '0.36',
17861             'Pod::Checker' => '1.74',
17862             'Pod::Simple' => '3.41',
17863             'Pod::Simple::BlackBox' => '3.41',
17864             'Pod::Simple::Checker' => '3.41',
17865             'Pod::Simple::Debug' => '3.41',
17866             'Pod::Simple::DumpAsText'=> '3.41',
17867             'Pod::Simple::DumpAsXML'=> '3.41',
17868             'Pod::Simple::HTML' => '3.41',
17869             'Pod::Simple::HTMLBatch'=> '3.41',
17870             'Pod::Simple::LinkSection'=> '3.41',
17871             'Pod::Simple::Methody' => '3.41',
17872             'Pod::Simple::Progress' => '3.41',
17873             'Pod::Simple::PullParser'=> '3.41',
17874             'Pod::Simple::PullParserEndToken'=> '3.41',
17875             'Pod::Simple::PullParserStartToken'=> '3.41',
17876             'Pod::Simple::PullParserTextToken'=> '3.41',
17877             'Pod::Simple::PullParserToken'=> '3.41',
17878             'Pod::Simple::RTF' => '3.41',
17879             'Pod::Simple::Search' => '3.41',
17880             'Pod::Simple::SimpleTree'=> '3.41',
17881             'Pod::Simple::Text' => '3.41',
17882             'Pod::Simple::TextContent'=> '3.41',
17883             'Pod::Simple::TiedOutFH'=> '3.41',
17884             'Pod::Simple::Transcode'=> '3.41',
17885             'Pod::Simple::TranscodeDumb'=> '3.41',
17886             'Pod::Simple::TranscodeSmart'=> '3.41',
17887             'Pod::Simple::XHTML' => '3.41',
17888             'Pod::Simple::XMLOutStream'=> '3.41',
17889             'Pod::Usage' => '2.01',
17890             'Storable' => '3.23',
17891             'Symbol' => '1.09',
17892             'Test2' => '1.302182',
17893             'Test2::API' => '1.302182',
17894             'Test2::API::Breakage' => '1.302182',
17895             'Test2::API::Context' => '1.302182',
17896             'Test2::API::Instance' => '1.302182',
17897             'Test2::API::InterceptResult'=> '1.302182',
17898             'Test2::API::InterceptResult::Event'=> '1.302182',
17899             'Test2::API::InterceptResult::Facet'=> '1.302182',
17900             'Test2::API::InterceptResult::Hub'=> '1.302182',
17901             'Test2::API::InterceptResult::Squasher'=> '1.302182',
17902             'Test2::API::Stack' => '1.302182',
17903             'Test2::Event' => '1.302182',
17904             'Test2::Event::Bail' => '1.302182',
17905             'Test2::Event::Diag' => '1.302182',
17906             'Test2::Event::Encoding'=> '1.302182',
17907             'Test2::Event::Exception'=> '1.302182',
17908             'Test2::Event::Fail' => '1.302182',
17909             'Test2::Event::Generic' => '1.302182',
17910             'Test2::Event::Note' => '1.302182',
17911             'Test2::Event::Ok' => '1.302182',
17912             'Test2::Event::Pass' => '1.302182',
17913             'Test2::Event::Plan' => '1.302182',
17914             'Test2::Event::Skip' => '1.302182',
17915             'Test2::Event::Subtest' => '1.302182',
17916             'Test2::Event::TAP::Version'=> '1.302182',
17917             'Test2::Event::V2' => '1.302182',
17918             'Test2::Event::Waiting' => '1.302182',
17919             'Test2::EventFacet' => '1.302182',
17920             'Test2::EventFacet::About'=> '1.302182',
17921             'Test2::EventFacet::Amnesty'=> '1.302182',
17922             'Test2::EventFacet::Assert'=> '1.302182',
17923             'Test2::EventFacet::Control'=> '1.302182',
17924             'Test2::EventFacet::Error'=> '1.302182',
17925             'Test2::EventFacet::Hub'=> '1.302182',
17926             'Test2::EventFacet::Info'=> '1.302182',
17927             'Test2::EventFacet::Info::Table'=> '1.302182',
17928             'Test2::EventFacet::Meta'=> '1.302182',
17929             'Test2::EventFacet::Parent'=> '1.302182',
17930             'Test2::EventFacet::Plan'=> '1.302182',
17931             'Test2::EventFacet::Render'=> '1.302182',
17932             'Test2::EventFacet::Trace'=> '1.302182',
17933             'Test2::Formatter' => '1.302182',
17934             'Test2::Formatter::TAP' => '1.302182',
17935             'Test2::Hub' => '1.302182',
17936             'Test2::Hub::Interceptor'=> '1.302182',
17937             'Test2::Hub::Interceptor::Terminator'=> '1.302182',
17938             'Test2::Hub::Subtest' => '1.302182',
17939             'Test2::IPC' => '1.302182',
17940             'Test2::IPC::Driver' => '1.302182',
17941             'Test2::IPC::Driver::Files'=> '1.302182',
17942             'Test2::Tools::Tiny' => '1.302182',
17943             'Test2::Util' => '1.302182',
17944             'Test2::Util::ExternalMeta'=> '1.302182',
17945             'Test2::Util::Facets2Legacy'=> '1.302182',
17946             'Test2::Util::HashBase' => '1.302182',
17947             'Test2::Util::Trace' => '1.302182',
17948             'Test::Builder' => '1.302182',
17949             'Test::Builder::Formatter'=> '1.302182',
17950             'Test::Builder::Module' => '1.302182',
17951             'Test::Builder::Tester' => '1.302182',
17952             'Test::Builder::Tester::Color'=> '1.302182',
17953             'Test::Builder::TodoDiag'=> '1.302182',
17954             'Test::More' => '1.302182',
17955             'Test::Simple' => '1.302182',
17956             'Test::Tester' => '1.302182',
17957             'Test::Tester::Capture' => '1.302182',
17958             'Test::Tester::CaptureRunner'=> '1.302182',
17959             'Test::Tester::Delegate'=> '1.302182',
17960             'Test::use::ok' => '1.302182',
17961             'Tie::RefHash' => '1.40',
17962             'Time::Local' => '1.30',
17963             'Unicode::Collate' => '1.29',
17964             'Unicode::Collate::CJK::Big5'=> '1.29',
17965             'Unicode::Collate::CJK::GB2312'=> '1.29',
17966             'Unicode::Collate::CJK::JISX0208'=> '1.29',
17967             'Unicode::Collate::CJK::Korean'=> '1.29',
17968             'Unicode::Collate::CJK::Pinyin'=> '1.29',
17969             'Unicode::Collate::CJK::Stroke'=> '1.29',
17970             'Unicode::Collate::CJK::Zhuyin'=> '1.29',
17971             'Unicode::Collate::Locale'=> '1.29',
17972             'Win32' => '0.54',
17973             'XS::APItest' => '1.12',
17974             'bytes' => '1.08',
17975             'experimental' => '0.022',
17976             'feature' => '1.61',
17977             'if' => '0.0609',
17978             'locale' => '1.10',
17979             'mro' => '1.25',
17980             'ok' => '1.302182',
17981             'overload' => '1.33',
17982             're' => '0.41',
17983             'subs' => '1.04',
17984             'utf8' => '1.24',
17985             'version' => '0.9928',
17986             'version::regex' => '0.9928',
17987             },
17988             removed => {
17989             }
17990             },
17991             5.033004 => {
17992             delta_from => 5.033003,
17993             changed => {
17994             'B' => '1.82',
17995             'B::Op_private' => '5.033004',
17996             'Config' => '5.033004',
17997             'Cwd' => '3.79',
17998             'ExtUtils::CBuilder' => '0.280235',
17999             'ExtUtils::CBuilder::Base'=> '0.280235',
18000             'ExtUtils::CBuilder::Platform::Unix'=> '0.280235',
18001             'ExtUtils::CBuilder::Platform::VMS'=> '0.280235',
18002             'ExtUtils::CBuilder::Platform::Windows'=> '0.280235',
18003             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280235',
18004             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280235',
18005             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280235',
18006             'ExtUtils::CBuilder::Platform::aix'=> '0.280235',
18007             'ExtUtils::CBuilder::Platform::android'=> '0.280235',
18008             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280235',
18009             'ExtUtils::CBuilder::Platform::darwin'=> '0.280235',
18010             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280235',
18011             'ExtUtils::CBuilder::Platform::os2'=> '0.280235',
18012             'ExtUtils::Command' => '7.56',
18013             'ExtUtils::Command::MM' => '7.56',
18014             'ExtUtils::Liblist' => '7.56',
18015             'ExtUtils::Liblist::Kid'=> '7.56',
18016             'ExtUtils::MM' => '7.56',
18017             'ExtUtils::MM_AIX' => '7.56',
18018             'ExtUtils::MM_Any' => '7.56',
18019             'ExtUtils::MM_BeOS' => '7.56',
18020             'ExtUtils::MM_Cygwin' => '7.56',
18021             'ExtUtils::MM_DOS' => '7.56',
18022             'ExtUtils::MM_Darwin' => '7.56',
18023             'ExtUtils::MM_MacOS' => '7.56',
18024             'ExtUtils::MM_NW5' => '7.56',
18025             'ExtUtils::MM_OS2' => '7.56',
18026             'ExtUtils::MM_OS390' => '7.56',
18027             'ExtUtils::MM_QNX' => '7.56',
18028             'ExtUtils::MM_UWIN' => '7.56',
18029             'ExtUtils::MM_Unix' => '7.56',
18030             'ExtUtils::MM_VMS' => '7.56',
18031             'ExtUtils::MM_VOS' => '7.56',
18032             'ExtUtils::MM_Win32' => '7.56',
18033             'ExtUtils::MM_Win95' => '7.56',
18034             'ExtUtils::MY' => '7.56',
18035             'ExtUtils::MakeMaker' => '7.56',
18036             'ExtUtils::MakeMaker::Config'=> '7.56',
18037             'ExtUtils::MakeMaker::Locale'=> '7.56',
18038             'ExtUtils::MakeMaker::version'=> '7.56',
18039             'ExtUtils::MakeMaker::version::regex'=> '7.56',
18040             'ExtUtils::Mkbootstrap' => '7.56',
18041             'ExtUtils::Mksymlists' => '7.56',
18042             'ExtUtils::testlib' => '7.56',
18043             'File::Fetch' => '1.00',
18044             'File::Path' => '2.18',
18045             'File::Spec' => '3.79',
18046             'File::Spec::AmigaOS' => '3.79',
18047             'File::Spec::Cygwin' => '3.79',
18048             'File::Spec::Epoc' => '3.79',
18049             'File::Spec::Functions' => '3.79',
18050             'File::Spec::Mac' => '3.79',
18051             'File::Spec::OS2' => '3.79',
18052             'File::Spec::Unix' => '3.79',
18053             'File::Spec::VMS' => '3.79',
18054             'IPC::Msg' => '2.09',
18055             'IPC::Semaphore' => '2.09',
18056             'IPC::SharedMem' => '2.09',
18057             'IPC::SysV' => '2.09',
18058             'Module::CoreList' => '5.20201120',
18059             'Module::CoreList::Utils'=> '5.20201120',
18060             'Net::Ping' => '2.74',
18061             'Pod::Html' => '1.26',
18062             'Pod::Simple' => '3.42',
18063             'Pod::Simple::BlackBox' => '3.42',
18064             'Pod::Simple::Checker' => '3.42',
18065             'Pod::Simple::Debug' => '3.42',
18066             'Pod::Simple::DumpAsText'=> '3.42',
18067             'Pod::Simple::DumpAsXML'=> '3.42',
18068             'Pod::Simple::HTML' => '3.42',
18069             'Pod::Simple::HTMLBatch'=> '3.42',
18070             'Pod::Simple::LinkSection'=> '3.42',
18071             'Pod::Simple::Methody' => '3.42',
18072             'Pod::Simple::Progress' => '3.42',
18073             'Pod::Simple::PullParser'=> '3.42',
18074             'Pod::Simple::PullParserEndToken'=> '3.42',
18075             'Pod::Simple::PullParserStartToken'=> '3.42',
18076             'Pod::Simple::PullParserTextToken'=> '3.42',
18077             'Pod::Simple::PullParserToken'=> '3.42',
18078             'Pod::Simple::RTF' => '3.42',
18079             'Pod::Simple::Search' => '3.42',
18080             'Pod::Simple::SimpleTree'=> '3.42',
18081             'Pod::Simple::Text' => '3.42',
18082             'Pod::Simple::TextContent'=> '3.42',
18083             'Pod::Simple::TiedOutFH'=> '3.42',
18084             'Pod::Simple::Transcode'=> '3.42',
18085             'Pod::Simple::TranscodeDumb'=> '3.42',
18086             'Pod::Simple::TranscodeSmart'=> '3.42',
18087             'Pod::Simple::XHTML' => '3.42',
18088             'Pod::Simple::XMLOutStream'=> '3.42',
18089             'Test2' => '1.302183',
18090             'Test2::API' => '1.302183',
18091             'Test2::API::Breakage' => '1.302183',
18092             'Test2::API::Context' => '1.302183',
18093             'Test2::API::Instance' => '1.302183',
18094             'Test2::API::InterceptResult'=> '1.302183',
18095             'Test2::API::InterceptResult::Event'=> '1.302183',
18096             'Test2::API::InterceptResult::Facet'=> '1.302183',
18097             'Test2::API::InterceptResult::Hub'=> '1.302183',
18098             'Test2::API::InterceptResult::Squasher'=> '1.302183',
18099             'Test2::API::Stack' => '1.302183',
18100             'Test2::Event' => '1.302183',
18101             'Test2::Event::Bail' => '1.302183',
18102             'Test2::Event::Diag' => '1.302183',
18103             'Test2::Event::Encoding'=> '1.302183',
18104             'Test2::Event::Exception'=> '1.302183',
18105             'Test2::Event::Fail' => '1.302183',
18106             'Test2::Event::Generic' => '1.302183',
18107             'Test2::Event::Note' => '1.302183',
18108             'Test2::Event::Ok' => '1.302183',
18109             'Test2::Event::Pass' => '1.302183',
18110             'Test2::Event::Plan' => '1.302183',
18111             'Test2::Event::Skip' => '1.302183',
18112             'Test2::Event::Subtest' => '1.302183',
18113             'Test2::Event::TAP::Version'=> '1.302183',
18114             'Test2::Event::V2' => '1.302183',
18115             'Test2::Event::Waiting' => '1.302183',
18116             'Test2::EventFacet' => '1.302183',
18117             'Test2::EventFacet::About'=> '1.302183',
18118             'Test2::EventFacet::Amnesty'=> '1.302183',
18119             'Test2::EventFacet::Assert'=> '1.302183',
18120             'Test2::EventFacet::Control'=> '1.302183',
18121             'Test2::EventFacet::Error'=> '1.302183',
18122             'Test2::EventFacet::Hub'=> '1.302183',
18123             'Test2::EventFacet::Info'=> '1.302183',
18124             'Test2::EventFacet::Info::Table'=> '1.302183',
18125             'Test2::EventFacet::Meta'=> '1.302183',
18126             'Test2::EventFacet::Parent'=> '1.302183',
18127             'Test2::EventFacet::Plan'=> '1.302183',
18128             'Test2::EventFacet::Render'=> '1.302183',
18129             'Test2::EventFacet::Trace'=> '1.302183',
18130             'Test2::Formatter' => '1.302183',
18131             'Test2::Formatter::TAP' => '1.302183',
18132             'Test2::Hub' => '1.302183',
18133             'Test2::Hub::Interceptor'=> '1.302183',
18134             'Test2::Hub::Interceptor::Terminator'=> '1.302183',
18135             'Test2::Hub::Subtest' => '1.302183',
18136             'Test2::IPC' => '1.302183',
18137             'Test2::IPC::Driver' => '1.302183',
18138             'Test2::IPC::Driver::Files'=> '1.302183',
18139             'Test2::Tools::Tiny' => '1.302183',
18140             'Test2::Util' => '1.302183',
18141             'Test2::Util::ExternalMeta'=> '1.302183',
18142             'Test2::Util::Facets2Legacy'=> '1.302183',
18143             'Test2::Util::HashBase' => '1.302183',
18144             'Test2::Util::Trace' => '1.302183',
18145             'Test::Builder' => '1.302183',
18146             'Test::Builder::Formatter'=> '1.302183',
18147             'Test::Builder::Module' => '1.302183',
18148             'Test::Builder::Tester' => '1.302183',
18149             'Test::Builder::Tester::Color'=> '1.302183',
18150             'Test::Builder::TodoDiag'=> '1.302183',
18151             'Test::More' => '1.302183',
18152             'Test::Simple' => '1.302183',
18153             'Test::Tester' => '1.302183',
18154             'Test::Tester::Capture' => '1.302183',
18155             'Test::Tester::CaptureRunner'=> '1.302183',
18156             'Test::Tester::Delegate'=> '1.302183',
18157             'Test::use::ok' => '1.302183',
18158             'XS::APItest' => '1.13',
18159             'ok' => '1.302183',
18160             'perlfaq' => '5.20201107',
18161             },
18162             removed => {
18163             }
18164             },
18165             5.033005 => {
18166             delta_from => 5.033004,
18167             changed => {
18168             'App::Prove' => '3.43',
18169             'App::Prove::State' => '3.43',
18170             'App::Prove::State::Result'=> '3.43',
18171             'App::Prove::State::Result::Test'=> '3.43',
18172             'B::Op_private' => '5.033005',
18173             'Carp' => '1.51',
18174             'Carp::Heavy' => '1.51',
18175             'Config' => '5.033005',
18176             'Config::Perl::V' => '0.33',
18177             'Cwd' => '3.80',
18178             'DynaLoader' => '1.49',
18179             'Encode' => '3.08',
18180             'Encode::GSM0338' => '2.09',
18181             'ExtUtils::Install' => '2.20',
18182             'ExtUtils::Installed' => '2.20',
18183             'ExtUtils::Packlist' => '2.20',
18184             'ExtUtils::ParseXS' => '3.42',
18185             'ExtUtils::ParseXS::Constants'=> '3.42',
18186             'ExtUtils::ParseXS::CountLines'=> '3.42',
18187             'ExtUtils::ParseXS::Eval'=> '3.42',
18188             'ExtUtils::ParseXS::Utilities'=> '3.42',
18189             'File::Copy' => '2.35',
18190             'File::Find' => '1.38',
18191             'File::Spec' => '3.80',
18192             'File::Spec::AmigaOS' => '3.80',
18193             'File::Spec::Cygwin' => '3.80',
18194             'File::Spec::Epoc' => '3.80',
18195             'File::Spec::Functions' => '3.80',
18196             'File::Spec::Mac' => '3.80',
18197             'File::Spec::OS2' => '3.80',
18198             'File::Spec::Unix' => '3.80',
18199             'File::Spec::VMS' => '3.80',
18200             'File::Spec::Win32' => '3.80',
18201             'Module::CoreList' => '5.20201220',
18202             'Module::CoreList::Utils'=> '5.20201220',
18203             'Net::Cmd' => '3.12',
18204             'Net::Config' => '3.12',
18205             'Net::Domain' => '3.12',
18206             'Net::FTP' => '3.12',
18207             'Net::FTP::A' => '3.12',
18208             'Net::FTP::E' => '3.12',
18209             'Net::FTP::I' => '3.12',
18210             'Net::FTP::L' => '3.12',
18211             'Net::FTP::dataconn' => '3.12',
18212             'Net::NNTP' => '3.12',
18213             'Net::Netrc' => '3.12',
18214             'Net::POP3' => '3.12',
18215             'Net::SMTP' => '3.12',
18216             'Net::Time' => '3.12',
18217             'ODBM_File' => '1.17',
18218             'Opcode' => '1.49',
18219             'POSIX' => '1.96',
18220             'PerlIO::via::QuotedPrint'=> '0.09',
18221             'TAP::Base' => '3.43',
18222             'TAP::Formatter::Base' => '3.43',
18223             'TAP::Formatter::Color' => '3.43',
18224             'TAP::Formatter::Console'=> '3.43',
18225             'TAP::Formatter::Console::ParallelSession'=> '3.43',
18226             'TAP::Formatter::Console::Session'=> '3.43',
18227             'TAP::Formatter::File' => '3.43',
18228             'TAP::Formatter::File::Session'=> '3.43',
18229             'TAP::Formatter::Session'=> '3.43',
18230             'TAP::Harness' => '3.43',
18231             'TAP::Harness::Env' => '3.43',
18232             'TAP::Object' => '3.43',
18233             'TAP::Parser' => '3.43',
18234             'TAP::Parser::Aggregator'=> '3.43',
18235             'TAP::Parser::Grammar' => '3.43',
18236             'TAP::Parser::Iterator' => '3.43',
18237             'TAP::Parser::Iterator::Array'=> '3.43',
18238             'TAP::Parser::Iterator::Process'=> '3.43',
18239             'TAP::Parser::Iterator::Stream'=> '3.43',
18240             'TAP::Parser::IteratorFactory'=> '3.43',
18241             'TAP::Parser::Multiplexer'=> '3.43',
18242             'TAP::Parser::Result' => '3.43',
18243             'TAP::Parser::Result::Bailout'=> '3.43',
18244             'TAP::Parser::Result::Comment'=> '3.43',
18245             'TAP::Parser::Result::Plan'=> '3.43',
18246             'TAP::Parser::Result::Pragma'=> '3.43',
18247             'TAP::Parser::Result::Test'=> '3.43',
18248             'TAP::Parser::Result::Unknown'=> '3.43',
18249             'TAP::Parser::Result::Version'=> '3.43',
18250             'TAP::Parser::Result::YAML'=> '3.43',
18251             'TAP::Parser::ResultFactory'=> '3.43',
18252             'TAP::Parser::Scheduler'=> '3.43',
18253             'TAP::Parser::Scheduler::Job'=> '3.43',
18254             'TAP::Parser::Scheduler::Spinner'=> '3.43',
18255             'TAP::Parser::Source' => '3.43',
18256             'TAP::Parser::SourceHandler'=> '3.43',
18257             'TAP::Parser::SourceHandler::Executable'=> '3.43',
18258             'TAP::Parser::SourceHandler::File'=> '3.43',
18259             'TAP::Parser::SourceHandler::Handle'=> '3.43',
18260             'TAP::Parser::SourceHandler::Perl'=> '3.43',
18261             'TAP::Parser::SourceHandler::RawTAP'=> '3.43',
18262             'TAP::Parser::YAMLish::Reader'=> '3.43',
18263             'TAP::Parser::YAMLish::Writer'=> '3.43',
18264             'Test::Harness' => '3.43',
18265             'Text::Balanced' => '2.04',
18266             'Time::HiRes' => '1.9766',
18267             'XS::APItest' => '1.14',
18268             'warnings' => '1.49',
18269             },
18270             removed => {
18271             }
18272             },
18273             5.033006 => {
18274             delta_from => 5.033005,
18275             changed => {
18276             'B::Op_private' => '5.033006',
18277             'Carp' => '1.52',
18278             'Carp::Heavy' => '1.52',
18279             'Compress::Raw::Bzip2' => '2.100',
18280             'Compress::Raw::Zlib' => '2.100',
18281             'Compress::Zlib' => '2.100',
18282             'Config' => '5.033006',
18283             'DynaLoader' => '1.50',
18284             'ExtUtils::Command' => '7.58',
18285             'ExtUtils::Command::MM' => '7.58',
18286             'ExtUtils::Liblist' => '7.58',
18287             'ExtUtils::Liblist::Kid'=> '7.58',
18288             'ExtUtils::MM' => '7.58',
18289             'ExtUtils::MM_AIX' => '7.58',
18290             'ExtUtils::MM_Any' => '7.58',
18291             'ExtUtils::MM_BeOS' => '7.58',
18292             'ExtUtils::MM_Cygwin' => '7.58',
18293             'ExtUtils::MM_DOS' => '7.58',
18294             'ExtUtils::MM_Darwin' => '7.58',
18295             'ExtUtils::MM_MacOS' => '7.58',
18296             'ExtUtils::MM_NW5' => '7.58',
18297             'ExtUtils::MM_OS2' => '7.58',
18298             'ExtUtils::MM_OS390' => '7.58',
18299             'ExtUtils::MM_QNX' => '7.58',
18300             'ExtUtils::MM_UWIN' => '7.58',
18301             'ExtUtils::MM_Unix' => '7.58',
18302             'ExtUtils::MM_VMS' => '7.58',
18303             'ExtUtils::MM_VOS' => '7.58',
18304             'ExtUtils::MM_Win32' => '7.58',
18305             'ExtUtils::MM_Win95' => '7.58',
18306             'ExtUtils::MY' => '7.58',
18307             'ExtUtils::MakeMaker' => '7.58',
18308             'ExtUtils::MakeMaker::Config'=> '7.58',
18309             'ExtUtils::MakeMaker::Locale'=> '7.58',
18310             'ExtUtils::MakeMaker::version'=> '7.58',
18311             'ExtUtils::MakeMaker::version::regex'=> '7.58',
18312             'ExtUtils::Manifest' => '1.73',
18313             'ExtUtils::Mkbootstrap' => '7.58',
18314             'ExtUtils::Mksymlists' => '7.58',
18315             'ExtUtils::testlib' => '7.58',
18316             'GDBM_File' => '1.19',
18317             'IO' => '1.45',
18318             'IO::Compress::Adapter::Bzip2'=> '2.100',
18319             'IO::Compress::Adapter::Deflate'=> '2.100',
18320             'IO::Compress::Adapter::Identity'=> '2.100',
18321             'IO::Compress::Base' => '2.100',
18322             'IO::Compress::Base::Common'=> '2.100',
18323             'IO::Compress::Bzip2' => '2.100',
18324             'IO::Compress::Deflate' => '2.100',
18325             'IO::Compress::Gzip' => '2.100',
18326             'IO::Compress::Gzip::Constants'=> '2.100',
18327             'IO::Compress::RawDeflate'=> '2.100',
18328             'IO::Compress::Zip' => '2.100',
18329             'IO::Compress::Zip::Constants'=> '2.100',
18330             'IO::Compress::Zlib::Constants'=> '2.100',
18331             'IO::Compress::Zlib::Extra'=> '2.100',
18332             'IO::Dir' => '1.45',
18333             'IO::File' => '1.45',
18334             'IO::Handle' => '1.45',
18335             'IO::Pipe' => '1.45',
18336             'IO::Poll' => '1.45',
18337             'IO::Seekable' => '1.45',
18338             'IO::Select' => '1.45',
18339             'IO::Socket' => '1.45',
18340             'IO::Socket::INET' => '1.45',
18341             'IO::Socket::UNIX' => '1.45',
18342             'IO::Uncompress::Adapter::Bunzip2'=> '2.100',
18343             'IO::Uncompress::Adapter::Identity'=> '2.100',
18344             'IO::Uncompress::Adapter::Inflate'=> '2.100',
18345             'IO::Uncompress::AnyInflate'=> '2.100',
18346             'IO::Uncompress::AnyUncompress'=> '2.100',
18347             'IO::Uncompress::Base' => '2.100',
18348             'IO::Uncompress::Bunzip2'=> '2.100',
18349             'IO::Uncompress::Gunzip'=> '2.100',
18350             'IO::Uncompress::Inflate'=> '2.100',
18351             'IO::Uncompress::RawInflate'=> '2.100',
18352             'IO::Uncompress::Unzip' => '2.100',
18353             'Module::CoreList' => '5.20210120',
18354             'Module::CoreList::Utils'=> '5.20210120',
18355             'Net::Cmd' => '3.13',
18356             'Net::Config' => '3.13',
18357             'Net::Domain' => '3.13',
18358             'Net::FTP' => '3.13',
18359             'Net::FTP::A' => '3.13',
18360             'Net::FTP::E' => '3.13',
18361             'Net::FTP::I' => '3.13',
18362             'Net::FTP::L' => '3.13',
18363             'Net::FTP::dataconn' => '3.13',
18364             'Net::NNTP' => '3.13',
18365             'Net::Netrc' => '3.13',
18366             'Net::POP3' => '3.13',
18367             'Net::SMTP' => '3.13',
18368             'Net::Time' => '3.13',
18369             'POSIX' => '1.97',
18370             'Socket' => '2.031',
18371             'XS::APItest' => '1.15',
18372             'feature' => '1.62',
18373             'warnings' => '1.50',
18374             },
18375             removed => {
18376             }
18377             },
18378             5.032001 => {
18379             delta_from => 5.032000,
18380             changed => {
18381             'B::Op_private' => '5.032001',
18382             'Config' => '5.032001',
18383             'Data::Dumper' => '2.174_01',
18384             'DynaLoader' => '1.47_01',
18385             'ExtUtils::Liblist::Kid'=> '7.44_01',
18386             'Module::CoreList' => '5.20210123',
18387             'Module::CoreList::Utils'=> '5.20210123',
18388             'Opcode' => '1.48',
18389             'Safe' => '2.41_01',
18390             'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
18391             },
18392             removed => {
18393             }
18394             },
18395             5.033007 => {
18396             delta_from => 5.033006,
18397             changed => {
18398             'B::Deparse' => '1.56',
18399             'B::Op_private' => '5.033007',
18400             'Config' => '5.033007',
18401             'ExtUtils::CBuilder' => '0.280236',
18402             'ExtUtils::CBuilder::Base'=> '0.280236',
18403             'ExtUtils::CBuilder::Platform::Unix'=> '0.280236',
18404             'ExtUtils::CBuilder::Platform::VMS'=> '0.280236',
18405             'ExtUtils::CBuilder::Platform::Windows'=> '0.280236',
18406             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280236',
18407             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280236',
18408             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280236',
18409             'ExtUtils::CBuilder::Platform::aix'=> '0.280236',
18410             'ExtUtils::CBuilder::Platform::android'=> '0.280236',
18411             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280236',
18412             'ExtUtils::CBuilder::Platform::darwin'=> '0.280236',
18413             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280236',
18414             'ExtUtils::CBuilder::Platform::os2'=> '0.280236',
18415             'ExtUtils::Command' => '7.60',
18416             'ExtUtils::Command::MM' => '7.60',
18417             'ExtUtils::Liblist' => '7.60',
18418             'ExtUtils::Liblist::Kid'=> '7.60',
18419             'ExtUtils::MM' => '7.60',
18420             'ExtUtils::MM_AIX' => '7.60',
18421             'ExtUtils::MM_Any' => '7.60',
18422             'ExtUtils::MM_BeOS' => '7.60',
18423             'ExtUtils::MM_Cygwin' => '7.60',
18424             'ExtUtils::MM_DOS' => '7.60',
18425             'ExtUtils::MM_Darwin' => '7.60',
18426             'ExtUtils::MM_MacOS' => '7.60',
18427             'ExtUtils::MM_NW5' => '7.60',
18428             'ExtUtils::MM_OS2' => '7.60',
18429             'ExtUtils::MM_OS390' => '7.60',
18430             'ExtUtils::MM_QNX' => '7.60',
18431             'ExtUtils::MM_UWIN' => '7.60',
18432             'ExtUtils::MM_Unix' => '7.60',
18433             'ExtUtils::MM_VMS' => '7.60',
18434             'ExtUtils::MM_VOS' => '7.60',
18435             'ExtUtils::MM_Win32' => '7.60',
18436             'ExtUtils::MM_Win95' => '7.60',
18437             'ExtUtils::MY' => '7.60',
18438             'ExtUtils::MakeMaker' => '7.60',
18439             'ExtUtils::MakeMaker::Config'=> '7.60',
18440             'ExtUtils::MakeMaker::Locale'=> '7.60',
18441             'ExtUtils::MakeMaker::version'=> '7.60',
18442             'ExtUtils::MakeMaker::version::regex'=> '7.60',
18443             'ExtUtils::Mkbootstrap' => '7.60',
18444             'ExtUtils::Mksymlists' => '7.60',
18445             'ExtUtils::PL2Bat' => '0.004',
18446             'ExtUtils::testlib' => '7.60',
18447             'Fatal' => '2.34',
18448             'File::Find' => '1.39',
18449             'Hash::Util' => '0.25',
18450             'IO' => '1.46',
18451             'IO::Dir' => '1.46',
18452             'IO::File' => '1.46',
18453             'IO::Handle' => '1.46',
18454             'IO::Pipe' => '1.46',
18455             'IO::Poll' => '1.46',
18456             'IO::Seekable' => '1.46',
18457             'IO::Select' => '1.46',
18458             'IO::Socket' => '1.46',
18459             'IO::Socket::INET' => '1.46',
18460             'IO::Socket::UNIX' => '1.46',
18461             'JSON::PP' => '4.06',
18462             'JSON::PP::Boolean' => '4.06',
18463             'Module::CoreList' => '5.20210220',
18464             'Module::CoreList::Utils'=> '5.20210220',
18465             'Opcode' => '1.50',
18466             'PerlIO::encoding' => '0.30',
18467             'Time::HiRes' => '1.9767',
18468             'autodie' => '2.34',
18469             'autodie::Scope::Guard' => '2.34',
18470             'autodie::Scope::GuardStack'=> '2.34',
18471             'autodie::Util' => '2.34',
18472             'autodie::exception' => '2.34',
18473             'autodie::exception::system'=> '2.34',
18474             'autodie::hints' => '2.34',
18475             'autodie::skip' => '2.34',
18476             'feature' => '1.63',
18477             'mro' => '1.25_001',
18478             'warnings' => '1.51',
18479             },
18480             removed => {
18481             }
18482             },
18483             5.033008 => {
18484             delta_from => 5.033007,
18485             changed => {
18486             'B::Op_private' => '5.033008',
18487             'Compress::Raw::Bzip2' => '2.101',
18488             'Compress::Raw::Zlib' => '2.101',
18489             'Compress::Zlib' => '2.102',
18490             'Config' => '5.033008',
18491             'Data::Dumper' => '2.177',
18492             'IO::Compress::Adapter::Bzip2'=> '2.102',
18493             'IO::Compress::Adapter::Deflate'=> '2.102',
18494             'IO::Compress::Adapter::Identity'=> '2.102',
18495             'IO::Compress::Base' => '2.102',
18496             'IO::Compress::Base::Common'=> '2.102',
18497             'IO::Compress::Bzip2' => '2.102',
18498             'IO::Compress::Deflate' => '2.102',
18499             'IO::Compress::Gzip' => '2.102',
18500             'IO::Compress::Gzip::Constants'=> '2.102',
18501             'IO::Compress::RawDeflate'=> '2.102',
18502             'IO::Compress::Zip' => '2.102',
18503             'IO::Compress::Zip::Constants'=> '2.102',
18504             'IO::Compress::Zlib::Constants'=> '2.102',
18505             'IO::Compress::Zlib::Extra'=> '2.102',
18506             'IO::Uncompress::Adapter::Bunzip2'=> '2.102',
18507             'IO::Uncompress::Adapter::Identity'=> '2.102',
18508             'IO::Uncompress::Adapter::Inflate'=> '2.102',
18509             'IO::Uncompress::AnyInflate'=> '2.102',
18510             'IO::Uncompress::AnyUncompress'=> '2.102',
18511             'IO::Uncompress::Base' => '2.102',
18512             'IO::Uncompress::Bunzip2'=> '2.102',
18513             'IO::Uncompress::Gunzip'=> '2.102',
18514             'IO::Uncompress::Inflate'=> '2.102',
18515             'IO::Uncompress::RawInflate'=> '2.102',
18516             'IO::Uncompress::Unzip' => '2.102',
18517             'Module::CoreList' => '5.20210320',
18518             'Module::CoreList::Utils'=> '5.20210320',
18519             'Pod::Html' => '1.27',
18520             'Win32' => '0.57',
18521             },
18522             removed => {
18523             }
18524             },
18525             5.033009 => {
18526             delta_from => 5.033008,
18527             changed => {
18528             'B::Op_private' => '5.033009',
18529             'Config' => '5.033009',
18530             'Data::Dumper' => '2.178',
18531             'ExtUtils::Command' => '7.62',
18532             'ExtUtils::Command::MM' => '7.62',
18533             'ExtUtils::Liblist' => '7.62',
18534             'ExtUtils::Liblist::Kid'=> '7.62',
18535             'ExtUtils::MM' => '7.62',
18536             'ExtUtils::MM_AIX' => '7.62',
18537             'ExtUtils::MM_Any' => '7.62',
18538             'ExtUtils::MM_BeOS' => '7.62',
18539             'ExtUtils::MM_Cygwin' => '7.62',
18540             'ExtUtils::MM_DOS' => '7.62',
18541             'ExtUtils::MM_Darwin' => '7.62',
18542             'ExtUtils::MM_MacOS' => '7.62',
18543             'ExtUtils::MM_NW5' => '7.62',
18544             'ExtUtils::MM_OS2' => '7.62',
18545             'ExtUtils::MM_OS390' => '7.62',
18546             'ExtUtils::MM_QNX' => '7.62',
18547             'ExtUtils::MM_UWIN' => '7.62',
18548             'ExtUtils::MM_Unix' => '7.62',
18549             'ExtUtils::MM_VMS' => '7.62',
18550             'ExtUtils::MM_VOS' => '7.62',
18551             'ExtUtils::MM_Win32' => '7.62',
18552             'ExtUtils::MM_Win95' => '7.62',
18553             'ExtUtils::MY' => '7.62',
18554             'ExtUtils::MakeMaker' => '7.62',
18555             'ExtUtils::MakeMaker::Config'=> '7.62',
18556             'ExtUtils::MakeMaker::Locale'=> '7.62',
18557             'ExtUtils::MakeMaker::version'=> '7.62',
18558             'ExtUtils::MakeMaker::version::regex'=> '7.62',
18559             'ExtUtils::Mkbootstrap' => '7.62',
18560             'ExtUtils::Mksymlists' => '7.62',
18561             'ExtUtils::ParseXS' => '3.43',
18562             'ExtUtils::ParseXS::Constants'=> '3.43',
18563             'ExtUtils::ParseXS::CountLines'=> '3.43',
18564             'ExtUtils::ParseXS::Eval'=> '3.43',
18565             'ExtUtils::ParseXS::Utilities'=> '3.43',
18566             'ExtUtils::Typemaps' => '3.43',
18567             'ExtUtils::Typemaps::Cmd'=> '3.43',
18568             'ExtUtils::Typemaps::InputMap'=> '3.43',
18569             'ExtUtils::Typemaps::OutputMap'=> '3.43',
18570             'ExtUtils::Typemaps::Type'=> '3.43',
18571             'ExtUtils::testlib' => '7.62',
18572             'Module::CoreList' => '5.20210420',
18573             'Module::CoreList::Utils'=> '5.20210420',
18574             'NEXT' => '0.68',
18575             'XS::APItest' => '1.16',
18576             'feature' => '1.64',
18577             'perlfaq' => '5.20210411',
18578             },
18579             removed => {
18580             }
18581             },
18582             5.034000 => {
18583             delta_from => 5.033009,
18584             changed => {
18585             'B::Op_private' => '5.034000',
18586             'Config' => '5.034',
18587             'Data::Dumper' => '2.179',
18588             'Module::CoreList' => '5.20210520',
18589             'Module::CoreList::Utils'=> '5.20210520',
18590             'experimental' => '0.024',
18591             },
18592             removed => {
18593             }
18594             },
18595             5.035000 => {
18596             delta_from => 5.034,
18597             changed => {
18598             'B::Op_private' => '5.035000',
18599             'Config' => '5.035',
18600             'Module::CoreList' => '5.20210521',
18601             'Module::CoreList::Utils'=> '5.20210521',
18602             'feature' => '1.65',
18603             },
18604             removed => {
18605             }
18606             },
18607             5.035001 => {
18608             delta_from => 5.035000,
18609             changed => {
18610             'B::Deparse' => '1.57',
18611             'B::Op_private' => '5.035001',
18612             'Config' => '5.035001',
18613             'Cwd' => '3.81',
18614             'Data::Dumper' => '2.181',
18615             'File::Copy' => '2.36',
18616             'File::Glob' => '1.35',
18617             'File::Spec' => '3.81',
18618             'File::Spec::AmigaOS' => '3.81',
18619             'File::Spec::Cygwin' => '3.81',
18620             'File::Spec::Epoc' => '3.81',
18621             'File::Spec::Functions' => '3.81',
18622             'File::Spec::Mac' => '3.81',
18623             'File::Spec::OS2' => '3.81',
18624             'File::Spec::Unix' => '3.81',
18625             'File::Spec::VMS' => '3.81',
18626             'File::Spec::Win32' => '3.81',
18627             'File::stat' => '1.10',
18628             'IO' => '1.47',
18629             'IO::Dir' => '1.47',
18630             'IO::File' => '1.47',
18631             'IO::Handle' => '1.47',
18632             'IO::Pipe' => '1.47',
18633             'IO::Poll' => '1.47',
18634             'IO::Seekable' => '1.47',
18635             'IO::Select' => '1.47',
18636             'IO::Socket' => '1.47',
18637             'IO::Socket::INET' => '1.47',
18638             'IO::Socket::UNIX' => '1.47',
18639             'List::Util' => '1.56',
18640             'List::Util::XS' => '1.56',
18641             'Module::CoreList' => '5.20210620',
18642             'Module::CoreList::Utils'=> '5.20210620',
18643             'Opcode' => '1.51',
18644             'POSIX' => '1.98',
18645             'Scalar::Util' => '1.56',
18646             'Socket' => '2.032',
18647             'Sub::Util' => '1.56',
18648             'Test2' => '1.302185',
18649             'Test2::API' => '1.302185',
18650             'Test2::API::Breakage' => '1.302185',
18651             'Test2::API::Context' => '1.302185',
18652             'Test2::API::Instance' => '1.302185',
18653             'Test2::API::InterceptResult'=> '1.302185',
18654             'Test2::API::InterceptResult::Event'=> '1.302185',
18655             'Test2::API::InterceptResult::Facet'=> '1.302185',
18656             'Test2::API::InterceptResult::Hub'=> '1.302185',
18657             'Test2::API::InterceptResult::Squasher'=> '1.302185',
18658             'Test2::API::Stack' => '1.302185',
18659             'Test2::Event' => '1.302185',
18660             'Test2::Event::Bail' => '1.302185',
18661             'Test2::Event::Diag' => '1.302185',
18662             'Test2::Event::Encoding'=> '1.302185',
18663             'Test2::Event::Exception'=> '1.302185',
18664             'Test2::Event::Fail' => '1.302185',
18665             'Test2::Event::Generic' => '1.302185',
18666             'Test2::Event::Note' => '1.302185',
18667             'Test2::Event::Ok' => '1.302185',
18668             'Test2::Event::Pass' => '1.302185',
18669             'Test2::Event::Plan' => '1.302185',
18670             'Test2::Event::Skip' => '1.302185',
18671             'Test2::Event::Subtest' => '1.302185',
18672             'Test2::Event::TAP::Version'=> '1.302185',
18673             'Test2::Event::V2' => '1.302185',
18674             'Test2::Event::Waiting' => '1.302185',
18675             'Test2::EventFacet' => '1.302185',
18676             'Test2::EventFacet::About'=> '1.302185',
18677             'Test2::EventFacet::Amnesty'=> '1.302185',
18678             'Test2::EventFacet::Assert'=> '1.302185',
18679             'Test2::EventFacet::Control'=> '1.302185',
18680             'Test2::EventFacet::Error'=> '1.302185',
18681             'Test2::EventFacet::Hub'=> '1.302185',
18682             'Test2::EventFacet::Info'=> '1.302185',
18683             'Test2::EventFacet::Info::Table'=> '1.302185',
18684             'Test2::EventFacet::Meta'=> '1.302185',
18685             'Test2::EventFacet::Parent'=> '1.302185',
18686             'Test2::EventFacet::Plan'=> '1.302185',
18687             'Test2::EventFacet::Render'=> '1.302185',
18688             'Test2::EventFacet::Trace'=> '1.302185',
18689             'Test2::Formatter' => '1.302185',
18690             'Test2::Formatter::TAP' => '1.302185',
18691             'Test2::Hub' => '1.302185',
18692             'Test2::Hub::Interceptor'=> '1.302185',
18693             'Test2::Hub::Interceptor::Terminator'=> '1.302185',
18694             'Test2::Hub::Subtest' => '1.302185',
18695             'Test2::IPC' => '1.302185',
18696             'Test2::IPC::Driver' => '1.302185',
18697             'Test2::IPC::Driver::Files'=> '1.302185',
18698             'Test2::Tools::Tiny' => '1.302185',
18699             'Test2::Util' => '1.302185',
18700             'Test2::Util::ExternalMeta'=> '1.302185',
18701             'Test2::Util::Facets2Legacy'=> '1.302185',
18702             'Test2::Util::HashBase' => '1.302185',
18703             'Test2::Util::Trace' => '1.302185',
18704             'Test::Builder' => '1.302185',
18705             'Test::Builder::Formatter'=> '1.302185',
18706             'Test::Builder::Module' => '1.302185',
18707             'Test::Builder::Tester' => '1.302185',
18708             'Test::Builder::Tester::Color'=> '1.302185',
18709             'Test::Builder::TodoDiag'=> '1.302185',
18710             'Test::More' => '1.302185',
18711             'Test::Simple' => '1.302185',
18712             'Test::Tester' => '1.302185',
18713             'Test::Tester::Capture' => '1.302185',
18714             'Test::Tester::CaptureRunner'=> '1.302185',
18715             'Test::Tester::Delegate'=> '1.302185',
18716             'Test::use::ok' => '1.302185',
18717             'Unicode::Collate' => '1.30',
18718             'Unicode::Collate::CJK::Big5'=> '1.30',
18719             'Unicode::Collate::CJK::GB2312'=> '1.30',
18720             'Unicode::Collate::CJK::JISX0208'=> '1.30',
18721             'Unicode::Collate::CJK::Korean'=> '1.30',
18722             'Unicode::Collate::CJK::Pinyin'=> '1.30',
18723             'Unicode::Collate::CJK::Stroke'=> '1.30',
18724             'Unicode::Collate::CJK::Zhuyin'=> '1.30',
18725             'Unicode::Collate::Locale'=> '1.30',
18726             'Unicode::UCD' => '0.76',
18727             'XS::APItest' => '1.17',
18728             'feature' => '1.66',
18729             'ok' => '1.302185',
18730             'open' => '1.13',
18731             'perlfaq' => '5.20210520',
18732             'version' => '0.9929',
18733             'version::regex' => '0.9929',
18734             },
18735             removed => {
18736             }
18737             },
18738             5.035002 => {
18739             delta_from => 5.035001,
18740             changed => {
18741             'Amiga::ARexx' => '0.06',
18742             'Amiga::Exec' => '0.03',
18743             'B::Concise' => '1.005',
18744             'B::Op_private' => '5.035002',
18745             'Config' => '5.035002',
18746             'Cwd' => '3.82',
18747             'DB_File' => '1.856',
18748             'Data::Dumper' => '2.183',
18749             'Devel::PPPort' => '3.63',
18750             'Devel::Peek' => '1.31',
18751             'DynaLoader' => '1.51',
18752             'Encode' => '3.10',
18753             'Encode::JP' => '2.05',
18754             'Errno' => '1.34',
18755             'ExtUtils::Miniperl' => '1.11',
18756             'Fcntl' => '1.15',
18757             'File::Find' => '1.39_01',
18758             'File::Glob' => '1.36',
18759             'File::stat' => '1.11',
18760             'GDBM_File' => '1.20',
18761             'Hash::Util' => '0.26',
18762             'Hash::Util::FieldHash' => '1.22',
18763             'I18N::Langinfo' => '0.20',
18764             'IPC::Open2' => '1.06',
18765             'IPC::Open3' => '1.22',
18766             'Math::BigFloat' => '1.999823',
18767             'Math::BigFloat::Trace' => '0.53',
18768             'Math::BigInt' => '1.999823',
18769             'Math::BigInt::Calc' => '1.999823',
18770             'Math::BigInt::FastCalc'=> '0.5010',
18771             'Math::BigInt::Lib' => '1.999823',
18772             'Math::BigInt::Trace' => '0.53',
18773             'Math::BigRat' => '0.2617',
18774             'Module::CoreList' => '5.20210723',
18775             'Module::CoreList::Utils'=> '5.20210723',
18776             'Opcode' => '1.52',
18777             'PerlIO' => '1.12',
18778             'Pod::Functions' => '1.14',
18779             'Pod::Html' => '1.31',
18780             'Pod::Html::Util' => '1.31',
18781             'Pod::Simple' => '3.43',
18782             'Pod::Simple::BlackBox' => '3.43',
18783             'Pod::Simple::Checker' => '3.43',
18784             'Pod::Simple::Debug' => '3.43',
18785             'Pod::Simple::DumpAsText'=> '3.43',
18786             'Pod::Simple::DumpAsXML'=> '3.43',
18787             'Pod::Simple::HTML' => '3.43',
18788             'Pod::Simple::HTMLBatch'=> '3.43',
18789             'Pod::Simple::LinkSection'=> '3.43',
18790             'Pod::Simple::Methody' => '3.43',
18791             'Pod::Simple::Progress' => '3.43',
18792             'Pod::Simple::PullParser'=> '3.43',
18793             'Pod::Simple::PullParserEndToken'=> '3.43',
18794             'Pod::Simple::PullParserStartToken'=> '3.43',
18795             'Pod::Simple::PullParserTextToken'=> '3.43',
18796             'Pod::Simple::PullParserToken'=> '3.43',
18797             'Pod::Simple::RTF' => '3.43',
18798             'Pod::Simple::Search' => '3.43',
18799             'Pod::Simple::SimpleTree'=> '3.43',
18800             'Pod::Simple::Text' => '3.43',
18801             'Pod::Simple::TextContent'=> '3.43',
18802             'Pod::Simple::TiedOutFH'=> '3.43',
18803             'Pod::Simple::Transcode'=> '3.43',
18804             'Pod::Simple::TranscodeDumb'=> '3.43',
18805             'Pod::Simple::TranscodeSmart'=> '3.43',
18806             'Pod::Simple::XHTML' => '3.43',
18807             'Pod::Simple::XMLOutStream'=> '3.43',
18808             'Sys::Hostname' => '1.24',
18809             'Text::Tabs' => '2021.0717',
18810             'Text::Wrap' => '2021.0717',
18811             'Time::HiRes' => '1.9768',
18812             'Unicode::UCD' => '0.77',
18813             'VMS::Filespec' => '1.13',
18814             'VMS::Stdio' => '2.46',
18815             'XSLoader' => '0.31',
18816             'bigint' => '0.53',
18817             'bignum' => '0.53',
18818             'bigrat' => '0.53',
18819             'if' => '0.0610',
18820             'threads' => '2.27',
18821             'warnings' => '1.52',
18822             },
18823             removed => {
18824             }
18825             },
18826             5.035003 => {
18827             delta_from => 5.035002,
18828             changed => {
18829             'Archive::Tar' => '2.40',
18830             'Archive::Tar::Constant'=> '2.40',
18831             'Archive::Tar::File' => '2.40',
18832             'B::Op_private' => '5.035003',
18833             'Config' => '5.035003',
18834             'Encode' => '3.12',
18835             'Encode::GSM0338' => '2.10',
18836             'Encode::Unicode' => '2.19',
18837             'Module::CoreList' => '5.20210820',
18838             'Module::CoreList::Utils'=> '5.20210820',
18839             'Net::hostent' => '1.03',
18840             'Opcode' => '1.53',
18841             'POSIX' => '1.99',
18842             'Pod::Html' => '1.32',
18843             'Pod::Html::Util' => '1.32',
18844             'Storable' => '3.24',
18845             'Text::Tabs' => '2021.0804',
18846             'Text::Wrap' => '2021.0804',
18847             'Time::HiRes' => '1.9769',
18848             'Unicode::Normalize' => '1.30',
18849             'XS::APItest' => '1.18',
18850             'diagnostics' => '1.38',
18851             'feature' => '1.67',
18852             'sort' => '2.05',
18853             'threads::shared' => '1.63',
18854             'warnings' => '1.53',
18855             },
18856             removed => {
18857             }
18858             },
18859             5.035004 => {
18860             delta_from => 5.035003,
18861             changed => {
18862             'B' => '1.83',
18863             'B::Deparse' => '1.58',
18864             'B::Op_private' => '5.035004',
18865             'Config' => '5.035004',
18866             'Devel::Peek' => '1.32',
18867             'Exporter' => '5.77',
18868             'Exporter::Heavy' => '5.77',
18869             'ExtUtils::ParseXS' => '3.44',
18870             'ExtUtils::ParseXS::Constants'=> '3.44',
18871             'ExtUtils::ParseXS::CountLines'=> '3.44',
18872             'ExtUtils::ParseXS::Eval'=> '3.44',
18873             'ExtUtils::ParseXS::Utilities'=> '3.44',
18874             'ExtUtils::Typemaps' => '3.44',
18875             'ExtUtils::Typemaps::Cmd'=> '3.44',
18876             'ExtUtils::Typemaps::InputMap'=> '3.44',
18877             'ExtUtils::Typemaps::OutputMap'=> '3.44',
18878             'ExtUtils::Typemaps::Type'=> '3.44',
18879             'Hash::Util::FieldHash' => '1.23',
18880             'IO' => '1.48',
18881             'IO::Dir' => '1.48',
18882             'IO::File' => '1.48',
18883             'IO::Handle' => '1.48',
18884             'IO::Pipe' => '1.48',
18885             'IO::Poll' => '1.48',
18886             'IO::Seekable' => '1.48',
18887             'IO::Select' => '1.48',
18888             'IO::Socket' => '1.48',
18889             'IO::Socket::INET' => '1.48',
18890             'IO::Socket::UNIX' => '1.48',
18891             'List::Util' => '1.56_001',
18892             'List::Util::XS' => '1.56_001',
18893             'Module::CoreList' => '5.20210920',
18894             'Module::CoreList::Utils'=> '5.20210920',
18895             'Opcode' => '1.54',
18896             'Pod::Html' => '1.33',
18897             'Pod::Html::Util' => '1.33',
18898             'Scalar::Util' => '1.56_001',
18899             'Storable' => '3.25',
18900             'Sub::Util' => '1.56_001',
18901             'Text::Tabs' => '2021.0814',
18902             'Text::Wrap' => '2021.0814',
18903             'UNIVERSAL' => '1.14',
18904             'Unicode' => '14.0.0',
18905             'Unicode::Collate' => '1.31',
18906             'Unicode::Collate::CJK::Big5'=> '1.31',
18907             'Unicode::Collate::CJK::GB2312'=> '1.31',
18908             'Unicode::Collate::CJK::JISX0208'=> '1.31',
18909             'Unicode::Collate::CJK::Korean'=> '1.31',
18910             'Unicode::Collate::CJK::Pinyin'=> '1.31',
18911             'Unicode::Collate::CJK::Stroke'=> '1.31',
18912             'Unicode::Collate::CJK::Zhuyin'=> '1.31',
18913             'Unicode::Collate::Locale'=> '1.31',
18914             'Unicode::UCD' => '0.78',
18915             'XS::APItest' => '1.19',
18916             'XS::Typemap' => '0.19',
18917             'attributes' => '0.34',
18918             'feature' => '1.68',
18919             'mro' => '1.26',
18920             'threads::shared' => '1.64',
18921             'warnings' => '1.54',
18922             },
18923             removed => {
18924             }
18925             },
18926             5.035005 => {
18927             delta_from => 5.035004,
18928             changed => {
18929             'B::Concise' => '1.006',
18930             'B::Deparse' => '1.59',
18931             'B::Op_private' => '5.035005',
18932             'Config' => '5.035005',
18933             'Digest' => '1.20',
18934             'Digest::base' => '1.20',
18935             'Digest::file' => '1.20',
18936             'DynaLoader' => '1.52',
18937             'Encode' => '3.16',
18938             'Errno' => '1.35',
18939             'File::Copy' => '2.37',
18940             'File::Spec::Unix' => '3.82',
18941             'FindBin' => '1.53',
18942             'GDBM_File' => '1.21',
18943             'HTTP::Tiny' => '0.078',
18944             'I18N::Langinfo' => '0.21',
18945             'IO::Dir' => '1.49',
18946             'IO::Pipe' => '1.49',
18947             'IO::Poll' => '1.49',
18948             'IO::Select' => '1.49',
18949             'IO::Socket' => '1.49',
18950             'IO::Socket::INET' => '1.49',
18951             'IO::Socket::UNIX' => '1.49',
18952             'List::Util' => '1.60',
18953             'List::Util::XS' => '1.60',
18954             'Math::BigRat::Trace' => '0.63',
18955             'Module::CoreList' => '5.20211020',
18956             'Module::CoreList::Utils'=> '5.20211020',
18957             'POSIX' => '2.01',
18958             'Scalar::Util' => '1.60',
18959             'Sub::Util' => '1.60',
18960             'Test2' => '1.302188',
18961             'Test2::API' => '1.302188',
18962             'Test2::API::Breakage' => '1.302188',
18963             'Test2::API::Context' => '1.302188',
18964             'Test2::API::Instance' => '1.302188',
18965             'Test2::API::InterceptResult'=> '1.302188',
18966             'Test2::API::InterceptResult::Event'=> '1.302188',
18967             'Test2::API::InterceptResult::Facet'=> '1.302188',
18968             'Test2::API::InterceptResult::Hub'=> '1.302188',
18969             'Test2::API::InterceptResult::Squasher'=> '1.302188',
18970             'Test2::API::Stack' => '1.302188',
18971             'Test2::Event' => '1.302188',
18972             'Test2::Event::Bail' => '1.302188',
18973             'Test2::Event::Diag' => '1.302188',
18974             'Test2::Event::Encoding'=> '1.302188',
18975             'Test2::Event::Exception'=> '1.302188',
18976             'Test2::Event::Fail' => '1.302188',
18977             'Test2::Event::Generic' => '1.302188',
18978             'Test2::Event::Note' => '1.302188',
18979             'Test2::Event::Ok' => '1.302188',
18980             'Test2::Event::Pass' => '1.302188',
18981             'Test2::Event::Plan' => '1.302188',
18982             'Test2::Event::Skip' => '1.302188',
18983             'Test2::Event::Subtest' => '1.302188',
18984             'Test2::Event::TAP::Version'=> '1.302188',
18985             'Test2::Event::V2' => '1.302188',
18986             'Test2::Event::Waiting' => '1.302188',
18987             'Test2::EventFacet' => '1.302188',
18988             'Test2::EventFacet::About'=> '1.302188',
18989             'Test2::EventFacet::Amnesty'=> '1.302188',
18990             'Test2::EventFacet::Assert'=> '1.302188',
18991             'Test2::EventFacet::Control'=> '1.302188',
18992             'Test2::EventFacet::Error'=> '1.302188',
18993             'Test2::EventFacet::Hub'=> '1.302188',
18994             'Test2::EventFacet::Info'=> '1.302188',
18995             'Test2::EventFacet::Info::Table'=> '1.302188',
18996             'Test2::EventFacet::Meta'=> '1.302188',
18997             'Test2::EventFacet::Parent'=> '1.302188',
18998             'Test2::EventFacet::Plan'=> '1.302188',
18999             'Test2::EventFacet::Render'=> '1.302188',
19000             'Test2::EventFacet::Trace'=> '1.302188',
19001             'Test2::Formatter' => '1.302188',
19002             'Test2::Formatter::TAP' => '1.302188',
19003             'Test2::Hub' => '1.302188',
19004             'Test2::Hub::Interceptor'=> '1.302188',
19005             'Test2::Hub::Interceptor::Terminator'=> '1.302188',
19006             'Test2::Hub::Subtest' => '1.302188',
19007             'Test2::IPC' => '1.302188',
19008             'Test2::IPC::Driver' => '1.302188',
19009             'Test2::IPC::Driver::Files'=> '1.302188',
19010             'Test2::Tools::Tiny' => '1.302188',
19011             'Test2::Util' => '1.302188',
19012             'Test2::Util::ExternalMeta'=> '1.302188',
19013             'Test2::Util::Facets2Legacy'=> '1.302188',
19014             'Test2::Util::HashBase' => '1.302188',
19015             'Test2::Util::Trace' => '1.302188',
19016             'Test::Builder' => '1.302188',
19017             'Test::Builder::Formatter'=> '1.302188',
19018             'Test::Builder::Module' => '1.302188',
19019             'Test::Builder::Tester' => '1.302188',
19020             'Test::Builder::Tester::Color'=> '1.302188',
19021             'Test::Builder::TodoDiag'=> '1.302188',
19022             'Test::More' => '1.302188',
19023             'Test::Simple' => '1.302188',
19024             'Test::Tester' => '1.302188',
19025             'Test::Tester::Capture' => '1.302188',
19026             'Test::Tester::CaptureRunner'=> '1.302188',
19027             'Test::Tester::Delegate'=> '1.302188',
19028             'Test::use::ok' => '1.302188',
19029             'Tie::Handle' => '4.3',
19030             'Tie::Hash' => '1.06',
19031             'Tie::Scalar' => '1.06',
19032             'XS::APItest' => '1.20',
19033             'experimental' => '0.025',
19034             'ok' => '1.302188',
19035             'warnings' => '1.55',
19036             },
19037             removed => {
19038             }
19039             },
19040             5.035006 => {
19041             delta_from => 5.035005,
19042             changed => {
19043             'B::Op_private' => '5.035006',
19044             'Config' => '5.035006',
19045             'File::Glob' => '1.37',
19046             'File::stat' => '1.12',
19047             'GDBM_File' => '1.22',
19048             'HTTP::Tiny' => '0.080',
19049             'Math::BigFloat' => '1.999827',
19050             'Math::BigFloat::Trace' => '0.63',
19051             'Math::BigInt' => '1.999827',
19052             'Math::BigInt::Calc' => '1.999827',
19053             'Math::BigInt::FastCalc'=> '0.5012',
19054             'Math::BigInt::Lib' => '1.999827',
19055             'Math::BigInt::Trace' => '0.63',
19056             'Math::BigRat' => '0.2620',
19057             'Module::CoreList' => '5.20211120',
19058             'Module::CoreList::Utils'=> '5.20211120',
19059             'POSIX' => '2.02',
19060             'bigint' => '0.63',
19061             'bignum' => '0.63',
19062             'bigrat' => '0.63',
19063             'diagnostics' => '1.39',
19064             'feature' => '1.69',
19065             'warnings' => '1.56',
19066             },
19067             removed => {
19068             }
19069             },
19070             5.035007 => {
19071             delta_from => 5.035006,
19072             changed => {
19073             'B::Deparse' => '1.60',
19074             'B::Op_private' => '5.035007',
19075             'CPAN' => '2.29',
19076             'CPAN::Distribution' => '2.29',
19077             'CPAN::FTP' => '5.5014',
19078             'CPAN::FirstTime' => '5.5316',
19079             'CPAN::HandleConfig' => '5.5012',
19080             'CPAN::Index' => '2.29',
19081             'Config' => '5.035007',
19082             'Cwd' => '3.83',
19083             'ExtUtils::Command' => '7.64',
19084             'ExtUtils::Command::MM' => '7.64',
19085             'ExtUtils::Liblist' => '7.64',
19086             'ExtUtils::Liblist::Kid'=> '7.64',
19087             'ExtUtils::MM' => '7.64',
19088             'ExtUtils::MM_AIX' => '7.64',
19089             'ExtUtils::MM_Any' => '7.64',
19090             'ExtUtils::MM_BeOS' => '7.64',
19091             'ExtUtils::MM_Cygwin' => '7.64',
19092             'ExtUtils::MM_DOS' => '7.64',
19093             'ExtUtils::MM_Darwin' => '7.64',
19094             'ExtUtils::MM_MacOS' => '7.64',
19095             'ExtUtils::MM_NW5' => '7.64',
19096             'ExtUtils::MM_OS2' => '7.64',
19097             'ExtUtils::MM_OS390' => '7.64',
19098             'ExtUtils::MM_QNX' => '7.64',
19099             'ExtUtils::MM_UWIN' => '7.64',
19100             'ExtUtils::MM_Unix' => '7.64',
19101             'ExtUtils::MM_VMS' => '7.64',
19102             'ExtUtils::MM_VOS' => '7.64',
19103             'ExtUtils::MM_Win32' => '7.64',
19104             'ExtUtils::MM_Win95' => '7.64',
19105             'ExtUtils::MY' => '7.64',
19106             'ExtUtils::MakeMaker' => '7.64',
19107             'ExtUtils::MakeMaker::Config'=> '7.64',
19108             'ExtUtils::MakeMaker::Locale'=> '7.64',
19109             'ExtUtils::MakeMaker::version'=> '7.64',
19110             'ExtUtils::MakeMaker::version::regex'=> '7.64',
19111             'ExtUtils::Mkbootstrap' => '7.64',
19112             'ExtUtils::Mksymlists' => '7.64',
19113             'ExtUtils::testlib' => '7.64',
19114             'File::Compare' => '1.1007',
19115             'File::Copy' => '2.38',
19116             'File::Spec' => '3.83',
19117             'File::Spec::AmigaOS' => '3.83',
19118             'File::Spec::Cygwin' => '3.83',
19119             'File::Spec::Epoc' => '3.83',
19120             'File::Spec::Functions' => '3.83',
19121             'File::Spec::Mac' => '3.83',
19122             'File::Spec::OS2' => '3.83',
19123             'File::Spec::Unix' => '3.83',
19124             'File::Spec::VMS' => '3.83',
19125             'File::Spec::Win32' => '3.83',
19126             'Hash::Util' => '0.27',
19127             'Hash::Util::FieldHash' => '1.24',
19128             'IO' => '1.49',
19129             'JSON::PP' => '4.07',
19130             'JSON::PP::Boolean' => '4.07',
19131             'Math::BigFloat' => '1.999828',
19132             'Math::BigInt' => '1.999828',
19133             'Math::BigInt::Calc' => '1.999828',
19134             'Math::BigInt::Lib' => '1.999828',
19135             'Module::CoreList' => '5.20211220',
19136             'Module::CoreList::Utils'=> '5.20211220',
19137             'Opcode' => '1.55',
19138             'builtin' => '0.001',
19139             'overload' => '1.34',
19140             },
19141             removed => {
19142             }
19143             },
19144             5.035008 => {
19145             delta_from => 5.035007,
19146             changed => {
19147             'B::Deparse' => '1.61',
19148             'B::Op_private' => '5.035008',
19149             'Config' => '5.035008',
19150             'Data::Dumper' => '2.184',
19151             'Errno' => '1.36',
19152             'File::Fetch' => '1.04',
19153             'File::Find' => '1.40',
19154             'Hash::Util::FieldHash' => '1.25',
19155             'Locale::Maketext' => '1.30',
19156             'Math::BigFloat' => '1.999829',
19157             'Math::BigFloat::Trace' => '0.64',
19158             'Math::BigInt' => '1.999829',
19159             'Math::BigInt::Calc' => '1.999829',
19160             'Math::BigInt::Lib' => '1.999829',
19161             'Math::BigInt::Trace' => '0.64',
19162             'Math::BigRat::Trace' => '0.64',
19163             'Module::CoreList' => '5.20220120',
19164             'Module::CoreList::Utils'=> '5.20220120',
19165             'NEXT' => '0.69',
19166             'POSIX' => '2.03',
19167             'Win32' => '0.58',
19168             '_charnames' => '1.49',
19169             'bigint' => '0.64',
19170             'bignum' => '0.64',
19171             'bigrat' => '0.64',
19172             'charnames' => '1.49',
19173             },
19174             removed => {
19175             }
19176             },
19177             5.035009 => {
19178             delta_from => 5.035008,
19179             changed => {
19180             'App::Cpan' => '1.678',
19181             'B::Deparse' => '1.62',
19182             'B::Op_private' => '5.035009',
19183             'CPAN' => '2.33',
19184             'CPAN::Distribution' => '2.33',
19185             'CPAN::FTP' => '5.5016',
19186             'CPAN::FirstTime' => '5.5317',
19187             'Config' => '5.035009',
19188             'Devel::PPPort' => '3.64',
19189             'File::Copy' => '2.39',
19190             'Hash::Util' => '0.28',
19191             'Hash::Util::FieldHash' => '1.26',
19192             'List::Util' => '1.61',
19193             'List::Util::XS' => '1.61',
19194             'Module::CoreList' => '5.20220220',
19195             'Module::CoreList::Utils'=> '5.20220220',
19196             'Opcode' => '1.56',
19197             'Scalar::Util' => '1.61',
19198             'Sub::Util' => '1.61',
19199             'Tie::SubstrHash' => '1.01',
19200             'XS::APItest' => '1.21',
19201             '_charnames' => '1.50',
19202             'builtin' => '0.002',
19203             'charnames' => '1.50',
19204             'experimental' => '0.027',
19205             'feature' => '1.70',
19206             'overload' => '1.35',
19207             're' => '0.42',
19208             'sigtrap' => '1.10',
19209             'warnings' => '1.57',
19210             },
19211             removed => {
19212             }
19213             },
19214             5.034001 => {
19215             delta_from => 5.034000,
19216             changed => {
19217             'B::Deparse' => '1.57',
19218             'B::Op_private' => '5.034001',
19219             'Config' => '5.034001',
19220             'Encode' => '3.08_01',
19221             'GDBM_File' => '1.19_01',
19222             'Module::CoreList' => '5.20220313',
19223             'Module::CoreList::Utils'=> '5.20220313',
19224             },
19225             removed => {
19226             }
19227             },
19228             5.035010 => {
19229             delta_from => 5.035009,
19230             changed => {
19231             'Attribute::Handlers' => '1.02',
19232             'B::Deparse' => '1.63',
19233             'B::Op_private' => '5.035010',
19234             'Config' => '5.03501',
19235             'Cwd' => '3.84',
19236             'DB_File' => '1.857',
19237             'Devel::PPPort' => '3.68',
19238             'ExtUtils::ParseXS' => '3.45',
19239             'ExtUtils::ParseXS::Constants'=> '3.45',
19240             'ExtUtils::ParseXS::CountLines'=> '3.45',
19241             'ExtUtils::ParseXS::Eval'=> '3.45',
19242             'ExtUtils::ParseXS::Utilities'=> '3.45',
19243             'ExtUtils::Typemaps' => '3.45',
19244             'ExtUtils::Typemaps::Cmd'=> '3.45',
19245             'ExtUtils::Typemaps::InputMap'=> '3.45',
19246             'ExtUtils::Typemaps::OutputMap'=> '3.45',
19247             'ExtUtils::Typemaps::Type'=> '3.45',
19248             'File::Spec' => '3.84',
19249             'File::Spec::AmigaOS' => '3.84',
19250             'File::Spec::Cygwin' => '3.84',
19251             'File::Spec::Epoc' => '3.84',
19252             'File::Spec::Functions' => '3.84',
19253             'File::Spec::Mac' => '3.84',
19254             'File::Spec::OS2' => '3.84',
19255             'File::Spec::Unix' => '3.84',
19256             'File::Spec::VMS' => '3.84',
19257             'File::Spec::Win32' => '3.84',
19258             'GDBM_File' => '1.23',
19259             'List::Util' => '1.62',
19260             'List::Util::XS' => '1.62',
19261             'Module::CoreList' => '5.20220320',
19262             'Module::CoreList::Utils'=> '5.20220320',
19263             'Opcode' => '1.57',
19264             'Scalar::Util' => '1.62',
19265             'Sub::Util' => '1.62',
19266             'Test2' => '1.302190',
19267             'Test2::API' => '1.302190',
19268             'Test2::API::Breakage' => '1.302190',
19269             'Test2::API::Context' => '1.302190',
19270             'Test2::API::Instance' => '1.302190',
19271             'Test2::API::InterceptResult'=> '1.302190',
19272             'Test2::API::InterceptResult::Event'=> '1.302190',
19273             'Test2::API::InterceptResult::Facet'=> '1.302190',
19274             'Test2::API::InterceptResult::Hub'=> '1.302190',
19275             'Test2::API::InterceptResult::Squasher'=> '1.302190',
19276             'Test2::API::Stack' => '1.302190',
19277             'Test2::Event' => '1.302190',
19278             'Test2::Event::Bail' => '1.302190',
19279             'Test2::Event::Diag' => '1.302190',
19280             'Test2::Event::Encoding'=> '1.302190',
19281             'Test2::Event::Exception'=> '1.302190',
19282             'Test2::Event::Fail' => '1.302190',
19283             'Test2::Event::Generic' => '1.302190',
19284             'Test2::Event::Note' => '1.302190',
19285             'Test2::Event::Ok' => '1.302190',
19286             'Test2::Event::Pass' => '1.302190',
19287             'Test2::Event::Plan' => '1.302190',
19288             'Test2::Event::Skip' => '1.302190',
19289             'Test2::Event::Subtest' => '1.302190',
19290             'Test2::Event::TAP::Version'=> '1.302190',
19291             'Test2::Event::V2' => '1.302190',
19292             'Test2::Event::Waiting' => '1.302190',
19293             'Test2::EventFacet' => '1.302190',
19294             'Test2::EventFacet::About'=> '1.302190',
19295             'Test2::EventFacet::Amnesty'=> '1.302190',
19296             'Test2::EventFacet::Assert'=> '1.302190',
19297             'Test2::EventFacet::Control'=> '1.302190',
19298             'Test2::EventFacet::Error'=> '1.302190',
19299             'Test2::EventFacet::Hub'=> '1.302190',
19300             'Test2::EventFacet::Info'=> '1.302190',
19301             'Test2::EventFacet::Info::Table'=> '1.302190',
19302             'Test2::EventFacet::Meta'=> '1.302190',
19303             'Test2::EventFacet::Parent'=> '1.302190',
19304             'Test2::EventFacet::Plan'=> '1.302190',
19305             'Test2::EventFacet::Render'=> '1.302190',
19306             'Test2::EventFacet::Trace'=> '1.302190',
19307             'Test2::Formatter' => '1.302190',
19308             'Test2::Formatter::TAP' => '1.302190',
19309             'Test2::Hub' => '1.302190',
19310             'Test2::Hub::Interceptor'=> '1.302190',
19311             'Test2::Hub::Interceptor::Terminator'=> '1.302190',
19312             'Test2::Hub::Subtest' => '1.302190',
19313             'Test2::IPC' => '1.302190',
19314             'Test2::IPC::Driver' => '1.302190',
19315             'Test2::IPC::Driver::Files'=> '1.302190',
19316             'Test2::Tools::Tiny' => '1.302190',
19317             'Test2::Util' => '1.302190',
19318             'Test2::Util::ExternalMeta'=> '1.302190',
19319             'Test2::Util::Facets2Legacy'=> '1.302190',
19320             'Test2::Util::HashBase' => '1.302190',
19321             'Test2::Util::Trace' => '1.302190',
19322             'Test::Builder' => '1.302190',
19323             'Test::Builder::Formatter'=> '1.302190',
19324             'Test::Builder::Module' => '1.302190',
19325             'Test::Builder::Tester' => '1.302190',
19326             'Test::Builder::Tester::Color'=> '1.302190',
19327             'Test::Builder::TodoDiag'=> '1.302190',
19328             'Test::More' => '1.302190',
19329             'Test::Simple' => '1.302190',
19330             'Test::Tester' => '1.302190',
19331             'Test::Tester::Capture' => '1.302190',
19332             'Test::Tester::CaptureRunner'=> '1.302190',
19333             'Test::Tester::Delegate'=> '1.302190',
19334             'Test::use::ok' => '1.302190',
19335             'XS::APItest' => '1.22',
19336             'builtin' => '0.004',
19337             'experimental' => '0.028',
19338             'feature' => '1.71',
19339             'ok' => '1.302190',
19340             'warnings' => '1.58',
19341             },
19342             removed => {
19343             }
19344             },
19345             5.035011 => {
19346             delta_from => 5.03501,
19347             changed => {
19348             'App::Prove' => '3.44',
19349             'App::Prove::State' => '3.44',
19350             'App::Prove::State::Result'=> '3.44',
19351             'App::Prove::State::Result::Test'=> '3.44',
19352             'B::Deparse' => '1.64',
19353             'B::Op_private' => '5.035011',
19354             'Compress::Raw::Bzip2' => '2.103',
19355             'Compress::Raw::Zlib' => '2.103',
19356             'Compress::Zlib' => '2.106',
19357             'Config' => '5.035011',
19358             'Encode' => '3.17',
19359             'Encode::Unicode' => '2.20',
19360             'ExtUtils::Constant::Base'=> '0.07',
19361             'IO' => '1.49_01',
19362             'IO::Compress::Adapter::Bzip2'=> '2.106',
19363             'IO::Compress::Adapter::Deflate'=> '2.106',
19364             'IO::Compress::Adapter::Identity'=> '2.106',
19365             'IO::Compress::Base' => '2.106',
19366             'IO::Compress::Base::Common'=> '2.106',
19367             'IO::Compress::Bzip2' => '2.106',
19368             'IO::Compress::Deflate' => '2.106',
19369             'IO::Compress::Gzip' => '2.106',
19370             'IO::Compress::Gzip::Constants'=> '2.106',
19371             'IO::Compress::RawDeflate'=> '2.106',
19372             'IO::Compress::Zip' => '2.106',
19373             'IO::Compress::Zip::Constants'=> '2.106',
19374             'IO::Compress::Zlib::Constants'=> '2.106',
19375             'IO::Compress::Zlib::Extra'=> '2.106',
19376             'IO::Uncompress::Adapter::Bunzip2'=> '2.106',
19377             'IO::Uncompress::Adapter::Identity'=> '2.106',
19378             'IO::Uncompress::Adapter::Inflate'=> '2.106',
19379             'IO::Uncompress::AnyInflate'=> '2.106',
19380             'IO::Uncompress::AnyUncompress'=> '2.106',
19381             'IO::Uncompress::Base' => '2.106',
19382             'IO::Uncompress::Bunzip2'=> '2.106',
19383             'IO::Uncompress::Gunzip'=> '2.106',
19384             'IO::Uncompress::Inflate'=> '2.106',
19385             'IO::Uncompress::RawInflate'=> '2.106',
19386             'IO::Uncompress::Unzip' => '2.106',
19387             'Locale::Maketext' => '1.31',
19388             'Math::BigFloat' => '1.999830',
19389             'Math::BigFloat::Trace' => '0.65',
19390             'Math::BigInt' => '1.999830',
19391             'Math::BigInt::Calc' => '1.999830',
19392             'Math::BigInt::Lib' => '1.999830',
19393             'Math::BigInt::Trace' => '0.65',
19394             'Math::BigRat' => '0.2621',
19395             'Math::BigRat::Trace' => '0.65',
19396             'Module::CoreList' => '5.20220420',
19397             'Module::CoreList::Utils'=> '5.20220420',
19398             'Net::Cmd' => '3.14',
19399             'Net::Config' => '3.14',
19400             'Net::Domain' => '3.14',
19401             'Net::FTP' => '3.14',
19402             'Net::FTP::A' => '3.14',
19403             'Net::FTP::E' => '3.14',
19404             'Net::FTP::I' => '3.14',
19405             'Net::FTP::L' => '3.14',
19406             'Net::FTP::dataconn' => '3.14',
19407             'Net::NNTP' => '3.14',
19408             'Net::Netrc' => '3.14',
19409             'Net::POP3' => '3.14',
19410             'Net::SMTP' => '3.14',
19411             'Net::Time' => '3.14',
19412             'Socket' => '2.033',
19413             'Storable' => '3.26',
19414             'TAP::Base' => '3.44',
19415             'TAP::Formatter::Base' => '3.44',
19416             'TAP::Formatter::Color' => '3.44',
19417             'TAP::Formatter::Console'=> '3.44',
19418             'TAP::Formatter::Console::ParallelSession'=> '3.44',
19419             'TAP::Formatter::Console::Session'=> '3.44',
19420             'TAP::Formatter::File' => '3.44',
19421             'TAP::Formatter::File::Session'=> '3.44',
19422             'TAP::Formatter::Session'=> '3.44',
19423             'TAP::Harness' => '3.44',
19424             'TAP::Harness::Env' => '3.44',
19425             'TAP::Object' => '3.44',
19426             'TAP::Parser' => '3.44',
19427             'TAP::Parser::Aggregator'=> '3.44',
19428             'TAP::Parser::Grammar' => '3.44',
19429             'TAP::Parser::Iterator' => '3.44',
19430             'TAP::Parser::Iterator::Array'=> '3.44',
19431             'TAP::Parser::Iterator::Process'=> '3.44',
19432             'TAP::Parser::Iterator::Stream'=> '3.44',
19433             'TAP::Parser::IteratorFactory'=> '3.44',
19434             'TAP::Parser::Multiplexer'=> '3.44',
19435             'TAP::Parser::Result' => '3.44',
19436             'TAP::Parser::Result::Bailout'=> '3.44',
19437             'TAP::Parser::Result::Comment'=> '3.44',
19438             'TAP::Parser::Result::Plan'=> '3.44',
19439             'TAP::Parser::Result::Pragma'=> '3.44',
19440             'TAP::Parser::Result::Test'=> '3.44',
19441             'TAP::Parser::Result::Unknown'=> '3.44',
19442             'TAP::Parser::Result::Version'=> '3.44',
19443             'TAP::Parser::Result::YAML'=> '3.44',
19444             'TAP::Parser::ResultFactory'=> '3.44',
19445             'TAP::Parser::Scheduler'=> '3.44',
19446             'TAP::Parser::Scheduler::Job'=> '3.44',
19447             'TAP::Parser::Scheduler::Spinner'=> '3.44',
19448             'TAP::Parser::Source' => '3.44',
19449             'TAP::Parser::SourceHandler'=> '3.44',
19450             'TAP::Parser::SourceHandler::Executable'=> '3.44',
19451             'TAP::Parser::SourceHandler::File'=> '3.44',
19452             'TAP::Parser::SourceHandler::Handle'=> '3.44',
19453             'TAP::Parser::SourceHandler::Perl'=> '3.44',
19454             'TAP::Parser::SourceHandler::RawTAP'=> '3.44',
19455             'TAP::Parser::YAMLish::Reader'=> '3.44',
19456             'TAP::Parser::YAMLish::Writer'=> '3.44',
19457             'Test::Harness' => '3.44',
19458             'Text::ParseWords' => '3.31',
19459             'Time::HiRes' => '1.9770',
19460             'Unicode::Normalize' => '1.31',
19461             'bigfloat' => '0.65',
19462             'bigint' => '0.65',
19463             'bignum' => '0.65',
19464             'bigrat' => '0.65',
19465             'builtin' => '0.005',
19466             're' => '0.43',
19467             },
19468             removed => {
19469             }
19470             },
19471             5.036000 => {
19472             delta_from => 5.035011,
19473             changed => {
19474             'Amiga::Exec' => '0.04',
19475             'B::Op_private' => '5.036000',
19476             'Compress::Raw::Zlib' => '2.105',
19477             'Config' => '5.036',
19478             'IO' => '1.50',
19479             'Module::CoreList' => '5.20220520',
19480             'Module::CoreList::Utils'=> '5.20220520',
19481             'Win32' => '0.59',
19482             'builtin' => '0.006',
19483             'feature' => '1.72',
19484             },
19485             removed => {
19486             }
19487             },
19488             5.037000 => {
19489             delta_from => 5.036000,
19490             changed => {
19491             'feature' => '1.73',
19492             'Module::CoreList' => '5.20220527',
19493             'Module::CoreList::Utils'=> '5.20220527',
19494             },
19495             removed => {
19496             }
19497             },
19498             5.037001 => {
19499             delta_from => 5.037000,
19500             changed => {
19501             'B' => '1.84',
19502             'B::Op_private' => '5.037001',
19503             'Carp' => '1.53',
19504             'Carp::Heavy' => '1.53',
19505             'Config' => '5.037001',
19506             'Cwd' => '3.85',
19507             'Data::Dumper' => '2.185',
19508             'ExtUtils::CBuilder' => '0.280237',
19509             'ExtUtils::CBuilder::Base'=> '0.280237',
19510             'ExtUtils::CBuilder::Platform::Unix'=> '0.280237',
19511             'ExtUtils::CBuilder::Platform::VMS'=> '0.280237',
19512             'ExtUtils::CBuilder::Platform::Windows'=> '0.280237',
19513             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280237',
19514             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280237',
19515             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280237',
19516             'ExtUtils::CBuilder::Platform::aix'=> '0.280237',
19517             'ExtUtils::CBuilder::Platform::android'=> '0.280237',
19518             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280237',
19519             'ExtUtils::CBuilder::Platform::darwin'=> '0.280237',
19520             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280237',
19521             'ExtUtils::CBuilder::Platform::os2'=> '0.280237',
19522             'ExtUtils::Miniperl' => '1.12',
19523             'File::Spec' => '3.85',
19524             'File::Spec::AmigaOS' => '3.85',
19525             'File::Spec::Cygwin' => '3.85',
19526             'File::Spec::Epoc' => '3.85',
19527             'File::Spec::Functions' => '3.85',
19528             'File::Spec::Mac' => '3.85',
19529             'File::Spec::OS2' => '3.85',
19530             'File::Spec::Unix' => '3.85',
19531             'File::Spec::VMS' => '3.85',
19532             'File::Spec::Win32' => '3.85',
19533             'FileHandle' => '2.04',
19534             'GDBM_File' => '1.24',
19535             'IO::Handle' => '1.49',
19536             'IO::Pipe' => '1.50',
19537             'IO::Socket::INET' => '1.50',
19538             'IO::Socket::UNIX' => '1.50',
19539             'Module::CoreList' => '5.20220620',
19540             'Module::CoreList::Utils'=> '5.20220620',
19541             'ODBM_File' => '1.18',
19542             'OS2::REXX' => '1.06',
19543             'Opcode' => '1.58',
19544             'POSIX' => '2.04',
19545             'SDBM_File' => '1.16',
19546             'Unicode::Normalize' => '1.32',
19547             'XS::APItest' => '1.23',
19548             'builtin' => '0.007',
19549             'encoding::warnings' => '0.14',
19550             'feature' => '1.74',
19551             'threads' => '2.28',
19552             },
19553             removed => {
19554             }
19555             },
19556             5.037002 => {
19557             delta_from => 5.037001,
19558             changed => {
19559             'B' => '1.85',
19560             'B::Concise' => '1.007',
19561             'B::Deparse' => '1.65',
19562             'B::Op_private' => '5.037002',
19563             'CPAN' => '2.34',
19564             'CPAN::Distribution' => '2.34',
19565             'Compress::Raw::Bzip2' => '2.201',
19566             'Compress::Raw::Zlib' => '2.202',
19567             'Compress::Zlib' => '2.201',
19568             'Config' => '5.037002',
19569             'Cwd' => '3.86',
19570             'DB_File' => '1.858',
19571             'Data::Dumper' => '2.186',
19572             'Encode' => '3.18',
19573             'Encode::MIME::Header' => '2.29',
19574             'File::Glob' => '1.38',
19575             'File::Spec' => '3.86',
19576             'File::Spec::AmigaOS' => '3.86',
19577             'File::Spec::Cygwin' => '3.86',
19578             'File::Spec::Epoc' => '3.86',
19579             'File::Spec::Functions' => '3.86',
19580             'File::Spec::Mac' => '3.86',
19581             'File::Spec::OS2' => '3.86',
19582             'File::Spec::Unix' => '3.86',
19583             'File::Spec::VMS' => '3.86',
19584             'File::Spec::Win32' => '3.86',
19585             'Filter::Util::Call' => '1.61',
19586             'Hash::Util' => '0.29',
19587             'I18N::LangTags::List' => '0.41',
19588             'IO::Compress::Adapter::Bzip2'=> '2.201',
19589             'IO::Compress::Adapter::Deflate'=> '2.201',
19590             'IO::Compress::Adapter::Identity'=> '2.201',
19591             'IO::Compress::Base' => '2.201',
19592             'IO::Compress::Base::Common'=> '2.201',
19593             'IO::Compress::Bzip2' => '2.201',
19594             'IO::Compress::Deflate' => '2.201',
19595             'IO::Compress::Gzip' => '2.201',
19596             'IO::Compress::Gzip::Constants'=> '2.201',
19597             'IO::Compress::RawDeflate'=> '2.201',
19598             'IO::Compress::Zip' => '2.201',
19599             'IO::Compress::Zip::Constants'=> '2.201',
19600             'IO::Compress::Zlib::Constants'=> '2.201',
19601             'IO::Compress::Zlib::Extra'=> '2.201',
19602             'IO::Uncompress::Adapter::Bunzip2'=> '2.201',
19603             'IO::Uncompress::Adapter::Identity'=> '2.201',
19604             'IO::Uncompress::Adapter::Inflate'=> '2.201',
19605             'IO::Uncompress::AnyInflate'=> '2.201',
19606             'IO::Uncompress::AnyUncompress'=> '2.201',
19607             'IO::Uncompress::Base' => '2.201',
19608             'IO::Uncompress::Bunzip2'=> '2.201',
19609             'IO::Uncompress::Gunzip'=> '2.201',
19610             'IO::Uncompress::Inflate'=> '2.201',
19611             'IO::Uncompress::RawInflate'=> '2.201',
19612             'IO::Uncompress::Unzip' => '2.201',
19613             'JSON::PP' => '4.10',
19614             'JSON::PP::Boolean' => '4.10',
19615             'Math::BigFloat' => '1.999837',
19616             'Math::BigFloat::Trace' => '0.66',
19617             'Math::BigInt' => '1.999837',
19618             'Math::BigInt::Calc' => '1.999837',
19619             'Math::BigInt::FastCalc'=> '0.5013',
19620             'Math::BigInt::Lib' => '1.999837',
19621             'Math::BigInt::Trace' => '0.66',
19622             'Math::BigRat' => '0.2624',
19623             'Math::BigRat::Trace' => '0.66',
19624             'Module::CoreList' => '5.20220720',
19625             'Module::CoreList::Utils'=> '5.20220720',
19626             'Opcode' => '1.59',
19627             'PerlIO::via::QuotedPrint'=> '0.10',
19628             'Pod::Checker' => '1.75',
19629             'Pod::Usage' => '2.03',
19630             'Socket' => '2.035',
19631             'Storable' => '3.27',
19632             'Test2' => '1.302191',
19633             'Test2::API' => '1.302191',
19634             'Test2::API::Breakage' => '1.302191',
19635             'Test2::API::Context' => '1.302191',
19636             'Test2::API::Instance' => '1.302191',
19637             'Test2::API::InterceptResult'=> '1.302191',
19638             'Test2::API::InterceptResult::Event'=> '1.302191',
19639             'Test2::API::InterceptResult::Facet'=> '1.302191',
19640             'Test2::API::InterceptResult::Hub'=> '1.302191',
19641             'Test2::API::InterceptResult::Squasher'=> '1.302191',
19642             'Test2::API::Stack' => '1.302191',
19643             'Test2::Event' => '1.302191',
19644             'Test2::Event::Bail' => '1.302191',
19645             'Test2::Event::Diag' => '1.302191',
19646             'Test2::Event::Encoding'=> '1.302191',
19647             'Test2::Event::Exception'=> '1.302191',
19648             'Test2::Event::Fail' => '1.302191',
19649             'Test2::Event::Generic' => '1.302191',
19650             'Test2::Event::Note' => '1.302191',
19651             'Test2::Event::Ok' => '1.302191',
19652             'Test2::Event::Pass' => '1.302191',
19653             'Test2::Event::Plan' => '1.302191',
19654             'Test2::Event::Skip' => '1.302191',
19655             'Test2::Event::Subtest' => '1.302191',
19656             'Test2::Event::TAP::Version'=> '1.302191',
19657             'Test2::Event::V2' => '1.302191',
19658             'Test2::Event::Waiting' => '1.302191',
19659             'Test2::EventFacet' => '1.302191',
19660             'Test2::EventFacet::About'=> '1.302191',
19661             'Test2::EventFacet::Amnesty'=> '1.302191',
19662             'Test2::EventFacet::Assert'=> '1.302191',
19663             'Test2::EventFacet::Control'=> '1.302191',
19664             'Test2::EventFacet::Error'=> '1.302191',
19665             'Test2::EventFacet::Hub'=> '1.302191',
19666             'Test2::EventFacet::Info'=> '1.302191',
19667             'Test2::EventFacet::Info::Table'=> '1.302191',
19668             'Test2::EventFacet::Meta'=> '1.302191',
19669             'Test2::EventFacet::Parent'=> '1.302191',
19670             'Test2::EventFacet::Plan'=> '1.302191',
19671             'Test2::EventFacet::Render'=> '1.302191',
19672             'Test2::EventFacet::Trace'=> '1.302191',
19673             'Test2::Formatter' => '1.302191',
19674             'Test2::Formatter::TAP' => '1.302191',
19675             'Test2::Hub' => '1.302191',
19676             'Test2::Hub::Interceptor'=> '1.302191',
19677             'Test2::Hub::Interceptor::Terminator'=> '1.302191',
19678             'Test2::Hub::Subtest' => '1.302191',
19679             'Test2::IPC' => '1.302191',
19680             'Test2::IPC::Driver' => '1.302191',
19681             'Test2::IPC::Driver::Files'=> '1.302191',
19682             'Test2::Tools::Tiny' => '1.302191',
19683             'Test2::Util' => '1.302191',
19684             'Test2::Util::ExternalMeta'=> '1.302191',
19685             'Test2::Util::Facets2Legacy'=> '1.302191',
19686             'Test2::Util::HashBase' => '1.302191',
19687             'Test2::Util::Trace' => '1.302191',
19688             'Test::Builder' => '1.302191',
19689             'Test::Builder::Formatter'=> '1.302191',
19690             'Test::Builder::Module' => '1.302191',
19691             'Test::Builder::Tester' => '1.302191',
19692             'Test::Builder::Tester::Color'=> '1.302191',
19693             'Test::Builder::TodoDiag'=> '1.302191',
19694             'Test::More' => '1.302191',
19695             'Test::Simple' => '1.302191',
19696             'Test::Tester' => '1.302191',
19697             'Test::Tester::Capture' => '1.302191',
19698             'Test::Tester::CaptureRunner'=> '1.302191',
19699             'Test::Tester::Delegate'=> '1.302191',
19700             'Test::use::ok' => '1.302191',
19701             'Text::Balanced' => '2.06',
19702             'XS::APItest' => '1.24',
19703             'bigfloat' => '0.66',
19704             'bigint' => '0.66',
19705             'bignum' => '0.66',
19706             'bigrat' => '0.66',
19707             'builtin' => '0.008',
19708             'feature' => '1.75',
19709             'ok' => '1.302191',
19710             'threads::shared' => '1.65',
19711             },
19712             removed => {
19713             }
19714             },
19715             5.037003 => {
19716             delta_from => 5.037002,
19717             changed => {
19718             'B' => '1.86',
19719             'B::Deparse' => '1.68',
19720             'B::Op_private' => '5.037003',
19721             'Config' => '5.037003',
19722             'Digest::SHA' => '6.03',
19723             'DynaLoader' => '1.53',
19724             'Encode' => '3.19',
19725             'Encode::Alias' => '2.25',
19726             'ExtUtils::PL2Bat' => '0.005',
19727             'File::Find' => '1.41',
19728             'Filter::Util::Call' => '1.64',
19729             'HTTP::Tiny' => '0.082',
19730             'JSON::PP' => '4.11',
19731             'JSON::PP::Boolean' => '4.11',
19732             'List::Util' => '1.63',
19733             'List::Util::XS' => '1.63',
19734             'Memoize' => '1.10',
19735             'Memoize::AnyDBM_File' => '1.10',
19736             'Memoize::Expire' => '1.10',
19737             'Memoize::NDBM_File' => '1.10',
19738             'Memoize::SDBM_File' => '1.10',
19739             'Memoize::Storable' => '1.10',
19740             'Module::CoreList' => '5.20220820',
19741             'Module::CoreList::Utils'=> '5.20220820',
19742             'NDBM_File' => '1.16',
19743             'Opcode' => '1.60',
19744             'Scalar::Util' => '1.63',
19745             'Socket' => '2.036',
19746             'Sub::Util' => '1.63',
19747             'XS::APItest' => '1.25',
19748             'attributes' => '0.35',
19749             'threads' => '2.29',
19750             },
19751             removed => {
19752             'Memoize::ExpireFile' => 1,
19753             'Memoize::ExpireTest' => 1,
19754             }
19755             },
19756             5.037004 => {
19757             delta_from => 5.037003,
19758             changed => {
19759             'B::Deparse' => '1.69',
19760             'B::Op_private' => '5.037004',
19761             'Carp' => '1.54',
19762             'Carp::Heavy' => '1.54',
19763             'Class::Struct' => '0.67',
19764             'Config' => '5.037004',
19765             'Config::Perl::V' => '0.34',
19766             'Errno' => '1.37',
19767             'ExtUtils::ParseXS' => '3.46',
19768             'ExtUtils::ParseXS::Constants'=> '3.46',
19769             'ExtUtils::ParseXS::CountLines'=> '3.46',
19770             'ExtUtils::ParseXS::Eval'=> '3.46',
19771             'ExtUtils::ParseXS::Utilities'=> '3.46',
19772             'ExtUtils::Typemaps' => '3.46',
19773             'ExtUtils::Typemaps::Cmd'=> '3.46',
19774             'ExtUtils::Typemaps::InputMap'=> '3.46',
19775             'ExtUtils::Typemaps::OutputMap'=> '3.46',
19776             'ExtUtils::Typemaps::Type'=> '3.46',
19777             'File::Basename' => '2.86',
19778             'File::Copy' => '2.40',
19779             'File::Spec' => '3.87',
19780             'File::stat' => '1.13',
19781             'FileHandle' => '2.05',
19782             'Hash::Util' => '0.30',
19783             'I18N::Langinfo' => '0.22',
19784             'IO' => '1.51',
19785             'IO::Dir' => '1.51',
19786             'IO::File' => '1.51',
19787             'IO::Handle' => '1.51',
19788             'IO::Pipe' => '1.51',
19789             'IO::Poll' => '1.51',
19790             'IO::Seekable' => '1.51',
19791             'IO::Select' => '1.51',
19792             'IO::Socket' => '1.51',
19793             'IO::Socket::INET' => '1.51',
19794             'IO::Socket::UNIX' => '1.51',
19795             'Locale::Maketext' => '1.32',
19796             'Module::CoreList' => '5.20220920',
19797             'Module::CoreList::Utils'=> '5.20220920',
19798             'Net::protoent' => '1.02',
19799             'Net::servent' => '1.03',
19800             'Opcode' => '1.61',
19801             'POSIX' => '2.06',
19802             'Safe' => '2.44',
19803             'Sys::Hostname' => '1.25',
19804             'Time::HiRes' => '1.9771',
19805             'User::grent' => '1.04',
19806             'User::pwent' => '1.02',
19807             'XS::APItest' => '1.26',
19808             'XSLoader' => '0.32',
19809             'feature' => '1.76',
19810             },
19811             removed => {
19812             }
19813             },
19814             5.037005 => {
19815             delta_from => 5.037004,
19816             changed => {
19817             'B::Deparse' => '1.70',
19818             'B::Op_private' => '5.037005',
19819             'Config' => '5.037005',
19820             'JSON::PP' => '4.12',
19821             'JSON::PP::Boolean' => '4.12',
19822             'Math::Complex' => '1.5903',
19823             'Math::Trig' => '1.2301',
19824             'Memoize' => '1.14',
19825             'Memoize::AnyDBM_File' => '1.14',
19826             'Memoize::Expire' => '1.14',
19827             'Memoize::NDBM_File' => '1.14',
19828             'Memoize::SDBM_File' => '1.14',
19829             'Memoize::Storable' => '1.14',
19830             'Module::CoreList' => '5.20221020',
19831             'Module::CoreList::Utils'=> '5.20221020',
19832             'Net::Ping' => '2.75',
19833             'POSIX' => '2.07',
19834             'Unicode' => '15.0.0',
19835             'threads' => '2.31',
19836             'warnings' => '1.59',
19837             },
19838             removed => {
19839             }
19840             },
19841             5.037006 => {
19842             delta_from => 5.037005,
19843             changed => {
19844             'Attribute::Handlers' => '1.03',
19845             'B' => '1.87',
19846             'B::Deparse' => '1.71',
19847             'B::Op_private' => '5.037006',
19848             'Config' => '5.037006',
19849             'Data::Dumper' => '2.187',
19850             'Devel::PPPort' => '3.69',
19851             'ExtUtils::CBuilder' => '0.280238',
19852             'ExtUtils::CBuilder::Base'=> '0.280238',
19853             'ExtUtils::CBuilder::Platform::Unix'=> '0.280238',
19854             'ExtUtils::CBuilder::Platform::VMS'=> '0.280238',
19855             'ExtUtils::CBuilder::Platform::Windows'=> '0.280238',
19856             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280238',
19857             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280238',
19858             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280238',
19859             'ExtUtils::CBuilder::Platform::aix'=> '0.280238',
19860             'ExtUtils::CBuilder::Platform::android'=> '0.280238',
19861             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280238',
19862             'ExtUtils::CBuilder::Platform::darwin'=> '0.280238',
19863             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280238',
19864             'ExtUtils::CBuilder::Platform::os2'=> '0.280238',
19865             'ExtUtils::ParseXS' => '3.48',
19866             'ExtUtils::ParseXS::Constants'=> '3.48',
19867             'ExtUtils::ParseXS::CountLines'=> '3.48',
19868             'ExtUtils::ParseXS::Eval'=> '3.48',
19869             'ExtUtils::ParseXS::Utilities'=> '3.48',
19870             'ExtUtils::Typemaps' => '3.48',
19871             'ExtUtils::Typemaps::Cmd'=> '3.48',
19872             'ExtUtils::Typemaps::InputMap'=> '3.48',
19873             'ExtUtils::Typemaps::OutputMap'=> '3.48',
19874             'ExtUtils::Typemaps::Type'=> '3.48',
19875             'Getopt::Long' => '2.54',
19876             'Memoize' => '1.15',
19877             'Memoize::AnyDBM_File' => '1.15',
19878             'Memoize::Expire' => '1.15',
19879             'Memoize::NDBM_File' => '1.15',
19880             'Memoize::SDBM_File' => '1.15',
19881             'Memoize::Storable' => '1.15',
19882             'Module::CoreList' => '5.20221120',
19883             'Module::CoreList::Utils'=> '5.20221120',
19884             'Opcode' => '1.62',
19885             'POSIX' => '2.08',
19886             'Storable' => '3.28',
19887             'Time::HiRes' => '1.9772',
19888             'XS::APItest' => '1.27',
19889             'experimental' => '0.029',
19890             'feature' => '1.77',
19891             'overload' => '1.36',
19892             'threads' => '2.32',
19893             'utf8' => '1.25',
19894             'warnings' => '1.61',
19895             },
19896             removed => {
19897             }
19898             },
19899             5.037007 => {
19900             delta_from => 5.037006,
19901             changed => {
19902             'B::Deparse' => '1.72',
19903             'B::Op_private' => '5.037007',
19904             'Config' => '5.037007',
19905             'Cwd' => '3.88',
19906             'ExtUtils::Miniperl' => '1.13',
19907             'ExtUtils::ParseXS' => '3.49',
19908             'ExtUtils::ParseXS::Constants'=> '3.49',
19909             'ExtUtils::ParseXS::CountLines'=> '3.49',
19910             'ExtUtils::ParseXS::Eval'=> '3.49',
19911             'ExtUtils::ParseXS::Utilities'=> '3.49',
19912             'ExtUtils::Typemaps' => '3.49',
19913             'ExtUtils::Typemaps::Cmd'=> '3.49',
19914             'ExtUtils::Typemaps::InputMap'=> '3.49',
19915             'ExtUtils::Typemaps::OutputMap'=> '3.49',
19916             'ExtUtils::Typemaps::Type'=> '3.49',
19917             'File::Glob' => '1.39',
19918             'File::Spec' => '3.88',
19919             'File::Spec::AmigaOS' => '3.88',
19920             'File::Spec::Cygwin' => '3.88',
19921             'File::Spec::Epoc' => '3.88',
19922             'File::Spec::Functions' => '3.88',
19923             'File::Spec::Mac' => '3.88',
19924             'File::Spec::OS2' => '3.88',
19925             'File::Spec::Unix' => '3.88',
19926             'File::Spec::VMS' => '3.88',
19927             'File::Spec::Win32' => '3.88',
19928             'Module::CoreList' => '5.20221220',
19929             'Module::CoreList::Utils'=> '5.20221220',
19930             'Opcode' => '1.63',
19931             'POSIX' => '2.10',
19932             'Pod::Html' => '1.34',
19933             'Pod::Html::Util' => '1.34',
19934             'Pod::Man' => '5.00',
19935             'Pod::ParseLink' => '5.00',
19936             'Pod::Text' => '5.00',
19937             'Pod::Text::Color' => '5.00',
19938             'Pod::Text::Overstrike' => '5.00',
19939             'Pod::Text::Termcap' => '5.00',
19940             'XS::APItest' => '1.28',
19941             'experimental' => '0.030',
19942             'feature' => '1.78',
19943             'parent' => '0.239',
19944             'threads' => '2.33',
19945             },
19946             removed => {
19947             }
19948             },
19949             5.037008 => {
19950             delta_from => 5.037007,
19951             changed => {
19952             'B::Op_private' => '5.037008',
19953             'Config' => '5.037008',
19954             'Config::Perl::V' => '0.35',
19955             'ExtUtils::Command' => '7.66',
19956             'ExtUtils::Command::MM' => '7.66',
19957             'ExtUtils::Install' => '2.22',
19958             'ExtUtils::Installed' => '2.22',
19959             'ExtUtils::Liblist' => '7.66',
19960             'ExtUtils::Liblist::Kid'=> '7.66',
19961             'ExtUtils::MM' => '7.66',
19962             'ExtUtils::MM_AIX' => '7.66',
19963             'ExtUtils::MM_Any' => '7.66',
19964             'ExtUtils::MM_BeOS' => '7.66',
19965             'ExtUtils::MM_Cygwin' => '7.66',
19966             'ExtUtils::MM_DOS' => '7.66',
19967             'ExtUtils::MM_Darwin' => '7.66',
19968             'ExtUtils::MM_MacOS' => '7.66',
19969             'ExtUtils::MM_NW5' => '7.66',
19970             'ExtUtils::MM_OS2' => '7.66',
19971             'ExtUtils::MM_OS390' => '7.66',
19972             'ExtUtils::MM_QNX' => '7.66',
19973             'ExtUtils::MM_UWIN' => '7.66',
19974             'ExtUtils::MM_Unix' => '7.66',
19975             'ExtUtils::MM_VMS' => '7.66',
19976             'ExtUtils::MM_VOS' => '7.66',
19977             'ExtUtils::MM_Win32' => '7.66',
19978             'ExtUtils::MM_Win95' => '7.66',
19979             'ExtUtils::MY' => '7.66',
19980             'ExtUtils::MakeMaker' => '7.66',
19981             'ExtUtils::MakeMaker::Config'=> '7.66',
19982             'ExtUtils::MakeMaker::Locale'=> '7.66',
19983             'ExtUtils::MakeMaker::version'=> '7.66',
19984             'ExtUtils::MakeMaker::version::regex'=> '7.66',
19985             'ExtUtils::Mkbootstrap' => '7.66',
19986             'ExtUtils::Mksymlists' => '7.66',
19987             'ExtUtils::Packlist' => '2.22',
19988             'ExtUtils::testlib' => '7.66',
19989             'File::Find' => '1.42',
19990             'IO::Zlib' => '1.14',
19991             'JSON::PP' => '4.16',
19992             'JSON::PP::Boolean' => '4.16',
19993             'Math::Complex' => '1.6',
19994             'Math::Trig' => '1.6',
19995             'Module::CoreList' => '5.20230120',
19996             'Module::CoreList::Utils'=> '5.20230120',
19997             'POSIX' => '2.11',
19998             'Pod::Man' => '5.01',
19999             'Pod::ParseLink' => '5.01',
20000             'Pod::Text' => '5.01',
20001             'Pod::Text::Color' => '5.01',
20002             'Pod::Text::Overstrike' => '5.01',
20003             'Pod::Text::Termcap' => '5.01',
20004             'Storable' => '3.29',
20005             'XS::APItest' => '1.30',
20006             'feature' => '1.79',
20007             're' => '0.44',
20008             'threads' => '2.34',
20009             },
20010             removed => {
20011             }
20012             },
20013             5.037009 => {
20014             delta_from => 5.037008,
20015             changed => {
20016             'B' => '1.88',
20017             'B::Op_private' => '5.037009',
20018             'Compress::Raw::Bzip2' => '2.204',
20019             'Compress::Raw::Zlib' => '2.204',
20020             'Compress::Zlib' => '2.204',
20021             'Config' => '5.037009',
20022             'Devel::PPPort' => '3.70',
20023             'Devel::Peek' => '1.33',
20024             'Fatal' => '2.36',
20025             'File::Find' => '1.43',
20026             'IO::Compress::Adapter::Bzip2'=> '2.204',
20027             'IO::Compress::Adapter::Deflate'=> '2.204',
20028             'IO::Compress::Adapter::Identity'=> '2.204',
20029             'IO::Compress::Base' => '2.204',
20030             'IO::Compress::Base::Common'=> '2.204',
20031             'IO::Compress::Bzip2' => '2.204',
20032             'IO::Compress::Deflate' => '2.204',
20033             'IO::Compress::Gzip' => '2.204',
20034             'IO::Compress::Gzip::Constants'=> '2.204',
20035             'IO::Compress::RawDeflate'=> '2.204',
20036             'IO::Compress::Zip' => '2.204',
20037             'IO::Compress::Zip::Constants'=> '2.204',
20038             'IO::Compress::Zlib::Constants'=> '2.204',
20039             'IO::Compress::Zlib::Extra'=> '2.204',
20040             'IO::Uncompress::Adapter::Bunzip2'=> '2.204',
20041             'IO::Uncompress::Adapter::Identity'=> '2.204',
20042             'IO::Uncompress::Adapter::Inflate'=> '2.204',
20043             'IO::Uncompress::AnyInflate'=> '2.204',
20044             'IO::Uncompress::AnyUncompress'=> '2.204',
20045             'IO::Uncompress::Base' => '2.204',
20046             'IO::Uncompress::Bunzip2'=> '2.204',
20047             'IO::Uncompress::Gunzip'=> '2.204',
20048             'IO::Uncompress::Inflate'=> '2.204',
20049             'IO::Uncompress::RawInflate'=> '2.204',
20050             'IO::Uncompress::Unzip' => '2.204',
20051             'Math::Complex' => '1.61',
20052             'Math::Trig' => '1.61',
20053             'Memoize' => '1.16',
20054             'Memoize::AnyDBM_File' => '1.16',
20055             'Memoize::Expire' => '1.16',
20056             'Memoize::NDBM_File' => '1.16',
20057             'Memoize::SDBM_File' => '1.16',
20058             'Memoize::Storable' => '1.16',
20059             'Module::CoreList' => '5.20230220',
20060             'Module::CoreList::Utils'=> '5.20230220',
20061             'Opcode' => '1.64',
20062             'Term::Cap' => '1.18',
20063             'Test2' => '1.302192',
20064             'Test2::API' => '1.302192',
20065             'Test2::API::Breakage' => '1.302192',
20066             'Test2::API::Context' => '1.302192',
20067             'Test2::API::Instance' => '1.302192',
20068             'Test2::API::InterceptResult'=> '1.302192',
20069             'Test2::API::InterceptResult::Event'=> '1.302192',
20070             'Test2::API::InterceptResult::Facet'=> '1.302192',
20071             'Test2::API::InterceptResult::Hub'=> '1.302192',
20072             'Test2::API::InterceptResult::Squasher'=> '1.302192',
20073             'Test2::API::Stack' => '1.302192',
20074             'Test2::Event' => '1.302192',
20075             'Test2::Event::Bail' => '1.302192',
20076             'Test2::Event::Diag' => '1.302192',
20077             'Test2::Event::Encoding'=> '1.302192',
20078             'Test2::Event::Exception'=> '1.302192',
20079             'Test2::Event::Fail' => '1.302192',
20080             'Test2::Event::Generic' => '1.302192',
20081             'Test2::Event::Note' => '1.302192',
20082             'Test2::Event::Ok' => '1.302192',
20083             'Test2::Event::Pass' => '1.302192',
20084             'Test2::Event::Plan' => '1.302192',
20085             'Test2::Event::Skip' => '1.302192',
20086             'Test2::Event::Subtest' => '1.302192',
20087             'Test2::Event::TAP::Version'=> '1.302192',
20088             'Test2::Event::V2' => '1.302192',
20089             'Test2::Event::Waiting' => '1.302192',
20090             'Test2::EventFacet' => '1.302192',
20091             'Test2::EventFacet::About'=> '1.302192',
20092             'Test2::EventFacet::Amnesty'=> '1.302192',
20093             'Test2::EventFacet::Assert'=> '1.302192',
20094             'Test2::EventFacet::Control'=> '1.302192',
20095             'Test2::EventFacet::Error'=> '1.302192',
20096             'Test2::EventFacet::Hub'=> '1.302192',
20097             'Test2::EventFacet::Info'=> '1.302192',
20098             'Test2::EventFacet::Info::Table'=> '1.302192',
20099             'Test2::EventFacet::Meta'=> '1.302192',
20100             'Test2::EventFacet::Parent'=> '1.302192',
20101             'Test2::EventFacet::Plan'=> '1.302192',
20102             'Test2::EventFacet::Render'=> '1.302192',
20103             'Test2::EventFacet::Trace'=> '1.302192',
20104             'Test2::Formatter' => '1.302192',
20105             'Test2::Formatter::TAP' => '1.302192',
20106             'Test2::Hub' => '1.302192',
20107             'Test2::Hub::Interceptor'=> '1.302192',
20108             'Test2::Hub::Interceptor::Terminator'=> '1.302192',
20109             'Test2::Hub::Subtest' => '1.302192',
20110             'Test2::IPC' => '1.302192',
20111             'Test2::IPC::Driver' => '1.302192',
20112             'Test2::IPC::Driver::Files'=> '1.302192',
20113             'Test2::Tools::Tiny' => '1.302192',
20114             'Test2::Util' => '1.302192',
20115             'Test2::Util::ExternalMeta'=> '1.302192',
20116             'Test2::Util::Facets2Legacy'=> '1.302192',
20117             'Test2::Util::HashBase' => '1.302192',
20118             'Test2::Util::Trace' => '1.302192',
20119             'Test::Builder' => '1.302192',
20120             'Test::Builder::Formatter'=> '1.302192',
20121             'Test::Builder::Module' => '1.302192',
20122             'Test::Builder::Tester' => '1.302192',
20123             'Test::Builder::Tester::Color'=> '1.302192',
20124             'Test::Builder::TodoDiag'=> '1.302192',
20125             'Test::More' => '1.302192',
20126             'Test::Simple' => '1.302192',
20127             'Test::Tester' => '1.302192',
20128             'Test::Tester::Capture' => '1.302192',
20129             'Test::Tester::CaptureRunner'=> '1.302192',
20130             'Test::Tester::Delegate'=> '1.302192',
20131             'Test::use::ok' => '1.302192',
20132             'Tie::File' => '1.07',
20133             'UNIVERSAL' => '1.15',
20134             'autodie' => '2.36',
20135             'autodie::Scope::Guard' => '2.36',
20136             'autodie::Scope::GuardStack'=> '2.36',
20137             'autodie::Util' => '2.36',
20138             'autodie::exception' => '2.36',
20139             'autodie::exception::system'=> '2.36',
20140             'autodie::hints' => '2.36',
20141             'autodie::skip' => '2.36',
20142             'experimental' => '0.031',
20143             'feature' => '1.80',
20144             'mro' => '1.28',
20145             'ok' => '1.302192',
20146             'parent' => '0.241',
20147             'stable' => '0.031',
20148             'warnings' => '1.62',
20149             },
20150             removed => {
20151             }
20152             },
20153             5.037010 => {
20154             delta_from => 5.037009,
20155             changed => {
20156             'B::Op_private' => '5.037010',
20157             'Benchmark' => '1.24',
20158             'Class::Struct' => '0.68',
20159             'Config' => '5.03701',
20160             'Config::Perl::V' => '0.36',
20161             'Cwd' => '3.89',
20162             'Data::Dumper' => '2.188',
20163             'Digest::SHA' => '6.04',
20164             'Env' => '1.06',
20165             'Math::Complex' => '1.62',
20166             'Math::Trig' => '1.62',
20167             'Module::CoreList' => '5.20230320',
20168             'Module::CoreList::Utils'=> '5.20230320',
20169             'Net::Cmd' => '3.15',
20170             'Net::Config' => '3.15',
20171             'Net::Domain' => '3.15',
20172             'Net::FTP' => '3.15',
20173             'Net::FTP::A' => '3.15',
20174             'Net::FTP::E' => '3.15',
20175             'Net::FTP::I' => '3.15',
20176             'Net::FTP::L' => '3.15',
20177             'Net::FTP::dataconn' => '3.15',
20178             'Net::NNTP' => '3.15',
20179             'Net::Netrc' => '3.15',
20180             'Net::POP3' => '3.15',
20181             'Net::SMTP' => '3.15',
20182             'Net::Time' => '3.15',
20183             'POSIX' => '2.12',
20184             'Storable' => '3.31',
20185             'Test2' => '1.302194',
20186             'Test2::API' => '1.302194',
20187             'Test2::API::Breakage' => '1.302194',
20188             'Test2::API::Context' => '1.302194',
20189             'Test2::API::Instance' => '1.302194',
20190             'Test2::API::InterceptResult'=> '1.302194',
20191             'Test2::API::InterceptResult::Event'=> '1.302194',
20192             'Test2::API::InterceptResult::Facet'=> '1.302194',
20193             'Test2::API::InterceptResult::Hub'=> '1.302194',
20194             'Test2::API::InterceptResult::Squasher'=> '1.302194',
20195             'Test2::API::Stack' => '1.302194',
20196             'Test2::Event' => '1.302194',
20197             'Test2::Event::Bail' => '1.302194',
20198             'Test2::Event::Diag' => '1.302194',
20199             'Test2::Event::Encoding'=> '1.302194',
20200             'Test2::Event::Exception'=> '1.302194',
20201             'Test2::Event::Fail' => '1.302194',
20202             'Test2::Event::Generic' => '1.302194',
20203             'Test2::Event::Note' => '1.302194',
20204             'Test2::Event::Ok' => '1.302194',
20205             'Test2::Event::Pass' => '1.302194',
20206             'Test2::Event::Plan' => '1.302194',
20207             'Test2::Event::Skip' => '1.302194',
20208             'Test2::Event::Subtest' => '1.302194',
20209             'Test2::Event::TAP::Version'=> '1.302194',
20210             'Test2::Event::V2' => '1.302194',
20211             'Test2::Event::Waiting' => '1.302194',
20212             'Test2::EventFacet' => '1.302194',
20213             'Test2::EventFacet::About'=> '1.302194',
20214             'Test2::EventFacet::Amnesty'=> '1.302194',
20215             'Test2::EventFacet::Assert'=> '1.302194',
20216             'Test2::EventFacet::Control'=> '1.302194',
20217             'Test2::EventFacet::Error'=> '1.302194',
20218             'Test2::EventFacet::Hub'=> '1.302194',
20219             'Test2::EventFacet::Info'=> '1.302194',
20220             'Test2::EventFacet::Info::Table'=> '1.302194',
20221             'Test2::EventFacet::Meta'=> '1.302194',
20222             'Test2::EventFacet::Parent'=> '1.302194',
20223             'Test2::EventFacet::Plan'=> '1.302194',
20224             'Test2::EventFacet::Render'=> '1.302194',
20225             'Test2::EventFacet::Trace'=> '1.302194',
20226             'Test2::Formatter' => '1.302194',
20227             'Test2::Formatter::TAP' => '1.302194',
20228             'Test2::Hub' => '1.302194',
20229             'Test2::Hub::Interceptor'=> '1.302194',
20230             'Test2::Hub::Interceptor::Terminator'=> '1.302194',
20231             'Test2::Hub::Subtest' => '1.302194',
20232             'Test2::IPC' => '1.302194',
20233             'Test2::IPC::Driver' => '1.302194',
20234             'Test2::IPC::Driver::Files'=> '1.302194',
20235             'Test2::Tools::Tiny' => '1.302194',
20236             'Test2::Util' => '1.302194',
20237             'Test2::Util::ExternalMeta'=> '1.302194',
20238             'Test2::Util::Facets2Legacy'=> '1.302194',
20239             'Test2::Util::HashBase' => '1.302194',
20240             'Test2::Util::Trace' => '1.302194',
20241             'Test::Builder' => '1.302194',
20242             'Test::Builder::Formatter'=> '1.302194',
20243             'Test::Builder::Module' => '1.302194',
20244             'Test::Builder::Tester' => '1.302194',
20245             'Test::Builder::Tester::Color'=> '1.302194',
20246             'Test::Builder::TodoDiag'=> '1.302194',
20247             'Test::More' => '1.302194',
20248             'Test::Simple' => '1.302194',
20249             'Test::Tester' => '1.302194',
20250             'Test::Tester::Capture' => '1.302194',
20251             'Test::Tester::CaptureRunner'=> '1.302194',
20252             'Test::Tester::Delegate'=> '1.302194',
20253             'Test::use::ok' => '1.302194',
20254             'Time::HiRes' => '1.9774',
20255             'XS::APItest' => '1.32',
20256             'feature' => '1.81',
20257             'ok' => '1.302194',
20258             'overload' => '1.37',
20259             'threads' => '2.35',
20260             'threads::shared' => '1.67',
20261             'warnings' => '1.63',
20262             'warnings::register' => '1.05',
20263             },
20264             removed => {
20265             }
20266             },
20267             5.037011 => {
20268             delta_from => 5.037010,
20269             changed => {
20270             'B::Deparse' => '1.73',
20271             'B::Op_private' => '5.037011',
20272             'Config' => '5.037011',
20273             'Devel::PPPort' => '3.71',
20274             'ExtUtils::Command' => '7.70',
20275             'ExtUtils::Command::MM' => '7.70',
20276             'ExtUtils::Liblist' => '7.70',
20277             'ExtUtils::Liblist::Kid'=> '7.70',
20278             'ExtUtils::MM' => '7.70',
20279             'ExtUtils::MM_AIX' => '7.70',
20280             'ExtUtils::MM_Any' => '7.70',
20281             'ExtUtils::MM_BeOS' => '7.70',
20282             'ExtUtils::MM_Cygwin' => '7.70',
20283             'ExtUtils::MM_DOS' => '7.70',
20284             'ExtUtils::MM_Darwin' => '7.70',
20285             'ExtUtils::MM_MacOS' => '7.70',
20286             'ExtUtils::MM_NW5' => '7.70',
20287             'ExtUtils::MM_OS2' => '7.70',
20288             'ExtUtils::MM_OS390' => '7.70',
20289             'ExtUtils::MM_QNX' => '7.70',
20290             'ExtUtils::MM_UWIN' => '7.70',
20291             'ExtUtils::MM_Unix' => '7.70',
20292             'ExtUtils::MM_VMS' => '7.70',
20293             'ExtUtils::MM_VOS' => '7.70',
20294             'ExtUtils::MM_Win32' => '7.70',
20295             'ExtUtils::MM_Win95' => '7.70',
20296             'ExtUtils::MY' => '7.70',
20297             'ExtUtils::MakeMaker' => '7.70',
20298             'ExtUtils::MakeMaker::Config'=> '7.70',
20299             'ExtUtils::MakeMaker::Locale'=> '7.70',
20300             'ExtUtils::MakeMaker::version'=> '7.70',
20301             'ExtUtils::MakeMaker::version::regex'=> '7.70',
20302             'ExtUtils::Mkbootstrap' => '7.70',
20303             'ExtUtils::Mksymlists' => '7.70',
20304             'ExtUtils::ParseXS' => '3.50',
20305             'ExtUtils::ParseXS::Constants'=> '3.50',
20306             'ExtUtils::ParseXS::CountLines'=> '3.50',
20307             'ExtUtils::ParseXS::Eval'=> '3.50',
20308             'ExtUtils::ParseXS::Utilities'=> '3.50',
20309             'ExtUtils::testlib' => '7.70',
20310             'File::Copy' => '2.41',
20311             'Locale::Maketext' => '1.33',
20312             'Module::CoreList' => '5.20230420',
20313             'Module::CoreList::Utils'=> '5.20230420',
20314             'Net::Ping' => '2.76',
20315             'feature' => '1.82',
20316             'threads' => '2.36',
20317             'threads::shared' => '1.68',
20318             'warnings' => '1.64',
20319             },
20320             removed => {
20321             }
20322             },
20323             5.036001 => {
20324             delta_from => 5.036000,
20325             changed => {
20326             'B::Op_private' => '5.036001',
20327             'Config' => '5.036001',
20328             'Module::CoreList' => '5.20230423',
20329             'Module::CoreList::Utils'=> '5.20230423',
20330             },
20331             removed => {
20332             }
20333             },
20334             5.038000 => {
20335             delta_from => 5.037011,
20336             changed => {
20337             'B::Deparse' => '1.74',
20338             'B::Op_private' => '5.038000',
20339             'CPAN' => '2.36',
20340             'CPAN::HTTP::Client' => '1.9602',
20341             'Compress::Raw::Bzip2' => '2.204_001',
20342             'Compress::Raw::Zlib' => '2.204_001',
20343             'Config' => '5.038',
20344             'Digest::MD5' => '2.58_01',
20345             'DynaLoader' => '1.54',
20346             'ExtUtils::ParseXS' => '3.51',
20347             'ExtUtils::ParseXS::Constants'=> '3.51',
20348             'ExtUtils::ParseXS::CountLines'=> '3.51',
20349             'ExtUtils::ParseXS::Eval'=> '3.51',
20350             'ExtUtils::ParseXS::Utilities'=> '3.51',
20351             'ExtUtils::Typemaps' => '3.51',
20352             'ExtUtils::Typemaps::Cmd'=> '3.51',
20353             'ExtUtils::Typemaps::InputMap'=> '3.51',
20354             'ExtUtils::Typemaps::OutputMap'=> '3.51',
20355             'ExtUtils::Typemaps::Type'=> '3.51',
20356             'File::Glob' => '1.40',
20357             'HTTP::Tiny' => '0.086',
20358             'IO' => '1.52',
20359             'IO::Dir' => '1.52',
20360             'IO::File' => '1.52',
20361             'IO::Handle' => '1.52',
20362             'IO::Pipe' => '1.52',
20363             'IO::Poll' => '1.52',
20364             'IO::Seekable' => '1.52',
20365             'IO::Select' => '1.52',
20366             'IO::Socket' => '1.52',
20367             'IO::Socket::INET' => '1.52',
20368             'IO::Socket::IP' => '0.41_01',
20369             'IO::Socket::UNIX' => '1.52',
20370             'MIME::Base64' => '3.16_01',
20371             'MIME::QuotedPrint' => '3.16_01',
20372             'Module::CoreList' => '5.20230520',
20373             'Module::CoreList::Utils'=> '5.20230520',
20374             'POSIX' => '2.13',
20375             'SDBM_File' => '1.17',
20376             'Storable' => '3.32',
20377             'Time::HiRes' => '1.9775',
20378             'Time::Piece' => '1.3401_01',
20379             'warnings' => '1.65',
20380             },
20381             removed => {
20382             }
20383             },
20384             5.039001 => {
20385             delta_from => 5.038000,
20386             changed => {
20387             'B::Op_private' => '5.039001',
20388             'CPAN::Meta::Requirements'=> '2.143',
20389             'CPAN::Meta::Requirements::Range'=> '2.143',
20390             'Compress::Raw::Bzip2' => '2.205',
20391             'Compress::Raw::Zlib' => '2.205',
20392             'Compress::Zlib' => '2.205',
20393             'Config' => '5.039001',
20394             'Errno' => '1.38',
20395             'ExtUtils::CBuilder' => '0.280239',
20396             'ExtUtils::CBuilder::Base'=> '0.280239',
20397             'ExtUtils::CBuilder::Platform::Unix'=> '0.280239',
20398             'ExtUtils::CBuilder::Platform::VMS'=> '0.280239',
20399             'ExtUtils::CBuilder::Platform::Windows'=> '0.280239',
20400             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280239',
20401             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280239',
20402             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280239',
20403             'ExtUtils::CBuilder::Platform::aix'=> '0.280239',
20404             'ExtUtils::CBuilder::Platform::android'=> '0.280239',
20405             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280239',
20406             'ExtUtils::CBuilder::Platform::darwin'=> '0.280239',
20407             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280239',
20408             'ExtUtils::CBuilder::Platform::os2'=> '0.280239',
20409             'ExtUtils::Manifest' => '1.75',
20410             'IO::Compress::Adapter::Bzip2'=> '2.205',
20411             'IO::Compress::Adapter::Deflate'=> '2.205',
20412             'IO::Compress::Adapter::Identity'=> '2.205',
20413             'IO::Compress::Base' => '2.205',
20414             'IO::Compress::Base::Common'=> '2.205',
20415             'IO::Compress::Bzip2' => '2.205',
20416             'IO::Compress::Deflate' => '2.205',
20417             'IO::Compress::Gzip' => '2.205',
20418             'IO::Compress::Gzip::Constants'=> '2.205',
20419             'IO::Compress::RawDeflate'=> '2.205',
20420             'IO::Compress::Zip' => '2.205',
20421             'IO::Compress::Zip::Constants'=> '2.205',
20422             'IO::Compress::Zlib::Constants'=> '2.205',
20423             'IO::Compress::Zlib::Extra'=> '2.205',
20424             'IO::Uncompress::Adapter::Bunzip2'=> '2.205',
20425             'IO::Uncompress::Adapter::Identity'=> '2.205',
20426             'IO::Uncompress::Adapter::Inflate'=> '2.205',
20427             'IO::Uncompress::AnyInflate'=> '2.205',
20428             'IO::Uncompress::AnyUncompress'=> '2.205',
20429             'IO::Uncompress::Base' => '2.205',
20430             'IO::Uncompress::Bunzip2'=> '2.205',
20431             'IO::Uncompress::Gunzip'=> '2.205',
20432             'IO::Uncompress::Inflate'=> '2.205',
20433             'IO::Uncompress::RawInflate'=> '2.205',
20434             'IO::Uncompress::Unzip' => '2.205',
20435             'Math::BigFloat' => '1.999839',
20436             'Math::BigInt' => '1.999839',
20437             'Math::BigInt::Calc' => '1.999839',
20438             'Math::BigInt::FastCalc'=> '0.5014',
20439             'Math::BigInt::Lib' => '1.999839',
20440             'Module::CoreList' => '5.20230720',
20441             'Module::CoreList::Utils'=> '5.20230720',
20442             'Module::Metadata' => '1.000038',
20443             'POSIX' => '2.14',
20444             'Socket' => '2.037',
20445             'Test2' => '1.302195',
20446             'Test2::API' => '1.302195',
20447             'Test2::API::Breakage' => '1.302195',
20448             'Test2::API::Context' => '1.302195',
20449             'Test2::API::Instance' => '1.302195',
20450             'Test2::API::InterceptResult'=> '1.302195',
20451             'Test2::API::InterceptResult::Event'=> '1.302195',
20452             'Test2::API::InterceptResult::Facet'=> '1.302195',
20453             'Test2::API::InterceptResult::Hub'=> '1.302195',
20454             'Test2::API::InterceptResult::Squasher'=> '1.302195',
20455             'Test2::API::Stack' => '1.302195',
20456             'Test2::Event' => '1.302195',
20457             'Test2::Event::Bail' => '1.302195',
20458             'Test2::Event::Diag' => '1.302195',
20459             'Test2::Event::Encoding'=> '1.302195',
20460             'Test2::Event::Exception'=> '1.302195',
20461             'Test2::Event::Fail' => '1.302195',
20462             'Test2::Event::Generic' => '1.302195',
20463             'Test2::Event::Note' => '1.302195',
20464             'Test2::Event::Ok' => '1.302195',
20465             'Test2::Event::Pass' => '1.302195',
20466             'Test2::Event::Plan' => '1.302195',
20467             'Test2::Event::Skip' => '1.302195',
20468             'Test2::Event::Subtest' => '1.302195',
20469             'Test2::Event::TAP::Version'=> '1.302195',
20470             'Test2::Event::V2' => '1.302195',
20471             'Test2::Event::Waiting' => '1.302195',
20472             'Test2::EventFacet' => '1.302195',
20473             'Test2::EventFacet::About'=> '1.302195',
20474             'Test2::EventFacet::Amnesty'=> '1.302195',
20475             'Test2::EventFacet::Assert'=> '1.302195',
20476             'Test2::EventFacet::Control'=> '1.302195',
20477             'Test2::EventFacet::Error'=> '1.302195',
20478             'Test2::EventFacet::Hub'=> '1.302195',
20479             'Test2::EventFacet::Info'=> '1.302195',
20480             'Test2::EventFacet::Info::Table'=> '1.302195',
20481             'Test2::EventFacet::Meta'=> '1.302195',
20482             'Test2::EventFacet::Parent'=> '1.302195',
20483             'Test2::EventFacet::Plan'=> '1.302195',
20484             'Test2::EventFacet::Render'=> '1.302195',
20485             'Test2::EventFacet::Trace'=> '1.302195',
20486             'Test2::Formatter' => '1.302195',
20487             'Test2::Formatter::TAP' => '1.302195',
20488             'Test2::Hub' => '1.302195',
20489             'Test2::Hub::Interceptor'=> '1.302195',
20490             'Test2::Hub::Interceptor::Terminator'=> '1.302195',
20491             'Test2::Hub::Subtest' => '1.302195',
20492             'Test2::IPC' => '1.302195',
20493             'Test2::IPC::Driver' => '1.302195',
20494             'Test2::IPC::Driver::Files'=> '1.302195',
20495             'Test2::Tools::Tiny' => '1.302195',
20496             'Test2::Util' => '1.302195',
20497             'Test2::Util::ExternalMeta'=> '1.302195',
20498             'Test2::Util::Facets2Legacy'=> '1.302195',
20499             'Test2::Util::HashBase' => '1.302195',
20500             'Test2::Util::Trace' => '1.302195',
20501             'Test::Builder' => '1.302195',
20502             'Test::Builder::Formatter'=> '1.302195',
20503             'Test::Builder::Module' => '1.302195',
20504             'Test::Builder::Tester' => '1.302195',
20505             'Test::Builder::Tester::Color'=> '1.302195',
20506             'Test::Builder::TodoDiag'=> '1.302195',
20507             'Test::More' => '1.302195',
20508             'Test::Simple' => '1.302195',
20509             'Test::Tester' => '1.302195',
20510             'Test::Tester::Capture' => '1.302195',
20511             'Test::Tester::CaptureRunner'=> '1.302195',
20512             'Test::Tester::Delegate'=> '1.302195',
20513             'Test::use::ok' => '1.302195',
20514             'Text::Tabs' => '2023.0511',
20515             'Text::Wrap' => '2023.0511',
20516             'Time::HiRes' => '1.9776',
20517             'Time::Local' => '1.35',
20518             'UNIVERSAL' => '1.16',
20519             'feature' => '1.83',
20520             'ok' => '1.302195',
20521             'perlfaq' => '5.20230701',
20522             'threads' => '2.37',
20523             'warnings' => '1.66',
20524             'warnings::register' => '1.06',
20525             },
20526             removed => {
20527             }
20528             },
20529             5.039002 => {
20530             delta_from => 5.039001,
20531             changed => {
20532             'App::Prove' => '3.47',
20533             'App::Prove::State' => '3.47',
20534             'App::Prove::State::Result'=> '3.47',
20535             'App::Prove::State::Result::Test'=> '3.47',
20536             'B::Op_private' => '5.039002',
20537             'Compress::Raw::Bzip2' => '2.206',
20538             'Compress::Raw::Zlib' => '2.206',
20539             'Compress::Zlib' => '2.206',
20540             'Config' => '5.039002',
20541             'Cwd' => '3.90',
20542             'Devel::Peek' => '1.34',
20543             'ExtUtils::Miniperl' => '1.14',
20544             'File::Spec' => '3.90',
20545             'File::Spec::AmigaOS' => '3.90',
20546             'File::Spec::Cygwin' => '3.90',
20547             'File::Spec::Epoc' => '3.90',
20548             'File::Spec::Functions' => '3.90',
20549             'File::Spec::Mac' => '3.90',
20550             'File::Spec::OS2' => '3.90',
20551             'File::Spec::Unix' => '3.90',
20552             'File::Spec::VMS' => '3.90',
20553             'File::Spec::Win32' => '3.90',
20554             'HTTP::Tiny' => '0.088',
20555             'IO::Compress::Adapter::Bzip2'=> '2.206',
20556             'IO::Compress::Adapter::Deflate'=> '2.206',
20557             'IO::Compress::Adapter::Identity'=> '2.206',
20558             'IO::Compress::Base' => '2.206',
20559             'IO::Compress::Base::Common'=> '2.206',
20560             'IO::Compress::Bzip2' => '2.206',
20561             'IO::Compress::Deflate' => '2.206',
20562             'IO::Compress::Gzip' => '2.206',
20563             'IO::Compress::Gzip::Constants'=> '2.206',
20564             'IO::Compress::RawDeflate'=> '2.206',
20565             'IO::Compress::Zip' => '2.206',
20566             'IO::Compress::Zip::Constants'=> '2.206',
20567             'IO::Compress::Zlib::Constants'=> '2.206',
20568             'IO::Compress::Zlib::Extra'=> '2.206',
20569             'IO::Socket::IP' => '0.42',
20570             'IO::Uncompress::Adapter::Bunzip2'=> '2.206',
20571             'IO::Uncompress::Adapter::Identity'=> '2.206',
20572             'IO::Uncompress::Adapter::Inflate'=> '2.206',
20573             'IO::Uncompress::AnyInflate'=> '2.206',
20574             'IO::Uncompress::AnyUncompress'=> '2.206',
20575             'IO::Uncompress::Base' => '2.206',
20576             'IO::Uncompress::Bunzip2'=> '2.206',
20577             'IO::Uncompress::Gunzip'=> '2.206',
20578             'IO::Uncompress::Inflate'=> '2.206',
20579             'IO::Uncompress::RawInflate'=> '2.206',
20580             'IO::Uncompress::Unzip' => '2.206',
20581             'Module::CoreList' => '5.20230820',
20582             'Module::CoreList::Utils'=> '5.20230820',
20583             'NDBM_File' => '1.17',
20584             'Opcode' => '1.65',
20585             'POSIX' => '2.15',
20586             'PerlIO::scalar' => '0.32',
20587             'PerlIO::via' => '0.19',
20588             'Pod::Html' => '1.35',
20589             'Pod::Html::Util' => '1.35',
20590             'Pod::Simple' => '3.45',
20591             'Pod::Simple::BlackBox' => '3.45',
20592             'Pod::Simple::Checker' => '3.45',
20593             'Pod::Simple::Debug' => '3.45',
20594             'Pod::Simple::DumpAsText'=> '3.45',
20595             'Pod::Simple::DumpAsXML'=> '3.45',
20596             'Pod::Simple::HTML' => '3.45',
20597             'Pod::Simple::HTMLBatch'=> '3.45',
20598             'Pod::Simple::HTMLLegacy'=> '5.02',
20599             'Pod::Simple::LinkSection'=> '3.45',
20600             'Pod::Simple::Methody' => '3.45',
20601             'Pod::Simple::Progress' => '3.45',
20602             'Pod::Simple::PullParser'=> '3.45',
20603             'Pod::Simple::PullParserEndToken'=> '3.45',
20604             'Pod::Simple::PullParserStartToken'=> '3.45',
20605             'Pod::Simple::PullParserTextToken'=> '3.45',
20606             'Pod::Simple::PullParserToken'=> '3.45',
20607             'Pod::Simple::RTF' => '3.45',
20608             'Pod::Simple::Search' => '3.45',
20609             'Pod::Simple::SimpleTree'=> '3.45',
20610             'Pod::Simple::Text' => '3.45',
20611             'Pod::Simple::TextContent'=> '3.45',
20612             'Pod::Simple::TiedOutFH'=> '3.45',
20613             'Pod::Simple::Transcode'=> '3.45',
20614             'Pod::Simple::TranscodeDumb'=> '3.45',
20615             'Pod::Simple::TranscodeSmart'=> '3.45',
20616             'Pod::Simple::XHTML' => '3.45',
20617             'Pod::Simple::XMLOutStream'=> '3.45',
20618             'Safe' => '2.45',
20619             'TAP::Base' => '3.47',
20620             'TAP::Formatter::Base' => '3.47',
20621             'TAP::Formatter::Color' => '3.47',
20622             'TAP::Formatter::Console'=> '3.47',
20623             'TAP::Formatter::Console::ParallelSession'=> '3.47',
20624             'TAP::Formatter::Console::Session'=> '3.47',
20625             'TAP::Formatter::File' => '3.47',
20626             'TAP::Formatter::File::Session'=> '3.47',
20627             'TAP::Formatter::Session'=> '3.47',
20628             'TAP::Harness' => '3.47',
20629             'TAP::Harness::Env' => '3.47',
20630             'TAP::Object' => '3.47',
20631             'TAP::Parser' => '3.47',
20632             'TAP::Parser::Aggregator'=> '3.47',
20633             'TAP::Parser::Grammar' => '3.47',
20634             'TAP::Parser::Iterator' => '3.47',
20635             'TAP::Parser::Iterator::Array'=> '3.47',
20636             'TAP::Parser::Iterator::Process'=> '3.47',
20637             'TAP::Parser::Iterator::Stream'=> '3.47',
20638             'TAP::Parser::IteratorFactory'=> '3.47',
20639             'TAP::Parser::Multiplexer'=> '3.47',
20640             'TAP::Parser::Result' => '3.47',
20641             'TAP::Parser::Result::Bailout'=> '3.47',
20642             'TAP::Parser::Result::Comment'=> '3.47',
20643             'TAP::Parser::Result::Plan'=> '3.47',
20644             'TAP::Parser::Result::Pragma'=> '3.47',
20645             'TAP::Parser::Result::Test'=> '3.47',
20646             'TAP::Parser::Result::Unknown'=> '3.47',
20647             'TAP::Parser::Result::Version'=> '3.47',
20648             'TAP::Parser::Result::YAML'=> '3.47',
20649             'TAP::Parser::ResultFactory'=> '3.47',
20650             'TAP::Parser::Scheduler'=> '3.47',
20651             'TAP::Parser::Scheduler::Job'=> '3.47',
20652             'TAP::Parser::Scheduler::Spinner'=> '3.47',
20653             'TAP::Parser::Source' => '3.47',
20654             'TAP::Parser::SourceHandler'=> '3.47',
20655             'TAP::Parser::SourceHandler::Executable'=> '3.47',
20656             'TAP::Parser::SourceHandler::File'=> '3.47',
20657             'TAP::Parser::SourceHandler::Handle'=> '3.47',
20658             'TAP::Parser::SourceHandler::Perl'=> '3.47',
20659             'TAP::Parser::SourceHandler::RawTAP'=> '3.47',
20660             'TAP::Parser::YAMLish::Reader'=> '3.47',
20661             'TAP::Parser::YAMLish::Writer'=> '3.47',
20662             'Test::Harness' => '3.47',
20663             'XS::APItest' => '1.33',
20664             'builtin' => '0.009',
20665             'feature' => '1.84',
20666             'perlfaq' => '5.20230812',
20667             'strict' => '1.13',
20668             'threads' => '2.38',
20669             'warnings' => '1.67',
20670             },
20671             removed => {
20672             }
20673             },
20674             5.039003 => {
20675             delta_from => 5.039002,
20676             changed => {
20677             'B' => '1.89',
20678             'B::Op_private' => '5.039003',
20679             'Config' => '5.039003',
20680             'DB_File' => '1.859',
20681             'Data::Dumper' => '2.189',
20682             'Devel::PPPort' => '3.72',
20683             'ExtUtils::CBuilder' => '0.280240',
20684             'ExtUtils::CBuilder::Base'=> '0.280240',
20685             'ExtUtils::CBuilder::Platform::Unix'=> '0.280240',
20686             'ExtUtils::CBuilder::Platform::VMS'=> '0.280240',
20687             'ExtUtils::CBuilder::Platform::Windows'=> '0.280240',
20688             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280240',
20689             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280240',
20690             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280240',
20691             'ExtUtils::CBuilder::Platform::aix'=> '0.280240',
20692             'ExtUtils::CBuilder::Platform::android'=> '0.280240',
20693             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280240',
20694             'ExtUtils::CBuilder::Platform::darwin'=> '0.280240',
20695             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280240',
20696             'ExtUtils::CBuilder::Platform::os2'=> '0.280240',
20697             'File::Compare' => '1.1008',
20698             'File::Spec::AmigaOS' => '3.91',
20699             'File::Spec::Cygwin' => '3.91',
20700             'File::Spec::Epoc' => '3.91',
20701             'File::Spec::Functions' => '3.91',
20702             'File::Spec::Mac' => '3.91',
20703             'File::Spec::OS2' => '3.91',
20704             'File::Spec::Unix' => '3.91',
20705             'File::Spec::VMS' => '3.91',
20706             'File::Spec::Win32' => '3.91',
20707             'FindBin' => '1.54',
20708             'Getopt::Std' => '1.14',
20709             'IO' => '1.53',
20710             'IO::Dir' => '1.53',
20711             'IO::File' => '1.53',
20712             'IO::Handle' => '1.53',
20713             'IO::Pipe' => '1.53',
20714             'IO::Poll' => '1.53',
20715             'IO::Seekable' => '1.53',
20716             'IO::Select' => '1.53',
20717             'IO::Socket' => '1.53',
20718             'IO::Socket::INET' => '1.53',
20719             'IO::Socket::UNIX' => '1.53',
20720             'Module::CoreList' => '5.20230920',
20721             'Module::CoreList::Utils'=> '5.20230920',
20722             'builtin' => '0.010',
20723             'fields' => '2.25',
20724             'threads' => '2.39',
20725             'threads::shared' => '1.69',
20726             },
20727             removed => {
20728             }
20729             },
20730             5.039004 => {
20731             delta_from => 5.039003,
20732             changed => {
20733             'App::Prove' => '3.48',
20734             'App::Prove::State' => '3.48',
20735             'App::Prove::State::Result'=> '3.48',
20736             'App::Prove::State::Result::Test'=> '3.48',
20737             'B::Op_private' => '5.039004',
20738             'Config' => '5.039004',
20739             'File::Find' => '1.44',
20740             'File::stat' => '1.14',
20741             'Math::BigFloat' => '1.999842',
20742             'Math::BigInt' => '1.999842',
20743             'Math::BigInt::Calc' => '1.999842',
20744             'Math::BigInt::FastCalc'=> '0.5015',
20745             'Math::BigInt::Lib' => '1.999842',
20746             'Module::CoreList' => '5.20231025',
20747             'Module::CoreList::Utils'=> '5.20231025',
20748             'Net::hostent' => '1.04',
20749             'Net::netent' => '1.02',
20750             'Net::protoent' => '1.03',
20751             'Net::servent' => '1.04',
20752             'POSIX' => '2.16',
20753             'TAP::Base' => '3.48',
20754             'TAP::Formatter::Base' => '3.48',
20755             'TAP::Formatter::Color' => '3.48',
20756             'TAP::Formatter::Console'=> '3.48',
20757             'TAP::Formatter::Console::ParallelSession'=> '3.48',
20758             'TAP::Formatter::Console::Session'=> '3.48',
20759             'TAP::Formatter::File' => '3.48',
20760             'TAP::Formatter::File::Session'=> '3.48',
20761             'TAP::Formatter::Session'=> '3.48',
20762             'TAP::Harness' => '3.48',
20763             'TAP::Harness::Env' => '3.48',
20764             'TAP::Object' => '3.48',
20765             'TAP::Parser' => '3.48',
20766             'TAP::Parser::Aggregator'=> '3.48',
20767             'TAP::Parser::Grammar' => '3.48',
20768             'TAP::Parser::Iterator' => '3.48',
20769             'TAP::Parser::Iterator::Array'=> '3.48',
20770             'TAP::Parser::Iterator::Process'=> '3.48',
20771             'TAP::Parser::Iterator::Stream'=> '3.48',
20772             'TAP::Parser::IteratorFactory'=> '3.48',
20773             'TAP::Parser::Multiplexer'=> '3.48',
20774             'TAP::Parser::Result' => '3.48',
20775             'TAP::Parser::Result::Bailout'=> '3.48',
20776             'TAP::Parser::Result::Comment'=> '3.48',
20777             'TAP::Parser::Result::Plan'=> '3.48',
20778             'TAP::Parser::Result::Pragma'=> '3.48',
20779             'TAP::Parser::Result::Test'=> '3.48',
20780             'TAP::Parser::Result::Unknown'=> '3.48',
20781             'TAP::Parser::Result::Version'=> '3.48',
20782             'TAP::Parser::Result::YAML'=> '3.48',
20783             'TAP::Parser::ResultFactory'=> '3.48',
20784             'TAP::Parser::Scheduler'=> '3.48',
20785             'TAP::Parser::Scheduler::Job'=> '3.48',
20786             'TAP::Parser::Scheduler::Spinner'=> '3.48',
20787             'TAP::Parser::Source' => '3.48',
20788             'TAP::Parser::SourceHandler'=> '3.48',
20789             'TAP::Parser::SourceHandler::Executable'=> '3.48',
20790             'TAP::Parser::SourceHandler::File'=> '3.48',
20791             'TAP::Parser::SourceHandler::Handle'=> '3.48',
20792             'TAP::Parser::SourceHandler::Perl'=> '3.48',
20793             'TAP::Parser::SourceHandler::RawTAP'=> '3.48',
20794             'TAP::Parser::YAMLish::Reader'=> '3.48',
20795             'TAP::Parser::YAMLish::Writer'=> '3.48',
20796             'Term::Table' => '0.017',
20797             'Term::Table::Cell' => '0.017',
20798             'Term::Table::CellStack'=> '0.017',
20799             'Term::Table::HashBase' => '0.017',
20800             'Term::Table::LineBreak'=> '0.017',
20801             'Term::Table::Spacer' => '0.017',
20802             'Term::Table::Util' => '0.017',
20803             'Test2::AsyncSubtest' => '0.000156',
20804             'Test2::AsyncSubtest::Event::Attach'=> '0.000156',
20805             'Test2::AsyncSubtest::Event::Detach'=> '0.000156',
20806             'Test2::AsyncSubtest::Formatter'=> '0.000156',
20807             'Test2::AsyncSubtest::Hub'=> '0.000156',
20808             'Test2::Bundle' => '0.000156',
20809             'Test2::Bundle::Extended'=> '0.000156',
20810             'Test2::Bundle::More' => '0.000156',
20811             'Test2::Bundle::Simple' => '0.000156',
20812             'Test2::Compare' => '0.000156',
20813             'Test2::Compare::Array' => '0.000156',
20814             'Test2::Compare::Bag' => '0.000156',
20815             'Test2::Compare::Base' => '0.000156',
20816             'Test2::Compare::Bool' => '0.000156',
20817             'Test2::Compare::Custom'=> '0.000156',
20818             'Test2::Compare::DeepRef'=> '0.000156',
20819             'Test2::Compare::Delta' => '0.000156',
20820             'Test2::Compare::Event' => '0.000156',
20821             'Test2::Compare::EventMeta'=> '0.000156',
20822             'Test2::Compare::Float' => '0.000156',
20823             'Test2::Compare::Hash' => '0.000156',
20824             'Test2::Compare::Isa' => '0.000156',
20825             'Test2::Compare::Meta' => '0.000156',
20826             'Test2::Compare::Negatable'=> '0.000156',
20827             'Test2::Compare::Number'=> '0.000156',
20828             'Test2::Compare::Object'=> '0.000156',
20829             'Test2::Compare::OrderedSubset'=> '0.000156',
20830             'Test2::Compare::Pattern'=> '0.000156',
20831             'Test2::Compare::Ref' => '0.000156',
20832             'Test2::Compare::Regex' => '0.000156',
20833             'Test2::Compare::Scalar'=> '0.000156',
20834             'Test2::Compare::Set' => '0.000156',
20835             'Test2::Compare::String'=> '0.000156',
20836             'Test2::Compare::Undef' => '0.000156',
20837             'Test2::Compare::Wildcard'=> '0.000156',
20838             'Test2::Manual' => '0.000156',
20839             'Test2::Manual::Anatomy'=> '0.000156',
20840             'Test2::Manual::Anatomy::API'=> '0.000156',
20841             'Test2::Manual::Anatomy::Context'=> '0.000156',
20842             'Test2::Manual::Anatomy::EndToEnd'=> '0.000156',
20843             'Test2::Manual::Anatomy::Event'=> '0.000156',
20844             'Test2::Manual::Anatomy::Hubs'=> '0.000156',
20845             'Test2::Manual::Anatomy::IPC'=> '0.000156',
20846             'Test2::Manual::Anatomy::Utilities'=> '0.000156',
20847             'Test2::Manual::Concurrency'=> '0.000156',
20848             'Test2::Manual::Contributing'=> '0.000156',
20849             'Test2::Manual::Testing'=> '0.000156',
20850             'Test2::Manual::Testing::Introduction'=> '0.000156',
20851             'Test2::Manual::Testing::Migrating'=> '0.000156',
20852             'Test2::Manual::Testing::Planning'=> '0.000156',
20853             'Test2::Manual::Testing::Todo'=> '0.000156',
20854             'Test2::Manual::Tooling'=> '0.000156',
20855             'Test2::Manual::Tooling::FirstTool'=> '0.000156',
20856             'Test2::Manual::Tooling::Formatter'=> '0.000156',
20857             'Test2::Manual::Tooling::Nesting'=> '0.000156',
20858             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000156',
20859             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000156',
20860             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000156',
20861             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000156',
20862             'Test2::Manual::Tooling::Subtest'=> '0.000156',
20863             'Test2::Manual::Tooling::TestBuilder'=> '0.000156',
20864             'Test2::Manual::Tooling::Testing'=> '0.000156',
20865             'Test2::Mock' => '0.000156',
20866             'Test2::Plugin' => '0.000156',
20867             'Test2::Plugin::BailOnFail'=> '0.000156',
20868             'Test2::Plugin::DieOnFail'=> '0.000156',
20869             'Test2::Plugin::ExitSummary'=> '0.000156',
20870             'Test2::Plugin::SRand' => '0.000156',
20871             'Test2::Plugin::Times' => '0.000156',
20872             'Test2::Plugin::UTF8' => '0.000156',
20873             'Test2::Require' => '0.000156',
20874             'Test2::Require::AuthorTesting'=> '0.000156',
20875             'Test2::Require::EnvVar'=> '0.000156',
20876             'Test2::Require::Fork' => '0.000156',
20877             'Test2::Require::Module'=> '0.000156',
20878             'Test2::Require::Perl' => '0.000156',
20879             'Test2::Require::RealFork'=> '0.000156',
20880             'Test2::Require::Threads'=> '0.000156',
20881             'Test2::Suite' => '0.000156',
20882             'Test2::Todo' => '0.000156',
20883             'Test2::Tools' => '0.000156',
20884             'Test2::Tools::AsyncSubtest'=> '0.000156',
20885             'Test2::Tools::Basic' => '0.000156',
20886             'Test2::Tools::Class' => '0.000156',
20887             'Test2::Tools::ClassicCompare'=> '0.000156',
20888             'Test2::Tools::Compare' => '0.000156',
20889             'Test2::Tools::Defer' => '0.000156',
20890             'Test2::Tools::Encoding'=> '0.000156',
20891             'Test2::Tools::Event' => '0.000156',
20892             'Test2::Tools::Exception'=> '0.000156',
20893             'Test2::Tools::Exports' => '0.000156',
20894             'Test2::Tools::GenTemp' => '0.000156',
20895             'Test2::Tools::Grab' => '0.000156',
20896             'Test2::Tools::Mock' => '0.000156',
20897             'Test2::Tools::Ref' => '0.000156',
20898             'Test2::Tools::Refcount'=> '0.000156',
20899             'Test2::Tools::Spec' => '0.000156',
20900             'Test2::Tools::Subtest' => '0.000156',
20901             'Test2::Tools::Target' => '0.000156',
20902             'Test2::Tools::Tester' => '0.000156',
20903             'Test2::Tools::Warnings'=> '0.000156',
20904             'Test2::Util::Grabber' => '0.000156',
20905             'Test2::Util::Guard' => '0.000156',
20906             'Test2::Util::Importer' => '0.000156',
20907             'Test2::Util::Ref' => '0.000156',
20908             'Test2::Util::Stash' => '0.000156',
20909             'Test2::Util::Sub' => '0.000156',
20910             'Test2::Util::Table' => '0.000156',
20911             'Test2::Util::Table::Cell'=> '0.000156',
20912             'Test2::Util::Table::LineBreak'=> '0.000156',
20913             'Test2::Util::Term' => '0.000156',
20914             'Test2::Util::Times' => '0.000156',
20915             'Test2::V0' => '0.000156',
20916             'Test2::Workflow' => '0.000156',
20917             'Test2::Workflow::BlockBase'=> '0.000156',
20918             'Test2::Workflow::Build'=> '0.000156',
20919             'Test2::Workflow::Runner'=> '0.000156',
20920             'Test2::Workflow::Task' => '0.000156',
20921             'Test2::Workflow::Task::Action'=> '0.000156',
20922             'Test2::Workflow::Task::Group'=> '0.000156',
20923             'Test::Harness' => '3.48',
20924             'Time::gmtime' => '1.05',
20925             'Time::localtime' => '1.04',
20926             'Time::tm' => '1.01',
20927             'User::grent' => '1.05',
20928             'User::pwent' => '1.03',
20929             'XS::APItest' => '1.34',
20930             'XS::Typemap' => '0.20',
20931             'builtin' => '0.011',
20932             'feature' => '1.85',
20933             'version' => '0.9930',
20934             'version::regex' => '0.9930',
20935             },
20936             removed => {
20937             }
20938             },
20939             5.039005 => {
20940             delta_from => 5.039004,
20941             changed => {
20942             'B::Op_private' => '5.039005',
20943             'Benchmark' => '1.25',
20944             'Config' => '5.039005',
20945             'Encode' => '3.20',
20946             'Getopt::Long' => '2.57',
20947             'Getopt::Long::Parser' => '2.57',
20948             'IO' => '1.54',
20949             'IO::Dir' => '1.54',
20950             'IO::File' => '1.54',
20951             'IO::Handle' => '1.54',
20952             'IO::Pipe' => '1.54',
20953             'IO::Poll' => '1.54',
20954             'IO::Seekable' => '1.54',
20955             'IO::Select' => '1.54',
20956             'IO::Socket' => '1.54',
20957             'IO::Socket::INET' => '1.54',
20958             'IO::Socket::UNIX' => '1.54',
20959             'Math::BigFloat' => '2.001000',
20960             'Math::BigInt' => '2.001000',
20961             'Math::BigInt::Calc' => '2.001000',
20962             'Math::BigInt::Lib' => '2.001000',
20963             'Math::BigRat' => '2.001000',
20964             'Module::CoreList' => '5.20231120',
20965             'Module::CoreList::Utils'=> '5.20231120',
20966             'POSIX' => '2.17',
20967             'Term::Table' => '0.018',
20968             'Term::Table::Cell' => '0.018',
20969             'Term::Table::CellStack'=> '0.018',
20970             'Term::Table::HashBase' => '0.018',
20971             'Term::Table::LineBreak'=> '0.018',
20972             'Term::Table::Spacer' => '0.018',
20973             'Term::Table::Util' => '0.018',
20974             'Test2::AsyncSubtest' => '0.000159',
20975             'Test2::AsyncSubtest::Event::Attach'=> '0.000159',
20976             'Test2::AsyncSubtest::Event::Detach'=> '0.000159',
20977             'Test2::AsyncSubtest::Formatter'=> '0.000159',
20978             'Test2::AsyncSubtest::Hub'=> '0.000159',
20979             'Test2::Bundle' => '0.000159',
20980             'Test2::Bundle::Extended'=> '0.000159',
20981             'Test2::Bundle::More' => '0.000159',
20982             'Test2::Bundle::Simple' => '0.000159',
20983             'Test2::Compare' => '0.000159',
20984             'Test2::Compare::Array' => '0.000159',
20985             'Test2::Compare::Bag' => '0.000159',
20986             'Test2::Compare::Base' => '0.000159',
20987             'Test2::Compare::Bool' => '0.000159',
20988             'Test2::Compare::Custom'=> '0.000159',
20989             'Test2::Compare::DeepRef'=> '0.000159',
20990             'Test2::Compare::Delta' => '0.000159',
20991             'Test2::Compare::Event' => '0.000159',
20992             'Test2::Compare::EventMeta'=> '0.000159',
20993             'Test2::Compare::Float' => '0.000159',
20994             'Test2::Compare::Hash' => '0.000159',
20995             'Test2::Compare::Isa' => '0.000159',
20996             'Test2::Compare::Meta' => '0.000159',
20997             'Test2::Compare::Negatable'=> '0.000159',
20998             'Test2::Compare::Number'=> '0.000159',
20999             'Test2::Compare::Object'=> '0.000159',
21000             'Test2::Compare::OrderedSubset'=> '0.000159',
21001             'Test2::Compare::Pattern'=> '0.000159',
21002             'Test2::Compare::Ref' => '0.000159',
21003             'Test2::Compare::Regex' => '0.000159',
21004             'Test2::Compare::Scalar'=> '0.000159',
21005             'Test2::Compare::Set' => '0.000159',
21006             'Test2::Compare::String'=> '0.000159',
21007             'Test2::Compare::Undef' => '0.000159',
21008             'Test2::Compare::Wildcard'=> '0.000159',
21009             'Test2::Manual' => '0.000159',
21010             'Test2::Manual::Anatomy'=> '0.000159',
21011             'Test2::Manual::Anatomy::API'=> '0.000159',
21012             'Test2::Manual::Anatomy::Context'=> '0.000159',
21013             'Test2::Manual::Anatomy::EndToEnd'=> '0.000159',
21014             'Test2::Manual::Anatomy::Event'=> '0.000159',
21015             'Test2::Manual::Anatomy::Hubs'=> '0.000159',
21016             'Test2::Manual::Anatomy::IPC'=> '0.000159',
21017             'Test2::Manual::Anatomy::Utilities'=> '0.000159',
21018             'Test2::Manual::Concurrency'=> '0.000159',
21019             'Test2::Manual::Contributing'=> '0.000159',
21020             'Test2::Manual::Testing'=> '0.000159',
21021             'Test2::Manual::Testing::Introduction'=> '0.000159',
21022             'Test2::Manual::Testing::Migrating'=> '0.000159',
21023             'Test2::Manual::Testing::Planning'=> '0.000159',
21024             'Test2::Manual::Testing::Todo'=> '0.000159',
21025             'Test2::Manual::Tooling'=> '0.000159',
21026             'Test2::Manual::Tooling::FirstTool'=> '0.000159',
21027             'Test2::Manual::Tooling::Formatter'=> '0.000159',
21028             'Test2::Manual::Tooling::Nesting'=> '0.000159',
21029             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000159',
21030             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000159',
21031             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000159',
21032             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000159',
21033             'Test2::Manual::Tooling::Subtest'=> '0.000159',
21034             'Test2::Manual::Tooling::TestBuilder'=> '0.000159',
21035             'Test2::Manual::Tooling::Testing'=> '0.000159',
21036             'Test2::Mock' => '0.000159',
21037             'Test2::Plugin' => '0.000159',
21038             'Test2::Plugin::BailOnFail'=> '0.000159',
21039             'Test2::Plugin::DieOnFail'=> '0.000159',
21040             'Test2::Plugin::ExitSummary'=> '0.000159',
21041             'Test2::Plugin::SRand' => '0.000159',
21042             'Test2::Plugin::Times' => '0.000159',
21043             'Test2::Plugin::UTF8' => '0.000159',
21044             'Test2::Require' => '0.000159',
21045             'Test2::Require::AuthorTesting'=> '0.000159',
21046             'Test2::Require::EnvVar'=> '0.000159',
21047             'Test2::Require::Fork' => '0.000159',
21048             'Test2::Require::Module'=> '0.000159',
21049             'Test2::Require::Perl' => '0.000159',
21050             'Test2::Require::RealFork'=> '0.000159',
21051             'Test2::Require::Threads'=> '0.000159',
21052             'Test2::Suite' => '0.000159',
21053             'Test2::Todo' => '0.000159',
21054             'Test2::Tools' => '0.000159',
21055             'Test2::Tools::AsyncSubtest'=> '0.000159',
21056             'Test2::Tools::Basic' => '0.000159',
21057             'Test2::Tools::Class' => '0.000159',
21058             'Test2::Tools::ClassicCompare'=> '0.000159',
21059             'Test2::Tools::Compare' => '0.000159',
21060             'Test2::Tools::Defer' => '0.000159',
21061             'Test2::Tools::Encoding'=> '0.000159',
21062             'Test2::Tools::Event' => '0.000159',
21063             'Test2::Tools::Exception'=> '0.000159',
21064             'Test2::Tools::Exports' => '0.000159',
21065             'Test2::Tools::GenTemp' => '0.000159',
21066             'Test2::Tools::Grab' => '0.000159',
21067             'Test2::Tools::Mock' => '0.000159',
21068             'Test2::Tools::Ref' => '0.000159',
21069             'Test2::Tools::Refcount'=> '0.000159',
21070             'Test2::Tools::Spec' => '0.000159',
21071             'Test2::Tools::Subtest' => '0.000159',
21072             'Test2::Tools::Target' => '0.000159',
21073             'Test2::Tools::Tester' => '0.000159',
21074             'Test2::Tools::Warnings'=> '0.000159',
21075             'Test2::Util::Grabber' => '0.000159',
21076             'Test2::Util::Guard' => '0.000159',
21077             'Test2::Util::Importer' => '0.000159',
21078             'Test2::Util::Ref' => '0.000159',
21079             'Test2::Util::Stash' => '0.000159',
21080             'Test2::Util::Sub' => '0.000159',
21081             'Test2::Util::Table' => '0.000159',
21082             'Test2::Util::Table::Cell'=> '0.000159',
21083             'Test2::Util::Table::LineBreak'=> '0.000159',
21084             'Test2::Util::Term' => '0.000159',
21085             'Test2::Util::Times' => '0.000159',
21086             'Test2::V0' => '0.000159',
21087             'Test2::Workflow' => '0.000159',
21088             'Test2::Workflow::BlockBase'=> '0.000159',
21089             'Test2::Workflow::Build'=> '0.000159',
21090             'Test2::Workflow::Runner'=> '0.000159',
21091             'Test2::Workflow::Task' => '0.000159',
21092             'Test2::Workflow::Task::Action'=> '0.000159',
21093             'Test2::Workflow::Task::Group'=> '0.000159',
21094             'builtin' => '0.012',
21095             'locale' => '1.11',
21096             },
21097             removed => {
21098             }
21099             },
21100             5.034002 => {
21101             delta_from => 5.034001,
21102             changed => {
21103             'B::Op_private' => '5.034002',
21104             'Config' => '5.034002',
21105             'Module::CoreList' => '5.20231125',
21106             'Module::CoreList::Utils'=> '5.20231125',
21107             },
21108             removed => {
21109             }
21110             },
21111             5.036002 => {
21112             delta_from => 5.036001,
21113             changed => {
21114             'B::Op_private' => '5.036002',
21115             'Config' => '5.036002',
21116             'Module::CoreList' => '5.20231125',
21117             'Module::CoreList::Utils'=> '5.20231125',
21118             },
21119             removed => {
21120             }
21121             },
21122             5.038001 => {
21123             delta_from => 5.038000,
21124             changed => {
21125             'B::Op_private' => '5.038001',
21126             'Config' => '5.038001',
21127             'Module::CoreList' => '5.20231125',
21128             'Module::CoreList::Utils'=> '5.20231125',
21129             },
21130             removed => {
21131             }
21132             },
21133             5.034003 => {
21134             delta_from => 5.034002,
21135             changed => {
21136             'B::Op_private' => '5.034003',
21137             'Config' => '5.034003',
21138             'Module::CoreList' => '5.20231129',
21139             'Module::CoreList::Utils'=> '5.20231129',
21140             },
21141             removed => {
21142             }
21143             },
21144             5.036003 => {
21145             delta_from => 5.036002,
21146             changed => {
21147             'B::Op_private' => '5.036003',
21148             'Config' => '5.036003',
21149             'Module::CoreList' => '5.20231129',
21150             'Module::CoreList::Utils'=> '5.20231129',
21151             },
21152             removed => {
21153             }
21154             },
21155             5.038002 => {
21156             delta_from => 5.038001,
21157             changed => {
21158             'B::Op_private' => '5.038002',
21159             'Config' => '5.038002',
21160             'Module::CoreList' => '5.20231129',
21161             'Module::CoreList::Utils'=> '5.20231129',
21162             },
21163             removed => {
21164             }
21165             },
21166             5.039006 => {
21167             delta_from => 5.039005,
21168             changed => {
21169             'Archive::Tar' => '3.02_001',
21170             'Archive::Tar::Constant'=> '3.02_001',
21171             'Archive::Tar::File' => '3.02_001',
21172             'B::Op_private' => '5.039006',
21173             'Config' => '5.039006',
21174             'Fatal' => '2.37',
21175             'Fcntl' => '1.16',
21176             'File::Glob' => '1.41',
21177             'IO' => '1.55',
21178             'IO::Dir' => '1.55',
21179             'IO::File' => '1.55',
21180             'IO::Handle' => '1.55',
21181             'IO::Pipe' => '1.55',
21182             'IO::Poll' => '1.55',
21183             'IO::Seekable' => '1.55',
21184             'IO::Select' => '1.55',
21185             'IO::Socket' => '1.55',
21186             'IO::Socket::INET' => '1.55',
21187             'IO::Socket::UNIX' => '1.55',
21188             'Math::BigFloat' => '2.003001',
21189             'Math::BigFloat::Trace' => '0.67',
21190             'Math::BigInt' => '2.003001',
21191             'Math::BigInt::Calc' => '2.003001',
21192             'Math::BigInt::FastCalc'=> '0.5016',
21193             'Math::BigInt::Lib' => '2.003001',
21194             'Math::BigInt::Trace' => '0.67',
21195             'Math::BigRat' => '2.003001',
21196             'Math::BigRat::Trace' => '0.67',
21197             'Module::CoreList' => '5.20231230',
21198             'Module::CoreList::Utils'=> '5.20231230',
21199             'Test2' => '1.302198',
21200             'Test2::API' => '1.302198',
21201             'Test2::API::Breakage' => '1.302198',
21202             'Test2::API::Context' => '1.302198',
21203             'Test2::API::Instance' => '1.302198',
21204             'Test2::API::InterceptResult'=> '1.302198',
21205             'Test2::API::InterceptResult::Event'=> '1.302198',
21206             'Test2::API::InterceptResult::Facet'=> '1.302198',
21207             'Test2::API::InterceptResult::Hub'=> '1.302198',
21208             'Test2::API::InterceptResult::Squasher'=> '1.302198',
21209             'Test2::API::Stack' => '1.302198',
21210             'Test2::Event' => '1.302198',
21211             'Test2::Event::Bail' => '1.302198',
21212             'Test2::Event::Diag' => '1.302198',
21213             'Test2::Event::Encoding'=> '1.302198',
21214             'Test2::Event::Exception'=> '1.302198',
21215             'Test2::Event::Fail' => '1.302198',
21216             'Test2::Event::Generic' => '1.302198',
21217             'Test2::Event::Note' => '1.302198',
21218             'Test2::Event::Ok' => '1.302198',
21219             'Test2::Event::Pass' => '1.302198',
21220             'Test2::Event::Plan' => '1.302198',
21221             'Test2::Event::Skip' => '1.302198',
21222             'Test2::Event::Subtest' => '1.302198',
21223             'Test2::Event::TAP::Version'=> '1.302198',
21224             'Test2::Event::V2' => '1.302198',
21225             'Test2::Event::Waiting' => '1.302198',
21226             'Test2::EventFacet' => '1.302198',
21227             'Test2::EventFacet::About'=> '1.302198',
21228             'Test2::EventFacet::Amnesty'=> '1.302198',
21229             'Test2::EventFacet::Assert'=> '1.302198',
21230             'Test2::EventFacet::Control'=> '1.302198',
21231             'Test2::EventFacet::Error'=> '1.302198',
21232             'Test2::EventFacet::Hub'=> '1.302198',
21233             'Test2::EventFacet::Info'=> '1.302198',
21234             'Test2::EventFacet::Info::Table'=> '1.302198',
21235             'Test2::EventFacet::Meta'=> '1.302198',
21236             'Test2::EventFacet::Parent'=> '1.302198',
21237             'Test2::EventFacet::Plan'=> '1.302198',
21238             'Test2::EventFacet::Render'=> '1.302198',
21239             'Test2::EventFacet::Trace'=> '1.302198',
21240             'Test2::Formatter' => '1.302198',
21241             'Test2::Formatter::TAP' => '1.302198',
21242             'Test2::Hub' => '1.302198',
21243             'Test2::Hub::Interceptor'=> '1.302198',
21244             'Test2::Hub::Interceptor::Terminator'=> '1.302198',
21245             'Test2::Hub::Subtest' => '1.302198',
21246             'Test2::IPC' => '1.302198',
21247             'Test2::IPC::Driver' => '1.302198',
21248             'Test2::IPC::Driver::Files'=> '1.302198',
21249             'Test2::Tools::Tiny' => '1.302198',
21250             'Test2::Util' => '1.302198',
21251             'Test2::Util::ExternalMeta'=> '1.302198',
21252             'Test2::Util::Facets2Legacy'=> '1.302198',
21253             'Test2::Util::HashBase' => '1.302198',
21254             'Test2::Util::Trace' => '1.302198',
21255             'Test::Builder' => '1.302198',
21256             'Test::Builder::Formatter'=> '1.302198',
21257             'Test::Builder::Module' => '1.302198',
21258             'Test::Builder::Tester' => '1.302198',
21259             'Test::Builder::Tester::Color'=> '1.302198',
21260             'Test::Builder::TodoDiag'=> '1.302198',
21261             'Test::More' => '1.302198',
21262             'Test::Simple' => '1.302198',
21263             'Test::Tester' => '1.302198',
21264             'Test::Tester::Capture' => '1.302198',
21265             'Test::Tester::CaptureRunner'=> '1.302198',
21266             'Test::Tester::Delegate'=> '1.302198',
21267             'Test::use::ok' => '1.302198',
21268             'autodie' => '2.37',
21269             'autodie::Scope::Guard' => '2.37',
21270             'autodie::Scope::GuardStack'=> '2.37',
21271             'autodie::Util' => '2.37',
21272             'autodie::exception' => '2.37',
21273             'autodie::exception::system'=> '2.37',
21274             'autodie::hints' => '2.37',
21275             'autodie::skip' => '2.37',
21276             'bigfloat' => '0.67',
21277             'bigint' => '0.67',
21278             'bignum' => '0.67',
21279             'bigrat' => '0.67',
21280             'diagnostics' => '1.40',
21281             'feature' => '1.86',
21282             'ok' => '1.302198',
21283             're' => '0.45',
21284             'threads' => '2.40',
21285             },
21286             removed => {
21287             }
21288             },
21289             5.039007 => {
21290             delta_from => 5.039006,
21291             changed => {
21292             'B::Op_private' => '5.039007',
21293             'Config' => '5.039007',
21294             'Exporter' => '5.78',
21295             'Exporter::Heavy' => '5.78',
21296             'Hash::Util' => '0.31',
21297             'I18N::Langinfo' => '0.23',
21298             'Math::BigFloat' => '2.003002',
21299             'Math::BigInt' => '2.003002',
21300             'Math::BigInt::Calc' => '2.003002',
21301             'Math::BigInt::FastCalc'=> '0.5018',
21302             'Math::BigInt::Lib' => '2.003002',
21303             'Math::BigRat' => '2.003002',
21304             'Module::CoreList' => '5.20240120',
21305             'Module::CoreList::Utils'=> '5.20240120',
21306             'Pod::Checker' => '1.76',
21307             'SelfLoader' => '1.27',
21308             },
21309             removed => {
21310             }
21311             },
21312             5.039008 => {
21313             delta_from => 5.039007,
21314             changed => {
21315             'B::Deparse' => '1.75',
21316             'B::Op_private' => '5.039008',
21317             'Config' => '5.039008',
21318             'DynaLoader' => '1.55',
21319             'File::Glob' => '1.42',
21320             'Hash::Util' => '0.32',
21321             'Hash::Util::FieldHash' => '1.27',
21322             'I18N::Langinfo' => '0.24',
21323             'Module::CoreList' => '5.20240223',
21324             'Module::CoreList::Utils'=> '5.20240223',
21325             'POSIX' => '2.18',
21326             'PerlIO::encoding' => '0.31',
21327             'Pod::Checker' => '1.77',
21328             'Safe' => '2.46',
21329             'Tie::File' => '1.08',
21330             'XS::APItest' => '1.35',
21331             'attributes' => '0.36',
21332             'builtin' => '0.014',
21333             'mro' => '1.29',
21334             'perlfaq' => '5.20240218',
21335             'warnings' => '1.68',
21336             },
21337             removed => {
21338             }
21339             },
21340             5.039009 => {
21341             delta_from => 5.039008,
21342             changed => {
21343             'B::Op_private' => '5.039009',
21344             'Compress::Raw::Bzip2' => '2.210',
21345             'Compress::Raw::Zlib' => '2.209',
21346             'Compress::Zlib' => '2.207',
21347             'Config' => '5.039009',
21348             'DynaLoader' => '1.56',
21349             'Encode' => '3.21',
21350             'Fcntl' => '1.17',
21351             'IO::Compress::Adapter::Bzip2'=> '2.207',
21352             'IO::Compress::Adapter::Deflate'=> '2.207',
21353             'IO::Compress::Adapter::Identity'=> '2.207',
21354             'IO::Compress::Base' => '2.207',
21355             'IO::Compress::Base::Common'=> '2.207',
21356             'IO::Compress::Bzip2' => '2.207',
21357             'IO::Compress::Deflate' => '2.207',
21358             'IO::Compress::Gzip' => '2.207',
21359             'IO::Compress::Gzip::Constants'=> '2.207',
21360             'IO::Compress::RawDeflate'=> '2.207',
21361             'IO::Compress::Zip' => '2.207',
21362             'IO::Compress::Zip::Constants'=> '2.207',
21363             'IO::Compress::Zlib::Constants'=> '2.207',
21364             'IO::Compress::Zlib::Extra'=> '2.207',
21365             'IO::Uncompress::Adapter::Bunzip2'=> '2.207',
21366             'IO::Uncompress::Adapter::Identity'=> '2.207',
21367             'IO::Uncompress::Adapter::Inflate'=> '2.207',
21368             'IO::Uncompress::AnyInflate'=> '2.207',
21369             'IO::Uncompress::AnyUncompress'=> '2.207',
21370             'IO::Uncompress::Base' => '2.207',
21371             'IO::Uncompress::Bunzip2'=> '2.207',
21372             'IO::Uncompress::Gunzip'=> '2.207',
21373             'IO::Uncompress::Inflate'=> '2.207',
21374             'IO::Uncompress::RawInflate'=> '2.207',
21375             'IO::Uncompress::Unzip' => '2.207',
21376             'IO::Zlib' => '1.15',
21377             'Module::CoreList' => '5.20240320',
21378             'Module::CoreList::Utils'=> '5.20240320',
21379             'Text::Tabs' => '2024.001',
21380             'Text::Wrap' => '2024.001',
21381             'Tie::File' => '1.09',
21382             'Time::HiRes' => '1.9777',
21383             'bytes' => '1.09',
21384             're' => '0.47',
21385             },
21386             removed => {
21387             }
21388             },
21389             5.039010 => {
21390             delta_from => 5.039009,
21391             changed => {
21392             'B::Deparse' => '1.76',
21393             'B::Op_private' => '5.039010',
21394             'Compress::Raw::Bzip2' => '2.212',
21395             'Compress::Raw::Zlib' => '2.212',
21396             'Compress::Zlib' => '2.212',
21397             'Config' => '5.03901',
21398             'IO::Compress::Adapter::Bzip2'=> '2.212',
21399             'IO::Compress::Adapter::Deflate'=> '2.212',
21400             'IO::Compress::Adapter::Identity'=> '2.212',
21401             'IO::Compress::Base' => '2.212',
21402             'IO::Compress::Base::Common'=> '2.212',
21403             'IO::Compress::Bzip2' => '2.212',
21404             'IO::Compress::Deflate' => '2.212',
21405             'IO::Compress::Gzip' => '2.212',
21406             'IO::Compress::Gzip::Constants'=> '2.212',
21407             'IO::Compress::RawDeflate'=> '2.212',
21408             'IO::Compress::Zip' => '2.212',
21409             'IO::Compress::Zip::Constants'=> '2.212',
21410             'IO::Compress::Zlib::Constants'=> '2.212',
21411             'IO::Compress::Zlib::Extra'=> '2.212',
21412             'IO::Uncompress::Adapter::Bunzip2'=> '2.212',
21413             'IO::Uncompress::Adapter::Identity'=> '2.212',
21414             'IO::Uncompress::Adapter::Inflate'=> '2.212',
21415             'IO::Uncompress::AnyInflate'=> '2.212',
21416             'IO::Uncompress::AnyUncompress'=> '2.212',
21417             'IO::Uncompress::Base' => '2.212',
21418             'IO::Uncompress::Bunzip2'=> '2.212',
21419             'IO::Uncompress::Gunzip'=> '2.212',
21420             'IO::Uncompress::Inflate'=> '2.212',
21421             'IO::Uncompress::RawInflate'=> '2.212',
21422             'IO::Uncompress::Unzip' => '2.212',
21423             'Module::CoreList' => '5.20240420',
21424             'Module::CoreList::Utils'=> '5.20240420',
21425             'POSIX' => '2.19',
21426             'Pod::Man' => '5.01_01',
21427             'Pod::ParseLink' => '5.01_01',
21428             'Pod::Text' => '5.01_01',
21429             'Pod::Text::Color' => '5.01_01',
21430             'Pod::Text::Overstrike' => '5.01_01',
21431             'Pod::Text::Termcap' => '5.01_01',
21432             'Socket' => '2.038',
21433             'Test2' => '1.302199',
21434             'Test2::API' => '1.302199',
21435             'Test2::API::Breakage' => '1.302199',
21436             'Test2::API::Context' => '1.302199',
21437             'Test2::API::Instance' => '1.302199',
21438             'Test2::API::InterceptResult'=> '1.302199',
21439             'Test2::API::InterceptResult::Event'=> '1.302199',
21440             'Test2::API::InterceptResult::Facet'=> '1.302199',
21441             'Test2::API::InterceptResult::Hub'=> '1.302199',
21442             'Test2::API::InterceptResult::Squasher'=> '1.302199',
21443             'Test2::API::Stack' => '1.302199',
21444             'Test2::AsyncSubtest' => '0.000162',
21445             'Test2::AsyncSubtest::Event::Attach'=> '0.000162',
21446             'Test2::AsyncSubtest::Event::Detach'=> '0.000162',
21447             'Test2::AsyncSubtest::Formatter'=> '0.000162',
21448             'Test2::AsyncSubtest::Hub'=> '0.000162',
21449             'Test2::Bundle' => '0.000162',
21450             'Test2::Bundle::Extended'=> '0.000162',
21451             'Test2::Bundle::More' => '0.000162',
21452             'Test2::Bundle::Simple' => '0.000162',
21453             'Test2::Compare' => '0.000162',
21454             'Test2::Compare::Array' => '0.000162',
21455             'Test2::Compare::Bag' => '0.000162',
21456             'Test2::Compare::Base' => '0.000162',
21457             'Test2::Compare::Bool' => '0.000162',
21458             'Test2::Compare::Custom'=> '0.000162',
21459             'Test2::Compare::DeepRef'=> '0.000162',
21460             'Test2::Compare::Delta' => '0.000162',
21461             'Test2::Compare::Event' => '0.000162',
21462             'Test2::Compare::EventMeta'=> '0.000162',
21463             'Test2::Compare::Float' => '0.000162',
21464             'Test2::Compare::Hash' => '0.000162',
21465             'Test2::Compare::Isa' => '0.000162',
21466             'Test2::Compare::Meta' => '0.000162',
21467             'Test2::Compare::Negatable'=> '0.000162',
21468             'Test2::Compare::Number'=> '0.000162',
21469             'Test2::Compare::Object'=> '0.000162',
21470             'Test2::Compare::OrderedSubset'=> '0.000162',
21471             'Test2::Compare::Pattern'=> '0.000162',
21472             'Test2::Compare::Ref' => '0.000162',
21473             'Test2::Compare::Regex' => '0.000162',
21474             'Test2::Compare::Scalar'=> '0.000162',
21475             'Test2::Compare::Set' => '0.000162',
21476             'Test2::Compare::String'=> '0.000162',
21477             'Test2::Compare::Undef' => '0.000162',
21478             'Test2::Compare::Wildcard'=> '0.000162',
21479             'Test2::Event' => '1.302199',
21480             'Test2::Event::Bail' => '1.302199',
21481             'Test2::Event::Diag' => '1.302199',
21482             'Test2::Event::Encoding'=> '1.302199',
21483             'Test2::Event::Exception'=> '1.302199',
21484             'Test2::Event::Fail' => '1.302199',
21485             'Test2::Event::Generic' => '1.302199',
21486             'Test2::Event::Note' => '1.302199',
21487             'Test2::Event::Ok' => '1.302199',
21488             'Test2::Event::Pass' => '1.302199',
21489             'Test2::Event::Plan' => '1.302199',
21490             'Test2::Event::Skip' => '1.302199',
21491             'Test2::Event::Subtest' => '1.302199',
21492             'Test2::Event::TAP::Version'=> '1.302199',
21493             'Test2::Event::V2' => '1.302199',
21494             'Test2::Event::Waiting' => '1.302199',
21495             'Test2::EventFacet' => '1.302199',
21496             'Test2::EventFacet::About'=> '1.302199',
21497             'Test2::EventFacet::Amnesty'=> '1.302199',
21498             'Test2::EventFacet::Assert'=> '1.302199',
21499             'Test2::EventFacet::Control'=> '1.302199',
21500             'Test2::EventFacet::Error'=> '1.302199',
21501             'Test2::EventFacet::Hub'=> '1.302199',
21502             'Test2::EventFacet::Info'=> '1.302199',
21503             'Test2::EventFacet::Info::Table'=> '1.302199',
21504             'Test2::EventFacet::Meta'=> '1.302199',
21505             'Test2::EventFacet::Parent'=> '1.302199',
21506             'Test2::EventFacet::Plan'=> '1.302199',
21507             'Test2::EventFacet::Render'=> '1.302199',
21508             'Test2::EventFacet::Trace'=> '1.302199',
21509             'Test2::Formatter' => '1.302199',
21510             'Test2::Formatter::TAP' => '1.302199',
21511             'Test2::Hub' => '1.302199',
21512             'Test2::Hub::Interceptor'=> '1.302199',
21513             'Test2::Hub::Interceptor::Terminator'=> '1.302199',
21514             'Test2::Hub::Subtest' => '1.302199',
21515             'Test2::IPC' => '1.302199',
21516             'Test2::IPC::Driver' => '1.302199',
21517             'Test2::IPC::Driver::Files'=> '1.302199',
21518             'Test2::Manual' => '0.000162',
21519             'Test2::Manual::Anatomy'=> '0.000162',
21520             'Test2::Manual::Anatomy::API'=> '0.000162',
21521             'Test2::Manual::Anatomy::Context'=> '0.000162',
21522             'Test2::Manual::Anatomy::EndToEnd'=> '0.000162',
21523             'Test2::Manual::Anatomy::Event'=> '0.000162',
21524             'Test2::Manual::Anatomy::Hubs'=> '0.000162',
21525             'Test2::Manual::Anatomy::IPC'=> '0.000162',
21526             'Test2::Manual::Anatomy::Utilities'=> '0.000162',
21527             'Test2::Manual::Concurrency'=> '0.000162',
21528             'Test2::Manual::Contributing'=> '0.000162',
21529             'Test2::Manual::Testing'=> '0.000162',
21530             'Test2::Manual::Testing::Introduction'=> '0.000162',
21531             'Test2::Manual::Testing::Migrating'=> '0.000162',
21532             'Test2::Manual::Testing::Planning'=> '0.000162',
21533             'Test2::Manual::Testing::Todo'=> '0.000162',
21534             'Test2::Manual::Tooling'=> '0.000162',
21535             'Test2::Manual::Tooling::FirstTool'=> '0.000162',
21536             'Test2::Manual::Tooling::Formatter'=> '0.000162',
21537             'Test2::Manual::Tooling::Nesting'=> '0.000162',
21538             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000162',
21539             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000162',
21540             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000162',
21541             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000162',
21542             'Test2::Manual::Tooling::Subtest'=> '0.000162',
21543             'Test2::Manual::Tooling::TestBuilder'=> '0.000162',
21544             'Test2::Manual::Tooling::Testing'=> '0.000162',
21545             'Test2::Mock' => '0.000162',
21546             'Test2::Plugin' => '0.000162',
21547             'Test2::Plugin::BailOnFail'=> '0.000162',
21548             'Test2::Plugin::DieOnFail'=> '0.000162',
21549             'Test2::Plugin::ExitSummary'=> '0.000162',
21550             'Test2::Plugin::SRand' => '0.000162',
21551             'Test2::Plugin::Times' => '0.000162',
21552             'Test2::Plugin::UTF8' => '0.000162',
21553             'Test2::Require' => '0.000162',
21554             'Test2::Require::AuthorTesting'=> '0.000162',
21555             'Test2::Require::AutomatedTesting'=> '0.000162',
21556             'Test2::Require::EnvVar'=> '0.000162',
21557             'Test2::Require::ExtendedTesting'=> '0.000162',
21558             'Test2::Require::Fork' => '0.000162',
21559             'Test2::Require::Module'=> '0.000162',
21560             'Test2::Require::NonInteractiveTesting'=> '0.000162',
21561             'Test2::Require::Perl' => '0.000162',
21562             'Test2::Require::RealFork'=> '0.000162',
21563             'Test2::Require::ReleaseTesting'=> '0.000162',
21564             'Test2::Require::Threads'=> '0.000162',
21565             'Test2::Suite' => '0.000162',
21566             'Test2::Todo' => '0.000162',
21567             'Test2::Tools' => '0.000162',
21568             'Test2::Tools::AsyncSubtest'=> '0.000162',
21569             'Test2::Tools::Basic' => '0.000162',
21570             'Test2::Tools::Class' => '0.000162',
21571             'Test2::Tools::ClassicCompare'=> '0.000162',
21572             'Test2::Tools::Compare' => '0.000162',
21573             'Test2::Tools::Defer' => '0.000162',
21574             'Test2::Tools::Encoding'=> '0.000162',
21575             'Test2::Tools::Event' => '0.000162',
21576             'Test2::Tools::Exception'=> '0.000162',
21577             'Test2::Tools::Exports' => '0.000162',
21578             'Test2::Tools::GenTemp' => '0.000162',
21579             'Test2::Tools::Grab' => '0.000162',
21580             'Test2::Tools::Mock' => '0.000162',
21581             'Test2::Tools::Ref' => '0.000162',
21582             'Test2::Tools::Refcount'=> '0.000162',
21583             'Test2::Tools::Spec' => '0.000162',
21584             'Test2::Tools::Subtest' => '0.000162',
21585             'Test2::Tools::Target' => '0.000162',
21586             'Test2::Tools::Tester' => '0.000162',
21587             'Test2::Tools::Tiny' => '1.302199',
21588             'Test2::Tools::Warnings'=> '0.000162',
21589             'Test2::Util' => '1.302199',
21590             'Test2::Util::ExternalMeta'=> '1.302199',
21591             'Test2::Util::Facets2Legacy'=> '1.302199',
21592             'Test2::Util::Grabber' => '0.000162',
21593             'Test2::Util::Guard' => '0.000162',
21594             'Test2::Util::HashBase' => '1.302199',
21595             'Test2::Util::Importer' => '0.000162',
21596             'Test2::Util::Ref' => '0.000162',
21597             'Test2::Util::Stash' => '0.000162',
21598             'Test2::Util::Sub' => '0.000162',
21599             'Test2::Util::Table' => '0.000162',
21600             'Test2::Util::Table::Cell'=> '0.000162',
21601             'Test2::Util::Table::LineBreak'=> '0.000162',
21602             'Test2::Util::Term' => '0.000162',
21603             'Test2::Util::Times' => '0.000162',
21604             'Test2::Util::Trace' => '1.302199',
21605             'Test2::V0' => '0.000162',
21606             'Test2::Workflow' => '0.000162',
21607             'Test2::Workflow::BlockBase'=> '0.000162',
21608             'Test2::Workflow::Build'=> '0.000162',
21609             'Test2::Workflow::Runner'=> '0.000162',
21610             'Test2::Workflow::Task' => '0.000162',
21611             'Test2::Workflow::Task::Action'=> '0.000162',
21612             'Test2::Workflow::Task::Group'=> '0.000162',
21613             'Test::Builder' => '1.302199',
21614             'Test::Builder::Formatter'=> '1.302199',
21615             'Test::Builder::Module' => '1.302199',
21616             'Test::Builder::Tester' => '1.302199',
21617             'Test::Builder::Tester::Color'=> '1.302199',
21618             'Test::Builder::TodoDiag'=> '1.302199',
21619             'Test::More' => '1.302199',
21620             'Test::Simple' => '1.302199',
21621             'Test::Tester' => '1.302199',
21622             'Test::Tester::Capture' => '1.302199',
21623             'Test::Tester::CaptureRunner'=> '1.302199',
21624             'Test::Tester::Delegate'=> '1.302199',
21625             'Test::use::ok' => '1.302199',
21626             'XS::APItest' => '1.36',
21627             'experimental' => '0.032',
21628             'feature' => '1.88',
21629             'locale' => '1.12',
21630             'ok' => '1.302199',
21631             'stable' => '0.032',
21632             'warnings' => '1.69',
21633             },
21634             removed => {
21635             }
21636             },
21637             5.040000 => {
21638             delta_from => 5.039010,
21639             changed => {
21640             'B::Op_private' => '5.040000',
21641             'Config' => '5.04',
21642             'Fcntl' => '1.18',
21643             'Module::CoreList' => '5.20240609',
21644             'Module::CoreList::Utils'=> '5.20240609',
21645             'POSIX' => '2.20',
21646             'Pod::Man' => '5.01_02',
21647             'Pod::ParseLink' => '5.01_02',
21648             'Pod::Text' => '5.01_02',
21649             'Pod::Text::Color' => '5.01_02',
21650             'Pod::Text::Overstrike' => '5.01_02',
21651             'Pod::Text::Termcap' => '5.01_02',
21652             'UNIVERSAL' => '1.17',
21653             'feature' => '1.89',
21654             'stable' => '0.033',
21655             },
21656             removed => {
21657             }
21658             },
21659             5.041000 => {
21660             delta_from => 5.040000,
21661             changed => {
21662             'B::Op_private' => '5.041000',
21663             'Config' => '5.041000',
21664             'Module::CoreList' => '5.20240610',
21665             'Module::CoreList::Utils'=> '5.20240610',
21666             'feature' => '1.90',
21667             },
21668             removed => {
21669             }
21670             },
21671             5.041001 => {
21672             delta_from => 5.041000,
21673             changed => {
21674             'B::Op_private' => '5.041001',
21675             'Config' => '5.041001',
21676             'Data::Dumper' => '2.190',
21677             'ExtUtils::ParseXS' => '3.52',
21678             'ExtUtils::ParseXS::Constants'=> '3.52',
21679             'ExtUtils::ParseXS::CountLines'=> '3.52',
21680             'ExtUtils::ParseXS::Eval'=> '3.52',
21681             'ExtUtils::ParseXS::Utilities'=> '3.52',
21682             'ExtUtils::Typemaps::Cmd'=> '3.52',
21683             'ExtUtils::Typemaps::InputMap'=> '3.52',
21684             'ExtUtils::Typemaps::OutputMap'=> '3.52',
21685             'ExtUtils::Typemaps::Type'=> '3.52',
21686             'Fcntl' => '1.19',
21687             'Getopt::Long' => '2.58',
21688             'Getopt::Long::Parser' => '2.58',
21689             'Math::BigFloat' => '2.003003',
21690             'Math::BigInt' => '2.003003',
21691             'Math::BigInt::Calc' => '2.003003',
21692             'Math::BigInt::Lib' => '2.003003',
21693             'Math::BigRat' => '2.003003',
21694             'Module::CoreList' => '5.20240620',
21695             'Module::CoreList::Utils'=> '5.20240620',
21696             'POSIX' => '2.21',
21697             'Test2::AsyncSubtest' => '0.000163',
21698             'Test2::AsyncSubtest::Event::Attach'=> '0.000163',
21699             'Test2::AsyncSubtest::Event::Detach'=> '0.000163',
21700             'Test2::AsyncSubtest::Formatter'=> '0.000163',
21701             'Test2::AsyncSubtest::Hub'=> '0.000163',
21702             'Test2::Bundle' => '0.000163',
21703             'Test2::Bundle::Extended'=> '0.000163',
21704             'Test2::Bundle::More' => '0.000163',
21705             'Test2::Bundle::Simple' => '0.000163',
21706             'Test2::Compare' => '0.000163',
21707             'Test2::Compare::Array' => '0.000163',
21708             'Test2::Compare::Bag' => '0.000163',
21709             'Test2::Compare::Base' => '0.000163',
21710             'Test2::Compare::Bool' => '0.000163',
21711             'Test2::Compare::Custom'=> '0.000163',
21712             'Test2::Compare::DeepRef'=> '0.000163',
21713             'Test2::Compare::Delta' => '0.000163',
21714             'Test2::Compare::Event' => '0.000163',
21715             'Test2::Compare::EventMeta'=> '0.000163',
21716             'Test2::Compare::Float' => '0.000163',
21717             'Test2::Compare::Hash' => '0.000163',
21718             'Test2::Compare::Isa' => '0.000163',
21719             'Test2::Compare::Meta' => '0.000163',
21720             'Test2::Compare::Negatable'=> '0.000163',
21721             'Test2::Compare::Number'=> '0.000163',
21722             'Test2::Compare::Object'=> '0.000163',
21723             'Test2::Compare::OrderedSubset'=> '0.000163',
21724             'Test2::Compare::Pattern'=> '0.000163',
21725             'Test2::Compare::Ref' => '0.000163',
21726             'Test2::Compare::Regex' => '0.000163',
21727             'Test2::Compare::Scalar'=> '0.000163',
21728             'Test2::Compare::Set' => '0.000163',
21729             'Test2::Compare::String'=> '0.000163',
21730             'Test2::Compare::Undef' => '0.000163',
21731             'Test2::Compare::Wildcard'=> '0.000163',
21732             'Test2::Manual' => '0.000163',
21733             'Test2::Manual::Anatomy'=> '0.000163',
21734             'Test2::Manual::Anatomy::API'=> '0.000163',
21735             'Test2::Manual::Anatomy::Context'=> '0.000163',
21736             'Test2::Manual::Anatomy::EndToEnd'=> '0.000163',
21737             'Test2::Manual::Anatomy::Event'=> '0.000163',
21738             'Test2::Manual::Anatomy::Hubs'=> '0.000163',
21739             'Test2::Manual::Anatomy::IPC'=> '0.000163',
21740             'Test2::Manual::Anatomy::Utilities'=> '0.000163',
21741             'Test2::Manual::Concurrency'=> '0.000163',
21742             'Test2::Manual::Contributing'=> '0.000163',
21743             'Test2::Manual::Testing'=> '0.000163',
21744             'Test2::Manual::Testing::Introduction'=> '0.000163',
21745             'Test2::Manual::Testing::Migrating'=> '0.000163',
21746             'Test2::Manual::Testing::Planning'=> '0.000163',
21747             'Test2::Manual::Testing::Todo'=> '0.000163',
21748             'Test2::Manual::Tooling'=> '0.000163',
21749             'Test2::Manual::Tooling::FirstTool'=> '0.000163',
21750             'Test2::Manual::Tooling::Formatter'=> '0.000163',
21751             'Test2::Manual::Tooling::Nesting'=> '0.000163',
21752             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000163',
21753             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000163',
21754             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000163',
21755             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000163',
21756             'Test2::Manual::Tooling::Subtest'=> '0.000163',
21757             'Test2::Manual::Tooling::TestBuilder'=> '0.000163',
21758             'Test2::Manual::Tooling::Testing'=> '0.000163',
21759             'Test2::Mock' => '0.000163',
21760             'Test2::Plugin' => '0.000163',
21761             'Test2::Plugin::BailOnFail'=> '0.000163',
21762             'Test2::Plugin::DieOnFail'=> '0.000163',
21763             'Test2::Plugin::ExitSummary'=> '0.000163',
21764             'Test2::Plugin::SRand' => '0.000163',
21765             'Test2::Plugin::Times' => '0.000163',
21766             'Test2::Plugin::UTF8' => '0.000163',
21767             'Test2::Require' => '0.000163',
21768             'Test2::Require::AuthorTesting'=> '0.000163',
21769             'Test2::Require::AutomatedTesting'=> '0.000163',
21770             'Test2::Require::EnvVar'=> '0.000163',
21771             'Test2::Require::ExtendedTesting'=> '0.000163',
21772             'Test2::Require::Fork' => '0.000163',
21773             'Test2::Require::Module'=> '0.000163',
21774             'Test2::Require::NonInteractiveTesting'=> '0.000163',
21775             'Test2::Require::Perl' => '0.000163',
21776             'Test2::Require::RealFork'=> '0.000163',
21777             'Test2::Require::ReleaseTesting'=> '0.000163',
21778             'Test2::Require::Threads'=> '0.000163',
21779             'Test2::Suite' => '0.000163',
21780             'Test2::Todo' => '0.000163',
21781             'Test2::Tools' => '0.000163',
21782             'Test2::Tools::AsyncSubtest'=> '0.000163',
21783             'Test2::Tools::Basic' => '0.000163',
21784             'Test2::Tools::Class' => '0.000163',
21785             'Test2::Tools::ClassicCompare'=> '0.000163',
21786             'Test2::Tools::Compare' => '0.000163',
21787             'Test2::Tools::Defer' => '0.000163',
21788             'Test2::Tools::Encoding'=> '0.000163',
21789             'Test2::Tools::Event' => '0.000163',
21790             'Test2::Tools::Exception'=> '0.000163',
21791             'Test2::Tools::Exports' => '0.000163',
21792             'Test2::Tools::GenTemp' => '0.000163',
21793             'Test2::Tools::Grab' => '0.000163',
21794             'Test2::Tools::Mock' => '0.000163',
21795             'Test2::Tools::Ref' => '0.000163',
21796             'Test2::Tools::Refcount'=> '0.000163',
21797             'Test2::Tools::Spec' => '0.000163',
21798             'Test2::Tools::Subtest' => '0.000163',
21799             'Test2::Tools::Target' => '0.000163',
21800             'Test2::Tools::Tester' => '0.000163',
21801             'Test2::Tools::Warnings'=> '0.000163',
21802             'Test2::Util::Grabber' => '0.000163',
21803             'Test2::Util::Guard' => '0.000163',
21804             'Test2::Util::Importer' => '0.000163',
21805             'Test2::Util::Ref' => '0.000163',
21806             'Test2::Util::Stash' => '0.000163',
21807             'Test2::Util::Sub' => '0.000163',
21808             'Test2::Util::Table' => '0.000163',
21809             'Test2::Util::Table::Cell'=> '0.000163',
21810             'Test2::Util::Table::LineBreak'=> '0.000163',
21811             'Test2::Util::Term' => '0.000163',
21812             'Test2::Util::Times' => '0.000163',
21813             'Test2::V0' => '0.000163',
21814             'Test2::Workflow' => '0.000163',
21815             'Test2::Workflow::BlockBase'=> '0.000163',
21816             'Test2::Workflow::Build'=> '0.000163',
21817             'Test2::Workflow::Runner'=> '0.000163',
21818             'Test2::Workflow::Task' => '0.000163',
21819             'Test2::Workflow::Task::Action'=> '0.000163',
21820             'Test2::Workflow::Task::Group'=> '0.000163',
21821             'VMS::Filespec' => '1.14',
21822             'builtin' => '0.015',
21823             'sort' => '2.06',
21824             'warnings' => '1.70',
21825             },
21826             removed => {
21827             }
21828             },
21829             5.041002 => {
21830             delta_from => 5.041001,
21831             changed => {
21832             'B::Deparse' => '1.77',
21833             'B::Op_private' => '5.041002',
21834             'Benchmark' => '1.26',
21835             'Config' => '5.041002',
21836             'Cwd' => '3.92',
21837             'Devel::PPPort' => '3.73',
21838             'File::Spec' => '3.92',
21839             'File::Spec::AmigaOS' => '3.92',
21840             'File::Spec::Cygwin' => '3.92',
21841             'File::Spec::Epoc' => '3.92',
21842             'File::Spec::Functions' => '3.92',
21843             'File::Spec::Mac' => '3.92',
21844             'File::Spec::OS2' => '3.92',
21845             'File::Spec::Unix' => '3.92',
21846             'File::Spec::VMS' => '3.92',
21847             'File::Spec::Win32' => '3.92',
21848             'Module::CoreList' => '5.20240720',
21849             'Module::CoreList::Utils'=> '5.20240720',
21850             'POSIX' => '2.22',
21851             'Pod::Man' => 'v6.0.2',
21852             'Pod::ParseLink' => 'v6.0.2',
21853             'Pod::Text' => 'v6.0.2',
21854             'Pod::Text::Color' => 'v6.0.2',
21855             'Pod::Text::Overstrike' => 'v6.0.2',
21856             'Pod::Text::Termcap' => 'v6.0.2',
21857             'Storable' => '3.33',
21858             'Win32' => '0.59_01',
21859             'XS::APItest' => '1.37',
21860             'locale' => '1.13',
21861             'source::encoding' => '0.01',
21862             'threads' => '2.41',
21863             'utf8' => '1.27',
21864             },
21865             removed => {
21866             }
21867             },
21868             5.041003 => {
21869             delta_from => 5.041002,
21870             changed => {
21871             'App::Prove' => '3.50',
21872             'App::Prove::State' => '3.50',
21873             'App::Prove::State::Result'=> '3.50',
21874             'App::Prove::State::Result::Test'=> '3.50',
21875             'B::Deparse' => '1.78',
21876             'B::Op_private' => '5.041003',
21877             'Compress::Raw::Bzip2' => '2.213',
21878             'Compress::Raw::Zlib' => '2.213',
21879             'Compress::Zlib' => '2.213',
21880             'Config' => '5.041003',
21881             'DynaLoader' => '1.57',
21882             'ExtUtils::ParseXS' => '3.53',
21883             'ExtUtils::ParseXS::Constants'=> '3.53',
21884             'ExtUtils::ParseXS::CountLines'=> '3.53',
21885             'ExtUtils::ParseXS::Eval'=> '3.53',
21886             'ExtUtils::ParseXS::Utilities'=> '3.53',
21887             'ExtUtils::Typemaps' => '3.53',
21888             'ExtUtils::Typemaps::Cmd'=> '3.53',
21889             'ExtUtils::Typemaps::InputMap'=> '3.53',
21890             'ExtUtils::Typemaps::OutputMap'=> '3.53',
21891             'ExtUtils::Typemaps::Type'=> '3.53',
21892             'IO::Compress' => '2.213',
21893             'IO::Compress::Adapter::Bzip2'=> '2.213',
21894             'IO::Compress::Adapter::Deflate'=> '2.213',
21895             'IO::Compress::Adapter::Identity'=> '2.213',
21896             'IO::Compress::Base' => '2.213',
21897             'IO::Compress::Base::Common'=> '2.213',
21898             'IO::Compress::Bzip2' => '2.213',
21899             'IO::Compress::Deflate' => '2.213',
21900             'IO::Compress::Gzip' => '2.213',
21901             'IO::Compress::Gzip::Constants'=> '2.213',
21902             'IO::Compress::RawDeflate'=> '2.213',
21903             'IO::Compress::Zip' => '2.213',
21904             'IO::Compress::Zip::Constants'=> '2.213',
21905             'IO::Compress::Zlib::Constants'=> '2.213',
21906             'IO::Compress::Zlib::Extra'=> '2.213',
21907             'IO::Uncompress::Adapter::Bunzip2'=> '2.213',
21908             'IO::Uncompress::Adapter::Identity'=> '2.213',
21909             'IO::Uncompress::Adapter::Inflate'=> '2.213',
21910             'IO::Uncompress::AnyInflate'=> '2.213',
21911             'IO::Uncompress::AnyUncompress'=> '2.213',
21912             'IO::Uncompress::Base' => '2.213',
21913             'IO::Uncompress::Bunzip2'=> '2.213',
21914             'IO::Uncompress::Gunzip'=> '2.213',
21915             'IO::Uncompress::Inflate'=> '2.213',
21916             'IO::Uncompress::RawInflate'=> '2.213',
21917             'IO::Uncompress::Unzip' => '2.213',
21918             'List::Util' => '1.65',
21919             'List::Util::XS' => '1.65',
21920             'Module::CoreList' => '5.20240829',
21921             'Module::CoreList::Utils'=> '5.20240829',
21922             'Opcode' => '1.66',
21923             'Safe' => '2.47',
21924             'Scalar::Util' => '1.65',
21925             'Storable' => '3.34',
21926             'Sub::Util' => '1.65',
21927             'TAP::Base' => '3.50',
21928             'TAP::Formatter::Base' => '3.50',
21929             'TAP::Formatter::Color' => '3.50',
21930             'TAP::Formatter::Console'=> '3.50',
21931             'TAP::Formatter::Console::ParallelSession'=> '3.50',
21932             'TAP::Formatter::Console::Session'=> '3.50',
21933             'TAP::Formatter::File' => '3.50',
21934             'TAP::Formatter::File::Session'=> '3.50',
21935             'TAP::Formatter::Session'=> '3.50',
21936             'TAP::Harness' => '3.50',
21937             'TAP::Harness::Env' => '3.50',
21938             'TAP::Object' => '3.50',
21939             'TAP::Parser' => '3.50',
21940             'TAP::Parser::Aggregator'=> '3.50',
21941             'TAP::Parser::Grammar' => '3.50',
21942             'TAP::Parser::Iterator' => '3.50',
21943             'TAP::Parser::Iterator::Array'=> '3.50',
21944             'TAP::Parser::Iterator::Process'=> '3.50',
21945             'TAP::Parser::Iterator::Stream'=> '3.50',
21946             'TAP::Parser::IteratorFactory'=> '3.50',
21947             'TAP::Parser::Multiplexer'=> '3.50',
21948             'TAP::Parser::Result' => '3.50',
21949             'TAP::Parser::Result::Bailout'=> '3.50',
21950             'TAP::Parser::Result::Comment'=> '3.50',
21951             'TAP::Parser::Result::Plan'=> '3.50',
21952             'TAP::Parser::Result::Pragma'=> '3.50',
21953             'TAP::Parser::Result::Test'=> '3.50',
21954             'TAP::Parser::Result::Unknown'=> '3.50',
21955             'TAP::Parser::Result::Version'=> '3.50',
21956             'TAP::Parser::Result::YAML'=> '3.50',
21957             'TAP::Parser::ResultFactory'=> '3.50',
21958             'TAP::Parser::Scheduler'=> '3.50',
21959             'TAP::Parser::Scheduler::Job'=> '3.50',
21960             'TAP::Parser::Scheduler::Spinner'=> '3.50',
21961             'TAP::Parser::Source' => '3.50',
21962             'TAP::Parser::SourceHandler'=> '3.50',
21963             'TAP::Parser::SourceHandler::Executable'=> '3.50',
21964             'TAP::Parser::SourceHandler::File'=> '3.50',
21965             'TAP::Parser::SourceHandler::Handle'=> '3.50',
21966             'TAP::Parser::SourceHandler::Perl'=> '3.50',
21967             'TAP::Parser::SourceHandler::RawTAP'=> '3.50',
21968             'TAP::Parser::YAMLish::Reader'=> '3.50',
21969             'TAP::Parser::YAMLish::Writer'=> '3.50',
21970             'Term::Table' => '0.022',
21971             'Term::Table::Cell' => '0.022',
21972             'Term::Table::CellStack'=> '0.022',
21973             'Term::Table::HashBase' => '0.022',
21974             'Term::Table::LineBreak'=> '0.022',
21975             'Term::Table::Spacer' => '0.022',
21976             'Term::Table::Util' => '0.022',
21977             'Test2' => '1.302201',
21978             'Test2::API' => '1.302201',
21979             'Test2::API::Breakage' => '1.302201',
21980             'Test2::API::Context' => '1.302201',
21981             'Test2::API::Instance' => '1.302201',
21982             'Test2::API::InterceptResult'=> '1.302201',
21983             'Test2::API::InterceptResult::Event'=> '1.302201',
21984             'Test2::API::InterceptResult::Facet'=> '1.302201',
21985             'Test2::API::InterceptResult::Hub'=> '1.302201',
21986             'Test2::API::InterceptResult::Squasher'=> '1.302201',
21987             'Test2::API::Stack' => '1.302201',
21988             'Test2::AsyncSubtest' => '1.302201',
21989             'Test2::AsyncSubtest::Event::Attach'=> '1.302201',
21990             'Test2::AsyncSubtest::Event::Detach'=> '1.302201',
21991             'Test2::AsyncSubtest::Formatter'=> '1.302201',
21992             'Test2::AsyncSubtest::Hub'=> '1.302201',
21993             'Test2::Bundle' => '1.302201',
21994             'Test2::Bundle::Extended'=> '1.302201',
21995             'Test2::Bundle::More' => '1.302201',
21996             'Test2::Bundle::Simple' => '1.302201',
21997             'Test2::Compare' => '1.302201',
21998             'Test2::Compare::Array' => '1.302201',
21999             'Test2::Compare::Bag' => '1.302201',
22000             'Test2::Compare::Base' => '1.302201',
22001             'Test2::Compare::Bool' => '1.302201',
22002             'Test2::Compare::Custom'=> '1.302201',
22003             'Test2::Compare::DeepRef'=> '1.302201',
22004             'Test2::Compare::Delta' => '1.302201',
22005             'Test2::Compare::Event' => '1.302201',
22006             'Test2::Compare::EventMeta'=> '1.302201',
22007             'Test2::Compare::Float' => '1.302201',
22008             'Test2::Compare::Hash' => '1.302201',
22009             'Test2::Compare::Isa' => '1.302201',
22010             'Test2::Compare::Meta' => '1.302201',
22011             'Test2::Compare::Negatable'=> '1.302201',
22012             'Test2::Compare::Number'=> '1.302201',
22013             'Test2::Compare::Object'=> '1.302201',
22014             'Test2::Compare::OrderedSubset'=> '1.302201',
22015             'Test2::Compare::Pattern'=> '1.302201',
22016             'Test2::Compare::Ref' => '1.302201',
22017             'Test2::Compare::Regex' => '1.302201',
22018             'Test2::Compare::Scalar'=> '1.302201',
22019             'Test2::Compare::Set' => '1.302201',
22020             'Test2::Compare::String'=> '1.302201',
22021             'Test2::Compare::Undef' => '1.302201',
22022             'Test2::Compare::Wildcard'=> '1.302201',
22023             'Test2::Event' => '1.302201',
22024             'Test2::Event::Bail' => '1.302201',
22025             'Test2::Event::Diag' => '1.302201',
22026             'Test2::Event::Encoding'=> '1.302201',
22027             'Test2::Event::Exception'=> '1.302201',
22028             'Test2::Event::Fail' => '1.302201',
22029             'Test2::Event::Generic' => '1.302201',
22030             'Test2::Event::Note' => '1.302201',
22031             'Test2::Event::Ok' => '1.302201',
22032             'Test2::Event::Pass' => '1.302201',
22033             'Test2::Event::Plan' => '1.302201',
22034             'Test2::Event::Skip' => '1.302201',
22035             'Test2::Event::Subtest' => '1.302201',
22036             'Test2::Event::TAP::Version'=> '1.302201',
22037             'Test2::Event::V2' => '1.302201',
22038             'Test2::Event::Waiting' => '1.302201',
22039             'Test2::EventFacet' => '1.302201',
22040             'Test2::EventFacet::About'=> '1.302201',
22041             'Test2::EventFacet::Amnesty'=> '1.302201',
22042             'Test2::EventFacet::Assert'=> '1.302201',
22043             'Test2::EventFacet::Control'=> '1.302201',
22044             'Test2::EventFacet::Error'=> '1.302201',
22045             'Test2::EventFacet::Hub'=> '1.302201',
22046             'Test2::EventFacet::Info'=> '1.302201',
22047             'Test2::EventFacet::Info::Table'=> '1.302201',
22048             'Test2::EventFacet::Meta'=> '1.302201',
22049             'Test2::EventFacet::Parent'=> '1.302201',
22050             'Test2::EventFacet::Plan'=> '1.302201',
22051             'Test2::EventFacet::Render'=> '1.302201',
22052             'Test2::EventFacet::Trace'=> '1.302201',
22053             'Test2::Formatter' => '1.302201',
22054             'Test2::Formatter::TAP' => '1.302201',
22055             'Test2::Hub' => '1.302201',
22056             'Test2::Hub::Interceptor'=> '1.302201',
22057             'Test2::Hub::Interceptor::Terminator'=> '1.302201',
22058             'Test2::Hub::Subtest' => '1.302201',
22059             'Test2::IPC' => '1.302201',
22060             'Test2::IPC::Driver' => '1.302201',
22061             'Test2::IPC::Driver::Files'=> '1.302201',
22062             'Test2::Manual' => '1.302201',
22063             'Test2::Manual::Anatomy'=> '1.302201',
22064             'Test2::Manual::Anatomy::API'=> '1.302201',
22065             'Test2::Manual::Anatomy::Context'=> '1.302201',
22066             'Test2::Manual::Anatomy::EndToEnd'=> '1.302201',
22067             'Test2::Manual::Anatomy::Event'=> '1.302201',
22068             'Test2::Manual::Anatomy::Hubs'=> '1.302201',
22069             'Test2::Manual::Anatomy::IPC'=> '1.302201',
22070             'Test2::Manual::Anatomy::Utilities'=> '1.302201',
22071             'Test2::Manual::Concurrency'=> '1.302201',
22072             'Test2::Manual::Contributing'=> '1.302201',
22073             'Test2::Manual::Testing'=> '1.302201',
22074             'Test2::Manual::Testing::Introduction'=> '1.302201',
22075             'Test2::Manual::Testing::Migrating'=> '1.302201',
22076             'Test2::Manual::Testing::Planning'=> '1.302201',
22077             'Test2::Manual::Testing::Todo'=> '1.302201',
22078             'Test2::Manual::Tooling'=> '1.302201',
22079             'Test2::Manual::Tooling::FirstTool'=> '1.302201',
22080             'Test2::Manual::Tooling::Formatter'=> '1.302201',
22081             'Test2::Manual::Tooling::Nesting'=> '1.302201',
22082             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302201',
22083             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302201',
22084             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302201',
22085             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302201',
22086             'Test2::Manual::Tooling::Subtest'=> '1.302201',
22087             'Test2::Manual::Tooling::TestBuilder'=> '1.302201',
22088             'Test2::Manual::Tooling::Testing'=> '1.302201',
22089             'Test2::Mock' => '1.302201',
22090             'Test2::Plugin' => '1.302201',
22091             'Test2::Plugin::BailOnFail'=> '1.302201',
22092             'Test2::Plugin::DieOnFail'=> '1.302201',
22093             'Test2::Plugin::ExitSummary'=> '1.302201',
22094             'Test2::Plugin::SRand' => '1.302201',
22095             'Test2::Plugin::Times' => '1.302201',
22096             'Test2::Plugin::UTF8' => '1.302201',
22097             'Test2::Require' => '1.302201',
22098             'Test2::Require::AuthorTesting'=> '1.302201',
22099             'Test2::Require::AutomatedTesting'=> '1.302201',
22100             'Test2::Require::EnvVar'=> '1.302201',
22101             'Test2::Require::ExtendedTesting'=> '1.302201',
22102             'Test2::Require::Fork' => '1.302201',
22103             'Test2::Require::Module'=> '1.302201',
22104             'Test2::Require::NonInteractiveTesting'=> '1.302201',
22105             'Test2::Require::Perl' => '1.302201',
22106             'Test2::Require::RealFork'=> '1.302201',
22107             'Test2::Require::ReleaseTesting'=> '1.302201',
22108             'Test2::Require::Threads'=> '1.302201',
22109             'Test2::Suite' => '1.302201',
22110             'Test2::Todo' => '1.302201',
22111             'Test2::Tools' => '1.302201',
22112             'Test2::Tools::AsyncSubtest'=> '1.302201',
22113             'Test2::Tools::Basic' => '1.302201',
22114             'Test2::Tools::Class' => '1.302201',
22115             'Test2::Tools::ClassicCompare'=> '1.302201',
22116             'Test2::Tools::Compare' => '1.302201',
22117             'Test2::Tools::Defer' => '1.302201',
22118             'Test2::Tools::Encoding'=> '1.302201',
22119             'Test2::Tools::Event' => '1.302201',
22120             'Test2::Tools::Exception'=> '1.302201',
22121             'Test2::Tools::Exports' => '1.302201',
22122             'Test2::Tools::GenTemp' => '1.302201',
22123             'Test2::Tools::Grab' => '1.302201',
22124             'Test2::Tools::Mock' => '1.302201',
22125             'Test2::Tools::Ref' => '1.302201',
22126             'Test2::Tools::Refcount'=> '1.302201',
22127             'Test2::Tools::Spec' => '1.302201',
22128             'Test2::Tools::Subtest' => '1.302201',
22129             'Test2::Tools::Target' => '1.302201',
22130             'Test2::Tools::Tester' => '1.302201',
22131             'Test2::Tools::Tiny' => '1.302201',
22132             'Test2::Tools::Warnings'=> '1.302201',
22133             'Test2::Util' => '1.302201',
22134             'Test2::Util::ExternalMeta'=> '1.302201',
22135             'Test2::Util::Facets2Legacy'=> '1.302201',
22136             'Test2::Util::Grabber' => '1.302201',
22137             'Test2::Util::Guard' => '1.302201',
22138             'Test2::Util::HashBase' => '1.302201',
22139             'Test2::Util::Importer' => '1.302201',
22140             'Test2::Util::Ref' => '1.302201',
22141             'Test2::Util::Stash' => '1.302201',
22142             'Test2::Util::Sub' => '1.302201',
22143             'Test2::Util::Table' => '1.302201',
22144             'Test2::Util::Table::Cell'=> '1.302201',
22145             'Test2::Util::Table::LineBreak'=> '1.302201',
22146             'Test2::Util::Term' => '1.302201',
22147             'Test2::Util::Times' => '1.302201',
22148             'Test2::Util::Trace' => '1.302201',
22149             'Test2::V0' => '1.302201',
22150             'Test2::Workflow' => '1.302201',
22151             'Test2::Workflow::BlockBase'=> '1.302201',
22152             'Test2::Workflow::Build'=> '1.302201',
22153             'Test2::Workflow::Runner'=> '1.302201',
22154             'Test2::Workflow::Task' => '1.302201',
22155             'Test2::Workflow::Task::Action'=> '1.302201',
22156             'Test2::Workflow::Task::Group'=> '1.302201',
22157             'Test::Builder' => '1.302201',
22158             'Test::Builder::Formatter'=> '1.302201',
22159             'Test::Builder::Module' => '1.302201',
22160             'Test::Builder::Tester' => '1.302201',
22161             'Test::Builder::Tester::Color'=> '1.302201',
22162             'Test::Builder::TodoDiag'=> '1.302201',
22163             'Test::Harness' => '3.50',
22164             'Test::More' => '1.302201',
22165             'Test::Simple' => '1.302201',
22166             'Test::Tester' => '1.302201',
22167             'Test::Tester::Capture' => '1.302201',
22168             'Test::Tester::CaptureRunner'=> '1.302201',
22169             'Test::Tester::Delegate'=> '1.302201',
22170             'Test::use::ok' => '1.302201',
22171             'Tie::RefHash' => '1.41',
22172             'feature' => '1.91',
22173             'ok' => '1.302201',
22174             'overload' => '1.38',
22175             'parent' => '0.242',
22176             'threads' => '2.42',
22177             },
22178             removed => {
22179             }
22180             },
22181             5.041004 => {
22182             delta_from => 5.041003,
22183             changed => {
22184             'B::Op_private' => '5.041004',
22185             'CPAN' => '2.37',
22186             'CPAN::HandleConfig' => '5.5013',
22187             'Config' => '5.041004',
22188             'Devel::Peek' => '1.36',
22189             'ExtUtils::ParseXS' => '3.54',
22190             'ExtUtils::ParseXS::Constants'=> '3.54',
22191             'ExtUtils::ParseXS::CountLines'=> '3.54',
22192             'ExtUtils::ParseXS::Eval'=> '3.54',
22193             'ExtUtils::ParseXS::Utilities'=> '3.54',
22194             'ExtUtils::Typemaps' => '3.54',
22195             'ExtUtils::Typemaps::Cmd'=> '3.54',
22196             'ExtUtils::Typemaps::InputMap'=> '3.54',
22197             'ExtUtils::Typemaps::OutputMap'=> '3.54',
22198             'ExtUtils::Typemaps::Type'=> '3.54',
22199             'File::Spec' => '3.93',
22200             'File::Spec::AmigaOS' => '3.93',
22201             'File::Spec::Cygwin' => '3.93',
22202             'File::Spec::Epoc' => '3.93',
22203             'File::Spec::Functions' => '3.93',
22204             'File::Spec::Mac' => '3.93',
22205             'File::Spec::OS2' => '3.93',
22206             'File::Spec::Unix' => '3.93',
22207             'File::Spec::VMS' => '3.93',
22208             'File::Spec::Win32' => '3.93',
22209             'List::Util' => '1.66',
22210             'List::Util::XS' => '1.66',
22211             'Module::CoreList' => '5.20240920',
22212             'Module::CoreList::Utils'=> '5.20240920',
22213             'Scalar::Util' => '1.66',
22214             'Storable' => '3.35',
22215             'Sub::Util' => '1.66',
22216             'Test2' => '1.302204',
22217             'Test2::API' => '1.302204',
22218             'Test2::API::Breakage' => '1.302204',
22219             'Test2::API::Context' => '1.302204',
22220             'Test2::API::Instance' => '1.302204',
22221             'Test2::API::InterceptResult'=> '1.302204',
22222             'Test2::API::InterceptResult::Event'=> '1.302204',
22223             'Test2::API::InterceptResult::Facet'=> '1.302204',
22224             'Test2::API::InterceptResult::Hub'=> '1.302204',
22225             'Test2::API::InterceptResult::Squasher'=> '1.302204',
22226             'Test2::API::Stack' => '1.302204',
22227             'Test2::AsyncSubtest' => '1.302204',
22228             'Test2::AsyncSubtest::Event::Attach'=> '1.302204',
22229             'Test2::AsyncSubtest::Event::Detach'=> '1.302204',
22230             'Test2::AsyncSubtest::Formatter'=> '1.302204',
22231             'Test2::AsyncSubtest::Hub'=> '1.302204',
22232             'Test2::Bundle' => '1.302204',
22233             'Test2::Bundle::Extended'=> '1.302204',
22234             'Test2::Bundle::More' => '1.302204',
22235             'Test2::Bundle::Simple' => '1.302204',
22236             'Test2::Compare' => '1.302204',
22237             'Test2::Compare::Array' => '1.302204',
22238             'Test2::Compare::Bag' => '1.302204',
22239             'Test2::Compare::Base' => '1.302204',
22240             'Test2::Compare::Bool' => '1.302204',
22241             'Test2::Compare::Custom'=> '1.302204',
22242             'Test2::Compare::DeepRef'=> '1.302204',
22243             'Test2::Compare::Delta' => '1.302204',
22244             'Test2::Compare::Event' => '1.302204',
22245             'Test2::Compare::EventMeta'=> '1.302204',
22246             'Test2::Compare::Float' => '1.302204',
22247             'Test2::Compare::Hash' => '1.302204',
22248             'Test2::Compare::Isa' => '1.302204',
22249             'Test2::Compare::Meta' => '1.302204',
22250             'Test2::Compare::Negatable'=> '1.302204',
22251             'Test2::Compare::Number'=> '1.302204',
22252             'Test2::Compare::Object'=> '1.302204',
22253             'Test2::Compare::OrderedSubset'=> '1.302204',
22254             'Test2::Compare::Pattern'=> '1.302204',
22255             'Test2::Compare::Ref' => '1.302204',
22256             'Test2::Compare::Regex' => '1.302204',
22257             'Test2::Compare::Scalar'=> '1.302204',
22258             'Test2::Compare::Set' => '1.302204',
22259             'Test2::Compare::String'=> '1.302204',
22260             'Test2::Compare::Undef' => '1.302204',
22261             'Test2::Compare::Wildcard'=> '1.302204',
22262             'Test2::Event' => '1.302204',
22263             'Test2::Event::Bail' => '1.302204',
22264             'Test2::Event::Diag' => '1.302204',
22265             'Test2::Event::Encoding'=> '1.302204',
22266             'Test2::Event::Exception'=> '1.302204',
22267             'Test2::Event::Fail' => '1.302204',
22268             'Test2::Event::Generic' => '1.302204',
22269             'Test2::Event::Note' => '1.302204',
22270             'Test2::Event::Ok' => '1.302204',
22271             'Test2::Event::Pass' => '1.302204',
22272             'Test2::Event::Plan' => '1.302204',
22273             'Test2::Event::Skip' => '1.302204',
22274             'Test2::Event::Subtest' => '1.302204',
22275             'Test2::Event::TAP::Version'=> '1.302204',
22276             'Test2::Event::V2' => '1.302204',
22277             'Test2::Event::Waiting' => '1.302204',
22278             'Test2::EventFacet' => '1.302204',
22279             'Test2::EventFacet::About'=> '1.302204',
22280             'Test2::EventFacet::Amnesty'=> '1.302204',
22281             'Test2::EventFacet::Assert'=> '1.302204',
22282             'Test2::EventFacet::Control'=> '1.302204',
22283             'Test2::EventFacet::Error'=> '1.302204',
22284             'Test2::EventFacet::Hub'=> '1.302204',
22285             'Test2::EventFacet::Info'=> '1.302204',
22286             'Test2::EventFacet::Info::Table'=> '1.302204',
22287             'Test2::EventFacet::Meta'=> '1.302204',
22288             'Test2::EventFacet::Parent'=> '1.302204',
22289             'Test2::EventFacet::Plan'=> '1.302204',
22290             'Test2::EventFacet::Render'=> '1.302204',
22291             'Test2::EventFacet::Trace'=> '1.302204',
22292             'Test2::Formatter' => '1.302204',
22293             'Test2::Formatter::TAP' => '1.302204',
22294             'Test2::Hub' => '1.302204',
22295             'Test2::Hub::Interceptor'=> '1.302204',
22296             'Test2::Hub::Interceptor::Terminator'=> '1.302204',
22297             'Test2::Hub::Subtest' => '1.302204',
22298             'Test2::IPC' => '1.302204',
22299             'Test2::IPC::Driver' => '1.302204',
22300             'Test2::IPC::Driver::Files'=> '1.302204',
22301             'Test2::Manual' => '1.302204',
22302             'Test2::Manual::Anatomy'=> '1.302204',
22303             'Test2::Manual::Anatomy::API'=> '1.302204',
22304             'Test2::Manual::Anatomy::Context'=> '1.302204',
22305             'Test2::Manual::Anatomy::EndToEnd'=> '1.302204',
22306             'Test2::Manual::Anatomy::Event'=> '1.302204',
22307             'Test2::Manual::Anatomy::Hubs'=> '1.302204',
22308             'Test2::Manual::Anatomy::IPC'=> '1.302204',
22309             'Test2::Manual::Anatomy::Utilities'=> '1.302204',
22310             'Test2::Manual::Concurrency'=> '1.302204',
22311             'Test2::Manual::Contributing'=> '1.302204',
22312             'Test2::Manual::Testing'=> '1.302204',
22313             'Test2::Manual::Testing::Introduction'=> '1.302204',
22314             'Test2::Manual::Testing::Migrating'=> '1.302204',
22315             'Test2::Manual::Testing::Planning'=> '1.302204',
22316             'Test2::Manual::Testing::Todo'=> '1.302204',
22317             'Test2::Manual::Tooling'=> '1.302204',
22318             'Test2::Manual::Tooling::FirstTool'=> '1.302204',
22319             'Test2::Manual::Tooling::Formatter'=> '1.302204',
22320             'Test2::Manual::Tooling::Nesting'=> '1.302204',
22321             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302204',
22322             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302204',
22323             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302204',
22324             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302204',
22325             'Test2::Manual::Tooling::Subtest'=> '1.302204',
22326             'Test2::Manual::Tooling::TestBuilder'=> '1.302204',
22327             'Test2::Manual::Tooling::Testing'=> '1.302204',
22328             'Test2::Mock' => '1.302204',
22329             'Test2::Plugin' => '1.302204',
22330             'Test2::Plugin::BailOnFail'=> '1.302204',
22331             'Test2::Plugin::DieOnFail'=> '1.302204',
22332             'Test2::Plugin::ExitSummary'=> '1.302204',
22333             'Test2::Plugin::SRand' => '1.302204',
22334             'Test2::Plugin::Times' => '1.302204',
22335             'Test2::Plugin::UTF8' => '1.302204',
22336             'Test2::Require' => '1.302204',
22337             'Test2::Require::AuthorTesting'=> '1.302204',
22338             'Test2::Require::AutomatedTesting'=> '1.302204',
22339             'Test2::Require::EnvVar'=> '1.302204',
22340             'Test2::Require::ExtendedTesting'=> '1.302204',
22341             'Test2::Require::Fork' => '1.302204',
22342             'Test2::Require::Module'=> '1.302204',
22343             'Test2::Require::NonInteractiveTesting'=> '1.302204',
22344             'Test2::Require::Perl' => '1.302204',
22345             'Test2::Require::RealFork'=> '1.302204',
22346             'Test2::Require::ReleaseTesting'=> '1.302204',
22347             'Test2::Require::Threads'=> '1.302204',
22348             'Test2::Suite' => '1.302204',
22349             'Test2::Todo' => '1.302204',
22350             'Test2::Tools' => '1.302204',
22351             'Test2::Tools::AsyncSubtest'=> '1.302204',
22352             'Test2::Tools::Basic' => '1.302204',
22353             'Test2::Tools::Class' => '1.302204',
22354             'Test2::Tools::ClassicCompare'=> '1.302204',
22355             'Test2::Tools::Compare' => '1.302204',
22356             'Test2::Tools::Defer' => '1.302204',
22357             'Test2::Tools::Encoding'=> '1.302204',
22358             'Test2::Tools::Event' => '1.302204',
22359             'Test2::Tools::Exception'=> '1.302204',
22360             'Test2::Tools::Exports' => '1.302204',
22361             'Test2::Tools::GenTemp' => '1.302204',
22362             'Test2::Tools::Grab' => '1.302204',
22363             'Test2::Tools::Mock' => '1.302204',
22364             'Test2::Tools::Ref' => '1.302204',
22365             'Test2::Tools::Refcount'=> '1.302204',
22366             'Test2::Tools::Spec' => '1.302204',
22367             'Test2::Tools::Subtest' => '1.302204',
22368             'Test2::Tools::Target' => '1.302204',
22369             'Test2::Tools::Tester' => '1.302204',
22370             'Test2::Tools::Tiny' => '1.302204',
22371             'Test2::Tools::Warnings'=> '1.302204',
22372             'Test2::Util' => '1.302204',
22373             'Test2::Util::ExternalMeta'=> '1.302204',
22374             'Test2::Util::Facets2Legacy'=> '1.302204',
22375             'Test2::Util::Grabber' => '1.302204',
22376             'Test2::Util::Guard' => '1.302204',
22377             'Test2::Util::HashBase' => '1.302204',
22378             'Test2::Util::Importer' => '1.302204',
22379             'Test2::Util::Ref' => '1.302204',
22380             'Test2::Util::Stash' => '1.302204',
22381             'Test2::Util::Sub' => '1.302204',
22382             'Test2::Util::Table' => '1.302204',
22383             'Test2::Util::Table::Cell'=> '1.302204',
22384             'Test2::Util::Table::LineBreak'=> '1.302204',
22385             'Test2::Util::Term' => '1.302204',
22386             'Test2::Util::Times' => '1.302204',
22387             'Test2::Util::Trace' => '1.302204',
22388             'Test2::V0' => '1.302204',
22389             'Test2::Workflow' => '1.302204',
22390             'Test2::Workflow::BlockBase'=> '1.302204',
22391             'Test2::Workflow::Build'=> '1.302204',
22392             'Test2::Workflow::Runner'=> '1.302204',
22393             'Test2::Workflow::Task' => '1.302204',
22394             'Test2::Workflow::Task::Action'=> '1.302204',
22395             'Test2::Workflow::Task::Group'=> '1.302204',
22396             'Test::Builder' => '1.302204',
22397             'Test::Builder::Formatter'=> '1.302204',
22398             'Test::Builder::Module' => '1.302204',
22399             'Test::Builder::Tester' => '1.302204',
22400             'Test::Builder::Tester::Color'=> '1.302204',
22401             'Test::Builder::TodoDiag'=> '1.302204',
22402             'Test::More' => '1.302204',
22403             'Test::Simple' => '1.302204',
22404             'Test::Tester' => '1.302204',
22405             'Test::Tester::Capture' => '1.302204',
22406             'Test::Tester::CaptureRunner'=> '1.302204',
22407             'Test::Tester::Delegate'=> '1.302204',
22408             'Test::use::ok' => '1.302204',
22409             'XS::APItest' => '1.38',
22410             'ok' => '1.302204',
22411             'overload' => '1.39',
22412             'version' => '0.9933',
22413             'version::regex' => '0.9933',
22414             },
22415             removed => {
22416             }
22417             },
22418             5.041005 => {
22419             delta_from => 5.041004,
22420             changed => {
22421             'B::Op_private' => '5.041005',
22422             'Config' => '5.041005',
22423             'Digest::MD5' => '2.59',
22424             'ExtUtils::ParseXS' => '3.55',
22425             'ExtUtils::ParseXS::Constants'=> '3.55',
22426             'ExtUtils::ParseXS::CountLines'=> '3.55',
22427             'ExtUtils::ParseXS::Eval'=> '3.55',
22428             'ExtUtils::ParseXS::Node'=> '3.55',
22429             'ExtUtils::ParseXS::Utilities'=> '3.55',
22430             'ExtUtils::Typemaps' => '3.55',
22431             'ExtUtils::Typemaps::Cmd'=> '3.55',
22432             'ExtUtils::Typemaps::InputMap'=> '3.55',
22433             'ExtUtils::Typemaps::OutputMap'=> '3.55',
22434             'ExtUtils::Typemaps::Type'=> '3.55',
22435             'IPC::Open2' => '1.07',
22436             'IPC::Open3' => '1.23',
22437             'List::Util' => '1.68',
22438             'List::Util::XS' => '1.68',
22439             'Module::CoreList' => '5.20241020',
22440             'Module::CoreList::Utils'=> '5.20241020',
22441             'Scalar::List::Utils' => '1.68',
22442             'Scalar::Util' => '1.68',
22443             'Sub::Util' => '1.68',
22444             'threads::shared' => '1.70',
22445             },
22446             removed => {
22447             }
22448             },
22449             5.041006 => {
22450             delta_from => 5.041005,
22451             changed => {
22452             'B::Deparse' => '1.80',
22453             'B::Op_private' => '5.041006',
22454             'CPAN' => '2.38',
22455             'Config' => '5.041006',
22456             'DB' => '1.09',
22457             'ExtUtils::ParseXS' => '3.56',
22458             'ExtUtils::ParseXS::Constants'=> '3.56',
22459             'ExtUtils::ParseXS::CountLines'=> '3.56',
22460             'ExtUtils::ParseXS::Eval'=> '3.56',
22461             'ExtUtils::ParseXS::Node'=> '3.56',
22462             'ExtUtils::ParseXS::Utilities'=> '3.56',
22463             'ExtUtils::Typemaps' => '3.56',
22464             'ExtUtils::Typemaps::Cmd'=> '3.56',
22465             'ExtUtils::Typemaps::InputMap'=> '3.56',
22466             'ExtUtils::Typemaps::OutputMap'=> '3.56',
22467             'ExtUtils::Typemaps::Type'=> '3.56',
22468             'HTTP::Tiny' => '0.090',
22469             'IPC::Open2' => '1.08',
22470             'IPC::Open3' => '1.24',
22471             'List::Util' => '1.68_01',
22472             'List::Util::XS' => '1.68_01',
22473             'Math::Complex' => '1.63',
22474             'Math::Trig' => '1.63',
22475             'Memoize' => '1.17',
22476             'Memoize::AnyDBM_File' => '1.17',
22477             'Memoize::Expire' => '1.17',
22478             'Memoize::NDBM_File' => '1.17',
22479             'Memoize::SDBM_File' => '1.17',
22480             'Memoize::Storable' => '1.17',
22481             'Module::CoreList' => '5.20241120',
22482             'Module::CoreList::Utils'=> '5.20241120',
22483             'NDBM_File' => '1.18',
22484             'ODBM_File' => '1.19',
22485             'POSIX' => '2.23',
22486             'Scalar::Util' => '1.68_01',
22487             'Sub::Util' => '1.68_01',
22488             'Term::Table' => '0.023',
22489             'Term::Table::Cell' => '0.023',
22490             'Term::Table::CellStack'=> '0.023',
22491             'Term::Table::HashBase' => '0.023',
22492             'Term::Table::LineBreak'=> '0.023',
22493             'Term::Table::Spacer' => '0.023',
22494             'Term::Table::Util' => '0.023',
22495             'builtin' => '0.016',
22496             'feature' => '1.92',
22497             'fields' => '2.26',
22498             'parent' => '0.242_001',
22499             'warnings' => '1.71',
22500             },
22501             removed => {
22502             }
22503             },
22504             5.041007 => {
22505             delta_from => 5.041006,
22506             changed => {
22507             'B::Deparse' => '1.81',
22508             'B::Op_private' => '5.041007',
22509             'CPAN::Meta::YAML' => '0.020',
22510             'Config' => '5.041007',
22511             'IO::Socket::IP' => '0.43',
22512             'Module::CoreList' => '5.20241220',
22513             'Module::CoreList::Utils'=> '5.20241220',
22514             'Opcode' => '1.67',
22515             'XS::APItest' => '1.40',
22516             'builtin' => '0.017',
22517             'feature' => '1.93',
22518             'parent' => '0.244',
22519             'warnings' => '1.72',
22520             },
22521             removed => {
22522             }
22523             },
22524             5.038003 => {
22525             delta_from => 5.038002,
22526             changed => {
22527             'B::Op_private' => '5.038003',
22528             'Config' => '5.038003',
22529             'DynaLoader' => '1.54_01',
22530             'Module::CoreList' => '5.20250118_38',
22531             'Module::CoreList::Utils'=> '5.20250118_38',
22532             'Pod::Functions::Functions'=> '1.14',
22533             },
22534             removed => {
22535             }
22536             },
22537             5.040001 => {
22538             delta_from => 5.040000,
22539             changed => {
22540             'B::Op_private' => '5.040001',
22541             'Config' => '5.040001',
22542             'Cwd' => '3.91',
22543             'File::Spec' => '3.91',
22544             'Module::CoreList' => '5.20250118_40',
22545             'Module::CoreList::Utils'=> '5.20250118_40',
22546             'Pod::Functions::Functions'=> '1.14',
22547             'warnings' => '1.70',
22548             },
22549             removed => {
22550             }
22551             },
22552             5.041008 => {
22553             delta_from => 5.041007,
22554             changed => {
22555             'B::Deparse' => '1.82',
22556             'B::Op_private' => '5.041008',
22557             'Config' => '5.041008',
22558             'Config::Perl::V' => '0.38',
22559             'DBM_Filter' => '0.07',
22560             'Data::Dumper' => '2.191',
22561             'ExtUtils::ParseXS' => '3.57',
22562             'ExtUtils::ParseXS::Constants'=> '3.57',
22563             'ExtUtils::ParseXS::CountLines'=> '3.57',
22564             'ExtUtils::ParseXS::Eval'=> '3.57',
22565             'ExtUtils::ParseXS::Node'=> '3.57',
22566             'ExtUtils::ParseXS::Utilities'=> '3.57',
22567             'ExtUtils::Typemaps' => '3.57',
22568             'ExtUtils::Typemaps::Cmd'=> '3.57',
22569             'ExtUtils::Typemaps::InputMap'=> '3.57',
22570             'ExtUtils::Typemaps::OutputMap'=> '3.57',
22571             'ExtUtils::Typemaps::Type'=> '3.57',
22572             'Module::CoreList' => '5.20250120',
22573             'Module::CoreList::Utils'=> '5.20250120',
22574             'Opcode' => '1.68',
22575             'Term::Table' => '0.024',
22576             'Term::Table::Cell' => '0.024',
22577             'Term::Table::CellStack'=> '0.024',
22578             'Term::Table::HashBase' => '0.024',
22579             'Term::Table::LineBreak'=> '0.024',
22580             'Term::Table::Spacer' => '0.024',
22581             'Term::Table::Util' => '0.024',
22582             'Test2' => '1.302207',
22583             'Test2::API' => '1.302207',
22584             'Test2::API::Breakage' => '1.302207',
22585             'Test2::API::Context' => '1.302207',
22586             'Test2::API::Instance' => '1.302207',
22587             'Test2::API::InterceptResult'=> '1.302207',
22588             'Test2::API::InterceptResult::Event'=> '1.302207',
22589             'Test2::API::InterceptResult::Facet'=> '1.302207',
22590             'Test2::API::InterceptResult::Hub'=> '1.302207',
22591             'Test2::API::InterceptResult::Squasher'=> '1.302207',
22592             'Test2::API::Stack' => '1.302207',
22593             'Test2::AsyncSubtest' => '1.302207',
22594             'Test2::AsyncSubtest::Event::Attach'=> '1.302207',
22595             'Test2::AsyncSubtest::Event::Detach'=> '1.302207',
22596             'Test2::AsyncSubtest::Formatter'=> '1.302207',
22597             'Test2::AsyncSubtest::Hub'=> '1.302207',
22598             'Test2::Bundle' => '1.302207',
22599             'Test2::Bundle::Extended'=> '1.302207',
22600             'Test2::Bundle::More' => '1.302207',
22601             'Test2::Bundle::Simple' => '1.302207',
22602             'Test2::Compare' => '1.302207',
22603             'Test2::Compare::Array' => '1.302207',
22604             'Test2::Compare::Bag' => '1.302207',
22605             'Test2::Compare::Base' => '1.302207',
22606             'Test2::Compare::Bool' => '1.302207',
22607             'Test2::Compare::Custom'=> '1.302207',
22608             'Test2::Compare::DeepRef'=> '1.302207',
22609             'Test2::Compare::Delta' => '1.302207',
22610             'Test2::Compare::Event' => '1.302207',
22611             'Test2::Compare::EventMeta'=> '1.302207',
22612             'Test2::Compare::Float' => '1.302207',
22613             'Test2::Compare::Hash' => '1.302207',
22614             'Test2::Compare::Isa' => '1.302207',
22615             'Test2::Compare::Meta' => '1.302207',
22616             'Test2::Compare::Negatable'=> '1.302207',
22617             'Test2::Compare::Number'=> '1.302207',
22618             'Test2::Compare::Object'=> '1.302207',
22619             'Test2::Compare::OrderedSubset'=> '1.302207',
22620             'Test2::Compare::Pattern'=> '1.302207',
22621             'Test2::Compare::Ref' => '1.302207',
22622             'Test2::Compare::Regex' => '1.302207',
22623             'Test2::Compare::Scalar'=> '1.302207',
22624             'Test2::Compare::Set' => '1.302207',
22625             'Test2::Compare::String'=> '1.302207',
22626             'Test2::Compare::Undef' => '1.302207',
22627             'Test2::Compare::Wildcard'=> '1.302207',
22628             'Test2::Env' => '1.302207',
22629             'Test2::Event' => '1.302207',
22630             'Test2::Event::Bail' => '1.302207',
22631             'Test2::Event::Diag' => '1.302207',
22632             'Test2::Event::Encoding'=> '1.302207',
22633             'Test2::Event::Exception'=> '1.302207',
22634             'Test2::Event::Fail' => '1.302207',
22635             'Test2::Event::Generic' => '1.302207',
22636             'Test2::Event::Note' => '1.302207',
22637             'Test2::Event::Ok' => '1.302207',
22638             'Test2::Event::Pass' => '1.302207',
22639             'Test2::Event::Plan' => '1.302207',
22640             'Test2::Event::Skip' => '1.302207',
22641             'Test2::Event::Subtest' => '1.302207',
22642             'Test2::Event::TAP::Version'=> '1.302207',
22643             'Test2::Event::V2' => '1.302207',
22644             'Test2::Event::Waiting' => '1.302207',
22645             'Test2::EventFacet' => '1.302207',
22646             'Test2::EventFacet::About'=> '1.302207',
22647             'Test2::EventFacet::Amnesty'=> '1.302207',
22648             'Test2::EventFacet::Assert'=> '1.302207',
22649             'Test2::EventFacet::Control'=> '1.302207',
22650             'Test2::EventFacet::Error'=> '1.302207',
22651             'Test2::EventFacet::Hub'=> '1.302207',
22652             'Test2::EventFacet::Info'=> '1.302207',
22653             'Test2::EventFacet::Info::Table'=> '1.302207',
22654             'Test2::EventFacet::Meta'=> '1.302207',
22655             'Test2::EventFacet::Parent'=> '1.302207',
22656             'Test2::EventFacet::Plan'=> '1.302207',
22657             'Test2::EventFacet::Render'=> '1.302207',
22658             'Test2::EventFacet::Trace'=> '1.302207',
22659             'Test2::Formatter' => '1.302207',
22660             'Test2::Formatter::TAP' => '1.302207',
22661             'Test2::Hub' => '1.302207',
22662             'Test2::Hub::Interceptor'=> '1.302207',
22663             'Test2::Hub::Interceptor::Terminator'=> '1.302207',
22664             'Test2::Hub::Subtest' => '1.302207',
22665             'Test2::IPC' => '1.302207',
22666             'Test2::IPC::Driver' => '1.302207',
22667             'Test2::IPC::Driver::Files'=> '1.302207',
22668             'Test2::Manual' => '1.302207',
22669             'Test2::Manual::Anatomy'=> '1.302207',
22670             'Test2::Manual::Anatomy::API'=> '1.302207',
22671             'Test2::Manual::Anatomy::Context'=> '1.302207',
22672             'Test2::Manual::Anatomy::EndToEnd'=> '1.302207',
22673             'Test2::Manual::Anatomy::Event'=> '1.302207',
22674             'Test2::Manual::Anatomy::Hubs'=> '1.302207',
22675             'Test2::Manual::Anatomy::IPC'=> '1.302207',
22676             'Test2::Manual::Anatomy::Utilities'=> '1.302207',
22677             'Test2::Manual::Concurrency'=> '1.302207',
22678             'Test2::Manual::Contributing'=> '1.302207',
22679             'Test2::Manual::Testing'=> '1.302207',
22680             'Test2::Manual::Testing::Introduction'=> '1.302207',
22681             'Test2::Manual::Testing::Migrating'=> '1.302207',
22682             'Test2::Manual::Testing::Planning'=> '1.302207',
22683             'Test2::Manual::Testing::Todo'=> '1.302207',
22684             'Test2::Manual::Tooling'=> '1.302207',
22685             'Test2::Manual::Tooling::FirstTool'=> '1.302207',
22686             'Test2::Manual::Tooling::Formatter'=> '1.302207',
22687             'Test2::Manual::Tooling::Nesting'=> '1.302207',
22688             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302207',
22689             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302207',
22690             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302207',
22691             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302207',
22692             'Test2::Manual::Tooling::Subtest'=> '1.302207',
22693             'Test2::Manual::Tooling::TestBuilder'=> '1.302207',
22694             'Test2::Manual::Tooling::Testing'=> '1.302207',
22695             'Test2::Mock' => '1.302207',
22696             'Test2::Plugin' => '1.302207',
22697             'Test2::Plugin::BailOnFail'=> '1.302207',
22698             'Test2::Plugin::DieOnFail'=> '1.302207',
22699             'Test2::Plugin::ExitSummary'=> '1.302207',
22700             'Test2::Plugin::SRand' => '1.302207',
22701             'Test2::Plugin::Times' => '1.302207',
22702             'Test2::Plugin::UTF8' => '1.302207',
22703             'Test2::Require' => '1.302207',
22704             'Test2::Require::AuthorTesting'=> '1.302207',
22705             'Test2::Require::AutomatedTesting'=> '1.302207',
22706             'Test2::Require::EnvVar'=> '1.302207',
22707             'Test2::Require::ExtendedTesting'=> '1.302207',
22708             'Test2::Require::Fork' => '1.302207',
22709             'Test2::Require::Module'=> '1.302207',
22710             'Test2::Require::NonInteractiveTesting'=> '1.302207',
22711             'Test2::Require::Perl' => '1.302207',
22712             'Test2::Require::RealFork'=> '1.302207',
22713             'Test2::Require::ReleaseTesting'=> '1.302207',
22714             'Test2::Require::Threads'=> '1.302207',
22715             'Test2::Suite' => '1.302207',
22716             'Test2::Todo' => '1.302207',
22717             'Test2::Tools' => '1.302207',
22718             'Test2::Tools::AsyncSubtest'=> '1.302207',
22719             'Test2::Tools::Basic' => '1.302207',
22720             'Test2::Tools::Class' => '1.302207',
22721             'Test2::Tools::ClassicCompare'=> '1.302207',
22722             'Test2::Tools::Compare' => '1.302207',
22723             'Test2::Tools::Defer' => '1.302207',
22724             'Test2::Tools::Encoding'=> '1.302207',
22725             'Test2::Tools::Event' => '1.302207',
22726             'Test2::Tools::Exception'=> '1.302207',
22727             'Test2::Tools::Exports' => '1.302207',
22728             'Test2::Tools::GenTemp' => '1.302207',
22729             'Test2::Tools::Grab' => '1.302207',
22730             'Test2::Tools::Mock' => '1.302207',
22731             'Test2::Tools::Ref' => '1.302207',
22732             'Test2::Tools::Refcount'=> '1.302207',
22733             'Test2::Tools::Spec' => '1.302207',
22734             'Test2::Tools::Subtest' => '1.302207',
22735             'Test2::Tools::Target' => '1.302207',
22736             'Test2::Tools::Tester' => '1.302207',
22737             'Test2::Tools::Tiny' => '1.302207',
22738             'Test2::Tools::Warnings'=> '1.302207',
22739             'Test2::Util' => '1.302207',
22740             'Test2::Util::ExternalMeta'=> '1.302207',
22741             'Test2::Util::Facets2Legacy'=> '1.302207',
22742             'Test2::Util::Grabber' => '1.302207',
22743             'Test2::Util::Guard' => '1.302207',
22744             'Test2::Util::HashBase' => '1.302207',
22745             'Test2::Util::Importer' => '1.302207',
22746             'Test2::Util::Ref' => '1.302207',
22747             'Test2::Util::Stash' => '1.302207',
22748             'Test2::Util::Sub' => '1.302207',
22749             'Test2::Util::Table' => '1.302207',
22750             'Test2::Util::Table::Cell'=> '1.302207',
22751             'Test2::Util::Table::LineBreak'=> '1.302207',
22752             'Test2::Util::Term' => '1.302207',
22753             'Test2::Util::Times' => '1.302207',
22754             'Test2::Util::Trace' => '1.302207',
22755             'Test2::V0' => '1.302207',
22756             'Test2::Workflow' => '1.302207',
22757             'Test2::Workflow::BlockBase'=> '1.302207',
22758             'Test2::Workflow::Build'=> '1.302207',
22759             'Test2::Workflow::Runner'=> '1.302207',
22760             'Test2::Workflow::Task' => '1.302207',
22761             'Test2::Workflow::Task::Action'=> '1.302207',
22762             'Test2::Workflow::Task::Group'=> '1.302207',
22763             'Test::Builder' => '1.302207',
22764             'Test::Builder::Formatter'=> '1.302207',
22765             'Test::Builder::Module' => '1.302207',
22766             'Test::Builder::Tester' => '1.302207',
22767             'Test::Builder::Tester::Color'=> '1.302207',
22768             'Test::Builder::TodoDiag'=> '1.302207',
22769             'Test::More' => '1.302207',
22770             'Test::Simple' => '1.302207',
22771             'Test::Tester' => '1.302207',
22772             'Test::Tester::Capture' => '1.302207',
22773             'Test::Tester::CaptureRunner'=> '1.302207',
22774             'Test::Tester::Delegate'=> '1.302207',
22775             'Test::use::ok' => '1.302207',
22776             'Time::Piece' => '1.35',
22777             'Time::Seconds' => '1.35',
22778             'experimental' => '0.034',
22779             'ok' => '1.302207',
22780             'stable' => '0.034',
22781             },
22782             removed => {
22783             'Test::Builder::IO::Scalar'=> 1,
22784             }
22785             },
22786             5.041009 => {
22787             delta_from => 5.041008,
22788             changed => {
22789             'B::Deparse' => '1.83',
22790             'B::Op_private' => '5.041009',
22791             'Config' => '5.041009',
22792             'Exporter' => '5.79',
22793             'Exporter::Heavy' => '5.79',
22794             'IO::Poll' => '1.56',
22795             'Math::BigFloat' => '2.003004',
22796             'Math::BigInt' => '2.003004',
22797             'Math::BigInt::Calc' => '2.003004',
22798             'Math::BigInt::Lib' => '2.003004',
22799             'Math::BigRat' => '2.003004',
22800             'Module::CoreList' => '5.20250220',
22801             'Module::CoreList::Utils'=> '5.20250220',
22802             'ODBM_File' => '1.20',
22803             'Opcode' => '1.69',
22804             'Safe' => '2.46',
22805             'Test2' => '1.302209',
22806             'Test2::API' => '1.302209',
22807             'Test2::API::Breakage' => '1.302209',
22808             'Test2::API::Context' => '1.302209',
22809             'Test2::API::Instance' => '1.302209',
22810             'Test2::API::InterceptResult'=> '1.302209',
22811             'Test2::API::InterceptResult::Event'=> '1.302209',
22812             'Test2::API::InterceptResult::Facet'=> '1.302209',
22813             'Test2::API::InterceptResult::Hub'=> '1.302209',
22814             'Test2::API::InterceptResult::Squasher'=> '1.302209',
22815             'Test2::API::Stack' => '1.302209',
22816             'Test2::AsyncSubtest' => '1.302209',
22817             'Test2::AsyncSubtest::Event::Attach'=> '1.302209',
22818             'Test2::AsyncSubtest::Event::Detach'=> '1.302209',
22819             'Test2::AsyncSubtest::Formatter'=> '1.302209',
22820             'Test2::AsyncSubtest::Hub'=> '1.302209',
22821             'Test2::Bundle' => '1.302209',
22822             'Test2::Bundle::Extended'=> '1.302209',
22823             'Test2::Bundle::More' => '1.302209',
22824             'Test2::Bundle::Simple' => '1.302209',
22825             'Test2::Compare' => '1.302209',
22826             'Test2::Compare::Array' => '1.302209',
22827             'Test2::Compare::Bag' => '1.302209',
22828             'Test2::Compare::Base' => '1.302209',
22829             'Test2::Compare::Bool' => '1.302209',
22830             'Test2::Compare::Custom'=> '1.302209',
22831             'Test2::Compare::DeepRef'=> '1.302209',
22832             'Test2::Compare::Delta' => '1.302209',
22833             'Test2::Compare::Event' => '1.302209',
22834             'Test2::Compare::EventMeta'=> '1.302209',
22835             'Test2::Compare::Float' => '1.302209',
22836             'Test2::Compare::Hash' => '1.302209',
22837             'Test2::Compare::Isa' => '1.302209',
22838             'Test2::Compare::Meta' => '1.302209',
22839             'Test2::Compare::Negatable'=> '1.302209',
22840             'Test2::Compare::Number'=> '1.302209',
22841             'Test2::Compare::Object'=> '1.302209',
22842             'Test2::Compare::OrderedSubset'=> '1.302209',
22843             'Test2::Compare::Pattern'=> '1.302209',
22844             'Test2::Compare::Ref' => '1.302209',
22845             'Test2::Compare::Regex' => '1.302209',
22846             'Test2::Compare::Scalar'=> '1.302209',
22847             'Test2::Compare::Set' => '1.302209',
22848             'Test2::Compare::String'=> '1.302209',
22849             'Test2::Compare::Undef' => '1.302209',
22850             'Test2::Compare::Wildcard'=> '1.302209',
22851             'Test2::Env' => '1.302209',
22852             'Test2::Event' => '1.302209',
22853             'Test2::Event::Bail' => '1.302209',
22854             'Test2::Event::Diag' => '1.302209',
22855             'Test2::Event::Encoding'=> '1.302209',
22856             'Test2::Event::Exception'=> '1.302209',
22857             'Test2::Event::Fail' => '1.302209',
22858             'Test2::Event::Generic' => '1.302209',
22859             'Test2::Event::Note' => '1.302209',
22860             'Test2::Event::Ok' => '1.302209',
22861             'Test2::Event::Pass' => '1.302209',
22862             'Test2::Event::Plan' => '1.302209',
22863             'Test2::Event::Skip' => '1.302209',
22864             'Test2::Event::Subtest' => '1.302209',
22865             'Test2::Event::TAP::Version'=> '1.302209',
22866             'Test2::Event::V2' => '1.302209',
22867             'Test2::Event::Waiting' => '1.302209',
22868             'Test2::EventFacet' => '1.302209',
22869             'Test2::EventFacet::About'=> '1.302209',
22870             'Test2::EventFacet::Amnesty'=> '1.302209',
22871             'Test2::EventFacet::Assert'=> '1.302209',
22872             'Test2::EventFacet::Control'=> '1.302209',
22873             'Test2::EventFacet::Error'=> '1.302209',
22874             'Test2::EventFacet::Hub'=> '1.302209',
22875             'Test2::EventFacet::Info'=> '1.302209',
22876             'Test2::EventFacet::Info::Table'=> '1.302209',
22877             'Test2::EventFacet::Meta'=> '1.302209',
22878             'Test2::EventFacet::Parent'=> '1.302209',
22879             'Test2::EventFacet::Plan'=> '1.302209',
22880             'Test2::EventFacet::Render'=> '1.302209',
22881             'Test2::EventFacet::Trace'=> '1.302209',
22882             'Test2::Formatter' => '1.302209',
22883             'Test2::Formatter::TAP' => '1.302209',
22884             'Test2::Hub' => '1.302209',
22885             'Test2::Hub::Interceptor'=> '1.302209',
22886             'Test2::Hub::Interceptor::Terminator'=> '1.302209',
22887             'Test2::Hub::Subtest' => '1.302209',
22888             'Test2::IPC' => '1.302209',
22889             'Test2::IPC::Driver' => '1.302209',
22890             'Test2::IPC::Driver::Files'=> '1.302209',
22891             'Test2::Manual' => '1.302209',
22892             'Test2::Manual::Anatomy'=> '1.302209',
22893             'Test2::Manual::Anatomy::API'=> '1.302209',
22894             'Test2::Manual::Anatomy::Context'=> '1.302209',
22895             'Test2::Manual::Anatomy::EndToEnd'=> '1.302209',
22896             'Test2::Manual::Anatomy::Event'=> '1.302209',
22897             'Test2::Manual::Anatomy::Hubs'=> '1.302209',
22898             'Test2::Manual::Anatomy::IPC'=> '1.302209',
22899             'Test2::Manual::Anatomy::Utilities'=> '1.302209',
22900             'Test2::Manual::Concurrency'=> '1.302209',
22901             'Test2::Manual::Contributing'=> '1.302209',
22902             'Test2::Manual::Testing'=> '1.302209',
22903             'Test2::Manual::Testing::Introduction'=> '1.302209',
22904             'Test2::Manual::Testing::Migrating'=> '1.302209',
22905             'Test2::Manual::Testing::Planning'=> '1.302209',
22906             'Test2::Manual::Testing::Todo'=> '1.302209',
22907             'Test2::Manual::Tooling'=> '1.302209',
22908             'Test2::Manual::Tooling::FirstTool'=> '1.302209',
22909             'Test2::Manual::Tooling::Formatter'=> '1.302209',
22910             'Test2::Manual::Tooling::Nesting'=> '1.302209',
22911             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302209',
22912             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302209',
22913             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302209',
22914             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302209',
22915             'Test2::Manual::Tooling::Subtest'=> '1.302209',
22916             'Test2::Manual::Tooling::TestBuilder'=> '1.302209',
22917             'Test2::Manual::Tooling::Testing'=> '1.302209',
22918             'Test2::Mock' => '1.302209',
22919             'Test2::Plugin' => '1.302209',
22920             'Test2::Plugin::BailOnFail'=> '1.302209',
22921             'Test2::Plugin::DieOnFail'=> '1.302209',
22922             'Test2::Plugin::ExitSummary'=> '1.302209',
22923             'Test2::Plugin::SRand' => '1.302209',
22924             'Test2::Plugin::Times' => '1.302209',
22925             'Test2::Plugin::UTF8' => '1.302209',
22926             'Test2::Require' => '1.302209',
22927             'Test2::Require::AuthorTesting'=> '1.302209',
22928             'Test2::Require::AutomatedTesting'=> '1.302209',
22929             'Test2::Require::EnvVar'=> '1.302209',
22930             'Test2::Require::ExtendedTesting'=> '1.302209',
22931             'Test2::Require::Fork' => '1.302209',
22932             'Test2::Require::Module'=> '1.302209',
22933             'Test2::Require::NonInteractiveTesting'=> '1.302209',
22934             'Test2::Require::Perl' => '1.302209',
22935             'Test2::Require::RealFork'=> '1.302209',
22936             'Test2::Require::ReleaseTesting'=> '1.302209',
22937             'Test2::Require::Threads'=> '1.302209',
22938             'Test2::Suite' => '1.302209',
22939             'Test2::Todo' => '1.302209',
22940             'Test2::Tools' => '1.302209',
22941             'Test2::Tools::AsyncSubtest'=> '1.302209',
22942             'Test2::Tools::Basic' => '1.302209',
22943             'Test2::Tools::Class' => '1.302209',
22944             'Test2::Tools::ClassicCompare'=> '1.302209',
22945             'Test2::Tools::Compare' => '1.302209',
22946             'Test2::Tools::Defer' => '1.302209',
22947             'Test2::Tools::Encoding'=> '1.302209',
22948             'Test2::Tools::Event' => '1.302209',
22949             'Test2::Tools::Exception'=> '1.302209',
22950             'Test2::Tools::Exports' => '1.302209',
22951             'Test2::Tools::GenTemp' => '1.302209',
22952             'Test2::Tools::Grab' => '1.302209',
22953             'Test2::Tools::Mock' => '1.302209',
22954             'Test2::Tools::Ref' => '1.302209',
22955             'Test2::Tools::Refcount'=> '1.302209',
22956             'Test2::Tools::Spec' => '1.302209',
22957             'Test2::Tools::Subtest' => '1.302209',
22958             'Test2::Tools::Target' => '1.302209',
22959             'Test2::Tools::Tester' => '1.302209',
22960             'Test2::Tools::Tiny' => '1.302209',
22961             'Test2::Tools::Warnings'=> '1.302209',
22962             'Test2::Util' => '1.302209',
22963             'Test2::Util::ExternalMeta'=> '1.302209',
22964             'Test2::Util::Facets2Legacy'=> '1.302209',
22965             'Test2::Util::Grabber' => '1.302209',
22966             'Test2::Util::Guard' => '1.302209',
22967             'Test2::Util::HashBase' => '1.302209',
22968             'Test2::Util::Importer' => '1.302209',
22969             'Test2::Util::Ref' => '1.302209',
22970             'Test2::Util::Sig' => '1.302209',
22971             'Test2::Util::Stash' => '1.302209',
22972             'Test2::Util::Sub' => '1.302209',
22973             'Test2::Util::Table' => '1.302209',
22974             'Test2::Util::Table::Cell'=> '1.302209',
22975             'Test2::Util::Table::LineBreak'=> '1.302209',
22976             'Test2::Util::Term' => '1.302209',
22977             'Test2::Util::Times' => '1.302209',
22978             'Test2::Util::Trace' => '1.302209',
22979             'Test2::V0' => '1.302209',
22980             'Test2::Workflow' => '1.302209',
22981             'Test2::Workflow::BlockBase'=> '1.302209',
22982             'Test2::Workflow::Build'=> '1.302209',
22983             'Test2::Workflow::Runner'=> '1.302209',
22984             'Test2::Workflow::Task' => '1.302209',
22985             'Test2::Workflow::Task::Action'=> '1.302209',
22986             'Test2::Workflow::Task::Group'=> '1.302209',
22987             'Test::Builder' => '1.302209',
22988             'Test::Builder::Formatter'=> '1.302209',
22989             'Test::Builder::Module' => '1.302209',
22990             'Test::Builder::Tester' => '1.302209',
22991             'Test::Builder::Tester::Color'=> '1.302209',
22992             'Test::Builder::TodoDiag'=> '1.302209',
22993             'Test::More' => '1.302209',
22994             'Test::Simple' => '1.302209',
22995             'Test::Tester' => '1.302209',
22996             'Test::Tester::Capture' => '1.302209',
22997             'Test::Tester::CaptureRunner'=> '1.302209',
22998             'Test::Tester::Delegate'=> '1.302209',
22999             'Test::use::ok' => '1.302209',
23000             'Unicode::UCD' => '0.79',
23001             'feature' => '1.94',
23002             'ok' => '1.302209',
23003             'overload' => '1.40',
23004             'warnings' => '1.73',
23005             },
23006             removed => {
23007             }
23008             },
23009             5.041010 => {
23010             delta_from => 5.041009,
23011             changed => {
23012             'Archive::Tar' => '3.04',
23013             'Archive::Tar::Constant'=> '3.04',
23014             'Archive::Tar::File' => '3.04',
23015             'B::Op_private' => '5.041010',
23016             'Benchmark' => '1.27',
23017             'Config' => '5.04101',
23018             'ExtUtils::Command' => '7.72',
23019             'ExtUtils::Command::MM' => '7.72',
23020             'ExtUtils::Liblist' => '7.72',
23021             'ExtUtils::Liblist::Kid'=> '7.72',
23022             'ExtUtils::MM' => '7.72',
23023             'ExtUtils::MM_AIX' => '7.72',
23024             'ExtUtils::MM_Any' => '7.72',
23025             'ExtUtils::MM_BeOS' => '7.72',
23026             'ExtUtils::MM_Cygwin' => '7.72',
23027             'ExtUtils::MM_DOS' => '7.72',
23028             'ExtUtils::MM_Darwin' => '7.72',
23029             'ExtUtils::MM_MacOS' => '7.72',
23030             'ExtUtils::MM_NW5' => '7.72',
23031             'ExtUtils::MM_OS2' => '7.72',
23032             'ExtUtils::MM_OS390' => '7.72',
23033             'ExtUtils::MM_QNX' => '7.72',
23034             'ExtUtils::MM_UWIN' => '7.72',
23035             'ExtUtils::MM_Unix' => '7.72',
23036             'ExtUtils::MM_VMS' => '7.72',
23037             'ExtUtils::MM_VOS' => '7.72',
23038             'ExtUtils::MM_Win32' => '7.72',
23039             'ExtUtils::MM_Win95' => '7.72',
23040             'ExtUtils::MY' => '7.72',
23041             'ExtUtils::MakeMaker' => '7.72',
23042             'ExtUtils::MakeMaker::Config'=> '7.72',
23043             'ExtUtils::MakeMaker::Locale'=> '7.72',
23044             'ExtUtils::MakeMaker::version'=> '7.72',
23045             'ExtUtils::MakeMaker::version::regex'=> '7.72',
23046             'ExtUtils::Mkbootstrap' => '7.72',
23047             'ExtUtils::Mksymlists' => '7.72',
23048             'ExtUtils::testlib' => '7.72',
23049             'Math::BigFloat' => '2.004001',
23050             'Math::BigInt' => '2.004001',
23051             'Math::BigInt::Calc' => '2.004001',
23052             'Math::BigInt::FastCalc'=> '0.5019',
23053             'Math::BigInt::Lib' => '2.004001',
23054             'Math::BigRat' => '2.004001',
23055             'Module::CoreList' => '5.20250321',
23056             'Module::CoreList::Utils'=> '5.20250321',
23057             'Safe' => '2.47',
23058             'Search::Dict' => '1.08',
23059             'Storable' => '3.36',
23060             'VMS::Filespec' => '1.15',
23061             'XS::APItest' => '1.41',
23062             'builtin' => '0.018',
23063             'feature' => '1.95',
23064             'fields' => '2.27',
23065             'threads' => '2.43',
23066             'warnings' => '1.74',
23067             },
23068             removed => {
23069             }
23070             },
23071             5.038004 => {
23072             delta_from => 5.038003,
23073             changed => {
23074             'B::Op_private' => '5.038004',
23075             'Config' => '5.038004',
23076             'Module::CoreList' => '5.20250413_38',
23077             'Module::CoreList::Utils'=> '5.20250413_38',
23078             },
23079             removed => {
23080             }
23081             },
23082             5.040002 => {
23083             delta_from => 5.040001,
23084             changed => {
23085             'B::Op_private' => '5.040002',
23086             'Config' => '5.040002',
23087             'Module::CoreList' => '5.20250413_40',
23088             'Module::CoreList::Utils'=> '5.20250413_40',
23089             },
23090             removed => {
23091             }
23092             },
23093             5.041011 => {
23094             delta_from => 5.041010,
23095             changed => {
23096             'B::Op_private' => '5.041011',
23097             'Config' => '5.041011',
23098             'Cwd' => '3.94',
23099             'Data::Dumper' => '2.192',
23100             'ExtUtils::Command' => '7.74',
23101             'ExtUtils::Command::MM' => '7.74',
23102             'ExtUtils::Liblist' => '7.74',
23103             'ExtUtils::Liblist::Kid'=> '7.74',
23104             'ExtUtils::MM' => '7.74',
23105             'ExtUtils::MM_AIX' => '7.74',
23106             'ExtUtils::MM_Any' => '7.74',
23107             'ExtUtils::MM_BeOS' => '7.74',
23108             'ExtUtils::MM_Cygwin' => '7.74',
23109             'ExtUtils::MM_DOS' => '7.74',
23110             'ExtUtils::MM_Darwin' => '7.74',
23111             'ExtUtils::MM_MacOS' => '7.74',
23112             'ExtUtils::MM_NW5' => '7.74',
23113             'ExtUtils::MM_OS2' => '7.74',
23114             'ExtUtils::MM_OS390' => '7.74',
23115             'ExtUtils::MM_QNX' => '7.74',
23116             'ExtUtils::MM_UWIN' => '7.74',
23117             'ExtUtils::MM_Unix' => '7.74',
23118             'ExtUtils::MM_VMS' => '7.74',
23119             'ExtUtils::MM_VOS' => '7.74',
23120             'ExtUtils::MM_Win32' => '7.74',
23121             'ExtUtils::MM_Win95' => '7.74',
23122             'ExtUtils::MY' => '7.74',
23123             'ExtUtils::MakeMaker' => '7.74',
23124             'ExtUtils::MakeMaker::Config'=> '7.74',
23125             'ExtUtils::MakeMaker::Locale'=> '7.74',
23126             'ExtUtils::MakeMaker::version'=> '7.74',
23127             'ExtUtils::MakeMaker::version::regex'=> '7.74',
23128             'ExtUtils::Mkbootstrap' => '7.74',
23129             'ExtUtils::Mksymlists' => '7.74',
23130             'ExtUtils::testlib' => '7.74',
23131             'Fcntl' => '1.20',
23132             'File::Spec' => '3.94',
23133             'File::Spec::AmigaOS' => '3.94',
23134             'File::Spec::Cygwin' => '3.94',
23135             'File::Spec::Epoc' => '3.94',
23136             'File::Spec::Functions' => '3.94',
23137             'File::Spec::Mac' => '3.94',
23138             'File::Spec::OS2' => '3.94',
23139             'File::Spec::Unix' => '3.94',
23140             'File::Spec::VMS' => '3.94',
23141             'File::Spec::Win32' => '3.94',
23142             'Math::BigFloat' => '2.005002',
23143             'Math::BigInt' => '2.005002',
23144             'Math::BigInt::Calc' => '2.005002',
23145             'Math::BigInt::FastCalc'=> '0.5020',
23146             'Math::BigInt::Lib' => '2.005002',
23147             'Math::BigRat' => '2.005002',
23148             'Module::CoreList' => '5.20250420',
23149             'Module::CoreList::Utils'=> '5.20250420',
23150             'Pod::Usage' => '2.05',
23151             'Scalar::List::Utils' => '1.69',
23152             'Storable' => '3.37',
23153             'Test2' => '1.302210',
23154             'Test2::API' => '1.302210',
23155             'Test2::API::Breakage' => '1.302210',
23156             'Test2::API::Context' => '1.302210',
23157             'Test2::API::Instance' => '1.302210',
23158             'Test2::API::InterceptResult'=> '1.302210',
23159             'Test2::API::InterceptResult::Event'=> '1.302210',
23160             'Test2::API::InterceptResult::Facet'=> '1.302210',
23161             'Test2::API::InterceptResult::Hub'=> '1.302210',
23162             'Test2::API::InterceptResult::Squasher'=> '1.302210',
23163             'Test2::API::Stack' => '1.302210',
23164             'Test2::AsyncSubtest' => '1.302210',
23165             'Test2::AsyncSubtest::Event::Attach'=> '1.302210',
23166             'Test2::AsyncSubtest::Event::Detach'=> '1.302210',
23167             'Test2::AsyncSubtest::Formatter'=> '1.302210',
23168             'Test2::AsyncSubtest::Hub'=> '1.302210',
23169             'Test2::Bundle' => '1.302210',
23170             'Test2::Bundle::Extended'=> '1.302210',
23171             'Test2::Bundle::More' => '1.302210',
23172             'Test2::Bundle::Simple' => '1.302210',
23173             'Test2::Compare' => '1.302210',
23174             'Test2::Compare::Array' => '1.302210',
23175             'Test2::Compare::Bag' => '1.302210',
23176             'Test2::Compare::Base' => '1.302210',
23177             'Test2::Compare::Bool' => '1.302210',
23178             'Test2::Compare::Custom'=> '1.302210',
23179             'Test2::Compare::DeepRef'=> '1.302210',
23180             'Test2::Compare::Delta' => '1.302210',
23181             'Test2::Compare::Event' => '1.302210',
23182             'Test2::Compare::EventMeta'=> '1.302210',
23183             'Test2::Compare::Float' => '1.302210',
23184             'Test2::Compare::Hash' => '1.302210',
23185             'Test2::Compare::Isa' => '1.302210',
23186             'Test2::Compare::Meta' => '1.302210',
23187             'Test2::Compare::Negatable'=> '1.302210',
23188             'Test2::Compare::Number'=> '1.302210',
23189             'Test2::Compare::Object'=> '1.302210',
23190             'Test2::Compare::OrderedSubset'=> '1.302210',
23191             'Test2::Compare::Pattern'=> '1.302210',
23192             'Test2::Compare::Ref' => '1.302210',
23193             'Test2::Compare::Regex' => '1.302210',
23194             'Test2::Compare::Scalar'=> '1.302210',
23195             'Test2::Compare::Set' => '1.302210',
23196             'Test2::Compare::String'=> '1.302210',
23197             'Test2::Compare::Undef' => '1.302210',
23198             'Test2::Compare::Wildcard'=> '1.302210',
23199             'Test2::Env' => '1.302210',
23200             'Test2::Event' => '1.302210',
23201             'Test2::Event::Bail' => '1.302210',
23202             'Test2::Event::Diag' => '1.302210',
23203             'Test2::Event::Encoding'=> '1.302210',
23204             'Test2::Event::Exception'=> '1.302210',
23205             'Test2::Event::Fail' => '1.302210',
23206             'Test2::Event::Generic' => '1.302210',
23207             'Test2::Event::Note' => '1.302210',
23208             'Test2::Event::Ok' => '1.302210',
23209             'Test2::Event::Pass' => '1.302210',
23210             'Test2::Event::Plan' => '1.302210',
23211             'Test2::Event::Skip' => '1.302210',
23212             'Test2::Event::Subtest' => '1.302210',
23213             'Test2::Event::TAP::Version'=> '1.302210',
23214             'Test2::Event::V2' => '1.302210',
23215             'Test2::Event::Waiting' => '1.302210',
23216             'Test2::EventFacet' => '1.302210',
23217             'Test2::EventFacet::About'=> '1.302210',
23218             'Test2::EventFacet::Amnesty'=> '1.302210',
23219             'Test2::EventFacet::Assert'=> '1.302210',
23220             'Test2::EventFacet::Control'=> '1.302210',
23221             'Test2::EventFacet::Error'=> '1.302210',
23222             'Test2::EventFacet::Hub'=> '1.302210',
23223             'Test2::EventFacet::Info'=> '1.302210',
23224             'Test2::EventFacet::Info::Table'=> '1.302210',
23225             'Test2::EventFacet::Meta'=> '1.302210',
23226             'Test2::EventFacet::Parent'=> '1.302210',
23227             'Test2::EventFacet::Plan'=> '1.302210',
23228             'Test2::EventFacet::Render'=> '1.302210',
23229             'Test2::EventFacet::Trace'=> '1.302210',
23230             'Test2::Formatter' => '1.302210',
23231             'Test2::Formatter::TAP' => '1.302210',
23232             'Test2::Hub' => '1.302210',
23233             'Test2::Hub::Interceptor'=> '1.302210',
23234             'Test2::Hub::Interceptor::Terminator'=> '1.302210',
23235             'Test2::Hub::Subtest' => '1.302210',
23236             'Test2::IPC' => '1.302210',
23237             'Test2::IPC::Driver' => '1.302210',
23238             'Test2::IPC::Driver::Files'=> '1.302210',
23239             'Test2::Manual' => '1.302210',
23240             'Test2::Manual::Anatomy'=> '1.302210',
23241             'Test2::Manual::Anatomy::API'=> '1.302210',
23242             'Test2::Manual::Anatomy::Context'=> '1.302210',
23243             'Test2::Manual::Anatomy::EndToEnd'=> '1.302210',
23244             'Test2::Manual::Anatomy::Event'=> '1.302210',
23245             'Test2::Manual::Anatomy::Hubs'=> '1.302210',
23246             'Test2::Manual::Anatomy::IPC'=> '1.302210',
23247             'Test2::Manual::Anatomy::Utilities'=> '1.302210',
23248             'Test2::Manual::Concurrency'=> '1.302210',
23249             'Test2::Manual::Contributing'=> '1.302210',
23250             'Test2::Manual::Testing'=> '1.302210',
23251             'Test2::Manual::Testing::Introduction'=> '1.302210',
23252             'Test2::Manual::Testing::Migrating'=> '1.302210',
23253             'Test2::Manual::Testing::Planning'=> '1.302210',
23254             'Test2::Manual::Testing::Todo'=> '1.302210',
23255             'Test2::Manual::Tooling'=> '1.302210',
23256             'Test2::Manual::Tooling::FirstTool'=> '1.302210',
23257             'Test2::Manual::Tooling::Formatter'=> '1.302210',
23258             'Test2::Manual::Tooling::Nesting'=> '1.302210',
23259             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302210',
23260             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302210',
23261             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302210',
23262             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302210',
23263             'Test2::Manual::Tooling::Subtest'=> '1.302210',
23264             'Test2::Manual::Tooling::TestBuilder'=> '1.302210',
23265             'Test2::Manual::Tooling::Testing'=> '1.302210',
23266             'Test2::Mock' => '1.302210',
23267             'Test2::Plugin' => '1.302210',
23268             'Test2::Plugin::BailOnFail'=> '1.302210',
23269             'Test2::Plugin::DieOnFail'=> '1.302210',
23270             'Test2::Plugin::ExitSummary'=> '1.302210',
23271             'Test2::Plugin::SRand' => '1.302210',
23272             'Test2::Plugin::Times' => '1.302210',
23273             'Test2::Plugin::UTF8' => '1.302210',
23274             'Test2::Require' => '1.302210',
23275             'Test2::Require::AuthorTesting'=> '1.302210',
23276             'Test2::Require::AutomatedTesting'=> '1.302210',
23277             'Test2::Require::EnvVar'=> '1.302210',
23278             'Test2::Require::ExtendedTesting'=> '1.302210',
23279             'Test2::Require::Fork' => '1.302210',
23280             'Test2::Require::Module'=> '1.302210',
23281             'Test2::Require::NonInteractiveTesting'=> '1.302210',
23282             'Test2::Require::Perl' => '1.302210',
23283             'Test2::Require::RealFork'=> '1.302210',
23284             'Test2::Require::ReleaseTesting'=> '1.302210',
23285             'Test2::Require::Threads'=> '1.302210',
23286             'Test2::Suite' => '1.302210',
23287             'Test2::Todo' => '1.302210',
23288             'Test2::Tools' => '1.302210',
23289             'Test2::Tools::AsyncSubtest'=> '1.302210',
23290             'Test2::Tools::Basic' => '1.302210',
23291             'Test2::Tools::Class' => '1.302210',
23292             'Test2::Tools::ClassicCompare'=> '1.302210',
23293             'Test2::Tools::Compare' => '1.302210',
23294             'Test2::Tools::Defer' => '1.302210',
23295             'Test2::Tools::Encoding'=> '1.302210',
23296             'Test2::Tools::Event' => '1.302210',
23297             'Test2::Tools::Exception'=> '1.302210',
23298             'Test2::Tools::Exports' => '1.302210',
23299             'Test2::Tools::GenTemp' => '1.302210',
23300             'Test2::Tools::Grab' => '1.302210',
23301             'Test2::Tools::Mock' => '1.302210',
23302             'Test2::Tools::Ref' => '1.302210',
23303             'Test2::Tools::Refcount'=> '1.302210',
23304             'Test2::Tools::Spec' => '1.302210',
23305             'Test2::Tools::Subtest' => '1.302210',
23306             'Test2::Tools::Target' => '1.302210',
23307             'Test2::Tools::Tester' => '1.302210',
23308             'Test2::Tools::Tiny' => '1.302210',
23309             'Test2::Tools::Warnings'=> '1.302210',
23310             'Test2::Util' => '1.302210',
23311             'Test2::Util::ExternalMeta'=> '1.302210',
23312             'Test2::Util::Facets2Legacy'=> '1.302210',
23313             'Test2::Util::Grabber' => '1.302210',
23314             'Test2::Util::Guard' => '1.302210',
23315             'Test2::Util::HashBase' => '1.302210',
23316             'Test2::Util::Importer' => '1.302210',
23317             'Test2::Util::Ref' => '1.302210',
23318             'Test2::Util::Sig' => '1.302210',
23319             'Test2::Util::Stash' => '1.302210',
23320             'Test2::Util::Sub' => '1.302210',
23321             'Test2::Util::Table' => '1.302210',
23322             'Test2::Util::Table::Cell'=> '1.302210',
23323             'Test2::Util::Table::LineBreak'=> '1.302210',
23324             'Test2::Util::Term' => '1.302210',
23325             'Test2::Util::Times' => '1.302210',
23326             'Test2::Util::Trace' => '1.302210',
23327             'Test2::V0' => '1.302210',
23328             'Test2::Workflow' => '1.302210',
23329             'Test2::Workflow::BlockBase'=> '1.302210',
23330             'Test2::Workflow::Build'=> '1.302210',
23331             'Test2::Workflow::Runner'=> '1.302210',
23332             'Test2::Workflow::Task' => '1.302210',
23333             'Test2::Workflow::Task::Action'=> '1.302210',
23334             'Test2::Workflow::Task::Group'=> '1.302210',
23335             'Test::Builder' => '1.302210',
23336             'Test::Builder::Formatter'=> '1.302210',
23337             'Test::Builder::Module' => '1.302210',
23338             'Test::Builder::Tester' => '1.302210',
23339             'Test::Builder::Tester::Color'=> '1.302210',
23340             'Test::Builder::TodoDiag'=> '1.302210',
23341             'Test::More' => '1.302210',
23342             'Test::Simple' => '1.302210',
23343             'Test::Tester' => '1.302210',
23344             'Test::Tester::Capture' => '1.302210',
23345             'Test::Tester::CaptureRunner'=> '1.302210',
23346             'Test::Tester::Delegate'=> '1.302210',
23347             'Test::use::ok' => '1.302210',
23348             'Time::HiRes' => '1.9778',
23349             'Time::Piece' => '1.36',
23350             'Time::Seconds' => '1.36',
23351             'Unicode' => '16.0.0',
23352             'Unicode::UCD' => '0.80',
23353             'XS::APItest' => '1.42',
23354             'ok' => '1.302210',
23355             },
23356             removed => {
23357             }
23358             },
23359             5.041012 => {
23360             delta_from => 5.041011,
23361             changed => {
23362             'B::Op_private' => '5.041012',
23363             'Config' => '5.041012',
23364             },
23365             removed => {
23366             }
23367             },
23368             5.041013 => {
23369             delta_from => 5.041012,
23370             changed => {
23371             'B::Deparse' => '1.85',
23372             'B::Op_private' => '5.041013',
23373             'Config' => '5.041013',
23374             'ExtUtils::CBuilder' => '0.280241',
23375             'ExtUtils::CBuilder::Base'=> '0.280241',
23376             'ExtUtils::CBuilder::Platform::Unix'=> '0.280241',
23377             'ExtUtils::CBuilder::Platform::VMS'=> '0.280241',
23378             'ExtUtils::CBuilder::Platform::Windows'=> '0.280241',
23379             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280241',
23380             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280241',
23381             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280241',
23382             'ExtUtils::CBuilder::Platform::aix'=> '0.280241',
23383             'ExtUtils::CBuilder::Platform::android'=> '0.280241',
23384             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280241',
23385             'ExtUtils::CBuilder::Platform::darwin'=> '0.280241',
23386             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280241',
23387             'ExtUtils::CBuilder::Platform::os2'=> '0.280241',
23388             'ExtUtils::Command' => '7.76',
23389             'ExtUtils::Command::MM' => '7.76',
23390             'ExtUtils::Liblist' => '7.76',
23391             'ExtUtils::Liblist::Kid'=> '7.76',
23392             'ExtUtils::MM' => '7.76',
23393             'ExtUtils::MM_AIX' => '7.76',
23394             'ExtUtils::MM_Any' => '7.76',
23395             'ExtUtils::MM_BeOS' => '7.76',
23396             'ExtUtils::MM_Cygwin' => '7.76',
23397             'ExtUtils::MM_DOS' => '7.76',
23398             'ExtUtils::MM_Darwin' => '7.76',
23399             'ExtUtils::MM_MacOS' => '7.76',
23400             'ExtUtils::MM_NW5' => '7.76',
23401             'ExtUtils::MM_OS2' => '7.76',
23402             'ExtUtils::MM_OS390' => '7.76',
23403             'ExtUtils::MM_QNX' => '7.76',
23404             'ExtUtils::MM_UWIN' => '7.76',
23405             'ExtUtils::MM_Unix' => '7.76',
23406             'ExtUtils::MM_VMS' => '7.76',
23407             'ExtUtils::MM_VOS' => '7.76',
23408             'ExtUtils::MM_Win32' => '7.76',
23409             'ExtUtils::MM_Win95' => '7.76',
23410             'ExtUtils::MY' => '7.76',
23411             'ExtUtils::MakeMaker' => '7.76',
23412             'ExtUtils::MakeMaker::Config'=> '7.76',
23413             'ExtUtils::MakeMaker::Locale'=> '7.76',
23414             'ExtUtils::MakeMaker::version'=> '7.76',
23415             'ExtUtils::MakeMaker::version::regex'=> '7.76',
23416             'ExtUtils::Mkbootstrap' => '7.76',
23417             'ExtUtils::Mksymlists' => '7.76',
23418             'ExtUtils::testlib' => '7.76',
23419             'Module::CoreList' => '5.20250528',
23420             'Module::CoreList::Utils'=> '5.20250528',
23421             'SelfLoader' => '1.28',
23422             'Thread' => '3.06',
23423             'Tie::File' => '1.10',
23424             'Unicode::UCD' => '0.81',
23425             'builtin' => '0.019',
23426             'experimental' => '0.035',
23427             'feature' => '1.96',
23428             're' => '0.48',
23429             'stable' => '0.035',
23430             'strict' => '1.14',
23431             },
23432             removed => {
23433             }
23434             },
23435             5.042000 => {
23436             delta_from => 5.041013,
23437             changed => {
23438             'B::Op_private' => '5.042000',
23439             'Config' => '5.042',
23440             'ExtUtils::CBuilder' => '0.280242',
23441             'ExtUtils::CBuilder::Base'=> '0.280242',
23442             'ExtUtils::CBuilder::Platform::Unix'=> '0.280242',
23443             'ExtUtils::CBuilder::Platform::VMS'=> '0.280242',
23444             'ExtUtils::CBuilder::Platform::Windows'=> '0.280242',
23445             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280242',
23446             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280242',
23447             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280242',
23448             'ExtUtils::CBuilder::Platform::aix'=> '0.280242',
23449             'ExtUtils::CBuilder::Platform::android'=> '0.280242',
23450             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280242',
23451             'ExtUtils::CBuilder::Platform::darwin'=> '0.280242',
23452             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280242',
23453             'ExtUtils::CBuilder::Platform::os2'=> '0.280242',
23454             'Module::CoreList' => '5.20250702',
23455             'Module::CoreList::Utils'=> '5.20250702',
23456             'XS::APItest' => '1.43',
23457             'feature' => '1.97',
23458             'perlfaq' => '5.20250619',
23459             },
23460             removed => {
23461             }
23462             },
23463              
23464             5.043000 => {
23465             delta_from => 5.042000,
23466             changed => {
23467             'B::Op_private' => '5.043000',
23468             'Config' => '5.043',
23469             'Math::BigFloat' => '2.005003',
23470             'Math::BigInt' => '2.005003',
23471             'Math::BigInt::Calc' => '2.005003',
23472             'Math::BigInt::Lib' => '2.005003',
23473             'Math::BigRat' => '2.005003',
23474             'Module::CoreList' => '5.20250703',
23475             'Module::CoreList::Utils'=> '5.20250703',
23476             'feature' => '1.98',
23477             },
23478             removed => {
23479             }
23480             },
23481             5.043001 => {
23482             delta_from => 5.043,
23483             changed => {
23484             'App::Prove' => '3.52',
23485             'App::Prove::State' => '3.52',
23486             'App::Prove::State::Result'=> '3.52',
23487             'App::Prove::State::Result::Test'=> '3.52',
23488             'B::Op_private' => '5.043001',
23489             'Config' => '5.043001',
23490             'ExtUtils::ParseXS' => '3.58',
23491             'ExtUtils::ParseXS::Constants'=> '3.58',
23492             'ExtUtils::ParseXS::CountLines'=> '3.58',
23493             'ExtUtils::ParseXS::Eval'=> '3.58',
23494             'ExtUtils::ParseXS::Node'=> '3.58',
23495             'ExtUtils::ParseXS::Utilities'=> '3.58',
23496             'ExtUtils::Typemaps' => '3.58',
23497             'ExtUtils::Typemaps::Cmd'=> '3.58',
23498             'ExtUtils::Typemaps::InputMap'=> '3.58',
23499             'ExtUtils::Typemaps::OutputMap'=> '3.58',
23500             'ExtUtils::Typemaps::Type'=> '3.58',
23501             'File::Fetch' => '1.08',
23502             'Module::CoreList' => '5.20250720',
23503             'Module::CoreList::Utils'=> '5.20250720',
23504             'PerlIO::via' => '0.20',
23505             'Pod::Simple' => '3.47',
23506             'Pod::Simple::BlackBox' => '3.47',
23507             'Pod::Simple::Checker' => '3.47',
23508             'Pod::Simple::Debug' => '3.47',
23509             'Pod::Simple::DumpAsText'=> '3.47',
23510             'Pod::Simple::DumpAsXML'=> '3.47',
23511             'Pod::Simple::HTML' => '3.47',
23512             'Pod::Simple::HTMLBatch'=> '3.47',
23513             'Pod::Simple::LinkSection'=> '3.47',
23514             'Pod::Simple::Methody' => '3.47',
23515             'Pod::Simple::Progress' => '3.47',
23516             'Pod::Simple::PullParser'=> '3.47',
23517             'Pod::Simple::PullParserEndToken'=> '3.47',
23518             'Pod::Simple::PullParserStartToken'=> '3.47',
23519             'Pod::Simple::PullParserTextToken'=> '3.47',
23520             'Pod::Simple::PullParserToken'=> '3.47',
23521             'Pod::Simple::RTF' => '3.47',
23522             'Pod::Simple::Search' => '3.47',
23523             'Pod::Simple::SimpleTree'=> '3.47',
23524             'Pod::Simple::Text' => '3.47',
23525             'Pod::Simple::TextContent'=> '3.47',
23526             'Pod::Simple::TiedOutFH'=> '3.47',
23527             'Pod::Simple::Transcode'=> '3.47',
23528             'Pod::Simple::TranscodeDumb'=> '3.47',
23529             'Pod::Simple::TranscodeSmart'=> '3.47',
23530             'Pod::Simple::XHTML' => '3.47',
23531             'Pod::Simple::XMLOutStream'=> '3.47',
23532             'Socket' => '2.040',
23533             'TAP::Base' => '3.52',
23534             'TAP::Formatter::Base' => '3.52',
23535             'TAP::Formatter::Color' => '3.52',
23536             'TAP::Formatter::Console'=> '3.52',
23537             'TAP::Formatter::Console::ParallelSession'=> '3.52',
23538             'TAP::Formatter::Console::Session'=> '3.52',
23539             'TAP::Formatter::File' => '3.52',
23540             'TAP::Formatter::File::Session'=> '3.52',
23541             'TAP::Formatter::Session'=> '3.52',
23542             'TAP::Harness' => '3.52',
23543             'TAP::Harness::Env' => '3.52',
23544             'TAP::Object' => '3.52',
23545             'TAP::Parser' => '3.52',
23546             'TAP::Parser::Aggregator'=> '3.52',
23547             'TAP::Parser::Grammar' => '3.52',
23548             'TAP::Parser::Iterator' => '3.52',
23549             'TAP::Parser::Iterator::Array'=> '3.52',
23550             'TAP::Parser::Iterator::Process'=> '3.52',
23551             'TAP::Parser::Iterator::Stream'=> '3.52',
23552             'TAP::Parser::IteratorFactory'=> '3.52',
23553             'TAP::Parser::Multiplexer'=> '3.52',
23554             'TAP::Parser::Result' => '3.52',
23555             'TAP::Parser::Result::Bailout'=> '3.52',
23556             'TAP::Parser::Result::Comment'=> '3.52',
23557             'TAP::Parser::Result::Plan'=> '3.52',
23558             'TAP::Parser::Result::Pragma'=> '3.52',
23559             'TAP::Parser::Result::Test'=> '3.52',
23560             'TAP::Parser::Result::Unknown'=> '3.52',
23561             'TAP::Parser::Result::Version'=> '3.52',
23562             'TAP::Parser::Result::YAML'=> '3.52',
23563             'TAP::Parser::ResultFactory'=> '3.52',
23564             'TAP::Parser::Scheduler'=> '3.52',
23565             'TAP::Parser::Scheduler::Job'=> '3.52',
23566             'TAP::Parser::Scheduler::Spinner'=> '3.52',
23567             'TAP::Parser::Source' => '3.52',
23568             'TAP::Parser::SourceHandler'=> '3.52',
23569             'TAP::Parser::SourceHandler::Executable'=> '3.52',
23570             'TAP::Parser::SourceHandler::File'=> '3.52',
23571             'TAP::Parser::SourceHandler::Handle'=> '3.52',
23572             'TAP::Parser::SourceHandler::Perl'=> '3.52',
23573             'TAP::Parser::SourceHandler::RawTAP'=> '3.52',
23574             'TAP::Parser::YAMLish::Reader'=> '3.52',
23575             'TAP::Parser::YAMLish::Writer'=> '3.52',
23576             'Test2' => '1.302214',
23577             'Test2::API' => '1.302214',
23578             'Test2::API::Breakage' => '1.302214',
23579             'Test2::API::Context' => '1.302214',
23580             'Test2::API::Instance' => '1.302214',
23581             'Test2::API::InterceptResult'=> '1.302214',
23582             'Test2::API::InterceptResult::Event'=> '1.302214',
23583             'Test2::API::InterceptResult::Facet'=> '1.302214',
23584             'Test2::API::InterceptResult::Hub'=> '1.302214',
23585             'Test2::API::InterceptResult::Squasher'=> '1.302214',
23586             'Test2::API::Stack' => '1.302214',
23587             'Test2::AsyncSubtest' => '1.302214',
23588             'Test2::AsyncSubtest::Event::Attach'=> '1.302214',
23589             'Test2::AsyncSubtest::Event::Detach'=> '1.302214',
23590             'Test2::AsyncSubtest::Formatter'=> '1.302214',
23591             'Test2::AsyncSubtest::Hub'=> '1.302214',
23592             'Test2::Bundle' => '1.302214',
23593             'Test2::Bundle::Extended'=> '1.302214',
23594             'Test2::Bundle::More' => '1.302214',
23595             'Test2::Bundle::Simple' => '1.302214',
23596             'Test2::Compare' => '1.302214',
23597             'Test2::Compare::Array' => '1.302214',
23598             'Test2::Compare::Bag' => '1.302214',
23599             'Test2::Compare::Base' => '1.302214',
23600             'Test2::Compare::Bool' => '1.302214',
23601             'Test2::Compare::Custom'=> '1.302214',
23602             'Test2::Compare::DeepRef'=> '1.302214',
23603             'Test2::Compare::Delta' => '1.302214',
23604             'Test2::Compare::Event' => '1.302214',
23605             'Test2::Compare::EventMeta'=> '1.302214',
23606             'Test2::Compare::Float' => '1.302214',
23607             'Test2::Compare::Hash' => '1.302214',
23608             'Test2::Compare::Isa' => '1.302214',
23609             'Test2::Compare::Meta' => '1.302214',
23610             'Test2::Compare::Negatable'=> '1.302214',
23611             'Test2::Compare::Number'=> '1.302214',
23612             'Test2::Compare::Object'=> '1.302214',
23613             'Test2::Compare::OrderedSubset'=> '1.302214',
23614             'Test2::Compare::Pattern'=> '1.302214',
23615             'Test2::Compare::Ref' => '1.302214',
23616             'Test2::Compare::Regex' => '1.302214',
23617             'Test2::Compare::Scalar'=> '1.302214',
23618             'Test2::Compare::Set' => '1.302214',
23619             'Test2::Compare::String'=> '1.302214',
23620             'Test2::Compare::Undef' => '1.302214',
23621             'Test2::Compare::Wildcard'=> '1.302214',
23622             'Test2::Env' => '1.302214',
23623             'Test2::Event' => '1.302214',
23624             'Test2::Event::Bail' => '1.302214',
23625             'Test2::Event::Diag' => '1.302214',
23626             'Test2::Event::Encoding'=> '1.302214',
23627             'Test2::Event::Exception'=> '1.302214',
23628             'Test2::Event::Fail' => '1.302214',
23629             'Test2::Event::Generic' => '1.302214',
23630             'Test2::Event::Note' => '1.302214',
23631             'Test2::Event::Ok' => '1.302214',
23632             'Test2::Event::Pass' => '1.302214',
23633             'Test2::Event::Plan' => '1.302214',
23634             'Test2::Event::Skip' => '1.302214',
23635             'Test2::Event::Subtest' => '1.302214',
23636             'Test2::Event::TAP::Version'=> '1.302214',
23637             'Test2::Event::V2' => '1.302214',
23638             'Test2::Event::Waiting' => '1.302214',
23639             'Test2::EventFacet' => '1.302214',
23640             'Test2::EventFacet::About'=> '1.302214',
23641             'Test2::EventFacet::Amnesty'=> '1.302214',
23642             'Test2::EventFacet::Assert'=> '1.302214',
23643             'Test2::EventFacet::Control'=> '1.302214',
23644             'Test2::EventFacet::Error'=> '1.302214',
23645             'Test2::EventFacet::Hub'=> '1.302214',
23646             'Test2::EventFacet::Info'=> '1.302214',
23647             'Test2::EventFacet::Info::Table'=> '1.302214',
23648             'Test2::EventFacet::Meta'=> '1.302214',
23649             'Test2::EventFacet::Parent'=> '1.302214',
23650             'Test2::EventFacet::Plan'=> '1.302214',
23651             'Test2::EventFacet::Render'=> '1.302214',
23652             'Test2::EventFacet::Trace'=> '1.302214',
23653             'Test2::Formatter' => '1.302214',
23654             'Test2::Formatter::TAP' => '1.302214',
23655             'Test2::Hub' => '1.302214',
23656             'Test2::Hub::Interceptor'=> '1.302214',
23657             'Test2::Hub::Interceptor::Terminator'=> '1.302214',
23658             'Test2::Hub::Subtest' => '1.302214',
23659             'Test2::IPC' => '1.302214',
23660             'Test2::IPC::Driver' => '1.302214',
23661             'Test2::IPC::Driver::Files'=> '1.302214',
23662             'Test2::Manual' => '1.302214',
23663             'Test2::Manual::Anatomy'=> '1.302214',
23664             'Test2::Manual::Anatomy::API'=> '1.302214',
23665             'Test2::Manual::Anatomy::Context'=> '1.302214',
23666             'Test2::Manual::Anatomy::EndToEnd'=> '1.302214',
23667             'Test2::Manual::Anatomy::Event'=> '1.302214',
23668             'Test2::Manual::Anatomy::Hubs'=> '1.302214',
23669             'Test2::Manual::Anatomy::IPC'=> '1.302214',
23670             'Test2::Manual::Anatomy::Utilities'=> '1.302214',
23671             'Test2::Manual::Concurrency'=> '1.302214',
23672             'Test2::Manual::Contributing'=> '1.302214',
23673             'Test2::Manual::Testing'=> '1.302214',
23674             'Test2::Manual::Testing::Introduction'=> '1.302214',
23675             'Test2::Manual::Testing::Migrating'=> '1.302214',
23676             'Test2::Manual::Testing::Planning'=> '1.302214',
23677             'Test2::Manual::Testing::Todo'=> '1.302214',
23678             'Test2::Manual::Tooling'=> '1.302214',
23679             'Test2::Manual::Tooling::FirstTool'=> '1.302214',
23680             'Test2::Manual::Tooling::Formatter'=> '1.302214',
23681             'Test2::Manual::Tooling::Nesting'=> '1.302214',
23682             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302214',
23683             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302214',
23684             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302214',
23685             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302214',
23686             'Test2::Manual::Tooling::Subtest'=> '1.302214',
23687             'Test2::Manual::Tooling::TestBuilder'=> '1.302214',
23688             'Test2::Manual::Tooling::Testing'=> '1.302214',
23689             'Test2::Mock' => '1.302214',
23690             'Test2::Plugin' => '1.302214',
23691             'Test2::Plugin::BailOnFail'=> '1.302214',
23692             'Test2::Plugin::DieOnFail'=> '1.302214',
23693             'Test2::Plugin::ExitSummary'=> '1.302214',
23694             'Test2::Plugin::SRand' => '1.302214',
23695             'Test2::Plugin::Times' => '1.302214',
23696             'Test2::Plugin::UTF8' => '1.302214',
23697             'Test2::Require' => '1.302214',
23698             'Test2::Require::AuthorTesting'=> '1.302214',
23699             'Test2::Require::AutomatedTesting'=> '1.302214',
23700             'Test2::Require::EnvVar'=> '1.302214',
23701             'Test2::Require::ExtendedTesting'=> '1.302214',
23702             'Test2::Require::Fork' => '1.302214',
23703             'Test2::Require::Module'=> '1.302214',
23704             'Test2::Require::NonInteractiveTesting'=> '1.302214',
23705             'Test2::Require::Perl' => '1.302214',
23706             'Test2::Require::RealFork'=> '1.302214',
23707             'Test2::Require::ReleaseTesting'=> '1.302214',
23708             'Test2::Require::Threads'=> '1.302214',
23709             'Test2::Suite' => '1.302214',
23710             'Test2::Todo' => '1.302214',
23711             'Test2::Tools' => '1.302214',
23712             'Test2::Tools::AsyncSubtest'=> '1.302214',
23713             'Test2::Tools::Basic' => '1.302214',
23714             'Test2::Tools::Class' => '1.302214',
23715             'Test2::Tools::ClassicCompare'=> '1.302214',
23716             'Test2::Tools::Compare' => '1.302214',
23717             'Test2::Tools::Defer' => '1.302214',
23718             'Test2::Tools::Encoding'=> '1.302214',
23719             'Test2::Tools::Event' => '1.302214',
23720             'Test2::Tools::Exception'=> '1.302214',
23721             'Test2::Tools::Exports' => '1.302214',
23722             'Test2::Tools::GenTemp' => '1.302214',
23723             'Test2::Tools::Grab' => '1.302214',
23724             'Test2::Tools::Mock' => '1.302214',
23725             'Test2::Tools::Ref' => '1.302214',
23726             'Test2::Tools::Refcount'=> '1.302214',
23727             'Test2::Tools::Spec' => '1.302214',
23728             'Test2::Tools::Subtest' => '1.302214',
23729             'Test2::Tools::Target' => '1.302214',
23730             'Test2::Tools::Tester' => '1.302214',
23731             'Test2::Tools::Tiny' => '1.302214',
23732             'Test2::Tools::Warnings'=> '1.302214',
23733             'Test2::Util' => '1.302214',
23734             'Test2::Util::ExternalMeta'=> '1.302214',
23735             'Test2::Util::Facets2Legacy'=> '1.302214',
23736             'Test2::Util::Grabber' => '1.302214',
23737             'Test2::Util::Guard' => '1.302214',
23738             'Test2::Util::HashBase' => '1.302214',
23739             'Test2::Util::Importer' => '1.302214',
23740             'Test2::Util::Ref' => '1.302214',
23741             'Test2::Util::Sig' => '1.302214',
23742             'Test2::Util::Stash' => '1.302214',
23743             'Test2::Util::Sub' => '1.302214',
23744             'Test2::Util::Table' => '1.302214',
23745             'Test2::Util::Table::Cell'=> '1.302214',
23746             'Test2::Util::Table::LineBreak'=> '1.302214',
23747             'Test2::Util::Term' => '1.302214',
23748             'Test2::Util::Times' => '1.302214',
23749             'Test2::Util::Trace' => '1.302214',
23750             'Test2::V0' => '1.302214',
23751             'Test2::Workflow' => '1.302214',
23752             'Test2::Workflow::BlockBase'=> '1.302214',
23753             'Test2::Workflow::Build'=> '1.302214',
23754             'Test2::Workflow::Runner'=> '1.302214',
23755             'Test2::Workflow::Task' => '1.302214',
23756             'Test2::Workflow::Task::Action'=> '1.302214',
23757             'Test2::Workflow::Task::Group'=> '1.302214',
23758             'Test::Builder' => '1.302214',
23759             'Test::Builder::Formatter'=> '1.302214',
23760             'Test::Builder::Module' => '1.302214',
23761             'Test::Builder::Tester' => '1.302214',
23762             'Test::Builder::Tester::Color'=> '1.302214',
23763             'Test::Builder::TodoDiag'=> '1.302214',
23764             'Test::Harness' => '3.52',
23765             'Test::More' => '1.302214',
23766             'Test::Simple' => '1.302214',
23767             'Test::Tester' => '1.302214',
23768             'Test::Tester::Capture' => '1.302214',
23769             'Test::Tester::CaptureRunner'=> '1.302214',
23770             'Test::Tester::Delegate'=> '1.302214',
23771             'Test::use::ok' => '1.302214',
23772             'Unicode::UCD' => '0.82',
23773             'experimental' => '0.036',
23774             'ok' => '1.302214',
23775             'stable' => '0.036',
23776             },
23777             removed => {
23778             }
23779             },
23780             5.038005 => {
23781             delta_from => 5.038004,
23782             changed => {
23783             'B::Op_private' => '5.038005',
23784             'Config' => '5.038005',
23785             'Module::CoreList' => '5.20250803_38',
23786             'Module::CoreList::Utils'=> '5.20250803_38',
23787             },
23788             removed => {
23789             }
23790             },
23791             5.040003 => {
23792             delta_from => 5.040002,
23793             changed => {
23794             'B::Op_private' => '5.040003',
23795             'Config' => '5.040003',
23796             'Module::CoreList' => '5.20250803_40',
23797             'Module::CoreList::Utils'=> '5.20250803_40',
23798             },
23799             removed => {
23800             }
23801             },
23802             5.043002 => {
23803             delta_from => 5.043001,
23804             changed => {
23805             'B::Deparse' => '1.86',
23806             'B::Op_private' => '5.043002',
23807             'Config' => '5.043002',
23808             'ExtUtils::Miniperl' => '1.15',
23809             'ExtUtils::ParseXS' => '3.59',
23810             'ExtUtils::ParseXS::Constants'=> '3.59',
23811             'ExtUtils::ParseXS::CountLines'=> '3.59',
23812             'ExtUtils::ParseXS::Eval'=> '3.59',
23813             'ExtUtils::ParseXS::Node'=> '3.59',
23814             'ExtUtils::ParseXS::Utilities'=> '3.59',
23815             'ExtUtils::Typemaps' => '3.59',
23816             'ExtUtils::Typemaps::Cmd'=> '3.59',
23817             'ExtUtils::Typemaps::InputMap'=> '3.59',
23818             'ExtUtils::Typemaps::OutputMap'=> '3.59',
23819             'ExtUtils::Typemaps::Type'=> '3.59',
23820             'File::Copy' => '2.42',
23821             'File::stat' => '1.15',
23822             'Filter::Simple' => '0.97',
23823             'List::Util' => '1.70',
23824             'List::Util::XS' => '1.70',
23825             'Module::CoreList' => '5.20250820',
23826             'Module::CoreList::Utils'=> '5.20250820',
23827             'POSIX' => '2.24',
23828             'Scalar::List::Utils' => '1.70',
23829             'Scalar::Util' => '1.70',
23830             'Storable' => '3.38',
23831             'Sub::Util' => '1.70',
23832             'Text::Balanced' => '2.07',
23833             'Unicode::UCD' => '0.83',
23834             'XS::APItest' => '1.44',
23835             'feature' => '1.99',
23836             'mro' => '1.30',
23837             'threads::shared' => '1.71',
23838             },
23839             removed => {
23840             }
23841             },
23842             5.043003 => {
23843             delta_from => 5.043002,
23844             changed => {
23845             'B' => '1.90',
23846             'B::Concise' => '1.009',
23847             'B::Deparse' => '1.87',
23848             'B::Op_private' => '5.043003',
23849             'Config' => '5.043003',
23850             'ExtUtils::ParseXS' => '3.60',
23851             'ExtUtils::ParseXS::Constants'=> '3.60',
23852             'ExtUtils::ParseXS::CountLines'=> '3.60',
23853             'ExtUtils::ParseXS::Eval'=> '3.60',
23854             'ExtUtils::ParseXS::Node'=> '3.60',
23855             'ExtUtils::ParseXS::Utilities'=> '3.60',
23856             'ExtUtils::Typemaps' => '3.60',
23857             'ExtUtils::Typemaps::Cmd'=> '3.60',
23858             'ExtUtils::Typemaps::InputMap'=> '3.60',
23859             'ExtUtils::Typemaps::OutputMap'=> '3.60',
23860             'ExtUtils::Typemaps::Type'=> '3.60',
23861             'File::Copy' => '2.43',
23862             'File::Temp' => '0.2312',
23863             'Filter::Util::Call' => '1.65',
23864             'Module::CoreList' => '5.20250923',
23865             'Module::CoreList::Utils'=> '5.20250923',
23866             'Net::Ping' => '2.77',
23867             'Opcode' => '1.70',
23868             'PerlIO::via' => '0.21',
23869             'Storable' => '3.39',
23870             'Term::Table' => '0.025',
23871             'Term::Table::Cell' => '0.025',
23872             'Term::Table::CellStack'=> '0.025',
23873             'Term::Table::HashBase' => '0.025',
23874             'Term::Table::LineBreak'=> '0.025',
23875             'Term::Table::Spacer' => '0.025',
23876             'Term::Table::Util' => '0.025',
23877             'Time::HiRes' => '1.9779',
23878             'Time::Piece' => '1.3701',
23879             'Time::Seconds' => '1.3701',
23880             'Unicode' => '17.0.0',
23881             'XS::APItest' => '1.46',
23882             'overloading' => '0.03',
23883             'utf8' => '1.29',
23884             },
23885             removed => {
23886             }
23887             },
23888             5.043004 => {
23889             delta_from => 5.043003,
23890             changed => {
23891             'B::Deparse' => '1.88',
23892             'B::Op_private' => '5.043004',
23893             'Config' => '5.043004',
23894             'Module::CoreList' => '5.20251022',
23895             'Module::CoreList::Utils'=> '5.20251022',
23896             'SelectSaver' => '1.03',
23897             'Time::Piece' => '1.38',
23898             'Time::Seconds' => '1.38',
23899             'XS::APItest' => '1.47',
23900             'attributes' => '0.37',
23901             'feature' => '2.00',
23902             },
23903             removed => {
23904             }
23905             },
23906             5.043005 => {
23907             delta_from => 5.043004,
23908             changed => {
23909             'B::Op_private' => '5.043005',
23910             'Compress::Raw::Bzip2' => '2.214',
23911             'Compress::Raw::Zlib' => '2.214',
23912             'Compress::Zlib' => '2.214',
23913             'Config' => '5.043005',
23914             'Getopt::Std' => '1.15',
23915             'IO::Compress' => '2.214',
23916             'IO::Compress::Adapter::Bzip2'=> '2.214',
23917             'IO::Compress::Adapter::Deflate'=> '2.214',
23918             'IO::Compress::Adapter::Identity'=> '2.214',
23919             'IO::Compress::Base' => '2.214',
23920             'IO::Compress::Base::Common'=> '2.214',
23921             'IO::Compress::Bzip2' => '2.214',
23922             'IO::Compress::Deflate' => '2.214',
23923             'IO::Compress::Gzip' => '2.214',
23924             'IO::Compress::Gzip::Constants'=> '2.214',
23925             'IO::Compress::RawDeflate'=> '2.214',
23926             'IO::Compress::Zip' => '2.214',
23927             'IO::Compress::Zip::Constants'=> '2.214',
23928             'IO::Compress::Zlib::Constants'=> '2.214',
23929             'IO::Compress::Zlib::Extra'=> '2.214',
23930             'IO::Uncompress::Adapter::Bunzip2'=> '2.214',
23931             'IO::Uncompress::Adapter::Identity'=> '2.214',
23932             'IO::Uncompress::Adapter::Inflate'=> '2.214',
23933             'IO::Uncompress::AnyInflate'=> '2.214',
23934             'IO::Uncompress::AnyUncompress'=> '2.214',
23935             'IO::Uncompress::Base' => '2.214',
23936             'IO::Uncompress::Bunzip2'=> '2.214',
23937             'IO::Uncompress::Gunzip'=> '2.214',
23938             'IO::Uncompress::Inflate'=> '2.214',
23939             'IO::Uncompress::RawInflate'=> '2.214',
23940             'IO::Uncompress::Unzip' => '2.214',
23941             'Module::CoreList' => '5.20251120',
23942             'Module::CoreList::Utils'=> '5.20251120',
23943             'Term::Table' => '0.027',
23944             'Term::Table::Cell' => '0.027',
23945             'Term::Table::CellStack'=> '0.027',
23946             'Term::Table::HashBase' => '0.027',
23947             'Term::Table::LineBreak'=> '0.027',
23948             'Term::Table::Spacer' => '0.027',
23949             'Term::Table::Util' => '0.027',
23950             'Test2' => '1.302216',
23951             'Test2::API' => '1.302216',
23952             'Test2::API::Breakage' => '1.302216',
23953             'Test2::API::Context' => '1.302216',
23954             'Test2::API::Instance' => '1.302216',
23955             'Test2::API::InterceptResult'=> '1.302216',
23956             'Test2::API::InterceptResult::Event'=> '1.302216',
23957             'Test2::API::InterceptResult::Facet'=> '1.302216',
23958             'Test2::API::InterceptResult::Hub'=> '1.302216',
23959             'Test2::API::InterceptResult::Squasher'=> '1.302216',
23960             'Test2::API::Stack' => '1.302216',
23961             'Test2::AsyncSubtest' => '1.302216',
23962             'Test2::AsyncSubtest::Event::Attach'=> '1.302216',
23963             'Test2::AsyncSubtest::Event::Detach'=> '1.302216',
23964             'Test2::AsyncSubtest::Formatter'=> '1.302216',
23965             'Test2::AsyncSubtest::Hub'=> '1.302216',
23966             'Test2::Bundle' => '1.302216',
23967             'Test2::Bundle::Extended'=> '1.302216',
23968             'Test2::Bundle::More' => '1.302216',
23969             'Test2::Bundle::Simple' => '1.302216',
23970             'Test2::Compare' => '1.302216',
23971             'Test2::Compare::Array' => '1.302216',
23972             'Test2::Compare::Bag' => '1.302216',
23973             'Test2::Compare::Base' => '1.302216',
23974             'Test2::Compare::Bool' => '1.302216',
23975             'Test2::Compare::Custom'=> '1.302216',
23976             'Test2::Compare::DeepRef'=> '1.302216',
23977             'Test2::Compare::Delta' => '1.302216',
23978             'Test2::Compare::Event' => '1.302216',
23979             'Test2::Compare::EventMeta'=> '1.302216',
23980             'Test2::Compare::Float' => '1.302216',
23981             'Test2::Compare::Hash' => '1.302216',
23982             'Test2::Compare::Isa' => '1.302216',
23983             'Test2::Compare::Meta' => '1.302216',
23984             'Test2::Compare::Negatable'=> '1.302216',
23985             'Test2::Compare::Number'=> '1.302216',
23986             'Test2::Compare::Object'=> '1.302216',
23987             'Test2::Compare::OrderedSubset'=> '1.302216',
23988             'Test2::Compare::Pattern'=> '1.302216',
23989             'Test2::Compare::Ref' => '1.302216',
23990             'Test2::Compare::Regex' => '1.302216',
23991             'Test2::Compare::Scalar'=> '1.302216',
23992             'Test2::Compare::Set' => '1.302216',
23993             'Test2::Compare::String'=> '1.302216',
23994             'Test2::Compare::Undef' => '1.302216',
23995             'Test2::Compare::Wildcard'=> '1.302216',
23996             'Test2::Env' => '1.302216',
23997             'Test2::Event' => '1.302216',
23998             'Test2::Event::Bail' => '1.302216',
23999             'Test2::Event::Diag' => '1.302216',
24000             'Test2::Event::Encoding'=> '1.302216',
24001             'Test2::Event::Exception'=> '1.302216',
24002             'Test2::Event::Fail' => '1.302216',
24003             'Test2::Event::Generic' => '1.302216',
24004             'Test2::Event::Note' => '1.302216',
24005             'Test2::Event::Ok' => '1.302216',
24006             'Test2::Event::Pass' => '1.302216',
24007             'Test2::Event::Plan' => '1.302216',
24008             'Test2::Event::Skip' => '1.302216',
24009             'Test2::Event::Subtest' => '1.302216',
24010             'Test2::Event::TAP::Version'=> '1.302216',
24011             'Test2::Event::V2' => '1.302216',
24012             'Test2::Event::Waiting' => '1.302216',
24013             'Test2::EventFacet' => '1.302216',
24014             'Test2::EventFacet::About'=> '1.302216',
24015             'Test2::EventFacet::Amnesty'=> '1.302216',
24016             'Test2::EventFacet::Assert'=> '1.302216',
24017             'Test2::EventFacet::Control'=> '1.302216',
24018             'Test2::EventFacet::Error'=> '1.302216',
24019             'Test2::EventFacet::Hub'=> '1.302216',
24020             'Test2::EventFacet::Info'=> '1.302216',
24021             'Test2::EventFacet::Info::Table'=> '1.302216',
24022             'Test2::EventFacet::Meta'=> '1.302216',
24023             'Test2::EventFacet::Parent'=> '1.302216',
24024             'Test2::EventFacet::Plan'=> '1.302216',
24025             'Test2::EventFacet::Render'=> '1.302216',
24026             'Test2::EventFacet::Trace'=> '1.302216',
24027             'Test2::Formatter' => '1.302216',
24028             'Test2::Formatter::TAP' => '1.302216',
24029             'Test2::Hub' => '1.302216',
24030             'Test2::Hub::Interceptor'=> '1.302216',
24031             'Test2::Hub::Interceptor::Terminator'=> '1.302216',
24032             'Test2::Hub::Subtest' => '1.302216',
24033             'Test2::IPC' => '1.302216',
24034             'Test2::IPC::Driver' => '1.302216',
24035             'Test2::IPC::Driver::Files'=> '1.302216',
24036             'Test2::Manual' => '1.302216',
24037             'Test2::Manual::Anatomy'=> '1.302216',
24038             'Test2::Manual::Anatomy::API'=> '1.302216',
24039             'Test2::Manual::Anatomy::Context'=> '1.302216',
24040             'Test2::Manual::Anatomy::EndToEnd'=> '1.302216',
24041             'Test2::Manual::Anatomy::Event'=> '1.302216',
24042             'Test2::Manual::Anatomy::Hubs'=> '1.302216',
24043             'Test2::Manual::Anatomy::IPC'=> '1.302216',
24044             'Test2::Manual::Anatomy::Utilities'=> '1.302216',
24045             'Test2::Manual::Concurrency'=> '1.302216',
24046             'Test2::Manual::Contributing'=> '1.302216',
24047             'Test2::Manual::Testing'=> '1.302216',
24048             'Test2::Manual::Testing::Introduction'=> '1.302216',
24049             'Test2::Manual::Testing::Migrating'=> '1.302216',
24050             'Test2::Manual::Testing::Planning'=> '1.302216',
24051             'Test2::Manual::Testing::Todo'=> '1.302216',
24052             'Test2::Manual::Tooling'=> '1.302216',
24053             'Test2::Manual::Tooling::FirstTool'=> '1.302216',
24054             'Test2::Manual::Tooling::Formatter'=> '1.302216',
24055             'Test2::Manual::Tooling::Nesting'=> '1.302216',
24056             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302216',
24057             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302216',
24058             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302216',
24059             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302216',
24060             'Test2::Manual::Tooling::Subtest'=> '1.302216',
24061             'Test2::Manual::Tooling::TestBuilder'=> '1.302216',
24062             'Test2::Manual::Tooling::Testing'=> '1.302216',
24063             'Test2::Mock' => '1.302216',
24064             'Test2::Plugin' => '1.302216',
24065             'Test2::Plugin::BailOnFail'=> '1.302216',
24066             'Test2::Plugin::DieOnFail'=> '1.302216',
24067             'Test2::Plugin::ExitSummary'=> '1.302216',
24068             'Test2::Plugin::SRand' => '1.302216',
24069             'Test2::Plugin::Times' => '1.302216',
24070             'Test2::Plugin::UTF8' => '1.302216',
24071             'Test2::Require' => '1.302216',
24072             'Test2::Require::AuthorTesting'=> '1.302216',
24073             'Test2::Require::AutomatedTesting'=> '1.302216',
24074             'Test2::Require::EnvVar'=> '1.302216',
24075             'Test2::Require::ExtendedTesting'=> '1.302216',
24076             'Test2::Require::Fork' => '1.302216',
24077             'Test2::Require::Module'=> '1.302216',
24078             'Test2::Require::NonInteractiveTesting'=> '1.302216',
24079             'Test2::Require::Perl' => '1.302216',
24080             'Test2::Require::RealFork'=> '1.302216',
24081             'Test2::Require::ReleaseTesting'=> '1.302216',
24082             'Test2::Require::Threads'=> '1.302216',
24083             'Test2::Suite' => '1.302216',
24084             'Test2::Todo' => '1.302216',
24085             'Test2::Tools' => '1.302216',
24086             'Test2::Tools::AsyncSubtest'=> '1.302216',
24087             'Test2::Tools::Basic' => '1.302216',
24088             'Test2::Tools::Class' => '1.302216',
24089             'Test2::Tools::ClassicCompare'=> '1.302216',
24090             'Test2::Tools::Compare' => '1.302216',
24091             'Test2::Tools::Defer' => '1.302216',
24092             'Test2::Tools::Encoding'=> '1.302216',
24093             'Test2::Tools::Event' => '1.302216',
24094             'Test2::Tools::Exception'=> '1.302216',
24095             'Test2::Tools::Exports' => '1.302216',
24096             'Test2::Tools::GenTemp' => '1.302216',
24097             'Test2::Tools::Grab' => '1.302216',
24098             'Test2::Tools::Mock' => '1.302216',
24099             'Test2::Tools::Ref' => '1.302216',
24100             'Test2::Tools::Refcount'=> '1.302216',
24101             'Test2::Tools::Spec' => '1.302216',
24102             'Test2::Tools::Subtest' => '1.302216',
24103             'Test2::Tools::Target' => '1.302216',
24104             'Test2::Tools::Tester' => '1.302216',
24105             'Test2::Tools::Tiny' => '1.302216',
24106             'Test2::Tools::Warnings'=> '1.302216',
24107             'Test2::Util' => '1.302216',
24108             'Test2::Util::ExternalMeta'=> '1.302216',
24109             'Test2::Util::Facets2Legacy'=> '1.302216',
24110             'Test2::Util::Grabber' => '1.302216',
24111             'Test2::Util::Guard' => '1.302216',
24112             'Test2::Util::HashBase' => '1.302216',
24113             'Test2::Util::Importer' => '1.302216',
24114             'Test2::Util::Ref' => '1.302216',
24115             'Test2::Util::Sig' => '1.302216',
24116             'Test2::Util::Stash' => '1.302216',
24117             'Test2::Util::Sub' => '1.302216',
24118             'Test2::Util::Table' => '1.302216',
24119             'Test2::Util::Table::Cell'=> '1.302216',
24120             'Test2::Util::Table::LineBreak'=> '1.302216',
24121             'Test2::Util::Term' => '1.302216',
24122             'Test2::Util::Times' => '1.302216',
24123             'Test2::Util::Trace' => '1.302216',
24124             'Test2::V0' => '1.302216',
24125             'Test2::Workflow' => '1.302216',
24126             'Test2::Workflow::BlockBase'=> '1.302216',
24127             'Test2::Workflow::Build'=> '1.302216',
24128             'Test2::Workflow::Runner'=> '1.302216',
24129             'Test2::Workflow::Task' => '1.302216',
24130             'Test2::Workflow::Task::Action'=> '1.302216',
24131             'Test2::Workflow::Task::Group'=> '1.302216',
24132             'Test::Builder' => '1.302216',
24133             'Test::Builder::Formatter'=> '1.302216',
24134             'Test::Builder::Module' => '1.302216',
24135             'Test::Builder::Tester' => '1.302216',
24136             'Test::Builder::Tester::Color'=> '1.302216',
24137             'Test::Builder::TodoDiag'=> '1.302216',
24138             'Test::More' => '1.302216',
24139             'Test::Simple' => '1.302216',
24140             'Test::Tester' => '1.302216',
24141             'Test::Tester::Capture' => '1.302216',
24142             'Test::Tester::CaptureRunner'=> '1.302216',
24143             'Test::Tester::Delegate'=> '1.302216',
24144             'Test::use::ok' => '1.302216',
24145             'Time::Piece' => '1.41',
24146             'Time::Seconds' => '1.41',
24147             'ok' => '1.302216',
24148             'warnings' => '1.75',
24149             },
24150             removed => {
24151             }
24152             },
24153             5.043006 => {
24154             delta_from => 5.043005,
24155             changed => {
24156             'B::Op_private' => '5.043006',
24157             'Config' => '5.043006',
24158             'ExtUtils::ParseXS' => '3.61',
24159             'ExtUtils::ParseXS::Constants'=> '3.61',
24160             'ExtUtils::ParseXS::CountLines'=> '3.61',
24161             'ExtUtils::ParseXS::Eval'=> '3.61',
24162             'ExtUtils::ParseXS::Node'=> '3.61',
24163             'ExtUtils::ParseXS::Utilities'=> '3.61',
24164             'ExtUtils::Typemaps' => '3.61',
24165             'ExtUtils::Typemaps::Cmd'=> '3.61',
24166             'ExtUtils::Typemaps::InputMap'=> '3.61',
24167             'ExtUtils::Typemaps::OutputMap'=> '3.61',
24168             'ExtUtils::Typemaps::Type'=> '3.61',
24169             'Module::CoreList' => '5.20251220',
24170             'Module::CoreList::Utils'=> '5.20251220',
24171             'Term::Table' => '0.028',
24172             'Term::Table::Cell' => '0.028',
24173             'Term::Table::CellStack'=> '0.028',
24174             'Term::Table::HashBase' => '0.028',
24175             'Term::Table::LineBreak'=> '0.028',
24176             'Term::Table::Spacer' => '0.028',
24177             'Term::Table::Util' => '0.028',
24178             'Test2' => '1.302219',
24179             'Test2::API' => '1.302219',
24180             'Test2::API::Breakage' => '1.302219',
24181             'Test2::API::Context' => '1.302219',
24182             'Test2::API::Instance' => '1.302219',
24183             'Test2::API::InterceptResult'=> '1.302219',
24184             'Test2::API::InterceptResult::Event'=> '1.302219',
24185             'Test2::API::InterceptResult::Facet'=> '1.302219',
24186             'Test2::API::InterceptResult::Hub'=> '1.302219',
24187             'Test2::API::InterceptResult::Squasher'=> '1.302219',
24188             'Test2::API::Stack' => '1.302219',
24189             'Test2::AsyncSubtest' => '1.302219',
24190             'Test2::AsyncSubtest::Event::Attach'=> '1.302219',
24191             'Test2::AsyncSubtest::Event::Detach'=> '1.302219',
24192             'Test2::AsyncSubtest::Formatter'=> '1.302219',
24193             'Test2::AsyncSubtest::Hub'=> '1.302219',
24194             'Test2::Bundle' => '1.302219',
24195             'Test2::Bundle::Extended'=> '1.302219',
24196             'Test2::Bundle::More' => '1.302219',
24197             'Test2::Bundle::Simple' => '1.302219',
24198             'Test2::Compare' => '1.302219',
24199             'Test2::Compare::Array' => '1.302219',
24200             'Test2::Compare::Bag' => '1.302219',
24201             'Test2::Compare::Base' => '1.302219',
24202             'Test2::Compare::Bool' => '1.302219',
24203             'Test2::Compare::Custom'=> '1.302219',
24204             'Test2::Compare::DeepRef'=> '1.302219',
24205             'Test2::Compare::Delta' => '1.302219',
24206             'Test2::Compare::Event' => '1.302219',
24207             'Test2::Compare::EventMeta'=> '1.302219',
24208             'Test2::Compare::Float' => '1.302219',
24209             'Test2::Compare::Hash' => '1.302219',
24210             'Test2::Compare::Isa' => '1.302219',
24211             'Test2::Compare::Meta' => '1.302219',
24212             'Test2::Compare::Negatable'=> '1.302219',
24213             'Test2::Compare::Number'=> '1.302219',
24214             'Test2::Compare::Object'=> '1.302219',
24215             'Test2::Compare::OrderedSubset'=> '1.302219',
24216             'Test2::Compare::Pattern'=> '1.302219',
24217             'Test2::Compare::Ref' => '1.302219',
24218             'Test2::Compare::Regex' => '1.302219',
24219             'Test2::Compare::Scalar'=> '1.302219',
24220             'Test2::Compare::Set' => '1.302219',
24221             'Test2::Compare::String'=> '1.302219',
24222             'Test2::Compare::Undef' => '1.302219',
24223             'Test2::Compare::Wildcard'=> '1.302219',
24224             'Test2::Env' => '1.302219',
24225             'Test2::Event' => '1.302219',
24226             'Test2::Event::Bail' => '1.302219',
24227             'Test2::Event::Diag' => '1.302219',
24228             'Test2::Event::Encoding'=> '1.302219',
24229             'Test2::Event::Exception'=> '1.302219',
24230             'Test2::Event::Fail' => '1.302219',
24231             'Test2::Event::Generic' => '1.302219',
24232             'Test2::Event::Note' => '1.302219',
24233             'Test2::Event::Ok' => '1.302219',
24234             'Test2::Event::Pass' => '1.302219',
24235             'Test2::Event::Plan' => '1.302219',
24236             'Test2::Event::Skip' => '1.302219',
24237             'Test2::Event::Subtest' => '1.302219',
24238             'Test2::Event::TAP::Version'=> '1.302219',
24239             'Test2::Event::V2' => '1.302219',
24240             'Test2::Event::Waiting' => '1.302219',
24241             'Test2::EventFacet' => '1.302219',
24242             'Test2::EventFacet::About'=> '1.302219',
24243             'Test2::EventFacet::Amnesty'=> '1.302219',
24244             'Test2::EventFacet::Assert'=> '1.302219',
24245             'Test2::EventFacet::Control'=> '1.302219',
24246             'Test2::EventFacet::Error'=> '1.302219',
24247             'Test2::EventFacet::Hub'=> '1.302219',
24248             'Test2::EventFacet::Info'=> '1.302219',
24249             'Test2::EventFacet::Info::Table'=> '1.302219',
24250             'Test2::EventFacet::Meta'=> '1.302219',
24251             'Test2::EventFacet::Parent'=> '1.302219',
24252             'Test2::EventFacet::Plan'=> '1.302219',
24253             'Test2::EventFacet::Render'=> '1.302219',
24254             'Test2::EventFacet::Trace'=> '1.302219',
24255             'Test2::Formatter' => '1.302219',
24256             'Test2::Formatter::TAP' => '1.302219',
24257             'Test2::Handle' => '1.302219',
24258             'Test2::Hub' => '1.302219',
24259             'Test2::Hub::Interceptor'=> '1.302219',
24260             'Test2::Hub::Interceptor::Terminator'=> '1.302219',
24261             'Test2::Hub::Subtest' => '1.302219',
24262             'Test2::IPC' => '1.302219',
24263             'Test2::IPC::Driver' => '1.302219',
24264             'Test2::IPC::Driver::Files'=> '1.302219',
24265             'Test2::Manual' => '1.302219',
24266             'Test2::Manual::Anatomy'=> '1.302219',
24267             'Test2::Manual::Anatomy::API'=> '1.302219',
24268             'Test2::Manual::Anatomy::Context'=> '1.302219',
24269             'Test2::Manual::Anatomy::EndToEnd'=> '1.302219',
24270             'Test2::Manual::Anatomy::Event'=> '1.302219',
24271             'Test2::Manual::Anatomy::Hubs'=> '1.302219',
24272             'Test2::Manual::Anatomy::IPC'=> '1.302219',
24273             'Test2::Manual::Anatomy::Utilities'=> '1.302219',
24274             'Test2::Manual::Concurrency'=> '1.302219',
24275             'Test2::Manual::Contributing'=> '1.302219',
24276             'Test2::Manual::Testing'=> '1.302219',
24277             'Test2::Manual::Testing::Introduction'=> '1.302219',
24278             'Test2::Manual::Testing::Migrating'=> '1.302219',
24279             'Test2::Manual::Testing::Planning'=> '1.302219',
24280             'Test2::Manual::Testing::Todo'=> '1.302219',
24281             'Test2::Manual::Tooling'=> '1.302219',
24282             'Test2::Manual::Tooling::FirstTool'=> '1.302219',
24283             'Test2::Manual::Tooling::Formatter'=> '1.302219',
24284             'Test2::Manual::Tooling::Nesting'=> '1.302219',
24285             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302219',
24286             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302219',
24287             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302219',
24288             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302219',
24289             'Test2::Manual::Tooling::Subtest'=> '1.302219',
24290             'Test2::Manual::Tooling::TestBuilder'=> '1.302219',
24291             'Test2::Manual::Tooling::Testing'=> '1.302219',
24292             'Test2::Mock' => '1.302219',
24293             'Test2::Plugin' => '1.302219',
24294             'Test2::Plugin::BailOnFail'=> '1.302219',
24295             'Test2::Plugin::DieOnFail'=> '1.302219',
24296             'Test2::Plugin::ExitSummary'=> '1.302219',
24297             'Test2::Plugin::SRand' => '1.302219',
24298             'Test2::Plugin::Times' => '1.302219',
24299             'Test2::Plugin::UTF8' => '1.302219',
24300             'Test2::Require' => '1.302219',
24301             'Test2::Require::AuthorTesting'=> '1.302219',
24302             'Test2::Require::AutomatedTesting'=> '1.302219',
24303             'Test2::Require::EnvVar'=> '1.302219',
24304             'Test2::Require::ExtendedTesting'=> '1.302219',
24305             'Test2::Require::Fork' => '1.302219',
24306             'Test2::Require::Module'=> '1.302219',
24307             'Test2::Require::NonInteractiveTesting'=> '1.302219',
24308             'Test2::Require::Perl' => '1.302219',
24309             'Test2::Require::RealFork'=> '1.302219',
24310             'Test2::Require::ReleaseTesting'=> '1.302219',
24311             'Test2::Require::Threads'=> '1.302219',
24312             'Test2::Suite' => '1.302219',
24313             'Test2::Todo' => '1.302219',
24314             'Test2::Tools' => '1.302219',
24315             'Test2::Tools::AsyncSubtest'=> '1.302219',
24316             'Test2::Tools::Basic' => '1.302219',
24317             'Test2::Tools::Class' => '1.302219',
24318             'Test2::Tools::ClassicCompare'=> '1.302219',
24319             'Test2::Tools::Compare' => '1.302219',
24320             'Test2::Tools::Defer' => '1.302219',
24321             'Test2::Tools::Encoding'=> '1.302219',
24322             'Test2::Tools::Event' => '1.302219',
24323             'Test2::Tools::Exception'=> '1.302219',
24324             'Test2::Tools::Exports' => '1.302219',
24325             'Test2::Tools::GenTemp' => '1.302219',
24326             'Test2::Tools::Grab' => '1.302219',
24327             'Test2::Tools::Mock' => '1.302219',
24328             'Test2::Tools::Ref' => '1.302219',
24329             'Test2::Tools::Refcount'=> '1.302219',
24330             'Test2::Tools::Spec' => '1.302219',
24331             'Test2::Tools::Subtest' => '1.302219',
24332             'Test2::Tools::Target' => '1.302219',
24333             'Test2::Tools::Tester' => '1.302219',
24334             'Test2::Tools::Tiny' => '1.302219',
24335             'Test2::Tools::Warnings'=> '1.302219',
24336             'Test2::Util' => '1.302219',
24337             'Test2::Util::ExternalMeta'=> '1.302219',
24338             'Test2::Util::Facets2Legacy'=> '1.302219',
24339             'Test2::Util::Grabber' => '1.302219',
24340             'Test2::Util::Guard' => '1.302219',
24341             'Test2::Util::HashBase' => '1.302219',
24342             'Test2::Util::Importer' => '1.302219',
24343             'Test2::Util::Ref' => '1.302219',
24344             'Test2::Util::Sig' => '1.302219',
24345             'Test2::Util::Stash' => '1.302219',
24346             'Test2::Util::Sub' => '1.302219',
24347             'Test2::Util::Table' => '1.302219',
24348             'Test2::Util::Table::Cell'=> '1.302219',
24349             'Test2::Util::Table::LineBreak'=> '1.302219',
24350             'Test2::Util::Term' => '1.302219',
24351             'Test2::Util::Times' => '1.302219',
24352             'Test2::Util::Trace' => '1.302219',
24353             'Test2::V0' => '1.302219',
24354             'Test2::V1' => '1.302219',
24355             'Test2::V1::Base' => '1.302219',
24356             'Test2::V1::Handle' => '1.302219',
24357             'Test2::Workflow' => '1.302219',
24358             'Test2::Workflow::BlockBase'=> '1.302219',
24359             'Test2::Workflow::Build'=> '1.302219',
24360             'Test2::Workflow::Runner'=> '1.302219',
24361             'Test2::Workflow::Task' => '1.302219',
24362             'Test2::Workflow::Task::Action'=> '1.302219',
24363             'Test2::Workflow::Task::Group'=> '1.302219',
24364             'Test::Builder' => '1.302219',
24365             'Test::Builder::Formatter'=> '1.302219',
24366             'Test::Builder::Module' => '1.302219',
24367             'Test::Builder::Tester' => '1.302219',
24368             'Test::Builder::Tester::Color'=> '1.302219',
24369             'Test::Builder::TodoDiag'=> '1.302219',
24370             'Test::More' => '1.302219',
24371             'Test::Simple' => '1.302219',
24372             'Test::Tester' => '1.302219',
24373             'Test::Tester::Capture' => '1.302219',
24374             'Test::Tester::CaptureRunner'=> '1.302219',
24375             'Test::Tester::Delegate'=> '1.302219',
24376             'Test::use::ok' => '1.302219',
24377             'XS::APItest' => '1.48',
24378             '_charnames' => '1.51',
24379             'charnames' => '1.51',
24380             'ok' => '1.302219',
24381             'warnings' => '1.76',
24382             },
24383             removed => {
24384             }
24385             },
24386             5.043007 => {
24387             delta_from => 5.043006,
24388             changed => {
24389             'B' => '1.91',
24390             'B::Concise' => '1.010',
24391             'B::Op_private' => '5.043007',
24392             'Config' => '5.043007',
24393             'ExtUtils::ParseXS' => '3.62',
24394             'ExtUtils::ParseXS::Constants'=> '3.62',
24395             'ExtUtils::ParseXS::CountLines'=> '3.62',
24396             'ExtUtils::ParseXS::Eval'=> '3.62',
24397             'ExtUtils::ParseXS::Node'=> '3.62',
24398             'ExtUtils::ParseXS::Utilities'=> '3.62',
24399             'ExtUtils::Typemaps' => '3.62',
24400             'ExtUtils::Typemaps::Cmd'=> '3.62',
24401             'ExtUtils::Typemaps::InputMap'=> '3.62',
24402             'ExtUtils::Typemaps::OutputMap'=> '3.62',
24403             'ExtUtils::Typemaps::Type'=> '3.62',
24404             'HTTP::Tiny' => '0.092',
24405             'Module::CoreList' => '5.20260119',
24406             'Module::CoreList::Utils'=> '5.20260119',
24407             'POSIX' => '2.25',
24408             'Pod::Html' => '1.36',
24409             'Pod::Html::Util' => '1.36',
24410             },
24411             removed => {
24412             }
24413             },
24414             5.043008 => {
24415             delta_from => 5.043007,
24416             changed => {
24417             'B::Concise' => '1.011',
24418             'B::Deparse' => '1.89',
24419             'B::Op_private' => '5.043008',
24420             'CPAN::Meta' => '2.150012',
24421             'CPAN::Meta::Converter' => '2.150012',
24422             'CPAN::Meta::Feature' => '2.150012',
24423             'CPAN::Meta::History' => '2.150012',
24424             'CPAN::Meta::Merge' => '2.150012',
24425             'CPAN::Meta::Prereqs' => '2.150012',
24426             'CPAN::Meta::Spec' => '2.150012',
24427             'CPAN::Meta::Validator' => '2.150012',
24428             'Compress::Raw::Bzip2' => '2.217',
24429             'Compress::Raw::Zlib' => '2.218',
24430             'Compress::Zlib' => '2.217',
24431             'Config' => '5.043008',
24432             'Config::Perl::V' => '0.39',
24433             'DB_File' => '1.860',
24434             'English' => '1.12',
24435             'ExtUtils::ParseXS' => '3.63',
24436             'ExtUtils::ParseXS::Constants'=> '3.63',
24437             'ExtUtils::ParseXS::CountLines'=> '3.63',
24438             'ExtUtils::ParseXS::Eval'=> '3.63',
24439             'ExtUtils::ParseXS::Node'=> '3.63',
24440             'ExtUtils::ParseXS::Utilities'=> '3.63',
24441             'ExtUtils::Typemaps' => '3.63',
24442             'ExtUtils::Typemaps::Cmd'=> '3.63',
24443             'ExtUtils::Typemaps::InputMap'=> '3.63',
24444             'ExtUtils::Typemaps::OutputMap'=> '3.63',
24445             'ExtUtils::Typemaps::Type'=> '3.63',
24446             'IO::Compress' => '2.217',
24447             'IO::Compress::Adapter::Bzip2'=> '2.217',
24448             'IO::Compress::Adapter::Deflate'=> '2.217',
24449             'IO::Compress::Adapter::Identity'=> '2.217',
24450             'IO::Compress::Base' => '2.217',
24451             'IO::Compress::Base::Common'=> '2.217',
24452             'IO::Compress::Bzip2' => '2.217',
24453             'IO::Compress::Deflate' => '2.217',
24454             'IO::Compress::Gzip' => '2.217',
24455             'IO::Compress::Gzip::Constants'=> '2.217',
24456             'IO::Compress::RawDeflate'=> '2.217',
24457             'IO::Compress::Zip' => '2.217',
24458             'IO::Compress::Zip::Constants'=> '2.217',
24459             'IO::Compress::Zlib::Constants'=> '2.217',
24460             'IO::Compress::Zlib::Extra'=> '2.217',
24461             'IO::Uncompress::Adapter::Bunzip2'=> '2.217',
24462             'IO::Uncompress::Adapter::Identity'=> '2.217',
24463             'IO::Uncompress::Adapter::Inflate'=> '2.217',
24464             'IO::Uncompress::AnyInflate'=> '2.217',
24465             'IO::Uncompress::AnyUncompress'=> '2.217',
24466             'IO::Uncompress::Base' => '2.217',
24467             'IO::Uncompress::Bunzip2'=> '2.217',
24468             'IO::Uncompress::Gunzip'=> '2.217',
24469             'IO::Uncompress::Inflate'=> '2.217',
24470             'IO::Uncompress::RawInflate'=> '2.217',
24471             'IO::Uncompress::Unzip' => '2.217',
24472             'Module::CoreList' => '5.20260220',
24473             'Module::CoreList::Utils'=> '5.20260220',
24474             'Parse::CPAN::Meta' => '2.150012',
24475             'Time::HiRes' => '1.9780',
24476             'XS::APItest' => '1.49',
24477             'XS::Typemap' => '0.21',
24478             'feature' => '2.01',
24479             'threads' => '2.44',
24480             'threads::shared' => '1.72',
24481             'warnings' => '1.77',
24482             },
24483             removed => {
24484             }
24485             },
24486             5.042001 => {
24487             delta_from => 5.042000,
24488             changed => {
24489             'B::Op_private' => '5.042001',
24490             'Config' => '5.042001',
24491             'Module::CoreList' => '5.20260308',
24492             'Module::CoreList::Utils'=> '5.20260308',
24493             'POSIX' => '2.23_01',
24494             },
24495             removed => {
24496             }
24497             },
24498             );
24499              
24500             sub is_core
24501             {
24502 43 100 66 43 1 344059 shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
      100        
24503 43         104 my $module = shift;
24504 43 100       199 my $module_version = @_ > 0 ? shift : undef;
24505 43 100       140 my $perl_version = @_ > 0 ? shift : $];
24506              
24507 43         162 my $first_release = first_release($module);
24508              
24509 43 100 100     646 return 0 if !defined($first_release) || $first_release > $perl_version;
24510              
24511 32         119 my $final_release = removed_from($module);
24512              
24513 32 100 100     237 return 0 if defined($final_release) && $perl_version >= $final_release;
24514              
24515             # If a minimum version of the module was specified:
24516             # Step through all perl releases ($prn)
24517             # so we can find what version of the module
24518             # was included in the specified version of perl.
24519             # On the way if we pass the required module version, we can
24520             # short-circuit and return true
24521 28 100       120 if (defined($module_version)) {
24522 21         47 my $module_version_object = eval { version->parse($module_version) };
  21         5016  
24523 21 100       78 if (!defined($module_version_object)) {
24524 1         15 (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/;
24525 1         47 die $err;
24526             }
24527             # The Perl releases aren't a linear sequence, but a tree. We need to build the path
24528             # of releases from 5 to the specified release, and follow the module's version(s)
24529             # along that path.
24530 20         55 my @releases = ($perl_version);
24531 20         48 my $rel = $perl_version;
24532 20         54 while (defined($rel)) {
24533             # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
24534 598   66     3550 my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
24535 598         1250 $rel = $this_delta->{delta_from};
24536 598 100       1767 unshift(@releases, $rel) if defined($rel);
24537             }
24538             RELEASE:
24539 20         56 foreach my $prn (@releases) {
24540 531 100       1149 next RELEASE if $prn < $first_release;
24541 440 50       880 last RELEASE if $prn > $perl_version;
24542             next unless defined(my $next_module_version
24543 440 100       2132 = $delta{$prn}->{changed}->{$module});
24544 68 100       119 return 1 if eval { version->parse($next_module_version) >= $module_version_object };
  68         988  
24545             }
24546 4         64 return 0;
24547             }
24548              
24549 7 100       86 return 1 if !defined($final_release);
24550              
24551 2         19 return $perl_version <= $final_release;
24552             }
24553              
24554             %version = _undelta(\%delta);
24555              
24556             %deprecated = (
24557             5.011 => {
24558             changed => { map { $_ => 1 } qw/
24559             Class::ISA
24560             Pod::Plainer
24561             Shell
24562             Switch
24563             /},
24564             },
24565             5.011001 => { delta_from => 5.011 },
24566             5.011002 => { delta_from => 5.011001 },
24567             5.011003 => { delta_from => 5.011002 },
24568             5.011004 => { delta_from => 5.011003 },
24569             5.011005 => { delta_from => 5.011004 },
24570              
24571             5.012 => { delta_from => 5.011005 },
24572             5.012001 => { delta_from => 5.012 },
24573             5.012002 => { delta_from => 5.012001 },
24574             5.012003 => { delta_from => 5.012002 },
24575             5.012004 => { delta_from => 5.012003 },
24576             5.012005 => { delta_from => 5.012004 },
24577              
24578             5.013 => { delta_from => 5.012005 },
24579             5.013001 => {
24580             delta_from => 5.013,
24581             removed => { map { $_ => 1 } qw/
24582             Class::ISA
24583             Pod::Plainer
24584             Switch
24585             /},
24586             },
24587             5.013002 => { delta_from => 5.013001 },
24588             5.013003 => { delta_from => 5.013002 },
24589             5.013004 => { delta_from => 5.013003 },
24590             5.013005 => { delta_from => 5.013004 },
24591             5.013006 => { delta_from => 5.013005 },
24592             5.013007 => { delta_from => 5.013006 },
24593             5.013008 => { delta_from => 5.013007 },
24594             5.013009 => { delta_from => 5.013008 },
24595             5.01301 => { delta_from => 5.013009 },
24596             5.013011 => { delta_from => 5.01301 },
24597              
24598             5.014 => { delta_from => 5.013011 },
24599             5.014001 => { delta_from => 5.014 },
24600             5.014002 => { delta_from => 5.014001 },
24601             5.014003 => { delta_from => 5.014002 },
24602             5.014004 => { delta_from => 5.014003 },
24603              
24604             5.015 => {
24605             delta_from => 5.014004,
24606             removed => { Shell => 1 },
24607             },
24608             5.015001 => { delta_from => 5.015 },
24609             5.015002 => { delta_from => 5.015001 },
24610             5.015003 => { delta_from => 5.015002 },
24611             5.015004 => { delta_from => 5.015003 },
24612             5.015005 => { delta_from => 5.015004 },
24613             5.015006 => { delta_from => 5.015005 },
24614             5.015007 => { delta_from => 5.015006 },
24615             5.015008 => { delta_from => 5.015007 },
24616             5.015009 => { delta_from => 5.015008 },
24617              
24618             5.016 => { delta_from => 5.015009 },
24619             5.016001 => { delta_from => 5.016 },
24620             5.016002 => { delta_from => 5.016001 },
24621             5.016003 => { delta_from => 5.016002 },
24622              
24623             5.017 => { delta_from => 5.016003 },
24624             5.017001 => { delta_from => 5.017 },
24625             5.017002 => { delta_from => 5.017001 },
24626             5.017003 => { delta_from => 5.017002 },
24627             5.017004 => { delta_from => 5.017003 },
24628             5.017005 => { delta_from => 5.017004 },
24629             5.017006 => { delta_from => 5.017005 },
24630             5.017007 => { delta_from => 5.017006 },
24631             5.017008 => {
24632             delta_from => 5.017007,
24633             changed => { 'Pod::LaTeX' => 1 },
24634             },
24635             5.017009 => {
24636             delta_from => 5.017008,
24637             changed => { map { $_ => 1 } qw/
24638             Archive::Extract
24639             B::Lint
24640             B::Lint::Debug
24641             CPANPLUS
24642             CPANPLUS::Backend
24643             CPANPLUS::Backend::RV
24644             CPANPLUS::Config
24645             CPANPLUS::Config::HomeEnv
24646             CPANPLUS::Configure
24647             CPANPLUS::Configure::Setup
24648             CPANPLUS::Dist
24649             CPANPLUS::Dist::Autobundle
24650             CPANPLUS::Dist::Base
24651             CPANPLUS::Dist::Build
24652             CPANPLUS::Dist::Build::Constants
24653             CPANPLUS::Dist::MM
24654             CPANPLUS::Dist::Sample
24655             CPANPLUS::Error
24656             CPANPLUS::Internals
24657             CPANPLUS::Internals::Constants
24658             CPANPLUS::Internals::Constants::Report
24659             CPANPLUS::Internals::Extract
24660             CPANPLUS::Internals::Fetch
24661             CPANPLUS::Internals::Report
24662             CPANPLUS::Internals::Search
24663             CPANPLUS::Internals::Source
24664             CPANPLUS::Internals::Source::Memory
24665             CPANPLUS::Internals::Source::SQLite
24666             CPANPLUS::Internals::Source::SQLite::Tie
24667             CPANPLUS::Internals::Utils
24668             CPANPLUS::Internals::Utils::Autoflush
24669             CPANPLUS::Module
24670             CPANPLUS::Module::Author
24671             CPANPLUS::Module::Author::Fake
24672             CPANPLUS::Module::Checksums
24673             CPANPLUS::Module::Fake
24674             CPANPLUS::Module::Signature
24675             CPANPLUS::Selfupdate
24676             CPANPLUS::Shell
24677             CPANPLUS::Shell::Classic
24678             CPANPLUS::Shell::Default
24679             CPANPLUS::Shell::Default::Plugins::CustomSource
24680             CPANPLUS::Shell::Default::Plugins::Remote
24681             CPANPLUS::Shell::Default::Plugins::Source
24682             Devel::InnerPackage
24683             File::CheckTree
24684             Log::Message
24685             Log::Message::Config
24686             Log::Message::Handlers
24687             Log::Message::Item
24688             Log::Message::Simple
24689             Module::Pluggable
24690             Module::Pluggable::Object
24691             Object::Accessor
24692             Term::UI
24693             Term::UI::History
24694             Text::Soundex
24695             /},
24696             },
24697             5.01701 => { delta_from => 5.017009 },
24698             5.017011 => { delta_from => 5.01701 },
24699              
24700             5.018 => { delta_from => 5.017011 },
24701             5.018001 => {
24702             delta_from => 5.018,
24703             changed => {
24704             },
24705             removed => {
24706             }
24707             },
24708             5.018002 => {
24709             delta_from => 5.018001,
24710             changed => {
24711             },
24712             removed => {
24713             }
24714             },
24715             5.018003 => {
24716             delta_from => 5.018,
24717             changed => {
24718             },
24719             removed => {
24720             }
24721             },
24722             5.018004 => {
24723             delta_from => 5.018,
24724             changed => {
24725             },
24726             removed => {
24727             }
24728             },
24729              
24730             5.019 => {
24731             delta_from => 5.018,
24732             changed => { 'Module::Build' => 1 },
24733             removed => { map { $_ => 1 } qw/
24734             Archive::Extract
24735             B::Lint
24736             B::Lint::Debug
24737             CPANPLUS
24738             CPANPLUS::Backend
24739             CPANPLUS::Backend::RV
24740             CPANPLUS::Config
24741             CPANPLUS::Config::HomeEnv
24742             CPANPLUS::Configure
24743             CPANPLUS::Configure::Setup
24744             CPANPLUS::Dist
24745             CPANPLUS::Dist::Autobundle
24746             CPANPLUS::Dist::Base
24747             CPANPLUS::Dist::Build
24748             CPANPLUS::Dist::Build::Constants
24749             CPANPLUS::Dist::MM
24750             CPANPLUS::Dist::Sample
24751             CPANPLUS::Error
24752             CPANPLUS::Internals
24753             CPANPLUS::Internals::Constants
24754             CPANPLUS::Internals::Constants::Report
24755             CPANPLUS::Internals::Extract
24756             CPANPLUS::Internals::Fetch
24757             CPANPLUS::Internals::Report
24758             CPANPLUS::Internals::Search
24759             CPANPLUS::Internals::Source
24760             CPANPLUS::Internals::Source::Memory
24761             CPANPLUS::Internals::Source::SQLite
24762             CPANPLUS::Internals::Source::SQLite::Tie
24763             CPANPLUS::Internals::Utils
24764             CPANPLUS::Internals::Utils::Autoflush
24765             CPANPLUS::Module
24766             CPANPLUS::Module::Author
24767             CPANPLUS::Module::Author::Fake
24768             CPANPLUS::Module::Checksums
24769             CPANPLUS::Module::Fake
24770             CPANPLUS::Module::Signature
24771             CPANPLUS::Selfupdate
24772             CPANPLUS::Shell
24773             CPANPLUS::Shell::Classic
24774             CPANPLUS::Shell::Default
24775             CPANPLUS::Shell::Default::Plugins::CustomSource
24776             CPANPLUS::Shell::Default::Plugins::Remote
24777             CPANPLUS::Shell::Default::Plugins::Source
24778             Devel::InnerPackage
24779             File::CheckTree
24780             Log::Message
24781             Log::Message::Config
24782             Log::Message::Handlers
24783             Log::Message::Item
24784             Log::Message::Simple
24785             Module::Pluggable
24786             Module::Pluggable::Object
24787             Object::Accessor
24788             Pod::LaTeX
24789             Term::UI
24790             Term::UI::History
24791             Text::Soundex
24792             /}
24793             },
24794             5.019001 => {
24795             delta_from => 5.019,
24796             changed => {
24797             },
24798             removed => {
24799             }
24800             },
24801             5.019002 => {
24802             delta_from => 5.019001,
24803             changed => {
24804             },
24805             removed => {
24806             }
24807             },
24808             5.019003 => {
24809             delta_from => 5.019002,
24810             changed => {
24811             },
24812             removed => {
24813             }
24814             },
24815             5.019004 => {
24816             delta_from => 5.019003,
24817             changed => {
24818             'Module::Build::Base' => '1',
24819             'Module::Build::Compat' => '1',
24820             'Module::Build::Config' => '1',
24821             'Module::Build::ConfigData'=> '1',
24822             'Module::Build::Cookbook'=> '1',
24823             'Module::Build::Dumper' => '1',
24824             'Module::Build::ModuleInfo'=> '1',
24825             'Module::Build::Notes' => '1',
24826             'Module::Build::PPMMaker'=> '1',
24827             'Module::Build::Platform::Default'=> '1',
24828             'Module::Build::Platform::MacOS'=> '1',
24829             'Module::Build::Platform::Unix'=> '1',
24830             'Module::Build::Platform::VMS'=> '1',
24831             'Module::Build::Platform::VOS'=> '1',
24832             'Module::Build::Platform::Windows'=> '1',
24833             'Module::Build::Platform::aix'=> '1',
24834             'Module::Build::Platform::cygwin'=> '1',
24835             'Module::Build::Platform::darwin'=> '1',
24836             'Module::Build::Platform::os2'=> '1',
24837             'Module::Build::PodParser'=> '1',
24838             'Module::Build::Version'=> '1',
24839             'Module::Build::YAML' => '1',
24840             'inc::latest' => '1',
24841             },
24842             removed => {
24843             }
24844             },
24845             5.019005 => {
24846             delta_from => 5.019004,
24847             changed => {
24848             },
24849             removed => {
24850             }
24851             },
24852             5.019006 => {
24853             delta_from => 5.019005,
24854             changed => {
24855             'Package::Constants' => '1',
24856             },
24857             removed => {
24858             }
24859             },
24860             5.019007 => {
24861             delta_from => 5.019006,
24862             changed => {
24863             'CGI' => '1',
24864             'CGI::Apache' => '1',
24865             'CGI::Carp' => '1',
24866             'CGI::Cookie' => '1',
24867             'CGI::Fast' => '1',
24868             'CGI::Pretty' => '1',
24869             'CGI::Push' => '1',
24870             'CGI::Switch' => '1',
24871             'CGI::Util' => '1',
24872             },
24873             removed => {
24874             }
24875             },
24876             5.019008 => {
24877             delta_from => 5.019007,
24878             changed => {
24879             },
24880             removed => {
24881             }
24882             },
24883             5.019009 => {
24884             delta_from => 5.019008,
24885             changed => {
24886             },
24887             removed => {
24888             }
24889             },
24890             5.01901 => {
24891             delta_from => 5.019009,
24892             changed => {
24893             },
24894             removed => {
24895             }
24896             },
24897             5.019011 => {
24898             delta_from => 5.019010,
24899             changed => {
24900             },
24901             removed => {
24902             }
24903             },
24904             5.020000 => {
24905             delta_from => 5.019011,
24906             changed => {
24907             },
24908             removed => {
24909             }
24910             },
24911             5.021000 => {
24912             delta_from => 5.020000,
24913             changed => {
24914             },
24915             removed => {
24916             'CGI' => 1,
24917             'CGI::Apache' => 1,
24918             'CGI::Carp' => 1,
24919             'CGI::Cookie' => 1,
24920             'CGI::Fast' => 1,
24921             'CGI::Pretty' => 1,
24922             'CGI::Push' => 1,
24923             'CGI::Switch' => 1,
24924             'CGI::Util' => 1,
24925             'Module::Build' => 1,
24926             'Module::Build::Base' => 1,
24927             'Module::Build::Compat' => 1,
24928             'Module::Build::Config' => 1,
24929             'Module::Build::ConfigData'=> 1,
24930             'Module::Build::Cookbook'=> 1,
24931             'Module::Build::Dumper' => 1,
24932             'Module::Build::ModuleInfo'=> 1,
24933             'Module::Build::Notes' => 1,
24934             'Module::Build::PPMMaker'=> 1,
24935             'Module::Build::Platform::Default'=> 1,
24936             'Module::Build::Platform::MacOS'=> 1,
24937             'Module::Build::Platform::Unix'=> 1,
24938             'Module::Build::Platform::VMS'=> 1,
24939             'Module::Build::Platform::VOS'=> 1,
24940             'Module::Build::Platform::Windows'=> 1,
24941             'Module::Build::Platform::aix'=> 1,
24942             'Module::Build::Platform::cygwin'=> 1,
24943             'Module::Build::Platform::darwin'=> 1,
24944             'Module::Build::Platform::os2'=> 1,
24945             'Module::Build::PodParser'=> 1,
24946             'Module::Build::Version'=> 1,
24947             'Module::Build::YAML' => 1,
24948             'Package::Constants' => 1,
24949             'inc::latest' => 1,
24950             }
24951             },
24952             5.021001 => {
24953             delta_from => 5.021000,
24954             changed => {
24955             },
24956             removed => {
24957             }
24958             },
24959             5.021002 => {
24960             delta_from => 5.021001,
24961             changed => {
24962             },
24963             removed => {
24964             }
24965             },
24966             5.021003 => {
24967             delta_from => 5.021002,
24968             changed => {
24969             },
24970             removed => {
24971             }
24972             },
24973             5.020001 => {
24974             delta_from => 5.020000,
24975             changed => {
24976             },
24977             removed => {
24978             }
24979             },
24980             5.021004 => {
24981             delta_from => 5.021003,
24982             changed => {
24983             },
24984             removed => {
24985             }
24986             },
24987             5.021005 => {
24988             delta_from => 5.021004,
24989             changed => {
24990             },
24991             removed => {
24992             }
24993             },
24994             5.021006 => {
24995             delta_from => 5.021005,
24996             changed => {
24997             },
24998             removed => {
24999             }
25000             },
25001             5.021007 => {
25002             delta_from => 5.021006,
25003             changed => {
25004             },
25005             removed => {
25006             }
25007             },
25008             5.021008 => {
25009             delta_from => 5.021007,
25010             changed => {
25011             },
25012             removed => {
25013             }
25014             },
25015             5.020002 => {
25016             delta_from => 5.020001,
25017             changed => {
25018             },
25019             removed => {
25020             }
25021             },
25022             5.021009 => {
25023             delta_from => 5.021008,
25024             changed => {
25025             },
25026             removed => {
25027             }
25028             },
25029             5.021010 => {
25030             delta_from => 5.021009,
25031             changed => {
25032             },
25033             removed => {
25034             }
25035             },
25036             5.021011 => {
25037             delta_from => 5.02101,
25038             changed => {
25039             },
25040             removed => {
25041             }
25042             },
25043             5.022000 => {
25044             delta_from => 5.021011,
25045             changed => {
25046             },
25047             removed => {
25048             }
25049             },
25050             5.023000 => {
25051             delta_from => 5.022000,
25052             changed => {
25053             },
25054             removed => {
25055             }
25056             },
25057             5.023001 => {
25058             delta_from => 5.023000,
25059             changed => {
25060             },
25061             removed => {
25062             }
25063             },
25064             5.023002 => {
25065             delta_from => 5.023001,
25066             changed => {
25067             },
25068             removed => {
25069             }
25070             },
25071             5.020003 => {
25072             delta_from => 5.020002,
25073             changed => {
25074             },
25075             removed => {
25076             }
25077             },
25078             5.023003 => {
25079             delta_from => 5.023002,
25080             changed => {
25081             },
25082             removed => {
25083             }
25084             },
25085             5.023004 => {
25086             delta_from => 5.023003,
25087             changed => {
25088             },
25089             removed => {
25090             }
25091             },
25092             5.023005 => {
25093             delta_from => 5.023004,
25094             changed => {
25095             },
25096             removed => {
25097             }
25098             },
25099             5.022001 => {
25100             delta_from => 5.022,
25101             changed => {
25102             },
25103             removed => {
25104             }
25105             },
25106             5.023006 => {
25107             delta_from => 5.023005,
25108             changed => {
25109             },
25110             removed => {
25111             }
25112             },
25113             5.023007 => {
25114             delta_from => 5.023006,
25115             changed => {
25116             },
25117             removed => {
25118             }
25119             },
25120             5.023008 => {
25121             delta_from => 5.023007,
25122             changed => {
25123             },
25124             removed => {
25125             }
25126             },
25127             5.023009 => {
25128             delta_from => 5.023008,
25129             changed => {
25130             },
25131             removed => {
25132             }
25133             },
25134             5.022002 => {
25135             delta_from => 5.022001,
25136             changed => {
25137             },
25138             removed => {
25139             }
25140             },
25141             5.024000 => {
25142             delta_from => 5.023009,
25143             changed => {
25144             },
25145             removed => {
25146             }
25147             },
25148             5.025000 => {
25149             delta_from => 5.024,
25150             changed => {
25151             },
25152             removed => {
25153             }
25154             },
25155             5.025001 => {
25156             delta_from => 5.025,
25157             changed => {
25158             },
25159             removed => {
25160             }
25161             },
25162             5.025002 => {
25163             delta_from => 5.025001,
25164             changed => {
25165             },
25166             removed => {
25167             }
25168             },
25169             5.025003 => {
25170             delta_from => 5.025002,
25171             changed => {
25172             },
25173             removed => {
25174             }
25175             },
25176             5.025004 => {
25177             delta_from => 5.025003,
25178             changed => {
25179             },
25180             removed => {
25181             }
25182             },
25183             5.025005 => {
25184             delta_from => 5.025004,
25185             changed => {
25186             },
25187             removed => {
25188             }
25189             },
25190             5.025006 => {
25191             delta_from => 5.025005,
25192             changed => {
25193             },
25194             removed => {
25195             }
25196             },
25197             5.025007 => {
25198             delta_from => 5.025006,
25199             changed => {
25200             },
25201             removed => {
25202             }
25203             },
25204             5.025008 => {
25205             delta_from => 5.025007,
25206             changed => {
25207             },
25208             removed => {
25209             }
25210             },
25211             5.022003 => {
25212             delta_from => 5.022002,
25213             changed => {
25214             },
25215             removed => {
25216             }
25217             },
25218             5.024001 => {
25219             delta_from => 5.024000,
25220             changed => {
25221             },
25222             removed => {
25223             }
25224             },
25225             5.025009 => {
25226             delta_from => 5.025008,
25227             changed => {
25228             },
25229             removed => {
25230             }
25231             },
25232             5.025010 => {
25233             delta_from => 5.025009,
25234             changed => {
25235             },
25236             removed => {
25237             }
25238             },
25239             5.025011 => {
25240             delta_from => 5.025010,
25241             changed => {
25242             },
25243             removed => {
25244             }
25245             },
25246             5.025012 => {
25247             delta_from => 5.025011,
25248             changed => {
25249             },
25250             removed => {
25251             }
25252             },
25253             5.026000 => {
25254             delta_from => 5.025012,
25255             changed => {
25256             },
25257             removed => {
25258             }
25259             },
25260             5.027000 => {
25261             delta_from => 5.026,
25262             changed => {
25263             },
25264             removed => {
25265             }
25266             },
25267             5.027001 => {
25268             delta_from => 5.027,
25269             changed => {
25270             },
25271             removed => {
25272             }
25273             },
25274             5.022004 => {
25275             delta_from => 5.022003,
25276             changed => {
25277             },
25278             removed => {
25279             }
25280             },
25281             5.024002 => {
25282             delta_from => 5.024001,
25283             changed => {
25284             },
25285             removed => {
25286             }
25287             },
25288             5.027002 => {
25289             delta_from => 5.027001,
25290             changed => {
25291             },
25292             removed => {
25293             }
25294             },
25295             5.027003 => {
25296             delta_from => 5.027002,
25297             changed => {
25298             'B::Debug' => '1',
25299             },
25300             removed => {
25301             }
25302             },
25303             5.027004 => {
25304             delta_from => 5.027003,
25305             changed => {
25306             },
25307             removed => {
25308             }
25309             },
25310             5.024003 => {
25311             delta_from => 5.024002,
25312             changed => {
25313             },
25314             removed => {
25315             }
25316             },
25317             5.026001 => {
25318             delta_from => 5.026000,
25319             changed => {
25320             },
25321             removed => {
25322             }
25323             },
25324             5.027005 => {
25325             delta_from => 5.027004,
25326             changed => {
25327             },
25328             removed => {
25329             }
25330             },
25331             5.027006 => {
25332             delta_from => 5.027005,
25333             changed => {
25334             },
25335             removed => {
25336             }
25337             },
25338             5.027007 => {
25339             delta_from => 5.027006,
25340             changed => {
25341             },
25342             removed => {
25343             }
25344             },
25345             5.027008 => {
25346             delta_from => 5.027007,
25347             changed => {
25348             },
25349             removed => {
25350             }
25351             },
25352             5.027009 => {
25353             delta_from => 5.027008,
25354             changed => {
25355             },
25356             removed => {
25357             }
25358             },
25359             5.027010 => {
25360             delta_from => 5.027009,
25361             changed => {
25362             },
25363             removed => {
25364             }
25365             },
25366             5.024004 => {
25367             delta_from => 5.024003,
25368             changed => {
25369             },
25370             removed => {
25371             }
25372             },
25373             5.026002 => {
25374             delta_from => 5.026001,
25375             changed => {
25376             },
25377             removed => {
25378             }
25379             },
25380             5.027011 => {
25381             delta_from => 5.02701,
25382             changed => {
25383             },
25384             removed => {
25385             }
25386             },
25387             5.028000 => {
25388             delta_from => 5.027011,
25389             changed => {
25390             },
25391             removed => {
25392             }
25393             },
25394             5.029000 => {
25395             delta_from => 5.028,
25396             changed => {
25397             },
25398             removed => {
25399             }
25400             },
25401             5.029001 => {
25402             delta_from => 5.029,
25403             changed => {
25404             },
25405             removed => {
25406             }
25407             },
25408             5.029002 => {
25409             delta_from => 5.029001,
25410             changed => {
25411             },
25412             removed => {
25413             }
25414             },
25415             5.029003 => {
25416             delta_from => 5.029002,
25417             changed => {
25418             },
25419             removed => {
25420             }
25421             },
25422             5.029004 => {
25423             delta_from => 5.029003,
25424             changed => {
25425             },
25426             removed => {
25427             arybase => '1',
25428             }
25429             },
25430             5.029005 => {
25431             delta_from => 5.027002,
25432             changed => {
25433             },
25434             removed => {
25435             }
25436             },
25437             5.026003 => {
25438             delta_from => 5.026002,
25439             changed => {
25440             },
25441             removed => {
25442             }
25443             },
25444             5.028001 => {
25445             delta_from => 5.028000,
25446             changed => {
25447             },
25448             removed => {
25449             }
25450             },
25451             5.029006 => {
25452             delta_from => 5.029005,
25453             changed => {
25454             },
25455             removed => {
25456             }
25457             },
25458             5.029007 => {
25459             delta_from => 5.029006,
25460             changed => {
25461             },
25462             removed => {
25463             }
25464             },
25465             5.029008 => {
25466             delta_from => 5.029007,
25467             changed => {
25468             },
25469             removed => {
25470             }
25471             },
25472             5.029009 => {
25473             delta_from => 5.029008,
25474             changed => {
25475             },
25476             removed => {
25477             }
25478             },
25479             5.028002 => {
25480             delta_from => 5.028001,
25481             changed => {
25482             },
25483             removed => {
25484             }
25485             },
25486             5.029010 => {
25487             delta_from => 5.029009,
25488             changed => {
25489             },
25490             removed => {
25491             }
25492             },
25493             5.030000 => {
25494             delta_from => 5.02901,
25495             changed => {
25496             },
25497             removed => {
25498             }
25499             },
25500             5.031000 => {
25501             delta_from => 5.030000,
25502             changed => {
25503             },
25504             removed => {
25505             }
25506             },
25507             5.031001 => {
25508             delta_from => 5.031000,
25509             changed => {
25510             },
25511             removed => {
25512             }
25513             },
25514             5.031002 => {
25515             delta_from => 5.031001,
25516             changed => {
25517             },
25518             removed => {
25519             }
25520             },
25521             5.031003 => {
25522             delta_from => 5.031002,
25523             changed => {
25524             },
25525             removed => {
25526             }
25527             },
25528             5.031004 => {
25529             delta_from => 5.031003,
25530             changed => {
25531             },
25532             removed => {
25533             }
25534             },
25535             5.031005 => {
25536             delta_from => 5.031004,
25537             changed => {
25538             },
25539             removed => {
25540             }
25541             },
25542             5.030001 => {
25543             delta_from => 5.030000,
25544             changed => {
25545             },
25546             removed => {
25547             }
25548             },
25549             5.031006 => {
25550             delta_from => 5.031005,
25551             changed => {
25552             },
25553             removed => {
25554             }
25555             },
25556             5.031007 => {
25557             delta_from => 5.031006,
25558             changed => {
25559             },
25560             removed => {
25561             }
25562             },
25563             5.031008 => {
25564             delta_from => 5.031007,
25565             changed => {
25566             },
25567             removed => {
25568             }
25569             },
25570             5.031009 => {
25571             delta_from => 5.031008,
25572             changed => {
25573             },
25574             removed => {
25575             }
25576             },
25577             5.030002 => {
25578             delta_from => 5.030001,
25579             changed => {
25580             },
25581             removed => {
25582             }
25583             },
25584             5.031010 => {
25585             delta_from => 5.031009,
25586             changed => {
25587             },
25588             removed => {
25589             }
25590             },
25591             5.031011 => {
25592             delta_from => 5.03101,
25593             changed => {
25594             },
25595             removed => {
25596             }
25597             },
25598             5.028003 => {
25599             delta_from => 5.028002,
25600             changed => {
25601             },
25602             removed => {
25603             }
25604             },
25605             5.030003 => {
25606             delta_from => 5.030002,
25607             changed => {
25608             },
25609             removed => {
25610             }
25611             },
25612             5.032000 => {
25613             delta_from => 5.031011,
25614             changed => {
25615             },
25616             removed => {
25617             }
25618             },
25619             5.033000 => {
25620             delta_from => 5.032,
25621             changed => {
25622             },
25623             removed => {
25624             }
25625             },
25626             5.033001 => {
25627             delta_from => 5.033000,
25628             changed => {
25629             },
25630             removed => {
25631             }
25632             },
25633             5.033002 => {
25634             delta_from => 5.033001,
25635             changed => {
25636             },
25637             removed => {
25638             }
25639             },
25640             5.033003 => {
25641             delta_from => 5.033002,
25642             changed => {
25643             },
25644             removed => {
25645             }
25646             },
25647             5.033004 => {
25648             delta_from => 5.033003,
25649             changed => {
25650             },
25651             removed => {
25652             }
25653             },
25654             5.033005 => {
25655             delta_from => 5.033004,
25656             changed => {
25657             },
25658             removed => {
25659             }
25660             },
25661             5.033006 => {
25662             delta_from => 5.033005,
25663             changed => {
25664             },
25665             removed => {
25666             }
25667             },
25668             5.032001 => {
25669             delta_from => 5.032,
25670             changed => {
25671             },
25672             removed => {
25673             }
25674             },
25675             5.033007 => {
25676             delta_from => 5.033006,
25677             changed => {
25678             },
25679             removed => {
25680             }
25681             },
25682             5.033008 => {
25683             delta_from => 5.033007,
25684             changed => {
25685             },
25686             removed => {
25687             }
25688             },
25689             5.033009 => {
25690             delta_from => 5.033008,
25691             changed => {
25692             },
25693             removed => {
25694             }
25695             },
25696             5.034000 => {
25697             delta_from => 5.033009,
25698             changed => {
25699             },
25700             removed => {
25701             }
25702             },
25703             5.035000 => {
25704             delta_from => 5.034,
25705             changed => {
25706             },
25707             removed => {
25708             }
25709             },
25710             5.035001 => {
25711             delta_from => 5.035,
25712             changed => {
25713             },
25714             removed => {
25715             }
25716             },
25717             5.035002 => {
25718             delta_from => 5.035001,
25719             changed => {
25720             },
25721             removed => {
25722             }
25723             },
25724             5.035003 => {
25725             delta_from => 5.035002,
25726             changed => {
25727             },
25728             removed => {
25729             }
25730             },
25731             5.035004 => {
25732             delta_from => 5.035003,
25733             changed => {
25734             },
25735             removed => {
25736             }
25737             },
25738             5.035005 => {
25739             delta_from => 5.035004,
25740             changed => {
25741             },
25742             removed => {
25743             }
25744             },
25745             5.035006 => {
25746             delta_from => 5.035005,
25747             changed => {
25748             },
25749             removed => {
25750             }
25751             },
25752             5.035007 => {
25753             delta_from => 5.035006,
25754             changed => {
25755             },
25756             removed => {
25757             }
25758             },
25759             5.035008 => {
25760             delta_from => 5.035007,
25761             changed => {
25762             },
25763             removed => {
25764             }
25765             },
25766             5.035009 => {
25767             delta_from => 5.035008,
25768             changed => {
25769             },
25770             removed => {
25771             }
25772             },
25773             5.034001 => {
25774             delta_from => 5.034000,
25775             changed => {
25776             },
25777             removed => {
25778             }
25779             },
25780             5.035010 => {
25781             delta_from => 5.035009,
25782             changed => {
25783             },
25784             removed => {
25785             }
25786             },
25787             5.035011 => {
25788             delta_from => 5.035010,
25789             changed => {
25790             },
25791             removed => {
25792             }
25793             },
25794             5.036000 => {
25795             delta_from => 5.035011,
25796             changed => {
25797             },
25798             removed => {
25799             }
25800             },
25801             5.037000 => {
25802             delta_from => 5.036000,
25803             changed => {
25804             },
25805             removed => {
25806             }
25807             },
25808             5.037001 => {
25809             delta_from => 5.037000,
25810             changed => {
25811             },
25812             removed => {
25813             }
25814             },
25815             5.037002 => {
25816             delta_from => 5.037001,
25817             changed => {
25818             },
25819             removed => {
25820             }
25821             },
25822             5.037003 => {
25823             delta_from => 5.037002,
25824             changed => {
25825             },
25826             removed => {
25827             }
25828             },
25829             5.037004 => {
25830             delta_from => 5.037003,
25831             changed => {
25832             },
25833             removed => {
25834             }
25835             },
25836             5.037005 => {
25837             delta_from => 5.037004,
25838             changed => {
25839             },
25840             removed => {
25841             }
25842             },
25843             5.037006 => {
25844             delta_from => 5.037005,
25845             changed => {
25846             },
25847             removed => {
25848             }
25849             },
25850             5.037007 => {
25851             delta_from => 5.037006,
25852             changed => {
25853             },
25854             removed => {
25855             }
25856             },
25857             5.037008 => {
25858             delta_from => 5.037007,
25859             changed => {
25860             },
25861             removed => {
25862             }
25863             },
25864             5.037009 => {
25865             delta_from => 5.037008,
25866             changed => {
25867             },
25868             removed => {
25869             }
25870             },
25871             5.037010 => {
25872             delta_from => 5.037009,
25873             changed => {
25874             },
25875             removed => {
25876             }
25877             },
25878             5.037011 => {
25879             delta_from => 5.037010,
25880             changed => {
25881             },
25882             removed => {
25883             }
25884             },
25885             5.036001 => {
25886             delta_from => 5.036,
25887             changed => {
25888             },
25889             removed => {
25890             }
25891             },
25892             5.038000 => {
25893             delta_from => 5.037011,
25894             changed => {
25895             },
25896             removed => {
25897             }
25898             },
25899             5.039001 => {
25900             delta_from => 5.038,
25901             changed => {
25902             },
25903             removed => {
25904             }
25905             },
25906             5.039002 => {
25907             delta_from => 5.039001,
25908             changed => {
25909             },
25910             removed => {
25911             }
25912             },
25913             5.039003 => {
25914             delta_from => 5.039002,
25915             changed => {
25916             },
25917             removed => {
25918             }
25919             },
25920             5.039004 => {
25921             delta_from => 5.039003,
25922             changed => {
25923             },
25924             removed => {
25925             }
25926             },
25927             5.039005 => {
25928             delta_from => 5.039004,
25929             changed => {
25930             },
25931             removed => {
25932             }
25933             },
25934             5.034002 => {
25935             delta_from => 5.034001,
25936             changed => {
25937             },
25938             removed => {
25939             }
25940             },
25941             5.036002 => {
25942             delta_from => 5.036001,
25943             changed => {
25944             },
25945             removed => {
25946             }
25947             },
25948             5.038001 => {
25949             delta_from => 5.038,
25950             changed => {
25951             },
25952             removed => {
25953             }
25954             },
25955             5.034003 => {
25956             delta_from => 5.034002,
25957             changed => {
25958             },
25959             removed => {
25960             }
25961             },
25962             5.036003 => {
25963             delta_from => 5.036002,
25964             changed => {
25965             },
25966             removed => {
25967             }
25968             },
25969             5.038002 => {
25970             delta_from => 5.038001,
25971             changed => {
25972             },
25973             removed => {
25974             }
25975             },
25976             5.039006 => {
25977             delta_from => 5.039005,
25978             changed => {
25979             },
25980             removed => {
25981             }
25982             },
25983             5.039007 => {
25984             delta_from => 5.039006,
25985             changed => {
25986             },
25987             removed => {
25988             }
25989             },
25990             5.039008 => {
25991             delta_from => 5.039007,
25992             changed => {
25993             },
25994             removed => {
25995             }
25996             },
25997             5.039009 => {
25998             delta_from => 5.039008,
25999             changed => {
26000             },
26001             removed => {
26002             }
26003             },
26004             5.039010 => {
26005             delta_from => 5.039009,
26006             changed => {
26007             },
26008             removed => {
26009             }
26010             },
26011             5.040000 => {
26012             delta_from => 5.039010,
26013             changed => {
26014             },
26015             removed => {
26016             }
26017             },
26018             5.041001 => {
26019             delta_from => 5.040000,
26020             changed => {
26021             },
26022             removed => {
26023             }
26024             },
26025             5.041002 => {
26026             delta_from => 5.041001,
26027             changed => {
26028             },
26029             removed => {
26030             }
26031             },
26032             5.041003 => {
26033             delta_from => 5.041002,
26034             changed => {
26035             },
26036             removed => {
26037             }
26038             },
26039             5.041004 => {
26040             delta_from => 5.041003,
26041             changed => {
26042             },
26043             removed => {
26044             }
26045             },
26046             5.041005 => {
26047             delta_from => 5.041004,
26048             changed => {
26049             },
26050             removed => {
26051             }
26052             },
26053             5.041006 => {
26054             delta_from => 5.041005,
26055             changed => {
26056             },
26057             removed => {
26058             }
26059             },
26060             5.041007 => {
26061             delta_from => 5.041006,
26062             changed => {
26063             },
26064             removed => {
26065             }
26066             },
26067             5.038003 => {
26068             delta_from => 5.038002,
26069             changed => {
26070             },
26071             removed => {
26072             }
26073             },
26074             5.040001 => {
26075             delta_from => 5.040000,
26076             changed => {
26077             },
26078             removed => {
26079             }
26080             },
26081             5.041008 => {
26082             delta_from => 5.041007,
26083             changed => {
26084             },
26085             removed => {
26086             }
26087             },
26088             5.041009 => {
26089             delta_from => 5.041008,
26090             changed => {
26091             },
26092             removed => {
26093             }
26094             },
26095             5.041010 => {
26096             delta_from => 5.041009,
26097             changed => {
26098             },
26099             removed => {
26100             }
26101             },
26102             5.038004 => {
26103             delta_from => 5.038003,
26104             changed => {
26105             },
26106             removed => {
26107             }
26108             },
26109             5.040002 => {
26110             delta_from => 5.040001,
26111             changed => {
26112             },
26113             removed => {
26114             }
26115             },
26116             5.041011 => {
26117             delta_from => 5.041010,
26118             changed => {
26119             },
26120             removed => {
26121             }
26122             },
26123             5.041012 => {
26124             delta_from => 5.041011,
26125             changed => {
26126             },
26127             removed => {
26128             }
26129             },
26130             5.041013 => {
26131             delta_from => 5.041012,
26132             changed => {
26133             },
26134             removed => {
26135             }
26136             },
26137             5.042000 => {
26138             delta_from => 5.041013,
26139             changed => {
26140             },
26141             removed => {
26142             }
26143             },
26144             5.043000 => {
26145             delta_from => 5.042,
26146             changed => {
26147             },
26148             removed => {
26149             }
26150             },
26151             5.043001 => {
26152             delta_from => 5.043000,
26153             changed => {
26154             },
26155             removed => {
26156             }
26157             },
26158             5.038005 => {
26159             delta_from => 5.038004,
26160             changed => {
26161             },
26162             removed => {
26163             }
26164             },
26165             5.040003 => {
26166             delta_from => 5.040002,
26167             changed => {
26168             },
26169             removed => {
26170             }
26171             },
26172             5.043002 => {
26173             delta_from => 5.043001,
26174             changed => {
26175             },
26176             removed => {
26177             }
26178             },
26179             5.043003 => {
26180             delta_from => 5.043002,
26181             changed => {
26182             },
26183             removed => {
26184             }
26185             },
26186             5.043004 => {
26187             delta_from => 5.043003,
26188             changed => {
26189             },
26190             removed => {
26191             }
26192             },
26193             5.043005 => {
26194             delta_from => 5.043004,
26195             changed => {
26196             },
26197             removed => {
26198             }
26199             },
26200             5.043006 => {
26201             delta_from => 5.043005,
26202             changed => {
26203             },
26204             removed => {
26205             }
26206             },
26207             5.043007 => {
26208             delta_from => 5.043006,
26209             changed => {
26210             },
26211             removed => {
26212             }
26213             },
26214             5.043008 => {
26215             delta_from => 5.043007,
26216             changed => {
26217             },
26218             removed => {
26219             }
26220             },
26221             5.042001 => {
26222             delta_from => 5.042,
26223             changed => {
26224             },
26225             removed => {
26226             }
26227             },
26228             );
26229              
26230             %deprecated = _undelta(\%deprecated);
26231              
26232             %upstream = (
26233             'App::Cpan' => 'cpan',
26234             'App::Prove' => 'cpan',
26235             'App::Prove::State' => 'cpan',
26236             'App::Prove::State::Result'=> 'cpan',
26237             'App::Prove::State::Result::Test'=> 'cpan',
26238             'Archive::Tar' => 'cpan',
26239             'Archive::Tar::Constant'=> 'cpan',
26240             'Archive::Tar::File' => 'cpan',
26241             'AutoLoader' => 'cpan',
26242             'AutoSplit' => 'cpan',
26243             'CPAN' => 'cpan',
26244             'CPAN::Author' => 'cpan',
26245             'CPAN::Bundle' => 'cpan',
26246             'CPAN::CacheMgr' => 'cpan',
26247             'CPAN::Complete' => 'cpan',
26248             'CPAN::Debug' => 'cpan',
26249             'CPAN::DeferredCode' => 'cpan',
26250             'CPAN::Distribution' => 'cpan',
26251             'CPAN::Distroprefs' => 'cpan',
26252             'CPAN::Distrostatus' => 'cpan',
26253             'CPAN::Exception::RecursiveDependency'=> 'cpan',
26254             'CPAN::Exception::blocked_urllist'=> 'cpan',
26255             'CPAN::Exception::yaml_not_installed'=> 'cpan',
26256             'CPAN::Exception::yaml_process_error'=> 'cpan',
26257             'CPAN::FTP' => 'cpan',
26258             'CPAN::FTP::netrc' => 'cpan',
26259             'CPAN::FirstTime' => 'cpan',
26260             'CPAN::HTTP::Client' => 'cpan',
26261             'CPAN::HTTP::Credentials'=> 'cpan',
26262             'CPAN::HandleConfig' => 'cpan',
26263             'CPAN::Index' => 'cpan',
26264             'CPAN::InfoObj' => 'cpan',
26265             'CPAN::Kwalify' => 'cpan',
26266             'CPAN::LWP::UserAgent' => 'cpan',
26267             'CPAN::Meta' => 'cpan',
26268             'CPAN::Meta::Converter' => 'cpan',
26269             'CPAN::Meta::Feature' => 'cpan',
26270             'CPAN::Meta::History' => 'cpan',
26271             'CPAN::Meta::Merge' => 'cpan',
26272             'CPAN::Meta::Prereqs' => 'cpan',
26273             'CPAN::Meta::Requirements'=> 'cpan',
26274             'CPAN::Meta::Requirements::Range'=> 'cpan',
26275             'CPAN::Meta::Spec' => 'cpan',
26276             'CPAN::Meta::Validator' => 'cpan',
26277             'CPAN::Meta::YAML' => 'cpan',
26278             'CPAN::Mirrors' => 'cpan',
26279             'CPAN::Module' => 'cpan',
26280             'CPAN::Nox' => 'cpan',
26281             'CPAN::Plugin' => 'cpan',
26282             'CPAN::Plugin::Specfile'=> 'cpan',
26283             'CPAN::Prompt' => 'cpan',
26284             'CPAN::Queue' => 'cpan',
26285             'CPAN::Shell' => 'cpan',
26286             'CPAN::Tarzip' => 'cpan',
26287             'CPAN::URL' => 'cpan',
26288             'CPAN::Version' => 'cpan',
26289             'Compress::Raw::Bzip2' => 'cpan',
26290             'Compress::Raw::Zlib' => 'cpan',
26291             'Compress::Zlib' => 'cpan',
26292             'Config::Perl::V' => 'cpan',
26293             'DB_File' => 'cpan',
26294             'Digest' => 'cpan',
26295             'Digest::MD5' => 'cpan',
26296             'Digest::SHA' => 'cpan',
26297             'Digest::base' => 'cpan',
26298             'Digest::file' => 'cpan',
26299             'Encode' => 'cpan',
26300             'Encode::Alias' => 'cpan',
26301             'Encode::Byte' => 'cpan',
26302             'Encode::CJKConstants' => 'cpan',
26303             'Encode::CN' => 'cpan',
26304             'Encode::CN::HZ' => 'cpan',
26305             'Encode::Config' => 'cpan',
26306             'Encode::EBCDIC' => 'cpan',
26307             'Encode::Encoder' => 'cpan',
26308             'Encode::Encoding' => 'cpan',
26309             'Encode::GSM0338' => 'cpan',
26310             'Encode::Guess' => 'cpan',
26311             'Encode::JP' => 'cpan',
26312             'Encode::JP::H2Z' => 'cpan',
26313             'Encode::JP::JIS7' => 'cpan',
26314             'Encode::KR' => 'cpan',
26315             'Encode::KR::2022_KR' => 'cpan',
26316             'Encode::MIME::Header' => 'cpan',
26317             'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
26318             'Encode::MIME::Name' => 'cpan',
26319             'Encode::Symbol' => 'cpan',
26320             'Encode::TW' => 'cpan',
26321             'Encode::Unicode' => 'cpan',
26322             'Encode::Unicode::UTF7' => 'cpan',
26323             'ExtUtils::Command' => 'cpan',
26324             'ExtUtils::Command::MM' => 'cpan',
26325             'ExtUtils::Constant' => 'cpan',
26326             'ExtUtils::Constant::Base'=> 'cpan',
26327             'ExtUtils::Constant::ProxySubs'=> 'cpan',
26328             'ExtUtils::Constant::Utils'=> 'cpan',
26329             'ExtUtils::Constant::XS'=> 'cpan',
26330             'ExtUtils::Install' => 'cpan',
26331             'ExtUtils::Installed' => 'cpan',
26332             'ExtUtils::Liblist' => 'cpan',
26333             'ExtUtils::Liblist::Kid'=> 'cpan',
26334             'ExtUtils::MM' => 'cpan',
26335             'ExtUtils::MM_AIX' => 'cpan',
26336             'ExtUtils::MM_Any' => 'cpan',
26337             'ExtUtils::MM_BeOS' => 'cpan',
26338             'ExtUtils::MM_Cygwin' => 'cpan',
26339             'ExtUtils::MM_DOS' => 'cpan',
26340             'ExtUtils::MM_Darwin' => 'cpan',
26341             'ExtUtils::MM_MacOS' => 'cpan',
26342             'ExtUtils::MM_NW5' => 'cpan',
26343             'ExtUtils::MM_OS2' => 'cpan',
26344             'ExtUtils::MM_OS390' => 'cpan',
26345             'ExtUtils::MM_QNX' => 'cpan',
26346             'ExtUtils::MM_UWIN' => 'cpan',
26347             'ExtUtils::MM_Unix' => 'cpan',
26348             'ExtUtils::MM_VMS' => 'cpan',
26349             'ExtUtils::MM_VOS' => 'cpan',
26350             'ExtUtils::MM_Win32' => 'cpan',
26351             'ExtUtils::MM_Win95' => 'cpan',
26352             'ExtUtils::MY' => 'cpan',
26353             'ExtUtils::MakeMaker' => 'cpan',
26354             'ExtUtils::MakeMaker::Config'=> 'cpan',
26355             'ExtUtils::MakeMaker::Locale'=> 'cpan',
26356             'ExtUtils::MakeMaker::version'=> 'cpan',
26357             'ExtUtils::MakeMaker::version::regex'=> 'cpan',
26358             'ExtUtils::Manifest' => 'cpan',
26359             'ExtUtils::Mkbootstrap' => 'cpan',
26360             'ExtUtils::Mksymlists' => 'cpan',
26361             'ExtUtils::PL2Bat' => 'cpan',
26362             'ExtUtils::Packlist' => 'cpan',
26363             'ExtUtils::testlib' => 'cpan',
26364             'Fatal' => 'cpan',
26365             'File::Fetch' => 'cpan',
26366             'File::GlobMapper' => 'cpan',
26367             'File::Path' => 'cpan',
26368             'File::Temp' => 'cpan',
26369             'Filter::Util::Call' => 'cpan',
26370             'Getopt::Long' => 'cpan',
26371             'Getopt::Long::Parser' => 'cpan',
26372             'HTTP::Tiny' => 'cpan',
26373             'IO::Compress' => 'cpan',
26374             'IO::Compress::Adapter::Bzip2'=> 'cpan',
26375             'IO::Compress::Adapter::Deflate'=> 'cpan',
26376             'IO::Compress::Adapter::Identity'=> 'cpan',
26377             'IO::Compress::Base' => 'cpan',
26378             'IO::Compress::Base::Common'=> 'cpan',
26379             'IO::Compress::Bzip2' => 'cpan',
26380             'IO::Compress::Deflate' => 'cpan',
26381             'IO::Compress::Gzip' => 'cpan',
26382             'IO::Compress::Gzip::Constants'=> 'cpan',
26383             'IO::Compress::RawDeflate'=> 'cpan',
26384             'IO::Compress::Zip' => 'cpan',
26385             'IO::Compress::Zip::Constants'=> 'cpan',
26386             'IO::Compress::Zlib::Constants'=> 'cpan',
26387             'IO::Compress::Zlib::Extra'=> 'cpan',
26388             'IO::Socket::IP' => 'cpan',
26389             'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
26390             'IO::Uncompress::Adapter::Identity'=> 'cpan',
26391             'IO::Uncompress::Adapter::Inflate'=> 'cpan',
26392             'IO::Uncompress::AnyInflate'=> 'cpan',
26393             'IO::Uncompress::AnyUncompress'=> 'cpan',
26394             'IO::Uncompress::Base' => 'cpan',
26395             'IO::Uncompress::Bunzip2'=> 'cpan',
26396             'IO::Uncompress::Gunzip'=> 'cpan',
26397             'IO::Uncompress::Inflate'=> 'cpan',
26398             'IO::Uncompress::RawInflate'=> 'cpan',
26399             'IO::Uncompress::Unzip' => 'cpan',
26400             'IO::Zlib' => 'cpan',
26401             'IPC::Cmd' => 'cpan',
26402             'IPC::Msg' => 'cpan',
26403             'IPC::Semaphore' => 'cpan',
26404             'IPC::SharedMem' => 'cpan',
26405             'IPC::SysV' => 'cpan',
26406             'JSON::PP' => 'cpan',
26407             'JSON::PP::Boolean' => 'cpan',
26408             'List::Util' => 'cpan',
26409             'List::Util::XS' => 'cpan',
26410             'Locale::Maketext::Simple'=> 'cpan',
26411             'MIME::Base64' => 'cpan',
26412             'MIME::QuotedPrint' => 'cpan',
26413             'Math::BigFloat' => 'cpan',
26414             'Math::BigFloat::Trace' => 'cpan',
26415             'Math::BigInt' => 'cpan',
26416             'Math::BigInt::Calc' => 'cpan',
26417             'Math::BigInt::FastCalc'=> 'cpan',
26418             'Math::BigInt::Lib' => 'cpan',
26419             'Math::BigInt::Trace' => 'cpan',
26420             'Math::BigRat' => 'cpan',
26421             'Math::BigRat::Trace' => 'cpan',
26422             'Memoize' => 'cpan',
26423             'Memoize::AnyDBM_File' => 'cpan',
26424             'Memoize::Expire' => 'cpan',
26425             'Memoize::NDBM_File' => 'cpan',
26426             'Memoize::SDBM_File' => 'cpan',
26427             'Memoize::Storable' => 'cpan',
26428             'Module::Load' => 'cpan',
26429             'Module::Load::Conditional'=> 'cpan',
26430             'Module::Loaded' => 'cpan',
26431             'Module::Metadata' => 'cpan',
26432             'NEXT' => 'cpan',
26433             'Net::Cmd' => 'cpan',
26434             'Net::Config' => 'cpan',
26435             'Net::Domain' => 'cpan',
26436             'Net::FTP' => 'cpan',
26437             'Net::FTP::A' => 'cpan',
26438             'Net::FTP::E' => 'cpan',
26439             'Net::FTP::I' => 'cpan',
26440             'Net::FTP::L' => 'cpan',
26441             'Net::FTP::dataconn' => 'cpan',
26442             'Net::NNTP' => 'cpan',
26443             'Net::Netrc' => 'cpan',
26444             'Net::POP3' => 'cpan',
26445             'Net::SMTP' => 'cpan',
26446             'Net::Time' => 'cpan',
26447             'Params::Check' => 'cpan',
26448             'Parse::CPAN::Meta' => 'cpan',
26449             'Perl::OSType' => 'cpan',
26450             'PerlIO::via::QuotedPrint'=> 'cpan',
26451             'Pod::Checker' => 'cpan',
26452             'Pod::Escapes' => 'cpan',
26453             'Pod::Man' => 'cpan',
26454             'Pod::ParseLink' => 'cpan',
26455             'Pod::Perldoc' => 'cpan',
26456             'Pod::Perldoc::BaseTo' => 'cpan',
26457             'Pod::Perldoc::GetOptsOO'=> 'cpan',
26458             'Pod::Perldoc::ToANSI' => 'cpan',
26459             'Pod::Perldoc::ToChecker'=> 'cpan',
26460             'Pod::Perldoc::ToMan' => 'cpan',
26461             'Pod::Perldoc::ToNroff' => 'cpan',
26462             'Pod::Perldoc::ToPod' => 'cpan',
26463             'Pod::Perldoc::ToRtf' => 'cpan',
26464             'Pod::Perldoc::ToTerm' => 'cpan',
26465             'Pod::Perldoc::ToText' => 'cpan',
26466             'Pod::Perldoc::ToTk' => 'cpan',
26467             'Pod::Perldoc::ToXml' => 'cpan',
26468             'Pod::Simple' => 'cpan',
26469             'Pod::Simple::BlackBox' => 'cpan',
26470             'Pod::Simple::Checker' => 'cpan',
26471             'Pod::Simple::Debug' => 'cpan',
26472             'Pod::Simple::DumpAsText'=> 'cpan',
26473             'Pod::Simple::DumpAsXML'=> 'cpan',
26474             'Pod::Simple::HTML' => 'cpan',
26475             'Pod::Simple::HTMLBatch'=> 'cpan',
26476             'Pod::Simple::HTMLLegacy'=> 'cpan',
26477             'Pod::Simple::JustPod' => 'cpan',
26478             'Pod::Simple::LinkSection'=> 'cpan',
26479             'Pod::Simple::Methody' => 'cpan',
26480             'Pod::Simple::Progress' => 'cpan',
26481             'Pod::Simple::PullParser'=> 'cpan',
26482             'Pod::Simple::PullParserEndToken'=> 'cpan',
26483             'Pod::Simple::PullParserStartToken'=> 'cpan',
26484             'Pod::Simple::PullParserTextToken'=> 'cpan',
26485             'Pod::Simple::PullParserToken'=> 'cpan',
26486             'Pod::Simple::RTF' => 'cpan',
26487             'Pod::Simple::Search' => 'cpan',
26488             'Pod::Simple::SimpleTree'=> 'cpan',
26489             'Pod::Simple::Text' => 'cpan',
26490             'Pod::Simple::TextContent'=> 'cpan',
26491             'Pod::Simple::TiedOutFH'=> 'cpan',
26492             'Pod::Simple::Transcode'=> 'cpan',
26493             'Pod::Simple::TranscodeDumb'=> 'cpan',
26494             'Pod::Simple::TranscodeSmart'=> 'cpan',
26495             'Pod::Simple::XHTML' => 'cpan',
26496             'Pod::Simple::XMLOutStream'=> 'cpan',
26497             'Pod::Text' => 'cpan',
26498             'Pod::Text::Color' => 'cpan',
26499             'Pod::Text::Overstrike' => 'cpan',
26500             'Pod::Text::Termcap' => 'cpan',
26501             'Pod::Usage' => 'cpan',
26502             'Scalar::List::Utils' => 'cpan',
26503             'Scalar::Util' => 'cpan',
26504             'Socket' => 'cpan',
26505             'Sub::Util' => 'cpan',
26506             'Sys::Syslog' => 'cpan',
26507             'Sys::Syslog::Win32' => 'cpan',
26508             'TAP::Base' => 'cpan',
26509             'TAP::Formatter::Base' => 'cpan',
26510             'TAP::Formatter::Color' => 'cpan',
26511             'TAP::Formatter::Console'=> 'cpan',
26512             'TAP::Formatter::Console::ParallelSession'=> 'cpan',
26513             'TAP::Formatter::Console::Session'=> 'cpan',
26514             'TAP::Formatter::File' => 'cpan',
26515             'TAP::Formatter::File::Session'=> 'cpan',
26516             'TAP::Formatter::Session'=> 'cpan',
26517             'TAP::Harness' => 'cpan',
26518             'TAP::Harness::Env' => 'cpan',
26519             'TAP::Object' => 'cpan',
26520             'TAP::Parser' => 'cpan',
26521             'TAP::Parser::Aggregator'=> 'cpan',
26522             'TAP::Parser::Grammar' => 'cpan',
26523             'TAP::Parser::Iterator' => 'cpan',
26524             'TAP::Parser::Iterator::Array'=> 'cpan',
26525             'TAP::Parser::Iterator::Process'=> 'cpan',
26526             'TAP::Parser::Iterator::Stream'=> 'cpan',
26527             'TAP::Parser::IteratorFactory'=> 'cpan',
26528             'TAP::Parser::Multiplexer'=> 'cpan',
26529             'TAP::Parser::Result' => 'cpan',
26530             'TAP::Parser::Result::Bailout'=> 'cpan',
26531             'TAP::Parser::Result::Comment'=> 'cpan',
26532             'TAP::Parser::Result::Plan'=> 'cpan',
26533             'TAP::Parser::Result::Pragma'=> 'cpan',
26534             'TAP::Parser::Result::Test'=> 'cpan',
26535             'TAP::Parser::Result::Unknown'=> 'cpan',
26536             'TAP::Parser::Result::Version'=> 'cpan',
26537             'TAP::Parser::Result::YAML'=> 'cpan',
26538             'TAP::Parser::ResultFactory'=> 'cpan',
26539             'TAP::Parser::Scheduler'=> 'cpan',
26540             'TAP::Parser::Scheduler::Job'=> 'cpan',
26541             'TAP::Parser::Scheduler::Spinner'=> 'cpan',
26542             'TAP::Parser::Source' => 'cpan',
26543             'TAP::Parser::SourceHandler'=> 'cpan',
26544             'TAP::Parser::SourceHandler::Executable'=> 'cpan',
26545             'TAP::Parser::SourceHandler::File'=> 'cpan',
26546             'TAP::Parser::SourceHandler::Handle'=> 'cpan',
26547             'TAP::Parser::SourceHandler::Perl'=> 'cpan',
26548             'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
26549             'TAP::Parser::YAMLish::Reader'=> 'cpan',
26550             'TAP::Parser::YAMLish::Writer'=> 'cpan',
26551             'Term::ANSIColor' => 'cpan',
26552             'Term::Cap' => 'cpan',
26553             'Term::Table' => 'cpan',
26554             'Term::Table::Cell' => 'cpan',
26555             'Term::Table::CellStack'=> 'cpan',
26556             'Term::Table::HashBase' => 'cpan',
26557             'Term::Table::LineBreak'=> 'cpan',
26558             'Term::Table::Spacer' => 'cpan',
26559             'Term::Table::Util' => 'cpan',
26560             'Test2' => 'cpan',
26561             'Test2::API' => 'cpan',
26562             'Test2::API::Breakage' => 'cpan',
26563             'Test2::API::Context' => 'cpan',
26564             'Test2::API::Instance' => 'cpan',
26565             'Test2::API::InterceptResult'=> 'cpan',
26566             'Test2::API::InterceptResult::Event'=> 'cpan',
26567             'Test2::API::InterceptResult::Facet'=> 'cpan',
26568             'Test2::API::InterceptResult::Hub'=> 'cpan',
26569             'Test2::API::InterceptResult::Squasher'=> 'cpan',
26570             'Test2::API::Stack' => 'cpan',
26571             'Test2::AsyncSubtest' => 'cpan',
26572             'Test2::AsyncSubtest::Event::Attach'=> 'cpan',
26573             'Test2::AsyncSubtest::Event::Detach'=> 'cpan',
26574             'Test2::AsyncSubtest::Formatter'=> 'cpan',
26575             'Test2::AsyncSubtest::Hub'=> 'cpan',
26576             'Test2::Bundle' => 'cpan',
26577             'Test2::Bundle::Extended'=> 'cpan',
26578             'Test2::Bundle::More' => 'cpan',
26579             'Test2::Bundle::Simple' => 'cpan',
26580             'Test2::Compare' => 'cpan',
26581             'Test2::Compare::Array' => 'cpan',
26582             'Test2::Compare::Bag' => 'cpan',
26583             'Test2::Compare::Base' => 'cpan',
26584             'Test2::Compare::Bool' => 'cpan',
26585             'Test2::Compare::Custom'=> 'cpan',
26586             'Test2::Compare::DeepRef'=> 'cpan',
26587             'Test2::Compare::Delta' => 'cpan',
26588             'Test2::Compare::Event' => 'cpan',
26589             'Test2::Compare::EventMeta'=> 'cpan',
26590             'Test2::Compare::Float' => 'cpan',
26591             'Test2::Compare::Hash' => 'cpan',
26592             'Test2::Compare::Isa' => 'cpan',
26593             'Test2::Compare::Meta' => 'cpan',
26594             'Test2::Compare::Negatable'=> 'cpan',
26595             'Test2::Compare::Number'=> 'cpan',
26596             'Test2::Compare::Object'=> 'cpan',
26597             'Test2::Compare::OrderedSubset'=> 'cpan',
26598             'Test2::Compare::Pattern'=> 'cpan',
26599             'Test2::Compare::Ref' => 'cpan',
26600             'Test2::Compare::Regex' => 'cpan',
26601             'Test2::Compare::Scalar'=> 'cpan',
26602             'Test2::Compare::Set' => 'cpan',
26603             'Test2::Compare::String'=> 'cpan',
26604             'Test2::Compare::Undef' => 'cpan',
26605             'Test2::Compare::Wildcard'=> 'cpan',
26606             'Test2::Env' => 'cpan',
26607             'Test2::Event' => 'cpan',
26608             'Test2::Event::Bail' => 'cpan',
26609             'Test2::Event::Diag' => 'cpan',
26610             'Test2::Event::Encoding'=> 'cpan',
26611             'Test2::Event::Exception'=> 'cpan',
26612             'Test2::Event::Fail' => 'cpan',
26613             'Test2::Event::Generic' => 'cpan',
26614             'Test2::Event::Note' => 'cpan',
26615             'Test2::Event::Ok' => 'cpan',
26616             'Test2::Event::Pass' => 'cpan',
26617             'Test2::Event::Plan' => 'cpan',
26618             'Test2::Event::Skip' => 'cpan',
26619             'Test2::Event::Subtest' => 'cpan',
26620             'Test2::Event::TAP::Version'=> 'cpan',
26621             'Test2::Event::V2' => 'cpan',
26622             'Test2::Event::Waiting' => 'cpan',
26623             'Test2::EventFacet' => 'cpan',
26624             'Test2::EventFacet::About'=> 'cpan',
26625             'Test2::EventFacet::Amnesty'=> 'cpan',
26626             'Test2::EventFacet::Assert'=> 'cpan',
26627             'Test2::EventFacet::Control'=> 'cpan',
26628             'Test2::EventFacet::Error'=> 'cpan',
26629             'Test2::EventFacet::Hub'=> 'cpan',
26630             'Test2::EventFacet::Info'=> 'cpan',
26631             'Test2::EventFacet::Info::Table'=> 'cpan',
26632             'Test2::EventFacet::Meta'=> 'cpan',
26633             'Test2::EventFacet::Parent'=> 'cpan',
26634             'Test2::EventFacet::Plan'=> 'cpan',
26635             'Test2::EventFacet::Render'=> 'cpan',
26636             'Test2::EventFacet::Trace'=> 'cpan',
26637             'Test2::Formatter' => 'cpan',
26638             'Test2::Formatter::TAP' => 'cpan',
26639             'Test2::Hub' => 'cpan',
26640             'Test2::Hub::Interceptor'=> 'cpan',
26641             'Test2::Hub::Interceptor::Terminator'=> 'cpan',
26642             'Test2::Hub::Subtest' => 'cpan',
26643             'Test2::IPC' => 'cpan',
26644             'Test2::IPC::Driver' => 'cpan',
26645             'Test2::IPC::Driver::Files'=> 'cpan',
26646             'Test2::Manual' => 'cpan',
26647             'Test2::Manual::Anatomy'=> 'cpan',
26648             'Test2::Manual::Anatomy::API'=> 'cpan',
26649             'Test2::Manual::Anatomy::Context'=> 'cpan',
26650             'Test2::Manual::Anatomy::EndToEnd'=> 'cpan',
26651             'Test2::Manual::Anatomy::Event'=> 'cpan',
26652             'Test2::Manual::Anatomy::Hubs'=> 'cpan',
26653             'Test2::Manual::Anatomy::IPC'=> 'cpan',
26654             'Test2::Manual::Anatomy::Utilities'=> 'cpan',
26655             'Test2::Manual::Concurrency'=> 'cpan',
26656             'Test2::Manual::Contributing'=> 'cpan',
26657             'Test2::Manual::Testing'=> 'cpan',
26658             'Test2::Manual::Testing::Introduction'=> 'cpan',
26659             'Test2::Manual::Testing::Migrating'=> 'cpan',
26660             'Test2::Manual::Testing::Planning'=> 'cpan',
26661             'Test2::Manual::Testing::Todo'=> 'cpan',
26662             'Test2::Manual::Tooling'=> 'cpan',
26663             'Test2::Manual::Tooling::FirstTool'=> 'cpan',
26664             'Test2::Manual::Tooling::Formatter'=> 'cpan',
26665             'Test2::Manual::Tooling::Nesting'=> 'cpan',
26666             'Test2::Manual::Tooling::Plugin::TestExit'=> 'cpan',
26667             'Test2::Manual::Tooling::Plugin::TestingDone'=> 'cpan',
26668             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> 'cpan',
26669             'Test2::Manual::Tooling::Plugin::ToolStarts'=> 'cpan',
26670             'Test2::Manual::Tooling::Subtest'=> 'cpan',
26671             'Test2::Manual::Tooling::TestBuilder'=> 'cpan',
26672             'Test2::Manual::Tooling::Testing'=> 'cpan',
26673             'Test2::Mock' => 'cpan',
26674             'Test2::Plugin' => 'cpan',
26675             'Test2::Plugin::BailOnFail'=> 'cpan',
26676             'Test2::Plugin::DieOnFail'=> 'cpan',
26677             'Test2::Plugin::ExitSummary'=> 'cpan',
26678             'Test2::Plugin::SRand' => 'cpan',
26679             'Test2::Plugin::Times' => 'cpan',
26680             'Test2::Plugin::UTF8' => 'cpan',
26681             'Test2::Require' => 'cpan',
26682             'Test2::Require::AuthorTesting'=> 'cpan',
26683             'Test2::Require::AutomatedTesting'=> 'cpan',
26684             'Test2::Require::EnvVar'=> 'cpan',
26685             'Test2::Require::ExtendedTesting'=> 'cpan',
26686             'Test2::Require::Fork' => 'cpan',
26687             'Test2::Require::Module'=> 'cpan',
26688             'Test2::Require::NonInteractiveTesting'=> 'cpan',
26689             'Test2::Require::Perl' => 'cpan',
26690             'Test2::Require::RealFork'=> 'cpan',
26691             'Test2::Require::ReleaseTesting'=> 'cpan',
26692             'Test2::Require::Threads'=> 'cpan',
26693             'Test2::Suite' => 'cpan',
26694             'Test2::Todo' => 'cpan',
26695             'Test2::Tools' => 'cpan',
26696             'Test2::Tools::AsyncSubtest'=> 'cpan',
26697             'Test2::Tools::Basic' => 'cpan',
26698             'Test2::Tools::Class' => 'cpan',
26699             'Test2::Tools::ClassicCompare'=> 'cpan',
26700             'Test2::Tools::Compare' => 'cpan',
26701             'Test2::Tools::Defer' => 'cpan',
26702             'Test2::Tools::Encoding'=> 'cpan',
26703             'Test2::Tools::Event' => 'cpan',
26704             'Test2::Tools::Exception'=> 'cpan',
26705             'Test2::Tools::Exports' => 'cpan',
26706             'Test2::Tools::GenTemp' => 'cpan',
26707             'Test2::Tools::Grab' => 'cpan',
26708             'Test2::Tools::Mock' => 'cpan',
26709             'Test2::Tools::Ref' => 'cpan',
26710             'Test2::Tools::Refcount'=> 'cpan',
26711             'Test2::Tools::Spec' => 'cpan',
26712             'Test2::Tools::Subtest' => 'cpan',
26713             'Test2::Tools::Target' => 'cpan',
26714             'Test2::Tools::Tester' => 'cpan',
26715             'Test2::Tools::Tiny' => 'cpan',
26716             'Test2::Tools::Warnings'=> 'cpan',
26717             'Test2::Util' => 'cpan',
26718             'Test2::Util::ExternalMeta'=> 'cpan',
26719             'Test2::Util::Facets2Legacy'=> 'cpan',
26720             'Test2::Util::Grabber' => 'cpan',
26721             'Test2::Util::Guard' => 'cpan',
26722             'Test2::Util::HashBase' => 'cpan',
26723             'Test2::Util::Importer' => 'cpan',
26724             'Test2::Util::Ref' => 'cpan',
26725             'Test2::Util::Sig' => 'cpan',
26726             'Test2::Util::Stash' => 'cpan',
26727             'Test2::Util::Sub' => 'cpan',
26728             'Test2::Util::Table' => 'cpan',
26729             'Test2::Util::Table::Cell'=> 'cpan',
26730             'Test2::Util::Table::LineBreak'=> 'cpan',
26731             'Test2::Util::Term' => 'cpan',
26732             'Test2::Util::Times' => 'cpan',
26733             'Test2::Util::Trace' => 'cpan',
26734             'Test2::V0' => 'cpan',
26735             'Test2::Workflow' => 'cpan',
26736             'Test2::Workflow::BlockBase'=> 'cpan',
26737             'Test2::Workflow::Build'=> 'cpan',
26738             'Test2::Workflow::Runner'=> 'cpan',
26739             'Test2::Workflow::Task' => 'cpan',
26740             'Test2::Workflow::Task::Action'=> 'cpan',
26741             'Test2::Workflow::Task::Group'=> 'cpan',
26742             'Test::Builder' => 'cpan',
26743             'Test::Builder::Formatter'=> 'cpan',
26744             'Test::Builder::Module' => 'cpan',
26745             'Test::Builder::Tester' => 'cpan',
26746             'Test::Builder::Tester::Color'=> 'cpan',
26747             'Test::Builder::TodoDiag'=> 'cpan',
26748             'Test::Harness' => 'cpan',
26749             'Test::More' => 'cpan',
26750             'Test::Simple' => 'cpan',
26751             'Test::Tester' => 'cpan',
26752             'Test::Tester::Capture' => 'cpan',
26753             'Test::Tester::CaptureRunner'=> 'cpan',
26754             'Test::Tester::Delegate'=> 'cpan',
26755             'Test::use::ok' => 'cpan',
26756             'Text::Balanced' => 'cpan',
26757             'Text::ParseWords' => 'cpan',
26758             'Text::Tabs' => 'cpan',
26759             'Text::Wrap' => 'cpan',
26760             'Tie::RefHash' => 'cpan',
26761             'Time::Local' => 'cpan',
26762             'Time::Piece' => 'cpan',
26763             'Time::Seconds' => 'cpan',
26764             'Unicode::Collate' => 'cpan',
26765             'Unicode::Collate::CJK::Big5'=> 'cpan',
26766             'Unicode::Collate::CJK::GB2312'=> 'cpan',
26767             'Unicode::Collate::CJK::JISX0208'=> 'cpan',
26768             'Unicode::Collate::CJK::Korean'=> 'cpan',
26769             'Unicode::Collate::CJK::Pinyin'=> 'cpan',
26770             'Unicode::Collate::CJK::Stroke'=> 'cpan',
26771             'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
26772             'Unicode::Collate::Locale'=> 'cpan',
26773             'Win32' => 'cpan',
26774             'Win32API::File' => 'cpan',
26775             'autodie' => 'cpan',
26776             'autodie::Scope::Guard' => 'cpan',
26777             'autodie::Scope::GuardStack'=> 'cpan',
26778             'autodie::Util' => 'cpan',
26779             'autodie::exception' => 'cpan',
26780             'autodie::exception::system'=> 'cpan',
26781             'autodie::hints' => 'cpan',
26782             'autodie::skip' => 'cpan',
26783             'bigfloat' => 'cpan',
26784             'bigint' => 'cpan',
26785             'bignum' => 'cpan',
26786             'bigrat' => 'cpan',
26787             'encoding' => 'cpan',
26788             'experimental' => 'cpan',
26789             'ok' => 'cpan',
26790             'parent' => 'cpan',
26791             'perlfaq' => 'cpan',
26792             'stable' => 'cpan',
26793             'version' => 'cpan',
26794             'version::regex' => 'cpan',
26795             );
26796              
26797             %bug_tracker = (
26798             'App::Cpan' => undef,
26799             'App::Prove' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
26800             'App::Prove::State' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
26801             'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
26802             'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
26803             'Archive::Tar' => undef,
26804             'Archive::Tar::Constant'=> undef,
26805             'Archive::Tar::File' => undef,
26806             'CPAN' => undef,
26807             'CPAN::Author' => undef,
26808             'CPAN::Bundle' => undef,
26809             'CPAN::CacheMgr' => undef,
26810             'CPAN::Complete' => undef,
26811             'CPAN::Debug' => undef,
26812             'CPAN::DeferredCode' => undef,
26813             'CPAN::Distribution' => undef,
26814             'CPAN::Distroprefs' => undef,
26815             'CPAN::Distrostatus' => undef,
26816             'CPAN::Exception::RecursiveDependency'=> undef,
26817             'CPAN::Exception::blocked_urllist'=> undef,
26818             'CPAN::Exception::yaml_not_installed'=> undef,
26819             'CPAN::Exception::yaml_process_error'=> undef,
26820             'CPAN::FTP' => undef,
26821             'CPAN::FTP::netrc' => undef,
26822             'CPAN::FirstTime' => undef,
26823             'CPAN::HTTP::Client' => undef,
26824             'CPAN::HTTP::Credentials'=> undef,
26825             'CPAN::HandleConfig' => undef,
26826             'CPAN::Index' => undef,
26827             'CPAN::InfoObj' => undef,
26828             'CPAN::Kwalify' => undef,
26829             'CPAN::LWP::UserAgent' => undef,
26830             'CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26831             'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26832             'CPAN::Meta::Feature' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26833             'CPAN::Meta::History' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26834             'CPAN::Meta::Merge' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26835             'CPAN::Meta::Prereqs' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26836             'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
26837             'CPAN::Meta::Requirements::Range'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
26838             'CPAN::Meta::Spec' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26839             'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26840             'CPAN::Meta::YAML' => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
26841             'CPAN::Mirrors' => undef,
26842             'CPAN::Module' => undef,
26843             'CPAN::Nox' => undef,
26844             'CPAN::Plugin' => undef,
26845             'CPAN::Plugin::Specfile'=> undef,
26846             'CPAN::Prompt' => undef,
26847             'CPAN::Queue' => undef,
26848             'CPAN::Shell' => undef,
26849             'CPAN::Tarzip' => undef,
26850             'CPAN::URL' => undef,
26851             'CPAN::Version' => undef,
26852             'Compress::Raw::Bzip2' => 'https://github.com/pmqs/Compress-Raw-Bzip2/issues',
26853             'Compress::Raw::Zlib' => 'https://github.com/pmqs/Compress-Raw-Zlib/issues',
26854             'Compress::Zlib' => 'https://github.com/pmqs/IO-Compress/issues',
26855             'Config::Perl::V' => 'https://github.com/Tux/Config-Perl-V/issues',
26856             'DB_File' => 'https://github.com/pmqs/DB_File/issues',
26857             'Digest' => 'https://github.com/Dual-Life/digest/issues',
26858             'Digest::MD5' => 'https://github.com/Dual-Life/digest-md5/issues',
26859             'Digest::SHA' => undef,
26860             'Digest::base' => 'https://github.com/Dual-Life/digest/issues',
26861             'Digest::file' => 'https://github.com/Dual-Life/digest/issues',
26862             'Encode' => undef,
26863             'Encode::Alias' => undef,
26864             'Encode::Byte' => undef,
26865             'Encode::CJKConstants' => undef,
26866             'Encode::CN' => undef,
26867             'Encode::CN::HZ' => undef,
26868             'Encode::Config' => undef,
26869             'Encode::EBCDIC' => undef,
26870             'Encode::Encoder' => undef,
26871             'Encode::Encoding' => undef,
26872             'Encode::GSM0338' => undef,
26873             'Encode::Guess' => undef,
26874             'Encode::JP' => undef,
26875             'Encode::JP::H2Z' => undef,
26876             'Encode::JP::JIS7' => undef,
26877             'Encode::KR' => undef,
26878             'Encode::KR::2022_KR' => undef,
26879             'Encode::MIME::Header' => undef,
26880             'Encode::MIME::Header::ISO_2022_JP'=> undef,
26881             'Encode::MIME::Name' => undef,
26882             'Encode::Symbol' => undef,
26883             'Encode::TW' => undef,
26884             'Encode::Unicode' => undef,
26885             'Encode::Unicode::UTF7' => undef,
26886             'ExtUtils::Command' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26887             'ExtUtils::Command::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26888             'ExtUtils::Constant' => undef,
26889             'ExtUtils::Constant::Base'=> undef,
26890             'ExtUtils::Constant::ProxySubs'=> undef,
26891             'ExtUtils::Constant::Utils'=> undef,
26892             'ExtUtils::Constant::XS'=> undef,
26893             'ExtUtils::Install' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
26894             'ExtUtils::Installed' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
26895             'ExtUtils::Liblist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26896             'ExtUtils::Liblist::Kid'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26897             'ExtUtils::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26898             'ExtUtils::MM_AIX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26899             'ExtUtils::MM_Any' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26900             'ExtUtils::MM_BeOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26901             'ExtUtils::MM_Cygwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26902             'ExtUtils::MM_DOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26903             'ExtUtils::MM_Darwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26904             'ExtUtils::MM_MacOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26905             'ExtUtils::MM_NW5' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26906             'ExtUtils::MM_OS2' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26907             'ExtUtils::MM_OS390' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26908             'ExtUtils::MM_QNX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26909             'ExtUtils::MM_UWIN' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26910             'ExtUtils::MM_Unix' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26911             'ExtUtils::MM_VMS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26912             'ExtUtils::MM_VOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26913             'ExtUtils::MM_Win32' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26914             'ExtUtils::MM_Win95' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26915             'ExtUtils::MY' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26916             'ExtUtils::MakeMaker' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26917             'ExtUtils::MakeMaker::Config'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26918             'ExtUtils::MakeMaker::Locale'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26919             'ExtUtils::MakeMaker::version'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26920             'ExtUtils::MakeMaker::version::regex'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26921             'ExtUtils::Manifest' => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
26922             'ExtUtils::Mkbootstrap' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26923             'ExtUtils::Mksymlists' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26924             'ExtUtils::PL2Bat' => 'https://github.com/Perl-Toolchain-Gang/extutils-pl2bat/issues',
26925             'ExtUtils::Packlist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
26926             'ExtUtils::testlib' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
26927             'Fatal' => 'https://github.com/pjf/autodie/issues',
26928             'File::Fetch' => undef,
26929             'File::GlobMapper' => 'https://github.com/pmqs/IO-Compress/issues',
26930             'File::Path' => undef,
26931             'File::Temp' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
26932             'Filter::Util::Call' => undef,
26933             'Getopt::Long' => 'https://github.com/sciurius/perl-Getopt-Long/issues',
26934             'Getopt::Long::Parser' => 'https://github.com/sciurius/perl-Getopt-Long/issues',
26935             'HTTP::Tiny' => 'https://github.com/Perl-Toolchain-Gang/HTTP-Tiny/issues',
26936             'IO::Compress' => 'https://github.com/pmqs/IO-Compress/issues',
26937             'IO::Compress::Adapter::Bzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
26938             'IO::Compress::Adapter::Deflate'=> 'https://github.com/pmqs/IO-Compress/issues',
26939             'IO::Compress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
26940             'IO::Compress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
26941             'IO::Compress::Base::Common'=> 'https://github.com/pmqs/IO-Compress/issues',
26942             'IO::Compress::Bzip2' => 'https://github.com/pmqs/IO-Compress/issues',
26943             'IO::Compress::Deflate' => 'https://github.com/pmqs/IO-Compress/issues',
26944             'IO::Compress::Gzip' => 'https://github.com/pmqs/IO-Compress/issues',
26945             'IO::Compress::Gzip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
26946             'IO::Compress::RawDeflate'=> 'https://github.com/pmqs/IO-Compress/issues',
26947             'IO::Compress::Zip' => 'https://github.com/pmqs/IO-Compress/issues',
26948             'IO::Compress::Zip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
26949             'IO::Compress::Zlib::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
26950             'IO::Compress::Zlib::Extra'=> 'https://github.com/pmqs/IO-Compress/issues',
26951             'IO::Socket::IP' => undef,
26952             'IO::Uncompress::Adapter::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
26953             'IO::Uncompress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
26954             'IO::Uncompress::Adapter::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
26955             'IO::Uncompress::AnyInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
26956             'IO::Uncompress::AnyUncompress'=> 'https://github.com/pmqs/IO-Compress/issues',
26957             'IO::Uncompress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
26958             'IO::Uncompress::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
26959             'IO::Uncompress::Gunzip'=> 'https://github.com/pmqs/IO-Compress/issues',
26960             'IO::Uncompress::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
26961             'IO::Uncompress::RawInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
26962             'IO::Uncompress::Unzip' => 'https://github.com/pmqs/IO-Compress/issues',
26963             'IO::Zlib' => 'https://github.com/tomhughes/IO-Zlib/issues',
26964             'IPC::Cmd' => undef,
26965             'IPC::Msg' => undef,
26966             'IPC::Semaphore' => undef,
26967             'IPC::SharedMem' => undef,
26968             'IPC::SysV' => undef,
26969             'JSON::PP' => 'https://github.com/makamaka/JSON-PP/issues',
26970             'JSON::PP::Boolean' => 'https://github.com/makamaka/JSON-PP/issues',
26971             'List::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
26972             'List::Util::XS' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
26973             'Locale::Maketext::Simple'=> undef,
26974             'MIME::Base64' => 'https://github.com/Dual-Life/mime-base64/issues',
26975             'MIME::QuotedPrint' => 'https://github.com/Dual-Life/mime-base64/issues',
26976             'Math::BigFloat' => undef,
26977             'Math::BigFloat::Trace' => undef,
26978             'Math::BigInt' => undef,
26979             'Math::BigInt::Calc' => undef,
26980             'Math::BigInt::FastCalc'=> undef,
26981             'Math::BigInt::Lib' => undef,
26982             'Math::BigInt::Trace' => undef,
26983             'Math::BigRat' => undef,
26984             'Math::BigRat::Trace' => undef,
26985             'Memoize' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
26986             'Memoize::AnyDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
26987             'Memoize::Expire' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
26988             'Memoize::NDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
26989             'Memoize::SDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
26990             'Memoize::Storable' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
26991             'Module::Load' => undef,
26992             'Module::Load::Conditional'=> undef,
26993             'Module::Loaded' => undef,
26994             'Module::Metadata' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
26995             'NEXT' => undef,
26996             'Net::Cmd' => undef,
26997             'Net::Config' => undef,
26998             'Net::Domain' => undef,
26999             'Net::FTP' => undef,
27000             'Net::FTP::A' => undef,
27001             'Net::FTP::E' => undef,
27002             'Net::FTP::I' => undef,
27003             'Net::FTP::L' => undef,
27004             'Net::FTP::dataconn' => undef,
27005             'Net::NNTP' => undef,
27006             'Net::Netrc' => undef,
27007             'Net::POP3' => undef,
27008             'Net::SMTP' => undef,
27009             'Net::Time' => undef,
27010             'Params::Check' => undef,
27011             'Parse::CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27012             'Perl::OSType' => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
27013             'PerlIO::via::QuotedPrint'=> undef,
27014             'Pod::Checker' => undef,
27015             'Pod::Escapes' => undef,
27016             'Pod::Man' => 'https://github.com/rra/podlators/issues',
27017             'Pod::ParseLink' => 'https://github.com/rra/podlators/issues',
27018             'Pod::Perldoc' => undef,
27019             'Pod::Perldoc::BaseTo' => undef,
27020             'Pod::Perldoc::GetOptsOO'=> undef,
27021             'Pod::Perldoc::ToANSI' => undef,
27022             'Pod::Perldoc::ToChecker'=> undef,
27023             'Pod::Perldoc::ToMan' => undef,
27024             'Pod::Perldoc::ToNroff' => undef,
27025             'Pod::Perldoc::ToPod' => undef,
27026             'Pod::Perldoc::ToRtf' => undef,
27027             'Pod::Perldoc::ToTerm' => undef,
27028             'Pod::Perldoc::ToText' => undef,
27029             'Pod::Perldoc::ToTk' => undef,
27030             'Pod::Perldoc::ToXml' => undef,
27031             'Pod::Simple' => 'https://github.com/perl-pod/pod-simple/issues',
27032             'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
27033             'Pod::Simple::Checker' => 'https://github.com/perl-pod/pod-simple/issues',
27034             'Pod::Simple::Debug' => 'https://github.com/perl-pod/pod-simple/issues',
27035             'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
27036             'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
27037             'Pod::Simple::HTML' => 'https://github.com/perl-pod/pod-simple/issues',
27038             'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
27039             'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
27040             'Pod::Simple::JustPod' => 'https://github.com/perl-pod/pod-simple/issues',
27041             'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
27042             'Pod::Simple::Methody' => 'https://github.com/perl-pod/pod-simple/issues',
27043             'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
27044             'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
27045             'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27046             'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27047             'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27048             'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27049             'Pod::Simple::RTF' => 'https://github.com/perl-pod/pod-simple/issues',
27050             'Pod::Simple::Search' => 'https://github.com/perl-pod/pod-simple/issues',
27051             'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
27052             'Pod::Simple::Text' => 'https://github.com/perl-pod/pod-simple/issues',
27053             'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
27054             'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
27055             'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
27056             'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
27057             'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
27058             'Pod::Simple::XHTML' => 'https://github.com/perl-pod/pod-simple/issues',
27059             'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
27060             'Pod::Text' => 'https://github.com/rra/podlators/issues',
27061             'Pod::Text::Color' => 'https://github.com/rra/podlators/issues',
27062             'Pod::Text::Overstrike' => 'https://github.com/rra/podlators/issues',
27063             'Pod::Text::Termcap' => 'https://github.com/rra/podlators/issues',
27064             'Pod::Usage' => 'https://github.com/Dual-Life/Pod-Usage/issues',
27065             'Scalar::List::Utils' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27066             'Scalar::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27067             'Socket' => undef,
27068             'Sub::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27069             'Sys::Syslog' => undef,
27070             'Sys::Syslog::Win32' => undef,
27071             'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27072             'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27073             'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27074             'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27075             'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27076             'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27077             'TAP::Formatter::File' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27078             'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27079             'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27080             'TAP::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27081             'TAP::Harness::Env' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27082             'TAP::Object' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27083             'TAP::Parser' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27084             'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27085             'TAP::Parser::Grammar' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27086             'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27087             'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27088             'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27089             'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27090             'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27091             'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27092             'TAP::Parser::Result' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27093             'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27094             'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27095             'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27096             'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27097             'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27098             'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27099             'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27100             'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27101             'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27102             'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27103             'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27104             'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27105             'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27106             'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27107             'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27108             'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27109             'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27110             'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27111             'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27112             'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27113             'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27114             'Term::ANSIColor' => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor',
27115             'Term::Cap' => undef,
27116             'Term::Table' => 'http://github.com/exodist/Term-Table/issues',
27117             'Term::Table::Cell' => 'http://github.com/exodist/Term-Table/issues',
27118             'Term::Table::CellStack'=> 'http://github.com/exodist/Term-Table/issues',
27119             'Term::Table::HashBase' => 'http://github.com/exodist/Term-Table/issues',
27120             'Term::Table::LineBreak'=> 'http://github.com/exodist/Term-Table/issues',
27121             'Term::Table::Spacer' => 'http://github.com/exodist/Term-Table/issues',
27122             'Term::Table::Util' => 'http://github.com/exodist/Term-Table/issues',
27123             'Test2' => 'https://github.com/Test-More/test-more/issues',
27124             'Test2::API' => 'https://github.com/Test-More/test-more/issues',
27125             'Test2::API::Breakage' => 'https://github.com/Test-More/test-more/issues',
27126             'Test2::API::Context' => 'https://github.com/Test-More/test-more/issues',
27127             'Test2::API::Instance' => 'https://github.com/Test-More/test-more/issues',
27128             'Test2::API::InterceptResult'=> 'https://github.com/Test-More/test-more/issues',
27129             'Test2::API::InterceptResult::Event'=> 'https://github.com/Test-More/test-more/issues',
27130             'Test2::API::InterceptResult::Facet'=> 'https://github.com/Test-More/test-more/issues',
27131             'Test2::API::InterceptResult::Hub'=> 'https://github.com/Test-More/test-more/issues',
27132             'Test2::API::InterceptResult::Squasher'=> 'https://github.com/Test-More/test-more/issues',
27133             'Test2::API::Stack' => 'https://github.com/Test-More/test-more/issues',
27134             'Test2::AsyncSubtest' => 'https://github.com/Test-More/test-more/issues',
27135             'Test2::AsyncSubtest::Event::Attach'=> 'https://github.com/Test-More/test-more/issues',
27136             'Test2::AsyncSubtest::Event::Detach'=> 'https://github.com/Test-More/test-more/issues',
27137             'Test2::AsyncSubtest::Formatter'=> 'https://github.com/Test-More/test-more/issues',
27138             'Test2::AsyncSubtest::Hub'=> 'https://github.com/Test-More/test-more/issues',
27139             'Test2::Bundle' => 'https://github.com/Test-More/test-more/issues',
27140             'Test2::Bundle::Extended'=> 'https://github.com/Test-More/test-more/issues',
27141             'Test2::Bundle::More' => 'https://github.com/Test-More/test-more/issues',
27142             'Test2::Bundle::Simple' => 'https://github.com/Test-More/test-more/issues',
27143             'Test2::Compare' => 'https://github.com/Test-More/test-more/issues',
27144             'Test2::Compare::Array' => 'https://github.com/Test-More/test-more/issues',
27145             'Test2::Compare::Bag' => 'https://github.com/Test-More/test-more/issues',
27146             'Test2::Compare::Base' => 'https://github.com/Test-More/test-more/issues',
27147             'Test2::Compare::Bool' => 'https://github.com/Test-More/test-more/issues',
27148             'Test2::Compare::Custom'=> 'https://github.com/Test-More/test-more/issues',
27149             'Test2::Compare::DeepRef'=> 'https://github.com/Test-More/test-more/issues',
27150             'Test2::Compare::Delta' => 'https://github.com/Test-More/test-more/issues',
27151             'Test2::Compare::Event' => 'https://github.com/Test-More/test-more/issues',
27152             'Test2::Compare::EventMeta'=> 'https://github.com/Test-More/test-more/issues',
27153             'Test2::Compare::Float' => 'https://github.com/Test-More/test-more/issues',
27154             'Test2::Compare::Hash' => 'https://github.com/Test-More/test-more/issues',
27155             'Test2::Compare::Isa' => 'https://github.com/Test-More/test-more/issues',
27156             'Test2::Compare::Meta' => 'https://github.com/Test-More/test-more/issues',
27157             'Test2::Compare::Negatable'=> 'https://github.com/Test-More/test-more/issues',
27158             'Test2::Compare::Number'=> 'https://github.com/Test-More/test-more/issues',
27159             'Test2::Compare::Object'=> 'https://github.com/Test-More/test-more/issues',
27160             'Test2::Compare::OrderedSubset'=> 'https://github.com/Test-More/test-more/issues',
27161             'Test2::Compare::Pattern'=> 'https://github.com/Test-More/test-more/issues',
27162             'Test2::Compare::Ref' => 'https://github.com/Test-More/test-more/issues',
27163             'Test2::Compare::Regex' => 'https://github.com/Test-More/test-more/issues',
27164             'Test2::Compare::Scalar'=> 'https://github.com/Test-More/test-more/issues',
27165             'Test2::Compare::Set' => 'https://github.com/Test-More/test-more/issues',
27166             'Test2::Compare::String'=> 'https://github.com/Test-More/test-more/issues',
27167             'Test2::Compare::Undef' => 'https://github.com/Test-More/test-more/issues',
27168             'Test2::Compare::Wildcard'=> 'https://github.com/Test-More/test-more/issues',
27169             'Test2::Env' => 'https://github.com/Test-More/test-more/issues',
27170             'Test2::Event' => 'https://github.com/Test-More/test-more/issues',
27171             'Test2::Event::Bail' => 'https://github.com/Test-More/test-more/issues',
27172             'Test2::Event::Diag' => 'https://github.com/Test-More/test-more/issues',
27173             'Test2::Event::Encoding'=> 'https://github.com/Test-More/test-more/issues',
27174             'Test2::Event::Exception'=> 'https://github.com/Test-More/test-more/issues',
27175             'Test2::Event::Fail' => 'https://github.com/Test-More/test-more/issues',
27176             'Test2::Event::Generic' => 'https://github.com/Test-More/test-more/issues',
27177             'Test2::Event::Note' => 'https://github.com/Test-More/test-more/issues',
27178             'Test2::Event::Ok' => 'https://github.com/Test-More/test-more/issues',
27179             'Test2::Event::Pass' => 'https://github.com/Test-More/test-more/issues',
27180             'Test2::Event::Plan' => 'https://github.com/Test-More/test-more/issues',
27181             'Test2::Event::Skip' => 'https://github.com/Test-More/test-more/issues',
27182             'Test2::Event::Subtest' => 'https://github.com/Test-More/test-more/issues',
27183             'Test2::Event::TAP::Version'=> 'https://github.com/Test-More/test-more/issues',
27184             'Test2::Event::V2' => 'https://github.com/Test-More/test-more/issues',
27185             'Test2::Event::Waiting' => 'https://github.com/Test-More/test-more/issues',
27186             'Test2::EventFacet' => 'https://github.com/Test-More/test-more/issues',
27187             'Test2::EventFacet::About'=> 'https://github.com/Test-More/test-more/issues',
27188             'Test2::EventFacet::Amnesty'=> 'https://github.com/Test-More/test-more/issues',
27189             'Test2::EventFacet::Assert'=> 'https://github.com/Test-More/test-more/issues',
27190             'Test2::EventFacet::Control'=> 'https://github.com/Test-More/test-more/issues',
27191             'Test2::EventFacet::Error'=> 'https://github.com/Test-More/test-more/issues',
27192             'Test2::EventFacet::Hub'=> 'https://github.com/Test-More/test-more/issues',
27193             'Test2::EventFacet::Info'=> 'https://github.com/Test-More/test-more/issues',
27194             'Test2::EventFacet::Info::Table'=> 'https://github.com/Test-More/test-more/issues',
27195             'Test2::EventFacet::Meta'=> 'https://github.com/Test-More/test-more/issues',
27196             'Test2::EventFacet::Parent'=> 'https://github.com/Test-More/test-more/issues',
27197             'Test2::EventFacet::Plan'=> 'https://github.com/Test-More/test-more/issues',
27198             'Test2::EventFacet::Render'=> 'https://github.com/Test-More/test-more/issues',
27199             'Test2::EventFacet::Trace'=> 'https://github.com/Test-More/test-more/issues',
27200             'Test2::Formatter' => 'https://github.com/Test-More/test-more/issues',
27201             'Test2::Formatter::TAP' => 'https://github.com/Test-More/test-more/issues',
27202             'Test2::Hub' => 'https://github.com/Test-More/test-more/issues',
27203             'Test2::Hub::Interceptor'=> 'https://github.com/Test-More/test-more/issues',
27204             'Test2::Hub::Interceptor::Terminator'=> 'https://github.com/Test-More/test-more/issues',
27205             'Test2::Hub::Subtest' => 'https://github.com/Test-More/test-more/issues',
27206             'Test2::IPC' => 'https://github.com/Test-More/test-more/issues',
27207             'Test2::IPC::Driver' => 'https://github.com/Test-More/test-more/issues',
27208             'Test2::IPC::Driver::Files'=> 'https://github.com/Test-More/test-more/issues',
27209             'Test2::Manual' => 'https://github.com/Test-More/test-more/issues',
27210             'Test2::Manual::Anatomy'=> 'https://github.com/Test-More/test-more/issues',
27211             'Test2::Manual::Anatomy::API'=> 'https://github.com/Test-More/test-more/issues',
27212             'Test2::Manual::Anatomy::Context'=> 'https://github.com/Test-More/test-more/issues',
27213             'Test2::Manual::Anatomy::EndToEnd'=> 'https://github.com/Test-More/test-more/issues',
27214             'Test2::Manual::Anatomy::Event'=> 'https://github.com/Test-More/test-more/issues',
27215             'Test2::Manual::Anatomy::Hubs'=> 'https://github.com/Test-More/test-more/issues',
27216             'Test2::Manual::Anatomy::IPC'=> 'https://github.com/Test-More/test-more/issues',
27217             'Test2::Manual::Anatomy::Utilities'=> 'https://github.com/Test-More/test-more/issues',
27218             'Test2::Manual::Concurrency'=> 'https://github.com/Test-More/test-more/issues',
27219             'Test2::Manual::Contributing'=> 'https://github.com/Test-More/test-more/issues',
27220             'Test2::Manual::Testing'=> 'https://github.com/Test-More/test-more/issues',
27221             'Test2::Manual::Testing::Introduction'=> 'https://github.com/Test-More/test-more/issues',
27222             'Test2::Manual::Testing::Migrating'=> 'https://github.com/Test-More/test-more/issues',
27223             'Test2::Manual::Testing::Planning'=> 'https://github.com/Test-More/test-more/issues',
27224             'Test2::Manual::Testing::Todo'=> 'https://github.com/Test-More/test-more/issues',
27225             'Test2::Manual::Tooling'=> 'https://github.com/Test-More/test-more/issues',
27226             'Test2::Manual::Tooling::FirstTool'=> 'https://github.com/Test-More/test-more/issues',
27227             'Test2::Manual::Tooling::Formatter'=> 'https://github.com/Test-More/test-more/issues',
27228             'Test2::Manual::Tooling::Nesting'=> 'https://github.com/Test-More/test-more/issues',
27229             'Test2::Manual::Tooling::Plugin::TestExit'=> 'https://github.com/Test-More/test-more/issues',
27230             'Test2::Manual::Tooling::Plugin::TestingDone'=> 'https://github.com/Test-More/test-more/issues',
27231             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> 'https://github.com/Test-More/test-more/issues',
27232             'Test2::Manual::Tooling::Plugin::ToolStarts'=> 'https://github.com/Test-More/test-more/issues',
27233             'Test2::Manual::Tooling::Subtest'=> 'https://github.com/Test-More/test-more/issues',
27234             'Test2::Manual::Tooling::TestBuilder'=> 'https://github.com/Test-More/test-more/issues',
27235             'Test2::Manual::Tooling::Testing'=> 'https://github.com/Test-More/test-more/issues',
27236             'Test2::Mock' => 'https://github.com/Test-More/test-more/issues',
27237             'Test2::Plugin' => 'https://github.com/Test-More/test-more/issues',
27238             'Test2::Plugin::BailOnFail'=> 'https://github.com/Test-More/test-more/issues',
27239             'Test2::Plugin::DieOnFail'=> 'https://github.com/Test-More/test-more/issues',
27240             'Test2::Plugin::ExitSummary'=> 'https://github.com/Test-More/test-more/issues',
27241             'Test2::Plugin::SRand' => 'https://github.com/Test-More/test-more/issues',
27242             'Test2::Plugin::Times' => 'https://github.com/Test-More/test-more/issues',
27243             'Test2::Plugin::UTF8' => 'https://github.com/Test-More/test-more/issues',
27244             'Test2::Require' => 'https://github.com/Test-More/test-more/issues',
27245             'Test2::Require::AuthorTesting'=> 'https://github.com/Test-More/test-more/issues',
27246             'Test2::Require::AutomatedTesting'=> 'https://github.com/Test-More/test-more/issues',
27247             'Test2::Require::EnvVar'=> 'https://github.com/Test-More/test-more/issues',
27248             'Test2::Require::ExtendedTesting'=> 'https://github.com/Test-More/test-more/issues',
27249             'Test2::Require::Fork' => 'https://github.com/Test-More/test-more/issues',
27250             'Test2::Require::Module'=> 'https://github.com/Test-More/test-more/issues',
27251             'Test2::Require::NonInteractiveTesting'=> 'https://github.com/Test-More/test-more/issues',
27252             'Test2::Require::Perl' => 'https://github.com/Test-More/test-more/issues',
27253             'Test2::Require::RealFork'=> 'https://github.com/Test-More/test-more/issues',
27254             'Test2::Require::ReleaseTesting'=> 'https://github.com/Test-More/test-more/issues',
27255             'Test2::Require::Threads'=> 'https://github.com/Test-More/test-more/issues',
27256             'Test2::Suite' => 'https://github.com/Test-More/test-more/issues',
27257             'Test2::Todo' => 'https://github.com/Test-More/test-more/issues',
27258             'Test2::Tools' => 'https://github.com/Test-More/test-more/issues',
27259             'Test2::Tools::AsyncSubtest'=> 'https://github.com/Test-More/test-more/issues',
27260             'Test2::Tools::Basic' => 'https://github.com/Test-More/test-more/issues',
27261             'Test2::Tools::Class' => 'https://github.com/Test-More/test-more/issues',
27262             'Test2::Tools::ClassicCompare'=> 'https://github.com/Test-More/test-more/issues',
27263             'Test2::Tools::Compare' => 'https://github.com/Test-More/test-more/issues',
27264             'Test2::Tools::Defer' => 'https://github.com/Test-More/test-more/issues',
27265             'Test2::Tools::Encoding'=> 'https://github.com/Test-More/test-more/issues',
27266             'Test2::Tools::Event' => 'https://github.com/Test-More/test-more/issues',
27267             'Test2::Tools::Exception'=> 'https://github.com/Test-More/test-more/issues',
27268             'Test2::Tools::Exports' => 'https://github.com/Test-More/test-more/issues',
27269             'Test2::Tools::GenTemp' => 'https://github.com/Test-More/test-more/issues',
27270             'Test2::Tools::Grab' => 'https://github.com/Test-More/test-more/issues',
27271             'Test2::Tools::Mock' => 'https://github.com/Test-More/test-more/issues',
27272             'Test2::Tools::Ref' => 'https://github.com/Test-More/test-more/issues',
27273             'Test2::Tools::Refcount'=> 'https://github.com/Test-More/test-more/issues',
27274             'Test2::Tools::Spec' => 'https://github.com/Test-More/test-more/issues',
27275             'Test2::Tools::Subtest' => 'https://github.com/Test-More/test-more/issues',
27276             'Test2::Tools::Target' => 'https://github.com/Test-More/test-more/issues',
27277             'Test2::Tools::Tester' => 'https://github.com/Test-More/test-more/issues',
27278             'Test2::Tools::Tiny' => 'https://github.com/Test-More/test-more/issues',
27279             'Test2::Tools::Warnings'=> 'https://github.com/Test-More/test-more/issues',
27280             'Test2::Util' => 'https://github.com/Test-More/test-more/issues',
27281             'Test2::Util::ExternalMeta'=> 'https://github.com/Test-More/test-more/issues',
27282             'Test2::Util::Facets2Legacy'=> 'https://github.com/Test-More/test-more/issues',
27283             'Test2::Util::Grabber' => 'https://github.com/Test-More/test-more/issues',
27284             'Test2::Util::Guard' => 'https://github.com/Test-More/test-more/issues',
27285             'Test2::Util::HashBase' => 'https://github.com/Test-More/test-more/issues',
27286             'Test2::Util::Importer' => 'https://github.com/Test-More/test-more/issues',
27287             'Test2::Util::Ref' => 'https://github.com/Test-More/test-more/issues',
27288             'Test2::Util::Sig' => 'https://github.com/Test-More/test-more/issues',
27289             'Test2::Util::Stash' => 'https://github.com/Test-More/test-more/issues',
27290             'Test2::Util::Sub' => 'https://github.com/Test-More/test-more/issues',
27291             'Test2::Util::Table' => 'https://github.com/Test-More/test-more/issues',
27292             'Test2::Util::Table::Cell'=> 'https://github.com/Test-More/test-more/issues',
27293             'Test2::Util::Table::LineBreak'=> 'https://github.com/Test-More/test-more/issues',
27294             'Test2::Util::Term' => 'https://github.com/Test-More/test-more/issues',
27295             'Test2::Util::Times' => 'https://github.com/Test-More/test-more/issues',
27296             'Test2::Util::Trace' => 'https://github.com/Test-More/test-more/issues',
27297             'Test2::V0' => 'https://github.com/Test-More/test-more/issues',
27298             'Test2::Workflow' => 'https://github.com/Test-More/test-more/issues',
27299             'Test2::Workflow::BlockBase'=> 'https://github.com/Test-More/test-more/issues',
27300             'Test2::Workflow::Build'=> 'https://github.com/Test-More/test-more/issues',
27301             'Test2::Workflow::Runner'=> 'https://github.com/Test-More/test-more/issues',
27302             'Test2::Workflow::Task' => 'https://github.com/Test-More/test-more/issues',
27303             'Test2::Workflow::Task::Action'=> 'https://github.com/Test-More/test-more/issues',
27304             'Test2::Workflow::Task::Group'=> 'https://github.com/Test-More/test-more/issues',
27305             'Test::Builder' => 'https://github.com/Test-More/test-more/issues',
27306             'Test::Builder::Formatter'=> 'https://github.com/Test-More/test-more/issues',
27307             'Test::Builder::Module' => 'https://github.com/Test-More/test-more/issues',
27308             'Test::Builder::Tester' => 'https://github.com/Test-More/test-more/issues',
27309             'Test::Builder::Tester::Color'=> 'https://github.com/Test-More/test-more/issues',
27310             'Test::Builder::TodoDiag'=> 'https://github.com/Test-More/test-more/issues',
27311             'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27312             'Test::More' => 'https://github.com/Test-More/test-more/issues',
27313             'Test::Simple' => 'https://github.com/Test-More/test-more/issues',
27314             'Test::Tester' => 'https://github.com/Test-More/test-more/issues',
27315             'Test::Tester::Capture' => 'https://github.com/Test-More/test-more/issues',
27316             'Test::Tester::CaptureRunner'=> 'https://github.com/Test-More/test-more/issues',
27317             'Test::Tester::Delegate'=> 'https://github.com/Test-More/test-more/issues',
27318             'Test::use::ok' => 'https://github.com/Test-More/test-more/issues',
27319             'Text::Balanced' => undef,
27320             'Text::ParseWords' => undef,
27321             'Text::Tabs' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
27322             'Text::Wrap' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
27323             'Tie::RefHash' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Tie-RefHash',
27324             'Time::Local' => 'https://github.com/houseabsolute/Time-Local/issues',
27325             'Time::Piece' => undef,
27326             'Time::Seconds' => undef,
27327             'Unicode::Collate' => undef,
27328             'Unicode::Collate::CJK::Big5'=> undef,
27329             'Unicode::Collate::CJK::GB2312'=> undef,
27330             'Unicode::Collate::CJK::JISX0208'=> undef,
27331             'Unicode::Collate::CJK::Korean'=> undef,
27332             'Unicode::Collate::CJK::Pinyin'=> undef,
27333             'Unicode::Collate::CJK::Stroke'=> undef,
27334             'Unicode::Collate::CJK::Zhuyin'=> undef,
27335             'Unicode::Collate::Locale'=> undef,
27336             'Win32' => 'https://github.com/perl-libwin32/win32/issues',
27337             'Win32API::File' => undef,
27338             'autodie' => 'https://github.com/pjf/autodie/issues',
27339             'autodie::Scope::Guard' => 'https://github.com/pjf/autodie/issues',
27340             'autodie::Scope::GuardStack'=> 'https://github.com/pjf/autodie/issues',
27341             'autodie::Util' => 'https://github.com/pjf/autodie/issues',
27342             'autodie::exception' => 'https://github.com/pjf/autodie/issues',
27343             'autodie::exception::system'=> 'https://github.com/pjf/autodie/issues',
27344             'autodie::hints' => 'https://github.com/pjf/autodie/issues',
27345             'autodie::skip' => 'https://github.com/pjf/autodie/issues',
27346             'bigfloat' => undef,
27347             'bigint' => undef,
27348             'bignum' => undef,
27349             'bigrat' => undef,
27350             'encoding' => undef,
27351             'experimental' => 'https://github.com/Dual-Life/experimental/issues',
27352             'ok' => 'https://github.com/Test-More/test-more/issues',
27353             'parent' => undef,
27354             'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues',
27355             'stable' => 'https://github.com/Dual-Life/experimental/issues',
27356             'version' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
27357             'version::regex' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
27358             );
27359              
27360             # Create aliases with trailing zeros for $] use
27361              
27362             $released{'5.000'} = $released{5};
27363             $version{'5.000'} = $version{5};
27364              
27365             _create_aliases(\%delta);
27366             _create_aliases(\%released);
27367             _create_aliases(\%version);
27368             _create_aliases(\%deprecated);
27369              
27370             sub _create_aliases {
27371 20     20   54 my ($hash) = @_;
27372              
27373 20         1313 for my $version (keys %$hash) {
27374 5610 100       15329 next unless $version >= 5.006;
27375              
27376 5465         13987 my $padded = sprintf "%0.6f", $version;
27377              
27378             # If the version in string form isn't the same as the numeric version,
27379             # alias it.
27380 5465 100 66     14213 if ($padded ne $version && $version == $padded) {
27381 935         2761 $hash->{$padded} = $hash->{$version};
27382             }
27383             }
27384             }
27385              
27386             1;
27387             __END__