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   296689 use strict;
  5         9  
  5         447  
3              
4             our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
5              
6 5     5   1798 use version;
  5         7443  
  5         61  
7             our $VERSION = '5.20260320';
8              
9             sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
10 42     42   95 sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
  42         105  
  42         529  
11              
12             sub _undelta {
13 11     11   44 my ($delta) = @_;
14 11         24 my (%expanded, $delta_from, $base, $changed, $removed);
15 11         4449 for my $v (sort keys %$delta) {
16 3019         4686 ($delta_from, $changed, $removed) = @{$delta->{$v}}{qw( delta_from changed removed )};
  3019         9320  
17 3019 100       12159 $base = $delta_from ? $expanded{$delta_from} : {};
18 3019 100       114751 my %full = ( %$base, %{$changed || {}} );
  3019         439165  
19 3019         73724 delete @full{ keys %$removed };
20 3019         10738 $expanded{$v} = \%full;
21             }
22 11         3565 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 9170 0   9170   25986 : $released{$a} cmp $released{$b} )
    50          
    50          
33             }
34              
35             my $dumpinc = 0;
36             sub import {
37 4     4   66 my $self = shift;
38 4   50     33 my $what = shift || '';
39 4 50       15598 if ($what eq 'dumpinc') {
40 0         0 $dumpinc = 1;
41             }
42             }
43              
44             END {
45 5 50   5   2088 print "---INC---\n", join "\n" => keys %INC
46             if $dumpinc;
47             }
48              
49              
50             sub first_release_raw {
51 91 100 100 91 0 513 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
52 91         197 my $module = shift;
53 91         195 my $version = shift;
54              
55             my @perls = $version
56             ? grep { defined $version{$_}{ $module } &&
57 1690 100       8319 $version{$_}{ $module } ge $version } keys %version
58 91 100       9645 : grep { exists $version{$_}{ $module } } keys %version;
  29068         85085  
59              
60 91         4863 return @perls;
61             }
62              
63             sub first_release_by_date {
64 4     4 1 379931 my @perls = &first_release_raw;
65 4 50       20 return unless @perls;
66 4         43 return (sort _released_order @perls)[0];
67             }
68              
69             sub first_release {
70 53     53 1 152 my @perls = &first_release_raw;
71 53 100       309 return unless @perls;
72 49         505 return (sort { $a cmp $b } @perls)[0];
  88192         136590  
73             }
74              
75             sub find_modules {
76 5 100   5 1 337548 shift if _looks_like_invocant $_[0];
77 5         12 my $regex = shift;
78 5 100       589 my @perls = @_ ? @_ : keys %version;
79              
80 5         15 my %mods;
81 5         16 foreach (@perls) {
82 1017         1659 while (my ($k, $v) = each %{$version{$_}}) {
  636577         1705559  
83 635560 100       2003369 $mods{$k}++ if $k =~ $regex;
84             }
85             }
86 5         364 return sort keys %mods
87             }
88              
89             sub find_version {
90 3 50   3 1 489 shift if _looks_like_invocant $_[0];
91 3         5 my $v = shift;
92 3 100 66     25 return $version{$v} if defined $v and defined $version{$v};
93 1         4 return;
94             }
95              
96             sub is_deprecated {
97 3 50 66 3 1 5240 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      33        
98 3         7 my $module = shift;
99 3   66     19 my $perl_version = shift || $];
100 3 50 33     30 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 12 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      33        
106 2 50       8 my $module = shift or return;
107 2         128 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
  602         1310  
108 2 100       2082 return unless @perls;
109 1         11 require List::Util;
110 1         15 return List::Util::minstr(@perls);
111             }
112              
113             sub removed_from {
114 34     34 1 126 my @perls = &removed_raw;
115 34         375 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 156 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
      66        
125 34         93 my $mod = shift;
126 34 50       138 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
  51467         86457  
127 34         514 my $last = pop @perls;
128 34         2728 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
  11492         30776  
  82936         136575  
129 34         1773 return @removed;
130             }
131              
132             sub changes_between {
133 0 0   0 1 0 shift if _looks_like_invocant $_[0];
134 0         0 my $left_ver = shift;
135 0         0 my $right_ver = shift;
136              
137 0   0     0 my $left = $version{ $left_ver } || {};
138 0   0     0 my $right = $version{ $right_ver } || {};
139              
140 0         0 my %uniq = (%$left, %$right);
141              
142 0         0 my %changes;
143 0         0 for my $lib (keys %uniq) {
144             my $lhs = exists $left->{ $lib }
145 0 0       0 ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)')
    0          
146             : '(absent)';
147             my $rhs = exists $right->{ $lib }
148 0 0       0 ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)')
    0          
149             : '(absent)';
150              
151 0 0       0 next if $lhs eq $rhs;
152              
153             my $change = {
154             (exists $left->{$lib} ? (left => $left->{$lib}) : ()),
155 0 0       0 (exists $right->{$lib} ? (right => $right->{$lib}) : ()),
    0          
156             };
157              
158 0         0 $changes{$lib} = $change;
159             }
160              
161 0         0 return %changes;
162             }
163              
164             # When things escaped.
165             # NB. If you put version numbers with trailing zeroes here, you
166             # should also add an alias for the numerical ($]) version; see
167             # just before the __END__ of this module.
168             %released = (
169             5.000 => '1994-10-17',
170             5.001 => '1995-03-14',
171             5.002 => '1996-02-29',
172             5.00307 => '1996-10-10',
173             5.004 => '1997-05-15',
174             5.005 => '1998-07-22',
175             5.00503 => '1999-03-28',
176             5.00405 => '1999-04-29',
177             5.006 => '2000-03-22',
178             5.006001 => '2001-04-08',
179             5.007003 => '2002-03-05',
180             5.008 => '2002-07-19',
181             5.008001 => '2003-09-25',
182             5.009 => '2003-10-27',
183             5.008002 => '2003-11-05',
184             5.006002 => '2003-11-15',
185             5.008003 => '2004-01-14',
186             5.00504 => '2004-02-23',
187             5.009001 => '2004-03-16',
188             5.008004 => '2004-04-21',
189             5.008005 => '2004-07-19',
190             5.008006 => '2004-11-27',
191             5.009002 => '2005-04-01',
192             5.008007 => '2005-05-30',
193             5.009003 => '2006-01-28',
194             5.008008 => '2006-01-31',
195             5.009004 => '2006-08-15',
196             5.009005 => '2007-07-07',
197             5.010000 => '2007-12-18',
198             5.008009 => '2008-12-14',
199             5.010001 => '2009-08-22',
200             5.011000 => '2009-10-02',
201             5.011001 => '2009-10-20',
202             5.011002 => '2009-11-20',
203             5.011003 => '2009-12-20',
204             5.011004 => '2010-01-20',
205             5.011005 => '2010-02-20',
206             5.012000 => '2010-04-12',
207             5.013000 => '2010-04-20',
208             5.012001 => '2010-05-16',
209             5.013001 => '2010-05-20',
210             5.013002 => '2010-06-22',
211             5.013003 => '2010-07-20',
212             5.013004 => '2010-08-20',
213             5.012002 => '2010-09-06',
214             5.013005 => '2010-09-19',
215             5.013006 => '2010-10-20',
216             5.013007 => '2010-11-20',
217             5.013008 => '2010-12-20',
218             5.012003 => '2011-01-21',
219             5.013009 => '2011-01-20',
220             5.013010 => '2011-02-20',
221             5.013011 => '2011-03-20',
222             5.014000 => '2011-05-14',
223             5.012004 => '2011-06-20',
224             5.012005 => '2012-11-10',
225             5.014001 => '2011-06-16',
226             5.015000 => '2011-06-20',
227             5.015001 => '2011-07-20',
228             5.015002 => '2011-08-20',
229             5.014002 => '2011-09-26',
230             5.015003 => '2011-09-20',
231             5.015004 => '2011-10-20',
232             5.015005 => '2011-11-20',
233             5.015006 => '2011-12-20',
234             5.015007 => '2012-01-20',
235             5.015008 => '2012-02-20',
236             5.015009 => '2012-03-20',
237             5.016000 => '2012-05-20',
238             5.016001 => '2012-08-08',
239             5.016002 => '2012-11-01',
240             5.017000 => '2012-05-26',
241             5.017001 => '2012-06-20',
242             5.017002 => '2012-07-20',
243             5.017003 => '2012-08-20',
244             5.017004 => '2012-09-20',
245             5.014003 => '2012-10-12',
246             5.017005 => '2012-10-20',
247             5.017006 => '2012-11-20',
248             5.017007 => '2012-12-18',
249             5.017008 => '2013-01-20',
250             5.017009 => '2013-02-20',
251             5.014004 => '2013-03-10',
252             5.016003 => '2013-03-11',
253             5.017010 => '2013-03-21',
254             5.017011 => '2013-04-20',
255             5.018000 => '2013-05-18',
256             5.019000 => '2013-05-20',
257             5.019001 => '2013-06-21',
258             5.019002 => '2013-07-22',
259             5.018001 => '2013-08-12',
260             5.019003 => '2013-08-20',
261             5.019004 => '2013-09-20',
262             5.019005 => '2013-10-20',
263             5.019006 => '2013-11-20',
264             5.019007 => '2013-12-20',
265             5.018002 => '2014-01-06',
266             5.018003 => '2014-10-01',
267             5.018004 => '2014-10-01',
268             5.019008 => '2014-01-20',
269             5.019009 => '2014-02-20',
270             5.01901 => '2014-03-20',
271             5.019011 => '2014-04-20',
272             5.020000 => '2014-05-27',
273             5.021000 => '2014-05-27',
274             5.021001 => '2014-06-20',
275             5.021002 => '2014-07-20',
276             5.021003 => '2014-08-20',
277             5.020001 => '2014-09-14',
278             5.021004 => '2014-09-20',
279             5.021005 => '2014-10-20',
280             5.021006 => '2014-11-20',
281             5.021007 => '2014-12-20',
282             5.021008 => '2015-01-20',
283             5.020002 => '2015-02-14',
284             5.021009 => '2015-02-21',
285             5.021010 => '2015-03-20',
286             5.021011 => '2015-04-20',
287             5.022000 => '2015-06-01',
288             5.023000 => '2015-06-20',
289             5.023001 => '2015-07-20',
290             5.023002 => '2015-08-20',
291             5.020003 => '2015-09-12',
292             5.023003 => '2015-09-20',
293             5.023004 => '2015-10-20',
294             5.023005 => '2015-11-20',
295             5.022001 => '2015-12-13',
296             5.023006 => '2015-12-21',
297             5.023007 => '2016-01-20',
298             5.023008 => '2016-02-20',
299             5.023009 => '2016-03-20',
300             5.022002 => '2016-04-29',
301             5.024000 => '2016-05-09',
302             5.025000 => '2016-05-09',
303             5.025001 => '2016-05-20',
304             5.025002 => '2016-06-20',
305             5.025003 => '2016-07-20',
306             5.025004 => '2016-08-20',
307             5.025005 => '2016-09-20',
308             5.025006 => '2016-10-20',
309             5.025007 => '2016-11-20',
310             5.025008 => '2016-12-20',
311             5.022003 => '2017-01-14',
312             5.024001 => '2017-01-14',
313             5.025009 => '2017-01-20',
314             5.025010 => '2017-02-20',
315             5.025011 => '2017-03-20',
316             5.025012 => '2017-04-20',
317             5.026000 => '2017-05-30',
318             5.027000 => '2017-05-31',
319             5.027001 => '2017-06-20',
320             5.022004 => '2017-07-15',
321             5.024002 => '2017-07-15',
322             5.027002 => '2017-07-20',
323             5.027003 => '2017-08-21',
324             5.027004 => '2017-09-20',
325             5.024003 => '2017-09-22',
326             5.026001 => '2017-09-22',
327             5.027005 => '2017-10-20',
328             5.027006 => '2017-11-20',
329             5.027007 => '2017-12-20',
330             5.027008 => '2018-01-20',
331             5.027009 => '2018-02-20',
332             5.027010 => '2018-03-20',
333             5.024004 => '2018-04-14',
334             5.026002 => '2018-04-14',
335             5.027011 => '2018-04-20',
336             5.028000 => '2018-06-22',
337             5.029000 => '2018-06-26',
338             5.029001 => '2018-07-20',
339             5.029002 => '2018-08-20',
340             5.029003 => '2018-09-20',
341             5.029004 => '2018-10-20',
342             5.029005 => '2018-11-20',
343             5.026003 => '2018-11-29',
344             5.028001 => '2018-11-29',
345             5.029006 => '2018-12-18',
346             5.029007 => '2019-01-20',
347             5.029008 => '2019-02-20',
348             5.029009 => '2019-03-20',
349             5.028002 => '2019-04-19',
350             5.029010 => '2019-04-20',
351             5.030000 => '2019-05-22',
352             5.031000 => '2019-05-24',
353             5.031001 => '2019-06-20',
354             5.031002 => '2019-07-20',
355             5.031003 => '2019-08-20',
356             5.031004 => '2019-09-20',
357             5.031005 => '2019-10-20',
358             5.030001 => '2019-11-10',
359             5.031006 => '2019-11-20',
360             5.031007 => '2019-12-20',
361             5.031008 => '2020-01-20',
362             5.031009 => '2020-02-20',
363             5.030002 => '2020-03-14',
364             5.031010 => '2020-03-20',
365             5.031011 => '2020-04-28',
366             5.028003 => '2020-06-01',
367             5.030003 => '2020-06-01',
368             5.032000 => '2020-06-20',
369             5.033000 => '2020-07-17',
370             5.033001 => '2020-08-20',
371             5.033002 => '2020-09-20',
372             5.033003 => '2020-10-20',
373             5.033004 => '2020-11-20',
374             5.033005 => '2020-12-20',
375             5.033006 => '2021-01-20',
376             5.032001 => '2021-01-23',
377             5.033007 => '2021-02-20',
378             5.033008 => '2021-03-20',
379             5.033009 => '2021-04-20',
380             5.034000 => '2021-05-20',
381             5.035000 => '2021-05-21',
382             5.035001 => '2021-06-20',
383             5.035002 => '2021-07-23',
384             5.035003 => '2021-08-20',
385             5.035004 => '2021-09-20',
386             5.035005 => '2021-10-21',
387             5.035006 => '2021-11-20',
388             5.035007 => '2021-12-20',
389             5.035008 => '2022-01-20',
390             5.035009 => '2022-02-20',
391             5.034001 => '2022-03-13',
392             5.035010 => '2022-03-20',
393             5.035011 => '2022-04-20',
394             5.036000 => '2022-05-27',
395             5.037000 => '2022-05-27',
396             5.037001 => '2022-06-20',
397             5.037002 => '2022-07-20',
398             5.037003 => '2022-08-20',
399             5.037004 => '2022-09-20',
400             5.037005 => '2022-10-20',
401             5.037006 => '2022-11-20',
402             5.037007 => '2022-12-20',
403             5.037008 => '2023-01-20',
404             5.037009 => '2023-02-20',
405             5.037010 => '2023-03-20',
406             5.037011 => '2023-04-20',
407             5.036001 => '2023-04-23',
408             5.038000 => '2023-07-02',
409             5.039001 => '2023-07-20',
410             5.039002 => '2023-08-20',
411             5.039003 => '2023-09-20',
412             5.039004 => '2023-10-25',
413             5.039005 => '2023-11-20',
414             5.034002 => '2023-11-25',
415             5.036002 => '2023-11-25',
416             5.038001 => '2023-11-25',
417             5.034003 => '2023-11-29',
418             5.036003 => '2023-11-29',
419             5.038002 => '2023-11-29',
420             5.039006 => '2023-12-30',
421             5.039007 => '2024-01-20',
422             5.039008 => '2024-02-23',
423             5.039009 => '2024-03-20',
424             5.039010 => '2024-04-27',
425             5.040000 => '2024-06-09',
426             5.041000 => '2024-06-10',
427             5.041001 => '2024-07-02',
428             5.041002 => '2024-07-20',
429             5.041003 => '2024-08-29',
430             5.041004 => '2024-09-20',
431             5.041005 => '2024-10-20',
432             5.041006 => '2024-11-20',
433             5.041007 => '2024-12-20',
434             5.038003 => '2025-01-18',
435             5.040001 => '2025-01-18',
436             5.041008 => '2025-01-20',
437             5.041009 => '2025-02-24',
438             5.041010 => '2025-03-21',
439             5.038004 => '2025-04-13',
440             5.040002 => '2025-04-13',
441             5.041011 => '2025-04-20',
442             5.041012 => '2025-04-21',
443             5.041013 => '2025-05-28',
444             5.042000 => '2025-07-02',
445             5.043000 => '2025-07-03',
446             5.043001 => '2025-07-20',
447             5.038005 => '2025-08-03',
448             5.040003 => '2025-08-03',
449             5.043002 => '2025-08-20',
450             5.043003 => '2025-09-23',
451             5.043004 => '2025-10-22',
452             5.043005 => '2025-11-20',
453             5.043006 => '2025-12-20',
454             5.043007 => '2026-01-19',
455             5.043008 => '2026-02-20',
456             5.042001 => '2026-03-08',
457             5.043009 => '2026-03-20',
458             );
459              
460             for my $version ( sort { $a <=> $b } keys %released ) {
461             my $family = int ($version * 1000) / 1000;
462             push @{ $families{ $family }} , $version;
463             }
464              
465             %delta = (
466             5 => {
467             changed => {
468             'AnyDBM_File' => undef,
469             'AutoLoader' => undef,
470             'AutoSplit' => undef,
471             'Benchmark' => undef,
472             'Carp' => undef,
473             'Cwd' => undef,
474             'DB_File' => undef,
475             'DynaLoader' => undef,
476             'English' => undef,
477             'Env' => undef,
478             'Exporter' => undef,
479             'ExtUtils::MakeMaker' => undef,
480             'Fcntl' => undef,
481             'File::Basename' => undef,
482             'File::CheckTree' => undef,
483             'File::Find' => undef,
484             'FileHandle' => undef,
485             'GDBM_File' => undef,
486             'Getopt::Long' => undef,
487             'Getopt::Std' => undef,
488             'I18N::Collate' => undef,
489             'IPC::Open2' => undef,
490             'IPC::Open3' => undef,
491             'Math::BigFloat' => undef,
492             'Math::BigInt' => undef,
493             'Math::Complex' => undef,
494             'NDBM_File' => undef,
495             'Net::Ping' => undef,
496             'ODBM_File' => undef,
497             'POSIX' => undef,
498             'SDBM_File' => undef,
499             'Search::Dict' => undef,
500             'Shell' => undef,
501             'Socket' => undef,
502             'Sys::Hostname' => undef,
503             'Sys::Syslog' => undef,
504             'Term::Cap' => undef,
505             'Term::Complete' => undef,
506             'Test::Harness' => undef,
507             'Text::Abbrev' => undef,
508             'Text::ParseWords' => undef,
509             'Text::Soundex' => undef,
510             'Text::Tabs' => undef,
511             'TieHash' => undef,
512             'Time::Local' => undef,
513             'integer' => undef,
514             'less' => undef,
515             'sigtrap' => undef,
516             'strict' => undef,
517             'subs' => undef,
518             },
519             removed => {
520             }
521             },
522             5.001 => {
523             delta_from => 5,
524             changed => {
525             'ExtUtils::Liblist' => undef,
526             'ExtUtils::Manifest' => undef,
527             'ExtUtils::Mkbootstrap' => undef,
528             'File::Path' => undef,
529             'SubstrHash' => undef,
530             'lib' => undef,
531             },
532             removed => {
533             }
534             },
535             5.002 => {
536             delta_from => 5.001,
537             changed => {
538             'DB_File' => '1.01',
539             'Devel::SelfStubber' => '1.01',
540             'DirHandle' => undef,
541             'DynaLoader' => '1.00',
542             'ExtUtils::Install' => undef,
543             'ExtUtils::MM_OS2' => undef,
544             'ExtUtils::MM_Unix' => undef,
545             'ExtUtils::MM_VMS' => undef,
546             'ExtUtils::MakeMaker' => '5.21',
547             'ExtUtils::Manifest' => '1.22',
548             'ExtUtils::Mksymlists' => '1.00',
549             'Fcntl' => '1.00',
550             'File::Copy' => '1.5',
551             'File::Path' => '1.01',
552             'FileCache' => undef,
553             'FileHandle' => '1.00',
554             'GDBM_File' => '1.00',
555             'Getopt::Long' => '2.01',
556             'NDBM_File' => '1.00',
557             'Net::Ping' => '1',
558             'ODBM_File' => '1.00',
559             'POSIX' => '1.00',
560             'Pod::Functions' => undef,
561             'Pod::Text' => undef,
562             'SDBM_File' => '1.00',
563             'Safe' => '1.00',
564             'SelectSaver' => undef,
565             'SelfLoader' => '1.06',
566             'Socket' => '1.5',
567             'Symbol' => undef,
568             'Term::ReadLine' => undef,
569             'Test::Harness' => '1.07',
570             'Text::Wrap' => undef,
571             'Tie::Hash' => undef,
572             'Tie::Scalar' => undef,
573             'Tie::SubstrHash' => undef,
574             'diagnostics' => undef,
575             'overload' => undef,
576             'vars' => undef,
577             },
578             removed => {
579             'SubstrHash' => 1,
580             'TieHash' => 1,
581             }
582             },
583             5.00307 => {
584             delta_from => 5.002,
585             changed => {
586             'Config' => undef,
587             'DB_File' => '1.03',
588             'ExtUtils::Embed' => '1.18',
589             'ExtUtils::Install' => '1.15',
590             'ExtUtils::Liblist' => '1.20',
591             'ExtUtils::MM_Unix' => '1.107',
592             'ExtUtils::MakeMaker' => '5.38',
593             'ExtUtils::Manifest' => '1.27',
594             'ExtUtils::Mkbootstrap' => '1.13',
595             'ExtUtils::Mksymlists' => '1.12',
596             'ExtUtils::testlib' => '1.11',
597             'Fatal' => undef,
598             'File::Basename' => '2.4',
599             'FindBin' => '1.04',
600             'Getopt::Long' => '2.04',
601             'IO' => undef,
602             'IO::File' => '1.05',
603             'IO::Handle' => '1.12',
604             'IO::Pipe' => '1.07',
605             'IO::Seekable' => '1.05',
606             'IO::Select' => '1.09',
607             'IO::Socket' => '1.13',
608             'Net::Ping' => '1.01',
609             'OS2::ExtAttr' => '0.01',
610             'OS2::PrfDB' => '0.02',
611             'OS2::Process' => undef,
612             'OS2::REXX' => undef,
613             'Opcode' => '1.01',
614             'Safe' => '2.06',
615             'Test::Harness' => '1.13',
616             'Text::Tabs' => '96.051501',
617             'Text::Wrap' => '96.041801',
618             'UNIVERSAL' => undef,
619             'VMS::Filespec' => undef,
620             'VMS::Stdio' => '2.0',
621             'ops' => undef,
622             'sigtrap' => '1.01',
623             },
624             removed => {
625             }
626             },
627             5.004 => {
628             delta_from => 5.00307,
629             changed => {
630             'Bundle::CPAN' => '0.02',
631             'CGI' => '2.36',
632             'CGI::Apache' => '1.01',
633             'CGI::Carp' => '1.06',
634             'CGI::Fast' => '1.00a',
635             'CGI::Push' => '1.00',
636             'CGI::Switch' => '0.05',
637             'CPAN' => '1.2401',
638             'CPAN::FirstTime' => '1.18',
639             'CPAN::Nox' => undef,
640             'Class::Struct' => undef,
641             'Cwd' => '2.00',
642             'DB_File' => '1.14',
643             'DynaLoader' => '1.02',
644             'ExtUtils::Command' => '1.00',
645             'ExtUtils::Embed' => '1.2501',
646             'ExtUtils::Install' => '1.16',
647             'ExtUtils::Liblist' => '1.2201',
648             'ExtUtils::MM_Unix' => '1.114',
649             'ExtUtils::MM_Win32' => undef,
650             'ExtUtils::MakeMaker' => '5.4002',
651             'ExtUtils::Manifest' => '1.33',
652             'ExtUtils::Mksymlists' => '1.13',
653             'ExtUtils::XSSymSet' => '1.0',
654             'Fcntl' => '1.03',
655             'File::Basename' => '2.5',
656             'File::Compare' => '1.1001',
657             'File::Copy' => '2.02',
658             'File::Path' => '1.04',
659             'File::stat' => undef,
660             'FileHandle' => '2.00',
661             'Getopt::Long' => '2.10',
662             'IO::File' => '1.0602',
663             'IO::Handle' => '1.1504',
664             'IO::Pipe' => '1.0901',
665             'IO::Seekable' => '1.06',
666             'IO::Select' => '1.10',
667             'IO::Socket' => '1.1602',
668             'IPC::Open2' => '1.01',
669             'IPC::Open3' => '1.0101',
670             'Math::Complex' => '1.01',
671             'Math::Trig' => '1',
672             'Net::Ping' => '2.02',
673             'Net::hostent' => undef,
674             'Net::netent' => undef,
675             'Net::protoent' => undef,
676             'Net::servent' => undef,
677             'Opcode' => '1.04',
678             'POSIX' => '1.02',
679             'Pod::Html' => undef,
680             'Pod::Text' => '1.0203',
681             'SelfLoader' => '1.07',
682             'Socket' => '1.6',
683             'Symbol' => '1.02',
684             'Test::Harness' => '1.1502',
685             'Text::Tabs' => '96.121201',
686             'Text::Wrap' => '97.011701',
687             'Tie::RefHash' => undef,
688             'Time::gmtime' => '1.01',
689             'Time::localtime' => '1.01',
690             'Time::tm' => undef,
691             'User::grent' => undef,
692             'User::pwent' => undef,
693             'VMS::DCLsym' => '1.01',
694             'VMS::Stdio' => '2.02',
695             'autouse' => '1.01',
696             'blib' => undef,
697             'constant' => '1.00',
698             'locale' => undef,
699             'sigtrap' => '1.02',
700             'vmsish' => undef,
701             },
702             removed => {
703             'Fatal' => 1,
704             }
705             },
706             5.00405 => {
707             delta_from => 5.004,
708             changed => {
709             'AutoLoader' => '5.56',
710             'AutoSplit' => '1.0303',
711             'Bundle::CPAN' => '0.03',
712             'CGI' => '2.42',
713             'CGI::Apache' => '1.1',
714             'CGI::Carp' => '1.10',
715             'CGI::Cookie' => '1.06',
716             'CGI::Push' => '1.01',
717             'CGI::Switch' => '0.06',
718             'CPAN' => '1.40',
719             'CPAN::FirstTime' => '1.30',
720             'Cwd' => '2.01',
721             'DB_File' => '1.15',
722             'DynaLoader' => '1.03',
723             'ExtUtils::Command' => '1.01',
724             'ExtUtils::Embed' => '1.2505',
725             'ExtUtils::Install' => '1.28',
726             'ExtUtils::Liblist' => '1.25',
727             'ExtUtils::MM_Unix' => '1.118',
728             'ExtUtils::MakeMaker' => '5.42',
729             'ExtUtils::Mkbootstrap' => '1.14',
730             'ExtUtils::Mksymlists' => '1.16',
731             'File::Basename' => '2.6',
732             'File::DosGlob' => undef,
733             'File::Path' => '1.0402',
734             'File::Spec' => '0.6',
735             'File::Spec::Mac' => '1.0',
736             'File::Spec::OS2' => undef,
737             'File::Spec::Unix' => undef,
738             'File::Spec::VMS' => undef,
739             'File::Spec::Win32' => undef,
740             'FindBin' => '1.41',
741             'Getopt::Long' => '2.19',
742             'IO::File' => '1.06021',
743             'IO::Socket' => '1.1603',
744             'IPC::Open3' => '1.0103',
745             'Math::Complex' => '1.25',
746             'NDBM_File' => '1.01',
747             'Pod::Html' => '1.0101',
748             'Pod::Text' => '1.0204',
749             'SelfLoader' => '1.08',
750             'Socket' => '1.7',
751             'Test' => '1.04',
752             'Test::Harness' => '1.1602',
753             'Text::ParseWords' => '3.1001',
754             'Text::Wrap' => '98.112902',
755             'Tie::Handle' => undef,
756             'attrs' => '0.1',
757             'base' => undef,
758             'blib' => '1.00',
759             're' => undef,
760             'strict' => '1.01',
761             },
762             removed => {
763             }
764             },
765             5.005 => {
766             delta_from => 5.00405,
767             changed => {
768             'AutoLoader' => undef,
769             'AutoSplit' => '1.0302',
770             'B' => undef,
771             'B::Asmdata' => undef,
772             'B::Assembler' => undef,
773             'B::Bblock' => undef,
774             'B::Bytecode' => undef,
775             'B::C' => undef,
776             'B::CC' => undef,
777             'B::Debug' => undef,
778             'B::Deparse' => '0.56',
779             'B::Disassembler' => undef,
780             'B::Lint' => undef,
781             'B::Showlex' => undef,
782             'B::Stackobj' => undef,
783             'B::Terse' => undef,
784             'B::Xref' => undef,
785             'CGI::Carp' => '1.101',
786             'CPAN' => '1.3901',
787             'CPAN::FirstTime' => '1.29',
788             'DB_File' => '1.60',
789             'Data::Dumper' => '2.09',
790             'Errno' => '1.09',
791             'ExtUtils::Installed' => '0.02',
792             'ExtUtils::MM_Unix' => '1.12601',
793             'ExtUtils::MakeMaker' => '5.4301',
794             'ExtUtils::Mkbootstrap' => '1.13',
795             'ExtUtils::Mksymlists' => '1.17',
796             'ExtUtils::Packlist' => '0.03',
797             'Fatal' => '1.02',
798             'File::Path' => '1.0401',
799             'Getopt::Long' => '2.17',
800             'IO::Handle' => '1.1505',
801             'IPC::Msg' => '1.00',
802             'IPC::Open3' => '1.0102',
803             'IPC::Semaphore' => '1.00',
804             'IPC::SysV' => '1.03',
805             'O' => undef,
806             'OS2::Process' => '0.2',
807             'Pod::Html' => '1.01',
808             'Pod::Text' => '1.0203',
809             'Text::ParseWords' => '3.1',
810             'Text::Wrap' => '97.02',
811             'Thread' => '1.0',
812             'Thread::Queue' => undef,
813             'Thread::Semaphore' => undef,
814             'Thread::Signal' => undef,
815             'Thread::Specific' => undef,
816             'Tie::Array' => '1.00',
817             'VMS::Stdio' => '2.1',
818             'attrs' => '1.0',
819             'fields' => '0.02',
820             're' => '0.02',
821             },
822             removed => {
823             'Bundle::CPAN' => 1,
824             }
825             },
826             5.00503 => {
827             delta_from => 5.005,
828             changed => {
829             'AutoSplit' => '1.0303',
830             'CGI' => '2.46',
831             'CGI::Carp' => '1.13',
832             'CGI::Fast' => '1.01',
833             'CPAN' => '1.48',
834             'CPAN::FirstTime' => '1.36',
835             'CPAN::Nox' => '1.00',
836             'DB_File' => '1.65',
837             'Data::Dumper' => '2.101',
838             'Dumpvalue' => undef,
839             'Errno' => '1.111',
840             'ExtUtils::Install' => '1.28',
841             'ExtUtils::Liblist' => '1.25',
842             'ExtUtils::MM_Unix' => '1.12602',
843             'ExtUtils::MakeMaker' => '5.4302',
844             'ExtUtils::Manifest' => '1.33',
845             'ExtUtils::Mkbootstrap' => '1.14',
846             'ExtUtils::Mksymlists' => '1.17',
847             'ExtUtils::testlib' => '1.11',
848             'FindBin' => '1.42',
849             'Getopt::Long' => '2.19',
850             'Getopt::Std' => '1.01',
851             'IO::Pipe' => '1.0902',
852             'IPC::Open3' => '1.0103',
853             'Math::Complex' => '1.26',
854             'Test' => '1.122',
855             'Text::Wrap' => '98.112902',
856             },
857             removed => {
858             }
859             },
860             5.00504 => {
861             delta_from => 5.00503,
862             changed => {
863             'CPAN::FirstTime' => '1.36',
864             'DB_File' => '1.807',
865             'ExtUtils::Install' => '1.28',
866             'ExtUtils::Liblist' => '1.25',
867             'ExtUtils::MM_Unix' => '1.12602',
868             'ExtUtils::Manifest' => '1.33',
869             'ExtUtils::Miniperl' => undef,
870             'ExtUtils::Mkbootstrap' => '1.14',
871             'ExtUtils::Mksymlists' => '1.17',
872             'ExtUtils::testlib' => '1.11',
873             'File::Compare' => '1.1002',
874             'File::Spec' => '0.8',
875             'File::Spec::Functions' => undef,
876             'File::Spec::Mac' => undef,
877             'Getopt::Long' => '2.20',
878             'Pod::Html' => '1.02',
879             },
880             removed => {
881             }
882             },
883             5.006 => {
884             delta_from => 5.00504,
885             changed => {
886             'AutoLoader' => '5.57',
887             'AutoSplit' => '1.0305',
888             'B::Deparse' => '0.59',
889             'B::Stash' => undef,
890             'Benchmark' => '1',
891             'ByteLoader' => '0.03',
892             'CGI' => '2.56',
893             'CGI::Apache' => undef,
894             'CGI::Carp' => '1.14',
895             'CGI::Cookie' => '1.12',
896             'CGI::Fast' => '1.02',
897             'CGI::Pretty' => '1.03',
898             'CGI::Switch' => undef,
899             'CPAN' => '1.52',
900             'CPAN::FirstTime' => '1.38',
901             'Carp::Heavy' => undef,
902             'Class::Struct' => '0.58',
903             'Cwd' => '2.02',
904             'DB' => '1.0',
905             'DB_File' => '1.72',
906             'Devel::DProf' => '20000000.00_00',
907             'Devel::Peek' => '1.00_01',
908             'DynaLoader' => '1.04',
909             'Exporter' => '5.562',
910             'Exporter::Heavy' => undef,
911             'ExtUtils::MM_Cygwin' => undef,
912             'ExtUtils::MM_Unix' => '1.12603',
913             'ExtUtils::MakeMaker' => '5.45',
914             'File::Copy' => '2.03',
915             'File::Glob' => '0.991',
916             'File::Path' => '1.0403',
917             'GDBM_File' => '1.03',
918             'Getopt::Long' => '2.23',
919             'Getopt::Std' => '1.02',
920             'IO' => '1.20',
921             'IO::Dir' => '1.03',
922             'IO::File' => '1.08',
923             'IO::Handle' => '1.21',
924             'IO::Pipe' => '1.121',
925             'IO::Poll' => '0.01',
926             'IO::Seekable' => '1.08',
927             'IO::Select' => '1.14',
928             'IO::Socket' => '1.26',
929             'IO::Socket::INET' => '1.25',
930             'IO::Socket::UNIX' => '1.20',
931             'JNI' => '0.01',
932             'JPL::AutoLoader' => undef,
933             'JPL::Class' => undef,
934             'JPL::Compile' => undef,
935             'NDBM_File' => '1.03',
936             'ODBM_File' => '1.02',
937             'OS2::DLL' => undef,
938             'POSIX' => '1.03',
939             'Pod::Checker' => '1.098',
940             'Pod::Find' => '0.12',
941             'Pod::Html' => '1.03',
942             'Pod::InputObjects' => '1.12',
943             'Pod::Man' => '1.02',
944             'Pod::ParseUtils' => '0.2',
945             'Pod::Parser' => '1.12',
946             'Pod::Plainer' => '0.01',
947             'Pod::Select' => '1.12',
948             'Pod::Text' => '2.03',
949             'Pod::Text::Color' => '0.05',
950             'Pod::Text::Termcap' => '0.04',
951             'Pod::Usage' => '1.12',
952             'SDBM_File' => '1.02',
953             'SelfLoader' => '1.0901',
954             'Shell' => '0.2',
955             'Socket' => '1.72',
956             'Sys::Hostname' => '1.1',
957             'Sys::Syslog' => '0.01',
958             'Term::ANSIColor' => '1.01',
959             'Test' => '1.13',
960             'Test::Harness' => '1.1604',
961             'Text::ParseWords' => '3.2',
962             'Text::Soundex' => '1.0',
963             'Text::Tabs' => '98.112801',
964             'Tie::Array' => '1.01',
965             'Tie::Handle' => '1.0',
966             'VMS::Stdio' => '2.2',
967             'XSLoader' => '0.01',
968             'attributes' => '0.03',
969             'autouse' => '1.02',
970             'base' => '1.01',
971             'bytes' => undef,
972             'charnames' => undef,
973             'constant' => '1.02',
974             'diagnostics' => '1.0',
975             'fields' => '1.01',
976             'filetest' => undef,
977             'lib' => '0.5564',
978             'open' => undef,
979             'utf8' => undef,
980             'warnings' => undef,
981             'warnings::register' => undef,
982             },
983             removed => {
984             }
985             },
986             5.006001 => {
987             delta_from => 5.006,
988             changed => {
989             'AutoLoader' => '5.58',
990             'B::Assembler' => '0.02',
991             'B::Concise' => '0.51',
992             'B::Deparse' => '0.6',
993             'ByteLoader' => '0.04',
994             'CGI' => '2.752',
995             'CGI::Carp' => '1.20',
996             'CGI::Cookie' => '1.18',
997             'CGI::Pretty' => '1.05',
998             'CGI::Push' => '1.04',
999             'CGI::Util' => '1.1',
1000             'CPAN' => '1.59_54',
1001             'CPAN::FirstTime' => '1.53',
1002             'Class::Struct' => '0.59',
1003             'Cwd' => '2.04',
1004             'DB_File' => '1.75',
1005             'Data::Dumper' => '2.102',
1006             'ExtUtils::Install' => '1.28',
1007             'ExtUtils::Liblist' => '1.26',
1008             'ExtUtils::MM_Unix' => '1.12603',
1009             'ExtUtils::Manifest' => '1.33',
1010             'ExtUtils::Mkbootstrap' => '1.14',
1011             'ExtUtils::Mksymlists' => '1.17',
1012             'ExtUtils::testlib' => '1.11',
1013             'File::Path' => '1.0404',
1014             'File::Spec' => '0.82',
1015             'File::Spec::Epoc' => undef,
1016             'File::Spec::Functions' => '1.1',
1017             'File::Spec::Mac' => '1.2',
1018             'File::Spec::OS2' => '1.1',
1019             'File::Spec::Unix' => '1.2',
1020             'File::Spec::VMS' => '1.1',
1021             'File::Spec::Win32' => '1.2',
1022             'File::Temp' => '0.12',
1023             'GDBM_File' => '1.05',
1024             'Getopt::Long' => '2.25',
1025             'IO::Poll' => '0.05',
1026             'JNI' => '0.1',
1027             'Math::BigFloat' => '0.02',
1028             'Math::BigInt' => '0.01',
1029             'Math::Complex' => '1.31',
1030             'NDBM_File' => '1.04',
1031             'ODBM_File' => '1.03',
1032             'OS2::REXX' => '1.00',
1033             'Pod::Checker' => '1.2',
1034             'Pod::Find' => '0.21',
1035             'Pod::InputObjects' => '1.13',
1036             'Pod::LaTeX' => '0.53',
1037             'Pod::Man' => '1.15',
1038             'Pod::ParseUtils' => '0.22',
1039             'Pod::Parser' => '1.13',
1040             'Pod::Select' => '1.13',
1041             'Pod::Text' => '2.08',
1042             'Pod::Text::Color' => '0.06',
1043             'Pod::Text::Overstrike' => '1.01',
1044             'Pod::Text::Termcap' => '1',
1045             'Pod::Usage' => '1.14',
1046             'SDBM_File' => '1.03',
1047             'SelfLoader' => '1.0902',
1048             'Shell' => '0.3',
1049             'Term::ANSIColor' => '1.03',
1050             'Test' => '1.15',
1051             'Text::Wrap' => '2001.0131',
1052             'Tie::Handle' => '4.0',
1053             'Tie::RefHash' => '1.3',
1054             },
1055             removed => {
1056             }
1057             },
1058             5.006002 => {
1059             delta_from => 5.006001,
1060             changed => {
1061             'CPAN::FirstTime' => '1.53',
1062             'DB_File' => '1.806',
1063             'Data::Dumper' => '2.121',
1064             'ExtUtils::Command' => '1.05',
1065             'ExtUtils::Command::MM' => '0.03',
1066             'ExtUtils::Install' => '1.32',
1067             'ExtUtils::Installed' => '0.08',
1068             'ExtUtils::Liblist' => '1.01',
1069             'ExtUtils::Liblist::Kid'=> '1.3',
1070             'ExtUtils::MM' => '0.04',
1071             'ExtUtils::MM_Any' => '0.07',
1072             'ExtUtils::MM_BeOS' => '1.04',
1073             'ExtUtils::MM_Cygwin' => '1.06',
1074             'ExtUtils::MM_DOS' => '0.02',
1075             'ExtUtils::MM_MacOS' => '1.07',
1076             'ExtUtils::MM_NW5' => '2.06',
1077             'ExtUtils::MM_OS2' => '1.04',
1078             'ExtUtils::MM_UWIN' => '0.02',
1079             'ExtUtils::MM_Unix' => '1.42',
1080             'ExtUtils::MM_VMS' => '5.70',
1081             'ExtUtils::MM_Win32' => '1.09',
1082             'ExtUtils::MM_Win95' => '0.03',
1083             'ExtUtils::MY' => '0.01',
1084             'ExtUtils::MakeMaker' => '6.17',
1085             'ExtUtils::MakeMaker::bytes'=> '0.01',
1086             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1087             'ExtUtils::Manifest' => '1.42',
1088             'ExtUtils::Mkbootstrap' => '1.15',
1089             'ExtUtils::Mksymlists' => '1.19',
1090             'ExtUtils::Packlist' => '0.04',
1091             'ExtUtils::testlib' => '1.15',
1092             'File::Spec' => '0.86',
1093             'File::Spec::Cygwin' => '1.1',
1094             'File::Spec::Epoc' => '1.1',
1095             'File::Spec::Functions' => '1.3',
1096             'File::Spec::Mac' => '1.4',
1097             'File::Spec::OS2' => '1.2',
1098             'File::Spec::Unix' => '1.5',
1099             'File::Spec::VMS' => '1.4',
1100             'File::Spec::Win32' => '1.4',
1101             'File::Temp' => '0.14',
1102             'Safe' => '2.10',
1103             'Test' => '1.24',
1104             'Test::Builder' => '0.17',
1105             'Test::Harness' => '2.30',
1106             'Test::Harness::Assert' => '0.01',
1107             'Test::Harness::Iterator'=> '0.01',
1108             'Test::Harness::Straps' => '0.15',
1109             'Test::More' => '0.47',
1110             'Test::Simple' => '0.47',
1111             'Unicode' => '3.0.1',
1112             'if' => '0.03',
1113             'ops' => '1.00',
1114             },
1115             removed => {
1116             }
1117             },
1118             5.007003 => {
1119             delta_from => 5.006001,
1120             changed => {
1121             'AnyDBM_File' => '1.00',
1122             'Attribute::Handlers' => '0.76',
1123             'AutoLoader' => '5.59',
1124             'AutoSplit' => '1.0307',
1125             'B' => '1.00',
1126             'B::Asmdata' => '1.00',
1127             'B::Assembler' => '0.04',
1128             'B::Bblock' => '1.00',
1129             'B::Bytecode' => '1.00',
1130             'B::C' => '1.01',
1131             'B::CC' => '1.00',
1132             'B::Concise' => '0.52',
1133             'B::Debug' => '1.00',
1134             'B::Deparse' => '0.63',
1135             'B::Disassembler' => '1.01',
1136             'B::Lint' => '1.00',
1137             'B::Showlex' => '1.00',
1138             'B::Stackobj' => '1.00',
1139             'B::Stash' => '1.00',
1140             'B::Terse' => '1.00',
1141             'B::Xref' => '1.00',
1142             'Benchmark' => '1.04',
1143             'CGI' => '2.80',
1144             'CGI::Apache' => '1.00',
1145             'CGI::Carp' => '1.22',
1146             'CGI::Cookie' => '1.20',
1147             'CGI::Fast' => '1.04',
1148             'CGI::Pretty' => '1.05_00',
1149             'CGI::Switch' => '1.00',
1150             'CGI::Util' => '1.3',
1151             'CPAN' => '1.59_56',
1152             'CPAN::FirstTime' => '1.54',
1153             'CPAN::Nox' => '1.00_01',
1154             'Carp' => '1.01',
1155             'Carp::Heavy' => '1.01',
1156             'Class::ISA' => '0.32',
1157             'Class::Struct' => '0.61',
1158             'Cwd' => '2.06',
1159             'DB_File' => '1.804',
1160             'Data::Dumper' => '2.12',
1161             'Devel::DProf' => '20000000.00_01',
1162             'Devel::PPPort' => '2.0002',
1163             'Devel::Peek' => '1.00_03',
1164             'Devel::SelfStubber' => '1.03',
1165             'Digest' => '1.00',
1166             'Digest::MD5' => '2.16',
1167             'DirHandle' => '1.00',
1168             'Dumpvalue' => '1.10',
1169             'Encode' => '0.40',
1170             'Encode::CN' => '0.02',
1171             'Encode::CN::HZ' => undef,
1172             'Encode::Encoding' => '0.02',
1173             'Encode::Internal' => '0.30',
1174             'Encode::JP' => '0.02',
1175             'Encode::JP::Constants' => '1.02',
1176             'Encode::JP::H2Z' => '0.77',
1177             'Encode::JP::ISO_2022_JP'=> undef,
1178             'Encode::JP::JIS' => undef,
1179             'Encode::JP::Tr' => '0.77',
1180             'Encode::KR' => '0.02',
1181             'Encode::TW' => '0.02',
1182             'Encode::Tcl' => '1.01',
1183             'Encode::Tcl::Escape' => '1.01',
1184             'Encode::Tcl::Extended' => '1.01',
1185             'Encode::Tcl::HanZi' => '1.01',
1186             'Encode::Tcl::Table' => '1.01',
1187             'Encode::Unicode' => '0.30',
1188             'Encode::XS' => '0.40',
1189             'Encode::iso10646_1' => '0.30',
1190             'Encode::usc2_le' => '0.30',
1191             'Encode::utf8' => '0.30',
1192             'English' => '1.00',
1193             'Env' => '1.00',
1194             'Exporter' => '5.566',
1195             'Exporter::Heavy' => '5.562',
1196             'ExtUtils::Command' => '1.02',
1197             'ExtUtils::Constant' => '0.11',
1198             'ExtUtils::Embed' => '1.250601',
1199             'ExtUtils::Install' => '1.29',
1200             'ExtUtils::Installed' => '0.04',
1201             'ExtUtils::Liblist' => '1.2701',
1202             'ExtUtils::MM_BeOS' => '1.00',
1203             'ExtUtils::MM_Cygwin' => '1.00',
1204             'ExtUtils::MM_OS2' => '1.00',
1205             'ExtUtils::MM_Unix' => '1.12607',
1206             'ExtUtils::MM_VMS' => '5.56',
1207             'ExtUtils::MM_Win32' => '1.00_02',
1208             'ExtUtils::MakeMaker' => '5.48_03',
1209             'ExtUtils::Manifest' => '1.35',
1210             'ExtUtils::Mkbootstrap' => '1.1401',
1211             'ExtUtils::Mksymlists' => '1.18',
1212             'ExtUtils::Packlist' => '0.04',
1213             'ExtUtils::testlib' => '1.1201',
1214             'Fatal' => '1.03',
1215             'Fcntl' => '1.04',
1216             'File::Basename' => '2.71',
1217             'File::CheckTree' => '4.1',
1218             'File::Compare' => '1.1003',
1219             'File::Copy' => '2.05',
1220             'File::DosGlob' => '1.00',
1221             'File::Find' => '1.04',
1222             'File::Glob' => '1.01',
1223             'File::Path' => '1.05',
1224             'File::Spec' => '0.83',
1225             'File::Spec::Cygwin' => '1.0',
1226             'File::Spec::Epoc' => '1.00',
1227             'File::Spec::Functions' => '1.2',
1228             'File::Spec::Mac' => '1.3',
1229             'File::Spec::Unix' => '1.4',
1230             'File::Spec::VMS' => '1.2',
1231             'File::Spec::Win32' => '1.3',
1232             'File::Temp' => '0.13',
1233             'File::stat' => '1.00',
1234             'FileCache' => '1.00',
1235             'FileHandle' => '2.01',
1236             'Filter::Simple' => '0.77',
1237             'Filter::Util::Call' => '1.06',
1238             'FindBin' => '1.43',
1239             'GDBM_File' => '1.06',
1240             'Getopt::Long' => '2.28',
1241             'Getopt::Std' => '1.03',
1242             'I18N::Collate' => '1.00',
1243             'I18N::LangTags' => '0.27',
1244             'I18N::LangTags::List' => '0.25',
1245             'I18N::Langinfo' => '0.01',
1246             'IO::Dir' => '1.03_00',
1247             'IO::File' => '1.09',
1248             'IO::Handle' => '1.21_00',
1249             'IO::Pipe' => '1.122',
1250             'IO::Poll' => '0.06',
1251             'IO::Seekable' => '1.08_00',
1252             'IO::Select' => '1.15',
1253             'IO::Socket' => '1.27',
1254             'IO::Socket::INET' => '1.26',
1255             'IO::Socket::UNIX' => '1.20_00',
1256             'IPC::Msg' => '1.00_00',
1257             'IPC::Open3' => '1.0104',
1258             'IPC::Semaphore' => '1.00_00',
1259             'IPC::SysV' => '1.03_00',
1260             'List::Util' => '1.06_00',
1261             'Locale::Constants' => '2.01',
1262             'Locale::Country' => '2.01',
1263             'Locale::Currency' => '2.01',
1264             'Locale::Language' => '2.01',
1265             'Locale::Maketext' => '1.03',
1266             'Locale::Script' => '2.01',
1267             'MIME::Base64' => '2.12',
1268             'MIME::QuotedPrint' => '2.03',
1269             'Math::BigFloat' => '1.30',
1270             'Math::BigInt' => '1.54',
1271             'Math::BigInt::Calc' => '0.25',
1272             'Math::Complex' => '1.34',
1273             'Math::Trig' => '1.01',
1274             'Memoize' => '0.66',
1275             'Memoize::AnyDBM_File' => '0.65',
1276             'Memoize::Expire' => '0.66',
1277             'Memoize::ExpireFile' => '0.65',
1278             'Memoize::ExpireTest' => '0.65',
1279             'Memoize::NDBM_File' => '0.65',
1280             'Memoize::SDBM_File' => '0.65',
1281             'Memoize::Storable' => '0.65',
1282             'NEXT' => '0.50',
1283             'Net::Cmd' => '2.21',
1284             'Net::Config' => '1.10',
1285             'Net::Domain' => '2.17',
1286             'Net::FTP' => '2.64',
1287             'Net::FTP::A' => '1.15',
1288             'Net::FTP::E' => '0.01',
1289             'Net::FTP::I' => '1.12',
1290             'Net::FTP::L' => '0.01',
1291             'Net::FTP::dataconn' => '0.10',
1292             'Net::NNTP' => '2.21',
1293             'Net::Netrc' => '2.12',
1294             'Net::POP3' => '2.23',
1295             'Net::Ping' => '2.12',
1296             'Net::SMTP' => '2.21',
1297             'Net::Time' => '2.09',
1298             'Net::hostent' => '1.00',
1299             'Net::netent' => '1.00',
1300             'Net::protoent' => '1.00',
1301             'Net::servent' => '1.00',
1302             'O' => '1.00',
1303             'OS2::DLL' => '1.00',
1304             'OS2::Process' => '1.0',
1305             'OS2::REXX' => '1.01',
1306             'Opcode' => '1.05',
1307             'POSIX' => '1.05',
1308             'PerlIO' => '1.00',
1309             'PerlIO::Scalar' => '0.01',
1310             'PerlIO::Via' => '0.01',
1311             'Pod::Checker' => '1.3',
1312             'Pod::Find' => '0.22',
1313             'Pod::Functions' => '1.01',
1314             'Pod::Html' => '1.04',
1315             'Pod::LaTeX' => '0.54',
1316             'Pod::Man' => '1.32',
1317             'Pod::ParseLink' => '1.05',
1318             'Pod::Text' => '2.18',
1319             'Pod::Text::Color' => '1.03',
1320             'Pod::Text::Overstrike' => '1.08',
1321             'Pod::Text::Termcap' => '1.09',
1322             'Safe' => '2.07',
1323             'Scalar::Util' => '1.06_00',
1324             'Search::Dict' => '1.02',
1325             'SelectSaver' => '1.00',
1326             'SelfLoader' => '1.0903',
1327             'Shell' => '0.4',
1328             'Socket' => '1.75',
1329             'Storable' => '1.015',
1330             'Switch' => '2.06',
1331             'Symbol' => '1.04',
1332             'Sys::Syslog' => '0.02',
1333             'Term::ANSIColor' => '1.04',
1334             'Term::Cap' => '1.07',
1335             'Term::Complete' => '1.4',
1336             'Term::ReadLine' => '1.00',
1337             'Test' => '1.18',
1338             'Test::Builder' => '0.11',
1339             'Test::Harness' => '2.01',
1340             'Test::Harness::Assert' => '0.01',
1341             'Test::Harness::Iterator'=> '0.01',
1342             'Test::Harness::Straps' => '0.08',
1343             'Test::More' => '0.41',
1344             'Test::Simple' => '0.41',
1345             'Text::Abbrev' => '1.00',
1346             'Text::Balanced' => '1.89',
1347             'Text::ParseWords' => '3.21',
1348             'Text::Soundex' => '1.01',
1349             'Text::Wrap' => '2001.0929',
1350             'Thread' => '2.00',
1351             'Thread::Queue' => '1.00',
1352             'Thread::Semaphore' => '1.00',
1353             'Thread::Signal' => '1.00',
1354             'Thread::Specific' => '1.00',
1355             'Tie::Array' => '1.02',
1356             'Tie::File' => '0.17',
1357             'Tie::Handle' => '4.1',
1358             'Tie::Hash' => '1.00',
1359             'Tie::Memoize' => '1.0',
1360             'Tie::RefHash' => '1.3_00',
1361             'Tie::Scalar' => '1.00',
1362             'Tie::SubstrHash' => '1.00',
1363             'Time::HiRes' => '1.20_00',
1364             'Time::Local' => '1.04',
1365             'Time::gmtime' => '1.02',
1366             'Time::localtime' => '1.02',
1367             'Time::tm' => '1.00',
1368             'UNIVERSAL' => '1.00',
1369             'Unicode::Collate' => '0.10',
1370             'Unicode::Normalize' => '0.14',
1371             'Unicode::UCD' => '0.2',
1372             'User::grent' => '1.00',
1373             'User::pwent' => '1.00',
1374             'VMS::DCLsym' => '1.02',
1375             'VMS::Filespec' => '1.1',
1376             'VMS::Stdio' => '2.3',
1377             'XS::Typemap' => '0.01',
1378             'attributes' => '0.04_01',
1379             'attrs' => '1.01',
1380             'autouse' => '1.03',
1381             'base' => '1.02',
1382             'blib' => '1.01',
1383             'bytes' => '1.00',
1384             'charnames' => '1.01',
1385             'constant' => '1.04',
1386             'diagnostics' => '1.1',
1387             'encoding' => '1.00',
1388             'fields' => '1.02',
1389             'filetest' => '1.00',
1390             'if' => '0.01',
1391             'integer' => '1.00',
1392             'less' => '0.01',
1393             'locale' => '1.00',
1394             'open' => '1.01',
1395             'ops' => '1.00',
1396             'overload' => '1.00',
1397             're' => '0.03',
1398             'sort' => '1.00',
1399             'strict' => '1.02',
1400             'subs' => '1.00',
1401             'threads' => '0.05',
1402             'threads::shared' => '0.90',
1403             'utf8' => '1.00',
1404             'vars' => '1.01',
1405             'vmsish' => '1.00',
1406             'warnings' => '1.00',
1407             'warnings::register' => '1.00',
1408             },
1409             removed => {
1410             }
1411             },
1412             5.008 => {
1413             delta_from => 5.007003,
1414             changed => {
1415             'Attribute::Handlers' => '0.77',
1416             'B' => '1.01',
1417             'B::Lint' => '1.01',
1418             'B::Xref' => '1.01',
1419             'CGI' => '2.81',
1420             'CGI::Carp' => '1.23',
1421             'CPAN' => '1.61',
1422             'CPAN::FirstTime' => '1.56',
1423             'CPAN::Nox' => '1.02',
1424             'Digest::MD5' => '2.20',
1425             'Dumpvalue' => '1.11',
1426             'Encode' => '1.75',
1427             'Encode::Alias' => '1.32',
1428             'Encode::Byte' => '1.22',
1429             'Encode::CJKConstants' => '1.00',
1430             'Encode::CN' => '1.24',
1431             'Encode::CN::HZ' => '1.04',
1432             'Encode::Config' => '1.06',
1433             'Encode::EBCDIC' => '1.21',
1434             'Encode::Encoder' => '0.05',
1435             'Encode::Encoding' => '1.30',
1436             'Encode::Guess' => '1.06',
1437             'Encode::JP' => '1.25',
1438             'Encode::JP::H2Z' => '1.02',
1439             'Encode::JP::JIS7' => '1.08',
1440             'Encode::KR' => '1.22',
1441             'Encode::KR::2022_KR' => '1.05',
1442             'Encode::MIME::Header' => '1.05',
1443             'Encode::Symbol' => '1.22',
1444             'Encode::TW' => '1.26',
1445             'Encode::Unicode' => '1.37',
1446             'Exporter::Heavy' => '5.566',
1447             'ExtUtils::Command' => '1.04',
1448             'ExtUtils::Command::MM' => '0.01',
1449             'ExtUtils::Constant' => '0.12',
1450             'ExtUtils::Installed' => '0.06',
1451             'ExtUtils::Liblist' => '1.00',
1452             'ExtUtils::Liblist::Kid'=> '1.29',
1453             'ExtUtils::MM' => '0.04',
1454             'ExtUtils::MM_Any' => '0.04',
1455             'ExtUtils::MM_BeOS' => '1.03',
1456             'ExtUtils::MM_Cygwin' => '1.04',
1457             'ExtUtils::MM_DOS' => '0.01',
1458             'ExtUtils::MM_MacOS' => '1.03',
1459             'ExtUtils::MM_NW5' => '2.05',
1460             'ExtUtils::MM_OS2' => '1.03',
1461             'ExtUtils::MM_UWIN' => '0.01',
1462             'ExtUtils::MM_Unix' => '1.33',
1463             'ExtUtils::MM_VMS' => '5.65',
1464             'ExtUtils::MM_Win32' => '1.05',
1465             'ExtUtils::MM_Win95' => '0.02',
1466             'ExtUtils::MY' => '0.01',
1467             'ExtUtils::MakeMaker' => '6.03',
1468             'ExtUtils::Manifest' => '1.38',
1469             'ExtUtils::Mkbootstrap' => '1.15',
1470             'ExtUtils::Mksymlists' => '1.19',
1471             'ExtUtils::testlib' => '1.15',
1472             'File::CheckTree' => '4.2',
1473             'FileCache' => '1.021',
1474             'Filter::Simple' => '0.78',
1475             'Getopt::Long' => '2.32',
1476             'Hash::Util' => '0.04',
1477             'List::Util' => '1.07_00',
1478             'Locale::Country' => '2.04',
1479             'Math::BigFloat' => '1.35',
1480             'Math::BigFloat::Trace' => '0.01',
1481             'Math::BigInt' => '1.60',
1482             'Math::BigInt::Calc' => '0.30',
1483             'Math::BigInt::Trace' => '0.01',
1484             'Math::BigRat' => '0.07',
1485             'Memoize' => '1.01',
1486             'Memoize::Expire' => '1.00',
1487             'Memoize::ExpireFile' => '1.01',
1488             'Net::FTP' => '2.65',
1489             'Net::FTP::dataconn' => '0.11',
1490             'Net::Ping' => '2.19',
1491             'Net::SMTP' => '2.24',
1492             'PerlIO' => '1.01',
1493             'PerlIO::encoding' => '0.06',
1494             'PerlIO::scalar' => '0.01',
1495             'PerlIO::via' => '0.01',
1496             'PerlIO::via::QuotedPrint'=> '0.04',
1497             'Pod::Man' => '1.33',
1498             'Pod::Text' => '2.19',
1499             'Scalar::Util' => '1.07_00',
1500             'Storable' => '2.04',
1501             'Switch' => '2.09',
1502             'Sys::Syslog' => '0.03',
1503             'Test' => '1.20',
1504             'Test::Builder' => '0.15',
1505             'Test::Harness' => '2.26',
1506             'Test::Harness::Straps' => '0.14',
1507             'Test::More' => '0.45',
1508             'Test::Simple' => '0.45',
1509             'Thread::Queue' => '2.00',
1510             'Thread::Semaphore' => '2.00',
1511             'Tie::File' => '0.93',
1512             'Tie::RefHash' => '1.30',
1513             'Unicode' => '3.2.0',
1514             'Unicode::Collate' => '0.12',
1515             'Unicode::Normalize' => '0.17',
1516             'XS::APItest' => '0.01',
1517             'attributes' => '0.05',
1518             'base' => '1.03',
1519             'bigint' => '0.02',
1520             'bignum' => '0.11',
1521             'bigrat' => '0.04',
1522             'blib' => '1.02',
1523             'encoding' => '1.35',
1524             'sort' => '1.01',
1525             'threads' => '0.99',
1526             },
1527             removed => {
1528             'Encode::Internal' => 1,
1529             'Encode::JP::Constants' => 1,
1530             'Encode::JP::ISO_2022_JP'=> 1,
1531             'Encode::JP::JIS' => 1,
1532             'Encode::JP::Tr' => 1,
1533             'Encode::Tcl' => 1,
1534             'Encode::Tcl::Escape' => 1,
1535             'Encode::Tcl::Extended' => 1,
1536             'Encode::Tcl::HanZi' => 1,
1537             'Encode::Tcl::Table' => 1,
1538             'Encode::XS' => 1,
1539             'Encode::iso10646_1' => 1,
1540             'Encode::usc2_le' => 1,
1541             'Encode::utf8' => 1,
1542             'PerlIO::Scalar' => 1,
1543             'PerlIO::Via' => 1,
1544             }
1545             },
1546             5.008001 => {
1547             delta_from => 5.008,
1548             changed => {
1549             'Attribute::Handlers' => '0.78',
1550             'AutoLoader' => '5.60',
1551             'AutoSplit' => '1.04',
1552             'B' => '1.02',
1553             'B::Asmdata' => '1.01',
1554             'B::Assembler' => '0.06',
1555             'B::Bblock' => '1.02',
1556             'B::Bytecode' => '1.01',
1557             'B::C' => '1.02',
1558             'B::Concise' => '0.56',
1559             'B::Debug' => '1.01',
1560             'B::Deparse' => '0.64',
1561             'B::Disassembler' => '1.03',
1562             'B::Lint' => '1.02',
1563             'B::Terse' => '1.02',
1564             'Benchmark' => '1.051',
1565             'ByteLoader' => '0.05',
1566             'CGI' => '3.00',
1567             'CGI::Carp' => '1.26',
1568             'CGI::Cookie' => '1.24',
1569             'CGI::Fast' => '1.041',
1570             'CGI::Pretty' => '1.07_00',
1571             'CGI::Util' => '1.31',
1572             'CPAN' => '1.76_01',
1573             'CPAN::FirstTime' => '1.60',
1574             'CPAN::Nox' => '1.03',
1575             'Class::Struct' => '0.63',
1576             'Cwd' => '2.08',
1577             'DB_File' => '1.806',
1578             'Data::Dumper' => '2.121',
1579             'Devel::DProf' => '20030813.00',
1580             'Devel::PPPort' => '2.007',
1581             'Devel::Peek' => '1.01',
1582             'Digest' => '1.02',
1583             'Digest::MD5' => '2.27',
1584             'Encode' => '1.9801',
1585             'Encode::Alias' => '1.38',
1586             'Encode::Byte' => '1.23',
1587             'Encode::CJKConstants' => '1.02',
1588             'Encode::CN::HZ' => '1.05',
1589             'Encode::Config' => '1.07',
1590             'Encode::Encoder' => '0.07',
1591             'Encode::Encoding' => '1.33',
1592             'Encode::Guess' => '1.09',
1593             'Encode::JP::JIS7' => '1.12',
1594             'Encode::KR' => '1.23',
1595             'Encode::KR::2022_KR' => '1.06',
1596             'Encode::MIME::Header' => '1.09',
1597             'Encode::Unicode' => '1.40',
1598             'Encode::Unicode::UTF7' => '0.02',
1599             'English' => '1.01',
1600             'Errno' => '1.09_00',
1601             'Exporter' => '5.567',
1602             'Exporter::Heavy' => '5.567',
1603             'ExtUtils::Command' => '1.05',
1604             'ExtUtils::Command::MM' => '0.03',
1605             'ExtUtils::Constant' => '0.14',
1606             'ExtUtils::Install' => '1.32',
1607             'ExtUtils::Installed' => '0.08',
1608             'ExtUtils::Liblist' => '1.01',
1609             'ExtUtils::Liblist::Kid'=> '1.3',
1610             'ExtUtils::MM_Any' => '0.07',
1611             'ExtUtils::MM_BeOS' => '1.04',
1612             'ExtUtils::MM_Cygwin' => '1.06',
1613             'ExtUtils::MM_DOS' => '0.02',
1614             'ExtUtils::MM_MacOS' => '1.07',
1615             'ExtUtils::MM_NW5' => '2.06',
1616             'ExtUtils::MM_OS2' => '1.04',
1617             'ExtUtils::MM_UWIN' => '0.02',
1618             'ExtUtils::MM_Unix' => '1.42',
1619             'ExtUtils::MM_VMS' => '5.70',
1620             'ExtUtils::MM_Win32' => '1.09',
1621             'ExtUtils::MM_Win95' => '0.03',
1622             'ExtUtils::MakeMaker' => '6.17',
1623             'ExtUtils::MakeMaker::bytes'=> '0.01',
1624             'ExtUtils::MakeMaker::vmsish'=> '0.01',
1625             'ExtUtils::Manifest' => '1.42',
1626             'Fcntl' => '1.05',
1627             'File::Basename' => '2.72',
1628             'File::Copy' => '2.06',
1629             'File::Find' => '1.05',
1630             'File::Glob' => '1.02',
1631             'File::Path' => '1.06',
1632             'File::Spec' => '0.86',
1633             'File::Spec::Cygwin' => '1.1',
1634             'File::Spec::Epoc' => '1.1',
1635             'File::Spec::Functions' => '1.3',
1636             'File::Spec::Mac' => '1.4',
1637             'File::Spec::OS2' => '1.2',
1638             'File::Spec::Unix' => '1.5',
1639             'File::Spec::VMS' => '1.4',
1640             'File::Spec::Win32' => '1.4',
1641             'File::Temp' => '0.14',
1642             'FileCache' => '1.03',
1643             'Filter::Util::Call' => '1.0601',
1644             'GDBM_File' => '1.07',
1645             'Getopt::Long' => '2.34',
1646             'Getopt::Std' => '1.04',
1647             'Hash::Util' => '0.05',
1648             'I18N::LangTags' => '0.28',
1649             'I18N::LangTags::List' => '0.26',
1650             'I18N::Langinfo' => '0.02',
1651             'IO' => '1.21',
1652             'IO::Dir' => '1.04',
1653             'IO::File' => '1.10',
1654             'IO::Handle' => '1.23',
1655             'IO::Seekable' => '1.09',
1656             'IO::Select' => '1.16',
1657             'IO::Socket' => '1.28',
1658             'IO::Socket::INET' => '1.27',
1659             'IO::Socket::UNIX' => '1.21',
1660             'IPC::Msg' => '1.02',
1661             'IPC::Open3' => '1.0105',
1662             'IPC::Semaphore' => '1.02',
1663             'IPC::SysV' => '1.04',
1664             'JNI' => '0.2',
1665             'List::Util' => '1.13',
1666             'Locale::Country' => '2.61',
1667             'Locale::Currency' => '2.21',
1668             'Locale::Language' => '2.21',
1669             'Locale::Maketext' => '1.06',
1670             'Locale::Maketext::Guts'=> undef,
1671             'Locale::Maketext::GutsLoader'=> undef,
1672             'Locale::Script' => '2.21',
1673             'MIME::Base64' => '2.20',
1674             'MIME::QuotedPrint' => '2.20',
1675             'Math::BigFloat' => '1.40',
1676             'Math::BigInt' => '1.66',
1677             'Math::BigInt::Calc' => '0.36',
1678             'Math::BigInt::Scalar' => '0.11',
1679             'Math::BigRat' => '0.10',
1680             'Math::Trig' => '1.02',
1681             'NDBM_File' => '1.05',
1682             'NEXT' => '0.60',
1683             'Net::Cmd' => '2.24',
1684             'Net::Domain' => '2.18',
1685             'Net::FTP' => '2.71',
1686             'Net::FTP::A' => '1.16',
1687             'Net::NNTP' => '2.22',
1688             'Net::POP3' => '2.24',
1689             'Net::Ping' => '2.31',
1690             'Net::SMTP' => '2.26',
1691             'Net::hostent' => '1.01',
1692             'Net::servent' => '1.01',
1693             'ODBM_File' => '1.04',
1694             'OS2::DLL' => '1.01',
1695             'OS2::ExtAttr' => '0.02',
1696             'OS2::PrfDB' => '0.03',
1697             'OS2::Process' => '1.01',
1698             'OS2::REXX' => '1.02',
1699             'POSIX' => '1.06',
1700             'PerlIO' => '1.02',
1701             'PerlIO::encoding' => '0.07',
1702             'PerlIO::scalar' => '0.02',
1703             'PerlIO::via' => '0.02',
1704             'PerlIO::via::QuotedPrint'=> '0.05',
1705             'Pod::Checker' => '1.41',
1706             'Pod::Find' => '0.24',
1707             'Pod::Functions' => '1.02',
1708             'Pod::Html' => '1.0501',
1709             'Pod::InputObjects' => '1.14',
1710             'Pod::LaTeX' => '0.55',
1711             'Pod::Man' => '1.37',
1712             'Pod::ParseLink' => '1.06',
1713             'Pod::ParseUtils' => '0.3',
1714             'Pod::Perldoc' => '3.10',
1715             'Pod::Perldoc::BaseTo' => undef,
1716             'Pod::Perldoc::GetOptsOO'=> undef,
1717             'Pod::Perldoc::ToChecker'=> undef,
1718             'Pod::Perldoc::ToMan' => undef,
1719             'Pod::Perldoc::ToNroff' => undef,
1720             'Pod::Perldoc::ToPod' => undef,
1721             'Pod::Perldoc::ToRtf' => undef,
1722             'Pod::Perldoc::ToText' => undef,
1723             'Pod::Perldoc::ToTk' => undef,
1724             'Pod::Perldoc::ToXml' => undef,
1725             'Pod::PlainText' => '2.01',
1726             'Pod::Text' => '2.21',
1727             'Pod::Text::Color' => '1.04',
1728             'Pod::Text::Overstrike' => '1.1',
1729             'Pod::Text::Termcap' => '1.11',
1730             'Pod::Usage' => '1.16',
1731             'SDBM_File' => '1.04',
1732             'Safe' => '2.10',
1733             'Scalar::Util' => '1.13',
1734             'SelfLoader' => '1.0904',
1735             'Shell' => '0.5',
1736             'Socket' => '1.76',
1737             'Storable' => '2.08',
1738             'Switch' => '2.10',
1739             'Symbol' => '1.05',
1740             'Sys::Hostname' => '1.11',
1741             'Sys::Syslog' => '0.04',
1742             'Term::ANSIColor' => '1.07',
1743             'Term::Cap' => '1.08',
1744             'Term::Complete' => '1.401',
1745             'Term::ReadLine' => '1.01',
1746             'Test' => '1.24',
1747             'Test::Builder' => '0.17',
1748             'Test::Harness' => '2.30',
1749             'Test::Harness::Straps' => '0.15',
1750             'Test::More' => '0.47',
1751             'Test::Simple' => '0.47',
1752             'Text::Abbrev' => '1.01',
1753             'Text::Balanced' => '1.95',
1754             'Text::Wrap' => '2001.09291',
1755             'Thread::Semaphore' => '2.01',
1756             'Tie::Array' => '1.03',
1757             'Tie::File' => '0.97',
1758             'Tie::RefHash' => '1.31',
1759             'Time::HiRes' => '1.51',
1760             'Time::Local' => '1.07',
1761             'UNIVERSAL' => '1.01',
1762             'Unicode' => '4.0.0',
1763             'Unicode::Collate' => '0.28',
1764             'Unicode::Normalize' => '0.23',
1765             'Unicode::UCD' => '0.21',
1766             'VMS::Filespec' => '1.11',
1767             'XS::APItest' => '0.02',
1768             'XSLoader' => '0.02',
1769             'attributes' => '0.06',
1770             'base' => '2.03',
1771             'bigint' => '0.04',
1772             'bignum' => '0.14',
1773             'bigrat' => '0.06',
1774             'bytes' => '1.01',
1775             'charnames' => '1.02',
1776             'diagnostics' => '1.11',
1777             'encoding' => '1.47',
1778             'fields' => '2.03',
1779             'filetest' => '1.01',
1780             'if' => '0.03',
1781             'lib' => '0.5565',
1782             'open' => '1.02',
1783             'overload' => '1.01',
1784             're' => '0.04',
1785             'sort' => '1.02',
1786             'strict' => '1.03',
1787             'threads' => '1.00',
1788             'threads::shared' => '0.91',
1789             'utf8' => '1.02',
1790             'vmsish' => '1.01',
1791             'warnings' => '1.03',
1792             },
1793             removed => {
1794             }
1795             },
1796             5.008002 => {
1797             delta_from => 5.008001,
1798             changed => {
1799             'DB_File' => '1.807',
1800             'Devel::PPPort' => '2.009',
1801             'Digest::MD5' => '2.30',
1802             'I18N::LangTags' => '0.29',
1803             'I18N::LangTags::List' => '0.29',
1804             'MIME::Base64' => '2.21',
1805             'MIME::QuotedPrint' => '2.21',
1806             'Net::Domain' => '2.19',
1807             'Net::FTP' => '2.72',
1808             'Pod::Perldoc' => '3.11',
1809             'Time::HiRes' => '1.52',
1810             'Unicode::Collate' => '0.30',
1811             'Unicode::Normalize' => '0.25',
1812             },
1813             removed => {
1814             }
1815             },
1816             5.008003 => {
1817             delta_from => 5.008002,
1818             changed => {
1819             'Benchmark' => '1.052',
1820             'CGI' => '3.01',
1821             'CGI::Carp' => '1.27',
1822             'CGI::Fast' => '1.05',
1823             'CGI::Pretty' => '1.08',
1824             'CGI::Util' => '1.4',
1825             'Cwd' => '2.12',
1826             'DB_File' => '1.808',
1827             'Devel::PPPort' => '2.011',
1828             'Digest' => '1.05',
1829             'Digest::MD5' => '2.33',
1830             'Digest::base' => '1.00',
1831             'Encode' => '1.99',
1832             'Exporter' => '5.57',
1833             'File::CheckTree' => '4.3',
1834             'File::Copy' => '2.07',
1835             'File::Find' => '1.06',
1836             'File::Spec' => '0.87',
1837             'FindBin' => '1.44',
1838             'Getopt::Std' => '1.05',
1839             'Math::BigFloat' => '1.42',
1840             'Math::BigInt' => '1.68',
1841             'Math::BigInt::Calc' => '0.38',
1842             'Math::BigInt::CalcEmu' => '0.02',
1843             'OS2::DLL' => '1.02',
1844             'POSIX' => '1.07',
1845             'PerlIO' => '1.03',
1846             'PerlIO::via::QuotedPrint'=> '0.06',
1847             'Pod::Html' => '1.0502',
1848             'Pod::Parser' => '1.14',
1849             'Pod::Perldoc' => '3.12',
1850             'Pod::PlainText' => '2.02',
1851             'Storable' => '2.09',
1852             'Test::Harness' => '2.40',
1853             'Test::Harness::Assert' => '0.02',
1854             'Test::Harness::Iterator'=> '0.02',
1855             'Test::Harness::Straps' => '0.19',
1856             'Tie::Hash' => '1.01',
1857             'Unicode::Collate' => '0.33',
1858             'Unicode::Normalize' => '0.28',
1859             'XS::APItest' => '0.03',
1860             'base' => '2.04',
1861             'diagnostics' => '1.12',
1862             'encoding' => '1.48',
1863             'threads' => '1.01',
1864             'threads::shared' => '0.92',
1865             },
1866             removed => {
1867             'Math::BigInt::Scalar' => 1,
1868             }
1869             },
1870             5.008004 => {
1871             delta_from => 5.008003,
1872             changed => {
1873             'Attribute::Handlers' => '0.78_01',
1874             'B::Assembler' => '0.07',
1875             'B::Concise' => '0.60',
1876             'B::Deparse' => '0.66',
1877             'Benchmark' => '1.06',
1878             'CGI' => '3.04',
1879             'Carp' => '1.02',
1880             'Cwd' => '2.17',
1881             'DBM_Filter' => '0.01',
1882             'DBM_Filter::compress' => '0.01',
1883             'DBM_Filter::encode' => '0.01',
1884             'DBM_Filter::int32' => '0.01',
1885             'DBM_Filter::null' => '0.01',
1886             'DBM_Filter::utf8' => '0.01',
1887             'Digest' => '1.06',
1888             'DynaLoader' => '1.05',
1889             'Encode' => '1.99_01',
1890             'Encode::CN::HZ' => '1.0501',
1891             'Exporter' => '5.58',
1892             'Exporter::Heavy' => '5.57',
1893             'ExtUtils::Liblist::Kid'=> '1.3001',
1894             'ExtUtils::MM_NW5' => '2.07_02',
1895             'ExtUtils::MM_Win95' => '0.0301',
1896             'File::Find' => '1.07',
1897             'IO::Handle' => '1.24',
1898             'IO::Pipe' => '1.123',
1899             'IPC::Open3' => '1.0106',
1900             'Locale::Maketext' => '1.08',
1901             'MIME::Base64' => '3.01',
1902             'MIME::QuotedPrint' => '3.01',
1903             'Math::BigFloat' => '1.44',
1904             'Math::BigInt' => '1.70',
1905             'Math::BigInt::Calc' => '0.40',
1906             'Math::BigInt::CalcEmu' => '0.04',
1907             'Math::BigRat' => '0.12',
1908             'ODBM_File' => '1.05',
1909             'POSIX' => '1.08',
1910             'Shell' => '0.5.2',
1911             'Socket' => '1.77',
1912             'Storable' => '2.12',
1913             'Sys::Syslog' => '0.05',
1914             'Term::ANSIColor' => '1.08',
1915             'Time::HiRes' => '1.59',
1916             'Unicode' => '4.0.1',
1917             'Unicode::UCD' => '0.22',
1918             'Win32' => '0.23',
1919             'base' => '2.05',
1920             'bigint' => '0.05',
1921             'bignum' => '0.15',
1922             'charnames' => '1.03',
1923             'open' => '1.03',
1924             'threads' => '1.03',
1925             'utf8' => '1.03',
1926             },
1927             removed => {
1928             }
1929             },
1930             5.008005 => {
1931             delta_from => 5.008004,
1932             changed => {
1933             'B::Concise' => '0.61',
1934             'B::Deparse' => '0.67',
1935             'CGI' => '3.05',
1936             'CGI::Carp' => '1.28',
1937             'CGI::Util' => '1.5',
1938             'Carp' => '1.03',
1939             'Carp::Heavy' => '1.03',
1940             'Cwd' => '2.19',
1941             'DB_File' => '1.809',
1942             'Digest' => '1.08',
1943             'Encode' => '2.01',
1944             'Encode::Alias' => '2.00',
1945             'Encode::Byte' => '2.00',
1946             'Encode::CJKConstants' => '2.00',
1947             'Encode::CN' => '2.00',
1948             'Encode::CN::HZ' => '2.01',
1949             'Encode::Config' => '2.00',
1950             'Encode::EBCDIC' => '2.00',
1951             'Encode::Encoder' => '2.00',
1952             'Encode::Encoding' => '2.00',
1953             'Encode::Guess' => '2.00',
1954             'Encode::JP' => '2.00',
1955             'Encode::JP::H2Z' => '2.00',
1956             'Encode::JP::JIS7' => '2.00',
1957             'Encode::KR' => '2.00',
1958             'Encode::KR::2022_KR' => '2.00',
1959             'Encode::MIME::Header' => '2.00',
1960             'Encode::Symbol' => '2.00',
1961             'Encode::TW' => '2.00',
1962             'Encode::Unicode' => '2.00',
1963             'Encode::Unicode::UTF7' => '2.01',
1964             'File::Basename' => '2.73',
1965             'File::Copy' => '2.08',
1966             'File::Glob' => '1.03',
1967             'FileCache' => '1.04_01',
1968             'I18N::LangTags' => '0.33',
1969             'I18N::LangTags::Detect'=> '1.03',
1970             'List::Util' => '1.14',
1971             'Locale::Constants' => '2.07',
1972             'Locale::Country' => '2.07',
1973             'Locale::Currency' => '2.07',
1974             'Locale::Language' => '2.07',
1975             'Locale::Maketext' => '1.09',
1976             'Locale::Script' => '2.07',
1977             'Net::Cmd' => '2.26',
1978             'Net::FTP' => '2.75',
1979             'Net::NNTP' => '2.23',
1980             'Net::POP3' => '2.28',
1981             'Net::SMTP' => '2.29',
1982             'Net::Time' => '2.10',
1983             'Pod::Checker' => '1.42',
1984             'Pod::Find' => '0.2401',
1985             'Pod::LaTeX' => '0.56',
1986             'Pod::ParseUtils' => '1.2',
1987             'Pod::Perldoc' => '3.13',
1988             'Safe' => '2.11',
1989             'Scalar::Util' => '1.14',
1990             'Shell' => '0.6',
1991             'Storable' => '2.13',
1992             'Term::Cap' => '1.09',
1993             'Test' => '1.25',
1994             'Test::Harness' => '2.42',
1995             'Text::ParseWords' => '3.22',
1996             'Text::Wrap' => '2001.09292',
1997             'Time::Local' => '1.10',
1998             'Unicode::Collate' => '0.40',
1999             'Unicode::Normalize' => '0.30',
2000             'XS::APItest' => '0.04',
2001             'autouse' => '1.04',
2002             'base' => '2.06',
2003             'charnames' => '1.04',
2004             'diagnostics' => '1.13',
2005             'encoding' => '2.00',
2006             'threads' => '1.05',
2007             'utf8' => '1.04',
2008             },
2009             removed => {
2010             }
2011             },
2012             5.008006 => {
2013             delta_from => 5.008005,
2014             changed => {
2015             'B' => '1.07',
2016             'B::C' => '1.04',
2017             'B::Concise' => '0.64',
2018             'B::Debug' => '1.02',
2019             'B::Deparse' => '0.69',
2020             'B::Lint' => '1.03',
2021             'B::Showlex' => '1.02',
2022             'Cwd' => '3.01',
2023             'DB_File' => '1.810',
2024             'Data::Dumper' => '2.121_02',
2025             'Devel::PPPort' => '3.03',
2026             'Devel::Peek' => '1.02',
2027             'Encode' => '2.08',
2028             'Encode::Alias' => '2.02',
2029             'Encode::Encoding' => '2.02',
2030             'Encode::JP' => '2.01',
2031             'Encode::Unicode' => '2.02',
2032             'Exporter::Heavy' => '5.58',
2033             'ExtUtils::Constant' => '0.1401',
2034             'File::Spec' => '3.01',
2035             'File::Spec::Win32' => '1.5',
2036             'I18N::LangTags' => '0.35',
2037             'I18N::LangTags::List' => '0.35',
2038             'MIME::Base64' => '3.05',
2039             'MIME::QuotedPrint' => '3.03',
2040             'Math::BigFloat' => '1.47',
2041             'Math::BigInt' => '1.73',
2042             'Math::BigInt::Calc' => '0.43',
2043             'Math::BigRat' => '0.13',
2044             'Text::ParseWords' => '3.23',
2045             'Time::HiRes' => '1.65',
2046             'XS::APItest' => '0.05',
2047             'diagnostics' => '1.14',
2048             'encoding' => '2.01',
2049             'open' => '1.04',
2050             'overload' => '1.02',
2051             },
2052             removed => {
2053             }
2054             },
2055             5.008007 => {
2056             delta_from => 5.008006,
2057             changed => {
2058             'B' => '1.09',
2059             'B::Concise' => '0.65',
2060             'B::Deparse' => '0.7',
2061             'B::Disassembler' => '1.04',
2062             'B::Terse' => '1.03',
2063             'Benchmark' => '1.07',
2064             'CGI' => '3.10',
2065             'CGI::Carp' => '1.29',
2066             'CGI::Cookie' => '1.25',
2067             'Carp' => '1.04',
2068             'Carp::Heavy' => '1.04',
2069             'Class::ISA' => '0.33',
2070             'Cwd' => '3.05',
2071             'DB_File' => '1.811',
2072             'Data::Dumper' => '2.121_04',
2073             'Devel::DProf' => '20050310.00',
2074             'Devel::PPPort' => '3.06',
2075             'Digest' => '1.10',
2076             'Digest::file' => '0.01',
2077             'Encode' => '2.10',
2078             'Encode::Alias' => '2.03',
2079             'Errno' => '1.09_01',
2080             'ExtUtils::Constant' => '0.16',
2081             'ExtUtils::Constant::Base'=> '0.01',
2082             'ExtUtils::Constant::Utils'=> '0.01',
2083             'ExtUtils::Constant::XS'=> '0.01',
2084             'File::Find' => '1.09',
2085             'File::Glob' => '1.04',
2086             'File::Path' => '1.07',
2087             'File::Spec' => '3.05',
2088             'File::Temp' => '0.16',
2089             'FileCache' => '1.05',
2090             'IO::File' => '1.11',
2091             'IO::Socket::INET' => '1.28',
2092             'Math::BigFloat' => '1.51',
2093             'Math::BigInt' => '1.77',
2094             'Math::BigInt::Calc' => '0.47',
2095             'Math::BigInt::CalcEmu' => '0.05',
2096             'Math::BigRat' => '0.15',
2097             'Pod::Find' => '1.3',
2098             'Pod::Html' => '1.0503',
2099             'Pod::InputObjects' => '1.3',
2100             'Pod::LaTeX' => '0.58',
2101             'Pod::ParseUtils' => '1.3',
2102             'Pod::Parser' => '1.3',
2103             'Pod::Perldoc' => '3.14',
2104             'Pod::Select' => '1.3',
2105             'Pod::Usage' => '1.3',
2106             'SelectSaver' => '1.01',
2107             'Symbol' => '1.06',
2108             'Sys::Syslog' => '0.06',
2109             'Term::ANSIColor' => '1.09',
2110             'Term::Complete' => '1.402',
2111             'Test::Builder' => '0.22',
2112             'Test::Harness' => '2.48',
2113             'Test::Harness::Point' => '0.01',
2114             'Test::Harness::Straps' => '0.23',
2115             'Test::More' => '0.54',
2116             'Test::Simple' => '0.54',
2117             'Text::ParseWords' => '3.24',
2118             'Text::Wrap' => '2001.09293',
2119             'Tie::RefHash' => '1.32',
2120             'Time::HiRes' => '1.66',
2121             'Time::Local' => '1.11',
2122             'Unicode' => '4.1.0',
2123             'Unicode::Normalize' => '0.32',
2124             'Unicode::UCD' => '0.23',
2125             'Win32' => '0.24',
2126             'XS::APItest' => '0.06',
2127             'base' => '2.07',
2128             'bigint' => '0.07',
2129             'bignum' => '0.17',
2130             'bigrat' => '0.08',
2131             'bytes' => '1.02',
2132             'constant' => '1.05',
2133             'overload' => '1.03',
2134             'threads::shared' => '0.93',
2135             'utf8' => '1.05',
2136             },
2137             removed => {
2138             'JNI' => 1,
2139             'JPL::AutoLoader' => 1,
2140             'JPL::Class' => 1,
2141             'JPL::Compile' => 1,
2142             }
2143             },
2144             5.008008 => {
2145             delta_from => 5.008007,
2146             changed => {
2147             'Attribute::Handlers' => '0.78_02',
2148             'B' => '1.09_01',
2149             'B::Bblock' => '1.02_01',
2150             'B::Bytecode' => '1.01_01',
2151             'B::C' => '1.04_01',
2152             'B::CC' => '1.00_01',
2153             'B::Concise' => '0.66',
2154             'B::Debug' => '1.02_01',
2155             'B::Deparse' => '0.71',
2156             'B::Disassembler' => '1.05',
2157             'B::Terse' => '1.03_01',
2158             'ByteLoader' => '0.06',
2159             'CGI' => '3.15',
2160             'CGI::Cookie' => '1.26',
2161             'CPAN' => '1.76_02',
2162             'Cwd' => '3.12',
2163             'DB' => '1.01',
2164             'DB_File' => '1.814',
2165             'Data::Dumper' => '2.121_08',
2166             'Devel::DProf' => '20050603.00',
2167             'Devel::PPPort' => '3.06_01',
2168             'Devel::Peek' => '1.03',
2169             'Digest' => '1.14',
2170             'Digest::MD5' => '2.36',
2171             'Digest::file' => '1.00',
2172             'Dumpvalue' => '1.12',
2173             'Encode' => '2.12',
2174             'Encode::Alias' => '2.04',
2175             'Encode::Config' => '2.01',
2176             'Encode::MIME::Header' => '2.01',
2177             'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2178             'English' => '1.02',
2179             'ExtUtils::Command' => '1.09',
2180             'ExtUtils::Command::MM' => '0.05',
2181             'ExtUtils::Constant' => '0.17',
2182             'ExtUtils::Embed' => '1.26',
2183             'ExtUtils::Install' => '1.33',
2184             'ExtUtils::Liblist::Kid'=> '1.3',
2185             'ExtUtils::MM' => '0.05',
2186             'ExtUtils::MM_AIX' => '0.03',
2187             'ExtUtils::MM_Any' => '0.13',
2188             'ExtUtils::MM_BeOS' => '1.05',
2189             'ExtUtils::MM_Cygwin' => '1.08',
2190             'ExtUtils::MM_MacOS' => '1.08',
2191             'ExtUtils::MM_NW5' => '2.08',
2192             'ExtUtils::MM_OS2' => '1.05',
2193             'ExtUtils::MM_QNX' => '0.02',
2194             'ExtUtils::MM_Unix' => '1.50',
2195             'ExtUtils::MM_VMS' => '5.73',
2196             'ExtUtils::MM_VOS' => '0.02',
2197             'ExtUtils::MM_Win32' => '1.12',
2198             'ExtUtils::MM_Win95' => '0.04',
2199             'ExtUtils::MakeMaker' => '6.30',
2200             'ExtUtils::MakeMaker::Config'=> '0.02',
2201             'ExtUtils::Manifest' => '1.46',
2202             'File::Basename' => '2.74',
2203             'File::Copy' => '2.09',
2204             'File::Find' => '1.10',
2205             'File::Glob' => '1.05',
2206             'File::Path' => '1.08',
2207             'File::Spec' => '3.12',
2208             'File::Spec::Win32' => '1.6',
2209             'FileCache' => '1.06',
2210             'Filter::Simple' => '0.82',
2211             'FindBin' => '1.47',
2212             'GDBM_File' => '1.08',
2213             'Getopt::Long' => '2.35',
2214             'IO' => '1.22',
2215             'IO::Dir' => '1.05',
2216             'IO::File' => '1.13',
2217             'IO::Handle' => '1.25',
2218             'IO::Pipe' => '1.13',
2219             'IO::Poll' => '0.07',
2220             'IO::Seekable' => '1.10',
2221             'IO::Select' => '1.17',
2222             'IO::Socket' => '1.29',
2223             'IO::Socket::INET' => '1.29',
2224             'IO::Socket::UNIX' => '1.22',
2225             'IPC::Open2' => '1.02',
2226             'IPC::Open3' => '1.02',
2227             'List::Util' => '1.18',
2228             'MIME::Base64' => '3.07',
2229             'MIME::QuotedPrint' => '3.07',
2230             'Math::Complex' => '1.35',
2231             'Math::Trig' => '1.03',
2232             'NDBM_File' => '1.06',
2233             'ODBM_File' => '1.06',
2234             'OS2::PrfDB' => '0.04',
2235             'OS2::Process' => '1.02',
2236             'OS2::REXX' => '1.03',
2237             'Opcode' => '1.06',
2238             'POSIX' => '1.09',
2239             'PerlIO' => '1.04',
2240             'PerlIO::encoding' => '0.09',
2241             'PerlIO::scalar' => '0.04',
2242             'PerlIO::via' => '0.03',
2243             'Pod::Checker' => '1.43',
2244             'Pod::Find' => '1.34',
2245             'Pod::Functions' => '1.03',
2246             'Pod::Html' => '1.0504',
2247             'Pod::ParseUtils' => '1.33',
2248             'Pod::Parser' => '1.32',
2249             'Pod::Usage' => '1.33',
2250             'SDBM_File' => '1.05',
2251             'Safe' => '2.12',
2252             'Scalar::Util' => '1.18',
2253             'Socket' => '1.78',
2254             'Storable' => '2.15',
2255             'Switch' => '2.10_01',
2256             'Sys::Syslog' => '0.13',
2257             'Term::ANSIColor' => '1.10',
2258             'Term::ReadLine' => '1.02',
2259             'Test::Builder' => '0.32',
2260             'Test::Builder::Module' => '0.02',
2261             'Test::Builder::Tester' => '1.02',
2262             'Test::Builder::Tester::Color'=> undef,
2263             'Test::Harness' => '2.56',
2264             'Test::Harness::Straps' => '0.26',
2265             'Test::More' => '0.62',
2266             'Test::Simple' => '0.62',
2267             'Text::Tabs' => '2005.0824',
2268             'Text::Wrap' => '2005.082401',
2269             'Tie::Hash' => '1.02',
2270             'Time::HiRes' => '1.86',
2271             'Unicode::Collate' => '0.52',
2272             'Unicode::UCD' => '0.24',
2273             'User::grent' => '1.01',
2274             'Win32' => '0.2601',
2275             'XS::APItest' => '0.08',
2276             'XS::Typemap' => '0.02',
2277             'XSLoader' => '0.06',
2278             'attrs' => '1.02',
2279             'autouse' => '1.05',
2280             'blib' => '1.03',
2281             'charnames' => '1.05',
2282             'diagnostics' => '1.15',
2283             'encoding' => '2.02',
2284             'if' => '0.05',
2285             'open' => '1.05',
2286             'ops' => '1.01',
2287             'overload' => '1.04',
2288             're' => '0.05',
2289             'threads' => '1.07',
2290             'threads::shared' => '0.94',
2291             'utf8' => '1.06',
2292             'vmsish' => '1.02',
2293             'warnings' => '1.05',
2294             'warnings::register' => '1.01',
2295             },
2296             removed => {
2297             }
2298             },
2299             5.008009 => {
2300             delta_from => 5.008008,
2301             changed => {
2302             'Attribute::Handlers' => '0.78_03',
2303             'AutoLoader' => '5.67',
2304             'AutoSplit' => '1.06',
2305             'B' => '1.19',
2306             'B::Asmdata' => '1.02',
2307             'B::Assembler' => '0.08',
2308             'B::C' => '1.05',
2309             'B::Concise' => '0.76',
2310             'B::Debug' => '1.05',
2311             'B::Deparse' => '0.87',
2312             'B::Lint' => '1.11',
2313             'B::Lint::Debug' => undef,
2314             'B::Terse' => '1.05',
2315             'Benchmark' => '1.1',
2316             'CGI' => '3.42',
2317             'CGI::Carp' => '1.30_01',
2318             'CGI::Cookie' => '1.29',
2319             'CGI::Fast' => '1.07',
2320             'CGI::Util' => '1.5_01',
2321             'CPAN' => '1.9301',
2322             'CPAN::Debug' => '5.5',
2323             'CPAN::DeferedCode' => '5.50',
2324             'CPAN::Distroprefs' => '6',
2325             'CPAN::FirstTime' => '5.5_01',
2326             'CPAN::HandleConfig' => '5.5',
2327             'CPAN::Kwalify' => '5.50',
2328             'CPAN::Nox' => '5.50',
2329             'CPAN::Queue' => '5.5',
2330             'CPAN::Tarzip' => '5.5',
2331             'CPAN::Version' => '5.5',
2332             'Carp' => '1.10',
2333             'Carp::Heavy' => '1.10',
2334             'Cwd' => '3.29',
2335             'DBM_Filter' => '0.02',
2336             'DBM_Filter::compress' => '0.02',
2337             'DBM_Filter::encode' => '0.02',
2338             'DBM_Filter::int32' => '0.02',
2339             'DBM_Filter::null' => '0.02',
2340             'DBM_Filter::utf8' => '0.02',
2341             'DB_File' => '1.817',
2342             'Data::Dumper' => '2.121_17',
2343             'Devel::DProf' => '20080331.00',
2344             'Devel::InnerPackage' => '0.3',
2345             'Devel::PPPort' => '3.14',
2346             'Devel::Peek' => '1.04',
2347             'Digest' => '1.15',
2348             'Digest::MD5' => '2.37',
2349             'DirHandle' => '1.02',
2350             'DynaLoader' => '1.09',
2351             'Encode' => '2.26',
2352             'Encode::Alias' => '2.10',
2353             'Encode::Byte' => '2.03',
2354             'Encode::CJKConstants' => '2.02',
2355             'Encode::CN' => '2.02',
2356             'Encode::CN::HZ' => '2.05',
2357             'Encode::Config' => '2.05',
2358             'Encode::EBCDIC' => '2.02',
2359             'Encode::Encoder' => '2.01',
2360             'Encode::Encoding' => '2.05',
2361             'Encode::GSM0338' => '2.01',
2362             'Encode::Guess' => '2.02',
2363             'Encode::JP' => '2.03',
2364             'Encode::JP::H2Z' => '2.02',
2365             'Encode::JP::JIS7' => '2.04',
2366             'Encode::KR' => '2.02',
2367             'Encode::KR::2022_KR' => '2.02',
2368             'Encode::MIME::Header' => '2.05',
2369             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2370             'Encode::MIME::Name' => '1.01',
2371             'Encode::Symbol' => '2.02',
2372             'Encode::TW' => '2.02',
2373             'Encode::Unicode' => '2.05',
2374             'Encode::Unicode::UTF7' => '2.04',
2375             'English' => '1.03',
2376             'Errno' => '1.10',
2377             'Exporter' => '5.63',
2378             'Exporter::Heavy' => '5.63',
2379             'ExtUtils::Command' => '1.15',
2380             'ExtUtils::Command::MM' => '6.48',
2381             'ExtUtils::Constant' => '0.21',
2382             'ExtUtils::Constant::Base'=> '0.04',
2383             'ExtUtils::Constant::ProxySubs'=> '0.06',
2384             'ExtUtils::Constant::Utils'=> '0.02',
2385             'ExtUtils::Constant::XS'=> '0.02',
2386             'ExtUtils::Embed' => '1.28',
2387             'ExtUtils::Install' => '1.50_01',
2388             'ExtUtils::Installed' => '1.43',
2389             'ExtUtils::Liblist' => '6.48',
2390             'ExtUtils::Liblist::Kid'=> '6.48',
2391             'ExtUtils::MM' => '6.48',
2392             'ExtUtils::MM_AIX' => '6.48',
2393             'ExtUtils::MM_Any' => '6.48',
2394             'ExtUtils::MM_BeOS' => '6.48',
2395             'ExtUtils::MM_Cygwin' => '6.48',
2396             'ExtUtils::MM_DOS' => '6.48',
2397             'ExtUtils::MM_Darwin' => '6.48',
2398             'ExtUtils::MM_MacOS' => '6.48',
2399             'ExtUtils::MM_NW5' => '6.48',
2400             'ExtUtils::MM_OS2' => '6.48',
2401             'ExtUtils::MM_QNX' => '6.48',
2402             'ExtUtils::MM_UWIN' => '6.48',
2403             'ExtUtils::MM_Unix' => '6.48',
2404             'ExtUtils::MM_VMS' => '6.48',
2405             'ExtUtils::MM_VOS' => '6.48',
2406             'ExtUtils::MM_Win32' => '6.48',
2407             'ExtUtils::MM_Win95' => '6.48',
2408             'ExtUtils::MY' => '6.48',
2409             'ExtUtils::MakeMaker' => '6.48',
2410             'ExtUtils::MakeMaker::Config'=> '6.48',
2411             'ExtUtils::MakeMaker::bytes'=> '6.48',
2412             'ExtUtils::MakeMaker::vmsish'=> '6.48',
2413             'ExtUtils::Manifest' => '1.55',
2414             'ExtUtils::Mkbootstrap' => '6.48',
2415             'ExtUtils::Mksymlists' => '6.48',
2416             'ExtUtils::Packlist' => '1.43',
2417             'ExtUtils::ParseXS' => '2.19',
2418             'ExtUtils::XSSymSet' => '1.1',
2419             'ExtUtils::testlib' => '6.48',
2420             'Fatal' => '1.06',
2421             'Fcntl' => '1.06',
2422             'File::Basename' => '2.77',
2423             'File::CheckTree' => '4.4',
2424             'File::Compare' => '1.1005',
2425             'File::Copy' => '2.13',
2426             'File::DosGlob' => '1.01',
2427             'File::Find' => '1.13',
2428             'File::Glob' => '1.06',
2429             'File::Path' => '2.07_02',
2430             'File::Spec' => '3.29',
2431             'File::Spec::Cygwin' => '3.29',
2432             'File::Spec::Epoc' => '3.29',
2433             'File::Spec::Functions' => '3.29',
2434             'File::Spec::Mac' => '3.29',
2435             'File::Spec::OS2' => '3.29',
2436             'File::Spec::Unix' => '3.29',
2437             'File::Spec::VMS' => '3.29',
2438             'File::Spec::Win32' => '3.29',
2439             'File::Temp' => '0.20',
2440             'File::stat' => '1.01',
2441             'FileCache' => '1.07',
2442             'Filter::Simple' => '0.83',
2443             'Filter::Util::Call' => '1.07',
2444             'FindBin' => '1.49',
2445             'GDBM_File' => '1.09',
2446             'Getopt::Long' => '2.37',
2447             'Getopt::Std' => '1.06',
2448             'Hash::Util' => '0.06',
2449             'IO' => '1.23',
2450             'IO::Dir' => '1.06',
2451             'IO::File' => '1.14',
2452             'IO::Handle' => '1.27',
2453             'IO::Socket' => '1.30',
2454             'IO::Socket::INET' => '1.31',
2455             'IO::Socket::UNIX' => '1.23',
2456             'IPC::Msg' => '2.00',
2457             'IPC::Open2' => '1.03',
2458             'IPC::Open3' => '1.03',
2459             'IPC::Semaphore' => '2.00',
2460             'IPC::SharedMem' => '2.00',
2461             'IPC::SysV' => '2.00',
2462             'List::Util' => '1.19',
2463             'Locale::Maketext' => '1.13',
2464             'Locale::Maketext::Guts'=> '1.13',
2465             'Locale::Maketext::GutsLoader'=> '1.13',
2466             'Math::BigFloat' => '1.60',
2467             'Math::BigInt' => '1.89',
2468             'Math::BigInt::Calc' => '0.52',
2469             'Math::BigRat' => '0.22',
2470             'Math::Complex' => '1.54',
2471             'Math::Trig' => '1.18',
2472             'Module::CoreList' => '2.17',
2473             'Module::Pluggable' => '3.8',
2474             'Module::Pluggable::Object'=> '3.6',
2475             'NDBM_File' => '1.07',
2476             'NEXT' => '0.61',
2477             'Net::Cmd' => '2.29',
2478             'Net::Config' => '1.11',
2479             'Net::Domain' => '2.20',
2480             'Net::FTP' => '2.77',
2481             'Net::FTP::A' => '1.18',
2482             'Net::NNTP' => '2.24',
2483             'Net::POP3' => '2.29',
2484             'Net::Ping' => '2.35',
2485             'Net::SMTP' => '2.31',
2486             'O' => '1.01',
2487             'ODBM_File' => '1.07',
2488             'OS2::DLL' => '1.03',
2489             'OS2::Process' => '1.03',
2490             'Opcode' => '1.0601',
2491             'POSIX' => '1.15',
2492             'PerlIO' => '1.05',
2493             'PerlIO::encoding' => '0.11',
2494             'PerlIO::scalar' => '0.06',
2495             'PerlIO::via' => '0.05',
2496             'Pod::Html' => '1.09',
2497             'Pod::ParseUtils' => '1.35',
2498             'Pod::Parser' => '1.35',
2499             'Pod::Select' => '1.35',
2500             'Pod::Usage' => '1.35',
2501             'SDBM_File' => '1.06',
2502             'Safe' => '2.16',
2503             'Scalar::Util' => '1.19',
2504             'SelfLoader' => '1.17',
2505             'Shell' => '0.72',
2506             'Socket' => '1.81',
2507             'Storable' => '2.19',
2508             'Switch' => '2.13',
2509             'Sys::Syslog' => '0.27',
2510             'Sys::Syslog::win32::Win32'=> undef,
2511             'Term::ANSIColor' => '1.12',
2512             'Term::Cap' => '1.12',
2513             'Term::ReadLine' => '1.03',
2514             'Test::Builder' => '0.80',
2515             'Test::Builder::Module' => '0.80',
2516             'Test::Builder::Tester' => '1.13',
2517             'Test::Harness' => '2.64',
2518             'Test::Harness::Results'=> '0.01_01',
2519             'Test::Harness::Straps' => '0.26_01',
2520             'Test::Harness::Util' => '0.01',
2521             'Test::More' => '0.80',
2522             'Test::Simple' => '0.80',
2523             'Text::Balanced' => '1.98',
2524             'Text::ParseWords' => '3.27',
2525             'Text::Soundex' => '3.03',
2526             'Text::Tabs' => '2007.1117',
2527             'Text::Wrap' => '2006.1117',
2528             'Thread' => '2.01',
2529             'Thread::Queue' => '2.11',
2530             'Thread::Semaphore' => '2.09',
2531             'Tie::Handle' => '4.2',
2532             'Tie::Hash' => '1.03',
2533             'Tie::Memoize' => '1.1',
2534             'Tie::RefHash' => '1.38',
2535             'Tie::Scalar' => '1.01',
2536             'Tie::StdHandle' => '4.2',
2537             'Time::HiRes' => '1.9715',
2538             'Time::Local' => '1.1901',
2539             'Time::gmtime' => '1.03',
2540             'Unicode' => '5.1.0',
2541             'Unicode::Normalize' => '1.02',
2542             'Unicode::UCD' => '0.25',
2543             'VMS::DCLsym' => '1.03',
2544             'VMS::Stdio' => '2.4',
2545             'Win32' => '0.38',
2546             'Win32API::File' => '0.1001_01',
2547             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2548             'Win32CORE' => '0.02',
2549             'XS::APItest' => '0.15',
2550             'XS::Typemap' => '0.03',
2551             'XSLoader' => '0.10',
2552             'attributes' => '0.09',
2553             'autouse' => '1.06',
2554             'base' => '2.13',
2555             'bigint' => '0.23',
2556             'bignum' => '0.23',
2557             'bigrat' => '0.23',
2558             'blib' => '1.04',
2559             'charnames' => '1.06',
2560             'constant' => '1.17',
2561             'diagnostics' => '1.16',
2562             'encoding' => '2.6_01',
2563             'fields' => '2.12',
2564             'filetest' => '1.02',
2565             'lib' => '0.61',
2566             'open' => '1.06',
2567             'ops' => '1.02',
2568             'overload' => '1.06',
2569             're' => '0.0601',
2570             'sigtrap' => '1.04',
2571             'threads' => '1.71',
2572             'threads::shared' => '1.27',
2573             'utf8' => '1.07',
2574             'warnings' => '1.05_01',
2575             },
2576             removed => {
2577             }
2578             },
2579             5.009 => {
2580             delta_from => 5.008002,
2581             changed => {
2582             'B' => '1.03',
2583             'B::C' => '1.03',
2584             'B::Concise' => '0.57',
2585             'B::Deparse' => '0.65',
2586             'DB_File' => '1.806',
2587             'Devel::PPPort' => '2.008',
2588             'English' => '1.02',
2589             'Fatal' => '1.04',
2590             'OS2::DLL' => '1.02',
2591             'Opcode' => '1.06',
2592             'Time::HiRes' => '1.51',
2593             'Unicode::Collate' => '0.28',
2594             'Unicode::Normalize' => '0.23',
2595             'XSLoader' => '0.03',
2596             'assertions' => '0.01',
2597             'assertions::activate' => '0.01',
2598             'overload' => '1.02',
2599             'version' => '0.29',
2600             },
2601             removed => {
2602             }
2603             },
2604             5.009001 => {
2605             delta_from => 5.008004,
2606             changed => {
2607             'B' => '1.05',
2608             'B::Assembler' => '0.06',
2609             'B::C' => '1.04',
2610             'B::Concise' => '0.59',
2611             'B::Debug' => '1.02',
2612             'B::Deparse' => '0.65',
2613             'DB_File' => '1.808_01',
2614             'Devel::PPPort' => '2.011_01',
2615             'Digest' => '1.05',
2616             'DynaLoader' => '1.04',
2617             'English' => '1.02',
2618             'Exporter::Heavy' => '5.567',
2619             'ExtUtils::Command' => '1.07',
2620             'ExtUtils::Liblist::Kid'=> '1.3',
2621             'ExtUtils::MM_Any' => '0.0901',
2622             'ExtUtils::MM_Cygwin' => '1.07',
2623             'ExtUtils::MM_NW5' => '2.07_01',
2624             'ExtUtils::MM_Unix' => '1.45_01',
2625             'ExtUtils::MM_VMS' => '5.71_01',
2626             'ExtUtils::MM_Win32' => '1.10_01',
2627             'ExtUtils::MM_Win95' => '0.03',
2628             'ExtUtils::MakeMaker' => '6.21_02',
2629             'ExtUtils::Manifest' => '1.43',
2630             'Fatal' => '1.04',
2631             'Getopt::Long' => '2.3401',
2632             'IO::Handle' => '1.23',
2633             'IO::Pipe' => '1.122',
2634             'IPC::Open3' => '1.0105',
2635             'MIME::Base64' => '3.00_01',
2636             'MIME::QuotedPrint' => '3.00',
2637             'Memoize' => '1.01_01',
2638             'ODBM_File' => '1.04',
2639             'Opcode' => '1.06',
2640             'POSIX' => '1.07',
2641             'Storable' => '2.11',
2642             'Time::HiRes' => '1.56',
2643             'Time::Local' => '1.07_94',
2644             'UNIVERSAL' => '1.02',
2645             'Unicode' => '4.0.0',
2646             'Unicode::UCD' => '0.21',
2647             'XSLoader' => '0.03',
2648             'assertions' => '0.01',
2649             'assertions::activate' => '0.01',
2650             'base' => '2.04',
2651             'if' => '0.0401',
2652             'open' => '1.02',
2653             'overload' => '1.02',
2654             'threads' => '1.02',
2655             'utf8' => '1.02',
2656             'version' => '0.36',
2657             },
2658             removed => {
2659             }
2660             },
2661             5.009002 => {
2662             delta_from => 5.008007,
2663             changed => {
2664             'B' => '1.07',
2665             'B::Concise' => '0.64',
2666             'B::Deparse' => '0.69',
2667             'B::Disassembler' => '1.03',
2668             'B::Terse' => '1.02',
2669             'CGI' => '3.07',
2670             'Config::Extensions' => '0.01',
2671             'Devel::DProf' => '20030813.00',
2672             'DynaLoader' => '1.07',
2673             'Encode' => '2.09',
2674             'Encode::Alias' => '2.02',
2675             'English' => '1.03',
2676             'Exporter' => '5.59',
2677             'Exporter::Heavy' => '5.59',
2678             'ExtUtils::Command' => '1.07',
2679             'ExtUtils::Command::MM' => '0.03_01',
2680             'ExtUtils::Embed' => '1.26',
2681             'ExtUtils::Liblist::Kid'=> '1.3',
2682             'ExtUtils::MM_Any' => '0.10',
2683             'ExtUtils::MM_Cygwin' => '1.07',
2684             'ExtUtils::MM_MacOS' => '1.08',
2685             'ExtUtils::MM_NW5' => '2.07',
2686             'ExtUtils::MM_Unix' => '1.46_01',
2687             'ExtUtils::MM_VMS' => '5.71',
2688             'ExtUtils::MM_Win32' => '1.10',
2689             'ExtUtils::MM_Win95' => '0.03',
2690             'ExtUtils::MakeMaker' => '6.25',
2691             'ExtUtils::Manifest' => '1.44',
2692             'Fatal' => '1.04',
2693             'File::Path' => '1.06',
2694             'FileCache' => '1.04_01',
2695             'Getopt::Long' => '2.3401',
2696             'IO::File' => '1.10',
2697             'IO::Socket::INET' => '1.27',
2698             'Math::BigFloat' => '1.49',
2699             'Math::BigInt' => '1.75',
2700             'Math::BigInt::Calc' => '0.45',
2701             'Math::BigRat' => '0.14',
2702             'Memoize' => '1.01_01',
2703             'Module::CoreList' => '1.99',
2704             'NEXT' => '0.60_01',
2705             'Opcode' => '1.06',
2706             'Pod::Html' => '1.0502',
2707             'Scalar::Util' => '1.14_1',
2708             'Storable' => '2.14',
2709             'Symbol' => '1.05',
2710             'Test::Harness' => '2.46',
2711             'Test::Harness::Straps' => '0.20_01',
2712             'Text::Balanced' => '1.95_01',
2713             'Text::Wrap' => '2001.09292',
2714             'UNIVERSAL' => '1.02',
2715             'Unicode' => '4.0.1',
2716             'Unicode::Normalize' => '0.30',
2717             'Unicode::UCD' => '0.22',
2718             'Win32' => '0.23',
2719             'XS::APItest' => '0.05',
2720             'XSLoader' => '0.03',
2721             'assertions' => '0.01',
2722             'assertions::activate' => '0.01',
2723             'base' => '2.06',
2724             'bigint' => '0.06',
2725             'bignum' => '0.16',
2726             'bigrat' => '0.07',
2727             'bytes' => '1.01',
2728             'encoding::warnings' => '0.05',
2729             'if' => '0.0401',
2730             're' => '0.05',
2731             'threads::shared' => '0.92',
2732             'utf8' => '1.04',
2733             'version' => '0.42',
2734             'warnings' => '1.04',
2735             },
2736             removed => {
2737             'Test::Harness::Point' => 1,
2738             }
2739             },
2740             5.009003 => {
2741             delta_from => 5.008008,
2742             changed => {
2743             'Archive::Tar' => '1.26_01',
2744             'Archive::Tar::Constant'=> '0.02',
2745             'Archive::Tar::File' => '0.02',
2746             'AutoSplit' => '1.04_01',
2747             'B' => '1.10',
2748             'B::Bblock' => '1.02',
2749             'B::Bytecode' => '1.01',
2750             'B::C' => '1.04',
2751             'B::CC' => '1.00',
2752             'B::Concise' => '0.67',
2753             'B::Debug' => '1.02',
2754             'B::Deparse' => '0.73',
2755             'B::Lint' => '1.04',
2756             'B::Terse' => '1.03',
2757             'CGI' => '3.15_01',
2758             'CPAN' => '1.83_58',
2759             'CPAN::Debug' => '4.44',
2760             'CPAN::FirstTime' => '4.50',
2761             'CPAN::HandleConfig' => '4.31',
2762             'CPAN::Nox' => '2.31',
2763             'CPAN::Tarzip' => '3.36',
2764             'CPAN::Version' => '2.55',
2765             'Carp' => '1.05',
2766             'Carp::Heavy' => '1.05',
2767             'Compress::Zlib' => '2.000_07',
2768             'Compress::Zlib::Common'=> '2.000_07',
2769             'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2770             'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2771             'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2772             'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2773             'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2774             'Compress::Zlib::FileConstants'=> '2.000_07',
2775             'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2776             'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2777             'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2778             'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2779             'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2780             'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2781             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2782             'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2783             'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2784             'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2785             'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2786             'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2787             'Compress::Zlib::ParseParameters'=> '2.000_07',
2788             'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2789             'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2790             'Config::Extensions' => '0.01',
2791             'Cwd' => '3.15',
2792             'Devel::PPPort' => '3.08',
2793             'Digest::SHA' => '5.32',
2794             'DirHandle' => '1.01',
2795             'DynaLoader' => '1.07',
2796             'Encode' => '2.14',
2797             'Encode::CN::HZ' => '2.02',
2798             'Encode::MIME::Header' => '2.02',
2799             'English' => '1.04',
2800             'Exporter' => '5.59',
2801             'Exporter::Heavy' => '5.59',
2802             'ExtUtils::CBuilder' => '0.15',
2803             'ExtUtils::CBuilder::Base'=> '0.12',
2804             'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2805             'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2806             'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2807             'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2808             'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2809             'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2810             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2811             'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2812             'ExtUtils::Command::MM' => '0.05_01',
2813             'ExtUtils::Constant' => '0.2',
2814             'ExtUtils::Constant::Base'=> '0.02',
2815             'ExtUtils::Constant::ProxySubs'=> '0.01',
2816             'ExtUtils::Constant::XS'=> '0.02',
2817             'ExtUtils::MM_Any' => '0.13_01',
2818             'ExtUtils::MM_Unix' => '1.50_01',
2819             'ExtUtils::MakeMaker' => '6.30_01',
2820             'ExtUtils::ParseXS' => '2.15_02',
2821             'Fatal' => '1.04',
2822             'File::Compare' => '1.1005',
2823             'File::Spec' => '3.15',
2824             'File::Temp' => '0.16_01',
2825             'IO::File' => '1.13_01',
2826             'IO::Handle' => '1.26',
2827             'IO::Socket' => '1.29_01',
2828             'IO::Socket::INET' => '1.29_02',
2829             'IO::Socket::UNIX' => '1.22_01',
2830             'IO::Zlib' => '1.04_02',
2831             'Locale::Maketext' => '1.10_01',
2832             'Math::BigInt::FastCalc'=> '0.10',
2833             'Memoize' => '1.01_01',
2834             'Module::CoreList' => '2.02',
2835             'Moped::Msg' => '0.01',
2836             'NEXT' => '0.60_01',
2837             'Net::Cmd' => '2.26_01',
2838             'Net::Domain' => '2.19_01',
2839             'Net::Ping' => '2.31_04',
2840             'Opcode' => '1.08',
2841             'POSIX' => '1.10',
2842             'Pod::Escapes' => '1.04',
2843             'Pod::Man' => '2.04',
2844             'Pod::Perldoc' => '3.14_01',
2845             'Pod::Simple' => '3.04',
2846             'Pod::Simple::BlackBox' => undef,
2847             'Pod::Simple::Checker' => '2.02',
2848             'Pod::Simple::Debug' => undef,
2849             'Pod::Simple::DumpAsText'=> '2.02',
2850             'Pod::Simple::DumpAsXML'=> '2.02',
2851             'Pod::Simple::HTML' => '3.03',
2852             'Pod::Simple::HTMLBatch'=> '3.02',
2853             'Pod::Simple::HTMLLegacy'=> '5.01',
2854             'Pod::Simple::LinkSection'=> undef,
2855             'Pod::Simple::Methody' => '2.02',
2856             'Pod::Simple::Progress' => '1.01',
2857             'Pod::Simple::PullParser'=> '2.02',
2858             'Pod::Simple::PullParserEndToken'=> undef,
2859             'Pod::Simple::PullParserStartToken'=> undef,
2860             'Pod::Simple::PullParserTextToken'=> undef,
2861             'Pod::Simple::PullParserToken'=> '2.02',
2862             'Pod::Simple::RTF' => '2.02',
2863             'Pod::Simple::Search' => '3.04',
2864             'Pod::Simple::SimpleTree'=> '2.02',
2865             'Pod::Simple::Text' => '2.02',
2866             'Pod::Simple::TextContent'=> '2.02',
2867             'Pod::Simple::TiedOutFH'=> undef,
2868             'Pod::Simple::Transcode'=> undef,
2869             'Pod::Simple::TranscodeDumb'=> '2.02',
2870             'Pod::Simple::TranscodeSmart'=> undef,
2871             'Pod::Simple::XMLOutStream'=> '2.02',
2872             'Pod::Text' => '3.01',
2873             'Pod::Text::Color' => '2.01',
2874             'Pod::Text::Overstrike' => '2',
2875             'Pod::Text::Termcap' => '2.01',
2876             'Pod::Usage' => '1.33_01',
2877             'SelfLoader' => '1.0905',
2878             'Storable' => '2.15_02',
2879             'Test::Builder::Module' => '0.03',
2880             'Text::Balanced' => '1.95_01',
2881             'Tie::File' => '0.97_01',
2882             'UNIVERSAL' => '1.03',
2883             'XS::APItest' => '0.09',
2884             'assertions' => '0.02',
2885             'assertions::activate' => '0.02',
2886             'assertions::compat' => undef,
2887             'constant' => '1.07',
2888             'encoding::warnings' => '0.05',
2889             'feature' => '1.00',
2890             're' => '0.06',
2891             'sort' => '2.00',
2892             'version' => '0.53',
2893             },
2894             removed => {
2895             }
2896             },
2897             5.009004 => {
2898             delta_from => 5.009003,
2899             changed => {
2900             'Archive::Tar' => '1.30_01',
2901             'AutoLoader' => '5.61',
2902             'B' => '1.11',
2903             'B::Bytecode' => '1.02',
2904             'B::C' => '1.05',
2905             'B::Concise' => '0.69',
2906             'B::Deparse' => '0.76',
2907             'B::Lint' => '1.08',
2908             'Benchmark' => '1.08',
2909             'CGI' => '3.20',
2910             'CGI::Cookie' => '1.27',
2911             'CGI::Fast' => '1.07',
2912             'CPAN' => '1.87_55',
2913             'CPAN::Debug' => '5.400561',
2914             'CPAN::FirstTime' => '5.400742',
2915             'CPAN::HandleConfig' => '5.400740',
2916             'CPAN::Nox' => '5.400561',
2917             'CPAN::Tarzip' => '5.400714',
2918             'CPAN::Version' => '5.400561',
2919             'Compress::Raw::Zlib' => '2.000_13',
2920             'Compress::Zlib' => '2.000_13',
2921             'Cwd' => '3.19',
2922             'Devel::PPPort' => '3.10',
2923             'Digest' => '1.15',
2924             'Digest::SHA' => '5.43',
2925             'Encode' => '2.18_01',
2926             'Encode::Alias' => '2.06',
2927             'Encode::Byte' => '2.02',
2928             'Encode::CJKConstants' => '2.02',
2929             'Encode::CN' => '2.02',
2930             'Encode::CN::HZ' => '2.04',
2931             'Encode::Config' => '2.03',
2932             'Encode::EBCDIC' => '2.02',
2933             'Encode::Encoder' => '2.01',
2934             'Encode::Encoding' => '2.04',
2935             'Encode::Guess' => '2.02',
2936             'Encode::JP' => '2.03',
2937             'Encode::JP::H2Z' => '2.02',
2938             'Encode::JP::JIS7' => '2.02',
2939             'Encode::KR' => '2.02',
2940             'Encode::KR::2022_KR' => '2.02',
2941             'Encode::MIME::Header' => '2.04',
2942             'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2943             'Encode::Symbol' => '2.02',
2944             'Encode::TW' => '2.02',
2945             'Encode::Unicode' => '2.03',
2946             'Encode::Unicode::UTF7' => '2.04',
2947             'ExtUtils::CBuilder' => '0.18',
2948             'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2949             'ExtUtils::Constant::Base'=> '0.03',
2950             'ExtUtils::Constant::ProxySubs'=> '0.03',
2951             'ExtUtils::Install' => '1.41',
2952             'ExtUtils::Installed' => '1.41',
2953             'ExtUtils::MM_Any' => '0.13_02',
2954             'ExtUtils::MM_NW5' => '2.08_01',
2955             'ExtUtils::MM_Unix' => '1.5003',
2956             'ExtUtils::MM_VMS' => '5.73_03',
2957             'ExtUtils::MM_Win32' => '1.12_02',
2958             'ExtUtils::MM_Win95' => '0.04_01',
2959             'ExtUtils::MakeMaker' => '6.30_02',
2960             'ExtUtils::Manifest' => '1.46_01',
2961             'ExtUtils::Mkbootstrap' => '1.15_01',
2962             'ExtUtils::Mksymlists' => '1.19_01',
2963             'ExtUtils::Packlist' => '1.41',
2964             'File::Basename' => '2.75',
2965             'File::Find' => '1.11',
2966             'File::GlobMapper' => '0.000_02',
2967             'File::Spec' => '3.19',
2968             'FileCache' => '1.07',
2969             'Getopt::Long' => '2.3501',
2970             'Hash::Util' => '0.07',
2971             'Hash::Util::FieldHash' => '0.01',
2972             'IO' => '1.23_01',
2973             'IO::Compress::Adapter::Deflate'=> '2.000_13',
2974             'IO::Compress::Adapter::Identity'=> '2.000_13',
2975             'IO::Compress::Base' => '2.000_13',
2976             'IO::Compress::Base::Common'=> '2.000_13',
2977             'IO::Compress::Deflate' => '2.000_13',
2978             'IO::Compress::Gzip' => '2.000_13',
2979             'IO::Compress::Gzip::Constants'=> '2.000_13',
2980             'IO::Compress::RawDeflate'=> '2.000_13',
2981             'IO::Compress::Zip' => '2.000_13',
2982             'IO::Compress::Zip::Constants'=> '2.000_13',
2983             'IO::Compress::Zlib::Constants'=> '2.000_13',
2984             'IO::Compress::Zlib::Extra'=> '2.000_13',
2985             'IO::Dir' => '1.06',
2986             'IO::File' => '1.14',
2987             'IO::Handle' => '1.27',
2988             'IO::Socket' => '1.30_01',
2989             'IO::Socket::INET' => '1.31',
2990             'IO::Socket::UNIX' => '1.23',
2991             'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2992             'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2993             'IO::Uncompress::AnyInflate'=> '2.000_13',
2994             'IO::Uncompress::AnyUncompress'=> '2.000_13',
2995             'IO::Uncompress::Base' => '2.000_13',
2996             'IO::Uncompress::Gunzip'=> '2.000_13',
2997             'IO::Uncompress::Inflate'=> '2.000_13',
2998             'IO::Uncompress::RawInflate'=> '2.000_13',
2999             'IO::Uncompress::Unzip' => '2.000_13',
3000             'MIME::Base64' => '3.07_01',
3001             'Math::Complex' => '1.36',
3002             'Math::Trig' => '1.04',
3003             'Module::Build' => '0.2805',
3004             'Module::Build::Base' => undef,
3005             'Module::Build::Compat' => '0.03',
3006             'Module::Build::ConfigData'=> undef,
3007             'Module::Build::Cookbook'=> undef,
3008             'Module::Build::ModuleInfo'=> undef,
3009             'Module::Build::Notes' => undef,
3010             'Module::Build::PPMMaker'=> undef,
3011             'Module::Build::Platform::Amiga'=> undef,
3012             'Module::Build::Platform::Default'=> undef,
3013             'Module::Build::Platform::EBCDIC'=> undef,
3014             'Module::Build::Platform::MPEiX'=> undef,
3015             'Module::Build::Platform::MacOS'=> undef,
3016             'Module::Build::Platform::RiscOS'=> undef,
3017             'Module::Build::Platform::Unix'=> undef,
3018             'Module::Build::Platform::VMS'=> undef,
3019             'Module::Build::Platform::VOS'=> undef,
3020             'Module::Build::Platform::Windows'=> undef,
3021             'Module::Build::Platform::aix'=> undef,
3022             'Module::Build::Platform::cygwin'=> undef,
3023             'Module::Build::Platform::darwin'=> undef,
3024             'Module::Build::Platform::os2'=> undef,
3025             'Module::Build::PodParser'=> undef,
3026             'Module::Build::Version'=> '0',
3027             'Module::Build::YAML' => '0.50',
3028             'Module::CoreList' => '2.08',
3029             'Module::Load' => '0.10',
3030             'Module::Loaded' => '0.01',
3031             'Package::Constants' => '0.01',
3032             'Pod::Html' => '1.07',
3033             'Pod::Man' => '2.09',
3034             'Pod::Text' => '3.07',
3035             'Pod::Text::Color' => '2.03',
3036             'Pod::Text::Termcap' => '2.03',
3037             'SDBM_File' => '1.06',
3038             'Shell' => '0.7',
3039             'Sys::Syslog' => '0.17',
3040             'Term::ANSIColor' => '1.11',
3041             'Test::Builder' => '0.33',
3042             'Test::Builder::Tester' => '1.04',
3043             'Test::Harness' => '2.62',
3044             'Test::Harness::Util' => '0.01',
3045             'Test::More' => '0.64',
3046             'Test::Simple' => '0.64',
3047             'Text::Balanced' => '1.98_01',
3048             'Text::ParseWords' => '3.25',
3049             'Text::Tabs' => '2007.071101',
3050             'Text::Wrap' => '2006.0711',
3051             'Tie::RefHash' => '1.34_01',
3052             'Time::HiRes' => '1.87',
3053             'Time::Local' => '1.13',
3054             'Time::gmtime' => '1.03',
3055             'UNIVERSAL' => '1.04',
3056             'Unicode::Normalize' => '1.01',
3057             'Win32API::File' => '0.1001',
3058             'Win32API::File::ExtUtils::Myconst2perl'=> '1',
3059             'assertions' => '0.03',
3060             'assertions::compat' => '0.02',
3061             'autouse' => '1.06',
3062             'diagnostics' => '1.16',
3063             'encoding' => '2.04',
3064             'encoding::warnings' => '0.10',
3065             'feature' => '1.01',
3066             're' => '0.0601',
3067             'threads' => '1.38',
3068             'threads::shared' => '0.94_01',
3069             'version' => '0.67',
3070             },
3071             removed => {
3072             'Compress::Zlib::Common'=> 1,
3073             'Compress::Zlib::Compress::Gzip::Constants'=> 1,
3074             'Compress::Zlib::Compress::Zip::Constants'=> 1,
3075             'Compress::Zlib::CompressPlugin::Deflate'=> 1,
3076             'Compress::Zlib::CompressPlugin::Identity'=> 1,
3077             'Compress::Zlib::File::GlobMapper'=> 1,
3078             'Compress::Zlib::FileConstants'=> 1,
3079             'Compress::Zlib::IO::Compress::Base'=> 1,
3080             'Compress::Zlib::IO::Compress::Deflate'=> 1,
3081             'Compress::Zlib::IO::Compress::Gzip'=> 1,
3082             'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
3083             'Compress::Zlib::IO::Compress::Zip'=> 1,
3084             'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
3085             'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
3086             'Compress::Zlib::IO::Uncompress::Base'=> 1,
3087             'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
3088             'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
3089             'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
3090             'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
3091             'Compress::Zlib::ParseParameters'=> 1,
3092             'Compress::Zlib::UncompressPlugin::Identity'=> 1,
3093             'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
3094             }
3095             },
3096             5.009005 => {
3097             delta_from => 5.009004,
3098             changed => {
3099             'Archive::Extract' => '0.22_01',
3100             'Archive::Tar' => '1.32',
3101             'Attribute::Handlers' => '0.78_06',
3102             'AutoLoader' => '5.63',
3103             'AutoSplit' => '1.05',
3104             'B' => '1.16',
3105             'B::Concise' => '0.72',
3106             'B::Debug' => '1.05',
3107             'B::Deparse' => '0.82',
3108             'B::Lint' => '1.09',
3109             'B::Terse' => '1.05',
3110             'Benchmark' => '1.1',
3111             'CGI' => '3.29',
3112             'CGI::Cookie' => '1.28',
3113             'CGI::Util' => '1.5_01',
3114             'CPAN' => '1.9102',
3115             'CPAN::Debug' => '5.400955',
3116             'CPAN::FirstTime' => '5.401669',
3117             'CPAN::HandleConfig' => '5.401744',
3118             'CPAN::Kwalify' => '5.401418',
3119             'CPAN::Nox' => '5.400844',
3120             'CPAN::Queue' => '5.401704',
3121             'CPAN::Tarzip' => '5.401717',
3122             'CPAN::Version' => '5.401387',
3123             'CPANPLUS' => '0.81_01',
3124             'CPANPLUS::Backend' => undef,
3125             'CPANPLUS::Backend::RV' => undef,
3126             'CPANPLUS::Config' => undef,
3127             'CPANPLUS::Configure' => undef,
3128             'CPANPLUS::Configure::Setup'=> undef,
3129             'CPANPLUS::Dist' => undef,
3130             'CPANPLUS::Dist::Base' => '0.01',
3131             'CPANPLUS::Dist::Build' => '0.06_01',
3132             'CPANPLUS::Dist::Build::Constants'=> '0.01',
3133             'CPANPLUS::Dist::MM' => undef,
3134             'CPANPLUS::Dist::Sample'=> undef,
3135             'CPANPLUS::Error' => undef,
3136             'CPANPLUS::Internals' => '0.81_01',
3137             'CPANPLUS::Internals::Constants'=> '0.01',
3138             'CPANPLUS::Internals::Constants::Report'=> '0.01',
3139             'CPANPLUS::Internals::Extract'=> undef,
3140             'CPANPLUS::Internals::Fetch'=> undef,
3141             'CPANPLUS::Internals::Report'=> undef,
3142             'CPANPLUS::Internals::Search'=> undef,
3143             'CPANPLUS::Internals::Source'=> undef,
3144             'CPANPLUS::Internals::Utils'=> undef,
3145             'CPANPLUS::Internals::Utils::Autoflush'=> undef,
3146             'CPANPLUS::Module' => undef,
3147             'CPANPLUS::Module::Author'=> undef,
3148             'CPANPLUS::Module::Author::Fake'=> undef,
3149             'CPANPLUS::Module::Checksums'=> undef,
3150             'CPANPLUS::Module::Fake'=> undef,
3151             'CPANPLUS::Module::Signature'=> undef,
3152             'CPANPLUS::Selfupdate' => undef,
3153             'CPANPLUS::Shell' => undef,
3154             'CPANPLUS::Shell::Classic'=> '0.0562',
3155             'CPANPLUS::Shell::Default'=> '0.81_01',
3156             'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
3157             'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
3158             'CPANPLUS::inc' => undef,
3159             'Carp' => '1.07',
3160             'Carp::Heavy' => '1.07',
3161             'Compress::Raw::Zlib' => '2.005',
3162             'Compress::Zlib' => '2.005',
3163             'Cwd' => '3.25',
3164             'DBM_Filter' => '0.02',
3165             'DB_File' => '1.815',
3166             'Data::Dumper' => '2.121_13',
3167             'Devel::InnerPackage' => '0.3',
3168             'Devel::PPPort' => '3.11_01',
3169             'Digest::MD5' => '2.36_01',
3170             'Digest::SHA' => '5.44',
3171             'DynaLoader' => '1.08',
3172             'Encode' => '2.23',
3173             'Encode::Alias' => '2.07',
3174             'Encode::Byte' => '2.03',
3175             'Encode::Config' => '2.04',
3176             'Encode::Encoding' => '2.05',
3177             'Encode::GSM0338' => '2.00',
3178             'Encode::JP::JIS7' => '2.03',
3179             'Encode::MIME::Header' => '2.05',
3180             'Encode::MIME::Name' => '1.01',
3181             'Encode::Unicode' => '2.05',
3182             'Errno' => '1.10',
3183             'Exporter' => '5.60',
3184             'Exporter::Heavy' => '5.60',
3185             'ExtUtils::CBuilder' => '0.19',
3186             'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3187             'ExtUtils::Command' => '1.13',
3188             'ExtUtils::Command::MM' => '0.07',
3189             'ExtUtils::Constant::Base'=> '0.04',
3190             'ExtUtils::Install' => '1.41_01',
3191             'ExtUtils::Liblist' => '1.03',
3192             'ExtUtils::Liblist::Kid'=> '1.33',
3193             'ExtUtils::MM' => '0.07',
3194             'ExtUtils::MM_AIX' => '0.05',
3195             'ExtUtils::MM_Any' => '0.15',
3196             'ExtUtils::MM_BeOS' => '1.07',
3197             'ExtUtils::MM_Cygwin' => '1.1',
3198             'ExtUtils::MM_DOS' => '0.04',
3199             'ExtUtils::MM_MacOS' => '1.1',
3200             'ExtUtils::MM_NW5' => '2.1',
3201             'ExtUtils::MM_OS2' => '1.07',
3202             'ExtUtils::MM_QNX' => '0.04',
3203             'ExtUtils::MM_UWIN' => '0.04',
3204             'ExtUtils::MM_Unix' => '1.54_01',
3205             'ExtUtils::MM_VMS' => '5.76',
3206             'ExtUtils::MM_VOS' => '0.04',
3207             'ExtUtils::MM_Win32' => '1.15',
3208             'ExtUtils::MM_Win95' => '0.06',
3209             'ExtUtils::MY' => '0.03',
3210             'ExtUtils::MakeMaker' => '6.36',
3211             'ExtUtils::MakeMaker::Config'=> '0.04',
3212             'ExtUtils::MakeMaker::bytes'=> '0.03',
3213             'ExtUtils::MakeMaker::vmsish'=> '0.03',
3214             'ExtUtils::Manifest' => '1.51_01',
3215             'ExtUtils::Mkbootstrap' => '1.17',
3216             'ExtUtils::Mksymlists' => '1.21',
3217             'ExtUtils::ParseXS' => '2.18',
3218             'ExtUtils::XSSymSet' => '1.1',
3219             'ExtUtils::testlib' => '1.17',
3220             'Fatal' => '1.05',
3221             'Fcntl' => '1.06',
3222             'File::Basename' => '2.76',
3223             'File::Copy' => '2.10',
3224             'File::Fetch' => '0.10',
3225             'File::Glob' => '1.06',
3226             'File::Path' => '2.01',
3227             'File::Spec' => '3.25',
3228             'File::Spec::Cygwin' => '1.1_01',
3229             'File::Spec::VMS' => '1.4_01',
3230             'File::Temp' => '0.18',
3231             'Filter::Util::Call' => '1.0602',
3232             'FindBin' => '1.49',
3233             'Getopt::Long' => '2.36',
3234             'Hash::Util::FieldHash' => '1.01',
3235             'IO::Compress::Adapter::Deflate'=> '2.005',
3236             'IO::Compress::Adapter::Identity'=> '2.005',
3237             'IO::Compress::Base' => '2.005',
3238             'IO::Compress::Base::Common'=> '2.005',
3239             'IO::Compress::Deflate' => '2.005',
3240             'IO::Compress::Gzip' => '2.005',
3241             'IO::Compress::Gzip::Constants'=> '2.005',
3242             'IO::Compress::RawDeflate'=> '2.005',
3243             'IO::Compress::Zip' => '2.005',
3244             'IO::Compress::Zip::Constants'=> '2.005',
3245             'IO::Compress::Zlib::Constants'=> '2.005',
3246             'IO::Compress::Zlib::Extra'=> '2.005',
3247             'IO::Uncompress::Adapter::Identity'=> '2.005',
3248             'IO::Uncompress::Adapter::Inflate'=> '2.005',
3249             'IO::Uncompress::AnyInflate'=> '2.005',
3250             'IO::Uncompress::AnyUncompress'=> '2.005',
3251             'IO::Uncompress::Base' => '2.005',
3252             'IO::Uncompress::Gunzip'=> '2.005',
3253             'IO::Uncompress::Inflate'=> '2.005',
3254             'IO::Uncompress::RawInflate'=> '2.005',
3255             'IO::Uncompress::Unzip' => '2.005',
3256             'IO::Zlib' => '1.05_01',
3257             'IPC::Cmd' => '0.36_01',
3258             'List::Util' => '1.19',
3259             'Locale::Maketext::Simple'=> '0.18',
3260             'Log::Message' => '0.01',
3261             'Log::Message::Config' => '0.01',
3262             'Log::Message::Handlers'=> undef,
3263             'Log::Message::Item' => undef,
3264             'Log::Message::Simple' => '0.0201',
3265             'Math::BigFloat' => '1.58',
3266             'Math::BigInt' => '1.87',
3267             'Math::BigInt::Calc' => '0.51',
3268             'Math::BigInt::FastCalc'=> '0.15_01',
3269             'Math::BigRat' => '0.19',
3270             'Math::Complex' => '1.37',
3271             'Memoize' => '1.01_02',
3272             'Module::Build' => '0.2808',
3273             'Module::Build::Config' => undef,
3274             'Module::Build::Version'=> '0.7203',
3275             'Module::CoreList' => '2.12',
3276             'Module::Load::Conditional'=> '0.16',
3277             'Module::Pluggable' => '3.6',
3278             'Module::Pluggable::Object'=> '3.6',
3279             'NDBM_File' => '1.07',
3280             'Net::Cmd' => '2.28',
3281             'Net::Config' => '1.11',
3282             'Net::Domain' => '2.20',
3283             'Net::FTP' => '2.77',
3284             'Net::FTP::A' => '1.18',
3285             'Net::NNTP' => '2.24',
3286             'Net::POP3' => '2.29',
3287             'Net::SMTP' => '2.31',
3288             'ODBM_File' => '1.07',
3289             'OS2::DLL' => '1.03',
3290             'Object::Accessor' => '0.32',
3291             'Opcode' => '1.09',
3292             'POSIX' => '1.13',
3293             'Params::Check' => '0.26',
3294             'PerlIO::encoding' => '0.10',
3295             'PerlIO::scalar' => '0.05',
3296             'PerlIO::via' => '0.04',
3297             'Pod::Html' => '1.08',
3298             'Pod::Man' => '2.12',
3299             'Pod::ParseUtils' => '1.35',
3300             'Pod::Parser' => '1.35',
3301             'Pod::Select' => '1.35',
3302             'Pod::Simple' => '3.05',
3303             'Pod::Text' => '3.08',
3304             'Pod::Usage' => '1.35',
3305             'Scalar::Util' => '1.19',
3306             'SelfLoader' => '1.11',
3307             'Shell' => '0.72_01',
3308             'Socket' => '1.79',
3309             'Storable' => '2.16',
3310             'Switch' => '2.13',
3311             'Sys::Syslog' => '0.18_01',
3312             'Term::ANSIColor' => '1.12',
3313             'Term::UI' => '0.14_01',
3314             'Term::UI::History' => undef,
3315             'Test::Builder' => '0.70',
3316             'Test::Builder::Module' => '0.68',
3317             'Test::Builder::Tester' => '1.07',
3318             'Test::Harness' => '2.64',
3319             'Test::Harness::Results'=> '0.01',
3320             'Test::More' => '0.70',
3321             'Test::Simple' => '0.70',
3322             'Text::Balanced' => '2.0.0',
3323             'Text::Soundex' => '3.02',
3324             'Text::Tabs' => '2007.1117',
3325             'Text::Wrap' => '2006.1117',
3326             'Thread' => '3.02',
3327             'Tie::File' => '0.97_02',
3328             'Tie::Hash::NamedCapture'=> '0.06',
3329             'Tie::Memoize' => '1.1',
3330             'Tie::RefHash' => '1.37',
3331             'Time::HiRes' => '1.9707',
3332             'Time::Local' => '1.17',
3333             'Time::Piece' => '1.11_02',
3334             'Time::Seconds' => undef,
3335             'Unicode' => '5.0.0',
3336             'Unicode::Normalize' => '1.02',
3337             'Unicode::UCD' => '0.25',
3338             'VMS::DCLsym' => '1.03',
3339             'Win32' => '0.30',
3340             'Win32API::File' => '0.1001_01',
3341             'Win32CORE' => '0.02',
3342             'XS::APItest' => '0.12',
3343             'XSLoader' => '0.08',
3344             'attributes' => '0.08',
3345             'base' => '2.12',
3346             'bigint' => '0.22',
3347             'bignum' => '0.22',
3348             'bigrat' => '0.22',
3349             'bytes' => '1.03',
3350             'charnames' => '1.06',
3351             'constant' => '1.10',
3352             'diagnostics' => '1.17',
3353             'encoding' => '2.06',
3354             'encoding::warnings' => '0.11',
3355             'feature' => '1.10',
3356             'fields' => '2.12',
3357             'less' => '0.02',
3358             'mro' => '1.00',
3359             'overload' => '1.06',
3360             're' => '0.08',
3361             'sigtrap' => '1.04',
3362             'sort' => '2.01',
3363             'strict' => '1.04',
3364             'threads' => '1.63',
3365             'threads::shared' => '1.12',
3366             'utf8' => '1.07',
3367             'version' => '0.7203',
3368             'warnings' => '1.06',
3369             },
3370             removed => {
3371             'B::Asmdata' => 1,
3372             'B::Assembler' => 1,
3373             'B::Bblock' => 1,
3374             'B::Bytecode' => 1,
3375             'B::C' => 1,
3376             'B::CC' => 1,
3377             'B::Disassembler' => 1,
3378             'B::Stackobj' => 1,
3379             'B::Stash' => 1,
3380             'ByteLoader' => 1,
3381             'Thread::Signal' => 1,
3382             'Thread::Specific' => 1,
3383             'assertions' => 1,
3384             'assertions::activate' => 1,
3385             'assertions::compat' => 1,
3386             }
3387             },
3388             5.01 => {
3389             delta_from => 5.009005,
3390             changed => {
3391             'Archive::Extract' => '0.24',
3392             'Archive::Tar' => '1.38',
3393             'Attribute::Handlers' => '0.79',
3394             'B' => '1.17',
3395             'B::Concise' => '0.74',
3396             'B::Deparse' => '0.83',
3397             'CPAN' => '1.9205',
3398             'CPAN::API::HOWTO' => undef,
3399             'CPAN::Debug' => '5.402212',
3400             'CPAN::DeferedCode' => '5.50',
3401             'CPAN::FirstTime' => '5.402229',
3402             'CPAN::HandleConfig' => '5.402212',
3403             'CPAN::Nox' => '5.402411',
3404             'CPAN::Queue' => '5.402212',
3405             'CPAN::Tarzip' => '5.402213',
3406             'CPAN::Version' => '5.5',
3407             'CPANPLUS' => '0.84',
3408             'CPANPLUS::Dist::Build' => '0.06_02',
3409             'CPANPLUS::Internals' => '0.84',
3410             'CPANPLUS::Shell::Default'=> '0.84',
3411             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3412             'Carp' => '1.08',
3413             'Carp::Heavy' => '1.08',
3414             'Compress::Raw::Zlib' => '2.008',
3415             'Compress::Zlib' => '2.008',
3416             'Cwd' => '3.2501',
3417             'DB_File' => '1.816_1',
3418             'Data::Dumper' => '2.121_14',
3419             'Devel::PPPort' => '3.13',
3420             'Digest::SHA' => '5.45',
3421             'Exporter' => '5.62',
3422             'Exporter::Heavy' => '5.62',
3423             'ExtUtils::CBuilder' => '0.21',
3424             'ExtUtils::CBuilder::Base'=> '0.21',
3425             'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3426             'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3427             'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3428             'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3429             'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3430             'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3431             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3432             'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3433             'ExtUtils::Command::MM' => '6.42',
3434             'ExtUtils::Constant::ProxySubs'=> '0.05',
3435             'ExtUtils::Embed' => '1.27',
3436             'ExtUtils::Install' => '1.44',
3437             'ExtUtils::Installed' => '1.43',
3438             'ExtUtils::Liblist' => '6.42',
3439             'ExtUtils::Liblist::Kid'=> '6.42',
3440             'ExtUtils::MM' => '6.42',
3441             'ExtUtils::MM_AIX' => '6.42',
3442             'ExtUtils::MM_Any' => '6.42',
3443             'ExtUtils::MM_BeOS' => '6.42',
3444             'ExtUtils::MM_Cygwin' => '6.42',
3445             'ExtUtils::MM_DOS' => '6.42',
3446             'ExtUtils::MM_MacOS' => '6.42',
3447             'ExtUtils::MM_NW5' => '6.42',
3448             'ExtUtils::MM_OS2' => '6.42',
3449             'ExtUtils::MM_QNX' => '6.42',
3450             'ExtUtils::MM_UWIN' => '6.42',
3451             'ExtUtils::MM_Unix' => '6.42',
3452             'ExtUtils::MM_VMS' => '6.42',
3453             'ExtUtils::MM_VOS' => '6.42',
3454             'ExtUtils::MM_Win32' => '6.42',
3455             'ExtUtils::MM_Win95' => '6.42',
3456             'ExtUtils::MY' => '6.42',
3457             'ExtUtils::MakeMaker' => '6.42',
3458             'ExtUtils::MakeMaker::Config'=> '6.42',
3459             'ExtUtils::MakeMaker::bytes'=> '6.42',
3460             'ExtUtils::MakeMaker::vmsish'=> '6.42',
3461             'ExtUtils::Mkbootstrap' => '6.42',
3462             'ExtUtils::Mksymlists' => '6.42',
3463             'ExtUtils::Packlist' => '1.43',
3464             'ExtUtils::ParseXS' => '2.18_02',
3465             'ExtUtils::testlib' => '6.42',
3466             'File::Copy' => '2.11',
3467             'File::Fetch' => '0.14',
3468             'File::Find' => '1.12',
3469             'File::Path' => '2.04',
3470             'File::Spec' => '3.2501',
3471             'File::Spec::Cygwin' => '3.2501',
3472             'File::Spec::Epoc' => '3.2501',
3473             'File::Spec::Functions' => '3.2501',
3474             'File::Spec::Mac' => '3.2501',
3475             'File::Spec::OS2' => '3.2501',
3476             'File::Spec::Unix' => '3.2501',
3477             'File::Spec::VMS' => '3.2501',
3478             'File::Spec::Win32' => '3.2501',
3479             'Filter::Util::Call' => '1.07',
3480             'Getopt::Long' => '2.37',
3481             'Hash::Util::FieldHash' => '1.03',
3482             'IO::Compress::Adapter::Deflate'=> '2.008',
3483             'IO::Compress::Adapter::Identity'=> '2.008',
3484             'IO::Compress::Base' => '2.008',
3485             'IO::Compress::Base::Common'=> '2.008',
3486             'IO::Compress::Deflate' => '2.008',
3487             'IO::Compress::Gzip' => '2.008',
3488             'IO::Compress::Gzip::Constants'=> '2.008',
3489             'IO::Compress::RawDeflate'=> '2.008',
3490             'IO::Compress::Zip' => '2.008',
3491             'IO::Compress::Zip::Constants'=> '2.008',
3492             'IO::Compress::Zlib::Constants'=> '2.008',
3493             'IO::Compress::Zlib::Extra'=> '2.008',
3494             'IO::Uncompress::Adapter::Identity'=> '2.008',
3495             'IO::Uncompress::Adapter::Inflate'=> '2.008',
3496             'IO::Uncompress::AnyInflate'=> '2.008',
3497             'IO::Uncompress::AnyUncompress'=> '2.008',
3498             'IO::Uncompress::Base' => '2.008',
3499             'IO::Uncompress::Gunzip'=> '2.008',
3500             'IO::Uncompress::Inflate'=> '2.008',
3501             'IO::Uncompress::RawInflate'=> '2.008',
3502             'IO::Uncompress::Unzip' => '2.008',
3503             'IO::Zlib' => '1.07',
3504             'IPC::Cmd' => '0.40_1',
3505             'IPC::SysV' => '1.05',
3506             'Locale::Maketext' => '1.12',
3507             'Log::Message::Simple' => '0.04',
3508             'Math::BigFloat' => '1.59',
3509             'Math::BigInt' => '1.88',
3510             'Math::BigInt::Calc' => '0.52',
3511             'Math::BigInt::FastCalc'=> '0.16',
3512             'Math::BigRat' => '0.21',
3513             'Module::Build' => '0.2808_01',
3514             'Module::Build::Base' => '0.2808_01',
3515             'Module::Build::Compat' => '0.2808_01',
3516             'Module::Build::Config' => '0.2808_01',
3517             'Module::Build::Dumper' => undef,
3518             'Module::Build::ModuleInfo'=> '0.2808_01',
3519             'Module::Build::Notes' => '0.2808_01',
3520             'Module::Build::PPMMaker'=> '0.2808_01',
3521             'Module::Build::Platform::Amiga'=> '0.2808_01',
3522             'Module::Build::Platform::Default'=> '0.2808_01',
3523             'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3524             'Module::Build::Platform::MPEiX'=> '0.2808_01',
3525             'Module::Build::Platform::MacOS'=> '0.2808_01',
3526             'Module::Build::Platform::RiscOS'=> '0.2808_01',
3527             'Module::Build::Platform::Unix'=> '0.2808_01',
3528             'Module::Build::Platform::VMS'=> '0.2808_01',
3529             'Module::Build::Platform::VOS'=> '0.2808_01',
3530             'Module::Build::Platform::Windows'=> '0.2808_01',
3531             'Module::Build::Platform::aix'=> '0.2808_01',
3532             'Module::Build::Platform::cygwin'=> '0.2808_01',
3533             'Module::Build::Platform::darwin'=> '0.2808_01',
3534             'Module::Build::Platform::os2'=> '0.2808_01',
3535             'Module::Build::PodParser'=> '0.2808_01',
3536             'Module::CoreList' => '2.13',
3537             'Module::Load' => '0.12',
3538             'Module::Load::Conditional'=> '0.22',
3539             'Net::Cmd' => '2.29',
3540             'Net::Ping' => '2.33',
3541             'Opcode' => '1.11',
3542             'Pod::Checker' => '1.43_01',
3543             'Pod::Man' => '2.16',
3544             'Pod::Perldoc' => '3.14_02',
3545             'Socket' => '1.80',
3546             'Storable' => '2.18',
3547             'Sys::Syslog' => '0.22',
3548             'Sys::Syslog::win32::Win32'=> undef,
3549             'Term::Cap' => '1.12',
3550             'Term::ReadLine' => '1.03',
3551             'Term::UI' => '0.18',
3552             'Test::Builder' => '0.72',
3553             'Test::Builder::Module' => '0.72',
3554             'Test::Builder::Tester' => '1.09',
3555             'Test::Harness::Straps' => '0.26_01',
3556             'Test::More' => '0.72',
3557             'Test::Simple' => '0.72',
3558             'Text::ParseWords' => '3.26',
3559             'Text::Soundex' => '3.03',
3560             'Tie::StdHandle' => undef,
3561             'Time::HiRes' => '1.9711',
3562             'Time::Local' => '1.18',
3563             'Time::Piece' => '1.12',
3564             'VMS::Filespec' => '1.12',
3565             'Win32' => '0.34',
3566             'base' => '2.13',
3567             'constant' => '1.13',
3568             'feature' => '1.11',
3569             'fields' => '2.13',
3570             'filetest' => '1.02',
3571             'open' => '1.06',
3572             'threads' => '1.67',
3573             'threads::shared' => '1.14',
3574             'version' => '0.74',
3575             },
3576             removed => {
3577             }
3578             },
3579             5.010001 => {
3580             delta_from => 5.01,
3581             changed => {
3582             'App::Prove' => '3.17',
3583             'App::Prove::State' => '3.17',
3584             'App::Prove::State::Result'=> '3.17',
3585             'App::Prove::State::Result::Test'=> '3.17',
3586             'Archive::Extract' => '0.34',
3587             'Archive::Tar' => '1.52',
3588             'Attribute::Handlers' => '0.85',
3589             'AutoLoader' => '5.68',
3590             'AutoSplit' => '1.06',
3591             'B' => '1.22',
3592             'B::Concise' => '0.76',
3593             'B::Debug' => '1.11',
3594             'B::Deparse' => '0.89',
3595             'B::Lint' => '1.11',
3596             'B::Lint::Debug' => undef,
3597             'B::Xref' => '1.02',
3598             'Benchmark' => '1.11',
3599             'CGI' => '3.43',
3600             'CGI::Carp' => '1.30_01',
3601             'CGI::Cookie' => '1.29',
3602             'CPAN' => '1.9402',
3603             'CPAN::Author' => '5.5',
3604             'CPAN::Bundle' => '5.5',
3605             'CPAN::CacheMgr' => '5.5',
3606             'CPAN::Complete' => '5.5',
3607             'CPAN::Debug' => '5.5',
3608             'CPAN::DeferredCode' => '5.50',
3609             'CPAN::Distribution' => '1.93',
3610             'CPAN::Distroprefs' => '6',
3611             'CPAN::Distrostatus' => '5.5',
3612             'CPAN::Exception::RecursiveDependency'=> '5.5',
3613             'CPAN::Exception::blocked_urllist'=> '1.0',
3614             'CPAN::Exception::yaml_not_installed'=> '5.5',
3615             'CPAN::FTP' => '5.5001',
3616             'CPAN::FTP::netrc' => '1.00',
3617             'CPAN::FirstTime' => '5.53',
3618             'CPAN::HandleConfig' => '5.5',
3619             'CPAN::Index' => '1.93',
3620             'CPAN::InfoObj' => '5.5',
3621             'CPAN::Kwalify' => '5.50',
3622             'CPAN::LWP::UserAgent' => '1.00',
3623             'CPAN::Module' => '5.5',
3624             'CPAN::Nox' => '5.50',
3625             'CPAN::Prompt' => '5.5',
3626             'CPAN::Queue' => '5.5',
3627             'CPAN::Shell' => '5.5',
3628             'CPAN::Tarzip' => '5.501',
3629             'CPAN::URL' => '5.5',
3630             'CPANPLUS' => '0.88',
3631             'CPANPLUS::Dist::Autobundle'=> undef,
3632             'CPANPLUS::Dist::Base' => undef,
3633             'CPANPLUS::Dist::Build' => '0.36',
3634             'CPANPLUS::Dist::Build::Constants'=> '0.36',
3635             'CPANPLUS::Internals' => '0.88',
3636             'CPANPLUS::Internals::Constants'=> undef,
3637             'CPANPLUS::Internals::Constants::Report'=> undef,
3638             'CPANPLUS::Internals::Source::Memory'=> undef,
3639             'CPANPLUS::Internals::Source::SQLite'=> undef,
3640             'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3641             'CPANPLUS::Shell::Default'=> '0.88',
3642             'Carp' => '1.11',
3643             'Carp::Heavy' => '1.11',
3644             'Compress::Raw::Bzip2' => '2.020',
3645             'Compress::Raw::Zlib' => '2.020',
3646             'Compress::Zlib' => '2.020',
3647             'Cwd' => '3.30',
3648             'DB' => '1.02',
3649             'DBM_Filter::compress' => '0.02',
3650             'DBM_Filter::encode' => '0.02',
3651             'DBM_Filter::int32' => '0.02',
3652             'DBM_Filter::null' => '0.02',
3653             'DBM_Filter::utf8' => '0.02',
3654             'DB_File' => '1.820',
3655             'Data::Dumper' => '2.124',
3656             'Devel::DProf' => '20080331.00',
3657             'Devel::PPPort' => '3.19',
3658             'Devel::Peek' => '1.04',
3659             'Digest' => '1.16',
3660             'Digest::MD5' => '2.39',
3661             'Digest::SHA' => '5.47',
3662             'Digest::base' => '1.16',
3663             'Digest::file' => '1.16',
3664             'DirHandle' => '1.03',
3665             'Dumpvalue' => '1.13',
3666             'DynaLoader' => '1.10',
3667             'Encode' => '2.35',
3668             'Encode::Alias' => '2.12',
3669             'Encode::CN::HZ' => '2.05',
3670             'Encode::Config' => '2.05',
3671             'Encode::GSM0338' => '2.01',
3672             'Encode::Guess' => '2.03',
3673             'Encode::JP::JIS7' => '2.04',
3674             'Encode::MIME::Header' => '2.11',
3675             'Encode::Unicode' => '2.06',
3676             'Errno' => '1.11',
3677             'Exporter' => '5.63',
3678             'Exporter::Heavy' => '5.63',
3679             'ExtUtils::CBuilder' => '0.2602',
3680             'ExtUtils::CBuilder::Base'=> '0.2602',
3681             'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3682             'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3683             'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3684             'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3685             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3686             'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3687             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3688             'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3689             'ExtUtils::Command' => '1.16',
3690             'ExtUtils::Command::MM' => '6.55_02',
3691             'ExtUtils::Constant' => '0.22',
3692             'ExtUtils::Constant::ProxySubs'=> '0.06',
3693             'ExtUtils::Constant::Utils'=> '0.02',
3694             'ExtUtils::Constant::XS'=> '0.03',
3695             'ExtUtils::Embed' => '1.28',
3696             'ExtUtils::Install' => '1.54',
3697             'ExtUtils::Installed' => '1.999_001',
3698             'ExtUtils::Liblist' => '6.55_02',
3699             'ExtUtils::Liblist::Kid'=> '6.5502',
3700             'ExtUtils::MM' => '6.55_02',
3701             'ExtUtils::MM_AIX' => '6.55_02',
3702             'ExtUtils::MM_Any' => '6.55_02',
3703             'ExtUtils::MM_BeOS' => '6.55_02',
3704             'ExtUtils::MM_Cygwin' => '6.55_02',
3705             'ExtUtils::MM_DOS' => '6.5502',
3706             'ExtUtils::MM_Darwin' => '6.55_02',
3707             'ExtUtils::MM_MacOS' => '6.5502',
3708             'ExtUtils::MM_NW5' => '6.55_02',
3709             'ExtUtils::MM_OS2' => '6.55_02',
3710             'ExtUtils::MM_QNX' => '6.55_02',
3711             'ExtUtils::MM_UWIN' => '6.5502',
3712             'ExtUtils::MM_Unix' => '6.55_02',
3713             'ExtUtils::MM_VMS' => '6.55_02',
3714             'ExtUtils::MM_VOS' => '6.55_02',
3715             'ExtUtils::MM_Win32' => '6.55_02',
3716             'ExtUtils::MM_Win95' => '6.55_02',
3717             'ExtUtils::MY' => '6.5502',
3718             'ExtUtils::MakeMaker' => '6.55_02',
3719             'ExtUtils::MakeMaker::Config'=> '6.55_02',
3720             'ExtUtils::Manifest' => '1.56',
3721             'ExtUtils::Mkbootstrap' => '6.55_02',
3722             'ExtUtils::Mksymlists' => '6.55_02',
3723             'ExtUtils::ParseXS' => '2.2002',
3724             'ExtUtils::testlib' => '6.5502',
3725             'Fatal' => '2.06_01',
3726             'File::Basename' => '2.77',
3727             'File::CheckTree' => '4.4',
3728             'File::Compare' => '1.1006',
3729             'File::Copy' => '2.14',
3730             'File::DosGlob' => '1.01',
3731             'File::Fetch' => '0.20',
3732             'File::Find' => '1.14',
3733             'File::GlobMapper' => '1.000',
3734             'File::Path' => '2.07_03',
3735             'File::Spec' => '3.30',
3736             'File::Spec::Cygwin' => '3.30',
3737             'File::Spec::Epoc' => '3.30',
3738             'File::Spec::Functions' => '3.30',
3739             'File::Spec::Mac' => '3.30',
3740             'File::Spec::OS2' => '3.30',
3741             'File::Spec::Unix' => '3.30',
3742             'File::Spec::VMS' => '3.30',
3743             'File::Spec::Win32' => '3.30',
3744             'File::Temp' => '0.22',
3745             'File::stat' => '1.01',
3746             'FileCache' => '1.08',
3747             'FileHandle' => '2.02',
3748             'Filter::Simple' => '0.84',
3749             'Filter::Util::Call' => '1.08',
3750             'FindBin' => '1.50',
3751             'GDBM_File' => '1.09',
3752             'Getopt::Long' => '2.38',
3753             'Getopt::Std' => '1.06',
3754             'Hash::Util::FieldHash' => '1.04',
3755             'I18N::Collate' => '1.01',
3756             'IO' => '1.25',
3757             'IO::Compress::Adapter::Bzip2'=> '2.020',
3758             'IO::Compress::Adapter::Deflate'=> '2.020',
3759             'IO::Compress::Adapter::Identity'=> '2.020',
3760             'IO::Compress::Base' => '2.020',
3761             'IO::Compress::Base::Common'=> '2.020',
3762             'IO::Compress::Bzip2' => '2.020',
3763             'IO::Compress::Deflate' => '2.020',
3764             'IO::Compress::Gzip' => '2.020',
3765             'IO::Compress::Gzip::Constants'=> '2.020',
3766             'IO::Compress::RawDeflate'=> '2.020',
3767             'IO::Compress::Zip' => '2.020',
3768             'IO::Compress::Zip::Constants'=> '2.020',
3769             'IO::Compress::Zlib::Constants'=> '2.020',
3770             'IO::Compress::Zlib::Extra'=> '2.020',
3771             'IO::Dir' => '1.07',
3772             'IO::Handle' => '1.28',
3773             'IO::Socket' => '1.31',
3774             'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3775             'IO::Uncompress::Adapter::Identity'=> '2.020',
3776             'IO::Uncompress::Adapter::Inflate'=> '2.020',
3777             'IO::Uncompress::AnyInflate'=> '2.020',
3778             'IO::Uncompress::AnyUncompress'=> '2.020',
3779             'IO::Uncompress::Base' => '2.020',
3780             'IO::Uncompress::Bunzip2'=> '2.020',
3781             'IO::Uncompress::Gunzip'=> '2.020',
3782             'IO::Uncompress::Inflate'=> '2.020',
3783             'IO::Uncompress::RawInflate'=> '2.020',
3784             'IO::Uncompress::Unzip' => '2.020',
3785             'IO::Zlib' => '1.09',
3786             'IPC::Cmd' => '0.46',
3787             'IPC::Msg' => '2.01',
3788             'IPC::Open2' => '1.03',
3789             'IPC::Open3' => '1.04',
3790             'IPC::Semaphore' => '2.01',
3791             'IPC::SharedMem' => '2.01',
3792             'IPC::SysV' => '2.01',
3793             'List::Util' => '1.21',
3794             'List::Util::PP' => '1.21',
3795             'List::Util::XS' => '1.21',
3796             'Locale::Maketext' => '1.13',
3797             'Locale::Maketext::Guts'=> '1.13',
3798             'Locale::Maketext::GutsLoader'=> '1.13',
3799             'Log::Message' => '0.02',
3800             'MIME::Base64' => '3.08',
3801             'MIME::QuotedPrint' => '3.08',
3802             'Math::BigFloat' => '1.60',
3803             'Math::BigInt' => '1.89',
3804             'Math::BigInt::FastCalc'=> '0.19',
3805             'Math::BigRat' => '0.22',
3806             'Math::Complex' => '1.56',
3807             'Math::Trig' => '1.2',
3808             'Memoize' => '1.01_03',
3809             'Module::Build' => '0.340201',
3810             'Module::Build::Base' => '0.340201',
3811             'Module::Build::Compat' => '0.340201',
3812             'Module::Build::Config' => '0.340201',
3813             'Module::Build::Cookbook'=> '0.340201',
3814             'Module::Build::Dumper' => '0.340201',
3815             'Module::Build::ModuleInfo'=> '0.340201',
3816             'Module::Build::Notes' => '0.340201',
3817             'Module::Build::PPMMaker'=> '0.340201',
3818             'Module::Build::Platform::Amiga'=> '0.340201',
3819             'Module::Build::Platform::Default'=> '0.340201',
3820             'Module::Build::Platform::EBCDIC'=> '0.340201',
3821             'Module::Build::Platform::MPEiX'=> '0.340201',
3822             'Module::Build::Platform::MacOS'=> '0.340201',
3823             'Module::Build::Platform::RiscOS'=> '0.340201',
3824             'Module::Build::Platform::Unix'=> '0.340201',
3825             'Module::Build::Platform::VMS'=> '0.340201',
3826             'Module::Build::Platform::VOS'=> '0.340201',
3827             'Module::Build::Platform::Windows'=> '0.340201',
3828             'Module::Build::Platform::aix'=> '0.340201',
3829             'Module::Build::Platform::cygwin'=> '0.340201',
3830             'Module::Build::Platform::darwin'=> '0.340201',
3831             'Module::Build::Platform::os2'=> '0.340201',
3832             'Module::Build::PodParser'=> '0.340201',
3833             'Module::Build::Version'=> '0.77',
3834             'Module::CoreList' => '2.18',
3835             'Module::Load' => '0.16',
3836             'Module::Load::Conditional'=> '0.30',
3837             'Module::Loaded' => '0.02',
3838             'Module::Pluggable' => '3.9',
3839             'Module::Pluggable::Object'=> '3.9',
3840             'NDBM_File' => '1.08',
3841             'NEXT' => '0.64',
3842             'Net::Ping' => '2.36',
3843             'O' => '1.01',
3844             'OS2::Process' => '1.03',
3845             'OS2::REXX' => '1.04',
3846             'Object::Accessor' => '0.34',
3847             'POSIX' => '1.17',
3848             'Package::Constants' => '0.02',
3849             'Parse::CPAN::Meta' => '1.39',
3850             'PerlIO' => '1.06',
3851             'PerlIO::encoding' => '0.11',
3852             'PerlIO::scalar' => '0.07',
3853             'PerlIO::via' => '0.07',
3854             'Pod::Checker' => '1.45',
3855             'Pod::Find' => '1.35',
3856             'Pod::Html' => '1.09',
3857             'Pod::InputObjects' => '1.31',
3858             'Pod::Man' => '2.22',
3859             'Pod::ParseLink' => '1.09',
3860             'Pod::ParseUtils' => '1.36',
3861             'Pod::Parser' => '1.37',
3862             'Pod::Perldoc' => '3.14_04',
3863             'Pod::PlainText' => '2.04',
3864             'Pod::Select' => '1.36',
3865             'Pod::Simple' => '3.07',
3866             'Pod::Simple::XHTML' => '3.04',
3867             'Pod::Text' => '3.13',
3868             'Pod::Text::Color' => '2.05',
3869             'Pod::Text::Overstrike' => '2.03',
3870             'Pod::Text::Termcap' => '2.05',
3871             'Pod::Usage' => '1.36',
3872             'Safe' => '2.18',
3873             'Scalar::Util' => '1.21',
3874             'Scalar::Util::PP' => '1.21',
3875             'SelectSaver' => '1.02',
3876             'SelfLoader' => '1.17',
3877             'Socket' => '1.82',
3878             'Storable' => '2.20',
3879             'Switch' => '2.14',
3880             'Symbol' => '1.07',
3881             'Sys::Syslog' => '0.27',
3882             'TAP::Base' => '3.17',
3883             'TAP::Formatter::Base' => '3.17',
3884             'TAP::Formatter::Color' => '3.17',
3885             'TAP::Formatter::Console'=> '3.17',
3886             'TAP::Formatter::Console::ParallelSession'=> '3.17',
3887             'TAP::Formatter::Console::Session'=> '3.17',
3888             'TAP::Formatter::File' => '3.17',
3889             'TAP::Formatter::File::Session'=> '3.17',
3890             'TAP::Formatter::Session'=> '3.17',
3891             'TAP::Harness' => '3.17',
3892             'TAP::Object' => '3.17',
3893             'TAP::Parser' => '3.17',
3894             'TAP::Parser::Aggregator'=> '3.17',
3895             'TAP::Parser::Grammar' => '3.17',
3896             'TAP::Parser::Iterator' => '3.17',
3897             'TAP::Parser::Iterator::Array'=> '3.17',
3898             'TAP::Parser::Iterator::Process'=> '3.17',
3899             'TAP::Parser::Iterator::Stream'=> '3.17',
3900             'TAP::Parser::IteratorFactory'=> '3.17',
3901             'TAP::Parser::Multiplexer'=> '3.17',
3902             'TAP::Parser::Result' => '3.17',
3903             'TAP::Parser::Result::Bailout'=> '3.17',
3904             'TAP::Parser::Result::Comment'=> '3.17',
3905             'TAP::Parser::Result::Plan'=> '3.17',
3906             'TAP::Parser::Result::Pragma'=> '3.17',
3907             'TAP::Parser::Result::Test'=> '3.17',
3908             'TAP::Parser::Result::Unknown'=> '3.17',
3909             'TAP::Parser::Result::Version'=> '3.17',
3910             'TAP::Parser::Result::YAML'=> '3.17',
3911             'TAP::Parser::ResultFactory'=> '3.17',
3912             'TAP::Parser::Scheduler'=> '3.17',
3913             'TAP::Parser::Scheduler::Job'=> '3.17',
3914             'TAP::Parser::Scheduler::Spinner'=> '3.17',
3915             'TAP::Parser::Source' => '3.17',
3916             'TAP::Parser::Source::Perl'=> '3.17',
3917             'TAP::Parser::Utils' => '3.17',
3918             'TAP::Parser::YAMLish::Reader'=> '3.17',
3919             'TAP::Parser::YAMLish::Writer'=> '3.17',
3920             'Term::ANSIColor' => '2.00',
3921             'Term::ReadLine' => '1.04',
3922             'Term::UI' => '0.20',
3923             'Test' => '1.25_02',
3924             'Test::Builder' => '0.92',
3925             'Test::Builder::Module' => '0.92',
3926             'Test::Builder::Tester' => '1.18',
3927             'Test::Builder::Tester::Color'=> '1.18',
3928             'Test::Harness' => '3.17',
3929             'Test::More' => '0.92',
3930             'Test::Simple' => '0.92',
3931             'Text::ParseWords' => '3.27',
3932             'Text::Tabs' => '2009.0305',
3933             'Text::Wrap' => '2009.0305',
3934             'Thread::Queue' => '2.11',
3935             'Thread::Semaphore' => '2.09',
3936             'Tie::Handle' => '4.2',
3937             'Tie::Hash' => '1.03',
3938             'Tie::RefHash' => '1.38',
3939             'Tie::Scalar' => '1.01',
3940             'Tie::StdHandle' => '4.2',
3941             'Time::HiRes' => '1.9719',
3942             'Time::Local' => '1.1901',
3943             'Time::Piece' => '1.15',
3944             'UNIVERSAL' => '1.05',
3945             'Unicode' => '5.1.0',
3946             'Unicode::Normalize' => '1.03',
3947             'Unicode::UCD' => '0.27',
3948             'VMS::Stdio' => '2.4',
3949             'Win32' => '0.39',
3950             'Win32API::File' => '0.1101',
3951             'XS::APItest' => '0.15',
3952             'XS::Typemap' => '0.03',
3953             'XSLoader' => '0.10',
3954             'attributes' => '0.09',
3955             'attrs' => '1.03',
3956             'autodie' => '2.06_01',
3957             'autodie::exception' => '2.06_01',
3958             'autodie::exception::system'=> '2.06_01',
3959             'autodie::hints' => '2.06_01',
3960             'base' => '2.14',
3961             'bigint' => '0.23',
3962             'bignum' => '0.23',
3963             'bigrat' => '0.23',
3964             'blib' => '1.04',
3965             'charnames' => '1.07',
3966             'constant' => '1.17',
3967             'encoding' => '2.6_01',
3968             'feature' => '1.13',
3969             'fields' => '2.14',
3970             'lib' => '0.62',
3971             'mro' => '1.01',
3972             'open' => '1.07',
3973             'ops' => '1.02',
3974             'overload' => '1.07',
3975             'overload::numbers' => undef,
3976             'overloading' => '0.01',
3977             'parent' => '0.221',
3978             're' => '0.09',
3979             'threads' => '1.72',
3980             'threads::shared' => '1.29',
3981             'version' => '0.77',
3982             },
3983             removed => {
3984             'CPAN::API::HOWTO' => 1,
3985             'CPAN::DeferedCode' => 1,
3986             'CPANPLUS::inc' => 1,
3987             'ExtUtils::MakeMaker::bytes'=> 1,
3988             'ExtUtils::MakeMaker::vmsish'=> 1,
3989             'Test::Harness::Assert' => 1,
3990             'Test::Harness::Iterator'=> 1,
3991             'Test::Harness::Point' => 1,
3992             'Test::Harness::Results'=> 1,
3993             'Test::Harness::Straps' => 1,
3994             'Test::Harness::Util' => 1,
3995             }
3996             },
3997             5.011 => {
3998             delta_from => 5.010001,
3999             changed => {
4000             'Archive::Tar' => '1.54',
4001             'Attribute::Handlers' => '0.87',
4002             'AutoLoader' => '5.70',
4003             'B::Deparse' => '0.91',
4004             'B::Lint' => '1.11_01',
4005             'B::Lint::Debug' => '0.01',
4006             'CGI' => '3.45',
4007             'CGI::Apache' => '1.01',
4008             'CGI::Carp' => '3.45',
4009             'CGI::Pretty' => '3.44',
4010             'CGI::Switch' => '1.01',
4011             'CGI::Util' => '3.45',
4012             'CPAN' => '1.94_51',
4013             'CPAN::Distribution' => '1.94',
4014             'CPAN::FTP' => '5.5002',
4015             'CPAN::Index' => '1.94',
4016             'CPAN::LWP::UserAgent' => '1.94',
4017             'CPANPLUS::Dist::Build' => '0.40',
4018             'CPANPLUS::Dist::Build::Constants'=> '0.40',
4019             'Carp' => '1.12',
4020             'Carp::Heavy' => '1.12',
4021             'Class::ISA' => '0.36',
4022             'Compress::Raw::Bzip2' => '2.021',
4023             'Compress::Raw::Zlib' => '2.021',
4024             'Compress::Zlib' => '2.021',
4025             'Cwd' => '3.3002',
4026             'Data::Dumper' => '2.125',
4027             'Encode' => '2.37',
4028             'Exporter' => '5.64',
4029             'Exporter::Heavy' => '5.64',
4030             'ExtUtils::ParseXS' => '2.200403',
4031             'File::Basename' => '2.78',
4032             'File::Copy' => '2.16',
4033             'File::stat' => '1.02',
4034             'IO' => '1.25_01',
4035             'IO::Compress::Adapter::Bzip2'=> '2.021',
4036             'IO::Compress::Adapter::Deflate'=> '2.021',
4037             'IO::Compress::Adapter::Identity'=> '2.021',
4038             'IO::Compress::Base' => '2.021',
4039             'IO::Compress::Base::Common'=> '2.021',
4040             'IO::Compress::Bzip2' => '2.021',
4041             'IO::Compress::Deflate' => '2.021',
4042             'IO::Compress::Gzip' => '2.021',
4043             'IO::Compress::Gzip::Constants'=> '2.021',
4044             'IO::Compress::RawDeflate'=> '2.021',
4045             'IO::Compress::Zip' => '2.021',
4046             'IO::Compress::Zip::Constants'=> '2.021',
4047             'IO::Compress::Zlib::Constants'=> '2.021',
4048             'IO::Compress::Zlib::Extra'=> '2.021',
4049             'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
4050             'IO::Uncompress::Adapter::Identity'=> '2.021',
4051             'IO::Uncompress::Adapter::Inflate'=> '2.021',
4052             'IO::Uncompress::AnyInflate'=> '2.021',
4053             'IO::Uncompress::AnyUncompress'=> '2.021',
4054             'IO::Uncompress::Base' => '2.021',
4055             'IO::Uncompress::Bunzip2'=> '2.021',
4056             'IO::Uncompress::Gunzip'=> '2.021',
4057             'IO::Uncompress::Inflate'=> '2.021',
4058             'IO::Uncompress::RawInflate'=> '2.021',
4059             'IO::Uncompress::Unzip' => '2.021',
4060             'IO::Zlib' => '1.10',
4061             'IPC::Cmd' => '0.50',
4062             'IPC::Open3' => '1.05',
4063             'Locale::Maketext::Simple'=> '0.21',
4064             'Log::Message::Simple' => '0.06',
4065             'Math::BigInt' => '1.89_01',
4066             'Math::BigRat' => '0.24',
4067             'Module::Build' => '0.35',
4068             'Module::Build::Base' => '0.35',
4069             'Module::Build::Compat' => '0.35',
4070             'Module::Build::Config' => '0.35',
4071             'Module::Build::Cookbook'=> '0.35',
4072             'Module::Build::Dumper' => '0.35',
4073             'Module::Build::ModuleInfo'=> '0.35',
4074             'Module::Build::Notes' => '0.35',
4075             'Module::Build::PPMMaker'=> '0.35',
4076             'Module::Build::Platform::Amiga'=> '0.35',
4077             'Module::Build::Platform::Default'=> '0.35',
4078             'Module::Build::Platform::EBCDIC'=> '0.35',
4079             'Module::Build::Platform::MPEiX'=> '0.35',
4080             'Module::Build::Platform::MacOS'=> '0.35',
4081             'Module::Build::Platform::RiscOS'=> '0.35',
4082             'Module::Build::Platform::Unix'=> '0.35',
4083             'Module::Build::Platform::VMS'=> '0.35',
4084             'Module::Build::Platform::VOS'=> '0.35',
4085             'Module::Build::Platform::Windows'=> '0.35',
4086             'Module::Build::Platform::aix'=> '0.35',
4087             'Module::Build::Platform::cygwin'=> '0.35',
4088             'Module::Build::Platform::darwin'=> '0.35',
4089             'Module::Build::Platform::os2'=> '0.35',
4090             'Module::Build::PodParser'=> '0.35',
4091             'Module::CoreList' => '2.19',
4092             'Module::Loaded' => '0.06',
4093             'Opcode' => '1.13',
4094             'PerlIO::via' => '0.08',
4095             'Pod::Perldoc' => '3.15_01',
4096             'Pod::Plainer' => '1.01',
4097             'Safe' => '2.19',
4098             'Socket' => '1.84',
4099             'Switch' => '2.14_01',
4100             'Term::ANSIColor' => '2.02',
4101             'Term::ReadLine' => '1.05',
4102             'Text::Balanced' => '2.02',
4103             'Text::Soundex' => '3.03_01',
4104             'Time::Local' => '1.1901_01',
4105             'Unicode::Collate' => '0.52_01',
4106             'attributes' => '0.12',
4107             'constant' => '1.19',
4108             'deprecate' => '0.01',
4109             'overload' => '1.08',
4110             'parent' => '0.223',
4111             're' => '0.10',
4112             'threads' => '1.74',
4113             'threads::shared' => '1.31',
4114             'warnings' => '1.07',
4115             },
4116             removed => {
4117             'attrs' => 1,
4118             }
4119             },
4120             5.011001 => {
4121             delta_from => 5.011,
4122             changed => {
4123             'B' => '1.23',
4124             'B::Concise' => '0.77',
4125             'B::Deparse' => '0.92',
4126             'CGI' => '3.48',
4127             'CGI::Pretty' => '3.46',
4128             'CGI::Util' => '3.48',
4129             'CPANPLUS' => '0.89_03',
4130             'CPANPLUS::Internals' => '0.89_03',
4131             'CPANPLUS::Shell::Default'=> '0.89_03',
4132             'Carp' => '1.13',
4133             'Carp::Heavy' => '1.13',
4134             'ExtUtils::CBuilder' => '0.260301',
4135             'ExtUtils::CBuilder::Base'=> '0.260301',
4136             'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
4137             'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
4138             'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
4139             'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
4140             'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
4141             'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
4142             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
4143             'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
4144             'ExtUtils::Install' => '1.55',
4145             'ExtUtils::Manifest' => '1.57',
4146             'ExtUtils::Packlist' => '1.44',
4147             'ExtUtils::ParseXS' => '2.21',
4148             'File::Glob' => '1.07',
4149             'File::Path' => '2.08',
4150             'IO' => '1.25_02',
4151             'Module::CoreList' => '2.21',
4152             'OS2::DLL' => '1.04',
4153             'OS2::Process' => '1.04',
4154             'Object::Accessor' => '0.36',
4155             'Opcode' => '1.15',
4156             'POSIX' => '1.18',
4157             'Parse::CPAN::Meta' => '1.40',
4158             'PerlIO::via' => '0.09',
4159             'Pod::Simple' => '3.08',
4160             'Socket' => '1.85',
4161             'Storable' => '2.22',
4162             'Switch' => '2.15',
4163             'Test::Builder' => '0.94',
4164             'Test::Builder::Module' => '0.94',
4165             'Test::More' => '0.94',
4166             'Test::Simple' => '0.94',
4167             'XS::APItest' => '0.16',
4168             'mro' => '1.02',
4169             'overload' => '1.09',
4170             'threads::shared' => '1.32',
4171             },
4172             removed => {
4173             }
4174             },
4175             5.011002 => {
4176             delta_from => 5.011001,
4177             changed => {
4178             'B::Concise' => '0.78',
4179             'B::Deparse' => '0.93',
4180             'CPANPLUS' => '0.89_09',
4181             'CPANPLUS::Dist::Build' => '0.44',
4182             'CPANPLUS::Dist::Build::Constants'=> '0.44',
4183             'CPANPLUS::Internals' => '0.89_09',
4184             'CPANPLUS::Shell::Default'=> '0.89_09',
4185             'Carp' => '1.14',
4186             'Carp::Heavy' => '1.14',
4187             'Compress::Zlib' => '2.022',
4188             'DBM_Filter' => '0.03',
4189             'Encode' => '2.38',
4190             'Encode::Byte' => '2.04',
4191             'Encode::CN' => '2.03',
4192             'Encode::JP' => '2.04',
4193             'Encode::KR' => '2.03',
4194             'Encode::TW' => '2.03',
4195             'Encode::Unicode' => '2.07',
4196             'Env' => '1.01',
4197             'Exporter' => '5.64_01',
4198             'Exporter::Heavy' => '5.64_01',
4199             'ExtUtils::CBuilder' => '0.27',
4200             'ExtUtils::CBuilder::Base'=> '0.27',
4201             'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4202             'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4203             'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4204             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4205             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4206             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4207             'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4208             'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4209             'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4210             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4211             'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4212             'File::Fetch' => '0.22',
4213             'I18N::LangTags::Detect'=> '1.04',
4214             'I18N::Langinfo' => '0.03',
4215             'IO::Compress::Adapter::Bzip2'=> '2.022',
4216             'IO::Compress::Adapter::Deflate'=> '2.022',
4217             'IO::Compress::Adapter::Identity'=> '2.022',
4218             'IO::Compress::Base' => '2.022',
4219             'IO::Compress::Base::Common'=> '2.022',
4220             'IO::Compress::Bzip2' => '2.022',
4221             'IO::Compress::Deflate' => '2.022',
4222             'IO::Compress::Gzip' => '2.022',
4223             'IO::Compress::Gzip::Constants'=> '2.022',
4224             'IO::Compress::RawDeflate'=> '2.022',
4225             'IO::Compress::Zip' => '2.022',
4226             'IO::Compress::Zip::Constants'=> '2.022',
4227             'IO::Compress::Zlib::Constants'=> '2.022',
4228             'IO::Compress::Zlib::Extra'=> '2.022',
4229             'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4230             'IO::Uncompress::Adapter::Identity'=> '2.022',
4231             'IO::Uncompress::Adapter::Inflate'=> '2.022',
4232             'IO::Uncompress::AnyInflate'=> '2.022',
4233             'IO::Uncompress::AnyUncompress'=> '2.022',
4234             'IO::Uncompress::Base' => '2.022',
4235             'IO::Uncompress::Bunzip2'=> '2.022',
4236             'IO::Uncompress::Gunzip'=> '2.022',
4237             'IO::Uncompress::Inflate'=> '2.022',
4238             'IO::Uncompress::RawInflate'=> '2.022',
4239             'IO::Uncompress::Unzip' => '2.022',
4240             'IPC::Cmd' => '0.54',
4241             'List::Util' => '1.22',
4242             'List::Util::PP' => '1.22',
4243             'List::Util::XS' => '1.22',
4244             'Locale::Maketext' => '1.14',
4245             'Module::Build' => '0.35_09',
4246             'Module::Build::Base' => '0.35_09',
4247             'Module::Build::Compat' => '0.35_09',
4248             'Module::Build::Config' => '0.35_09',
4249             'Module::Build::Cookbook'=> '0.35_09',
4250             'Module::Build::Dumper' => '0.35_09',
4251             'Module::Build::ModuleInfo'=> '0.35_09',
4252             'Module::Build::Notes' => '0.35_09',
4253             'Module::Build::PPMMaker'=> '0.35_09',
4254             'Module::Build::Platform::Amiga'=> '0.35_09',
4255             'Module::Build::Platform::Default'=> '0.35_09',
4256             'Module::Build::Platform::EBCDIC'=> '0.35_09',
4257             'Module::Build::Platform::MPEiX'=> '0.35_09',
4258             'Module::Build::Platform::MacOS'=> '0.35_09',
4259             'Module::Build::Platform::RiscOS'=> '0.35_09',
4260             'Module::Build::Platform::Unix'=> '0.35_09',
4261             'Module::Build::Platform::VMS'=> '0.35_09',
4262             'Module::Build::Platform::VOS'=> '0.35_09',
4263             'Module::Build::Platform::Windows'=> '0.35_09',
4264             'Module::Build::Platform::aix'=> '0.35_09',
4265             'Module::Build::Platform::cygwin'=> '0.35_09',
4266             'Module::Build::Platform::darwin'=> '0.35_09',
4267             'Module::Build::Platform::os2'=> '0.35_09',
4268             'Module::Build::PodParser'=> '0.35_09',
4269             'Module::Build::YAML' => '1.40',
4270             'Module::CoreList' => '2.23',
4271             'Module::Load::Conditional'=> '0.34',
4272             'Pod::Simple' => '3.10',
4273             'Pod::Simple::XHTML' => '3.10',
4274             'Scalar::Util' => '1.22',
4275             'Scalar::Util::PP' => '1.22',
4276             'Switch' => '2.16',
4277             'XS::APItest' => '0.17',
4278             'XS::APItest::KeywordRPN'=> '0.003',
4279             'base' => '2.15',
4280             'diagnostics' => '1.18',
4281             'fields' => '2.15',
4282             'inc::latest' => '0.35_09',
4283             'legacy' => '1.00',
4284             'overload' => '1.10',
4285             },
4286             removed => {
4287             }
4288             },
4289             5.011003 => {
4290             delta_from => 5.011002,
4291             changed => {
4292             'App::Cpan' => '1.570001',
4293             'Archive::Extract' => '0.36',
4294             'CPAN' => '1.94_5301',
4295             'CPAN::FTP' => '5.5004',
4296             'CPAN::FirstTime' => '5.530001',
4297             'CPAN::Mirrors' => '1.770001',
4298             'CPANPLUS' => '0.90',
4299             'CPANPLUS::Internals' => '0.90',
4300             'CPANPLUS::Shell::Default'=> '0.90',
4301             'Cwd' => '3.31',
4302             'Encode' => '2.39',
4303             'ExtUtils::Command::MM' => '6.56',
4304             'ExtUtils::Liblist' => '6.56',
4305             'ExtUtils::Liblist::Kid'=> '6.56',
4306             'ExtUtils::MM' => '6.56',
4307             'ExtUtils::MM_AIX' => '6.56',
4308             'ExtUtils::MM_Any' => '6.56',
4309             'ExtUtils::MM_BeOS' => '6.56',
4310             'ExtUtils::MM_Cygwin' => '6.56',
4311             'ExtUtils::MM_DOS' => '6.56',
4312             'ExtUtils::MM_Darwin' => '6.56',
4313             'ExtUtils::MM_MacOS' => '6.56',
4314             'ExtUtils::MM_NW5' => '6.56',
4315             'ExtUtils::MM_OS2' => '6.56',
4316             'ExtUtils::MM_QNX' => '6.56',
4317             'ExtUtils::MM_UWIN' => '6.56',
4318             'ExtUtils::MM_Unix' => '6.56',
4319             'ExtUtils::MM_VMS' => '6.56',
4320             'ExtUtils::MM_VOS' => '6.56',
4321             'ExtUtils::MM_Win32' => '6.56',
4322             'ExtUtils::MM_Win95' => '6.56',
4323             'ExtUtils::MY' => '6.56',
4324             'ExtUtils::MakeMaker' => '6.56',
4325             'ExtUtils::MakeMaker::Config'=> '6.56',
4326             'ExtUtils::Mkbootstrap' => '6.56',
4327             'ExtUtils::Mksymlists' => '6.56',
4328             'ExtUtils::testlib' => '6.56',
4329             'File::Find' => '1.15',
4330             'File::Path' => '2.08_01',
4331             'File::Spec' => '3.31',
4332             'Module::Build' => '0.36',
4333             'Module::Build::Base' => '0.36',
4334             'Module::Build::Compat' => '0.36',
4335             'Module::Build::Config' => '0.36',
4336             'Module::Build::Cookbook'=> '0.36',
4337             'Module::Build::Dumper' => '0.36',
4338             'Module::Build::ModuleInfo'=> '0.36',
4339             'Module::Build::Notes' => '0.36',
4340             'Module::Build::PPMMaker'=> '0.36',
4341             'Module::Build::Platform::Amiga'=> '0.36',
4342             'Module::Build::Platform::Default'=> '0.36',
4343             'Module::Build::Platform::EBCDIC'=> '0.36',
4344             'Module::Build::Platform::MPEiX'=> '0.36',
4345             'Module::Build::Platform::MacOS'=> '0.36',
4346             'Module::Build::Platform::RiscOS'=> '0.36',
4347             'Module::Build::Platform::Unix'=> '0.36',
4348             'Module::Build::Platform::VMS'=> '0.36',
4349             'Module::Build::Platform::VOS'=> '0.36',
4350             'Module::Build::Platform::Windows'=> '0.36',
4351             'Module::Build::Platform::aix'=> '0.36',
4352             'Module::Build::Platform::cygwin'=> '0.36',
4353             'Module::Build::Platform::darwin'=> '0.36',
4354             'Module::Build::Platform::os2'=> '0.36',
4355             'Module::Build::PodParser'=> '0.36',
4356             'Module::CoreList' => '2.24',
4357             'POSIX' => '1.19',
4358             'Pod::Simple' => '3.13',
4359             'Pod::Simple::BlackBox' => '3.13',
4360             'Pod::Simple::Checker' => '3.13',
4361             'Pod::Simple::Debug' => '3.13',
4362             'Pod::Simple::DumpAsText'=> '3.13',
4363             'Pod::Simple::DumpAsXML'=> '3.13',
4364             'Pod::Simple::HTML' => '3.13',
4365             'Pod::Simple::HTMLBatch'=> '3.13',
4366             'Pod::Simple::LinkSection'=> '3.13',
4367             'Pod::Simple::Methody' => '3.13',
4368             'Pod::Simple::Progress' => '3.13',
4369             'Pod::Simple::PullParser'=> '3.13',
4370             'Pod::Simple::PullParserEndToken'=> '3.13',
4371             'Pod::Simple::PullParserStartToken'=> '3.13',
4372             'Pod::Simple::PullParserTextToken'=> '3.13',
4373             'Pod::Simple::PullParserToken'=> '3.13',
4374             'Pod::Simple::RTF' => '3.13',
4375             'Pod::Simple::Search' => '3.13',
4376             'Pod::Simple::SimpleTree'=> '3.13',
4377             'Pod::Simple::Text' => '3.13',
4378             'Pod::Simple::TextContent'=> '3.13',
4379             'Pod::Simple::TiedOutFH'=> '3.13',
4380             'Pod::Simple::Transcode'=> '3.13',
4381             'Pod::Simple::TranscodeDumb'=> '3.13',
4382             'Pod::Simple::TranscodeSmart'=> '3.13',
4383             'Pod::Simple::XHTML' => '3.13',
4384             'Pod::Simple::XMLOutStream'=> '3.13',
4385             'Safe' => '2.20',
4386             'Unicode' => '5.2.0',
4387             'constant' => '1.20',
4388             'diagnostics' => '1.19',
4389             'feature' => '1.14',
4390             'inc::latest' => '0.36',
4391             'threads' => '1.75',
4392             'warnings' => '1.08',
4393             },
4394             removed => {
4395             'legacy' => 1,
4396             }
4397             },
4398             5.011004 => {
4399             delta_from => 5.011003,
4400             changed => {
4401             'App::Cpan' => '1.5701',
4402             'Archive::Extract' => '0.38',
4403             'B::Deparse' => '0.94',
4404             'CPAN' => '1.94_54',
4405             'CPAN::FirstTime' => '5.53',
4406             'CPAN::Mirrors' => '1.77',
4407             'Carp' => '1.15',
4408             'Carp::Heavy' => '1.15',
4409             'Compress::Raw::Bzip2' => '2.024',
4410             'Compress::Raw::Zlib' => '2.024',
4411             'Compress::Zlib' => '2.024',
4412             'File::Copy' => '2.17',
4413             'File::Fetch' => '0.24',
4414             'GDBM_File' => '1.10',
4415             'IO::Compress::Adapter::Bzip2'=> '2.024',
4416             'IO::Compress::Adapter::Deflate'=> '2.024',
4417             'IO::Compress::Adapter::Identity'=> '2.024',
4418             'IO::Compress::Base' => '2.024',
4419             'IO::Compress::Base::Common'=> '2.024',
4420             'IO::Compress::Bzip2' => '2.024',
4421             'IO::Compress::Deflate' => '2.024',
4422             'IO::Compress::Gzip' => '2.024',
4423             'IO::Compress::Gzip::Constants'=> '2.024',
4424             'IO::Compress::RawDeflate'=> '2.024',
4425             'IO::Compress::Zip' => '2.024',
4426             'IO::Compress::Zip::Constants'=> '2.024',
4427             'IO::Compress::Zlib::Constants'=> '2.024',
4428             'IO::Compress::Zlib::Extra'=> '2.024',
4429             'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4430             'IO::Uncompress::Adapter::Identity'=> '2.024',
4431             'IO::Uncompress::Adapter::Inflate'=> '2.024',
4432             'IO::Uncompress::AnyInflate'=> '2.024',
4433             'IO::Uncompress::AnyUncompress'=> '2.024',
4434             'IO::Uncompress::Base' => '2.024',
4435             'IO::Uncompress::Bunzip2'=> '2.024',
4436             'IO::Uncompress::Gunzip'=> '2.024',
4437             'IO::Uncompress::Inflate'=> '2.024',
4438             'IO::Uncompress::RawInflate'=> '2.024',
4439             'IO::Uncompress::Unzip' => '2.024',
4440             'Module::Build' => '0.3603',
4441             'Module::Build::Base' => '0.3603',
4442             'Module::Build::Compat' => '0.3603',
4443             'Module::Build::Config' => '0.3603',
4444             'Module::Build::Cookbook'=> '0.3603',
4445             'Module::Build::Dumper' => '0.3603',
4446             'Module::Build::ModuleInfo'=> '0.3603',
4447             'Module::Build::Notes' => '0.3603',
4448             'Module::Build::PPMMaker'=> '0.3603',
4449             'Module::Build::Platform::Amiga'=> '0.3603',
4450             'Module::Build::Platform::Default'=> '0.3603',
4451             'Module::Build::Platform::EBCDIC'=> '0.3603',
4452             'Module::Build::Platform::MPEiX'=> '0.3603',
4453             'Module::Build::Platform::MacOS'=> '0.3603',
4454             'Module::Build::Platform::RiscOS'=> '0.3603',
4455             'Module::Build::Platform::Unix'=> '0.3603',
4456             'Module::Build::Platform::VMS'=> '0.3603',
4457             'Module::Build::Platform::VOS'=> '0.3603',
4458             'Module::Build::Platform::Windows'=> '0.3603',
4459             'Module::Build::Platform::aix'=> '0.3603',
4460             'Module::Build::Platform::cygwin'=> '0.3603',
4461             'Module::Build::Platform::darwin'=> '0.3603',
4462             'Module::Build::Platform::os2'=> '0.3603',
4463             'Module::Build::PodParser'=> '0.3603',
4464             'Module::CoreList' => '2.25',
4465             'PerlIO::encoding' => '0.12',
4466             'Safe' => '2.21',
4467             'UNIVERSAL' => '1.06',
4468             'feature' => '1.15',
4469             'inc::latest' => '0.3603',
4470             'less' => '0.03',
4471             're' => '0.11',
4472             'version' => '0.81',
4473             'warnings' => '1.09',
4474             },
4475             removed => {
4476             }
4477             },
4478             5.011005 => {
4479             delta_from => 5.011004,
4480             changed => {
4481             'B::Debug' => '1.12',
4482             'CPAN' => '1.94_56',
4483             'CPAN::Debug' => '5.5001',
4484             'CPAN::Distribution' => '1.9456',
4485             'CPAN::FirstTime' => '5.5301',
4486             'CPAN::HandleConfig' => '5.5001',
4487             'CPAN::Shell' => '5.5001',
4488             'CPAN::Tarzip' => '5.5011',
4489             'CPANPLUS::Dist::Build' => '0.46',
4490             'CPANPLUS::Dist::Build::Constants'=> '0.46',
4491             'Module::CoreList' => '2.26',
4492             'Pod::Man' => '2.23',
4493             'Pod::ParseLink' => '1.10',
4494             'Pod::Perldoc' => '3.15_02',
4495             'Pod::Plainer' => '1.02',
4496             'Pod::Text' => '3.14',
4497             'Pod::Text::Color' => '2.06',
4498             'Pod::Text::Overstrike' => '2.04',
4499             'Pod::Text::Termcap' => '2.06',
4500             'Safe' => '2.22',
4501             'Socket' => '1.86',
4502             'version' => '0.82',
4503             },
4504             removed => {
4505             }
4506             },
4507             5.012 => {
4508             delta_from => 5.011005,
4509             changed => {
4510             'B::Deparse' => '0.96',
4511             'CPAN::Distribution' => '1.9456_01',
4512             'Module::CoreList' => '2.29',
4513             'Safe' => '2.25',
4514             'Socket' => '1.87',
4515             'Tie::Scalar' => '1.02',
4516             'Time::Piece' => '1.15_01',
4517             'bytes' => '1.04',
4518             'feature' => '1.16',
4519             'utf8' => '1.08',
4520             },
4521             removed => {
4522             }
4523             },
4524             5.012001 => {
4525             delta_from => 5.012,
4526             changed => {
4527             'B::Deparse' => '0.97',
4528             'CGI' => '3.49',
4529             'CGI::Fast' => '1.08',
4530             'Carp' => '1.16',
4531             'Carp::Heavy' => '1.16',
4532             'File::Copy' => '2.18',
4533             'Module::CoreList' => '2.32',
4534             'Pod::Functions' => '1.04',
4535             'Pod::Simple' => '3.14',
4536             'Pod::Simple::BlackBox' => '3.14',
4537             'Pod::Simple::Checker' => '3.14',
4538             'Pod::Simple::Debug' => '3.14',
4539             'Pod::Simple::DumpAsText'=> '3.14',
4540             'Pod::Simple::DumpAsXML'=> '3.14',
4541             'Pod::Simple::HTML' => '3.14',
4542             'Pod::Simple::HTMLBatch'=> '3.14',
4543             'Pod::Simple::LinkSection'=> '3.14',
4544             'Pod::Simple::Methody' => '3.14',
4545             'Pod::Simple::Progress' => '3.14',
4546             'Pod::Simple::PullParser'=> '3.14',
4547             'Pod::Simple::PullParserEndToken'=> '3.14',
4548             'Pod::Simple::PullParserStartToken'=> '3.14',
4549             'Pod::Simple::PullParserTextToken'=> '3.14',
4550             'Pod::Simple::PullParserToken'=> '3.14',
4551             'Pod::Simple::RTF' => '3.14',
4552             'Pod::Simple::Search' => '3.14',
4553             'Pod::Simple::SimpleTree'=> '3.14',
4554             'Pod::Simple::Text' => '3.14',
4555             'Pod::Simple::TextContent'=> '3.14',
4556             'Pod::Simple::TiedOutFH'=> '3.14',
4557             'Pod::Simple::Transcode'=> '3.14',
4558             'Pod::Simple::TranscodeDumb'=> '3.14',
4559             'Pod::Simple::TranscodeSmart'=> '3.14',
4560             'Pod::Simple::XHTML' => '3.14',
4561             'Pod::Simple::XMLOutStream'=> '3.14',
4562             'Safe' => '2.27',
4563             },
4564             removed => {
4565             }
4566             },
4567             5.012002 => {
4568             delta_from => 5.012001,
4569             changed => {
4570             'Carp' => '1.17',
4571             'Carp::Heavy' => '1.17',
4572             'File::Spec' => '3.31_01',
4573             'Module::CoreList' => '2.38',
4574             'Module::Load::Conditional'=> '0.38',
4575             'PerlIO::scalar' => '0.08',
4576             },
4577             removed => {
4578             }
4579             },
4580             5.012003 => {
4581             delta_from => 5.012002,
4582             changed => {
4583             'B::Deparse' => '0.9701',
4584             'Module::Build::Platform::cygwin'=> '0.360301',
4585             'Module::CoreList' => '2.43',
4586             'Socket' => '1.87_01',
4587             },
4588             removed => {
4589             }
4590             },
4591             5.012004 => {
4592             delta_from => 5.012003,
4593             changed => {
4594             'Module::CoreList' => '2.50',
4595             },
4596             removed => {
4597             }
4598             },
4599             5.012005 => {
4600             delta_from => 5.012004,
4601             changed => {
4602             'B::Concise' => '0.78_01',
4603             'Encode' => '2.39_01',
4604             'File::Glob' => '1.07_01',
4605             'Module::CoreList' => '2.50_02',
4606             'Unicode::UCD' => '0.29',
4607             'charnames' => '1.07_01',
4608             },
4609             removed => {
4610             }
4611             },
4612             5.013 => {
4613             delta_from => 5.012,
4614             changed => {
4615             'CGI' => '3.49',
4616             'CGI::Fast' => '1.08',
4617             'Data::Dumper' => '2.126',
4618             'ExtUtils::MM_Unix' => '6.5601',
4619             'ExtUtils::MakeMaker' => '6.5601',
4620             'File::Copy' => '2.18',
4621             'IPC::Open3' => '1.06',
4622             'MIME::Base64' => '3.09',
4623             'MIME::QuotedPrint' => '3.09',
4624             'Module::CoreList' => '2.31',
4625             'Pod::Functions' => '1.04',
4626             'XS::APItest' => '0.18',
4627             'XS::APItest::KeywordRPN'=> '0.004',
4628             'feature' => '1.17',
4629             'threads' => '1.77_01',
4630             'threads::shared' => '1.33',
4631             },
4632             removed => {
4633             }
4634             },
4635             5.013001 => {
4636             delta_from => 5.012001,
4637             changed => {
4638             'Data::Dumper' => '2.126',
4639             'Dumpvalue' => '1.14',
4640             'Errno' => '1.12',
4641             'ExtUtils::MM_Unix' => '6.5601',
4642             'ExtUtils::MakeMaker' => '6.5601',
4643             'ExtUtils::ParseXS' => '2.2205',
4644             'File::Find' => '1.16',
4645             'IPC::Cmd' => '0.58',
4646             'IPC::Open3' => '1.06',
4647             'List::Util' => '1.23',
4648             'List::Util::PP' => '1.23',
4649             'List::Util::XS' => '1.23',
4650             'Locale::Codes' => '3.12',
4651             'Locale::Codes::Country'=> '3.12',
4652             'Locale::Codes::Currency'=> '3.12',
4653             'Locale::Codes::Language'=> '3.12',
4654             'Locale::Codes::Script' => '3.12',
4655             'Locale::Constants' => '3.12',
4656             'Locale::Country' => '3.12',
4657             'Locale::Currency' => '3.12',
4658             'Locale::Language' => '3.12',
4659             'Locale::Script' => '3.12',
4660             'MIME::Base64' => '3.09',
4661             'MIME::QuotedPrint' => '3.09',
4662             'Module::Build::Platform::cygwin'=> '0.360301',
4663             'Module::CoreList' => '2.34',
4664             'Module::Load::Conditional'=> '0.38',
4665             'PerlIO::scalar' => '0.08',
4666             'Scalar::Util' => '1.23',
4667             'Scalar::Util::PP' => '1.23',
4668             'Socket' => '1.88',
4669             'Term::ReadLine' => '1.06',
4670             'Unicode::UCD' => '0.28',
4671             'XS::APItest' => '0.19',
4672             'XS::APItest::KeywordRPN'=> '0.004',
4673             'charnames' => '1.08',
4674             'feature' => '1.17',
4675             'threads' => '1.77_01',
4676             'threads::shared' => '1.33',
4677             },
4678             removed => {
4679             'Class::ISA' => 1,
4680             'Pod::Plainer' => 1,
4681             'Switch' => 1,
4682             }
4683             },
4684             5.013002 => {
4685             delta_from => 5.013001,
4686             changed => {
4687             'B::Concise' => '0.79',
4688             'B::Deparse' => '0.98',
4689             'CPAN' => '1.94_57',
4690             'CPAN::Distribution' => '1.9600',
4691             'Exporter' => '5.64_02',
4692             'Exporter::Heavy' => '5.64_02',
4693             'File::Copy' => '2.19',
4694             'Hash::Util' => '0.08',
4695             'IO::Socket' => '1.32',
4696             'Locale::Codes' => '3.13',
4697             'Locale::Codes::Country'=> '3.13',
4698             'Locale::Codes::Currency'=> '3.13',
4699             'Locale::Codes::Language'=> '3.13',
4700             'Locale::Codes::Script' => '3.13',
4701             'Locale::Constants' => '3.13',
4702             'Locale::Country' => '3.13',
4703             'Locale::Currency' => '3.13',
4704             'Locale::Language' => '3.13',
4705             'Locale::Script' => '3.13',
4706             'Search::Dict' => '1.03',
4707             'Socket' => '1.89',
4708             'Thread::Semaphore' => '2.11',
4709             'UNIVERSAL' => '1.07',
4710             'VMS::DCLsym' => '1.04',
4711             'mro' => '1.03',
4712             'threads' => '1.77_02',
4713             'threads::shared' => '1.33_01',
4714             },
4715             removed => {
4716             }
4717             },
4718             5.013003 => {
4719             delta_from => 5.013002,
4720             changed => {
4721             'App::Prove' => '3.21',
4722             'App::Prove::State' => '3.21',
4723             'App::Prove::State::Result'=> '3.21',
4724             'App::Prove::State::Result::Test'=> '3.21',
4725             'Archive::Extract' => '0.42',
4726             'Archive::Tar' => '1.64',
4727             'Archive::Tar::Constant'=> '1.64',
4728             'Archive::Tar::File' => '1.64',
4729             'Attribute::Handlers' => '0.88',
4730             'CPANPLUS' => '0.9007',
4731             'CPANPLUS::Internals' => '0.9007',
4732             'CPANPLUS::Shell::Default'=> '0.9007',
4733             'Compress::Raw::Bzip2' => '2.027',
4734             'Compress::Raw::Zlib' => '2.027_01',
4735             'Compress::Zlib' => '2.027',
4736             'DB' => '1.03',
4737             'Digest::MD5' => '2.40',
4738             'Digest::SHA' => '5.48',
4739             'Exporter' => '5.64_03',
4740             'Exporter::Heavy' => '5.64_03',
4741             'ExtUtils::CBuilder' => '0.2703',
4742             'ExtUtils::CBuilder::Base'=> '0.2703_01',
4743             'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4744             'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4745             'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4746             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4747             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4748             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4749             'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4750             'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4751             'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4752             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4753             'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4754             'ExtUtils::Manifest' => '1.58',
4755             'ExtUtils::ParseXS' => '2.2206',
4756             'Fatal' => '2.10',
4757             'File::Basename' => '2.79',
4758             'File::Copy' => '2.20',
4759             'File::DosGlob' => '1.02',
4760             'File::Find' => '1.17',
4761             'File::Glob' => '1.08',
4762             'File::stat' => '1.03',
4763             'I18N::LangTags' => '0.35_01',
4764             'I18N::LangTags::List' => '0.35_01',
4765             'IO::Compress::Adapter::Bzip2'=> '2.027',
4766             'IO::Compress::Adapter::Deflate'=> '2.027',
4767             'IO::Compress::Adapter::Identity'=> '2.027',
4768             'IO::Compress::Base' => '2.027',
4769             'IO::Compress::Base::Common'=> '2.027',
4770             'IO::Compress::Bzip2' => '2.027',
4771             'IO::Compress::Deflate' => '2.027',
4772             'IO::Compress::Gzip' => '2.027',
4773             'IO::Compress::Gzip::Constants'=> '2.027',
4774             'IO::Compress::RawDeflate'=> '2.027',
4775             'IO::Compress::Zip' => '2.027',
4776             'IO::Compress::Zip::Constants'=> '2.027',
4777             'IO::Compress::Zlib::Constants'=> '2.027',
4778             'IO::Compress::Zlib::Extra'=> '2.027',
4779             'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4780             'IO::Uncompress::Adapter::Identity'=> '2.027',
4781             'IO::Uncompress::Adapter::Inflate'=> '2.027',
4782             'IO::Uncompress::AnyInflate'=> '2.027',
4783             'IO::Uncompress::AnyUncompress'=> '2.027',
4784             'IO::Uncompress::Base' => '2.027',
4785             'IO::Uncompress::Bunzip2'=> '2.027',
4786             'IO::Uncompress::Gunzip'=> '2.027',
4787             'IO::Uncompress::Inflate'=> '2.027',
4788             'IO::Uncompress::RawInflate'=> '2.027',
4789             'IO::Uncompress::Unzip' => '2.027',
4790             'IPC::Cmd' => '0.60',
4791             'IPC::Msg' => '2.03',
4792             'IPC::Semaphore' => '2.03',
4793             'IPC::SharedMem' => '2.03',
4794             'IPC::SysV' => '2.03',
4795             'Locale::Maketext' => '1.15',
4796             'Locale::Maketext::Guts'=> undef,
4797             'Locale::Maketext::GutsLoader'=> undef,
4798             'Module::Build' => '0.3607',
4799             'Module::Build::Base' => '0.3607',
4800             'Module::Build::Compat' => '0.3607',
4801             'Module::Build::Config' => '0.3607',
4802             'Module::Build::Cookbook'=> '0.3607',
4803             'Module::Build::Dumper' => '0.3607',
4804             'Module::Build::ModuleInfo'=> '0.3607',
4805             'Module::Build::Notes' => '0.3607',
4806             'Module::Build::PPMMaker'=> '0.3607',
4807             'Module::Build::Platform::Amiga'=> '0.3607',
4808             'Module::Build::Platform::Default'=> '0.3607',
4809             'Module::Build::Platform::EBCDIC'=> '0.3607',
4810             'Module::Build::Platform::MPEiX'=> '0.3607',
4811             'Module::Build::Platform::MacOS'=> '0.3607',
4812             'Module::Build::Platform::RiscOS'=> '0.3607',
4813             'Module::Build::Platform::Unix'=> '0.3607',
4814             'Module::Build::Platform::VMS'=> '0.3607',
4815             'Module::Build::Platform::VOS'=> '0.3607',
4816             'Module::Build::Platform::Windows'=> '0.3607',
4817             'Module::Build::Platform::aix'=> '0.3607',
4818             'Module::Build::Platform::cygwin'=> '0.3607',
4819             'Module::Build::Platform::darwin'=> '0.3607',
4820             'Module::Build::Platform::os2'=> '0.3607',
4821             'Module::Build::PodParser'=> '0.3607',
4822             'Module::CoreList' => '2.36',
4823             'Module::Load' => '0.18',
4824             'TAP::Base' => '3.21',
4825             'TAP::Formatter::Base' => '3.21',
4826             'TAP::Formatter::Color' => '3.21',
4827             'TAP::Formatter::Console'=> '3.21',
4828             'TAP::Formatter::Console::ParallelSession'=> '3.21',
4829             'TAP::Formatter::Console::Session'=> '3.21',
4830             'TAP::Formatter::File' => '3.21',
4831             'TAP::Formatter::File::Session'=> '3.21',
4832             'TAP::Formatter::Session'=> '3.21',
4833             'TAP::Harness' => '3.21',
4834             'TAP::Object' => '3.21',
4835             'TAP::Parser' => '3.21',
4836             'TAP::Parser::Aggregator'=> '3.21',
4837             'TAP::Parser::Grammar' => '3.21',
4838             'TAP::Parser::Iterator' => '3.21',
4839             'TAP::Parser::Iterator::Array'=> '3.21',
4840             'TAP::Parser::Iterator::Process'=> '3.21',
4841             'TAP::Parser::Iterator::Stream'=> '3.21',
4842             'TAP::Parser::IteratorFactory'=> '3.21',
4843             'TAP::Parser::Multiplexer'=> '3.21',
4844             'TAP::Parser::Result' => '3.21',
4845             'TAP::Parser::Result::Bailout'=> '3.21',
4846             'TAP::Parser::Result::Comment'=> '3.21',
4847             'TAP::Parser::Result::Plan'=> '3.21',
4848             'TAP::Parser::Result::Pragma'=> '3.21',
4849             'TAP::Parser::Result::Test'=> '3.21',
4850             'TAP::Parser::Result::Unknown'=> '3.21',
4851             'TAP::Parser::Result::Version'=> '3.21',
4852             'TAP::Parser::Result::YAML'=> '3.21',
4853             'TAP::Parser::ResultFactory'=> '3.21',
4854             'TAP::Parser::Scheduler'=> '3.21',
4855             'TAP::Parser::Scheduler::Job'=> '3.21',
4856             'TAP::Parser::Scheduler::Spinner'=> '3.21',
4857             'TAP::Parser::Source' => '3.21',
4858             'TAP::Parser::SourceHandler'=> '3.21',
4859             'TAP::Parser::SourceHandler::Executable'=> '3.21',
4860             'TAP::Parser::SourceHandler::File'=> '3.21',
4861             'TAP::Parser::SourceHandler::Handle'=> '3.21',
4862             'TAP::Parser::SourceHandler::Perl'=> '3.21',
4863             'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4864             'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4865             'TAP::Parser::Utils' => '3.21',
4866             'TAP::Parser::YAMLish::Reader'=> '3.21',
4867             'TAP::Parser::YAMLish::Writer'=> '3.21',
4868             'Term::ANSIColor' => '3.00',
4869             'Term::ReadLine' => '1.07',
4870             'Test::Harness' => '3.21',
4871             'Tie::Array' => '1.04',
4872             'Time::HiRes' => '1.9721',
4873             'Time::Piece' => '1.20_01',
4874             'Unicode::Collate' => '0.53',
4875             'Unicode::Normalize' => '1.06',
4876             'Unicode::UCD' => '0.29',
4877             'autodie' => '2.10',
4878             'autodie::exception' => '2.10',
4879             'autodie::exception::system'=> '2.10',
4880             'autodie::hints' => '2.10',
4881             'blib' => '1.05',
4882             'charnames' => '1.11',
4883             'diagnostics' => '1.20',
4884             'inc::latest' => '0.3607',
4885             'lib' => '0.63',
4886             're' => '0.12',
4887             'threads' => '1.77_03',
4888             'threads::shared' => '1.33_02',
4889             'vars' => '1.02',
4890             'warnings' => '1.10',
4891             },
4892             removed => {
4893             'TAP::Parser::Source::Perl'=> 1,
4894             }
4895             },
4896             5.013004 => {
4897             delta_from => 5.013003,
4898             changed => {
4899             'App::Prove' => '3.22',
4900             'App::Prove::State' => '3.22',
4901             'App::Prove::State::Result'=> '3.22',
4902             'App::Prove::State::Result::Test'=> '3.22',
4903             'Archive::Tar' => '1.68',
4904             'Archive::Tar::Constant'=> '1.68',
4905             'Archive::Tar::File' => '1.68',
4906             'B::Lint' => '1.12',
4907             'B::Lint::Debug' => '1.12',
4908             'Carp' => '1.18',
4909             'Carp::Heavy' => '1.18',
4910             'Compress::Raw::Bzip2' => '2.030',
4911             'Compress::Raw::Zlib' => '2.030',
4912             'Compress::Zlib' => '2.030',
4913             'ExtUtils::ParseXS' => '2.2207',
4914             'File::Spec' => '3.31_01',
4915             'I18N::Langinfo' => '0.04',
4916             'IO::Compress::Adapter::Bzip2'=> '2.030',
4917             'IO::Compress::Adapter::Deflate'=> '2.030',
4918             'IO::Compress::Adapter::Identity'=> '2.030',
4919             'IO::Compress::Base' => '2.030',
4920             'IO::Compress::Base::Common'=> '2.030',
4921             'IO::Compress::Bzip2' => '2.030',
4922             'IO::Compress::Deflate' => '2.030',
4923             'IO::Compress::Gzip' => '2.030',
4924             'IO::Compress::Gzip::Constants'=> '2.030',
4925             'IO::Compress::RawDeflate'=> '2.030',
4926             'IO::Compress::Zip' => '2.030',
4927             'IO::Compress::Zip::Constants'=> '2.030',
4928             'IO::Compress::Zlib::Constants'=> '2.030',
4929             'IO::Compress::Zlib::Extra'=> '2.030',
4930             'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4931             'IO::Uncompress::Adapter::Identity'=> '2.030',
4932             'IO::Uncompress::Adapter::Inflate'=> '2.030',
4933             'IO::Uncompress::AnyInflate'=> '2.030',
4934             'IO::Uncompress::AnyUncompress'=> '2.030',
4935             'IO::Uncompress::Base' => '2.030',
4936             'IO::Uncompress::Bunzip2'=> '2.030',
4937             'IO::Uncompress::Gunzip'=> '2.030',
4938             'IO::Uncompress::Inflate'=> '2.030',
4939             'IO::Uncompress::RawInflate'=> '2.030',
4940             'IO::Uncompress::Unzip' => '2.030',
4941             'Module::CoreList' => '2.37',
4942             'TAP::Base' => '3.22',
4943             'TAP::Formatter::Base' => '3.22',
4944             'TAP::Formatter::Color' => '3.22',
4945             'TAP::Formatter::Console'=> '3.22',
4946             'TAP::Formatter::Console::ParallelSession'=> '3.22',
4947             'TAP::Formatter::Console::Session'=> '3.22',
4948             'TAP::Formatter::File' => '3.22',
4949             'TAP::Formatter::File::Session'=> '3.22',
4950             'TAP::Formatter::Session'=> '3.22',
4951             'TAP::Harness' => '3.22',
4952             'TAP::Object' => '3.22',
4953             'TAP::Parser' => '3.22',
4954             'TAP::Parser::Aggregator'=> '3.22',
4955             'TAP::Parser::Grammar' => '3.22',
4956             'TAP::Parser::Iterator' => '3.22',
4957             'TAP::Parser::Iterator::Array'=> '3.22',
4958             'TAP::Parser::Iterator::Process'=> '3.22',
4959             'TAP::Parser::Iterator::Stream'=> '3.22',
4960             'TAP::Parser::IteratorFactory'=> '3.22',
4961             'TAP::Parser::Multiplexer'=> '3.22',
4962             'TAP::Parser::Result' => '3.22',
4963             'TAP::Parser::Result::Bailout'=> '3.22',
4964             'TAP::Parser::Result::Comment'=> '3.22',
4965             'TAP::Parser::Result::Plan'=> '3.22',
4966             'TAP::Parser::Result::Pragma'=> '3.22',
4967             'TAP::Parser::Result::Test'=> '3.22',
4968             'TAP::Parser::Result::Unknown'=> '3.22',
4969             'TAP::Parser::Result::Version'=> '3.22',
4970             'TAP::Parser::Result::YAML'=> '3.22',
4971             'TAP::Parser::ResultFactory'=> '3.22',
4972             'TAP::Parser::Scheduler'=> '3.22',
4973             'TAP::Parser::Scheduler::Job'=> '3.22',
4974             'TAP::Parser::Scheduler::Spinner'=> '3.22',
4975             'TAP::Parser::Source' => '3.22',
4976             'TAP::Parser::SourceHandler'=> '3.22',
4977             'TAP::Parser::SourceHandler::Executable'=> '3.22',
4978             'TAP::Parser::SourceHandler::File'=> '3.22',
4979             'TAP::Parser::SourceHandler::Handle'=> '3.22',
4980             'TAP::Parser::SourceHandler::Perl'=> '3.22',
4981             'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4982             'TAP::Parser::Utils' => '3.22',
4983             'TAP::Parser::YAMLish::Reader'=> '3.22',
4984             'TAP::Parser::YAMLish::Writer'=> '3.22',
4985             'Test::Builder' => '0.96',
4986             'Test::Builder::Module' => '0.96',
4987             'Test::Builder::Tester' => '1.20',
4988             'Test::Builder::Tester::Color'=> '1.20',
4989             'Test::Harness' => '3.22',
4990             'Test::More' => '0.96',
4991             'Test::Simple' => '0.96',
4992             'Unicode::Collate' => '0.56',
4993             'Unicode::Collate::Locale'=> '0.56',
4994             'XS::APItest' => '0.20',
4995             'charnames' => '1.15',
4996             'feature' => '1.18',
4997             },
4998             removed => {
4999             'TAP::Parser::SourceHandler::pgTAP'=> 1,
5000             }
5001             },
5002             5.013005 => {
5003             delta_from => 5.013004,
5004             changed => {
5005             'B::Debug' => '1.16',
5006             'CPANPLUS::Dist::Build' => '0.48',
5007             'CPANPLUS::Dist::Build::Constants'=> '0.48',
5008             'Data::Dumper' => '2.128',
5009             'Encode' => '2.40',
5010             'Encode::Guess' => '2.04',
5011             'Encode::MIME::Header' => '2.12',
5012             'Encode::Unicode::UTF7' => '2.05',
5013             'Errno' => '1.13',
5014             'ExtUtils::Command::MM' => '6.57_05',
5015             'ExtUtils::Liblist' => '6.57_05',
5016             'ExtUtils::Liblist::Kid'=> '6.5705',
5017             'ExtUtils::MM' => '6.57_05',
5018             'ExtUtils::MM_AIX' => '6.57_05',
5019             'ExtUtils::MM_Any' => '6.57_05',
5020             'ExtUtils::MM_BeOS' => '6.57_05',
5021             'ExtUtils::MM_Cygwin' => '6.57_05',
5022             'ExtUtils::MM_DOS' => '6.5705',
5023             'ExtUtils::MM_Darwin' => '6.57_05',
5024             'ExtUtils::MM_MacOS' => '6.5705',
5025             'ExtUtils::MM_NW5' => '6.57_05',
5026             'ExtUtils::MM_OS2' => '6.57_05',
5027             'ExtUtils::MM_QNX' => '6.57_05',
5028             'ExtUtils::MM_UWIN' => '6.5705',
5029             'ExtUtils::MM_Unix' => '6.57_05',
5030             'ExtUtils::MM_VMS' => '6.57_05',
5031             'ExtUtils::MM_VOS' => '6.57_05',
5032             'ExtUtils::MM_Win32' => '6.57_05',
5033             'ExtUtils::MM_Win95' => '6.57_05',
5034             'ExtUtils::MY' => '6.5705',
5035             'ExtUtils::MakeMaker' => '6.57_05',
5036             'ExtUtils::MakeMaker::Config'=> '6.57_05',
5037             'ExtUtils::MakeMaker::YAML'=> '1.44',
5038             'ExtUtils::Mkbootstrap' => '6.57_05',
5039             'ExtUtils::Mksymlists' => '6.57_05',
5040             'ExtUtils::testlib' => '6.5705',
5041             'Filter::Simple' => '0.85',
5042             'Hash::Util' => '0.09',
5043             'Math::BigFloat' => '1.62',
5044             'Math::BigInt' => '1.95',
5045             'Math::BigInt::Calc' => '0.54',
5046             'Math::BigInt::CalcEmu' => '0.06',
5047             'Math::BigInt::FastCalc'=> '0.22',
5048             'Math::BigRat' => '0.26',
5049             'Module::CoreList' => '2.39',
5050             'POSIX' => '1.20',
5051             'PerlIO::scalar' => '0.09',
5052             'Safe' => '2.28',
5053             'Test::Builder' => '0.97_01',
5054             'Test::Builder::Module' => '0.97_01',
5055             'Test::Builder::Tester' => '1.21_01',
5056             'Test::Builder::Tester::Color'=> '1.21_01',
5057             'Test::More' => '0.97_01',
5058             'Test::Simple' => '0.97_01',
5059             'Tie::Hash' => '1.04',
5060             'Unicode::Collate' => '0.59',
5061             'Unicode::Collate::Locale'=> '0.59',
5062             'XS::APItest' => '0.21',
5063             'XS::APItest::KeywordRPN'=> '0.005',
5064             'XSLoader' => '0.11',
5065             'bigint' => '0.25',
5066             'bignum' => '0.25',
5067             'bigrat' => '0.25',
5068             'blib' => '1.06',
5069             'open' => '1.08',
5070             'threads::shared' => '1.33_03',
5071             'warnings' => '1.11',
5072             'warnings::register' => '1.02',
5073             },
5074             removed => {
5075             }
5076             },
5077             5.013006 => {
5078             delta_from => 5.013005,
5079             changed => {
5080             'Archive::Extract' => '0.44',
5081             'B' => '1.24',
5082             'B::Deparse' => '0.99',
5083             'CPAN' => '1.94_61',
5084             'CPAN::FTP' => '5.5005',
5085             'CPAN::Queue' => '5.5001',
5086             'CPAN::Version' => '5.5001',
5087             'Carp' => '1.19',
5088             'Carp::Heavy' => '1.19',
5089             'Compress::Raw::Bzip2' => '2.031',
5090             'Cwd' => '3.34',
5091             'Data::Dumper' => '2.129',
5092             'Devel::Peek' => '1.05',
5093             'Digest::MD5' => '2.51',
5094             'ExtUtils::Constant::Base'=> '0.05',
5095             'ExtUtils::Constant::ProxySubs'=> '0.07',
5096             'ExtUtils::Embed' => '1.29',
5097             'ExtUtils::XSSymSet' => '1.2',
5098             'Fcntl' => '1.09',
5099             'File::DosGlob' => '1.03',
5100             'File::Find' => '1.18',
5101             'File::Glob' => '1.09',
5102             'File::Spec' => '3.33',
5103             'File::Spec::Cygwin' => '3.33',
5104             'File::Spec::Epoc' => '3.33',
5105             'File::Spec::Functions' => '3.33',
5106             'File::Spec::Mac' => '3.33',
5107             'File::Spec::OS2' => '3.33',
5108             'File::Spec::Unix' => '3.33',
5109             'File::Spec::VMS' => '3.33',
5110             'File::Spec::Win32' => '3.33',
5111             'GDBM_File' => '1.11',
5112             'Hash::Util::FieldHash' => '1.05',
5113             'I18N::Langinfo' => '0.06',
5114             'IPC::Cmd' => '0.64',
5115             'IPC::Open3' => '1.07',
5116             'Locale::Codes' => '3.14',
5117             'Locale::Codes::Country'=> '3.14',
5118             'Locale::Codes::Currency'=> '3.14',
5119             'Locale::Codes::Language'=> '3.14',
5120             'Locale::Codes::Script' => '3.14',
5121             'Locale::Constants' => '3.14',
5122             'Locale::Country' => '3.14',
5123             'Locale::Currency' => '3.14',
5124             'Locale::Language' => '3.14',
5125             'Locale::Maketext' => '1.16',
5126             'Locale::Script' => '3.14',
5127             'Math::BigFloat' => '1.63',
5128             'Math::BigInt' => '1.97',
5129             'Math::BigInt::Calc' => '0.55',
5130             'Math::BigInt::CalcEmu' => '0.07',
5131             'Module::CoreList' => '2.40',
5132             'NDBM_File' => '1.09',
5133             'NEXT' => '0.65',
5134             'ODBM_File' => '1.08',
5135             'Opcode' => '1.16',
5136             'POSIX' => '1.21',
5137             'PerlIO::encoding' => '0.13',
5138             'PerlIO::scalar' => '0.10',
5139             'PerlIO::via' => '0.10',
5140             'Pod::Man' => '2.25',
5141             'Pod::Text' => '3.15',
5142             'SDBM_File' => '1.07',
5143             'Socket' => '1.90',
5144             'Sys::Hostname' => '1.13',
5145             'Tie::Hash::NamedCapture'=> '0.07',
5146             'Unicode::Collate' => '0.63',
5147             'Unicode::Collate::Locale'=> '0.63',
5148             'Unicode::Normalize' => '1.07',
5149             'XS::APItest' => '0.23',
5150             'XSLoader' => '0.13',
5151             'attributes' => '0.13',
5152             'charnames' => '1.16',
5153             'if' => '0.06',
5154             'mro' => '1.04',
5155             'overload' => '1.11',
5156             're' => '0.13',
5157             'sigtrap' => '1.05',
5158             'threads' => '1.81_01',
5159             'threads::shared' => '1.34',
5160             },
5161             removed => {
5162             'XS::APItest::KeywordRPN'=> 1,
5163             }
5164             },
5165             5.013007 => {
5166             delta_from => 5.013006,
5167             changed => {
5168             'Archive::Extract' => '0.46',
5169             'Archive::Tar' => '1.72',
5170             'Archive::Tar::Constant'=> '1.72',
5171             'Archive::Tar::File' => '1.72',
5172             'AutoLoader' => '5.71',
5173             'B' => '1.26',
5174             'B::Concise' => '0.81',
5175             'B::Deparse' => '1.01',
5176             'CGI' => '3.50',
5177             'CPAN' => '1.94_62',
5178             'CPANPLUS' => '0.9010',
5179             'CPANPLUS::Dist::Build' => '0.50',
5180             'CPANPLUS::Dist::Build::Constants'=> '0.50',
5181             'CPANPLUS::Internals' => '0.9010',
5182             'CPANPLUS::Shell::Default'=> '0.9010',
5183             'Data::Dumper' => '2.130_01',
5184             'DynaLoader' => '1.11',
5185             'ExtUtils::Constant' => '0.23',
5186             'ExtUtils::Constant::ProxySubs'=> '0.08',
5187             'Fcntl' => '1.10',
5188             'File::Fetch' => '0.28',
5189             'File::Glob' => '1.10',
5190             'File::stat' => '1.04',
5191             'GDBM_File' => '1.12',
5192             'Hash::Util' => '0.10',
5193             'Hash::Util::FieldHash' => '1.06',
5194             'I18N::Langinfo' => '0.07',
5195             'Locale::Maketext' => '1.17',
5196             'Locale::Maketext::Guts'=> '1.17',
5197             'Locale::Maketext::GutsLoader'=> '1.17',
5198             'MIME::Base64' => '3.10',
5199             'MIME::QuotedPrint' => '3.10',
5200             'Math::BigFloat' => '1.99_01',
5201             'Math::BigInt' => '1.99_01',
5202             'Math::BigInt::Calc' => '1.99_01',
5203             'Math::BigInt::CalcEmu' => '1.99_01',
5204             'Math::BigInt::FastCalc'=> '0.24_01',
5205             'Math::BigRat' => '0.26_01',
5206             'Module::CoreList' => '2.41',
5207             'NDBM_File' => '1.10',
5208             'ODBM_File' => '1.09',
5209             'Opcode' => '1.17',
5210             'POSIX' => '1.22',
5211             'Pod::Simple' => '3.15',
5212             'Pod::Simple::BlackBox' => '3.15',
5213             'Pod::Simple::Checker' => '3.15',
5214             'Pod::Simple::Debug' => '3.15',
5215             'Pod::Simple::DumpAsText'=> '3.15',
5216             'Pod::Simple::DumpAsXML'=> '3.15',
5217             'Pod::Simple::HTML' => '3.15',
5218             'Pod::Simple::HTMLBatch'=> '3.15',
5219             'Pod::Simple::LinkSection'=> '3.15',
5220             'Pod::Simple::Methody' => '3.15',
5221             'Pod::Simple::Progress' => '3.15',
5222             'Pod::Simple::PullParser'=> '3.15',
5223             'Pod::Simple::PullParserEndToken'=> '3.15',
5224             'Pod::Simple::PullParserStartToken'=> '3.15',
5225             'Pod::Simple::PullParserTextToken'=> '3.15',
5226             'Pod::Simple::PullParserToken'=> '3.15',
5227             'Pod::Simple::RTF' => '3.15',
5228             'Pod::Simple::Search' => '3.15',
5229             'Pod::Simple::SimpleTree'=> '3.15',
5230             'Pod::Simple::Text' => '3.15',
5231             'Pod::Simple::TextContent'=> '3.15',
5232             'Pod::Simple::TiedOutFH'=> '3.15',
5233             'Pod::Simple::Transcode'=> '3.15',
5234             'Pod::Simple::TranscodeDumb'=> '3.15',
5235             'Pod::Simple::TranscodeSmart'=> '3.15',
5236             'Pod::Simple::XHTML' => '3.15',
5237             'Pod::Simple::XMLOutStream'=> '3.15',
5238             'SDBM_File' => '1.08',
5239             'Safe' => '2.29',
5240             'SelfLoader' => '1.18',
5241             'Socket' => '1.91',
5242             'Storable' => '2.24',
5243             'Sys::Hostname' => '1.14',
5244             'Unicode' => '6.0.0',
5245             'Unicode::Collate' => '0.67',
5246             'Unicode::Collate::CJK::Big5'=> '0.65',
5247             'Unicode::Collate::CJK::GB2312'=> '0.65',
5248             'Unicode::Collate::CJK::JISX0208'=> '0.64',
5249             'Unicode::Collate::CJK::Korean'=> '0.66',
5250             'Unicode::Collate::CJK::Pinyin'=> '0.65',
5251             'Unicode::Collate::CJK::Stroke'=> '0.65',
5252             'Unicode::Collate::Locale'=> '0.67',
5253             'XS::APItest' => '0.26',
5254             'XS::Typemap' => '0.04',
5255             'charnames' => '1.17',
5256             'mro' => '1.05',
5257             'parent' => '0.224',
5258             're' => '0.14',
5259             'threads' => '1.81_02',
5260             },
5261             removed => {
5262             }
5263             },
5264             5.013008 => {
5265             delta_from => 5.013007,
5266             changed => {
5267             'Archive::Tar' => '1.74',
5268             'Archive::Tar::Constant'=> '1.74',
5269             'Archive::Tar::File' => '1.74',
5270             'B' => '1.27',
5271             'B::Concise' => '0.82',
5272             'B::Deparse' => '1.02',
5273             'Carp::Heavy' => '1.17',
5274             'Cwd' => '3.35',
5275             'Data::Dumper' => '2.130_02',
5276             'Devel::Peek' => '1.06',
5277             'Devel::SelfStubber' => '1.05',
5278             'Digest::SHA' => '5.50',
5279             'Dumpvalue' => '1.15',
5280             'DynaLoader' => '1.12',
5281             'Env' => '1.02',
5282             'Exporter::Heavy' => '5.64_01',
5283             'ExtUtils::CBuilder' => '0.280201',
5284             'ExtUtils::CBuilder::Base'=> '0.280201',
5285             'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5286             'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5287             'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5288             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5289             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5290             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5291             'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5292             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5293             'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5294             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5295             'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5296             'ExtUtils::Constant::Utils'=> '0.03',
5297             'ExtUtils::Embed' => '1.30',
5298             'ExtUtils::ParseXS' => '2.2208',
5299             'Fatal' => '2.1001',
5300             'Fcntl' => '1.11',
5301             'File::CheckTree' => '4.41',
5302             'File::Glob' => '1.11',
5303             'GDBM_File' => '1.13',
5304             'Hash::Util::FieldHash' => '1.07',
5305             'I18N::Collate' => '1.02',
5306             'IO' => '1.25_03',
5307             'IPC::Cmd' => '0.66',
5308             'IPC::Open3' => '1.08',
5309             'Locale::Codes' => '3.15',
5310             'Locale::Codes::Country'=> '3.15',
5311             'Locale::Codes::Currency'=> '3.15',
5312             'Locale::Codes::Language'=> '3.15',
5313             'Locale::Codes::Script' => '3.15',
5314             'Locale::Constants' => '3.15',
5315             'Locale::Country' => '3.15',
5316             'Locale::Currency' => '3.15',
5317             'Locale::Language' => '3.15',
5318             'Locale::Script' => '3.15',
5319             'MIME::Base64' => '3.13',
5320             'MIME::QuotedPrint' => '3.13',
5321             'Math::BigFloat' => '1.99_02',
5322             'Math::BigInt' => '1.99_02',
5323             'Math::BigInt::Calc' => '1.99_02',
5324             'Math::BigInt::CalcEmu' => '1.99_02',
5325             'Memoize' => '1.02',
5326             'Memoize::AnyDBM_File' => '1.02',
5327             'Memoize::Expire' => '1.02',
5328             'Memoize::ExpireFile' => '1.02',
5329             'Memoize::ExpireTest' => '1.02',
5330             'Memoize::NDBM_File' => '1.02',
5331             'Memoize::SDBM_File' => '1.02',
5332             'Memoize::Storable' => '1.02',
5333             'Module::CoreList' => '2.43',
5334             'NDBM_File' => '1.11',
5335             'Net::Ping' => '2.37',
5336             'ODBM_File' => '1.10',
5337             'Opcode' => '1.18',
5338             'POSIX' => '1.23',
5339             'PerlIO::encoding' => '0.14',
5340             'PerlIO::scalar' => '0.11',
5341             'PerlIO::via' => '0.11',
5342             'SDBM_File' => '1.09',
5343             'Socket' => '1.92',
5344             'Storable' => '2.25',
5345             'Time::HiRes' => '1.9721_01',
5346             'Unicode::Collate' => '0.6801',
5347             'Unicode::Collate::Locale'=> '0.68',
5348             'Unicode::Normalize' => '1.08',
5349             'Unicode::UCD' => '0.30',
5350             'Win32' => '0.41',
5351             'XS::APItest' => '0.27',
5352             'autodie' => '2.1001',
5353             'autodie::exception' => '2.1001',
5354             'autodie::exception::system'=> '2.1001',
5355             'autodie::hints' => '2.1001',
5356             'feature' => '1.19',
5357             'if' => '0.0601',
5358             'mro' => '1.06',
5359             'overload' => '1.12',
5360             're' => '0.15',
5361             'threads' => '1.81_03',
5362             'threads::shared' => '1.35',
5363             'version' => '0.86',
5364             },
5365             removed => {
5366             }
5367             },
5368             5.013009 => {
5369             delta_from => 5.013008,
5370             changed => {
5371             'Archive::Extract' => '0.48',
5372             'Archive::Tar' => '1.76',
5373             'Archive::Tar::Constant'=> '1.76',
5374             'Archive::Tar::File' => '1.76',
5375             'B::Concise' => '0.83',
5376             'B::Deparse' => '1.03',
5377             'B::Lint' => '1.13',
5378             'Benchmark' => '1.12',
5379             'CGI' => '3.51',
5380             'CGI::Carp' => '3.51',
5381             'CGI::Cookie' => '1.30',
5382             'CGI::Push' => '1.05',
5383             'CGI::Util' => '3.51',
5384             'CPAN' => '1.94_63',
5385             'CPAN::HTTP::Client' => '1.94',
5386             'CPAN::HTTP::Credentials'=> '1.94',
5387             'CPAN::Meta::YAML' => '0.003',
5388             'CPANPLUS' => '0.9011',
5389             'CPANPLUS::Dist::Build' => '0.52',
5390             'CPANPLUS::Dist::Build::Constants'=> '0.52',
5391             'CPANPLUS::Internals' => '0.9011',
5392             'CPANPLUS::Shell::Default'=> '0.9011',
5393             'Carp::Heavy' => '1.19',
5394             'Compress::Raw::Bzip2' => '2.033',
5395             'Compress::Raw::Zlib' => '2.033',
5396             'Compress::Zlib' => '2.033',
5397             'Cwd' => '3.36',
5398             'DBM_Filter' => '0.04',
5399             'DB_File' => '1.821',
5400             'Devel::Peek' => '1.07',
5401             'DirHandle' => '1.04',
5402             'Dumpvalue' => '1.16',
5403             'Encode' => '2.42',
5404             'Encode::Alias' => '2.13',
5405             'Encode::MIME::Header' => '2.13',
5406             'Exporter::Heavy' => '5.64_03',
5407             'ExtUtils::Install' => '1.56',
5408             'ExtUtils::ParseXS' => '2.2209',
5409             'File::Basename' => '2.80',
5410             'File::Copy' => '2.21',
5411             'File::DosGlob' => '1.04',
5412             'File::Fetch' => '0.32',
5413             'File::Find' => '1.19',
5414             'File::Spec::Mac' => '3.34',
5415             'File::Spec::VMS' => '3.34',
5416             'File::stat' => '1.05',
5417             'HTTP::Tiny' => '0.009',
5418             'Hash::Util::FieldHash' => '1.08',
5419             'IO::Compress::Adapter::Bzip2'=> '2.033',
5420             'IO::Compress::Adapter::Deflate'=> '2.033',
5421             'IO::Compress::Adapter::Identity'=> '2.033',
5422             'IO::Compress::Base' => '2.033',
5423             'IO::Compress::Base::Common'=> '2.033',
5424             'IO::Compress::Bzip2' => '2.033',
5425             'IO::Compress::Deflate' => '2.033',
5426             'IO::Compress::Gzip' => '2.033',
5427             'IO::Compress::Gzip::Constants'=> '2.033',
5428             'IO::Compress::RawDeflate'=> '2.033',
5429             'IO::Compress::Zip' => '2.033',
5430             'IO::Compress::Zip::Constants'=> '2.033',
5431             'IO::Compress::Zlib::Constants'=> '2.033',
5432             'IO::Compress::Zlib::Extra'=> '2.033',
5433             'IO::Handle' => '1.29',
5434             'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5435             'IO::Uncompress::Adapter::Identity'=> '2.033',
5436             'IO::Uncompress::Adapter::Inflate'=> '2.033',
5437             'IO::Uncompress::AnyInflate'=> '2.033',
5438             'IO::Uncompress::AnyUncompress'=> '2.033',
5439             'IO::Uncompress::Base' => '2.033',
5440             'IO::Uncompress::Bunzip2'=> '2.033',
5441             'IO::Uncompress::Gunzip'=> '2.033',
5442             'IO::Uncompress::Inflate'=> '2.033',
5443             'IO::Uncompress::RawInflate'=> '2.033',
5444             'IO::Uncompress::Unzip' => '2.033',
5445             'IPC::Cmd' => '0.68',
5446             'IPC::Open3' => '1.09',
5447             'JSON::PP' => '2.27103',
5448             'JSON::PP::Boolean' => undef,
5449             'Locale::Maketext' => '1.18',
5450             'Log::Message' => '0.04',
5451             'Log::Message::Config' => '0.04',
5452             'Log::Message::Handlers'=> '0.04',
5453             'Log::Message::Item' => '0.04',
5454             'Log::Message::Simple' => '0.08',
5455             'Math::BigFloat' => '1.99_03',
5456             'Math::BigInt' => '1.99_03',
5457             'Math::BigInt::Calc' => '1.99_03',
5458             'Math::BigInt::FastCalc'=> '0.24_02',
5459             'Math::BigRat' => '0.26_02',
5460             'Module::CoreList' => '2.42_01',
5461             'Module::Load::Conditional'=> '0.40',
5462             'Module::Metadata' => '1.000003',
5463             'Net::Ping' => '2.38',
5464             'OS2::Process' => '1.05',
5465             'Object::Accessor' => '0.38',
5466             'POSIX' => '1.24',
5467             'Params::Check' => '0.28',
5468             'Perl::OSType' => '1.002',
5469             'Pod::LaTeX' => '0.59',
5470             'Pod::Perldoc' => '3.15_03',
5471             'Socket' => '1.93',
5472             'Storable' => '2.26',
5473             'Sys::Hostname' => '1.15',
5474             'Term::UI' => '0.24',
5475             'Thread::Queue' => '2.12',
5476             'Thread::Semaphore' => '2.12',
5477             'Time::Local' => '1.2000',
5478             'UNIVERSAL' => '1.08',
5479             'Unicode::Normalize' => '1.10',
5480             'Win32' => '0.44',
5481             'bigint' => '0.26',
5482             'bignum' => '0.26',
5483             'bigrat' => '0.26',
5484             'charnames' => '1.18',
5485             'diagnostics' => '1.21',
5486             're' => '0.16',
5487             'threads' => '1.83',
5488             'threads::shared' => '1.36',
5489             'version' => '0.88',
5490             },
5491             removed => {
5492             }
5493             },
5494             5.01301 => {
5495             delta_from => 5.013009,
5496             changed => {
5497             'Attribute::Handlers' => '0.89',
5498             'B' => '1.28',
5499             'B::Showlex' => '1.03',
5500             'CGI' => '3.52',
5501             'CPAN' => '1.94_65',
5502             'CPAN::Distribution' => '1.9601',
5503             'CPAN::FTP::netrc' => '1.01',
5504             'CPAN::FirstTime' => '5.5303',
5505             'CPAN::HandleConfig' => '5.5003',
5506             'CPAN::Meta' => '2.110440',
5507             'CPAN::Meta::Converter' => '2.110440',
5508             'CPAN::Meta::Feature' => '2.110440',
5509             'CPAN::Meta::History' => '2.110440',
5510             'CPAN::Meta::Prereqs' => '2.110440',
5511             'CPAN::Meta::Spec' => '2.110440',
5512             'CPAN::Meta::Validator' => '2.110440',
5513             'CPAN::Shell' => '5.5002',
5514             'CPANPLUS' => '0.9101',
5515             'CPANPLUS::Internals' => '0.9101',
5516             'CPANPLUS::Shell::Default'=> '0.9101',
5517             'Carp' => '1.20',
5518             'Carp::Heavy' => '1.20',
5519             'Cwd' => '3.37',
5520             'Devel::DProf' => '20110217.00',
5521             'DynaLoader' => '1.13',
5522             'ExtUtils::CBuilder' => '0.280202',
5523             'ExtUtils::CBuilder::Base'=> '0.280202',
5524             'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5525             'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5526             'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5527             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5528             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5529             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5530             'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5531             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5532             'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5533             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5534             'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5535             'File::Copy' => '2.22',
5536             'Filter::Simple' => '0.86',
5537             'HTTP::Tiny' => '0.010',
5538             'I18N::LangTags::Detect'=> '1.05',
5539             'IO::Select' => '1.18',
5540             'IPC::Cmd' => '0.70',
5541             'Locale::Maketext' => '1.19',
5542             'Math::BigFloat' => '1.992',
5543             'Math::BigInt' => '1.992',
5544             'Math::BigInt::Calc' => '1.992',
5545             'Math::BigInt::CalcEmu' => '1.992',
5546             'Module::Build' => '0.37_05',
5547             'Module::Build::Base' => '0.37_05',
5548             'Module::Build::Compat' => '0.37_05',
5549             'Module::Build::Config' => '0.37_05',
5550             'Module::Build::Cookbook'=> '0.37_05',
5551             'Module::Build::Dumper' => '0.37_05',
5552             'Module::Build::ModuleInfo'=> '0.37_05',
5553             'Module::Build::Notes' => '0.37_05',
5554             'Module::Build::PPMMaker'=> '0.37_05',
5555             'Module::Build::Platform::Amiga'=> '0.37_05',
5556             'Module::Build::Platform::Default'=> '0.37_05',
5557             'Module::Build::Platform::EBCDIC'=> '0.37_05',
5558             'Module::Build::Platform::MPEiX'=> '0.37_05',
5559             'Module::Build::Platform::MacOS'=> '0.37_05',
5560             'Module::Build::Platform::RiscOS'=> '0.37_05',
5561             'Module::Build::Platform::Unix'=> '0.37_05',
5562             'Module::Build::Platform::VMS'=> '0.37_05',
5563             'Module::Build::Platform::VOS'=> '0.37_05',
5564             'Module::Build::Platform::Windows'=> '0.37_05',
5565             'Module::Build::Platform::aix'=> '0.37_05',
5566             'Module::Build::Platform::cygwin'=> '0.37_05',
5567             'Module::Build::Platform::darwin'=> '0.37_05',
5568             'Module::Build::Platform::os2'=> '0.37_05',
5569             'Module::Build::PodParser'=> '0.37_05',
5570             'Module::Build::Version'=> '0.87',
5571             'Module::Build::YAML' => '1.41',
5572             'Module::CoreList' => '2.45',
5573             'Module::Load::Conditional'=> '0.44',
5574             'Module::Metadata' => '1.000004',
5575             'OS2::Process' => '1.06',
5576             'Parse::CPAN::Meta' => '1.4401',
5577             'Pod::Html' => '1.1',
5578             'Socket' => '1.94',
5579             'Term::UI' => '0.26',
5580             'Unicode::Collate' => '0.72',
5581             'Unicode::Collate::Locale'=> '0.71',
5582             'Unicode::UCD' => '0.31',
5583             'VMS::DCLsym' => '1.05',
5584             'Version::Requirements' => '0.101020',
5585             'bigrat' => '0.27',
5586             'deprecate' => '0.02',
5587             'diagnostics' => '1.22',
5588             'inc::latest' => '0.37_05',
5589             'overload' => '1.13',
5590             're' => '0.17',
5591             'utf8' => '1.09',
5592             'warnings' => '1.12',
5593             },
5594             removed => {
5595             }
5596             },
5597             5.013011 => {
5598             delta_from => 5.01301,
5599             changed => {
5600             'App::Prove' => '3.23',
5601             'App::Prove::State' => '3.23',
5602             'App::Prove::State::Result'=> '3.23',
5603             'App::Prove::State::Result::Test'=> '3.23',
5604             'B' => '1.29',
5605             'CPAN' => '1.9600',
5606             'CPAN::Author' => '5.5001',
5607             'CPAN::CacheMgr' => '5.5001',
5608             'CPAN::Distribution' => '1.9602',
5609             'CPAN::Exception::blocked_urllist'=> '1.001',
5610             'CPAN::HTTP::Client' => '1.9600',
5611             'CPAN::HTTP::Credentials'=> '1.9600',
5612             'CPAN::Index' => '1.9600',
5613             'CPAN::LWP::UserAgent' => '1.9600',
5614             'CPAN::Mirrors' => '1.9600',
5615             'CPAN::Module' => '5.5001',
5616             'CPANPLUS' => '0.9103',
5617             'CPANPLUS::Dist::Build' => '0.54',
5618             'CPANPLUS::Dist::Build::Constants'=> '0.54',
5619             'CPANPLUS::Internals' => '0.9103',
5620             'CPANPLUS::Shell::Default'=> '0.9103',
5621             'Cwd' => '3.36',
5622             'Devel::DProf' => '20110228.00',
5623             'Digest::SHA' => '5.61',
5624             'ExtUtils::Command' => '1.17',
5625             'File::Basename' => '2.81',
5626             'File::Copy' => '2.21',
5627             'File::Glob' => '1.12',
5628             'GDBM_File' => '1.14',
5629             'HTTP::Tiny' => '0.011',
5630             'Hash::Util' => '0.11',
5631             'Hash::Util::FieldHash' => '1.09',
5632             'I18N::Langinfo' => '0.08',
5633             'IO' => '1.25_04',
5634             'IO::Dir' => '1.08',
5635             'IO::File' => '1.15',
5636             'IO::Handle' => '1.30',
5637             'IO::Pipe' => '1.14',
5638             'IO::Poll' => '0.08',
5639             'IO::Select' => '1.20',
5640             'JSON::PP' => '2.27105',
5641             'Locale::Codes' => '3.16',
5642             'Locale::Codes::Country'=> '3.16',
5643             'Locale::Codes::Currency'=> '3.16',
5644             'Locale::Codes::Language'=> '3.16',
5645             'Locale::Codes::Script' => '3.16',
5646             'Locale::Constants' => '3.16',
5647             'Locale::Country' => '3.16',
5648             'Locale::Currency' => '3.16',
5649             'Locale::Language' => '3.16',
5650             'Locale::Script' => '3.16',
5651             'Math::BigFloat' => '1.993',
5652             'Math::BigInt' => '1.994',
5653             'Math::BigInt::Calc' => '1.993',
5654             'Math::BigInt::CalcEmu' => '1.993',
5655             'Math::BigInt::FastCalc'=> '0.28',
5656             'Module::Build' => '0.3800',
5657             'Module::Build::Base' => '0.3800',
5658             'Module::Build::Compat' => '0.3800',
5659             'Module::Build::Config' => '0.3800',
5660             'Module::Build::Cookbook'=> '0.3800',
5661             'Module::Build::Dumper' => '0.3800',
5662             'Module::Build::ModuleInfo'=> '0.3800',
5663             'Module::Build::Notes' => '0.3800',
5664             'Module::Build::PPMMaker'=> '0.3800',
5665             'Module::Build::Platform::Amiga'=> '0.3800',
5666             'Module::Build::Platform::Default'=> '0.3800',
5667             'Module::Build::Platform::EBCDIC'=> '0.3800',
5668             'Module::Build::Platform::MPEiX'=> '0.3800',
5669             'Module::Build::Platform::MacOS'=> '0.3800',
5670             'Module::Build::Platform::RiscOS'=> '0.3800',
5671             'Module::Build::Platform::Unix'=> '0.3800',
5672             'Module::Build::Platform::VMS'=> '0.3800',
5673             'Module::Build::Platform::VOS'=> '0.3800',
5674             'Module::Build::Platform::Windows'=> '0.3800',
5675             'Module::Build::Platform::aix'=> '0.3800',
5676             'Module::Build::Platform::cygwin'=> '0.3800',
5677             'Module::Build::Platform::darwin'=> '0.3800',
5678             'Module::Build::Platform::os2'=> '0.3800',
5679             'Module::Build::PodParser'=> '0.3800',
5680             'Module::CoreList' => '2.46',
5681             'NDBM_File' => '1.12',
5682             'Pod::Simple' => '3.16',
5683             'Pod::Simple::BlackBox' => '3.16',
5684             'Pod::Simple::Checker' => '3.16',
5685             'Pod::Simple::Debug' => '3.16',
5686             'Pod::Simple::DumpAsText'=> '3.16',
5687             'Pod::Simple::DumpAsXML'=> '3.16',
5688             'Pod::Simple::HTML' => '3.16',
5689             'Pod::Simple::HTMLBatch'=> '3.16',
5690             'Pod::Simple::LinkSection'=> '3.16',
5691             'Pod::Simple::Methody' => '3.16',
5692             'Pod::Simple::Progress' => '3.16',
5693             'Pod::Simple::PullParser'=> '3.16',
5694             'Pod::Simple::PullParserEndToken'=> '3.16',
5695             'Pod::Simple::PullParserStartToken'=> '3.16',
5696             'Pod::Simple::PullParserTextToken'=> '3.16',
5697             'Pod::Simple::PullParserToken'=> '3.16',
5698             'Pod::Simple::RTF' => '3.16',
5699             'Pod::Simple::Search' => '3.16',
5700             'Pod::Simple::SimpleTree'=> '3.16',
5701             'Pod::Simple::Text' => '3.16',
5702             'Pod::Simple::TextContent'=> '3.16',
5703             'Pod::Simple::TiedOutFH'=> '3.16',
5704             'Pod::Simple::Transcode'=> '3.16',
5705             'Pod::Simple::TranscodeDumb'=> '3.16',
5706             'Pod::Simple::TranscodeSmart'=> '3.16',
5707             'Pod::Simple::XHTML' => '3.16',
5708             'Pod::Simple::XMLOutStream'=> '3.16',
5709             'Storable' => '2.27',
5710             'Sys::Hostname' => '1.16',
5711             'TAP::Base' => '3.23',
5712             'TAP::Formatter::Base' => '3.23',
5713             'TAP::Formatter::Color' => '3.23',
5714             'TAP::Formatter::Console'=> '3.23',
5715             'TAP::Formatter::Console::ParallelSession'=> '3.23',
5716             'TAP::Formatter::Console::Session'=> '3.23',
5717             'TAP::Formatter::File' => '3.23',
5718             'TAP::Formatter::File::Session'=> '3.23',
5719             'TAP::Formatter::Session'=> '3.23',
5720             'TAP::Harness' => '3.23',
5721             'TAP::Object' => '3.23',
5722             'TAP::Parser' => '3.23',
5723             'TAP::Parser::Aggregator'=> '3.23',
5724             'TAP::Parser::Grammar' => '3.23',
5725             'TAP::Parser::Iterator' => '3.23',
5726             'TAP::Parser::Iterator::Array'=> '3.23',
5727             'TAP::Parser::Iterator::Process'=> '3.23',
5728             'TAP::Parser::Iterator::Stream'=> '3.23',
5729             'TAP::Parser::IteratorFactory'=> '3.23',
5730             'TAP::Parser::Multiplexer'=> '3.23',
5731             'TAP::Parser::Result' => '3.23',
5732             'TAP::Parser::Result::Bailout'=> '3.23',
5733             'TAP::Parser::Result::Comment'=> '3.23',
5734             'TAP::Parser::Result::Plan'=> '3.23',
5735             'TAP::Parser::Result::Pragma'=> '3.23',
5736             'TAP::Parser::Result::Test'=> '3.23',
5737             'TAP::Parser::Result::Unknown'=> '3.23',
5738             'TAP::Parser::Result::Version'=> '3.23',
5739             'TAP::Parser::Result::YAML'=> '3.23',
5740             'TAP::Parser::ResultFactory'=> '3.23',
5741             'TAP::Parser::Scheduler'=> '3.23',
5742             'TAP::Parser::Scheduler::Job'=> '3.23',
5743             'TAP::Parser::Scheduler::Spinner'=> '3.23',
5744             'TAP::Parser::Source' => '3.23',
5745             'TAP::Parser::SourceHandler'=> '3.23',
5746             'TAP::Parser::SourceHandler::Executable'=> '3.23',
5747             'TAP::Parser::SourceHandler::File'=> '3.23',
5748             'TAP::Parser::SourceHandler::Handle'=> '3.23',
5749             'TAP::Parser::SourceHandler::Perl'=> '3.23',
5750             'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5751             'TAP::Parser::Utils' => '3.23',
5752             'TAP::Parser::YAMLish::Reader'=> '3.23',
5753             'TAP::Parser::YAMLish::Writer'=> '3.23',
5754             'Test::Builder' => '0.98',
5755             'Test::Builder::Module' => '0.98',
5756             'Test::Builder::Tester' => '1.22',
5757             'Test::Builder::Tester::Color'=> '1.22',
5758             'Test::Harness' => '3.23',
5759             'Test::More' => '0.98',
5760             'Test::Simple' => '0.98',
5761             'Tie::Hash::NamedCapture'=> '0.08',
5762             'Tie::RefHash' => '1.39',
5763             'Unicode::Collate' => '0.73',
5764             'Unicode::Collate::Locale'=> '0.73',
5765             'Unicode::UCD' => '0.32',
5766             'XS::Typemap' => '0.05',
5767             'attributes' => '0.14',
5768             'base' => '2.16',
5769             'inc::latest' => '0.3800',
5770             'mro' => '1.07',
5771             'parent' => '0.225',
5772             },
5773             removed => {
5774             }
5775             },
5776             5.014 => {
5777             delta_from => 5.013011,
5778             changed => {
5779             'ExtUtils::CBuilder' => '0.280203',
5780             'ExtUtils::CBuilder::Base'=> '0.280203',
5781             'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5782             'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5783             'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5784             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5785             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5786             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5787             'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5788             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5789             'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5790             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5791             'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5792             'ExtUtils::ParseXS' => '2.2210',
5793             'File::Basename' => '2.82',
5794             'HTTP::Tiny' => '0.012',
5795             'IO::Handle' => '1.31',
5796             'Module::CoreList' => '2.49',
5797             'PerlIO' => '1.07',
5798             'Pod::Html' => '1.11',
5799             'XS::APItest' => '0.28',
5800             'bigint' => '0.27',
5801             'bignum' => '0.27',
5802             'bigrat' => '0.28',
5803             'constant' => '1.21',
5804             'feature' => '1.20',
5805             're' => '0.18',
5806             'threads::shared' => '1.37',
5807             },
5808             removed => {
5809             }
5810             },
5811             5.014001 => {
5812             delta_from => 5.014,
5813             changed => {
5814             'B::Deparse' => '1.04',
5815             'Module::CoreList' => '2.49_01',
5816             'Pod::Perldoc' => '3.15_04',
5817             },
5818             removed => {
5819             }
5820             },
5821             5.014002 => {
5822             delta_from => 5.014001,
5823             changed => {
5824             'CPAN' => '1.9600_01',
5825             'CPAN::Distribution' => '1.9602_01',
5826             'Devel::DProf::dprof::V'=> undef,
5827             'Encode' => '2.42_01',
5828             'File::Glob' => '1.13',
5829             'Module::CoreList' => '2.49_02',
5830             'PerlIO::scalar' => '0.11_01',
5831             'Time::Piece::Seconds' => undef,
5832             },
5833             removed => {
5834             }
5835             },
5836             5.014003 => {
5837             delta_from => 5.014002,
5838             changed => {
5839             'Digest' => '1.16_01',
5840             'IPC::Open3' => '1.09_01',
5841             'Module::CoreList' => '2.49_04',
5842             },
5843             removed => {
5844             }
5845             },
5846             5.014004 => {
5847             delta_from => 5.014003,
5848             changed => {
5849             'Encode' => '2.42_02',
5850             'IPC::Open3' => '1.0901',
5851             'Module::CoreList' => '2.49_06',
5852             },
5853             removed => {
5854             }
5855             },
5856             5.015 => {
5857             delta_from => 5.014001,
5858             changed => {
5859             'Archive::Extract' => '0.52',
5860             'Attribute::Handlers' => '0.91',
5861             'B' => '1.30',
5862             'B::Concise' => '0.84',
5863             'B::Deparse' => '1.05',
5864             'Benchmark' => '1.13',
5865             'CGI' => '3.54',
5866             'CGI::Util' => '3.53',
5867             'CPAN::Meta' => '2.110930',
5868             'CPAN::Meta::Converter' => '2.110930',
5869             'CPAN::Meta::Feature' => '2.110930',
5870             'CPAN::Meta::History' => '2.110930',
5871             'CPAN::Meta::Prereqs' => '2.110930',
5872             'CPAN::Meta::Spec' => '2.110930',
5873             'CPAN::Meta::Validator' => '2.110930',
5874             'CPANPLUS' => '0.9105',
5875             'CPANPLUS::Dist::Build' => '0.56',
5876             'CPANPLUS::Dist::Build::Constants'=> '0.56',
5877             'CPANPLUS::Internals' => '0.9105',
5878             'CPANPLUS::Shell::Default'=> '0.9105',
5879             'Compress::Raw::Bzip2' => '2.035',
5880             'Compress::Raw::Zlib' => '2.035',
5881             'Compress::Zlib' => '2.035',
5882             'DB_File' => '1.822',
5883             'Data::Dumper' => '2.131',
5884             'Devel::Peek' => '1.08',
5885             'Digest::SHA' => '5.62',
5886             'Encode' => '2.43',
5887             'Encode::Alias' => '2.14',
5888             'ExtUtils::CBuilder' => '0.280204',
5889             'ExtUtils::CBuilder::Base'=> '0.280204',
5890             'Fatal' => '2.10',
5891             'File::Spec::Win32' => '3.34',
5892             'Filter::Simple' => '0.87',
5893             'Filter::Util::Call' => '1.39',
5894             'FindBin' => '1.51',
5895             'Hash::Util::FieldHash' => '1.10',
5896             'I18N::LangTags' => '0.36',
5897             'IO::Compress::Adapter::Bzip2'=> '2.035',
5898             'IO::Compress::Adapter::Deflate'=> '2.035',
5899             'IO::Compress::Adapter::Identity'=> '2.035',
5900             'IO::Compress::Base' => '2.035',
5901             'IO::Compress::Base::Common'=> '2.035',
5902             'IO::Compress::Bzip2' => '2.035',
5903             'IO::Compress::Deflate' => '2.035',
5904             'IO::Compress::Gzip' => '2.035',
5905             'IO::Compress::Gzip::Constants'=> '2.035',
5906             'IO::Compress::RawDeflate'=> '2.035',
5907             'IO::Compress::Zip' => '2.035',
5908             'IO::Compress::Zip::Constants'=> '2.035',
5909             'IO::Compress::Zlib::Constants'=> '2.035',
5910             'IO::Compress::Zlib::Extra'=> '2.035',
5911             'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5912             'IO::Uncompress::Adapter::Identity'=> '2.035',
5913             'IO::Uncompress::Adapter::Inflate'=> '2.035',
5914             'IO::Uncompress::AnyInflate'=> '2.035',
5915             'IO::Uncompress::AnyUncompress'=> '2.035',
5916             'IO::Uncompress::Base' => '2.035',
5917             'IO::Uncompress::Bunzip2'=> '2.035',
5918             'IO::Uncompress::Gunzip'=> '2.035',
5919             'IO::Uncompress::Inflate'=> '2.035',
5920             'IO::Uncompress::RawInflate'=> '2.035',
5921             'IO::Uncompress::Unzip' => '2.035',
5922             'IPC::Open2' => '1.04',
5923             'IPC::Open3' => '1.11',
5924             'JSON::PP' => '2.27200',
5925             'Math::BigFloat' => '1.994',
5926             'Math::BigInt' => '1.995',
5927             'Math::Complex' => '1.57',
5928             'Math::Trig' => '1.21',
5929             'Module::CoreList' => '2.51',
5930             'ODBM_File' => '1.11',
5931             'Object::Accessor' => '0.42',
5932             'Opcode' => '1.19',
5933             'PerlIO::encoding' => '0.15',
5934             'PerlIO::scalar' => '0.12',
5935             'Pod::Perldoc' => '3.15_05',
5936             'Storable' => '2.28',
5937             'Sys::Syslog' => '0.29',
5938             'Time::HiRes' => '1.9722',
5939             'Unicode::Collate' => '0.76',
5940             'Unicode::Collate::CJK::Pinyin'=> '0.76',
5941             'Unicode::Collate::CJK::Stroke'=> '0.76',
5942             'Unicode::Collate::Locale'=> '0.76',
5943             'Unicode::Normalize' => '1.12',
5944             'XS::APItest' => '0.29',
5945             'XSLoader' => '0.15',
5946             'autodie' => '2.10',
5947             'autodie::exception' => '2.10',
5948             'autodie::exception::system'=> '2.10',
5949             'autodie::hints' => '2.10',
5950             'base' => '2.17',
5951             'charnames' => '1.22',
5952             'constant' => '1.22',
5953             'feature' => '1.21',
5954             'mro' => '1.08',
5955             'overload' => '1.14',
5956             'threads::shared' => '1.38',
5957             'vmsish' => '1.03',
5958             },
5959             removed => {
5960             'Devel::DProf' => 1,
5961             'Shell' => 1,
5962             }
5963             },
5964             5.015001 => {
5965             delta_from => 5.015,
5966             changed => {
5967             'B::Deparse' => '1.06',
5968             'CGI' => '3.55',
5969             'CPAN::Meta' => '2.110930001',
5970             'CPAN::Meta::Converter' => '2.110930001',
5971             'CPANPLUS' => '0.9108',
5972             'CPANPLUS::Internals' => '0.9108',
5973             'CPANPLUS::Shell::Default'=> '0.9108',
5974             'Carp' => '1.21',
5975             'Carp::Heavy' => '1.21',
5976             'Compress::Raw::Bzip2' => '2.037',
5977             'Compress::Raw::Zlib' => '2.037',
5978             'Compress::Zlib' => '2.037',
5979             'Cwd' => '3.37',
5980             'Env' => '1.03',
5981             'ExtUtils::Command::MM' => '6.58',
5982             'ExtUtils::Liblist' => '6.58',
5983             'ExtUtils::Liblist::Kid'=> '6.58',
5984             'ExtUtils::MM' => '6.58',
5985             'ExtUtils::MM_AIX' => '6.58',
5986             'ExtUtils::MM_Any' => '6.58',
5987             'ExtUtils::MM_BeOS' => '6.58',
5988             'ExtUtils::MM_Cygwin' => '6.58',
5989             'ExtUtils::MM_DOS' => '6.58',
5990             'ExtUtils::MM_Darwin' => '6.58',
5991             'ExtUtils::MM_MacOS' => '6.58',
5992             'ExtUtils::MM_NW5' => '6.58',
5993             'ExtUtils::MM_OS2' => '6.58',
5994             'ExtUtils::MM_QNX' => '6.58',
5995             'ExtUtils::MM_UWIN' => '6.58',
5996             'ExtUtils::MM_Unix' => '6.58',
5997             'ExtUtils::MM_VMS' => '6.58',
5998             'ExtUtils::MM_VOS' => '6.58',
5999             'ExtUtils::MM_Win32' => '6.58',
6000             'ExtUtils::MM_Win95' => '6.58',
6001             'ExtUtils::MY' => '6.58',
6002             'ExtUtils::MakeMaker' => '6.58',
6003             'ExtUtils::MakeMaker::Config'=> '6.58',
6004             'ExtUtils::Mkbootstrap' => '6.58',
6005             'ExtUtils::Mksymlists' => '6.58',
6006             'ExtUtils::ParseXS' => '3.00_01',
6007             'ExtUtils::ParseXS::Constants'=> undef,
6008             'ExtUtils::ParseXS::CountLines'=> undef,
6009             'ExtUtils::ParseXS::Utilities'=> undef,
6010             'ExtUtils::Typemaps' => '1.00',
6011             'ExtUtils::Typemaps::InputMap'=> undef,
6012             'ExtUtils::Typemaps::OutputMap'=> undef,
6013             'ExtUtils::Typemaps::Type'=> '0.05',
6014             'ExtUtils::testlib' => '6.58',
6015             'File::Basename' => '2.83',
6016             'File::Find' => '1.20',
6017             'HTTP::Tiny' => '0.013',
6018             'I18N::Langinfo' => '0.08_02',
6019             'IO::Compress::Adapter::Bzip2'=> '2.037',
6020             'IO::Compress::Adapter::Deflate'=> '2.037',
6021             'IO::Compress::Adapter::Identity'=> '2.037',
6022             'IO::Compress::Base' => '2.037',
6023             'IO::Compress::Base::Common'=> '2.037',
6024             'IO::Compress::Bzip2' => '2.037',
6025             'IO::Compress::Deflate' => '2.037',
6026             'IO::Compress::Gzip' => '2.037',
6027             'IO::Compress::Gzip::Constants'=> '2.037',
6028             'IO::Compress::RawDeflate'=> '2.037',
6029             'IO::Compress::Zip' => '2.037',
6030             'IO::Compress::Zip::Constants'=> '2.037',
6031             'IO::Compress::Zlib::Constants'=> '2.037',
6032             'IO::Compress::Zlib::Extra'=> '2.037',
6033             'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
6034             'IO::Uncompress::Adapter::Identity'=> '2.037',
6035             'IO::Uncompress::Adapter::Inflate'=> '2.037',
6036             'IO::Uncompress::AnyInflate'=> '2.037',
6037             'IO::Uncompress::AnyUncompress'=> '2.037',
6038             'IO::Uncompress::Base' => '2.037',
6039             'IO::Uncompress::Bunzip2'=> '2.037',
6040             'IO::Uncompress::Gunzip'=> '2.037',
6041             'IO::Uncompress::Inflate'=> '2.037',
6042             'IO::Uncompress::RawInflate'=> '2.037',
6043             'IO::Uncompress::Unzip' => '2.037',
6044             'IPC::Cmd' => '0.72',
6045             'Locale::Codes' => '3.17',
6046             'Locale::Codes::Constants'=> '3.17',
6047             'Locale::Codes::Country'=> '3.17',
6048             'Locale::Codes::Country_Codes'=> '3.17',
6049             'Locale::Codes::Currency'=> '3.17',
6050             'Locale::Codes::Currency_Codes'=> '3.17',
6051             'Locale::Codes::LangExt'=> '3.17',
6052             'Locale::Codes::LangExt_Codes'=> '3.17',
6053             'Locale::Codes::LangVar'=> '3.17',
6054             'Locale::Codes::LangVar_Codes'=> '3.17',
6055             'Locale::Codes::Language'=> '3.17',
6056             'Locale::Codes::Language_Codes'=> '3.17',
6057             'Locale::Codes::Script' => '3.17',
6058             'Locale::Codes::Script_Codes'=> '3.17',
6059             'Locale::Country' => '3.17',
6060             'Locale::Currency' => '3.17',
6061             'Locale::Language' => '3.17',
6062             'Locale::Script' => '3.17',
6063             'Math::BigFloat::Trace' => '0.28',
6064             'Math::BigInt::FastCalc'=> '0.29',
6065             'Math::BigInt::Trace' => '0.28',
6066             'Math::BigRat' => '0.2602',
6067             'Math::Complex' => '1.58',
6068             'Math::Trig' => '1.22',
6069             'Module::CoreList' => '2.54',
6070             'OS2::Process' => '1.07',
6071             'Pod::Perldoc' => '3.15_06',
6072             'Pod::Simple' => '3.18',
6073             'Pod::Simple::BlackBox' => '3.18',
6074             'Pod::Simple::Checker' => '3.18',
6075             'Pod::Simple::Debug' => '3.18',
6076             'Pod::Simple::DumpAsText'=> '3.18',
6077             'Pod::Simple::DumpAsXML'=> '3.18',
6078             'Pod::Simple::HTML' => '3.18',
6079             'Pod::Simple::HTMLBatch'=> '3.18',
6080             'Pod::Simple::LinkSection'=> '3.18',
6081             'Pod::Simple::Methody' => '3.18',
6082             'Pod::Simple::Progress' => '3.18',
6083             'Pod::Simple::PullParser'=> '3.18',
6084             'Pod::Simple::PullParserEndToken'=> '3.18',
6085             'Pod::Simple::PullParserStartToken'=> '3.18',
6086             'Pod::Simple::PullParserTextToken'=> '3.18',
6087             'Pod::Simple::PullParserToken'=> '3.18',
6088             'Pod::Simple::RTF' => '3.18',
6089             'Pod::Simple::Search' => '3.18',
6090             'Pod::Simple::SimpleTree'=> '3.18',
6091             'Pod::Simple::Text' => '3.18',
6092             'Pod::Simple::TextContent'=> '3.18',
6093             'Pod::Simple::TiedOutFH'=> '3.18',
6094             'Pod::Simple::Transcode'=> '3.18',
6095             'Pod::Simple::TranscodeDumb'=> '3.18',
6096             'Pod::Simple::TranscodeSmart'=> '3.18',
6097             'Pod::Simple::XHTML' => '3.18',
6098             'Pod::Simple::XMLOutStream'=> '3.18',
6099             'Storable' => '2.31',
6100             'Sys::Syslog::Win32' => undef,
6101             'Time::HiRes' => '1.9724',
6102             'Unicode::Collate' => '0.77',
6103             'Unicode::UCD' => '0.33',
6104             'Win32API::File' => '0.1200',
6105             'XS::APItest' => '0.30',
6106             'attributes' => '0.15',
6107             'bigint' => '0.28',
6108             'bignum' => '0.28',
6109             'charnames' => '1.23',
6110             'diagnostics' => '1.23',
6111             'feature' => '1.22',
6112             'overload' => '1.15',
6113             'perlfaq' => '5.015000',
6114             'threads' => '1.84',
6115             'version' => '0.93',
6116             },
6117             removed => {
6118             'ExtUtils::MakeMaker::YAML'=> 1,
6119             'Locale::Constants' => 1,
6120             'Sys::Syslog::win32::Win32'=> 1,
6121             }
6122             },
6123             5.015002 => {
6124             delta_from => 5.015001,
6125             changed => {
6126             'Attribute::Handlers' => '0.92',
6127             'B' => '1.31',
6128             'B::Concise' => '0.85',
6129             'B::Deparse' => '1.07',
6130             'B::Terse' => '1.06',
6131             'B::Xref' => '1.03',
6132             'CPAN' => '1.9800',
6133             'CPAN::Exception::yaml_process_error'=> '5.5',
6134             'CPAN::Meta' => '2.112150',
6135             'CPAN::Meta::Converter' => '2.112150',
6136             'CPAN::Meta::Feature' => '2.112150',
6137             'CPAN::Meta::History' => '2.112150',
6138             'CPAN::Meta::Prereqs' => '2.112150',
6139             'CPAN::Meta::Spec' => '2.112150',
6140             'CPAN::Meta::Validator' => '2.112150',
6141             'CPANPLUS' => '0.9109',
6142             'CPANPLUS::Internals' => '0.9109',
6143             'CPANPLUS::Shell::Default'=> '0.9109',
6144             'DB_File' => '1.824',
6145             'Data::Dumper' => '2.132',
6146             'Encode' => '2.44',
6147             'Encode::Alias' => '2.15',
6148             'Encode::Encoder' => '2.02',
6149             'Encode::Guess' => '2.05',
6150             'ExtUtils::Command::MM' => '6.59',
6151             'ExtUtils::Install' => '1.57',
6152             'ExtUtils::Installed' => '1.999002',
6153             'ExtUtils::Liblist' => '6.59',
6154             'ExtUtils::Liblist::Kid'=> '6.59',
6155             'ExtUtils::MM' => '6.59',
6156             'ExtUtils::MM_AIX' => '6.59',
6157             'ExtUtils::MM_Any' => '6.59',
6158             'ExtUtils::MM_BeOS' => '6.59',
6159             'ExtUtils::MM_Cygwin' => '6.59',
6160             'ExtUtils::MM_DOS' => '6.59',
6161             'ExtUtils::MM_Darwin' => '6.59',
6162             'ExtUtils::MM_MacOS' => '6.59',
6163             'ExtUtils::MM_NW5' => '6.59',
6164             'ExtUtils::MM_OS2' => '6.59',
6165             'ExtUtils::MM_QNX' => '6.59',
6166             'ExtUtils::MM_UWIN' => '6.59',
6167             'ExtUtils::MM_Unix' => '6.59',
6168             'ExtUtils::MM_VMS' => '6.59',
6169             'ExtUtils::MM_VOS' => '6.59',
6170             'ExtUtils::MM_Win32' => '6.59',
6171             'ExtUtils::MM_Win95' => '6.59',
6172             'ExtUtils::MY' => '6.59',
6173             'ExtUtils::MakeMaker' => '6.59',
6174             'ExtUtils::MakeMaker::Config'=> '6.59',
6175             'ExtUtils::Manifest' => '1.60',
6176             'ExtUtils::Mkbootstrap' => '6.59',
6177             'ExtUtils::Mksymlists' => '6.59',
6178             'ExtUtils::ParseXS' => '3.03_01',
6179             'ExtUtils::Typemaps' => '1.01',
6180             'ExtUtils::testlib' => '6.59',
6181             'File::Spec' => '3.34',
6182             'File::Spec::Mac' => '3.35',
6183             'File::Spec::Unix' => '3.34',
6184             'File::Spec::VMS' => '3.35',
6185             'File::Spec::Win32' => '3.35',
6186             'I18N::LangTags' => '0.37',
6187             'IO' => '1.25_05',
6188             'IO::Handle' => '1.32',
6189             'IO::Socket' => '1.33',
6190             'IO::Socket::INET' => '1.32',
6191             'IPC::Open3' => '1.12',
6192             'Math::BigFloat' => '1.995',
6193             'Math::BigFloat::Trace' => '0.29',
6194             'Math::BigInt' => '1.996',
6195             'Math::BigInt::Trace' => '0.29',
6196             'Module::Build' => '0.39_01',
6197             'Module::Build::Base' => '0.39_01',
6198             'Module::Build::Compat' => '0.39_01',
6199             'Module::Build::Config' => '0.39_01',
6200             'Module::Build::Cookbook'=> '0.39_01',
6201             'Module::Build::Dumper' => '0.39_01',
6202             'Module::Build::ModuleInfo'=> '0.39_01',
6203             'Module::Build::Notes' => '0.39_01',
6204             'Module::Build::PPMMaker'=> '0.39_01',
6205             'Module::Build::Platform::Amiga'=> '0.39_01',
6206             'Module::Build::Platform::Default'=> '0.39_01',
6207             'Module::Build::Platform::EBCDIC'=> '0.39_01',
6208             'Module::Build::Platform::MPEiX'=> '0.39_01',
6209             'Module::Build::Platform::MacOS'=> '0.39_01',
6210             'Module::Build::Platform::RiscOS'=> '0.39_01',
6211             'Module::Build::Platform::Unix'=> '0.39_01',
6212             'Module::Build::Platform::VMS'=> '0.39_01',
6213             'Module::Build::Platform::VOS'=> '0.39_01',
6214             'Module::Build::Platform::Windows'=> '0.39_01',
6215             'Module::Build::Platform::aix'=> '0.39_01',
6216             'Module::Build::Platform::cygwin'=> '0.39_01',
6217             'Module::Build::Platform::darwin'=> '0.39_01',
6218             'Module::Build::Platform::os2'=> '0.39_01',
6219             'Module::Build::PodParser'=> '0.39_01',
6220             'Module::CoreList' => '2.55',
6221             'Module::Load' => '0.20',
6222             'Module::Metadata' => '1.000005_01',
6223             'Opcode' => '1.20',
6224             'Params::Check' => '0.32',
6225             'PerlIO::via' => '0.12',
6226             'Term::ANSIColor' => '3.01',
6227             'Unicode::Collate' => '0.78',
6228             'Unicode::Normalize' => '1.13',
6229             'Unicode::UCD' => '0.34',
6230             'bigint' => '0.29',
6231             'bignum' => '0.29',
6232             'bigrat' => '0.29',
6233             'diagnostics' => '1.24',
6234             'fields' => '2.16',
6235             'inc::latest' => '0.39_01',
6236             },
6237             removed => {
6238             }
6239             },
6240             5.015003 => {
6241             delta_from => 5.015002,
6242             changed => {
6243             'AnyDBM_File' => '1.01',
6244             'Archive::Extract' => '0.56',
6245             'Archive::Tar' => '1.78',
6246             'Archive::Tar::Constant'=> '1.78',
6247             'Archive::Tar::File' => '1.78',
6248             'Attribute::Handlers' => '0.93',
6249             'B' => '1.32',
6250             'B::Concise' => '0.86',
6251             'B::Deparse' => '1.08',
6252             'CPAN::Meta' => '2.112621',
6253             'CPAN::Meta::Converter' => '2.112621',
6254             'CPAN::Meta::Feature' => '2.112621',
6255             'CPAN::Meta::History' => '2.112621',
6256             'CPAN::Meta::Prereqs' => '2.112621',
6257             'CPAN::Meta::Spec' => '2.112621',
6258             'CPAN::Meta::Validator' => '2.112621',
6259             'CPAN::Meta::YAML' => '0.004',
6260             'CPANPLUS' => '0.9111',
6261             'CPANPLUS::Dist::Build' => '0.58',
6262             'CPANPLUS::Dist::Build::Constants'=> '0.58',
6263             'CPANPLUS::Internals' => '0.9111',
6264             'CPANPLUS::Shell::Default'=> '0.9111',
6265             'Carp' => '1.23',
6266             'Carp::Heavy' => '1.23',
6267             'Data::Dumper' => '2.134',
6268             'Devel::PPPort' => '3.20',
6269             'Errno' => '1.14',
6270             'Exporter' => '5.65',
6271             'Exporter::Heavy' => '5.65',
6272             'ExtUtils::ParseXS' => '3.04_04',
6273             'ExtUtils::ParseXS::Constants'=> '3.04_04',
6274             'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6275             'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6276             'ExtUtils::Typemaps' => '1.02',
6277             'File::Glob' => '1.13',
6278             'Filter::Simple' => '0.88',
6279             'IO' => '1.25_06',
6280             'IO::Handle' => '1.33',
6281             'Locale::Codes' => '3.18',
6282             'Locale::Codes::Constants'=> '3.18',
6283             'Locale::Codes::Country'=> '3.18',
6284             'Locale::Codes::Country_Codes'=> '3.18',
6285             'Locale::Codes::Currency'=> '3.18',
6286             'Locale::Codes::Currency_Codes'=> '3.18',
6287             'Locale::Codes::LangExt'=> '3.18',
6288             'Locale::Codes::LangExt_Codes'=> '3.18',
6289             'Locale::Codes::LangVar'=> '3.18',
6290             'Locale::Codes::LangVar_Codes'=> '3.18',
6291             'Locale::Codes::Language'=> '3.18',
6292             'Locale::Codes::Language_Codes'=> '3.18',
6293             'Locale::Codes::Script' => '3.18',
6294             'Locale::Codes::Script_Codes'=> '3.18',
6295             'Locale::Country' => '3.18',
6296             'Locale::Currency' => '3.18',
6297             'Locale::Language' => '3.18',
6298             'Locale::Script' => '3.18',
6299             'Math::BigFloat' => '1.997',
6300             'Math::BigInt' => '1.997',
6301             'Math::BigInt::Calc' => '1.997',
6302             'Math::BigInt::CalcEmu' => '1.997',
6303             'Math::BigInt::FastCalc'=> '0.30',
6304             'Math::BigRat' => '0.2603',
6305             'Module::CoreList' => '2.56',
6306             'Module::Load::Conditional'=> '0.46',
6307             'Module::Metadata' => '1.000007',
6308             'ODBM_File' => '1.12',
6309             'POSIX' => '1.26',
6310             'Pod::Perldoc' => '3.15_07',
6311             'Pod::Simple' => '3.19',
6312             'Pod::Simple::BlackBox' => '3.19',
6313             'Pod::Simple::Checker' => '3.19',
6314             'Pod::Simple::Debug' => '3.19',
6315             'Pod::Simple::DumpAsText'=> '3.19',
6316             'Pod::Simple::DumpAsXML'=> '3.19',
6317             'Pod::Simple::HTML' => '3.19',
6318             'Pod::Simple::HTMLBatch'=> '3.19',
6319             'Pod::Simple::LinkSection'=> '3.19',
6320             'Pod::Simple::Methody' => '3.19',
6321             'Pod::Simple::Progress' => '3.19',
6322             'Pod::Simple::PullParser'=> '3.19',
6323             'Pod::Simple::PullParserEndToken'=> '3.19',
6324             'Pod::Simple::PullParserStartToken'=> '3.19',
6325             'Pod::Simple::PullParserTextToken'=> '3.19',
6326             'Pod::Simple::PullParserToken'=> '3.19',
6327             'Pod::Simple::RTF' => '3.19',
6328             'Pod::Simple::Search' => '3.19',
6329             'Pod::Simple::SimpleTree'=> '3.19',
6330             'Pod::Simple::Text' => '3.19',
6331             'Pod::Simple::TextContent'=> '3.19',
6332             'Pod::Simple::TiedOutFH'=> '3.19',
6333             'Pod::Simple::Transcode'=> '3.19',
6334             'Pod::Simple::TranscodeDumb'=> '3.19',
6335             'Pod::Simple::TranscodeSmart'=> '3.19',
6336             'Pod::Simple::XHTML' => '3.19',
6337             'Pod::Simple::XMLOutStream'=> '3.19',
6338             'Search::Dict' => '1.04',
6339             'Socket' => '1.94_01',
6340             'Storable' => '2.32',
6341             'Text::Abbrev' => '1.02',
6342             'Tie::Array' => '1.05',
6343             'UNIVERSAL' => '1.09',
6344             'Unicode::UCD' => '0.35',
6345             'XS::APItest' => '0.31',
6346             'XSLoader' => '0.16',
6347             'attributes' => '0.16',
6348             'diagnostics' => '1.25',
6349             'open' => '1.09',
6350             'perlfaq' => '5.0150034',
6351             'threads' => '1.85',
6352             'threads::shared' => '1.40',
6353             },
6354             removed => {
6355             }
6356             },
6357             5.015004 => {
6358             delta_from => 5.015003,
6359             changed => {
6360             'Archive::Tar' => '1.80',
6361             'Archive::Tar::Constant'=> '1.80',
6362             'Archive::Tar::File' => '1.80',
6363             'Digest' => '1.17',
6364             'DynaLoader' => '1.14',
6365             'ExtUtils::Command::MM' => '6.61_01',
6366             'ExtUtils::Liblist' => '6.61_01',
6367             'ExtUtils::Liblist::Kid'=> '6.61_01',
6368             'ExtUtils::MM' => '6.61_01',
6369             'ExtUtils::MM_AIX' => '6.61_01',
6370             'ExtUtils::MM_Any' => '6.61_01',
6371             'ExtUtils::MM_BeOS' => '6.61_01',
6372             'ExtUtils::MM_Cygwin' => '6.61_01',
6373             'ExtUtils::MM_DOS' => '6.61_01',
6374             'ExtUtils::MM_Darwin' => '6.61_01',
6375             'ExtUtils::MM_MacOS' => '6.61_01',
6376             'ExtUtils::MM_NW5' => '6.61_01',
6377             'ExtUtils::MM_OS2' => '6.61_01',
6378             'ExtUtils::MM_QNX' => '6.61_01',
6379             'ExtUtils::MM_UWIN' => '6.61_01',
6380             'ExtUtils::MM_Unix' => '6.61_01',
6381             'ExtUtils::MM_VMS' => '6.61_01',
6382             'ExtUtils::MM_VOS' => '6.61_01',
6383             'ExtUtils::MM_Win32' => '6.61_01',
6384             'ExtUtils::MM_Win95' => '6.61_01',
6385             'ExtUtils::MY' => '6.61_01',
6386             'ExtUtils::MakeMaker' => '6.61_01',
6387             'ExtUtils::MakeMaker::Config'=> '6.61_01',
6388             'ExtUtils::Mkbootstrap' => '6.61_01',
6389             'ExtUtils::Mksymlists' => '6.61_01',
6390             'ExtUtils::ParseXS' => '3.05',
6391             'ExtUtils::ParseXS::Constants'=> '3.05',
6392             'ExtUtils::ParseXS::CountLines'=> '3.05',
6393             'ExtUtils::ParseXS::Utilities'=> '3.05',
6394             'ExtUtils::testlib' => '6.61_01',
6395             'File::DosGlob' => '1.05',
6396             'Module::CoreList' => '2.57',
6397             'Module::Load' => '0.22',
6398             'Unicode::Collate' => '0.80',
6399             'Unicode::Collate::Locale'=> '0.80',
6400             'Unicode::UCD' => '0.36',
6401             'XS::APItest' => '0.32',
6402             'XS::Typemap' => '0.07',
6403             'attributes' => '0.17',
6404             'base' => '2.18',
6405             'constant' => '1.23',
6406             'mro' => '1.09',
6407             'open' => '1.10',
6408             'perlfaq' => '5.0150035',
6409             },
6410             removed => {
6411             }
6412             },
6413             5.015005 => {
6414             delta_from => 5.015004,
6415             changed => {
6416             'Archive::Extract' => '0.58',
6417             'B::Concise' => '0.87',
6418             'B::Deparse' => '1.09',
6419             'CGI' => '3.58',
6420             'CGI::Fast' => '1.09',
6421             'CPANPLUS' => '0.9112',
6422             'CPANPLUS::Dist::Build' => '0.60',
6423             'CPANPLUS::Dist::Build::Constants'=> '0.60',
6424             'CPANPLUS::Internals' => '0.9112',
6425             'CPANPLUS::Shell::Default'=> '0.9112',
6426             'Compress::Raw::Bzip2' => '2.042',
6427             'Compress::Raw::Zlib' => '2.042',
6428             'Compress::Zlib' => '2.042',
6429             'Digest::SHA' => '5.63',
6430             'Errno' => '1.15',
6431             'ExtUtils::Command::MM' => '6.63_02',
6432             'ExtUtils::Liblist' => '6.63_02',
6433             'ExtUtils::Liblist::Kid'=> '6.63_02',
6434             'ExtUtils::MM' => '6.63_02',
6435             'ExtUtils::MM_AIX' => '6.63_02',
6436             'ExtUtils::MM_Any' => '6.63_02',
6437             'ExtUtils::MM_BeOS' => '6.63_02',
6438             'ExtUtils::MM_Cygwin' => '6.63_02',
6439             'ExtUtils::MM_DOS' => '6.63_02',
6440             'ExtUtils::MM_Darwin' => '6.63_02',
6441             'ExtUtils::MM_MacOS' => '6.63_02',
6442             'ExtUtils::MM_NW5' => '6.63_02',
6443             'ExtUtils::MM_OS2' => '6.63_02',
6444             'ExtUtils::MM_QNX' => '6.63_02',
6445             'ExtUtils::MM_UWIN' => '6.63_02',
6446             'ExtUtils::MM_Unix' => '6.63_02',
6447             'ExtUtils::MM_VMS' => '6.63_02',
6448             'ExtUtils::MM_VOS' => '6.63_02',
6449             'ExtUtils::MM_Win32' => '6.63_02',
6450             'ExtUtils::MM_Win95' => '6.63_02',
6451             'ExtUtils::MY' => '6.63_02',
6452             'ExtUtils::MakeMaker' => '6.63_02',
6453             'ExtUtils::MakeMaker::Config'=> '6.63_02',
6454             'ExtUtils::Mkbootstrap' => '6.63_02',
6455             'ExtUtils::Mksymlists' => '6.63_02',
6456             'ExtUtils::testlib' => '6.63_02',
6457             'File::DosGlob' => '1.06',
6458             'File::Glob' => '1.14',
6459             'HTTP::Tiny' => '0.016',
6460             'IO::Compress::Adapter::Bzip2'=> '2.042',
6461             'IO::Compress::Adapter::Deflate'=> '2.042',
6462             'IO::Compress::Adapter::Identity'=> '2.042',
6463             'IO::Compress::Base' => '2.042',
6464             'IO::Compress::Base::Common'=> '2.042',
6465             'IO::Compress::Bzip2' => '2.042',
6466             'IO::Compress::Deflate' => '2.042',
6467             'IO::Compress::Gzip' => '2.042',
6468             'IO::Compress::Gzip::Constants'=> '2.042',
6469             'IO::Compress::RawDeflate'=> '2.042',
6470             'IO::Compress::Zip' => '2.042',
6471             'IO::Compress::Zip::Constants'=> '2.042',
6472             'IO::Compress::Zlib::Constants'=> '2.042',
6473             'IO::Compress::Zlib::Extra'=> '2.042',
6474             'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6475             'IO::Uncompress::Adapter::Identity'=> '2.042',
6476             'IO::Uncompress::Adapter::Inflate'=> '2.042',
6477             'IO::Uncompress::AnyInflate'=> '2.042',
6478             'IO::Uncompress::AnyUncompress'=> '2.042',
6479             'IO::Uncompress::Base' => '2.042',
6480             'IO::Uncompress::Bunzip2'=> '2.042',
6481             'IO::Uncompress::Gunzip'=> '2.042',
6482             'IO::Uncompress::Inflate'=> '2.042',
6483             'IO::Uncompress::RawInflate'=> '2.042',
6484             'IO::Uncompress::Unzip' => '2.042',
6485             'Locale::Maketext' => '1.20',
6486             'Locale::Maketext::Guts'=> '1.20',
6487             'Locale::Maketext::GutsLoader'=> '1.20',
6488             'Module::CoreList' => '2.58',
6489             'Opcode' => '1.21',
6490             'Socket' => '1.94_02',
6491             'Storable' => '2.33',
6492             'UNIVERSAL' => '1.10',
6493             'Unicode::Collate' => '0.85',
6494             'Unicode::Collate::CJK::Pinyin'=> '0.85',
6495             'Unicode::Collate::CJK::Stroke'=> '0.85',
6496             'Unicode::Collate::Locale'=> '0.85',
6497             'Unicode::UCD' => '0.37',
6498             'XS::APItest' => '0.33',
6499             'arybase' => '0.01',
6500             'charnames' => '1.24',
6501             'feature' => '1.23',
6502             'perlfaq' => '5.0150036',
6503             'strict' => '1.05',
6504             'unicore::Name' => undef,
6505             },
6506             removed => {
6507             }
6508             },
6509             5.015006 => {
6510             delta_from => 5.015005,
6511             changed => {
6512             'Archive::Tar' => '1.82',
6513             'Archive::Tar::Constant'=> '1.82',
6514             'Archive::Tar::File' => '1.82',
6515             'AutoLoader' => '5.72',
6516             'B::Concise' => '0.88',
6517             'B::Debug' => '1.17',
6518             'B::Deparse' => '1.10',
6519             'CPAN::Meta::YAML' => '0.005',
6520             'CPANPLUS' => '0.9113',
6521             'CPANPLUS::Internals' => '0.9113',
6522             'CPANPLUS::Shell::Default'=> '0.9113',
6523             'Carp' => '1.24',
6524             'Compress::Raw::Bzip2' => '2.045',
6525             'Compress::Raw::Zlib' => '2.045',
6526             'Compress::Zlib' => '2.045',
6527             'Cwd' => '3.38',
6528             'DB' => '1.04',
6529             'Data::Dumper' => '2.135_01',
6530             'Digest::SHA' => '5.70',
6531             'Dumpvalue' => '1.17',
6532             'Exporter' => '5.66',
6533             'Exporter::Heavy' => '5.66',
6534             'ExtUtils::CBuilder' => '0.280205',
6535             'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6536             'ExtUtils::Packlist' => '1.45',
6537             'ExtUtils::ParseXS' => '3.08',
6538             'ExtUtils::ParseXS::Constants'=> '3.08',
6539             'ExtUtils::ParseXS::CountLines'=> '3.08',
6540             'ExtUtils::ParseXS::Utilities'=> '3.08',
6541             'File::Basename' => '2.84',
6542             'File::Glob' => '1.15',
6543             'File::Spec::Unix' => '3.35',
6544             'Getopt::Std' => '1.07',
6545             'I18N::LangTags' => '0.38',
6546             'IO::Compress::Adapter::Bzip2'=> '2.045',
6547             'IO::Compress::Adapter::Deflate'=> '2.045',
6548             'IO::Compress::Adapter::Identity'=> '2.045',
6549             'IO::Compress::Base' => '2.046',
6550             'IO::Compress::Base::Common'=> '2.045',
6551             'IO::Compress::Bzip2' => '2.045',
6552             'IO::Compress::Deflate' => '2.045',
6553             'IO::Compress::Gzip' => '2.045',
6554             'IO::Compress::Gzip::Constants'=> '2.045',
6555             'IO::Compress::RawDeflate'=> '2.045',
6556             'IO::Compress::Zip' => '2.046',
6557             'IO::Compress::Zip::Constants'=> '2.045',
6558             'IO::Compress::Zlib::Constants'=> '2.045',
6559             'IO::Compress::Zlib::Extra'=> '2.045',
6560             'IO::Dir' => '1.09',
6561             'IO::File' => '1.16',
6562             'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6563             'IO::Uncompress::Adapter::Identity'=> '2.045',
6564             'IO::Uncompress::Adapter::Inflate'=> '2.045',
6565             'IO::Uncompress::AnyInflate'=> '2.045',
6566             'IO::Uncompress::AnyUncompress'=> '2.045',
6567             'IO::Uncompress::Base' => '2.046',
6568             'IO::Uncompress::Bunzip2'=> '2.045',
6569             'IO::Uncompress::Gunzip'=> '2.045',
6570             'IO::Uncompress::Inflate'=> '2.045',
6571             'IO::Uncompress::RawInflate'=> '2.045',
6572             'IO::Uncompress::Unzip' => '2.046',
6573             'Locale::Codes' => '3.20',
6574             'Locale::Codes::Constants'=> '3.20',
6575             'Locale::Codes::Country'=> '3.20',
6576             'Locale::Codes::Country_Codes'=> '3.20',
6577             'Locale::Codes::Country_Retired'=> '3.20',
6578             'Locale::Codes::Currency'=> '3.20',
6579             'Locale::Codes::Currency_Codes'=> '3.20',
6580             'Locale::Codes::Currency_Retired'=> '3.20',
6581             'Locale::Codes::LangExt'=> '3.20',
6582             'Locale::Codes::LangExt_Codes'=> '3.20',
6583             'Locale::Codes::LangExt_Retired'=> '3.20',
6584             'Locale::Codes::LangFam'=> '3.20',
6585             'Locale::Codes::LangFam_Codes'=> '3.20',
6586             'Locale::Codes::LangFam_Retired'=> '3.20',
6587             'Locale::Codes::LangVar'=> '3.20',
6588             'Locale::Codes::LangVar_Codes'=> '3.20',
6589             'Locale::Codes::LangVar_Retired'=> '3.20',
6590             'Locale::Codes::Language'=> '3.20',
6591             'Locale::Codes::Language_Codes'=> '3.20',
6592             'Locale::Codes::Language_Retired'=> '3.20',
6593             'Locale::Codes::Script' => '3.20',
6594             'Locale::Codes::Script_Codes'=> '3.20',
6595             'Locale::Codes::Script_Retired'=> '3.20',
6596             'Locale::Country' => '3.20',
6597             'Locale::Currency' => '3.20',
6598             'Locale::Language' => '3.20',
6599             'Locale::Maketext' => '1.21',
6600             'Locale::Script' => '3.20',
6601             'Module::CoreList' => '2.59',
6602             'Module::Loaded' => '0.08',
6603             'Opcode' => '1.22',
6604             'POSIX' => '1.27',
6605             'Pod::Html' => '1.12',
6606             'Pod::LaTeX' => '0.60',
6607             'Pod::Perldoc' => '3.15_08',
6608             'Safe' => '2.30',
6609             'SelfLoader' => '1.20',
6610             'Socket' => '1.97',
6611             'Storable' => '2.34',
6612             'UNIVERSAL' => '1.11',
6613             'Unicode::Collate' => '0.87',
6614             'Unicode::Collate::Locale'=> '0.87',
6615             'XS::APItest' => '0.34',
6616             'arybase' => '0.02',
6617             'charnames' => '1.27',
6618             'diagnostics' => '1.26',
6619             'feature' => '1.24',
6620             'if' => '0.0602',
6621             'overload' => '1.16',
6622             'sigtrap' => '1.06',
6623             'strict' => '1.06',
6624             'threads' => '1.86',
6625             'version' => '0.96',
6626             },
6627             removed => {
6628             }
6629             },
6630             5.015007 => {
6631             delta_from => 5.015006,
6632             changed => {
6633             'B' => '1.33',
6634             'B::Deparse' => '1.11',
6635             'CGI' => '3.59',
6636             'CPAN::Meta' => '2.113640',
6637             'CPAN::Meta::Converter' => '2.113640',
6638             'CPAN::Meta::Feature' => '2.113640',
6639             'CPAN::Meta::History' => '2.113640',
6640             'CPAN::Meta::Prereqs' => '2.113640',
6641             'CPAN::Meta::Requirements'=> '2.113640',
6642             'CPAN::Meta::Spec' => '2.113640',
6643             'CPAN::Meta::Validator' => '2.113640',
6644             'CPANPLUS' => '0.9116',
6645             'CPANPLUS::Internals' => '0.9116',
6646             'CPANPLUS::Shell::Default'=> '0.9116',
6647             'Cwd' => '3.39_01',
6648             'Data::Dumper' => '2.135_03',
6649             'Devel::InnerPackage' => '0.4',
6650             'ExtUtils::CBuilder::Base'=> '0.280205',
6651             'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6652             'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6653             'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6654             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6655             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6656             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6657             'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6658             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6659             'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6660             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6661             'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6662             'ExtUtils::Manifest' => '1.61',
6663             'ExtUtils::Packlist' => '1.46',
6664             'ExtUtils::ParseXS' => '3.12',
6665             'ExtUtils::ParseXS::Constants'=> '3.12',
6666             'ExtUtils::ParseXS::CountLines'=> '3.12',
6667             'ExtUtils::ParseXS::Utilities'=> '3.12',
6668             'ExtUtils::Typemaps' => '1.03',
6669             'ExtUtils::Typemaps::Cmd'=> undef,
6670             'ExtUtils::Typemaps::Type'=> '0.06',
6671             'File::Glob' => '1.16',
6672             'File::Spec' => '3.39_01',
6673             'File::Spec::Cygwin' => '3.39_01',
6674             'File::Spec::Epoc' => '3.39_01',
6675             'File::Spec::Functions' => '3.39_01',
6676             'File::Spec::Mac' => '3.39_01',
6677             'File::Spec::OS2' => '3.39_01',
6678             'File::Spec::Unix' => '3.39_01',
6679             'File::Spec::VMS' => '3.39_01',
6680             'File::Spec::Win32' => '3.39_01',
6681             'IO::Dir' => '1.10',
6682             'IO::Pipe' => '1.15',
6683             'IO::Poll' => '0.09',
6684             'IO::Select' => '1.21',
6685             'IO::Socket' => '1.34',
6686             'IO::Socket::INET' => '1.33',
6687             'IO::Socket::UNIX' => '1.24',
6688             'Locale::Maketext' => '1.22',
6689             'Math::BigInt' => '1.998',
6690             'Module::CoreList' => '2.60',
6691             'Module::Pluggable' => '4.0',
6692             'POSIX' => '1.28',
6693             'PerlIO::scalar' => '0.13',
6694             'Pod::Html' => '1.13',
6695             'Pod::Perldoc' => '3.15_15',
6696             'Pod::Perldoc::BaseTo' => '3.15_15',
6697             'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6698             'Pod::Perldoc::ToANSI' => '3.15_15',
6699             'Pod::Perldoc::ToChecker'=> '3.15_15',
6700             'Pod::Perldoc::ToMan' => '3.15_15',
6701             'Pod::Perldoc::ToNroff' => '3.15_15',
6702             'Pod::Perldoc::ToPod' => '3.15_15',
6703             'Pod::Perldoc::ToRtf' => '3.15_15',
6704             'Pod::Perldoc::ToTerm' => '3.15_15',
6705             'Pod::Perldoc::ToText' => '3.15_15',
6706             'Pod::Perldoc::ToTk' => '3.15_15',
6707             'Pod::Perldoc::ToXml' => '3.15_15',
6708             'Term::UI' => '0.30',
6709             'Tie::File' => '0.98',
6710             'Unicode::UCD' => '0.39',
6711             'Version::Requirements' => '0.101021',
6712             'XS::APItest' => '0.35',
6713             '_charnames' => '1.28',
6714             'arybase' => '0.03',
6715             'autouse' => '1.07',
6716             'charnames' => '1.28',
6717             'diagnostics' => '1.27',
6718             'feature' => '1.25',
6719             'overload' => '1.17',
6720             'overloading' => '0.02',
6721             'perlfaq' => '5.0150038',
6722             },
6723             removed => {
6724             }
6725             },
6726             5.015008 => {
6727             delta_from => 5.015007,
6728             changed => {
6729             'B' => '1.34',
6730             'B::Deparse' => '1.12',
6731             'CPAN::Meta' => '2.120351',
6732             'CPAN::Meta::Converter' => '2.120351',
6733             'CPAN::Meta::Feature' => '2.120351',
6734             'CPAN::Meta::History' => '2.120351',
6735             'CPAN::Meta::Prereqs' => '2.120351',
6736             'CPAN::Meta::Requirements'=> '2.120351',
6737             'CPAN::Meta::Spec' => '2.120351',
6738             'CPAN::Meta::Validator' => '2.120351',
6739             'CPAN::Meta::YAML' => '0.007',
6740             'CPANPLUS' => '0.9118',
6741             'CPANPLUS::Dist::Build' => '0.62',
6742             'CPANPLUS::Dist::Build::Constants'=> '0.62',
6743             'CPANPLUS::Internals' => '0.9118',
6744             'CPANPLUS::Shell::Default'=> '0.9118',
6745             'Carp' => '1.25',
6746             'Carp::Heavy' => '1.25',
6747             'Compress::Raw::Bzip2' => '2.048',
6748             'Compress::Raw::Zlib' => '2.048',
6749             'Compress::Zlib' => '2.048',
6750             'Cwd' => '3.39_02',
6751             'DB_File' => '1.826',
6752             'Data::Dumper' => '2.135_05',
6753             'English' => '1.05',
6754             'ExtUtils::Install' => '1.58',
6755             'ExtUtils::ParseXS' => '3.16',
6756             'ExtUtils::ParseXS::Constants'=> '3.16',
6757             'ExtUtils::ParseXS::CountLines'=> '3.16',
6758             'ExtUtils::ParseXS::Utilities'=> '3.16',
6759             'ExtUtils::Typemaps' => '3.16',
6760             'ExtUtils::Typemaps::Cmd'=> '3.16',
6761             'ExtUtils::Typemaps::InputMap'=> '3.16',
6762             'ExtUtils::Typemaps::OutputMap'=> '3.16',
6763             'ExtUtils::Typemaps::Type'=> '3.16',
6764             'File::Copy' => '2.23',
6765             'File::Glob' => '1.17',
6766             'File::Spec' => '3.39_02',
6767             'File::Spec::Cygwin' => '3.39_02',
6768             'File::Spec::Epoc' => '3.39_02',
6769             'File::Spec::Functions' => '3.39_02',
6770             'File::Spec::Mac' => '3.39_02',
6771             'File::Spec::OS2' => '3.39_02',
6772             'File::Spec::Unix' => '3.39_02',
6773             'File::Spec::VMS' => '3.39_02',
6774             'File::Spec::Win32' => '3.39_02',
6775             'Filter::Util::Call' => '1.40',
6776             'IO::Compress::Adapter::Bzip2'=> '2.048',
6777             'IO::Compress::Adapter::Deflate'=> '2.048',
6778             'IO::Compress::Adapter::Identity'=> '2.048',
6779             'IO::Compress::Base' => '2.048',
6780             'IO::Compress::Base::Common'=> '2.048',
6781             'IO::Compress::Bzip2' => '2.048',
6782             'IO::Compress::Deflate' => '2.048',
6783             'IO::Compress::Gzip' => '2.048',
6784             'IO::Compress::Gzip::Constants'=> '2.048',
6785             'IO::Compress::RawDeflate'=> '2.048',
6786             'IO::Compress::Zip' => '2.048',
6787             'IO::Compress::Zip::Constants'=> '2.048',
6788             'IO::Compress::Zlib::Constants'=> '2.048',
6789             'IO::Compress::Zlib::Extra'=> '2.048',
6790             'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6791             'IO::Uncompress::Adapter::Identity'=> '2.048',
6792             'IO::Uncompress::Adapter::Inflate'=> '2.048',
6793             'IO::Uncompress::AnyInflate'=> '2.048',
6794             'IO::Uncompress::AnyUncompress'=> '2.048',
6795             'IO::Uncompress::Base' => '2.048',
6796             'IO::Uncompress::Bunzip2'=> '2.048',
6797             'IO::Uncompress::Gunzip'=> '2.048',
6798             'IO::Uncompress::Inflate'=> '2.048',
6799             'IO::Uncompress::RawInflate'=> '2.048',
6800             'IO::Uncompress::Unzip' => '2.048',
6801             'IPC::Cmd' => '0.76',
6802             'Math::Complex' => '1.59',
6803             'Math::Trig' => '1.23',
6804             'Module::Metadata' => '1.000009',
6805             'Opcode' => '1.23',
6806             'POSIX' => '1.30',
6807             'Parse::CPAN::Meta' => '1.4402',
6808             'PerlIO::mmap' => '0.010',
6809             'Pod::Checker' => '1.51',
6810             'Pod::Find' => '1.51',
6811             'Pod::Functions' => '1.05',
6812             'Pod::Html' => '1.14',
6813             'Pod::InputObjects' => '1.51',
6814             'Pod::ParseUtils' => '1.51',
6815             'Pod::Parser' => '1.51',
6816             'Pod::PlainText' => '2.05',
6817             'Pod::Select' => '1.51',
6818             'Pod::Usage' => '1.51',
6819             'Safe' => '2.31',
6820             'Socket' => '1.98',
6821             'Term::Cap' => '1.13',
6822             'Term::ReadLine' => '1.08',
6823             'Time::HiRes' => '1.9725',
6824             'Unicode' => '6.1.0',
6825             'Unicode::UCD' => '0.41',
6826             'Version::Requirements' => '0.101022',
6827             'XS::APItest' => '0.36',
6828             'XS::Typemap' => '0.08',
6829             '_charnames' => '1.29',
6830             'arybase' => '0.04',
6831             'charnames' => '1.29',
6832             'diagnostics' => '1.28',
6833             'feature' => '1.26',
6834             'locale' => '1.01',
6835             'overload' => '1.18',
6836             'perlfaq' => '5.0150039',
6837             're' => '0.19',
6838             'subs' => '1.01',
6839             'warnings' => '1.13',
6840             },
6841             removed => {
6842             }
6843             },
6844             5.015009 => {
6845             delta_from => 5.015008,
6846             changed => {
6847             'B::Deparse' => '1.13',
6848             'B::Lint' => '1.14',
6849             'B::Lint::Debug' => '1.14',
6850             'CPAN::Meta' => '2.120630',
6851             'CPAN::Meta::Converter' => '2.120630',
6852             'CPAN::Meta::Feature' => '2.120630',
6853             'CPAN::Meta::History' => '2.120630',
6854             'CPAN::Meta::Prereqs' => '2.120630',
6855             'CPAN::Meta::Requirements'=> '2.120630',
6856             'CPAN::Meta::Spec' => '2.120630',
6857             'CPAN::Meta::Validator' => '2.120630',
6858             'CPANPLUS' => '0.9121',
6859             'CPANPLUS::Internals' => '0.9121',
6860             'CPANPLUS::Shell::Default'=> '0.9121',
6861             'Data::Dumper' => '2.135_06',
6862             'Digest::SHA' => '5.71',
6863             'ExtUtils::CBuilder' => '0.280206',
6864             'ExtUtils::CBuilder::Base'=> '0.280206',
6865             'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6866             'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6867             'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6868             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6869             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6870             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6871             'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6872             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6873             'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6874             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6875             'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6876             'HTTP::Tiny' => '0.017',
6877             'Locale::Codes' => '3.21',
6878             'Locale::Codes::Constants'=> '3.21',
6879             'Locale::Codes::Country'=> '3.21',
6880             'Locale::Codes::Country_Codes'=> '3.21',
6881             'Locale::Codes::Country_Retired'=> '3.21',
6882             'Locale::Codes::Currency'=> '3.21',
6883             'Locale::Codes::Currency_Codes'=> '3.21',
6884             'Locale::Codes::Currency_Retired'=> '3.21',
6885             'Locale::Codes::LangExt'=> '3.21',
6886             'Locale::Codes::LangExt_Codes'=> '3.21',
6887             'Locale::Codes::LangExt_Retired'=> '3.21',
6888             'Locale::Codes::LangFam'=> '3.21',
6889             'Locale::Codes::LangFam_Codes'=> '3.21',
6890             'Locale::Codes::LangFam_Retired'=> '3.21',
6891             'Locale::Codes::LangVar'=> '3.21',
6892             'Locale::Codes::LangVar_Codes'=> '3.21',
6893             'Locale::Codes::LangVar_Retired'=> '3.21',
6894             'Locale::Codes::Language'=> '3.21',
6895             'Locale::Codes::Language_Codes'=> '3.21',
6896             'Locale::Codes::Language_Retired'=> '3.21',
6897             'Locale::Codes::Script' => '3.21',
6898             'Locale::Codes::Script_Codes'=> '3.21',
6899             'Locale::Codes::Script_Retired'=> '3.21',
6900             'Locale::Country' => '3.21',
6901             'Locale::Currency' => '3.21',
6902             'Locale::Language' => '3.21',
6903             'Locale::Script' => '3.21',
6904             'Module::CoreList' => '2.65',
6905             'Pod::Html' => '1.1501',
6906             'Pod::Perldoc' => '3.17',
6907             'Pod::Perldoc::BaseTo' => '3.17',
6908             'Pod::Perldoc::GetOptsOO'=> '3.17',
6909             'Pod::Perldoc::ToANSI' => '3.17',
6910             'Pod::Perldoc::ToChecker'=> '3.17',
6911             'Pod::Perldoc::ToMan' => '3.17',
6912             'Pod::Perldoc::ToNroff' => '3.17',
6913             'Pod::Perldoc::ToPod' => '3.17',
6914             'Pod::Perldoc::ToRtf' => '3.17',
6915             'Pod::Perldoc::ToTerm' => '3.17',
6916             'Pod::Perldoc::ToText' => '3.17',
6917             'Pod::Perldoc::ToTk' => '3.17',
6918             'Pod::Perldoc::ToXml' => '3.17',
6919             'Pod::Simple' => '3.20',
6920             'Pod::Simple::BlackBox' => '3.20',
6921             'Pod::Simple::Checker' => '3.20',
6922             'Pod::Simple::Debug' => '3.20',
6923             'Pod::Simple::DumpAsText'=> '3.20',
6924             'Pod::Simple::DumpAsXML'=> '3.20',
6925             'Pod::Simple::HTML' => '3.20',
6926             'Pod::Simple::HTMLBatch'=> '3.20',
6927             'Pod::Simple::LinkSection'=> '3.20',
6928             'Pod::Simple::Methody' => '3.20',
6929             'Pod::Simple::Progress' => '3.20',
6930             'Pod::Simple::PullParser'=> '3.20',
6931             'Pod::Simple::PullParserEndToken'=> '3.20',
6932             'Pod::Simple::PullParserStartToken'=> '3.20',
6933             'Pod::Simple::PullParserTextToken'=> '3.20',
6934             'Pod::Simple::PullParserToken'=> '3.20',
6935             'Pod::Simple::RTF' => '3.20',
6936             'Pod::Simple::Search' => '3.20',
6937             'Pod::Simple::SimpleTree'=> '3.20',
6938             'Pod::Simple::Text' => '3.20',
6939             'Pod::Simple::TextContent'=> '3.20',
6940             'Pod::Simple::TiedOutFH'=> '3.20',
6941             'Pod::Simple::Transcode'=> '3.20',
6942             'Pod::Simple::TranscodeDumb'=> '3.20',
6943             'Pod::Simple::TranscodeSmart'=> '3.20',
6944             'Pod::Simple::XHTML' => '3.20',
6945             'Pod::Simple::XMLOutStream'=> '3.20',
6946             'Socket' => '2.000',
6947             'Term::ReadLine' => '1.09',
6948             'Unicode::Collate' => '0.89',
6949             'Unicode::Collate::CJK::Korean'=> '0.88',
6950             'Unicode::Collate::Locale'=> '0.89',
6951             'Unicode::Normalize' => '1.14',
6952             'Unicode::UCD' => '0.42',
6953             'XS::APItest' => '0.37',
6954             'arybase' => '0.05',
6955             'attributes' => '0.18',
6956             'charnames' => '1.30',
6957             'feature' => '1.27',
6958             },
6959             removed => {
6960             }
6961             },
6962             5.016 => {
6963             delta_from => 5.015009,
6964             changed => {
6965             'B::Concise' => '0.89',
6966             'B::Deparse' => '1.14',
6967             'Carp' => '1.26',
6968             'Carp::Heavy' => '1.26',
6969             'IO::Socket' => '1.35',
6970             'Module::CoreList' => '2.66',
6971             'PerlIO::scalar' => '0.14',
6972             'Pod::Html' => '1.1502',
6973             'Safe' => '2.31_01',
6974             'Socket' => '2.001',
6975             'Unicode::UCD' => '0.43',
6976             'XS::APItest' => '0.38',
6977             '_charnames' => '1.31',
6978             'attributes' => '0.19',
6979             'strict' => '1.07',
6980             'version' => '0.99',
6981             },
6982             removed => {
6983             }
6984             },
6985             5.016001 => {
6986             delta_from => 5.016,
6987             changed => {
6988             'B' => '1.35',
6989             'B::Deparse' => '1.14_01',
6990             'List::Util' => '1.25',
6991             'List::Util::PP' => '1.25',
6992             'List::Util::XS' => '1.25',
6993             'Module::CoreList' => '2.70',
6994             'PerlIO::scalar' => '0.14_01',
6995             'Scalar::Util' => '1.25',
6996             'Scalar::Util::PP' => '1.25',
6997             're' => '0.19_01',
6998             },
6999             removed => {
7000             }
7001             },
7002             5.016002 => {
7003             delta_from => 5.016001,
7004             changed => {
7005             'Module::CoreList' => '2.76',
7006             },
7007             removed => {
7008             }
7009             },
7010             5.016003 => {
7011             delta_from => 5.016002,
7012             changed => {
7013             'Encode' => '2.44_01',
7014             'Module::CoreList' => '2.76_02',
7015             'XS::APItest' => '0.39',
7016             },
7017             removed => {
7018             }
7019             },
7020             5.017 => {
7021             delta_from => 5.016,
7022             changed => {
7023             'B' => '1.35',
7024             'B::Concise' => '0.90',
7025             'ExtUtils::ParseXS' => '3.17',
7026             'ExtUtils::ParseXS::Utilities'=> '3.17',
7027             'File::DosGlob' => '1.07',
7028             'File::Find' => '1.21',
7029             'File::stat' => '1.06',
7030             'Hash::Util' => '0.12',
7031             'IO::Socket' => '1.34',
7032             'Module::CoreList' => '2.67',
7033             'Pod::Functions' => '1.06',
7034             'Storable' => '2.35',
7035             'XS::APItest' => '0.39',
7036             'diagnostics' => '1.29',
7037             'feature' => '1.28',
7038             'overload' => '1.19',
7039             'utf8' => '1.10',
7040             },
7041             removed => {
7042             'Version::Requirements' => 1,
7043             }
7044             },
7045             5.017001 => {
7046             delta_from => 5.017,
7047             changed => {
7048             'App::Prove' => '3.25',
7049             'App::Prove::State' => '3.25',
7050             'App::Prove::State::Result'=> '3.25',
7051             'App::Prove::State::Result::Test'=> '3.25',
7052             'Archive::Extract' => '0.60',
7053             'Archive::Tar' => '1.88',
7054             'Archive::Tar::Constant'=> '1.88',
7055             'Archive::Tar::File' => '1.88',
7056             'B' => '1.36',
7057             'B::Deparse' => '1.15',
7058             'CPAN::Meta' => '2.120921',
7059             'CPAN::Meta::Converter' => '2.120921',
7060             'CPAN::Meta::Feature' => '2.120921',
7061             'CPAN::Meta::History' => '2.120921',
7062             'CPAN::Meta::Prereqs' => '2.120921',
7063             'CPAN::Meta::Requirements'=> '2.122',
7064             'CPAN::Meta::Spec' => '2.120921',
7065             'CPAN::Meta::Validator' => '2.120921',
7066             'CPAN::Meta::YAML' => '0.008',
7067             'CPANPLUS' => '0.9130',
7068             'CPANPLUS::Config::HomeEnv'=> '0.04',
7069             'CPANPLUS::Internals' => '0.9130',
7070             'CPANPLUS::Shell::Default'=> '0.9130',
7071             'Class::Struct' => '0.64',
7072             'Compress::Raw::Bzip2' => '2.052',
7073             'Compress::Raw::Zlib' => '2.054',
7074             'Compress::Zlib' => '2.052',
7075             'Digest::MD5' => '2.52',
7076             'DynaLoader' => '1.15',
7077             'ExtUtils::CBuilder' => '0.280208',
7078             'ExtUtils::CBuilder::Base'=> '0.280208',
7079             'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
7080             'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
7081             'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
7082             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
7083             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
7084             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
7085             'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
7086             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
7087             'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
7088             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
7089             'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
7090             'Fatal' => '2.11',
7091             'File::DosGlob' => '1.08',
7092             'File::Fetch' => '0.34',
7093             'File::Spec::Unix' => '3.39_03',
7094             'Filter::Util::Call' => '1.45',
7095             'HTTP::Tiny' => '0.022',
7096             'IO' => '1.25_07',
7097             'IO::Compress::Adapter::Bzip2'=> '2.052',
7098             'IO::Compress::Adapter::Deflate'=> '2.052',
7099             'IO::Compress::Adapter::Identity'=> '2.052',
7100             'IO::Compress::Base' => '2.052',
7101             'IO::Compress::Base::Common'=> '2.052',
7102             'IO::Compress::Bzip2' => '2.052',
7103             'IO::Compress::Deflate' => '2.052',
7104             'IO::Compress::Gzip' => '2.052',
7105             'IO::Compress::Gzip::Constants'=> '2.052',
7106             'IO::Compress::RawDeflate'=> '2.052',
7107             'IO::Compress::Zip' => '2.052',
7108             'IO::Compress::Zip::Constants'=> '2.052',
7109             'IO::Compress::Zlib::Constants'=> '2.052',
7110             'IO::Compress::Zlib::Extra'=> '2.052',
7111             'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
7112             'IO::Uncompress::Adapter::Identity'=> '2.052',
7113             'IO::Uncompress::Adapter::Inflate'=> '2.052',
7114             'IO::Uncompress::AnyInflate'=> '2.052',
7115             'IO::Uncompress::AnyUncompress'=> '2.052',
7116             'IO::Uncompress::Base' => '2.052',
7117             'IO::Uncompress::Bunzip2'=> '2.052',
7118             'IO::Uncompress::Gunzip'=> '2.052',
7119             'IO::Uncompress::Inflate'=> '2.052',
7120             'IO::Uncompress::RawInflate'=> '2.052',
7121             'IO::Uncompress::Unzip' => '2.052',
7122             'IPC::Cmd' => '0.78',
7123             'List::Util' => '1.25',
7124             'List::Util::XS' => '1.25',
7125             'Locale::Codes' => '3.22',
7126             'Locale::Codes::Constants'=> '3.22',
7127             'Locale::Codes::Country'=> '3.22',
7128             'Locale::Codes::Country_Codes'=> '3.22',
7129             'Locale::Codes::Country_Retired'=> '3.22',
7130             'Locale::Codes::Currency'=> '3.22',
7131             'Locale::Codes::Currency_Codes'=> '3.22',
7132             'Locale::Codes::Currency_Retired'=> '3.22',
7133             'Locale::Codes::LangExt'=> '3.22',
7134             'Locale::Codes::LangExt_Codes'=> '3.22',
7135             'Locale::Codes::LangExt_Retired'=> '3.22',
7136             'Locale::Codes::LangFam'=> '3.22',
7137             'Locale::Codes::LangFam_Codes'=> '3.22',
7138             'Locale::Codes::LangFam_Retired'=> '3.22',
7139             'Locale::Codes::LangVar'=> '3.22',
7140             'Locale::Codes::LangVar_Codes'=> '3.22',
7141             'Locale::Codes::LangVar_Retired'=> '3.22',
7142             'Locale::Codes::Language'=> '3.22',
7143             'Locale::Codes::Language_Codes'=> '3.22',
7144             'Locale::Codes::Language_Retired'=> '3.22',
7145             'Locale::Codes::Script' => '3.22',
7146             'Locale::Codes::Script_Codes'=> '3.22',
7147             'Locale::Codes::Script_Retired'=> '3.22',
7148             'Locale::Country' => '3.22',
7149             'Locale::Currency' => '3.22',
7150             'Locale::Language' => '3.22',
7151             'Locale::Script' => '3.22',
7152             'Memoize' => '1.03',
7153             'Memoize::AnyDBM_File' => '1.03',
7154             'Memoize::Expire' => '1.03',
7155             'Memoize::ExpireFile' => '1.03',
7156             'Memoize::ExpireTest' => '1.03',
7157             'Memoize::NDBM_File' => '1.03',
7158             'Memoize::SDBM_File' => '1.03',
7159             'Memoize::Storable' => '1.03',
7160             'Module::Build' => '0.40',
7161             'Module::Build::Base' => '0.40',
7162             'Module::Build::Compat' => '0.40',
7163             'Module::Build::Config' => '0.40',
7164             'Module::Build::Cookbook'=> '0.40',
7165             'Module::Build::Dumper' => '0.40',
7166             'Module::Build::ModuleInfo'=> '0.40',
7167             'Module::Build::Notes' => '0.40',
7168             'Module::Build::PPMMaker'=> '0.40',
7169             'Module::Build::Platform::Amiga'=> '0.40',
7170             'Module::Build::Platform::Default'=> '0.40',
7171             'Module::Build::Platform::EBCDIC'=> '0.40',
7172             'Module::Build::Platform::MPEiX'=> '0.40',
7173             'Module::Build::Platform::MacOS'=> '0.40',
7174             'Module::Build::Platform::RiscOS'=> '0.40',
7175             'Module::Build::Platform::Unix'=> '0.40',
7176             'Module::Build::Platform::VMS'=> '0.40',
7177             'Module::Build::Platform::VOS'=> '0.40',
7178             'Module::Build::Platform::Windows'=> '0.40',
7179             'Module::Build::Platform::aix'=> '0.40',
7180             'Module::Build::Platform::cygwin'=> '0.40',
7181             'Module::Build::Platform::darwin'=> '0.40',
7182             'Module::Build::Platform::os2'=> '0.40',
7183             'Module::Build::PodParser'=> '0.40',
7184             'Module::CoreList' => '2.68',
7185             'Module::Load::Conditional'=> '0.50',
7186             'Object::Accessor' => '0.44',
7187             'POSIX' => '1.31',
7188             'Params::Check' => '0.36',
7189             'Parse::CPAN::Meta' => '1.4404',
7190             'PerlIO::mmap' => '0.011',
7191             'PerlIO::via::QuotedPrint'=> '0.07',
7192             'Pod::Html' => '1.16',
7193             'Pod::Man' => '2.26',
7194             'Pod::Text' => '3.16',
7195             'Safe' => '2.33_01',
7196             'Scalar::Util' => '1.25',
7197             'Search::Dict' => '1.07',
7198             'Storable' => '2.36',
7199             'TAP::Base' => '3.25',
7200             'TAP::Formatter::Base' => '3.25',
7201             'TAP::Formatter::Color' => '3.25',
7202             'TAP::Formatter::Console'=> '3.25',
7203             'TAP::Formatter::Console::ParallelSession'=> '3.25',
7204             'TAP::Formatter::Console::Session'=> '3.25',
7205             'TAP::Formatter::File' => '3.25',
7206             'TAP::Formatter::File::Session'=> '3.25',
7207             'TAP::Formatter::Session'=> '3.25',
7208             'TAP::Harness' => '3.25',
7209             'TAP::Object' => '3.25',
7210             'TAP::Parser' => '3.25',
7211             'TAP::Parser::Aggregator'=> '3.25',
7212             'TAP::Parser::Grammar' => '3.25',
7213             'TAP::Parser::Iterator' => '3.25',
7214             'TAP::Parser::Iterator::Array'=> '3.25',
7215             'TAP::Parser::Iterator::Process'=> '3.25',
7216             'TAP::Parser::Iterator::Stream'=> '3.25',
7217             'TAP::Parser::IteratorFactory'=> '3.25',
7218             'TAP::Parser::Multiplexer'=> '3.25',
7219             'TAP::Parser::Result' => '3.25',
7220             'TAP::Parser::Result::Bailout'=> '3.25',
7221             'TAP::Parser::Result::Comment'=> '3.25',
7222             'TAP::Parser::Result::Plan'=> '3.25',
7223             'TAP::Parser::Result::Pragma'=> '3.25',
7224             'TAP::Parser::Result::Test'=> '3.25',
7225             'TAP::Parser::Result::Unknown'=> '3.25',
7226             'TAP::Parser::Result::Version'=> '3.25',
7227             'TAP::Parser::Result::YAML'=> '3.25',
7228             'TAP::Parser::ResultFactory'=> '3.25',
7229             'TAP::Parser::Scheduler'=> '3.25',
7230             'TAP::Parser::Scheduler::Job'=> '3.25',
7231             'TAP::Parser::Scheduler::Spinner'=> '3.25',
7232             'TAP::Parser::Source' => '3.25',
7233             'TAP::Parser::SourceHandler'=> '3.25',
7234             'TAP::Parser::SourceHandler::Executable'=> '3.25',
7235             'TAP::Parser::SourceHandler::File'=> '3.25',
7236             'TAP::Parser::SourceHandler::Handle'=> '3.25',
7237             'TAP::Parser::SourceHandler::Perl'=> '3.25',
7238             'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7239             'TAP::Parser::Utils' => '3.25',
7240             'TAP::Parser::YAMLish::Reader'=> '3.25',
7241             'TAP::Parser::YAMLish::Writer'=> '3.25',
7242             'Term::ANSIColor' => '3.02',
7243             'Test::Harness' => '3.25',
7244             'Unicode' => '6.2.0',
7245             'Unicode::UCD' => '0.44',
7246             'XS::APItest' => '0.40',
7247             '_charnames' => '1.32',
7248             'attributes' => '0.2',
7249             'autodie' => '2.11',
7250             'autodie::exception' => '2.11',
7251             'autodie::exception::system'=> '2.11',
7252             'autodie::hints' => '2.11',
7253             'bigint' => '0.30',
7254             'charnames' => '1.32',
7255             'feature' => '1.29',
7256             'inc::latest' => '0.40',
7257             'perlfaq' => '5.0150040',
7258             're' => '0.20',
7259             },
7260             removed => {
7261             'List::Util::PP' => 1,
7262             'Scalar::Util::PP' => 1,
7263             }
7264             },
7265             5.017002 => {
7266             delta_from => 5.017001,
7267             changed => {
7268             'App::Prove' => '3.25_01',
7269             'App::Prove::State' => '3.25_01',
7270             'App::Prove::State::Result'=> '3.25_01',
7271             'App::Prove::State::Result::Test'=> '3.25_01',
7272             'B::Concise' => '0.91',
7273             'Compress::Raw::Bzip2' => '2.05201',
7274             'Compress::Raw::Zlib' => '2.05401',
7275             'Exporter' => '5.67',
7276             'Exporter::Heavy' => '5.67',
7277             'Fatal' => '2.12',
7278             'File::Fetch' => '0.36',
7279             'File::stat' => '1.07',
7280             'IO' => '1.25_08',
7281             'IO::Socket' => '1.35',
7282             'Module::CoreList' => '2.69',
7283             'PerlIO::scalar' => '0.15',
7284             'Socket' => '2.002',
7285             'Storable' => '2.37',
7286             'TAP::Base' => '3.25_01',
7287             'TAP::Formatter::Base' => '3.25_01',
7288             'TAP::Formatter::Color' => '3.25_01',
7289             'TAP::Formatter::Console'=> '3.25_01',
7290             'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7291             'TAP::Formatter::Console::Session'=> '3.25_01',
7292             'TAP::Formatter::File' => '3.25_01',
7293             'TAP::Formatter::File::Session'=> '3.25_01',
7294             'TAP::Formatter::Session'=> '3.25_01',
7295             'TAP::Harness' => '3.25_01',
7296             'TAP::Object' => '3.25_01',
7297             'TAP::Parser' => '3.25_01',
7298             'TAP::Parser::Aggregator'=> '3.25_01',
7299             'TAP::Parser::Grammar' => '3.25_01',
7300             'TAP::Parser::Iterator' => '3.25_01',
7301             'TAP::Parser::Iterator::Array'=> '3.25_01',
7302             'TAP::Parser::Iterator::Process'=> '3.25_01',
7303             'TAP::Parser::Iterator::Stream'=> '3.25_01',
7304             'TAP::Parser::IteratorFactory'=> '3.25_01',
7305             'TAP::Parser::Multiplexer'=> '3.25_01',
7306             'TAP::Parser::Result' => '3.25_01',
7307             'TAP::Parser::Result::Bailout'=> '3.25_01',
7308             'TAP::Parser::Result::Comment'=> '3.25_01',
7309             'TAP::Parser::Result::Plan'=> '3.25_01',
7310             'TAP::Parser::Result::Pragma'=> '3.25_01',
7311             'TAP::Parser::Result::Test'=> '3.25_01',
7312             'TAP::Parser::Result::Unknown'=> '3.25_01',
7313             'TAP::Parser::Result::Version'=> '3.25_01',
7314             'TAP::Parser::Result::YAML'=> '3.25_01',
7315             'TAP::Parser::ResultFactory'=> '3.25_01',
7316             'TAP::Parser::Scheduler'=> '3.25_01',
7317             'TAP::Parser::Scheduler::Job'=> '3.25_01',
7318             'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7319             'TAP::Parser::Source' => '3.25_01',
7320             'TAP::Parser::SourceHandler'=> '3.25_01',
7321             'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7322             'TAP::Parser::SourceHandler::File'=> '3.25_01',
7323             'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7324             'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7325             'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7326             'TAP::Parser::Utils' => '3.25_01',
7327             'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7328             'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7329             'Test::Harness' => '3.25_01',
7330             'Tie::StdHandle' => '4.3',
7331             'XS::APItest' => '0.41',
7332             'autodie' => '2.12',
7333             'autodie::exception' => '2.12',
7334             'autodie::exception::system'=> '2.12',
7335             'autodie::hints' => '2.12',
7336             'diagnostics' => '1.30',
7337             'overload' => '1.20',
7338             're' => '0.21',
7339             'vars' => '1.03',
7340             },
7341             removed => {
7342             }
7343             },
7344             5.017003 => {
7345             delta_from => 5.017002,
7346             changed => {
7347             'B' => '1.37',
7348             'B::Concise' => '0.92',
7349             'B::Debug' => '1.18',
7350             'B::Deparse' => '1.16',
7351             'CGI' => '3.60',
7352             'Compress::Raw::Bzip2' => '2.055',
7353             'Compress::Raw::Zlib' => '2.056',
7354             'Compress::Zlib' => '2.055',
7355             'Data::Dumper' => '2.135_07',
7356             'Devel::Peek' => '1.09',
7357             'Encode' => '2.47',
7358             'Encode::Alias' => '2.16',
7359             'Encode::GSM0338' => '2.02',
7360             'Encode::Unicode::UTF7' => '2.06',
7361             'IO::Compress::Adapter::Bzip2'=> '2.055',
7362             'IO::Compress::Adapter::Deflate'=> '2.055',
7363             'IO::Compress::Adapter::Identity'=> '2.055',
7364             'IO::Compress::Base' => '2.055',
7365             'IO::Compress::Base::Common'=> '2.055',
7366             'IO::Compress::Bzip2' => '2.055',
7367             'IO::Compress::Deflate' => '2.055',
7368             'IO::Compress::Gzip' => '2.055',
7369             'IO::Compress::Gzip::Constants'=> '2.055',
7370             'IO::Compress::RawDeflate'=> '2.055',
7371             'IO::Compress::Zip' => '2.055',
7372             'IO::Compress::Zip::Constants'=> '2.055',
7373             'IO::Compress::Zlib::Constants'=> '2.055',
7374             'IO::Compress::Zlib::Extra'=> '2.055',
7375             'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7376             'IO::Uncompress::Adapter::Identity'=> '2.055',
7377             'IO::Uncompress::Adapter::Inflate'=> '2.055',
7378             'IO::Uncompress::AnyInflate'=> '2.055',
7379             'IO::Uncompress::AnyUncompress'=> '2.055',
7380             'IO::Uncompress::Base' => '2.055',
7381             'IO::Uncompress::Bunzip2'=> '2.055',
7382             'IO::Uncompress::Gunzip'=> '2.055',
7383             'IO::Uncompress::Inflate'=> '2.055',
7384             'IO::Uncompress::RawInflate'=> '2.055',
7385             'IO::Uncompress::Unzip' => '2.055',
7386             'Module::Build' => '0.4003',
7387             'Module::Build::Base' => '0.4003',
7388             'Module::Build::Compat' => '0.4003',
7389             'Module::Build::Config' => '0.4003',
7390             'Module::Build::Cookbook'=> '0.4003',
7391             'Module::Build::Dumper' => '0.4003',
7392             'Module::Build::ModuleInfo'=> '0.4003',
7393             'Module::Build::Notes' => '0.4003',
7394             'Module::Build::PPMMaker'=> '0.4003',
7395             'Module::Build::Platform::Amiga'=> '0.4003',
7396             'Module::Build::Platform::Default'=> '0.4003',
7397             'Module::Build::Platform::EBCDIC'=> '0.4003',
7398             'Module::Build::Platform::MPEiX'=> '0.4003',
7399             'Module::Build::Platform::MacOS'=> '0.4003',
7400             'Module::Build::Platform::RiscOS'=> '0.4003',
7401             'Module::Build::Platform::Unix'=> '0.4003',
7402             'Module::Build::Platform::VMS'=> '0.4003',
7403             'Module::Build::Platform::VOS'=> '0.4003',
7404             'Module::Build::Platform::Windows'=> '0.4003',
7405             'Module::Build::Platform::aix'=> '0.4003',
7406             'Module::Build::Platform::cygwin'=> '0.4003',
7407             'Module::Build::Platform::darwin'=> '0.4003',
7408             'Module::Build::Platform::os2'=> '0.4003',
7409             'Module::Build::PodParser'=> '0.4003',
7410             'Module::CoreList' => '2.71',
7411             'Module::CoreList::TieHashDelta'=> '2.71',
7412             'Module::Load::Conditional'=> '0.54',
7413             'Module::Metadata' => '1.000011',
7414             'Module::Pluggable' => '4.3',
7415             'Module::Pluggable::Object'=> '4.3',
7416             'Pod::Simple' => '3.23',
7417             'Pod::Simple::BlackBox' => '3.23',
7418             'Pod::Simple::Checker' => '3.23',
7419             'Pod::Simple::Debug' => '3.23',
7420             'Pod::Simple::DumpAsText'=> '3.23',
7421             'Pod::Simple::DumpAsXML'=> '3.23',
7422             'Pod::Simple::HTML' => '3.23',
7423             'Pod::Simple::HTMLBatch'=> '3.23',
7424             'Pod::Simple::LinkSection'=> '3.23',
7425             'Pod::Simple::Methody' => '3.23',
7426             'Pod::Simple::Progress' => '3.23',
7427             'Pod::Simple::PullParser'=> '3.23',
7428             'Pod::Simple::PullParserEndToken'=> '3.23',
7429             'Pod::Simple::PullParserStartToken'=> '3.23',
7430             'Pod::Simple::PullParserTextToken'=> '3.23',
7431             'Pod::Simple::PullParserToken'=> '3.23',
7432             'Pod::Simple::RTF' => '3.23',
7433             'Pod::Simple::Search' => '3.23',
7434             'Pod::Simple::SimpleTree'=> '3.23',
7435             'Pod::Simple::Text' => '3.23',
7436             'Pod::Simple::TextContent'=> '3.23',
7437             'Pod::Simple::TiedOutFH'=> '3.23',
7438             'Pod::Simple::Transcode'=> '3.23',
7439             'Pod::Simple::TranscodeDumb'=> '3.23',
7440             'Pod::Simple::TranscodeSmart'=> '3.23',
7441             'Pod::Simple::XHTML' => '3.23',
7442             'Pod::Simple::XMLOutStream'=> '3.23',
7443             'Socket' => '2.004',
7444             'Storable' => '2.38',
7445             'Sys::Syslog' => '0.31',
7446             'Term::ReadLine' => '1.10',
7447             'Text::Tabs' => '2012.0818',
7448             'Text::Wrap' => '2012.0818',
7449             'Time::Local' => '1.2300',
7450             'Unicode::UCD' => '0.45',
7451             'Win32' => '0.45',
7452             'Win32CORE' => '0.03',
7453             'XS::APItest' => '0.42',
7454             'inc::latest' => '0.4003',
7455             'perlfaq' => '5.0150041',
7456             're' => '0.22',
7457             },
7458             removed => {
7459             }
7460             },
7461             5.017004 => {
7462             delta_from => 5.017003,
7463             changed => {
7464             'Archive::Tar' => '1.90',
7465             'Archive::Tar::Constant'=> '1.90',
7466             'Archive::Tar::File' => '1.90',
7467             'B' => '1.38',
7468             'B::Concise' => '0.93',
7469             'B::Deparse' => '1.17',
7470             'B::Xref' => '1.04',
7471             'CPANPLUS' => '0.9131',
7472             'CPANPLUS::Internals' => '0.9131',
7473             'CPANPLUS::Shell::Default'=> '0.9131',
7474             'DB_File' => '1.827',
7475             'Devel::Peek' => '1.10',
7476             'DynaLoader' => '1.16',
7477             'Errno' => '1.16',
7478             'ExtUtils::ParseXS' => '3.18',
7479             'ExtUtils::ParseXS::Constants'=> '3.18',
7480             'ExtUtils::ParseXS::CountLines'=> '3.18',
7481             'ExtUtils::ParseXS::Utilities'=> '3.18',
7482             'File::Copy' => '2.24',
7483             'File::Find' => '1.22',
7484             'IPC::Open3' => '1.13',
7485             'Locale::Codes' => '3.23',
7486             'Locale::Codes::Constants'=> '3.23',
7487             'Locale::Codes::Country'=> '3.23',
7488             'Locale::Codes::Country_Codes'=> '3.23',
7489             'Locale::Codes::Country_Retired'=> '3.23',
7490             'Locale::Codes::Currency'=> '3.23',
7491             'Locale::Codes::Currency_Codes'=> '3.23',
7492             'Locale::Codes::Currency_Retired'=> '3.23',
7493             'Locale::Codes::LangExt'=> '3.23',
7494             'Locale::Codes::LangExt_Codes'=> '3.23',
7495             'Locale::Codes::LangExt_Retired'=> '3.23',
7496             'Locale::Codes::LangFam'=> '3.23',
7497             'Locale::Codes::LangFam_Codes'=> '3.23',
7498             'Locale::Codes::LangFam_Retired'=> '3.23',
7499             'Locale::Codes::LangVar'=> '3.23',
7500             'Locale::Codes::LangVar_Codes'=> '3.23',
7501             'Locale::Codes::LangVar_Retired'=> '3.23',
7502             'Locale::Codes::Language'=> '3.23',
7503             'Locale::Codes::Language_Codes'=> '3.23',
7504             'Locale::Codes::Language_Retired'=> '3.23',
7505             'Locale::Codes::Script' => '3.23',
7506             'Locale::Codes::Script_Codes'=> '3.23',
7507             'Locale::Codes::Script_Retired'=> '3.23',
7508             'Locale::Country' => '3.23',
7509             'Locale::Currency' => '3.23',
7510             'Locale::Language' => '3.23',
7511             'Locale::Script' => '3.23',
7512             'Math::BigFloat::Trace' => '0.30',
7513             'Math::BigInt::Trace' => '0.30',
7514             'Module::CoreList' => '2.73',
7515             'Module::CoreList::TieHashDelta'=> '2.73',
7516             'Opcode' => '1.24',
7517             'Socket' => '2.006',
7518             'Storable' => '2.39',
7519             'Sys::Syslog' => '0.32',
7520             'Unicode::UCD' => '0.46',
7521             'XS::APItest' => '0.43',
7522             'bignum' => '0.30',
7523             'bigrat' => '0.30',
7524             'constant' => '1.24',
7525             'feature' => '1.30',
7526             'threads::shared' => '1.41',
7527             'version' => '0.9901',
7528             'warnings' => '1.14',
7529             },
7530             removed => {
7531             }
7532             },
7533             5.017005 => {
7534             delta_from => 5.017004,
7535             changed => {
7536             'AutoLoader' => '5.73',
7537             'B' => '1.39',
7538             'B::Deparse' => '1.18',
7539             'CPANPLUS' => '0.9133',
7540             'CPANPLUS::Internals' => '0.9133',
7541             'CPANPLUS::Shell::Default'=> '0.9133',
7542             'Carp' => '1.27',
7543             'Carp::Heavy' => '1.27',
7544             'Data::Dumper' => '2.136',
7545             'Digest::SHA' => '5.72',
7546             'ExtUtils::CBuilder' => '0.280209',
7547             'ExtUtils::CBuilder::Base'=> '0.280209',
7548             'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7549             'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7550             'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7551             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7552             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7553             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7554             'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7555             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7556             'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7557             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7558             'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7559             'File::Copy' => '2.25',
7560             'File::Glob' => '1.18',
7561             'HTTP::Tiny' => '0.024',
7562             'Module::CoreList' => '2.75',
7563             'Module::CoreList::TieHashDelta'=> '2.75',
7564             'PerlIO::encoding' => '0.16',
7565             'Unicode::Collate' => '0.90',
7566             'Unicode::Collate::Locale'=> '0.90',
7567             'Unicode::Normalize' => '1.15',
7568             'Win32CORE' => '0.04',
7569             'XS::APItest' => '0.44',
7570             'attributes' => '0.21',
7571             'bigint' => '0.31',
7572             'bignum' => '0.31',
7573             'bigrat' => '0.31',
7574             'feature' => '1.31',
7575             'threads::shared' => '1.42',
7576             'warnings' => '1.15',
7577             },
7578             removed => {
7579             }
7580             },
7581             5.017006 => {
7582             delta_from => 5.017005,
7583             changed => {
7584             'B' => '1.40',
7585             'B::Concise' => '0.94',
7586             'B::Deparse' => '1.19',
7587             'B::Xref' => '1.05',
7588             'CGI' => '3.63',
7589             'CGI::Util' => '3.62',
7590             'CPAN' => '1.99_51',
7591             'CPANPLUS::Dist::Build' => '0.64',
7592             'CPANPLUS::Dist::Build::Constants'=> '0.64',
7593             'Carp' => '1.28',
7594             'Carp::Heavy' => '1.28',
7595             'Compress::Raw::Bzip2' => '2.058',
7596             'Compress::Raw::Zlib' => '2.058',
7597             'Compress::Zlib' => '2.058',
7598             'Data::Dumper' => '2.137',
7599             'Digest::SHA' => '5.73',
7600             'DynaLoader' => '1.17',
7601             'Env' => '1.04',
7602             'Errno' => '1.17',
7603             'ExtUtils::Manifest' => '1.62',
7604             'ExtUtils::Typemaps' => '3.18',
7605             'ExtUtils::Typemaps::Cmd'=> '3.18',
7606             'ExtUtils::Typemaps::InputMap'=> '3.18',
7607             'ExtUtils::Typemaps::OutputMap'=> '3.18',
7608             'ExtUtils::Typemaps::Type'=> '3.18',
7609             'Fatal' => '2.13',
7610             'File::Find' => '1.23',
7611             'Hash::Util' => '0.13',
7612             'IO::Compress::Adapter::Bzip2'=> '2.058',
7613             'IO::Compress::Adapter::Deflate'=> '2.058',
7614             'IO::Compress::Adapter::Identity'=> '2.058',
7615             'IO::Compress::Base' => '2.058',
7616             'IO::Compress::Base::Common'=> '2.058',
7617             'IO::Compress::Bzip2' => '2.058',
7618             'IO::Compress::Deflate' => '2.058',
7619             'IO::Compress::Gzip' => '2.058',
7620             'IO::Compress::Gzip::Constants'=> '2.058',
7621             'IO::Compress::RawDeflate'=> '2.058',
7622             'IO::Compress::Zip' => '2.058',
7623             'IO::Compress::Zip::Constants'=> '2.058',
7624             'IO::Compress::Zlib::Constants'=> '2.058',
7625             'IO::Compress::Zlib::Extra'=> '2.058',
7626             'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7627             'IO::Uncompress::Adapter::Identity'=> '2.058',
7628             'IO::Uncompress::Adapter::Inflate'=> '2.058',
7629             'IO::Uncompress::AnyInflate'=> '2.058',
7630             'IO::Uncompress::AnyUncompress'=> '2.058',
7631             'IO::Uncompress::Base' => '2.058',
7632             'IO::Uncompress::Bunzip2'=> '2.058',
7633             'IO::Uncompress::Gunzip'=> '2.058',
7634             'IO::Uncompress::Inflate'=> '2.058',
7635             'IO::Uncompress::RawInflate'=> '2.058',
7636             'IO::Uncompress::Unzip' => '2.058',
7637             'Module::CoreList' => '2.78',
7638             'Module::CoreList::TieHashDelta'=> '2.77',
7639             'Module::Pluggable' => '4.5',
7640             'Module::Pluggable::Object'=> '4.5',
7641             'Opcode' => '1.25',
7642             'Sys::Hostname' => '1.17',
7643             'Term::UI' => '0.32',
7644             'Thread::Queue' => '3.01',
7645             'Tie::Hash::NamedCapture'=> '0.09',
7646             'Unicode::Collate' => '0.93',
7647             'Unicode::Collate::CJK::Korean'=> '0.93',
7648             'Unicode::Collate::Locale'=> '0.93',
7649             'Unicode::Normalize' => '1.16',
7650             'Unicode::UCD' => '0.47',
7651             'XS::APItest' => '0.46',
7652             '_charnames' => '1.33',
7653             'autodie' => '2.13',
7654             'autodie::exception' => '2.13',
7655             'autodie::exception::system'=> '2.13',
7656             'autodie::hints' => '2.13',
7657             'charnames' => '1.33',
7658             're' => '0.23',
7659             },
7660             removed => {
7661             }
7662             },
7663             5.017007 => {
7664             delta_from => 5.017006,
7665             changed => {
7666             'B' => '1.41',
7667             'CPANPLUS::Dist::Build' => '0.68',
7668             'CPANPLUS::Dist::Build::Constants'=> '0.68',
7669             'Compress::Raw::Bzip2' => '2.059',
7670             'Compress::Raw::Zlib' => '2.059',
7671             'Compress::Zlib' => '2.059',
7672             'Cwd' => '3.39_03',
7673             'Data::Dumper' => '2.139',
7674             'Devel::Peek' => '1.11',
7675             'Digest::SHA' => '5.80',
7676             'DynaLoader' => '1.18',
7677             'English' => '1.06',
7678             'Errno' => '1.18',
7679             'ExtUtils::Command::MM' => '6.64',
7680             'ExtUtils::Liblist' => '6.64',
7681             'ExtUtils::Liblist::Kid'=> '6.64',
7682             'ExtUtils::MM' => '6.64',
7683             'ExtUtils::MM_AIX' => '6.64',
7684             'ExtUtils::MM_Any' => '6.64',
7685             'ExtUtils::MM_BeOS' => '6.64',
7686             'ExtUtils::MM_Cygwin' => '6.64',
7687             'ExtUtils::MM_DOS' => '6.64',
7688             'ExtUtils::MM_Darwin' => '6.64',
7689             'ExtUtils::MM_MacOS' => '6.64',
7690             'ExtUtils::MM_NW5' => '6.64',
7691             'ExtUtils::MM_OS2' => '6.64',
7692             'ExtUtils::MM_QNX' => '6.64',
7693             'ExtUtils::MM_UWIN' => '6.64',
7694             'ExtUtils::MM_Unix' => '6.64',
7695             'ExtUtils::MM_VMS' => '6.64',
7696             'ExtUtils::MM_VOS' => '6.64',
7697             'ExtUtils::MM_Win32' => '6.64',
7698             'ExtUtils::MM_Win95' => '6.64',
7699             'ExtUtils::MY' => '6.64',
7700             'ExtUtils::MakeMaker' => '6.64',
7701             'ExtUtils::MakeMaker::Config'=> '6.64',
7702             'ExtUtils::Mkbootstrap' => '6.64',
7703             'ExtUtils::Mksymlists' => '6.64',
7704             'ExtUtils::testlib' => '6.64',
7705             'File::DosGlob' => '1.09',
7706             'File::Glob' => '1.19',
7707             'GDBM_File' => '1.15',
7708             'IO::Compress::Adapter::Bzip2'=> '2.059',
7709             'IO::Compress::Adapter::Deflate'=> '2.059',
7710             'IO::Compress::Adapter::Identity'=> '2.059',
7711             'IO::Compress::Base' => '2.059',
7712             'IO::Compress::Base::Common'=> '2.059',
7713             'IO::Compress::Bzip2' => '2.059',
7714             'IO::Compress::Deflate' => '2.059',
7715             'IO::Compress::Gzip' => '2.059',
7716             'IO::Compress::Gzip::Constants'=> '2.059',
7717             'IO::Compress::RawDeflate'=> '2.059',
7718             'IO::Compress::Zip' => '2.059',
7719             'IO::Compress::Zip::Constants'=> '2.059',
7720             'IO::Compress::Zlib::Constants'=> '2.059',
7721             'IO::Compress::Zlib::Extra'=> '2.059',
7722             'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7723             'IO::Uncompress::Adapter::Identity'=> '2.059',
7724             'IO::Uncompress::Adapter::Inflate'=> '2.059',
7725             'IO::Uncompress::AnyInflate'=> '2.059',
7726             'IO::Uncompress::AnyUncompress'=> '2.059',
7727             'IO::Uncompress::Base' => '2.059',
7728             'IO::Uncompress::Bunzip2'=> '2.059',
7729             'IO::Uncompress::Gunzip'=> '2.059',
7730             'IO::Uncompress::Inflate'=> '2.059',
7731             'IO::Uncompress::RawInflate'=> '2.059',
7732             'IO::Uncompress::Unzip' => '2.059',
7733             'List::Util' => '1.26',
7734             'List::Util::XS' => '1.26',
7735             'Locale::Codes' => '3.24',
7736             'Locale::Codes::Constants'=> '3.24',
7737             'Locale::Codes::Country'=> '3.24',
7738             'Locale::Codes::Country_Codes'=> '3.24',
7739             'Locale::Codes::Country_Retired'=> '3.24',
7740             'Locale::Codes::Currency'=> '3.24',
7741             'Locale::Codes::Currency_Codes'=> '3.24',
7742             'Locale::Codes::Currency_Retired'=> '3.24',
7743             'Locale::Codes::LangExt'=> '3.24',
7744             'Locale::Codes::LangExt_Codes'=> '3.24',
7745             'Locale::Codes::LangExt_Retired'=> '3.24',
7746             'Locale::Codes::LangFam'=> '3.24',
7747             'Locale::Codes::LangFam_Codes'=> '3.24',
7748             'Locale::Codes::LangFam_Retired'=> '3.24',
7749             'Locale::Codes::LangVar'=> '3.24',
7750             'Locale::Codes::LangVar_Codes'=> '3.24',
7751             'Locale::Codes::LangVar_Retired'=> '3.24',
7752             'Locale::Codes::Language'=> '3.24',
7753             'Locale::Codes::Language_Codes'=> '3.24',
7754             'Locale::Codes::Language_Retired'=> '3.24',
7755             'Locale::Codes::Script' => '3.24',
7756             'Locale::Codes::Script_Codes'=> '3.24',
7757             'Locale::Codes::Script_Retired'=> '3.24',
7758             'Locale::Country' => '3.24',
7759             'Locale::Currency' => '3.24',
7760             'Locale::Language' => '3.24',
7761             'Locale::Maketext' => '1.23',
7762             'Locale::Script' => '3.24',
7763             'Module::CoreList' => '2.79',
7764             'Module::CoreList::TieHashDelta'=> '2.79',
7765             'POSIX' => '1.32',
7766             'Scalar::Util' => '1.26',
7767             'Socket' => '2.006_001',
7768             'Storable' => '2.40',
7769             'Term::ReadLine' => '1.11',
7770             'Unicode::Collate' => '0.96',
7771             'Unicode::Collate::CJK::Stroke'=> '0.94',
7772             'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7773             'Unicode::Collate::Locale'=> '0.96',
7774             'XS::APItest' => '0.48',
7775             'XS::Typemap' => '0.09',
7776             '_charnames' => '1.34',
7777             'charnames' => '1.34',
7778             'feature' => '1.32',
7779             'mro' => '1.10',
7780             'sigtrap' => '1.07',
7781             'sort' => '2.02',
7782             },
7783             removed => {
7784             }
7785             },
7786             5.017008 => {
7787             delta_from => 5.017007,
7788             changed => {
7789             'Archive::Extract' => '0.62',
7790             'B' => '1.42',
7791             'B::Concise' => '0.95',
7792             'Compress::Raw::Bzip2' => '2.060',
7793             'Compress::Raw::Zlib' => '2.060',
7794             'Compress::Zlib' => '2.060',
7795             'Cwd' => '3.40',
7796             'Data::Dumper' => '2.141',
7797             'Digest::SHA' => '5.81',
7798             'ExtUtils::Install' => '1.59',
7799             'File::Fetch' => '0.38',
7800             'File::Path' => '2.09',
7801             'File::Spec' => '3.40',
7802             'File::Spec::Cygwin' => '3.40',
7803             'File::Spec::Epoc' => '3.40',
7804             'File::Spec::Functions' => '3.40',
7805             'File::Spec::Mac' => '3.40',
7806             'File::Spec::OS2' => '3.40',
7807             'File::Spec::Unix' => '3.40',
7808             'File::Spec::VMS' => '3.40',
7809             'File::Spec::Win32' => '3.40',
7810             'HTTP::Tiny' => '0.025',
7811             'Hash::Util' => '0.14',
7812             'I18N::LangTags' => '0.39',
7813             'I18N::LangTags::List' => '0.39',
7814             'I18N::Langinfo' => '0.09',
7815             'IO' => '1.26',
7816             'IO::Compress::Adapter::Bzip2'=> '2.060',
7817             'IO::Compress::Adapter::Deflate'=> '2.060',
7818             'IO::Compress::Adapter::Identity'=> '2.060',
7819             'IO::Compress::Base' => '2.060',
7820             'IO::Compress::Base::Common'=> '2.060',
7821             'IO::Compress::Bzip2' => '2.060',
7822             'IO::Compress::Deflate' => '2.060',
7823             'IO::Compress::Gzip' => '2.060',
7824             'IO::Compress::Gzip::Constants'=> '2.060',
7825             'IO::Compress::RawDeflate'=> '2.060',
7826             'IO::Compress::Zip' => '2.060',
7827             'IO::Compress::Zip::Constants'=> '2.060',
7828             'IO::Compress::Zlib::Constants'=> '2.060',
7829             'IO::Compress::Zlib::Extra'=> '2.060',
7830             'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7831             'IO::Uncompress::Adapter::Identity'=> '2.060',
7832             'IO::Uncompress::Adapter::Inflate'=> '2.060',
7833             'IO::Uncompress::AnyInflate'=> '2.060',
7834             'IO::Uncompress::AnyUncompress'=> '2.060',
7835             'IO::Uncompress::Base' => '2.060',
7836             'IO::Uncompress::Bunzip2'=> '2.060',
7837             'IO::Uncompress::Gunzip'=> '2.060',
7838             'IO::Uncompress::Inflate'=> '2.060',
7839             'IO::Uncompress::RawInflate'=> '2.060',
7840             'IO::Uncompress::Unzip' => '2.060',
7841             'List::Util' => '1.27',
7842             'List::Util::XS' => '1.27',
7843             'Module::CoreList' => '2.80',
7844             'Module::CoreList::TieHashDelta'=> '2.80',
7845             'Pod::Html' => '1.17',
7846             'Pod::LaTeX' => '0.61',
7847             'Pod::Man' => '2.27',
7848             'Pod::Text' => '3.17',
7849             'Pod::Text::Color' => '2.07',
7850             'Pod::Text::Overstrike' => '2.05',
7851             'Pod::Text::Termcap' => '2.07',
7852             'Safe' => '2.34',
7853             'Scalar::Util' => '1.27',
7854             'Socket' => '2.009',
7855             'Term::ANSIColor' => '4.02',
7856             'Test' => '1.26',
7857             'Unicode::Collate' => '0.97',
7858             'XS::APItest' => '0.51',
7859             'XS::Typemap' => '0.10',
7860             '_charnames' => '1.35',
7861             'charnames' => '1.35',
7862             'constant' => '1.25',
7863             'diagnostics' => '1.31',
7864             'threads::shared' => '1.43',
7865             'warnings' => '1.16',
7866             },
7867             removed => {
7868             }
7869             },
7870             5.017009 => {
7871             delta_from => 5.017008,
7872             changed => {
7873             'App::Cpan' => '1.60_02',
7874             'App::Prove' => '3.26',
7875             'App::Prove::State' => '3.26',
7876             'App::Prove::State::Result'=> '3.26',
7877             'App::Prove::State::Result::Test'=> '3.26',
7878             'Archive::Extract' => '0.68',
7879             'Attribute::Handlers' => '0.94',
7880             'B::Lint' => '1.17',
7881             'B::Lint::Debug' => '1.17',
7882             'Benchmark' => '1.14',
7883             'CPAN' => '2.00',
7884             'CPAN::Distribution' => '2.00',
7885             'CPAN::FirstTime' => '5.5304',
7886             'CPAN::Nox' => '5.5001',
7887             'CPANPLUS' => '0.9135',
7888             'CPANPLUS::Backend' => '0.9135',
7889             'CPANPLUS::Backend::RV' => '0.9135',
7890             'CPANPLUS::Config' => '0.9135',
7891             'CPANPLUS::Config::HomeEnv'=> '0.9135',
7892             'CPANPLUS::Configure' => '0.9135',
7893             'CPANPLUS::Configure::Setup'=> '0.9135',
7894             'CPANPLUS::Dist' => '0.9135',
7895             'CPANPLUS::Dist::Autobundle'=> '0.9135',
7896             'CPANPLUS::Dist::Base' => '0.9135',
7897             'CPANPLUS::Dist::Build' => '0.70',
7898             'CPANPLUS::Dist::Build::Constants'=> '0.70',
7899             'CPANPLUS::Dist::MM' => '0.9135',
7900             'CPANPLUS::Dist::Sample'=> '0.9135',
7901             'CPANPLUS::Error' => '0.9135',
7902             'CPANPLUS::Internals' => '0.9135',
7903             'CPANPLUS::Internals::Constants'=> '0.9135',
7904             'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7905             'CPANPLUS::Internals::Extract'=> '0.9135',
7906             'CPANPLUS::Internals::Fetch'=> '0.9135',
7907             'CPANPLUS::Internals::Report'=> '0.9135',
7908             'CPANPLUS::Internals::Search'=> '0.9135',
7909             'CPANPLUS::Internals::Source'=> '0.9135',
7910             'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7911             'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7912             'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7913             'CPANPLUS::Internals::Utils'=> '0.9135',
7914             'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7915             'CPANPLUS::Module' => '0.9135',
7916             'CPANPLUS::Module::Author'=> '0.9135',
7917             'CPANPLUS::Module::Author::Fake'=> '0.9135',
7918             'CPANPLUS::Module::Checksums'=> '0.9135',
7919             'CPANPLUS::Module::Fake'=> '0.9135',
7920             'CPANPLUS::Module::Signature'=> '0.9135',
7921             'CPANPLUS::Selfupdate' => '0.9135',
7922             'CPANPLUS::Shell' => '0.9135',
7923             'CPANPLUS::Shell::Classic'=> '0.9135',
7924             'CPANPLUS::Shell::Default'=> '0.9135',
7925             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7926             'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7927             'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
7928             'Config' => '5.017009',
7929             'Config::Perl::V' => '0.17',
7930             'DBM_Filter' => '0.05',
7931             'Data::Dumper' => '2.142',
7932             'Digest::SHA' => '5.82',
7933             'Encode' => '2.48',
7934             'ExtUtils::Installed' => '1.999003',
7935             'ExtUtils::Manifest' => '1.63',
7936             'ExtUtils::ParseXS::Utilities'=> '3.19',
7937             'ExtUtils::Typemaps' => '3.19',
7938             'File::CheckTree' => '4.42',
7939             'File::DosGlob' => '1.10',
7940             'File::Temp' => '0.22_90',
7941             'Filter::Simple' => '0.89',
7942             'IO' => '1.27',
7943             'Log::Message' => '0.06',
7944             'Log::Message::Config' => '0.06',
7945             'Log::Message::Handlers'=> '0.06',
7946             'Log::Message::Item' => '0.06',
7947             'Log::Message::Simple' => '0.10',
7948             'Math::BigInt' => '1.999',
7949             'Module::CoreList' => '2.82',
7950             'Module::CoreList::TieHashDelta'=> '2.82',
7951             'Module::Load' => '0.24',
7952             'Module::Pluggable' => '4.6',
7953             'Module::Pluggable::Object'=> '4.6',
7954             'OS2::DLL' => '1.05',
7955             'OS2::ExtAttr' => '0.03',
7956             'OS2::Process' => '1.08',
7957             'Object::Accessor' => '0.46',
7958             'PerlIO::scalar' => '0.16',
7959             'Pod::Checker' => '1.60',
7960             'Pod::Find' => '1.60',
7961             'Pod::Html' => '1.18',
7962             'Pod::InputObjects' => '1.60',
7963             'Pod::ParseUtils' => '1.60',
7964             'Pod::Parser' => '1.60',
7965             'Pod::Perldoc' => '3.19',
7966             'Pod::Perldoc::BaseTo' => '3.19',
7967             'Pod::Perldoc::GetOptsOO'=> '3.19',
7968             'Pod::Perldoc::ToANSI' => '3.19',
7969             'Pod::Perldoc::ToChecker'=> '3.19',
7970             'Pod::Perldoc::ToMan' => '3.19',
7971             'Pod::Perldoc::ToNroff' => '3.19',
7972             'Pod::Perldoc::ToPod' => '3.19',
7973             'Pod::Perldoc::ToRtf' => '3.19',
7974             'Pod::Perldoc::ToTerm' => '3.19',
7975             'Pod::Perldoc::ToText' => '3.19',
7976             'Pod::Perldoc::ToTk' => '3.19',
7977             'Pod::Perldoc::ToXml' => '3.19',
7978             'Pod::PlainText' => '2.06',
7979             'Pod::Select' => '1.60',
7980             'Pod::Usage' => '1.61',
7981             'SelfLoader' => '1.21',
7982             'TAP::Base' => '3.26',
7983             'TAP::Formatter::Base' => '3.26',
7984             'TAP::Formatter::Color' => '3.26',
7985             'TAP::Formatter::Console'=> '3.26',
7986             'TAP::Formatter::Console::ParallelSession'=> '3.26',
7987             'TAP::Formatter::Console::Session'=> '3.26',
7988             'TAP::Formatter::File' => '3.26',
7989             'TAP::Formatter::File::Session'=> '3.26',
7990             'TAP::Formatter::Session'=> '3.26',
7991             'TAP::Harness' => '3.26',
7992             'TAP::Object' => '3.26',
7993             'TAP::Parser' => '3.26',
7994             'TAP::Parser::Aggregator'=> '3.26',
7995             'TAP::Parser::Grammar' => '3.26',
7996             'TAP::Parser::Iterator' => '3.26',
7997             'TAP::Parser::Iterator::Array'=> '3.26',
7998             'TAP::Parser::Iterator::Process'=> '3.26',
7999             'TAP::Parser::Iterator::Stream'=> '3.26',
8000             'TAP::Parser::IteratorFactory'=> '3.26',
8001             'TAP::Parser::Multiplexer'=> '3.26',
8002             'TAP::Parser::Result' => '3.26',
8003             'TAP::Parser::Result::Bailout'=> '3.26',
8004             'TAP::Parser::Result::Comment'=> '3.26',
8005             'TAP::Parser::Result::Plan'=> '3.26',
8006             'TAP::Parser::Result::Pragma'=> '3.26',
8007             'TAP::Parser::Result::Test'=> '3.26',
8008             'TAP::Parser::Result::Unknown'=> '3.26',
8009             'TAP::Parser::Result::Version'=> '3.26',
8010             'TAP::Parser::Result::YAML'=> '3.26',
8011             'TAP::Parser::ResultFactory'=> '3.26',
8012             'TAP::Parser::Scheduler'=> '3.26',
8013             'TAP::Parser::Scheduler::Job'=> '3.26',
8014             'TAP::Parser::Scheduler::Spinner'=> '3.26',
8015             'TAP::Parser::Source' => '3.26',
8016             'TAP::Parser::SourceHandler'=> '3.26',
8017             'TAP::Parser::SourceHandler::Executable'=> '3.26',
8018             'TAP::Parser::SourceHandler::File'=> '3.26',
8019             'TAP::Parser::SourceHandler::Handle'=> '3.26',
8020             'TAP::Parser::SourceHandler::Perl'=> '3.26',
8021             'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
8022             'TAP::Parser::Utils' => '3.26',
8023             'TAP::Parser::YAMLish::Reader'=> '3.26',
8024             'TAP::Parser::YAMLish::Writer'=> '3.26',
8025             'Term::UI' => '0.34',
8026             'Test::Harness' => '3.26',
8027             'Text::Soundex' => '3.04',
8028             'Thread::Queue' => '3.02',
8029             'Unicode::UCD' => '0.50',
8030             'Win32' => '0.46',
8031             'Win32API::File' => '0.1201',
8032             '_charnames' => '1.36',
8033             'arybase' => '0.06',
8034             'bigint' => '0.32',
8035             'bignum' => '0.32',
8036             'charnames' => '1.36',
8037             'filetest' => '1.03',
8038             'locale' => '1.02',
8039             'overload' => '1.21',
8040             'warnings' => '1.17',
8041             },
8042             removed => {
8043             }
8044             },
8045             5.017010 => {
8046             delta_from => 5.017009,
8047             changed => {
8048             'Benchmark' => '1.15',
8049             'Config' => '5.017009',
8050             'Data::Dumper' => '2.145',
8051             'Digest::SHA' => '5.84',
8052             'Encode' => '2.49',
8053             'ExtUtils::Command::MM' => '6.65_01',
8054             'ExtUtils::Liblist' => '6.65_01',
8055             'ExtUtils::Liblist::Kid'=> '6.65_01',
8056             'ExtUtils::MM' => '6.65_01',
8057             'ExtUtils::MM_AIX' => '6.65_01',
8058             'ExtUtils::MM_Any' => '6.65_01',
8059             'ExtUtils::MM_BeOS' => '6.65_01',
8060             'ExtUtils::MM_Cygwin' => '6.65_01',
8061             'ExtUtils::MM_DOS' => '6.65_01',
8062             'ExtUtils::MM_Darwin' => '6.65_01',
8063             'ExtUtils::MM_MacOS' => '6.65_01',
8064             'ExtUtils::MM_NW5' => '6.65_01',
8065             'ExtUtils::MM_OS2' => '6.65_01',
8066             'ExtUtils::MM_QNX' => '6.65_01',
8067             'ExtUtils::MM_UWIN' => '6.65_01',
8068             'ExtUtils::MM_Unix' => '6.65_01',
8069             'ExtUtils::MM_VMS' => '6.65_01',
8070             'ExtUtils::MM_VOS' => '6.65_01',
8071             'ExtUtils::MM_Win32' => '6.65_01',
8072             'ExtUtils::MM_Win95' => '6.65_01',
8073             'ExtUtils::MY' => '6.65_01',
8074             'ExtUtils::MakeMaker' => '6.65_01',
8075             'ExtUtils::MakeMaker::Config'=> '6.65_01',
8076             'ExtUtils::Mkbootstrap' => '6.65_01',
8077             'ExtUtils::Mksymlists' => '6.65_01',
8078             'ExtUtils::testlib' => '6.65_01',
8079             'File::Copy' => '2.26',
8080             'File::Temp' => '0.23',
8081             'Getopt::Long' => '2.39',
8082             'Hash::Util' => '0.15',
8083             'I18N::Langinfo' => '0.10',
8084             'IPC::Cmd' => '0.80',
8085             'JSON::PP' => '2.27202',
8086             'Locale::Codes' => '3.25',
8087             'Locale::Codes::Constants'=> '3.25',
8088             'Locale::Codes::Country'=> '3.25',
8089             'Locale::Codes::Country_Codes'=> '3.25',
8090             'Locale::Codes::Country_Retired'=> '3.25',
8091             'Locale::Codes::Currency'=> '3.25',
8092             'Locale::Codes::Currency_Codes'=> '3.25',
8093             'Locale::Codes::Currency_Retired'=> '3.25',
8094             'Locale::Codes::LangExt'=> '3.25',
8095             'Locale::Codes::LangExt_Codes'=> '3.25',
8096             'Locale::Codes::LangExt_Retired'=> '3.25',
8097             'Locale::Codes::LangFam'=> '3.25',
8098             'Locale::Codes::LangFam_Codes'=> '3.25',
8099             'Locale::Codes::LangFam_Retired'=> '3.25',
8100             'Locale::Codes::LangVar'=> '3.25',
8101             'Locale::Codes::LangVar_Codes'=> '3.25',
8102             'Locale::Codes::LangVar_Retired'=> '3.25',
8103             'Locale::Codes::Language'=> '3.25',
8104             'Locale::Codes::Language_Codes'=> '3.25',
8105             'Locale::Codes::Language_Retired'=> '3.25',
8106             'Locale::Codes::Script' => '3.25',
8107             'Locale::Codes::Script_Codes'=> '3.25',
8108             'Locale::Codes::Script_Retired'=> '3.25',
8109             'Locale::Country' => '3.25',
8110             'Locale::Currency' => '3.25',
8111             'Locale::Language' => '3.25',
8112             'Locale::Script' => '3.25',
8113             'Math::BigFloat' => '1.998',
8114             'Math::BigFloat::Trace' => '0.32',
8115             'Math::BigInt' => '1.9991',
8116             'Math::BigInt::CalcEmu' => '1.998',
8117             'Math::BigInt::Trace' => '0.32',
8118             'Math::BigRat' => '0.2604',
8119             'Module::CoreList' => '2.84',
8120             'Module::CoreList::TieHashDelta'=> '2.84',
8121             'Module::Pluggable' => '4.7',
8122             'Net::Ping' => '2.41',
8123             'Perl::OSType' => '1.003',
8124             'Pod::Simple' => '3.26',
8125             'Pod::Simple::BlackBox' => '3.26',
8126             'Pod::Simple::Checker' => '3.26',
8127             'Pod::Simple::Debug' => '3.26',
8128             'Pod::Simple::DumpAsText'=> '3.26',
8129             'Pod::Simple::DumpAsXML'=> '3.26',
8130             'Pod::Simple::HTML' => '3.26',
8131             'Pod::Simple::HTMLBatch'=> '3.26',
8132             'Pod::Simple::LinkSection'=> '3.26',
8133             'Pod::Simple::Methody' => '3.26',
8134             'Pod::Simple::Progress' => '3.26',
8135             'Pod::Simple::PullParser'=> '3.26',
8136             'Pod::Simple::PullParserEndToken'=> '3.26',
8137             'Pod::Simple::PullParserStartToken'=> '3.26',
8138             'Pod::Simple::PullParserTextToken'=> '3.26',
8139             'Pod::Simple::PullParserToken'=> '3.26',
8140             'Pod::Simple::RTF' => '3.26',
8141             'Pod::Simple::Search' => '3.26',
8142             'Pod::Simple::SimpleTree'=> '3.26',
8143             'Pod::Simple::Text' => '3.26',
8144             'Pod::Simple::TextContent'=> '3.26',
8145             'Pod::Simple::TiedOutFH'=> '3.26',
8146             'Pod::Simple::Transcode'=> '3.26',
8147             'Pod::Simple::TranscodeDumb'=> '3.26',
8148             'Pod::Simple::TranscodeSmart'=> '3.26',
8149             'Pod::Simple::XHTML' => '3.26',
8150             'Pod::Simple::XMLOutStream'=> '3.26',
8151             'Safe' => '2.35',
8152             'Term::ReadLine' => '1.12',
8153             'Text::ParseWords' => '3.28',
8154             'Tie::File' => '0.99',
8155             'Unicode::UCD' => '0.51',
8156             'Win32' => '0.47',
8157             'bigint' => '0.33',
8158             'bignum' => '0.33',
8159             'bigrat' => '0.33',
8160             'constant' => '1.27',
8161             'perlfaq' => '5.0150042',
8162             'version' => '0.9902',
8163             },
8164             removed => {
8165             }
8166             },
8167             5.017011 => {
8168             delta_from => 5.017010,
8169             changed => {
8170             'App::Cpan' => '1.61',
8171             'B::Deparse' => '1.20',
8172             'Config' => '5.017009',
8173             'Exporter' => '5.68',
8174             'Exporter::Heavy' => '5.68',
8175             'ExtUtils::CBuilder' => '0.280210',
8176             'ExtUtils::Command::MM' => '6.66',
8177             'ExtUtils::Liblist' => '6.66',
8178             'ExtUtils::Liblist::Kid'=> '6.66',
8179             'ExtUtils::MM' => '6.66',
8180             'ExtUtils::MM_AIX' => '6.66',
8181             'ExtUtils::MM_Any' => '6.66',
8182             'ExtUtils::MM_BeOS' => '6.66',
8183             'ExtUtils::MM_Cygwin' => '6.66',
8184             'ExtUtils::MM_DOS' => '6.66',
8185             'ExtUtils::MM_Darwin' => '6.66',
8186             'ExtUtils::MM_MacOS' => '6.66',
8187             'ExtUtils::MM_NW5' => '6.66',
8188             'ExtUtils::MM_OS2' => '6.66',
8189             'ExtUtils::MM_QNX' => '6.66',
8190             'ExtUtils::MM_UWIN' => '6.66',
8191             'ExtUtils::MM_Unix' => '6.66',
8192             'ExtUtils::MM_VMS' => '6.66',
8193             'ExtUtils::MM_VOS' => '6.66',
8194             'ExtUtils::MM_Win32' => '6.66',
8195             'ExtUtils::MM_Win95' => '6.66',
8196             'ExtUtils::MY' => '6.66',
8197             'ExtUtils::MakeMaker' => '6.66',
8198             'ExtUtils::MakeMaker::Config'=> '6.66',
8199             'ExtUtils::Mkbootstrap' => '6.66',
8200             'ExtUtils::Mksymlists' => '6.66',
8201             'ExtUtils::testlib' => '6.66',
8202             'File::Glob' => '1.20',
8203             'IO' => '1.28',
8204             'Module::CoreList' => '2.87',
8205             'Module::CoreList::TieHashDelta'=> '2.87',
8206             'Storable' => '2.41',
8207             'bigint' => '0.34',
8208             'mro' => '1.11',
8209             'overload' => '1.22',
8210             'warnings' => '1.18',
8211             },
8212             removed => {
8213             }
8214             },
8215             5.018000 => {
8216             delta_from => 5.017011,
8217             changed => {
8218             'Carp' => '1.29',
8219             'Carp::Heavy' => '1.29',
8220             'Config' => '5.018000',
8221             'Hash::Util' => '0.16',
8222             'IO::Handle' => '1.34',
8223             'IO::Socket' => '1.36',
8224             'Module::CoreList' => '2.89',
8225             'Module::CoreList::TieHashDelta'=> '2.89',
8226             'Pod::Simple' => '3.28',
8227             'Pod::Simple::BlackBox' => '3.28',
8228             'Pod::Simple::Checker' => '3.28',
8229             'Pod::Simple::Debug' => '3.28',
8230             'Pod::Simple::DumpAsText'=> '3.28',
8231             'Pod::Simple::DumpAsXML'=> '3.28',
8232             'Pod::Simple::HTML' => '3.28',
8233             'Pod::Simple::HTMLBatch'=> '3.28',
8234             'Pod::Simple::LinkSection'=> '3.28',
8235             'Pod::Simple::Methody' => '3.28',
8236             'Pod::Simple::Progress' => '3.28',
8237             'Pod::Simple::PullParser'=> '3.28',
8238             'Pod::Simple::PullParserEndToken'=> '3.28',
8239             'Pod::Simple::PullParserStartToken'=> '3.28',
8240             'Pod::Simple::PullParserTextToken'=> '3.28',
8241             'Pod::Simple::PullParserToken'=> '3.28',
8242             'Pod::Simple::RTF' => '3.28',
8243             'Pod::Simple::Search' => '3.28',
8244             'Pod::Simple::SimpleTree'=> '3.28',
8245             'Pod::Simple::Text' => '3.28',
8246             'Pod::Simple::TextContent'=> '3.28',
8247             'Pod::Simple::TiedOutFH'=> '3.28',
8248             'Pod::Simple::Transcode'=> '3.28',
8249             'Pod::Simple::TranscodeDumb'=> '3.28',
8250             'Pod::Simple::TranscodeSmart'=> '3.28',
8251             'Pod::Simple::XHTML' => '3.28',
8252             'Pod::Simple::XMLOutStream'=> '3.28',
8253             },
8254             removed => {
8255             }
8256             },
8257             5.018001 => {
8258             delta_from => 5.018000,
8259             changed => {
8260             'B' => '1.42_01',
8261             'Config' => '5.018001',
8262             'Digest::SHA' => '5.84_01',
8263             'Module::CoreList' => '2.96',
8264             'Module::CoreList::TieHashDelta'=> '2.96',
8265             'Module::CoreList::Utils'=> '2.96',
8266             },
8267             removed => {
8268             'VMS::Filespec' => 1,
8269             }
8270             },
8271             5.018002 => {
8272             delta_from => 5.018001,
8273             changed => {
8274             'B' => '1.42_02',
8275             'B::Concise' => '0.95_01',
8276             'Config' => '5.018002',
8277             'File::Glob' => '1.20_01',
8278             'Module::CoreList' => '3.03',
8279             'Module::CoreList::TieHashDelta'=> '3.03',
8280             'Module::CoreList::Utils'=> '3.03',
8281             },
8282             },
8283             5.018003 => {
8284             delta_from => 5.018002,
8285             changed => {
8286             'Config' => '5.018003',
8287             'Digest::SHA' => '5.84_02',
8288             'Module::CoreList' => '3.12',
8289             'Module::CoreList::TieHashDelta'=> '3.12',
8290             'Module::CoreList::Utils'=> '3.12',
8291             },
8292             },
8293             5.018004 => {
8294             delta_from => 5.018003,
8295             changed => {
8296             'Config' => '5.018004',
8297             'Module::CoreList' => '3.13',
8298             'Module::CoreList::TieHashDelta'=> '3.13',
8299             'Module::CoreList::Utils'=> '3.13',
8300             },
8301             },
8302             5.019000 => {
8303             delta_from => 5.018000,
8304             changed => {
8305             'Config' => '5.019000',
8306             'Getopt::Std' => '1.08',
8307             'Module::CoreList' => '2.91',
8308             'Module::CoreList::TieHashDelta'=> '2.91',
8309             'Storable' => '2.42',
8310             'feature' => '1.33',
8311             'utf8' => '1.11',
8312             },
8313             removed => {
8314             'Archive::Extract' => 1,
8315             'B::Lint' => 1,
8316             'B::Lint::Debug' => 1,
8317             'CPANPLUS' => 1,
8318             'CPANPLUS::Backend' => 1,
8319             'CPANPLUS::Backend::RV' => 1,
8320             'CPANPLUS::Config' => 1,
8321             'CPANPLUS::Config::HomeEnv'=> 1,
8322             'CPANPLUS::Configure' => 1,
8323             'CPANPLUS::Configure::Setup'=> 1,
8324             'CPANPLUS::Dist' => 1,
8325             'CPANPLUS::Dist::Autobundle'=> 1,
8326             'CPANPLUS::Dist::Base' => 1,
8327             'CPANPLUS::Dist::Build' => 1,
8328             'CPANPLUS::Dist::Build::Constants'=> 1,
8329             'CPANPLUS::Dist::MM' => 1,
8330             'CPANPLUS::Dist::Sample'=> 1,
8331             'CPANPLUS::Error' => 1,
8332             'CPANPLUS::Internals' => 1,
8333             'CPANPLUS::Internals::Constants'=> 1,
8334             'CPANPLUS::Internals::Constants::Report'=> 1,
8335             'CPANPLUS::Internals::Extract'=> 1,
8336             'CPANPLUS::Internals::Fetch'=> 1,
8337             'CPANPLUS::Internals::Report'=> 1,
8338             'CPANPLUS::Internals::Search'=> 1,
8339             'CPANPLUS::Internals::Source'=> 1,
8340             'CPANPLUS::Internals::Source::Memory'=> 1,
8341             'CPANPLUS::Internals::Source::SQLite'=> 1,
8342             'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8343             'CPANPLUS::Internals::Utils'=> 1,
8344             'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8345             'CPANPLUS::Module' => 1,
8346             'CPANPLUS::Module::Author'=> 1,
8347             'CPANPLUS::Module::Author::Fake'=> 1,
8348             'CPANPLUS::Module::Checksums'=> 1,
8349             'CPANPLUS::Module::Fake'=> 1,
8350             'CPANPLUS::Module::Signature'=> 1,
8351             'CPANPLUS::Selfupdate' => 1,
8352             'CPANPLUS::Shell' => 1,
8353             'CPANPLUS::Shell::Classic'=> 1,
8354             'CPANPLUS::Shell::Default'=> 1,
8355             'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8356             'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8357             'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8358             'Devel::InnerPackage' => 1,
8359             'File::CheckTree' => 1,
8360             'Log::Message' => 1,
8361             'Log::Message::Config' => 1,
8362             'Log::Message::Handlers'=> 1,
8363             'Log::Message::Item' => 1,
8364             'Log::Message::Simple' => 1,
8365             'Module::Pluggable' => 1,
8366             'Module::Pluggable::Object'=> 1,
8367             'Object::Accessor' => 1,
8368             'Pod::LaTeX' => 1,
8369             'Term::UI' => 1,
8370             'Term::UI::History' => 1,
8371             'Text::Soundex' => 1,
8372             }
8373             },
8374             5.019001 => {
8375             delta_from => 5.019000,
8376             changed => {
8377             'App::Prove' => '3.28',
8378             'App::Prove::State' => '3.28',
8379             'App::Prove::State::Result'=> '3.28',
8380             'App::Prove::State::Result::Test'=> '3.28',
8381             'Archive::Tar' => '1.92',
8382             'Archive::Tar::Constant'=> '1.92',
8383             'Archive::Tar::File' => '1.92',
8384             'Attribute::Handlers' => '0.95',
8385             'B' => '1.43',
8386             'B::Concise' => '0.96',
8387             'B::Deparse' => '1.21',
8388             'B::Showlex' => '1.04',
8389             'Benchmark' => '1.16',
8390             'CPAN::Meta' => '2.131560',
8391             'CPAN::Meta::Converter' => '2.131560',
8392             'CPAN::Meta::Feature' => '2.131560',
8393             'CPAN::Meta::History' => '2.131560',
8394             'CPAN::Meta::Prereqs' => '2.131560',
8395             'CPAN::Meta::Spec' => '2.131560',
8396             'CPAN::Meta::Validator' => '2.131560',
8397             'Carp' => '1.30',
8398             'Carp::Heavy' => '1.30',
8399             'Compress::Raw::Bzip2' => '2.061',
8400             'Compress::Raw::Zlib' => '2.061',
8401             'Compress::Zlib' => '2.061',
8402             'Config' => '5.019001',
8403             'Config::Perl::V' => '0.18',
8404             'Cwd' => '3.41',
8405             'DB' => '1.06',
8406             'DB_File' => '1.828',
8407             'Data::Dumper' => '2.146',
8408             'Encode' => '2.51',
8409             'Encode::CN::HZ' => '2.06',
8410             'Encode::GSM0338' => '2.03',
8411             'Encode::Unicode::UTF7' => '2.07',
8412             'ExtUtils::CBuilder::Base'=> '0.280210',
8413             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8414             'ExtUtils::Command::MM' => '6.68',
8415             'ExtUtils::Install' => '1.60',
8416             'ExtUtils::Liblist' => '6.68',
8417             'ExtUtils::Liblist::Kid'=> '6.68',
8418             'ExtUtils::MM' => '6.68',
8419             'ExtUtils::MM_AIX' => '6.68',
8420             'ExtUtils::MM_Any' => '6.68',
8421             'ExtUtils::MM_BeOS' => '6.68',
8422             'ExtUtils::MM_Cygwin' => '6.68',
8423             'ExtUtils::MM_DOS' => '6.68',
8424             'ExtUtils::MM_Darwin' => '6.68',
8425             'ExtUtils::MM_MacOS' => '6.68',
8426             'ExtUtils::MM_NW5' => '6.68',
8427             'ExtUtils::MM_OS2' => '6.68',
8428             'ExtUtils::MM_QNX' => '6.68',
8429             'ExtUtils::MM_UWIN' => '6.68',
8430             'ExtUtils::MM_Unix' => '6.68',
8431             'ExtUtils::MM_VMS' => '6.68',
8432             'ExtUtils::MM_VOS' => '6.68',
8433             'ExtUtils::MM_Win32' => '6.68',
8434             'ExtUtils::MM_Win95' => '6.68',
8435             'ExtUtils::MY' => '6.68',
8436             'ExtUtils::MakeMaker' => '6.68',
8437             'ExtUtils::MakeMaker::Config'=> '6.68',
8438             'ExtUtils::Mkbootstrap' => '6.68',
8439             'ExtUtils::Mksymlists' => '6.68',
8440             'ExtUtils::ParseXS' => '3.19',
8441             'ExtUtils::testlib' => '6.68',
8442             'Fatal' => '2.19',
8443             'File::Copy' => '2.27',
8444             'File::DosGlob' => '1.11',
8445             'File::Fetch' => '0.42',
8446             'File::Find' => '1.24',
8447             'File::Spec' => '3.41',
8448             'File::Spec::Cygwin' => '3.41',
8449             'File::Spec::Epoc' => '3.41',
8450             'File::Spec::Mac' => '3.41',
8451             'File::Spec::OS2' => '3.41',
8452             'File::Spec::Unix' => '3.41',
8453             'File::Spec::VMS' => '3.41',
8454             'File::Spec::Win32' => '3.41',
8455             'File::Temp' => '0.2301',
8456             'Filter::Simple' => '0.90',
8457             'Filter::Util::Call' => '1.49',
8458             'Getopt::Long' => '2.4',
8459             'HTTP::Tiny' => '0.031',
8460             'Hash::Util::FieldHash' => '1.11',
8461             'IO::Compress::Adapter::Bzip2'=> '2.061',
8462             'IO::Compress::Adapter::Deflate'=> '2.061',
8463             'IO::Compress::Adapter::Identity'=> '2.061',
8464             'IO::Compress::Base' => '2.061',
8465             'IO::Compress::Base::Common'=> '2.061',
8466             'IO::Compress::Bzip2' => '2.061',
8467             'IO::Compress::Deflate' => '2.061',
8468             'IO::Compress::Gzip' => '2.061',
8469             'IO::Compress::Gzip::Constants'=> '2.061',
8470             'IO::Compress::RawDeflate'=> '2.061',
8471             'IO::Compress::Zip' => '2.061',
8472             'IO::Compress::Zip::Constants'=> '2.061',
8473             'IO::Compress::Zlib::Constants'=> '2.061',
8474             'IO::Compress::Zlib::Extra'=> '2.061',
8475             'IO::Handle' => '1.35',
8476             'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8477             'IO::Uncompress::Adapter::Identity'=> '2.061',
8478             'IO::Uncompress::Adapter::Inflate'=> '2.061',
8479             'IO::Uncompress::AnyInflate'=> '2.061',
8480             'IO::Uncompress::AnyUncompress'=> '2.061',
8481             'IO::Uncompress::Base' => '2.061',
8482             'IO::Uncompress::Bunzip2'=> '2.061',
8483             'IO::Uncompress::Gunzip'=> '2.061',
8484             'IO::Uncompress::Inflate'=> '2.061',
8485             'IO::Uncompress::RawInflate'=> '2.061',
8486             'IO::Uncompress::Unzip' => '2.061',
8487             'IPC::Open3' => '1.14',
8488             'Locale::Codes' => '3.26',
8489             'Locale::Codes::Constants'=> '3.26',
8490             'Locale::Codes::Country'=> '3.26',
8491             'Locale::Codes::Country_Codes'=> '3.26',
8492             'Locale::Codes::Country_Retired'=> '3.26',
8493             'Locale::Codes::Currency'=> '3.26',
8494             'Locale::Codes::Currency_Codes'=> '3.26',
8495             'Locale::Codes::Currency_Retired'=> '3.26',
8496             'Locale::Codes::LangExt'=> '3.26',
8497             'Locale::Codes::LangExt_Codes'=> '3.26',
8498             'Locale::Codes::LangExt_Retired'=> '3.26',
8499             'Locale::Codes::LangFam'=> '3.26',
8500             'Locale::Codes::LangFam_Codes'=> '3.26',
8501             'Locale::Codes::LangFam_Retired'=> '3.26',
8502             'Locale::Codes::LangVar'=> '3.26',
8503             'Locale::Codes::LangVar_Codes'=> '3.26',
8504             'Locale::Codes::LangVar_Retired'=> '3.26',
8505             'Locale::Codes::Language'=> '3.26',
8506             'Locale::Codes::Language_Codes'=> '3.26',
8507             'Locale::Codes::Language_Retired'=> '3.26',
8508             'Locale::Codes::Script' => '3.26',
8509             'Locale::Codes::Script_Codes'=> '3.26',
8510             'Locale::Codes::Script_Retired'=> '3.26',
8511             'Locale::Country' => '3.26',
8512             'Locale::Currency' => '3.26',
8513             'Locale::Language' => '3.26',
8514             'Locale::Maketext' => '1.24',
8515             'Locale::Script' => '3.26',
8516             'Math::BigFloat' => '1.999',
8517             'Math::BigInt' => '1.9992',
8518             'Math::BigInt::Calc' => '1.998',
8519             'Math::BigInt::CalcEmu' => '1.9991',
8520             'Math::BigRat' => '0.2606',
8521             'Module::Build' => '0.4005',
8522             'Module::Build::Base' => '0.4005',
8523             'Module::Build::Compat' => '0.4005',
8524             'Module::Build::Config' => '0.4005',
8525             'Module::Build::Cookbook'=> '0.4005',
8526             'Module::Build::Dumper' => '0.4005',
8527             'Module::Build::ModuleInfo'=> '0.4005',
8528             'Module::Build::Notes' => '0.4005',
8529             'Module::Build::PPMMaker'=> '0.4005',
8530             'Module::Build::Platform::Amiga'=> '0.4005',
8531             'Module::Build::Platform::Default'=> '0.4005',
8532             'Module::Build::Platform::EBCDIC'=> '0.4005',
8533             'Module::Build::Platform::MPEiX'=> '0.4005',
8534             'Module::Build::Platform::MacOS'=> '0.4005',
8535             'Module::Build::Platform::RiscOS'=> '0.4005',
8536             'Module::Build::Platform::Unix'=> '0.4005',
8537             'Module::Build::Platform::VMS'=> '0.4005',
8538             'Module::Build::Platform::VOS'=> '0.4005',
8539             'Module::Build::Platform::Windows'=> '0.4005',
8540             'Module::Build::Platform::aix'=> '0.4005',
8541             'Module::Build::Platform::cygwin'=> '0.4005',
8542             'Module::Build::Platform::darwin'=> '0.4005',
8543             'Module::Build::Platform::os2'=> '0.4005',
8544             'Module::Build::PodParser'=> '0.4005',
8545             'Module::CoreList' => '2.92',
8546             'Module::CoreList::TieHashDelta'=> '2.92',
8547             'Module::CoreList::Utils'=> '2.92',
8548             'Module::Metadata' => '1.000014',
8549             'Net::Ping' => '2.42',
8550             'OS2::Process' => '1.09',
8551             'POSIX' => '1.33',
8552             'Pod::Find' => '1.61',
8553             'Pod::Html' => '1.19',
8554             'Pod::InputObjects' => '1.61',
8555             'Pod::ParseUtils' => '1.61',
8556             'Pod::Parser' => '1.61',
8557             'Pod::Perldoc' => '3.20',
8558             'Pod::Perldoc::BaseTo' => '3.20',
8559             'Pod::Perldoc::GetOptsOO'=> '3.20',
8560             'Pod::Perldoc::ToANSI' => '3.20',
8561             'Pod::Perldoc::ToChecker'=> '3.20',
8562             'Pod::Perldoc::ToMan' => '3.20',
8563             'Pod::Perldoc::ToNroff' => '3.20',
8564             'Pod::Perldoc::ToPod' => '3.20',
8565             'Pod::Perldoc::ToRtf' => '3.20',
8566             'Pod::Perldoc::ToTerm' => '3.20',
8567             'Pod::Perldoc::ToText' => '3.20',
8568             'Pod::Perldoc::ToTk' => '3.20',
8569             'Pod::Perldoc::ToXml' => '3.20',
8570             'Pod::Select' => '1.61',
8571             'Pod::Usage' => '1.63',
8572             'Safe' => '2.36',
8573             'Storable' => '2.43',
8574             'Sys::Hostname' => '1.18',
8575             'Sys::Syslog' => '0.33',
8576             'TAP::Base' => '3.28',
8577             'TAP::Formatter::Base' => '3.28',
8578             'TAP::Formatter::Color' => '3.28',
8579             'TAP::Formatter::Console'=> '3.28',
8580             'TAP::Formatter::Console::ParallelSession'=> '3.28',
8581             'TAP::Formatter::Console::Session'=> '3.28',
8582             'TAP::Formatter::File' => '3.28',
8583             'TAP::Formatter::File::Session'=> '3.28',
8584             'TAP::Formatter::Session'=> '3.28',
8585             'TAP::Harness' => '3.28',
8586             'TAP::Object' => '3.28',
8587             'TAP::Parser' => '3.28',
8588             'TAP::Parser::Aggregator'=> '3.28',
8589             'TAP::Parser::Grammar' => '3.28',
8590             'TAP::Parser::Iterator' => '3.28',
8591             'TAP::Parser::Iterator::Array'=> '3.28',
8592             'TAP::Parser::Iterator::Process'=> '3.28',
8593             'TAP::Parser::Iterator::Stream'=> '3.28',
8594             'TAP::Parser::IteratorFactory'=> '3.28',
8595             'TAP::Parser::Multiplexer'=> '3.28',
8596             'TAP::Parser::Result' => '3.28',
8597             'TAP::Parser::Result::Bailout'=> '3.28',
8598             'TAP::Parser::Result::Comment'=> '3.28',
8599             'TAP::Parser::Result::Plan'=> '3.28',
8600             'TAP::Parser::Result::Pragma'=> '3.28',
8601             'TAP::Parser::Result::Test'=> '3.28',
8602             'TAP::Parser::Result::Unknown'=> '3.28',
8603             'TAP::Parser::Result::Version'=> '3.28',
8604             'TAP::Parser::Result::YAML'=> '3.28',
8605             'TAP::Parser::ResultFactory'=> '3.28',
8606             'TAP::Parser::Scheduler'=> '3.28',
8607             'TAP::Parser::Scheduler::Job'=> '3.28',
8608             'TAP::Parser::Scheduler::Spinner'=> '3.28',
8609             'TAP::Parser::Source' => '3.28',
8610             'TAP::Parser::SourceHandler'=> '3.28',
8611             'TAP::Parser::SourceHandler::Executable'=> '3.28',
8612             'TAP::Parser::SourceHandler::File'=> '3.28',
8613             'TAP::Parser::SourceHandler::Handle'=> '3.28',
8614             'TAP::Parser::SourceHandler::Perl'=> '3.28',
8615             'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8616             'TAP::Parser::Utils' => '3.28',
8617             'TAP::Parser::YAMLish::Reader'=> '3.28',
8618             'TAP::Parser::YAMLish::Writer'=> '3.28',
8619             'Term::ReadLine' => '1.13',
8620             'Test::Harness' => '3.28',
8621             'Text::Tabs' => '2013.0523',
8622             'Text::Wrap' => '2013.0523',
8623             'Thread' => '3.04',
8624             'Tie::File' => '1.00',
8625             'Time::Piece' => '1.2002',
8626             'Unicode::Collate' => '0.98',
8627             'Unicode::UCD' => '0.53',
8628             'XS::APItest' => '0.53',
8629             '_charnames' => '1.37',
8630             'autodie' => '2.19',
8631             'autodie::exception' => '2.19',
8632             'autodie::exception::system'=> '2.19',
8633             'autodie::hints' => '2.19',
8634             'autodie::skip' => '2.19',
8635             'bigint' => '0.35',
8636             'charnames' => '1.38',
8637             'encoding' => '2.12',
8638             'inc::latest' => '0.4005',
8639             'mro' => '1.12',
8640             'perlfaq' => '5.0150043',
8641             're' => '0.25',
8642             'threads' => '1.87',
8643             'threads::shared' => '1.44',
8644             'utf8' => '1.12',
8645             },
8646             removed => {
8647             }
8648             },
8649             5.019002 => {
8650             delta_from => 5.019001,
8651             changed => {
8652             'B' => '1.44',
8653             'B::Concise' => '0.98',
8654             'B::Deparse' => '1.22',
8655             'Benchmark' => '1.17',
8656             'Class::Struct' => '0.65',
8657             'Config' => '5.019002',
8658             'DB' => '1.07',
8659             'DBM_Filter' => '0.06',
8660             'DBM_Filter::compress' => '0.03',
8661             'DBM_Filter::encode' => '0.03',
8662             'DBM_Filter::int32' => '0.03',
8663             'DBM_Filter::null' => '0.03',
8664             'DBM_Filter::utf8' => '0.03',
8665             'DB_File' => '1.829',
8666             'Data::Dumper' => '2.147',
8667             'Devel::Peek' => '1.12',
8668             'Digest::MD5' => '2.53',
8669             'Digest::SHA' => '5.85',
8670             'English' => '1.07',
8671             'Errno' => '1.19',
8672             'ExtUtils::Embed' => '1.31',
8673             'ExtUtils::Miniperl' => '1',
8674             'ExtUtils::ParseXS' => '3.21',
8675             'ExtUtils::ParseXS::Constants'=> '3.21',
8676             'ExtUtils::ParseXS::CountLines'=> '3.21',
8677             'ExtUtils::ParseXS::Eval'=> '3.19',
8678             'ExtUtils::ParseXS::Utilities'=> '3.21',
8679             'ExtUtils::Typemaps' => '3.21',
8680             'ExtUtils::Typemaps::Cmd'=> '3.21',
8681             'ExtUtils::Typemaps::InputMap'=> '3.21',
8682             'ExtUtils::Typemaps::OutputMap'=> '3.21',
8683             'ExtUtils::Typemaps::Type'=> '3.21',
8684             'ExtUtils::XSSymSet' => '1.3',
8685             'Fatal' => '2.20',
8686             'File::Basename' => '2.85',
8687             'File::Spec::VMS' => '3.43',
8688             'File::Spec::Win32' => '3.42',
8689             'Getopt::Long' => '2.41',
8690             'Getopt::Std' => '1.09',
8691             'HTTP::Tiny' => '0.034',
8692             'Hash::Util::FieldHash' => '1.12',
8693             'I18N::Langinfo' => '0.11',
8694             'IO::Socket::INET' => '1.34',
8695             'IO::Socket::UNIX' => '1.25',
8696             'IPC::Cmd' => '0.82',
8697             'MIME::Base64' => '3.14',
8698             'Module::CoreList' => '2.94',
8699             'Module::CoreList::TieHashDelta'=> '2.94',
8700             'Module::CoreList::Utils'=> '2.94',
8701             'POSIX' => '1.34',
8702             'Params::Check' => '0.38',
8703             'Parse::CPAN::Meta' => '1.4405',
8704             'Pod::Functions' => '1.07',
8705             'Pod::Html' => '1.2',
8706             'Safe' => '2.37',
8707             'Socket' => '2.010',
8708             'Storable' => '2.45',
8709             'Text::ParseWords' => '3.29',
8710             'Tie::Array' => '1.06',
8711             'Tie::Hash' => '1.05',
8712             'Tie::Scalar' => '1.03',
8713             'Time::Piece' => '1.21',
8714             'Time::Seconds' => '1.21',
8715             'XS::APItest' => '0.54',
8716             'autodie' => '2.20',
8717             'autodie::exception' => '2.20',
8718             'autodie::exception::system'=> '2.20',
8719             'autodie::hints' => '2.20',
8720             'autodie::skip' => '2.20',
8721             'base' => '2.19',
8722             'deprecate' => '0.03',
8723             'if' => '0.0603',
8724             'integer' => '1.01',
8725             'strict' => '1.08',
8726             'subs' => '1.02',
8727             'vmsish' => '1.04',
8728             },
8729             removed => {
8730             }
8731             },
8732             5.019003 => {
8733             delta_from => 5.019002,
8734             changed => {
8735             'B' => '1.45',
8736             'CPAN::Meta' => '2.132140',
8737             'CPAN::Meta::Converter' => '2.132140',
8738             'CPAN::Meta::Feature' => '2.132140',
8739             'CPAN::Meta::History' => '2.132140',
8740             'CPAN::Meta::Prereqs' => '2.132140',
8741             'CPAN::Meta::Spec' => '2.132140',
8742             'CPAN::Meta::Validator' => '2.132140',
8743             'Carp' => '1.31',
8744             'Carp::Heavy' => '1.31',
8745             'Compress::Raw::Bzip2' => '2.062',
8746             'Compress::Raw::Zlib' => '2.062',
8747             'Compress::Zlib' => '2.062',
8748             'Config' => '5.019003',
8749             'Config::Perl::V' => '0.19',
8750             'Cwd' => '3.44',
8751             'Data::Dumper' => '2.148',
8752             'Devel::PPPort' => '3.21',
8753             'Devel::Peek' => '1.13',
8754             'DynaLoader' => '1.19',
8755             'Encode' => '2.52',
8756             'Encode::Alias' => '2.17',
8757             'Encode::Encoding' => '2.06',
8758             'Encode::GSM0338' => '2.04',
8759             'Encode::MIME::Header' => '2.14',
8760             'Encode::Unicode' => '2.08',
8761             'English' => '1.08',
8762             'Exporter' => '5.69',
8763             'Exporter::Heavy' => '5.69',
8764             'ExtUtils::Command::MM' => '6.72',
8765             'ExtUtils::Liblist' => '6.72',
8766             'ExtUtils::Liblist::Kid'=> '6.72',
8767             'ExtUtils::MM' => '6.72',
8768             'ExtUtils::MM_AIX' => '6.72',
8769             'ExtUtils::MM_Any' => '6.72',
8770             'ExtUtils::MM_BeOS' => '6.72',
8771             'ExtUtils::MM_Cygwin' => '6.72',
8772             'ExtUtils::MM_DOS' => '6.72',
8773             'ExtUtils::MM_Darwin' => '6.72',
8774             'ExtUtils::MM_MacOS' => '6.72',
8775             'ExtUtils::MM_NW5' => '6.72',
8776             'ExtUtils::MM_OS2' => '6.72',
8777             'ExtUtils::MM_QNX' => '6.72',
8778             'ExtUtils::MM_UWIN' => '6.72',
8779             'ExtUtils::MM_Unix' => '6.72',
8780             'ExtUtils::MM_VMS' => '6.72',
8781             'ExtUtils::MM_VOS' => '6.72',
8782             'ExtUtils::MM_Win32' => '6.72',
8783             'ExtUtils::MM_Win95' => '6.72',
8784             'ExtUtils::MY' => '6.72',
8785             'ExtUtils::MakeMaker' => '6.72',
8786             'ExtUtils::MakeMaker::Config'=> '6.72',
8787             'ExtUtils::Mkbootstrap' => '6.72',
8788             'ExtUtils::Mksymlists' => '6.72',
8789             'ExtUtils::ParseXS::Eval'=> '3.21',
8790             'ExtUtils::testlib' => '6.72',
8791             'File::Spec' => '3.44',
8792             'File::Spec::Cygwin' => '3.44',
8793             'File::Spec::Epoc' => '3.44',
8794             'File::Spec::Functions' => '3.44',
8795             'File::Spec::Mac' => '3.44',
8796             'File::Spec::OS2' => '3.44',
8797             'File::Spec::Unix' => '3.44',
8798             'File::Spec::VMS' => '3.44',
8799             'File::Spec::Win32' => '3.44',
8800             'Getopt::Std' => '1.10',
8801             'IO::Compress::Adapter::Bzip2'=> '2.062',
8802             'IO::Compress::Adapter::Deflate'=> '2.062',
8803             'IO::Compress::Adapter::Identity'=> '2.062',
8804             'IO::Compress::Base' => '2.062',
8805             'IO::Compress::Base::Common'=> '2.062',
8806             'IO::Compress::Bzip2' => '2.062',
8807             'IO::Compress::Deflate' => '2.062',
8808             'IO::Compress::Gzip' => '2.062',
8809             'IO::Compress::Gzip::Constants'=> '2.062',
8810             'IO::Compress::RawDeflate'=> '2.062',
8811             'IO::Compress::Zip' => '2.062',
8812             'IO::Compress::Zip::Constants'=> '2.062',
8813             'IO::Compress::Zlib::Constants'=> '2.062',
8814             'IO::Compress::Zlib::Extra'=> '2.062',
8815             'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8816             'IO::Uncompress::Adapter::Identity'=> '2.062',
8817             'IO::Uncompress::Adapter::Inflate'=> '2.062',
8818             'IO::Uncompress::AnyInflate'=> '2.062',
8819             'IO::Uncompress::AnyUncompress'=> '2.062',
8820             'IO::Uncompress::Base' => '2.062',
8821             'IO::Uncompress::Bunzip2'=> '2.062',
8822             'IO::Uncompress::Gunzip'=> '2.062',
8823             'IO::Uncompress::Inflate'=> '2.062',
8824             'IO::Uncompress::RawInflate'=> '2.062',
8825             'IO::Uncompress::Unzip' => '2.062',
8826             'IPC::Cmd' => '0.84',
8827             'IPC::Msg' => '2.04',
8828             'IPC::Open3' => '1.15',
8829             'IPC::Semaphore' => '2.04',
8830             'IPC::SharedMem' => '2.04',
8831             'IPC::SysV' => '2.04',
8832             'List::Util' => '1.31',
8833             'List::Util::XS' => '1.31',
8834             'Math::BigFloat::Trace' => '0.36',
8835             'Math::BigInt::Trace' => '0.36',
8836             'Module::Build' => '0.4007',
8837             'Module::Build::Base' => '0.4007',
8838             'Module::Build::Compat' => '0.4007',
8839             'Module::Build::Config' => '0.4007',
8840             'Module::Build::Cookbook'=> '0.4007',
8841             'Module::Build::Dumper' => '0.4007',
8842             'Module::Build::ModuleInfo'=> '0.4007',
8843             'Module::Build::Notes' => '0.4007',
8844             'Module::Build::PPMMaker'=> '0.4007',
8845             'Module::Build::Platform::Default'=> '0.4007',
8846             'Module::Build::Platform::MacOS'=> '0.4007',
8847             'Module::Build::Platform::Unix'=> '0.4007',
8848             'Module::Build::Platform::VMS'=> '0.4007',
8849             'Module::Build::Platform::VOS'=> '0.4007',
8850             'Module::Build::Platform::Windows'=> '0.4007',
8851             'Module::Build::Platform::aix'=> '0.4007',
8852             'Module::Build::Platform::cygwin'=> '0.4007',
8853             'Module::Build::Platform::darwin'=> '0.4007',
8854             'Module::Build::Platform::os2'=> '0.4007',
8855             'Module::Build::PodParser'=> '0.4007',
8856             'Module::CoreList' => '2.97',
8857             'Module::CoreList::TieHashDelta'=> '2.97',
8858             'Module::CoreList::Utils'=> '2.97',
8859             'Net::Cmd' => '2.30',
8860             'Net::Config' => '1.12',
8861             'Net::Domain' => '2.22',
8862             'Net::FTP' => '2.78',
8863             'Net::FTP::dataconn' => '0.12',
8864             'Net::NNTP' => '2.25',
8865             'Net::Netrc' => '2.14',
8866             'Net::POP3' => '2.30',
8867             'Net::SMTP' => '2.32',
8868             'PerlIO' => '1.08',
8869             'Pod::Functions' => '1.08',
8870             'Scalar::Util' => '1.31',
8871             'Socket' => '2.011',
8872             'Storable' => '2.46',
8873             'Time::HiRes' => '1.9726',
8874             'Time::Piece' => '1.22',
8875             'Time::Seconds' => '1.22',
8876             'XS::APItest' => '0.55',
8877             'bigint' => '0.36',
8878             'bignum' => '0.36',
8879             'bigrat' => '0.36',
8880             'constant' => '1.28',
8881             'diagnostics' => '1.32',
8882             'inc::latest' => '0.4007',
8883             'mro' => '1.13',
8884             'parent' => '0.226',
8885             'utf8' => '1.13',
8886             'version' => '0.9903',
8887             },
8888             removed => {
8889             'Module::Build::Platform::Amiga'=> 1,
8890             'Module::Build::Platform::EBCDIC'=> 1,
8891             'Module::Build::Platform::MPEiX'=> 1,
8892             'Module::Build::Platform::RiscOS'=> 1,
8893             }
8894             },
8895             5.019004 => {
8896             delta_from => 5.019003,
8897             changed => {
8898             'B' => '1.46',
8899             'B::Concise' => '0.99',
8900             'B::Deparse' => '1.23',
8901             'CPAN' => '2.03',
8902             'CPAN::Meta' => '2.132620',
8903             'CPAN::Meta::Converter' => '2.132620',
8904             'CPAN::Meta::Feature' => '2.132620',
8905             'CPAN::Meta::History' => '2.132620',
8906             'CPAN::Meta::Prereqs' => '2.132620',
8907             'CPAN::Meta::Requirements'=> '2.123',
8908             'CPAN::Meta::Spec' => '2.132620',
8909             'CPAN::Meta::Validator' => '2.132620',
8910             'Carp' => '1.32',
8911             'Carp::Heavy' => '1.32',
8912             'Config' => '5.019004',
8913             'Data::Dumper' => '2.149',
8914             'Devel::Peek' => '1.14',
8915             'DynaLoader' => '1.20',
8916             'Encode' => '2.55',
8917             'Encode::Alias' => '2.18',
8918             'Encode::CN::HZ' => '2.07',
8919             'Encode::Encoder' => '2.03',
8920             'Encode::Encoding' => '2.07',
8921             'Encode::GSM0338' => '2.05',
8922             'Encode::Guess' => '2.06',
8923             'Encode::JP::JIS7' => '2.05',
8924             'Encode::KR::2022_KR' => '2.03',
8925             'Encode::MIME::Header' => '2.15',
8926             'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8927             'Encode::Unicode' => '2.09',
8928             'Encode::Unicode::UTF7' => '2.08',
8929             'Errno' => '1.20',
8930             'Exporter' => '5.70',
8931             'Exporter::Heavy' => '5.70',
8932             'ExtUtils::CBuilder' => '0.280212',
8933             'ExtUtils::CBuilder::Base'=> '0.280212',
8934             'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8935             'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8936             'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8937             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8938             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8939             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8940             'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8941             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8942             'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8943             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8944             'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8945             'ExtUtils::Command' => '1.18',
8946             'ExtUtils::Command::MM' => '6.76',
8947             'ExtUtils::Liblist' => '6.76',
8948             'ExtUtils::Liblist::Kid'=> '6.76',
8949             'ExtUtils::MM' => '6.76',
8950             'ExtUtils::MM_AIX' => '6.76',
8951             'ExtUtils::MM_Any' => '6.76',
8952             'ExtUtils::MM_BeOS' => '6.76',
8953             'ExtUtils::MM_Cygwin' => '6.76',
8954             'ExtUtils::MM_DOS' => '6.76',
8955             'ExtUtils::MM_Darwin' => '6.76',
8956             'ExtUtils::MM_MacOS' => '6.76',
8957             'ExtUtils::MM_NW5' => '6.76',
8958             'ExtUtils::MM_OS2' => '6.76',
8959             'ExtUtils::MM_QNX' => '6.76',
8960             'ExtUtils::MM_UWIN' => '6.76',
8961             'ExtUtils::MM_Unix' => '6.76',
8962             'ExtUtils::MM_VMS' => '6.76',
8963             'ExtUtils::MM_VOS' => '6.76',
8964             'ExtUtils::MM_Win32' => '6.76',
8965             'ExtUtils::MM_Win95' => '6.76',
8966             'ExtUtils::MY' => '6.76',
8967             'ExtUtils::MakeMaker' => '6.76',
8968             'ExtUtils::MakeMaker::Config'=> '6.76',
8969             'ExtUtils::Mkbootstrap' => '6.76',
8970             'ExtUtils::Mksymlists' => '6.76',
8971             'ExtUtils::ParseXS' => '3.23',
8972             'ExtUtils::ParseXS::Constants'=> '3.23',
8973             'ExtUtils::ParseXS::CountLines'=> '3.23',
8974             'ExtUtils::ParseXS::Eval'=> '3.23',
8975             'ExtUtils::ParseXS::Utilities'=> '3.23',
8976             'ExtUtils::Typemaps' => '3.23',
8977             'ExtUtils::Typemaps::Cmd'=> '3.23',
8978             'ExtUtils::Typemaps::InputMap'=> '3.23',
8979             'ExtUtils::Typemaps::OutputMap'=> '3.23',
8980             'ExtUtils::Typemaps::Type'=> '3.23',
8981             'ExtUtils::testlib' => '6.76',
8982             'Fatal' => '2.21',
8983             'File::Copy' => '2.28',
8984             'File::Find' => '1.25',
8985             'File::Glob' => '1.21',
8986             'FileCache' => '1.09',
8987             'HTTP::Tiny' => '0.035',
8988             'Hash::Util::FieldHash' => '1.13',
8989             'I18N::LangTags' => '0.40',
8990             'IO' => '1.29',
8991             'IO::Socket' => '1.37',
8992             'IPC::Open3' => '1.16',
8993             'JSON::PP' => '2.27202_01',
8994             'List::Util' => '1.32',
8995             'List::Util::XS' => '1.32',
8996             'Locale::Codes' => '3.27',
8997             'Locale::Codes::Constants'=> '3.27',
8998             'Locale::Codes::Country'=> '3.27',
8999             'Locale::Codes::Country_Codes'=> '3.27',
9000             'Locale::Codes::Country_Retired'=> '3.27',
9001             'Locale::Codes::Currency'=> '3.27',
9002             'Locale::Codes::Currency_Codes'=> '3.27',
9003             'Locale::Codes::Currency_Retired'=> '3.27',
9004             'Locale::Codes::LangExt'=> '3.27',
9005             'Locale::Codes::LangExt_Codes'=> '3.27',
9006             'Locale::Codes::LangExt_Retired'=> '3.27',
9007             'Locale::Codes::LangFam'=> '3.27',
9008             'Locale::Codes::LangFam_Codes'=> '3.27',
9009             'Locale::Codes::LangFam_Retired'=> '3.27',
9010             'Locale::Codes::LangVar'=> '3.27',
9011             'Locale::Codes::LangVar_Codes'=> '3.27',
9012             'Locale::Codes::LangVar_Retired'=> '3.27',
9013             'Locale::Codes::Language'=> '3.27',
9014             'Locale::Codes::Language_Codes'=> '3.27',
9015             'Locale::Codes::Language_Retired'=> '3.27',
9016             'Locale::Codes::Script' => '3.27',
9017             'Locale::Codes::Script_Codes'=> '3.27',
9018             'Locale::Codes::Script_Retired'=> '3.27',
9019             'Locale::Country' => '3.27',
9020             'Locale::Currency' => '3.27',
9021             'Locale::Language' => '3.27',
9022             'Locale::Script' => '3.27',
9023             'Math::BigFloat' => '1.9991',
9024             'Math::BigInt' => '1.9993',
9025             'Math::BigInt::FastCalc'=> '0.31',
9026             'Module::CoreList' => '2.99',
9027             'Module::CoreList::TieHashDelta'=> '2.99',
9028             'Module::CoreList::Utils'=> '2.99',
9029             'Module::Load::Conditional'=> '0.58',
9030             'Module::Metadata' => '1.000018',
9031             'Opcode' => '1.26',
9032             'POSIX' => '1.35',
9033             'Parse::CPAN::Meta' => '1.4407',
9034             'Perl::OSType' => '1.005',
9035             'Pod::Html' => '1.21',
9036             'Scalar::Util' => '1.32',
9037             'Socket' => '2.012',
9038             'Storable' => '2.47',
9039             'Term::ReadLine' => '1.14',
9040             'Test::Builder' => '0.98_06',
9041             'Test::Builder::Module' => '0.98_06',
9042             'Test::More' => '0.98_06',
9043             'Test::Simple' => '0.98_06',
9044             'Time::Piece' => '1.23',
9045             'Time::Seconds' => '1.23',
9046             'Unicode::Collate' => '0.99',
9047             'Unicode::UCD' => '0.54',
9048             'XS::APItest' => '0.56',
9049             'XS::Typemap' => '0.11',
9050             '_charnames' => '1.39',
9051             'autodie' => '2.21',
9052             'autodie::exception' => '2.21',
9053             'autodie::exception::system'=> '2.21',
9054             'autodie::hints' => '2.21',
9055             'autodie::skip' => '2.21',
9056             'charnames' => '1.39',
9057             'diagnostics' => '1.33',
9058             'mro' => '1.14',
9059             'parent' => '0.228',
9060             'perlfaq' => '5.0150044',
9061             're' => '0.26',
9062             'version' => '0.9904',
9063             'warnings' => '1.19',
9064             },
9065             removed => {
9066             }
9067             },
9068             5.019005 => {
9069             delta_from => 5.019004,
9070             changed => {
9071             'App::Prove' => '3.29',
9072             'App::Prove::State' => '3.29',
9073             'App::Prove::State::Result'=> '3.29',
9074             'App::Prove::State::Result::Test'=> '3.29',
9075             'CPAN::Meta' => '2.132830',
9076             'CPAN::Meta::Converter' => '2.132830',
9077             'CPAN::Meta::Feature' => '2.132830',
9078             'CPAN::Meta::History' => '2.132830',
9079             'CPAN::Meta::Prereqs' => '2.132830',
9080             'CPAN::Meta::Requirements'=> '2.125',
9081             'CPAN::Meta::Spec' => '2.132830',
9082             'CPAN::Meta::Validator' => '2.132830',
9083             'CPAN::Meta::YAML' => '0.010',
9084             'Config' => '5.019005',
9085             'Cwd' => '3.45',
9086             'ExtUtils::Command::MM' => '6.80',
9087             'ExtUtils::Install' => '1.61',
9088             'ExtUtils::Liblist' => '6.80',
9089             'ExtUtils::Liblist::Kid'=> '6.80',
9090             'ExtUtils::MM' => '6.80',
9091             'ExtUtils::MM_AIX' => '6.80',
9092             'ExtUtils::MM_Any' => '6.80',
9093             'ExtUtils::MM_BeOS' => '6.80',
9094             'ExtUtils::MM_Cygwin' => '6.80',
9095             'ExtUtils::MM_DOS' => '6.80',
9096             'ExtUtils::MM_Darwin' => '6.80',
9097             'ExtUtils::MM_MacOS' => '6.80',
9098             'ExtUtils::MM_NW5' => '6.80',
9099             'ExtUtils::MM_OS2' => '6.80',
9100             'ExtUtils::MM_QNX' => '6.80',
9101             'ExtUtils::MM_UWIN' => '6.80',
9102             'ExtUtils::MM_Unix' => '6.80',
9103             'ExtUtils::MM_VMS' => '6.80',
9104             'ExtUtils::MM_VOS' => '6.80',
9105             'ExtUtils::MM_Win32' => '6.80',
9106             'ExtUtils::MM_Win95' => '6.80',
9107             'ExtUtils::MY' => '6.80',
9108             'ExtUtils::MakeMaker' => '6.80',
9109             'ExtUtils::MakeMaker::Config'=> '6.80',
9110             'ExtUtils::Mkbootstrap' => '6.80',
9111             'ExtUtils::Mksymlists' => '6.80',
9112             'ExtUtils::testlib' => '6.80',
9113             'Fatal' => '2.22',
9114             'File::Fetch' => '0.44',
9115             'File::Glob' => '1.22',
9116             'File::Spec' => '3.45',
9117             'File::Spec::Cygwin' => '3.45',
9118             'File::Spec::Epoc' => '3.45',
9119             'File::Spec::Functions' => '3.45',
9120             'File::Spec::Mac' => '3.45',
9121             'File::Spec::OS2' => '3.45',
9122             'File::Spec::Unix' => '3.45',
9123             'File::Spec::VMS' => '3.45',
9124             'File::Spec::Win32' => '3.45',
9125             'File::Temp' => '0.2304',
9126             'Getopt::Long' => '2.42',
9127             'HTTP::Tiny' => '0.036',
9128             'IPC::Cmd' => '0.84_01',
9129             'JSON::PP' => '2.27203',
9130             'List::Util' => '1.35',
9131             'List::Util::XS' => '1.35',
9132             'Module::CoreList' => '3.00',
9133             'Module::CoreList::TieHashDelta'=> '3.00',
9134             'Module::CoreList::Utils'=> '3.00',
9135             'Module::Metadata' => '1.000019',
9136             'Parse::CPAN::Meta' => '1.4409',
9137             'Perl::OSType' => '1.006',
9138             'PerlIO::scalar' => '0.17',
9139             'Pod::Man' => '2.28',
9140             'Pod::Text' => '3.18',
9141             'Pod::Text::Termcap' => '2.08',
9142             'Scalar::Util' => '1.35',
9143             'TAP::Base' => '3.29',
9144             'TAP::Formatter::Base' => '3.29',
9145             'TAP::Formatter::Color' => '3.29',
9146             'TAP::Formatter::Console'=> '3.29',
9147             'TAP::Formatter::Console::ParallelSession'=> '3.29',
9148             'TAP::Formatter::Console::Session'=> '3.29',
9149             'TAP::Formatter::File' => '3.29',
9150             'TAP::Formatter::File::Session'=> '3.29',
9151             'TAP::Formatter::Session'=> '3.29',
9152             'TAP::Harness' => '3.29',
9153             'TAP::Harness::Env' => '3.29',
9154             'TAP::Object' => '3.29',
9155             'TAP::Parser' => '3.29',
9156             'TAP::Parser::Aggregator'=> '3.29',
9157             'TAP::Parser::Grammar' => '3.29',
9158             'TAP::Parser::Iterator' => '3.29',
9159             'TAP::Parser::Iterator::Array'=> '3.29',
9160             'TAP::Parser::Iterator::Process'=> '3.29',
9161             'TAP::Parser::Iterator::Stream'=> '3.29',
9162             'TAP::Parser::IteratorFactory'=> '3.29',
9163             'TAP::Parser::Multiplexer'=> '3.29',
9164             'TAP::Parser::Result' => '3.29',
9165             'TAP::Parser::Result::Bailout'=> '3.29',
9166             'TAP::Parser::Result::Comment'=> '3.29',
9167             'TAP::Parser::Result::Plan'=> '3.29',
9168             'TAP::Parser::Result::Pragma'=> '3.29',
9169             'TAP::Parser::Result::Test'=> '3.29',
9170             'TAP::Parser::Result::Unknown'=> '3.29',
9171             'TAP::Parser::Result::Version'=> '3.29',
9172             'TAP::Parser::Result::YAML'=> '3.29',
9173             'TAP::Parser::ResultFactory'=> '3.29',
9174             'TAP::Parser::Scheduler'=> '3.29',
9175             'TAP::Parser::Scheduler::Job'=> '3.29',
9176             'TAP::Parser::Scheduler::Spinner'=> '3.29',
9177             'TAP::Parser::Source' => '3.29',
9178             'TAP::Parser::SourceHandler'=> '3.29',
9179             'TAP::Parser::SourceHandler::Executable'=> '3.29',
9180             'TAP::Parser::SourceHandler::File'=> '3.29',
9181             'TAP::Parser::SourceHandler::Handle'=> '3.29',
9182             'TAP::Parser::SourceHandler::Perl'=> '3.29',
9183             'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9184             'TAP::Parser::YAMLish::Reader'=> '3.29',
9185             'TAP::Parser::YAMLish::Writer'=> '3.29',
9186             'Test::Builder' => '0.99',
9187             'Test::Builder::Module' => '0.99',
9188             'Test::Builder::Tester' => '1.23_002',
9189             'Test::Builder::Tester::Color'=> '1.23_002',
9190             'Test::Harness' => '3.29',
9191             'Test::More' => '0.99',
9192             'Test::Simple' => '0.99',
9193             'Unicode' => '6.3.0',
9194             'Unicode::Normalize' => '1.17',
9195             'Unicode::UCD' => '0.55',
9196             'attributes' => '0.22',
9197             'autodie' => '2.22',
9198             'autodie::exception' => '2.22',
9199             'autodie::exception::system'=> '2.22',
9200             'autodie::hints' => '2.22',
9201             'autodie::skip' => '2.22',
9202             'feature' => '1.34',
9203             'threads' => '1.89',
9204             'warnings' => '1.20',
9205             },
9206             removed => {
9207             'TAP::Parser::Utils' => 1,
9208             }
9209             },
9210             5.019006 => {
9211             delta_from => 5.019005,
9212             changed => {
9213             'App::Prove' => '3.30',
9214             'App::Prove::State' => '3.30',
9215             'App::Prove::State::Result'=> '3.30',
9216             'App::Prove::State::Result::Test'=> '3.30',
9217             'Archive::Tar' => '1.96',
9218             'Archive::Tar::Constant'=> '1.96',
9219             'Archive::Tar::File' => '1.96',
9220             'AutoLoader' => '5.74',
9221             'B' => '1.47',
9222             'B::Concise' => '0.991',
9223             'B::Debug' => '1.19',
9224             'B::Deparse' => '1.24',
9225             'Benchmark' => '1.18',
9226             'Compress::Raw::Bzip2' => '2.063',
9227             'Compress::Raw::Zlib' => '2.063',
9228             'Compress::Zlib' => '2.063',
9229             'Config' => '5.019006',
9230             'DB_File' => '1.831',
9231             'Devel::Peek' => '1.15',
9232             'DynaLoader' => '1.21',
9233             'Errno' => '1.20_01',
9234             'ExtUtils::Command::MM' => '6.82',
9235             'ExtUtils::Liblist' => '6.82',
9236             'ExtUtils::Liblist::Kid'=> '6.82',
9237             'ExtUtils::MM' => '6.82',
9238             'ExtUtils::MM_AIX' => '6.82',
9239             'ExtUtils::MM_Any' => '6.82',
9240             'ExtUtils::MM_BeOS' => '6.82',
9241             'ExtUtils::MM_Cygwin' => '6.82',
9242             'ExtUtils::MM_DOS' => '6.82',
9243             'ExtUtils::MM_Darwin' => '6.82',
9244             'ExtUtils::MM_MacOS' => '6.82',
9245             'ExtUtils::MM_NW5' => '6.82',
9246             'ExtUtils::MM_OS2' => '6.82',
9247             'ExtUtils::MM_QNX' => '6.82',
9248             'ExtUtils::MM_UWIN' => '6.82',
9249             'ExtUtils::MM_Unix' => '6.82',
9250             'ExtUtils::MM_VMS' => '6.82',
9251             'ExtUtils::MM_VOS' => '6.82',
9252             'ExtUtils::MM_Win32' => '6.82',
9253             'ExtUtils::MM_Win95' => '6.82',
9254             'ExtUtils::MY' => '6.82',
9255             'ExtUtils::MakeMaker' => '6.82',
9256             'ExtUtils::MakeMaker::Config'=> '6.82',
9257             'ExtUtils::Mkbootstrap' => '6.82',
9258             'ExtUtils::Mksymlists' => '6.82',
9259             'ExtUtils::testlib' => '6.82',
9260             'File::DosGlob' => '1.12',
9261             'File::Find' => '1.26',
9262             'File::Glob' => '1.23',
9263             'HTTP::Tiny' => '0.038',
9264             'IO' => '1.30',
9265             'IO::Compress::Adapter::Bzip2'=> '2.063',
9266             'IO::Compress::Adapter::Deflate'=> '2.063',
9267             'IO::Compress::Adapter::Identity'=> '2.063',
9268             'IO::Compress::Base' => '2.063',
9269             'IO::Compress::Base::Common'=> '2.063',
9270             'IO::Compress::Bzip2' => '2.063',
9271             'IO::Compress::Deflate' => '2.063',
9272             'IO::Compress::Gzip' => '2.063',
9273             'IO::Compress::Gzip::Constants'=> '2.063',
9274             'IO::Compress::RawDeflate'=> '2.063',
9275             'IO::Compress::Zip' => '2.063',
9276             'IO::Compress::Zip::Constants'=> '2.063',
9277             'IO::Compress::Zlib::Constants'=> '2.063',
9278             'IO::Compress::Zlib::Extra'=> '2.063',
9279             'IO::Select' => '1.22',
9280             'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9281             'IO::Uncompress::Adapter::Identity'=> '2.063',
9282             'IO::Uncompress::Adapter::Inflate'=> '2.063',
9283             'IO::Uncompress::AnyInflate'=> '2.063',
9284             'IO::Uncompress::AnyUncompress'=> '2.063',
9285             'IO::Uncompress::Base' => '2.063',
9286             'IO::Uncompress::Bunzip2'=> '2.063',
9287             'IO::Uncompress::Gunzip'=> '2.063',
9288             'IO::Uncompress::Inflate'=> '2.063',
9289             'IO::Uncompress::RawInflate'=> '2.063',
9290             'IO::Uncompress::Unzip' => '2.063',
9291             'IPC::Cmd' => '0.90',
9292             'Locale::Maketext' => '1.25',
9293             'Module::Build' => '0.4202',
9294             'Module::Build::Base' => '0.4202',
9295             'Module::Build::Compat' => '0.4202',
9296             'Module::Build::Config' => '0.4202',
9297             'Module::Build::Cookbook'=> '0.4202',
9298             'Module::Build::Dumper' => '0.4202',
9299             'Module::Build::ModuleInfo'=> '0.4202',
9300             'Module::Build::Notes' => '0.4202',
9301             'Module::Build::PPMMaker'=> '0.4202',
9302             'Module::Build::Platform::Default'=> '0.4202',
9303             'Module::Build::Platform::MacOS'=> '0.4202',
9304             'Module::Build::Platform::Unix'=> '0.4202',
9305             'Module::Build::Platform::VMS'=> '0.4202',
9306             'Module::Build::Platform::VOS'=> '0.4202',
9307             'Module::Build::Platform::Windows'=> '0.4202',
9308             'Module::Build::Platform::aix'=> '0.4202',
9309             'Module::Build::Platform::cygwin'=> '0.4202',
9310             'Module::Build::Platform::darwin'=> '0.4202',
9311             'Module::Build::Platform::os2'=> '0.4202',
9312             'Module::Build::PodParser'=> '0.4202',
9313             'Module::CoreList' => '3.01',
9314             'Module::CoreList::TieHashDelta'=> '3.01',
9315             'Module::CoreList::Utils'=> '3.01',
9316             'Opcode' => '1.27',
9317             'POSIX' => '1.36',
9318             'Package::Constants' => '0.04',
9319             'PerlIO::scalar' => '0.18',
9320             'PerlIO::via' => '0.13',
9321             'SDBM_File' => '1.10',
9322             'Socket' => '2.013',
9323             'TAP::Base' => '3.30',
9324             'TAP::Formatter::Base' => '3.30',
9325             'TAP::Formatter::Color' => '3.30',
9326             'TAP::Formatter::Console'=> '3.30',
9327             'TAP::Formatter::Console::ParallelSession'=> '3.30',
9328             'TAP::Formatter::Console::Session'=> '3.30',
9329             'TAP::Formatter::File' => '3.30',
9330             'TAP::Formatter::File::Session'=> '3.30',
9331             'TAP::Formatter::Session'=> '3.30',
9332             'TAP::Harness' => '3.30',
9333             'TAP::Harness::Env' => '3.30',
9334             'TAP::Object' => '3.30',
9335             'TAP::Parser' => '3.30',
9336             'TAP::Parser::Aggregator'=> '3.30',
9337             'TAP::Parser::Grammar' => '3.30',
9338             'TAP::Parser::Iterator' => '3.30',
9339             'TAP::Parser::Iterator::Array'=> '3.30',
9340             'TAP::Parser::Iterator::Process'=> '3.30',
9341             'TAP::Parser::Iterator::Stream'=> '3.30',
9342             'TAP::Parser::IteratorFactory'=> '3.30',
9343             'TAP::Parser::Multiplexer'=> '3.30',
9344             'TAP::Parser::Result' => '3.30',
9345             'TAP::Parser::Result::Bailout'=> '3.30',
9346             'TAP::Parser::Result::Comment'=> '3.30',
9347             'TAP::Parser::Result::Plan'=> '3.30',
9348             'TAP::Parser::Result::Pragma'=> '3.30',
9349             'TAP::Parser::Result::Test'=> '3.30',
9350             'TAP::Parser::Result::Unknown'=> '3.30',
9351             'TAP::Parser::Result::Version'=> '3.30',
9352             'TAP::Parser::Result::YAML'=> '3.30',
9353             'TAP::Parser::ResultFactory'=> '3.30',
9354             'TAP::Parser::Scheduler'=> '3.30',
9355             'TAP::Parser::Scheduler::Job'=> '3.30',
9356             'TAP::Parser::Scheduler::Spinner'=> '3.30',
9357             'TAP::Parser::Source' => '3.30',
9358             'TAP::Parser::SourceHandler'=> '3.30',
9359             'TAP::Parser::SourceHandler::Executable'=> '3.30',
9360             'TAP::Parser::SourceHandler::File'=> '3.30',
9361             'TAP::Parser::SourceHandler::Handle'=> '3.30',
9362             'TAP::Parser::SourceHandler::Perl'=> '3.30',
9363             'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9364             'TAP::Parser::YAMLish::Reader'=> '3.30',
9365             'TAP::Parser::YAMLish::Writer'=> '3.30',
9366             'Term::Cap' => '1.15',
9367             'Test::Builder' => '1.001002',
9368             'Test::Builder::Module' => '1.001002',
9369             'Test::Harness' => '3.30',
9370             'Test::More' => '1.001002',
9371             'Test::Simple' => '1.001002',
9372             'Tie::StdHandle' => '4.4',
9373             'Unicode::Collate' => '1.02',
9374             'Unicode::Collate::CJK::Korean'=> '1.02',
9375             'Unicode::Collate::Locale'=> '1.02',
9376             'XS::APItest' => '0.57',
9377             'XS::Typemap' => '0.12',
9378             'arybase' => '0.07',
9379             'bignum' => '0.37',
9380             'constant' => '1.29',
9381             'fields' => '2.17',
9382             'inc::latest' => '0.4202',
9383             'threads' => '1.90',
9384             'threads::shared' => '1.45',
9385             },
9386             removed => {
9387             }
9388             },
9389             5.019007 => {
9390             delta_from => 5.019006,
9391             changed => {
9392             'CGI' => '3.64',
9393             'CGI::Apache' => '1.02',
9394             'CGI::Carp' => '3.64',
9395             'CGI::Cookie' => '1.31',
9396             'CGI::Fast' => '1.10',
9397             'CGI::Pretty' => '3.64',
9398             'CGI::Push' => '1.06',
9399             'CGI::Switch' => '1.02',
9400             'CGI::Util' => '3.64',
9401             'CPAN::Meta' => '2.133380',
9402             'CPAN::Meta::Converter' => '2.133380',
9403             'CPAN::Meta::Feature' => '2.133380',
9404             'CPAN::Meta::History' => '2.133380',
9405             'CPAN::Meta::Prereqs' => '2.133380',
9406             'CPAN::Meta::Spec' => '2.133380',
9407             'CPAN::Meta::Validator' => '2.133380',
9408             'Config' => '5.019007',
9409             'Data::Dumper' => '2.150',
9410             'DynaLoader' => '1.22',
9411             'ExtUtils::Command::MM' => '6.84',
9412             'ExtUtils::Liblist' => '6.84',
9413             'ExtUtils::Liblist::Kid'=> '6.84',
9414             'ExtUtils::MM' => '6.84',
9415             'ExtUtils::MM_AIX' => '6.84',
9416             'ExtUtils::MM_Any' => '6.84',
9417             'ExtUtils::MM_BeOS' => '6.84',
9418             'ExtUtils::MM_Cygwin' => '6.84',
9419             'ExtUtils::MM_DOS' => '6.84',
9420             'ExtUtils::MM_Darwin' => '6.84',
9421             'ExtUtils::MM_MacOS' => '6.84',
9422             'ExtUtils::MM_NW5' => '6.84',
9423             'ExtUtils::MM_OS2' => '6.84',
9424             'ExtUtils::MM_QNX' => '6.84',
9425             'ExtUtils::MM_UWIN' => '6.84',
9426             'ExtUtils::MM_Unix' => '6.84',
9427             'ExtUtils::MM_VMS' => '6.84',
9428             'ExtUtils::MM_VOS' => '6.84',
9429             'ExtUtils::MM_Win32' => '6.84',
9430             'ExtUtils::MM_Win95' => '6.84',
9431             'ExtUtils::MY' => '6.84',
9432             'ExtUtils::MakeMaker' => '6.84',
9433             'ExtUtils::MakeMaker::Config'=> '6.84',
9434             'ExtUtils::Mkbootstrap' => '6.84',
9435             'ExtUtils::Mksymlists' => '6.84',
9436             'ExtUtils::testlib' => '6.84',
9437             'File::Fetch' => '0.46',
9438             'HTTP::Tiny' => '0.039',
9439             'Locale::Codes' => '3.28',
9440             'Locale::Codes::Constants'=> '3.28',
9441             'Locale::Codes::Country'=> '3.28',
9442             'Locale::Codes::Country_Codes'=> '3.28',
9443             'Locale::Codes::Country_Retired'=> '3.28',
9444             'Locale::Codes::Currency'=> '3.28',
9445             'Locale::Codes::Currency_Codes'=> '3.28',
9446             'Locale::Codes::Currency_Retired'=> '3.28',
9447             'Locale::Codes::LangExt'=> '3.28',
9448             'Locale::Codes::LangExt_Codes'=> '3.28',
9449             'Locale::Codes::LangExt_Retired'=> '3.28',
9450             'Locale::Codes::LangFam'=> '3.28',
9451             'Locale::Codes::LangFam_Codes'=> '3.28',
9452             'Locale::Codes::LangFam_Retired'=> '3.28',
9453             'Locale::Codes::LangVar'=> '3.28',
9454             'Locale::Codes::LangVar_Codes'=> '3.28',
9455             'Locale::Codes::LangVar_Retired'=> '3.28',
9456             'Locale::Codes::Language'=> '3.28',
9457             'Locale::Codes::Language_Codes'=> '3.28',
9458             'Locale::Codes::Language_Retired'=> '3.28',
9459             'Locale::Codes::Script' => '3.28',
9460             'Locale::Codes::Script_Codes'=> '3.28',
9461             'Locale::Codes::Script_Retired'=> '3.28',
9462             'Locale::Country' => '3.28',
9463             'Locale::Currency' => '3.28',
9464             'Locale::Language' => '3.28',
9465             'Locale::Script' => '3.28',
9466             'Module::Build' => '0.4203',
9467             'Module::Build::Base' => '0.4203',
9468             'Module::Build::Compat' => '0.4203',
9469             'Module::Build::Config' => '0.4203',
9470             'Module::Build::Cookbook'=> '0.4203',
9471             'Module::Build::Dumper' => '0.4203',
9472             'Module::Build::ModuleInfo'=> '0.4203',
9473             'Module::Build::Notes' => '0.4203',
9474             'Module::Build::PPMMaker'=> '0.4203',
9475             'Module::Build::Platform::Default'=> '0.4203',
9476             'Module::Build::Platform::MacOS'=> '0.4203',
9477             'Module::Build::Platform::Unix'=> '0.4203',
9478             'Module::Build::Platform::VMS'=> '0.4203',
9479             'Module::Build::Platform::VOS'=> '0.4203',
9480             'Module::Build::Platform::Windows'=> '0.4203',
9481             'Module::Build::Platform::aix'=> '0.4203',
9482             'Module::Build::Platform::cygwin'=> '0.4203',
9483             'Module::Build::Platform::darwin'=> '0.4203',
9484             'Module::Build::Platform::os2'=> '0.4203',
9485             'Module::Build::PodParser'=> '0.4203',
9486             'Module::CoreList' => '3.02',
9487             'Module::CoreList::TieHashDelta'=> '3.02',
9488             'Module::CoreList::Utils'=> '3.02',
9489             'POSIX' => '1.37',
9490             'PerlIO::encoding' => '0.17',
9491             'PerlIO::via' => '0.14',
9492             'SDBM_File' => '1.11',
9493             'Storable' => '2.48',
9494             'Time::Piece' => '1.24',
9495             'Time::Seconds' => '1.24',
9496             'Unicode::Collate' => '1.04',
9497             'Win32' => '0.48',
9498             'XS::APItest' => '0.58',
9499             'base' => '2.20',
9500             'constant' => '1.30',
9501             'inc::latest' => '0.4203',
9502             'threads' => '1.91',
9503             },
9504             removed => {
9505             }
9506             },
9507             5.019008 => {
9508             delta_from => 5.019007,
9509             changed => {
9510             'Config' => '5.019008',
9511             'DynaLoader' => '1.24',
9512             'Encode' => '2.57',
9513             'Errno' => '1.20_02',
9514             'ExtUtils::CBuilder' => '0.280213',
9515             'ExtUtils::CBuilder::Base'=> '0.280213',
9516             'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9517             'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9518             'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9519             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9520             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9521             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9522             'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9523             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9524             'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9525             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9526             'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9527             'ExtUtils::Command::MM' => '6.86',
9528             'ExtUtils::Liblist' => '6.86',
9529             'ExtUtils::Liblist::Kid'=> '6.86',
9530             'ExtUtils::MM' => '6.86',
9531             'ExtUtils::MM_AIX' => '6.86',
9532             'ExtUtils::MM_Any' => '6.86',
9533             'ExtUtils::MM_BeOS' => '6.86',
9534             'ExtUtils::MM_Cygwin' => '6.86',
9535             'ExtUtils::MM_DOS' => '6.86',
9536             'ExtUtils::MM_Darwin' => '6.86',
9537             'ExtUtils::MM_MacOS' => '6.86',
9538             'ExtUtils::MM_NW5' => '6.86',
9539             'ExtUtils::MM_OS2' => '6.86',
9540             'ExtUtils::MM_QNX' => '6.86',
9541             'ExtUtils::MM_UWIN' => '6.86',
9542             'ExtUtils::MM_Unix' => '6.86',
9543             'ExtUtils::MM_VMS' => '6.86',
9544             'ExtUtils::MM_VOS' => '6.86',
9545             'ExtUtils::MM_Win32' => '6.86',
9546             'ExtUtils::MM_Win95' => '6.86',
9547             'ExtUtils::MY' => '6.86',
9548             'ExtUtils::MakeMaker' => '6.86',
9549             'ExtUtils::MakeMaker::Config'=> '6.86',
9550             'ExtUtils::Mkbootstrap' => '6.86',
9551             'ExtUtils::Mksymlists' => '6.86',
9552             'ExtUtils::testlib' => '6.86',
9553             'File::Copy' => '2.29',
9554             'Hash::Util::FieldHash' => '1.14',
9555             'IO::Socket::IP' => '0.26',
9556             'IO::Socket::UNIX' => '1.26',
9557             'List::Util' => '1.36',
9558             'List::Util::XS' => '1.36',
9559             'Module::Build' => '0.4204',
9560             'Module::Build::Base' => '0.4204',
9561             'Module::Build::Compat' => '0.4204',
9562             'Module::Build::Config' => '0.4204',
9563             'Module::Build::Cookbook'=> '0.4204',
9564             'Module::Build::Dumper' => '0.4204',
9565             'Module::Build::ModuleInfo'=> '0.4204',
9566             'Module::Build::Notes' => '0.4204',
9567             'Module::Build::PPMMaker'=> '0.4204',
9568             'Module::Build::Platform::Default'=> '0.4204',
9569             'Module::Build::Platform::MacOS'=> '0.4204',
9570             'Module::Build::Platform::Unix'=> '0.4204',
9571             'Module::Build::Platform::VMS'=> '0.4204',
9572             'Module::Build::Platform::VOS'=> '0.4204',
9573             'Module::Build::Platform::Windows'=> '0.4204',
9574             'Module::Build::Platform::aix'=> '0.4204',
9575             'Module::Build::Platform::cygwin'=> '0.4204',
9576             'Module::Build::Platform::darwin'=> '0.4204',
9577             'Module::Build::Platform::os2'=> '0.4204',
9578             'Module::Build::PodParser'=> '0.4204',
9579             'Module::CoreList' => '3.04',
9580             'Module::CoreList::TieHashDelta'=> '3.04',
9581             'Module::CoreList::Utils'=> '3.04',
9582             'Module::Load' => '0.28',
9583             'Module::Load::Conditional'=> '0.60',
9584             'Net::Config' => '1.13',
9585             'Net::FTP::A' => '1.19',
9586             'POSIX' => '1.38_01',
9587             'Perl::OSType' => '1.007',
9588             'PerlIO::encoding' => '0.18',
9589             'Pod::Perldoc' => '3.21',
9590             'Pod::Perldoc::BaseTo' => '3.21',
9591             'Pod::Perldoc::GetOptsOO'=> '3.21',
9592             'Pod::Perldoc::ToANSI' => '3.21',
9593             'Pod::Perldoc::ToChecker'=> '3.21',
9594             'Pod::Perldoc::ToMan' => '3.21',
9595             'Pod::Perldoc::ToNroff' => '3.21',
9596             'Pod::Perldoc::ToPod' => '3.21',
9597             'Pod::Perldoc::ToRtf' => '3.21',
9598             'Pod::Perldoc::ToTerm' => '3.21',
9599             'Pod::Perldoc::ToText' => '3.21',
9600             'Pod::Perldoc::ToTk' => '3.21',
9601             'Pod::Perldoc::ToXml' => '3.21',
9602             'Scalar::Util' => '1.36',
9603             'Time::Piece' => '1.27',
9604             'Time::Seconds' => '1.27',
9605             'Unicode::UCD' => '0.57',
9606             'XS::APItest' => '0.59',
9607             'XSLoader' => '0.17',
9608             'base' => '2.21',
9609             'constant' => '1.31',
9610             'inc::latest' => '0.4204',
9611             'threads::shared' => '1.46',
9612             'version' => '0.9907',
9613             'version::regex' => '0.9907',
9614             'version::vpp' => '0.9907',
9615             'warnings' => '1.21',
9616             },
9617             removed => {
9618             }
9619             },
9620             5.019009 => {
9621             delta_from => 5.019008,
9622             changed => {
9623             'B' => '1.48',
9624             'B::Concise' => '0.992',
9625             'B::Deparse' => '1.25',
9626             'CGI' => '3.65',
9627             'CPAN::Meta::YAML' => '0.011',
9628             'Compress::Raw::Bzip2' => '2.064',
9629             'Compress::Raw::Zlib' => '2.065',
9630             'Compress::Zlib' => '2.064',
9631             'Config' => '5.019009',
9632             'Config::Perl::V' => '0.20',
9633             'Cwd' => '3.47',
9634             'Devel::Peek' => '1.16',
9635             'Digest::SHA' => '5.87',
9636             'DynaLoader' => '1.25',
9637             'English' => '1.09',
9638             'ExtUtils::CBuilder' => '0.280216',
9639             'ExtUtils::CBuilder::Base'=> '0.280216',
9640             'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9641             'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9642             'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9643             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9644             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9645             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9646             'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9647             'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9648             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9649             'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9650             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9651             'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9652             'ExtUtils::Command::MM' => '6.88',
9653             'ExtUtils::Embed' => '1.32',
9654             'ExtUtils::Install' => '1.62',
9655             'ExtUtils::Installed' => '1.999004',
9656             'ExtUtils::Liblist' => '6.88',
9657             'ExtUtils::Liblist::Kid'=> '6.88',
9658             'ExtUtils::MM' => '6.88',
9659             'ExtUtils::MM_AIX' => '6.88',
9660             'ExtUtils::MM_Any' => '6.88',
9661             'ExtUtils::MM_BeOS' => '6.88',
9662             'ExtUtils::MM_Cygwin' => '6.88',
9663             'ExtUtils::MM_DOS' => '6.88',
9664             'ExtUtils::MM_Darwin' => '6.88',
9665             'ExtUtils::MM_MacOS' => '6.88',
9666             'ExtUtils::MM_NW5' => '6.88',
9667             'ExtUtils::MM_OS2' => '6.88',
9668             'ExtUtils::MM_QNX' => '6.88',
9669             'ExtUtils::MM_UWIN' => '6.88',
9670             'ExtUtils::MM_Unix' => '6.88',
9671             'ExtUtils::MM_VMS' => '6.88',
9672             'ExtUtils::MM_VOS' => '6.88',
9673             'ExtUtils::MM_Win32' => '6.88',
9674             'ExtUtils::MM_Win95' => '6.88',
9675             'ExtUtils::MY' => '6.88',
9676             'ExtUtils::MakeMaker' => '6.88',
9677             'ExtUtils::MakeMaker::Config'=> '6.88',
9678             'ExtUtils::Mkbootstrap' => '6.88',
9679             'ExtUtils::Mksymlists' => '6.88',
9680             'ExtUtils::Packlist' => '1.47',
9681             'ExtUtils::testlib' => '6.88',
9682             'Fatal' => '2.23',
9683             'File::Fetch' => '0.48',
9684             'File::Spec' => '3.47',
9685             'File::Spec::Cygwin' => '3.47',
9686             'File::Spec::Epoc' => '3.47',
9687             'File::Spec::Functions' => '3.47',
9688             'File::Spec::Mac' => '3.47',
9689             'File::Spec::OS2' => '3.47',
9690             'File::Spec::Unix' => '3.47',
9691             'File::Spec::VMS' => '3.47',
9692             'File::Spec::Win32' => '3.47',
9693             'HTTP::Tiny' => '0.042',
9694             'IO::Compress::Adapter::Bzip2'=> '2.064',
9695             'IO::Compress::Adapter::Deflate'=> '2.064',
9696             'IO::Compress::Adapter::Identity'=> '2.064',
9697             'IO::Compress::Base' => '2.064',
9698             'IO::Compress::Base::Common'=> '2.064',
9699             'IO::Compress::Bzip2' => '2.064',
9700             'IO::Compress::Deflate' => '2.064',
9701             'IO::Compress::Gzip' => '2.064',
9702             'IO::Compress::Gzip::Constants'=> '2.064',
9703             'IO::Compress::RawDeflate'=> '2.064',
9704             'IO::Compress::Zip' => '2.064',
9705             'IO::Compress::Zip::Constants'=> '2.064',
9706             'IO::Compress::Zlib::Constants'=> '2.064',
9707             'IO::Compress::Zlib::Extra'=> '2.064',
9708             'IO::Socket::INET' => '1.35',
9709             'IO::Socket::IP' => '0.28',
9710             'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9711             'IO::Uncompress::Adapter::Identity'=> '2.064',
9712             'IO::Uncompress::Adapter::Inflate'=> '2.064',
9713             'IO::Uncompress::AnyInflate'=> '2.064',
9714             'IO::Uncompress::AnyUncompress'=> '2.064',
9715             'IO::Uncompress::Base' => '2.064',
9716             'IO::Uncompress::Bunzip2'=> '2.064',
9717             'IO::Uncompress::Gunzip'=> '2.064',
9718             'IO::Uncompress::Inflate'=> '2.064',
9719             'IO::Uncompress::RawInflate'=> '2.064',
9720             'IO::Uncompress::Unzip' => '2.064',
9721             'IPC::Cmd' => '0.92',
9722             'List::Util' => '1.38',
9723             'List::Util::XS' => '1.38',
9724             'Locale::Codes' => '3.29',
9725             'Locale::Codes::Constants'=> '3.29',
9726             'Locale::Codes::Country'=> '3.29',
9727             'Locale::Codes::Country_Codes'=> '3.29',
9728             'Locale::Codes::Country_Retired'=> '3.29',
9729             'Locale::Codes::Currency'=> '3.29',
9730             'Locale::Codes::Currency_Codes'=> '3.29',
9731             'Locale::Codes::Currency_Retired'=> '3.29',
9732             'Locale::Codes::LangExt'=> '3.29',
9733             'Locale::Codes::LangExt_Codes'=> '3.29',
9734             'Locale::Codes::LangExt_Retired'=> '3.29',
9735             'Locale::Codes::LangFam'=> '3.29',
9736             'Locale::Codes::LangFam_Codes'=> '3.29',
9737             'Locale::Codes::LangFam_Retired'=> '3.29',
9738             'Locale::Codes::LangVar'=> '3.29',
9739             'Locale::Codes::LangVar_Codes'=> '3.29',
9740             'Locale::Codes::LangVar_Retired'=> '3.29',
9741             'Locale::Codes::Language'=> '3.29',
9742             'Locale::Codes::Language_Codes'=> '3.29',
9743             'Locale::Codes::Language_Retired'=> '3.29',
9744             'Locale::Codes::Script' => '3.29',
9745             'Locale::Codes::Script_Codes'=> '3.29',
9746             'Locale::Codes::Script_Retired'=> '3.29',
9747             'Locale::Country' => '3.29',
9748             'Locale::Currency' => '3.29',
9749             'Locale::Language' => '3.29',
9750             'Locale::Script' => '3.29',
9751             'Module::Build' => '0.4205',
9752             'Module::Build::Base' => '0.4205',
9753             'Module::Build::Compat' => '0.4205',
9754             'Module::Build::Config' => '0.4205',
9755             'Module::Build::Cookbook'=> '0.4205',
9756             'Module::Build::Dumper' => '0.4205',
9757             'Module::Build::ModuleInfo'=> '0.4205',
9758             'Module::Build::Notes' => '0.4205',
9759             'Module::Build::PPMMaker'=> '0.4205',
9760             'Module::Build::Platform::Default'=> '0.4205',
9761             'Module::Build::Platform::MacOS'=> '0.4205',
9762             'Module::Build::Platform::Unix'=> '0.4205',
9763             'Module::Build::Platform::VMS'=> '0.4205',
9764             'Module::Build::Platform::VOS'=> '0.4205',
9765             'Module::Build::Platform::Windows'=> '0.4205',
9766             'Module::Build::Platform::aix'=> '0.4205',
9767             'Module::Build::Platform::cygwin'=> '0.4205',
9768             'Module::Build::Platform::darwin'=> '0.4205',
9769             'Module::Build::Platform::os2'=> '0.4205',
9770             'Module::Build::PodParser'=> '0.4205',
9771             'Module::CoreList' => '3.06',
9772             'Module::CoreList::TieHashDelta'=> '3.06',
9773             'Module::CoreList::Utils'=> '3.06',
9774             'Module::Load' => '0.30',
9775             'Module::Load::Conditional'=> '0.62',
9776             'Net::Domain' => '2.23',
9777             'Net::FTP' => '2.79',
9778             'Net::NNTP' => '2.26',
9779             'Net::POP3' => '2.31',
9780             'Net::Ping' => '2.43',
9781             'Net::SMTP' => '2.33',
9782             'POSIX' => '1.38_02',
9783             'Parse::CPAN::Meta' => '1.4413',
9784             'Pod::Escapes' => '1.06',
9785             'Pod::Find' => '1.62',
9786             'Pod::InputObjects' => '1.62',
9787             'Pod::ParseUtils' => '1.62',
9788             'Pod::Parser' => '1.62',
9789             'Pod::Select' => '1.62',
9790             'Scalar::Util' => '1.38',
9791             'autodie' => '2.23',
9792             'autodie::exception' => '2.23',
9793             'autodie::exception::system'=> '2.23',
9794             'autodie::hints' => '2.23',
9795             'autodie::skip' => '2.23',
9796             'diagnostics' => '1.34',
9797             'feature' => '1.35',
9798             'inc::latest' => '0.4205',
9799             'locale' => '1.03',
9800             'mro' => '1.15',
9801             'threads' => '1.92',
9802             'version' => '0.9908',
9803             'version::regex' => '0.9908',
9804             'version::vpp' => '0.9908',
9805             'warnings' => '1.22',
9806             },
9807             removed => {
9808             }
9809             },
9810             5.01901 => {
9811             delta_from => 5.019009,
9812             changed => {
9813             'App::Cpan' => '1.62',
9814             'Attribute::Handlers' => '0.96',
9815             'B::Deparse' => '1.26',
9816             'CPAN' => '2.04',
9817             'CPAN::Bundle' => '5.5001',
9818             'CPAN::Complete' => '5.5001',
9819             'CPAN::Distribution' => '2.01',
9820             'CPAN::Distroprefs' => '6.0001',
9821             'CPAN::FirstTime' => '5.5305',
9822             'CPAN::Meta' => '2.140640',
9823             'CPAN::Meta::Converter' => '2.140640',
9824             'CPAN::Meta::Feature' => '2.140640',
9825             'CPAN::Meta::History' => '2.140640',
9826             'CPAN::Meta::Prereqs' => '2.140640',
9827             'CPAN::Meta::Spec' => '2.140640',
9828             'CPAN::Meta::Validator' => '2.140640',
9829             'CPAN::Meta::YAML' => '0.012',
9830             'CPAN::Queue' => '5.5002',
9831             'CPAN::Shell' => '5.5003',
9832             'CPAN::Tarzip' => '5.5012',
9833             'CPAN::Version' => '5.5003',
9834             'Carp' => '1.33',
9835             'Carp::Heavy' => '1.33',
9836             'Config' => '5.019010',
9837             'Data::Dumper' => '2.151',
9838             'Devel::PPPort' => '3.22',
9839             'Digest::SHA' => '5.88',
9840             'ExtUtils::Command::MM' => '6.92',
9841             'ExtUtils::Install' => '1.63',
9842             'ExtUtils::Installed' => '1.999005',
9843             'ExtUtils::Liblist' => '6.92',
9844             'ExtUtils::Liblist::Kid'=> '6.92',
9845             'ExtUtils::MM' => '6.92',
9846             'ExtUtils::MM_AIX' => '6.92',
9847             'ExtUtils::MM_Any' => '6.92',
9848             'ExtUtils::MM_BeOS' => '6.92',
9849             'ExtUtils::MM_Cygwin' => '6.92',
9850             'ExtUtils::MM_DOS' => '6.92',
9851             'ExtUtils::MM_Darwin' => '6.92',
9852             'ExtUtils::MM_MacOS' => '6.92',
9853             'ExtUtils::MM_NW5' => '6.92',
9854             'ExtUtils::MM_OS2' => '6.92',
9855             'ExtUtils::MM_QNX' => '6.92',
9856             'ExtUtils::MM_UWIN' => '6.92',
9857             'ExtUtils::MM_Unix' => '6.92',
9858             'ExtUtils::MM_VMS' => '6.92',
9859             'ExtUtils::MM_VOS' => '6.92',
9860             'ExtUtils::MM_Win32' => '6.92',
9861             'ExtUtils::MM_Win95' => '6.92',
9862             'ExtUtils::MY' => '6.92',
9863             'ExtUtils::MakeMaker' => '6.92',
9864             'ExtUtils::MakeMaker::Config'=> '6.92',
9865             'ExtUtils::Mkbootstrap' => '6.92',
9866             'ExtUtils::Mksymlists' => '6.92',
9867             'ExtUtils::Packlist' => '1.48',
9868             'ExtUtils::ParseXS' => '3.24',
9869             'ExtUtils::ParseXS::Constants'=> '3.24',
9870             'ExtUtils::ParseXS::CountLines'=> '3.24',
9871             'ExtUtils::ParseXS::Eval'=> '3.24',
9872             'ExtUtils::ParseXS::Utilities'=> '3.24',
9873             'ExtUtils::Typemaps' => '3.24',
9874             'ExtUtils::Typemaps::Cmd'=> '3.24',
9875             'ExtUtils::Typemaps::InputMap'=> '3.24',
9876             'ExtUtils::Typemaps::OutputMap'=> '3.24',
9877             'ExtUtils::Typemaps::Type'=> '3.24',
9878             'ExtUtils::testlib' => '6.92',
9879             'File::Find' => '1.27',
9880             'Filter::Simple' => '0.91',
9881             'HTTP::Tiny' => '0.043',
9882             'Hash::Util::FieldHash' => '1.15',
9883             'IO' => '1.31',
9884             'IO::Socket::IP' => '0.29',
9885             'Locale::Codes' => '3.30',
9886             'Locale::Codes::Constants'=> '3.30',
9887             'Locale::Codes::Country'=> '3.30',
9888             'Locale::Codes::Country_Codes'=> '3.30',
9889             'Locale::Codes::Country_Retired'=> '3.30',
9890             'Locale::Codes::Currency'=> '3.30',
9891             'Locale::Codes::Currency_Codes'=> '3.30',
9892             'Locale::Codes::Currency_Retired'=> '3.30',
9893             'Locale::Codes::LangExt'=> '3.30',
9894             'Locale::Codes::LangExt_Codes'=> '3.30',
9895             'Locale::Codes::LangExt_Retired'=> '3.30',
9896             'Locale::Codes::LangFam'=> '3.30',
9897             'Locale::Codes::LangFam_Codes'=> '3.30',
9898             'Locale::Codes::LangFam_Retired'=> '3.30',
9899             'Locale::Codes::LangVar'=> '3.30',
9900             'Locale::Codes::LangVar_Codes'=> '3.30',
9901             'Locale::Codes::LangVar_Retired'=> '3.30',
9902             'Locale::Codes::Language'=> '3.30',
9903             'Locale::Codes::Language_Codes'=> '3.30',
9904             'Locale::Codes::Language_Retired'=> '3.30',
9905             'Locale::Codes::Script' => '3.30',
9906             'Locale::Codes::Script_Codes'=> '3.30',
9907             'Locale::Codes::Script_Retired'=> '3.30',
9908             'Locale::Country' => '3.30',
9909             'Locale::Currency' => '3.30',
9910             'Locale::Language' => '3.30',
9911             'Locale::Script' => '3.30',
9912             'Module::CoreList' => '3.09',
9913             'Module::CoreList::TieHashDelta'=> '3.09',
9914             'Module::CoreList::Utils'=> '3.09',
9915             'Module::Load' => '0.32',
9916             'POSIX' => '1.38_03',
9917             'Parse::CPAN::Meta' => '1.4414',
9918             'Pod::Perldoc' => '3.23',
9919             'Pod::Perldoc::BaseTo' => '3.23',
9920             'Pod::Perldoc::GetOptsOO'=> '3.23',
9921             'Pod::Perldoc::ToANSI' => '3.23',
9922             'Pod::Perldoc::ToChecker'=> '3.23',
9923             'Pod::Perldoc::ToMan' => '3.23',
9924             'Pod::Perldoc::ToNroff' => '3.23',
9925             'Pod::Perldoc::ToPod' => '3.23',
9926             'Pod::Perldoc::ToRtf' => '3.23',
9927             'Pod::Perldoc::ToTerm' => '3.23',
9928             'Pod::Perldoc::ToText' => '3.23',
9929             'Pod::Perldoc::ToTk' => '3.23',
9930             'Pod::Perldoc::ToXml' => '3.23',
9931             'Thread::Queue' => '3.05',
9932             'XS::APItest' => '0.60',
9933             'XS::Typemap' => '0.13',
9934             'autouse' => '1.08',
9935             'base' => '2.22',
9936             'charnames' => '1.40',
9937             'feature' => '1.36',
9938             'mro' => '1.16',
9939             'threads' => '1.93',
9940             'warnings' => '1.23',
9941             'warnings::register' => '1.03',
9942             },
9943             removed => {
9944             }
9945             },
9946             5.019011 => {
9947             delta_from => 5.01901,
9948             changed => {
9949             'CPAN' => '2.05',
9950             'CPAN::Distribution' => '2.02',
9951             'CPAN::FirstTime' => '5.5306',
9952             'CPAN::Shell' => '5.5004',
9953             'Carp' => '1.3301',
9954             'Carp::Heavy' => '1.3301',
9955             'Config' => '5.019011',
9956             'ExtUtils::Command::MM' => '6.94',
9957             'ExtUtils::Install' => '1.67',
9958             'ExtUtils::Liblist' => '6.94',
9959             'ExtUtils::Liblist::Kid'=> '6.94',
9960             'ExtUtils::MM' => '6.94',
9961             'ExtUtils::MM_AIX' => '6.94',
9962             'ExtUtils::MM_Any' => '6.94',
9963             'ExtUtils::MM_BeOS' => '6.94',
9964             'ExtUtils::MM_Cygwin' => '6.94',
9965             'ExtUtils::MM_DOS' => '6.94',
9966             'ExtUtils::MM_Darwin' => '6.94',
9967             'ExtUtils::MM_MacOS' => '6.94',
9968             'ExtUtils::MM_NW5' => '6.94',
9969             'ExtUtils::MM_OS2' => '6.94',
9970             'ExtUtils::MM_QNX' => '6.94',
9971             'ExtUtils::MM_UWIN' => '6.94',
9972             'ExtUtils::MM_Unix' => '6.94',
9973             'ExtUtils::MM_VMS' => '6.94',
9974             'ExtUtils::MM_VOS' => '6.94',
9975             'ExtUtils::MM_Win32' => '6.94',
9976             'ExtUtils::MM_Win95' => '6.94',
9977             'ExtUtils::MY' => '6.94',
9978             'ExtUtils::MakeMaker' => '6.94',
9979             'ExtUtils::MakeMaker::Config'=> '6.94',
9980             'ExtUtils::Mkbootstrap' => '6.94',
9981             'ExtUtils::Mksymlists' => '6.94',
9982             'ExtUtils::testlib' => '6.94',
9983             'Module::CoreList' => '3.10',
9984             'Module::CoreList::TieHashDelta'=> '3.10',
9985             'Module::CoreList::Utils'=> '3.10',
9986             'PerlIO' => '1.09',
9987             'Storable' => '2.49',
9988             'Win32' => '0.49',
9989             'experimental' => '0.007',
9990             },
9991             removed => {
9992             }
9993             },
9994             5.020000 => {
9995             delta_from => 5.019011,
9996             changed => {
9997             'Config' => '5.02',
9998             'Devel::PPPort' => '3.21',
9999             'Encode' => '2.60',
10000             'Errno' => '1.20_03',
10001             'ExtUtils::Command::MM' => '6.98',
10002             'ExtUtils::Liblist' => '6.98',
10003             'ExtUtils::Liblist::Kid'=> '6.98',
10004             'ExtUtils::MM' => '6.98',
10005             'ExtUtils::MM_AIX' => '6.98',
10006             'ExtUtils::MM_Any' => '6.98',
10007             'ExtUtils::MM_BeOS' => '6.98',
10008             'ExtUtils::MM_Cygwin' => '6.98',
10009             'ExtUtils::MM_DOS' => '6.98',
10010             'ExtUtils::MM_Darwin' => '6.98',
10011             'ExtUtils::MM_MacOS' => '6.98',
10012             'ExtUtils::MM_NW5' => '6.98',
10013             'ExtUtils::MM_OS2' => '6.98',
10014             'ExtUtils::MM_QNX' => '6.98',
10015             'ExtUtils::MM_UWIN' => '6.98',
10016             'ExtUtils::MM_Unix' => '6.98',
10017             'ExtUtils::MM_VMS' => '6.98',
10018             'ExtUtils::MM_VOS' => '6.98',
10019             'ExtUtils::MM_Win32' => '6.98',
10020             'ExtUtils::MM_Win95' => '6.98',
10021             'ExtUtils::MY' => '6.98',
10022             'ExtUtils::MakeMaker' => '6.98',
10023             'ExtUtils::MakeMaker::Config'=> '6.98',
10024             'ExtUtils::Miniperl' => '1.01',
10025             'ExtUtils::Mkbootstrap' => '6.98',
10026             'ExtUtils::Mksymlists' => '6.98',
10027             'ExtUtils::testlib' => '6.98',
10028             },
10029             removed => {
10030             }
10031             },
10032             5.021000 => {
10033             delta_from => 5.020000,
10034             changed => {
10035             'Module::CoreList' => '5.021001',
10036             'Module::CoreList::TieHashDelta'=> '5.021001',
10037             'Module::CoreList::Utils'=> '5.021001',
10038             'feature' => '1.37',
10039             },
10040             removed => {
10041             'CGI' => 1,
10042             'CGI::Apache' => 1,
10043             'CGI::Carp' => 1,
10044             'CGI::Cookie' => 1,
10045             'CGI::Fast' => 1,
10046             'CGI::Pretty' => 1,
10047             'CGI::Push' => 1,
10048             'CGI::Switch' => 1,
10049             'CGI::Util' => 1,
10050             'Module::Build' => 1,
10051             'Module::Build::Base' => 1,
10052             'Module::Build::Compat' => 1,
10053             'Module::Build::Config' => 1,
10054             'Module::Build::ConfigData'=> 1,
10055             'Module::Build::Cookbook'=> 1,
10056             'Module::Build::Dumper' => 1,
10057             'Module::Build::ModuleInfo'=> 1,
10058             'Module::Build::Notes' => 1,
10059             'Module::Build::PPMMaker'=> 1,
10060             'Module::Build::Platform::Default'=> 1,
10061             'Module::Build::Platform::MacOS'=> 1,
10062             'Module::Build::Platform::Unix'=> 1,
10063             'Module::Build::Platform::VMS'=> 1,
10064             'Module::Build::Platform::VOS'=> 1,
10065             'Module::Build::Platform::Windows'=> 1,
10066             'Module::Build::Platform::aix'=> 1,
10067             'Module::Build::Platform::cygwin'=> 1,
10068             'Module::Build::Platform::darwin'=> 1,
10069             'Module::Build::Platform::os2'=> 1,
10070             'Module::Build::PodParser'=> 1,
10071             'Module::Build::Version'=> 1,
10072             'Module::Build::YAML' => 1,
10073             'Package::Constants' => 1,
10074             'inc::latest' => 1,
10075             }
10076             },
10077             5.021001 => {
10078             delta_from => 5.021000,
10079             changed => {
10080             'App::Prove' => '3.32',
10081             'App::Prove::State' => '3.32',
10082             'App::Prove::State::Result'=> '3.32',
10083             'App::Prove::State::Result::Test'=> '3.32',
10084             'Archive::Tar' => '2.00',
10085             'Archive::Tar::Constant'=> '2.00',
10086             'Archive::Tar::File' => '2.00',
10087             'B' => '1.49',
10088             'B::Deparse' => '1.27',
10089             'Benchmark' => '1.19',
10090             'CPAN::Meta' => '2.141520',
10091             'CPAN::Meta::Converter' => '2.141520',
10092             'CPAN::Meta::Feature' => '2.141520',
10093             'CPAN::Meta::History' => '2.141520',
10094             'CPAN::Meta::Prereqs' => '2.141520',
10095             'CPAN::Meta::Spec' => '2.141520',
10096             'CPAN::Meta::Validator' => '2.141520',
10097             'Carp' => '1.34',
10098             'Carp::Heavy' => '1.34',
10099             'Config' => '5.021001',
10100             'Cwd' => '3.48',
10101             'Data::Dumper' => '2.152',
10102             'Devel::PPPort' => '3.24',
10103             'Devel::Peek' => '1.17',
10104             'Digest::SHA' => '5.92',
10105             'DynaLoader' => '1.26',
10106             'Encode' => '2.62',
10107             'Errno' => '1.20_04',
10108             'Exporter' => '5.71',
10109             'Exporter::Heavy' => '5.71',
10110             'ExtUtils::Install' => '1.68',
10111             'ExtUtils::Miniperl' => '1.02',
10112             'ExtUtils::ParseXS' => '3.25',
10113             'ExtUtils::ParseXS::Constants'=> '3.25',
10114             'ExtUtils::ParseXS::CountLines'=> '3.25',
10115             'ExtUtils::ParseXS::Eval'=> '3.25',
10116             'ExtUtils::ParseXS::Utilities'=> '3.25',
10117             'ExtUtils::Typemaps' => '3.25',
10118             'ExtUtils::Typemaps::Cmd'=> '3.25',
10119             'ExtUtils::Typemaps::InputMap'=> '3.25',
10120             'ExtUtils::Typemaps::OutputMap'=> '3.25',
10121             'ExtUtils::Typemaps::Type'=> '3.25',
10122             'Fatal' => '2.25',
10123             'File::Spec' => '3.48',
10124             'File::Spec::Cygwin' => '3.48',
10125             'File::Spec::Epoc' => '3.48',
10126             'File::Spec::Functions' => '3.48',
10127             'File::Spec::Mac' => '3.48',
10128             'File::Spec::OS2' => '3.48',
10129             'File::Spec::Unix' => '3.48',
10130             'File::Spec::VMS' => '3.48',
10131             'File::Spec::Win32' => '3.48',
10132             'Hash::Util' => '0.17',
10133             'IO' => '1.32',
10134             'List::Util' => '1.39',
10135             'List::Util::XS' => '1.39',
10136             'Locale::Codes' => '3.31',
10137             'Locale::Codes::Constants'=> '3.31',
10138             'Locale::Codes::Country'=> '3.31',
10139             'Locale::Codes::Country_Codes'=> '3.31',
10140             'Locale::Codes::Country_Retired'=> '3.31',
10141             'Locale::Codes::Currency'=> '3.31',
10142             'Locale::Codes::Currency_Codes'=> '3.31',
10143             'Locale::Codes::Currency_Retired'=> '3.31',
10144             'Locale::Codes::LangExt'=> '3.31',
10145             'Locale::Codes::LangExt_Codes'=> '3.31',
10146             'Locale::Codes::LangExt_Retired'=> '3.31',
10147             'Locale::Codes::LangFam'=> '3.31',
10148             'Locale::Codes::LangFam_Codes'=> '3.31',
10149             'Locale::Codes::LangFam_Retired'=> '3.31',
10150             'Locale::Codes::LangVar'=> '3.31',
10151             'Locale::Codes::LangVar_Codes'=> '3.31',
10152             'Locale::Codes::LangVar_Retired'=> '3.31',
10153             'Locale::Codes::Language'=> '3.31',
10154             'Locale::Codes::Language_Codes'=> '3.31',
10155             'Locale::Codes::Language_Retired'=> '3.31',
10156             'Locale::Codes::Script' => '3.31',
10157             'Locale::Codes::Script_Codes'=> '3.31',
10158             'Locale::Codes::Script_Retired'=> '3.31',
10159             'Locale::Country' => '3.31',
10160             'Locale::Currency' => '3.31',
10161             'Locale::Language' => '3.31',
10162             'Locale::Script' => '3.31',
10163             'Math::BigFloat' => '1.9994',
10164             'Math::BigInt' => '1.9995',
10165             'Math::BigInt::Calc' => '1.9994',
10166             'Math::BigInt::CalcEmu' => '1.9994',
10167             'Math::BigRat' => '0.2608',
10168             'Module::CoreList' => '5.021001_01',
10169             'Module::CoreList::TieHashDelta'=> '5.021001_01',
10170             'Module::CoreList::Utils'=> '5.021001_01',
10171             'Module::Metadata' => '1.000024',
10172             'NDBM_File' => '1.13',
10173             'Net::Config' => '1.14',
10174             'Net::SMTP' => '2.34',
10175             'Net::Time' => '2.11',
10176             'OS2::Process' => '1.10',
10177             'POSIX' => '1.40',
10178             'PerlIO::encoding' => '0.19',
10179             'PerlIO::mmap' => '0.013',
10180             'PerlIO::scalar' => '0.19',
10181             'PerlIO::via' => '0.15',
10182             'Pod::Html' => '1.22',
10183             'Scalar::Util' => '1.39',
10184             'SelfLoader' => '1.22',
10185             'Socket' => '2.014',
10186             'Storable' => '2.51',
10187             'TAP::Base' => '3.32',
10188             'TAP::Formatter::Base' => '3.32',
10189             'TAP::Formatter::Color' => '3.32',
10190             'TAP::Formatter::Console'=> '3.32',
10191             'TAP::Formatter::Console::ParallelSession'=> '3.32',
10192             'TAP::Formatter::Console::Session'=> '3.32',
10193             'TAP::Formatter::File' => '3.32',
10194             'TAP::Formatter::File::Session'=> '3.32',
10195             'TAP::Formatter::Session'=> '3.32',
10196             'TAP::Harness' => '3.32',
10197             'TAP::Harness::Env' => '3.32',
10198             'TAP::Object' => '3.32',
10199             'TAP::Parser' => '3.32',
10200             'TAP::Parser::Aggregator'=> '3.32',
10201             'TAP::Parser::Grammar' => '3.32',
10202             'TAP::Parser::Iterator' => '3.32',
10203             'TAP::Parser::Iterator::Array'=> '3.32',
10204             'TAP::Parser::Iterator::Process'=> '3.32',
10205             'TAP::Parser::Iterator::Stream'=> '3.32',
10206             'TAP::Parser::IteratorFactory'=> '3.32',
10207             'TAP::Parser::Multiplexer'=> '3.32',
10208             'TAP::Parser::Result' => '3.32',
10209             'TAP::Parser::Result::Bailout'=> '3.32',
10210             'TAP::Parser::Result::Comment'=> '3.32',
10211             'TAP::Parser::Result::Plan'=> '3.32',
10212             'TAP::Parser::Result::Pragma'=> '3.32',
10213             'TAP::Parser::Result::Test'=> '3.32',
10214             'TAP::Parser::Result::Unknown'=> '3.32',
10215             'TAP::Parser::Result::Version'=> '3.32',
10216             'TAP::Parser::Result::YAML'=> '3.32',
10217             'TAP::Parser::ResultFactory'=> '3.32',
10218             'TAP::Parser::Scheduler'=> '3.32',
10219             'TAP::Parser::Scheduler::Job'=> '3.32',
10220             'TAP::Parser::Scheduler::Spinner'=> '3.32',
10221             'TAP::Parser::Source' => '3.32',
10222             'TAP::Parser::SourceHandler'=> '3.32',
10223             'TAP::Parser::SourceHandler::Executable'=> '3.32',
10224             'TAP::Parser::SourceHandler::File'=> '3.32',
10225             'TAP::Parser::SourceHandler::Handle'=> '3.32',
10226             'TAP::Parser::SourceHandler::Perl'=> '3.32',
10227             'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10228             'TAP::Parser::YAMLish::Reader'=> '3.32',
10229             'TAP::Parser::YAMLish::Writer'=> '3.32',
10230             'Term::ANSIColor' => '4.03',
10231             'Test::Builder' => '1.001003',
10232             'Test::Builder::Module' => '1.001003',
10233             'Test::Builder::Tester' => '1.23_003',
10234             'Test::Harness' => '3.32',
10235             'Test::More' => '1.001003',
10236             'Test::Simple' => '1.001003',
10237             'Tie::File' => '1.01',
10238             'Unicode' => '7.0.0',
10239             'Unicode::Collate' => '1.07',
10240             'Unicode::Normalize' => '1.18',
10241             'Unicode::UCD' => '0.58',
10242             'XS::APItest' => '0.61',
10243             '_charnames' => '1.41',
10244             'autodie' => '2.25',
10245             'autodie::Scope::Guard' => '2.25',
10246             'autodie::Scope::GuardStack'=> '2.25',
10247             'autodie::ScopeUtil' => '2.25',
10248             'autodie::exception' => '2.25',
10249             'autodie::exception::system'=> '2.25',
10250             'autodie::hints' => '2.25',
10251             'autodie::skip' => '2.25',
10252             'charnames' => '1.41',
10253             'locale' => '1.04',
10254             'threads' => '1.94',
10255             'utf8' => '1.14',
10256             'warnings' => '1.24',
10257             },
10258             removed => {
10259             }
10260             },
10261             5.021002 => {
10262             delta_from => 5.021001,
10263             changed => {
10264             'B' => '1.50',
10265             'Config' => '5.021002',
10266             'Cwd' => '3.49',
10267             'Devel::Peek' => '1.18',
10268             'ExtUtils::Manifest' => '1.64',
10269             'File::Copy' => '2.30',
10270             'File::Spec' => '3.49',
10271             'File::Spec::Cygwin' => '3.49',
10272             'File::Spec::Epoc' => '3.49',
10273             'File::Spec::Functions' => '3.49',
10274             'File::Spec::Mac' => '3.49',
10275             'File::Spec::OS2' => '3.49',
10276             'File::Spec::Unix' => '3.49',
10277             'File::Spec::VMS' => '3.49',
10278             'File::Spec::Win32' => '3.49',
10279             'Filter::Simple' => '0.92',
10280             'Hash::Util' => '0.18',
10281             'IO' => '1.33',
10282             'IO::Socket::IP' => '0.31',
10283             'IPC::Open3' => '1.17',
10284             'Math::BigFloat' => '1.9996',
10285             'Math::BigInt' => '1.9996',
10286             'Math::BigInt::Calc' => '1.9996',
10287             'Math::BigInt::CalcEmu' => '1.9996',
10288             'Module::CoreList' => '5.021002',
10289             'Module::CoreList::TieHashDelta'=> '5.021002',
10290             'Module::CoreList::Utils'=> '5.021002',
10291             'POSIX' => '1.41',
10292             'Pod::Usage' => '1.64',
10293             'XS::APItest' => '0.62',
10294             'arybase' => '0.08',
10295             'experimental' => '0.008',
10296             'threads' => '1.95',
10297             'warnings' => '1.26',
10298             },
10299             removed => {
10300             }
10301             },
10302             5.021003 => {
10303             delta_from => 5.021002,
10304             changed => {
10305             'B::Debug' => '1.21',
10306             'CPAN::Meta' => '2.142060',
10307             'CPAN::Meta::Converter' => '2.142060',
10308             'CPAN::Meta::Feature' => '2.142060',
10309             'CPAN::Meta::History' => '2.142060',
10310             'CPAN::Meta::Merge' => '2.142060',
10311             'CPAN::Meta::Prereqs' => '2.142060',
10312             'CPAN::Meta::Requirements'=> '2.126',
10313             'CPAN::Meta::Spec' => '2.142060',
10314             'CPAN::Meta::Validator' => '2.142060',
10315             'Config' => '5.021003',
10316             'Config::Perl::V' => '0.22',
10317             'ExtUtils::CBuilder' => '0.280217',
10318             'ExtUtils::CBuilder::Base'=> '0.280217',
10319             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10320             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10321             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10322             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10323             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10324             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10325             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10326             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10327             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10328             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10329             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10330             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10331             'ExtUtils::Manifest' => '1.65',
10332             'HTTP::Tiny' => '0.047',
10333             'IPC::Open3' => '1.18',
10334             'Module::CoreList' => '5.021003',
10335             'Module::CoreList::TieHashDelta'=> '5.021003',
10336             'Module::CoreList::Utils'=> '5.021003',
10337             'Opcode' => '1.28',
10338             'POSIX' => '1.42',
10339             'Safe' => '2.38',
10340             'Socket' => '2.015',
10341             'Sys::Hostname' => '1.19',
10342             'UNIVERSAL' => '1.12',
10343             'XS::APItest' => '0.63',
10344             'perlfaq' => '5.0150045',
10345             },
10346             removed => {
10347             }
10348             },
10349             5.020001 => {
10350             delta_from => 5.020000,
10351             changed => {
10352             'Config' => '5.020001',
10353             'Config::Perl::V' => '0.22',
10354             'Cwd' => '3.48',
10355             'Exporter' => '5.71',
10356             'Exporter::Heavy' => '5.71',
10357             'ExtUtils::CBuilder' => '0.280217',
10358             'ExtUtils::CBuilder::Base'=> '0.280217',
10359             'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10360             'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10361             'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10362             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10363             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10364             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10365             'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10366             'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10367             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10368             'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10369             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10370             'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10371             'File::Copy' => '2.30',
10372             'File::Spec' => '3.48',
10373             'File::Spec::Cygwin' => '3.48',
10374             'File::Spec::Epoc' => '3.48',
10375             'File::Spec::Functions' => '3.48',
10376             'File::Spec::Mac' => '3.48',
10377             'File::Spec::OS2' => '3.48',
10378             'File::Spec::Unix' => '3.48',
10379             'File::Spec::VMS' => '3.48',
10380             'File::Spec::Win32' => '3.48',
10381             'Module::CoreList' => '5.020001',
10382             'Module::CoreList::TieHashDelta'=> '5.020001',
10383             'Module::CoreList::Utils'=> '5.020001',
10384             'PerlIO::via' => '0.15',
10385             'Unicode::UCD' => '0.58',
10386             'XS::APItest' => '0.60_01',
10387             'utf8' => '1.13_01',
10388             'version' => '0.9909',
10389             'version::regex' => '0.9909',
10390             'version::vpp' => '0.9909',
10391             },
10392             removed => {
10393             }
10394             },
10395             5.021004 => {
10396             delta_from => 5.021003,
10397             changed => {
10398             'App::Prove' => '3.33',
10399             'App::Prove::State' => '3.33',
10400             'App::Prove::State::Result'=> '3.33',
10401             'App::Prove::State::Result::Test'=> '3.33',
10402             'Archive::Tar' => '2.02',
10403             'Archive::Tar::Constant'=> '2.02',
10404             'Archive::Tar::File' => '2.02',
10405             'Attribute::Handlers' => '0.97',
10406             'B' => '1.51',
10407             'B::Concise' => '0.993',
10408             'B::Deparse' => '1.28',
10409             'B::Op_private' => '5.021004',
10410             'CPAN::Meta::Requirements'=> '2.128',
10411             'Config' => '5.021004',
10412             'Cwd' => '3.50',
10413             'Data::Dumper' => '2.154',
10414             'ExtUtils::CBuilder' => '0.280219',
10415             'ExtUtils::CBuilder::Base'=> '0.280219',
10416             'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10417             'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10418             'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10419             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10420             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10421             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10422             'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10423             'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10424             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10425             'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10426             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10427             'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10428             'ExtUtils::Install' => '2.04',
10429             'ExtUtils::Installed' => '2.04',
10430             'ExtUtils::Liblist::Kid'=> '6.98_01',
10431             'ExtUtils::Manifest' => '1.68',
10432             'ExtUtils::Packlist' => '2.04',
10433             'File::Find' => '1.28',
10434             'File::Spec' => '3.50',
10435             'File::Spec::Cygwin' => '3.50',
10436             'File::Spec::Epoc' => '3.50',
10437             'File::Spec::Functions' => '3.50',
10438             'File::Spec::Mac' => '3.50',
10439             'File::Spec::OS2' => '3.50',
10440             'File::Spec::Unix' => '3.50',
10441             'File::Spec::VMS' => '3.50',
10442             'File::Spec::Win32' => '3.50',
10443             'Getopt::Std' => '1.11',
10444             'HTTP::Tiny' => '0.049',
10445             'IO' => '1.34',
10446             'IO::Socket::IP' => '0.32',
10447             'List::Util' => '1.41',
10448             'List::Util::XS' => '1.41',
10449             'Locale::Codes' => '3.32',
10450             'Locale::Codes::Constants'=> '3.32',
10451             'Locale::Codes::Country'=> '3.32',
10452             'Locale::Codes::Country_Codes'=> '3.32',
10453             'Locale::Codes::Country_Retired'=> '3.32',
10454             'Locale::Codes::Currency'=> '3.32',
10455             'Locale::Codes::Currency_Codes'=> '3.32',
10456             'Locale::Codes::Currency_Retired'=> '3.32',
10457             'Locale::Codes::LangExt'=> '3.32',
10458             'Locale::Codes::LangExt_Codes'=> '3.32',
10459             'Locale::Codes::LangExt_Retired'=> '3.32',
10460             'Locale::Codes::LangFam'=> '3.32',
10461             'Locale::Codes::LangFam_Codes'=> '3.32',
10462             'Locale::Codes::LangFam_Retired'=> '3.32',
10463             'Locale::Codes::LangVar'=> '3.32',
10464             'Locale::Codes::LangVar_Codes'=> '3.32',
10465             'Locale::Codes::LangVar_Retired'=> '3.32',
10466             'Locale::Codes::Language'=> '3.32',
10467             'Locale::Codes::Language_Codes'=> '3.32',
10468             'Locale::Codes::Language_Retired'=> '3.32',
10469             'Locale::Codes::Script' => '3.32',
10470             'Locale::Codes::Script_Codes'=> '3.32',
10471             'Locale::Codes::Script_Retired'=> '3.32',
10472             'Locale::Country' => '3.32',
10473             'Locale::Currency' => '3.32',
10474             'Locale::Language' => '3.32',
10475             'Locale::Script' => '3.32',
10476             'Math::BigFloat' => '1.9997',
10477             'Math::BigInt' => '1.9997',
10478             'Math::BigInt::Calc' => '1.9997',
10479             'Math::BigInt::CalcEmu' => '1.9997',
10480             'Module::CoreList' => '5.20140920',
10481             'Module::CoreList::TieHashDelta'=> '5.20140920',
10482             'Module::CoreList::Utils'=> '5.20140920',
10483             'POSIX' => '1.43',
10484             'Pod::Perldoc' => '3.24',
10485             'Pod::Perldoc::BaseTo' => '3.24',
10486             'Pod::Perldoc::GetOptsOO'=> '3.24',
10487             'Pod::Perldoc::ToANSI' => '3.24',
10488             'Pod::Perldoc::ToChecker'=> '3.24',
10489             'Pod::Perldoc::ToMan' => '3.24',
10490             'Pod::Perldoc::ToNroff' => '3.24',
10491             'Pod::Perldoc::ToPod' => '3.24',
10492             'Pod::Perldoc::ToRtf' => '3.24',
10493             'Pod::Perldoc::ToTerm' => '3.24',
10494             'Pod::Perldoc::ToText' => '3.24',
10495             'Pod::Perldoc::ToTk' => '3.24',
10496             'Pod::Perldoc::ToXml' => '3.24',
10497             'Scalar::Util' => '1.41',
10498             'Sub::Util' => '1.41',
10499             'TAP::Base' => '3.33',
10500             'TAP::Formatter::Base' => '3.33',
10501             'TAP::Formatter::Color' => '3.33',
10502             'TAP::Formatter::Console'=> '3.33',
10503             'TAP::Formatter::Console::ParallelSession'=> '3.33',
10504             'TAP::Formatter::Console::Session'=> '3.33',
10505             'TAP::Formatter::File' => '3.33',
10506             'TAP::Formatter::File::Session'=> '3.33',
10507             'TAP::Formatter::Session'=> '3.33',
10508             'TAP::Harness' => '3.33',
10509             'TAP::Harness::Env' => '3.33',
10510             'TAP::Object' => '3.33',
10511             'TAP::Parser' => '3.33',
10512             'TAP::Parser::Aggregator'=> '3.33',
10513             'TAP::Parser::Grammar' => '3.33',
10514             'TAP::Parser::Iterator' => '3.33',
10515             'TAP::Parser::Iterator::Array'=> '3.33',
10516             'TAP::Parser::Iterator::Process'=> '3.33',
10517             'TAP::Parser::Iterator::Stream'=> '3.33',
10518             'TAP::Parser::IteratorFactory'=> '3.33',
10519             'TAP::Parser::Multiplexer'=> '3.33',
10520             'TAP::Parser::Result' => '3.33',
10521             'TAP::Parser::Result::Bailout'=> '3.33',
10522             'TAP::Parser::Result::Comment'=> '3.33',
10523             'TAP::Parser::Result::Plan'=> '3.33',
10524             'TAP::Parser::Result::Pragma'=> '3.33',
10525             'TAP::Parser::Result::Test'=> '3.33',
10526             'TAP::Parser::Result::Unknown'=> '3.33',
10527             'TAP::Parser::Result::Version'=> '3.33',
10528             'TAP::Parser::Result::YAML'=> '3.33',
10529             'TAP::Parser::ResultFactory'=> '3.33',
10530             'TAP::Parser::Scheduler'=> '3.33',
10531             'TAP::Parser::Scheduler::Job'=> '3.33',
10532             'TAP::Parser::Scheduler::Spinner'=> '3.33',
10533             'TAP::Parser::Source' => '3.33',
10534             'TAP::Parser::SourceHandler'=> '3.33',
10535             'TAP::Parser::SourceHandler::Executable'=> '3.33',
10536             'TAP::Parser::SourceHandler::File'=> '3.33',
10537             'TAP::Parser::SourceHandler::Handle'=> '3.33',
10538             'TAP::Parser::SourceHandler::Perl'=> '3.33',
10539             'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10540             'TAP::Parser::YAMLish::Reader'=> '3.33',
10541             'TAP::Parser::YAMLish::Writer'=> '3.33',
10542             'Term::ReadLine' => '1.15',
10543             'Test::Builder' => '1.001006',
10544             'Test::Builder::Module' => '1.001006',
10545             'Test::Builder::Tester' => '1.24',
10546             'Test::Builder::Tester::Color'=> '1.24',
10547             'Test::Harness' => '3.33',
10548             'Test::More' => '1.001006',
10549             'Test::Simple' => '1.001006',
10550             'Time::Piece' => '1.29',
10551             'Time::Seconds' => '1.29',
10552             'XS::APItest' => '0.64',
10553             '_charnames' => '1.42',
10554             'attributes' => '0.23',
10555             'bigint' => '0.37',
10556             'bignum' => '0.38',
10557             'bigrat' => '0.37',
10558             'constant' => '1.32',
10559             'experimental' => '0.010',
10560             'overload' => '1.23',
10561             'threads' => '1.96',
10562             'version' => '0.9909',
10563             'version::regex' => '0.9909',
10564             'version::vpp' => '0.9909',
10565             },
10566             removed => {
10567             }
10568             },
10569             5.021005 => {
10570             delta_from => 5.021004,
10571             changed => {
10572             'B' => '1.52',
10573             'B::Concise' => '0.994',
10574             'B::Debug' => '1.22',
10575             'B::Deparse' => '1.29',
10576             'B::Op_private' => '5.021005',
10577             'CPAN::Meta' => '2.142690',
10578             'CPAN::Meta::Converter' => '2.142690',
10579             'CPAN::Meta::Feature' => '2.142690',
10580             'CPAN::Meta::History' => '2.142690',
10581             'CPAN::Meta::Merge' => '2.142690',
10582             'CPAN::Meta::Prereqs' => '2.142690',
10583             'CPAN::Meta::Spec' => '2.142690',
10584             'CPAN::Meta::Validator' => '2.142690',
10585             'Compress::Raw::Bzip2' => '2.066',
10586             'Compress::Raw::Zlib' => '2.066',
10587             'Compress::Zlib' => '2.066',
10588             'Config' => '5.021005',
10589             'Cwd' => '3.51',
10590             'DynaLoader' => '1.27',
10591             'Errno' => '1.21',
10592             'ExtUtils::CBuilder' => '0.280220',
10593             'ExtUtils::CBuilder::Base'=> '0.280220',
10594             'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10595             'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10596             'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10597             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10598             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10599             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10600             'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10601             'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10602             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10603             'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10604             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10605             'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10606             'ExtUtils::Miniperl' => '1.03',
10607             'Fcntl' => '1.13',
10608             'File::Find' => '1.29',
10609             'File::Spec' => '3.51',
10610             'File::Spec::Cygwin' => '3.51',
10611             'File::Spec::Epoc' => '3.51',
10612             'File::Spec::Functions' => '3.51',
10613             'File::Spec::Mac' => '3.51',
10614             'File::Spec::OS2' => '3.51',
10615             'File::Spec::Unix' => '3.51',
10616             'File::Spec::VMS' => '3.51',
10617             'File::Spec::Win32' => '3.51',
10618             'HTTP::Tiny' => '0.050',
10619             'IO::Compress::Adapter::Bzip2'=> '2.066',
10620             'IO::Compress::Adapter::Deflate'=> '2.066',
10621             'IO::Compress::Adapter::Identity'=> '2.066',
10622             'IO::Compress::Base' => '2.066',
10623             'IO::Compress::Base::Common'=> '2.066',
10624             'IO::Compress::Bzip2' => '2.066',
10625             'IO::Compress::Deflate' => '2.066',
10626             'IO::Compress::Gzip' => '2.066',
10627             'IO::Compress::Gzip::Constants'=> '2.066',
10628             'IO::Compress::RawDeflate'=> '2.066',
10629             'IO::Compress::Zip' => '2.066',
10630             'IO::Compress::Zip::Constants'=> '2.066',
10631             'IO::Compress::Zlib::Constants'=> '2.066',
10632             'IO::Compress::Zlib::Extra'=> '2.066',
10633             'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10634             'IO::Uncompress::Adapter::Identity'=> '2.066',
10635             'IO::Uncompress::Adapter::Inflate'=> '2.066',
10636             'IO::Uncompress::AnyInflate'=> '2.066',
10637             'IO::Uncompress::AnyUncompress'=> '2.066',
10638             'IO::Uncompress::Base' => '2.066',
10639             'IO::Uncompress::Bunzip2'=> '2.066',
10640             'IO::Uncompress::Gunzip'=> '2.066',
10641             'IO::Uncompress::Inflate'=> '2.066',
10642             'IO::Uncompress::RawInflate'=> '2.066',
10643             'IO::Uncompress::Unzip' => '2.066',
10644             'JSON::PP' => '2.27300',
10645             'Module::CoreList' => '5.20141020',
10646             'Module::CoreList::TieHashDelta'=> '5.20141020',
10647             'Module::CoreList::Utils'=> '5.20141020',
10648             'Net::Cmd' => '3.02',
10649             'Net::Config' => '3.02',
10650             'Net::Domain' => '3.02',
10651             'Net::FTP' => '3.02',
10652             'Net::FTP::A' => '3.02',
10653             'Net::FTP::E' => '3.02',
10654             'Net::FTP::I' => '3.02',
10655             'Net::FTP::L' => '3.02',
10656             'Net::FTP::dataconn' => '3.02',
10657             'Net::NNTP' => '3.02',
10658             'Net::Netrc' => '3.02',
10659             'Net::POP3' => '3.02',
10660             'Net::SMTP' => '3.02',
10661             'Net::Time' => '3.02',
10662             'Opcode' => '1.29',
10663             'POSIX' => '1.45',
10664             'Socket' => '2.016',
10665             'Test::Builder' => '1.001008',
10666             'Test::Builder::Module' => '1.001008',
10667             'Test::More' => '1.001008',
10668             'Test::Simple' => '1.001008',
10669             'XS::APItest' => '0.65',
10670             'XSLoader' => '0.18',
10671             'attributes' => '0.24',
10672             'experimental' => '0.012',
10673             'feature' => '1.38',
10674             'perlfaq' => '5.0150046',
10675             're' => '0.27',
10676             'threads::shared' => '1.47',
10677             'warnings' => '1.28',
10678             'warnings::register' => '1.04',
10679             },
10680             removed => {
10681             }
10682             },
10683             5.021006 => {
10684             delta_from => 5.021005,
10685             changed => {
10686             'App::Prove' => '3.34',
10687             'App::Prove::State' => '3.34',
10688             'App::Prove::State::Result'=> '3.34',
10689             'App::Prove::State::Result::Test'=> '3.34',
10690             'B' => '1.53',
10691             'B::Concise' => '0.995',
10692             'B::Deparse' => '1.30',
10693             'B::Op_private' => '5.021006',
10694             'CPAN::Meta' => '2.143240',
10695             'CPAN::Meta::Converter' => '2.143240',
10696             'CPAN::Meta::Feature' => '2.143240',
10697             'CPAN::Meta::History' => '2.143240',
10698             'CPAN::Meta::Merge' => '2.143240',
10699             'CPAN::Meta::Prereqs' => '2.143240',
10700             'CPAN::Meta::Requirements'=> '2.130',
10701             'CPAN::Meta::Spec' => '2.143240',
10702             'CPAN::Meta::Validator' => '2.143240',
10703             'Config' => '5.021006',
10704             'Devel::Peek' => '1.19',
10705             'Digest::SHA' => '5.93',
10706             'DynaLoader' => '1.28',
10707             'Encode' => '2.64',
10708             'Exporter' => '5.72',
10709             'Exporter::Heavy' => '5.72',
10710             'ExtUtils::Command::MM' => '7.02',
10711             'ExtUtils::Liblist' => '7.02',
10712             'ExtUtils::Liblist::Kid'=> '7.02',
10713             'ExtUtils::MM' => '7.02',
10714             'ExtUtils::MM_AIX' => '7.02',
10715             'ExtUtils::MM_Any' => '7.02',
10716             'ExtUtils::MM_BeOS' => '7.02',
10717             'ExtUtils::MM_Cygwin' => '7.02',
10718             'ExtUtils::MM_DOS' => '7.02',
10719             'ExtUtils::MM_Darwin' => '7.02',
10720             'ExtUtils::MM_MacOS' => '7.02',
10721             'ExtUtils::MM_NW5' => '7.02',
10722             'ExtUtils::MM_OS2' => '7.02',
10723             'ExtUtils::MM_QNX' => '7.02',
10724             'ExtUtils::MM_UWIN' => '7.02',
10725             'ExtUtils::MM_Unix' => '7.02',
10726             'ExtUtils::MM_VMS' => '7.02',
10727             'ExtUtils::MM_VOS' => '7.02',
10728             'ExtUtils::MM_Win32' => '7.02',
10729             'ExtUtils::MM_Win95' => '7.02',
10730             'ExtUtils::MY' => '7.02',
10731             'ExtUtils::MakeMaker' => '7.02',
10732             'ExtUtils::MakeMaker::Config'=> '7.02',
10733             'ExtUtils::MakeMaker::Locale'=> '7.02',
10734             'ExtUtils::MakeMaker::version'=> '7.02',
10735             'ExtUtils::MakeMaker::version::regex'=> '7.02',
10736             'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10737             'ExtUtils::Manifest' => '1.69',
10738             'ExtUtils::Mkbootstrap' => '7.02',
10739             'ExtUtils::Mksymlists' => '7.02',
10740             'ExtUtils::ParseXS' => '3.26',
10741             'ExtUtils::ParseXS::Constants'=> '3.26',
10742             'ExtUtils::ParseXS::CountLines'=> '3.26',
10743             'ExtUtils::ParseXS::Eval'=> '3.26',
10744             'ExtUtils::ParseXS::Utilities'=> '3.26',
10745             'ExtUtils::testlib' => '7.02',
10746             'File::Spec::VMS' => '3.52',
10747             'HTTP::Tiny' => '0.051',
10748             'I18N::Langinfo' => '0.12',
10749             'IO::Socket' => '1.38',
10750             'Module::CoreList' => '5.20141120',
10751             'Module::CoreList::TieHashDelta'=> '5.20141120',
10752             'Module::CoreList::Utils'=> '5.20141120',
10753             'POSIX' => '1.46',
10754             'PerlIO::encoding' => '0.20',
10755             'PerlIO::scalar' => '0.20',
10756             'TAP::Base' => '3.34',
10757             'TAP::Formatter::Base' => '3.34',
10758             'TAP::Formatter::Color' => '3.34',
10759             'TAP::Formatter::Console'=> '3.34',
10760             'TAP::Formatter::Console::ParallelSession'=> '3.34',
10761             'TAP::Formatter::Console::Session'=> '3.34',
10762             'TAP::Formatter::File' => '3.34',
10763             'TAP::Formatter::File::Session'=> '3.34',
10764             'TAP::Formatter::Session'=> '3.34',
10765             'TAP::Harness' => '3.34',
10766             'TAP::Harness::Env' => '3.34',
10767             'TAP::Object' => '3.34',
10768             'TAP::Parser' => '3.34',
10769             'TAP::Parser::Aggregator'=> '3.34',
10770             'TAP::Parser::Grammar' => '3.34',
10771             'TAP::Parser::Iterator' => '3.34',
10772             'TAP::Parser::Iterator::Array'=> '3.34',
10773             'TAP::Parser::Iterator::Process'=> '3.34',
10774             'TAP::Parser::Iterator::Stream'=> '3.34',
10775             'TAP::Parser::IteratorFactory'=> '3.34',
10776             'TAP::Parser::Multiplexer'=> '3.34',
10777             'TAP::Parser::Result' => '3.34',
10778             'TAP::Parser::Result::Bailout'=> '3.34',
10779             'TAP::Parser::Result::Comment'=> '3.34',
10780             'TAP::Parser::Result::Plan'=> '3.34',
10781             'TAP::Parser::Result::Pragma'=> '3.34',
10782             'TAP::Parser::Result::Test'=> '3.34',
10783             'TAP::Parser::Result::Unknown'=> '3.34',
10784             'TAP::Parser::Result::Version'=> '3.34',
10785             'TAP::Parser::Result::YAML'=> '3.34',
10786             'TAP::Parser::ResultFactory'=> '3.34',
10787             'TAP::Parser::Scheduler'=> '3.34',
10788             'TAP::Parser::Scheduler::Job'=> '3.34',
10789             'TAP::Parser::Scheduler::Spinner'=> '3.34',
10790             'TAP::Parser::Source' => '3.34',
10791             'TAP::Parser::SourceHandler'=> '3.34',
10792             'TAP::Parser::SourceHandler::Executable'=> '3.34',
10793             'TAP::Parser::SourceHandler::File'=> '3.34',
10794             'TAP::Parser::SourceHandler::Handle'=> '3.34',
10795             'TAP::Parser::SourceHandler::Perl'=> '3.34',
10796             'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10797             'TAP::Parser::YAMLish::Reader'=> '3.34',
10798             'TAP::Parser::YAMLish::Writer'=> '3.34',
10799             'Test::Builder' => '1.301001_075',
10800             'Test::Builder::Module' => '1.301001_075',
10801             'Test::Builder::Tester' => '1.301001_075',
10802             'Test::Builder::Tester::Color'=> '1.301001_075',
10803             'Test::Harness' => '3.34',
10804             'Test::More' => '1.301001_075',
10805             'Test::More::DeepCheck' => undef,
10806             'Test::More::DeepCheck::Strict'=> undef,
10807             'Test::More::DeepCheck::Tolerant'=> undef,
10808             'Test::More::Tools' => undef,
10809             'Test::MostlyLike' => undef,
10810             'Test::Simple' => '1.301001_075',
10811             'Test::Stream' => '1.301001_075',
10812             'Test::Stream::ArrayBase'=> undef,
10813             'Test::Stream::ArrayBase::Meta'=> undef,
10814             'Test::Stream::Carp' => undef,
10815             'Test::Stream::Context' => undef,
10816             'Test::Stream::Event' => undef,
10817             'Test::Stream::Event::Bail'=> undef,
10818             'Test::Stream::Event::Child'=> undef,
10819             'Test::Stream::Event::Diag'=> undef,
10820             'Test::Stream::Event::Finish'=> undef,
10821             'Test::Stream::Event::Note'=> undef,
10822             'Test::Stream::Event::Ok'=> undef,
10823             'Test::Stream::Event::Plan'=> undef,
10824             'Test::Stream::Event::Subtest'=> undef,
10825             'Test::Stream::ExitMagic'=> undef,
10826             'Test::Stream::ExitMagic::Context'=> undef,
10827             'Test::Stream::Exporter'=> undef,
10828             'Test::Stream::Exporter::Meta'=> undef,
10829             'Test::Stream::IOSets' => undef,
10830             'Test::Stream::Meta' => undef,
10831             'Test::Stream::PackageUtil'=> undef,
10832             'Test::Stream::Tester' => undef,
10833             'Test::Stream::Tester::Checks'=> undef,
10834             'Test::Stream::Tester::Checks::Event'=> undef,
10835             'Test::Stream::Tester::Events'=> undef,
10836             'Test::Stream::Tester::Events::Event'=> undef,
10837             'Test::Stream::Tester::Grab'=> undef,
10838             'Test::Stream::Threads' => undef,
10839             'Test::Stream::Toolset' => undef,
10840             'Test::Stream::Util' => undef,
10841             'Test::Tester' => '1.301001_075',
10842             'Test::Tester::Capture' => undef,
10843             'Test::use::ok' => '1.301001_075',
10844             'Unicode::UCD' => '0.59',
10845             'XS::APItest' => '0.68',
10846             'XSLoader' => '0.19',
10847             'experimental' => '0.013',
10848             'locale' => '1.05',
10849             'ok' => '1.301001_075',
10850             'overload' => '1.24',
10851             're' => '0.28',
10852             'warnings' => '1.29',
10853             },
10854             removed => {
10855             }
10856             },
10857             5.021007 => {
10858             delta_from => 5.021006,
10859             changed => {
10860             'Archive::Tar' => '2.04',
10861             'Archive::Tar::Constant'=> '2.04',
10862             'Archive::Tar::File' => '2.04',
10863             'B' => '1.54',
10864             'B::Concise' => '0.996',
10865             'B::Deparse' => '1.31',
10866             'B::Op_private' => '5.021007',
10867             'B::Showlex' => '1.05',
10868             'Compress::Raw::Bzip2' => '2.067',
10869             'Compress::Raw::Zlib' => '2.067',
10870             'Compress::Zlib' => '2.067',
10871             'Config' => '5.021007',
10872             'Cwd' => '3.54',
10873             'DB_File' => '1.834',
10874             'Data::Dumper' => '2.155',
10875             'Devel::PPPort' => '3.25',
10876             'Devel::Peek' => '1.20',
10877             'DynaLoader' => '1.29',
10878             'Encode' => '2.67',
10879             'Errno' => '1.22',
10880             'ExtUtils::CBuilder' => '0.280221',
10881             'ExtUtils::CBuilder::Base'=> '0.280221',
10882             'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10883             'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10884             'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10885             'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10886             'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10887             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10888             'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10889             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10890             'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10891             'ExtUtils::Command::MM' => '7.04',
10892             'ExtUtils::Liblist' => '7.04',
10893             'ExtUtils::Liblist::Kid'=> '7.04',
10894             'ExtUtils::MM' => '7.04',
10895             'ExtUtils::MM_AIX' => '7.04',
10896             'ExtUtils::MM_Any' => '7.04',
10897             'ExtUtils::MM_BeOS' => '7.04',
10898             'ExtUtils::MM_Cygwin' => '7.04',
10899             'ExtUtils::MM_DOS' => '7.04',
10900             'ExtUtils::MM_Darwin' => '7.04',
10901             'ExtUtils::MM_MacOS' => '7.04',
10902             'ExtUtils::MM_NW5' => '7.04',
10903             'ExtUtils::MM_OS2' => '7.04',
10904             'ExtUtils::MM_QNX' => '7.04',
10905             'ExtUtils::MM_UWIN' => '7.04',
10906             'ExtUtils::MM_Unix' => '7.04',
10907             'ExtUtils::MM_VMS' => '7.04',
10908             'ExtUtils::MM_VOS' => '7.04',
10909             'ExtUtils::MM_Win32' => '7.04',
10910             'ExtUtils::MM_Win95' => '7.04',
10911             'ExtUtils::MY' => '7.04',
10912             'ExtUtils::MakeMaker' => '7.04',
10913             'ExtUtils::MakeMaker::Config'=> '7.04',
10914             'ExtUtils::MakeMaker::Locale'=> '7.04',
10915             'ExtUtils::MakeMaker::version'=> '7.04',
10916             'ExtUtils::MakeMaker::version::regex'=> '7.04',
10917             'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10918             'ExtUtils::Mkbootstrap' => '7.04',
10919             'ExtUtils::Mksymlists' => '7.04',
10920             'ExtUtils::ParseXS' => '3.27',
10921             'ExtUtils::ParseXS::Constants'=> '3.27',
10922             'ExtUtils::ParseXS::CountLines'=> '3.27',
10923             'ExtUtils::ParseXS::Eval'=> '3.27',
10924             'ExtUtils::ParseXS::Utilities'=> '3.27',
10925             'ExtUtils::testlib' => '7.04',
10926             'File::Spec' => '3.53',
10927             'File::Spec::Cygwin' => '3.54',
10928             'File::Spec::Epoc' => '3.54',
10929             'File::Spec::Functions' => '3.54',
10930             'File::Spec::Mac' => '3.54',
10931             'File::Spec::OS2' => '3.54',
10932             'File::Spec::Unix' => '3.54',
10933             'File::Spec::VMS' => '3.54',
10934             'File::Spec::Win32' => '3.54',
10935             'Filter::Util::Call' => '1.51',
10936             'HTTP::Tiny' => '0.053',
10937             'IO' => '1.35',
10938             'IO::Compress::Adapter::Bzip2'=> '2.067',
10939             'IO::Compress::Adapter::Deflate'=> '2.067',
10940             'IO::Compress::Adapter::Identity'=> '2.067',
10941             'IO::Compress::Base' => '2.067',
10942             'IO::Compress::Base::Common'=> '2.067',
10943             'IO::Compress::Bzip2' => '2.067',
10944             'IO::Compress::Deflate' => '2.067',
10945             'IO::Compress::Gzip' => '2.067',
10946             'IO::Compress::Gzip::Constants'=> '2.067',
10947             'IO::Compress::RawDeflate'=> '2.067',
10948             'IO::Compress::Zip' => '2.067',
10949             'IO::Compress::Zip::Constants'=> '2.067',
10950             'IO::Compress::Zlib::Constants'=> '2.067',
10951             'IO::Compress::Zlib::Extra'=> '2.067',
10952             'IO::Socket::IP' => '0.34',
10953             'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10954             'IO::Uncompress::Adapter::Identity'=> '2.067',
10955             'IO::Uncompress::Adapter::Inflate'=> '2.067',
10956             'IO::Uncompress::AnyInflate'=> '2.067',
10957             'IO::Uncompress::AnyUncompress'=> '2.067',
10958             'IO::Uncompress::Base' => '2.067',
10959             'IO::Uncompress::Bunzip2'=> '2.067',
10960             'IO::Uncompress::Gunzip'=> '2.067',
10961             'IO::Uncompress::Inflate'=> '2.067',
10962             'IO::Uncompress::RawInflate'=> '2.067',
10963             'IO::Uncompress::Unzip' => '2.067',
10964             'Locale::Codes' => '3.33',
10965             'Locale::Codes::Constants'=> '3.33',
10966             'Locale::Codes::Country'=> '3.33',
10967             'Locale::Codes::Country_Codes'=> '3.33',
10968             'Locale::Codes::Country_Retired'=> '3.33',
10969             'Locale::Codes::Currency'=> '3.33',
10970             'Locale::Codes::Currency_Codes'=> '3.33',
10971             'Locale::Codes::Currency_Retired'=> '3.33',
10972             'Locale::Codes::LangExt'=> '3.33',
10973             'Locale::Codes::LangExt_Codes'=> '3.33',
10974             'Locale::Codes::LangExt_Retired'=> '3.33',
10975             'Locale::Codes::LangFam'=> '3.33',
10976             'Locale::Codes::LangFam_Codes'=> '3.33',
10977             'Locale::Codes::LangFam_Retired'=> '3.33',
10978             'Locale::Codes::LangVar'=> '3.33',
10979             'Locale::Codes::LangVar_Codes'=> '3.33',
10980             'Locale::Codes::LangVar_Retired'=> '3.33',
10981             'Locale::Codes::Language'=> '3.33',
10982             'Locale::Codes::Language_Codes'=> '3.33',
10983             'Locale::Codes::Language_Retired'=> '3.33',
10984             'Locale::Codes::Script' => '3.33',
10985             'Locale::Codes::Script_Codes'=> '3.33',
10986             'Locale::Codes::Script_Retired'=> '3.33',
10987             'Locale::Country' => '3.33',
10988             'Locale::Currency' => '3.33',
10989             'Locale::Language' => '3.33',
10990             'Locale::Maketext' => '1.26',
10991             'Locale::Script' => '3.33',
10992             'Module::CoreList' => '5.20141220',
10993             'Module::CoreList::TieHashDelta'=> '5.20141220',
10994             'Module::CoreList::Utils'=> '5.20141220',
10995             'NDBM_File' => '1.14',
10996             'Net::Cmd' => '3.04',
10997             'Net::Config' => '3.04',
10998             'Net::Domain' => '3.04',
10999             'Net::FTP' => '3.04',
11000             'Net::FTP::A' => '3.04',
11001             'Net::FTP::E' => '3.04',
11002             'Net::FTP::I' => '3.04',
11003             'Net::FTP::L' => '3.04',
11004             'Net::FTP::dataconn' => '3.04',
11005             'Net::NNTP' => '3.04',
11006             'Net::Netrc' => '3.04',
11007             'Net::POP3' => '3.04',
11008             'Net::SMTP' => '3.04',
11009             'Net::Time' => '3.04',
11010             'Opcode' => '1.30',
11011             'POSIX' => '1.48',
11012             'PerlIO::scalar' => '0.21',
11013             'Pod::Escapes' => '1.07',
11014             'SDBM_File' => '1.12',
11015             'Storable' => '2.52',
11016             'Sys::Hostname' => '1.20',
11017             'Test::Builder' => '1.301001_090',
11018             'Test::Builder::Module' => '1.301001_090',
11019             'Test::Builder::Tester' => '1.301001_090',
11020             'Test::Builder::Tester::Color'=> '1.301001_090',
11021             'Test::CanFork' => undef,
11022             'Test::CanThread' => undef,
11023             'Test::More' => '1.301001_090',
11024             'Test::Simple' => '1.301001_090',
11025             'Test::Stream' => '1.301001_090',
11026             'Test::Stream::API' => undef,
11027             'Test::Stream::ForceExit'=> undef,
11028             'Test::Stream::Subtest' => undef,
11029             'Test::Tester' => '1.301001_090',
11030             'Test::use::ok' => '1.301001_090',
11031             'Unicode::Collate' => '1.09',
11032             'Unicode::Collate::CJK::Big5'=> '1.09',
11033             'Unicode::Collate::CJK::GB2312'=> '1.09',
11034             'Unicode::Collate::CJK::JISX0208'=> '1.09',
11035             'Unicode::Collate::CJK::Korean'=> '1.09',
11036             'Unicode::Collate::CJK::Pinyin'=> '1.09',
11037             'Unicode::Collate::CJK::Stroke'=> '1.09',
11038             'Unicode::Collate::CJK::Zhuyin'=> '1.09',
11039             'Unicode::Collate::Locale'=> '1.09',
11040             'XS::APItest' => '0.69',
11041             'XSLoader' => '0.20',
11042             '_charnames' => '1.43',
11043             'arybase' => '0.09',
11044             'charnames' => '1.43',
11045             'feature' => '1.39',
11046             'mro' => '1.17',
11047             'ok' => '1.301001_090',
11048             'strict' => '1.09',
11049             'threads' => '1.96_001',
11050             },
11051             removed => {
11052             }
11053             },
11054             5.021008 => {
11055             delta_from => 5.021007,
11056             changed => {
11057             'App::Prove' => '3.35',
11058             'App::Prove::State' => '3.35',
11059             'App::Prove::State::Result'=> '3.35',
11060             'App::Prove::State::Result::Test'=> '3.35',
11061             'B' => '1.55',
11062             'B::Deparse' => '1.32',
11063             'B::Op_private' => '5.021008',
11064             'CPAN::Meta::Requirements'=> '2.131',
11065             'Compress::Raw::Bzip2' => '2.068',
11066             'Compress::Raw::Zlib' => '2.068',
11067             'Compress::Zlib' => '2.068',
11068             'Config' => '5.021008',
11069             'DB_File' => '1.835',
11070             'Data::Dumper' => '2.156',
11071             'Devel::PPPort' => '3.28',
11072             'Devel::Peek' => '1.21',
11073             'Digest::MD5' => '2.54',
11074             'Digest::SHA' => '5.95',
11075             'DynaLoader' => '1.30',
11076             'ExtUtils::Command' => '1.20',
11077             'ExtUtils::Manifest' => '1.70',
11078             'Fatal' => '2.26',
11079             'File::Glob' => '1.24',
11080             'Filter::Util::Call' => '1.54',
11081             'Getopt::Long' => '2.43',
11082             'IO::Compress::Adapter::Bzip2'=> '2.068',
11083             'IO::Compress::Adapter::Deflate'=> '2.068',
11084             'IO::Compress::Adapter::Identity'=> '2.068',
11085             'IO::Compress::Base' => '2.068',
11086             'IO::Compress::Base::Common'=> '2.068',
11087             'IO::Compress::Bzip2' => '2.068',
11088             'IO::Compress::Deflate' => '2.068',
11089             'IO::Compress::Gzip' => '2.068',
11090             'IO::Compress::Gzip::Constants'=> '2.068',
11091             'IO::Compress::RawDeflate'=> '2.068',
11092             'IO::Compress::Zip' => '2.068',
11093             'IO::Compress::Zip::Constants'=> '2.068',
11094             'IO::Compress::Zlib::Constants'=> '2.068',
11095             'IO::Compress::Zlib::Extra'=> '2.068',
11096             'IO::Socket::IP' => '0.36',
11097             'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
11098             'IO::Uncompress::Adapter::Identity'=> '2.068',
11099             'IO::Uncompress::Adapter::Inflate'=> '2.068',
11100             'IO::Uncompress::AnyInflate'=> '2.068',
11101             'IO::Uncompress::AnyUncompress'=> '2.068',
11102             'IO::Uncompress::Base' => '2.068',
11103             'IO::Uncompress::Bunzip2'=> '2.068',
11104             'IO::Uncompress::Gunzip'=> '2.068',
11105             'IO::Uncompress::Inflate'=> '2.068',
11106             'IO::Uncompress::RawInflate'=> '2.068',
11107             'IO::Uncompress::Unzip' => '2.068',
11108             'MIME::Base64' => '3.15',
11109             'Module::CoreList' => '5.20150220',
11110             'Module::CoreList::TieHashDelta'=> '5.20150220',
11111             'Module::CoreList::Utils'=> '5.20150220',
11112             'Module::Load::Conditional'=> '0.64',
11113             'Module::Metadata' => '1.000026',
11114             'Net::Cmd' => '3.05',
11115             'Net::Config' => '3.05',
11116             'Net::Domain' => '3.05',
11117             'Net::FTP' => '3.05',
11118             'Net::FTP::A' => '3.05',
11119             'Net::FTP::E' => '3.05',
11120             'Net::FTP::I' => '3.05',
11121             'Net::FTP::L' => '3.05',
11122             'Net::FTP::dataconn' => '3.05',
11123             'Net::NNTP' => '3.05',
11124             'Net::Netrc' => '3.05',
11125             'Net::POP3' => '3.05',
11126             'Net::SMTP' => '3.05',
11127             'Net::Time' => '3.05',
11128             'Opcode' => '1.31',
11129             'POSIX' => '1.49',
11130             'PerlIO::encoding' => '0.21',
11131             'Pod::Simple' => '3.29',
11132             'Pod::Simple::BlackBox' => '3.29',
11133             'Pod::Simple::Checker' => '3.29',
11134             'Pod::Simple::Debug' => '3.29',
11135             'Pod::Simple::DumpAsText'=> '3.29',
11136             'Pod::Simple::DumpAsXML'=> '3.29',
11137             'Pod::Simple::HTML' => '3.29',
11138             'Pod::Simple::HTMLBatch'=> '3.29',
11139             'Pod::Simple::LinkSection'=> '3.29',
11140             'Pod::Simple::Methody' => '3.29',
11141             'Pod::Simple::Progress' => '3.29',
11142             'Pod::Simple::PullParser'=> '3.29',
11143             'Pod::Simple::PullParserEndToken'=> '3.29',
11144             'Pod::Simple::PullParserStartToken'=> '3.29',
11145             'Pod::Simple::PullParserTextToken'=> '3.29',
11146             'Pod::Simple::PullParserToken'=> '3.29',
11147             'Pod::Simple::RTF' => '3.29',
11148             'Pod::Simple::Search' => '3.29',
11149             'Pod::Simple::SimpleTree'=> '3.29',
11150             'Pod::Simple::Text' => '3.29',
11151             'Pod::Simple::TextContent'=> '3.29',
11152             'Pod::Simple::TiedOutFH'=> '3.29',
11153             'Pod::Simple::Transcode'=> '3.29',
11154             'Pod::Simple::TranscodeDumb'=> '3.29',
11155             'Pod::Simple::TranscodeSmart'=> '3.29',
11156             'Pod::Simple::XHTML' => '3.29',
11157             'Pod::Simple::XMLOutStream'=> '3.29',
11158             'SDBM_File' => '1.13',
11159             'Safe' => '2.39',
11160             'TAP::Base' => '3.35',
11161             'TAP::Formatter::Base' => '3.35',
11162             'TAP::Formatter::Color' => '3.35',
11163             'TAP::Formatter::Console'=> '3.35',
11164             'TAP::Formatter::Console::ParallelSession'=> '3.35',
11165             'TAP::Formatter::Console::Session'=> '3.35',
11166             'TAP::Formatter::File' => '3.35',
11167             'TAP::Formatter::File::Session'=> '3.35',
11168             'TAP::Formatter::Session'=> '3.35',
11169             'TAP::Harness' => '3.35',
11170             'TAP::Harness::Env' => '3.35',
11171             'TAP::Object' => '3.35',
11172             'TAP::Parser' => '3.35',
11173             'TAP::Parser::Aggregator'=> '3.35',
11174             'TAP::Parser::Grammar' => '3.35',
11175             'TAP::Parser::Iterator' => '3.35',
11176             'TAP::Parser::Iterator::Array'=> '3.35',
11177             'TAP::Parser::Iterator::Process'=> '3.35',
11178             'TAP::Parser::Iterator::Stream'=> '3.35',
11179             'TAP::Parser::IteratorFactory'=> '3.35',
11180             'TAP::Parser::Multiplexer'=> '3.35',
11181             'TAP::Parser::Result' => '3.35',
11182             'TAP::Parser::Result::Bailout'=> '3.35',
11183             'TAP::Parser::Result::Comment'=> '3.35',
11184             'TAP::Parser::Result::Plan'=> '3.35',
11185             'TAP::Parser::Result::Pragma'=> '3.35',
11186             'TAP::Parser::Result::Test'=> '3.35',
11187             'TAP::Parser::Result::Unknown'=> '3.35',
11188             'TAP::Parser::Result::Version'=> '3.35',
11189             'TAP::Parser::Result::YAML'=> '3.35',
11190             'TAP::Parser::ResultFactory'=> '3.35',
11191             'TAP::Parser::Scheduler'=> '3.35',
11192             'TAP::Parser::Scheduler::Job'=> '3.35',
11193             'TAP::Parser::Scheduler::Spinner'=> '3.35',
11194             'TAP::Parser::Source' => '3.35',
11195             'TAP::Parser::SourceHandler'=> '3.35',
11196             'TAP::Parser::SourceHandler::Executable'=> '3.35',
11197             'TAP::Parser::SourceHandler::File'=> '3.35',
11198             'TAP::Parser::SourceHandler::Handle'=> '3.35',
11199             'TAP::Parser::SourceHandler::Perl'=> '3.35',
11200             'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11201             'TAP::Parser::YAMLish::Reader'=> '3.35',
11202             'TAP::Parser::YAMLish::Writer'=> '3.35',
11203             'Test::Builder' => '1.301001_097',
11204             'Test::Builder::Module' => '1.301001_097',
11205             'Test::Builder::Tester' => '1.301001_097',
11206             'Test::Builder::Tester::Color'=> '1.301001_097',
11207             'Test::Harness' => '3.35',
11208             'Test::More' => '1.301001_097',
11209             'Test::Simple' => '1.301001_097',
11210             'Test::Stream' => '1.301001_097',
11211             'Test::Stream::Block' => undef,
11212             'Test::Tester' => '1.301001_097',
11213             'Test::Tester::CaptureRunner'=> undef,
11214             'Test::Tester::Delegate'=> undef,
11215             'Test::use::ok' => '1.301001_097',
11216             'Unicode::Collate' => '1.10',
11217             'Unicode::Collate::CJK::Big5'=> '1.10',
11218             'Unicode::Collate::CJK::GB2312'=> '1.10',
11219             'Unicode::Collate::CJK::JISX0208'=> '1.10',
11220             'Unicode::Collate::CJK::Korean'=> '1.10',
11221             'Unicode::Collate::CJK::Pinyin'=> '1.10',
11222             'Unicode::Collate::CJK::Stroke'=> '1.10',
11223             'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11224             'Unicode::Collate::Locale'=> '1.10',
11225             'VMS::DCLsym' => '1.06',
11226             'XS::APItest' => '0.70',
11227             'arybase' => '0.10',
11228             'attributes' => '0.25',
11229             'autodie' => '2.26',
11230             'autodie::Scope::Guard' => '2.26',
11231             'autodie::Scope::GuardStack'=> '2.26',
11232             'autodie::ScopeUtil' => '2.26',
11233             'autodie::exception' => '2.26',
11234             'autodie::exception::system'=> '2.26',
11235             'autodie::hints' => '2.26',
11236             'autodie::skip' => '2.26',
11237             'ok' => '1.301001_097',
11238             're' => '0.30',
11239             'warnings' => '1.30',
11240             },
11241             removed => {
11242             }
11243             },
11244             5.020002 => {
11245             delta_from => 5.020001,
11246             changed => {
11247             'CPAN::Author' => '5.5002',
11248             'CPAN::CacheMgr' => '5.5002',
11249             'CPAN::FTP' => '5.5006',
11250             'CPAN::HTTP::Client' => '1.9601',
11251             'CPAN::HandleConfig' => '5.5005',
11252             'CPAN::Index' => '1.9601',
11253             'CPAN::LWP::UserAgent' => '1.9601',
11254             'CPAN::Mirrors' => '1.9601',
11255             'Config' => '5.020002',
11256             'Cwd' => '3.48_01',
11257             'Data::Dumper' => '2.151_01',
11258             'Errno' => '1.20_05',
11259             'File::Spec' => '3.48_01',
11260             'File::Spec::Cygwin' => '3.48_01',
11261             'File::Spec::Epoc' => '3.48_01',
11262             'File::Spec::Functions' => '3.48_01',
11263             'File::Spec::Mac' => '3.48_01',
11264             'File::Spec::OS2' => '3.48_01',
11265             'File::Spec::Unix' => '3.48_01',
11266             'File::Spec::VMS' => '3.48_01',
11267             'File::Spec::Win32' => '3.48_01',
11268             'IO::Socket' => '1.38',
11269             'Module::CoreList' => '5.20150214',
11270             'Module::CoreList::TieHashDelta'=> '5.20150214',
11271             'Module::CoreList::Utils'=> '5.20150214',
11272             'PerlIO::scalar' => '0.18_01',
11273             'Pod::PlainText' => '2.07',
11274             'Storable' => '2.49_01',
11275             'VMS::DCLsym' => '1.05_01',
11276             'VMS::Stdio' => '2.41',
11277             'attributes' => '0.23',
11278             'feature' => '1.36_01',
11279             },
11280             removed => {
11281             }
11282             },
11283             5.021009 => {
11284             delta_from => 5.021008,
11285             changed => {
11286             'B' => '1.56',
11287             'B::Debug' => '1.23',
11288             'B::Deparse' => '1.33',
11289             'B::Op_private' => '5.021009',
11290             'Benchmark' => '1.20',
11291             'CPAN::Author' => '5.5002',
11292             'CPAN::CacheMgr' => '5.5002',
11293             'CPAN::FTP' => '5.5006',
11294             'CPAN::HTTP::Client' => '1.9601',
11295             'CPAN::HandleConfig' => '5.5005',
11296             'CPAN::Index' => '1.9601',
11297             'CPAN::LWP::UserAgent' => '1.9601',
11298             'CPAN::Meta::Requirements'=> '2.132',
11299             'CPAN::Mirrors' => '1.9601',
11300             'Carp' => '1.35',
11301             'Carp::Heavy' => '1.35',
11302             'Config' => '5.021009',
11303             'Config::Perl::V' => '0.23',
11304             'Data::Dumper' => '2.157',
11305             'Devel::Peek' => '1.22',
11306             'DynaLoader' => '1.31',
11307             'Encode' => '2.70',
11308             'Encode::MIME::Header' => '2.16',
11309             'Errno' => '1.23',
11310             'ExtUtils::Miniperl' => '1.04',
11311             'HTTP::Tiny' => '0.054',
11312             'Module::CoreList' => '5.20150220',
11313             'Module::CoreList::TieHashDelta'=> '5.20150220',
11314             'Module::CoreList::Utils'=> '5.20150220',
11315             'Opcode' => '1.32',
11316             'POSIX' => '1.51',
11317             'Perl::OSType' => '1.008',
11318             'PerlIO::scalar' => '0.22',
11319             'Pod::Find' => '1.63',
11320             'Pod::InputObjects' => '1.63',
11321             'Pod::ParseUtils' => '1.63',
11322             'Pod::Parser' => '1.63',
11323             'Pod::Perldoc' => '3.25',
11324             'Pod::Perldoc::BaseTo' => '3.25',
11325             'Pod::Perldoc::GetOptsOO'=> '3.25',
11326             'Pod::Perldoc::ToANSI' => '3.25',
11327             'Pod::Perldoc::ToChecker'=> '3.25',
11328             'Pod::Perldoc::ToMan' => '3.25',
11329             'Pod::Perldoc::ToNroff' => '3.25',
11330             'Pod::Perldoc::ToPod' => '3.25',
11331             'Pod::Perldoc::ToRtf' => '3.25',
11332             'Pod::Perldoc::ToTerm' => '3.25',
11333             'Pod::Perldoc::ToText' => '3.25',
11334             'Pod::Perldoc::ToTk' => '3.25',
11335             'Pod::Perldoc::ToXml' => '3.25',
11336             'Pod::PlainText' => '2.07',
11337             'Pod::Select' => '1.63',
11338             'Socket' => '2.018',
11339             'Storable' => '2.53',
11340             'Test::Builder' => '1.301001_098',
11341             'Test::Builder::Module' => '1.301001_098',
11342             'Test::Builder::Tester' => '1.301001_098',
11343             'Test::Builder::Tester::Color'=> '1.301001_098',
11344             'Test::More' => '1.301001_098',
11345             'Test::Simple' => '1.301001_098',
11346             'Test::Stream' => '1.301001_098',
11347             'Test::Tester' => '1.301001_098',
11348             'Test::use::ok' => '1.301001_098',
11349             'Unicode::Collate' => '1.11',
11350             'Unicode::Collate::CJK::Big5'=> '1.11',
11351             'Unicode::Collate::CJK::GB2312'=> '1.11',
11352             'Unicode::Collate::CJK::JISX0208'=> '1.11',
11353             'Unicode::Collate::CJK::Korean'=> '1.11',
11354             'Unicode::Collate::CJK::Pinyin'=> '1.11',
11355             'Unicode::Collate::CJK::Stroke'=> '1.11',
11356             'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11357             'Unicode::Collate::Locale'=> '1.11',
11358             'Unicode::UCD' => '0.61',
11359             'VMS::Stdio' => '2.41',
11360             'Win32' => '0.51',
11361             'Win32API::File' => '0.1202',
11362             'attributes' => '0.26',
11363             'bigint' => '0.39',
11364             'bignum' => '0.39',
11365             'bigrat' => '0.39',
11366             'constant' => '1.33',
11367             'encoding' => '2.13',
11368             'feature' => '1.40',
11369             'ok' => '1.301001_098',
11370             'overload' => '1.25',
11371             'perlfaq' => '5.021009',
11372             're' => '0.31',
11373             'threads::shared' => '1.48',
11374             'warnings' => '1.31',
11375             },
11376             removed => {
11377             }
11378             },
11379             5.021010 => {
11380             delta_from => 5.021009,
11381             changed => {
11382             'App::Cpan' => '1.63',
11383             'B' => '1.57',
11384             'B::Deparse' => '1.34',
11385             'B::Op_private' => '5.021010',
11386             'Benchmark' => '1.2',
11387             'CPAN' => '2.10',
11388             'CPAN::Distribution' => '2.04',
11389             'CPAN::FirstTime' => '5.5307',
11390             'CPAN::HTTP::Credentials'=> '1.9601',
11391             'CPAN::HandleConfig' => '5.5006',
11392             'CPAN::Meta' => '2.150001',
11393             'CPAN::Meta::Converter' => '2.150001',
11394             'CPAN::Meta::Feature' => '2.150001',
11395             'CPAN::Meta::History' => '2.150001',
11396             'CPAN::Meta::Merge' => '2.150001',
11397             'CPAN::Meta::Prereqs' => '2.150001',
11398             'CPAN::Meta::Spec' => '2.150001',
11399             'CPAN::Meta::Validator' => '2.150001',
11400             'CPAN::Module' => '5.5002',
11401             'CPAN::Plugin' => '0.95',
11402             'CPAN::Plugin::Specfile'=> '0.01',
11403             'CPAN::Shell' => '5.5005',
11404             'Carp' => '1.36',
11405             'Carp::Heavy' => '1.36',
11406             'Config' => '5.02101',
11407             'Cwd' => '3.55',
11408             'DB' => '1.08',
11409             'Data::Dumper' => '2.158',
11410             'Devel::PPPort' => '3.31',
11411             'DynaLoader' => '1.32',
11412             'Encode' => '2.72',
11413             'Encode::Alias' => '2.19',
11414             'File::Spec' => '3.55',
11415             'File::Spec::Cygwin' => '3.55',
11416             'File::Spec::Epoc' => '3.55',
11417             'File::Spec::Functions' => '3.55',
11418             'File::Spec::Mac' => '3.55',
11419             'File::Spec::OS2' => '3.55',
11420             'File::Spec::Unix' => '3.55',
11421             'File::Spec::VMS' => '3.55',
11422             'File::Spec::Win32' => '3.55',
11423             'Getopt::Long' => '2.45',
11424             'Locale::Codes' => '3.34',
11425             'Locale::Codes::Constants'=> '3.34',
11426             'Locale::Codes::Country'=> '3.34',
11427             'Locale::Codes::Country_Codes'=> '3.34',
11428             'Locale::Codes::Country_Retired'=> '3.34',
11429             'Locale::Codes::Currency'=> '3.34',
11430             'Locale::Codes::Currency_Codes'=> '3.34',
11431             'Locale::Codes::Currency_Retired'=> '3.34',
11432             'Locale::Codes::LangExt'=> '3.34',
11433             'Locale::Codes::LangExt_Codes'=> '3.34',
11434             'Locale::Codes::LangExt_Retired'=> '3.34',
11435             'Locale::Codes::LangFam'=> '3.34',
11436             'Locale::Codes::LangFam_Codes'=> '3.34',
11437             'Locale::Codes::LangFam_Retired'=> '3.34',
11438             'Locale::Codes::LangVar'=> '3.34',
11439             'Locale::Codes::LangVar_Codes'=> '3.34',
11440             'Locale::Codes::LangVar_Retired'=> '3.34',
11441             'Locale::Codes::Language'=> '3.34',
11442             'Locale::Codes::Language_Codes'=> '3.34',
11443             'Locale::Codes::Language_Retired'=> '3.34',
11444             'Locale::Codes::Script' => '3.34',
11445             'Locale::Codes::Script_Codes'=> '3.34',
11446             'Locale::Codes::Script_Retired'=> '3.34',
11447             'Locale::Country' => '3.34',
11448             'Locale::Currency' => '3.34',
11449             'Locale::Language' => '3.34',
11450             'Locale::Script' => '3.34',
11451             'Module::CoreList' => '5.20150320',
11452             'Module::CoreList::TieHashDelta'=> '5.20150320',
11453             'Module::CoreList::Utils'=> '5.20150320',
11454             'POSIX' => '1.52',
11455             'Pod::Functions' => '1.09',
11456             'Term::Complete' => '1.403',
11457             'Test::Builder' => '1.001014',
11458             'Test::Builder::IO::Scalar'=> '2.113',
11459             'Test::Builder::Module' => '1.001014',
11460             'Test::Builder::Tester' => '1.28',
11461             'Test::Builder::Tester::Color'=> '1.290001',
11462             'Test::More' => '1.001014',
11463             'Test::Simple' => '1.001014',
11464             'Test::Tester' => '0.114',
11465             'Test::use::ok' => '0.16',
11466             'Text::Balanced' => '2.03',
11467             'Text::ParseWords' => '3.30',
11468             'Unicode::Collate' => '1.12',
11469             'Unicode::Collate::CJK::Big5'=> '1.12',
11470             'Unicode::Collate::CJK::GB2312'=> '1.12',
11471             'Unicode::Collate::CJK::JISX0208'=> '1.12',
11472             'Unicode::Collate::CJK::Korean'=> '1.12',
11473             'Unicode::Collate::CJK::Pinyin'=> '1.12',
11474             'Unicode::Collate::CJK::Stroke'=> '1.12',
11475             'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11476             'Unicode::Collate::Locale'=> '1.12',
11477             'XS::APItest' => '0.71',
11478             'encoding' => '2.14',
11479             'locale' => '1.06',
11480             'meta_notation' => undef,
11481             'ok' => '0.16',
11482             'parent' => '0.232',
11483             're' => '0.32',
11484             'sigtrap' => '1.08',
11485             'threads' => '2.01',
11486             'utf8' => '1.15',
11487             },
11488             removed => {
11489             'Test::CanFork' => 1,
11490             'Test::CanThread' => 1,
11491             'Test::More::DeepCheck' => 1,
11492             'Test::More::DeepCheck::Strict'=> 1,
11493             'Test::More::DeepCheck::Tolerant'=> 1,
11494             'Test::More::Tools' => 1,
11495             'Test::MostlyLike' => 1,
11496             'Test::Stream' => 1,
11497             'Test::Stream::API' => 1,
11498             'Test::Stream::ArrayBase'=> 1,
11499             'Test::Stream::ArrayBase::Meta'=> 1,
11500             'Test::Stream::Block' => 1,
11501             'Test::Stream::Carp' => 1,
11502             'Test::Stream::Context' => 1,
11503             'Test::Stream::Event' => 1,
11504             'Test::Stream::Event::Bail'=> 1,
11505             'Test::Stream::Event::Child'=> 1,
11506             'Test::Stream::Event::Diag'=> 1,
11507             'Test::Stream::Event::Finish'=> 1,
11508             'Test::Stream::Event::Note'=> 1,
11509             'Test::Stream::Event::Ok'=> 1,
11510             'Test::Stream::Event::Plan'=> 1,
11511             'Test::Stream::Event::Subtest'=> 1,
11512             'Test::Stream::ExitMagic'=> 1,
11513             'Test::Stream::ExitMagic::Context'=> 1,
11514             'Test::Stream::Exporter'=> 1,
11515             'Test::Stream::Exporter::Meta'=> 1,
11516             'Test::Stream::ForceExit'=> 1,
11517             'Test::Stream::IOSets' => 1,
11518             'Test::Stream::Meta' => 1,
11519             'Test::Stream::PackageUtil'=> 1,
11520             'Test::Stream::Subtest' => 1,
11521             'Test::Stream::Tester' => 1,
11522             'Test::Stream::Tester::Checks'=> 1,
11523             'Test::Stream::Tester::Checks::Event'=> 1,
11524             'Test::Stream::Tester::Events'=> 1,
11525             'Test::Stream::Tester::Events::Event'=> 1,
11526             'Test::Stream::Tester::Grab'=> 1,
11527             'Test::Stream::Threads' => 1,
11528             'Test::Stream::Toolset' => 1,
11529             'Test::Stream::Util' => 1,
11530             }
11531             },
11532             5.021011 => {
11533             delta_from => 5.021010,
11534             changed => {
11535             'B' => '1.58',
11536             'B::Deparse' => '1.35',
11537             'B::Op_private' => '5.021011',
11538             'CPAN' => '2.11',
11539             'Config' => '5.021011',
11540             'Config::Perl::V' => '0.24',
11541             'Cwd' => '3.56',
11542             'ExtUtils::Miniperl' => '1.05',
11543             'ExtUtils::ParseXS' => '3.28',
11544             'ExtUtils::ParseXS::Constants'=> '3.28',
11545             'ExtUtils::ParseXS::CountLines'=> '3.28',
11546             'ExtUtils::ParseXS::Eval'=> '3.28',
11547             'ExtUtils::ParseXS::Utilities'=> '3.28',
11548             'ExtUtils::Typemaps' => '3.28',
11549             'ExtUtils::Typemaps::Cmd'=> '3.28',
11550             'ExtUtils::Typemaps::InputMap'=> '3.28',
11551             'ExtUtils::Typemaps::OutputMap'=> '3.28',
11552             'ExtUtils::Typemaps::Type'=> '3.28',
11553             'File::Spec' => '3.56',
11554             'File::Spec::Cygwin' => '3.56',
11555             'File::Spec::Epoc' => '3.56',
11556             'File::Spec::Functions' => '3.56',
11557             'File::Spec::Mac' => '3.56',
11558             'File::Spec::OS2' => '3.56',
11559             'File::Spec::Unix' => '3.56',
11560             'File::Spec::VMS' => '3.56',
11561             'File::Spec::Win32' => '3.56',
11562             'IO::Socket::IP' => '0.37',
11563             'Module::CoreList' => '5.20150420',
11564             'Module::CoreList::TieHashDelta'=> '5.20150420',
11565             'Module::CoreList::Utils'=> '5.20150420',
11566             'PerlIO::mmap' => '0.014',
11567             'XS::APItest' => '0.72',
11568             'attributes' => '0.27',
11569             'if' => '0.0604',
11570             'utf8' => '1.16',
11571             'warnings' => '1.32',
11572             },
11573             removed => {
11574             }
11575             },
11576             5.022000 => {
11577             delta_from => 5.021011,
11578             changed => {
11579             'B::Op_private' => '5.022000',
11580             'Config' => '5.022',
11581             'ExtUtils::Command::MM' => '7.04_01',
11582             'ExtUtils::Liblist' => '7.04_01',
11583             'ExtUtils::Liblist::Kid'=> '7.04_01',
11584             'ExtUtils::MM' => '7.04_01',
11585             'ExtUtils::MM_AIX' => '7.04_01',
11586             'ExtUtils::MM_Any' => '7.04_01',
11587             'ExtUtils::MM_BeOS' => '7.04_01',
11588             'ExtUtils::MM_Cygwin' => '7.04_01',
11589             'ExtUtils::MM_DOS' => '7.04_01',
11590             'ExtUtils::MM_Darwin' => '7.04_01',
11591             'ExtUtils::MM_MacOS' => '7.04_01',
11592             'ExtUtils::MM_NW5' => '7.04_01',
11593             'ExtUtils::MM_OS2' => '7.04_01',
11594             'ExtUtils::MM_QNX' => '7.04_01',
11595             'ExtUtils::MM_UWIN' => '7.04_01',
11596             'ExtUtils::MM_Unix' => '7.04_01',
11597             'ExtUtils::MM_VMS' => '7.04_01',
11598             'ExtUtils::MM_VOS' => '7.04_01',
11599             'ExtUtils::MM_Win32' => '7.04_01',
11600             'ExtUtils::MM_Win95' => '7.04_01',
11601             'ExtUtils::MY' => '7.04_01',
11602             'ExtUtils::MakeMaker' => '7.04_01',
11603             'ExtUtils::MakeMaker::Config'=> '7.04_01',
11604             'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11605             'ExtUtils::MakeMaker::version'=> '7.04_01',
11606             'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11607             'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11608             'ExtUtils::Mkbootstrap' => '7.04_01',
11609             'ExtUtils::Mksymlists' => '7.04_01',
11610             'ExtUtils::testlib' => '7.04_01',
11611             'Module::CoreList' => '5.20150520',
11612             'Module::CoreList::TieHashDelta'=> '5.20150520',
11613             'Module::CoreList::Utils'=> '5.20150520',
11614             'POSIX' => '1.53',
11615             'PerlIO::via::QuotedPrint'=> '0.08',
11616             'overload' => '1.26',
11617             'utf8' => '1.17',
11618             },
11619             removed => {
11620             }
11621             },
11622             5.023000 => {
11623             delta_from => 5.022000,
11624             changed => {
11625             'B::Op_private' => '5.023000',
11626             'CPAN::Meta' => '2.150005',
11627             'CPAN::Meta::Converter' => '2.150005',
11628             'CPAN::Meta::Feature' => '2.150005',
11629             'CPAN::Meta::History' => '2.150005',
11630             'CPAN::Meta::Merge' => '2.150005',
11631             'CPAN::Meta::Prereqs' => '2.150005',
11632             'CPAN::Meta::Requirements'=> '2.133',
11633             'CPAN::Meta::Spec' => '2.150005',
11634             'CPAN::Meta::Validator' => '2.150005',
11635             'CPAN::Meta::YAML' => '0.016',
11636             'Config' => '5.023',
11637             'Encode' => '2.73',
11638             'ExtUtils::CBuilder' => '0.280223',
11639             'ExtUtils::CBuilder::Base'=> '0.280223',
11640             'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11641             'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11642             'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11643             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11644             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11645             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11646             'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11647             'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11648             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11649             'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11650             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11651             'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11652             'Fatal' => '2.27',
11653             'Getopt::Long' => '2.46',
11654             'HTTP::Tiny' => '0.056',
11655             'List::Util' => '1.42_01',
11656             'List::Util::XS' => '1.42_01',
11657             'Locale::Codes' => '3.35',
11658             'Locale::Codes::Constants'=> '3.35',
11659             'Locale::Codes::Country'=> '3.35',
11660             'Locale::Codes::Country_Codes'=> '3.35',
11661             'Locale::Codes::Country_Retired'=> '3.35',
11662             'Locale::Codes::Currency'=> '3.35',
11663             'Locale::Codes::Currency_Codes'=> '3.35',
11664             'Locale::Codes::Currency_Retired'=> '3.35',
11665             'Locale::Codes::LangExt'=> '3.35',
11666             'Locale::Codes::LangExt_Codes'=> '3.35',
11667             'Locale::Codes::LangExt_Retired'=> '3.35',
11668             'Locale::Codes::LangFam'=> '3.35',
11669             'Locale::Codes::LangFam_Codes'=> '3.35',
11670             'Locale::Codes::LangFam_Retired'=> '3.35',
11671             'Locale::Codes::LangVar'=> '3.35',
11672             'Locale::Codes::LangVar_Codes'=> '3.35',
11673             'Locale::Codes::LangVar_Retired'=> '3.35',
11674             'Locale::Codes::Language'=> '3.35',
11675             'Locale::Codes::Language_Codes'=> '3.35',
11676             'Locale::Codes::Language_Retired'=> '3.35',
11677             'Locale::Codes::Script' => '3.35',
11678             'Locale::Codes::Script_Codes'=> '3.35',
11679             'Locale::Codes::Script_Retired'=> '3.35',
11680             'Locale::Country' => '3.35',
11681             'Locale::Currency' => '3.35',
11682             'Locale::Language' => '3.35',
11683             'Locale::Script' => '3.35',
11684             'Math::BigFloat' => '1.999701',
11685             'Math::BigInt' => '1.999701',
11686             'Math::BigInt::Calc' => '1.999701',
11687             'Math::BigInt::CalcEmu' => '1.999701',
11688             'Math::BigRat' => '0.260801',
11689             'Module::CoreList' => '5.20150620',
11690             'Module::CoreList::TieHashDelta'=> '5.20150620',
11691             'Module::CoreList::Utils'=> '5.20150620',
11692             'Module::Metadata' => '1.000027',
11693             'Net::Cmd' => '3.06',
11694             'Net::Config' => '3.06',
11695             'Net::Domain' => '3.06',
11696             'Net::FTP' => '3.06',
11697             'Net::FTP::A' => '3.06',
11698             'Net::FTP::E' => '3.06',
11699             'Net::FTP::I' => '3.06',
11700             'Net::FTP::L' => '3.06',
11701             'Net::FTP::dataconn' => '3.06',
11702             'Net::NNTP' => '3.06',
11703             'Net::Netrc' => '3.06',
11704             'Net::POP3' => '3.06',
11705             'Net::SMTP' => '3.06',
11706             'Net::Time' => '3.06',
11707             'POSIX' => '1.54',
11708             'Parse::CPAN::Meta' => '1.4417',
11709             'Pod::Simple' => '3.30',
11710             'Pod::Simple::BlackBox' => '3.30',
11711             'Pod::Simple::Checker' => '3.30',
11712             'Pod::Simple::Debug' => '3.30',
11713             'Pod::Simple::DumpAsText'=> '3.30',
11714             'Pod::Simple::DumpAsXML'=> '3.30',
11715             'Pod::Simple::HTML' => '3.30',
11716             'Pod::Simple::HTMLBatch'=> '3.30',
11717             'Pod::Simple::LinkSection'=> '3.30',
11718             'Pod::Simple::Methody' => '3.30',
11719             'Pod::Simple::Progress' => '3.30',
11720             'Pod::Simple::PullParser'=> '3.30',
11721             'Pod::Simple::PullParserEndToken'=> '3.30',
11722             'Pod::Simple::PullParserStartToken'=> '3.30',
11723             'Pod::Simple::PullParserTextToken'=> '3.30',
11724             'Pod::Simple::PullParserToken'=> '3.30',
11725             'Pod::Simple::RTF' => '3.30',
11726             'Pod::Simple::Search' => '3.30',
11727             'Pod::Simple::SimpleTree'=> '3.30',
11728             'Pod::Simple::Text' => '3.30',
11729             'Pod::Simple::TextContent'=> '3.30',
11730             'Pod::Simple::TiedOutFH'=> '3.30',
11731             'Pod::Simple::Transcode'=> '3.30',
11732             'Pod::Simple::TranscodeDumb'=> '3.30',
11733             'Pod::Simple::TranscodeSmart'=> '3.30',
11734             'Pod::Simple::XHTML' => '3.30',
11735             'Pod::Simple::XMLOutStream'=> '3.30',
11736             'Pod::Usage' => '1.67',
11737             'Scalar::Util' => '1.42_01',
11738             'Socket' => '2.019',
11739             'Sub::Util' => '1.42_01',
11740             'Time::Piece' => '1.30',
11741             'Time::Seconds' => '1.30',
11742             'UNIVERSAL' => '1.13',
11743             'Unicode' => '8.0.0',
11744             'XS::APItest' => '0.73',
11745             'autodie' => '2.27',
11746             'autodie::Scope::Guard' => '2.27',
11747             'autodie::Scope::GuardStack'=> '2.27',
11748             'autodie::Util' => '2.27',
11749             'autodie::exception' => '2.27',
11750             'autodie::exception::system'=> '2.27',
11751             'autodie::hints' => '2.27',
11752             'autodie::skip' => '2.27',
11753             'encoding' => '2.15',
11754             'feature' => '1.41',
11755             'parent' => '0.234',
11756             'threads' => '2.02',
11757             },
11758             removed => {
11759             }
11760             },
11761             5.023001 => {
11762             delta_from => 5.023000,
11763             changed => {
11764             'B::Op_private' => '5.023001',
11765             'Config' => '5.023001',
11766             'DynaLoader' => '1.33',
11767             'Encode' => '2.75',
11768             'Encode::MIME::Header' => '2.17',
11769             'Encode::Unicode' => '2.13',
11770             'Fatal' => '2.29',
11771             'File::Path' => '2.11',
11772             'Getopt::Long' => '2.47',
11773             'I18N::Langinfo' => '0.13',
11774             'IPC::Open3' => '1.19',
11775             'Module::CoreList' => '5.20150720',
11776             'Module::CoreList::TieHashDelta'=> '5.20150720',
11777             'Module::CoreList::Utils'=> '5.20150720',
11778             'Net::Cmd' => '3.07',
11779             'Net::Config' => '3.07',
11780             'Net::Domain' => '3.07',
11781             'Net::FTP' => '3.07',
11782             'Net::FTP::A' => '3.07',
11783             'Net::FTP::E' => '3.07',
11784             'Net::FTP::I' => '3.07',
11785             'Net::FTP::L' => '3.07',
11786             'Net::FTP::dataconn' => '3.07',
11787             'Net::NNTP' => '3.07',
11788             'Net::Netrc' => '3.07',
11789             'Net::POP3' => '3.07',
11790             'Net::SMTP' => '3.07',
11791             'Net::Time' => '3.07',
11792             'Opcode' => '1.33',
11793             'POSIX' => '1.55',
11794             'PerlIO::scalar' => '0.23',
11795             'Socket' => '2.020',
11796             'Storable' => '2.54',
11797             'Unicode::Collate' => '1.14',
11798             'Unicode::Collate::CJK::Big5'=> '1.14',
11799             'Unicode::Collate::CJK::GB2312'=> '1.14',
11800             'Unicode::Collate::CJK::JISX0208'=> '1.14',
11801             'Unicode::Collate::CJK::Korean'=> '1.14',
11802             'Unicode::Collate::CJK::Pinyin'=> '1.14',
11803             'Unicode::Collate::CJK::Stroke'=> '1.14',
11804             'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11805             'Unicode::Collate::Locale'=> '1.14',
11806             'Unicode::Normalize' => '1.19',
11807             'XS::APItest' => '0.74',
11808             'XS::Typemap' => '0.14',
11809             'autodie' => '2.29',
11810             'autodie::Scope::Guard' => '2.29',
11811             'autodie::Scope::GuardStack'=> '2.29',
11812             'autodie::Util' => '2.29',
11813             'autodie::exception' => '2.29',
11814             'autodie::exception::system'=> '2.29',
11815             'autodie::hints' => '2.29',
11816             'autodie::skip' => '2.29',
11817             'encoding' => '2.16',
11818             'feature' => '1.42',
11819             'warnings' => '1.33',
11820             },
11821             removed => {
11822             'autodie::ScopeUtil' => 1,
11823             }
11824             },
11825             5.023002 => {
11826             delta_from => 5.023001,
11827             changed => {
11828             'Attribute::Handlers' => '0.99',
11829             'B::Op_private' => '5.023002',
11830             'CPAN::Meta::YAML' => '0.017',
11831             'Config' => '5.023002',
11832             'Cwd' => '3.57',
11833             'Encode' => '2.76',
11834             'ExtUtils::ParseXS' => '3.29',
11835             'ExtUtils::ParseXS::Constants'=> '3.29',
11836             'ExtUtils::ParseXS::CountLines'=> '3.29',
11837             'ExtUtils::ParseXS::Eval'=> '3.29',
11838             'ExtUtils::ParseXS::Utilities'=> '3.29',
11839             'ExtUtils::Typemaps' => '3.29',
11840             'File::Find' => '1.30',
11841             'File::Spec' => '3.57',
11842             'File::Spec::Cygwin' => '3.57',
11843             'File::Spec::Epoc' => '3.57',
11844             'File::Spec::Functions' => '3.57',
11845             'File::Spec::Mac' => '3.57',
11846             'File::Spec::OS2' => '3.57',
11847             'File::Spec::Unix' => '3.57',
11848             'File::Spec::VMS' => '3.57',
11849             'File::Spec::Win32' => '3.57',
11850             'Filter::Util::Call' => '1.55',
11851             'Hash::Util' => '0.19',
11852             'Module::CoreList' => '5.20150820',
11853             'Module::CoreList::TieHashDelta'=> '5.20150820',
11854             'Module::CoreList::Utils'=> '5.20150820',
11855             'POSIX' => '1.56',
11856             'Term::Cap' => '1.17',
11857             'Unicode::UCD' => '0.62',
11858             'perlfaq' => '5.021010',
11859             },
11860             removed => {
11861             }
11862             },
11863             5.020003 => {
11864             delta_from => 5.020002,
11865             changed => {
11866             'Config' => '5.020003',
11867             'Errno' => '1.20_06',
11868             'Module::CoreList' => '5.20150912',
11869             'Module::CoreList::TieHashDelta'=> '5.20150912',
11870             'Module::CoreList::Utils'=> '5.20150912',
11871             },
11872             removed => {
11873             }
11874             },
11875             5.023003 => {
11876             delta_from => 5.023002,
11877             changed => {
11878             'Amiga::ARexx' => '0.02',
11879             'Amiga::Exec' => '0.01',
11880             'B' => '1.59',
11881             'B::Op_private' => '5.023003',
11882             'Carp' => '1.37',
11883             'Carp::Heavy' => '1.37',
11884             'Compress::Raw::Zlib' => '2.068_01',
11885             'Config' => '5.023003',
11886             'Cwd' => '3.58',
11887             'DynaLoader' => '1.34',
11888             'Encode' => '2.77',
11889             'Encode::Unicode' => '2.14',
11890             'English' => '1.10',
11891             'Errno' => '1.24',
11892             'ExtUtils::Command' => '7.10',
11893             'ExtUtils::Command::MM' => '7.10',
11894             'ExtUtils::Liblist' => '7.10',
11895             'ExtUtils::Liblist::Kid'=> '7.10',
11896             'ExtUtils::MM' => '7.10',
11897             'ExtUtils::MM_AIX' => '7.10',
11898             'ExtUtils::MM_Any' => '7.10',
11899             'ExtUtils::MM_BeOS' => '7.10',
11900             'ExtUtils::MM_Cygwin' => '7.10',
11901             'ExtUtils::MM_DOS' => '7.10',
11902             'ExtUtils::MM_Darwin' => '7.10',
11903             'ExtUtils::MM_MacOS' => '7.10',
11904             'ExtUtils::MM_NW5' => '7.10',
11905             'ExtUtils::MM_OS2' => '7.10',
11906             'ExtUtils::MM_QNX' => '7.10',
11907             'ExtUtils::MM_UWIN' => '7.10',
11908             'ExtUtils::MM_Unix' => '7.10',
11909             'ExtUtils::MM_VMS' => '7.10',
11910             'ExtUtils::MM_VOS' => '7.10',
11911             'ExtUtils::MM_Win32' => '7.10',
11912             'ExtUtils::MM_Win95' => '7.10',
11913             'ExtUtils::MY' => '7.10',
11914             'ExtUtils::MakeMaker' => '7.10',
11915             'ExtUtils::MakeMaker::Config'=> '7.10',
11916             'ExtUtils::MakeMaker::Locale'=> '7.10',
11917             'ExtUtils::MakeMaker::version'=> '7.10',
11918             'ExtUtils::MakeMaker::version::regex'=> '7.10',
11919             'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11920             'ExtUtils::Mkbootstrap' => '7.10',
11921             'ExtUtils::Mksymlists' => '7.10',
11922             'ExtUtils::ParseXS' => '3.30',
11923             'ExtUtils::ParseXS::Constants'=> '3.30',
11924             'ExtUtils::ParseXS::CountLines'=> '3.30',
11925             'ExtUtils::ParseXS::Eval'=> '3.30',
11926             'ExtUtils::ParseXS::Utilities'=> '3.30',
11927             'ExtUtils::Typemaps' => '3.30',
11928             'ExtUtils::Typemaps::Cmd'=> '3.30',
11929             'ExtUtils::Typemaps::InputMap'=> '3.30',
11930             'ExtUtils::Typemaps::OutputMap'=> '3.30',
11931             'ExtUtils::Typemaps::Type'=> '3.30',
11932             'ExtUtils::testlib' => '7.10',
11933             'File::Find' => '1.31',
11934             'File::Glob' => '1.25',
11935             'File::Spec' => '3.58',
11936             'File::Spec::AmigaOS' => '3.58',
11937             'File::Spec::Cygwin' => '3.58',
11938             'File::Spec::Epoc' => '3.58',
11939             'File::Spec::Functions' => '3.58',
11940             'File::Spec::Mac' => '3.58',
11941             'File::Spec::OS2' => '3.58',
11942             'File::Spec::Unix' => '3.58',
11943             'File::Spec::VMS' => '3.58',
11944             'File::Spec::Win32' => '3.58',
11945             'Hash::Util::FieldHash' => '1.17',
11946             'Locale::Codes' => '3.36',
11947             'Locale::Codes::Constants'=> '3.36',
11948             'Locale::Codes::Country'=> '3.36',
11949             'Locale::Codes::Country_Codes'=> '3.36',
11950             'Locale::Codes::Country_Retired'=> '3.36',
11951             'Locale::Codes::Currency'=> '3.36',
11952             'Locale::Codes::Currency_Codes'=> '3.36',
11953             'Locale::Codes::Currency_Retired'=> '3.36',
11954             'Locale::Codes::LangExt'=> '3.36',
11955             'Locale::Codes::LangExt_Codes'=> '3.36',
11956             'Locale::Codes::LangExt_Retired'=> '3.36',
11957             'Locale::Codes::LangFam'=> '3.36',
11958             'Locale::Codes::LangFam_Codes'=> '3.36',
11959             'Locale::Codes::LangFam_Retired'=> '3.36',
11960             'Locale::Codes::LangVar'=> '3.36',
11961             'Locale::Codes::LangVar_Codes'=> '3.36',
11962             'Locale::Codes::LangVar_Retired'=> '3.36',
11963             'Locale::Codes::Language'=> '3.36',
11964             'Locale::Codes::Language_Codes'=> '3.36',
11965             'Locale::Codes::Language_Retired'=> '3.36',
11966             'Locale::Codes::Script' => '3.36',
11967             'Locale::Codes::Script_Codes'=> '3.36',
11968             'Locale::Codes::Script_Retired'=> '3.36',
11969             'Locale::Country' => '3.36',
11970             'Locale::Currency' => '3.36',
11971             'Locale::Language' => '3.36',
11972             'Locale::Script' => '3.36',
11973             'Math::BigFloat::Trace' => '0.40',
11974             'Math::BigInt::Trace' => '0.40',
11975             'Module::CoreList' => '5.20150920',
11976             'Module::CoreList::TieHashDelta'=> '5.20150920',
11977             'Module::CoreList::Utils'=> '5.20150920',
11978             'OS2::DLL' => '1.06',
11979             'OS2::ExtAttr' => '0.04',
11980             'OS2::Process' => '1.11',
11981             'OS2::REXX' => '1.05',
11982             'POSIX' => '1.57',
11983             'Pod::Perldoc' => '3.25_01',
11984             'Socket' => '2.020_01',
11985             'Test' => '1.27',
11986             'Thread::Queue' => '3.06',
11987             'Time::HiRes' => '1.9727_02',
11988             'Unicode::UCD' => '0.63',
11989             'Win32' => '0.52',
11990             'XS::APItest' => '0.75',
11991             'bigint' => '0.40',
11992             'bignum' => '0.40',
11993             'bigrat' => '0.40',
11994             'encoding' => '2.17',
11995             'experimental' => '0.014',
11996             'if' => '0.0605',
11997             'locale' => '1.07',
11998             'mro' => '1.18',
11999             'threads' => '2.03',
12000             },
12001             removed => {
12002             }
12003             },
12004             5.023004 => {
12005             delta_from => 5.023003,
12006             changed => {
12007             'B' => '1.60',
12008             'B::Op_private' => '5.023004',
12009             'Compress::Raw::Bzip2' => '2.069',
12010             'Compress::Raw::Zlib' => '2.069',
12011             'Compress::Zlib' => '2.069',
12012             'Config' => '5.023004',
12013             'Devel::PPPort' => '3.32',
12014             'DynaLoader' => '1.35',
12015             'Encode' => '2.78',
12016             'ExtUtils::CBuilder' => '0.280224',
12017             'ExtUtils::CBuilder::Base'=> '0.280224',
12018             'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
12019             'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
12020             'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
12021             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
12022             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
12023             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
12024             'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
12025             'ExtUtils::CBuilder::Platform::android'=> '0.280224',
12026             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
12027             'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
12028             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
12029             'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
12030             'File::Path' => '2.12',
12031             'IO' => '1.36',
12032             'IO::Compress::Adapter::Bzip2'=> '2.069',
12033             'IO::Compress::Adapter::Deflate'=> '2.069',
12034             'IO::Compress::Adapter::Identity'=> '2.069',
12035             'IO::Compress::Base' => '2.069',
12036             'IO::Compress::Base::Common'=> '2.069',
12037             'IO::Compress::Bzip2' => '2.069',
12038             'IO::Compress::Deflate' => '2.069',
12039             'IO::Compress::Gzip' => '2.069',
12040             'IO::Compress::Gzip::Constants'=> '2.069',
12041             'IO::Compress::RawDeflate'=> '2.069',
12042             'IO::Compress::Zip' => '2.069',
12043             'IO::Compress::Zip::Constants'=> '2.069',
12044             'IO::Compress::Zlib::Constants'=> '2.069',
12045             'IO::Compress::Zlib::Extra'=> '2.069',
12046             'IO::Poll' => '0.10',
12047             'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
12048             'IO::Uncompress::Adapter::Identity'=> '2.069',
12049             'IO::Uncompress::Adapter::Inflate'=> '2.069',
12050             'IO::Uncompress::AnyInflate'=> '2.069',
12051             'IO::Uncompress::AnyUncompress'=> '2.069',
12052             'IO::Uncompress::Base' => '2.069',
12053             'IO::Uncompress::Bunzip2'=> '2.069',
12054             'IO::Uncompress::Gunzip'=> '2.069',
12055             'IO::Uncompress::Inflate'=> '2.069',
12056             'IO::Uncompress::RawInflate'=> '2.069',
12057             'IO::Uncompress::Unzip' => '2.069',
12058             'Math::BigFloat' => '1.999704',
12059             'Math::BigFloat::Trace' => '0.41',
12060             'Math::BigInt' => '1.999704',
12061             'Math::BigInt::Calc' => '1.999704',
12062             'Math::BigInt::CalcEmu' => '1.999704',
12063             'Math::BigInt::FastCalc'=> '0.34',
12064             'Math::BigInt::Trace' => '0.41',
12065             'Module::CoreList' => '5.20151020',
12066             'Module::CoreList::TieHashDelta'=> '5.20151020',
12067             'Module::CoreList::Utils'=> '5.20151020',
12068             'Module::Metadata' => '1.000029',
12069             'POSIX' => '1.58',
12070             'Perl::OSType' => '1.009',
12071             'PerlIO::encoding' => '0.22',
12072             'Socket' => '2.020_02',
12073             'Unicode::Normalize' => '1.21',
12074             'XS::APItest' => '0.76',
12075             'bigint' => '0.41',
12076             'bignum' => '0.41',
12077             'bigrat' => '0.41',
12078             'experimental' => '0.016',
12079             'if' => '0.0606',
12080             'warnings' => '1.35',
12081             },
12082             removed => {
12083             }
12084             },
12085             5.023005 => {
12086             delta_from => 5.023004,
12087             changed => {
12088             'B' => '1.61',
12089             'B::Op_private' => '5.023005',
12090             'Carp' => '1.38',
12091             'Carp::Heavy' => '1.38',
12092             'Config' => '5.023005',
12093             'Config::Perl::V' => '0.25',
12094             'Cwd' => '3.59',
12095             'Devel::Peek' => '1.23',
12096             'Dumpvalue' => '1.18',
12097             'DynaLoader' => '1.36',
12098             'File::Find' => '1.32',
12099             'File::Spec' => '3.59',
12100             'File::Spec::AmigaOS' => '3.59',
12101             'File::Spec::Cygwin' => '3.59',
12102             'File::Spec::Epoc' => '3.59',
12103             'File::Spec::Functions' => '3.59',
12104             'File::Spec::Mac' => '3.59',
12105             'File::Spec::OS2' => '3.59',
12106             'File::Spec::Unix' => '3.59',
12107             'File::Spec::VMS' => '3.59',
12108             'File::Spec::Win32' => '3.59',
12109             'Getopt::Long' => '2.48',
12110             'Hash::Util::FieldHash' => '1.18',
12111             'IPC::Open3' => '1.20',
12112             'Math::BigFloat' => '1.999710',
12113             'Math::BigInt' => '1.999710',
12114             'Math::BigInt::Calc' => '1.999710',
12115             'Math::BigInt::CalcEmu' => '1.999710',
12116             'Math::BigInt::FastCalc'=> '0.37',
12117             'Module::CoreList' => '5.20151120',
12118             'Module::CoreList::TieHashDelta'=> '5.20151120',
12119             'Module::CoreList::Utils'=> '5.20151120',
12120             'Module::Metadata' => '1.000030',
12121             'POSIX' => '1.59',
12122             'PerlIO::encoding' => '0.23',
12123             'PerlIO::mmap' => '0.015',
12124             'PerlIO::scalar' => '0.24',
12125             'PerlIO::via' => '0.16',
12126             'Pod::Simple' => '3.32',
12127             'Pod::Simple::BlackBox' => '3.32',
12128             'Pod::Simple::Checker' => '3.32',
12129             'Pod::Simple::Debug' => '3.32',
12130             'Pod::Simple::DumpAsText'=> '3.32',
12131             'Pod::Simple::DumpAsXML'=> '3.32',
12132             'Pod::Simple::HTML' => '3.32',
12133             'Pod::Simple::HTMLBatch'=> '3.32',
12134             'Pod::Simple::LinkSection'=> '3.32',
12135             'Pod::Simple::Methody' => '3.32',
12136             'Pod::Simple::Progress' => '3.32',
12137             'Pod::Simple::PullParser'=> '3.32',
12138             'Pod::Simple::PullParserEndToken'=> '3.32',
12139             'Pod::Simple::PullParserStartToken'=> '3.32',
12140             'Pod::Simple::PullParserTextToken'=> '3.32',
12141             'Pod::Simple::PullParserToken'=> '3.32',
12142             'Pod::Simple::RTF' => '3.32',
12143             'Pod::Simple::Search' => '3.32',
12144             'Pod::Simple::SimpleTree'=> '3.32',
12145             'Pod::Simple::Text' => '3.32',
12146             'Pod::Simple::TextContent'=> '3.32',
12147             'Pod::Simple::TiedOutFH'=> '3.32',
12148             'Pod::Simple::Transcode'=> '3.32',
12149             'Pod::Simple::TranscodeDumb'=> '3.32',
12150             'Pod::Simple::TranscodeSmart'=> '3.32',
12151             'Pod::Simple::XHTML' => '3.32',
12152             'Pod::Simple::XMLOutStream'=> '3.32',
12153             'Thread::Queue' => '3.07',
12154             'Tie::Scalar' => '1.04',
12155             'Time::HiRes' => '1.9728',
12156             'Time::Piece' => '1.31',
12157             'Time::Seconds' => '1.31',
12158             'Unicode::Normalize' => '1.23',
12159             'XSLoader' => '0.21',
12160             'arybase' => '0.11',
12161             'base' => '2.22_01',
12162             'fields' => '2.22_01',
12163             'threads' => '2.04',
12164             'threads::shared' => '1.49',
12165             },
12166             removed => {
12167             'ExtUtils::MakeMaker::version::vpp'=> 1,
12168             'version::vpp' => 1,
12169             }
12170             },
12171             5.022001 => {
12172             delta_from => 5.022,
12173             changed => {
12174             'B::Op_private' => '5.022001',
12175             'Config' => '5.022001',
12176             'Module::CoreList' => '5.20151213',
12177             'Module::CoreList::TieHashDelta'=> '5.20151213',
12178             'Module::CoreList::Utils'=> '5.20151213',
12179             'POSIX' => '1.53_01',
12180             'PerlIO::scalar' => '0.23',
12181             'Storable' => '2.53_01',
12182             'Win32' => '0.52',
12183             'warnings' => '1.34',
12184             },
12185             removed => {
12186             }
12187             },
12188             5.023006 => {
12189             delta_from => 5.023005,
12190             changed => {
12191             'B::Deparse' => '1.36',
12192             'B::Op_private' => '5.023006',
12193             'Benchmark' => '1.21',
12194             'CPAN::Meta::Requirements'=> '2.140',
12195             'CPAN::Meta::YAML' => '0.018',
12196             'Config' => '5.023006',
12197             'Cwd' => '3.60',
12198             'Data::Dumper' => '2.159',
12199             'DynaLoader' => '1.37',
12200             'File::Spec' => '3.60',
12201             'File::Spec::AmigaOS' => '3.60',
12202             'File::Spec::Cygwin' => '3.60',
12203             'File::Spec::Epoc' => '3.60',
12204             'File::Spec::Functions' => '3.60',
12205             'File::Spec::Mac' => '3.60',
12206             'File::Spec::OS2' => '3.60',
12207             'File::Spec::Unix' => '3.60',
12208             'File::Spec::VMS' => '3.60',
12209             'File::Spec::Win32' => '3.60',
12210             'Hash::Util::FieldHash' => '1.19',
12211             'Locale::Codes' => '3.37',
12212             'Locale::Codes::Constants'=> '3.37',
12213             'Locale::Codes::Country'=> '3.37',
12214             'Locale::Codes::Country_Codes'=> '3.37',
12215             'Locale::Codes::Country_Retired'=> '3.37',
12216             'Locale::Codes::Currency'=> '3.37',
12217             'Locale::Codes::Currency_Codes'=> '3.37',
12218             'Locale::Codes::Currency_Retired'=> '3.37',
12219             'Locale::Codes::LangExt'=> '3.37',
12220             'Locale::Codes::LangExt_Codes'=> '3.37',
12221             'Locale::Codes::LangExt_Retired'=> '3.37',
12222             'Locale::Codes::LangFam'=> '3.37',
12223             'Locale::Codes::LangFam_Codes'=> '3.37',
12224             'Locale::Codes::LangFam_Retired'=> '3.37',
12225             'Locale::Codes::LangVar'=> '3.37',
12226             'Locale::Codes::LangVar_Codes'=> '3.37',
12227             'Locale::Codes::LangVar_Retired'=> '3.37',
12228             'Locale::Codes::Language'=> '3.37',
12229             'Locale::Codes::Language_Codes'=> '3.37',
12230             'Locale::Codes::Language_Retired'=> '3.37',
12231             'Locale::Codes::Script' => '3.37',
12232             'Locale::Codes::Script_Codes'=> '3.37',
12233             'Locale::Codes::Script_Retired'=> '3.37',
12234             'Locale::Country' => '3.37',
12235             'Locale::Currency' => '3.37',
12236             'Locale::Language' => '3.37',
12237             'Locale::Script' => '3.37',
12238             'Math::BigInt::FastCalc'=> '0.38',
12239             'Module::CoreList' => '5.20151220',
12240             'Module::CoreList::TieHashDelta'=> '5.20151220',
12241             'Module::CoreList::Utils'=> '5.20151220',
12242             'Module::Metadata' => '1.000031',
12243             'Opcode' => '1.34',
12244             'PerlIO::mmap' => '0.016',
12245             'Pod::Perldoc' => '3.25_02',
12246             'SDBM_File' => '1.14',
12247             'Term::ANSIColor' => '4.04',
12248             'Test' => '1.28',
12249             'Unicode::Normalize' => '1.24',
12250             'XS::APItest' => '0.77',
12251             'base' => '2.23',
12252             'encoding::warnings' => '0.12',
12253             'fields' => '2.23',
12254             'locale' => '1.08',
12255             'strict' => '1.10',
12256             'threads' => '2.05',
12257             'threads::shared' => '1.50',
12258             'utf8' => '1.18',
12259             },
12260             removed => {
12261             }
12262             },
12263             5.023007 => {
12264             delta_from => 5.023006,
12265             changed => {
12266             'App::Prove' => '3.36',
12267             'App::Prove::State' => '3.36',
12268             'App::Prove::State::Result'=> '3.36',
12269             'App::Prove::State::Result::Test'=> '3.36',
12270             'B' => '1.62',
12271             'B::Deparse' => '1.37',
12272             'B::Op_private' => '5.023007',
12273             'Benchmark' => '1.22',
12274             'Config' => '5.023007',
12275             'Cwd' => '3.62',
12276             'Data::Dumper' => '2.160',
12277             'ExtUtils::ParseXS' => '3.31',
12278             'ExtUtils::ParseXS::Constants'=> '3.31',
12279             'ExtUtils::ParseXS::CountLines'=> '3.31',
12280             'ExtUtils::ParseXS::Eval'=> '3.31',
12281             'ExtUtils::ParseXS::Utilities'=> '3.31',
12282             'ExtUtils::Typemaps' => '3.31',
12283             'ExtUtils::Typemaps::Cmd'=> '3.31',
12284             'ExtUtils::Typemaps::InputMap'=> '3.31',
12285             'ExtUtils::Typemaps::OutputMap'=> '3.31',
12286             'ExtUtils::Typemaps::Type'=> '3.31',
12287             'File::Find' => '1.33',
12288             'File::Spec' => '3.62',
12289             'File::Spec::AmigaOS' => '3.62',
12290             'File::Spec::Cygwin' => '3.62',
12291             'File::Spec::Epoc' => '3.62',
12292             'File::Spec::Functions' => '3.62',
12293             'File::Spec::Mac' => '3.62',
12294             'File::Spec::OS2' => '3.62',
12295             'File::Spec::Unix' => '3.62',
12296             'File::Spec::VMS' => '3.62',
12297             'File::Spec::Win32' => '3.62',
12298             'Math::BigFloat' => '1.999715',
12299             'Math::BigFloat::Trace' => '0.42',
12300             'Math::BigInt' => '1.999715',
12301             'Math::BigInt::Calc' => '1.999715',
12302             'Math::BigInt::CalcEmu' => '1.999715',
12303             'Math::BigInt::FastCalc'=> '0.40',
12304             'Math::BigInt::Trace' => '0.42',
12305             'Math::BigRat' => '0.260802',
12306             'Module::CoreList' => '5.20160120',
12307             'Module::CoreList::TieHashDelta'=> '5.20160120',
12308             'Module::CoreList::Utils'=> '5.20160120',
12309             'Net::Cmd' => '3.08',
12310             'Net::Config' => '3.08',
12311             'Net::Domain' => '3.08',
12312             'Net::FTP' => '3.08',
12313             'Net::FTP::A' => '3.08',
12314             'Net::FTP::E' => '3.08',
12315             'Net::FTP::I' => '3.08',
12316             'Net::FTP::L' => '3.08',
12317             'Net::FTP::dataconn' => '3.08',
12318             'Net::NNTP' => '3.08',
12319             'Net::Netrc' => '3.08',
12320             'Net::POP3' => '3.08',
12321             'Net::SMTP' => '3.08',
12322             'Net::Time' => '3.08',
12323             'Pod::Man' => '4.04',
12324             'Pod::ParseLink' => '4.04',
12325             'Pod::Text' => '4.04',
12326             'Pod::Text::Color' => '4.04',
12327             'Pod::Text::Overstrike' => '4.04',
12328             'Pod::Text::Termcap' => '4.04',
12329             'Pod::Usage' => '1.68',
12330             'TAP::Base' => '3.36',
12331             'TAP::Formatter::Base' => '3.36',
12332             'TAP::Formatter::Color' => '3.36',
12333             'TAP::Formatter::Console'=> '3.36',
12334             'TAP::Formatter::Console::ParallelSession'=> '3.36',
12335             'TAP::Formatter::Console::Session'=> '3.36',
12336             'TAP::Formatter::File' => '3.36',
12337             'TAP::Formatter::File::Session'=> '3.36',
12338             'TAP::Formatter::Session'=> '3.36',
12339             'TAP::Harness' => '3.36',
12340             'TAP::Harness::Env' => '3.36',
12341             'TAP::Object' => '3.36',
12342             'TAP::Parser' => '3.36',
12343             'TAP::Parser::Aggregator'=> '3.36',
12344             'TAP::Parser::Grammar' => '3.36',
12345             'TAP::Parser::Iterator' => '3.36',
12346             'TAP::Parser::Iterator::Array'=> '3.36',
12347             'TAP::Parser::Iterator::Process'=> '3.36',
12348             'TAP::Parser::Iterator::Stream'=> '3.36',
12349             'TAP::Parser::IteratorFactory'=> '3.36',
12350             'TAP::Parser::Multiplexer'=> '3.36',
12351             'TAP::Parser::Result' => '3.36',
12352             'TAP::Parser::Result::Bailout'=> '3.36',
12353             'TAP::Parser::Result::Comment'=> '3.36',
12354             'TAP::Parser::Result::Plan'=> '3.36',
12355             'TAP::Parser::Result::Pragma'=> '3.36',
12356             'TAP::Parser::Result::Test'=> '3.36',
12357             'TAP::Parser::Result::Unknown'=> '3.36',
12358             'TAP::Parser::Result::Version'=> '3.36',
12359             'TAP::Parser::Result::YAML'=> '3.36',
12360             'TAP::Parser::ResultFactory'=> '3.36',
12361             'TAP::Parser::Scheduler'=> '3.36',
12362             'TAP::Parser::Scheduler::Job'=> '3.36',
12363             'TAP::Parser::Scheduler::Spinner'=> '3.36',
12364             'TAP::Parser::Source' => '3.36',
12365             'TAP::Parser::SourceHandler'=> '3.36',
12366             'TAP::Parser::SourceHandler::Executable'=> '3.36',
12367             'TAP::Parser::SourceHandler::File'=> '3.36',
12368             'TAP::Parser::SourceHandler::Handle'=> '3.36',
12369             'TAP::Parser::SourceHandler::Perl'=> '3.36',
12370             'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
12371             'TAP::Parser::YAMLish::Reader'=> '3.36',
12372             'TAP::Parser::YAMLish::Writer'=> '3.36',
12373             'Test::Harness' => '3.36',
12374             'Unicode::Normalize' => '1.25',
12375             'Unicode::UCD' => '0.64',
12376             'XS::APItest' => '0.78',
12377             'bigint' => '0.42',
12378             'bignum' => '0.42',
12379             'bigrat' => '0.42',
12380             'utf8' => '1.19',
12381             },
12382             removed => {
12383             }
12384             },
12385             5.023008 => {
12386             delta_from => 5.023007,
12387             changed => {
12388             'B::Op_private' => '5.023008',
12389             'Config' => '5.023008',
12390             'Cwd' => '3.63',
12391             'DynaLoader' => '1.38',
12392             'Encode' => '2.80',
12393             'Encode::Alias' => '2.20',
12394             'Encode::MIME::Header' => '2.19',
12395             'Encode::Unicode' => '2.15',
12396             'ExtUtils::CBuilder' => '0.280225',
12397             'ExtUtils::CBuilder::Base'=> '0.280225',
12398             'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
12399             'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
12400             'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
12401             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
12402             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
12403             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
12404             'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
12405             'ExtUtils::CBuilder::Platform::android'=> '0.280225',
12406             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
12407             'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
12408             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
12409             'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
12410             'ExtUtils::Command::MM' => '7.10_01',
12411             'ExtUtils::Liblist' => '7.10_01',
12412             'ExtUtils::Liblist::Kid'=> '7.10_01',
12413             'ExtUtils::MM' => '7.10_01',
12414             'ExtUtils::MM_AIX' => '7.10_01',
12415             'ExtUtils::MM_Any' => '7.10_01',
12416             'ExtUtils::MM_BeOS' => '7.10_01',
12417             'ExtUtils::MM_Cygwin' => '7.10_01',
12418             'ExtUtils::MM_DOS' => '7.10_01',
12419             'ExtUtils::MM_Darwin' => '7.10_01',
12420             'ExtUtils::MM_MacOS' => '7.10_01',
12421             'ExtUtils::MM_NW5' => '7.10_01',
12422             'ExtUtils::MM_OS2' => '7.10_01',
12423             'ExtUtils::MM_QNX' => '7.10_01',
12424             'ExtUtils::MM_UWIN' => '7.10_01',
12425             'ExtUtils::MM_Unix' => '7.10_01',
12426             'ExtUtils::MM_VMS' => '7.10_01',
12427             'ExtUtils::MM_VOS' => '7.10_01',
12428             'ExtUtils::MM_Win32' => '7.10_01',
12429             'ExtUtils::MM_Win95' => '7.10_01',
12430             'ExtUtils::MY' => '7.10_01',
12431             'ExtUtils::MakeMaker' => '7.10_01',
12432             'ExtUtils::MakeMaker::Config'=> '7.10_01',
12433             'ExtUtils::MakeMaker::version'=> '7.10_01',
12434             'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
12435             'ExtUtils::Mkbootstrap' => '7.10_01',
12436             'ExtUtils::Mksymlists' => '7.10_01',
12437             'ExtUtils::testlib' => '7.10_01',
12438             'File::Spec' => '3.63',
12439             'File::Spec::AmigaOS' => '3.63',
12440             'File::Spec::Cygwin' => '3.63',
12441             'File::Spec::Epoc' => '3.63',
12442             'File::Spec::Functions' => '3.63',
12443             'File::Spec::Mac' => '3.63',
12444             'File::Spec::OS2' => '3.63',
12445             'File::Spec::Unix' => '3.63',
12446             'File::Spec::VMS' => '3.63',
12447             'File::Spec::Win32' => '3.63',
12448             'IPC::Msg' => '2.05',
12449             'IPC::Semaphore' => '2.05',
12450             'IPC::SharedMem' => '2.05',
12451             'IPC::SysV' => '2.05',
12452             'Module::CoreList' => '5.20160121',
12453             'Module::CoreList::TieHashDelta'=> '5.20160121',
12454             'Module::CoreList::Utils'=> '5.20160121',
12455             'ODBM_File' => '1.13',
12456             'POSIX' => '1.63',
12457             'PerlIO::encoding' => '0.24',
12458             'Pod::Man' => '4.06',
12459             'Pod::ParseLink' => '4.06',
12460             'Pod::Text' => '4.06',
12461             'Pod::Text::Color' => '4.06',
12462             'Pod::Text::Overstrike' => '4.06',
12463             'Pod::Text::Termcap' => '4.06',
12464             'Storable' => '2.55',
12465             'Time::HiRes' => '1.9730',
12466             'XS::APItest' => '0.79',
12467             },
12468             removed => {
12469             }
12470             },
12471             5.023009 => {
12472             delta_from => 5.023008,
12473             changed => {
12474             'Amiga::ARexx' => '0.04',
12475             'Amiga::Exec' => '0.02',
12476             'B::Op_private' => '5.023009',
12477             'Carp' => '1.40',
12478             'Carp::Heavy' => '1.40',
12479             'Config' => '5.023009',
12480             'Errno' => '1.25',
12481             'ExtUtils::Embed' => '1.33',
12482             'File::Find' => '1.34',
12483             'File::Glob' => '1.26',
12484             'File::Spec::AmigaOS' => ';.64',
12485             'IPC::Msg' => '2.06_01',
12486             'IPC::Semaphore' => '2.06_01',
12487             'IPC::SharedMem' => '2.06_01',
12488             'IPC::SysV' => '2.06_01',
12489             'List::Util' => '1.42_02',
12490             'List::Util::XS' => '1.42_02',
12491             'Module::CoreList' => '5.20160320',
12492             'Module::CoreList::TieHashDelta'=> '5.20160320',
12493             'Module::CoreList::Utils'=> '5.20160320',
12494             'POSIX' => '1.64',
12495             'Pod::Functions' => '1.10',
12496             'Scalar::Util' => '1.42_02',
12497             'SelfLoader' => '1.23',
12498             'Socket' => '2.020_03',
12499             'Storable' => '2.56',
12500             'Sub::Util' => '1.42_02',
12501             'Thread::Queue' => '3.08',
12502             'Tie::File' => '1.02',
12503             'Time::HiRes' => '1.9732',
12504             'Win32API::File' => '0.1203',
12505             'XS::APItest' => '0.80',
12506             'autouse' => '1.11',
12507             'bytes' => '1.05',
12508             'strict' => '1.11',
12509             'threads' => '2.06',
12510             'version' => '0.9916',
12511             'version::regex' => '0.9916',
12512             'warnings' => '1.36',
12513             },
12514             removed => {
12515             'Win32API::File::ExtUtils::Myconst2perl'=> 1,
12516             }
12517             },
12518             5.022002 => {
12519             delta_from => 5.022001,
12520             changed => {
12521             'B::Op_private' => '5.022002',
12522             'Config' => '5.022002',
12523             'Cwd' => '3.56_01',
12524             'File::Spec' => '3.56_01',
12525             'File::Spec::Cygwin' => '3.56_01',
12526             'File::Spec::Epoc' => '3.56_01',
12527             'File::Spec::Functions' => '3.56_01',
12528             'File::Spec::Mac' => '3.56_01',
12529             'File::Spec::OS2' => '3.56_01',
12530             'File::Spec::Unix' => '3.56_01',
12531             'File::Spec::VMS' => '3.56_01',
12532             'File::Spec::Win32' => '3.56_01',
12533             'Module::CoreList' => '5.20160429',
12534             'Module::CoreList::TieHashDelta'=> '5.20160429',
12535             'Module::CoreList::Utils'=> '5.20160429',
12536             'XS::APItest' => '0.72_01',
12537             },
12538             removed => {
12539             }
12540             },
12541             5.024000 => {
12542             delta_from => 5.023009,
12543             changed => {
12544             'B::Op_private' => '5.024000',
12545             'Config' => '5.024',
12546             'File::Copy' => '2.31',
12547             'File::Path' => '2.12_01',
12548             'File::Spec::AmigaOS' => '3.64',
12549             'IO::Handle' => '1.36',
12550             'Module::CoreList' => '5.20160506',
12551             'Module::CoreList::TieHashDelta'=> '5.20160506',
12552             'Module::CoreList::Utils'=> '5.20160506',
12553             'ODBM_File' => '1.14',
12554             'POSIX' => '1.65',
12555             'Pod::Man' => '4.07',
12556             'Pod::ParseLink' => '4.07',
12557             'Pod::Text' => '4.07',
12558             'Pod::Text::Color' => '4.07',
12559             'Pod::Text::Overstrike' => '4.07',
12560             'Pod::Text::Termcap' => '4.07',
12561             'Thread::Queue' => '3.09',
12562             'Time::HiRes' => '1.9733',
12563             'threads' => '2.07',
12564             'threads::shared' => '1.51',
12565             'locale' => '1.09',
12566             },
12567             removed => {
12568             }
12569             },
12570             5.025000 => {
12571             delta_from => 5.024,
12572             changed => {
12573             'B::Op_private' => '5.025000',
12574             'Config' => '5.025',
12575             'Module::CoreList' => '5.20160507',
12576             'Module::CoreList::TieHashDelta'=> '5.20160507',
12577             'Module::CoreList::Utils'=> '5.20160507',
12578             'feature' => '1.43',
12579             },
12580             removed => {
12581             }
12582             },
12583             5.025001 => {
12584             delta_from => 5.025,
12585             changed => {
12586             'Archive::Tar' => '2.08',
12587             'Archive::Tar::Constant'=> '2.08',
12588             'Archive::Tar::File' => '2.08',
12589             'B::Op_private' => '5.025001',
12590             'Carp' => '1.41',
12591             'Carp::Heavy' => '1.41',
12592             'Config' => '5.025001',
12593             'Config::Perl::V' => '0.26',
12594             'DB_File' => '1.838',
12595             'Digest::MD5' => '2.55',
12596             'IPC::Cmd' => '0.94',
12597             'IPC::Msg' => '2.07',
12598             'IPC::Semaphore' => '2.07',
12599             'IPC::SharedMem' => '2.07',
12600             'IPC::SysV' => '2.07',
12601             'List::Util' => '1.45_01',
12602             'List::Util::XS' => '1.45_01',
12603             'Locale::Codes' => '3.38',
12604             'Locale::Codes::Constants'=> '3.38',
12605             'Locale::Codes::Country'=> '3.38',
12606             'Locale::Codes::Country_Codes'=> '3.38',
12607             'Locale::Codes::Country_Retired'=> '3.38',
12608             'Locale::Codes::Currency'=> '3.38',
12609             'Locale::Codes::Currency_Codes'=> '3.38',
12610             'Locale::Codes::Currency_Retired'=> '3.38',
12611             'Locale::Codes::LangExt'=> '3.38',
12612             'Locale::Codes::LangExt_Codes'=> '3.38',
12613             'Locale::Codes::LangExt_Retired'=> '3.38',
12614             'Locale::Codes::LangFam'=> '3.38',
12615             'Locale::Codes::LangFam_Codes'=> '3.38',
12616             'Locale::Codes::LangFam_Retired'=> '3.38',
12617             'Locale::Codes::LangVar'=> '3.38',
12618             'Locale::Codes::LangVar_Codes'=> '3.38',
12619             'Locale::Codes::LangVar_Retired'=> '3.38',
12620             'Locale::Codes::Language'=> '3.38',
12621             'Locale::Codes::Language_Codes'=> '3.38',
12622             'Locale::Codes::Language_Retired'=> '3.38',
12623             'Locale::Codes::Script' => '3.38',
12624             'Locale::Codes::Script_Codes'=> '3.38',
12625             'Locale::Codes::Script_Retired'=> '3.38',
12626             'Locale::Country' => '3.38',
12627             'Locale::Currency' => '3.38',
12628             'Locale::Language' => '3.38',
12629             'Locale::Maketext' => '1.27',
12630             'Locale::Script' => '3.38',
12631             'Module::CoreList' => '5.20160520',
12632             'Module::CoreList::TieHashDelta'=> '5.20160520',
12633             'Module::CoreList::Utils'=> '5.20160520',
12634             'Module::Metadata' => '1.000032',
12635             'POSIX' => '1.69',
12636             'Scalar::Util' => '1.45_01',
12637             'Sub::Util' => '1.45_01',
12638             'Sys::Syslog' => '0.34',
12639             'Term::ANSIColor' => '4.05',
12640             'Test2' => '1.302015',
12641             'Test2::API' => '1.302015',
12642             'Test2::API::Breakage' => '1.302015',
12643             'Test2::API::Context' => '1.302015',
12644             'Test2::API::Instance' => '1.302015',
12645             'Test2::API::Stack' => '1.302015',
12646             'Test2::Event' => '1.302015',
12647             'Test2::Event::Bail' => '1.302015',
12648             'Test2::Event::Diag' => '1.302015',
12649             'Test2::Event::Exception'=> '1.302015',
12650             'Test2::Event::Note' => '1.302015',
12651             'Test2::Event::Ok' => '1.302015',
12652             'Test2::Event::Plan' => '1.302015',
12653             'Test2::Event::Skip' => '1.302015',
12654             'Test2::Event::Subtest' => '1.302015',
12655             'Test2::Event::Waiting' => '1.302015',
12656             'Test2::Formatter' => '1.302015',
12657             'Test2::Formatter::TAP' => '1.302015',
12658             'Test2::Hub' => '1.302015',
12659             'Test2::Hub::Interceptor'=> '1.302015',
12660             'Test2::Hub::Interceptor::Terminator'=> '1.302015',
12661             'Test2::Hub::Subtest' => '1.302015',
12662             'Test2::IPC' => '1.302015',
12663             'Test2::IPC::Driver' => '1.302015',
12664             'Test2::IPC::Driver::Files'=> '1.302015',
12665             'Test2::Util' => '1.302015',
12666             'Test2::Util::ExternalMeta'=> '1.302015',
12667             'Test2::Util::HashBase' => '1.302015',
12668             'Test2::Util::Trace' => '1.302015',
12669             'Test::Builder' => '1.302015',
12670             'Test::Builder::Formatter'=> '1.302015',
12671             'Test::Builder::Module' => '1.302015',
12672             'Test::Builder::Tester' => '1.302015',
12673             'Test::Builder::Tester::Color'=> '1.302015',
12674             'Test::Builder::TodoDiag'=> '1.302015',
12675             'Test::More' => '1.302015',
12676             'Test::Simple' => '1.302015',
12677             'Test::Tester' => '1.302015',
12678             'Test::Tester::Capture' => '1.302015',
12679             'Test::Tester::CaptureRunner'=> '1.302015',
12680             'Test::Tester::Delegate'=> '1.302015',
12681             'Test::use::ok' => '1.302015',
12682             'XS::APItest' => '0.81',
12683             '_charnames' => '1.44',
12684             'charnames' => '1.44',
12685             'ok' => '1.302015',
12686             'perlfaq' => '5.021011',
12687             're' => '0.33',
12688             'threads' => '2.08',
12689             'threads::shared' => '1.52',
12690             },
12691             removed => {
12692             }
12693             },
12694             5.025002 => {
12695             delta_from => 5.025001,
12696             changed => {
12697             'App::Cpan' => '1.64',
12698             'B::Op_private' => '5.025002',
12699             'CPAN' => '2.14',
12700             'CPAN::Distribution' => '2.12',
12701             'CPAN::FTP' => '5.5007',
12702             'CPAN::FirstTime' => '5.5309',
12703             'CPAN::HandleConfig' => '5.5007',
12704             'CPAN::Index' => '2.12',
12705             'CPAN::Mirrors' => '2.12',
12706             'CPAN::Plugin' => '0.96',
12707             'CPAN::Shell' => '5.5006',
12708             'Config' => '5.025002',
12709             'Cwd' => '3.64',
12710             'Devel::Peek' => '1.24',
12711             'DynaLoader' => '1.39',
12712             'ExtUtils::Command' => '7.18',
12713             'ExtUtils::Command::MM' => '7.18',
12714             'ExtUtils::Liblist' => '7.18',
12715             'ExtUtils::Liblist::Kid'=> '7.18',
12716             'ExtUtils::MM' => '7.18',
12717             'ExtUtils::MM_AIX' => '7.18',
12718             'ExtUtils::MM_Any' => '7.18',
12719             'ExtUtils::MM_BeOS' => '7.18',
12720             'ExtUtils::MM_Cygwin' => '7.18',
12721             'ExtUtils::MM_DOS' => '7.18',
12722             'ExtUtils::MM_Darwin' => '7.18',
12723             'ExtUtils::MM_MacOS' => '7.18',
12724             'ExtUtils::MM_NW5' => '7.18',
12725             'ExtUtils::MM_OS2' => '7.18',
12726             'ExtUtils::MM_QNX' => '7.18',
12727             'ExtUtils::MM_UWIN' => '7.18',
12728             'ExtUtils::MM_Unix' => '7.18',
12729             'ExtUtils::MM_VMS' => '7.18',
12730             'ExtUtils::MM_VOS' => '7.18',
12731             'ExtUtils::MM_Win32' => '7.18',
12732             'ExtUtils::MM_Win95' => '7.18',
12733             'ExtUtils::MY' => '7.18',
12734             'ExtUtils::MakeMaker' => '7.18',
12735             'ExtUtils::MakeMaker::Config'=> '7.18',
12736             'ExtUtils::MakeMaker::Locale'=> '7.18',
12737             'ExtUtils::MakeMaker::version'=> '7.18',
12738             'ExtUtils::MakeMaker::version::regex'=> '7.18',
12739             'ExtUtils::Miniperl' => '1.06',
12740             'ExtUtils::Mkbootstrap' => '7.18',
12741             'ExtUtils::Mksymlists' => '7.18',
12742             'ExtUtils::ParseXS' => '3.32',
12743             'ExtUtils::ParseXS::Constants'=> '3.32',
12744             'ExtUtils::ParseXS::CountLines'=> '3.32',
12745             'ExtUtils::ParseXS::Eval'=> '3.32',
12746             'ExtUtils::ParseXS::Utilities'=> '3.32',
12747             'ExtUtils::Typemaps' => '3.32',
12748             'ExtUtils::Typemaps::Cmd'=> '3.32',
12749             'ExtUtils::Typemaps::InputMap'=> '3.32',
12750             'ExtUtils::Typemaps::OutputMap'=> '3.32',
12751             'ExtUtils::Typemaps::Type'=> '3.32',
12752             'ExtUtils::testlib' => '7.18',
12753             'File::Copy' => '2.32',
12754             'File::Glob' => '1.27',
12755             'File::Spec' => '3.64',
12756             'File::Spec::Cygwin' => '3.64',
12757             'File::Spec::Epoc' => '3.64',
12758             'File::Spec::Functions' => '3.64',
12759             'File::Spec::Mac' => '3.64',
12760             'File::Spec::OS2' => '3.64',
12761             'File::Spec::Unix' => '3.64',
12762             'File::Spec::VMS' => '3.64',
12763             'File::Spec::Win32' => '3.64',
12764             'FileHandle' => '2.03',
12765             'Getopt::Long' => '2.49',
12766             'HTTP::Tiny' => '0.058',
12767             'JSON::PP' => '2.27400',
12768             'Locale::Codes' => '3.39',
12769             'Locale::Codes::Constants'=> '3.39',
12770             'Locale::Codes::Country'=> '3.39',
12771             'Locale::Codes::Country_Codes'=> '3.39',
12772             'Locale::Codes::Country_Retired'=> '3.39',
12773             'Locale::Codes::Currency'=> '3.39',
12774             'Locale::Codes::Currency_Codes'=> '3.39',
12775             'Locale::Codes::Currency_Retired'=> '3.39',
12776             'Locale::Codes::LangExt'=> '3.39',
12777             'Locale::Codes::LangExt_Codes'=> '3.39',
12778             'Locale::Codes::LangExt_Retired'=> '3.39',
12779             'Locale::Codes::LangFam'=> '3.39',
12780             'Locale::Codes::LangFam_Codes'=> '3.39',
12781             'Locale::Codes::LangFam_Retired'=> '3.39',
12782             'Locale::Codes::LangVar'=> '3.39',
12783             'Locale::Codes::LangVar_Codes'=> '3.39',
12784             'Locale::Codes::LangVar_Retired'=> '3.39',
12785             'Locale::Codes::Language'=> '3.39',
12786             'Locale::Codes::Language_Codes'=> '3.39',
12787             'Locale::Codes::Language_Retired'=> '3.39',
12788             'Locale::Codes::Script' => '3.39',
12789             'Locale::Codes::Script_Codes'=> '3.39',
12790             'Locale::Codes::Script_Retired'=> '3.39',
12791             'Locale::Country' => '3.39',
12792             'Locale::Currency' => '3.39',
12793             'Locale::Language' => '3.39',
12794             'Locale::Script' => '3.39',
12795             'Module::CoreList' => '5.20160620',
12796             'Module::CoreList::TieHashDelta'=> '5.20160620',
12797             'Module::CoreList::Utils'=> '5.20160620',
12798             'Opcode' => '1.35',
12799             'POSIX' => '1.70',
12800             'Pod::Checker' => '1.73',
12801             'Pod::Functions' => '1.11',
12802             'Pod::Usage' => '1.69',
12803             'Test2' => '1.302026',
12804             'Test2::API' => '1.302026',
12805             'Test2::API::Breakage' => '1.302026',
12806             'Test2::API::Context' => '1.302026',
12807             'Test2::API::Instance' => '1.302026',
12808             'Test2::API::Stack' => '1.302026',
12809             'Test2::Event' => '1.302026',
12810             'Test2::Event::Bail' => '1.302026',
12811             'Test2::Event::Diag' => '1.302026',
12812             'Test2::Event::Exception'=> '1.302026',
12813             'Test2::Event::Generic' => '1.302026',
12814             'Test2::Event::Note' => '1.302026',
12815             'Test2::Event::Ok' => '1.302026',
12816             'Test2::Event::Plan' => '1.302026',
12817             'Test2::Event::Skip' => '1.302026',
12818             'Test2::Event::Subtest' => '1.302026',
12819             'Test2::Event::Waiting' => '1.302026',
12820             'Test2::Formatter' => '1.302026',
12821             'Test2::Formatter::TAP' => '1.302026',
12822             'Test2::Hub' => '1.302026',
12823             'Test2::Hub::Interceptor'=> '1.302026',
12824             'Test2::Hub::Interceptor::Terminator'=> '1.302026',
12825             'Test2::Hub::Subtest' => '1.302026',
12826             'Test2::IPC' => '1.302026',
12827             'Test2::IPC::Driver' => '1.302026',
12828             'Test2::IPC::Driver::Files'=> '1.302026',
12829             'Test2::Util' => '1.302026',
12830             'Test2::Util::ExternalMeta'=> '1.302026',
12831             'Test2::Util::HashBase' => '1.302026',
12832             'Test2::Util::Trace' => '1.302026',
12833             'Test::Builder' => '1.302026',
12834             'Test::Builder::Formatter'=> '1.302026',
12835             'Test::Builder::Module' => '1.302026',
12836             'Test::Builder::Tester' => '1.302026',
12837             'Test::Builder::Tester::Color'=> '1.302026',
12838             'Test::Builder::TodoDiag'=> '1.302026',
12839             'Test::More' => '1.302026',
12840             'Test::Simple' => '1.302026',
12841             'Test::Tester' => '1.302026',
12842             'Test::Tester::Capture' => '1.302026',
12843             'Test::Tester::CaptureRunner'=> '1.302026',
12844             'Test::Tester::Delegate'=> '1.302026',
12845             'Test::use::ok' => '1.302026',
12846             'Thread::Queue' => '3.11',
12847             'Time::HiRes' => '1.9734',
12848             'Unicode::UCD' => '0.65',
12849             'VMS::DCLsym' => '1.07',
12850             'XS::APItest' => '0.82',
12851             'diagnostics' => '1.35',
12852             'feature' => '1.44',
12853             'ok' => '1.302026',
12854             'threads' => '2.09',
12855             },
12856             removed => {
12857             }
12858             },
12859             5.025003 => {
12860             delta_from => 5.025002,
12861             changed => {
12862             'B::Op_private' => '5.025003',
12863             'Config' => '5.025003',
12864             'Data::Dumper' => '2.161',
12865             'Devel::PPPort' => '3.35',
12866             'Encode' => '2.84',
12867             'Encode::MIME::Header' => '2.23',
12868             'Encode::MIME::Header::ISO_2022_JP'=> '1.07',
12869             'ExtUtils::ParseXS' => '3.33',
12870             'ExtUtils::ParseXS::Constants'=> '3.33',
12871             'ExtUtils::ParseXS::CountLines'=> '3.33',
12872             'ExtUtils::ParseXS::Eval'=> '3.33',
12873             'ExtUtils::ParseXS::Utilities'=> '3.33',
12874             'ExtUtils::Typemaps' => '3.33',
12875             'ExtUtils::Typemaps::Cmd'=> '3.33',
12876             'ExtUtils::Typemaps::InputMap'=> '3.33',
12877             'ExtUtils::Typemaps::OutputMap'=> '3.33',
12878             'ExtUtils::Typemaps::Type'=> '3.33',
12879             'Hash::Util' => '0.20',
12880             'Math::BigFloat' => '1.999726',
12881             'Math::BigFloat::Trace' => '0.43',
12882             'Math::BigInt' => '1.999726',
12883             'Math::BigInt::Calc' => '1.999726',
12884             'Math::BigInt::CalcEmu' => '1.999726',
12885             'Math::BigInt::FastCalc'=> '0.42',
12886             'Math::BigInt::Trace' => '0.43',
12887             'Math::BigRat' => '0.260804',
12888             'Module::CoreList' => '5.20160720',
12889             'Module::CoreList::TieHashDelta'=> '5.20160720',
12890             'Module::CoreList::Utils'=> '5.20160720',
12891             'Net::Cmd' => '3.09',
12892             'Net::Config' => '3.09',
12893             'Net::Domain' => '3.09',
12894             'Net::FTP' => '3.09',
12895             'Net::FTP::A' => '3.09',
12896             'Net::FTP::E' => '3.09',
12897             'Net::FTP::I' => '3.09',
12898             'Net::FTP::L' => '3.09',
12899             'Net::FTP::dataconn' => '3.09',
12900             'Net::NNTP' => '3.09',
12901             'Net::Netrc' => '3.09',
12902             'Net::POP3' => '3.09',
12903             'Net::SMTP' => '3.09',
12904             'Net::Time' => '3.09',
12905             'Parse::CPAN::Meta' => '1.4422',
12906             'Perl::OSType' => '1.010',
12907             'Test2' => '1.302045',
12908             'Test2::API' => '1.302045',
12909             'Test2::API::Breakage' => '1.302045',
12910             'Test2::API::Context' => '1.302045',
12911             'Test2::API::Instance' => '1.302045',
12912             'Test2::API::Stack' => '1.302045',
12913             'Test2::Event' => '1.302045',
12914             'Test2::Event::Bail' => '1.302045',
12915             'Test2::Event::Diag' => '1.302045',
12916             'Test2::Event::Exception'=> '1.302045',
12917             'Test2::Event::Generic' => '1.302045',
12918             'Test2::Event::Info' => '1.302045',
12919             'Test2::Event::Note' => '1.302045',
12920             'Test2::Event::Ok' => '1.302045',
12921             'Test2::Event::Plan' => '1.302045',
12922             'Test2::Event::Skip' => '1.302045',
12923             'Test2::Event::Subtest' => '1.302045',
12924             'Test2::Event::Waiting' => '1.302045',
12925             'Test2::Formatter' => '1.302045',
12926             'Test2::Formatter::TAP' => '1.302045',
12927             'Test2::Hub' => '1.302045',
12928             'Test2::Hub::Interceptor'=> '1.302045',
12929             'Test2::Hub::Interceptor::Terminator'=> '1.302045',
12930             'Test2::Hub::Subtest' => '1.302045',
12931             'Test2::IPC' => '1.302045',
12932             'Test2::IPC::Driver' => '1.302045',
12933             'Test2::IPC::Driver::Files'=> '1.302045',
12934             'Test2::Util' => '1.302045',
12935             'Test2::Util::ExternalMeta'=> '1.302045',
12936             'Test2::Util::HashBase' => '1.302045',
12937             'Test2::Util::Trace' => '1.302045',
12938             'Test::Builder' => '1.302045',
12939             'Test::Builder::Formatter'=> '1.302045',
12940             'Test::Builder::Module' => '1.302045',
12941             'Test::Builder::Tester' => '1.302045',
12942             'Test::Builder::Tester::Color'=> '1.302045',
12943             'Test::Builder::TodoDiag'=> '1.302045',
12944             'Test::More' => '1.302045',
12945             'Test::Simple' => '1.302045',
12946             'Test::Tester' => '1.302045',
12947             'Test::Tester::Capture' => '1.302045',
12948             'Test::Tester::CaptureRunner'=> '1.302045',
12949             'Test::Tester::Delegate'=> '1.302045',
12950             'Test::use::ok' => '1.302045',
12951             'Time::HiRes' => '1.9739',
12952             'Unicode' => '9.0.0',
12953             'Unicode::UCD' => '0.66',
12954             'XSLoader' => '0.22',
12955             'bigint' => '0.43',
12956             'bignum' => '0.43',
12957             'bigrat' => '0.43',
12958             'encoding' => '2.17_01',
12959             'encoding::warnings' => '0.13',
12960             'feature' => '1.45',
12961             'ok' => '1.302045',
12962             'version' => '0.9917',
12963             'version::regex' => '0.9917',
12964             'warnings' => '1.37',
12965             },
12966             removed => {
12967             }
12968             },
12969             5.025004 => {
12970             delta_from => 5.025003,
12971             changed => {
12972             'App::Cpan' => '1.64_01',
12973             'App::Prove' => '3.36_01',
12974             'App::Prove::State' => '3.36_01',
12975             'App::Prove::State::Result'=> '3.36_01',
12976             'App::Prove::State::Result::Test'=> '3.36_01',
12977             'Archive::Tar' => '2.10',
12978             'Archive::Tar::Constant'=> '2.10',
12979             'Archive::Tar::File' => '2.10',
12980             'B' => '1.63',
12981             'B::Concise' => '0.998',
12982             'B::Deparse' => '1.38',
12983             'B::Op_private' => '5.025004',
12984             'CPAN' => '2.14_01',
12985             'CPAN::Meta' => '2.150010',
12986             'CPAN::Meta::Converter' => '2.150010',
12987             'CPAN::Meta::Feature' => '2.150010',
12988             'CPAN::Meta::History' => '2.150010',
12989             'CPAN::Meta::Merge' => '2.150010',
12990             'CPAN::Meta::Prereqs' => '2.150010',
12991             'CPAN::Meta::Spec' => '2.150010',
12992             'CPAN::Meta::Validator' => '2.150010',
12993             'Carp' => '1.42',
12994             'Carp::Heavy' => '1.42',
12995             'Compress::Zlib' => '2.069_01',
12996             'Config' => '5.025004',
12997             'Config::Perl::V' => '0.27',
12998             'Cwd' => '3.65',
12999             'Digest' => '1.17_01',
13000             'Digest::SHA' => '5.96',
13001             'Encode' => '2.86',
13002             'Errno' => '1.26',
13003             'ExtUtils::Command' => '7.24',
13004             'ExtUtils::Command::MM' => '7.24',
13005             'ExtUtils::Liblist' => '7.24',
13006             'ExtUtils::Liblist::Kid'=> '7.24',
13007             'ExtUtils::MM' => '7.24',
13008             'ExtUtils::MM_AIX' => '7.24',
13009             'ExtUtils::MM_Any' => '7.24',
13010             'ExtUtils::MM_BeOS' => '7.24',
13011             'ExtUtils::MM_Cygwin' => '7.24',
13012             'ExtUtils::MM_DOS' => '7.24',
13013             'ExtUtils::MM_Darwin' => '7.24',
13014             'ExtUtils::MM_MacOS' => '7.24',
13015             'ExtUtils::MM_NW5' => '7.24',
13016             'ExtUtils::MM_OS2' => '7.24',
13017             'ExtUtils::MM_QNX' => '7.24',
13018             'ExtUtils::MM_UWIN' => '7.24',
13019             'ExtUtils::MM_Unix' => '7.24',
13020             'ExtUtils::MM_VMS' => '7.24',
13021             'ExtUtils::MM_VOS' => '7.24',
13022             'ExtUtils::MM_Win32' => '7.24',
13023             'ExtUtils::MM_Win95' => '7.24',
13024             'ExtUtils::MY' => '7.24',
13025             'ExtUtils::MakeMaker' => '7.24',
13026             'ExtUtils::MakeMaker::Config'=> '7.24',
13027             'ExtUtils::MakeMaker::Locale'=> '7.24',
13028             'ExtUtils::MakeMaker::version'=> '7.24',
13029             'ExtUtils::MakeMaker::version::regex'=> '7.24',
13030             'ExtUtils::Mkbootstrap' => '7.24',
13031             'ExtUtils::Mksymlists' => '7.24',
13032             'ExtUtils::testlib' => '7.24',
13033             'File::Fetch' => '0.52',
13034             'File::Spec' => '3.65',
13035             'File::Spec::AmigaOS' => '3.65',
13036             'File::Spec::Cygwin' => '3.65',
13037             'File::Spec::Epoc' => '3.65',
13038             'File::Spec::Functions' => '3.65',
13039             'File::Spec::Mac' => '3.65',
13040             'File::Spec::OS2' => '3.65',
13041             'File::Spec::Unix' => '3.65',
13042             'File::Spec::VMS' => '3.65',
13043             'File::Spec::Win32' => '3.65',
13044             'HTTP::Tiny' => '0.064',
13045             'Hash::Util' => '0.21',
13046             'I18N::LangTags' => '0.41',
13047             'I18N::LangTags::Detect'=> '1.06',
13048             'IO' => '1.37',
13049             'IO::Compress::Adapter::Bzip2'=> '2.069_01',
13050             'IO::Compress::Adapter::Deflate'=> '2.069_01',
13051             'IO::Compress::Adapter::Identity'=> '2.069_01',
13052             'IO::Compress::Base' => '2.069_01',
13053             'IO::Compress::Base::Common'=> '2.069_01',
13054             'IO::Compress::Bzip2' => '2.069_01',
13055             'IO::Compress::Deflate' => '2.069_01',
13056             'IO::Compress::Gzip' => '2.069_01',
13057             'IO::Compress::Gzip::Constants'=> '2.069_01',
13058             'IO::Compress::RawDeflate'=> '2.069_01',
13059             'IO::Compress::Zip' => '2.069_01',
13060             'IO::Compress::Zip::Constants'=> '2.069_01',
13061             'IO::Compress::Zlib::Constants'=> '2.069_01',
13062             'IO::Compress::Zlib::Extra'=> '2.069_01',
13063             'IO::Socket::IP' => '0.38',
13064             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01',
13065             'IO::Uncompress::Adapter::Identity'=> '2.069_01',
13066             'IO::Uncompress::Adapter::Inflate'=> '2.069_01',
13067             'IO::Uncompress::AnyInflate'=> '2.069_01',
13068             'IO::Uncompress::AnyUncompress'=> '2.069_01',
13069             'IO::Uncompress::Base' => '2.069_01',
13070             'IO::Uncompress::Bunzip2'=> '2.069_01',
13071             'IO::Uncompress::Gunzip'=> '2.069_01',
13072             'IO::Uncompress::Inflate'=> '2.069_01',
13073             'IO::Uncompress::RawInflate'=> '2.069_01',
13074             'IO::Uncompress::Unzip' => '2.069_01',
13075             'IPC::Cmd' => '0.96',
13076             'JSON::PP' => '2.27400_01',
13077             'Locale::Maketext' => '1.28',
13078             'Locale::Maketext::Simple'=> '0.21_01',
13079             'Math::BigFloat::Trace' => '0.43_01',
13080             'Math::BigInt::Trace' => '0.43_01',
13081             'Memoize' => '1.03_01',
13082             'Module::CoreList' => '5.20160820',
13083             'Module::CoreList::TieHashDelta'=> '5.20160820',
13084             'Module::CoreList::Utils'=> '5.20160820',
13085             'Module::Load::Conditional'=> '0.68',
13086             'Module::Metadata' => '1.000033',
13087             'NEXT' => '0.67',
13088             'Net::Cmd' => '3.10',
13089             'Net::Config' => '3.10',
13090             'Net::Domain' => '3.10',
13091             'Net::FTP' => '3.10',
13092             'Net::FTP::A' => '3.10',
13093             'Net::FTP::E' => '3.10',
13094             'Net::FTP::I' => '3.10',
13095             'Net::FTP::L' => '3.10',
13096             'Net::FTP::dataconn' => '3.10',
13097             'Net::NNTP' => '3.10',
13098             'Net::Netrc' => '3.10',
13099             'Net::POP3' => '3.10',
13100             'Net::Ping' => '2.44',
13101             'Net::SMTP' => '3.10',
13102             'Net::Time' => '3.10',
13103             'Opcode' => '1.37',
13104             'POSIX' => '1.71',
13105             'Parse::CPAN::Meta' => '2.150010',
13106             'Pod::Html' => '1.2201',
13107             'Pod::Perldoc' => '3.27',
13108             'Pod::Perldoc::BaseTo' => '3.27',
13109             'Pod::Perldoc::GetOptsOO'=> '3.27',
13110             'Pod::Perldoc::ToANSI' => '3.27',
13111             'Pod::Perldoc::ToChecker'=> '3.27',
13112             'Pod::Perldoc::ToMan' => '3.27',
13113             'Pod::Perldoc::ToNroff' => '3.27',
13114             'Pod::Perldoc::ToPod' => '3.27',
13115             'Pod::Perldoc::ToRtf' => '3.27',
13116             'Pod::Perldoc::ToTerm' => '3.27',
13117             'Pod::Perldoc::ToText' => '3.27',
13118             'Pod::Perldoc::ToTk' => '3.27',
13119             'Pod::Perldoc::ToXml' => '3.27',
13120             'Storable' => '2.57',
13121             'Sys::Syslog' => '0.34_01',
13122             'TAP::Base' => '3.36_01',
13123             'TAP::Formatter::Base' => '3.36_01',
13124             'TAP::Formatter::Color' => '3.36_01',
13125             'TAP::Formatter::Console'=> '3.36_01',
13126             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13127             'TAP::Formatter::Console::Session'=> '3.36_01',
13128             'TAP::Formatter::File' => '3.36_01',
13129             'TAP::Formatter::File::Session'=> '3.36_01',
13130             'TAP::Formatter::Session'=> '3.36_01',
13131             'TAP::Harness' => '3.36_01',
13132             'TAP::Harness::Env' => '3.36_01',
13133             'TAP::Object' => '3.36_01',
13134             'TAP::Parser' => '3.36_01',
13135             'TAP::Parser::Aggregator'=> '3.36_01',
13136             'TAP::Parser::Grammar' => '3.36_01',
13137             'TAP::Parser::Iterator' => '3.36_01',
13138             'TAP::Parser::Iterator::Array'=> '3.36_01',
13139             'TAP::Parser::Iterator::Process'=> '3.36_01',
13140             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13141             'TAP::Parser::IteratorFactory'=> '3.36_01',
13142             'TAP::Parser::Multiplexer'=> '3.36_01',
13143             'TAP::Parser::Result' => '3.36_01',
13144             'TAP::Parser::Result::Bailout'=> '3.36_01',
13145             'TAP::Parser::Result::Comment'=> '3.36_01',
13146             'TAP::Parser::Result::Plan'=> '3.36_01',
13147             'TAP::Parser::Result::Pragma'=> '3.36_01',
13148             'TAP::Parser::Result::Test'=> '3.36_01',
13149             'TAP::Parser::Result::Unknown'=> '3.36_01',
13150             'TAP::Parser::Result::Version'=> '3.36_01',
13151             'TAP::Parser::Result::YAML'=> '3.36_01',
13152             'TAP::Parser::ResultFactory'=> '3.36_01',
13153             'TAP::Parser::Scheduler'=> '3.36_01',
13154             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13155             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13156             'TAP::Parser::Source' => '3.36_01',
13157             'TAP::Parser::SourceHandler'=> '3.36_01',
13158             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13159             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13160             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13161             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13162             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13163             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13164             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13165             'Test' => '1.29',
13166             'Test2' => '1.302052',
13167             'Test2::API' => '1.302052',
13168             'Test2::API::Breakage' => '1.302052',
13169             'Test2::API::Context' => '1.302052',
13170             'Test2::API::Instance' => '1.302052',
13171             'Test2::API::Stack' => '1.302052',
13172             'Test2::Event' => '1.302052',
13173             'Test2::Event::Bail' => '1.302052',
13174             'Test2::Event::Diag' => '1.302052',
13175             'Test2::Event::Exception'=> '1.302052',
13176             'Test2::Event::Generic' => '1.302052',
13177             'Test2::Event::Info' => '1.302052',
13178             'Test2::Event::Note' => '1.302052',
13179             'Test2::Event::Ok' => '1.302052',
13180             'Test2::Event::Plan' => '1.302052',
13181             'Test2::Event::Skip' => '1.302052',
13182             'Test2::Event::Subtest' => '1.302052',
13183             'Test2::Event::Waiting' => '1.302052',
13184             'Test2::Formatter' => '1.302052',
13185             'Test2::Formatter::TAP' => '1.302052',
13186             'Test2::Hub' => '1.302052',
13187             'Test2::Hub::Interceptor'=> '1.302052',
13188             'Test2::Hub::Interceptor::Terminator'=> '1.302052',
13189             'Test2::Hub::Subtest' => '1.302052',
13190             'Test2::IPC' => '1.302052',
13191             'Test2::IPC::Driver' => '1.302052',
13192             'Test2::IPC::Driver::Files'=> '1.302052',
13193             'Test2::Util' => '1.302052',
13194             'Test2::Util::ExternalMeta'=> '1.302052',
13195             'Test2::Util::HashBase' => '1.302052',
13196             'Test2::Util::Trace' => '1.302052',
13197             'Test::Builder' => '1.302052',
13198             'Test::Builder::Formatter'=> '1.302052',
13199             'Test::Builder::Module' => '1.302052',
13200             'Test::Builder::Tester' => '1.302052',
13201             'Test::Builder::Tester::Color'=> '1.302052',
13202             'Test::Builder::TodoDiag'=> '1.302052',
13203             'Test::Harness' => '3.36_01',
13204             'Test::More' => '1.302052',
13205             'Test::Simple' => '1.302052',
13206             'Test::Tester' => '1.302052',
13207             'Test::Tester::Capture' => '1.302052',
13208             'Test::Tester::CaptureRunner'=> '1.302052',
13209             'Test::Tester::Delegate'=> '1.302052',
13210             'Test::use::ok' => '1.302052',
13211             'Tie::Hash::NamedCapture'=> '0.10',
13212             'Time::Local' => '1.24',
13213             'XS::APItest' => '0.83',
13214             'arybase' => '0.12',
13215             'base' => '2.24',
13216             'bigint' => '0.43_01',
13217             'bignum' => '0.43_01',
13218             'bigrat' => '0.43_01',
13219             'encoding' => '2.18',
13220             'ok' => '1.302052',
13221             },
13222             removed => {
13223             }
13224             },
13225             5.025005 => {
13226             delta_from => 5.025004,
13227             changed => {
13228             'B::Op_private' => '5.025005',
13229             'Config' => '5.025005',
13230             'Filter::Simple' => '0.93',
13231             'Locale::Codes' => '3.40',
13232             'Locale::Codes::Constants'=> '3.40',
13233             'Locale::Codes::Country'=> '3.40',
13234             'Locale::Codes::Country_Codes'=> '3.40',
13235             'Locale::Codes::Country_Retired'=> '3.40',
13236             'Locale::Codes::Currency'=> '3.40',
13237             'Locale::Codes::Currency_Codes'=> '3.40',
13238             'Locale::Codes::Currency_Retired'=> '3.40',
13239             'Locale::Codes::LangExt'=> '3.40',
13240             'Locale::Codes::LangExt_Codes'=> '3.40',
13241             'Locale::Codes::LangExt_Retired'=> '3.40',
13242             'Locale::Codes::LangFam'=> '3.40',
13243             'Locale::Codes::LangFam_Codes'=> '3.40',
13244             'Locale::Codes::LangFam_Retired'=> '3.40',
13245             'Locale::Codes::LangVar'=> '3.40',
13246             'Locale::Codes::LangVar_Codes'=> '3.40',
13247             'Locale::Codes::LangVar_Retired'=> '3.40',
13248             'Locale::Codes::Language'=> '3.40',
13249             'Locale::Codes::Language_Codes'=> '3.40',
13250             'Locale::Codes::Language_Retired'=> '3.40',
13251             'Locale::Codes::Script' => '3.40',
13252             'Locale::Codes::Script_Codes'=> '3.40',
13253             'Locale::Codes::Script_Retired'=> '3.40',
13254             'Locale::Country' => '3.40',
13255             'Locale::Currency' => '3.40',
13256             'Locale::Language' => '3.40',
13257             'Locale::Script' => '3.40',
13258             'Module::CoreList' => '5.20160920',
13259             'Module::CoreList::TieHashDelta'=> '5.20160920',
13260             'Module::CoreList::Utils'=> '5.20160920',
13261             'POSIX' => '1.72',
13262             'Sys::Syslog' => '0.35',
13263             'Test2' => '1.302056',
13264             'Test2::API' => '1.302056',
13265             'Test2::API::Breakage' => '1.302056',
13266             'Test2::API::Context' => '1.302056',
13267             'Test2::API::Instance' => '1.302056',
13268             'Test2::API::Stack' => '1.302056',
13269             'Test2::Event' => '1.302056',
13270             'Test2::Event::Bail' => '1.302056',
13271             'Test2::Event::Diag' => '1.302056',
13272             'Test2::Event::Exception'=> '1.302056',
13273             'Test2::Event::Generic' => '1.302056',
13274             'Test2::Event::Info' => '1.302056',
13275             'Test2::Event::Note' => '1.302056',
13276             'Test2::Event::Ok' => '1.302056',
13277             'Test2::Event::Plan' => '1.302056',
13278             'Test2::Event::Skip' => '1.302056',
13279             'Test2::Event::Subtest' => '1.302056',
13280             'Test2::Event::Waiting' => '1.302056',
13281             'Test2::Formatter' => '1.302056',
13282             'Test2::Formatter::TAP' => '1.302056',
13283             'Test2::Hub' => '1.302056',
13284             'Test2::Hub::Interceptor'=> '1.302056',
13285             'Test2::Hub::Interceptor::Terminator'=> '1.302056',
13286             'Test2::Hub::Subtest' => '1.302056',
13287             'Test2::IPC' => '1.302056',
13288             'Test2::IPC::Driver' => '1.302056',
13289             'Test2::IPC::Driver::Files'=> '1.302056',
13290             'Test2::Util' => '1.302056',
13291             'Test2::Util::ExternalMeta'=> '1.302056',
13292             'Test2::Util::HashBase' => '1.302056',
13293             'Test2::Util::Trace' => '1.302056',
13294             'Test::Builder' => '1.302056',
13295             'Test::Builder::Formatter'=> '1.302056',
13296             'Test::Builder::Module' => '1.302056',
13297             'Test::Builder::Tester' => '1.302056',
13298             'Test::Builder::Tester::Color'=> '1.302056',
13299             'Test::Builder::TodoDiag'=> '1.302056',
13300             'Test::More' => '1.302056',
13301             'Test::Simple' => '1.302056',
13302             'Test::Tester' => '1.302056',
13303             'Test::Tester::Capture' => '1.302056',
13304             'Test::Tester::CaptureRunner'=> '1.302056',
13305             'Test::Tester::Delegate'=> '1.302056',
13306             'Test::use::ok' => '1.302056',
13307             'Thread::Semaphore' => '2.13',
13308             'XS::APItest' => '0.84',
13309             'XSLoader' => '0.24',
13310             'ok' => '1.302056',
13311             },
13312             removed => {
13313             }
13314             },
13315             5.025006 => {
13316             delta_from => 5.025005,
13317             changed => {
13318             'Archive::Tar' => '2.14',
13319             'Archive::Tar::Constant'=> '2.14',
13320             'Archive::Tar::File' => '2.14',
13321             'B' => '1.64',
13322             'B::Concise' => '0.999',
13323             'B::Deparse' => '1.39',
13324             'B::Op_private' => '5.025006',
13325             'Config' => '5.025006',
13326             'Data::Dumper' => '2.162',
13327             'Devel::Peek' => '1.25',
13328             'HTTP::Tiny' => '0.070',
13329             'List::Util' => '1.46',
13330             'List::Util::XS' => '1.46',
13331             'Module::CoreList' => '5.20161020',
13332             'Module::CoreList::TieHashDelta'=> '5.20161020',
13333             'Module::CoreList::Utils'=> '5.20161020',
13334             'Net::Ping' => '2.51',
13335             'OS2::DLL' => '1.07',
13336             'Opcode' => '1.38',
13337             'POSIX' => '1.73',
13338             'PerlIO::encoding' => '0.25',
13339             'Pod::Man' => '4.08',
13340             'Pod::ParseLink' => '4.08',
13341             'Pod::Text' => '4.08',
13342             'Pod::Text::Color' => '4.08',
13343             'Pod::Text::Overstrike' => '4.08',
13344             'Pod::Text::Termcap' => '4.08',
13345             'Scalar::Util' => '1.46',
13346             'Storable' => '2.58',
13347             'Sub::Util' => '1.46',
13348             'Test2' => '1.302059',
13349             'Test2::API' => '1.302059',
13350             'Test2::API::Breakage' => '1.302059',
13351             'Test2::API::Context' => '1.302059',
13352             'Test2::API::Instance' => '1.302059',
13353             'Test2::API::Stack' => '1.302059',
13354             'Test2::Event' => '1.302059',
13355             'Test2::Event::Bail' => '1.302059',
13356             'Test2::Event::Diag' => '1.302059',
13357             'Test2::Event::Exception'=> '1.302059',
13358             'Test2::Event::Generic' => '1.302059',
13359             'Test2::Event::Info' => '1.302059',
13360             'Test2::Event::Note' => '1.302059',
13361             'Test2::Event::Ok' => '1.302059',
13362             'Test2::Event::Plan' => '1.302059',
13363             'Test2::Event::Skip' => '1.302059',
13364             'Test2::Event::Subtest' => '1.302059',
13365             'Test2::Event::Waiting' => '1.302059',
13366             'Test2::Formatter' => '1.302059',
13367             'Test2::Formatter::TAP' => '1.302059',
13368             'Test2::Hub' => '1.302059',
13369             'Test2::Hub::Interceptor'=> '1.302059',
13370             'Test2::Hub::Interceptor::Terminator'=> '1.302059',
13371             'Test2::Hub::Subtest' => '1.302059',
13372             'Test2::IPC' => '1.302059',
13373             'Test2::IPC::Driver' => '1.302059',
13374             'Test2::IPC::Driver::Files'=> '1.302059',
13375             'Test2::Util' => '1.302059',
13376             'Test2::Util::ExternalMeta'=> '1.302059',
13377             'Test2::Util::HashBase' => '1.302059',
13378             'Test2::Util::Trace' => '1.302059',
13379             'Test::Builder' => '1.302059',
13380             'Test::Builder::Formatter'=> '1.302059',
13381             'Test::Builder::Module' => '1.302059',
13382             'Test::Builder::Tester' => '1.302059',
13383             'Test::Builder::Tester::Color'=> '1.302059',
13384             'Test::Builder::TodoDiag'=> '1.302059',
13385             'Test::More' => '1.302059',
13386             'Test::Simple' => '1.302059',
13387             'Test::Tester' => '1.302059',
13388             'Test::Tester::Capture' => '1.302059',
13389             'Test::Tester::CaptureRunner'=> '1.302059',
13390             'Test::Tester::Delegate'=> '1.302059',
13391             'Test::use::ok' => '1.302059',
13392             'Time::HiRes' => '1.9740_01',
13393             'VMS::Stdio' => '2.42',
13394             'XS::APItest' => '0.86',
13395             'attributes' => '0.28',
13396             'mro' => '1.19',
13397             'ok' => '1.302059',
13398             'overload' => '1.27',
13399             'parent' => '0.236',
13400             },
13401             removed => {
13402             }
13403             },
13404             5.025007 => {
13405             delta_from => 5.025006,
13406             changed => {
13407             'Archive::Tar' => '2.18',
13408             'Archive::Tar::Constant'=> '2.18',
13409             'Archive::Tar::File' => '2.18',
13410             'B' => '1.65',
13411             'B::Op_private' => '5.025007',
13412             'Config' => '5.025007',
13413             'Cwd' => '3.66',
13414             'Data::Dumper' => '2.165',
13415             'Devel::Peek' => '1.26',
13416             'DynaLoader' => '1.40',
13417             'Errno' => '1.27',
13418             'ExtUtils::ParseXS::Utilities'=> '3.34',
13419             'File::Spec' => '3.66',
13420             'File::Spec::AmigaOS' => '3.66',
13421             'File::Spec::Cygwin' => '3.66',
13422             'File::Spec::Epoc' => '3.66',
13423             'File::Spec::Functions' => '3.66',
13424             'File::Spec::Mac' => '3.66',
13425             'File::Spec::OS2' => '3.66',
13426             'File::Spec::Unix' => '3.66',
13427             'File::Spec::VMS' => '3.66',
13428             'File::Spec::Win32' => '3.66',
13429             'Hash::Util' => '0.22',
13430             'JSON::PP' => '2.27400_02',
13431             'List::Util' => '1.46_02',
13432             'List::Util::XS' => '1.46_02',
13433             'Math::BigFloat' => '1.999727',
13434             'Math::BigInt' => '1.999727',
13435             'Math::BigInt::Calc' => '1.999727',
13436             'Math::BigInt::CalcEmu' => '1.999727',
13437             'Math::Complex' => '1.5901',
13438             'Module::CoreList' => '5.20161120',
13439             'Module::CoreList::TieHashDelta'=> '5.20161120',
13440             'Module::CoreList::Utils'=> '5.20161120',
13441             'Net::Ping' => '2.55',
13442             'Opcode' => '1.39',
13443             'POSIX' => '1.75',
13444             'Pod::Man' => '4.09',
13445             'Pod::ParseLink' => '4.09',
13446             'Pod::Text' => '4.09',
13447             'Pod::Text::Color' => '4.09',
13448             'Pod::Text::Overstrike' => '4.09',
13449             'Pod::Text::Termcap' => '4.09',
13450             'Scalar::Util' => '1.46_02',
13451             'Storable' => '2.59',
13452             'Sub::Util' => '1.46_02',
13453             'Term::ANSIColor' => '4.06',
13454             'Test2' => '1.302062',
13455             'Test2::API' => '1.302062',
13456             'Test2::API::Breakage' => '1.302062',
13457             'Test2::API::Context' => '1.302062',
13458             'Test2::API::Instance' => '1.302062',
13459             'Test2::API::Stack' => '1.302062',
13460             'Test2::Event' => '1.302062',
13461             'Test2::Event::Bail' => '1.302062',
13462             'Test2::Event::Diag' => '1.302062',
13463             'Test2::Event::Exception'=> '1.302062',
13464             'Test2::Event::Generic' => '1.302062',
13465             'Test2::Event::Info' => '1.302062',
13466             'Test2::Event::Note' => '1.302062',
13467             'Test2::Event::Ok' => '1.302062',
13468             'Test2::Event::Plan' => '1.302062',
13469             'Test2::Event::Skip' => '1.302062',
13470             'Test2::Event::Subtest' => '1.302062',
13471             'Test2::Event::Waiting' => '1.302062',
13472             'Test2::Formatter' => '1.302062',
13473             'Test2::Formatter::TAP' => '1.302062',
13474             'Test2::Hub' => '1.302062',
13475             'Test2::Hub::Interceptor'=> '1.302062',
13476             'Test2::Hub::Interceptor::Terminator'=> '1.302062',
13477             'Test2::Hub::Subtest' => '1.302062',
13478             'Test2::IPC' => '1.302062',
13479             'Test2::IPC::Driver' => '1.302062',
13480             'Test2::IPC::Driver::Files'=> '1.302062',
13481             'Test2::Util' => '1.302062',
13482             'Test2::Util::ExternalMeta'=> '1.302062',
13483             'Test2::Util::HashBase' => '1.302062',
13484             'Test2::Util::Trace' => '1.302062',
13485             'Test::Builder' => '1.302062',
13486             'Test::Builder::Formatter'=> '1.302062',
13487             'Test::Builder::Module' => '1.302062',
13488             'Test::Builder::Tester' => '1.302062',
13489             'Test::Builder::Tester::Color'=> '1.302062',
13490             'Test::Builder::TodoDiag'=> '1.302062',
13491             'Test::More' => '1.302062',
13492             'Test::Simple' => '1.302062',
13493             'Test::Tester' => '1.302062',
13494             'Test::Tester::Capture' => '1.302062',
13495             'Test::Tester::CaptureRunner'=> '1.302062',
13496             'Test::Tester::Delegate'=> '1.302062',
13497             'Test::use::ok' => '1.302062',
13498             'Time::HiRes' => '1.9740_03',
13499             'Unicode::Collate' => '1.18',
13500             'Unicode::Collate::CJK::Big5'=> '1.18',
13501             'Unicode::Collate::CJK::GB2312'=> '1.18',
13502             'Unicode::Collate::CJK::JISX0208'=> '1.18',
13503             'Unicode::Collate::CJK::Korean'=> '1.18',
13504             'Unicode::Collate::CJK::Pinyin'=> '1.18',
13505             'Unicode::Collate::CJK::Stroke'=> '1.18',
13506             'Unicode::Collate::CJK::Zhuyin'=> '1.18',
13507             'Unicode::Collate::Locale'=> '1.18',
13508             'Unicode::UCD' => '0.67',
13509             'XS::APItest' => '0.87',
13510             'XS::Typemap' => '0.15',
13511             'mro' => '1.20',
13512             'ok' => '1.302062',
13513             'threads' => '2.10',
13514             },
13515             removed => {
13516             }
13517             },
13518             5.025008 => {
13519             delta_from => 5.025007,
13520             changed => {
13521             'Archive::Tar' => '2.24',
13522             'Archive::Tar::Constant'=> '2.24',
13523             'Archive::Tar::File' => '2.24',
13524             'B::Debug' => '1.24',
13525             'B::Op_private' => '5.025008',
13526             'Config' => '5.025008',
13527             'Data::Dumper' => '2.166',
13528             'Encode' => '2.88',
13529             'Encode::Alias' => '2.21',
13530             'Encode::CN::HZ' => '2.08',
13531             'Encode::MIME::Header' => '2.24',
13532             'Encode::MIME::Name' => '1.02',
13533             'Encode::Unicode' => '2.1501',
13534             'IO' => '1.38',
13535             'Locale::Codes' => '3.42',
13536             'Locale::Codes::Constants'=> '3.42',
13537             'Locale::Codes::Country'=> '3.42',
13538             'Locale::Codes::Country_Codes'=> '3.42',
13539             'Locale::Codes::Country_Retired'=> '3.42',
13540             'Locale::Codes::Currency'=> '3.42',
13541             'Locale::Codes::Currency_Codes'=> '3.42',
13542             'Locale::Codes::Currency_Retired'=> '3.42',
13543             'Locale::Codes::LangExt'=> '3.42',
13544             'Locale::Codes::LangExt_Codes'=> '3.42',
13545             'Locale::Codes::LangExt_Retired'=> '3.42',
13546             'Locale::Codes::LangFam'=> '3.42',
13547             'Locale::Codes::LangFam_Codes'=> '3.42',
13548             'Locale::Codes::LangFam_Retired'=> '3.42',
13549             'Locale::Codes::LangVar'=> '3.42',
13550             'Locale::Codes::LangVar_Codes'=> '3.42',
13551             'Locale::Codes::LangVar_Retired'=> '3.42',
13552             'Locale::Codes::Language'=> '3.42',
13553             'Locale::Codes::Language_Codes'=> '3.42',
13554             'Locale::Codes::Language_Retired'=> '3.42',
13555             'Locale::Codes::Script' => '3.42',
13556             'Locale::Codes::Script_Codes'=> '3.42',
13557             'Locale::Codes::Script_Retired'=> '3.42',
13558             'Locale::Country' => '3.42',
13559             'Locale::Currency' => '3.42',
13560             'Locale::Language' => '3.42',
13561             'Locale::Script' => '3.42',
13562             'Math::BigFloat' => '1.999806',
13563             'Math::BigFloat::Trace' => '0.47',
13564             'Math::BigInt' => '1.999806',
13565             'Math::BigInt::Calc' => '1.999806',
13566             'Math::BigInt::CalcEmu' => '1.999806',
13567             'Math::BigInt::FastCalc'=> '0.5005',
13568             'Math::BigInt::Lib' => '1.999806',
13569             'Math::BigInt::Trace' => '0.47',
13570             'Math::BigRat' => '0.2611',
13571             'Module::CoreList' => '5.20161220',
13572             'Module::CoreList::TieHashDelta'=> '5.20161220',
13573             'Module::CoreList::Utils'=> '5.20161220',
13574             'POSIX' => '1.76',
13575             'PerlIO::scalar' => '0.25',
13576             'Pod::Simple' => '3.35',
13577             'Pod::Simple::BlackBox' => '3.35',
13578             'Pod::Simple::Checker' => '3.35',
13579             'Pod::Simple::Debug' => '3.35',
13580             'Pod::Simple::DumpAsText'=> '3.35',
13581             'Pod::Simple::DumpAsXML'=> '3.35',
13582             'Pod::Simple::HTML' => '3.35',
13583             'Pod::Simple::HTMLBatch'=> '3.35',
13584             'Pod::Simple::LinkSection'=> '3.35',
13585             'Pod::Simple::Methody' => '3.35',
13586             'Pod::Simple::Progress' => '3.35',
13587             'Pod::Simple::PullParser'=> '3.35',
13588             'Pod::Simple::PullParserEndToken'=> '3.35',
13589             'Pod::Simple::PullParserStartToken'=> '3.35',
13590             'Pod::Simple::PullParserTextToken'=> '3.35',
13591             'Pod::Simple::PullParserToken'=> '3.35',
13592             'Pod::Simple::RTF' => '3.35',
13593             'Pod::Simple::Search' => '3.35',
13594             'Pod::Simple::SimpleTree'=> '3.35',
13595             'Pod::Simple::Text' => '3.35',
13596             'Pod::Simple::TextContent'=> '3.35',
13597             'Pod::Simple::TiedOutFH'=> '3.35',
13598             'Pod::Simple::Transcode'=> '3.35',
13599             'Pod::Simple::TranscodeDumb'=> '3.35',
13600             'Pod::Simple::TranscodeSmart'=> '3.35',
13601             'Pod::Simple::XHTML' => '3.35',
13602             'Pod::Simple::XMLOutStream'=> '3.35',
13603             'Test2' => '1.302073',
13604             'Test2::API' => '1.302073',
13605             'Test2::API::Breakage' => '1.302073',
13606             'Test2::API::Context' => '1.302073',
13607             'Test2::API::Instance' => '1.302073',
13608             'Test2::API::Stack' => '1.302073',
13609             'Test2::Event' => '1.302073',
13610             'Test2::Event::Bail' => '1.302073',
13611             'Test2::Event::Diag' => '1.302073',
13612             'Test2::Event::Encoding'=> '1.302073',
13613             'Test2::Event::Exception'=> '1.302073',
13614             'Test2::Event::Generic' => '1.302073',
13615             'Test2::Event::Info' => '1.302073',
13616             'Test2::Event::Note' => '1.302073',
13617             'Test2::Event::Ok' => '1.302073',
13618             'Test2::Event::Plan' => '1.302073',
13619             'Test2::Event::Skip' => '1.302073',
13620             'Test2::Event::Subtest' => '1.302073',
13621             'Test2::Event::TAP::Version'=> '1.302073',
13622             'Test2::Event::Waiting' => '1.302073',
13623             'Test2::Formatter' => '1.302073',
13624             'Test2::Formatter::TAP' => '1.302073',
13625             'Test2::Hub' => '1.302073',
13626             'Test2::Hub::Interceptor'=> '1.302073',
13627             'Test2::Hub::Interceptor::Terminator'=> '1.302073',
13628             'Test2::Hub::Subtest' => '1.302073',
13629             'Test2::IPC' => '1.302073',
13630             'Test2::IPC::Driver' => '1.302073',
13631             'Test2::IPC::Driver::Files'=> '1.302073',
13632             'Test2::Tools::Tiny' => '1.302073',
13633             'Test2::Util' => '1.302073',
13634             'Test2::Util::ExternalMeta'=> '1.302073',
13635             'Test2::Util::HashBase' => '0.002',
13636             'Test2::Util::Trace' => '1.302073',
13637             'Test::Builder' => '1.302073',
13638             'Test::Builder::Formatter'=> '1.302073',
13639             'Test::Builder::Module' => '1.302073',
13640             'Test::Builder::Tester' => '1.302073',
13641             'Test::Builder::Tester::Color'=> '1.302073',
13642             'Test::Builder::TodoDiag'=> '1.302073',
13643             'Test::More' => '1.302073',
13644             'Test::Simple' => '1.302073',
13645             'Test::Tester' => '1.302073',
13646             'Test::Tester::Capture' => '1.302073',
13647             'Test::Tester::CaptureRunner'=> '1.302073',
13648             'Test::Tester::Delegate'=> '1.302073',
13649             'Test::use::ok' => '1.302073',
13650             'Time::HiRes' => '1.9741',
13651             'Time::Local' => '1.25',
13652             'Unicode::Collate' => '1.19',
13653             'Unicode::Collate::CJK::Big5'=> '1.19',
13654             'Unicode::Collate::CJK::GB2312'=> '1.19',
13655             'Unicode::Collate::CJK::JISX0208'=> '1.19',
13656             'Unicode::Collate::CJK::Korean'=> '1.19',
13657             'Unicode::Collate::CJK::Pinyin'=> '1.19',
13658             'Unicode::Collate::CJK::Stroke'=> '1.19',
13659             'Unicode::Collate::CJK::Zhuyin'=> '1.19',
13660             'Unicode::Collate::Locale'=> '1.19',
13661             'bigint' => '0.47',
13662             'bignum' => '0.47',
13663             'bigrat' => '0.47',
13664             'encoding' => '2.19',
13665             'ok' => '1.302073',
13666             },
13667             removed => {
13668             }
13669             },
13670             5.022003 => {
13671             delta_from => 5.022002,
13672             changed => {
13673             'App::Cpan' => '1.63_01',
13674             'App::Prove' => '3.35_01',
13675             'App::Prove::State' => '3.35_01',
13676             'App::Prove::State::Result'=> '3.35_01',
13677             'App::Prove::State::Result::Test'=> '3.35_01',
13678             'Archive::Tar' => '2.04_01',
13679             'Archive::Tar::Constant'=> '2.04_01',
13680             'Archive::Tar::File' => '2.04_01',
13681             'B::Op_private' => '5.022003',
13682             'CPAN' => '2.11_01',
13683             'Compress::Zlib' => '2.068_001',
13684             'Config' => '5.022003',
13685             'Cwd' => '3.56_02',
13686             'Digest' => '1.17_01',
13687             'Digest::SHA' => '5.95_01',
13688             'Encode' => '2.72_01',
13689             'ExtUtils::Command' => '1.20_01',
13690             'ExtUtils::Command::MM' => '7.04_02',
13691             'ExtUtils::Liblist' => '7.04_02',
13692             'ExtUtils::Liblist::Kid'=> '7.04_02',
13693             'ExtUtils::MM' => '7.04_02',
13694             'ExtUtils::MM_AIX' => '7.04_02',
13695             'ExtUtils::MM_Any' => '7.04_02',
13696             'ExtUtils::MM_BeOS' => '7.04_02',
13697             'ExtUtils::MM_Cygwin' => '7.04_02',
13698             'ExtUtils::MM_DOS' => '7.04_02',
13699             'ExtUtils::MM_Darwin' => '7.04_02',
13700             'ExtUtils::MM_MacOS' => '7.04_02',
13701             'ExtUtils::MM_NW5' => '7.04_02',
13702             'ExtUtils::MM_OS2' => '7.04_02',
13703             'ExtUtils::MM_QNX' => '7.04_02',
13704             'ExtUtils::MM_UWIN' => '7.04_02',
13705             'ExtUtils::MM_Unix' => '7.04_02',
13706             'ExtUtils::MM_VMS' => '7.04_02',
13707             'ExtUtils::MM_VOS' => '7.04_02',
13708             'ExtUtils::MM_Win32' => '7.04_02',
13709             'ExtUtils::MM_Win95' => '7.04_02',
13710             'ExtUtils::MY' => '7.04_02',
13711             'ExtUtils::MakeMaker' => '7.04_02',
13712             'ExtUtils::MakeMaker::Config'=> '7.04_02',
13713             'ExtUtils::Mkbootstrap' => '7.04_02',
13714             'ExtUtils::Mksymlists' => '7.04_02',
13715             'ExtUtils::testlib' => '7.04_02',
13716             'File::Fetch' => '0.48_01',
13717             'File::Spec' => '3.56_02',
13718             'File::Spec::Cygwin' => '3.56_02',
13719             'File::Spec::Epoc' => '3.56_02',
13720             'File::Spec::Functions' => '3.56_02',
13721             'File::Spec::Mac' => '3.56_02',
13722             'File::Spec::OS2' => '3.56_02',
13723             'File::Spec::Unix' => '3.56_02',
13724             'File::Spec::VMS' => '3.56_02',
13725             'File::Spec::Win32' => '3.56_02',
13726             'HTTP::Tiny' => '0.054_01',
13727             'I18N::LangTags::Detect'=> '1.05_01',
13728             'IO' => '1.35_01',
13729             'IO::Compress::Adapter::Bzip2'=> '2.068_001',
13730             'IO::Compress::Adapter::Deflate'=> '2.068_001',
13731             'IO::Compress::Adapter::Identity'=> '2.068_001',
13732             'IO::Compress::Base' => '2.068_001',
13733             'IO::Compress::Base::Common'=> '2.068_001',
13734             'IO::Compress::Bzip2' => '2.068_001',
13735             'IO::Compress::Deflate' => '2.068_001',
13736             'IO::Compress::Gzip' => '2.068_001',
13737             'IO::Compress::Gzip::Constants'=> '2.068_001',
13738             'IO::Compress::RawDeflate'=> '2.068_001',
13739             'IO::Compress::Zip' => '2.068_001',
13740             'IO::Compress::Zip::Constants'=> '2.068_001',
13741             'IO::Compress::Zlib::Constants'=> '2.068_001',
13742             'IO::Compress::Zlib::Extra'=> '2.068_001',
13743             'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001',
13744             'IO::Uncompress::Adapter::Identity'=> '2.068_001',
13745             'IO::Uncompress::Adapter::Inflate'=> '2.068_001',
13746             'IO::Uncompress::AnyInflate'=> '2.068_001',
13747             'IO::Uncompress::AnyUncompress'=> '2.068_001',
13748             'IO::Uncompress::Base' => '2.068_001',
13749             'IO::Uncompress::Bunzip2'=> '2.068_001',
13750             'IO::Uncompress::Gunzip'=> '2.068_001',
13751             'IO::Uncompress::Inflate'=> '2.068_001',
13752             'IO::Uncompress::RawInflate'=> '2.068_001',
13753             'IO::Uncompress::Unzip' => '2.068_001',
13754             'IPC::Cmd' => '0.92_01',
13755             'JSON::PP' => '2.27300_01',
13756             'Locale::Maketext' => '1.26_01',
13757             'Locale::Maketext::Simple'=> '0.21_01',
13758             'Memoize' => '1.03_01',
13759             'Module::CoreList' => '5.20170114_22',
13760             'Module::CoreList::TieHashDelta'=> '5.20170114_22',
13761             'Module::CoreList::Utils'=> '5.20170114_22',
13762             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13763             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13764             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13765             'Net::Cmd' => '3.05_01',
13766             'Net::Config' => '3.05_01',
13767             'Net::Domain' => '3.05_01',
13768             'Net::FTP' => '3.05_01',
13769             'Net::FTP::A' => '3.05_01',
13770             'Net::FTP::E' => '3.05_01',
13771             'Net::FTP::I' => '3.05_01',
13772             'Net::FTP::L' => '3.05_01',
13773             'Net::FTP::dataconn' => '3.05_01',
13774             'Net::NNTP' => '3.05_01',
13775             'Net::Netrc' => '3.05_01',
13776             'Net::POP3' => '3.05_01',
13777             'Net::Ping' => '2.43_01',
13778             'Net::SMTP' => '3.05_01',
13779             'Net::Time' => '3.05_01',
13780             'Parse::CPAN::Meta' => '1.4414_001',
13781             'Pod::Html' => '1.2201',
13782             'Pod::Perldoc' => '3.25_01',
13783             'Storable' => '2.53_02',
13784             'Sys::Syslog' => '0.33_01',
13785             'TAP::Base' => '3.35_01',
13786             'TAP::Formatter::Base' => '3.35_01',
13787             'TAP::Formatter::Color' => '3.35_01',
13788             'TAP::Formatter::Console'=> '3.35_01',
13789             'TAP::Formatter::Console::ParallelSession'=> '3.35_01',
13790             'TAP::Formatter::Console::Session'=> '3.35_01',
13791             'TAP::Formatter::File' => '3.35_01',
13792             'TAP::Formatter::File::Session'=> '3.35_01',
13793             'TAP::Formatter::Session'=> '3.35_01',
13794             'TAP::Harness' => '3.35_01',
13795             'TAP::Harness::Env' => '3.35_01',
13796             'TAP::Object' => '3.35_01',
13797             'TAP::Parser' => '3.35_01',
13798             'TAP::Parser::Aggregator'=> '3.35_01',
13799             'TAP::Parser::Grammar' => '3.35_01',
13800             'TAP::Parser::Iterator' => '3.35_01',
13801             'TAP::Parser::Iterator::Array'=> '3.35_01',
13802             'TAP::Parser::Iterator::Process'=> '3.35_01',
13803             'TAP::Parser::Iterator::Stream'=> '3.35_01',
13804             'TAP::Parser::IteratorFactory'=> '3.35_01',
13805             'TAP::Parser::Multiplexer'=> '3.35_01',
13806             'TAP::Parser::Result' => '3.35_01',
13807             'TAP::Parser::Result::Bailout'=> '3.35_01',
13808             'TAP::Parser::Result::Comment'=> '3.35_01',
13809             'TAP::Parser::Result::Plan'=> '3.35_01',
13810             'TAP::Parser::Result::Pragma'=> '3.35_01',
13811             'TAP::Parser::Result::Test'=> '3.35_01',
13812             'TAP::Parser::Result::Unknown'=> '3.35_01',
13813             'TAP::Parser::Result::Version'=> '3.35_01',
13814             'TAP::Parser::Result::YAML'=> '3.35_01',
13815             'TAP::Parser::ResultFactory'=> '3.35_01',
13816             'TAP::Parser::Scheduler'=> '3.35_01',
13817             'TAP::Parser::Scheduler::Job'=> '3.35_01',
13818             'TAP::Parser::Scheduler::Spinner'=> '3.35_01',
13819             'TAP::Parser::Source' => '3.35_01',
13820             'TAP::Parser::SourceHandler'=> '3.35_01',
13821             'TAP::Parser::SourceHandler::Executable'=> '3.35_01',
13822             'TAP::Parser::SourceHandler::File'=> '3.35_01',
13823             'TAP::Parser::SourceHandler::Handle'=> '3.35_01',
13824             'TAP::Parser::SourceHandler::Perl'=> '3.35_01',
13825             'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01',
13826             'TAP::Parser::YAMLish::Reader'=> '3.35_01',
13827             'TAP::Parser::YAMLish::Writer'=> '3.35_01',
13828             'Test' => '1.26_01',
13829             'Test::Harness' => '3.35_01',
13830             'XSLoader' => '0.20_01',
13831             'bigint' => '0.39_01',
13832             'bignum' => '0.39_01',
13833             'bigrat' => '0.39_01',
13834             },
13835             removed => {
13836             }
13837             },
13838             5.024001 => {
13839             delta_from => 5.024000,
13840             changed => {
13841             'App::Cpan' => '1.63_01',
13842             'App::Prove' => '3.36_01',
13843             'App::Prove::State' => '3.36_01',
13844             'App::Prove::State::Result'=> '3.36_01',
13845             'App::Prove::State::Result::Test'=> '3.36_01',
13846             'Archive::Tar' => '2.04_01',
13847             'Archive::Tar::Constant'=> '2.04_01',
13848             'Archive::Tar::File' => '2.04_01',
13849             'B::Op_private' => '5.024001',
13850             'CPAN' => '2.11_01',
13851             'Compress::Zlib' => '2.069_001',
13852             'Config' => '5.024001',
13853             'Cwd' => '3.63_01',
13854             'Digest' => '1.17_01',
13855             'Digest::SHA' => '5.95_01',
13856             'Encode' => '2.80_01',
13857             'ExtUtils::Command' => '7.10_02',
13858             'ExtUtils::Command::MM' => '7.10_02',
13859             'ExtUtils::Liblist' => '7.10_02',
13860             'ExtUtils::Liblist::Kid'=> '7.10_02',
13861             'ExtUtils::MM' => '7.10_02',
13862             'ExtUtils::MM_AIX' => '7.10_02',
13863             'ExtUtils::MM_Any' => '7.10_02',
13864             'ExtUtils::MM_BeOS' => '7.10_02',
13865             'ExtUtils::MM_Cygwin' => '7.10_02',
13866             'ExtUtils::MM_DOS' => '7.10_02',
13867             'ExtUtils::MM_Darwin' => '7.10_02',
13868             'ExtUtils::MM_MacOS' => '7.10_02',
13869             'ExtUtils::MM_NW5' => '7.10_02',
13870             'ExtUtils::MM_OS2' => '7.10_02',
13871             'ExtUtils::MM_QNX' => '7.10_02',
13872             'ExtUtils::MM_UWIN' => '7.10_02',
13873             'ExtUtils::MM_Unix' => '7.10_02',
13874             'ExtUtils::MM_VMS' => '7.10_02',
13875             'ExtUtils::MM_VOS' => '7.10_02',
13876             'ExtUtils::MM_Win32' => '7.10_02',
13877             'ExtUtils::MM_Win95' => '7.10_02',
13878             'ExtUtils::MY' => '7.10_02',
13879             'ExtUtils::MakeMaker' => '7.10_02',
13880             'ExtUtils::MakeMaker::Config'=> '7.10_02',
13881             'ExtUtils::Mkbootstrap' => '7.10_02',
13882             'ExtUtils::Mksymlists' => '7.10_02',
13883             'ExtUtils::testlib' => '7.10_02',
13884             'File::Fetch' => '0.48_01',
13885             'File::Spec' => '3.63_01',
13886             'File::Spec::Cygwin' => '3.63_01',
13887             'File::Spec::Epoc' => '3.63_01',
13888             'File::Spec::Functions' => '3.63_01',
13889             'File::Spec::Mac' => '3.63_01',
13890             'File::Spec::OS2' => '3.63_01',
13891             'File::Spec::Unix' => '3.63_01',
13892             'File::Spec::VMS' => '3.63_01',
13893             'File::Spec::Win32' => '3.63_01',
13894             'HTTP::Tiny' => '0.056_001',
13895             'I18N::LangTags::Detect'=> '1.05_01',
13896             'IO' => '1.36_01',
13897             'IO::Compress::Adapter::Bzip2'=> '2.069_001',
13898             'IO::Compress::Adapter::Deflate'=> '2.069_001',
13899             'IO::Compress::Adapter::Identity'=> '2.069_001',
13900             'IO::Compress::Base' => '2.069_001',
13901             'IO::Compress::Base::Common'=> '2.069_001',
13902             'IO::Compress::Bzip2' => '2.069_001',
13903             'IO::Compress::Deflate' => '2.069_001',
13904             'IO::Compress::Gzip' => '2.069_001',
13905             'IO::Compress::Gzip::Constants'=> '2.069_001',
13906             'IO::Compress::RawDeflate'=> '2.069_001',
13907             'IO::Compress::Zip' => '2.069_001',
13908             'IO::Compress::Zip::Constants'=> '2.069_001',
13909             'IO::Compress::Zlib::Constants'=> '2.069_001',
13910             'IO::Compress::Zlib::Extra'=> '2.069_001',
13911             'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001',
13912             'IO::Uncompress::Adapter::Identity'=> '2.069_001',
13913             'IO::Uncompress::Adapter::Inflate'=> '2.069_001',
13914             'IO::Uncompress::AnyInflate'=> '2.069_001',
13915             'IO::Uncompress::AnyUncompress'=> '2.069_001',
13916             'IO::Uncompress::Base' => '2.069_001',
13917             'IO::Uncompress::Bunzip2'=> '2.069_001',
13918             'IO::Uncompress::Gunzip'=> '2.069_001',
13919             'IO::Uncompress::Inflate'=> '2.069_001',
13920             'IO::Uncompress::RawInflate'=> '2.069_001',
13921             'IO::Uncompress::Unzip' => '2.069_001',
13922             'IPC::Cmd' => '0.92_01',
13923             'JSON::PP' => '2.27300_01',
13924             'Locale::Maketext' => '1.26_01',
13925             'Locale::Maketext::Simple'=> '0.21_01',
13926             'Math::BigFloat::Trace' => '0.42_01',
13927             'Math::BigInt::Trace' => '0.42_01',
13928             'Memoize' => '1.03_01',
13929             'Module::CoreList' => '5.20170114_24',
13930             'Module::CoreList::TieHashDelta'=> '5.20170114_24',
13931             'Module::CoreList::Utils'=> '5.20170114_24',
13932             'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13933             'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13934             'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13935             'Net::Cmd' => '3.08_01',
13936             'Net::Config' => '3.08_01',
13937             'Net::Domain' => '3.08_01',
13938             'Net::FTP' => '3.08_01',
13939             'Net::FTP::A' => '3.08_01',
13940             'Net::FTP::E' => '3.08_01',
13941             'Net::FTP::I' => '3.08_01',
13942             'Net::FTP::L' => '3.08_01',
13943             'Net::FTP::dataconn' => '3.08_01',
13944             'Net::NNTP' => '3.08_01',
13945             'Net::Netrc' => '3.08_01',
13946             'Net::POP3' => '3.08_01',
13947             'Net::Ping' => '2.43_01',
13948             'Net::SMTP' => '3.08_01',
13949             'Net::Time' => '3.08_01',
13950             'Parse::CPAN::Meta' => '1.4417_001',
13951             'Pod::Html' => '1.2201',
13952             'Pod::Perldoc' => '3.25_03',
13953             'Storable' => '2.56_01',
13954             'Sys::Syslog' => '0.33_01',
13955             'TAP::Base' => '3.36_01',
13956             'TAP::Formatter::Base' => '3.36_01',
13957             'TAP::Formatter::Color' => '3.36_01',
13958             'TAP::Formatter::Console'=> '3.36_01',
13959             'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13960             'TAP::Formatter::Console::Session'=> '3.36_01',
13961             'TAP::Formatter::File' => '3.36_01',
13962             'TAP::Formatter::File::Session'=> '3.36_01',
13963             'TAP::Formatter::Session'=> '3.36_01',
13964             'TAP::Harness' => '3.36_01',
13965             'TAP::Harness::Env' => '3.36_01',
13966             'TAP::Object' => '3.36_01',
13967             'TAP::Parser' => '3.36_01',
13968             'TAP::Parser::Aggregator'=> '3.36_01',
13969             'TAP::Parser::Grammar' => '3.36_01',
13970             'TAP::Parser::Iterator' => '3.36_01',
13971             'TAP::Parser::Iterator::Array'=> '3.36_01',
13972             'TAP::Parser::Iterator::Process'=> '3.36_01',
13973             'TAP::Parser::Iterator::Stream'=> '3.36_01',
13974             'TAP::Parser::IteratorFactory'=> '3.36_01',
13975             'TAP::Parser::Multiplexer'=> '3.36_01',
13976             'TAP::Parser::Result' => '3.36_01',
13977             'TAP::Parser::Result::Bailout'=> '3.36_01',
13978             'TAP::Parser::Result::Comment'=> '3.36_01',
13979             'TAP::Parser::Result::Plan'=> '3.36_01',
13980             'TAP::Parser::Result::Pragma'=> '3.36_01',
13981             'TAP::Parser::Result::Test'=> '3.36_01',
13982             'TAP::Parser::Result::Unknown'=> '3.36_01',
13983             'TAP::Parser::Result::Version'=> '3.36_01',
13984             'TAP::Parser::Result::YAML'=> '3.36_01',
13985             'TAP::Parser::ResultFactory'=> '3.36_01',
13986             'TAP::Parser::Scheduler'=> '3.36_01',
13987             'TAP::Parser::Scheduler::Job'=> '3.36_01',
13988             'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13989             'TAP::Parser::Source' => '3.36_01',
13990             'TAP::Parser::SourceHandler'=> '3.36_01',
13991             'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13992             'TAP::Parser::SourceHandler::File'=> '3.36_01',
13993             'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13994             'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13995             'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13996             'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13997             'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13998             'Test' => '1.28_01',
13999             'Test::Harness' => '3.36_01',
14000             'XSLoader' => '0.22',
14001             'bigint' => '0.42_01',
14002             'bignum' => '0.42_01',
14003             'bigrat' => '0.42_01',
14004             },
14005             removed => {
14006             }
14007             },
14008             5.025009 => {
14009             delta_from => 5.025008,
14010             changed => {
14011             'App::Cpan' => '1.66',
14012             'B::Deparse' => '1.40',
14013             'B::Op_private' => '5.025009',
14014             'B::Terse' => '1.07',
14015             'B::Xref' => '1.06',
14016             'CPAN' => '2.16',
14017             'CPAN::Bundle' => '5.5002',
14018             'CPAN::Distribution' => '2.16',
14019             'CPAN::Exception::RecursiveDependency'=> '5.5001',
14020             'CPAN::FTP' => '5.5008',
14021             'CPAN::FirstTime' => '5.5310',
14022             'CPAN::HandleConfig' => '5.5008',
14023             'CPAN::Module' => '5.5003',
14024             'Compress::Raw::Bzip2' => '2.070',
14025             'Compress::Raw::Zlib' => '2.070',
14026             'Config' => '5.025009',
14027             'DB_File' => '1.840',
14028             'Data::Dumper' => '2.167',
14029             'Devel::SelfStubber' => '1.06',
14030             'DynaLoader' => '1.41',
14031             'Errno' => '1.28',
14032             'ExtUtils::Embed' => '1.34',
14033             'File::Glob' => '1.28',
14034             'I18N::LangTags' => '0.42',
14035             'Module::CoreList' => '5.20170120',
14036             'Module::CoreList::TieHashDelta'=> '5.20170120',
14037             'Module::CoreList::Utils'=> '5.20170120',
14038             'OS2::Process' => '1.12',
14039             'PerlIO::scalar' => '0.26',
14040             'Pod::Html' => '1.2202',
14041             'Storable' => '2.61',
14042             'Symbol' => '1.08',
14043             'Term::ReadLine' => '1.16',
14044             'Test' => '1.30',
14045             'Unicode::UCD' => '0.68',
14046             'VMS::DCLsym' => '1.08',
14047             'XS::APItest' => '0.88',
14048             'XSLoader' => '0.26',
14049             'attributes' => '0.29',
14050             'diagnostics' => '1.36',
14051             'feature' => '1.46',
14052             'lib' => '0.64',
14053             'overload' => '1.28',
14054             're' => '0.34',
14055             'threads' => '2.12',
14056             'threads::shared' => '1.54',
14057             },
14058             removed => {
14059             }
14060             },
14061             5.025010 => {
14062             delta_from => 5.025009,
14063             changed => {
14064             'B' => '1.68',
14065             'B::Op_private' => '5.025010',
14066             'CPAN' => '2.17',
14067             'CPAN::Distribution' => '2.17',
14068             'Config' => '5.02501',
14069             'Getopt::Std' => '1.12',
14070             'Module::CoreList' => '5.20170220',
14071             'Module::CoreList::TieHashDelta'=> '5.20170220',
14072             'Module::CoreList::Utils'=> '5.20170220',
14073             'PerlIO' => '1.10',
14074             'Storable' => '2.62',
14075             'Thread::Queue' => '3.12',
14076             'feature' => '1.47',
14077             'open' => '1.11',
14078             'threads' => '2.13',
14079             },
14080             removed => {
14081             }
14082             },
14083             5.025011 => {
14084             delta_from => 5.025010,
14085             changed => {
14086             'App::Prove' => '3.38',
14087             'App::Prove::State' => '3.38',
14088             'App::Prove::State::Result'=> '3.38',
14089             'App::Prove::State::Result::Test'=> '3.38',
14090             'B::Op_private' => '5.025011',
14091             'Compress::Raw::Bzip2' => '2.074',
14092             'Compress::Raw::Zlib' => '2.074',
14093             'Compress::Zlib' => '2.074',
14094             'Config' => '5.025011',
14095             'Config::Perl::V' => '0.28',
14096             'Cwd' => '3.67',
14097             'ExtUtils::ParseXS' => '3.34',
14098             'ExtUtils::ParseXS::Constants'=> '3.34',
14099             'ExtUtils::ParseXS::CountLines'=> '3.34',
14100             'ExtUtils::ParseXS::Eval'=> '3.34',
14101             'ExtUtils::Typemaps' => '3.34',
14102             'ExtUtils::Typemaps::Cmd'=> '3.34',
14103             'ExtUtils::Typemaps::InputMap'=> '3.34',
14104             'ExtUtils::Typemaps::OutputMap'=> '3.34',
14105             'ExtUtils::Typemaps::Type'=> '3.34',
14106             'File::Spec' => '3.67',
14107             'File::Spec::AmigaOS' => '3.67',
14108             'File::Spec::Cygwin' => '3.67',
14109             'File::Spec::Epoc' => '3.67',
14110             'File::Spec::Functions' => '3.67',
14111             'File::Spec::Mac' => '3.67',
14112             'File::Spec::OS2' => '3.67',
14113             'File::Spec::Unix' => '3.67',
14114             'File::Spec::VMS' => '3.67',
14115             'File::Spec::Win32' => '3.67',
14116             'IO::Compress::Adapter::Bzip2'=> '2.074',
14117             'IO::Compress::Adapter::Deflate'=> '2.074',
14118             'IO::Compress::Adapter::Identity'=> '2.074',
14119             'IO::Compress::Base' => '2.074',
14120             'IO::Compress::Base::Common'=> '2.074',
14121             'IO::Compress::Bzip2' => '2.074',
14122             'IO::Compress::Deflate' => '2.074',
14123             'IO::Compress::Gzip' => '2.074',
14124             'IO::Compress::Gzip::Constants'=> '2.074',
14125             'IO::Compress::RawDeflate'=> '2.074',
14126             'IO::Compress::Zip' => '2.074',
14127             'IO::Compress::Zip::Constants'=> '2.074',
14128             'IO::Compress::Zlib::Constants'=> '2.074',
14129             'IO::Compress::Zlib::Extra'=> '2.074',
14130             'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
14131             'IO::Uncompress::Adapter::Identity'=> '2.074',
14132             'IO::Uncompress::Adapter::Inflate'=> '2.074',
14133             'IO::Uncompress::AnyInflate'=> '2.074',
14134             'IO::Uncompress::AnyUncompress'=> '2.074',
14135             'IO::Uncompress::Base' => '2.074',
14136             'IO::Uncompress::Bunzip2'=> '2.074',
14137             'IO::Uncompress::Gunzip'=> '2.074',
14138             'IO::Uncompress::Inflate'=> '2.074',
14139             'IO::Uncompress::RawInflate'=> '2.074',
14140             'IO::Uncompress::Unzip' => '2.074',
14141             'Module::CoreList' => '5.20170320',
14142             'Module::CoreList::TieHashDelta'=> '5.20170230',
14143             'Module::CoreList::Utils'=> '5.20170320',
14144             'Pod::Perldoc' => '3.28',
14145             'Pod::Perldoc::BaseTo' => '3.28',
14146             'Pod::Perldoc::GetOptsOO'=> '3.28',
14147             'Pod::Perldoc::ToANSI' => '3.28',
14148             'Pod::Perldoc::ToChecker'=> '3.28',
14149             'Pod::Perldoc::ToMan' => '3.28',
14150             'Pod::Perldoc::ToNroff' => '3.28',
14151             'Pod::Perldoc::ToPod' => '3.28',
14152             'Pod::Perldoc::ToRtf' => '3.28',
14153             'Pod::Perldoc::ToTerm' => '3.28',
14154             'Pod::Perldoc::ToText' => '3.28',
14155             'Pod::Perldoc::ToTk' => '3.28',
14156             'Pod::Perldoc::ToXml' => '3.28',
14157             'TAP::Base' => '3.38',
14158             'TAP::Formatter::Base' => '3.38',
14159             'TAP::Formatter::Color' => '3.38',
14160             'TAP::Formatter::Console'=> '3.38',
14161             'TAP::Formatter::Console::ParallelSession'=> '3.38',
14162             'TAP::Formatter::Console::Session'=> '3.38',
14163             'TAP::Formatter::File' => '3.38',
14164             'TAP::Formatter::File::Session'=> '3.38',
14165             'TAP::Formatter::Session'=> '3.38',
14166             'TAP::Harness' => '3.38',
14167             'TAP::Harness::Env' => '3.38',
14168             'TAP::Object' => '3.38',
14169             'TAP::Parser' => '3.38',
14170             'TAP::Parser::Aggregator'=> '3.38',
14171             'TAP::Parser::Grammar' => '3.38',
14172             'TAP::Parser::Iterator' => '3.38',
14173             'TAP::Parser::Iterator::Array'=> '3.38',
14174             'TAP::Parser::Iterator::Process'=> '3.38',
14175             'TAP::Parser::Iterator::Stream'=> '3.38',
14176             'TAP::Parser::IteratorFactory'=> '3.38',
14177             'TAP::Parser::Multiplexer'=> '3.38',
14178             'TAP::Parser::Result' => '3.38',
14179             'TAP::Parser::Result::Bailout'=> '3.38',
14180             'TAP::Parser::Result::Comment'=> '3.38',
14181             'TAP::Parser::Result::Plan'=> '3.38',
14182             'TAP::Parser::Result::Pragma'=> '3.38',
14183             'TAP::Parser::Result::Test'=> '3.38',
14184             'TAP::Parser::Result::Unknown'=> '3.38',
14185             'TAP::Parser::Result::Version'=> '3.38',
14186             'TAP::Parser::Result::YAML'=> '3.38',
14187             'TAP::Parser::ResultFactory'=> '3.38',
14188             'TAP::Parser::Scheduler'=> '3.38',
14189             'TAP::Parser::Scheduler::Job'=> '3.38',
14190             'TAP::Parser::Scheduler::Spinner'=> '3.38',
14191             'TAP::Parser::Source' => '3.38',
14192             'TAP::Parser::SourceHandler'=> '3.38',
14193             'TAP::Parser::SourceHandler::Executable'=> '3.38',
14194             'TAP::Parser::SourceHandler::File'=> '3.38',
14195             'TAP::Parser::SourceHandler::Handle'=> '3.38',
14196             'TAP::Parser::SourceHandler::Perl'=> '3.38',
14197             'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
14198             'TAP::Parser::YAMLish::Reader'=> '3.38',
14199             'TAP::Parser::YAMLish::Writer'=> '3.38',
14200             'Test::Harness' => '3.38',
14201             'VMS::Stdio' => '2.41',
14202             'threads' => '2.15',
14203             'threads::shared' => '1.55',
14204             },
14205             removed => {
14206             }
14207             },
14208             5.025012 => {
14209             delta_from => 5.025011,
14210             changed => {
14211             'B::Op_private' => '5.025012',
14212             'CPAN' => '2.18',
14213             'CPAN::Bundle' => '5.5003',
14214             'CPAN::Distribution' => '2.18',
14215             'Config' => '5.025012',
14216             'DynaLoader' => '1.42',
14217             'Module::CoreList' => '5.20170420',
14218             'Module::CoreList::TieHashDelta'=> '5.20170420',
14219             'Module::CoreList::Utils'=> '5.20170420',
14220             'Safe' => '2.40',
14221             'XSLoader' => '0.27',
14222             'base' => '2.25',
14223             'threads::shared' => '1.56',
14224             },
14225             removed => {
14226             }
14227             },
14228             5.026000 => {
14229             delta_from => 5.025012,
14230             changed => {
14231             'B::Op_private' => '5.026000',
14232             'Config' => '5.026',
14233             'Module::CoreList' => '5.20170530',
14234             'Module::CoreList::TieHashDelta'=> '5.20170530',
14235             'Module::CoreList::Utils'=> '5.20170530',
14236             },
14237             removed => {
14238             }
14239             },
14240             5.027000 => {
14241             delta_from => 5.026000,
14242             changed => {
14243             'Attribute::Handlers' => '1.00',
14244             'B::Concise' => '1.000',
14245             'B::Deparse' => '1.41',
14246             'B::Op_private' => '5.027000',
14247             'Config' => '5.027',
14248             'Module::CoreList' => '5.20170531',
14249             'Module::CoreList::TieHashDelta'=> '5.20170531',
14250             'Module::CoreList::Utils'=> '5.20170531',
14251             'O' => '1.02',
14252             'attributes' => '0.3',
14253             'feature' => '1.48',
14254             },
14255             removed => {
14256             }
14257             },
14258             5.027001 => {
14259             delta_from => 5.027,
14260             changed => {
14261             'App::Prove' => '3.39',
14262             'App::Prove::State' => '3.39',
14263             'App::Prove::State::Result'=> '3.39',
14264             'App::Prove::State::Result::Test'=> '3.39',
14265             'Archive::Tar' => '2.26',
14266             'Archive::Tar::Constant'=> '2.26',
14267             'Archive::Tar::File' => '2.26',
14268             'B::Op_private' => '5.027001',
14269             'B::Terse' => '1.08',
14270             'Config' => '5.027001',
14271             'Devel::PPPort' => '3.36',
14272             'DirHandle' => '1.05',
14273             'ExtUtils::Command' => '7.30',
14274             'ExtUtils::Command::MM' => '7.30',
14275             'ExtUtils::Install' => '2.14',
14276             'ExtUtils::Installed' => '2.14',
14277             'ExtUtils::Liblist' => '7.30',
14278             'ExtUtils::Liblist::Kid'=> '7.30',
14279             'ExtUtils::MM' => '7.30',
14280             'ExtUtils::MM_AIX' => '7.30',
14281             'ExtUtils::MM_Any' => '7.30',
14282             'ExtUtils::MM_BeOS' => '7.30',
14283             'ExtUtils::MM_Cygwin' => '7.30',
14284             'ExtUtils::MM_DOS' => '7.30',
14285             'ExtUtils::MM_Darwin' => '7.30',
14286             'ExtUtils::MM_MacOS' => '7.30',
14287             'ExtUtils::MM_NW5' => '7.30',
14288             'ExtUtils::MM_OS2' => '7.30',
14289             'ExtUtils::MM_QNX' => '7.30',
14290             'ExtUtils::MM_UWIN' => '7.30',
14291             'ExtUtils::MM_Unix' => '7.30',
14292             'ExtUtils::MM_VMS' => '7.30',
14293             'ExtUtils::MM_VOS' => '7.30',
14294             'ExtUtils::MM_Win32' => '7.30',
14295             'ExtUtils::MM_Win95' => '7.30',
14296             'ExtUtils::MY' => '7.30',
14297             'ExtUtils::MakeMaker' => '7.30',
14298             'ExtUtils::MakeMaker::Config'=> '7.30',
14299             'ExtUtils::MakeMaker::Locale'=> '7.30',
14300             'ExtUtils::MakeMaker::version'=> '7.30',
14301             'ExtUtils::MakeMaker::version::regex'=> '7.30',
14302             'ExtUtils::Mkbootstrap' => '7.30',
14303             'ExtUtils::Mksymlists' => '7.30',
14304             'ExtUtils::Packlist' => '2.14',
14305             'ExtUtils::testlib' => '7.30',
14306             'File::Path' => '2.14',
14307             'Filter::Util::Call' => '1.57',
14308             'GDBM_File' => '1.16',
14309             'Getopt::Long' => '2.5',
14310             'IO::Socket::IP' => '0.39',
14311             'IPC::Cmd' => '0.98',
14312             'JSON::PP' => '2.94',
14313             'JSON::PP::Boolean' => '2.94',
14314             'Locale::Codes' => '3.52',
14315             'Locale::Codes::Constants'=> '3.52',
14316             'Locale::Codes::Country'=> '3.52',
14317             'Locale::Codes::Country_Codes'=> '3.52',
14318             'Locale::Codes::Country_Retired'=> '3.52',
14319             'Locale::Codes::Currency'=> '3.52',
14320             'Locale::Codes::Currency_Codes'=> '3.52',
14321             'Locale::Codes::Currency_Retired'=> '3.52',
14322             'Locale::Codes::LangExt'=> '3.52',
14323             'Locale::Codes::LangExt_Codes'=> '3.52',
14324             'Locale::Codes::LangExt_Retired'=> '3.52',
14325             'Locale::Codes::LangFam'=> '3.52',
14326             'Locale::Codes::LangFam_Codes'=> '3.52',
14327             'Locale::Codes::LangFam_Retired'=> '3.52',
14328             'Locale::Codes::LangVar'=> '3.52',
14329             'Locale::Codes::LangVar_Codes'=> '3.52',
14330             'Locale::Codes::LangVar_Retired'=> '3.52',
14331             'Locale::Codes::Language'=> '3.52',
14332             'Locale::Codes::Language_Codes'=> '3.52',
14333             'Locale::Codes::Language_Retired'=> '3.52',
14334             'Locale::Codes::Script' => '3.52',
14335             'Locale::Codes::Script_Codes'=> '3.52',
14336             'Locale::Codes::Script_Retired'=> '3.52',
14337             'Locale::Country' => '3.52',
14338             'Locale::Currency' => '3.52',
14339             'Locale::Language' => '3.52',
14340             'Locale::Script' => '3.52',
14341             'Module::CoreList' => '5.20170621',
14342             'Module::CoreList::TieHashDelta'=> '5.20170621',
14343             'Module::CoreList::Utils'=> '5.20170621',
14344             'PerlIO::scalar' => '0.27',
14345             'PerlIO::via' => '0.17',
14346             'Storable' => '2.63',
14347             'TAP::Base' => '3.39',
14348             'TAP::Formatter::Base' => '3.39',
14349             'TAP::Formatter::Color' => '3.39',
14350             'TAP::Formatter::Console'=> '3.39',
14351             'TAP::Formatter::Console::ParallelSession'=> '3.39',
14352             'TAP::Formatter::Console::Session'=> '3.39',
14353             'TAP::Formatter::File' => '3.39',
14354             'TAP::Formatter::File::Session'=> '3.39',
14355             'TAP::Formatter::Session'=> '3.39',
14356             'TAP::Harness' => '3.39',
14357             'TAP::Harness::Env' => '3.39',
14358             'TAP::Object' => '3.39',
14359             'TAP::Parser' => '3.39',
14360             'TAP::Parser::Aggregator'=> '3.39',
14361             'TAP::Parser::Grammar' => '3.39',
14362             'TAP::Parser::Iterator' => '3.39',
14363             'TAP::Parser::Iterator::Array'=> '3.39',
14364             'TAP::Parser::Iterator::Process'=> '3.39',
14365             'TAP::Parser::Iterator::Stream'=> '3.39',
14366             'TAP::Parser::IteratorFactory'=> '3.39',
14367             'TAP::Parser::Multiplexer'=> '3.39',
14368             'TAP::Parser::Result' => '3.39',
14369             'TAP::Parser::Result::Bailout'=> '3.39',
14370             'TAP::Parser::Result::Comment'=> '3.39',
14371             'TAP::Parser::Result::Plan'=> '3.39',
14372             'TAP::Parser::Result::Pragma'=> '3.39',
14373             'TAP::Parser::Result::Test'=> '3.39',
14374             'TAP::Parser::Result::Unknown'=> '3.39',
14375             'TAP::Parser::Result::Version'=> '3.39',
14376             'TAP::Parser::Result::YAML'=> '3.39',
14377             'TAP::Parser::ResultFactory'=> '3.39',
14378             'TAP::Parser::Scheduler'=> '3.39',
14379             'TAP::Parser::Scheduler::Job'=> '3.39',
14380             'TAP::Parser::Scheduler::Spinner'=> '3.39',
14381             'TAP::Parser::Source' => '3.39',
14382             'TAP::Parser::SourceHandler'=> '3.39',
14383             'TAP::Parser::SourceHandler::Executable'=> '3.39',
14384             'TAP::Parser::SourceHandler::File'=> '3.39',
14385             'TAP::Parser::SourceHandler::Handle'=> '3.39',
14386             'TAP::Parser::SourceHandler::Perl'=> '3.39',
14387             'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
14388             'TAP::Parser::YAMLish::Reader'=> '3.39',
14389             'TAP::Parser::YAMLish::Writer'=> '3.39',
14390             'Test::Harness' => '3.39',
14391             'XS::APItest' => '0.89',
14392             '_charnames' => '1.45',
14393             'charnames' => '1.45',
14394             'if' => '0.0607',
14395             'mro' => '1.21',
14396             'threads' => '2.16',
14397             'threads::shared' => '1.57',
14398             'version' => '0.9918',
14399             'version::regex' => '0.9918',
14400             },
14401             removed => {
14402             }
14403             },
14404             5.022004 => {
14405             delta_from => 5.022003,
14406             changed => {
14407             'B::Op_private' => '5.022004',
14408             'Config' => '5.022004',
14409             'Module::CoreList' => '5.20170715_22',
14410             'Module::CoreList::TieHashDelta'=> '5.20170715_22',
14411             'Module::CoreList::Utils'=> '5.20170715_22',
14412             'base' => '2.22_01',
14413             },
14414             removed => {
14415             }
14416             },
14417             5.024002 => {
14418             delta_from => 5.024001,
14419             changed => {
14420             'B::Op_private' => '5.024002',
14421             'Config' => '5.024002',
14422             'Module::CoreList' => '5.20170715_24',
14423             'Module::CoreList::TieHashDelta'=> '5.20170715_24',
14424             'Module::CoreList::Utils'=> '5.20170715_24',
14425             'base' => '2.23_01',
14426             },
14427             removed => {
14428             }
14429             },
14430             5.027002 => {
14431             delta_from => 5.027001,
14432             changed => {
14433             'B::Op_private' => '5.027002',
14434             'Carp' => '1.43',
14435             'Carp::Heavy' => '1.43',
14436             'Config' => '5.027002',
14437             'Cwd' => '3.68',
14438             'Encode' => '2.92',
14439             'Encode::Alias' => '2.23',
14440             'Encode::CN::HZ' => '2.09',
14441             'Encode::Encoding' => '2.08',
14442             'Encode::GSM0338' => '2.07',
14443             'Encode::Guess' => '2.07',
14444             'Encode::JP::JIS7' => '2.07',
14445             'Encode::KR::2022_KR' => '2.04',
14446             'Encode::MIME::Header' => '2.27',
14447             'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
14448             'Encode::Unicode' => '2.16',
14449             'Encode::Unicode::UTF7' => '2.10',
14450             'ExtUtils::CBuilder' => '0.280228',
14451             'ExtUtils::CBuilder::Base'=> '0.280228',
14452             'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
14453             'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
14454             'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
14455             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
14456             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
14457             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
14458             'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
14459             'ExtUtils::CBuilder::Platform::android'=> '0.280228',
14460             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
14461             'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
14462             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
14463             'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
14464             'File::Glob' => '1.29',
14465             'File::Spec' => '3.68',
14466             'File::Spec::AmigaOS' => '3.68',
14467             'File::Spec::Cygwin' => '3.68',
14468             'File::Spec::Epoc' => '3.68',
14469             'File::Spec::Functions' => '3.68',
14470             'File::Spec::Mac' => '3.68',
14471             'File::Spec::OS2' => '3.68',
14472             'File::Spec::Unix' => '3.68',
14473             'File::Spec::VMS' => '3.68',
14474             'File::Spec::Win32' => '3.68',
14475             'List::Util' => '1.48',
14476             'List::Util::XS' => '1.48',
14477             'Math::BigRat' => '0.2613',
14478             'Module::CoreList' => '5.20170720',
14479             'Module::CoreList::TieHashDelta'=> '5.20170720',
14480             'Module::CoreList::Utils'=> '5.20170720',
14481             'Opcode' => '1.40',
14482             'POSIX' => '1.77',
14483             'PerlIO::scalar' => '0.29',
14484             'Scalar::Util' => '1.48',
14485             'Sub::Util' => '1.48',
14486             'Time::HiRes' => '1.9743',
14487             'Time::Piece' => '1.3201',
14488             'Time::Seconds' => '1.3201',
14489             'Unicode' => '10.0.0',
14490             'XS::APItest' => '0.90',
14491             'arybase' => '0.13',
14492             'encoding' => '2.20',
14493             'feature' => '1.49',
14494             're' => '0.35',
14495             },
14496             removed => {
14497             }
14498             },
14499             5.027003 => {
14500             delta_from => 5.027002,
14501             changed => {
14502             'B' => '1.69',
14503             'B::Concise' => '1.001',
14504             'B::Debug' => '1.25',
14505             'B::Deparse' => '1.42',
14506             'B::Op_private' => '5.027003',
14507             'Config' => '5.027003',
14508             'Data::Dumper' => '2.167_02',
14509             'Devel::Peek' => '1.27',
14510             'ExtUtils::Constant' => '0.24',
14511             'ExtUtils::Constant::Base'=> '0.06',
14512             'ExtUtils::Constant::ProxySubs'=> '0.09',
14513             'ExtUtils::Constant::Utils'=> '0.04',
14514             'ExtUtils::ParseXS' => '3.35',
14515             'ExtUtils::ParseXS::Constants'=> '3.35',
14516             'ExtUtils::ParseXS::CountLines'=> '3.35',
14517             'ExtUtils::ParseXS::Eval'=> '3.35',
14518             'ExtUtils::ParseXS::Utilities'=> '3.35',
14519             'ExtUtils::Typemaps' => '3.35',
14520             'ExtUtils::Typemaps::Cmd'=> '3.35',
14521             'ExtUtils::Typemaps::InputMap'=> '3.35',
14522             'ExtUtils::Typemaps::OutputMap'=> '3.35',
14523             'ExtUtils::Typemaps::Type'=> '3.35',
14524             'Filter::Simple' => '0.94',
14525             'Module::CoreList' => '5.20170821',
14526             'Module::CoreList::TieHashDelta'=> '5.20170821',
14527             'Module::CoreList::Utils'=> '5.20170821',
14528             'SelfLoader' => '1.24',
14529             'Storable' => '2.64',
14530             'XS::APItest' => '0.91',
14531             'base' => '2.26',
14532             'threads' => '2.17',
14533             'utf8' => '1.20',
14534             },
14535             removed => {
14536             }
14537             },
14538             5.027004 => {
14539             delta_from => 5.027003,
14540             changed => {
14541             'B::Op_private' => '5.027004',
14542             'Config' => '5.027004',
14543             'File::Glob' => '1.30',
14544             'I18N::Langinfo' => '0.14',
14545             'Module::CoreList' => '5.20170920',
14546             'Module::CoreList::TieHashDelta'=> '5.20170920',
14547             'Module::CoreList::Utils'=> '5.20170920',
14548             'Term::ReadLine' => '1.17',
14549             'VMS::Stdio' => '2.42',
14550             'XS::APItest' => '0.92',
14551             'attributes' => '0.31',
14552             'sort' => '2.03',
14553             'threads' => '2.18',
14554             },
14555             removed => {
14556             }
14557             },
14558             5.024003 => {
14559             delta_from => 5.024002,
14560             changed => {
14561             'B::Op_private' => '5.024003',
14562             'Config' => '5.024003',
14563             'Module::CoreList' => '5.20170922_24',
14564             'Module::CoreList::TieHashDelta'=> '5.20170922_24',
14565             'Module::CoreList::Utils'=> '5.20170922_24',
14566             'POSIX' => '1.65_01',
14567             'Time::HiRes' => '1.9741',
14568             },
14569             removed => {
14570             }
14571             },
14572             5.026001 => {
14573             delta_from => 5.026000,
14574             changed => {
14575             'B::Op_private' => '5.026001',
14576             'Config' => '5.026001',
14577             'Module::CoreList' => '5.20170922_26',
14578             'Module::CoreList::TieHashDelta'=> '5.20170922_26',
14579             'Module::CoreList::Utils'=> '5.20170922_26',
14580             '_charnames' => '1.45',
14581             'base' => '2.26',
14582             'charnames' => '1.45',
14583             },
14584             removed => {
14585             }
14586             },
14587             5.027005 => {
14588             delta_from => 5.027004,
14589             changed => {
14590             'B' => '1.70',
14591             'B::Concise' => '1.002',
14592             'B::Deparse' => '1.43',
14593             'B::Op_private' => '5.027005',
14594             'B::Xref' => '1.07',
14595             'Config' => '5.027005',
14596             'Config::Perl::V' => '0.29',
14597             'Digest::SHA' => '5.98',
14598             'Encode' => '2.93',
14599             'Encode::CN::HZ' => '2.10',
14600             'Encode::JP::JIS7' => '2.08',
14601             'Encode::MIME::Header' => '2.28',
14602             'Encode::MIME::Name' => '1.03',
14603             'File::Fetch' => '0.54',
14604             'File::Path' => '2.15',
14605             'List::Util' => '1.49',
14606             'List::Util::XS' => '1.49',
14607             'Locale::Codes' => '3.54',
14608             'Locale::Codes::Constants'=> '3.54',
14609             'Locale::Codes::Country'=> '3.54',
14610             'Locale::Codes::Country_Codes'=> '3.54',
14611             'Locale::Codes::Country_Retired'=> '3.54',
14612             'Locale::Codes::Currency'=> '3.54',
14613             'Locale::Codes::Currency_Codes'=> '3.54',
14614             'Locale::Codes::Currency_Retired'=> '3.54',
14615             'Locale::Codes::LangExt'=> '3.54',
14616             'Locale::Codes::LangExt_Codes'=> '3.54',
14617             'Locale::Codes::LangExt_Retired'=> '3.54',
14618             'Locale::Codes::LangFam'=> '3.54',
14619             'Locale::Codes::LangFam_Codes'=> '3.54',
14620             'Locale::Codes::LangFam_Retired'=> '3.54',
14621             'Locale::Codes::LangVar'=> '3.54',
14622             'Locale::Codes::LangVar_Codes'=> '3.54',
14623             'Locale::Codes::LangVar_Retired'=> '3.54',
14624             'Locale::Codes::Language'=> '3.54',
14625             'Locale::Codes::Language_Codes'=> '3.54',
14626             'Locale::Codes::Language_Retired'=> '3.54',
14627             'Locale::Codes::Script' => '3.54',
14628             'Locale::Codes::Script_Codes'=> '3.54',
14629             'Locale::Codes::Script_Retired'=> '3.54',
14630             'Locale::Country' => '3.54',
14631             'Locale::Currency' => '3.54',
14632             'Locale::Language' => '3.54',
14633             'Locale::Script' => '3.54',
14634             'Math::BigFloat' => '1.999811',
14635             'Math::BigInt' => '1.999811',
14636             'Math::BigInt::Calc' => '1.999811',
14637             'Math::BigInt::CalcEmu' => '1.999811',
14638             'Math::BigInt::FastCalc'=> '0.5006',
14639             'Math::BigInt::Lib' => '1.999811',
14640             'Module::CoreList' => '5.20171020',
14641             'Module::CoreList::TieHashDelta'=> '5.20171020',
14642             'Module::CoreList::Utils'=> '5.20171020',
14643             'NEXT' => '0.67_01',
14644             'POSIX' => '1.78',
14645             'Pod::Perldoc' => '3.2801',
14646             'Scalar::Util' => '1.49',
14647             'Sub::Util' => '1.49',
14648             'Sys::Hostname' => '1.21',
14649             'Test2' => '1.302103',
14650             'Test2::API' => '1.302103',
14651             'Test2::API::Breakage' => '1.302103',
14652             'Test2::API::Context' => '1.302103',
14653             'Test2::API::Instance' => '1.302103',
14654             'Test2::API::Stack' => '1.302103',
14655             'Test2::Event' => '1.302103',
14656             'Test2::Event::Bail' => '1.302103',
14657             'Test2::Event::Diag' => '1.302103',
14658             'Test2::Event::Encoding'=> '1.302103',
14659             'Test2::Event::Exception'=> '1.302103',
14660             'Test2::Event::Fail' => '1.302103',
14661             'Test2::Event::Generic' => '1.302103',
14662             'Test2::Event::Note' => '1.302103',
14663             'Test2::Event::Ok' => '1.302103',
14664             'Test2::Event::Pass' => '1.302103',
14665             'Test2::Event::Plan' => '1.302103',
14666             'Test2::Event::Skip' => '1.302103',
14667             'Test2::Event::Subtest' => '1.302103',
14668             'Test2::Event::TAP::Version'=> '1.302103',
14669             'Test2::Event::Waiting' => '1.302103',
14670             'Test2::EventFacet' => '1.302103',
14671             'Test2::EventFacet::About'=> '1.302103',
14672             'Test2::EventFacet::Amnesty'=> '1.302103',
14673             'Test2::EventFacet::Assert'=> '1.302103',
14674             'Test2::EventFacet::Control'=> '1.302103',
14675             'Test2::EventFacet::Error'=> '1.302103',
14676             'Test2::EventFacet::Info'=> '1.302103',
14677             'Test2::EventFacet::Meta'=> '1.302103',
14678             'Test2::EventFacet::Parent'=> '1.302103',
14679             'Test2::EventFacet::Plan'=> '1.302103',
14680             'Test2::EventFacet::Trace'=> '1.302103',
14681             'Test2::Formatter' => '1.302103',
14682             'Test2::Formatter::TAP' => '1.302103',
14683             'Test2::Hub' => '1.302103',
14684             'Test2::Hub::Interceptor'=> '1.302103',
14685             'Test2::Hub::Interceptor::Terminator'=> '1.302103',
14686             'Test2::Hub::Subtest' => '1.302103',
14687             'Test2::IPC' => '1.302103',
14688             'Test2::IPC::Driver' => '1.302103',
14689             'Test2::IPC::Driver::Files'=> '1.302103',
14690             'Test2::Tools::Tiny' => '1.302103',
14691             'Test2::Util' => '1.302103',
14692             'Test2::Util::ExternalMeta'=> '1.302103',
14693             'Test2::Util::Facets2Legacy'=> '1.302103',
14694             'Test2::Util::HashBase' => '0.005',
14695             'Test2::Util::Trace' => '1.302103',
14696             'Test::Builder' => '1.302103',
14697             'Test::Builder::Formatter'=> '1.302103',
14698             'Test::Builder::IO::Scalar'=> '2.114',
14699             'Test::Builder::Module' => '1.302103',
14700             'Test::Builder::Tester' => '1.302103',
14701             'Test::Builder::Tester::Color'=> '1.302103',
14702             'Test::Builder::TodoDiag'=> '1.302103',
14703             'Test::More' => '1.302103',
14704             'Test::Simple' => '1.302103',
14705             'Test::Tester' => '1.302103',
14706             'Test::Tester::Capture' => '1.302103',
14707             'Test::Tester::CaptureRunner'=> '1.302103',
14708             'Test::Tester::Delegate'=> '1.302103',
14709             'Test::use::ok' => '1.302103',
14710             'Time::HiRes' => '1.9746',
14711             'Time::Piece' => '1.3202',
14712             'Time::Seconds' => '1.3202',
14713             'arybase' => '0.14',
14714             'encoding' => '2.21',
14715             'ok' => '1.302103',
14716             },
14717             removed => {
14718             'Test2::Event::Info' => 1,
14719             }
14720             },
14721             5.027006 => {
14722             delta_from => 5.027005,
14723             changed => {
14724             'Attribute::Handlers' => '1.01',
14725             'B' => '1.72',
14726             'B::Concise' => '1.003',
14727             'B::Deparse' => '1.45',
14728             'B::Op_private' => '5.027006',
14729             'Carp' => '1.44',
14730             'Carp::Heavy' => '1.44',
14731             'Compress::Raw::Zlib' => '2.075',
14732             'Config' => '5.027006',
14733             'Config::Extensions' => '0.02',
14734             'Cwd' => '3.70',
14735             'DynaLoader' => '1.44',
14736             'ExtUtils::CBuilder' => '0.280229',
14737             'ExtUtils::CBuilder::Platform::Unix'=> '0.280229',
14738             'ExtUtils::CBuilder::Platform::VMS'=> '0.280229',
14739             'ExtUtils::CBuilder::Platform::Windows'=> '0.280229',
14740             'ExtUtils::CBuilder::Platform::aix'=> '0.280229',
14741             'ExtUtils::CBuilder::Platform::android'=> '0.280229',
14742             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229',
14743             'ExtUtils::CBuilder::Platform::darwin'=> '0.280229',
14744             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229',
14745             'ExtUtils::CBuilder::Platform::os2'=> '0.280229',
14746             'ExtUtils::Embed' => '1.35',
14747             'ExtUtils::Miniperl' => '1.07',
14748             'ExtUtils::ParseXS' => '3.36',
14749             'ExtUtils::ParseXS::Constants'=> '3.36',
14750             'ExtUtils::ParseXS::CountLines'=> '3.36',
14751             'ExtUtils::ParseXS::Eval'=> '3.36',
14752             'ExtUtils::ParseXS::Utilities'=> '3.36',
14753             'ExtUtils::Typemaps' => '3.36',
14754             'ExtUtils::Typemaps::Cmd'=> '3.36',
14755             'ExtUtils::Typemaps::InputMap'=> '3.36',
14756             'ExtUtils::Typemaps::OutputMap'=> '3.36',
14757             'ExtUtils::Typemaps::Type'=> '3.36',
14758             'ExtUtils::XSSymSet' => '1.4',
14759             'File::Copy' => '2.33',
14760             'File::Spec' => '3.69',
14761             'File::Spec::AmigaOS' => '3.69',
14762             'File::Spec::Cygwin' => '3.69',
14763             'File::Spec::Epoc' => '3.69',
14764             'File::Spec::Functions' => '3.69',
14765             'File::Spec::Mac' => '3.69',
14766             'File::Spec::OS2' => '3.69',
14767             'File::Spec::Unix' => '3.69',
14768             'File::Spec::VMS' => '3.69',
14769             'File::Spec::Win32' => '3.69',
14770             'File::stat' => '1.08',
14771             'FileCache' => '1.10',
14772             'Filter::Simple' => '0.95',
14773             'Hash::Util::FieldHash' => '1.20',
14774             'I18N::LangTags' => '0.43',
14775             'I18N::LangTags::Detect'=> '1.07',
14776             'I18N::LangTags::List' => '0.40',
14777             'I18N::Langinfo' => '0.15',
14778             'IO::Handle' => '1.37',
14779             'IO::Select' => '1.23',
14780             'Locale::Maketext' => '1.29',
14781             'Module::CoreList' => '5.20171120',
14782             'Module::CoreList::TieHashDelta'=> '5.20171120',
14783             'Module::CoreList::Utils'=> '5.20171120',
14784             'Net::Cmd' => '3.11',
14785             'Net::Config' => '3.11',
14786             'Net::Domain' => '3.11',
14787             'Net::FTP' => '3.11',
14788             'Net::FTP::A' => '3.11',
14789             'Net::FTP::E' => '3.11',
14790             'Net::FTP::I' => '3.11',
14791             'Net::FTP::L' => '3.11',
14792             'Net::FTP::dataconn' => '3.11',
14793             'Net::NNTP' => '3.11',
14794             'Net::Netrc' => '3.11',
14795             'Net::POP3' => '3.11',
14796             'Net::Ping' => '2.62',
14797             'Net::SMTP' => '3.11',
14798             'Net::Time' => '3.11',
14799             'Net::hostent' => '1.02',
14800             'Net::netent' => '1.01',
14801             'Net::protoent' => '1.01',
14802             'Net::servent' => '1.02',
14803             'O' => '1.03',
14804             'ODBM_File' => '1.15',
14805             'Opcode' => '1.41',
14806             'POSIX' => '1.80',
14807             'Pod::Html' => '1.2203',
14808             'SelfLoader' => '1.25',
14809             'Socket' => '2.020_04',
14810             'Storable' => '2.65',
14811             'Test' => '1.31',
14812             'Test2' => '1.302111',
14813             'Test2::API' => '1.302111',
14814             'Test2::API::Breakage' => '1.302111',
14815             'Test2::API::Context' => '1.302111',
14816             'Test2::API::Instance' => '1.302111',
14817             'Test2::API::Stack' => '1.302111',
14818             'Test2::Event' => '1.302111',
14819             'Test2::Event::Bail' => '1.302111',
14820             'Test2::Event::Diag' => '1.302111',
14821             'Test2::Event::Encoding'=> '1.302111',
14822             'Test2::Event::Exception'=> '1.302111',
14823             'Test2::Event::Fail' => '1.302111',
14824             'Test2::Event::Generic' => '1.302111',
14825             'Test2::Event::Note' => '1.302111',
14826             'Test2::Event::Ok' => '1.302111',
14827             'Test2::Event::Pass' => '1.302111',
14828             'Test2::Event::Plan' => '1.302111',
14829             'Test2::Event::Skip' => '1.302111',
14830             'Test2::Event::Subtest' => '1.302111',
14831             'Test2::Event::TAP::Version'=> '1.302111',
14832             'Test2::Event::Waiting' => '1.302111',
14833             'Test2::EventFacet' => '1.302111',
14834             'Test2::EventFacet::About'=> '1.302111',
14835             'Test2::EventFacet::Amnesty'=> '1.302111',
14836             'Test2::EventFacet::Assert'=> '1.302111',
14837             'Test2::EventFacet::Control'=> '1.302111',
14838             'Test2::EventFacet::Error'=> '1.302111',
14839             'Test2::EventFacet::Info'=> '1.302111',
14840             'Test2::EventFacet::Meta'=> '1.302111',
14841             'Test2::EventFacet::Parent'=> '1.302111',
14842             'Test2::EventFacet::Plan'=> '1.302111',
14843             'Test2::EventFacet::Trace'=> '1.302111',
14844             'Test2::Formatter' => '1.302111',
14845             'Test2::Formatter::TAP' => '1.302111',
14846             'Test2::Hub' => '1.302111',
14847             'Test2::Hub::Interceptor'=> '1.302111',
14848             'Test2::Hub::Interceptor::Terminator'=> '1.302111',
14849             'Test2::Hub::Subtest' => '1.302111',
14850             'Test2::IPC' => '1.302111',
14851             'Test2::IPC::Driver' => '1.302111',
14852             'Test2::IPC::Driver::Files'=> '1.302111',
14853             'Test2::Tools::Tiny' => '1.302111',
14854             'Test2::Util' => '1.302111',
14855             'Test2::Util::ExternalMeta'=> '1.302111',
14856             'Test2::Util::Facets2Legacy'=> '1.302111',
14857             'Test2::Util::HashBase' => '1.302111',
14858             'Test2::Util::Trace' => '1.302111',
14859             'Test::Builder' => '1.302111',
14860             'Test::Builder::Formatter'=> '1.302111',
14861             'Test::Builder::Module' => '1.302111',
14862             'Test::Builder::Tester' => '1.302111',
14863             'Test::Builder::Tester::Color'=> '1.302111',
14864             'Test::Builder::TodoDiag'=> '1.302111',
14865             'Test::More' => '1.302111',
14866             'Test::Simple' => '1.302111',
14867             'Test::Tester' => '1.302111',
14868             'Test::Tester::Capture' => '1.302111',
14869             'Test::Tester::CaptureRunner'=> '1.302111',
14870             'Test::Tester::Delegate'=> '1.302111',
14871             'Test::use::ok' => '1.302111',
14872             'Tie::Array' => '1.07',
14873             'Tie::StdHandle' => '4.5',
14874             'Time::HiRes' => '1.9747',
14875             'Time::gmtime' => '1.04',
14876             'Time::localtime' => '1.03',
14877             'Unicode::Collate' => '1.23',
14878             'Unicode::Collate::CJK::Big5'=> '1.23',
14879             'Unicode::Collate::CJK::GB2312'=> '1.23',
14880             'Unicode::Collate::CJK::JISX0208'=> '1.23',
14881             'Unicode::Collate::CJK::Korean'=> '1.23',
14882             'Unicode::Collate::CJK::Pinyin'=> '1.23',
14883             'Unicode::Collate::CJK::Stroke'=> '1.23',
14884             'Unicode::Collate::CJK::Zhuyin'=> '1.23',
14885             'Unicode::Collate::Locale'=> '1.23',
14886             'Unicode::Normalize' => '1.26',
14887             'User::grent' => '1.02',
14888             'User::pwent' => '1.01',
14889             'VMS::DCLsym' => '1.09',
14890             'VMS::Stdio' => '2.44',
14891             'XS::APItest' => '0.93',
14892             'XS::Typemap' => '0.16',
14893             'XSLoader' => '0.28',
14894             'attributes' => '0.32',
14895             'base' => '2.27',
14896             'blib' => '1.07',
14897             'experimental' => '0.017',
14898             'fields' => '2.24',
14899             'ok' => '1.302111',
14900             're' => '0.36',
14901             'sort' => '2.04',
14902             'threads' => '2.19',
14903             'warnings' => '1.38',
14904             },
14905             removed => {
14906             }
14907             },
14908             5.027007 => {
14909             delta_from => 5.027006,
14910             changed => {
14911             'App::Cpan' => '1.67',
14912             'B' => '1.73',
14913             'B::Debug' => '1.26',
14914             'B::Deparse' => '1.46',
14915             'B::Op_private' => '5.027007',
14916             'CPAN' => '2.20',
14917             'CPAN::Distribution' => '2.19',
14918             'CPAN::FTP' => '5.5011',
14919             'CPAN::FirstTime' => '5.5311',
14920             'CPAN::Shell' => '5.5007',
14921             'Carp' => '1.45',
14922             'Carp::Heavy' => '1.45',
14923             'Compress::Raw::Zlib' => '2.076',
14924             'Config' => '5.027007',
14925             'Cwd' => '3.71',
14926             'Data::Dumper' => '2.169',
14927             'Devel::PPPort' => '3.37',
14928             'Digest::SHA' => '6.00',
14929             'DynaLoader' => '1.45',
14930             'ExtUtils::CBuilder' => '0.280230',
14931             'ExtUtils::CBuilder::Base'=> '0.280230',
14932             'ExtUtils::CBuilder::Platform::Unix'=> '0.280230',
14933             'ExtUtils::CBuilder::Platform::VMS'=> '0.280230',
14934             'ExtUtils::CBuilder::Platform::Windows'=> '0.280230',
14935             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230',
14936             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230',
14937             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230',
14938             'ExtUtils::CBuilder::Platform::aix'=> '0.280230',
14939             'ExtUtils::CBuilder::Platform::android'=> '0.280230',
14940             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230',
14941             'ExtUtils::CBuilder::Platform::darwin'=> '0.280230',
14942             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230',
14943             'ExtUtils::CBuilder::Platform::os2'=> '0.280230',
14944             'ExtUtils::Typemaps' => '3.37',
14945             'File::Fetch' => '0.56',
14946             'File::Spec' => '3.71',
14947             'File::Spec::AmigaOS' => '3.71',
14948             'File::Spec::Cygwin' => '3.71',
14949             'File::Spec::Epoc' => '3.71',
14950             'File::Spec::Functions' => '3.71',
14951             'File::Spec::Mac' => '3.71',
14952             'File::Spec::OS2' => '3.71',
14953             'File::Spec::Unix' => '3.71',
14954             'File::Spec::VMS' => '3.71',
14955             'File::Spec::Win32' => '3.71',
14956             'Filter::Util::Call' => '1.58',
14957             'GDBM_File' => '1.17',
14958             'JSON::PP' => '2.97000',
14959             'JSON::PP::Boolean' => '2.97000',
14960             'Locale::Codes' => '3.55',
14961             'Locale::Codes::Constants'=> '3.55',
14962             'Locale::Codes::Country'=> '3.55',
14963             'Locale::Codes::Country_Codes'=> '3.55',
14964             'Locale::Codes::Country_Retired'=> '3.55',
14965             'Locale::Codes::Currency'=> '3.55',
14966             'Locale::Codes::Currency_Codes'=> '3.55',
14967             'Locale::Codes::Currency_Retired'=> '3.55',
14968             'Locale::Codes::LangExt'=> '3.55',
14969             'Locale::Codes::LangExt_Codes'=> '3.55',
14970             'Locale::Codes::LangExt_Retired'=> '3.55',
14971             'Locale::Codes::LangFam'=> '3.55',
14972             'Locale::Codes::LangFam_Codes'=> '3.55',
14973             'Locale::Codes::LangFam_Retired'=> '3.55',
14974             'Locale::Codes::LangVar'=> '3.55',
14975             'Locale::Codes::LangVar_Codes'=> '3.55',
14976             'Locale::Codes::LangVar_Retired'=> '3.55',
14977             'Locale::Codes::Language'=> '3.55',
14978             'Locale::Codes::Language_Codes'=> '3.55',
14979             'Locale::Codes::Language_Retired'=> '3.55',
14980             'Locale::Codes::Script' => '3.55',
14981             'Locale::Codes::Script_Codes'=> '3.55',
14982             'Locale::Codes::Script_Retired'=> '3.55',
14983             'Locale::Country' => '3.55',
14984             'Locale::Currency' => '3.55',
14985             'Locale::Language' => '3.55',
14986             'Locale::Script' => '3.55',
14987             'Module::CoreList' => '5.20171220',
14988             'Module::CoreList::TieHashDelta'=> '5.20171220',
14989             'Module::CoreList::Utils'=> '5.20171220',
14990             'Opcode' => '1.42',
14991             'POSIX' => '1.81',
14992             'Pod::Functions' => '1.12',
14993             'Pod::Html' => '1.23',
14994             'Sys::Hostname' => '1.22',
14995             'Test2' => '1.302120',
14996             'Test2::API' => '1.302120',
14997             'Test2::API::Breakage' => '1.302120',
14998             'Test2::API::Context' => '1.302120',
14999             'Test2::API::Instance' => '1.302120',
15000             'Test2::API::Stack' => '1.302120',
15001             'Test2::Event' => '1.302120',
15002             'Test2::Event::Bail' => '1.302120',
15003             'Test2::Event::Diag' => '1.302120',
15004             'Test2::Event::Encoding'=> '1.302120',
15005             'Test2::Event::Exception'=> '1.302120',
15006             'Test2::Event::Fail' => '1.302120',
15007             'Test2::Event::Generic' => '1.302120',
15008             'Test2::Event::Note' => '1.302120',
15009             'Test2::Event::Ok' => '1.302120',
15010             'Test2::Event::Pass' => '1.302120',
15011             'Test2::Event::Plan' => '1.302120',
15012             'Test2::Event::Skip' => '1.302120',
15013             'Test2::Event::Subtest' => '1.302120',
15014             'Test2::Event::TAP::Version'=> '1.302120',
15015             'Test2::Event::Waiting' => '1.302120',
15016             'Test2::EventFacet' => '1.302120',
15017             'Test2::EventFacet::About'=> '1.302120',
15018             'Test2::EventFacet::Amnesty'=> '1.302120',
15019             'Test2::EventFacet::Assert'=> '1.302120',
15020             'Test2::EventFacet::Control'=> '1.302120',
15021             'Test2::EventFacet::Error'=> '1.302120',
15022             'Test2::EventFacet::Info'=> '1.302120',
15023             'Test2::EventFacet::Meta'=> '1.302120',
15024             'Test2::EventFacet::Parent'=> '1.302120',
15025             'Test2::EventFacet::Plan'=> '1.302120',
15026             'Test2::EventFacet::Trace'=> '1.302120',
15027             'Test2::Formatter' => '1.302120',
15028             'Test2::Formatter::TAP' => '1.302120',
15029             'Test2::Hub' => '1.302120',
15030             'Test2::Hub::Interceptor'=> '1.302120',
15031             'Test2::Hub::Interceptor::Terminator'=> '1.302120',
15032             'Test2::Hub::Subtest' => '1.302120',
15033             'Test2::IPC' => '1.302120',
15034             'Test2::IPC::Driver' => '1.302120',
15035             'Test2::IPC::Driver::Files'=> '1.302120',
15036             'Test2::Tools::Tiny' => '1.302120',
15037             'Test2::Util' => '1.302120',
15038             'Test2::Util::ExternalMeta'=> '1.302120',
15039             'Test2::Util::Facets2Legacy'=> '1.302120',
15040             'Test2::Util::HashBase' => '1.302120',
15041             'Test2::Util::Trace' => '1.302120',
15042             'Test::Builder' => '1.302120',
15043             'Test::Builder::Formatter'=> '1.302120',
15044             'Test::Builder::Module' => '1.302120',
15045             'Test::Builder::Tester' => '1.302120',
15046             'Test::Builder::Tester::Color'=> '1.302120',
15047             'Test::Builder::TodoDiag'=> '1.302120',
15048             'Test::More' => '1.302120',
15049             'Test::Simple' => '1.302120',
15050             'Test::Tester' => '1.302120',
15051             'Test::Tester::Capture' => '1.302120',
15052             'Test::Tester::CaptureRunner'=> '1.302120',
15053             'Test::Tester::Delegate'=> '1.302120',
15054             'Test::use::ok' => '1.302120',
15055             'Time::HiRes' => '1.9748',
15056             'Time::Piece' => '1.3203',
15057             'Time::Seconds' => '1.3203',
15058             'Unicode::Collate' => '1.25',
15059             'Unicode::Collate::CJK::Big5'=> '1.25',
15060             'Unicode::Collate::CJK::GB2312'=> '1.25',
15061             'Unicode::Collate::CJK::JISX0208'=> '1.25',
15062             'Unicode::Collate::CJK::Korean'=> '1.25',
15063             'Unicode::Collate::CJK::Pinyin'=> '1.25',
15064             'Unicode::Collate::CJK::Stroke'=> '1.25',
15065             'Unicode::Collate::CJK::Zhuyin'=> '1.25',
15066             'Unicode::Collate::Locale'=> '1.25',
15067             'Unicode::UCD' => '0.69',
15068             'XS::APItest' => '0.94',
15069             'XSLoader' => '0.29',
15070             'arybase' => '0.15',
15071             'autodie::exception' => '2.29001',
15072             'autodie::hints' => '2.29001',
15073             'experimental' => '0.019',
15074             'feature' => '1.50',
15075             'ok' => '1.302120',
15076             'overload' => '1.29',
15077             'threads' => '2.21',
15078             'threads::shared' => '1.58',
15079             'warnings' => '1.39',
15080             },
15081             removed => {
15082             }
15083             },
15084             5.027008 => {
15085             delta_from => 5.027007,
15086             changed => {
15087             'B' => '1.74',
15088             'B::Deparse' => '1.47',
15089             'B::Op_private' => '5.027008',
15090             'Config' => '5.027008',
15091             'Cwd' => '3.72',
15092             'Data::Dumper' => '2.170',
15093             'Devel::PPPort' => '3.38',
15094             'Digest::SHA' => '6.01',
15095             'Encode' => '2.94',
15096             'Encode::Alias' => '2.24',
15097             'ExtUtils::Miniperl' => '1.08',
15098             'File::Spec' => '3.72',
15099             'File::Spec::AmigaOS' => '3.72',
15100             'File::Spec::Cygwin' => '3.72',
15101             'File::Spec::Epoc' => '3.72',
15102             'File::Spec::Functions' => '3.72',
15103             'File::Spec::Mac' => '3.72',
15104             'File::Spec::OS2' => '3.72',
15105             'File::Spec::Unix' => '3.72',
15106             'File::Spec::VMS' => '3.72',
15107             'File::Spec::Win32' => '3.72',
15108             'JSON::PP' => '2.97001',
15109             'JSON::PP::Boolean' => '2.97001',
15110             'Module::CoreList' => '5.20180120',
15111             'Module::CoreList::TieHashDelta'=> '5.20180120',
15112             'Module::CoreList::Utils'=> '5.20180120',
15113             'Opcode' => '1.43',
15114             'Pod::Functions' => '1.13',
15115             'Pod::Html' => '1.24',
15116             'Pod::Man' => '4.10',
15117             'Pod::ParseLink' => '4.10',
15118             'Pod::Text' => '4.10',
15119             'Pod::Text::Color' => '4.10',
15120             'Pod::Text::Overstrike' => '4.10',
15121             'Pod::Text::Termcap' => '4.10',
15122             'Socket' => '2.027',
15123             'Time::HiRes' => '1.9752',
15124             'Unicode::UCD' => '0.70',
15125             'XS::APItest' => '0.95',
15126             'XSLoader' => '0.30',
15127             'autodie::exception' => '2.29002',
15128             'feature' => '1.51',
15129             'overload' => '1.30',
15130             'utf8' => '1.21',
15131             'warnings' => '1.40',
15132             },
15133             removed => {
15134             }
15135             },
15136             5.027009 => {
15137             delta_from => 5.027008,
15138             changed => {
15139             'B::Op_private' => '5.027009',
15140             'Carp' => '1.46',
15141             'Carp::Heavy' => '1.46',
15142             'Config' => '5.027009',
15143             'Cwd' => '3.74',
15144             'Devel::PPPort' => '3.39',
15145             'Encode' => '2.96',
15146             'Encode::Unicode' => '2.17',
15147             'Errno' => '1.29',
15148             'ExtUtils::Command' => '7.32',
15149             'ExtUtils::Command::MM' => '7.32',
15150             'ExtUtils::Liblist' => '7.32',
15151             'ExtUtils::Liblist::Kid'=> '7.32',
15152             'ExtUtils::MM' => '7.32',
15153             'ExtUtils::MM_AIX' => '7.32',
15154             'ExtUtils::MM_Any' => '7.32',
15155             'ExtUtils::MM_BeOS' => '7.32',
15156             'ExtUtils::MM_Cygwin' => '7.32',
15157             'ExtUtils::MM_DOS' => '7.32',
15158             'ExtUtils::MM_Darwin' => '7.32',
15159             'ExtUtils::MM_MacOS' => '7.32',
15160             'ExtUtils::MM_NW5' => '7.32',
15161             'ExtUtils::MM_OS2' => '7.32',
15162             'ExtUtils::MM_QNX' => '7.32',
15163             'ExtUtils::MM_UWIN' => '7.32',
15164             'ExtUtils::MM_Unix' => '7.32',
15165             'ExtUtils::MM_VMS' => '7.32',
15166             'ExtUtils::MM_VOS' => '7.32',
15167             'ExtUtils::MM_Win32' => '7.32',
15168             'ExtUtils::MM_Win95' => '7.32',
15169             'ExtUtils::MY' => '7.32',
15170             'ExtUtils::MakeMaker' => '7.32',
15171             'ExtUtils::MakeMaker::Config'=> '7.32',
15172             'ExtUtils::MakeMaker::Locale'=> '7.32',
15173             'ExtUtils::MakeMaker::version'=> '7.32',
15174             'ExtUtils::MakeMaker::version::regex'=> '7.32',
15175             'ExtUtils::Mkbootstrap' => '7.32',
15176             'ExtUtils::Mksymlists' => '7.32',
15177             'ExtUtils::ParseXS' => '3.38',
15178             'ExtUtils::ParseXS::Constants'=> '3.38',
15179             'ExtUtils::ParseXS::CountLines'=> '3.38',
15180             'ExtUtils::ParseXS::Eval'=> '3.38',
15181             'ExtUtils::ParseXS::Utilities'=> '3.38',
15182             'ExtUtils::Typemaps' => '3.38',
15183             'ExtUtils::Typemaps::Cmd'=> '3.38',
15184             'ExtUtils::Typemaps::InputMap'=> '3.38',
15185             'ExtUtils::Typemaps::OutputMap'=> '3.38',
15186             'ExtUtils::Typemaps::Type'=> '3.38',
15187             'ExtUtils::testlib' => '7.32',
15188             'File::Spec' => '3.74',
15189             'File::Spec::AmigaOS' => '3.74',
15190             'File::Spec::Cygwin' => '3.74',
15191             'File::Spec::Epoc' => '3.74',
15192             'File::Spec::Functions' => '3.74',
15193             'File::Spec::Mac' => '3.74',
15194             'File::Spec::OS2' => '3.74',
15195             'File::Spec::Unix' => '3.74',
15196             'File::Spec::VMS' => '3.74',
15197             'File::Spec::Win32' => '3.74',
15198             'IPC::Cmd' => '1.00',
15199             'Math::BigFloat::Trace' => '0.49',
15200             'Math::BigInt::Trace' => '0.49',
15201             'Module::CoreList' => '5.20180220',
15202             'Module::CoreList::Utils'=> '5.20180220',
15203             'POSIX' => '1.82',
15204             'PerlIO::encoding' => '0.26',
15205             'Storable' => '3.06',
15206             'Storable::Limit' => undef,
15207             'Test2' => '1.302122',
15208             'Test2::API' => '1.302122',
15209             'Test2::API::Breakage' => '1.302122',
15210             'Test2::API::Context' => '1.302122',
15211             'Test2::API::Instance' => '1.302122',
15212             'Test2::API::Stack' => '1.302122',
15213             'Test2::Event' => '1.302122',
15214             'Test2::Event::Bail' => '1.302122',
15215             'Test2::Event::Diag' => '1.302122',
15216             'Test2::Event::Encoding'=> '1.302122',
15217             'Test2::Event::Exception'=> '1.302122',
15218             'Test2::Event::Fail' => '1.302122',
15219             'Test2::Event::Generic' => '1.302122',
15220             'Test2::Event::Note' => '1.302122',
15221             'Test2::Event::Ok' => '1.302122',
15222             'Test2::Event::Pass' => '1.302122',
15223             'Test2::Event::Plan' => '1.302122',
15224             'Test2::Event::Skip' => '1.302122',
15225             'Test2::Event::Subtest' => '1.302122',
15226             'Test2::Event::TAP::Version'=> '1.302122',
15227             'Test2::Event::Waiting' => '1.302122',
15228             'Test2::EventFacet' => '1.302122',
15229             'Test2::EventFacet::About'=> '1.302122',
15230             'Test2::EventFacet::Amnesty'=> '1.302122',
15231             'Test2::EventFacet::Assert'=> '1.302122',
15232             'Test2::EventFacet::Control'=> '1.302122',
15233             'Test2::EventFacet::Error'=> '1.302122',
15234             'Test2::EventFacet::Info'=> '1.302122',
15235             'Test2::EventFacet::Meta'=> '1.302122',
15236             'Test2::EventFacet::Parent'=> '1.302122',
15237             'Test2::EventFacet::Plan'=> '1.302122',
15238             'Test2::EventFacet::Render'=> '1.302122',
15239             'Test2::EventFacet::Trace'=> '1.302122',
15240             'Test2::Formatter' => '1.302122',
15241             'Test2::Formatter::TAP' => '1.302122',
15242             'Test2::Hub' => '1.302122',
15243             'Test2::Hub::Interceptor'=> '1.302122',
15244             'Test2::Hub::Interceptor::Terminator'=> '1.302122',
15245             'Test2::Hub::Subtest' => '1.302122',
15246             'Test2::IPC' => '1.302122',
15247             'Test2::IPC::Driver' => '1.302122',
15248             'Test2::IPC::Driver::Files'=> '1.302122',
15249             'Test2::Tools::Tiny' => '1.302122',
15250             'Test2::Util' => '1.302122',
15251             'Test2::Util::ExternalMeta'=> '1.302122',
15252             'Test2::Util::Facets2Legacy'=> '1.302122',
15253             'Test2::Util::HashBase' => '1.302122',
15254             'Test2::Util::Trace' => '1.302122',
15255             'Test::Builder' => '1.302122',
15256             'Test::Builder::Formatter'=> '1.302122',
15257             'Test::Builder::Module' => '1.302122',
15258             'Test::Builder::Tester' => '1.302122',
15259             'Test::Builder::Tester::Color'=> '1.302122',
15260             'Test::Builder::TodoDiag'=> '1.302122',
15261             'Test::More' => '1.302122',
15262             'Test::Simple' => '1.302122',
15263             'Test::Tester' => '1.302122',
15264             'Test::Tester::Capture' => '1.302122',
15265             'Test::Tester::CaptureRunner'=> '1.302122',
15266             'Test::Tester::Delegate'=> '1.302122',
15267             'Test::use::ok' => '1.302122',
15268             'Time::HiRes' => '1.9753',
15269             'XS::APItest' => '0.96',
15270             'bigint' => '0.49',
15271             'bignum' => '0.49',
15272             'bigrat' => '0.49',
15273             'encoding' => '2.22',
15274             'if' => '0.0608',
15275             'mro' => '1.22',
15276             'ok' => '1.302122',
15277             'threads' => '2.22',
15278             'warnings' => '1.41',
15279             },
15280             removed => {
15281             'Module::CoreList::TieHashDelta'=> 1,
15282             }
15283             },
15284             5.027010 => {
15285             delta_from => 5.027009,
15286             changed => {
15287             'App::Prove' => '3.42',
15288             'App::Prove::State' => '3.42',
15289             'App::Prove::State::Result'=> '3.42',
15290             'App::Prove::State::Result::Test'=> '3.42',
15291             'B::Deparse' => '1.48',
15292             'B::Op_private' => '5.027010',
15293             'Carp' => '1.49',
15294             'Carp::Heavy' => '1.49',
15295             'Config' => '5.02701',
15296             'Encode' => '2.97',
15297             'ExtUtils::Command' => '7.34',
15298             'ExtUtils::Command::MM' => '7.34',
15299             'ExtUtils::Liblist' => '7.34',
15300             'ExtUtils::Liblist::Kid'=> '7.34',
15301             'ExtUtils::MM' => '7.34',
15302             'ExtUtils::MM_AIX' => '7.34',
15303             'ExtUtils::MM_Any' => '7.34',
15304             'ExtUtils::MM_BeOS' => '7.34',
15305             'ExtUtils::MM_Cygwin' => '7.34',
15306             'ExtUtils::MM_DOS' => '7.34',
15307             'ExtUtils::MM_Darwin' => '7.34',
15308             'ExtUtils::MM_MacOS' => '7.34',
15309             'ExtUtils::MM_NW5' => '7.34',
15310             'ExtUtils::MM_OS2' => '7.34',
15311             'ExtUtils::MM_QNX' => '7.34',
15312             'ExtUtils::MM_UWIN' => '7.34',
15313             'ExtUtils::MM_Unix' => '7.34',
15314             'ExtUtils::MM_VMS' => '7.34',
15315             'ExtUtils::MM_VOS' => '7.34',
15316             'ExtUtils::MM_Win32' => '7.34',
15317             'ExtUtils::MM_Win95' => '7.34',
15318             'ExtUtils::MY' => '7.34',
15319             'ExtUtils::MakeMaker' => '7.34',
15320             'ExtUtils::MakeMaker::Config'=> '7.34',
15321             'ExtUtils::MakeMaker::Locale'=> '7.34',
15322             'ExtUtils::MakeMaker::version'=> '7.34',
15323             'ExtUtils::MakeMaker::version::regex'=> '7.34',
15324             'ExtUtils::Mkbootstrap' => '7.34',
15325             'ExtUtils::Mksymlists' => '7.34',
15326             'ExtUtils::ParseXS' => '3.39',
15327             'ExtUtils::ParseXS::Constants'=> '3.39',
15328             'ExtUtils::ParseXS::CountLines'=> '3.39',
15329             'ExtUtils::ParseXS::Eval'=> '3.39',
15330             'ExtUtils::ParseXS::Utilities'=> '3.39',
15331             'ExtUtils::testlib' => '7.34',
15332             'File::Glob' => '1.31',
15333             'I18N::Langinfo' => '0.16',
15334             'List::Util' => '1.50',
15335             'List::Util::XS' => '1.50',
15336             'Locale::Codes' => '3.56',
15337             'Locale::Codes::Constants'=> '3.56',
15338             'Locale::Codes::Country'=> '3.56',
15339             'Locale::Codes::Country_Codes'=> '3.56',
15340             'Locale::Codes::Country_Retired'=> '3.56',
15341             'Locale::Codes::Currency'=> '3.56',
15342             'Locale::Codes::Currency_Codes'=> '3.56',
15343             'Locale::Codes::Currency_Retired'=> '3.56',
15344             'Locale::Codes::LangExt'=> '3.56',
15345             'Locale::Codes::LangExt_Codes'=> '3.56',
15346             'Locale::Codes::LangExt_Retired'=> '3.56',
15347             'Locale::Codes::LangFam'=> '3.56',
15348             'Locale::Codes::LangFam_Codes'=> '3.56',
15349             'Locale::Codes::LangFam_Retired'=> '3.56',
15350             'Locale::Codes::LangVar'=> '3.56',
15351             'Locale::Codes::LangVar_Codes'=> '3.56',
15352             'Locale::Codes::LangVar_Retired'=> '3.56',
15353             'Locale::Codes::Language'=> '3.56',
15354             'Locale::Codes::Language_Codes'=> '3.56',
15355             'Locale::Codes::Language_Retired'=> '3.56',
15356             'Locale::Codes::Script' => '3.56',
15357             'Locale::Codes::Script_Codes'=> '3.56',
15358             'Locale::Codes::Script_Retired'=> '3.56',
15359             'Locale::Country' => '3.56',
15360             'Locale::Currency' => '3.56',
15361             'Locale::Language' => '3.56',
15362             'Locale::Script' => '3.56',
15363             'Module::CoreList' => '5.20180221',
15364             'Module::CoreList::Utils'=> '5.20180221',
15365             'POSIX' => '1.83',
15366             'Scalar::Util' => '1.50',
15367             'Sub::Util' => '1.50',
15368             'TAP::Base' => '3.42',
15369             'TAP::Formatter::Base' => '3.42',
15370             'TAP::Formatter::Color' => '3.42',
15371             'TAP::Formatter::Console'=> '3.42',
15372             'TAP::Formatter::Console::ParallelSession'=> '3.42',
15373             'TAP::Formatter::Console::Session'=> '3.42',
15374             'TAP::Formatter::File' => '3.42',
15375             'TAP::Formatter::File::Session'=> '3.42',
15376             'TAP::Formatter::Session'=> '3.42',
15377             'TAP::Harness' => '3.42',
15378             'TAP::Harness::Env' => '3.42',
15379             'TAP::Object' => '3.42',
15380             'TAP::Parser' => '3.42',
15381             'TAP::Parser::Aggregator'=> '3.42',
15382             'TAP::Parser::Grammar' => '3.42',
15383             'TAP::Parser::Iterator' => '3.42',
15384             'TAP::Parser::Iterator::Array'=> '3.42',
15385             'TAP::Parser::Iterator::Process'=> '3.42',
15386             'TAP::Parser::Iterator::Stream'=> '3.42',
15387             'TAP::Parser::IteratorFactory'=> '3.42',
15388             'TAP::Parser::Multiplexer'=> '3.42',
15389             'TAP::Parser::Result' => '3.42',
15390             'TAP::Parser::Result::Bailout'=> '3.42',
15391             'TAP::Parser::Result::Comment'=> '3.42',
15392             'TAP::Parser::Result::Plan'=> '3.42',
15393             'TAP::Parser::Result::Pragma'=> '3.42',
15394             'TAP::Parser::Result::Test'=> '3.42',
15395             'TAP::Parser::Result::Unknown'=> '3.42',
15396             'TAP::Parser::Result::Version'=> '3.42',
15397             'TAP::Parser::Result::YAML'=> '3.42',
15398             'TAP::Parser::ResultFactory'=> '3.42',
15399             'TAP::Parser::Scheduler'=> '3.42',
15400             'TAP::Parser::Scheduler::Job'=> '3.42',
15401             'TAP::Parser::Scheduler::Spinner'=> '3.42',
15402             'TAP::Parser::Source' => '3.42',
15403             'TAP::Parser::SourceHandler'=> '3.42',
15404             'TAP::Parser::SourceHandler::Executable'=> '3.42',
15405             'TAP::Parser::SourceHandler::File'=> '3.42',
15406             'TAP::Parser::SourceHandler::Handle'=> '3.42',
15407             'TAP::Parser::SourceHandler::Perl'=> '3.42',
15408             'TAP::Parser::SourceHandler::RawTAP'=> '3.42',
15409             'TAP::Parser::YAMLish::Reader'=> '3.42',
15410             'TAP::Parser::YAMLish::Writer'=> '3.42',
15411             'Test2' => '1.302133',
15412             'Test2::API' => '1.302133',
15413             'Test2::API::Breakage' => '1.302133',
15414             'Test2::API::Context' => '1.302133',
15415             'Test2::API::Instance' => '1.302133',
15416             'Test2::API::Stack' => '1.302133',
15417             'Test2::Event' => '1.302133',
15418             'Test2::Event::Bail' => '1.302133',
15419             'Test2::Event::Diag' => '1.302133',
15420             'Test2::Event::Encoding'=> '1.302133',
15421             'Test2::Event::Exception'=> '1.302133',
15422             'Test2::Event::Fail' => '1.302133',
15423             'Test2::Event::Generic' => '1.302133',
15424             'Test2::Event::Note' => '1.302133',
15425             'Test2::Event::Ok' => '1.302133',
15426             'Test2::Event::Pass' => '1.302133',
15427             'Test2::Event::Plan' => '1.302133',
15428             'Test2::Event::Skip' => '1.302133',
15429             'Test2::Event::Subtest' => '1.302133',
15430             'Test2::Event::TAP::Version'=> '1.302133',
15431             'Test2::Event::V2' => '1.302133',
15432             'Test2::Event::Waiting' => '1.302133',
15433             'Test2::EventFacet' => '1.302133',
15434             'Test2::EventFacet::About'=> '1.302133',
15435             'Test2::EventFacet::Amnesty'=> '1.302133',
15436             'Test2::EventFacet::Assert'=> '1.302133',
15437             'Test2::EventFacet::Control'=> '1.302133',
15438             'Test2::EventFacet::Error'=> '1.302133',
15439             'Test2::EventFacet::Hub'=> '1.302133',
15440             'Test2::EventFacet::Info'=> '1.302133',
15441             'Test2::EventFacet::Meta'=> '1.302133',
15442             'Test2::EventFacet::Parent'=> '1.302133',
15443             'Test2::EventFacet::Plan'=> '1.302133',
15444             'Test2::EventFacet::Render'=> '1.302133',
15445             'Test2::EventFacet::Trace'=> '1.302133',
15446             'Test2::Formatter' => '1.302133',
15447             'Test2::Formatter::TAP' => '1.302133',
15448             'Test2::Hub' => '1.302133',
15449             'Test2::Hub::Interceptor'=> '1.302133',
15450             'Test2::Hub::Interceptor::Terminator'=> '1.302133',
15451             'Test2::Hub::Subtest' => '1.302133',
15452             'Test2::IPC' => '1.302133',
15453             'Test2::IPC::Driver' => '1.302133',
15454             'Test2::IPC::Driver::Files'=> '1.302133',
15455             'Test2::Tools::Tiny' => '1.302133',
15456             'Test2::Util' => '1.302133',
15457             'Test2::Util::ExternalMeta'=> '1.302133',
15458             'Test2::Util::Facets2Legacy'=> '1.302133',
15459             'Test2::Util::HashBase' => '1.302133',
15460             'Test2::Util::Trace' => '1.302133',
15461             'Test::Builder' => '1.302133',
15462             'Test::Builder::Formatter'=> '1.302133',
15463             'Test::Builder::Module' => '1.302133',
15464             'Test::Builder::Tester' => '1.302133',
15465             'Test::Builder::Tester::Color'=> '1.302133',
15466             'Test::Builder::TodoDiag'=> '1.302133',
15467             'Test::Harness' => '3.42',
15468             'Test::More' => '1.302133',
15469             'Test::Simple' => '1.302133',
15470             'Test::Tester' => '1.302133',
15471             'Test::Tester::Capture' => '1.302133',
15472             'Test::Tester::CaptureRunner'=> '1.302133',
15473             'Test::Tester::Delegate'=> '1.302133',
15474             'Test::use::ok' => '1.302133',
15475             'Time::HiRes' => '1.9757',
15476             'Time::Piece' => '1.3204',
15477             'Time::Seconds' => '1.3204',
15478             'attributes' => '0.33',
15479             'ok' => '1.302133',
15480             'warnings' => '1.42',
15481             },
15482             removed => {
15483             }
15484             },
15485             5.024004 => {
15486             delta_from => 5.024003,
15487             changed => {
15488             'B::Op_private' => '5.024004',
15489             'Config' => '5.024004',
15490             'Module::CoreList' => '5.20180414_24',
15491             'Module::CoreList::TieHashDelta'=> '5.20180414_24',
15492             'Module::CoreList::Utils'=> '5.20180414_24',
15493             },
15494             removed => {
15495             }
15496             },
15497             5.026002 => {
15498             delta_from => 5.026001,
15499             changed => {
15500             'B::Op_private' => '5.026002',
15501             'Config' => '5.026002',
15502             'Module::CoreList' => '5.20180414_26',
15503             'Module::CoreList::TieHashDelta'=> '5.20180414_26',
15504             'Module::CoreList::Utils'=> '5.20180414_26',
15505             'PerlIO::via' => '0.17',
15506             'Term::ReadLine' => '1.17',
15507             'Unicode::UCD' => '0.69',
15508             },
15509             removed => {
15510             }
15511             },
15512             5.027011 => {
15513             delta_from => 5.027010,
15514             changed => {
15515             'B::Op_private' => '5.027011',
15516             'Carp' => '1.50',
15517             'Carp::Heavy' => '1.50',
15518             'Config' => '5.027011',
15519             'Devel::PPPort' => '3.40',
15520             'Exporter' => '5.73',
15521             'Exporter::Heavy' => '5.73',
15522             'ExtUtils::Constant' => '0.25',
15523             'I18N::Langinfo' => '0.17',
15524             'IO' => '1.39',
15525             'IO::Dir' => '1.39',
15526             'IO::File' => '1.39',
15527             'IO::Handle' => '1.39',
15528             'IO::Pipe' => '1.39',
15529             'IO::Poll' => '1.39',
15530             'IO::Seekable' => '1.39',
15531             'IO::Select' => '1.39',
15532             'IO::Socket' => '1.39',
15533             'IO::Socket::INET' => '1.39',
15534             'IO::Socket::UNIX' => '1.39',
15535             'Module::CoreList' => '5.20180420',
15536             'Module::CoreList::Utils'=> '5.20180420',
15537             'POSIX' => '1.84',
15538             'Time::HiRes' => '1.9759',
15539             'XS::APItest' => '0.97',
15540             'bytes' => '1.06',
15541             'subs' => '1.03',
15542             'vars' => '1.04',
15543             'version' => '0.9923',
15544             'version::regex' => '0.9923',
15545             },
15546             removed => {
15547             }
15548             },
15549             5.028000 => {
15550             delta_from => 5.027011,
15551             changed => {
15552             'Archive::Tar' => '2.30',
15553             'Archive::Tar::Constant'=> '2.30',
15554             'Archive::Tar::File' => '2.30',
15555             'B::Op_private' => '5.028000',
15556             'Config' => '5.028',
15557             'Module::CoreList' => '5.20180622',
15558             'Module::CoreList::Utils'=> '5.20180622',
15559             'Storable' => '3.08',
15560             'XS::APItest' => '0.98',
15561             'feature' => '1.52',
15562             },
15563             removed => {
15564             }
15565             },
15566             5.029000 => {
15567             delta_from => 5.028,
15568             changed => {
15569             'B::Op_private' => '5.029000',
15570             'Config' => '5.029',
15571             'Module::CoreList' => '5.20180626',
15572             'Module::CoreList::Utils'=> '5.20180626',
15573             'Unicode::UCD' => '0.71',
15574             'XS::APItest' => '0.99',
15575             'feature' => '1.53',
15576             },
15577             removed => {
15578             }
15579             },
15580             5.029001 => {
15581             delta_from => 5.029000,
15582             changed => {
15583             'B::Op_private' => '5.029001',
15584             'Compress::Raw::Bzip2' => '2.081',
15585             'Compress::Raw::Zlib' => '2.081',
15586             'Compress::Zlib' => '2.081',
15587             'Config' => '5.029001',
15588             'Config::Perl::V' => '0.30',
15589             'DB_File' => '1.842',
15590             'Devel::PPPort' => '3.42',
15591             'Digest::SHA' => '6.02',
15592             'ExtUtils::Manifest' => '1.71',
15593             'File::GlobMapper' => '1.001',
15594             'File::Temp' => '0.2308',
15595             'IO::Compress::Adapter::Bzip2'=> '2.081',
15596             'IO::Compress::Adapter::Deflate'=> '2.081',
15597             'IO::Compress::Adapter::Identity'=> '2.081',
15598             'IO::Compress::Base' => '2.081',
15599             'IO::Compress::Base::Common'=> '2.081',
15600             'IO::Compress::Bzip2' => '2.081',
15601             'IO::Compress::Deflate' => '2.081',
15602             'IO::Compress::Gzip' => '2.081',
15603             'IO::Compress::Gzip::Constants'=> '2.081',
15604             'IO::Compress::RawDeflate'=> '2.081',
15605             'IO::Compress::Zip' => '2.081',
15606             'IO::Compress::Zip::Constants'=> '2.081',
15607             'IO::Compress::Zlib::Constants'=> '2.081',
15608             'IO::Compress::Zlib::Extra'=> '2.081',
15609             'IO::Uncompress::Adapter::Bunzip2'=> '2.081',
15610             'IO::Uncompress::Adapter::Identity'=> '2.081',
15611             'IO::Uncompress::Adapter::Inflate'=> '2.081',
15612             'IO::Uncompress::AnyInflate'=> '2.081',
15613             'IO::Uncompress::AnyUncompress'=> '2.081',
15614             'IO::Uncompress::Base' => '2.081',
15615             'IO::Uncompress::Bunzip2'=> '2.081',
15616             'IO::Uncompress::Gunzip'=> '2.081',
15617             'IO::Uncompress::Inflate'=> '2.081',
15618             'IO::Uncompress::RawInflate'=> '2.081',
15619             'IO::Uncompress::Unzip' => '2.081',
15620             'IPC::Cmd' => '1.02',
15621             'Locale::Codes' => '3.57',
15622             'Locale::Codes::Constants'=> '3.57',
15623             'Locale::Codes::Country'=> '3.57',
15624             'Locale::Codes::Country_Codes'=> '3.57',
15625             'Locale::Codes::Country_Retired'=> '3.57',
15626             'Locale::Codes::Currency'=> '3.57',
15627             'Locale::Codes::Currency_Codes'=> '3.57',
15628             'Locale::Codes::Currency_Retired'=> '3.57',
15629             'Locale::Codes::LangExt'=> '3.57',
15630             'Locale::Codes::LangExt_Codes'=> '3.57',
15631             'Locale::Codes::LangExt_Retired'=> '3.57',
15632             'Locale::Codes::LangFam'=> '3.57',
15633             'Locale::Codes::LangFam_Codes'=> '3.57',
15634             'Locale::Codes::LangFam_Retired'=> '3.57',
15635             'Locale::Codes::LangVar'=> '3.57',
15636             'Locale::Codes::LangVar_Codes'=> '3.57',
15637             'Locale::Codes::LangVar_Retired'=> '3.57',
15638             'Locale::Codes::Language'=> '3.57',
15639             'Locale::Codes::Language_Codes'=> '3.57',
15640             'Locale::Codes::Language_Retired'=> '3.57',
15641             'Locale::Codes::Script' => '3.57',
15642             'Locale::Codes::Script_Codes'=> '3.57',
15643             'Locale::Codes::Script_Retired'=> '3.57',
15644             'Locale::Country' => '3.57',
15645             'Locale::Currency' => '3.57',
15646             'Locale::Language' => '3.57',
15647             'Locale::Script' => '3.57',
15648             'Math::BigFloat' => '1.999813',
15649             'Math::BigFloat::Trace' => '0.50',
15650             'Math::BigInt' => '1.999813',
15651             'Math::BigInt::Calc' => '1.999813',
15652             'Math::BigInt::CalcEmu' => '1.999813',
15653             'Math::BigInt::FastCalc'=> '0.5007',
15654             'Math::BigInt::Lib' => '1.999813',
15655             'Math::BigInt::Trace' => '0.50',
15656             'Math::BigRat' => '0.2614',
15657             'Module::CoreList' => '5.20180720',
15658             'Module::CoreList::Utils'=> '5.20180720',
15659             'Pod::Man' => '4.11',
15660             'Pod::ParseLink' => '4.11',
15661             'Pod::Text' => '4.11',
15662             'Pod::Text::Color' => '4.11',
15663             'Pod::Text::Overstrike' => '4.11',
15664             'Pod::Text::Termcap' => '4.11',
15665             'Storable' => '3.11',
15666             'Test2' => '1.302138',
15667             'Test2::API' => '1.302138',
15668             'Test2::API::Breakage' => '1.302138',
15669             'Test2::API::Context' => '1.302138',
15670             'Test2::API::Instance' => '1.302138',
15671             'Test2::API::Stack' => '1.302138',
15672             'Test2::Event' => '1.302138',
15673             'Test2::Event::Bail' => '1.302138',
15674             'Test2::Event::Diag' => '1.302138',
15675             'Test2::Event::Encoding'=> '1.302138',
15676             'Test2::Event::Exception'=> '1.302138',
15677             'Test2::Event::Fail' => '1.302138',
15678             'Test2::Event::Generic' => '1.302138',
15679             'Test2::Event::Note' => '1.302138',
15680             'Test2::Event::Ok' => '1.302138',
15681             'Test2::Event::Pass' => '1.302138',
15682             'Test2::Event::Plan' => '1.302138',
15683             'Test2::Event::Skip' => '1.302138',
15684             'Test2::Event::Subtest' => '1.302138',
15685             'Test2::Event::TAP::Version'=> '1.302138',
15686             'Test2::Event::V2' => '1.302138',
15687             'Test2::Event::Waiting' => '1.302138',
15688             'Test2::EventFacet' => '1.302138',
15689             'Test2::EventFacet::About'=> '1.302138',
15690             'Test2::EventFacet::Amnesty'=> '1.302138',
15691             'Test2::EventFacet::Assert'=> '1.302138',
15692             'Test2::EventFacet::Control'=> '1.302138',
15693             'Test2::EventFacet::Error'=> '1.302138',
15694             'Test2::EventFacet::Hub'=> '1.302138',
15695             'Test2::EventFacet::Info'=> '1.302138',
15696             'Test2::EventFacet::Meta'=> '1.302138',
15697             'Test2::EventFacet::Parent'=> '1.302138',
15698             'Test2::EventFacet::Plan'=> '1.302138',
15699             'Test2::EventFacet::Render'=> '1.302138',
15700             'Test2::EventFacet::Trace'=> '1.302138',
15701             'Test2::Formatter' => '1.302138',
15702             'Test2::Formatter::TAP' => '1.302138',
15703             'Test2::Hub' => '1.302138',
15704             'Test2::Hub::Interceptor'=> '1.302138',
15705             'Test2::Hub::Interceptor::Terminator'=> '1.302138',
15706             'Test2::Hub::Subtest' => '1.302138',
15707             'Test2::IPC' => '1.302138',
15708             'Test2::IPC::Driver' => '1.302138',
15709             'Test2::IPC::Driver::Files'=> '1.302138',
15710             'Test2::Tools::Tiny' => '1.302138',
15711             'Test2::Util' => '1.302138',
15712             'Test2::Util::ExternalMeta'=> '1.302138',
15713             'Test2::Util::Facets2Legacy'=> '1.302138',
15714             'Test2::Util::HashBase' => '1.302138',
15715             'Test2::Util::Trace' => '1.302138',
15716             'Test::Builder' => '1.302138',
15717             'Test::Builder::Formatter'=> '1.302138',
15718             'Test::Builder::Module' => '1.302138',
15719             'Test::Builder::Tester' => '1.302138',
15720             'Test::Builder::Tester::Color'=> '1.302138',
15721             'Test::Builder::TodoDiag'=> '1.302138',
15722             'Test::More' => '1.302138',
15723             'Test::Simple' => '1.302138',
15724             'Test::Tester' => '1.302138',
15725             'Test::Tester::Capture' => '1.302138',
15726             'Test::Tester::CaptureRunner'=> '1.302138',
15727             'Test::Tester::Delegate'=> '1.302138',
15728             'Test::use::ok' => '1.302138',
15729             'Thread::Queue' => '3.13',
15730             'Time::Local' => '1.28',
15731             'bigint' => '0.50',
15732             'bignum' => '0.50',
15733             'bigrat' => '0.50',
15734             'experimental' => '0.020',
15735             'ok' => '1.302138',
15736             'parent' => '0.237',
15737             'perlfaq' => '5.20180605',
15738             'version' => '0.9924',
15739             'version::regex' => '0.9924',
15740             },
15741             removed => {
15742             }
15743             },
15744             5.029002 => {
15745             delta_from => 5.029001,
15746             changed => {
15747             'B::Op_private' => '5.029002',
15748             'Config' => '5.029002',
15749             'Config::Extensions' => '0.03',
15750             'Cwd' => '3.75',
15751             'Data::Dumper' => '2.171',
15752             'Filter::Util::Call' => '1.59',
15753             'HTTP::Tiny' => '0.076',
15754             'Module::CoreList' => '5.20180820',
15755             'Module::CoreList::Utils'=> '5.20180820',
15756             'PerlIO::scalar' => '0.30',
15757             'Storable' => '3.12',
15758             'Test2' => '1.302140',
15759             'Test2::API' => '1.302140',
15760             'Test2::API::Breakage' => '1.302140',
15761             'Test2::API::Context' => '1.302140',
15762             'Test2::API::Instance' => '1.302140',
15763             'Test2::API::Stack' => '1.302140',
15764             'Test2::Event' => '1.302140',
15765             'Test2::Event::Bail' => '1.302140',
15766             'Test2::Event::Diag' => '1.302140',
15767             'Test2::Event::Encoding'=> '1.302140',
15768             'Test2::Event::Exception'=> '1.302140',
15769             'Test2::Event::Fail' => '1.302140',
15770             'Test2::Event::Generic' => '1.302140',
15771             'Test2::Event::Note' => '1.302140',
15772             'Test2::Event::Ok' => '1.302140',
15773             'Test2::Event::Pass' => '1.302140',
15774             'Test2::Event::Plan' => '1.302140',
15775             'Test2::Event::Skip' => '1.302140',
15776             'Test2::Event::Subtest' => '1.302140',
15777             'Test2::Event::TAP::Version'=> '1.302140',
15778             'Test2::Event::V2' => '1.302140',
15779             'Test2::Event::Waiting' => '1.302140',
15780             'Test2::EventFacet' => '1.302140',
15781             'Test2::EventFacet::About'=> '1.302140',
15782             'Test2::EventFacet::Amnesty'=> '1.302140',
15783             'Test2::EventFacet::Assert'=> '1.302140',
15784             'Test2::EventFacet::Control'=> '1.302140',
15785             'Test2::EventFacet::Error'=> '1.302140',
15786             'Test2::EventFacet::Hub'=> '1.302140',
15787             'Test2::EventFacet::Info'=> '1.302140',
15788             'Test2::EventFacet::Meta'=> '1.302140',
15789             'Test2::EventFacet::Parent'=> '1.302140',
15790             'Test2::EventFacet::Plan'=> '1.302140',
15791             'Test2::EventFacet::Render'=> '1.302140',
15792             'Test2::EventFacet::Trace'=> '1.302140',
15793             'Test2::Formatter' => '1.302140',
15794             'Test2::Formatter::TAP' => '1.302140',
15795             'Test2::Hub' => '1.302140',
15796             'Test2::Hub::Interceptor'=> '1.302140',
15797             'Test2::Hub::Interceptor::Terminator'=> '1.302140',
15798             'Test2::Hub::Subtest' => '1.302140',
15799             'Test2::IPC' => '1.302140',
15800             'Test2::IPC::Driver' => '1.302140',
15801             'Test2::IPC::Driver::Files'=> '1.302140',
15802             'Test2::Tools::Tiny' => '1.302140',
15803             'Test2::Util' => '1.302140',
15804             'Test2::Util::ExternalMeta'=> '1.302140',
15805             'Test2::Util::Facets2Legacy'=> '1.302140',
15806             'Test2::Util::HashBase' => '1.302140',
15807             'Test2::Util::Trace' => '1.302140',
15808             'Test::Builder' => '1.302140',
15809             'Test::Builder::Formatter'=> '1.302140',
15810             'Test::Builder::Module' => '1.302140',
15811             'Test::Builder::Tester' => '1.302140',
15812             'Test::Builder::Tester::Color'=> '1.302140',
15813             'Test::Builder::TodoDiag'=> '1.302140',
15814             'Test::More' => '1.302140',
15815             'Test::Simple' => '1.302140',
15816             'Test::Tester' => '1.302140',
15817             'Test::Tester::Capture' => '1.302140',
15818             'Test::Tester::CaptureRunner'=> '1.302140',
15819             'Test::Tester::Delegate'=> '1.302140',
15820             'Test::use::ok' => '1.302140',
15821             'Time::HiRes' => '1.9760',
15822             'Time::Piece' => '1.33',
15823             'Time::Seconds' => '1.33',
15824             'Unicode' => '11.0.0',
15825             'ok' => '1.302140',
15826             'warnings' => '1.43',
15827             },
15828             removed => {
15829             }
15830             },
15831             5.029003 => {
15832             delta_from => 5.029002,
15833             changed => {
15834             'Archive::Tar' => '2.32',
15835             'Archive::Tar::Constant'=> '2.32',
15836             'Archive::Tar::File' => '2.32',
15837             'B::Op_private' => '5.029003',
15838             'Config' => '5.029003',
15839             'Data::Dumper' => '2.172',
15840             'Devel::PPPort' => '3.43',
15841             'File::Path' => '2.16',
15842             'File::Spec' => '3.75',
15843             'File::Spec::AmigaOS' => '3.75',
15844             'File::Spec::Cygwin' => '3.75',
15845             'File::Spec::Epoc' => '3.75',
15846             'File::Spec::Functions' => '3.75',
15847             'File::Spec::Mac' => '3.75',
15848             'File::Spec::OS2' => '3.75',
15849             'File::Spec::Unix' => '3.75',
15850             'File::Spec::VMS' => '3.75',
15851             'File::Spec::Win32' => '3.75',
15852             'Module::CoreList' => '5.20180920',
15853             'Module::CoreList::Utils'=> '5.20180920',
15854             'POSIX' => '1.85',
15855             'Storable' => '3.13',
15856             'User::grent' => '1.03',
15857             'perlfaq' => '5.20180915',
15858             },
15859             removed => {
15860             'Locale::Codes' => 1,
15861             'Locale::Codes::Constants'=> 1,
15862             'Locale::Codes::Country'=> 1,
15863             'Locale::Codes::Country_Codes'=> 1,
15864             'Locale::Codes::Country_Retired'=> 1,
15865             'Locale::Codes::Currency'=> 1,
15866             'Locale::Codes::Currency_Codes'=> 1,
15867             'Locale::Codes::Currency_Retired'=> 1,
15868             'Locale::Codes::LangExt'=> 1,
15869             'Locale::Codes::LangExt_Codes'=> 1,
15870             'Locale::Codes::LangExt_Retired'=> 1,
15871             'Locale::Codes::LangFam'=> 1,
15872             'Locale::Codes::LangFam_Codes'=> 1,
15873             'Locale::Codes::LangFam_Retired'=> 1,
15874             'Locale::Codes::LangVar'=> 1,
15875             'Locale::Codes::LangVar_Codes'=> 1,
15876             'Locale::Codes::LangVar_Retired'=> 1,
15877             'Locale::Codes::Language'=> 1,
15878             'Locale::Codes::Language_Codes'=> 1,
15879             'Locale::Codes::Language_Retired'=> 1,
15880             'Locale::Codes::Script' => 1,
15881             'Locale::Codes::Script_Codes'=> 1,
15882             'Locale::Codes::Script_Retired'=> 1,
15883             'Locale::Country' => 1,
15884             'Locale::Currency' => 1,
15885             'Locale::Language' => 1,
15886             'Locale::Script' => 1,
15887             }
15888             },
15889             5.029004 => {
15890             delta_from => 5.029003,
15891             changed => {
15892             'App::Cpan' => '1.671',
15893             'B' => '1.75',
15894             'B::Concise' => '1.004',
15895             'B::Deparse' => '1.49',
15896             'B::Op_private' => '5.029004',
15897             'B::Terse' => '1.09',
15898             'CPAN' => '2.21',
15899             'CPAN::Distribution' => '2.21',
15900             'CPAN::Mirrors' => '2.21',
15901             'CPAN::Plugin' => '0.97',
15902             'CPAN::Shell' => '5.5008',
15903             'Config' => '5.029004',
15904             'Devel::Peek' => '1.28',
15905             'File::Copy' => '2.34',
15906             'File::Glob' => '1.32',
15907             'Math::BigFloat::Trace' => '0.51',
15908             'Math::BigInt::Trace' => '0.51',
15909             'Module::CoreList' => '5.20181020',
15910             'Module::CoreList::Utils'=> '5.20181020',
15911             'Unicode::UCD' => '0.72',
15912             'bigint' => '0.51',
15913             'bignum' => '0.51',
15914             'bigrat' => '0.51',
15915             'bytes' => '1.07',
15916             'feature' => '1.54',
15917             'sigtrap' => '1.09',
15918             'vars' => '1.05',
15919             },
15920             removed => {
15921             'B::Debug' => 1,
15922             'arybase' => 1,
15923             }
15924             },
15925             5.029005 => {
15926             delta_from => 5.029004,
15927             changed => {
15928             'B::Op_private' => '5.029005',
15929             'Config' => '5.029005',
15930             'Cwd' => '3.76',
15931             'Data::Dumper' => '2.173',
15932             'Errno' => '1.30',
15933             'File::Spec' => '3.76',
15934             'File::Spec::AmigaOS' => '3.76',
15935             'File::Spec::Cygwin' => '3.76',
15936             'File::Spec::Epoc' => '3.76',
15937             'File::Spec::Functions' => '3.76',
15938             'File::Spec::Mac' => '3.76',
15939             'File::Spec::OS2' => '3.76',
15940             'File::Spec::Unix' => '3.76',
15941             'File::Spec::VMS' => '3.76',
15942             'File::Spec::Win32' => '3.76',
15943             'GDBM_File' => '1.18',
15944             'Module::CoreList' => '5.20181120',
15945             'Module::CoreList::Utils'=> '5.20181120',
15946             'NDBM_File' => '1.15',
15947             'ODBM_File' => '1.16',
15948             'SDBM_File' => '1.15',
15949             're' => '0.37',
15950             },
15951             removed => {
15952             }
15953             },
15954             5.026003 => {
15955             delta_from => 5.026002,
15956             changed => {
15957             'Archive::Tar' => '2.24_01',
15958             'B::Op_private' => '5.026003',
15959             'Config' => '5.026003',
15960             'Module::CoreList' => '5.20181129_26',
15961             'Module::CoreList::TieHashDelta'=> '5.20181129_26',
15962             'Module::CoreList::Utils'=> '5.20181129_26',
15963             },
15964             removed => {
15965             }
15966             },
15967             5.028001 => {
15968             delta_from => 5.028,
15969             changed => {
15970             'B::Op_private' => '5.028001',
15971             'Config' => '5.028001',
15972             'Module::CoreList' => '5.20181129_28',
15973             'Module::CoreList::Utils'=> '5.20181129_28',
15974             },
15975             removed => {
15976             }
15977             },
15978             5.029006 => {
15979             delta_from => 5.029005,
15980             changed => {
15981             'B::Op_private' => '5.029006',
15982             'Config' => '5.029006',
15983             'Config::Perl::V' => '0.32',
15984             'ExtUtils::ParseXS' => '3.40',
15985             'ExtUtils::ParseXS::Constants'=> '3.40',
15986             'ExtUtils::ParseXS::CountLines'=> '3.40',
15987             'ExtUtils::ParseXS::Eval'=> '3.40',
15988             'ExtUtils::ParseXS::Utilities'=> '3.40',
15989             'File::Find' => '1.35',
15990             'Module::CoreList' => '5.20181218',
15991             'Module::CoreList::Utils'=> '5.20181218',
15992             'POSIX' => '1.86',
15993             'Storable' => '3.14',
15994             'Test2' => '1.302141',
15995             'Test2::API' => '1.302141',
15996             'Test2::API::Breakage' => '1.302141',
15997             'Test2::API::Context' => '1.302141',
15998             'Test2::API::Instance' => '1.302141',
15999             'Test2::API::Stack' => '1.302141',
16000             'Test2::Event' => '1.302141',
16001             'Test2::Event::Bail' => '1.302141',
16002             'Test2::Event::Diag' => '1.302141',
16003             'Test2::Event::Encoding'=> '1.302141',
16004             'Test2::Event::Exception'=> '1.302141',
16005             'Test2::Event::Fail' => '1.302141',
16006             'Test2::Event::Generic' => '1.302141',
16007             'Test2::Event::Note' => '1.302141',
16008             'Test2::Event::Ok' => '1.302141',
16009             'Test2::Event::Pass' => '1.302141',
16010             'Test2::Event::Plan' => '1.302141',
16011             'Test2::Event::Skip' => '1.302141',
16012             'Test2::Event::Subtest' => '1.302141',
16013             'Test2::Event::TAP::Version'=> '1.302141',
16014             'Test2::Event::V2' => '1.302141',
16015             'Test2::Event::Waiting' => '1.302141',
16016             'Test2::EventFacet' => '1.302141',
16017             'Test2::EventFacet::About'=> '1.302141',
16018             'Test2::EventFacet::Amnesty'=> '1.302141',
16019             'Test2::EventFacet::Assert'=> '1.302141',
16020             'Test2::EventFacet::Control'=> '1.302141',
16021             'Test2::EventFacet::Error'=> '1.302141',
16022             'Test2::EventFacet::Hub'=> '1.302141',
16023             'Test2::EventFacet::Info'=> '1.302141',
16024             'Test2::EventFacet::Meta'=> '1.302141',
16025             'Test2::EventFacet::Parent'=> '1.302141',
16026             'Test2::EventFacet::Plan'=> '1.302141',
16027             'Test2::EventFacet::Render'=> '1.302141',
16028             'Test2::EventFacet::Trace'=> '1.302141',
16029             'Test2::Formatter' => '1.302141',
16030             'Test2::Formatter::TAP' => '1.302141',
16031             'Test2::Hub' => '1.302141',
16032             'Test2::Hub::Interceptor'=> '1.302141',
16033             'Test2::Hub::Interceptor::Terminator'=> '1.302141',
16034             'Test2::Hub::Subtest' => '1.302141',
16035             'Test2::IPC' => '1.302141',
16036             'Test2::IPC::Driver' => '1.302141',
16037             'Test2::IPC::Driver::Files'=> '1.302141',
16038             'Test2::Tools::Tiny' => '1.302141',
16039             'Test2::Util' => '1.302141',
16040             'Test2::Util::ExternalMeta'=> '1.302141',
16041             'Test2::Util::Facets2Legacy'=> '1.302141',
16042             'Test2::Util::HashBase' => '1.302141',
16043             'Test2::Util::Trace' => '1.302141',
16044             'Test::Builder' => '1.302141',
16045             'Test::Builder::Formatter'=> '1.302141',
16046             'Test::Builder::Module' => '1.302141',
16047             'Test::Builder::Tester' => '1.302141',
16048             'Test::Builder::Tester::Color'=> '1.302141',
16049             'Test::Builder::TodoDiag'=> '1.302141',
16050             'Test::More' => '1.302141',
16051             'Test::Simple' => '1.302141',
16052             'Test::Tester' => '1.302141',
16053             'Test::Tester::Capture' => '1.302141',
16054             'Test::Tester::CaptureRunner'=> '1.302141',
16055             'Test::Tester::Delegate'=> '1.302141',
16056             'Test::use::ok' => '1.302141',
16057             'ok' => '1.302141',
16058             'threads::shared' => '1.59',
16059             },
16060             removed => {
16061             'Storable::Limit' => 1,
16062             }
16063             },
16064             5.029007 => {
16065             delta_from => 5.029006,
16066             changed => {
16067             'App::Cpan' => '1.672',
16068             'B::Op_private' => '5.029007',
16069             'CPAN' => '2.22',
16070             'CPAN::Distribution' => '2.22',
16071             'CPAN::Plugin::Specfile'=> '0.02',
16072             'Compress::Raw::Bzip2' => '2.084',
16073             'Compress::Raw::Zlib' => '2.084',
16074             'Compress::Zlib' => '2.084',
16075             'Config' => '5.029007',
16076             'Cwd' => '3.77',
16077             'DB_File' => '1.843',
16078             'File::Find' => '1.36',
16079             'File::Spec' => '3.77',
16080             'File::Spec::AmigaOS' => '3.77',
16081             'File::Spec::Cygwin' => '3.77',
16082             'File::Spec::Epoc' => '3.77',
16083             'File::Spec::Functions' => '3.77',
16084             'File::Spec::Mac' => '3.77',
16085             'File::Spec::OS2' => '3.77',
16086             'File::Spec::Unix' => '3.77',
16087             'File::Spec::VMS' => '3.77',
16088             'File::Spec::Win32' => '3.77',
16089             'File::Temp' => '0.2309',
16090             'IO::Compress::Adapter::Bzip2'=> '2.084',
16091             'IO::Compress::Adapter::Deflate'=> '2.084',
16092             'IO::Compress::Adapter::Identity'=> '2.084',
16093             'IO::Compress::Base' => '2.084',
16094             'IO::Compress::Base::Common'=> '2.084',
16095             'IO::Compress::Bzip2' => '2.084',
16096             'IO::Compress::Deflate' => '2.084',
16097             'IO::Compress::Gzip' => '2.084',
16098             'IO::Compress::Gzip::Constants'=> '2.084',
16099             'IO::Compress::RawDeflate'=> '2.084',
16100             'IO::Compress::Zip' => '2.084',
16101             'IO::Compress::Zip::Constants'=> '2.084',
16102             'IO::Compress::Zlib::Constants'=> '2.084',
16103             'IO::Compress::Zlib::Extra'=> '2.084',
16104             'IO::Uncompress::Adapter::Bunzip2'=> '2.084',
16105             'IO::Uncompress::Adapter::Identity'=> '2.084',
16106             'IO::Uncompress::Adapter::Inflate'=> '2.084',
16107             'IO::Uncompress::AnyInflate'=> '2.084',
16108             'IO::Uncompress::AnyUncompress'=> '2.084',
16109             'IO::Uncompress::Base' => '2.084',
16110             'IO::Uncompress::Bunzip2'=> '2.084',
16111             'IO::Uncompress::Gunzip'=> '2.084',
16112             'IO::Uncompress::Inflate'=> '2.084',
16113             'IO::Uncompress::RawInflate'=> '2.084',
16114             'IO::Uncompress::Unzip' => '2.084',
16115             'Math::BigFloat' => '1.999816',
16116             'Math::BigInt' => '1.999816',
16117             'Math::BigInt::Calc' => '1.999816',
16118             'Math::BigInt::FastCalc'=> '0.5008',
16119             'Math::BigInt::Lib' => '1.999816',
16120             'Module::CoreList' => '5.20190120',
16121             'Module::CoreList::Utils'=> '5.20190120',
16122             'Test2' => '1.302160',
16123             'Test2::API' => '1.302160',
16124             'Test2::API::Breakage' => '1.302160',
16125             'Test2::API::Context' => '1.302160',
16126             'Test2::API::Instance' => '1.302160',
16127             'Test2::API::Stack' => '1.302160',
16128             'Test2::Event' => '1.302160',
16129             'Test2::Event::Bail' => '1.302160',
16130             'Test2::Event::Diag' => '1.302160',
16131             'Test2::Event::Encoding'=> '1.302160',
16132             'Test2::Event::Exception'=> '1.302160',
16133             'Test2::Event::Fail' => '1.302160',
16134             'Test2::Event::Generic' => '1.302160',
16135             'Test2::Event::Note' => '1.302160',
16136             'Test2::Event::Ok' => '1.302160',
16137             'Test2::Event::Pass' => '1.302160',
16138             'Test2::Event::Plan' => '1.302160',
16139             'Test2::Event::Skip' => '1.302160',
16140             'Test2::Event::Subtest' => '1.302160',
16141             'Test2::Event::TAP::Version'=> '1.302160',
16142             'Test2::Event::V2' => '1.302160',
16143             'Test2::Event::Waiting' => '1.302160',
16144             'Test2::EventFacet' => '1.302160',
16145             'Test2::EventFacet::About'=> '1.302160',
16146             'Test2::EventFacet::Amnesty'=> '1.302160',
16147             'Test2::EventFacet::Assert'=> '1.302160',
16148             'Test2::EventFacet::Control'=> '1.302160',
16149             'Test2::EventFacet::Error'=> '1.302160',
16150             'Test2::EventFacet::Hub'=> '1.302160',
16151             'Test2::EventFacet::Info'=> '1.302160',
16152             'Test2::EventFacet::Info::Table'=> undef,
16153             'Test2::EventFacet::Meta'=> '1.302160',
16154             'Test2::EventFacet::Parent'=> '1.302160',
16155             'Test2::EventFacet::Plan'=> '1.302160',
16156             'Test2::EventFacet::Render'=> '1.302160',
16157             'Test2::EventFacet::Trace'=> '1.302160',
16158             'Test2::Formatter' => '1.302160',
16159             'Test2::Formatter::TAP' => '1.302160',
16160             'Test2::Hub' => '1.302160',
16161             'Test2::Hub::Interceptor'=> '1.302160',
16162             'Test2::Hub::Interceptor::Terminator'=> '1.302160',
16163             'Test2::Hub::Subtest' => '1.302160',
16164             'Test2::IPC' => '1.302160',
16165             'Test2::IPC::Driver' => '1.302160',
16166             'Test2::IPC::Driver::Files'=> '1.302160',
16167             'Test2::Tools::Tiny' => '1.302160',
16168             'Test2::Util' => '1.302160',
16169             'Test2::Util::ExternalMeta'=> '1.302160',
16170             'Test2::Util::Facets2Legacy'=> '1.302160',
16171             'Test2::Util::HashBase' => '1.302160',
16172             'Test2::Util::Trace' => '1.302160',
16173             'Test::Builder' => '1.302160',
16174             'Test::Builder::Formatter'=> '1.302160',
16175             'Test::Builder::Module' => '1.302160',
16176             'Test::Builder::Tester' => '1.302160',
16177             'Test::Builder::Tester::Color'=> '1.302160',
16178             'Test::Builder::TodoDiag'=> '1.302160',
16179             'Test::More' => '1.302160',
16180             'Test::Simple' => '1.302160',
16181             'Test::Tester' => '1.302160',
16182             'Test::Tester::Capture' => '1.302160',
16183             'Test::Tester::CaptureRunner'=> '1.302160',
16184             'Test::Tester::Delegate'=> '1.302160',
16185             'Test::use::ok' => '1.302160',
16186             'Unicode::Collate' => '1.27',
16187             'Unicode::Collate::CJK::Big5'=> '1.27',
16188             'Unicode::Collate::CJK::GB2312'=> '1.27',
16189             'Unicode::Collate::CJK::JISX0208'=> '1.27',
16190             'Unicode::Collate::CJK::Korean'=> '1.27',
16191             'Unicode::Collate::CJK::Pinyin'=> '1.27',
16192             'Unicode::Collate::CJK::Stroke'=> '1.27',
16193             'Unicode::Collate::CJK::Zhuyin'=> '1.27',
16194             'Unicode::Collate::Locale'=> '1.27',
16195             'lib' => '0.65',
16196             'ok' => '1.302160',
16197             },
16198             removed => {
16199             'Math::BigInt::CalcEmu' => 1,
16200             }
16201             },
16202             5.029008 => {
16203             delta_from => 5.029007,
16204             changed => {
16205             'B' => '1.76',
16206             'B::Op_private' => '5.029008',
16207             'Config' => '5.029008',
16208             'Devel::PPPort' => '3.44',
16209             'Encode' => '3.00',
16210             'Encode::Unicode' => '2.18',
16211             'ExtUtils::Miniperl' => '1.09',
16212             'IO' => '1.40',
16213             'IO::Dir' => '1.40',
16214             'IO::File' => '1.40',
16215             'IO::Handle' => '1.40',
16216             'IO::Pipe' => '1.40',
16217             'IO::Poll' => '1.40',
16218             'IO::Seekable' => '1.40',
16219             'IO::Select' => '1.40',
16220             'IO::Socket' => '1.40',
16221             'IO::Socket::INET' => '1.40',
16222             'IO::Socket::UNIX' => '1.40',
16223             'JSON::PP' => '4.00',
16224             'JSON::PP::Boolean' => '4.00',
16225             'Module::CoreList' => '5.20190220',
16226             'Module::CoreList::Utils'=> '5.20190220',
16227             'Module::Load' => '0.34',
16228             'Net::Ping' => '2.71',
16229             'POSIX' => '1.87',
16230             'Test2' => '1.302162',
16231             'Test2::API' => '1.302162',
16232             'Test2::API::Breakage' => '1.302162',
16233             'Test2::API::Context' => '1.302162',
16234             'Test2::API::Instance' => '1.302162',
16235             'Test2::API::Stack' => '1.302162',
16236             'Test2::Event' => '1.302162',
16237             'Test2::Event::Bail' => '1.302162',
16238             'Test2::Event::Diag' => '1.302162',
16239             'Test2::Event::Encoding'=> '1.302162',
16240             'Test2::Event::Exception'=> '1.302162',
16241             'Test2::Event::Fail' => '1.302162',
16242             'Test2::Event::Generic' => '1.302162',
16243             'Test2::Event::Note' => '1.302162',
16244             'Test2::Event::Ok' => '1.302162',
16245             'Test2::Event::Pass' => '1.302162',
16246             'Test2::Event::Plan' => '1.302162',
16247             'Test2::Event::Skip' => '1.302162',
16248             'Test2::Event::Subtest' => '1.302162',
16249             'Test2::Event::TAP::Version'=> '1.302162',
16250             'Test2::Event::V2' => '1.302162',
16251             'Test2::Event::Waiting' => '1.302162',
16252             'Test2::EventFacet' => '1.302162',
16253             'Test2::EventFacet::About'=> '1.302162',
16254             'Test2::EventFacet::Amnesty'=> '1.302162',
16255             'Test2::EventFacet::Assert'=> '1.302162',
16256             'Test2::EventFacet::Control'=> '1.302162',
16257             'Test2::EventFacet::Error'=> '1.302162',
16258             'Test2::EventFacet::Hub'=> '1.302162',
16259             'Test2::EventFacet::Info'=> '1.302162',
16260             'Test2::EventFacet::Meta'=> '1.302162',
16261             'Test2::EventFacet::Parent'=> '1.302162',
16262             'Test2::EventFacet::Plan'=> '1.302162',
16263             'Test2::EventFacet::Render'=> '1.302162',
16264             'Test2::EventFacet::Trace'=> '1.302162',
16265             'Test2::Formatter' => '1.302162',
16266             'Test2::Formatter::TAP' => '1.302162',
16267             'Test2::Hub' => '1.302162',
16268             'Test2::Hub::Interceptor'=> '1.302162',
16269             'Test2::Hub::Interceptor::Terminator'=> '1.302162',
16270             'Test2::Hub::Subtest' => '1.302162',
16271             'Test2::IPC' => '1.302162',
16272             'Test2::IPC::Driver' => '1.302162',
16273             'Test2::IPC::Driver::Files'=> '1.302162',
16274             'Test2::Tools::Tiny' => '1.302162',
16275             'Test2::Util' => '1.302162',
16276             'Test2::Util::ExternalMeta'=> '1.302162',
16277             'Test2::Util::Facets2Legacy'=> '1.302162',
16278             'Test2::Util::HashBase' => '1.302162',
16279             'Test2::Util::Trace' => '1.302162',
16280             'Test::Builder' => '1.302162',
16281             'Test::Builder::Formatter'=> '1.302162',
16282             'Test::Builder::Module' => '1.302162',
16283             'Test::Builder::Tester' => '1.302162',
16284             'Test::Builder::Tester::Color'=> '1.302162',
16285             'Test::Builder::TodoDiag'=> '1.302162',
16286             'Test::More' => '1.302162',
16287             'Test::Simple' => '1.302162',
16288             'Test::Tester' => '1.302162',
16289             'Test::Tester::Capture' => '1.302162',
16290             'Test::Tester::CaptureRunner'=> '1.302162',
16291             'Test::Tester::Delegate'=> '1.302162',
16292             'Test::use::ok' => '1.302162',
16293             'XS::APItest' => '1.00',
16294             'deprecate' => '0.04',
16295             'ok' => '1.302162',
16296             'perlfaq' => '5.20190126',
16297             },
16298             removed => {
16299             }
16300             },
16301             5.029009 => {
16302             delta_from => 5.029008,
16303             changed => {
16304             'B::Op_private' => '5.029009',
16305             'Config' => '5.029009',
16306             'Devel::PPPort' => '3.45',
16307             'Encode' => '3.01',
16308             'ExtUtils::Manifest' => '1.72',
16309             'JSON::PP' => '4.02',
16310             'JSON::PP::Boolean' => '4.02',
16311             'Module::CoreList' => '5.20190320',
16312             'Module::CoreList::Utils'=> '5.20190320',
16313             'PerlIO::encoding' => '0.27',
16314             'Unicode' => '12.0.0',
16315             'threads::shared' => '1.60',
16316             'utf8' => '1.22',
16317             'warnings' => '1.44',
16318             },
16319             removed => {
16320             }
16321             },
16322             5.028002 => {
16323             delta_from => 5.028001,
16324             changed => {
16325             'B::Op_private' => '5.028002',
16326             'Config' => '5.028002',
16327             'Module::CoreList' => '5.20190419',
16328             'Module::CoreList::Utils'=> '5.20190419',
16329             'PerlIO::scalar' => '0.30',
16330             'Storable' => '3.08_01',
16331             },
16332             removed => {
16333             }
16334             },
16335             5.029010 => {
16336             delta_from => 5.029009,
16337             changed => {
16338             'B::Op_private' => '5.029010',
16339             'Config' => '5.02901',
16340             'Cwd' => '3.78',
16341             'Data::Dumper' => '2.174',
16342             'ExtUtils::CBuilder' => '0.280231',
16343             'ExtUtils::CBuilder::Base'=> '0.280231',
16344             'ExtUtils::CBuilder::Platform::Unix'=> '0.280231',
16345             'ExtUtils::CBuilder::Platform::VMS'=> '0.280231',
16346             'ExtUtils::CBuilder::Platform::Windows'=> '0.280231',
16347             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280231',
16348             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280231',
16349             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280231',
16350             'ExtUtils::CBuilder::Platform::aix'=> '0.280231',
16351             'ExtUtils::CBuilder::Platform::android'=> '0.280231',
16352             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280231',
16353             'ExtUtils::CBuilder::Platform::darwin'=> '0.280231',
16354             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280231',
16355             'ExtUtils::CBuilder::Platform::os2'=> '0.280231',
16356             'File::Spec' => '3.78',
16357             'File::Spec::AmigaOS' => '3.78',
16358             'File::Spec::Cygwin' => '3.78',
16359             'File::Spec::Epoc' => '3.78',
16360             'File::Spec::Functions' => '3.78',
16361             'File::Spec::Mac' => '3.78',
16362             'File::Spec::OS2' => '3.78',
16363             'File::Spec::Unix' => '3.78',
16364             'File::Spec::VMS' => '3.78',
16365             'File::Spec::Win32' => '3.78',
16366             'I18N::Langinfo' => '0.18',
16367             'Module::CoreList' => '5.20190420',
16368             'Module::CoreList::Utils'=> '5.20190420',
16369             'Module::Metadata' => '1.000036',
16370             'POSIX' => '1.88',
16371             'Storable' => '3.15',
16372             'Unicode' => '12.1.0',
16373             },
16374             removed => {
16375             }
16376             },
16377             5.030000 => {
16378             delta_from => 5.02901,
16379             changed => {
16380             'B::Op_private' => '5.030000',
16381             'Config' => '5.03',
16382             'Devel::PPPort' => '3.52',
16383             'Module::CoreList' => '5.20190522',
16384             'Module::CoreList::Utils'=> '5.20190522',
16385             'XS::Typemap' => '0.17',
16386             },
16387             removed => {
16388             }
16389             },
16390             5.031000 => {
16391             delta_from => 5.03,
16392             changed => {
16393             'B::Op_private' => '5.031000',
16394             'Config' => '5.031',
16395             'Module::CoreList' => '5.20190524',
16396             'Module::CoreList::Utils'=> '5.20190524',
16397             'Pod::Simple' => '3.36',
16398             'Pod::Simple::BlackBox' => '3.36',
16399             'Pod::Simple::Checker' => '3.36',
16400             'Pod::Simple::Debug' => '3.36',
16401             'Pod::Simple::DumpAsText'=> '3.36',
16402             'Pod::Simple::DumpAsXML'=> '3.36',
16403             'Pod::Simple::HTML' => '3.36',
16404             'Pod::Simple::HTMLBatch'=> '3.36',
16405             'Pod::Simple::JustPod' => undef,
16406             'Pod::Simple::LinkSection'=> '3.36',
16407             'Pod::Simple::Methody' => '3.36',
16408             'Pod::Simple::Progress' => '3.36',
16409             'Pod::Simple::PullParser'=> '3.36',
16410             'Pod::Simple::PullParserEndToken'=> '3.36',
16411             'Pod::Simple::PullParserStartToken'=> '3.36',
16412             'Pod::Simple::PullParserTextToken'=> '3.36',
16413             'Pod::Simple::PullParserToken'=> '3.36',
16414             'Pod::Simple::RTF' => '3.36',
16415             'Pod::Simple::Search' => '3.36',
16416             'Pod::Simple::SimpleTree'=> '3.36',
16417             'Pod::Simple::Text' => '3.36',
16418             'Pod::Simple::TextContent'=> '3.36',
16419             'Pod::Simple::TiedOutFH'=> '3.36',
16420             'Pod::Simple::Transcode'=> '3.36',
16421             'Pod::Simple::TranscodeDumb'=> '3.36',
16422             'Pod::Simple::TranscodeSmart'=> '3.36',
16423             'Pod::Simple::XHTML' => '3.36',
16424             'Pod::Simple::XMLOutStream'=> '3.36',
16425             'Socket' => '2.029',
16426             'feature' => '1.55',
16427             },
16428             removed => {
16429             }
16430             },
16431             5.031001 => {
16432             delta_from => 5.031000,
16433             changed => {
16434             'App::Cpan' => '1.675',
16435             'B::Op_private' => '5.031001',
16436             'CPAN' => '2.27',
16437             'CPAN::Bundle' => '5.5005',
16438             'CPAN::Distribution' => '2.27',
16439             'CPAN::FTP' => '5.5012',
16440             'CPAN::FirstTime' => '5.5314',
16441             'CPAN::HandleConfig' => '5.5011',
16442             'CPAN::Mirrors' => '2.27',
16443             'CPAN::Queue' => '5.5003',
16444             'CPAN::Shell' => '5.5009',
16445             'CPAN::Tarzip' => '5.5013',
16446             'Class::Struct' => '0.66',
16447             'Compress::Raw::Bzip2' => '2.086',
16448             'Compress::Raw::Zlib' => '2.086',
16449             'Compress::Zlib' => '2.086',
16450             'Config' => '5.031001',
16451             'DB_File' => '1.852',
16452             'Devel::PPPort' => '3.53',
16453             'ExtUtils::CBuilder' => '0.280232',
16454             'ExtUtils::Command' => '7.36',
16455             'ExtUtils::Command::MM' => '7.36',
16456             'ExtUtils::Liblist' => '7.36',
16457             'ExtUtils::Liblist::Kid'=> '7.36',
16458             'ExtUtils::MM' => '7.36',
16459             'ExtUtils::MM_AIX' => '7.36',
16460             'ExtUtils::MM_Any' => '7.36',
16461             'ExtUtils::MM_BeOS' => '7.36',
16462             'ExtUtils::MM_Cygwin' => '7.36',
16463             'ExtUtils::MM_DOS' => '7.36',
16464             'ExtUtils::MM_Darwin' => '7.36',
16465             'ExtUtils::MM_MacOS' => '7.36',
16466             'ExtUtils::MM_NW5' => '7.36',
16467             'ExtUtils::MM_OS2' => '7.36',
16468             'ExtUtils::MM_QNX' => '7.36',
16469             'ExtUtils::MM_UWIN' => '7.36',
16470             'ExtUtils::MM_Unix' => '7.36',
16471             'ExtUtils::MM_VMS' => '7.36',
16472             'ExtUtils::MM_VOS' => '7.36',
16473             'ExtUtils::MM_Win32' => '7.36',
16474             'ExtUtils::MM_Win95' => '7.36',
16475             'ExtUtils::MY' => '7.36',
16476             'ExtUtils::MakeMaker' => '7.36',
16477             'ExtUtils::MakeMaker::Config'=> '7.36',
16478             'ExtUtils::MakeMaker::Locale'=> '7.36',
16479             'ExtUtils::MakeMaker::version'=> '7.36',
16480             'ExtUtils::MakeMaker::version::regex'=> '7.36',
16481             'ExtUtils::Mkbootstrap' => '7.36',
16482             'ExtUtils::Mksymlists' => '7.36',
16483             'ExtUtils::testlib' => '7.36',
16484             'File::Spec::Win32' => '3.79',
16485             'I18N::LangTags' => '0.44',
16486             'IO' => '1.41',
16487             'IO::Compress::Adapter::Bzip2'=> '2.086',
16488             'IO::Compress::Adapter::Deflate'=> '2.086',
16489             'IO::Compress::Adapter::Identity'=> '2.086',
16490             'IO::Compress::Base' => '2.086',
16491             'IO::Compress::Base::Common'=> '2.086',
16492             'IO::Compress::Bzip2' => '2.086',
16493             'IO::Compress::Deflate' => '2.086',
16494             'IO::Compress::Gzip' => '2.086',
16495             'IO::Compress::Gzip::Constants'=> '2.086',
16496             'IO::Compress::RawDeflate'=> '2.086',
16497             'IO::Compress::Zip' => '2.086',
16498             'IO::Compress::Zip::Constants'=> '2.086',
16499             'IO::Compress::Zlib::Constants'=> '2.086',
16500             'IO::Compress::Zlib::Extra'=> '2.086',
16501             'IO::Dir' => '1.41',
16502             'IO::File' => '1.41',
16503             'IO::Handle' => '1.41',
16504             'IO::Pipe' => '1.41',
16505             'IO::Poll' => '1.41',
16506             'IO::Seekable' => '1.41',
16507             'IO::Select' => '1.41',
16508             'IO::Socket' => '1.41',
16509             'IO::Socket::INET' => '1.41',
16510             'IO::Socket::UNIX' => '1.41',
16511             'IO::Uncompress::Adapter::Bunzip2'=> '2.086',
16512             'IO::Uncompress::Adapter::Identity'=> '2.086',
16513             'IO::Uncompress::Adapter::Inflate'=> '2.086',
16514             'IO::Uncompress::AnyInflate'=> '2.086',
16515             'IO::Uncompress::AnyUncompress'=> '2.086',
16516             'IO::Uncompress::Base' => '2.086',
16517             'IO::Uncompress::Bunzip2'=> '2.086',
16518             'IO::Uncompress::Gunzip'=> '2.086',
16519             'IO::Uncompress::Inflate'=> '2.086',
16520             'IO::Uncompress::RawInflate'=> '2.086',
16521             'IO::Uncompress::Unzip' => '2.086',
16522             'Module::CoreList' => '5.20190620',
16523             'Module::CoreList::Utils'=> '5.20190620',
16524             'POSIX' => '1.89',
16525             'Pod::Man' => '4.12',
16526             'Pod::ParseLink' => '4.12',
16527             'Pod::Simple' => '3.38',
16528             'Pod::Simple::BlackBox' => '3.38',
16529             'Pod::Simple::Checker' => '3.38',
16530             'Pod::Simple::Debug' => '3.38',
16531             'Pod::Simple::DumpAsText'=> '3.38',
16532             'Pod::Simple::DumpAsXML'=> '3.38',
16533             'Pod::Simple::HTML' => '3.38',
16534             'Pod::Simple::HTMLBatch'=> '3.38',
16535             'Pod::Simple::LinkSection'=> '3.38',
16536             'Pod::Simple::Methody' => '3.38',
16537             'Pod::Simple::Progress' => '3.38',
16538             'Pod::Simple::PullParser'=> '3.38',
16539             'Pod::Simple::PullParserEndToken'=> '3.38',
16540             'Pod::Simple::PullParserStartToken'=> '3.38',
16541             'Pod::Simple::PullParserTextToken'=> '3.38',
16542             'Pod::Simple::PullParserToken'=> '3.38',
16543             'Pod::Simple::RTF' => '3.38',
16544             'Pod::Simple::Search' => '3.38',
16545             'Pod::Simple::SimpleTree'=> '3.38',
16546             'Pod::Simple::Text' => '3.38',
16547             'Pod::Simple::TextContent'=> '3.38',
16548             'Pod::Simple::TiedOutFH'=> '3.38',
16549             'Pod::Simple::Transcode'=> '3.38',
16550             'Pod::Simple::TranscodeDumb'=> '3.38',
16551             'Pod::Simple::TranscodeSmart'=> '3.38',
16552             'Pod::Simple::XHTML' => '3.38',
16553             'Pod::Simple::XMLOutStream'=> '3.38',
16554             'Pod::Text' => '4.12',
16555             'Pod::Text::Color' => '4.12',
16556             'Pod::Text::Overstrike' => '4.12',
16557             'Pod::Text::Termcap' => '4.12',
16558             'SelfLoader' => '1.26',
16559             'Storable' => '3.16',
16560             'Sys::Hostname' => '1.23',
16561             'Test2' => '1.302164',
16562             'Test2::API' => '1.302164',
16563             'Test2::API::Breakage' => '1.302164',
16564             'Test2::API::Context' => '1.302164',
16565             'Test2::API::Instance' => '1.302164',
16566             'Test2::API::Stack' => '1.302164',
16567             'Test2::Event' => '1.302164',
16568             'Test2::Event::Bail' => '1.302164',
16569             'Test2::Event::Diag' => '1.302164',
16570             'Test2::Event::Encoding'=> '1.302164',
16571             'Test2::Event::Exception'=> '1.302164',
16572             'Test2::Event::Fail' => '1.302164',
16573             'Test2::Event::Generic' => '1.302164',
16574             'Test2::Event::Note' => '1.302164',
16575             'Test2::Event::Ok' => '1.302164',
16576             'Test2::Event::Pass' => '1.302164',
16577             'Test2::Event::Plan' => '1.302164',
16578             'Test2::Event::Skip' => '1.302164',
16579             'Test2::Event::Subtest' => '1.302164',
16580             'Test2::Event::TAP::Version'=> '1.302164',
16581             'Test2::Event::V2' => '1.302164',
16582             'Test2::Event::Waiting' => '1.302164',
16583             'Test2::EventFacet' => '1.302164',
16584             'Test2::EventFacet::About'=> '1.302164',
16585             'Test2::EventFacet::Amnesty'=> '1.302164',
16586             'Test2::EventFacet::Assert'=> '1.302164',
16587             'Test2::EventFacet::Control'=> '1.302164',
16588             'Test2::EventFacet::Error'=> '1.302164',
16589             'Test2::EventFacet::Hub'=> '1.302164',
16590             'Test2::EventFacet::Info'=> '1.302164',
16591             'Test2::EventFacet::Info::Table'=> '1.302164',
16592             'Test2::EventFacet::Meta'=> '1.302164',
16593             'Test2::EventFacet::Parent'=> '1.302164',
16594             'Test2::EventFacet::Plan'=> '1.302164',
16595             'Test2::EventFacet::Render'=> '1.302164',
16596             'Test2::EventFacet::Trace'=> '1.302164',
16597             'Test2::Formatter' => '1.302164',
16598             'Test2::Formatter::TAP' => '1.302164',
16599             'Test2::Hub' => '1.302164',
16600             'Test2::Hub::Interceptor'=> '1.302164',
16601             'Test2::Hub::Interceptor::Terminator'=> '1.302164',
16602             'Test2::Hub::Subtest' => '1.302164',
16603             'Test2::IPC' => '1.302164',
16604             'Test2::IPC::Driver' => '1.302164',
16605             'Test2::IPC::Driver::Files'=> '1.302164',
16606             'Test2::Tools::Tiny' => '1.302164',
16607             'Test2::Util' => '1.302164',
16608             'Test2::Util::ExternalMeta'=> '1.302164',
16609             'Test2::Util::Facets2Legacy'=> '1.302164',
16610             'Test2::Util::HashBase' => '1.302164',
16611             'Test2::Util::Trace' => '1.302164',
16612             'Test::Builder' => '1.302164',
16613             'Test::Builder::Formatter'=> '1.302164',
16614             'Test::Builder::Module' => '1.302164',
16615             'Test::Builder::Tester' => '1.302164',
16616             'Test::Builder::Tester::Color'=> '1.302164',
16617             'Test::Builder::TodoDiag'=> '1.302164',
16618             'Test::More' => '1.302164',
16619             'Test::Simple' => '1.302164',
16620             'Test::Tester' => '1.302164',
16621             'Test::Tester::Capture' => '1.302164',
16622             'Test::Tester::CaptureRunner'=> '1.302164',
16623             'Test::Tester::Delegate'=> '1.302164',
16624             'Test::use::ok' => '1.302164',
16625             'Tie::File' => '1.03',
16626             'Tie::Hash::NamedCapture'=> '0.11',
16627             'Time::HiRes' => '1.9761',
16628             'Unicode::Normalize' => '1.27',
16629             'Unicode::UCD' => '0.73',
16630             'XS::APItest' => '1.01',
16631             'ok' => '1.302164',
16632             'overload' => '1.31',
16633             'warnings' => '1.45',
16634             },
16635             removed => {
16636             'Pod::Find' => 1,
16637             'Pod::InputObjects' => 1,
16638             'Pod::ParseUtils' => 1,
16639             'Pod::Parser' => 1,
16640             'Pod::PlainText' => 1,
16641             'Pod::Select' => 1,
16642             }
16643             },
16644             5.031002 => {
16645             delta_from => 5.031001,
16646             changed => {
16647             'B::Op_private' => '5.031002',
16648             'Config' => '5.031002',
16649             'Devel::PPPort' => '3.54',
16650             'Exporter' => '5.74',
16651             'Exporter::Heavy' => '5.74',
16652             'IPC::Cmd' => '1.04',
16653             'JSON::PP' => '4.04',
16654             'JSON::PP::Boolean' => '4.04',
16655             'Module::CoreList' => '5.20190720',
16656             'Module::CoreList::Utils'=> '5.20190720',
16657             'Opcode' => '1.44',
16658             'PerlIO::encoding' => '0.28',
16659             'Pod::Simple' => '3.39',
16660             'Pod::Simple::BlackBox' => '3.39',
16661             'Pod::Simple::Checker' => '3.39',
16662             'Pod::Simple::Debug' => '3.39',
16663             'Pod::Simple::DumpAsText'=> '3.39',
16664             'Pod::Simple::DumpAsXML'=> '3.39',
16665             'Pod::Simple::HTML' => '3.39',
16666             'Pod::Simple::HTMLBatch'=> '3.39',
16667             'Pod::Simple::LinkSection'=> '3.39',
16668             'Pod::Simple::Methody' => '3.39',
16669             'Pod::Simple::Progress' => '3.39',
16670             'Pod::Simple::PullParser'=> '3.39',
16671             'Pod::Simple::PullParserEndToken'=> '3.39',
16672             'Pod::Simple::PullParserStartToken'=> '3.39',
16673             'Pod::Simple::PullParserTextToken'=> '3.39',
16674             'Pod::Simple::PullParserToken'=> '3.39',
16675             'Pod::Simple::RTF' => '3.39',
16676             'Pod::Simple::Search' => '3.39',
16677             'Pod::Simple::SimpleTree'=> '3.39',
16678             'Pod::Simple::Text' => '3.39',
16679             'Pod::Simple::TextContent'=> '3.39',
16680             'Pod::Simple::TiedOutFH'=> '3.39',
16681             'Pod::Simple::Transcode'=> '3.39',
16682             'Pod::Simple::TranscodeDumb'=> '3.39',
16683             'Pod::Simple::TranscodeSmart'=> '3.39',
16684             'Pod::Simple::XHTML' => '3.39',
16685             'Pod::Simple::XMLOutStream'=> '3.39',
16686             'threads::shared' => '1.61',
16687             },
16688             removed => {
16689             }
16690             },
16691             5.031003 => {
16692             delta_from => 5.031002,
16693             changed => {
16694             'B::Op_private' => '5.031003',
16695             'Compress::Raw::Bzip2' => '2.087',
16696             'Compress::Raw::Zlib' => '2.087',
16697             'Compress::Zlib' => '2.087',
16698             'Config' => '5.031003',
16699             'Devel::PPPort' => '3.55',
16700             'File::Find' => '1.37',
16701             'Getopt::Long' => '2.51',
16702             'I18N::LangTags::Detect'=> '1.08',
16703             'IO::Compress::Adapter::Bzip2'=> '2.087',
16704             'IO::Compress::Adapter::Deflate'=> '2.087',
16705             'IO::Compress::Adapter::Identity'=> '2.087',
16706             'IO::Compress::Base' => '2.087',
16707             'IO::Compress::Base::Common'=> '2.087',
16708             'IO::Compress::Bzip2' => '2.087',
16709             'IO::Compress::Deflate' => '2.087',
16710             'IO::Compress::Gzip' => '2.087',
16711             'IO::Compress::Gzip::Constants'=> '2.087',
16712             'IO::Compress::RawDeflate'=> '2.087',
16713             'IO::Compress::Zip' => '2.087',
16714             'IO::Compress::Zip::Constants'=> '2.087',
16715             'IO::Compress::Zlib::Constants'=> '2.087',
16716             'IO::Compress::Zlib::Extra'=> '2.087',
16717             'IO::Uncompress::Adapter::Bunzip2'=> '2.087',
16718             'IO::Uncompress::Adapter::Identity'=> '2.087',
16719             'IO::Uncompress::Adapter::Inflate'=> '2.087',
16720             'IO::Uncompress::AnyInflate'=> '2.087',
16721             'IO::Uncompress::AnyUncompress'=> '2.087',
16722             'IO::Uncompress::Base' => '2.087',
16723             'IO::Uncompress::Bunzip2'=> '2.087',
16724             'IO::Uncompress::Gunzip'=> '2.087',
16725             'IO::Uncompress::Inflate'=> '2.087',
16726             'IO::Uncompress::RawInflate'=> '2.087',
16727             'IO::Uncompress::Unzip' => '2.087',
16728             'Module::CoreList' => '5.20190820',
16729             'Module::CoreList::Utils'=> '5.20190820',
16730             'PerlIO::via' => '0.18',
16731             'Storable' => '3.17',
16732             'Test2' => '1.302166',
16733             'Test2::API' => '1.302166',
16734             'Test2::API::Breakage' => '1.302166',
16735             'Test2::API::Context' => '1.302166',
16736             'Test2::API::Instance' => '1.302166',
16737             'Test2::API::Stack' => '1.302166',
16738             'Test2::Event' => '1.302166',
16739             'Test2::Event::Bail' => '1.302166',
16740             'Test2::Event::Diag' => '1.302166',
16741             'Test2::Event::Encoding'=> '1.302166',
16742             'Test2::Event::Exception'=> '1.302166',
16743             'Test2::Event::Fail' => '1.302166',
16744             'Test2::Event::Generic' => '1.302166',
16745             'Test2::Event::Note' => '1.302166',
16746             'Test2::Event::Ok' => '1.302166',
16747             'Test2::Event::Pass' => '1.302166',
16748             'Test2::Event::Plan' => '1.302166',
16749             'Test2::Event::Skip' => '1.302166',
16750             'Test2::Event::Subtest' => '1.302166',
16751             'Test2::Event::TAP::Version'=> '1.302166',
16752             'Test2::Event::V2' => '1.302166',
16753             'Test2::Event::Waiting' => '1.302166',
16754             'Test2::EventFacet' => '1.302166',
16755             'Test2::EventFacet::About'=> '1.302166',
16756             'Test2::EventFacet::Amnesty'=> '1.302166',
16757             'Test2::EventFacet::Assert'=> '1.302166',
16758             'Test2::EventFacet::Control'=> '1.302166',
16759             'Test2::EventFacet::Error'=> '1.302166',
16760             'Test2::EventFacet::Hub'=> '1.302166',
16761             'Test2::EventFacet::Info'=> '1.302166',
16762             'Test2::EventFacet::Info::Table'=> '1.302166',
16763             'Test2::EventFacet::Meta'=> '1.302166',
16764             'Test2::EventFacet::Parent'=> '1.302166',
16765             'Test2::EventFacet::Plan'=> '1.302166',
16766             'Test2::EventFacet::Render'=> '1.302166',
16767             'Test2::EventFacet::Trace'=> '1.302166',
16768             'Test2::Formatter' => '1.302166',
16769             'Test2::Formatter::TAP' => '1.302166',
16770             'Test2::Hub' => '1.302166',
16771             'Test2::Hub::Interceptor'=> '1.302166',
16772             'Test2::Hub::Interceptor::Terminator'=> '1.302166',
16773             'Test2::Hub::Subtest' => '1.302166',
16774             'Test2::IPC' => '1.302166',
16775             'Test2::IPC::Driver' => '1.302166',
16776             'Test2::IPC::Driver::Files'=> '1.302166',
16777             'Test2::Tools::Tiny' => '1.302166',
16778             'Test2::Util' => '1.302166',
16779             'Test2::Util::ExternalMeta'=> '1.302166',
16780             'Test2::Util::Facets2Legacy'=> '1.302166',
16781             'Test2::Util::HashBase' => '1.302166',
16782             'Test2::Util::Trace' => '1.302166',
16783             'Test::Builder' => '1.302166',
16784             'Test::Builder::Formatter'=> '1.302166',
16785             'Test::Builder::Module' => '1.302166',
16786             'Test::Builder::Tester' => '1.302166',
16787             'Test::Builder::Tester::Color'=> '1.302166',
16788             'Test::Builder::TodoDiag'=> '1.302166',
16789             'Test::More' => '1.302166',
16790             'Test::Simple' => '1.302166',
16791             'Test::Tester' => '1.302166',
16792             'Test::Tester::Capture' => '1.302166',
16793             'Test::Tester::CaptureRunner'=> '1.302166',
16794             'Test::Tester::Delegate'=> '1.302166',
16795             'Test::use::ok' => '1.302166',
16796             'Thread' => '3.05',
16797             'Time::HiRes' => '1.9762',
16798             'Win32' => '0.53',
16799             'XS::APItest' => '1.02',
16800             'ok' => '1.302166',
16801             },
16802             removed => {
16803             }
16804             },
16805             5.031004 => {
16806             delta_from => 5.031003,
16807             changed => {
16808             'B::Op_private' => '5.031004',
16809             'Config' => '5.031004',
16810             'ExtUtils::Command' => '7.38',
16811             'ExtUtils::Command::MM' => '7.38',
16812             'ExtUtils::Liblist' => '7.38',
16813             'ExtUtils::Liblist::Kid'=> '7.38',
16814             'ExtUtils::MM' => '7.38',
16815             'ExtUtils::MM_AIX' => '7.38',
16816             'ExtUtils::MM_Any' => '7.38',
16817             'ExtUtils::MM_BeOS' => '7.38',
16818             'ExtUtils::MM_Cygwin' => '7.38',
16819             'ExtUtils::MM_DOS' => '7.38',
16820             'ExtUtils::MM_Darwin' => '7.38',
16821             'ExtUtils::MM_MacOS' => '7.38',
16822             'ExtUtils::MM_NW5' => '7.38',
16823             'ExtUtils::MM_OS2' => '7.38',
16824             'ExtUtils::MM_QNX' => '7.38',
16825             'ExtUtils::MM_UWIN' => '7.38',
16826             'ExtUtils::MM_Unix' => '7.38',
16827             'ExtUtils::MM_VMS' => '7.38',
16828             'ExtUtils::MM_VOS' => '7.38',
16829             'ExtUtils::MM_Win32' => '7.38',
16830             'ExtUtils::MM_Win95' => '7.38',
16831             'ExtUtils::MY' => '7.38',
16832             'ExtUtils::MakeMaker' => '7.38',
16833             'ExtUtils::MakeMaker::Config'=> '7.38',
16834             'ExtUtils::MakeMaker::Locale'=> '7.38',
16835             'ExtUtils::MakeMaker::version'=> '7.38',
16836             'ExtUtils::MakeMaker::version::regex'=> '7.38',
16837             'ExtUtils::Mkbootstrap' => '7.38',
16838             'ExtUtils::Mksymlists' => '7.38',
16839             'ExtUtils::testlib' => '7.38',
16840             'I18N::Langinfo' => '0.19',
16841             'List::Util' => '1.52',
16842             'List::Util::XS' => '1.52',
16843             'Module::CoreList' => '5.20190920',
16844             'Module::CoreList::Utils'=> '5.20190920',
16845             'Module::Metadata' => '1.000037',
16846             'Scalar::Util' => '1.52',
16847             'Sub::Util' => '1.52',
16848             'Test2' => '1.302168',
16849             'Test2::API' => '1.302168',
16850             'Test2::API::Breakage' => '1.302168',
16851             'Test2::API::Context' => '1.302168',
16852             'Test2::API::Instance' => '1.302168',
16853             'Test2::API::Stack' => '1.302168',
16854             'Test2::Event' => '1.302168',
16855             'Test2::Event::Bail' => '1.302168',
16856             'Test2::Event::Diag' => '1.302168',
16857             'Test2::Event::Encoding'=> '1.302168',
16858             'Test2::Event::Exception'=> '1.302168',
16859             'Test2::Event::Fail' => '1.302168',
16860             'Test2::Event::Generic' => '1.302168',
16861             'Test2::Event::Note' => '1.302168',
16862             'Test2::Event::Ok' => '1.302168',
16863             'Test2::Event::Pass' => '1.302168',
16864             'Test2::Event::Plan' => '1.302168',
16865             'Test2::Event::Skip' => '1.302168',
16866             'Test2::Event::Subtest' => '1.302168',
16867             'Test2::Event::TAP::Version'=> '1.302168',
16868             'Test2::Event::V2' => '1.302168',
16869             'Test2::Event::Waiting' => '1.302168',
16870             'Test2::EventFacet' => '1.302168',
16871             'Test2::EventFacet::About'=> '1.302168',
16872             'Test2::EventFacet::Amnesty'=> '1.302168',
16873             'Test2::EventFacet::Assert'=> '1.302168',
16874             'Test2::EventFacet::Control'=> '1.302168',
16875             'Test2::EventFacet::Error'=> '1.302168',
16876             'Test2::EventFacet::Hub'=> '1.302168',
16877             'Test2::EventFacet::Info'=> '1.302168',
16878             'Test2::EventFacet::Info::Table'=> '1.302168',
16879             'Test2::EventFacet::Meta'=> '1.302168',
16880             'Test2::EventFacet::Parent'=> '1.302168',
16881             'Test2::EventFacet::Plan'=> '1.302168',
16882             'Test2::EventFacet::Render'=> '1.302168',
16883             'Test2::EventFacet::Trace'=> '1.302168',
16884             'Test2::Formatter' => '1.302168',
16885             'Test2::Formatter::TAP' => '1.302168',
16886             'Test2::Hub' => '1.302168',
16887             'Test2::Hub::Interceptor'=> '1.302168',
16888             'Test2::Hub::Interceptor::Terminator'=> '1.302168',
16889             'Test2::Hub::Subtest' => '1.302168',
16890             'Test2::IPC' => '1.302168',
16891             'Test2::IPC::Driver' => '1.302168',
16892             'Test2::IPC::Driver::Files'=> '1.302168',
16893             'Test2::Tools::Tiny' => '1.302168',
16894             'Test2::Util' => '1.302168',
16895             'Test2::Util::ExternalMeta'=> '1.302168',
16896             'Test2::Util::Facets2Legacy'=> '1.302168',
16897             'Test2::Util::HashBase' => '1.302168',
16898             'Test2::Util::Trace' => '1.302168',
16899             'Test::Builder' => '1.302168',
16900             'Test::Builder::Formatter'=> '1.302168',
16901             'Test::Builder::Module' => '1.302168',
16902             'Test::Builder::Tester' => '1.302168',
16903             'Test::Builder::Tester::Color'=> '1.302168',
16904             'Test::Builder::TodoDiag'=> '1.302168',
16905             'Test::More' => '1.302168',
16906             'Test::Simple' => '1.302168',
16907             'Test::Tester' => '1.302168',
16908             'Test::Tester::Capture' => '1.302168',
16909             'Test::Tester::CaptureRunner'=> '1.302168',
16910             'Test::Tester::Delegate'=> '1.302168',
16911             'Test::use::ok' => '1.302168',
16912             'Time::HiRes' => '1.9763',
16913             'XS::APItest' => '1.03',
16914             'ok' => '1.302168',
16915             're' => '0.38',
16916             },
16917             removed => {
16918             }
16919             },
16920             5.031005 => {
16921             delta_from => 5.031004,
16922             changed => {
16923             'B' => '1.77',
16924             'B::Deparse' => '1.50',
16925             'B::Op_private' => '5.031005',
16926             'Config' => '5.031005',
16927             'Devel::PPPort' => '3.54',
16928             'Digest::MD5' => '2.55_01',
16929             'Dumpvalue' => '1.21',
16930             'ExtUtils::CBuilder' => '0.280233',
16931             'Math::BigFloat' => '1.999817_01',
16932             'Math::BigInt' => '1.999817_01',
16933             'Math::BigInt::Calc' => '1.999817_01',
16934             'Math::BigInt::FastCalc'=> '0.5009',
16935             'Math::BigInt::Lib' => '1.999817_01',
16936             'Module::CoreList' => '5.20191020',
16937             'Module::CoreList::Utils'=> '5.20191020',
16938             'Safe' => '2.41',
16939             'Time::HiRes' => '1.9764',
16940             'XS::APItest' => '1.04',
16941             'threads' => '2.23',
16942             },
16943             removed => {
16944             }
16945             },
16946             5.030001 => {
16947             delta_from => 5.030000,
16948             changed => {
16949             'B::Op_private' => '5.030001',
16950             'Config' => '5.030001',
16951             'Module::CoreList' => '5.20191110',
16952             'Module::CoreList::Utils'=> '5.20191110',
16953             },
16954             removed => {
16955             }
16956             },
16957             5.031006 => {
16958             delta_from => 5.031005,
16959             changed => {
16960             'B::Deparse' => '1.51',
16961             'B::Op_private' => '5.031006',
16962             'Compress::Raw::Bzip2' => '2.090',
16963             'Compress::Raw::Zlib' => '2.090',
16964             'Compress::Zlib' => '2.090',
16965             'Config' => '5.031006',
16966             'Devel::PPPort' => '3.55',
16967             'DynaLoader' => '1.46',
16968             'IO::Compress::Adapter::Bzip2'=> '2.090',
16969             'IO::Compress::Adapter::Deflate'=> '2.090',
16970             'IO::Compress::Adapter::Identity'=> '2.090',
16971             'IO::Compress::Base' => '2.090',
16972             'IO::Compress::Base::Common'=> '2.090',
16973             'IO::Compress::Bzip2' => '2.090',
16974             'IO::Compress::Deflate' => '2.090',
16975             'IO::Compress::Gzip' => '2.090',
16976             'IO::Compress::Gzip::Constants'=> '2.090',
16977             'IO::Compress::RawDeflate'=> '2.090',
16978             'IO::Compress::Zip' => '2.090',
16979             'IO::Compress::Zip::Constants'=> '2.090',
16980             'IO::Compress::Zlib::Constants'=> '2.090',
16981             'IO::Compress::Zlib::Extra'=> '2.090',
16982             'IO::Uncompress::Adapter::Bunzip2'=> '2.090',
16983             'IO::Uncompress::Adapter::Identity'=> '2.090',
16984             'IO::Uncompress::Adapter::Inflate'=> '2.090',
16985             'IO::Uncompress::AnyInflate'=> '2.090',
16986             'IO::Uncompress::AnyUncompress'=> '2.090',
16987             'IO::Uncompress::Base' => '2.090',
16988             'IO::Uncompress::Bunzip2'=> '2.090',
16989             'IO::Uncompress::Gunzip'=> '2.090',
16990             'IO::Uncompress::Inflate'=> '2.090',
16991             'IO::Uncompress::RawInflate'=> '2.090',
16992             'IO::Uncompress::Unzip' => '2.090',
16993             'List::Util' => '1.53',
16994             'List::Util::XS' => '1.53',
16995             'Math::BigFloat' => '1.999818',
16996             'Math::BigInt' => '1.999818',
16997             'Math::BigInt::Calc' => '1.999818',
16998             'Math::BigInt::Lib' => '1.999818',
16999             'Module::CoreList' => '5.20191120',
17000             'Module::CoreList::Utils'=> '5.20191120',
17001             'Module::Load::Conditional'=> '0.70',
17002             'POSIX' => '1.90',
17003             'Pod::Simple' => '3.40',
17004             'Pod::Simple::BlackBox' => '3.40',
17005             'Pod::Simple::Checker' => '3.40',
17006             'Pod::Simple::Debug' => '3.40',
17007             'Pod::Simple::DumpAsText'=> '3.40',
17008             'Pod::Simple::DumpAsXML'=> '3.40',
17009             'Pod::Simple::HTML' => '3.40',
17010             'Pod::Simple::HTMLBatch'=> '3.40',
17011             'Pod::Simple::LinkSection'=> '3.40',
17012             'Pod::Simple::Methody' => '3.40',
17013             'Pod::Simple::Progress' => '3.40',
17014             'Pod::Simple::PullParser'=> '3.40',
17015             'Pod::Simple::PullParserEndToken'=> '3.40',
17016             'Pod::Simple::PullParserStartToken'=> '3.40',
17017             'Pod::Simple::PullParserTextToken'=> '3.40',
17018             'Pod::Simple::PullParserToken'=> '3.40',
17019             'Pod::Simple::RTF' => '3.40',
17020             'Pod::Simple::Search' => '3.40',
17021             'Pod::Simple::SimpleTree'=> '3.40',
17022             'Pod::Simple::Text' => '3.40',
17023             'Pod::Simple::TextContent'=> '3.40',
17024             'Pod::Simple::TiedOutFH'=> '3.40',
17025             'Pod::Simple::Transcode'=> '3.40',
17026             'Pod::Simple::TranscodeDumb'=> '3.40',
17027             'Pod::Simple::TranscodeSmart'=> '3.40',
17028             'Pod::Simple::XHTML' => '3.40',
17029             'Pod::Simple::XMLOutStream'=> '3.40',
17030             'Scalar::Util' => '1.53',
17031             'Sub::Util' => '1.53',
17032             'Sys::Syslog' => '0.36',
17033             'Test2' => '1.302169',
17034             'Test2::API' => '1.302169',
17035             'Test2::API::Breakage' => '1.302169',
17036             'Test2::API::Context' => '1.302169',
17037             'Test2::API::Instance' => '1.302169',
17038             'Test2::API::Stack' => '1.302169',
17039             'Test2::Event' => '1.302169',
17040             'Test2::Event::Bail' => '1.302169',
17041             'Test2::Event::Diag' => '1.302169',
17042             'Test2::Event::Encoding'=> '1.302169',
17043             'Test2::Event::Exception'=> '1.302169',
17044             'Test2::Event::Fail' => '1.302169',
17045             'Test2::Event::Generic' => '1.302169',
17046             'Test2::Event::Note' => '1.302169',
17047             'Test2::Event::Ok' => '1.302169',
17048             'Test2::Event::Pass' => '1.302169',
17049             'Test2::Event::Plan' => '1.302169',
17050             'Test2::Event::Skip' => '1.302169',
17051             'Test2::Event::Subtest' => '1.302169',
17052             'Test2::Event::TAP::Version'=> '1.302169',
17053             'Test2::Event::V2' => '1.302169',
17054             'Test2::Event::Waiting' => '1.302169',
17055             'Test2::EventFacet' => '1.302169',
17056             'Test2::EventFacet::About'=> '1.302169',
17057             'Test2::EventFacet::Amnesty'=> '1.302169',
17058             'Test2::EventFacet::Assert'=> '1.302169',
17059             'Test2::EventFacet::Control'=> '1.302169',
17060             'Test2::EventFacet::Error'=> '1.302169',
17061             'Test2::EventFacet::Hub'=> '1.302169',
17062             'Test2::EventFacet::Info'=> '1.302169',
17063             'Test2::EventFacet::Info::Table'=> '1.302169',
17064             'Test2::EventFacet::Meta'=> '1.302169',
17065             'Test2::EventFacet::Parent'=> '1.302169',
17066             'Test2::EventFacet::Plan'=> '1.302169',
17067             'Test2::EventFacet::Render'=> '1.302169',
17068             'Test2::EventFacet::Trace'=> '1.302169',
17069             'Test2::Formatter' => '1.302169',
17070             'Test2::Formatter::TAP' => '1.302169',
17071             'Test2::Hub' => '1.302169',
17072             'Test2::Hub::Interceptor'=> '1.302169',
17073             'Test2::Hub::Interceptor::Terminator'=> '1.302169',
17074             'Test2::Hub::Subtest' => '1.302169',
17075             'Test2::IPC' => '1.302169',
17076             'Test2::IPC::Driver' => '1.302169',
17077             'Test2::IPC::Driver::Files'=> '1.302169',
17078             'Test2::Tools::Tiny' => '1.302169',
17079             'Test2::Util' => '1.302169',
17080             'Test2::Util::ExternalMeta'=> '1.302169',
17081             'Test2::Util::Facets2Legacy'=> '1.302169',
17082             'Test2::Util::HashBase' => '1.302169',
17083             'Test2::Util::Trace' => '1.302169',
17084             'Test::Builder' => '1.302169',
17085             'Test::Builder::Formatter'=> '1.302169',
17086             'Test::Builder::Module' => '1.302169',
17087             'Test::Builder::Tester' => '1.302169',
17088             'Test::Builder::Tester::Color'=> '1.302169',
17089             'Test::Builder::TodoDiag'=> '1.302169',
17090             'Test::More' => '1.302169',
17091             'Test::Simple' => '1.302169',
17092             'Test::Tester' => '1.302169',
17093             'Test::Tester::Capture' => '1.302169',
17094             'Test::Tester::CaptureRunner'=> '1.302169',
17095             'Test::Tester::Delegate'=> '1.302169',
17096             'Test::use::ok' => '1.302169',
17097             'Tie::StdHandle' => '4.6',
17098             'Unicode::UCD' => '0.74',
17099             'Win32API::File' => '0.1203_01',
17100             'feature' => '1.56',
17101             'mro' => '1.23',
17102             'ok' => '1.302169',
17103             'perlfaq' => '5.20191102',
17104             },
17105             removed => {
17106             }
17107             },
17108             5.031007 => {
17109             delta_from => 5.031006,
17110             changed => {
17111             'B' => '1.78',
17112             'B::Deparse' => '1.52',
17113             'B::Op_private' => '5.031007',
17114             'Compress::Raw::Bzip2' => '2.093',
17115             'Compress::Raw::Zlib' => '2.093',
17116             'Compress::Zlib' => '2.093',
17117             'Config' => '5.031007',
17118             'Devel::PPPort' => '3.56',
17119             'English' => '1.11',
17120             'ExtUtils::Command' => '7.42',
17121             'ExtUtils::Command::MM' => '7.42',
17122             'ExtUtils::Liblist' => '7.42',
17123             'ExtUtils::Liblist::Kid'=> '7.42',
17124             'ExtUtils::MM' => '7.42',
17125             'ExtUtils::MM_AIX' => '7.42',
17126             'ExtUtils::MM_Any' => '7.42',
17127             'ExtUtils::MM_BeOS' => '7.42',
17128             'ExtUtils::MM_Cygwin' => '7.42',
17129             'ExtUtils::MM_DOS' => '7.42',
17130             'ExtUtils::MM_Darwin' => '7.42',
17131             'ExtUtils::MM_MacOS' => '7.42',
17132             'ExtUtils::MM_NW5' => '7.42',
17133             'ExtUtils::MM_OS2' => '7.42',
17134             'ExtUtils::MM_QNX' => '7.42',
17135             'ExtUtils::MM_UWIN' => '7.42',
17136             'ExtUtils::MM_Unix' => '7.42',
17137             'ExtUtils::MM_VMS' => '7.42',
17138             'ExtUtils::MM_VOS' => '7.42',
17139             'ExtUtils::MM_Win32' => '7.42',
17140             'ExtUtils::MM_Win95' => '7.42',
17141             'ExtUtils::MY' => '7.42',
17142             'ExtUtils::MakeMaker' => '7.42',
17143             'ExtUtils::MakeMaker::Config'=> '7.42',
17144             'ExtUtils::MakeMaker::Locale'=> '7.42',
17145             'ExtUtils::MakeMaker::version'=> '7.42',
17146             'ExtUtils::MakeMaker::version::regex'=> '7.42',
17147             'ExtUtils::Mkbootstrap' => '7.42',
17148             'ExtUtils::Mksymlists' => '7.42',
17149             'ExtUtils::testlib' => '7.42',
17150             'File::stat' => '1.09',
17151             'Filter::Simple' => '0.96',
17152             'IO::Compress::Adapter::Bzip2'=> '2.093',
17153             'IO::Compress::Adapter::Deflate'=> '2.093',
17154             'IO::Compress::Adapter::Identity'=> '2.093',
17155             'IO::Compress::Base' => '2.093',
17156             'IO::Compress::Base::Common'=> '2.093',
17157             'IO::Compress::Bzip2' => '2.093',
17158             'IO::Compress::Deflate' => '2.093',
17159             'IO::Compress::Gzip' => '2.093',
17160             'IO::Compress::Gzip::Constants'=> '2.093',
17161             'IO::Compress::RawDeflate'=> '2.093',
17162             'IO::Compress::Zip' => '2.093',
17163             'IO::Compress::Zip::Constants'=> '2.093',
17164             'IO::Compress::Zlib::Constants'=> '2.093',
17165             'IO::Compress::Zlib::Extra'=> '2.093',
17166             'IO::Uncompress::Adapter::Bunzip2'=> '2.093',
17167             'IO::Uncompress::Adapter::Identity'=> '2.093',
17168             'IO::Uncompress::Adapter::Inflate'=> '2.093',
17169             'IO::Uncompress::AnyInflate'=> '2.093',
17170             'IO::Uncompress::AnyUncompress'=> '2.093',
17171             'IO::Uncompress::Base' => '2.093',
17172             'IO::Uncompress::Bunzip2'=> '2.093',
17173             'IO::Uncompress::Gunzip'=> '2.093',
17174             'IO::Uncompress::Inflate'=> '2.093',
17175             'IO::Uncompress::RawInflate'=> '2.093',
17176             'IO::Uncompress::Unzip' => '2.093',
17177             'Module::CoreList' => '5.20191220',
17178             'Module::CoreList::Utils'=> '5.20191220',
17179             'Net::Ping' => '2.72',
17180             'Opcode' => '1.45',
17181             'Storable' => '3.18',
17182             'Test2' => '1.302170',
17183             'Test2::API' => '1.302170',
17184             'Test2::API::Breakage' => '1.302170',
17185             'Test2::API::Context' => '1.302170',
17186             'Test2::API::Instance' => '1.302170',
17187             'Test2::API::Stack' => '1.302170',
17188             'Test2::Event' => '1.302170',
17189             'Test2::Event::Bail' => '1.302170',
17190             'Test2::Event::Diag' => '1.302170',
17191             'Test2::Event::Encoding'=> '1.302170',
17192             'Test2::Event::Exception'=> '1.302170',
17193             'Test2::Event::Fail' => '1.302170',
17194             'Test2::Event::Generic' => '1.302170',
17195             'Test2::Event::Note' => '1.302170',
17196             'Test2::Event::Ok' => '1.302170',
17197             'Test2::Event::Pass' => '1.302170',
17198             'Test2::Event::Plan' => '1.302170',
17199             'Test2::Event::Skip' => '1.302170',
17200             'Test2::Event::Subtest' => '1.302170',
17201             'Test2::Event::TAP::Version'=> '1.302170',
17202             'Test2::Event::V2' => '1.302170',
17203             'Test2::Event::Waiting' => '1.302170',
17204             'Test2::EventFacet' => '1.302170',
17205             'Test2::EventFacet::About'=> '1.302170',
17206             'Test2::EventFacet::Amnesty'=> '1.302170',
17207             'Test2::EventFacet::Assert'=> '1.302170',
17208             'Test2::EventFacet::Control'=> '1.302170',
17209             'Test2::EventFacet::Error'=> '1.302170',
17210             'Test2::EventFacet::Hub'=> '1.302170',
17211             'Test2::EventFacet::Info'=> '1.302170',
17212             'Test2::EventFacet::Info::Table'=> '1.302170',
17213             'Test2::EventFacet::Meta'=> '1.302170',
17214             'Test2::EventFacet::Parent'=> '1.302170',
17215             'Test2::EventFacet::Plan'=> '1.302170',
17216             'Test2::EventFacet::Render'=> '1.302170',
17217             'Test2::EventFacet::Trace'=> '1.302170',
17218             'Test2::Formatter' => '1.302170',
17219             'Test2::Formatter::TAP' => '1.302170',
17220             'Test2::Hub' => '1.302170',
17221             'Test2::Hub::Interceptor'=> '1.302170',
17222             'Test2::Hub::Interceptor::Terminator'=> '1.302170',
17223             'Test2::Hub::Subtest' => '1.302170',
17224             'Test2::IPC' => '1.302170',
17225             'Test2::IPC::Driver' => '1.302170',
17226             'Test2::IPC::Driver::Files'=> '1.302170',
17227             'Test2::Tools::Tiny' => '1.302170',
17228             'Test2::Util' => '1.302170',
17229             'Test2::Util::ExternalMeta'=> '1.302170',
17230             'Test2::Util::Facets2Legacy'=> '1.302170',
17231             'Test2::Util::HashBase' => '1.302170',
17232             'Test2::Util::Trace' => '1.302170',
17233             'Test::Builder' => '1.302170',
17234             'Test::Builder::Formatter'=> '1.302170',
17235             'Test::Builder::Module' => '1.302170',
17236             'Test::Builder::Tester' => '1.302170',
17237             'Test::Builder::Tester::Color'=> '1.302170',
17238             'Test::Builder::TodoDiag'=> '1.302170',
17239             'Test::More' => '1.302170',
17240             'Test::Simple' => '1.302170',
17241             'Test::Tester' => '1.302170',
17242             'Test::Tester::Capture' => '1.302170',
17243             'Test::Tester::CaptureRunner'=> '1.302170',
17244             'Test::Tester::Delegate'=> '1.302170',
17245             'Test::use::ok' => '1.302170',
17246             'Tie::Hash::NamedCapture'=> '0.13',
17247             'VMS::Stdio' => '2.45',
17248             'XS::APItest' => '1.05',
17249             'feature' => '1.57',
17250             'ok' => '1.302170',
17251             'warnings' => '1.46',
17252             },
17253             removed => {
17254             }
17255             },
17256             5.031008 => {
17257             delta_from => 5.031007,
17258             changed => {
17259             'B::Op_private' => '5.031008',
17260             'Config' => '5.031008',
17261             'DB_File' => '1.853',
17262             'Encode' => '3.02',
17263             'ExtUtils::Command' => '7.44',
17264             'ExtUtils::Command::MM' => '7.44',
17265             'ExtUtils::Liblist' => '7.44',
17266             'ExtUtils::Liblist::Kid'=> '7.44',
17267             'ExtUtils::MM' => '7.44',
17268             'ExtUtils::MM_AIX' => '7.44',
17269             'ExtUtils::MM_Any' => '7.44',
17270             'ExtUtils::MM_BeOS' => '7.44',
17271             'ExtUtils::MM_Cygwin' => '7.44',
17272             'ExtUtils::MM_DOS' => '7.44',
17273             'ExtUtils::MM_Darwin' => '7.44',
17274             'ExtUtils::MM_MacOS' => '7.44',
17275             'ExtUtils::MM_NW5' => '7.44',
17276             'ExtUtils::MM_OS2' => '7.44',
17277             'ExtUtils::MM_QNX' => '7.44',
17278             'ExtUtils::MM_UWIN' => '7.44',
17279             'ExtUtils::MM_Unix' => '7.44',
17280             'ExtUtils::MM_VMS' => '7.44',
17281             'ExtUtils::MM_VOS' => '7.44',
17282             'ExtUtils::MM_Win32' => '7.44',
17283             'ExtUtils::MM_Win95' => '7.44',
17284             'ExtUtils::MY' => '7.44',
17285             'ExtUtils::MakeMaker' => '7.44',
17286             'ExtUtils::MakeMaker::Config'=> '7.44',
17287             'ExtUtils::MakeMaker::Locale'=> '7.44',
17288             'ExtUtils::MakeMaker::version'=> '7.44',
17289             'ExtUtils::MakeMaker::version::regex'=> '7.44',
17290             'ExtUtils::Mkbootstrap' => '7.44',
17291             'ExtUtils::Mksymlists' => '7.44',
17292             'ExtUtils::testlib' => '7.44',
17293             'Fatal' => '2.32',
17294             'Hash::Util' => '0.23',
17295             'IO' => '1.42',
17296             'IO::Handle' => '1.42',
17297             'IO::Socket' => '1.42',
17298             'Module::CoreList' => '5.20200120',
17299             'Module::CoreList::Utils'=> '5.20200120',
17300             'POSIX' => '1.91',
17301             'Pod::Man' => '4.14',
17302             'Pod::ParseLink' => '4.14',
17303             'Pod::Text' => '4.14',
17304             'Pod::Text::Color' => '4.14',
17305             'Pod::Text::Overstrike' => '4.14',
17306             'Pod::Text::Termcap' => '4.14',
17307             'Term::ANSIColor' => '5.01',
17308             'Test2' => '1.302171',
17309             'Test2::API' => '1.302171',
17310             'Test2::API::Breakage' => '1.302171',
17311             'Test2::API::Context' => '1.302171',
17312             'Test2::API::Instance' => '1.302171',
17313             'Test2::API::Stack' => '1.302171',
17314             'Test2::Event' => '1.302171',
17315             'Test2::Event::Bail' => '1.302171',
17316             'Test2::Event::Diag' => '1.302171',
17317             'Test2::Event::Encoding'=> '1.302171',
17318             'Test2::Event::Exception'=> '1.302171',
17319             'Test2::Event::Fail' => '1.302171',
17320             'Test2::Event::Generic' => '1.302171',
17321             'Test2::Event::Note' => '1.302171',
17322             'Test2::Event::Ok' => '1.302171',
17323             'Test2::Event::Pass' => '1.302171',
17324             'Test2::Event::Plan' => '1.302171',
17325             'Test2::Event::Skip' => '1.302171',
17326             'Test2::Event::Subtest' => '1.302171',
17327             'Test2::Event::TAP::Version'=> '1.302171',
17328             'Test2::Event::V2' => '1.302171',
17329             'Test2::Event::Waiting' => '1.302171',
17330             'Test2::EventFacet' => '1.302171',
17331             'Test2::EventFacet::About'=> '1.302171',
17332             'Test2::EventFacet::Amnesty'=> '1.302171',
17333             'Test2::EventFacet::Assert'=> '1.302171',
17334             'Test2::EventFacet::Control'=> '1.302171',
17335             'Test2::EventFacet::Error'=> '1.302171',
17336             'Test2::EventFacet::Hub'=> '1.302171',
17337             'Test2::EventFacet::Info'=> '1.302171',
17338             'Test2::EventFacet::Info::Table'=> '1.302171',
17339             'Test2::EventFacet::Meta'=> '1.302171',
17340             'Test2::EventFacet::Parent'=> '1.302171',
17341             'Test2::EventFacet::Plan'=> '1.302171',
17342             'Test2::EventFacet::Render'=> '1.302171',
17343             'Test2::EventFacet::Trace'=> '1.302171',
17344             'Test2::Formatter' => '1.302171',
17345             'Test2::Formatter::TAP' => '1.302171',
17346             'Test2::Hub' => '1.302171',
17347             'Test2::Hub::Interceptor'=> '1.302171',
17348             'Test2::Hub::Interceptor::Terminator'=> '1.302171',
17349             'Test2::Hub::Subtest' => '1.302171',
17350             'Test2::IPC' => '1.302171',
17351             'Test2::IPC::Driver' => '1.302171',
17352             'Test2::IPC::Driver::Files'=> '1.302171',
17353             'Test2::Tools::Tiny' => '1.302171',
17354             'Test2::Util' => '1.302171',
17355             'Test2::Util::ExternalMeta'=> '1.302171',
17356             'Test2::Util::Facets2Legacy'=> '1.302171',
17357             'Test2::Util::HashBase' => '1.302171',
17358             'Test2::Util::Trace' => '1.302171',
17359             'Test::Builder' => '1.302171',
17360             'Test::Builder::Formatter'=> '1.302171',
17361             'Test::Builder::Module' => '1.302171',
17362             'Test::Builder::Tester' => '1.302171',
17363             'Test::Builder::Tester::Color'=> '1.302171',
17364             'Test::Builder::TodoDiag'=> '1.302171',
17365             'Test::More' => '1.302171',
17366             'Test::Simple' => '1.302171',
17367             'Test::Tester' => '1.302171',
17368             'Test::Tester::Capture' => '1.302171',
17369             'Test::Tester::CaptureRunner'=> '1.302171',
17370             'Test::Tester::Delegate'=> '1.302171',
17371             'Test::use::ok' => '1.302171',
17372             'XS::APItest' => '1.06',
17373             'autodie' => '2.32',
17374             'autodie::Scope::Guard' => '2.32',
17375             'autodie::Scope::GuardStack'=> '2.32',
17376             'autodie::Util' => '2.32',
17377             'autodie::exception' => '2.32',
17378             'autodie::exception::system'=> '2.32',
17379             'autodie::hints' => '2.32',
17380             'autodie::skip' => '2.32',
17381             'ok' => '1.302171',
17382             },
17383             removed => {
17384             }
17385             },
17386             5.031009 => {
17387             delta_from => 5.031008,
17388             changed => {
17389             'Archive::Tar' => '2.36',
17390             'Archive::Tar::Constant'=> '2.36',
17391             'Archive::Tar::File' => '2.36',
17392             'B' => '1.80',
17393             'B::Op_private' => '5.031009',
17394             'Config' => '5.031009',
17395             'Devel::PPPort' => '3.57',
17396             'Encode' => '3.03',
17397             'ExtUtils::CBuilder' => '0.280234',
17398             'ExtUtils::CBuilder::Base'=> '0.280234',
17399             'ExtUtils::CBuilder::Platform::Unix'=> '0.280234',
17400             'ExtUtils::CBuilder::Platform::VMS'=> '0.280234',
17401             'ExtUtils::CBuilder::Platform::Windows'=> '0.280234',
17402             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280234',
17403             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280234',
17404             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280234',
17405             'ExtUtils::CBuilder::Platform::aix'=> '0.280234',
17406             'ExtUtils::CBuilder::Platform::android'=> '0.280234',
17407             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280234',
17408             'ExtUtils::CBuilder::Platform::darwin'=> '0.280234',
17409             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280234',
17410             'ExtUtils::CBuilder::Platform::os2'=> '0.280234',
17411             'IO' => '1.43',
17412             'IO::Select' => '1.42',
17413             'IO::Socket' => '1.43',
17414             'Module::CoreList' => '5.20200220',
17415             'Module::CoreList::Utils'=> '5.20200220',
17416             'POSIX' => '1.92',
17417             'Pod::Html' => '1.25',
17418             'Storable' => '3.19',
17419             'Tie::File' => '1.06',
17420             'Unicode' => '13.0.0',
17421             'XS::APItest' => '1.07',
17422             '_charnames' => '1.46',
17423             'charnames' => '1.46',
17424             'diagnostics' => '1.37',
17425             'feature' => '1.58',
17426             'parent' => '0.238',
17427             'perlfaq' => '5.20200125',
17428             'threads' => '2.24',
17429             },
17430             removed => {
17431             }
17432             },
17433             5.030002 => {
17434             delta_from => 5.030001,
17435             changed => {
17436             'B::Op_private' => '5.030002',
17437             'Compress::Raw::Bzip2' => '2.089',
17438             'Config' => '5.030002',
17439             'Module::CoreList' => '5.20200314',
17440             'Module::CoreList::Utils'=> '5.20200314',
17441             },
17442             removed => {
17443             }
17444             },
17445             5.031010 => {
17446             delta_from => 5.031009,
17447             changed => {
17448             'B::Op_private' => '5.031010',
17449             'Config' => '5.03101',
17450             },
17451             removed => {
17452             }
17453             },
17454             5.031011 => {
17455             delta_from => 5.031010,
17456             changed => {
17457             'B::Deparse' => '1.53',
17458             'B::Op_private' => '5.031011',
17459             'Config' => '5.031011',
17460             'DynaLoader' => '1.47',
17461             'Encode' => '3.04',
17462             'IPC::Open2' => '1.05',
17463             'IPC::Open3' => '1.21',
17464             'Module::CoreList' => '5.20200428',
17465             'Module::CoreList::Utils'=> '5.20200428',
17466             'Opcode' => '1.47',
17467             'POSIX' => '1.93',
17468             'PerlIO' => '1.11',
17469             'Storable' => '3.20',
17470             'Test2' => '1.302175',
17471             'Test2::API' => '1.302175',
17472             'Test2::API::Breakage' => '1.302175',
17473             'Test2::API::Context' => '1.302175',
17474             'Test2::API::Instance' => '1.302175',
17475             'Test2::API::Stack' => '1.302175',
17476             'Test2::Event' => '1.302175',
17477             'Test2::Event::Bail' => '1.302175',
17478             'Test2::Event::Diag' => '1.302175',
17479             'Test2::Event::Encoding'=> '1.302175',
17480             'Test2::Event::Exception'=> '1.302175',
17481             'Test2::Event::Fail' => '1.302175',
17482             'Test2::Event::Generic' => '1.302175',
17483             'Test2::Event::Note' => '1.302175',
17484             'Test2::Event::Ok' => '1.302175',
17485             'Test2::Event::Pass' => '1.302175',
17486             'Test2::Event::Plan' => '1.302175',
17487             'Test2::Event::Skip' => '1.302175',
17488             'Test2::Event::Subtest' => '1.302175',
17489             'Test2::Event::TAP::Version'=> '1.302175',
17490             'Test2::Event::V2' => '1.302175',
17491             'Test2::Event::Waiting' => '1.302175',
17492             'Test2::EventFacet' => '1.302175',
17493             'Test2::EventFacet::About'=> '1.302175',
17494             'Test2::EventFacet::Amnesty'=> '1.302175',
17495             'Test2::EventFacet::Assert'=> '1.302175',
17496             'Test2::EventFacet::Control'=> '1.302175',
17497             'Test2::EventFacet::Error'=> '1.302175',
17498             'Test2::EventFacet::Hub'=> '1.302175',
17499             'Test2::EventFacet::Info'=> '1.302175',
17500             'Test2::EventFacet::Info::Table'=> '1.302175',
17501             'Test2::EventFacet::Meta'=> '1.302175',
17502             'Test2::EventFacet::Parent'=> '1.302175',
17503             'Test2::EventFacet::Plan'=> '1.302175',
17504             'Test2::EventFacet::Render'=> '1.302175',
17505             'Test2::EventFacet::Trace'=> '1.302175',
17506             'Test2::Formatter' => '1.302175',
17507             'Test2::Formatter::TAP' => '1.302175',
17508             'Test2::Hub' => '1.302175',
17509             'Test2::Hub::Interceptor'=> '1.302175',
17510             'Test2::Hub::Interceptor::Terminator'=> '1.302175',
17511             'Test2::Hub::Subtest' => '1.302175',
17512             'Test2::IPC' => '1.302175',
17513             'Test2::IPC::Driver' => '1.302175',
17514             'Test2::IPC::Driver::Files'=> '1.302175',
17515             'Test2::Tools::Tiny' => '1.302175',
17516             'Test2::Util' => '1.302175',
17517             'Test2::Util::ExternalMeta'=> '1.302175',
17518             'Test2::Util::Facets2Legacy'=> '1.302175',
17519             'Test2::Util::HashBase' => '1.302175',
17520             'Test2::Util::Trace' => '1.302175',
17521             'Test::Builder' => '1.302175',
17522             'Test::Builder::Formatter'=> '1.302175',
17523             'Test::Builder::Module' => '1.302175',
17524             'Test::Builder::Tester' => '1.302175',
17525             'Test::Builder::Tester::Color'=> '1.302175',
17526             'Test::Builder::TodoDiag'=> '1.302175',
17527             'Test::More' => '1.302175',
17528             'Test::Simple' => '1.302175',
17529             'Test::Tester' => '1.302175',
17530             'Test::Tester::Capture' => '1.302175',
17531             'Test::Tester::CaptureRunner'=> '1.302175',
17532             'Test::Tester::Delegate'=> '1.302175',
17533             'Test::use::ok' => '1.302175',
17534             'Time::Piece' => '1.3401',
17535             'Time::Seconds' => '1.3401',
17536             'Unicode::UCD' => '0.75',
17537             'XS::APItest' => '1.09',
17538             '_charnames' => '1.47',
17539             'charnames' => '1.47',
17540             'ok' => '1.302175',
17541             'open' => '1.12',
17542             're' => '0.39',
17543             'warnings' => '1.47',
17544             },
17545             removed => {
17546             }
17547             },
17548             5.028003 => {
17549             delta_from => 5.028002,
17550             changed => {
17551             'B::Op_private' => '5.028003',
17552             'Config' => '5.028003',
17553             'Module::CoreList' => '5.20200601_28',
17554             'Module::CoreList::Utils'=> '5.20200601_28',
17555             },
17556             removed => {
17557             }
17558             },
17559             5.030003 => {
17560             delta_from => 5.030002,
17561             changed => {
17562             'B::Op_private' => '5.030003',
17563             'Config' => '5.030003',
17564             'Module::CoreList' => '5.20200601_30',
17565             'Module::CoreList::Utils'=> '5.20200601_30',
17566             },
17567             removed => {
17568             }
17569             },
17570             5.032000 => {
17571             delta_from => 5.031011,
17572             changed => {
17573             'B::Deparse' => '1.54',
17574             'B::Op_private' => '5.032000',
17575             'Benchmark' => '1.23',
17576             'Config' => '5.032',
17577             'Encode' => '3.06',
17578             'Encode::Guess' => '2.08',
17579             'File::Glob' => '1.33',
17580             'List::Util' => '1.55',
17581             'List::Util::XS' => '1.55',
17582             'Module::CoreList' => '5.20200620',
17583             'Module::CoreList::Utils'=> '5.20200620',
17584             'POSIX' => '1.94',
17585             'Scalar::Util' => '1.55',
17586             'Storable' => '3.21',
17587             'Sub::Util' => '1.55',
17588             'Thread::Queue' => '3.14',
17589             'Tie::Scalar' => '1.05',
17590             '_charnames' => '1.48',
17591             'charnames' => '1.48',
17592             'encoding' => '3.00',
17593             'perlfaq' => '5.20200523',
17594             're' => '0.40',
17595             'threads' => '2.25',
17596             },
17597             removed => {
17598             }
17599             },
17600             5.033000 => {
17601             delta_from => 5.032000,
17602             changed => {
17603             'B::Op_private' => '5.033000',
17604             'Config' => '5.033',
17605             'Module::CoreList' => '5.20200717',
17606             'Module::CoreList::Utils'=> '5.20200717',
17607             'feature' => '1.59',
17608             },
17609             removed => {
17610             }
17611             },
17612             5.033001 => {
17613             delta_from => 5.033,
17614             changed => {
17615             'B' => '1.81',
17616             'B::Deparse' => '1.55',
17617             'B::Op_private' => '5.033001',
17618             'Config' => '5.033001',
17619             'Data::Dumper' => '2.175',
17620             'Devel::PPPort' => '3.60',
17621             'Devel::Peek' => '1.29',
17622             'DynaLoader' => '1.48',
17623             'Errno' => '1.31',
17624             'Exporter' => '5.75',
17625             'Exporter::Heavy' => '5.75',
17626             'ExtUtils::Miniperl' => '1.10',
17627             'ExtUtils::PL2Bat' => '0.002',
17628             'ExtUtils::ParseXS' => '3.41',
17629             'ExtUtils::ParseXS::Constants'=> '3.41',
17630             'ExtUtils::ParseXS::CountLines'=> '3.41',
17631             'ExtUtils::ParseXS::Eval'=> '3.41',
17632             'ExtUtils::ParseXS::Utilities'=> '3.41',
17633             'Fcntl' => '1.14',
17634             'File::Path' => '2.17',
17635             'Hash::Util' => '0.24',
17636             'Hash::Util::FieldHash' => '1.21',
17637             'IO' => '1.44',
17638             'IO::Socket' => '1.44',
17639             'IO::Socket::UNIX' => '1.42',
17640             'IPC::Msg' => '2.08',
17641             'IPC::Semaphore' => '2.08',
17642             'IPC::SharedMem' => '2.08',
17643             'IPC::SysV' => '2.08',
17644             'JSON::PP' => '4.05',
17645             'JSON::PP::Boolean' => '4.05',
17646             'Math::Complex' => '1.5902',
17647             'Module::CoreList' => '5.20200820',
17648             'Module::CoreList::Utils'=> '5.20200820',
17649             'Net::Ping' => '2.73_01',
17650             'POSIX' => '1.95',
17651             'PerlIO::mmap' => '0.017',
17652             'Pod::Usage' => '1.70',
17653             'Safe' => '2.42',
17654             'Socket' => '2.030',
17655             'Storable' => '3.22',
17656             'Time::HiRes' => '1.9765',
17657             'Unicode::Normalize' => '1.28',
17658             'XS::APItest' => '1.11',
17659             'XS::Typemap' => '0.18',
17660             'feature' => '1.60',
17661             'mro' => '1.24',
17662             'strict' => '1.12',
17663             'threads' => '2.26',
17664             'threads::shared' => '1.62',
17665             'warnings' => '1.48',
17666             },
17667             removed => {
17668             'Moped::Msg' => 1,
17669             }
17670             },
17671             5.033002 => {
17672             delta_from => 5.033001,
17673             changed => {
17674             'Archive::Tar' => '2.38',
17675             'Archive::Tar::Constant'=> '2.38',
17676             'Archive::Tar::File' => '2.38',
17677             'B::Op_private' => '5.033002',
17678             'Compress::Raw::Bzip2' => '2.096',
17679             'Compress::Raw::Zlib' => '2.096',
17680             'Compress::Zlib' => '2.096',
17681             'Config' => '5.033002',
17682             'DB_File' => '1.854',
17683             'Env' => '1.05',
17684             'Errno' => '1.32',
17685             'ExtUtils::Install' => '2.18',
17686             'ExtUtils::Installed' => '2.18',
17687             'ExtUtils::Packlist' => '2.18',
17688             'Filter::Util::Call' => '1.60',
17689             'IO::Compress::Adapter::Bzip2'=> '2.096',
17690             'IO::Compress::Adapter::Deflate'=> '2.096',
17691             'IO::Compress::Adapter::Identity'=> '2.096',
17692             'IO::Compress::Base' => '2.096',
17693             'IO::Compress::Base::Common'=> '2.096',
17694             'IO::Compress::Bzip2' => '2.096',
17695             'IO::Compress::Deflate' => '2.096',
17696             'IO::Compress::Gzip' => '2.096',
17697             'IO::Compress::Gzip::Constants'=> '2.096',
17698             'IO::Compress::RawDeflate'=> '2.096',
17699             'IO::Compress::Zip' => '2.096',
17700             'IO::Compress::Zip::Constants'=> '2.096',
17701             'IO::Compress::Zlib::Constants'=> '2.096',
17702             'IO::Compress::Zlib::Extra'=> '2.096',
17703             'IO::Socket::IP' => '0.41',
17704             'IO::Uncompress::Adapter::Bunzip2'=> '2.096',
17705             'IO::Uncompress::Adapter::Identity'=> '2.096',
17706             'IO::Uncompress::Adapter::Inflate'=> '2.096',
17707             'IO::Uncompress::AnyInflate'=> '2.096',
17708             'IO::Uncompress::AnyUncompress'=> '2.096',
17709             'IO::Uncompress::Base' => '2.096',
17710             'IO::Uncompress::Bunzip2'=> '2.096',
17711             'IO::Uncompress::Gunzip'=> '2.096',
17712             'IO::Uncompress::Inflate'=> '2.096',
17713             'IO::Uncompress::RawInflate'=> '2.096',
17714             'IO::Uncompress::Unzip' => '2.096',
17715             'IO::Zlib' => '1.11',
17716             'Module::CoreList' => '5.20200920',
17717             'Module::CoreList::Utils'=> '5.20200920',
17718             'Module::Load::Conditional'=> '0.74',
17719             'Opcode' => '1.48',
17720             'PerlIO::scalar' => '0.31',
17721             'Safe' => '2.43',
17722             'Test2' => '1.302181',
17723             'Test2::API' => '1.302181',
17724             'Test2::API::Breakage' => '1.302181',
17725             'Test2::API::Context' => '1.302181',
17726             'Test2::API::Instance' => '1.302181',
17727             'Test2::API::InterceptResult'=> '1.302181',
17728             'Test2::API::InterceptResult::Event'=> '1.302181',
17729             'Test2::API::InterceptResult::Facet'=> '1.302181',
17730             'Test2::API::InterceptResult::Hub'=> '1.302181',
17731             'Test2::API::InterceptResult::Squasher'=> '1.302181',
17732             'Test2::API::Stack' => '1.302181',
17733             'Test2::Event' => '1.302181',
17734             'Test2::Event::Bail' => '1.302181',
17735             'Test2::Event::Diag' => '1.302181',
17736             'Test2::Event::Encoding'=> '1.302181',
17737             'Test2::Event::Exception'=> '1.302181',
17738             'Test2::Event::Fail' => '1.302181',
17739             'Test2::Event::Generic' => '1.302181',
17740             'Test2::Event::Note' => '1.302181',
17741             'Test2::Event::Ok' => '1.302181',
17742             'Test2::Event::Pass' => '1.302181',
17743             'Test2::Event::Plan' => '1.302181',
17744             'Test2::Event::Skip' => '1.302181',
17745             'Test2::Event::Subtest' => '1.302181',
17746             'Test2::Event::TAP::Version'=> '1.302181',
17747             'Test2::Event::V2' => '1.302181',
17748             'Test2::Event::Waiting' => '1.302181',
17749             'Test2::EventFacet' => '1.302181',
17750             'Test2::EventFacet::About'=> '1.302181',
17751             'Test2::EventFacet::Amnesty'=> '1.302181',
17752             'Test2::EventFacet::Assert'=> '1.302181',
17753             'Test2::EventFacet::Control'=> '1.302181',
17754             'Test2::EventFacet::Error'=> '1.302181',
17755             'Test2::EventFacet::Hub'=> '1.302181',
17756             'Test2::EventFacet::Info'=> '1.302181',
17757             'Test2::EventFacet::Info::Table'=> '1.302181',
17758             'Test2::EventFacet::Meta'=> '1.302181',
17759             'Test2::EventFacet::Parent'=> '1.302181',
17760             'Test2::EventFacet::Plan'=> '1.302181',
17761             'Test2::EventFacet::Render'=> '1.302181',
17762             'Test2::EventFacet::Trace'=> '1.302181',
17763             'Test2::Formatter' => '1.302181',
17764             'Test2::Formatter::TAP' => '1.302181',
17765             'Test2::Hub' => '1.302181',
17766             'Test2::Hub::Interceptor'=> '1.302181',
17767             'Test2::Hub::Interceptor::Terminator'=> '1.302181',
17768             'Test2::Hub::Subtest' => '1.302181',
17769             'Test2::IPC' => '1.302181',
17770             'Test2::IPC::Driver' => '1.302181',
17771             'Test2::IPC::Driver::Files'=> '1.302181',
17772             'Test2::Tools::Tiny' => '1.302181',
17773             'Test2::Util' => '1.302181',
17774             'Test2::Util::ExternalMeta'=> '1.302181',
17775             'Test2::Util::Facets2Legacy'=> '1.302181',
17776             'Test2::Util::HashBase' => '1.302181',
17777             'Test2::Util::Trace' => '1.302181',
17778             'Test::Builder' => '1.302181',
17779             'Test::Builder::Formatter'=> '1.302181',
17780             'Test::Builder::Module' => '1.302181',
17781             'Test::Builder::Tester' => '1.302181',
17782             'Test::Builder::Tester::Color'=> '1.302181',
17783             'Test::Builder::TodoDiag'=> '1.302181',
17784             'Test::More' => '1.302181',
17785             'Test::Simple' => '1.302181',
17786             'Test::Tester' => '1.302181',
17787             'Test::Tester::Capture' => '1.302181',
17788             'Test::Tester::CaptureRunner'=> '1.302181',
17789             'Test::Tester::Delegate'=> '1.302181',
17790             'Test::use::ok' => '1.302181',
17791             'ok' => '1.302181',
17792             'overload' => '1.32',
17793             },
17794             removed => {
17795             }
17796             },
17797             5.033003 => {
17798             delta_from => 5.033002,
17799             changed => {
17800             'Amiga::ARexx' => '0.05',
17801             'App::Cpan' => '1.676',
17802             'B::Op_private' => '5.033003',
17803             'CPAN' => '2.28',
17804             'CPAN::FTP' => '5.5013',
17805             'CPAN::FirstTime' => '5.5315',
17806             'Config' => '5.033003',
17807             'DB_File' => '1.855',
17808             'Data::Dumper' => '2.176',
17809             'Devel::PPPort' => '3.62',
17810             'Devel::Peek' => '1.30',
17811             'Digest' => '1.19',
17812             'Digest::MD5' => '2.58',
17813             'Digest::base' => '1.19',
17814             'Digest::file' => '1.19',
17815             'Encode' => '3.07',
17816             'Encode::GSM0338' => '2.08',
17817             'Errno' => '1.33',
17818             'Exporter' => '5.76',
17819             'Exporter::Heavy' => '5.76',
17820             'ExtUtils::Command' => '7.48',
17821             'ExtUtils::Command::MM' => '7.48',
17822             'ExtUtils::Liblist' => '7.48',
17823             'ExtUtils::Liblist::Kid'=> '7.48',
17824             'ExtUtils::MM' => '7.48',
17825             'ExtUtils::MM_AIX' => '7.48',
17826             'ExtUtils::MM_Any' => '7.48',
17827             'ExtUtils::MM_BeOS' => '7.48',
17828             'ExtUtils::MM_Cygwin' => '7.48',
17829             'ExtUtils::MM_DOS' => '7.48',
17830             'ExtUtils::MM_Darwin' => '7.48',
17831             'ExtUtils::MM_MacOS' => '7.48',
17832             'ExtUtils::MM_NW5' => '7.48',
17833             'ExtUtils::MM_OS2' => '7.48',
17834             'ExtUtils::MM_OS390' => '7.48',
17835             'ExtUtils::MM_QNX' => '7.48',
17836             'ExtUtils::MM_UWIN' => '7.48',
17837             'ExtUtils::MM_Unix' => '7.48',
17838             'ExtUtils::MM_VMS' => '7.48',
17839             'ExtUtils::MM_VOS' => '7.48',
17840             'ExtUtils::MM_Win32' => '7.48',
17841             'ExtUtils::MM_Win95' => '7.48',
17842             'ExtUtils::MY' => '7.48',
17843             'ExtUtils::MakeMaker' => '7.48',
17844             'ExtUtils::MakeMaker::Config'=> '7.48',
17845             'ExtUtils::MakeMaker::Locale'=> '7.48',
17846             'ExtUtils::MakeMaker::version'=> '7.48',
17847             'ExtUtils::MakeMaker::version::regex'=> '7.48',
17848             'ExtUtils::Mkbootstrap' => '7.48',
17849             'ExtUtils::Mksymlists' => '7.48',
17850             'ExtUtils::PL2Bat' => '0.003',
17851             'ExtUtils::testlib' => '7.48',
17852             'File::Temp' => '0.2311',
17853             'FindBin' => '1.52',
17854             'Getopt::Long' => '2.52',
17855             'Getopt::Std' => '1.13',
17856             'I18N::LangTags' => '0.45',
17857             'MIME::Base64' => '3.16',
17858             'MIME::QuotedPrint' => '3.16',
17859             'Module::CoreList' => '5.20201020',
17860             'Module::CoreList::Utils'=> '5.20201020',
17861             'Module::Load' => '0.36',
17862             'Pod::Checker' => '1.74',
17863             'Pod::Simple' => '3.41',
17864             'Pod::Simple::BlackBox' => '3.41',
17865             'Pod::Simple::Checker' => '3.41',
17866             'Pod::Simple::Debug' => '3.41',
17867             'Pod::Simple::DumpAsText'=> '3.41',
17868             'Pod::Simple::DumpAsXML'=> '3.41',
17869             'Pod::Simple::HTML' => '3.41',
17870             'Pod::Simple::HTMLBatch'=> '3.41',
17871             'Pod::Simple::LinkSection'=> '3.41',
17872             'Pod::Simple::Methody' => '3.41',
17873             'Pod::Simple::Progress' => '3.41',
17874             'Pod::Simple::PullParser'=> '3.41',
17875             'Pod::Simple::PullParserEndToken'=> '3.41',
17876             'Pod::Simple::PullParserStartToken'=> '3.41',
17877             'Pod::Simple::PullParserTextToken'=> '3.41',
17878             'Pod::Simple::PullParserToken'=> '3.41',
17879             'Pod::Simple::RTF' => '3.41',
17880             'Pod::Simple::Search' => '3.41',
17881             'Pod::Simple::SimpleTree'=> '3.41',
17882             'Pod::Simple::Text' => '3.41',
17883             'Pod::Simple::TextContent'=> '3.41',
17884             'Pod::Simple::TiedOutFH'=> '3.41',
17885             'Pod::Simple::Transcode'=> '3.41',
17886             'Pod::Simple::TranscodeDumb'=> '3.41',
17887             'Pod::Simple::TranscodeSmart'=> '3.41',
17888             'Pod::Simple::XHTML' => '3.41',
17889             'Pod::Simple::XMLOutStream'=> '3.41',
17890             'Pod::Usage' => '2.01',
17891             'Storable' => '3.23',
17892             'Symbol' => '1.09',
17893             'Test2' => '1.302182',
17894             'Test2::API' => '1.302182',
17895             'Test2::API::Breakage' => '1.302182',
17896             'Test2::API::Context' => '1.302182',
17897             'Test2::API::Instance' => '1.302182',
17898             'Test2::API::InterceptResult'=> '1.302182',
17899             'Test2::API::InterceptResult::Event'=> '1.302182',
17900             'Test2::API::InterceptResult::Facet'=> '1.302182',
17901             'Test2::API::InterceptResult::Hub'=> '1.302182',
17902             'Test2::API::InterceptResult::Squasher'=> '1.302182',
17903             'Test2::API::Stack' => '1.302182',
17904             'Test2::Event' => '1.302182',
17905             'Test2::Event::Bail' => '1.302182',
17906             'Test2::Event::Diag' => '1.302182',
17907             'Test2::Event::Encoding'=> '1.302182',
17908             'Test2::Event::Exception'=> '1.302182',
17909             'Test2::Event::Fail' => '1.302182',
17910             'Test2::Event::Generic' => '1.302182',
17911             'Test2::Event::Note' => '1.302182',
17912             'Test2::Event::Ok' => '1.302182',
17913             'Test2::Event::Pass' => '1.302182',
17914             'Test2::Event::Plan' => '1.302182',
17915             'Test2::Event::Skip' => '1.302182',
17916             'Test2::Event::Subtest' => '1.302182',
17917             'Test2::Event::TAP::Version'=> '1.302182',
17918             'Test2::Event::V2' => '1.302182',
17919             'Test2::Event::Waiting' => '1.302182',
17920             'Test2::EventFacet' => '1.302182',
17921             'Test2::EventFacet::About'=> '1.302182',
17922             'Test2::EventFacet::Amnesty'=> '1.302182',
17923             'Test2::EventFacet::Assert'=> '1.302182',
17924             'Test2::EventFacet::Control'=> '1.302182',
17925             'Test2::EventFacet::Error'=> '1.302182',
17926             'Test2::EventFacet::Hub'=> '1.302182',
17927             'Test2::EventFacet::Info'=> '1.302182',
17928             'Test2::EventFacet::Info::Table'=> '1.302182',
17929             'Test2::EventFacet::Meta'=> '1.302182',
17930             'Test2::EventFacet::Parent'=> '1.302182',
17931             'Test2::EventFacet::Plan'=> '1.302182',
17932             'Test2::EventFacet::Render'=> '1.302182',
17933             'Test2::EventFacet::Trace'=> '1.302182',
17934             'Test2::Formatter' => '1.302182',
17935             'Test2::Formatter::TAP' => '1.302182',
17936             'Test2::Hub' => '1.302182',
17937             'Test2::Hub::Interceptor'=> '1.302182',
17938             'Test2::Hub::Interceptor::Terminator'=> '1.302182',
17939             'Test2::Hub::Subtest' => '1.302182',
17940             'Test2::IPC' => '1.302182',
17941             'Test2::IPC::Driver' => '1.302182',
17942             'Test2::IPC::Driver::Files'=> '1.302182',
17943             'Test2::Tools::Tiny' => '1.302182',
17944             'Test2::Util' => '1.302182',
17945             'Test2::Util::ExternalMeta'=> '1.302182',
17946             'Test2::Util::Facets2Legacy'=> '1.302182',
17947             'Test2::Util::HashBase' => '1.302182',
17948             'Test2::Util::Trace' => '1.302182',
17949             'Test::Builder' => '1.302182',
17950             'Test::Builder::Formatter'=> '1.302182',
17951             'Test::Builder::Module' => '1.302182',
17952             'Test::Builder::Tester' => '1.302182',
17953             'Test::Builder::Tester::Color'=> '1.302182',
17954             'Test::Builder::TodoDiag'=> '1.302182',
17955             'Test::More' => '1.302182',
17956             'Test::Simple' => '1.302182',
17957             'Test::Tester' => '1.302182',
17958             'Test::Tester::Capture' => '1.302182',
17959             'Test::Tester::CaptureRunner'=> '1.302182',
17960             'Test::Tester::Delegate'=> '1.302182',
17961             'Test::use::ok' => '1.302182',
17962             'Tie::RefHash' => '1.40',
17963             'Time::Local' => '1.30',
17964             'Unicode::Collate' => '1.29',
17965             'Unicode::Collate::CJK::Big5'=> '1.29',
17966             'Unicode::Collate::CJK::GB2312'=> '1.29',
17967             'Unicode::Collate::CJK::JISX0208'=> '1.29',
17968             'Unicode::Collate::CJK::Korean'=> '1.29',
17969             'Unicode::Collate::CJK::Pinyin'=> '1.29',
17970             'Unicode::Collate::CJK::Stroke'=> '1.29',
17971             'Unicode::Collate::CJK::Zhuyin'=> '1.29',
17972             'Unicode::Collate::Locale'=> '1.29',
17973             'Win32' => '0.54',
17974             'XS::APItest' => '1.12',
17975             'bytes' => '1.08',
17976             'experimental' => '0.022',
17977             'feature' => '1.61',
17978             'if' => '0.0609',
17979             'locale' => '1.10',
17980             'mro' => '1.25',
17981             'ok' => '1.302182',
17982             'overload' => '1.33',
17983             're' => '0.41',
17984             'subs' => '1.04',
17985             'utf8' => '1.24',
17986             'version' => '0.9928',
17987             'version::regex' => '0.9928',
17988             },
17989             removed => {
17990             }
17991             },
17992             5.033004 => {
17993             delta_from => 5.033003,
17994             changed => {
17995             'B' => '1.82',
17996             'B::Op_private' => '5.033004',
17997             'Config' => '5.033004',
17998             'Cwd' => '3.79',
17999             'ExtUtils::CBuilder' => '0.280235',
18000             'ExtUtils::CBuilder::Base'=> '0.280235',
18001             'ExtUtils::CBuilder::Platform::Unix'=> '0.280235',
18002             'ExtUtils::CBuilder::Platform::VMS'=> '0.280235',
18003             'ExtUtils::CBuilder::Platform::Windows'=> '0.280235',
18004             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280235',
18005             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280235',
18006             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280235',
18007             'ExtUtils::CBuilder::Platform::aix'=> '0.280235',
18008             'ExtUtils::CBuilder::Platform::android'=> '0.280235',
18009             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280235',
18010             'ExtUtils::CBuilder::Platform::darwin'=> '0.280235',
18011             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280235',
18012             'ExtUtils::CBuilder::Platform::os2'=> '0.280235',
18013             'ExtUtils::Command' => '7.56',
18014             'ExtUtils::Command::MM' => '7.56',
18015             'ExtUtils::Liblist' => '7.56',
18016             'ExtUtils::Liblist::Kid'=> '7.56',
18017             'ExtUtils::MM' => '7.56',
18018             'ExtUtils::MM_AIX' => '7.56',
18019             'ExtUtils::MM_Any' => '7.56',
18020             'ExtUtils::MM_BeOS' => '7.56',
18021             'ExtUtils::MM_Cygwin' => '7.56',
18022             'ExtUtils::MM_DOS' => '7.56',
18023             'ExtUtils::MM_Darwin' => '7.56',
18024             'ExtUtils::MM_MacOS' => '7.56',
18025             'ExtUtils::MM_NW5' => '7.56',
18026             'ExtUtils::MM_OS2' => '7.56',
18027             'ExtUtils::MM_OS390' => '7.56',
18028             'ExtUtils::MM_QNX' => '7.56',
18029             'ExtUtils::MM_UWIN' => '7.56',
18030             'ExtUtils::MM_Unix' => '7.56',
18031             'ExtUtils::MM_VMS' => '7.56',
18032             'ExtUtils::MM_VOS' => '7.56',
18033             'ExtUtils::MM_Win32' => '7.56',
18034             'ExtUtils::MM_Win95' => '7.56',
18035             'ExtUtils::MY' => '7.56',
18036             'ExtUtils::MakeMaker' => '7.56',
18037             'ExtUtils::MakeMaker::Config'=> '7.56',
18038             'ExtUtils::MakeMaker::Locale'=> '7.56',
18039             'ExtUtils::MakeMaker::version'=> '7.56',
18040             'ExtUtils::MakeMaker::version::regex'=> '7.56',
18041             'ExtUtils::Mkbootstrap' => '7.56',
18042             'ExtUtils::Mksymlists' => '7.56',
18043             'ExtUtils::testlib' => '7.56',
18044             'File::Fetch' => '1.00',
18045             'File::Path' => '2.18',
18046             'File::Spec' => '3.79',
18047             'File::Spec::AmigaOS' => '3.79',
18048             'File::Spec::Cygwin' => '3.79',
18049             'File::Spec::Epoc' => '3.79',
18050             'File::Spec::Functions' => '3.79',
18051             'File::Spec::Mac' => '3.79',
18052             'File::Spec::OS2' => '3.79',
18053             'File::Spec::Unix' => '3.79',
18054             'File::Spec::VMS' => '3.79',
18055             'IPC::Msg' => '2.09',
18056             'IPC::Semaphore' => '2.09',
18057             'IPC::SharedMem' => '2.09',
18058             'IPC::SysV' => '2.09',
18059             'Module::CoreList' => '5.20201120',
18060             'Module::CoreList::Utils'=> '5.20201120',
18061             'Net::Ping' => '2.74',
18062             'Pod::Html' => '1.26',
18063             'Pod::Simple' => '3.42',
18064             'Pod::Simple::BlackBox' => '3.42',
18065             'Pod::Simple::Checker' => '3.42',
18066             'Pod::Simple::Debug' => '3.42',
18067             'Pod::Simple::DumpAsText'=> '3.42',
18068             'Pod::Simple::DumpAsXML'=> '3.42',
18069             'Pod::Simple::HTML' => '3.42',
18070             'Pod::Simple::HTMLBatch'=> '3.42',
18071             'Pod::Simple::LinkSection'=> '3.42',
18072             'Pod::Simple::Methody' => '3.42',
18073             'Pod::Simple::Progress' => '3.42',
18074             'Pod::Simple::PullParser'=> '3.42',
18075             'Pod::Simple::PullParserEndToken'=> '3.42',
18076             'Pod::Simple::PullParserStartToken'=> '3.42',
18077             'Pod::Simple::PullParserTextToken'=> '3.42',
18078             'Pod::Simple::PullParserToken'=> '3.42',
18079             'Pod::Simple::RTF' => '3.42',
18080             'Pod::Simple::Search' => '3.42',
18081             'Pod::Simple::SimpleTree'=> '3.42',
18082             'Pod::Simple::Text' => '3.42',
18083             'Pod::Simple::TextContent'=> '3.42',
18084             'Pod::Simple::TiedOutFH'=> '3.42',
18085             'Pod::Simple::Transcode'=> '3.42',
18086             'Pod::Simple::TranscodeDumb'=> '3.42',
18087             'Pod::Simple::TranscodeSmart'=> '3.42',
18088             'Pod::Simple::XHTML' => '3.42',
18089             'Pod::Simple::XMLOutStream'=> '3.42',
18090             'Test2' => '1.302183',
18091             'Test2::API' => '1.302183',
18092             'Test2::API::Breakage' => '1.302183',
18093             'Test2::API::Context' => '1.302183',
18094             'Test2::API::Instance' => '1.302183',
18095             'Test2::API::InterceptResult'=> '1.302183',
18096             'Test2::API::InterceptResult::Event'=> '1.302183',
18097             'Test2::API::InterceptResult::Facet'=> '1.302183',
18098             'Test2::API::InterceptResult::Hub'=> '1.302183',
18099             'Test2::API::InterceptResult::Squasher'=> '1.302183',
18100             'Test2::API::Stack' => '1.302183',
18101             'Test2::Event' => '1.302183',
18102             'Test2::Event::Bail' => '1.302183',
18103             'Test2::Event::Diag' => '1.302183',
18104             'Test2::Event::Encoding'=> '1.302183',
18105             'Test2::Event::Exception'=> '1.302183',
18106             'Test2::Event::Fail' => '1.302183',
18107             'Test2::Event::Generic' => '1.302183',
18108             'Test2::Event::Note' => '1.302183',
18109             'Test2::Event::Ok' => '1.302183',
18110             'Test2::Event::Pass' => '1.302183',
18111             'Test2::Event::Plan' => '1.302183',
18112             'Test2::Event::Skip' => '1.302183',
18113             'Test2::Event::Subtest' => '1.302183',
18114             'Test2::Event::TAP::Version'=> '1.302183',
18115             'Test2::Event::V2' => '1.302183',
18116             'Test2::Event::Waiting' => '1.302183',
18117             'Test2::EventFacet' => '1.302183',
18118             'Test2::EventFacet::About'=> '1.302183',
18119             'Test2::EventFacet::Amnesty'=> '1.302183',
18120             'Test2::EventFacet::Assert'=> '1.302183',
18121             'Test2::EventFacet::Control'=> '1.302183',
18122             'Test2::EventFacet::Error'=> '1.302183',
18123             'Test2::EventFacet::Hub'=> '1.302183',
18124             'Test2::EventFacet::Info'=> '1.302183',
18125             'Test2::EventFacet::Info::Table'=> '1.302183',
18126             'Test2::EventFacet::Meta'=> '1.302183',
18127             'Test2::EventFacet::Parent'=> '1.302183',
18128             'Test2::EventFacet::Plan'=> '1.302183',
18129             'Test2::EventFacet::Render'=> '1.302183',
18130             'Test2::EventFacet::Trace'=> '1.302183',
18131             'Test2::Formatter' => '1.302183',
18132             'Test2::Formatter::TAP' => '1.302183',
18133             'Test2::Hub' => '1.302183',
18134             'Test2::Hub::Interceptor'=> '1.302183',
18135             'Test2::Hub::Interceptor::Terminator'=> '1.302183',
18136             'Test2::Hub::Subtest' => '1.302183',
18137             'Test2::IPC' => '1.302183',
18138             'Test2::IPC::Driver' => '1.302183',
18139             'Test2::IPC::Driver::Files'=> '1.302183',
18140             'Test2::Tools::Tiny' => '1.302183',
18141             'Test2::Util' => '1.302183',
18142             'Test2::Util::ExternalMeta'=> '1.302183',
18143             'Test2::Util::Facets2Legacy'=> '1.302183',
18144             'Test2::Util::HashBase' => '1.302183',
18145             'Test2::Util::Trace' => '1.302183',
18146             'Test::Builder' => '1.302183',
18147             'Test::Builder::Formatter'=> '1.302183',
18148             'Test::Builder::Module' => '1.302183',
18149             'Test::Builder::Tester' => '1.302183',
18150             'Test::Builder::Tester::Color'=> '1.302183',
18151             'Test::Builder::TodoDiag'=> '1.302183',
18152             'Test::More' => '1.302183',
18153             'Test::Simple' => '1.302183',
18154             'Test::Tester' => '1.302183',
18155             'Test::Tester::Capture' => '1.302183',
18156             'Test::Tester::CaptureRunner'=> '1.302183',
18157             'Test::Tester::Delegate'=> '1.302183',
18158             'Test::use::ok' => '1.302183',
18159             'XS::APItest' => '1.13',
18160             'ok' => '1.302183',
18161             'perlfaq' => '5.20201107',
18162             },
18163             removed => {
18164             }
18165             },
18166             5.033005 => {
18167             delta_from => 5.033004,
18168             changed => {
18169             'App::Prove' => '3.43',
18170             'App::Prove::State' => '3.43',
18171             'App::Prove::State::Result'=> '3.43',
18172             'App::Prove::State::Result::Test'=> '3.43',
18173             'B::Op_private' => '5.033005',
18174             'Carp' => '1.51',
18175             'Carp::Heavy' => '1.51',
18176             'Config' => '5.033005',
18177             'Config::Perl::V' => '0.33',
18178             'Cwd' => '3.80',
18179             'DynaLoader' => '1.49',
18180             'Encode' => '3.08',
18181             'Encode::GSM0338' => '2.09',
18182             'ExtUtils::Install' => '2.20',
18183             'ExtUtils::Installed' => '2.20',
18184             'ExtUtils::Packlist' => '2.20',
18185             'ExtUtils::ParseXS' => '3.42',
18186             'ExtUtils::ParseXS::Constants'=> '3.42',
18187             'ExtUtils::ParseXS::CountLines'=> '3.42',
18188             'ExtUtils::ParseXS::Eval'=> '3.42',
18189             'ExtUtils::ParseXS::Utilities'=> '3.42',
18190             'File::Copy' => '2.35',
18191             'File::Find' => '1.38',
18192             'File::Spec' => '3.80',
18193             'File::Spec::AmigaOS' => '3.80',
18194             'File::Spec::Cygwin' => '3.80',
18195             'File::Spec::Epoc' => '3.80',
18196             'File::Spec::Functions' => '3.80',
18197             'File::Spec::Mac' => '3.80',
18198             'File::Spec::OS2' => '3.80',
18199             'File::Spec::Unix' => '3.80',
18200             'File::Spec::VMS' => '3.80',
18201             'File::Spec::Win32' => '3.80',
18202             'Module::CoreList' => '5.20201220',
18203             'Module::CoreList::Utils'=> '5.20201220',
18204             'Net::Cmd' => '3.12',
18205             'Net::Config' => '3.12',
18206             'Net::Domain' => '3.12',
18207             'Net::FTP' => '3.12',
18208             'Net::FTP::A' => '3.12',
18209             'Net::FTP::E' => '3.12',
18210             'Net::FTP::I' => '3.12',
18211             'Net::FTP::L' => '3.12',
18212             'Net::FTP::dataconn' => '3.12',
18213             'Net::NNTP' => '3.12',
18214             'Net::Netrc' => '3.12',
18215             'Net::POP3' => '3.12',
18216             'Net::SMTP' => '3.12',
18217             'Net::Time' => '3.12',
18218             'ODBM_File' => '1.17',
18219             'Opcode' => '1.49',
18220             'POSIX' => '1.96',
18221             'PerlIO::via::QuotedPrint'=> '0.09',
18222             'TAP::Base' => '3.43',
18223             'TAP::Formatter::Base' => '3.43',
18224             'TAP::Formatter::Color' => '3.43',
18225             'TAP::Formatter::Console'=> '3.43',
18226             'TAP::Formatter::Console::ParallelSession'=> '3.43',
18227             'TAP::Formatter::Console::Session'=> '3.43',
18228             'TAP::Formatter::File' => '3.43',
18229             'TAP::Formatter::File::Session'=> '3.43',
18230             'TAP::Formatter::Session'=> '3.43',
18231             'TAP::Harness' => '3.43',
18232             'TAP::Harness::Env' => '3.43',
18233             'TAP::Object' => '3.43',
18234             'TAP::Parser' => '3.43',
18235             'TAP::Parser::Aggregator'=> '3.43',
18236             'TAP::Parser::Grammar' => '3.43',
18237             'TAP::Parser::Iterator' => '3.43',
18238             'TAP::Parser::Iterator::Array'=> '3.43',
18239             'TAP::Parser::Iterator::Process'=> '3.43',
18240             'TAP::Parser::Iterator::Stream'=> '3.43',
18241             'TAP::Parser::IteratorFactory'=> '3.43',
18242             'TAP::Parser::Multiplexer'=> '3.43',
18243             'TAP::Parser::Result' => '3.43',
18244             'TAP::Parser::Result::Bailout'=> '3.43',
18245             'TAP::Parser::Result::Comment'=> '3.43',
18246             'TAP::Parser::Result::Plan'=> '3.43',
18247             'TAP::Parser::Result::Pragma'=> '3.43',
18248             'TAP::Parser::Result::Test'=> '3.43',
18249             'TAP::Parser::Result::Unknown'=> '3.43',
18250             'TAP::Parser::Result::Version'=> '3.43',
18251             'TAP::Parser::Result::YAML'=> '3.43',
18252             'TAP::Parser::ResultFactory'=> '3.43',
18253             'TAP::Parser::Scheduler'=> '3.43',
18254             'TAP::Parser::Scheduler::Job'=> '3.43',
18255             'TAP::Parser::Scheduler::Spinner'=> '3.43',
18256             'TAP::Parser::Source' => '3.43',
18257             'TAP::Parser::SourceHandler'=> '3.43',
18258             'TAP::Parser::SourceHandler::Executable'=> '3.43',
18259             'TAP::Parser::SourceHandler::File'=> '3.43',
18260             'TAP::Parser::SourceHandler::Handle'=> '3.43',
18261             'TAP::Parser::SourceHandler::Perl'=> '3.43',
18262             'TAP::Parser::SourceHandler::RawTAP'=> '3.43',
18263             'TAP::Parser::YAMLish::Reader'=> '3.43',
18264             'TAP::Parser::YAMLish::Writer'=> '3.43',
18265             'Test::Harness' => '3.43',
18266             'Text::Balanced' => '2.04',
18267             'Time::HiRes' => '1.9766',
18268             'XS::APItest' => '1.14',
18269             'warnings' => '1.49',
18270             },
18271             removed => {
18272             }
18273             },
18274             5.033006 => {
18275             delta_from => 5.033005,
18276             changed => {
18277             'B::Op_private' => '5.033006',
18278             'Carp' => '1.52',
18279             'Carp::Heavy' => '1.52',
18280             'Compress::Raw::Bzip2' => '2.100',
18281             'Compress::Raw::Zlib' => '2.100',
18282             'Compress::Zlib' => '2.100',
18283             'Config' => '5.033006',
18284             'DynaLoader' => '1.50',
18285             'ExtUtils::Command' => '7.58',
18286             'ExtUtils::Command::MM' => '7.58',
18287             'ExtUtils::Liblist' => '7.58',
18288             'ExtUtils::Liblist::Kid'=> '7.58',
18289             'ExtUtils::MM' => '7.58',
18290             'ExtUtils::MM_AIX' => '7.58',
18291             'ExtUtils::MM_Any' => '7.58',
18292             'ExtUtils::MM_BeOS' => '7.58',
18293             'ExtUtils::MM_Cygwin' => '7.58',
18294             'ExtUtils::MM_DOS' => '7.58',
18295             'ExtUtils::MM_Darwin' => '7.58',
18296             'ExtUtils::MM_MacOS' => '7.58',
18297             'ExtUtils::MM_NW5' => '7.58',
18298             'ExtUtils::MM_OS2' => '7.58',
18299             'ExtUtils::MM_OS390' => '7.58',
18300             'ExtUtils::MM_QNX' => '7.58',
18301             'ExtUtils::MM_UWIN' => '7.58',
18302             'ExtUtils::MM_Unix' => '7.58',
18303             'ExtUtils::MM_VMS' => '7.58',
18304             'ExtUtils::MM_VOS' => '7.58',
18305             'ExtUtils::MM_Win32' => '7.58',
18306             'ExtUtils::MM_Win95' => '7.58',
18307             'ExtUtils::MY' => '7.58',
18308             'ExtUtils::MakeMaker' => '7.58',
18309             'ExtUtils::MakeMaker::Config'=> '7.58',
18310             'ExtUtils::MakeMaker::Locale'=> '7.58',
18311             'ExtUtils::MakeMaker::version'=> '7.58',
18312             'ExtUtils::MakeMaker::version::regex'=> '7.58',
18313             'ExtUtils::Manifest' => '1.73',
18314             'ExtUtils::Mkbootstrap' => '7.58',
18315             'ExtUtils::Mksymlists' => '7.58',
18316             'ExtUtils::testlib' => '7.58',
18317             'GDBM_File' => '1.19',
18318             'IO' => '1.45',
18319             'IO::Compress::Adapter::Bzip2'=> '2.100',
18320             'IO::Compress::Adapter::Deflate'=> '2.100',
18321             'IO::Compress::Adapter::Identity'=> '2.100',
18322             'IO::Compress::Base' => '2.100',
18323             'IO::Compress::Base::Common'=> '2.100',
18324             'IO::Compress::Bzip2' => '2.100',
18325             'IO::Compress::Deflate' => '2.100',
18326             'IO::Compress::Gzip' => '2.100',
18327             'IO::Compress::Gzip::Constants'=> '2.100',
18328             'IO::Compress::RawDeflate'=> '2.100',
18329             'IO::Compress::Zip' => '2.100',
18330             'IO::Compress::Zip::Constants'=> '2.100',
18331             'IO::Compress::Zlib::Constants'=> '2.100',
18332             'IO::Compress::Zlib::Extra'=> '2.100',
18333             'IO::Dir' => '1.45',
18334             'IO::File' => '1.45',
18335             'IO::Handle' => '1.45',
18336             'IO::Pipe' => '1.45',
18337             'IO::Poll' => '1.45',
18338             'IO::Seekable' => '1.45',
18339             'IO::Select' => '1.45',
18340             'IO::Socket' => '1.45',
18341             'IO::Socket::INET' => '1.45',
18342             'IO::Socket::UNIX' => '1.45',
18343             'IO::Uncompress::Adapter::Bunzip2'=> '2.100',
18344             'IO::Uncompress::Adapter::Identity'=> '2.100',
18345             'IO::Uncompress::Adapter::Inflate'=> '2.100',
18346             'IO::Uncompress::AnyInflate'=> '2.100',
18347             'IO::Uncompress::AnyUncompress'=> '2.100',
18348             'IO::Uncompress::Base' => '2.100',
18349             'IO::Uncompress::Bunzip2'=> '2.100',
18350             'IO::Uncompress::Gunzip'=> '2.100',
18351             'IO::Uncompress::Inflate'=> '2.100',
18352             'IO::Uncompress::RawInflate'=> '2.100',
18353             'IO::Uncompress::Unzip' => '2.100',
18354             'Module::CoreList' => '5.20210120',
18355             'Module::CoreList::Utils'=> '5.20210120',
18356             'Net::Cmd' => '3.13',
18357             'Net::Config' => '3.13',
18358             'Net::Domain' => '3.13',
18359             'Net::FTP' => '3.13',
18360             'Net::FTP::A' => '3.13',
18361             'Net::FTP::E' => '3.13',
18362             'Net::FTP::I' => '3.13',
18363             'Net::FTP::L' => '3.13',
18364             'Net::FTP::dataconn' => '3.13',
18365             'Net::NNTP' => '3.13',
18366             'Net::Netrc' => '3.13',
18367             'Net::POP3' => '3.13',
18368             'Net::SMTP' => '3.13',
18369             'Net::Time' => '3.13',
18370             'POSIX' => '1.97',
18371             'Socket' => '2.031',
18372             'XS::APItest' => '1.15',
18373             'feature' => '1.62',
18374             'warnings' => '1.50',
18375             },
18376             removed => {
18377             }
18378             },
18379             5.032001 => {
18380             delta_from => 5.032000,
18381             changed => {
18382             'B::Op_private' => '5.032001',
18383             'Config' => '5.032001',
18384             'Data::Dumper' => '2.174_01',
18385             'DynaLoader' => '1.47_01',
18386             'ExtUtils::Liblist::Kid'=> '7.44_01',
18387             'Module::CoreList' => '5.20210123',
18388             'Module::CoreList::Utils'=> '5.20210123',
18389             'Opcode' => '1.48',
18390             'Safe' => '2.41_01',
18391             'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
18392             },
18393             removed => {
18394             }
18395             },
18396             5.033007 => {
18397             delta_from => 5.033006,
18398             changed => {
18399             'B::Deparse' => '1.56',
18400             'B::Op_private' => '5.033007',
18401             'Config' => '5.033007',
18402             'ExtUtils::CBuilder' => '0.280236',
18403             'ExtUtils::CBuilder::Base'=> '0.280236',
18404             'ExtUtils::CBuilder::Platform::Unix'=> '0.280236',
18405             'ExtUtils::CBuilder::Platform::VMS'=> '0.280236',
18406             'ExtUtils::CBuilder::Platform::Windows'=> '0.280236',
18407             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280236',
18408             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280236',
18409             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280236',
18410             'ExtUtils::CBuilder::Platform::aix'=> '0.280236',
18411             'ExtUtils::CBuilder::Platform::android'=> '0.280236',
18412             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280236',
18413             'ExtUtils::CBuilder::Platform::darwin'=> '0.280236',
18414             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280236',
18415             'ExtUtils::CBuilder::Platform::os2'=> '0.280236',
18416             'ExtUtils::Command' => '7.60',
18417             'ExtUtils::Command::MM' => '7.60',
18418             'ExtUtils::Liblist' => '7.60',
18419             'ExtUtils::Liblist::Kid'=> '7.60',
18420             'ExtUtils::MM' => '7.60',
18421             'ExtUtils::MM_AIX' => '7.60',
18422             'ExtUtils::MM_Any' => '7.60',
18423             'ExtUtils::MM_BeOS' => '7.60',
18424             'ExtUtils::MM_Cygwin' => '7.60',
18425             'ExtUtils::MM_DOS' => '7.60',
18426             'ExtUtils::MM_Darwin' => '7.60',
18427             'ExtUtils::MM_MacOS' => '7.60',
18428             'ExtUtils::MM_NW5' => '7.60',
18429             'ExtUtils::MM_OS2' => '7.60',
18430             'ExtUtils::MM_OS390' => '7.60',
18431             'ExtUtils::MM_QNX' => '7.60',
18432             'ExtUtils::MM_UWIN' => '7.60',
18433             'ExtUtils::MM_Unix' => '7.60',
18434             'ExtUtils::MM_VMS' => '7.60',
18435             'ExtUtils::MM_VOS' => '7.60',
18436             'ExtUtils::MM_Win32' => '7.60',
18437             'ExtUtils::MM_Win95' => '7.60',
18438             'ExtUtils::MY' => '7.60',
18439             'ExtUtils::MakeMaker' => '7.60',
18440             'ExtUtils::MakeMaker::Config'=> '7.60',
18441             'ExtUtils::MakeMaker::Locale'=> '7.60',
18442             'ExtUtils::MakeMaker::version'=> '7.60',
18443             'ExtUtils::MakeMaker::version::regex'=> '7.60',
18444             'ExtUtils::Mkbootstrap' => '7.60',
18445             'ExtUtils::Mksymlists' => '7.60',
18446             'ExtUtils::PL2Bat' => '0.004',
18447             'ExtUtils::testlib' => '7.60',
18448             'Fatal' => '2.34',
18449             'File::Find' => '1.39',
18450             'Hash::Util' => '0.25',
18451             'IO' => '1.46',
18452             'IO::Dir' => '1.46',
18453             'IO::File' => '1.46',
18454             'IO::Handle' => '1.46',
18455             'IO::Pipe' => '1.46',
18456             'IO::Poll' => '1.46',
18457             'IO::Seekable' => '1.46',
18458             'IO::Select' => '1.46',
18459             'IO::Socket' => '1.46',
18460             'IO::Socket::INET' => '1.46',
18461             'IO::Socket::UNIX' => '1.46',
18462             'JSON::PP' => '4.06',
18463             'JSON::PP::Boolean' => '4.06',
18464             'Module::CoreList' => '5.20210220',
18465             'Module::CoreList::Utils'=> '5.20210220',
18466             'Opcode' => '1.50',
18467             'PerlIO::encoding' => '0.30',
18468             'Time::HiRes' => '1.9767',
18469             'autodie' => '2.34',
18470             'autodie::Scope::Guard' => '2.34',
18471             'autodie::Scope::GuardStack'=> '2.34',
18472             'autodie::Util' => '2.34',
18473             'autodie::exception' => '2.34',
18474             'autodie::exception::system'=> '2.34',
18475             'autodie::hints' => '2.34',
18476             'autodie::skip' => '2.34',
18477             'feature' => '1.63',
18478             'mro' => '1.25_001',
18479             'warnings' => '1.51',
18480             },
18481             removed => {
18482             }
18483             },
18484             5.033008 => {
18485             delta_from => 5.033007,
18486             changed => {
18487             'B::Op_private' => '5.033008',
18488             'Compress::Raw::Bzip2' => '2.101',
18489             'Compress::Raw::Zlib' => '2.101',
18490             'Compress::Zlib' => '2.102',
18491             'Config' => '5.033008',
18492             'Data::Dumper' => '2.177',
18493             'IO::Compress::Adapter::Bzip2'=> '2.102',
18494             'IO::Compress::Adapter::Deflate'=> '2.102',
18495             'IO::Compress::Adapter::Identity'=> '2.102',
18496             'IO::Compress::Base' => '2.102',
18497             'IO::Compress::Base::Common'=> '2.102',
18498             'IO::Compress::Bzip2' => '2.102',
18499             'IO::Compress::Deflate' => '2.102',
18500             'IO::Compress::Gzip' => '2.102',
18501             'IO::Compress::Gzip::Constants'=> '2.102',
18502             'IO::Compress::RawDeflate'=> '2.102',
18503             'IO::Compress::Zip' => '2.102',
18504             'IO::Compress::Zip::Constants'=> '2.102',
18505             'IO::Compress::Zlib::Constants'=> '2.102',
18506             'IO::Compress::Zlib::Extra'=> '2.102',
18507             'IO::Uncompress::Adapter::Bunzip2'=> '2.102',
18508             'IO::Uncompress::Adapter::Identity'=> '2.102',
18509             'IO::Uncompress::Adapter::Inflate'=> '2.102',
18510             'IO::Uncompress::AnyInflate'=> '2.102',
18511             'IO::Uncompress::AnyUncompress'=> '2.102',
18512             'IO::Uncompress::Base' => '2.102',
18513             'IO::Uncompress::Bunzip2'=> '2.102',
18514             'IO::Uncompress::Gunzip'=> '2.102',
18515             'IO::Uncompress::Inflate'=> '2.102',
18516             'IO::Uncompress::RawInflate'=> '2.102',
18517             'IO::Uncompress::Unzip' => '2.102',
18518             'Module::CoreList' => '5.20210320',
18519             'Module::CoreList::Utils'=> '5.20210320',
18520             'Pod::Html' => '1.27',
18521             'Win32' => '0.57',
18522             },
18523             removed => {
18524             }
18525             },
18526             5.033009 => {
18527             delta_from => 5.033008,
18528             changed => {
18529             'B::Op_private' => '5.033009',
18530             'Config' => '5.033009',
18531             'Data::Dumper' => '2.178',
18532             'ExtUtils::Command' => '7.62',
18533             'ExtUtils::Command::MM' => '7.62',
18534             'ExtUtils::Liblist' => '7.62',
18535             'ExtUtils::Liblist::Kid'=> '7.62',
18536             'ExtUtils::MM' => '7.62',
18537             'ExtUtils::MM_AIX' => '7.62',
18538             'ExtUtils::MM_Any' => '7.62',
18539             'ExtUtils::MM_BeOS' => '7.62',
18540             'ExtUtils::MM_Cygwin' => '7.62',
18541             'ExtUtils::MM_DOS' => '7.62',
18542             'ExtUtils::MM_Darwin' => '7.62',
18543             'ExtUtils::MM_MacOS' => '7.62',
18544             'ExtUtils::MM_NW5' => '7.62',
18545             'ExtUtils::MM_OS2' => '7.62',
18546             'ExtUtils::MM_OS390' => '7.62',
18547             'ExtUtils::MM_QNX' => '7.62',
18548             'ExtUtils::MM_UWIN' => '7.62',
18549             'ExtUtils::MM_Unix' => '7.62',
18550             'ExtUtils::MM_VMS' => '7.62',
18551             'ExtUtils::MM_VOS' => '7.62',
18552             'ExtUtils::MM_Win32' => '7.62',
18553             'ExtUtils::MM_Win95' => '7.62',
18554             'ExtUtils::MY' => '7.62',
18555             'ExtUtils::MakeMaker' => '7.62',
18556             'ExtUtils::MakeMaker::Config'=> '7.62',
18557             'ExtUtils::MakeMaker::Locale'=> '7.62',
18558             'ExtUtils::MakeMaker::version'=> '7.62',
18559             'ExtUtils::MakeMaker::version::regex'=> '7.62',
18560             'ExtUtils::Mkbootstrap' => '7.62',
18561             'ExtUtils::Mksymlists' => '7.62',
18562             'ExtUtils::ParseXS' => '3.43',
18563             'ExtUtils::ParseXS::Constants'=> '3.43',
18564             'ExtUtils::ParseXS::CountLines'=> '3.43',
18565             'ExtUtils::ParseXS::Eval'=> '3.43',
18566             'ExtUtils::ParseXS::Utilities'=> '3.43',
18567             'ExtUtils::Typemaps' => '3.43',
18568             'ExtUtils::Typemaps::Cmd'=> '3.43',
18569             'ExtUtils::Typemaps::InputMap'=> '3.43',
18570             'ExtUtils::Typemaps::OutputMap'=> '3.43',
18571             'ExtUtils::Typemaps::Type'=> '3.43',
18572             'ExtUtils::testlib' => '7.62',
18573             'Module::CoreList' => '5.20210420',
18574             'Module::CoreList::Utils'=> '5.20210420',
18575             'NEXT' => '0.68',
18576             'XS::APItest' => '1.16',
18577             'feature' => '1.64',
18578             'perlfaq' => '5.20210411',
18579             },
18580             removed => {
18581             }
18582             },
18583             5.034000 => {
18584             delta_from => 5.033009,
18585             changed => {
18586             'B::Op_private' => '5.034000',
18587             'Config' => '5.034',
18588             'Data::Dumper' => '2.179',
18589             'Module::CoreList' => '5.20210520',
18590             'Module::CoreList::Utils'=> '5.20210520',
18591             'experimental' => '0.024',
18592             },
18593             removed => {
18594             }
18595             },
18596             5.035000 => {
18597             delta_from => 5.034,
18598             changed => {
18599             'B::Op_private' => '5.035000',
18600             'Config' => '5.035',
18601             'Module::CoreList' => '5.20210521',
18602             'Module::CoreList::Utils'=> '5.20210521',
18603             'feature' => '1.65',
18604             },
18605             removed => {
18606             }
18607             },
18608             5.035001 => {
18609             delta_from => 5.035000,
18610             changed => {
18611             'B::Deparse' => '1.57',
18612             'B::Op_private' => '5.035001',
18613             'Config' => '5.035001',
18614             'Cwd' => '3.81',
18615             'Data::Dumper' => '2.181',
18616             'File::Copy' => '2.36',
18617             'File::Glob' => '1.35',
18618             'File::Spec' => '3.81',
18619             'File::Spec::AmigaOS' => '3.81',
18620             'File::Spec::Cygwin' => '3.81',
18621             'File::Spec::Epoc' => '3.81',
18622             'File::Spec::Functions' => '3.81',
18623             'File::Spec::Mac' => '3.81',
18624             'File::Spec::OS2' => '3.81',
18625             'File::Spec::Unix' => '3.81',
18626             'File::Spec::VMS' => '3.81',
18627             'File::Spec::Win32' => '3.81',
18628             'File::stat' => '1.10',
18629             'IO' => '1.47',
18630             'IO::Dir' => '1.47',
18631             'IO::File' => '1.47',
18632             'IO::Handle' => '1.47',
18633             'IO::Pipe' => '1.47',
18634             'IO::Poll' => '1.47',
18635             'IO::Seekable' => '1.47',
18636             'IO::Select' => '1.47',
18637             'IO::Socket' => '1.47',
18638             'IO::Socket::INET' => '1.47',
18639             'IO::Socket::UNIX' => '1.47',
18640             'List::Util' => '1.56',
18641             'List::Util::XS' => '1.56',
18642             'Module::CoreList' => '5.20210620',
18643             'Module::CoreList::Utils'=> '5.20210620',
18644             'Opcode' => '1.51',
18645             'POSIX' => '1.98',
18646             'Scalar::Util' => '1.56',
18647             'Socket' => '2.032',
18648             'Sub::Util' => '1.56',
18649             'Test2' => '1.302185',
18650             'Test2::API' => '1.302185',
18651             'Test2::API::Breakage' => '1.302185',
18652             'Test2::API::Context' => '1.302185',
18653             'Test2::API::Instance' => '1.302185',
18654             'Test2::API::InterceptResult'=> '1.302185',
18655             'Test2::API::InterceptResult::Event'=> '1.302185',
18656             'Test2::API::InterceptResult::Facet'=> '1.302185',
18657             'Test2::API::InterceptResult::Hub'=> '1.302185',
18658             'Test2::API::InterceptResult::Squasher'=> '1.302185',
18659             'Test2::API::Stack' => '1.302185',
18660             'Test2::Event' => '1.302185',
18661             'Test2::Event::Bail' => '1.302185',
18662             'Test2::Event::Diag' => '1.302185',
18663             'Test2::Event::Encoding'=> '1.302185',
18664             'Test2::Event::Exception'=> '1.302185',
18665             'Test2::Event::Fail' => '1.302185',
18666             'Test2::Event::Generic' => '1.302185',
18667             'Test2::Event::Note' => '1.302185',
18668             'Test2::Event::Ok' => '1.302185',
18669             'Test2::Event::Pass' => '1.302185',
18670             'Test2::Event::Plan' => '1.302185',
18671             'Test2::Event::Skip' => '1.302185',
18672             'Test2::Event::Subtest' => '1.302185',
18673             'Test2::Event::TAP::Version'=> '1.302185',
18674             'Test2::Event::V2' => '1.302185',
18675             'Test2::Event::Waiting' => '1.302185',
18676             'Test2::EventFacet' => '1.302185',
18677             'Test2::EventFacet::About'=> '1.302185',
18678             'Test2::EventFacet::Amnesty'=> '1.302185',
18679             'Test2::EventFacet::Assert'=> '1.302185',
18680             'Test2::EventFacet::Control'=> '1.302185',
18681             'Test2::EventFacet::Error'=> '1.302185',
18682             'Test2::EventFacet::Hub'=> '1.302185',
18683             'Test2::EventFacet::Info'=> '1.302185',
18684             'Test2::EventFacet::Info::Table'=> '1.302185',
18685             'Test2::EventFacet::Meta'=> '1.302185',
18686             'Test2::EventFacet::Parent'=> '1.302185',
18687             'Test2::EventFacet::Plan'=> '1.302185',
18688             'Test2::EventFacet::Render'=> '1.302185',
18689             'Test2::EventFacet::Trace'=> '1.302185',
18690             'Test2::Formatter' => '1.302185',
18691             'Test2::Formatter::TAP' => '1.302185',
18692             'Test2::Hub' => '1.302185',
18693             'Test2::Hub::Interceptor'=> '1.302185',
18694             'Test2::Hub::Interceptor::Terminator'=> '1.302185',
18695             'Test2::Hub::Subtest' => '1.302185',
18696             'Test2::IPC' => '1.302185',
18697             'Test2::IPC::Driver' => '1.302185',
18698             'Test2::IPC::Driver::Files'=> '1.302185',
18699             'Test2::Tools::Tiny' => '1.302185',
18700             'Test2::Util' => '1.302185',
18701             'Test2::Util::ExternalMeta'=> '1.302185',
18702             'Test2::Util::Facets2Legacy'=> '1.302185',
18703             'Test2::Util::HashBase' => '1.302185',
18704             'Test2::Util::Trace' => '1.302185',
18705             'Test::Builder' => '1.302185',
18706             'Test::Builder::Formatter'=> '1.302185',
18707             'Test::Builder::Module' => '1.302185',
18708             'Test::Builder::Tester' => '1.302185',
18709             'Test::Builder::Tester::Color'=> '1.302185',
18710             'Test::Builder::TodoDiag'=> '1.302185',
18711             'Test::More' => '1.302185',
18712             'Test::Simple' => '1.302185',
18713             'Test::Tester' => '1.302185',
18714             'Test::Tester::Capture' => '1.302185',
18715             'Test::Tester::CaptureRunner'=> '1.302185',
18716             'Test::Tester::Delegate'=> '1.302185',
18717             'Test::use::ok' => '1.302185',
18718             'Unicode::Collate' => '1.30',
18719             'Unicode::Collate::CJK::Big5'=> '1.30',
18720             'Unicode::Collate::CJK::GB2312'=> '1.30',
18721             'Unicode::Collate::CJK::JISX0208'=> '1.30',
18722             'Unicode::Collate::CJK::Korean'=> '1.30',
18723             'Unicode::Collate::CJK::Pinyin'=> '1.30',
18724             'Unicode::Collate::CJK::Stroke'=> '1.30',
18725             'Unicode::Collate::CJK::Zhuyin'=> '1.30',
18726             'Unicode::Collate::Locale'=> '1.30',
18727             'Unicode::UCD' => '0.76',
18728             'XS::APItest' => '1.17',
18729             'feature' => '1.66',
18730             'ok' => '1.302185',
18731             'open' => '1.13',
18732             'perlfaq' => '5.20210520',
18733             'version' => '0.9929',
18734             'version::regex' => '0.9929',
18735             },
18736             removed => {
18737             }
18738             },
18739             5.035002 => {
18740             delta_from => 5.035001,
18741             changed => {
18742             'Amiga::ARexx' => '0.06',
18743             'Amiga::Exec' => '0.03',
18744             'B::Concise' => '1.005',
18745             'B::Op_private' => '5.035002',
18746             'Config' => '5.035002',
18747             'Cwd' => '3.82',
18748             'DB_File' => '1.856',
18749             'Data::Dumper' => '2.183',
18750             'Devel::PPPort' => '3.63',
18751             'Devel::Peek' => '1.31',
18752             'DynaLoader' => '1.51',
18753             'Encode' => '3.10',
18754             'Encode::JP' => '2.05',
18755             'Errno' => '1.34',
18756             'ExtUtils::Miniperl' => '1.11',
18757             'Fcntl' => '1.15',
18758             'File::Find' => '1.39_01',
18759             'File::Glob' => '1.36',
18760             'File::stat' => '1.11',
18761             'GDBM_File' => '1.20',
18762             'Hash::Util' => '0.26',
18763             'Hash::Util::FieldHash' => '1.22',
18764             'I18N::Langinfo' => '0.20',
18765             'IPC::Open2' => '1.06',
18766             'IPC::Open3' => '1.22',
18767             'Math::BigFloat' => '1.999823',
18768             'Math::BigFloat::Trace' => '0.53',
18769             'Math::BigInt' => '1.999823',
18770             'Math::BigInt::Calc' => '1.999823',
18771             'Math::BigInt::FastCalc'=> '0.5010',
18772             'Math::BigInt::Lib' => '1.999823',
18773             'Math::BigInt::Trace' => '0.53',
18774             'Math::BigRat' => '0.2617',
18775             'Module::CoreList' => '5.20210723',
18776             'Module::CoreList::Utils'=> '5.20210723',
18777             'Opcode' => '1.52',
18778             'PerlIO' => '1.12',
18779             'Pod::Functions' => '1.14',
18780             'Pod::Html' => '1.31',
18781             'Pod::Html::Util' => '1.31',
18782             'Pod::Simple' => '3.43',
18783             'Pod::Simple::BlackBox' => '3.43',
18784             'Pod::Simple::Checker' => '3.43',
18785             'Pod::Simple::Debug' => '3.43',
18786             'Pod::Simple::DumpAsText'=> '3.43',
18787             'Pod::Simple::DumpAsXML'=> '3.43',
18788             'Pod::Simple::HTML' => '3.43',
18789             'Pod::Simple::HTMLBatch'=> '3.43',
18790             'Pod::Simple::LinkSection'=> '3.43',
18791             'Pod::Simple::Methody' => '3.43',
18792             'Pod::Simple::Progress' => '3.43',
18793             'Pod::Simple::PullParser'=> '3.43',
18794             'Pod::Simple::PullParserEndToken'=> '3.43',
18795             'Pod::Simple::PullParserStartToken'=> '3.43',
18796             'Pod::Simple::PullParserTextToken'=> '3.43',
18797             'Pod::Simple::PullParserToken'=> '3.43',
18798             'Pod::Simple::RTF' => '3.43',
18799             'Pod::Simple::Search' => '3.43',
18800             'Pod::Simple::SimpleTree'=> '3.43',
18801             'Pod::Simple::Text' => '3.43',
18802             'Pod::Simple::TextContent'=> '3.43',
18803             'Pod::Simple::TiedOutFH'=> '3.43',
18804             'Pod::Simple::Transcode'=> '3.43',
18805             'Pod::Simple::TranscodeDumb'=> '3.43',
18806             'Pod::Simple::TranscodeSmart'=> '3.43',
18807             'Pod::Simple::XHTML' => '3.43',
18808             'Pod::Simple::XMLOutStream'=> '3.43',
18809             'Sys::Hostname' => '1.24',
18810             'Text::Tabs' => '2021.0717',
18811             'Text::Wrap' => '2021.0717',
18812             'Time::HiRes' => '1.9768',
18813             'Unicode::UCD' => '0.77',
18814             'VMS::Filespec' => '1.13',
18815             'VMS::Stdio' => '2.46',
18816             'XSLoader' => '0.31',
18817             'bigint' => '0.53',
18818             'bignum' => '0.53',
18819             'bigrat' => '0.53',
18820             'if' => '0.0610',
18821             'threads' => '2.27',
18822             'warnings' => '1.52',
18823             },
18824             removed => {
18825             }
18826             },
18827             5.035003 => {
18828             delta_from => 5.035002,
18829             changed => {
18830             'Archive::Tar' => '2.40',
18831             'Archive::Tar::Constant'=> '2.40',
18832             'Archive::Tar::File' => '2.40',
18833             'B::Op_private' => '5.035003',
18834             'Config' => '5.035003',
18835             'Encode' => '3.12',
18836             'Encode::GSM0338' => '2.10',
18837             'Encode::Unicode' => '2.19',
18838             'Module::CoreList' => '5.20210820',
18839             'Module::CoreList::Utils'=> '5.20210820',
18840             'Net::hostent' => '1.03',
18841             'Opcode' => '1.53',
18842             'POSIX' => '1.99',
18843             'Pod::Html' => '1.32',
18844             'Pod::Html::Util' => '1.32',
18845             'Storable' => '3.24',
18846             'Text::Tabs' => '2021.0804',
18847             'Text::Wrap' => '2021.0804',
18848             'Time::HiRes' => '1.9769',
18849             'Unicode::Normalize' => '1.30',
18850             'XS::APItest' => '1.18',
18851             'diagnostics' => '1.38',
18852             'feature' => '1.67',
18853             'sort' => '2.05',
18854             'threads::shared' => '1.63',
18855             'warnings' => '1.53',
18856             },
18857             removed => {
18858             }
18859             },
18860             5.035004 => {
18861             delta_from => 5.035003,
18862             changed => {
18863             'B' => '1.83',
18864             'B::Deparse' => '1.58',
18865             'B::Op_private' => '5.035004',
18866             'Config' => '5.035004',
18867             'Devel::Peek' => '1.32',
18868             'Exporter' => '5.77',
18869             'Exporter::Heavy' => '5.77',
18870             'ExtUtils::ParseXS' => '3.44',
18871             'ExtUtils::ParseXS::Constants'=> '3.44',
18872             'ExtUtils::ParseXS::CountLines'=> '3.44',
18873             'ExtUtils::ParseXS::Eval'=> '3.44',
18874             'ExtUtils::ParseXS::Utilities'=> '3.44',
18875             'ExtUtils::Typemaps' => '3.44',
18876             'ExtUtils::Typemaps::Cmd'=> '3.44',
18877             'ExtUtils::Typemaps::InputMap'=> '3.44',
18878             'ExtUtils::Typemaps::OutputMap'=> '3.44',
18879             'ExtUtils::Typemaps::Type'=> '3.44',
18880             'Hash::Util::FieldHash' => '1.23',
18881             'IO' => '1.48',
18882             'IO::Dir' => '1.48',
18883             'IO::File' => '1.48',
18884             'IO::Handle' => '1.48',
18885             'IO::Pipe' => '1.48',
18886             'IO::Poll' => '1.48',
18887             'IO::Seekable' => '1.48',
18888             'IO::Select' => '1.48',
18889             'IO::Socket' => '1.48',
18890             'IO::Socket::INET' => '1.48',
18891             'IO::Socket::UNIX' => '1.48',
18892             'List::Util' => '1.56_001',
18893             'List::Util::XS' => '1.56_001',
18894             'Module::CoreList' => '5.20210920',
18895             'Module::CoreList::Utils'=> '5.20210920',
18896             'Opcode' => '1.54',
18897             'Pod::Html' => '1.33',
18898             'Pod::Html::Util' => '1.33',
18899             'Scalar::Util' => '1.56_001',
18900             'Storable' => '3.25',
18901             'Sub::Util' => '1.56_001',
18902             'Text::Tabs' => '2021.0814',
18903             'Text::Wrap' => '2021.0814',
18904             'UNIVERSAL' => '1.14',
18905             'Unicode' => '14.0.0',
18906             'Unicode::Collate' => '1.31',
18907             'Unicode::Collate::CJK::Big5'=> '1.31',
18908             'Unicode::Collate::CJK::GB2312'=> '1.31',
18909             'Unicode::Collate::CJK::JISX0208'=> '1.31',
18910             'Unicode::Collate::CJK::Korean'=> '1.31',
18911             'Unicode::Collate::CJK::Pinyin'=> '1.31',
18912             'Unicode::Collate::CJK::Stroke'=> '1.31',
18913             'Unicode::Collate::CJK::Zhuyin'=> '1.31',
18914             'Unicode::Collate::Locale'=> '1.31',
18915             'Unicode::UCD' => '0.78',
18916             'XS::APItest' => '1.19',
18917             'XS::Typemap' => '0.19',
18918             'attributes' => '0.34',
18919             'feature' => '1.68',
18920             'mro' => '1.26',
18921             'threads::shared' => '1.64',
18922             'warnings' => '1.54',
18923             },
18924             removed => {
18925             }
18926             },
18927             5.035005 => {
18928             delta_from => 5.035004,
18929             changed => {
18930             'B::Concise' => '1.006',
18931             'B::Deparse' => '1.59',
18932             'B::Op_private' => '5.035005',
18933             'Config' => '5.035005',
18934             'Digest' => '1.20',
18935             'Digest::base' => '1.20',
18936             'Digest::file' => '1.20',
18937             'DynaLoader' => '1.52',
18938             'Encode' => '3.16',
18939             'Errno' => '1.35',
18940             'File::Copy' => '2.37',
18941             'File::Spec::Unix' => '3.82',
18942             'FindBin' => '1.53',
18943             'GDBM_File' => '1.21',
18944             'HTTP::Tiny' => '0.078',
18945             'I18N::Langinfo' => '0.21',
18946             'IO::Dir' => '1.49',
18947             'IO::Pipe' => '1.49',
18948             'IO::Poll' => '1.49',
18949             'IO::Select' => '1.49',
18950             'IO::Socket' => '1.49',
18951             'IO::Socket::INET' => '1.49',
18952             'IO::Socket::UNIX' => '1.49',
18953             'List::Util' => '1.60',
18954             'List::Util::XS' => '1.60',
18955             'Math::BigRat::Trace' => '0.63',
18956             'Module::CoreList' => '5.20211020',
18957             'Module::CoreList::Utils'=> '5.20211020',
18958             'POSIX' => '2.01',
18959             'Scalar::Util' => '1.60',
18960             'Sub::Util' => '1.60',
18961             'Test2' => '1.302188',
18962             'Test2::API' => '1.302188',
18963             'Test2::API::Breakage' => '1.302188',
18964             'Test2::API::Context' => '1.302188',
18965             'Test2::API::Instance' => '1.302188',
18966             'Test2::API::InterceptResult'=> '1.302188',
18967             'Test2::API::InterceptResult::Event'=> '1.302188',
18968             'Test2::API::InterceptResult::Facet'=> '1.302188',
18969             'Test2::API::InterceptResult::Hub'=> '1.302188',
18970             'Test2::API::InterceptResult::Squasher'=> '1.302188',
18971             'Test2::API::Stack' => '1.302188',
18972             'Test2::Event' => '1.302188',
18973             'Test2::Event::Bail' => '1.302188',
18974             'Test2::Event::Diag' => '1.302188',
18975             'Test2::Event::Encoding'=> '1.302188',
18976             'Test2::Event::Exception'=> '1.302188',
18977             'Test2::Event::Fail' => '1.302188',
18978             'Test2::Event::Generic' => '1.302188',
18979             'Test2::Event::Note' => '1.302188',
18980             'Test2::Event::Ok' => '1.302188',
18981             'Test2::Event::Pass' => '1.302188',
18982             'Test2::Event::Plan' => '1.302188',
18983             'Test2::Event::Skip' => '1.302188',
18984             'Test2::Event::Subtest' => '1.302188',
18985             'Test2::Event::TAP::Version'=> '1.302188',
18986             'Test2::Event::V2' => '1.302188',
18987             'Test2::Event::Waiting' => '1.302188',
18988             'Test2::EventFacet' => '1.302188',
18989             'Test2::EventFacet::About'=> '1.302188',
18990             'Test2::EventFacet::Amnesty'=> '1.302188',
18991             'Test2::EventFacet::Assert'=> '1.302188',
18992             'Test2::EventFacet::Control'=> '1.302188',
18993             'Test2::EventFacet::Error'=> '1.302188',
18994             'Test2::EventFacet::Hub'=> '1.302188',
18995             'Test2::EventFacet::Info'=> '1.302188',
18996             'Test2::EventFacet::Info::Table'=> '1.302188',
18997             'Test2::EventFacet::Meta'=> '1.302188',
18998             'Test2::EventFacet::Parent'=> '1.302188',
18999             'Test2::EventFacet::Plan'=> '1.302188',
19000             'Test2::EventFacet::Render'=> '1.302188',
19001             'Test2::EventFacet::Trace'=> '1.302188',
19002             'Test2::Formatter' => '1.302188',
19003             'Test2::Formatter::TAP' => '1.302188',
19004             'Test2::Hub' => '1.302188',
19005             'Test2::Hub::Interceptor'=> '1.302188',
19006             'Test2::Hub::Interceptor::Terminator'=> '1.302188',
19007             'Test2::Hub::Subtest' => '1.302188',
19008             'Test2::IPC' => '1.302188',
19009             'Test2::IPC::Driver' => '1.302188',
19010             'Test2::IPC::Driver::Files'=> '1.302188',
19011             'Test2::Tools::Tiny' => '1.302188',
19012             'Test2::Util' => '1.302188',
19013             'Test2::Util::ExternalMeta'=> '1.302188',
19014             'Test2::Util::Facets2Legacy'=> '1.302188',
19015             'Test2::Util::HashBase' => '1.302188',
19016             'Test2::Util::Trace' => '1.302188',
19017             'Test::Builder' => '1.302188',
19018             'Test::Builder::Formatter'=> '1.302188',
19019             'Test::Builder::Module' => '1.302188',
19020             'Test::Builder::Tester' => '1.302188',
19021             'Test::Builder::Tester::Color'=> '1.302188',
19022             'Test::Builder::TodoDiag'=> '1.302188',
19023             'Test::More' => '1.302188',
19024             'Test::Simple' => '1.302188',
19025             'Test::Tester' => '1.302188',
19026             'Test::Tester::Capture' => '1.302188',
19027             'Test::Tester::CaptureRunner'=> '1.302188',
19028             'Test::Tester::Delegate'=> '1.302188',
19029             'Test::use::ok' => '1.302188',
19030             'Tie::Handle' => '4.3',
19031             'Tie::Hash' => '1.06',
19032             'Tie::Scalar' => '1.06',
19033             'XS::APItest' => '1.20',
19034             'experimental' => '0.025',
19035             'ok' => '1.302188',
19036             'warnings' => '1.55',
19037             },
19038             removed => {
19039             }
19040             },
19041             5.035006 => {
19042             delta_from => 5.035005,
19043             changed => {
19044             'B::Op_private' => '5.035006',
19045             'Config' => '5.035006',
19046             'File::Glob' => '1.37',
19047             'File::stat' => '1.12',
19048             'GDBM_File' => '1.22',
19049             'HTTP::Tiny' => '0.080',
19050             'Math::BigFloat' => '1.999827',
19051             'Math::BigFloat::Trace' => '0.63',
19052             'Math::BigInt' => '1.999827',
19053             'Math::BigInt::Calc' => '1.999827',
19054             'Math::BigInt::FastCalc'=> '0.5012',
19055             'Math::BigInt::Lib' => '1.999827',
19056             'Math::BigInt::Trace' => '0.63',
19057             'Math::BigRat' => '0.2620',
19058             'Module::CoreList' => '5.20211120',
19059             'Module::CoreList::Utils'=> '5.20211120',
19060             'POSIX' => '2.02',
19061             'bigint' => '0.63',
19062             'bignum' => '0.63',
19063             'bigrat' => '0.63',
19064             'diagnostics' => '1.39',
19065             'feature' => '1.69',
19066             'warnings' => '1.56',
19067             },
19068             removed => {
19069             }
19070             },
19071             5.035007 => {
19072             delta_from => 5.035006,
19073             changed => {
19074             'B::Deparse' => '1.60',
19075             'B::Op_private' => '5.035007',
19076             'CPAN' => '2.29',
19077             'CPAN::Distribution' => '2.29',
19078             'CPAN::FTP' => '5.5014',
19079             'CPAN::FirstTime' => '5.5316',
19080             'CPAN::HandleConfig' => '5.5012',
19081             'CPAN::Index' => '2.29',
19082             'Config' => '5.035007',
19083             'Cwd' => '3.83',
19084             'ExtUtils::Command' => '7.64',
19085             'ExtUtils::Command::MM' => '7.64',
19086             'ExtUtils::Liblist' => '7.64',
19087             'ExtUtils::Liblist::Kid'=> '7.64',
19088             'ExtUtils::MM' => '7.64',
19089             'ExtUtils::MM_AIX' => '7.64',
19090             'ExtUtils::MM_Any' => '7.64',
19091             'ExtUtils::MM_BeOS' => '7.64',
19092             'ExtUtils::MM_Cygwin' => '7.64',
19093             'ExtUtils::MM_DOS' => '7.64',
19094             'ExtUtils::MM_Darwin' => '7.64',
19095             'ExtUtils::MM_MacOS' => '7.64',
19096             'ExtUtils::MM_NW5' => '7.64',
19097             'ExtUtils::MM_OS2' => '7.64',
19098             'ExtUtils::MM_OS390' => '7.64',
19099             'ExtUtils::MM_QNX' => '7.64',
19100             'ExtUtils::MM_UWIN' => '7.64',
19101             'ExtUtils::MM_Unix' => '7.64',
19102             'ExtUtils::MM_VMS' => '7.64',
19103             'ExtUtils::MM_VOS' => '7.64',
19104             'ExtUtils::MM_Win32' => '7.64',
19105             'ExtUtils::MM_Win95' => '7.64',
19106             'ExtUtils::MY' => '7.64',
19107             'ExtUtils::MakeMaker' => '7.64',
19108             'ExtUtils::MakeMaker::Config'=> '7.64',
19109             'ExtUtils::MakeMaker::Locale'=> '7.64',
19110             'ExtUtils::MakeMaker::version'=> '7.64',
19111             'ExtUtils::MakeMaker::version::regex'=> '7.64',
19112             'ExtUtils::Mkbootstrap' => '7.64',
19113             'ExtUtils::Mksymlists' => '7.64',
19114             'ExtUtils::testlib' => '7.64',
19115             'File::Compare' => '1.1007',
19116             'File::Copy' => '2.38',
19117             'File::Spec' => '3.83',
19118             'File::Spec::AmigaOS' => '3.83',
19119             'File::Spec::Cygwin' => '3.83',
19120             'File::Spec::Epoc' => '3.83',
19121             'File::Spec::Functions' => '3.83',
19122             'File::Spec::Mac' => '3.83',
19123             'File::Spec::OS2' => '3.83',
19124             'File::Spec::Unix' => '3.83',
19125             'File::Spec::VMS' => '3.83',
19126             'File::Spec::Win32' => '3.83',
19127             'Hash::Util' => '0.27',
19128             'Hash::Util::FieldHash' => '1.24',
19129             'IO' => '1.49',
19130             'JSON::PP' => '4.07',
19131             'JSON::PP::Boolean' => '4.07',
19132             'Math::BigFloat' => '1.999828',
19133             'Math::BigInt' => '1.999828',
19134             'Math::BigInt::Calc' => '1.999828',
19135             'Math::BigInt::Lib' => '1.999828',
19136             'Module::CoreList' => '5.20211220',
19137             'Module::CoreList::Utils'=> '5.20211220',
19138             'Opcode' => '1.55',
19139             'builtin' => '0.001',
19140             'overload' => '1.34',
19141             },
19142             removed => {
19143             }
19144             },
19145             5.035008 => {
19146             delta_from => 5.035007,
19147             changed => {
19148             'B::Deparse' => '1.61',
19149             'B::Op_private' => '5.035008',
19150             'Config' => '5.035008',
19151             'Data::Dumper' => '2.184',
19152             'Errno' => '1.36',
19153             'File::Fetch' => '1.04',
19154             'File::Find' => '1.40',
19155             'Hash::Util::FieldHash' => '1.25',
19156             'Locale::Maketext' => '1.30',
19157             'Math::BigFloat' => '1.999829',
19158             'Math::BigFloat::Trace' => '0.64',
19159             'Math::BigInt' => '1.999829',
19160             'Math::BigInt::Calc' => '1.999829',
19161             'Math::BigInt::Lib' => '1.999829',
19162             'Math::BigInt::Trace' => '0.64',
19163             'Math::BigRat::Trace' => '0.64',
19164             'Module::CoreList' => '5.20220120',
19165             'Module::CoreList::Utils'=> '5.20220120',
19166             'NEXT' => '0.69',
19167             'POSIX' => '2.03',
19168             'Win32' => '0.58',
19169             '_charnames' => '1.49',
19170             'bigint' => '0.64',
19171             'bignum' => '0.64',
19172             'bigrat' => '0.64',
19173             'charnames' => '1.49',
19174             },
19175             removed => {
19176             }
19177             },
19178             5.035009 => {
19179             delta_from => 5.035008,
19180             changed => {
19181             'App::Cpan' => '1.678',
19182             'B::Deparse' => '1.62',
19183             'B::Op_private' => '5.035009',
19184             'CPAN' => '2.33',
19185             'CPAN::Distribution' => '2.33',
19186             'CPAN::FTP' => '5.5016',
19187             'CPAN::FirstTime' => '5.5317',
19188             'Config' => '5.035009',
19189             'Devel::PPPort' => '3.64',
19190             'File::Copy' => '2.39',
19191             'Hash::Util' => '0.28',
19192             'Hash::Util::FieldHash' => '1.26',
19193             'List::Util' => '1.61',
19194             'List::Util::XS' => '1.61',
19195             'Module::CoreList' => '5.20220220',
19196             'Module::CoreList::Utils'=> '5.20220220',
19197             'Opcode' => '1.56',
19198             'Scalar::Util' => '1.61',
19199             'Sub::Util' => '1.61',
19200             'Tie::SubstrHash' => '1.01',
19201             'XS::APItest' => '1.21',
19202             '_charnames' => '1.50',
19203             'builtin' => '0.002',
19204             'charnames' => '1.50',
19205             'experimental' => '0.027',
19206             'feature' => '1.70',
19207             'overload' => '1.35',
19208             're' => '0.42',
19209             'sigtrap' => '1.10',
19210             'warnings' => '1.57',
19211             },
19212             removed => {
19213             }
19214             },
19215             5.034001 => {
19216             delta_from => 5.034000,
19217             changed => {
19218             'B::Deparse' => '1.57',
19219             'B::Op_private' => '5.034001',
19220             'Config' => '5.034001',
19221             'Encode' => '3.08_01',
19222             'GDBM_File' => '1.19_01',
19223             'Module::CoreList' => '5.20220313',
19224             'Module::CoreList::Utils'=> '5.20220313',
19225             },
19226             removed => {
19227             }
19228             },
19229             5.035010 => {
19230             delta_from => 5.035009,
19231             changed => {
19232             'Attribute::Handlers' => '1.02',
19233             'B::Deparse' => '1.63',
19234             'B::Op_private' => '5.035010',
19235             'Config' => '5.03501',
19236             'Cwd' => '3.84',
19237             'DB_File' => '1.857',
19238             'Devel::PPPort' => '3.68',
19239             'ExtUtils::ParseXS' => '3.45',
19240             'ExtUtils::ParseXS::Constants'=> '3.45',
19241             'ExtUtils::ParseXS::CountLines'=> '3.45',
19242             'ExtUtils::ParseXS::Eval'=> '3.45',
19243             'ExtUtils::ParseXS::Utilities'=> '3.45',
19244             'ExtUtils::Typemaps' => '3.45',
19245             'ExtUtils::Typemaps::Cmd'=> '3.45',
19246             'ExtUtils::Typemaps::InputMap'=> '3.45',
19247             'ExtUtils::Typemaps::OutputMap'=> '3.45',
19248             'ExtUtils::Typemaps::Type'=> '3.45',
19249             'File::Spec' => '3.84',
19250             'File::Spec::AmigaOS' => '3.84',
19251             'File::Spec::Cygwin' => '3.84',
19252             'File::Spec::Epoc' => '3.84',
19253             'File::Spec::Functions' => '3.84',
19254             'File::Spec::Mac' => '3.84',
19255             'File::Spec::OS2' => '3.84',
19256             'File::Spec::Unix' => '3.84',
19257             'File::Spec::VMS' => '3.84',
19258             'File::Spec::Win32' => '3.84',
19259             'GDBM_File' => '1.23',
19260             'List::Util' => '1.62',
19261             'List::Util::XS' => '1.62',
19262             'Module::CoreList' => '5.20220320',
19263             'Module::CoreList::Utils'=> '5.20220320',
19264             'Opcode' => '1.57',
19265             'Scalar::Util' => '1.62',
19266             'Sub::Util' => '1.62',
19267             'Test2' => '1.302190',
19268             'Test2::API' => '1.302190',
19269             'Test2::API::Breakage' => '1.302190',
19270             'Test2::API::Context' => '1.302190',
19271             'Test2::API::Instance' => '1.302190',
19272             'Test2::API::InterceptResult'=> '1.302190',
19273             'Test2::API::InterceptResult::Event'=> '1.302190',
19274             'Test2::API::InterceptResult::Facet'=> '1.302190',
19275             'Test2::API::InterceptResult::Hub'=> '1.302190',
19276             'Test2::API::InterceptResult::Squasher'=> '1.302190',
19277             'Test2::API::Stack' => '1.302190',
19278             'Test2::Event' => '1.302190',
19279             'Test2::Event::Bail' => '1.302190',
19280             'Test2::Event::Diag' => '1.302190',
19281             'Test2::Event::Encoding'=> '1.302190',
19282             'Test2::Event::Exception'=> '1.302190',
19283             'Test2::Event::Fail' => '1.302190',
19284             'Test2::Event::Generic' => '1.302190',
19285             'Test2::Event::Note' => '1.302190',
19286             'Test2::Event::Ok' => '1.302190',
19287             'Test2::Event::Pass' => '1.302190',
19288             'Test2::Event::Plan' => '1.302190',
19289             'Test2::Event::Skip' => '1.302190',
19290             'Test2::Event::Subtest' => '1.302190',
19291             'Test2::Event::TAP::Version'=> '1.302190',
19292             'Test2::Event::V2' => '1.302190',
19293             'Test2::Event::Waiting' => '1.302190',
19294             'Test2::EventFacet' => '1.302190',
19295             'Test2::EventFacet::About'=> '1.302190',
19296             'Test2::EventFacet::Amnesty'=> '1.302190',
19297             'Test2::EventFacet::Assert'=> '1.302190',
19298             'Test2::EventFacet::Control'=> '1.302190',
19299             'Test2::EventFacet::Error'=> '1.302190',
19300             'Test2::EventFacet::Hub'=> '1.302190',
19301             'Test2::EventFacet::Info'=> '1.302190',
19302             'Test2::EventFacet::Info::Table'=> '1.302190',
19303             'Test2::EventFacet::Meta'=> '1.302190',
19304             'Test2::EventFacet::Parent'=> '1.302190',
19305             'Test2::EventFacet::Plan'=> '1.302190',
19306             'Test2::EventFacet::Render'=> '1.302190',
19307             'Test2::EventFacet::Trace'=> '1.302190',
19308             'Test2::Formatter' => '1.302190',
19309             'Test2::Formatter::TAP' => '1.302190',
19310             'Test2::Hub' => '1.302190',
19311             'Test2::Hub::Interceptor'=> '1.302190',
19312             'Test2::Hub::Interceptor::Terminator'=> '1.302190',
19313             'Test2::Hub::Subtest' => '1.302190',
19314             'Test2::IPC' => '1.302190',
19315             'Test2::IPC::Driver' => '1.302190',
19316             'Test2::IPC::Driver::Files'=> '1.302190',
19317             'Test2::Tools::Tiny' => '1.302190',
19318             'Test2::Util' => '1.302190',
19319             'Test2::Util::ExternalMeta'=> '1.302190',
19320             'Test2::Util::Facets2Legacy'=> '1.302190',
19321             'Test2::Util::HashBase' => '1.302190',
19322             'Test2::Util::Trace' => '1.302190',
19323             'Test::Builder' => '1.302190',
19324             'Test::Builder::Formatter'=> '1.302190',
19325             'Test::Builder::Module' => '1.302190',
19326             'Test::Builder::Tester' => '1.302190',
19327             'Test::Builder::Tester::Color'=> '1.302190',
19328             'Test::Builder::TodoDiag'=> '1.302190',
19329             'Test::More' => '1.302190',
19330             'Test::Simple' => '1.302190',
19331             'Test::Tester' => '1.302190',
19332             'Test::Tester::Capture' => '1.302190',
19333             'Test::Tester::CaptureRunner'=> '1.302190',
19334             'Test::Tester::Delegate'=> '1.302190',
19335             'Test::use::ok' => '1.302190',
19336             'XS::APItest' => '1.22',
19337             'builtin' => '0.004',
19338             'experimental' => '0.028',
19339             'feature' => '1.71',
19340             'ok' => '1.302190',
19341             'warnings' => '1.58',
19342             },
19343             removed => {
19344             }
19345             },
19346             5.035011 => {
19347             delta_from => 5.03501,
19348             changed => {
19349             'App::Prove' => '3.44',
19350             'App::Prove::State' => '3.44',
19351             'App::Prove::State::Result'=> '3.44',
19352             'App::Prove::State::Result::Test'=> '3.44',
19353             'B::Deparse' => '1.64',
19354             'B::Op_private' => '5.035011',
19355             'Compress::Raw::Bzip2' => '2.103',
19356             'Compress::Raw::Zlib' => '2.103',
19357             'Compress::Zlib' => '2.106',
19358             'Config' => '5.035011',
19359             'Encode' => '3.17',
19360             'Encode::Unicode' => '2.20',
19361             'ExtUtils::Constant::Base'=> '0.07',
19362             'IO' => '1.49_01',
19363             'IO::Compress::Adapter::Bzip2'=> '2.106',
19364             'IO::Compress::Adapter::Deflate'=> '2.106',
19365             'IO::Compress::Adapter::Identity'=> '2.106',
19366             'IO::Compress::Base' => '2.106',
19367             'IO::Compress::Base::Common'=> '2.106',
19368             'IO::Compress::Bzip2' => '2.106',
19369             'IO::Compress::Deflate' => '2.106',
19370             'IO::Compress::Gzip' => '2.106',
19371             'IO::Compress::Gzip::Constants'=> '2.106',
19372             'IO::Compress::RawDeflate'=> '2.106',
19373             'IO::Compress::Zip' => '2.106',
19374             'IO::Compress::Zip::Constants'=> '2.106',
19375             'IO::Compress::Zlib::Constants'=> '2.106',
19376             'IO::Compress::Zlib::Extra'=> '2.106',
19377             'IO::Uncompress::Adapter::Bunzip2'=> '2.106',
19378             'IO::Uncompress::Adapter::Identity'=> '2.106',
19379             'IO::Uncompress::Adapter::Inflate'=> '2.106',
19380             'IO::Uncompress::AnyInflate'=> '2.106',
19381             'IO::Uncompress::AnyUncompress'=> '2.106',
19382             'IO::Uncompress::Base' => '2.106',
19383             'IO::Uncompress::Bunzip2'=> '2.106',
19384             'IO::Uncompress::Gunzip'=> '2.106',
19385             'IO::Uncompress::Inflate'=> '2.106',
19386             'IO::Uncompress::RawInflate'=> '2.106',
19387             'IO::Uncompress::Unzip' => '2.106',
19388             'Locale::Maketext' => '1.31',
19389             'Math::BigFloat' => '1.999830',
19390             'Math::BigFloat::Trace' => '0.65',
19391             'Math::BigInt' => '1.999830',
19392             'Math::BigInt::Calc' => '1.999830',
19393             'Math::BigInt::Lib' => '1.999830',
19394             'Math::BigInt::Trace' => '0.65',
19395             'Math::BigRat' => '0.2621',
19396             'Math::BigRat::Trace' => '0.65',
19397             'Module::CoreList' => '5.20220420',
19398             'Module::CoreList::Utils'=> '5.20220420',
19399             'Net::Cmd' => '3.14',
19400             'Net::Config' => '3.14',
19401             'Net::Domain' => '3.14',
19402             'Net::FTP' => '3.14',
19403             'Net::FTP::A' => '3.14',
19404             'Net::FTP::E' => '3.14',
19405             'Net::FTP::I' => '3.14',
19406             'Net::FTP::L' => '3.14',
19407             'Net::FTP::dataconn' => '3.14',
19408             'Net::NNTP' => '3.14',
19409             'Net::Netrc' => '3.14',
19410             'Net::POP3' => '3.14',
19411             'Net::SMTP' => '3.14',
19412             'Net::Time' => '3.14',
19413             'Socket' => '2.033',
19414             'Storable' => '3.26',
19415             'TAP::Base' => '3.44',
19416             'TAP::Formatter::Base' => '3.44',
19417             'TAP::Formatter::Color' => '3.44',
19418             'TAP::Formatter::Console'=> '3.44',
19419             'TAP::Formatter::Console::ParallelSession'=> '3.44',
19420             'TAP::Formatter::Console::Session'=> '3.44',
19421             'TAP::Formatter::File' => '3.44',
19422             'TAP::Formatter::File::Session'=> '3.44',
19423             'TAP::Formatter::Session'=> '3.44',
19424             'TAP::Harness' => '3.44',
19425             'TAP::Harness::Env' => '3.44',
19426             'TAP::Object' => '3.44',
19427             'TAP::Parser' => '3.44',
19428             'TAP::Parser::Aggregator'=> '3.44',
19429             'TAP::Parser::Grammar' => '3.44',
19430             'TAP::Parser::Iterator' => '3.44',
19431             'TAP::Parser::Iterator::Array'=> '3.44',
19432             'TAP::Parser::Iterator::Process'=> '3.44',
19433             'TAP::Parser::Iterator::Stream'=> '3.44',
19434             'TAP::Parser::IteratorFactory'=> '3.44',
19435             'TAP::Parser::Multiplexer'=> '3.44',
19436             'TAP::Parser::Result' => '3.44',
19437             'TAP::Parser::Result::Bailout'=> '3.44',
19438             'TAP::Parser::Result::Comment'=> '3.44',
19439             'TAP::Parser::Result::Plan'=> '3.44',
19440             'TAP::Parser::Result::Pragma'=> '3.44',
19441             'TAP::Parser::Result::Test'=> '3.44',
19442             'TAP::Parser::Result::Unknown'=> '3.44',
19443             'TAP::Parser::Result::Version'=> '3.44',
19444             'TAP::Parser::Result::YAML'=> '3.44',
19445             'TAP::Parser::ResultFactory'=> '3.44',
19446             'TAP::Parser::Scheduler'=> '3.44',
19447             'TAP::Parser::Scheduler::Job'=> '3.44',
19448             'TAP::Parser::Scheduler::Spinner'=> '3.44',
19449             'TAP::Parser::Source' => '3.44',
19450             'TAP::Parser::SourceHandler'=> '3.44',
19451             'TAP::Parser::SourceHandler::Executable'=> '3.44',
19452             'TAP::Parser::SourceHandler::File'=> '3.44',
19453             'TAP::Parser::SourceHandler::Handle'=> '3.44',
19454             'TAP::Parser::SourceHandler::Perl'=> '3.44',
19455             'TAP::Parser::SourceHandler::RawTAP'=> '3.44',
19456             'TAP::Parser::YAMLish::Reader'=> '3.44',
19457             'TAP::Parser::YAMLish::Writer'=> '3.44',
19458             'Test::Harness' => '3.44',
19459             'Text::ParseWords' => '3.31',
19460             'Time::HiRes' => '1.9770',
19461             'Unicode::Normalize' => '1.31',
19462             'bigfloat' => '0.65',
19463             'bigint' => '0.65',
19464             'bignum' => '0.65',
19465             'bigrat' => '0.65',
19466             'builtin' => '0.005',
19467             're' => '0.43',
19468             },
19469             removed => {
19470             }
19471             },
19472             5.036000 => {
19473             delta_from => 5.035011,
19474             changed => {
19475             'Amiga::Exec' => '0.04',
19476             'B::Op_private' => '5.036000',
19477             'Compress::Raw::Zlib' => '2.105',
19478             'Config' => '5.036',
19479             'IO' => '1.50',
19480             'Module::CoreList' => '5.20220520',
19481             'Module::CoreList::Utils'=> '5.20220520',
19482             'Win32' => '0.59',
19483             'builtin' => '0.006',
19484             'feature' => '1.72',
19485             },
19486             removed => {
19487             }
19488             },
19489             5.037000 => {
19490             delta_from => 5.036000,
19491             changed => {
19492             'feature' => '1.73',
19493             'Module::CoreList' => '5.20220527',
19494             'Module::CoreList::Utils'=> '5.20220527',
19495             },
19496             removed => {
19497             }
19498             },
19499             5.037001 => {
19500             delta_from => 5.037000,
19501             changed => {
19502             'B' => '1.84',
19503             'B::Op_private' => '5.037001',
19504             'Carp' => '1.53',
19505             'Carp::Heavy' => '1.53',
19506             'Config' => '5.037001',
19507             'Cwd' => '3.85',
19508             'Data::Dumper' => '2.185',
19509             'ExtUtils::CBuilder' => '0.280237',
19510             'ExtUtils::CBuilder::Base'=> '0.280237',
19511             'ExtUtils::CBuilder::Platform::Unix'=> '0.280237',
19512             'ExtUtils::CBuilder::Platform::VMS'=> '0.280237',
19513             'ExtUtils::CBuilder::Platform::Windows'=> '0.280237',
19514             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280237',
19515             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280237',
19516             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280237',
19517             'ExtUtils::CBuilder::Platform::aix'=> '0.280237',
19518             'ExtUtils::CBuilder::Platform::android'=> '0.280237',
19519             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280237',
19520             'ExtUtils::CBuilder::Platform::darwin'=> '0.280237',
19521             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280237',
19522             'ExtUtils::CBuilder::Platform::os2'=> '0.280237',
19523             'ExtUtils::Miniperl' => '1.12',
19524             'File::Spec' => '3.85',
19525             'File::Spec::AmigaOS' => '3.85',
19526             'File::Spec::Cygwin' => '3.85',
19527             'File::Spec::Epoc' => '3.85',
19528             'File::Spec::Functions' => '3.85',
19529             'File::Spec::Mac' => '3.85',
19530             'File::Spec::OS2' => '3.85',
19531             'File::Spec::Unix' => '3.85',
19532             'File::Spec::VMS' => '3.85',
19533             'File::Spec::Win32' => '3.85',
19534             'FileHandle' => '2.04',
19535             'GDBM_File' => '1.24',
19536             'IO::Handle' => '1.49',
19537             'IO::Pipe' => '1.50',
19538             'IO::Socket::INET' => '1.50',
19539             'IO::Socket::UNIX' => '1.50',
19540             'Module::CoreList' => '5.20220620',
19541             'Module::CoreList::Utils'=> '5.20220620',
19542             'ODBM_File' => '1.18',
19543             'OS2::REXX' => '1.06',
19544             'Opcode' => '1.58',
19545             'POSIX' => '2.04',
19546             'SDBM_File' => '1.16',
19547             'Unicode::Normalize' => '1.32',
19548             'XS::APItest' => '1.23',
19549             'builtin' => '0.007',
19550             'encoding::warnings' => '0.14',
19551             'feature' => '1.74',
19552             'threads' => '2.28',
19553             },
19554             removed => {
19555             }
19556             },
19557             5.037002 => {
19558             delta_from => 5.037001,
19559             changed => {
19560             'B' => '1.85',
19561             'B::Concise' => '1.007',
19562             'B::Deparse' => '1.65',
19563             'B::Op_private' => '5.037002',
19564             'CPAN' => '2.34',
19565             'CPAN::Distribution' => '2.34',
19566             'Compress::Raw::Bzip2' => '2.201',
19567             'Compress::Raw::Zlib' => '2.202',
19568             'Compress::Zlib' => '2.201',
19569             'Config' => '5.037002',
19570             'Cwd' => '3.86',
19571             'DB_File' => '1.858',
19572             'Data::Dumper' => '2.186',
19573             'Encode' => '3.18',
19574             'Encode::MIME::Header' => '2.29',
19575             'File::Glob' => '1.38',
19576             'File::Spec' => '3.86',
19577             'File::Spec::AmigaOS' => '3.86',
19578             'File::Spec::Cygwin' => '3.86',
19579             'File::Spec::Epoc' => '3.86',
19580             'File::Spec::Functions' => '3.86',
19581             'File::Spec::Mac' => '3.86',
19582             'File::Spec::OS2' => '3.86',
19583             'File::Spec::Unix' => '3.86',
19584             'File::Spec::VMS' => '3.86',
19585             'File::Spec::Win32' => '3.86',
19586             'Filter::Util::Call' => '1.61',
19587             'Hash::Util' => '0.29',
19588             'I18N::LangTags::List' => '0.41',
19589             'IO::Compress::Adapter::Bzip2'=> '2.201',
19590             'IO::Compress::Adapter::Deflate'=> '2.201',
19591             'IO::Compress::Adapter::Identity'=> '2.201',
19592             'IO::Compress::Base' => '2.201',
19593             'IO::Compress::Base::Common'=> '2.201',
19594             'IO::Compress::Bzip2' => '2.201',
19595             'IO::Compress::Deflate' => '2.201',
19596             'IO::Compress::Gzip' => '2.201',
19597             'IO::Compress::Gzip::Constants'=> '2.201',
19598             'IO::Compress::RawDeflate'=> '2.201',
19599             'IO::Compress::Zip' => '2.201',
19600             'IO::Compress::Zip::Constants'=> '2.201',
19601             'IO::Compress::Zlib::Constants'=> '2.201',
19602             'IO::Compress::Zlib::Extra'=> '2.201',
19603             'IO::Uncompress::Adapter::Bunzip2'=> '2.201',
19604             'IO::Uncompress::Adapter::Identity'=> '2.201',
19605             'IO::Uncompress::Adapter::Inflate'=> '2.201',
19606             'IO::Uncompress::AnyInflate'=> '2.201',
19607             'IO::Uncompress::AnyUncompress'=> '2.201',
19608             'IO::Uncompress::Base' => '2.201',
19609             'IO::Uncompress::Bunzip2'=> '2.201',
19610             'IO::Uncompress::Gunzip'=> '2.201',
19611             'IO::Uncompress::Inflate'=> '2.201',
19612             'IO::Uncompress::RawInflate'=> '2.201',
19613             'IO::Uncompress::Unzip' => '2.201',
19614             'JSON::PP' => '4.10',
19615             'JSON::PP::Boolean' => '4.10',
19616             'Math::BigFloat' => '1.999837',
19617             'Math::BigFloat::Trace' => '0.66',
19618             'Math::BigInt' => '1.999837',
19619             'Math::BigInt::Calc' => '1.999837',
19620             'Math::BigInt::FastCalc'=> '0.5013',
19621             'Math::BigInt::Lib' => '1.999837',
19622             'Math::BigInt::Trace' => '0.66',
19623             'Math::BigRat' => '0.2624',
19624             'Math::BigRat::Trace' => '0.66',
19625             'Module::CoreList' => '5.20220720',
19626             'Module::CoreList::Utils'=> '5.20220720',
19627             'Opcode' => '1.59',
19628             'PerlIO::via::QuotedPrint'=> '0.10',
19629             'Pod::Checker' => '1.75',
19630             'Pod::Usage' => '2.03',
19631             'Socket' => '2.035',
19632             'Storable' => '3.27',
19633             'Test2' => '1.302191',
19634             'Test2::API' => '1.302191',
19635             'Test2::API::Breakage' => '1.302191',
19636             'Test2::API::Context' => '1.302191',
19637             'Test2::API::Instance' => '1.302191',
19638             'Test2::API::InterceptResult'=> '1.302191',
19639             'Test2::API::InterceptResult::Event'=> '1.302191',
19640             'Test2::API::InterceptResult::Facet'=> '1.302191',
19641             'Test2::API::InterceptResult::Hub'=> '1.302191',
19642             'Test2::API::InterceptResult::Squasher'=> '1.302191',
19643             'Test2::API::Stack' => '1.302191',
19644             'Test2::Event' => '1.302191',
19645             'Test2::Event::Bail' => '1.302191',
19646             'Test2::Event::Diag' => '1.302191',
19647             'Test2::Event::Encoding'=> '1.302191',
19648             'Test2::Event::Exception'=> '1.302191',
19649             'Test2::Event::Fail' => '1.302191',
19650             'Test2::Event::Generic' => '1.302191',
19651             'Test2::Event::Note' => '1.302191',
19652             'Test2::Event::Ok' => '1.302191',
19653             'Test2::Event::Pass' => '1.302191',
19654             'Test2::Event::Plan' => '1.302191',
19655             'Test2::Event::Skip' => '1.302191',
19656             'Test2::Event::Subtest' => '1.302191',
19657             'Test2::Event::TAP::Version'=> '1.302191',
19658             'Test2::Event::V2' => '1.302191',
19659             'Test2::Event::Waiting' => '1.302191',
19660             'Test2::EventFacet' => '1.302191',
19661             'Test2::EventFacet::About'=> '1.302191',
19662             'Test2::EventFacet::Amnesty'=> '1.302191',
19663             'Test2::EventFacet::Assert'=> '1.302191',
19664             'Test2::EventFacet::Control'=> '1.302191',
19665             'Test2::EventFacet::Error'=> '1.302191',
19666             'Test2::EventFacet::Hub'=> '1.302191',
19667             'Test2::EventFacet::Info'=> '1.302191',
19668             'Test2::EventFacet::Info::Table'=> '1.302191',
19669             'Test2::EventFacet::Meta'=> '1.302191',
19670             'Test2::EventFacet::Parent'=> '1.302191',
19671             'Test2::EventFacet::Plan'=> '1.302191',
19672             'Test2::EventFacet::Render'=> '1.302191',
19673             'Test2::EventFacet::Trace'=> '1.302191',
19674             'Test2::Formatter' => '1.302191',
19675             'Test2::Formatter::TAP' => '1.302191',
19676             'Test2::Hub' => '1.302191',
19677             'Test2::Hub::Interceptor'=> '1.302191',
19678             'Test2::Hub::Interceptor::Terminator'=> '1.302191',
19679             'Test2::Hub::Subtest' => '1.302191',
19680             'Test2::IPC' => '1.302191',
19681             'Test2::IPC::Driver' => '1.302191',
19682             'Test2::IPC::Driver::Files'=> '1.302191',
19683             'Test2::Tools::Tiny' => '1.302191',
19684             'Test2::Util' => '1.302191',
19685             'Test2::Util::ExternalMeta'=> '1.302191',
19686             'Test2::Util::Facets2Legacy'=> '1.302191',
19687             'Test2::Util::HashBase' => '1.302191',
19688             'Test2::Util::Trace' => '1.302191',
19689             'Test::Builder' => '1.302191',
19690             'Test::Builder::Formatter'=> '1.302191',
19691             'Test::Builder::Module' => '1.302191',
19692             'Test::Builder::Tester' => '1.302191',
19693             'Test::Builder::Tester::Color'=> '1.302191',
19694             'Test::Builder::TodoDiag'=> '1.302191',
19695             'Test::More' => '1.302191',
19696             'Test::Simple' => '1.302191',
19697             'Test::Tester' => '1.302191',
19698             'Test::Tester::Capture' => '1.302191',
19699             'Test::Tester::CaptureRunner'=> '1.302191',
19700             'Test::Tester::Delegate'=> '1.302191',
19701             'Test::use::ok' => '1.302191',
19702             'Text::Balanced' => '2.06',
19703             'XS::APItest' => '1.24',
19704             'bigfloat' => '0.66',
19705             'bigint' => '0.66',
19706             'bignum' => '0.66',
19707             'bigrat' => '0.66',
19708             'builtin' => '0.008',
19709             'feature' => '1.75',
19710             'ok' => '1.302191',
19711             'threads::shared' => '1.65',
19712             },
19713             removed => {
19714             }
19715             },
19716             5.037003 => {
19717             delta_from => 5.037002,
19718             changed => {
19719             'B' => '1.86',
19720             'B::Deparse' => '1.68',
19721             'B::Op_private' => '5.037003',
19722             'Config' => '5.037003',
19723             'Digest::SHA' => '6.03',
19724             'DynaLoader' => '1.53',
19725             'Encode' => '3.19',
19726             'Encode::Alias' => '2.25',
19727             'ExtUtils::PL2Bat' => '0.005',
19728             'File::Find' => '1.41',
19729             'Filter::Util::Call' => '1.64',
19730             'HTTP::Tiny' => '0.082',
19731             'JSON::PP' => '4.11',
19732             'JSON::PP::Boolean' => '4.11',
19733             'List::Util' => '1.63',
19734             'List::Util::XS' => '1.63',
19735             'Memoize' => '1.10',
19736             'Memoize::AnyDBM_File' => '1.10',
19737             'Memoize::Expire' => '1.10',
19738             'Memoize::NDBM_File' => '1.10',
19739             'Memoize::SDBM_File' => '1.10',
19740             'Memoize::Storable' => '1.10',
19741             'Module::CoreList' => '5.20220820',
19742             'Module::CoreList::Utils'=> '5.20220820',
19743             'NDBM_File' => '1.16',
19744             'Opcode' => '1.60',
19745             'Scalar::Util' => '1.63',
19746             'Socket' => '2.036',
19747             'Sub::Util' => '1.63',
19748             'XS::APItest' => '1.25',
19749             'attributes' => '0.35',
19750             'threads' => '2.29',
19751             },
19752             removed => {
19753             'Memoize::ExpireFile' => 1,
19754             'Memoize::ExpireTest' => 1,
19755             }
19756             },
19757             5.037004 => {
19758             delta_from => 5.037003,
19759             changed => {
19760             'B::Deparse' => '1.69',
19761             'B::Op_private' => '5.037004',
19762             'Carp' => '1.54',
19763             'Carp::Heavy' => '1.54',
19764             'Class::Struct' => '0.67',
19765             'Config' => '5.037004',
19766             'Config::Perl::V' => '0.34',
19767             'Errno' => '1.37',
19768             'ExtUtils::ParseXS' => '3.46',
19769             'ExtUtils::ParseXS::Constants'=> '3.46',
19770             'ExtUtils::ParseXS::CountLines'=> '3.46',
19771             'ExtUtils::ParseXS::Eval'=> '3.46',
19772             'ExtUtils::ParseXS::Utilities'=> '3.46',
19773             'ExtUtils::Typemaps' => '3.46',
19774             'ExtUtils::Typemaps::Cmd'=> '3.46',
19775             'ExtUtils::Typemaps::InputMap'=> '3.46',
19776             'ExtUtils::Typemaps::OutputMap'=> '3.46',
19777             'ExtUtils::Typemaps::Type'=> '3.46',
19778             'File::Basename' => '2.86',
19779             'File::Copy' => '2.40',
19780             'File::Spec' => '3.87',
19781             'File::stat' => '1.13',
19782             'FileHandle' => '2.05',
19783             'Hash::Util' => '0.30',
19784             'I18N::Langinfo' => '0.22',
19785             'IO' => '1.51',
19786             'IO::Dir' => '1.51',
19787             'IO::File' => '1.51',
19788             'IO::Handle' => '1.51',
19789             'IO::Pipe' => '1.51',
19790             'IO::Poll' => '1.51',
19791             'IO::Seekable' => '1.51',
19792             'IO::Select' => '1.51',
19793             'IO::Socket' => '1.51',
19794             'IO::Socket::INET' => '1.51',
19795             'IO::Socket::UNIX' => '1.51',
19796             'Locale::Maketext' => '1.32',
19797             'Module::CoreList' => '5.20220920',
19798             'Module::CoreList::Utils'=> '5.20220920',
19799             'Net::protoent' => '1.02',
19800             'Net::servent' => '1.03',
19801             'Opcode' => '1.61',
19802             'POSIX' => '2.06',
19803             'Safe' => '2.44',
19804             'Sys::Hostname' => '1.25',
19805             'Time::HiRes' => '1.9771',
19806             'User::grent' => '1.04',
19807             'User::pwent' => '1.02',
19808             'XS::APItest' => '1.26',
19809             'XSLoader' => '0.32',
19810             'feature' => '1.76',
19811             },
19812             removed => {
19813             }
19814             },
19815             5.037005 => {
19816             delta_from => 5.037004,
19817             changed => {
19818             'B::Deparse' => '1.70',
19819             'B::Op_private' => '5.037005',
19820             'Config' => '5.037005',
19821             'JSON::PP' => '4.12',
19822             'JSON::PP::Boolean' => '4.12',
19823             'Math::Complex' => '1.5903',
19824             'Math::Trig' => '1.2301',
19825             'Memoize' => '1.14',
19826             'Memoize::AnyDBM_File' => '1.14',
19827             'Memoize::Expire' => '1.14',
19828             'Memoize::NDBM_File' => '1.14',
19829             'Memoize::SDBM_File' => '1.14',
19830             'Memoize::Storable' => '1.14',
19831             'Module::CoreList' => '5.20221020',
19832             'Module::CoreList::Utils'=> '5.20221020',
19833             'Net::Ping' => '2.75',
19834             'POSIX' => '2.07',
19835             'Unicode' => '15.0.0',
19836             'threads' => '2.31',
19837             'warnings' => '1.59',
19838             },
19839             removed => {
19840             }
19841             },
19842             5.037006 => {
19843             delta_from => 5.037005,
19844             changed => {
19845             'Attribute::Handlers' => '1.03',
19846             'B' => '1.87',
19847             'B::Deparse' => '1.71',
19848             'B::Op_private' => '5.037006',
19849             'Config' => '5.037006',
19850             'Data::Dumper' => '2.187',
19851             'Devel::PPPort' => '3.69',
19852             'ExtUtils::CBuilder' => '0.280238',
19853             'ExtUtils::CBuilder::Base'=> '0.280238',
19854             'ExtUtils::CBuilder::Platform::Unix'=> '0.280238',
19855             'ExtUtils::CBuilder::Platform::VMS'=> '0.280238',
19856             'ExtUtils::CBuilder::Platform::Windows'=> '0.280238',
19857             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280238',
19858             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280238',
19859             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280238',
19860             'ExtUtils::CBuilder::Platform::aix'=> '0.280238',
19861             'ExtUtils::CBuilder::Platform::android'=> '0.280238',
19862             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280238',
19863             'ExtUtils::CBuilder::Platform::darwin'=> '0.280238',
19864             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280238',
19865             'ExtUtils::CBuilder::Platform::os2'=> '0.280238',
19866             'ExtUtils::ParseXS' => '3.48',
19867             'ExtUtils::ParseXS::Constants'=> '3.48',
19868             'ExtUtils::ParseXS::CountLines'=> '3.48',
19869             'ExtUtils::ParseXS::Eval'=> '3.48',
19870             'ExtUtils::ParseXS::Utilities'=> '3.48',
19871             'ExtUtils::Typemaps' => '3.48',
19872             'ExtUtils::Typemaps::Cmd'=> '3.48',
19873             'ExtUtils::Typemaps::InputMap'=> '3.48',
19874             'ExtUtils::Typemaps::OutputMap'=> '3.48',
19875             'ExtUtils::Typemaps::Type'=> '3.48',
19876             'Getopt::Long' => '2.54',
19877             'Memoize' => '1.15',
19878             'Memoize::AnyDBM_File' => '1.15',
19879             'Memoize::Expire' => '1.15',
19880             'Memoize::NDBM_File' => '1.15',
19881             'Memoize::SDBM_File' => '1.15',
19882             'Memoize::Storable' => '1.15',
19883             'Module::CoreList' => '5.20221120',
19884             'Module::CoreList::Utils'=> '5.20221120',
19885             'Opcode' => '1.62',
19886             'POSIX' => '2.08',
19887             'Storable' => '3.28',
19888             'Time::HiRes' => '1.9772',
19889             'XS::APItest' => '1.27',
19890             'experimental' => '0.029',
19891             'feature' => '1.77',
19892             'overload' => '1.36',
19893             'threads' => '2.32',
19894             'utf8' => '1.25',
19895             'warnings' => '1.61',
19896             },
19897             removed => {
19898             }
19899             },
19900             5.037007 => {
19901             delta_from => 5.037006,
19902             changed => {
19903             'B::Deparse' => '1.72',
19904             'B::Op_private' => '5.037007',
19905             'Config' => '5.037007',
19906             'Cwd' => '3.88',
19907             'ExtUtils::Miniperl' => '1.13',
19908             'ExtUtils::ParseXS' => '3.49',
19909             'ExtUtils::ParseXS::Constants'=> '3.49',
19910             'ExtUtils::ParseXS::CountLines'=> '3.49',
19911             'ExtUtils::ParseXS::Eval'=> '3.49',
19912             'ExtUtils::ParseXS::Utilities'=> '3.49',
19913             'ExtUtils::Typemaps' => '3.49',
19914             'ExtUtils::Typemaps::Cmd'=> '3.49',
19915             'ExtUtils::Typemaps::InputMap'=> '3.49',
19916             'ExtUtils::Typemaps::OutputMap'=> '3.49',
19917             'ExtUtils::Typemaps::Type'=> '3.49',
19918             'File::Glob' => '1.39',
19919             'File::Spec' => '3.88',
19920             'File::Spec::AmigaOS' => '3.88',
19921             'File::Spec::Cygwin' => '3.88',
19922             'File::Spec::Epoc' => '3.88',
19923             'File::Spec::Functions' => '3.88',
19924             'File::Spec::Mac' => '3.88',
19925             'File::Spec::OS2' => '3.88',
19926             'File::Spec::Unix' => '3.88',
19927             'File::Spec::VMS' => '3.88',
19928             'File::Spec::Win32' => '3.88',
19929             'Module::CoreList' => '5.20221220',
19930             'Module::CoreList::Utils'=> '5.20221220',
19931             'Opcode' => '1.63',
19932             'POSIX' => '2.10',
19933             'Pod::Html' => '1.34',
19934             'Pod::Html::Util' => '1.34',
19935             'Pod::Man' => '5.00',
19936             'Pod::ParseLink' => '5.00',
19937             'Pod::Text' => '5.00',
19938             'Pod::Text::Color' => '5.00',
19939             'Pod::Text::Overstrike' => '5.00',
19940             'Pod::Text::Termcap' => '5.00',
19941             'XS::APItest' => '1.28',
19942             'experimental' => '0.030',
19943             'feature' => '1.78',
19944             'parent' => '0.239',
19945             'threads' => '2.33',
19946             },
19947             removed => {
19948             }
19949             },
19950             5.037008 => {
19951             delta_from => 5.037007,
19952             changed => {
19953             'B::Op_private' => '5.037008',
19954             'Config' => '5.037008',
19955             'Config::Perl::V' => '0.35',
19956             'ExtUtils::Command' => '7.66',
19957             'ExtUtils::Command::MM' => '7.66',
19958             'ExtUtils::Install' => '2.22',
19959             'ExtUtils::Installed' => '2.22',
19960             'ExtUtils::Liblist' => '7.66',
19961             'ExtUtils::Liblist::Kid'=> '7.66',
19962             'ExtUtils::MM' => '7.66',
19963             'ExtUtils::MM_AIX' => '7.66',
19964             'ExtUtils::MM_Any' => '7.66',
19965             'ExtUtils::MM_BeOS' => '7.66',
19966             'ExtUtils::MM_Cygwin' => '7.66',
19967             'ExtUtils::MM_DOS' => '7.66',
19968             'ExtUtils::MM_Darwin' => '7.66',
19969             'ExtUtils::MM_MacOS' => '7.66',
19970             'ExtUtils::MM_NW5' => '7.66',
19971             'ExtUtils::MM_OS2' => '7.66',
19972             'ExtUtils::MM_OS390' => '7.66',
19973             'ExtUtils::MM_QNX' => '7.66',
19974             'ExtUtils::MM_UWIN' => '7.66',
19975             'ExtUtils::MM_Unix' => '7.66',
19976             'ExtUtils::MM_VMS' => '7.66',
19977             'ExtUtils::MM_VOS' => '7.66',
19978             'ExtUtils::MM_Win32' => '7.66',
19979             'ExtUtils::MM_Win95' => '7.66',
19980             'ExtUtils::MY' => '7.66',
19981             'ExtUtils::MakeMaker' => '7.66',
19982             'ExtUtils::MakeMaker::Config'=> '7.66',
19983             'ExtUtils::MakeMaker::Locale'=> '7.66',
19984             'ExtUtils::MakeMaker::version'=> '7.66',
19985             'ExtUtils::MakeMaker::version::regex'=> '7.66',
19986             'ExtUtils::Mkbootstrap' => '7.66',
19987             'ExtUtils::Mksymlists' => '7.66',
19988             'ExtUtils::Packlist' => '2.22',
19989             'ExtUtils::testlib' => '7.66',
19990             'File::Find' => '1.42',
19991             'IO::Zlib' => '1.14',
19992             'JSON::PP' => '4.16',
19993             'JSON::PP::Boolean' => '4.16',
19994             'Math::Complex' => '1.6',
19995             'Math::Trig' => '1.6',
19996             'Module::CoreList' => '5.20230120',
19997             'Module::CoreList::Utils'=> '5.20230120',
19998             'POSIX' => '2.11',
19999             'Pod::Man' => '5.01',
20000             'Pod::ParseLink' => '5.01',
20001             'Pod::Text' => '5.01',
20002             'Pod::Text::Color' => '5.01',
20003             'Pod::Text::Overstrike' => '5.01',
20004             'Pod::Text::Termcap' => '5.01',
20005             'Storable' => '3.29',
20006             'XS::APItest' => '1.30',
20007             'feature' => '1.79',
20008             're' => '0.44',
20009             'threads' => '2.34',
20010             },
20011             removed => {
20012             }
20013             },
20014             5.037009 => {
20015             delta_from => 5.037008,
20016             changed => {
20017             'B' => '1.88',
20018             'B::Op_private' => '5.037009',
20019             'Compress::Raw::Bzip2' => '2.204',
20020             'Compress::Raw::Zlib' => '2.204',
20021             'Compress::Zlib' => '2.204',
20022             'Config' => '5.037009',
20023             'Devel::PPPort' => '3.70',
20024             'Devel::Peek' => '1.33',
20025             'Fatal' => '2.36',
20026             'File::Find' => '1.43',
20027             'IO::Compress::Adapter::Bzip2'=> '2.204',
20028             'IO::Compress::Adapter::Deflate'=> '2.204',
20029             'IO::Compress::Adapter::Identity'=> '2.204',
20030             'IO::Compress::Base' => '2.204',
20031             'IO::Compress::Base::Common'=> '2.204',
20032             'IO::Compress::Bzip2' => '2.204',
20033             'IO::Compress::Deflate' => '2.204',
20034             'IO::Compress::Gzip' => '2.204',
20035             'IO::Compress::Gzip::Constants'=> '2.204',
20036             'IO::Compress::RawDeflate'=> '2.204',
20037             'IO::Compress::Zip' => '2.204',
20038             'IO::Compress::Zip::Constants'=> '2.204',
20039             'IO::Compress::Zlib::Constants'=> '2.204',
20040             'IO::Compress::Zlib::Extra'=> '2.204',
20041             'IO::Uncompress::Adapter::Bunzip2'=> '2.204',
20042             'IO::Uncompress::Adapter::Identity'=> '2.204',
20043             'IO::Uncompress::Adapter::Inflate'=> '2.204',
20044             'IO::Uncompress::AnyInflate'=> '2.204',
20045             'IO::Uncompress::AnyUncompress'=> '2.204',
20046             'IO::Uncompress::Base' => '2.204',
20047             'IO::Uncompress::Bunzip2'=> '2.204',
20048             'IO::Uncompress::Gunzip'=> '2.204',
20049             'IO::Uncompress::Inflate'=> '2.204',
20050             'IO::Uncompress::RawInflate'=> '2.204',
20051             'IO::Uncompress::Unzip' => '2.204',
20052             'Math::Complex' => '1.61',
20053             'Math::Trig' => '1.61',
20054             'Memoize' => '1.16',
20055             'Memoize::AnyDBM_File' => '1.16',
20056             'Memoize::Expire' => '1.16',
20057             'Memoize::NDBM_File' => '1.16',
20058             'Memoize::SDBM_File' => '1.16',
20059             'Memoize::Storable' => '1.16',
20060             'Module::CoreList' => '5.20230220',
20061             'Module::CoreList::Utils'=> '5.20230220',
20062             'Opcode' => '1.64',
20063             'Term::Cap' => '1.18',
20064             'Test2' => '1.302192',
20065             'Test2::API' => '1.302192',
20066             'Test2::API::Breakage' => '1.302192',
20067             'Test2::API::Context' => '1.302192',
20068             'Test2::API::Instance' => '1.302192',
20069             'Test2::API::InterceptResult'=> '1.302192',
20070             'Test2::API::InterceptResult::Event'=> '1.302192',
20071             'Test2::API::InterceptResult::Facet'=> '1.302192',
20072             'Test2::API::InterceptResult::Hub'=> '1.302192',
20073             'Test2::API::InterceptResult::Squasher'=> '1.302192',
20074             'Test2::API::Stack' => '1.302192',
20075             'Test2::Event' => '1.302192',
20076             'Test2::Event::Bail' => '1.302192',
20077             'Test2::Event::Diag' => '1.302192',
20078             'Test2::Event::Encoding'=> '1.302192',
20079             'Test2::Event::Exception'=> '1.302192',
20080             'Test2::Event::Fail' => '1.302192',
20081             'Test2::Event::Generic' => '1.302192',
20082             'Test2::Event::Note' => '1.302192',
20083             'Test2::Event::Ok' => '1.302192',
20084             'Test2::Event::Pass' => '1.302192',
20085             'Test2::Event::Plan' => '1.302192',
20086             'Test2::Event::Skip' => '1.302192',
20087             'Test2::Event::Subtest' => '1.302192',
20088             'Test2::Event::TAP::Version'=> '1.302192',
20089             'Test2::Event::V2' => '1.302192',
20090             'Test2::Event::Waiting' => '1.302192',
20091             'Test2::EventFacet' => '1.302192',
20092             'Test2::EventFacet::About'=> '1.302192',
20093             'Test2::EventFacet::Amnesty'=> '1.302192',
20094             'Test2::EventFacet::Assert'=> '1.302192',
20095             'Test2::EventFacet::Control'=> '1.302192',
20096             'Test2::EventFacet::Error'=> '1.302192',
20097             'Test2::EventFacet::Hub'=> '1.302192',
20098             'Test2::EventFacet::Info'=> '1.302192',
20099             'Test2::EventFacet::Info::Table'=> '1.302192',
20100             'Test2::EventFacet::Meta'=> '1.302192',
20101             'Test2::EventFacet::Parent'=> '1.302192',
20102             'Test2::EventFacet::Plan'=> '1.302192',
20103             'Test2::EventFacet::Render'=> '1.302192',
20104             'Test2::EventFacet::Trace'=> '1.302192',
20105             'Test2::Formatter' => '1.302192',
20106             'Test2::Formatter::TAP' => '1.302192',
20107             'Test2::Hub' => '1.302192',
20108             'Test2::Hub::Interceptor'=> '1.302192',
20109             'Test2::Hub::Interceptor::Terminator'=> '1.302192',
20110             'Test2::Hub::Subtest' => '1.302192',
20111             'Test2::IPC' => '1.302192',
20112             'Test2::IPC::Driver' => '1.302192',
20113             'Test2::IPC::Driver::Files'=> '1.302192',
20114             'Test2::Tools::Tiny' => '1.302192',
20115             'Test2::Util' => '1.302192',
20116             'Test2::Util::ExternalMeta'=> '1.302192',
20117             'Test2::Util::Facets2Legacy'=> '1.302192',
20118             'Test2::Util::HashBase' => '1.302192',
20119             'Test2::Util::Trace' => '1.302192',
20120             'Test::Builder' => '1.302192',
20121             'Test::Builder::Formatter'=> '1.302192',
20122             'Test::Builder::Module' => '1.302192',
20123             'Test::Builder::Tester' => '1.302192',
20124             'Test::Builder::Tester::Color'=> '1.302192',
20125             'Test::Builder::TodoDiag'=> '1.302192',
20126             'Test::More' => '1.302192',
20127             'Test::Simple' => '1.302192',
20128             'Test::Tester' => '1.302192',
20129             'Test::Tester::Capture' => '1.302192',
20130             'Test::Tester::CaptureRunner'=> '1.302192',
20131             'Test::Tester::Delegate'=> '1.302192',
20132             'Test::use::ok' => '1.302192',
20133             'Tie::File' => '1.07',
20134             'UNIVERSAL' => '1.15',
20135             'autodie' => '2.36',
20136             'autodie::Scope::Guard' => '2.36',
20137             'autodie::Scope::GuardStack'=> '2.36',
20138             'autodie::Util' => '2.36',
20139             'autodie::exception' => '2.36',
20140             'autodie::exception::system'=> '2.36',
20141             'autodie::hints' => '2.36',
20142             'autodie::skip' => '2.36',
20143             'experimental' => '0.031',
20144             'feature' => '1.80',
20145             'mro' => '1.28',
20146             'ok' => '1.302192',
20147             'parent' => '0.241',
20148             'stable' => '0.031',
20149             'warnings' => '1.62',
20150             },
20151             removed => {
20152             }
20153             },
20154             5.037010 => {
20155             delta_from => 5.037009,
20156             changed => {
20157             'B::Op_private' => '5.037010',
20158             'Benchmark' => '1.24',
20159             'Class::Struct' => '0.68',
20160             'Config' => '5.03701',
20161             'Config::Perl::V' => '0.36',
20162             'Cwd' => '3.89',
20163             'Data::Dumper' => '2.188',
20164             'Digest::SHA' => '6.04',
20165             'Env' => '1.06',
20166             'Math::Complex' => '1.62',
20167             'Math::Trig' => '1.62',
20168             'Module::CoreList' => '5.20230320',
20169             'Module::CoreList::Utils'=> '5.20230320',
20170             'Net::Cmd' => '3.15',
20171             'Net::Config' => '3.15',
20172             'Net::Domain' => '3.15',
20173             'Net::FTP' => '3.15',
20174             'Net::FTP::A' => '3.15',
20175             'Net::FTP::E' => '3.15',
20176             'Net::FTP::I' => '3.15',
20177             'Net::FTP::L' => '3.15',
20178             'Net::FTP::dataconn' => '3.15',
20179             'Net::NNTP' => '3.15',
20180             'Net::Netrc' => '3.15',
20181             'Net::POP3' => '3.15',
20182             'Net::SMTP' => '3.15',
20183             'Net::Time' => '3.15',
20184             'POSIX' => '2.12',
20185             'Storable' => '3.31',
20186             'Test2' => '1.302194',
20187             'Test2::API' => '1.302194',
20188             'Test2::API::Breakage' => '1.302194',
20189             'Test2::API::Context' => '1.302194',
20190             'Test2::API::Instance' => '1.302194',
20191             'Test2::API::InterceptResult'=> '1.302194',
20192             'Test2::API::InterceptResult::Event'=> '1.302194',
20193             'Test2::API::InterceptResult::Facet'=> '1.302194',
20194             'Test2::API::InterceptResult::Hub'=> '1.302194',
20195             'Test2::API::InterceptResult::Squasher'=> '1.302194',
20196             'Test2::API::Stack' => '1.302194',
20197             'Test2::Event' => '1.302194',
20198             'Test2::Event::Bail' => '1.302194',
20199             'Test2::Event::Diag' => '1.302194',
20200             'Test2::Event::Encoding'=> '1.302194',
20201             'Test2::Event::Exception'=> '1.302194',
20202             'Test2::Event::Fail' => '1.302194',
20203             'Test2::Event::Generic' => '1.302194',
20204             'Test2::Event::Note' => '1.302194',
20205             'Test2::Event::Ok' => '1.302194',
20206             'Test2::Event::Pass' => '1.302194',
20207             'Test2::Event::Plan' => '1.302194',
20208             'Test2::Event::Skip' => '1.302194',
20209             'Test2::Event::Subtest' => '1.302194',
20210             'Test2::Event::TAP::Version'=> '1.302194',
20211             'Test2::Event::V2' => '1.302194',
20212             'Test2::Event::Waiting' => '1.302194',
20213             'Test2::EventFacet' => '1.302194',
20214             'Test2::EventFacet::About'=> '1.302194',
20215             'Test2::EventFacet::Amnesty'=> '1.302194',
20216             'Test2::EventFacet::Assert'=> '1.302194',
20217             'Test2::EventFacet::Control'=> '1.302194',
20218             'Test2::EventFacet::Error'=> '1.302194',
20219             'Test2::EventFacet::Hub'=> '1.302194',
20220             'Test2::EventFacet::Info'=> '1.302194',
20221             'Test2::EventFacet::Info::Table'=> '1.302194',
20222             'Test2::EventFacet::Meta'=> '1.302194',
20223             'Test2::EventFacet::Parent'=> '1.302194',
20224             'Test2::EventFacet::Plan'=> '1.302194',
20225             'Test2::EventFacet::Render'=> '1.302194',
20226             'Test2::EventFacet::Trace'=> '1.302194',
20227             'Test2::Formatter' => '1.302194',
20228             'Test2::Formatter::TAP' => '1.302194',
20229             'Test2::Hub' => '1.302194',
20230             'Test2::Hub::Interceptor'=> '1.302194',
20231             'Test2::Hub::Interceptor::Terminator'=> '1.302194',
20232             'Test2::Hub::Subtest' => '1.302194',
20233             'Test2::IPC' => '1.302194',
20234             'Test2::IPC::Driver' => '1.302194',
20235             'Test2::IPC::Driver::Files'=> '1.302194',
20236             'Test2::Tools::Tiny' => '1.302194',
20237             'Test2::Util' => '1.302194',
20238             'Test2::Util::ExternalMeta'=> '1.302194',
20239             'Test2::Util::Facets2Legacy'=> '1.302194',
20240             'Test2::Util::HashBase' => '1.302194',
20241             'Test2::Util::Trace' => '1.302194',
20242             'Test::Builder' => '1.302194',
20243             'Test::Builder::Formatter'=> '1.302194',
20244             'Test::Builder::Module' => '1.302194',
20245             'Test::Builder::Tester' => '1.302194',
20246             'Test::Builder::Tester::Color'=> '1.302194',
20247             'Test::Builder::TodoDiag'=> '1.302194',
20248             'Test::More' => '1.302194',
20249             'Test::Simple' => '1.302194',
20250             'Test::Tester' => '1.302194',
20251             'Test::Tester::Capture' => '1.302194',
20252             'Test::Tester::CaptureRunner'=> '1.302194',
20253             'Test::Tester::Delegate'=> '1.302194',
20254             'Test::use::ok' => '1.302194',
20255             'Time::HiRes' => '1.9774',
20256             'XS::APItest' => '1.32',
20257             'feature' => '1.81',
20258             'ok' => '1.302194',
20259             'overload' => '1.37',
20260             'threads' => '2.35',
20261             'threads::shared' => '1.67',
20262             'warnings' => '1.63',
20263             'warnings::register' => '1.05',
20264             },
20265             removed => {
20266             }
20267             },
20268             5.037011 => {
20269             delta_from => 5.037010,
20270             changed => {
20271             'B::Deparse' => '1.73',
20272             'B::Op_private' => '5.037011',
20273             'Config' => '5.037011',
20274             'Devel::PPPort' => '3.71',
20275             'ExtUtils::Command' => '7.70',
20276             'ExtUtils::Command::MM' => '7.70',
20277             'ExtUtils::Liblist' => '7.70',
20278             'ExtUtils::Liblist::Kid'=> '7.70',
20279             'ExtUtils::MM' => '7.70',
20280             'ExtUtils::MM_AIX' => '7.70',
20281             'ExtUtils::MM_Any' => '7.70',
20282             'ExtUtils::MM_BeOS' => '7.70',
20283             'ExtUtils::MM_Cygwin' => '7.70',
20284             'ExtUtils::MM_DOS' => '7.70',
20285             'ExtUtils::MM_Darwin' => '7.70',
20286             'ExtUtils::MM_MacOS' => '7.70',
20287             'ExtUtils::MM_NW5' => '7.70',
20288             'ExtUtils::MM_OS2' => '7.70',
20289             'ExtUtils::MM_OS390' => '7.70',
20290             'ExtUtils::MM_QNX' => '7.70',
20291             'ExtUtils::MM_UWIN' => '7.70',
20292             'ExtUtils::MM_Unix' => '7.70',
20293             'ExtUtils::MM_VMS' => '7.70',
20294             'ExtUtils::MM_VOS' => '7.70',
20295             'ExtUtils::MM_Win32' => '7.70',
20296             'ExtUtils::MM_Win95' => '7.70',
20297             'ExtUtils::MY' => '7.70',
20298             'ExtUtils::MakeMaker' => '7.70',
20299             'ExtUtils::MakeMaker::Config'=> '7.70',
20300             'ExtUtils::MakeMaker::Locale'=> '7.70',
20301             'ExtUtils::MakeMaker::version'=> '7.70',
20302             'ExtUtils::MakeMaker::version::regex'=> '7.70',
20303             'ExtUtils::Mkbootstrap' => '7.70',
20304             'ExtUtils::Mksymlists' => '7.70',
20305             'ExtUtils::ParseXS' => '3.50',
20306             'ExtUtils::ParseXS::Constants'=> '3.50',
20307             'ExtUtils::ParseXS::CountLines'=> '3.50',
20308             'ExtUtils::ParseXS::Eval'=> '3.50',
20309             'ExtUtils::ParseXS::Utilities'=> '3.50',
20310             'ExtUtils::testlib' => '7.70',
20311             'File::Copy' => '2.41',
20312             'Locale::Maketext' => '1.33',
20313             'Module::CoreList' => '5.20230420',
20314             'Module::CoreList::Utils'=> '5.20230420',
20315             'Net::Ping' => '2.76',
20316             'feature' => '1.82',
20317             'threads' => '2.36',
20318             'threads::shared' => '1.68',
20319             'warnings' => '1.64',
20320             },
20321             removed => {
20322             }
20323             },
20324             5.036001 => {
20325             delta_from => 5.036000,
20326             changed => {
20327             'B::Op_private' => '5.036001',
20328             'Config' => '5.036001',
20329             'Module::CoreList' => '5.20230423',
20330             'Module::CoreList::Utils'=> '5.20230423',
20331             },
20332             removed => {
20333             }
20334             },
20335             5.038000 => {
20336             delta_from => 5.037011,
20337             changed => {
20338             'B::Deparse' => '1.74',
20339             'B::Op_private' => '5.038000',
20340             'CPAN' => '2.36',
20341             'CPAN::HTTP::Client' => '1.9602',
20342             'Compress::Raw::Bzip2' => '2.204_001',
20343             'Compress::Raw::Zlib' => '2.204_001',
20344             'Config' => '5.038',
20345             'Digest::MD5' => '2.58_01',
20346             'DynaLoader' => '1.54',
20347             'ExtUtils::ParseXS' => '3.51',
20348             'ExtUtils::ParseXS::Constants'=> '3.51',
20349             'ExtUtils::ParseXS::CountLines'=> '3.51',
20350             'ExtUtils::ParseXS::Eval'=> '3.51',
20351             'ExtUtils::ParseXS::Utilities'=> '3.51',
20352             'ExtUtils::Typemaps' => '3.51',
20353             'ExtUtils::Typemaps::Cmd'=> '3.51',
20354             'ExtUtils::Typemaps::InputMap'=> '3.51',
20355             'ExtUtils::Typemaps::OutputMap'=> '3.51',
20356             'ExtUtils::Typemaps::Type'=> '3.51',
20357             'File::Glob' => '1.40',
20358             'HTTP::Tiny' => '0.086',
20359             'IO' => '1.52',
20360             'IO::Dir' => '1.52',
20361             'IO::File' => '1.52',
20362             'IO::Handle' => '1.52',
20363             'IO::Pipe' => '1.52',
20364             'IO::Poll' => '1.52',
20365             'IO::Seekable' => '1.52',
20366             'IO::Select' => '1.52',
20367             'IO::Socket' => '1.52',
20368             'IO::Socket::INET' => '1.52',
20369             'IO::Socket::IP' => '0.41_01',
20370             'IO::Socket::UNIX' => '1.52',
20371             'MIME::Base64' => '3.16_01',
20372             'MIME::QuotedPrint' => '3.16_01',
20373             'Module::CoreList' => '5.20230520',
20374             'Module::CoreList::Utils'=> '5.20230520',
20375             'POSIX' => '2.13',
20376             'SDBM_File' => '1.17',
20377             'Storable' => '3.32',
20378             'Time::HiRes' => '1.9775',
20379             'Time::Piece' => '1.3401_01',
20380             'warnings' => '1.65',
20381             },
20382             removed => {
20383             }
20384             },
20385             5.039001 => {
20386             delta_from => 5.038000,
20387             changed => {
20388             'B::Op_private' => '5.039001',
20389             'CPAN::Meta::Requirements'=> '2.143',
20390             'CPAN::Meta::Requirements::Range'=> '2.143',
20391             'Compress::Raw::Bzip2' => '2.205',
20392             'Compress::Raw::Zlib' => '2.205',
20393             'Compress::Zlib' => '2.205',
20394             'Config' => '5.039001',
20395             'Errno' => '1.38',
20396             'ExtUtils::CBuilder' => '0.280239',
20397             'ExtUtils::CBuilder::Base'=> '0.280239',
20398             'ExtUtils::CBuilder::Platform::Unix'=> '0.280239',
20399             'ExtUtils::CBuilder::Platform::VMS'=> '0.280239',
20400             'ExtUtils::CBuilder::Platform::Windows'=> '0.280239',
20401             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280239',
20402             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280239',
20403             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280239',
20404             'ExtUtils::CBuilder::Platform::aix'=> '0.280239',
20405             'ExtUtils::CBuilder::Platform::android'=> '0.280239',
20406             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280239',
20407             'ExtUtils::CBuilder::Platform::darwin'=> '0.280239',
20408             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280239',
20409             'ExtUtils::CBuilder::Platform::os2'=> '0.280239',
20410             'ExtUtils::Manifest' => '1.75',
20411             'IO::Compress::Adapter::Bzip2'=> '2.205',
20412             'IO::Compress::Adapter::Deflate'=> '2.205',
20413             'IO::Compress::Adapter::Identity'=> '2.205',
20414             'IO::Compress::Base' => '2.205',
20415             'IO::Compress::Base::Common'=> '2.205',
20416             'IO::Compress::Bzip2' => '2.205',
20417             'IO::Compress::Deflate' => '2.205',
20418             'IO::Compress::Gzip' => '2.205',
20419             'IO::Compress::Gzip::Constants'=> '2.205',
20420             'IO::Compress::RawDeflate'=> '2.205',
20421             'IO::Compress::Zip' => '2.205',
20422             'IO::Compress::Zip::Constants'=> '2.205',
20423             'IO::Compress::Zlib::Constants'=> '2.205',
20424             'IO::Compress::Zlib::Extra'=> '2.205',
20425             'IO::Uncompress::Adapter::Bunzip2'=> '2.205',
20426             'IO::Uncompress::Adapter::Identity'=> '2.205',
20427             'IO::Uncompress::Adapter::Inflate'=> '2.205',
20428             'IO::Uncompress::AnyInflate'=> '2.205',
20429             'IO::Uncompress::AnyUncompress'=> '2.205',
20430             'IO::Uncompress::Base' => '2.205',
20431             'IO::Uncompress::Bunzip2'=> '2.205',
20432             'IO::Uncompress::Gunzip'=> '2.205',
20433             'IO::Uncompress::Inflate'=> '2.205',
20434             'IO::Uncompress::RawInflate'=> '2.205',
20435             'IO::Uncompress::Unzip' => '2.205',
20436             'Math::BigFloat' => '1.999839',
20437             'Math::BigInt' => '1.999839',
20438             'Math::BigInt::Calc' => '1.999839',
20439             'Math::BigInt::FastCalc'=> '0.5014',
20440             'Math::BigInt::Lib' => '1.999839',
20441             'Module::CoreList' => '5.20230720',
20442             'Module::CoreList::Utils'=> '5.20230720',
20443             'Module::Metadata' => '1.000038',
20444             'POSIX' => '2.14',
20445             'Socket' => '2.037',
20446             'Test2' => '1.302195',
20447             'Test2::API' => '1.302195',
20448             'Test2::API::Breakage' => '1.302195',
20449             'Test2::API::Context' => '1.302195',
20450             'Test2::API::Instance' => '1.302195',
20451             'Test2::API::InterceptResult'=> '1.302195',
20452             'Test2::API::InterceptResult::Event'=> '1.302195',
20453             'Test2::API::InterceptResult::Facet'=> '1.302195',
20454             'Test2::API::InterceptResult::Hub'=> '1.302195',
20455             'Test2::API::InterceptResult::Squasher'=> '1.302195',
20456             'Test2::API::Stack' => '1.302195',
20457             'Test2::Event' => '1.302195',
20458             'Test2::Event::Bail' => '1.302195',
20459             'Test2::Event::Diag' => '1.302195',
20460             'Test2::Event::Encoding'=> '1.302195',
20461             'Test2::Event::Exception'=> '1.302195',
20462             'Test2::Event::Fail' => '1.302195',
20463             'Test2::Event::Generic' => '1.302195',
20464             'Test2::Event::Note' => '1.302195',
20465             'Test2::Event::Ok' => '1.302195',
20466             'Test2::Event::Pass' => '1.302195',
20467             'Test2::Event::Plan' => '1.302195',
20468             'Test2::Event::Skip' => '1.302195',
20469             'Test2::Event::Subtest' => '1.302195',
20470             'Test2::Event::TAP::Version'=> '1.302195',
20471             'Test2::Event::V2' => '1.302195',
20472             'Test2::Event::Waiting' => '1.302195',
20473             'Test2::EventFacet' => '1.302195',
20474             'Test2::EventFacet::About'=> '1.302195',
20475             'Test2::EventFacet::Amnesty'=> '1.302195',
20476             'Test2::EventFacet::Assert'=> '1.302195',
20477             'Test2::EventFacet::Control'=> '1.302195',
20478             'Test2::EventFacet::Error'=> '1.302195',
20479             'Test2::EventFacet::Hub'=> '1.302195',
20480             'Test2::EventFacet::Info'=> '1.302195',
20481             'Test2::EventFacet::Info::Table'=> '1.302195',
20482             'Test2::EventFacet::Meta'=> '1.302195',
20483             'Test2::EventFacet::Parent'=> '1.302195',
20484             'Test2::EventFacet::Plan'=> '1.302195',
20485             'Test2::EventFacet::Render'=> '1.302195',
20486             'Test2::EventFacet::Trace'=> '1.302195',
20487             'Test2::Formatter' => '1.302195',
20488             'Test2::Formatter::TAP' => '1.302195',
20489             'Test2::Hub' => '1.302195',
20490             'Test2::Hub::Interceptor'=> '1.302195',
20491             'Test2::Hub::Interceptor::Terminator'=> '1.302195',
20492             'Test2::Hub::Subtest' => '1.302195',
20493             'Test2::IPC' => '1.302195',
20494             'Test2::IPC::Driver' => '1.302195',
20495             'Test2::IPC::Driver::Files'=> '1.302195',
20496             'Test2::Tools::Tiny' => '1.302195',
20497             'Test2::Util' => '1.302195',
20498             'Test2::Util::ExternalMeta'=> '1.302195',
20499             'Test2::Util::Facets2Legacy'=> '1.302195',
20500             'Test2::Util::HashBase' => '1.302195',
20501             'Test2::Util::Trace' => '1.302195',
20502             'Test::Builder' => '1.302195',
20503             'Test::Builder::Formatter'=> '1.302195',
20504             'Test::Builder::Module' => '1.302195',
20505             'Test::Builder::Tester' => '1.302195',
20506             'Test::Builder::Tester::Color'=> '1.302195',
20507             'Test::Builder::TodoDiag'=> '1.302195',
20508             'Test::More' => '1.302195',
20509             'Test::Simple' => '1.302195',
20510             'Test::Tester' => '1.302195',
20511             'Test::Tester::Capture' => '1.302195',
20512             'Test::Tester::CaptureRunner'=> '1.302195',
20513             'Test::Tester::Delegate'=> '1.302195',
20514             'Test::use::ok' => '1.302195',
20515             'Text::Tabs' => '2023.0511',
20516             'Text::Wrap' => '2023.0511',
20517             'Time::HiRes' => '1.9776',
20518             'Time::Local' => '1.35',
20519             'UNIVERSAL' => '1.16',
20520             'feature' => '1.83',
20521             'ok' => '1.302195',
20522             'perlfaq' => '5.20230701',
20523             'threads' => '2.37',
20524             'warnings' => '1.66',
20525             'warnings::register' => '1.06',
20526             },
20527             removed => {
20528             }
20529             },
20530             5.039002 => {
20531             delta_from => 5.039001,
20532             changed => {
20533             'App::Prove' => '3.47',
20534             'App::Prove::State' => '3.47',
20535             'App::Prove::State::Result'=> '3.47',
20536             'App::Prove::State::Result::Test'=> '3.47',
20537             'B::Op_private' => '5.039002',
20538             'Compress::Raw::Bzip2' => '2.206',
20539             'Compress::Raw::Zlib' => '2.206',
20540             'Compress::Zlib' => '2.206',
20541             'Config' => '5.039002',
20542             'Cwd' => '3.90',
20543             'Devel::Peek' => '1.34',
20544             'ExtUtils::Miniperl' => '1.14',
20545             'File::Spec' => '3.90',
20546             'File::Spec::AmigaOS' => '3.90',
20547             'File::Spec::Cygwin' => '3.90',
20548             'File::Spec::Epoc' => '3.90',
20549             'File::Spec::Functions' => '3.90',
20550             'File::Spec::Mac' => '3.90',
20551             'File::Spec::OS2' => '3.90',
20552             'File::Spec::Unix' => '3.90',
20553             'File::Spec::VMS' => '3.90',
20554             'File::Spec::Win32' => '3.90',
20555             'HTTP::Tiny' => '0.088',
20556             'IO::Compress::Adapter::Bzip2'=> '2.206',
20557             'IO::Compress::Adapter::Deflate'=> '2.206',
20558             'IO::Compress::Adapter::Identity'=> '2.206',
20559             'IO::Compress::Base' => '2.206',
20560             'IO::Compress::Base::Common'=> '2.206',
20561             'IO::Compress::Bzip2' => '2.206',
20562             'IO::Compress::Deflate' => '2.206',
20563             'IO::Compress::Gzip' => '2.206',
20564             'IO::Compress::Gzip::Constants'=> '2.206',
20565             'IO::Compress::RawDeflate'=> '2.206',
20566             'IO::Compress::Zip' => '2.206',
20567             'IO::Compress::Zip::Constants'=> '2.206',
20568             'IO::Compress::Zlib::Constants'=> '2.206',
20569             'IO::Compress::Zlib::Extra'=> '2.206',
20570             'IO::Socket::IP' => '0.42',
20571             'IO::Uncompress::Adapter::Bunzip2'=> '2.206',
20572             'IO::Uncompress::Adapter::Identity'=> '2.206',
20573             'IO::Uncompress::Adapter::Inflate'=> '2.206',
20574             'IO::Uncompress::AnyInflate'=> '2.206',
20575             'IO::Uncompress::AnyUncompress'=> '2.206',
20576             'IO::Uncompress::Base' => '2.206',
20577             'IO::Uncompress::Bunzip2'=> '2.206',
20578             'IO::Uncompress::Gunzip'=> '2.206',
20579             'IO::Uncompress::Inflate'=> '2.206',
20580             'IO::Uncompress::RawInflate'=> '2.206',
20581             'IO::Uncompress::Unzip' => '2.206',
20582             'Module::CoreList' => '5.20230820',
20583             'Module::CoreList::Utils'=> '5.20230820',
20584             'NDBM_File' => '1.17',
20585             'Opcode' => '1.65',
20586             'POSIX' => '2.15',
20587             'PerlIO::scalar' => '0.32',
20588             'PerlIO::via' => '0.19',
20589             'Pod::Html' => '1.35',
20590             'Pod::Html::Util' => '1.35',
20591             'Pod::Simple' => '3.45',
20592             'Pod::Simple::BlackBox' => '3.45',
20593             'Pod::Simple::Checker' => '3.45',
20594             'Pod::Simple::Debug' => '3.45',
20595             'Pod::Simple::DumpAsText'=> '3.45',
20596             'Pod::Simple::DumpAsXML'=> '3.45',
20597             'Pod::Simple::HTML' => '3.45',
20598             'Pod::Simple::HTMLBatch'=> '3.45',
20599             'Pod::Simple::HTMLLegacy'=> '5.02',
20600             'Pod::Simple::LinkSection'=> '3.45',
20601             'Pod::Simple::Methody' => '3.45',
20602             'Pod::Simple::Progress' => '3.45',
20603             'Pod::Simple::PullParser'=> '3.45',
20604             'Pod::Simple::PullParserEndToken'=> '3.45',
20605             'Pod::Simple::PullParserStartToken'=> '3.45',
20606             'Pod::Simple::PullParserTextToken'=> '3.45',
20607             'Pod::Simple::PullParserToken'=> '3.45',
20608             'Pod::Simple::RTF' => '3.45',
20609             'Pod::Simple::Search' => '3.45',
20610             'Pod::Simple::SimpleTree'=> '3.45',
20611             'Pod::Simple::Text' => '3.45',
20612             'Pod::Simple::TextContent'=> '3.45',
20613             'Pod::Simple::TiedOutFH'=> '3.45',
20614             'Pod::Simple::Transcode'=> '3.45',
20615             'Pod::Simple::TranscodeDumb'=> '3.45',
20616             'Pod::Simple::TranscodeSmart'=> '3.45',
20617             'Pod::Simple::XHTML' => '3.45',
20618             'Pod::Simple::XMLOutStream'=> '3.45',
20619             'Safe' => '2.45',
20620             'TAP::Base' => '3.47',
20621             'TAP::Formatter::Base' => '3.47',
20622             'TAP::Formatter::Color' => '3.47',
20623             'TAP::Formatter::Console'=> '3.47',
20624             'TAP::Formatter::Console::ParallelSession'=> '3.47',
20625             'TAP::Formatter::Console::Session'=> '3.47',
20626             'TAP::Formatter::File' => '3.47',
20627             'TAP::Formatter::File::Session'=> '3.47',
20628             'TAP::Formatter::Session'=> '3.47',
20629             'TAP::Harness' => '3.47',
20630             'TAP::Harness::Env' => '3.47',
20631             'TAP::Object' => '3.47',
20632             'TAP::Parser' => '3.47',
20633             'TAP::Parser::Aggregator'=> '3.47',
20634             'TAP::Parser::Grammar' => '3.47',
20635             'TAP::Parser::Iterator' => '3.47',
20636             'TAP::Parser::Iterator::Array'=> '3.47',
20637             'TAP::Parser::Iterator::Process'=> '3.47',
20638             'TAP::Parser::Iterator::Stream'=> '3.47',
20639             'TAP::Parser::IteratorFactory'=> '3.47',
20640             'TAP::Parser::Multiplexer'=> '3.47',
20641             'TAP::Parser::Result' => '3.47',
20642             'TAP::Parser::Result::Bailout'=> '3.47',
20643             'TAP::Parser::Result::Comment'=> '3.47',
20644             'TAP::Parser::Result::Plan'=> '3.47',
20645             'TAP::Parser::Result::Pragma'=> '3.47',
20646             'TAP::Parser::Result::Test'=> '3.47',
20647             'TAP::Parser::Result::Unknown'=> '3.47',
20648             'TAP::Parser::Result::Version'=> '3.47',
20649             'TAP::Parser::Result::YAML'=> '3.47',
20650             'TAP::Parser::ResultFactory'=> '3.47',
20651             'TAP::Parser::Scheduler'=> '3.47',
20652             'TAP::Parser::Scheduler::Job'=> '3.47',
20653             'TAP::Parser::Scheduler::Spinner'=> '3.47',
20654             'TAP::Parser::Source' => '3.47',
20655             'TAP::Parser::SourceHandler'=> '3.47',
20656             'TAP::Parser::SourceHandler::Executable'=> '3.47',
20657             'TAP::Parser::SourceHandler::File'=> '3.47',
20658             'TAP::Parser::SourceHandler::Handle'=> '3.47',
20659             'TAP::Parser::SourceHandler::Perl'=> '3.47',
20660             'TAP::Parser::SourceHandler::RawTAP'=> '3.47',
20661             'TAP::Parser::YAMLish::Reader'=> '3.47',
20662             'TAP::Parser::YAMLish::Writer'=> '3.47',
20663             'Test::Harness' => '3.47',
20664             'XS::APItest' => '1.33',
20665             'builtin' => '0.009',
20666             'feature' => '1.84',
20667             'perlfaq' => '5.20230812',
20668             'strict' => '1.13',
20669             'threads' => '2.38',
20670             'warnings' => '1.67',
20671             },
20672             removed => {
20673             }
20674             },
20675             5.039003 => {
20676             delta_from => 5.039002,
20677             changed => {
20678             'B' => '1.89',
20679             'B::Op_private' => '5.039003',
20680             'Config' => '5.039003',
20681             'DB_File' => '1.859',
20682             'Data::Dumper' => '2.189',
20683             'Devel::PPPort' => '3.72',
20684             'ExtUtils::CBuilder' => '0.280240',
20685             'ExtUtils::CBuilder::Base'=> '0.280240',
20686             'ExtUtils::CBuilder::Platform::Unix'=> '0.280240',
20687             'ExtUtils::CBuilder::Platform::VMS'=> '0.280240',
20688             'ExtUtils::CBuilder::Platform::Windows'=> '0.280240',
20689             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280240',
20690             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280240',
20691             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280240',
20692             'ExtUtils::CBuilder::Platform::aix'=> '0.280240',
20693             'ExtUtils::CBuilder::Platform::android'=> '0.280240',
20694             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280240',
20695             'ExtUtils::CBuilder::Platform::darwin'=> '0.280240',
20696             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280240',
20697             'ExtUtils::CBuilder::Platform::os2'=> '0.280240',
20698             'File::Compare' => '1.1008',
20699             'File::Spec::AmigaOS' => '3.91',
20700             'File::Spec::Cygwin' => '3.91',
20701             'File::Spec::Epoc' => '3.91',
20702             'File::Spec::Functions' => '3.91',
20703             'File::Spec::Mac' => '3.91',
20704             'File::Spec::OS2' => '3.91',
20705             'File::Spec::Unix' => '3.91',
20706             'File::Spec::VMS' => '3.91',
20707             'File::Spec::Win32' => '3.91',
20708             'FindBin' => '1.54',
20709             'Getopt::Std' => '1.14',
20710             'IO' => '1.53',
20711             'IO::Dir' => '1.53',
20712             'IO::File' => '1.53',
20713             'IO::Handle' => '1.53',
20714             'IO::Pipe' => '1.53',
20715             'IO::Poll' => '1.53',
20716             'IO::Seekable' => '1.53',
20717             'IO::Select' => '1.53',
20718             'IO::Socket' => '1.53',
20719             'IO::Socket::INET' => '1.53',
20720             'IO::Socket::UNIX' => '1.53',
20721             'Module::CoreList' => '5.20230920',
20722             'Module::CoreList::Utils'=> '5.20230920',
20723             'builtin' => '0.010',
20724             'fields' => '2.25',
20725             'threads' => '2.39',
20726             'threads::shared' => '1.69',
20727             },
20728             removed => {
20729             }
20730             },
20731             5.039004 => {
20732             delta_from => 5.039003,
20733             changed => {
20734             'App::Prove' => '3.48',
20735             'App::Prove::State' => '3.48',
20736             'App::Prove::State::Result'=> '3.48',
20737             'App::Prove::State::Result::Test'=> '3.48',
20738             'B::Op_private' => '5.039004',
20739             'Config' => '5.039004',
20740             'File::Find' => '1.44',
20741             'File::stat' => '1.14',
20742             'Math::BigFloat' => '1.999842',
20743             'Math::BigInt' => '1.999842',
20744             'Math::BigInt::Calc' => '1.999842',
20745             'Math::BigInt::FastCalc'=> '0.5015',
20746             'Math::BigInt::Lib' => '1.999842',
20747             'Module::CoreList' => '5.20231025',
20748             'Module::CoreList::Utils'=> '5.20231025',
20749             'Net::hostent' => '1.04',
20750             'Net::netent' => '1.02',
20751             'Net::protoent' => '1.03',
20752             'Net::servent' => '1.04',
20753             'POSIX' => '2.16',
20754             'TAP::Base' => '3.48',
20755             'TAP::Formatter::Base' => '3.48',
20756             'TAP::Formatter::Color' => '3.48',
20757             'TAP::Formatter::Console'=> '3.48',
20758             'TAP::Formatter::Console::ParallelSession'=> '3.48',
20759             'TAP::Formatter::Console::Session'=> '3.48',
20760             'TAP::Formatter::File' => '3.48',
20761             'TAP::Formatter::File::Session'=> '3.48',
20762             'TAP::Formatter::Session'=> '3.48',
20763             'TAP::Harness' => '3.48',
20764             'TAP::Harness::Env' => '3.48',
20765             'TAP::Object' => '3.48',
20766             'TAP::Parser' => '3.48',
20767             'TAP::Parser::Aggregator'=> '3.48',
20768             'TAP::Parser::Grammar' => '3.48',
20769             'TAP::Parser::Iterator' => '3.48',
20770             'TAP::Parser::Iterator::Array'=> '3.48',
20771             'TAP::Parser::Iterator::Process'=> '3.48',
20772             'TAP::Parser::Iterator::Stream'=> '3.48',
20773             'TAP::Parser::IteratorFactory'=> '3.48',
20774             'TAP::Parser::Multiplexer'=> '3.48',
20775             'TAP::Parser::Result' => '3.48',
20776             'TAP::Parser::Result::Bailout'=> '3.48',
20777             'TAP::Parser::Result::Comment'=> '3.48',
20778             'TAP::Parser::Result::Plan'=> '3.48',
20779             'TAP::Parser::Result::Pragma'=> '3.48',
20780             'TAP::Parser::Result::Test'=> '3.48',
20781             'TAP::Parser::Result::Unknown'=> '3.48',
20782             'TAP::Parser::Result::Version'=> '3.48',
20783             'TAP::Parser::Result::YAML'=> '3.48',
20784             'TAP::Parser::ResultFactory'=> '3.48',
20785             'TAP::Parser::Scheduler'=> '3.48',
20786             'TAP::Parser::Scheduler::Job'=> '3.48',
20787             'TAP::Parser::Scheduler::Spinner'=> '3.48',
20788             'TAP::Parser::Source' => '3.48',
20789             'TAP::Parser::SourceHandler'=> '3.48',
20790             'TAP::Parser::SourceHandler::Executable'=> '3.48',
20791             'TAP::Parser::SourceHandler::File'=> '3.48',
20792             'TAP::Parser::SourceHandler::Handle'=> '3.48',
20793             'TAP::Parser::SourceHandler::Perl'=> '3.48',
20794             'TAP::Parser::SourceHandler::RawTAP'=> '3.48',
20795             'TAP::Parser::YAMLish::Reader'=> '3.48',
20796             'TAP::Parser::YAMLish::Writer'=> '3.48',
20797             'Term::Table' => '0.017',
20798             'Term::Table::Cell' => '0.017',
20799             'Term::Table::CellStack'=> '0.017',
20800             'Term::Table::HashBase' => '0.017',
20801             'Term::Table::LineBreak'=> '0.017',
20802             'Term::Table::Spacer' => '0.017',
20803             'Term::Table::Util' => '0.017',
20804             'Test2::AsyncSubtest' => '0.000156',
20805             'Test2::AsyncSubtest::Event::Attach'=> '0.000156',
20806             'Test2::AsyncSubtest::Event::Detach'=> '0.000156',
20807             'Test2::AsyncSubtest::Formatter'=> '0.000156',
20808             'Test2::AsyncSubtest::Hub'=> '0.000156',
20809             'Test2::Bundle' => '0.000156',
20810             'Test2::Bundle::Extended'=> '0.000156',
20811             'Test2::Bundle::More' => '0.000156',
20812             'Test2::Bundle::Simple' => '0.000156',
20813             'Test2::Compare' => '0.000156',
20814             'Test2::Compare::Array' => '0.000156',
20815             'Test2::Compare::Bag' => '0.000156',
20816             'Test2::Compare::Base' => '0.000156',
20817             'Test2::Compare::Bool' => '0.000156',
20818             'Test2::Compare::Custom'=> '0.000156',
20819             'Test2::Compare::DeepRef'=> '0.000156',
20820             'Test2::Compare::Delta' => '0.000156',
20821             'Test2::Compare::Event' => '0.000156',
20822             'Test2::Compare::EventMeta'=> '0.000156',
20823             'Test2::Compare::Float' => '0.000156',
20824             'Test2::Compare::Hash' => '0.000156',
20825             'Test2::Compare::Isa' => '0.000156',
20826             'Test2::Compare::Meta' => '0.000156',
20827             'Test2::Compare::Negatable'=> '0.000156',
20828             'Test2::Compare::Number'=> '0.000156',
20829             'Test2::Compare::Object'=> '0.000156',
20830             'Test2::Compare::OrderedSubset'=> '0.000156',
20831             'Test2::Compare::Pattern'=> '0.000156',
20832             'Test2::Compare::Ref' => '0.000156',
20833             'Test2::Compare::Regex' => '0.000156',
20834             'Test2::Compare::Scalar'=> '0.000156',
20835             'Test2::Compare::Set' => '0.000156',
20836             'Test2::Compare::String'=> '0.000156',
20837             'Test2::Compare::Undef' => '0.000156',
20838             'Test2::Compare::Wildcard'=> '0.000156',
20839             'Test2::Manual' => '0.000156',
20840             'Test2::Manual::Anatomy'=> '0.000156',
20841             'Test2::Manual::Anatomy::API'=> '0.000156',
20842             'Test2::Manual::Anatomy::Context'=> '0.000156',
20843             'Test2::Manual::Anatomy::EndToEnd'=> '0.000156',
20844             'Test2::Manual::Anatomy::Event'=> '0.000156',
20845             'Test2::Manual::Anatomy::Hubs'=> '0.000156',
20846             'Test2::Manual::Anatomy::IPC'=> '0.000156',
20847             'Test2::Manual::Anatomy::Utilities'=> '0.000156',
20848             'Test2::Manual::Concurrency'=> '0.000156',
20849             'Test2::Manual::Contributing'=> '0.000156',
20850             'Test2::Manual::Testing'=> '0.000156',
20851             'Test2::Manual::Testing::Introduction'=> '0.000156',
20852             'Test2::Manual::Testing::Migrating'=> '0.000156',
20853             'Test2::Manual::Testing::Planning'=> '0.000156',
20854             'Test2::Manual::Testing::Todo'=> '0.000156',
20855             'Test2::Manual::Tooling'=> '0.000156',
20856             'Test2::Manual::Tooling::FirstTool'=> '0.000156',
20857             'Test2::Manual::Tooling::Formatter'=> '0.000156',
20858             'Test2::Manual::Tooling::Nesting'=> '0.000156',
20859             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000156',
20860             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000156',
20861             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000156',
20862             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000156',
20863             'Test2::Manual::Tooling::Subtest'=> '0.000156',
20864             'Test2::Manual::Tooling::TestBuilder'=> '0.000156',
20865             'Test2::Manual::Tooling::Testing'=> '0.000156',
20866             'Test2::Mock' => '0.000156',
20867             'Test2::Plugin' => '0.000156',
20868             'Test2::Plugin::BailOnFail'=> '0.000156',
20869             'Test2::Plugin::DieOnFail'=> '0.000156',
20870             'Test2::Plugin::ExitSummary'=> '0.000156',
20871             'Test2::Plugin::SRand' => '0.000156',
20872             'Test2::Plugin::Times' => '0.000156',
20873             'Test2::Plugin::UTF8' => '0.000156',
20874             'Test2::Require' => '0.000156',
20875             'Test2::Require::AuthorTesting'=> '0.000156',
20876             'Test2::Require::EnvVar'=> '0.000156',
20877             'Test2::Require::Fork' => '0.000156',
20878             'Test2::Require::Module'=> '0.000156',
20879             'Test2::Require::Perl' => '0.000156',
20880             'Test2::Require::RealFork'=> '0.000156',
20881             'Test2::Require::Threads'=> '0.000156',
20882             'Test2::Suite' => '0.000156',
20883             'Test2::Todo' => '0.000156',
20884             'Test2::Tools' => '0.000156',
20885             'Test2::Tools::AsyncSubtest'=> '0.000156',
20886             'Test2::Tools::Basic' => '0.000156',
20887             'Test2::Tools::Class' => '0.000156',
20888             'Test2::Tools::ClassicCompare'=> '0.000156',
20889             'Test2::Tools::Compare' => '0.000156',
20890             'Test2::Tools::Defer' => '0.000156',
20891             'Test2::Tools::Encoding'=> '0.000156',
20892             'Test2::Tools::Event' => '0.000156',
20893             'Test2::Tools::Exception'=> '0.000156',
20894             'Test2::Tools::Exports' => '0.000156',
20895             'Test2::Tools::GenTemp' => '0.000156',
20896             'Test2::Tools::Grab' => '0.000156',
20897             'Test2::Tools::Mock' => '0.000156',
20898             'Test2::Tools::Ref' => '0.000156',
20899             'Test2::Tools::Refcount'=> '0.000156',
20900             'Test2::Tools::Spec' => '0.000156',
20901             'Test2::Tools::Subtest' => '0.000156',
20902             'Test2::Tools::Target' => '0.000156',
20903             'Test2::Tools::Tester' => '0.000156',
20904             'Test2::Tools::Warnings'=> '0.000156',
20905             'Test2::Util::Grabber' => '0.000156',
20906             'Test2::Util::Guard' => '0.000156',
20907             'Test2::Util::Importer' => '0.000156',
20908             'Test2::Util::Ref' => '0.000156',
20909             'Test2::Util::Stash' => '0.000156',
20910             'Test2::Util::Sub' => '0.000156',
20911             'Test2::Util::Table' => '0.000156',
20912             'Test2::Util::Table::Cell'=> '0.000156',
20913             'Test2::Util::Table::LineBreak'=> '0.000156',
20914             'Test2::Util::Term' => '0.000156',
20915             'Test2::Util::Times' => '0.000156',
20916             'Test2::V0' => '0.000156',
20917             'Test2::Workflow' => '0.000156',
20918             'Test2::Workflow::BlockBase'=> '0.000156',
20919             'Test2::Workflow::Build'=> '0.000156',
20920             'Test2::Workflow::Runner'=> '0.000156',
20921             'Test2::Workflow::Task' => '0.000156',
20922             'Test2::Workflow::Task::Action'=> '0.000156',
20923             'Test2::Workflow::Task::Group'=> '0.000156',
20924             'Test::Harness' => '3.48',
20925             'Time::gmtime' => '1.05',
20926             'Time::localtime' => '1.04',
20927             'Time::tm' => '1.01',
20928             'User::grent' => '1.05',
20929             'User::pwent' => '1.03',
20930             'XS::APItest' => '1.34',
20931             'XS::Typemap' => '0.20',
20932             'builtin' => '0.011',
20933             'feature' => '1.85',
20934             'version' => '0.9930',
20935             'version::regex' => '0.9930',
20936             },
20937             removed => {
20938             }
20939             },
20940             5.039005 => {
20941             delta_from => 5.039004,
20942             changed => {
20943             'B::Op_private' => '5.039005',
20944             'Benchmark' => '1.25',
20945             'Config' => '5.039005',
20946             'Encode' => '3.20',
20947             'Getopt::Long' => '2.57',
20948             'Getopt::Long::Parser' => '2.57',
20949             'IO' => '1.54',
20950             'IO::Dir' => '1.54',
20951             'IO::File' => '1.54',
20952             'IO::Handle' => '1.54',
20953             'IO::Pipe' => '1.54',
20954             'IO::Poll' => '1.54',
20955             'IO::Seekable' => '1.54',
20956             'IO::Select' => '1.54',
20957             'IO::Socket' => '1.54',
20958             'IO::Socket::INET' => '1.54',
20959             'IO::Socket::UNIX' => '1.54',
20960             'Math::BigFloat' => '2.001000',
20961             'Math::BigInt' => '2.001000',
20962             'Math::BigInt::Calc' => '2.001000',
20963             'Math::BigInt::Lib' => '2.001000',
20964             'Math::BigRat' => '2.001000',
20965             'Module::CoreList' => '5.20231120',
20966             'Module::CoreList::Utils'=> '5.20231120',
20967             'POSIX' => '2.17',
20968             'Term::Table' => '0.018',
20969             'Term::Table::Cell' => '0.018',
20970             'Term::Table::CellStack'=> '0.018',
20971             'Term::Table::HashBase' => '0.018',
20972             'Term::Table::LineBreak'=> '0.018',
20973             'Term::Table::Spacer' => '0.018',
20974             'Term::Table::Util' => '0.018',
20975             'Test2::AsyncSubtest' => '0.000159',
20976             'Test2::AsyncSubtest::Event::Attach'=> '0.000159',
20977             'Test2::AsyncSubtest::Event::Detach'=> '0.000159',
20978             'Test2::AsyncSubtest::Formatter'=> '0.000159',
20979             'Test2::AsyncSubtest::Hub'=> '0.000159',
20980             'Test2::Bundle' => '0.000159',
20981             'Test2::Bundle::Extended'=> '0.000159',
20982             'Test2::Bundle::More' => '0.000159',
20983             'Test2::Bundle::Simple' => '0.000159',
20984             'Test2::Compare' => '0.000159',
20985             'Test2::Compare::Array' => '0.000159',
20986             'Test2::Compare::Bag' => '0.000159',
20987             'Test2::Compare::Base' => '0.000159',
20988             'Test2::Compare::Bool' => '0.000159',
20989             'Test2::Compare::Custom'=> '0.000159',
20990             'Test2::Compare::DeepRef'=> '0.000159',
20991             'Test2::Compare::Delta' => '0.000159',
20992             'Test2::Compare::Event' => '0.000159',
20993             'Test2::Compare::EventMeta'=> '0.000159',
20994             'Test2::Compare::Float' => '0.000159',
20995             'Test2::Compare::Hash' => '0.000159',
20996             'Test2::Compare::Isa' => '0.000159',
20997             'Test2::Compare::Meta' => '0.000159',
20998             'Test2::Compare::Negatable'=> '0.000159',
20999             'Test2::Compare::Number'=> '0.000159',
21000             'Test2::Compare::Object'=> '0.000159',
21001             'Test2::Compare::OrderedSubset'=> '0.000159',
21002             'Test2::Compare::Pattern'=> '0.000159',
21003             'Test2::Compare::Ref' => '0.000159',
21004             'Test2::Compare::Regex' => '0.000159',
21005             'Test2::Compare::Scalar'=> '0.000159',
21006             'Test2::Compare::Set' => '0.000159',
21007             'Test2::Compare::String'=> '0.000159',
21008             'Test2::Compare::Undef' => '0.000159',
21009             'Test2::Compare::Wildcard'=> '0.000159',
21010             'Test2::Manual' => '0.000159',
21011             'Test2::Manual::Anatomy'=> '0.000159',
21012             'Test2::Manual::Anatomy::API'=> '0.000159',
21013             'Test2::Manual::Anatomy::Context'=> '0.000159',
21014             'Test2::Manual::Anatomy::EndToEnd'=> '0.000159',
21015             'Test2::Manual::Anatomy::Event'=> '0.000159',
21016             'Test2::Manual::Anatomy::Hubs'=> '0.000159',
21017             'Test2::Manual::Anatomy::IPC'=> '0.000159',
21018             'Test2::Manual::Anatomy::Utilities'=> '0.000159',
21019             'Test2::Manual::Concurrency'=> '0.000159',
21020             'Test2::Manual::Contributing'=> '0.000159',
21021             'Test2::Manual::Testing'=> '0.000159',
21022             'Test2::Manual::Testing::Introduction'=> '0.000159',
21023             'Test2::Manual::Testing::Migrating'=> '0.000159',
21024             'Test2::Manual::Testing::Planning'=> '0.000159',
21025             'Test2::Manual::Testing::Todo'=> '0.000159',
21026             'Test2::Manual::Tooling'=> '0.000159',
21027             'Test2::Manual::Tooling::FirstTool'=> '0.000159',
21028             'Test2::Manual::Tooling::Formatter'=> '0.000159',
21029             'Test2::Manual::Tooling::Nesting'=> '0.000159',
21030             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000159',
21031             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000159',
21032             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000159',
21033             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000159',
21034             'Test2::Manual::Tooling::Subtest'=> '0.000159',
21035             'Test2::Manual::Tooling::TestBuilder'=> '0.000159',
21036             'Test2::Manual::Tooling::Testing'=> '0.000159',
21037             'Test2::Mock' => '0.000159',
21038             'Test2::Plugin' => '0.000159',
21039             'Test2::Plugin::BailOnFail'=> '0.000159',
21040             'Test2::Plugin::DieOnFail'=> '0.000159',
21041             'Test2::Plugin::ExitSummary'=> '0.000159',
21042             'Test2::Plugin::SRand' => '0.000159',
21043             'Test2::Plugin::Times' => '0.000159',
21044             'Test2::Plugin::UTF8' => '0.000159',
21045             'Test2::Require' => '0.000159',
21046             'Test2::Require::AuthorTesting'=> '0.000159',
21047             'Test2::Require::EnvVar'=> '0.000159',
21048             'Test2::Require::Fork' => '0.000159',
21049             'Test2::Require::Module'=> '0.000159',
21050             'Test2::Require::Perl' => '0.000159',
21051             'Test2::Require::RealFork'=> '0.000159',
21052             'Test2::Require::Threads'=> '0.000159',
21053             'Test2::Suite' => '0.000159',
21054             'Test2::Todo' => '0.000159',
21055             'Test2::Tools' => '0.000159',
21056             'Test2::Tools::AsyncSubtest'=> '0.000159',
21057             'Test2::Tools::Basic' => '0.000159',
21058             'Test2::Tools::Class' => '0.000159',
21059             'Test2::Tools::ClassicCompare'=> '0.000159',
21060             'Test2::Tools::Compare' => '0.000159',
21061             'Test2::Tools::Defer' => '0.000159',
21062             'Test2::Tools::Encoding'=> '0.000159',
21063             'Test2::Tools::Event' => '0.000159',
21064             'Test2::Tools::Exception'=> '0.000159',
21065             'Test2::Tools::Exports' => '0.000159',
21066             'Test2::Tools::GenTemp' => '0.000159',
21067             'Test2::Tools::Grab' => '0.000159',
21068             'Test2::Tools::Mock' => '0.000159',
21069             'Test2::Tools::Ref' => '0.000159',
21070             'Test2::Tools::Refcount'=> '0.000159',
21071             'Test2::Tools::Spec' => '0.000159',
21072             'Test2::Tools::Subtest' => '0.000159',
21073             'Test2::Tools::Target' => '0.000159',
21074             'Test2::Tools::Tester' => '0.000159',
21075             'Test2::Tools::Warnings'=> '0.000159',
21076             'Test2::Util::Grabber' => '0.000159',
21077             'Test2::Util::Guard' => '0.000159',
21078             'Test2::Util::Importer' => '0.000159',
21079             'Test2::Util::Ref' => '0.000159',
21080             'Test2::Util::Stash' => '0.000159',
21081             'Test2::Util::Sub' => '0.000159',
21082             'Test2::Util::Table' => '0.000159',
21083             'Test2::Util::Table::Cell'=> '0.000159',
21084             'Test2::Util::Table::LineBreak'=> '0.000159',
21085             'Test2::Util::Term' => '0.000159',
21086             'Test2::Util::Times' => '0.000159',
21087             'Test2::V0' => '0.000159',
21088             'Test2::Workflow' => '0.000159',
21089             'Test2::Workflow::BlockBase'=> '0.000159',
21090             'Test2::Workflow::Build'=> '0.000159',
21091             'Test2::Workflow::Runner'=> '0.000159',
21092             'Test2::Workflow::Task' => '0.000159',
21093             'Test2::Workflow::Task::Action'=> '0.000159',
21094             'Test2::Workflow::Task::Group'=> '0.000159',
21095             'builtin' => '0.012',
21096             'locale' => '1.11',
21097             },
21098             removed => {
21099             }
21100             },
21101             5.034002 => {
21102             delta_from => 5.034001,
21103             changed => {
21104             'B::Op_private' => '5.034002',
21105             'Config' => '5.034002',
21106             'Module::CoreList' => '5.20231125',
21107             'Module::CoreList::Utils'=> '5.20231125',
21108             },
21109             removed => {
21110             }
21111             },
21112             5.036002 => {
21113             delta_from => 5.036001,
21114             changed => {
21115             'B::Op_private' => '5.036002',
21116             'Config' => '5.036002',
21117             'Module::CoreList' => '5.20231125',
21118             'Module::CoreList::Utils'=> '5.20231125',
21119             },
21120             removed => {
21121             }
21122             },
21123             5.038001 => {
21124             delta_from => 5.038000,
21125             changed => {
21126             'B::Op_private' => '5.038001',
21127             'Config' => '5.038001',
21128             'Module::CoreList' => '5.20231125',
21129             'Module::CoreList::Utils'=> '5.20231125',
21130             },
21131             removed => {
21132             }
21133             },
21134             5.034003 => {
21135             delta_from => 5.034002,
21136             changed => {
21137             'B::Op_private' => '5.034003',
21138             'Config' => '5.034003',
21139             'Module::CoreList' => '5.20231129',
21140             'Module::CoreList::Utils'=> '5.20231129',
21141             },
21142             removed => {
21143             }
21144             },
21145             5.036003 => {
21146             delta_from => 5.036002,
21147             changed => {
21148             'B::Op_private' => '5.036003',
21149             'Config' => '5.036003',
21150             'Module::CoreList' => '5.20231129',
21151             'Module::CoreList::Utils'=> '5.20231129',
21152             },
21153             removed => {
21154             }
21155             },
21156             5.038002 => {
21157             delta_from => 5.038001,
21158             changed => {
21159             'B::Op_private' => '5.038002',
21160             'Config' => '5.038002',
21161             'Module::CoreList' => '5.20231129',
21162             'Module::CoreList::Utils'=> '5.20231129',
21163             },
21164             removed => {
21165             }
21166             },
21167             5.039006 => {
21168             delta_from => 5.039005,
21169             changed => {
21170             'Archive::Tar' => '3.02_001',
21171             'Archive::Tar::Constant'=> '3.02_001',
21172             'Archive::Tar::File' => '3.02_001',
21173             'B::Op_private' => '5.039006',
21174             'Config' => '5.039006',
21175             'Fatal' => '2.37',
21176             'Fcntl' => '1.16',
21177             'File::Glob' => '1.41',
21178             'IO' => '1.55',
21179             'IO::Dir' => '1.55',
21180             'IO::File' => '1.55',
21181             'IO::Handle' => '1.55',
21182             'IO::Pipe' => '1.55',
21183             'IO::Poll' => '1.55',
21184             'IO::Seekable' => '1.55',
21185             'IO::Select' => '1.55',
21186             'IO::Socket' => '1.55',
21187             'IO::Socket::INET' => '1.55',
21188             'IO::Socket::UNIX' => '1.55',
21189             'Math::BigFloat' => '2.003001',
21190             'Math::BigFloat::Trace' => '0.67',
21191             'Math::BigInt' => '2.003001',
21192             'Math::BigInt::Calc' => '2.003001',
21193             'Math::BigInt::FastCalc'=> '0.5016',
21194             'Math::BigInt::Lib' => '2.003001',
21195             'Math::BigInt::Trace' => '0.67',
21196             'Math::BigRat' => '2.003001',
21197             'Math::BigRat::Trace' => '0.67',
21198             'Module::CoreList' => '5.20231230',
21199             'Module::CoreList::Utils'=> '5.20231230',
21200             'Test2' => '1.302198',
21201             'Test2::API' => '1.302198',
21202             'Test2::API::Breakage' => '1.302198',
21203             'Test2::API::Context' => '1.302198',
21204             'Test2::API::Instance' => '1.302198',
21205             'Test2::API::InterceptResult'=> '1.302198',
21206             'Test2::API::InterceptResult::Event'=> '1.302198',
21207             'Test2::API::InterceptResult::Facet'=> '1.302198',
21208             'Test2::API::InterceptResult::Hub'=> '1.302198',
21209             'Test2::API::InterceptResult::Squasher'=> '1.302198',
21210             'Test2::API::Stack' => '1.302198',
21211             'Test2::Event' => '1.302198',
21212             'Test2::Event::Bail' => '1.302198',
21213             'Test2::Event::Diag' => '1.302198',
21214             'Test2::Event::Encoding'=> '1.302198',
21215             'Test2::Event::Exception'=> '1.302198',
21216             'Test2::Event::Fail' => '1.302198',
21217             'Test2::Event::Generic' => '1.302198',
21218             'Test2::Event::Note' => '1.302198',
21219             'Test2::Event::Ok' => '1.302198',
21220             'Test2::Event::Pass' => '1.302198',
21221             'Test2::Event::Plan' => '1.302198',
21222             'Test2::Event::Skip' => '1.302198',
21223             'Test2::Event::Subtest' => '1.302198',
21224             'Test2::Event::TAP::Version'=> '1.302198',
21225             'Test2::Event::V2' => '1.302198',
21226             'Test2::Event::Waiting' => '1.302198',
21227             'Test2::EventFacet' => '1.302198',
21228             'Test2::EventFacet::About'=> '1.302198',
21229             'Test2::EventFacet::Amnesty'=> '1.302198',
21230             'Test2::EventFacet::Assert'=> '1.302198',
21231             'Test2::EventFacet::Control'=> '1.302198',
21232             'Test2::EventFacet::Error'=> '1.302198',
21233             'Test2::EventFacet::Hub'=> '1.302198',
21234             'Test2::EventFacet::Info'=> '1.302198',
21235             'Test2::EventFacet::Info::Table'=> '1.302198',
21236             'Test2::EventFacet::Meta'=> '1.302198',
21237             'Test2::EventFacet::Parent'=> '1.302198',
21238             'Test2::EventFacet::Plan'=> '1.302198',
21239             'Test2::EventFacet::Render'=> '1.302198',
21240             'Test2::EventFacet::Trace'=> '1.302198',
21241             'Test2::Formatter' => '1.302198',
21242             'Test2::Formatter::TAP' => '1.302198',
21243             'Test2::Hub' => '1.302198',
21244             'Test2::Hub::Interceptor'=> '1.302198',
21245             'Test2::Hub::Interceptor::Terminator'=> '1.302198',
21246             'Test2::Hub::Subtest' => '1.302198',
21247             'Test2::IPC' => '1.302198',
21248             'Test2::IPC::Driver' => '1.302198',
21249             'Test2::IPC::Driver::Files'=> '1.302198',
21250             'Test2::Tools::Tiny' => '1.302198',
21251             'Test2::Util' => '1.302198',
21252             'Test2::Util::ExternalMeta'=> '1.302198',
21253             'Test2::Util::Facets2Legacy'=> '1.302198',
21254             'Test2::Util::HashBase' => '1.302198',
21255             'Test2::Util::Trace' => '1.302198',
21256             'Test::Builder' => '1.302198',
21257             'Test::Builder::Formatter'=> '1.302198',
21258             'Test::Builder::Module' => '1.302198',
21259             'Test::Builder::Tester' => '1.302198',
21260             'Test::Builder::Tester::Color'=> '1.302198',
21261             'Test::Builder::TodoDiag'=> '1.302198',
21262             'Test::More' => '1.302198',
21263             'Test::Simple' => '1.302198',
21264             'Test::Tester' => '1.302198',
21265             'Test::Tester::Capture' => '1.302198',
21266             'Test::Tester::CaptureRunner'=> '1.302198',
21267             'Test::Tester::Delegate'=> '1.302198',
21268             'Test::use::ok' => '1.302198',
21269             'autodie' => '2.37',
21270             'autodie::Scope::Guard' => '2.37',
21271             'autodie::Scope::GuardStack'=> '2.37',
21272             'autodie::Util' => '2.37',
21273             'autodie::exception' => '2.37',
21274             'autodie::exception::system'=> '2.37',
21275             'autodie::hints' => '2.37',
21276             'autodie::skip' => '2.37',
21277             'bigfloat' => '0.67',
21278             'bigint' => '0.67',
21279             'bignum' => '0.67',
21280             'bigrat' => '0.67',
21281             'diagnostics' => '1.40',
21282             'feature' => '1.86',
21283             'ok' => '1.302198',
21284             're' => '0.45',
21285             'threads' => '2.40',
21286             },
21287             removed => {
21288             }
21289             },
21290             5.039007 => {
21291             delta_from => 5.039006,
21292             changed => {
21293             'B::Op_private' => '5.039007',
21294             'Config' => '5.039007',
21295             'Exporter' => '5.78',
21296             'Exporter::Heavy' => '5.78',
21297             'Hash::Util' => '0.31',
21298             'I18N::Langinfo' => '0.23',
21299             'Math::BigFloat' => '2.003002',
21300             'Math::BigInt' => '2.003002',
21301             'Math::BigInt::Calc' => '2.003002',
21302             'Math::BigInt::FastCalc'=> '0.5018',
21303             'Math::BigInt::Lib' => '2.003002',
21304             'Math::BigRat' => '2.003002',
21305             'Module::CoreList' => '5.20240120',
21306             'Module::CoreList::Utils'=> '5.20240120',
21307             'Pod::Checker' => '1.76',
21308             'SelfLoader' => '1.27',
21309             },
21310             removed => {
21311             }
21312             },
21313             5.039008 => {
21314             delta_from => 5.039007,
21315             changed => {
21316             'B::Deparse' => '1.75',
21317             'B::Op_private' => '5.039008',
21318             'Config' => '5.039008',
21319             'DynaLoader' => '1.55',
21320             'File::Glob' => '1.42',
21321             'Hash::Util' => '0.32',
21322             'Hash::Util::FieldHash' => '1.27',
21323             'I18N::Langinfo' => '0.24',
21324             'Module::CoreList' => '5.20240223',
21325             'Module::CoreList::Utils'=> '5.20240223',
21326             'POSIX' => '2.18',
21327             'PerlIO::encoding' => '0.31',
21328             'Pod::Checker' => '1.77',
21329             'Safe' => '2.46',
21330             'Tie::File' => '1.08',
21331             'XS::APItest' => '1.35',
21332             'attributes' => '0.36',
21333             'builtin' => '0.014',
21334             'mro' => '1.29',
21335             'perlfaq' => '5.20240218',
21336             'warnings' => '1.68',
21337             },
21338             removed => {
21339             }
21340             },
21341             5.039009 => {
21342             delta_from => 5.039008,
21343             changed => {
21344             'B::Op_private' => '5.039009',
21345             'Compress::Raw::Bzip2' => '2.210',
21346             'Compress::Raw::Zlib' => '2.209',
21347             'Compress::Zlib' => '2.207',
21348             'Config' => '5.039009',
21349             'DynaLoader' => '1.56',
21350             'Encode' => '3.21',
21351             'Fcntl' => '1.17',
21352             'IO::Compress::Adapter::Bzip2'=> '2.207',
21353             'IO::Compress::Adapter::Deflate'=> '2.207',
21354             'IO::Compress::Adapter::Identity'=> '2.207',
21355             'IO::Compress::Base' => '2.207',
21356             'IO::Compress::Base::Common'=> '2.207',
21357             'IO::Compress::Bzip2' => '2.207',
21358             'IO::Compress::Deflate' => '2.207',
21359             'IO::Compress::Gzip' => '2.207',
21360             'IO::Compress::Gzip::Constants'=> '2.207',
21361             'IO::Compress::RawDeflate'=> '2.207',
21362             'IO::Compress::Zip' => '2.207',
21363             'IO::Compress::Zip::Constants'=> '2.207',
21364             'IO::Compress::Zlib::Constants'=> '2.207',
21365             'IO::Compress::Zlib::Extra'=> '2.207',
21366             'IO::Uncompress::Adapter::Bunzip2'=> '2.207',
21367             'IO::Uncompress::Adapter::Identity'=> '2.207',
21368             'IO::Uncompress::Adapter::Inflate'=> '2.207',
21369             'IO::Uncompress::AnyInflate'=> '2.207',
21370             'IO::Uncompress::AnyUncompress'=> '2.207',
21371             'IO::Uncompress::Base' => '2.207',
21372             'IO::Uncompress::Bunzip2'=> '2.207',
21373             'IO::Uncompress::Gunzip'=> '2.207',
21374             'IO::Uncompress::Inflate'=> '2.207',
21375             'IO::Uncompress::RawInflate'=> '2.207',
21376             'IO::Uncompress::Unzip' => '2.207',
21377             'IO::Zlib' => '1.15',
21378             'Module::CoreList' => '5.20240320',
21379             'Module::CoreList::Utils'=> '5.20240320',
21380             'Text::Tabs' => '2024.001',
21381             'Text::Wrap' => '2024.001',
21382             'Tie::File' => '1.09',
21383             'Time::HiRes' => '1.9777',
21384             'bytes' => '1.09',
21385             're' => '0.47',
21386             },
21387             removed => {
21388             }
21389             },
21390             5.039010 => {
21391             delta_from => 5.039009,
21392             changed => {
21393             'B::Deparse' => '1.76',
21394             'B::Op_private' => '5.039010',
21395             'Compress::Raw::Bzip2' => '2.212',
21396             'Compress::Raw::Zlib' => '2.212',
21397             'Compress::Zlib' => '2.212',
21398             'Config' => '5.03901',
21399             'IO::Compress::Adapter::Bzip2'=> '2.212',
21400             'IO::Compress::Adapter::Deflate'=> '2.212',
21401             'IO::Compress::Adapter::Identity'=> '2.212',
21402             'IO::Compress::Base' => '2.212',
21403             'IO::Compress::Base::Common'=> '2.212',
21404             'IO::Compress::Bzip2' => '2.212',
21405             'IO::Compress::Deflate' => '2.212',
21406             'IO::Compress::Gzip' => '2.212',
21407             'IO::Compress::Gzip::Constants'=> '2.212',
21408             'IO::Compress::RawDeflate'=> '2.212',
21409             'IO::Compress::Zip' => '2.212',
21410             'IO::Compress::Zip::Constants'=> '2.212',
21411             'IO::Compress::Zlib::Constants'=> '2.212',
21412             'IO::Compress::Zlib::Extra'=> '2.212',
21413             'IO::Uncompress::Adapter::Bunzip2'=> '2.212',
21414             'IO::Uncompress::Adapter::Identity'=> '2.212',
21415             'IO::Uncompress::Adapter::Inflate'=> '2.212',
21416             'IO::Uncompress::AnyInflate'=> '2.212',
21417             'IO::Uncompress::AnyUncompress'=> '2.212',
21418             'IO::Uncompress::Base' => '2.212',
21419             'IO::Uncompress::Bunzip2'=> '2.212',
21420             'IO::Uncompress::Gunzip'=> '2.212',
21421             'IO::Uncompress::Inflate'=> '2.212',
21422             'IO::Uncompress::RawInflate'=> '2.212',
21423             'IO::Uncompress::Unzip' => '2.212',
21424             'Module::CoreList' => '5.20240420',
21425             'Module::CoreList::Utils'=> '5.20240420',
21426             'POSIX' => '2.19',
21427             'Pod::Man' => '5.01_01',
21428             'Pod::ParseLink' => '5.01_01',
21429             'Pod::Text' => '5.01_01',
21430             'Pod::Text::Color' => '5.01_01',
21431             'Pod::Text::Overstrike' => '5.01_01',
21432             'Pod::Text::Termcap' => '5.01_01',
21433             'Socket' => '2.038',
21434             'Test2' => '1.302199',
21435             'Test2::API' => '1.302199',
21436             'Test2::API::Breakage' => '1.302199',
21437             'Test2::API::Context' => '1.302199',
21438             'Test2::API::Instance' => '1.302199',
21439             'Test2::API::InterceptResult'=> '1.302199',
21440             'Test2::API::InterceptResult::Event'=> '1.302199',
21441             'Test2::API::InterceptResult::Facet'=> '1.302199',
21442             'Test2::API::InterceptResult::Hub'=> '1.302199',
21443             'Test2::API::InterceptResult::Squasher'=> '1.302199',
21444             'Test2::API::Stack' => '1.302199',
21445             'Test2::AsyncSubtest' => '0.000162',
21446             'Test2::AsyncSubtest::Event::Attach'=> '0.000162',
21447             'Test2::AsyncSubtest::Event::Detach'=> '0.000162',
21448             'Test2::AsyncSubtest::Formatter'=> '0.000162',
21449             'Test2::AsyncSubtest::Hub'=> '0.000162',
21450             'Test2::Bundle' => '0.000162',
21451             'Test2::Bundle::Extended'=> '0.000162',
21452             'Test2::Bundle::More' => '0.000162',
21453             'Test2::Bundle::Simple' => '0.000162',
21454             'Test2::Compare' => '0.000162',
21455             'Test2::Compare::Array' => '0.000162',
21456             'Test2::Compare::Bag' => '0.000162',
21457             'Test2::Compare::Base' => '0.000162',
21458             'Test2::Compare::Bool' => '0.000162',
21459             'Test2::Compare::Custom'=> '0.000162',
21460             'Test2::Compare::DeepRef'=> '0.000162',
21461             'Test2::Compare::Delta' => '0.000162',
21462             'Test2::Compare::Event' => '0.000162',
21463             'Test2::Compare::EventMeta'=> '0.000162',
21464             'Test2::Compare::Float' => '0.000162',
21465             'Test2::Compare::Hash' => '0.000162',
21466             'Test2::Compare::Isa' => '0.000162',
21467             'Test2::Compare::Meta' => '0.000162',
21468             'Test2::Compare::Negatable'=> '0.000162',
21469             'Test2::Compare::Number'=> '0.000162',
21470             'Test2::Compare::Object'=> '0.000162',
21471             'Test2::Compare::OrderedSubset'=> '0.000162',
21472             'Test2::Compare::Pattern'=> '0.000162',
21473             'Test2::Compare::Ref' => '0.000162',
21474             'Test2::Compare::Regex' => '0.000162',
21475             'Test2::Compare::Scalar'=> '0.000162',
21476             'Test2::Compare::Set' => '0.000162',
21477             'Test2::Compare::String'=> '0.000162',
21478             'Test2::Compare::Undef' => '0.000162',
21479             'Test2::Compare::Wildcard'=> '0.000162',
21480             'Test2::Event' => '1.302199',
21481             'Test2::Event::Bail' => '1.302199',
21482             'Test2::Event::Diag' => '1.302199',
21483             'Test2::Event::Encoding'=> '1.302199',
21484             'Test2::Event::Exception'=> '1.302199',
21485             'Test2::Event::Fail' => '1.302199',
21486             'Test2::Event::Generic' => '1.302199',
21487             'Test2::Event::Note' => '1.302199',
21488             'Test2::Event::Ok' => '1.302199',
21489             'Test2::Event::Pass' => '1.302199',
21490             'Test2::Event::Plan' => '1.302199',
21491             'Test2::Event::Skip' => '1.302199',
21492             'Test2::Event::Subtest' => '1.302199',
21493             'Test2::Event::TAP::Version'=> '1.302199',
21494             'Test2::Event::V2' => '1.302199',
21495             'Test2::Event::Waiting' => '1.302199',
21496             'Test2::EventFacet' => '1.302199',
21497             'Test2::EventFacet::About'=> '1.302199',
21498             'Test2::EventFacet::Amnesty'=> '1.302199',
21499             'Test2::EventFacet::Assert'=> '1.302199',
21500             'Test2::EventFacet::Control'=> '1.302199',
21501             'Test2::EventFacet::Error'=> '1.302199',
21502             'Test2::EventFacet::Hub'=> '1.302199',
21503             'Test2::EventFacet::Info'=> '1.302199',
21504             'Test2::EventFacet::Info::Table'=> '1.302199',
21505             'Test2::EventFacet::Meta'=> '1.302199',
21506             'Test2::EventFacet::Parent'=> '1.302199',
21507             'Test2::EventFacet::Plan'=> '1.302199',
21508             'Test2::EventFacet::Render'=> '1.302199',
21509             'Test2::EventFacet::Trace'=> '1.302199',
21510             'Test2::Formatter' => '1.302199',
21511             'Test2::Formatter::TAP' => '1.302199',
21512             'Test2::Hub' => '1.302199',
21513             'Test2::Hub::Interceptor'=> '1.302199',
21514             'Test2::Hub::Interceptor::Terminator'=> '1.302199',
21515             'Test2::Hub::Subtest' => '1.302199',
21516             'Test2::IPC' => '1.302199',
21517             'Test2::IPC::Driver' => '1.302199',
21518             'Test2::IPC::Driver::Files'=> '1.302199',
21519             'Test2::Manual' => '0.000162',
21520             'Test2::Manual::Anatomy'=> '0.000162',
21521             'Test2::Manual::Anatomy::API'=> '0.000162',
21522             'Test2::Manual::Anatomy::Context'=> '0.000162',
21523             'Test2::Manual::Anatomy::EndToEnd'=> '0.000162',
21524             'Test2::Manual::Anatomy::Event'=> '0.000162',
21525             'Test2::Manual::Anatomy::Hubs'=> '0.000162',
21526             'Test2::Manual::Anatomy::IPC'=> '0.000162',
21527             'Test2::Manual::Anatomy::Utilities'=> '0.000162',
21528             'Test2::Manual::Concurrency'=> '0.000162',
21529             'Test2::Manual::Contributing'=> '0.000162',
21530             'Test2::Manual::Testing'=> '0.000162',
21531             'Test2::Manual::Testing::Introduction'=> '0.000162',
21532             'Test2::Manual::Testing::Migrating'=> '0.000162',
21533             'Test2::Manual::Testing::Planning'=> '0.000162',
21534             'Test2::Manual::Testing::Todo'=> '0.000162',
21535             'Test2::Manual::Tooling'=> '0.000162',
21536             'Test2::Manual::Tooling::FirstTool'=> '0.000162',
21537             'Test2::Manual::Tooling::Formatter'=> '0.000162',
21538             'Test2::Manual::Tooling::Nesting'=> '0.000162',
21539             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000162',
21540             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000162',
21541             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000162',
21542             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000162',
21543             'Test2::Manual::Tooling::Subtest'=> '0.000162',
21544             'Test2::Manual::Tooling::TestBuilder'=> '0.000162',
21545             'Test2::Manual::Tooling::Testing'=> '0.000162',
21546             'Test2::Mock' => '0.000162',
21547             'Test2::Plugin' => '0.000162',
21548             'Test2::Plugin::BailOnFail'=> '0.000162',
21549             'Test2::Plugin::DieOnFail'=> '0.000162',
21550             'Test2::Plugin::ExitSummary'=> '0.000162',
21551             'Test2::Plugin::SRand' => '0.000162',
21552             'Test2::Plugin::Times' => '0.000162',
21553             'Test2::Plugin::UTF8' => '0.000162',
21554             'Test2::Require' => '0.000162',
21555             'Test2::Require::AuthorTesting'=> '0.000162',
21556             'Test2::Require::AutomatedTesting'=> '0.000162',
21557             'Test2::Require::EnvVar'=> '0.000162',
21558             'Test2::Require::ExtendedTesting'=> '0.000162',
21559             'Test2::Require::Fork' => '0.000162',
21560             'Test2::Require::Module'=> '0.000162',
21561             'Test2::Require::NonInteractiveTesting'=> '0.000162',
21562             'Test2::Require::Perl' => '0.000162',
21563             'Test2::Require::RealFork'=> '0.000162',
21564             'Test2::Require::ReleaseTesting'=> '0.000162',
21565             'Test2::Require::Threads'=> '0.000162',
21566             'Test2::Suite' => '0.000162',
21567             'Test2::Todo' => '0.000162',
21568             'Test2::Tools' => '0.000162',
21569             'Test2::Tools::AsyncSubtest'=> '0.000162',
21570             'Test2::Tools::Basic' => '0.000162',
21571             'Test2::Tools::Class' => '0.000162',
21572             'Test2::Tools::ClassicCompare'=> '0.000162',
21573             'Test2::Tools::Compare' => '0.000162',
21574             'Test2::Tools::Defer' => '0.000162',
21575             'Test2::Tools::Encoding'=> '0.000162',
21576             'Test2::Tools::Event' => '0.000162',
21577             'Test2::Tools::Exception'=> '0.000162',
21578             'Test2::Tools::Exports' => '0.000162',
21579             'Test2::Tools::GenTemp' => '0.000162',
21580             'Test2::Tools::Grab' => '0.000162',
21581             'Test2::Tools::Mock' => '0.000162',
21582             'Test2::Tools::Ref' => '0.000162',
21583             'Test2::Tools::Refcount'=> '0.000162',
21584             'Test2::Tools::Spec' => '0.000162',
21585             'Test2::Tools::Subtest' => '0.000162',
21586             'Test2::Tools::Target' => '0.000162',
21587             'Test2::Tools::Tester' => '0.000162',
21588             'Test2::Tools::Tiny' => '1.302199',
21589             'Test2::Tools::Warnings'=> '0.000162',
21590             'Test2::Util' => '1.302199',
21591             'Test2::Util::ExternalMeta'=> '1.302199',
21592             'Test2::Util::Facets2Legacy'=> '1.302199',
21593             'Test2::Util::Grabber' => '0.000162',
21594             'Test2::Util::Guard' => '0.000162',
21595             'Test2::Util::HashBase' => '1.302199',
21596             'Test2::Util::Importer' => '0.000162',
21597             'Test2::Util::Ref' => '0.000162',
21598             'Test2::Util::Stash' => '0.000162',
21599             'Test2::Util::Sub' => '0.000162',
21600             'Test2::Util::Table' => '0.000162',
21601             'Test2::Util::Table::Cell'=> '0.000162',
21602             'Test2::Util::Table::LineBreak'=> '0.000162',
21603             'Test2::Util::Term' => '0.000162',
21604             'Test2::Util::Times' => '0.000162',
21605             'Test2::Util::Trace' => '1.302199',
21606             'Test2::V0' => '0.000162',
21607             'Test2::Workflow' => '0.000162',
21608             'Test2::Workflow::BlockBase'=> '0.000162',
21609             'Test2::Workflow::Build'=> '0.000162',
21610             'Test2::Workflow::Runner'=> '0.000162',
21611             'Test2::Workflow::Task' => '0.000162',
21612             'Test2::Workflow::Task::Action'=> '0.000162',
21613             'Test2::Workflow::Task::Group'=> '0.000162',
21614             'Test::Builder' => '1.302199',
21615             'Test::Builder::Formatter'=> '1.302199',
21616             'Test::Builder::Module' => '1.302199',
21617             'Test::Builder::Tester' => '1.302199',
21618             'Test::Builder::Tester::Color'=> '1.302199',
21619             'Test::Builder::TodoDiag'=> '1.302199',
21620             'Test::More' => '1.302199',
21621             'Test::Simple' => '1.302199',
21622             'Test::Tester' => '1.302199',
21623             'Test::Tester::Capture' => '1.302199',
21624             'Test::Tester::CaptureRunner'=> '1.302199',
21625             'Test::Tester::Delegate'=> '1.302199',
21626             'Test::use::ok' => '1.302199',
21627             'XS::APItest' => '1.36',
21628             'experimental' => '0.032',
21629             'feature' => '1.88',
21630             'locale' => '1.12',
21631             'ok' => '1.302199',
21632             'stable' => '0.032',
21633             'warnings' => '1.69',
21634             },
21635             removed => {
21636             }
21637             },
21638             5.040000 => {
21639             delta_from => 5.039010,
21640             changed => {
21641             'B::Op_private' => '5.040000',
21642             'Config' => '5.04',
21643             'Fcntl' => '1.18',
21644             'Module::CoreList' => '5.20240609',
21645             'Module::CoreList::Utils'=> '5.20240609',
21646             'POSIX' => '2.20',
21647             'Pod::Man' => '5.01_02',
21648             'Pod::ParseLink' => '5.01_02',
21649             'Pod::Text' => '5.01_02',
21650             'Pod::Text::Color' => '5.01_02',
21651             'Pod::Text::Overstrike' => '5.01_02',
21652             'Pod::Text::Termcap' => '5.01_02',
21653             'UNIVERSAL' => '1.17',
21654             'feature' => '1.89',
21655             'stable' => '0.033',
21656             },
21657             removed => {
21658             }
21659             },
21660             5.041000 => {
21661             delta_from => 5.040000,
21662             changed => {
21663             'B::Op_private' => '5.041000',
21664             'Config' => '5.041000',
21665             'Module::CoreList' => '5.20240610',
21666             'Module::CoreList::Utils'=> '5.20240610',
21667             'feature' => '1.90',
21668             },
21669             removed => {
21670             }
21671             },
21672             5.041001 => {
21673             delta_from => 5.041000,
21674             changed => {
21675             'B::Op_private' => '5.041001',
21676             'Config' => '5.041001',
21677             'Data::Dumper' => '2.190',
21678             'ExtUtils::ParseXS' => '3.52',
21679             'ExtUtils::ParseXS::Constants'=> '3.52',
21680             'ExtUtils::ParseXS::CountLines'=> '3.52',
21681             'ExtUtils::ParseXS::Eval'=> '3.52',
21682             'ExtUtils::ParseXS::Utilities'=> '3.52',
21683             'ExtUtils::Typemaps::Cmd'=> '3.52',
21684             'ExtUtils::Typemaps::InputMap'=> '3.52',
21685             'ExtUtils::Typemaps::OutputMap'=> '3.52',
21686             'ExtUtils::Typemaps::Type'=> '3.52',
21687             'Fcntl' => '1.19',
21688             'Getopt::Long' => '2.58',
21689             'Getopt::Long::Parser' => '2.58',
21690             'Math::BigFloat' => '2.003003',
21691             'Math::BigInt' => '2.003003',
21692             'Math::BigInt::Calc' => '2.003003',
21693             'Math::BigInt::Lib' => '2.003003',
21694             'Math::BigRat' => '2.003003',
21695             'Module::CoreList' => '5.20240620',
21696             'Module::CoreList::Utils'=> '5.20240620',
21697             'POSIX' => '2.21',
21698             'Test2::AsyncSubtest' => '0.000163',
21699             'Test2::AsyncSubtest::Event::Attach'=> '0.000163',
21700             'Test2::AsyncSubtest::Event::Detach'=> '0.000163',
21701             'Test2::AsyncSubtest::Formatter'=> '0.000163',
21702             'Test2::AsyncSubtest::Hub'=> '0.000163',
21703             'Test2::Bundle' => '0.000163',
21704             'Test2::Bundle::Extended'=> '0.000163',
21705             'Test2::Bundle::More' => '0.000163',
21706             'Test2::Bundle::Simple' => '0.000163',
21707             'Test2::Compare' => '0.000163',
21708             'Test2::Compare::Array' => '0.000163',
21709             'Test2::Compare::Bag' => '0.000163',
21710             'Test2::Compare::Base' => '0.000163',
21711             'Test2::Compare::Bool' => '0.000163',
21712             'Test2::Compare::Custom'=> '0.000163',
21713             'Test2::Compare::DeepRef'=> '0.000163',
21714             'Test2::Compare::Delta' => '0.000163',
21715             'Test2::Compare::Event' => '0.000163',
21716             'Test2::Compare::EventMeta'=> '0.000163',
21717             'Test2::Compare::Float' => '0.000163',
21718             'Test2::Compare::Hash' => '0.000163',
21719             'Test2::Compare::Isa' => '0.000163',
21720             'Test2::Compare::Meta' => '0.000163',
21721             'Test2::Compare::Negatable'=> '0.000163',
21722             'Test2::Compare::Number'=> '0.000163',
21723             'Test2::Compare::Object'=> '0.000163',
21724             'Test2::Compare::OrderedSubset'=> '0.000163',
21725             'Test2::Compare::Pattern'=> '0.000163',
21726             'Test2::Compare::Ref' => '0.000163',
21727             'Test2::Compare::Regex' => '0.000163',
21728             'Test2::Compare::Scalar'=> '0.000163',
21729             'Test2::Compare::Set' => '0.000163',
21730             'Test2::Compare::String'=> '0.000163',
21731             'Test2::Compare::Undef' => '0.000163',
21732             'Test2::Compare::Wildcard'=> '0.000163',
21733             'Test2::Manual' => '0.000163',
21734             'Test2::Manual::Anatomy'=> '0.000163',
21735             'Test2::Manual::Anatomy::API'=> '0.000163',
21736             'Test2::Manual::Anatomy::Context'=> '0.000163',
21737             'Test2::Manual::Anatomy::EndToEnd'=> '0.000163',
21738             'Test2::Manual::Anatomy::Event'=> '0.000163',
21739             'Test2::Manual::Anatomy::Hubs'=> '0.000163',
21740             'Test2::Manual::Anatomy::IPC'=> '0.000163',
21741             'Test2::Manual::Anatomy::Utilities'=> '0.000163',
21742             'Test2::Manual::Concurrency'=> '0.000163',
21743             'Test2::Manual::Contributing'=> '0.000163',
21744             'Test2::Manual::Testing'=> '0.000163',
21745             'Test2::Manual::Testing::Introduction'=> '0.000163',
21746             'Test2::Manual::Testing::Migrating'=> '0.000163',
21747             'Test2::Manual::Testing::Planning'=> '0.000163',
21748             'Test2::Manual::Testing::Todo'=> '0.000163',
21749             'Test2::Manual::Tooling'=> '0.000163',
21750             'Test2::Manual::Tooling::FirstTool'=> '0.000163',
21751             'Test2::Manual::Tooling::Formatter'=> '0.000163',
21752             'Test2::Manual::Tooling::Nesting'=> '0.000163',
21753             'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000163',
21754             'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000163',
21755             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000163',
21756             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000163',
21757             'Test2::Manual::Tooling::Subtest'=> '0.000163',
21758             'Test2::Manual::Tooling::TestBuilder'=> '0.000163',
21759             'Test2::Manual::Tooling::Testing'=> '0.000163',
21760             'Test2::Mock' => '0.000163',
21761             'Test2::Plugin' => '0.000163',
21762             'Test2::Plugin::BailOnFail'=> '0.000163',
21763             'Test2::Plugin::DieOnFail'=> '0.000163',
21764             'Test2::Plugin::ExitSummary'=> '0.000163',
21765             'Test2::Plugin::SRand' => '0.000163',
21766             'Test2::Plugin::Times' => '0.000163',
21767             'Test2::Plugin::UTF8' => '0.000163',
21768             'Test2::Require' => '0.000163',
21769             'Test2::Require::AuthorTesting'=> '0.000163',
21770             'Test2::Require::AutomatedTesting'=> '0.000163',
21771             'Test2::Require::EnvVar'=> '0.000163',
21772             'Test2::Require::ExtendedTesting'=> '0.000163',
21773             'Test2::Require::Fork' => '0.000163',
21774             'Test2::Require::Module'=> '0.000163',
21775             'Test2::Require::NonInteractiveTesting'=> '0.000163',
21776             'Test2::Require::Perl' => '0.000163',
21777             'Test2::Require::RealFork'=> '0.000163',
21778             'Test2::Require::ReleaseTesting'=> '0.000163',
21779             'Test2::Require::Threads'=> '0.000163',
21780             'Test2::Suite' => '0.000163',
21781             'Test2::Todo' => '0.000163',
21782             'Test2::Tools' => '0.000163',
21783             'Test2::Tools::AsyncSubtest'=> '0.000163',
21784             'Test2::Tools::Basic' => '0.000163',
21785             'Test2::Tools::Class' => '0.000163',
21786             'Test2::Tools::ClassicCompare'=> '0.000163',
21787             'Test2::Tools::Compare' => '0.000163',
21788             'Test2::Tools::Defer' => '0.000163',
21789             'Test2::Tools::Encoding'=> '0.000163',
21790             'Test2::Tools::Event' => '0.000163',
21791             'Test2::Tools::Exception'=> '0.000163',
21792             'Test2::Tools::Exports' => '0.000163',
21793             'Test2::Tools::GenTemp' => '0.000163',
21794             'Test2::Tools::Grab' => '0.000163',
21795             'Test2::Tools::Mock' => '0.000163',
21796             'Test2::Tools::Ref' => '0.000163',
21797             'Test2::Tools::Refcount'=> '0.000163',
21798             'Test2::Tools::Spec' => '0.000163',
21799             'Test2::Tools::Subtest' => '0.000163',
21800             'Test2::Tools::Target' => '0.000163',
21801             'Test2::Tools::Tester' => '0.000163',
21802             'Test2::Tools::Warnings'=> '0.000163',
21803             'Test2::Util::Grabber' => '0.000163',
21804             'Test2::Util::Guard' => '0.000163',
21805             'Test2::Util::Importer' => '0.000163',
21806             'Test2::Util::Ref' => '0.000163',
21807             'Test2::Util::Stash' => '0.000163',
21808             'Test2::Util::Sub' => '0.000163',
21809             'Test2::Util::Table' => '0.000163',
21810             'Test2::Util::Table::Cell'=> '0.000163',
21811             'Test2::Util::Table::LineBreak'=> '0.000163',
21812             'Test2::Util::Term' => '0.000163',
21813             'Test2::Util::Times' => '0.000163',
21814             'Test2::V0' => '0.000163',
21815             'Test2::Workflow' => '0.000163',
21816             'Test2::Workflow::BlockBase'=> '0.000163',
21817             'Test2::Workflow::Build'=> '0.000163',
21818             'Test2::Workflow::Runner'=> '0.000163',
21819             'Test2::Workflow::Task' => '0.000163',
21820             'Test2::Workflow::Task::Action'=> '0.000163',
21821             'Test2::Workflow::Task::Group'=> '0.000163',
21822             'VMS::Filespec' => '1.14',
21823             'builtin' => '0.015',
21824             'sort' => '2.06',
21825             'warnings' => '1.70',
21826             },
21827             removed => {
21828             }
21829             },
21830             5.041002 => {
21831             delta_from => 5.041001,
21832             changed => {
21833             'B::Deparse' => '1.77',
21834             'B::Op_private' => '5.041002',
21835             'Benchmark' => '1.26',
21836             'Config' => '5.041002',
21837             'Cwd' => '3.92',
21838             'Devel::PPPort' => '3.73',
21839             'File::Spec' => '3.92',
21840             'File::Spec::AmigaOS' => '3.92',
21841             'File::Spec::Cygwin' => '3.92',
21842             'File::Spec::Epoc' => '3.92',
21843             'File::Spec::Functions' => '3.92',
21844             'File::Spec::Mac' => '3.92',
21845             'File::Spec::OS2' => '3.92',
21846             'File::Spec::Unix' => '3.92',
21847             'File::Spec::VMS' => '3.92',
21848             'File::Spec::Win32' => '3.92',
21849             'Module::CoreList' => '5.20240720',
21850             'Module::CoreList::Utils'=> '5.20240720',
21851             'POSIX' => '2.22',
21852             'Pod::Man' => 'v6.0.2',
21853             'Pod::ParseLink' => 'v6.0.2',
21854             'Pod::Text' => 'v6.0.2',
21855             'Pod::Text::Color' => 'v6.0.2',
21856             'Pod::Text::Overstrike' => 'v6.0.2',
21857             'Pod::Text::Termcap' => 'v6.0.2',
21858             'Storable' => '3.33',
21859             'Win32' => '0.59_01',
21860             'XS::APItest' => '1.37',
21861             'locale' => '1.13',
21862             'source::encoding' => '0.01',
21863             'threads' => '2.41',
21864             'utf8' => '1.27',
21865             },
21866             removed => {
21867             }
21868             },
21869             5.041003 => {
21870             delta_from => 5.041002,
21871             changed => {
21872             'App::Prove' => '3.50',
21873             'App::Prove::State' => '3.50',
21874             'App::Prove::State::Result'=> '3.50',
21875             'App::Prove::State::Result::Test'=> '3.50',
21876             'B::Deparse' => '1.78',
21877             'B::Op_private' => '5.041003',
21878             'Compress::Raw::Bzip2' => '2.213',
21879             'Compress::Raw::Zlib' => '2.213',
21880             'Compress::Zlib' => '2.213',
21881             'Config' => '5.041003',
21882             'DynaLoader' => '1.57',
21883             'ExtUtils::ParseXS' => '3.53',
21884             'ExtUtils::ParseXS::Constants'=> '3.53',
21885             'ExtUtils::ParseXS::CountLines'=> '3.53',
21886             'ExtUtils::ParseXS::Eval'=> '3.53',
21887             'ExtUtils::ParseXS::Utilities'=> '3.53',
21888             'ExtUtils::Typemaps' => '3.53',
21889             'ExtUtils::Typemaps::Cmd'=> '3.53',
21890             'ExtUtils::Typemaps::InputMap'=> '3.53',
21891             'ExtUtils::Typemaps::OutputMap'=> '3.53',
21892             'ExtUtils::Typemaps::Type'=> '3.53',
21893             'IO::Compress' => '2.213',
21894             'IO::Compress::Adapter::Bzip2'=> '2.213',
21895             'IO::Compress::Adapter::Deflate'=> '2.213',
21896             'IO::Compress::Adapter::Identity'=> '2.213',
21897             'IO::Compress::Base' => '2.213',
21898             'IO::Compress::Base::Common'=> '2.213',
21899             'IO::Compress::Bzip2' => '2.213',
21900             'IO::Compress::Deflate' => '2.213',
21901             'IO::Compress::Gzip' => '2.213',
21902             'IO::Compress::Gzip::Constants'=> '2.213',
21903             'IO::Compress::RawDeflate'=> '2.213',
21904             'IO::Compress::Zip' => '2.213',
21905             'IO::Compress::Zip::Constants'=> '2.213',
21906             'IO::Compress::Zlib::Constants'=> '2.213',
21907             'IO::Compress::Zlib::Extra'=> '2.213',
21908             'IO::Uncompress::Adapter::Bunzip2'=> '2.213',
21909             'IO::Uncompress::Adapter::Identity'=> '2.213',
21910             'IO::Uncompress::Adapter::Inflate'=> '2.213',
21911             'IO::Uncompress::AnyInflate'=> '2.213',
21912             'IO::Uncompress::AnyUncompress'=> '2.213',
21913             'IO::Uncompress::Base' => '2.213',
21914             'IO::Uncompress::Bunzip2'=> '2.213',
21915             'IO::Uncompress::Gunzip'=> '2.213',
21916             'IO::Uncompress::Inflate'=> '2.213',
21917             'IO::Uncompress::RawInflate'=> '2.213',
21918             'IO::Uncompress::Unzip' => '2.213',
21919             'List::Util' => '1.65',
21920             'List::Util::XS' => '1.65',
21921             'Module::CoreList' => '5.20240829',
21922             'Module::CoreList::Utils'=> '5.20240829',
21923             'Opcode' => '1.66',
21924             'Safe' => '2.47',
21925             'Scalar::Util' => '1.65',
21926             'Storable' => '3.34',
21927             'Sub::Util' => '1.65',
21928             'TAP::Base' => '3.50',
21929             'TAP::Formatter::Base' => '3.50',
21930             'TAP::Formatter::Color' => '3.50',
21931             'TAP::Formatter::Console'=> '3.50',
21932             'TAP::Formatter::Console::ParallelSession'=> '3.50',
21933             'TAP::Formatter::Console::Session'=> '3.50',
21934             'TAP::Formatter::File' => '3.50',
21935             'TAP::Formatter::File::Session'=> '3.50',
21936             'TAP::Formatter::Session'=> '3.50',
21937             'TAP::Harness' => '3.50',
21938             'TAP::Harness::Env' => '3.50',
21939             'TAP::Object' => '3.50',
21940             'TAP::Parser' => '3.50',
21941             'TAP::Parser::Aggregator'=> '3.50',
21942             'TAP::Parser::Grammar' => '3.50',
21943             'TAP::Parser::Iterator' => '3.50',
21944             'TAP::Parser::Iterator::Array'=> '3.50',
21945             'TAP::Parser::Iterator::Process'=> '3.50',
21946             'TAP::Parser::Iterator::Stream'=> '3.50',
21947             'TAP::Parser::IteratorFactory'=> '3.50',
21948             'TAP::Parser::Multiplexer'=> '3.50',
21949             'TAP::Parser::Result' => '3.50',
21950             'TAP::Parser::Result::Bailout'=> '3.50',
21951             'TAP::Parser::Result::Comment'=> '3.50',
21952             'TAP::Parser::Result::Plan'=> '3.50',
21953             'TAP::Parser::Result::Pragma'=> '3.50',
21954             'TAP::Parser::Result::Test'=> '3.50',
21955             'TAP::Parser::Result::Unknown'=> '3.50',
21956             'TAP::Parser::Result::Version'=> '3.50',
21957             'TAP::Parser::Result::YAML'=> '3.50',
21958             'TAP::Parser::ResultFactory'=> '3.50',
21959             'TAP::Parser::Scheduler'=> '3.50',
21960             'TAP::Parser::Scheduler::Job'=> '3.50',
21961             'TAP::Parser::Scheduler::Spinner'=> '3.50',
21962             'TAP::Parser::Source' => '3.50',
21963             'TAP::Parser::SourceHandler'=> '3.50',
21964             'TAP::Parser::SourceHandler::Executable'=> '3.50',
21965             'TAP::Parser::SourceHandler::File'=> '3.50',
21966             'TAP::Parser::SourceHandler::Handle'=> '3.50',
21967             'TAP::Parser::SourceHandler::Perl'=> '3.50',
21968             'TAP::Parser::SourceHandler::RawTAP'=> '3.50',
21969             'TAP::Parser::YAMLish::Reader'=> '3.50',
21970             'TAP::Parser::YAMLish::Writer'=> '3.50',
21971             'Term::Table' => '0.022',
21972             'Term::Table::Cell' => '0.022',
21973             'Term::Table::CellStack'=> '0.022',
21974             'Term::Table::HashBase' => '0.022',
21975             'Term::Table::LineBreak'=> '0.022',
21976             'Term::Table::Spacer' => '0.022',
21977             'Term::Table::Util' => '0.022',
21978             'Test2' => '1.302201',
21979             'Test2::API' => '1.302201',
21980             'Test2::API::Breakage' => '1.302201',
21981             'Test2::API::Context' => '1.302201',
21982             'Test2::API::Instance' => '1.302201',
21983             'Test2::API::InterceptResult'=> '1.302201',
21984             'Test2::API::InterceptResult::Event'=> '1.302201',
21985             'Test2::API::InterceptResult::Facet'=> '1.302201',
21986             'Test2::API::InterceptResult::Hub'=> '1.302201',
21987             'Test2::API::InterceptResult::Squasher'=> '1.302201',
21988             'Test2::API::Stack' => '1.302201',
21989             'Test2::AsyncSubtest' => '1.302201',
21990             'Test2::AsyncSubtest::Event::Attach'=> '1.302201',
21991             'Test2::AsyncSubtest::Event::Detach'=> '1.302201',
21992             'Test2::AsyncSubtest::Formatter'=> '1.302201',
21993             'Test2::AsyncSubtest::Hub'=> '1.302201',
21994             'Test2::Bundle' => '1.302201',
21995             'Test2::Bundle::Extended'=> '1.302201',
21996             'Test2::Bundle::More' => '1.302201',
21997             'Test2::Bundle::Simple' => '1.302201',
21998             'Test2::Compare' => '1.302201',
21999             'Test2::Compare::Array' => '1.302201',
22000             'Test2::Compare::Bag' => '1.302201',
22001             'Test2::Compare::Base' => '1.302201',
22002             'Test2::Compare::Bool' => '1.302201',
22003             'Test2::Compare::Custom'=> '1.302201',
22004             'Test2::Compare::DeepRef'=> '1.302201',
22005             'Test2::Compare::Delta' => '1.302201',
22006             'Test2::Compare::Event' => '1.302201',
22007             'Test2::Compare::EventMeta'=> '1.302201',
22008             'Test2::Compare::Float' => '1.302201',
22009             'Test2::Compare::Hash' => '1.302201',
22010             'Test2::Compare::Isa' => '1.302201',
22011             'Test2::Compare::Meta' => '1.302201',
22012             'Test2::Compare::Negatable'=> '1.302201',
22013             'Test2::Compare::Number'=> '1.302201',
22014             'Test2::Compare::Object'=> '1.302201',
22015             'Test2::Compare::OrderedSubset'=> '1.302201',
22016             'Test2::Compare::Pattern'=> '1.302201',
22017             'Test2::Compare::Ref' => '1.302201',
22018             'Test2::Compare::Regex' => '1.302201',
22019             'Test2::Compare::Scalar'=> '1.302201',
22020             'Test2::Compare::Set' => '1.302201',
22021             'Test2::Compare::String'=> '1.302201',
22022             'Test2::Compare::Undef' => '1.302201',
22023             'Test2::Compare::Wildcard'=> '1.302201',
22024             'Test2::Event' => '1.302201',
22025             'Test2::Event::Bail' => '1.302201',
22026             'Test2::Event::Diag' => '1.302201',
22027             'Test2::Event::Encoding'=> '1.302201',
22028             'Test2::Event::Exception'=> '1.302201',
22029             'Test2::Event::Fail' => '1.302201',
22030             'Test2::Event::Generic' => '1.302201',
22031             'Test2::Event::Note' => '1.302201',
22032             'Test2::Event::Ok' => '1.302201',
22033             'Test2::Event::Pass' => '1.302201',
22034             'Test2::Event::Plan' => '1.302201',
22035             'Test2::Event::Skip' => '1.302201',
22036             'Test2::Event::Subtest' => '1.302201',
22037             'Test2::Event::TAP::Version'=> '1.302201',
22038             'Test2::Event::V2' => '1.302201',
22039             'Test2::Event::Waiting' => '1.302201',
22040             'Test2::EventFacet' => '1.302201',
22041             'Test2::EventFacet::About'=> '1.302201',
22042             'Test2::EventFacet::Amnesty'=> '1.302201',
22043             'Test2::EventFacet::Assert'=> '1.302201',
22044             'Test2::EventFacet::Control'=> '1.302201',
22045             'Test2::EventFacet::Error'=> '1.302201',
22046             'Test2::EventFacet::Hub'=> '1.302201',
22047             'Test2::EventFacet::Info'=> '1.302201',
22048             'Test2::EventFacet::Info::Table'=> '1.302201',
22049             'Test2::EventFacet::Meta'=> '1.302201',
22050             'Test2::EventFacet::Parent'=> '1.302201',
22051             'Test2::EventFacet::Plan'=> '1.302201',
22052             'Test2::EventFacet::Render'=> '1.302201',
22053             'Test2::EventFacet::Trace'=> '1.302201',
22054             'Test2::Formatter' => '1.302201',
22055             'Test2::Formatter::TAP' => '1.302201',
22056             'Test2::Hub' => '1.302201',
22057             'Test2::Hub::Interceptor'=> '1.302201',
22058             'Test2::Hub::Interceptor::Terminator'=> '1.302201',
22059             'Test2::Hub::Subtest' => '1.302201',
22060             'Test2::IPC' => '1.302201',
22061             'Test2::IPC::Driver' => '1.302201',
22062             'Test2::IPC::Driver::Files'=> '1.302201',
22063             'Test2::Manual' => '1.302201',
22064             'Test2::Manual::Anatomy'=> '1.302201',
22065             'Test2::Manual::Anatomy::API'=> '1.302201',
22066             'Test2::Manual::Anatomy::Context'=> '1.302201',
22067             'Test2::Manual::Anatomy::EndToEnd'=> '1.302201',
22068             'Test2::Manual::Anatomy::Event'=> '1.302201',
22069             'Test2::Manual::Anatomy::Hubs'=> '1.302201',
22070             'Test2::Manual::Anatomy::IPC'=> '1.302201',
22071             'Test2::Manual::Anatomy::Utilities'=> '1.302201',
22072             'Test2::Manual::Concurrency'=> '1.302201',
22073             'Test2::Manual::Contributing'=> '1.302201',
22074             'Test2::Manual::Testing'=> '1.302201',
22075             'Test2::Manual::Testing::Introduction'=> '1.302201',
22076             'Test2::Manual::Testing::Migrating'=> '1.302201',
22077             'Test2::Manual::Testing::Planning'=> '1.302201',
22078             'Test2::Manual::Testing::Todo'=> '1.302201',
22079             'Test2::Manual::Tooling'=> '1.302201',
22080             'Test2::Manual::Tooling::FirstTool'=> '1.302201',
22081             'Test2::Manual::Tooling::Formatter'=> '1.302201',
22082             'Test2::Manual::Tooling::Nesting'=> '1.302201',
22083             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302201',
22084             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302201',
22085             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302201',
22086             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302201',
22087             'Test2::Manual::Tooling::Subtest'=> '1.302201',
22088             'Test2::Manual::Tooling::TestBuilder'=> '1.302201',
22089             'Test2::Manual::Tooling::Testing'=> '1.302201',
22090             'Test2::Mock' => '1.302201',
22091             'Test2::Plugin' => '1.302201',
22092             'Test2::Plugin::BailOnFail'=> '1.302201',
22093             'Test2::Plugin::DieOnFail'=> '1.302201',
22094             'Test2::Plugin::ExitSummary'=> '1.302201',
22095             'Test2::Plugin::SRand' => '1.302201',
22096             'Test2::Plugin::Times' => '1.302201',
22097             'Test2::Plugin::UTF8' => '1.302201',
22098             'Test2::Require' => '1.302201',
22099             'Test2::Require::AuthorTesting'=> '1.302201',
22100             'Test2::Require::AutomatedTesting'=> '1.302201',
22101             'Test2::Require::EnvVar'=> '1.302201',
22102             'Test2::Require::ExtendedTesting'=> '1.302201',
22103             'Test2::Require::Fork' => '1.302201',
22104             'Test2::Require::Module'=> '1.302201',
22105             'Test2::Require::NonInteractiveTesting'=> '1.302201',
22106             'Test2::Require::Perl' => '1.302201',
22107             'Test2::Require::RealFork'=> '1.302201',
22108             'Test2::Require::ReleaseTesting'=> '1.302201',
22109             'Test2::Require::Threads'=> '1.302201',
22110             'Test2::Suite' => '1.302201',
22111             'Test2::Todo' => '1.302201',
22112             'Test2::Tools' => '1.302201',
22113             'Test2::Tools::AsyncSubtest'=> '1.302201',
22114             'Test2::Tools::Basic' => '1.302201',
22115             'Test2::Tools::Class' => '1.302201',
22116             'Test2::Tools::ClassicCompare'=> '1.302201',
22117             'Test2::Tools::Compare' => '1.302201',
22118             'Test2::Tools::Defer' => '1.302201',
22119             'Test2::Tools::Encoding'=> '1.302201',
22120             'Test2::Tools::Event' => '1.302201',
22121             'Test2::Tools::Exception'=> '1.302201',
22122             'Test2::Tools::Exports' => '1.302201',
22123             'Test2::Tools::GenTemp' => '1.302201',
22124             'Test2::Tools::Grab' => '1.302201',
22125             'Test2::Tools::Mock' => '1.302201',
22126             'Test2::Tools::Ref' => '1.302201',
22127             'Test2::Tools::Refcount'=> '1.302201',
22128             'Test2::Tools::Spec' => '1.302201',
22129             'Test2::Tools::Subtest' => '1.302201',
22130             'Test2::Tools::Target' => '1.302201',
22131             'Test2::Tools::Tester' => '1.302201',
22132             'Test2::Tools::Tiny' => '1.302201',
22133             'Test2::Tools::Warnings'=> '1.302201',
22134             'Test2::Util' => '1.302201',
22135             'Test2::Util::ExternalMeta'=> '1.302201',
22136             'Test2::Util::Facets2Legacy'=> '1.302201',
22137             'Test2::Util::Grabber' => '1.302201',
22138             'Test2::Util::Guard' => '1.302201',
22139             'Test2::Util::HashBase' => '1.302201',
22140             'Test2::Util::Importer' => '1.302201',
22141             'Test2::Util::Ref' => '1.302201',
22142             'Test2::Util::Stash' => '1.302201',
22143             'Test2::Util::Sub' => '1.302201',
22144             'Test2::Util::Table' => '1.302201',
22145             'Test2::Util::Table::Cell'=> '1.302201',
22146             'Test2::Util::Table::LineBreak'=> '1.302201',
22147             'Test2::Util::Term' => '1.302201',
22148             'Test2::Util::Times' => '1.302201',
22149             'Test2::Util::Trace' => '1.302201',
22150             'Test2::V0' => '1.302201',
22151             'Test2::Workflow' => '1.302201',
22152             'Test2::Workflow::BlockBase'=> '1.302201',
22153             'Test2::Workflow::Build'=> '1.302201',
22154             'Test2::Workflow::Runner'=> '1.302201',
22155             'Test2::Workflow::Task' => '1.302201',
22156             'Test2::Workflow::Task::Action'=> '1.302201',
22157             'Test2::Workflow::Task::Group'=> '1.302201',
22158             'Test::Builder' => '1.302201',
22159             'Test::Builder::Formatter'=> '1.302201',
22160             'Test::Builder::Module' => '1.302201',
22161             'Test::Builder::Tester' => '1.302201',
22162             'Test::Builder::Tester::Color'=> '1.302201',
22163             'Test::Builder::TodoDiag'=> '1.302201',
22164             'Test::Harness' => '3.50',
22165             'Test::More' => '1.302201',
22166             'Test::Simple' => '1.302201',
22167             'Test::Tester' => '1.302201',
22168             'Test::Tester::Capture' => '1.302201',
22169             'Test::Tester::CaptureRunner'=> '1.302201',
22170             'Test::Tester::Delegate'=> '1.302201',
22171             'Test::use::ok' => '1.302201',
22172             'Tie::RefHash' => '1.41',
22173             'feature' => '1.91',
22174             'ok' => '1.302201',
22175             'overload' => '1.38',
22176             'parent' => '0.242',
22177             'threads' => '2.42',
22178             },
22179             removed => {
22180             }
22181             },
22182             5.041004 => {
22183             delta_from => 5.041003,
22184             changed => {
22185             'B::Op_private' => '5.041004',
22186             'CPAN' => '2.37',
22187             'CPAN::HandleConfig' => '5.5013',
22188             'Config' => '5.041004',
22189             'Devel::Peek' => '1.36',
22190             'ExtUtils::ParseXS' => '3.54',
22191             'ExtUtils::ParseXS::Constants'=> '3.54',
22192             'ExtUtils::ParseXS::CountLines'=> '3.54',
22193             'ExtUtils::ParseXS::Eval'=> '3.54',
22194             'ExtUtils::ParseXS::Utilities'=> '3.54',
22195             'ExtUtils::Typemaps' => '3.54',
22196             'ExtUtils::Typemaps::Cmd'=> '3.54',
22197             'ExtUtils::Typemaps::InputMap'=> '3.54',
22198             'ExtUtils::Typemaps::OutputMap'=> '3.54',
22199             'ExtUtils::Typemaps::Type'=> '3.54',
22200             'File::Spec' => '3.93',
22201             'File::Spec::AmigaOS' => '3.93',
22202             'File::Spec::Cygwin' => '3.93',
22203             'File::Spec::Epoc' => '3.93',
22204             'File::Spec::Functions' => '3.93',
22205             'File::Spec::Mac' => '3.93',
22206             'File::Spec::OS2' => '3.93',
22207             'File::Spec::Unix' => '3.93',
22208             'File::Spec::VMS' => '3.93',
22209             'File::Spec::Win32' => '3.93',
22210             'List::Util' => '1.66',
22211             'List::Util::XS' => '1.66',
22212             'Module::CoreList' => '5.20240920',
22213             'Module::CoreList::Utils'=> '5.20240920',
22214             'Scalar::Util' => '1.66',
22215             'Storable' => '3.35',
22216             'Sub::Util' => '1.66',
22217             'Test2' => '1.302204',
22218             'Test2::API' => '1.302204',
22219             'Test2::API::Breakage' => '1.302204',
22220             'Test2::API::Context' => '1.302204',
22221             'Test2::API::Instance' => '1.302204',
22222             'Test2::API::InterceptResult'=> '1.302204',
22223             'Test2::API::InterceptResult::Event'=> '1.302204',
22224             'Test2::API::InterceptResult::Facet'=> '1.302204',
22225             'Test2::API::InterceptResult::Hub'=> '1.302204',
22226             'Test2::API::InterceptResult::Squasher'=> '1.302204',
22227             'Test2::API::Stack' => '1.302204',
22228             'Test2::AsyncSubtest' => '1.302204',
22229             'Test2::AsyncSubtest::Event::Attach'=> '1.302204',
22230             'Test2::AsyncSubtest::Event::Detach'=> '1.302204',
22231             'Test2::AsyncSubtest::Formatter'=> '1.302204',
22232             'Test2::AsyncSubtest::Hub'=> '1.302204',
22233             'Test2::Bundle' => '1.302204',
22234             'Test2::Bundle::Extended'=> '1.302204',
22235             'Test2::Bundle::More' => '1.302204',
22236             'Test2::Bundle::Simple' => '1.302204',
22237             'Test2::Compare' => '1.302204',
22238             'Test2::Compare::Array' => '1.302204',
22239             'Test2::Compare::Bag' => '1.302204',
22240             'Test2::Compare::Base' => '1.302204',
22241             'Test2::Compare::Bool' => '1.302204',
22242             'Test2::Compare::Custom'=> '1.302204',
22243             'Test2::Compare::DeepRef'=> '1.302204',
22244             'Test2::Compare::Delta' => '1.302204',
22245             'Test2::Compare::Event' => '1.302204',
22246             'Test2::Compare::EventMeta'=> '1.302204',
22247             'Test2::Compare::Float' => '1.302204',
22248             'Test2::Compare::Hash' => '1.302204',
22249             'Test2::Compare::Isa' => '1.302204',
22250             'Test2::Compare::Meta' => '1.302204',
22251             'Test2::Compare::Negatable'=> '1.302204',
22252             'Test2::Compare::Number'=> '1.302204',
22253             'Test2::Compare::Object'=> '1.302204',
22254             'Test2::Compare::OrderedSubset'=> '1.302204',
22255             'Test2::Compare::Pattern'=> '1.302204',
22256             'Test2::Compare::Ref' => '1.302204',
22257             'Test2::Compare::Regex' => '1.302204',
22258             'Test2::Compare::Scalar'=> '1.302204',
22259             'Test2::Compare::Set' => '1.302204',
22260             'Test2::Compare::String'=> '1.302204',
22261             'Test2::Compare::Undef' => '1.302204',
22262             'Test2::Compare::Wildcard'=> '1.302204',
22263             'Test2::Event' => '1.302204',
22264             'Test2::Event::Bail' => '1.302204',
22265             'Test2::Event::Diag' => '1.302204',
22266             'Test2::Event::Encoding'=> '1.302204',
22267             'Test2::Event::Exception'=> '1.302204',
22268             'Test2::Event::Fail' => '1.302204',
22269             'Test2::Event::Generic' => '1.302204',
22270             'Test2::Event::Note' => '1.302204',
22271             'Test2::Event::Ok' => '1.302204',
22272             'Test2::Event::Pass' => '1.302204',
22273             'Test2::Event::Plan' => '1.302204',
22274             'Test2::Event::Skip' => '1.302204',
22275             'Test2::Event::Subtest' => '1.302204',
22276             'Test2::Event::TAP::Version'=> '1.302204',
22277             'Test2::Event::V2' => '1.302204',
22278             'Test2::Event::Waiting' => '1.302204',
22279             'Test2::EventFacet' => '1.302204',
22280             'Test2::EventFacet::About'=> '1.302204',
22281             'Test2::EventFacet::Amnesty'=> '1.302204',
22282             'Test2::EventFacet::Assert'=> '1.302204',
22283             'Test2::EventFacet::Control'=> '1.302204',
22284             'Test2::EventFacet::Error'=> '1.302204',
22285             'Test2::EventFacet::Hub'=> '1.302204',
22286             'Test2::EventFacet::Info'=> '1.302204',
22287             'Test2::EventFacet::Info::Table'=> '1.302204',
22288             'Test2::EventFacet::Meta'=> '1.302204',
22289             'Test2::EventFacet::Parent'=> '1.302204',
22290             'Test2::EventFacet::Plan'=> '1.302204',
22291             'Test2::EventFacet::Render'=> '1.302204',
22292             'Test2::EventFacet::Trace'=> '1.302204',
22293             'Test2::Formatter' => '1.302204',
22294             'Test2::Formatter::TAP' => '1.302204',
22295             'Test2::Hub' => '1.302204',
22296             'Test2::Hub::Interceptor'=> '1.302204',
22297             'Test2::Hub::Interceptor::Terminator'=> '1.302204',
22298             'Test2::Hub::Subtest' => '1.302204',
22299             'Test2::IPC' => '1.302204',
22300             'Test2::IPC::Driver' => '1.302204',
22301             'Test2::IPC::Driver::Files'=> '1.302204',
22302             'Test2::Manual' => '1.302204',
22303             'Test2::Manual::Anatomy'=> '1.302204',
22304             'Test2::Manual::Anatomy::API'=> '1.302204',
22305             'Test2::Manual::Anatomy::Context'=> '1.302204',
22306             'Test2::Manual::Anatomy::EndToEnd'=> '1.302204',
22307             'Test2::Manual::Anatomy::Event'=> '1.302204',
22308             'Test2::Manual::Anatomy::Hubs'=> '1.302204',
22309             'Test2::Manual::Anatomy::IPC'=> '1.302204',
22310             'Test2::Manual::Anatomy::Utilities'=> '1.302204',
22311             'Test2::Manual::Concurrency'=> '1.302204',
22312             'Test2::Manual::Contributing'=> '1.302204',
22313             'Test2::Manual::Testing'=> '1.302204',
22314             'Test2::Manual::Testing::Introduction'=> '1.302204',
22315             'Test2::Manual::Testing::Migrating'=> '1.302204',
22316             'Test2::Manual::Testing::Planning'=> '1.302204',
22317             'Test2::Manual::Testing::Todo'=> '1.302204',
22318             'Test2::Manual::Tooling'=> '1.302204',
22319             'Test2::Manual::Tooling::FirstTool'=> '1.302204',
22320             'Test2::Manual::Tooling::Formatter'=> '1.302204',
22321             'Test2::Manual::Tooling::Nesting'=> '1.302204',
22322             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302204',
22323             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302204',
22324             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302204',
22325             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302204',
22326             'Test2::Manual::Tooling::Subtest'=> '1.302204',
22327             'Test2::Manual::Tooling::TestBuilder'=> '1.302204',
22328             'Test2::Manual::Tooling::Testing'=> '1.302204',
22329             'Test2::Mock' => '1.302204',
22330             'Test2::Plugin' => '1.302204',
22331             'Test2::Plugin::BailOnFail'=> '1.302204',
22332             'Test2::Plugin::DieOnFail'=> '1.302204',
22333             'Test2::Plugin::ExitSummary'=> '1.302204',
22334             'Test2::Plugin::SRand' => '1.302204',
22335             'Test2::Plugin::Times' => '1.302204',
22336             'Test2::Plugin::UTF8' => '1.302204',
22337             'Test2::Require' => '1.302204',
22338             'Test2::Require::AuthorTesting'=> '1.302204',
22339             'Test2::Require::AutomatedTesting'=> '1.302204',
22340             'Test2::Require::EnvVar'=> '1.302204',
22341             'Test2::Require::ExtendedTesting'=> '1.302204',
22342             'Test2::Require::Fork' => '1.302204',
22343             'Test2::Require::Module'=> '1.302204',
22344             'Test2::Require::NonInteractiveTesting'=> '1.302204',
22345             'Test2::Require::Perl' => '1.302204',
22346             'Test2::Require::RealFork'=> '1.302204',
22347             'Test2::Require::ReleaseTesting'=> '1.302204',
22348             'Test2::Require::Threads'=> '1.302204',
22349             'Test2::Suite' => '1.302204',
22350             'Test2::Todo' => '1.302204',
22351             'Test2::Tools' => '1.302204',
22352             'Test2::Tools::AsyncSubtest'=> '1.302204',
22353             'Test2::Tools::Basic' => '1.302204',
22354             'Test2::Tools::Class' => '1.302204',
22355             'Test2::Tools::ClassicCompare'=> '1.302204',
22356             'Test2::Tools::Compare' => '1.302204',
22357             'Test2::Tools::Defer' => '1.302204',
22358             'Test2::Tools::Encoding'=> '1.302204',
22359             'Test2::Tools::Event' => '1.302204',
22360             'Test2::Tools::Exception'=> '1.302204',
22361             'Test2::Tools::Exports' => '1.302204',
22362             'Test2::Tools::GenTemp' => '1.302204',
22363             'Test2::Tools::Grab' => '1.302204',
22364             'Test2::Tools::Mock' => '1.302204',
22365             'Test2::Tools::Ref' => '1.302204',
22366             'Test2::Tools::Refcount'=> '1.302204',
22367             'Test2::Tools::Spec' => '1.302204',
22368             'Test2::Tools::Subtest' => '1.302204',
22369             'Test2::Tools::Target' => '1.302204',
22370             'Test2::Tools::Tester' => '1.302204',
22371             'Test2::Tools::Tiny' => '1.302204',
22372             'Test2::Tools::Warnings'=> '1.302204',
22373             'Test2::Util' => '1.302204',
22374             'Test2::Util::ExternalMeta'=> '1.302204',
22375             'Test2::Util::Facets2Legacy'=> '1.302204',
22376             'Test2::Util::Grabber' => '1.302204',
22377             'Test2::Util::Guard' => '1.302204',
22378             'Test2::Util::HashBase' => '1.302204',
22379             'Test2::Util::Importer' => '1.302204',
22380             'Test2::Util::Ref' => '1.302204',
22381             'Test2::Util::Stash' => '1.302204',
22382             'Test2::Util::Sub' => '1.302204',
22383             'Test2::Util::Table' => '1.302204',
22384             'Test2::Util::Table::Cell'=> '1.302204',
22385             'Test2::Util::Table::LineBreak'=> '1.302204',
22386             'Test2::Util::Term' => '1.302204',
22387             'Test2::Util::Times' => '1.302204',
22388             'Test2::Util::Trace' => '1.302204',
22389             'Test2::V0' => '1.302204',
22390             'Test2::Workflow' => '1.302204',
22391             'Test2::Workflow::BlockBase'=> '1.302204',
22392             'Test2::Workflow::Build'=> '1.302204',
22393             'Test2::Workflow::Runner'=> '1.302204',
22394             'Test2::Workflow::Task' => '1.302204',
22395             'Test2::Workflow::Task::Action'=> '1.302204',
22396             'Test2::Workflow::Task::Group'=> '1.302204',
22397             'Test::Builder' => '1.302204',
22398             'Test::Builder::Formatter'=> '1.302204',
22399             'Test::Builder::Module' => '1.302204',
22400             'Test::Builder::Tester' => '1.302204',
22401             'Test::Builder::Tester::Color'=> '1.302204',
22402             'Test::Builder::TodoDiag'=> '1.302204',
22403             'Test::More' => '1.302204',
22404             'Test::Simple' => '1.302204',
22405             'Test::Tester' => '1.302204',
22406             'Test::Tester::Capture' => '1.302204',
22407             'Test::Tester::CaptureRunner'=> '1.302204',
22408             'Test::Tester::Delegate'=> '1.302204',
22409             'Test::use::ok' => '1.302204',
22410             'XS::APItest' => '1.38',
22411             'ok' => '1.302204',
22412             'overload' => '1.39',
22413             'version' => '0.9933',
22414             'version::regex' => '0.9933',
22415             },
22416             removed => {
22417             }
22418             },
22419             5.041005 => {
22420             delta_from => 5.041004,
22421             changed => {
22422             'B::Op_private' => '5.041005',
22423             'Config' => '5.041005',
22424             'Digest::MD5' => '2.59',
22425             'ExtUtils::ParseXS' => '3.55',
22426             'ExtUtils::ParseXS::Constants'=> '3.55',
22427             'ExtUtils::ParseXS::CountLines'=> '3.55',
22428             'ExtUtils::ParseXS::Eval'=> '3.55',
22429             'ExtUtils::ParseXS::Node'=> '3.55',
22430             'ExtUtils::ParseXS::Utilities'=> '3.55',
22431             'ExtUtils::Typemaps' => '3.55',
22432             'ExtUtils::Typemaps::Cmd'=> '3.55',
22433             'ExtUtils::Typemaps::InputMap'=> '3.55',
22434             'ExtUtils::Typemaps::OutputMap'=> '3.55',
22435             'ExtUtils::Typemaps::Type'=> '3.55',
22436             'IPC::Open2' => '1.07',
22437             'IPC::Open3' => '1.23',
22438             'List::Util' => '1.68',
22439             'List::Util::XS' => '1.68',
22440             'Module::CoreList' => '5.20241020',
22441             'Module::CoreList::Utils'=> '5.20241020',
22442             'Scalar::List::Utils' => '1.68',
22443             'Scalar::Util' => '1.68',
22444             'Sub::Util' => '1.68',
22445             'threads::shared' => '1.70',
22446             },
22447             removed => {
22448             }
22449             },
22450             5.041006 => {
22451             delta_from => 5.041005,
22452             changed => {
22453             'B::Deparse' => '1.80',
22454             'B::Op_private' => '5.041006',
22455             'CPAN' => '2.38',
22456             'Config' => '5.041006',
22457             'DB' => '1.09',
22458             'ExtUtils::ParseXS' => '3.56',
22459             'ExtUtils::ParseXS::Constants'=> '3.56',
22460             'ExtUtils::ParseXS::CountLines'=> '3.56',
22461             'ExtUtils::ParseXS::Eval'=> '3.56',
22462             'ExtUtils::ParseXS::Node'=> '3.56',
22463             'ExtUtils::ParseXS::Utilities'=> '3.56',
22464             'ExtUtils::Typemaps' => '3.56',
22465             'ExtUtils::Typemaps::Cmd'=> '3.56',
22466             'ExtUtils::Typemaps::InputMap'=> '3.56',
22467             'ExtUtils::Typemaps::OutputMap'=> '3.56',
22468             'ExtUtils::Typemaps::Type'=> '3.56',
22469             'HTTP::Tiny' => '0.090',
22470             'IPC::Open2' => '1.08',
22471             'IPC::Open3' => '1.24',
22472             'List::Util' => '1.68_01',
22473             'List::Util::XS' => '1.68_01',
22474             'Math::Complex' => '1.63',
22475             'Math::Trig' => '1.63',
22476             'Memoize' => '1.17',
22477             'Memoize::AnyDBM_File' => '1.17',
22478             'Memoize::Expire' => '1.17',
22479             'Memoize::NDBM_File' => '1.17',
22480             'Memoize::SDBM_File' => '1.17',
22481             'Memoize::Storable' => '1.17',
22482             'Module::CoreList' => '5.20241120',
22483             'Module::CoreList::Utils'=> '5.20241120',
22484             'NDBM_File' => '1.18',
22485             'ODBM_File' => '1.19',
22486             'POSIX' => '2.23',
22487             'Scalar::Util' => '1.68_01',
22488             'Sub::Util' => '1.68_01',
22489             'Term::Table' => '0.023',
22490             'Term::Table::Cell' => '0.023',
22491             'Term::Table::CellStack'=> '0.023',
22492             'Term::Table::HashBase' => '0.023',
22493             'Term::Table::LineBreak'=> '0.023',
22494             'Term::Table::Spacer' => '0.023',
22495             'Term::Table::Util' => '0.023',
22496             'builtin' => '0.016',
22497             'feature' => '1.92',
22498             'fields' => '2.26',
22499             'parent' => '0.242_001',
22500             'warnings' => '1.71',
22501             },
22502             removed => {
22503             }
22504             },
22505             5.041007 => {
22506             delta_from => 5.041006,
22507             changed => {
22508             'B::Deparse' => '1.81',
22509             'B::Op_private' => '5.041007',
22510             'CPAN::Meta::YAML' => '0.020',
22511             'Config' => '5.041007',
22512             'IO::Socket::IP' => '0.43',
22513             'Module::CoreList' => '5.20241220',
22514             'Module::CoreList::Utils'=> '5.20241220',
22515             'Opcode' => '1.67',
22516             'XS::APItest' => '1.40',
22517             'builtin' => '0.017',
22518             'feature' => '1.93',
22519             'parent' => '0.244',
22520             'warnings' => '1.72',
22521             },
22522             removed => {
22523             }
22524             },
22525             5.038003 => {
22526             delta_from => 5.038002,
22527             changed => {
22528             'B::Op_private' => '5.038003',
22529             'Config' => '5.038003',
22530             'DynaLoader' => '1.54_01',
22531             'Module::CoreList' => '5.20250118_38',
22532             'Module::CoreList::Utils'=> '5.20250118_38',
22533             'Pod::Functions::Functions'=> '1.14',
22534             },
22535             removed => {
22536             }
22537             },
22538             5.040001 => {
22539             delta_from => 5.040000,
22540             changed => {
22541             'B::Op_private' => '5.040001',
22542             'Config' => '5.040001',
22543             'Cwd' => '3.91',
22544             'File::Spec' => '3.91',
22545             'Module::CoreList' => '5.20250118_40',
22546             'Module::CoreList::Utils'=> '5.20250118_40',
22547             'Pod::Functions::Functions'=> '1.14',
22548             'warnings' => '1.70',
22549             },
22550             removed => {
22551             }
22552             },
22553             5.041008 => {
22554             delta_from => 5.041007,
22555             changed => {
22556             'B::Deparse' => '1.82',
22557             'B::Op_private' => '5.041008',
22558             'Config' => '5.041008',
22559             'Config::Perl::V' => '0.38',
22560             'DBM_Filter' => '0.07',
22561             'Data::Dumper' => '2.191',
22562             'ExtUtils::ParseXS' => '3.57',
22563             'ExtUtils::ParseXS::Constants'=> '3.57',
22564             'ExtUtils::ParseXS::CountLines'=> '3.57',
22565             'ExtUtils::ParseXS::Eval'=> '3.57',
22566             'ExtUtils::ParseXS::Node'=> '3.57',
22567             'ExtUtils::ParseXS::Utilities'=> '3.57',
22568             'ExtUtils::Typemaps' => '3.57',
22569             'ExtUtils::Typemaps::Cmd'=> '3.57',
22570             'ExtUtils::Typemaps::InputMap'=> '3.57',
22571             'ExtUtils::Typemaps::OutputMap'=> '3.57',
22572             'ExtUtils::Typemaps::Type'=> '3.57',
22573             'Module::CoreList' => '5.20250120',
22574             'Module::CoreList::Utils'=> '5.20250120',
22575             'Opcode' => '1.68',
22576             'Term::Table' => '0.024',
22577             'Term::Table::Cell' => '0.024',
22578             'Term::Table::CellStack'=> '0.024',
22579             'Term::Table::HashBase' => '0.024',
22580             'Term::Table::LineBreak'=> '0.024',
22581             'Term::Table::Spacer' => '0.024',
22582             'Term::Table::Util' => '0.024',
22583             'Test2' => '1.302207',
22584             'Test2::API' => '1.302207',
22585             'Test2::API::Breakage' => '1.302207',
22586             'Test2::API::Context' => '1.302207',
22587             'Test2::API::Instance' => '1.302207',
22588             'Test2::API::InterceptResult'=> '1.302207',
22589             'Test2::API::InterceptResult::Event'=> '1.302207',
22590             'Test2::API::InterceptResult::Facet'=> '1.302207',
22591             'Test2::API::InterceptResult::Hub'=> '1.302207',
22592             'Test2::API::InterceptResult::Squasher'=> '1.302207',
22593             'Test2::API::Stack' => '1.302207',
22594             'Test2::AsyncSubtest' => '1.302207',
22595             'Test2::AsyncSubtest::Event::Attach'=> '1.302207',
22596             'Test2::AsyncSubtest::Event::Detach'=> '1.302207',
22597             'Test2::AsyncSubtest::Formatter'=> '1.302207',
22598             'Test2::AsyncSubtest::Hub'=> '1.302207',
22599             'Test2::Bundle' => '1.302207',
22600             'Test2::Bundle::Extended'=> '1.302207',
22601             'Test2::Bundle::More' => '1.302207',
22602             'Test2::Bundle::Simple' => '1.302207',
22603             'Test2::Compare' => '1.302207',
22604             'Test2::Compare::Array' => '1.302207',
22605             'Test2::Compare::Bag' => '1.302207',
22606             'Test2::Compare::Base' => '1.302207',
22607             'Test2::Compare::Bool' => '1.302207',
22608             'Test2::Compare::Custom'=> '1.302207',
22609             'Test2::Compare::DeepRef'=> '1.302207',
22610             'Test2::Compare::Delta' => '1.302207',
22611             'Test2::Compare::Event' => '1.302207',
22612             'Test2::Compare::EventMeta'=> '1.302207',
22613             'Test2::Compare::Float' => '1.302207',
22614             'Test2::Compare::Hash' => '1.302207',
22615             'Test2::Compare::Isa' => '1.302207',
22616             'Test2::Compare::Meta' => '1.302207',
22617             'Test2::Compare::Negatable'=> '1.302207',
22618             'Test2::Compare::Number'=> '1.302207',
22619             'Test2::Compare::Object'=> '1.302207',
22620             'Test2::Compare::OrderedSubset'=> '1.302207',
22621             'Test2::Compare::Pattern'=> '1.302207',
22622             'Test2::Compare::Ref' => '1.302207',
22623             'Test2::Compare::Regex' => '1.302207',
22624             'Test2::Compare::Scalar'=> '1.302207',
22625             'Test2::Compare::Set' => '1.302207',
22626             'Test2::Compare::String'=> '1.302207',
22627             'Test2::Compare::Undef' => '1.302207',
22628             'Test2::Compare::Wildcard'=> '1.302207',
22629             'Test2::Env' => '1.302207',
22630             'Test2::Event' => '1.302207',
22631             'Test2::Event::Bail' => '1.302207',
22632             'Test2::Event::Diag' => '1.302207',
22633             'Test2::Event::Encoding'=> '1.302207',
22634             'Test2::Event::Exception'=> '1.302207',
22635             'Test2::Event::Fail' => '1.302207',
22636             'Test2::Event::Generic' => '1.302207',
22637             'Test2::Event::Note' => '1.302207',
22638             'Test2::Event::Ok' => '1.302207',
22639             'Test2::Event::Pass' => '1.302207',
22640             'Test2::Event::Plan' => '1.302207',
22641             'Test2::Event::Skip' => '1.302207',
22642             'Test2::Event::Subtest' => '1.302207',
22643             'Test2::Event::TAP::Version'=> '1.302207',
22644             'Test2::Event::V2' => '1.302207',
22645             'Test2::Event::Waiting' => '1.302207',
22646             'Test2::EventFacet' => '1.302207',
22647             'Test2::EventFacet::About'=> '1.302207',
22648             'Test2::EventFacet::Amnesty'=> '1.302207',
22649             'Test2::EventFacet::Assert'=> '1.302207',
22650             'Test2::EventFacet::Control'=> '1.302207',
22651             'Test2::EventFacet::Error'=> '1.302207',
22652             'Test2::EventFacet::Hub'=> '1.302207',
22653             'Test2::EventFacet::Info'=> '1.302207',
22654             'Test2::EventFacet::Info::Table'=> '1.302207',
22655             'Test2::EventFacet::Meta'=> '1.302207',
22656             'Test2::EventFacet::Parent'=> '1.302207',
22657             'Test2::EventFacet::Plan'=> '1.302207',
22658             'Test2::EventFacet::Render'=> '1.302207',
22659             'Test2::EventFacet::Trace'=> '1.302207',
22660             'Test2::Formatter' => '1.302207',
22661             'Test2::Formatter::TAP' => '1.302207',
22662             'Test2::Hub' => '1.302207',
22663             'Test2::Hub::Interceptor'=> '1.302207',
22664             'Test2::Hub::Interceptor::Terminator'=> '1.302207',
22665             'Test2::Hub::Subtest' => '1.302207',
22666             'Test2::IPC' => '1.302207',
22667             'Test2::IPC::Driver' => '1.302207',
22668             'Test2::IPC::Driver::Files'=> '1.302207',
22669             'Test2::Manual' => '1.302207',
22670             'Test2::Manual::Anatomy'=> '1.302207',
22671             'Test2::Manual::Anatomy::API'=> '1.302207',
22672             'Test2::Manual::Anatomy::Context'=> '1.302207',
22673             'Test2::Manual::Anatomy::EndToEnd'=> '1.302207',
22674             'Test2::Manual::Anatomy::Event'=> '1.302207',
22675             'Test2::Manual::Anatomy::Hubs'=> '1.302207',
22676             'Test2::Manual::Anatomy::IPC'=> '1.302207',
22677             'Test2::Manual::Anatomy::Utilities'=> '1.302207',
22678             'Test2::Manual::Concurrency'=> '1.302207',
22679             'Test2::Manual::Contributing'=> '1.302207',
22680             'Test2::Manual::Testing'=> '1.302207',
22681             'Test2::Manual::Testing::Introduction'=> '1.302207',
22682             'Test2::Manual::Testing::Migrating'=> '1.302207',
22683             'Test2::Manual::Testing::Planning'=> '1.302207',
22684             'Test2::Manual::Testing::Todo'=> '1.302207',
22685             'Test2::Manual::Tooling'=> '1.302207',
22686             'Test2::Manual::Tooling::FirstTool'=> '1.302207',
22687             'Test2::Manual::Tooling::Formatter'=> '1.302207',
22688             'Test2::Manual::Tooling::Nesting'=> '1.302207',
22689             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302207',
22690             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302207',
22691             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302207',
22692             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302207',
22693             'Test2::Manual::Tooling::Subtest'=> '1.302207',
22694             'Test2::Manual::Tooling::TestBuilder'=> '1.302207',
22695             'Test2::Manual::Tooling::Testing'=> '1.302207',
22696             'Test2::Mock' => '1.302207',
22697             'Test2::Plugin' => '1.302207',
22698             'Test2::Plugin::BailOnFail'=> '1.302207',
22699             'Test2::Plugin::DieOnFail'=> '1.302207',
22700             'Test2::Plugin::ExitSummary'=> '1.302207',
22701             'Test2::Plugin::SRand' => '1.302207',
22702             'Test2::Plugin::Times' => '1.302207',
22703             'Test2::Plugin::UTF8' => '1.302207',
22704             'Test2::Require' => '1.302207',
22705             'Test2::Require::AuthorTesting'=> '1.302207',
22706             'Test2::Require::AutomatedTesting'=> '1.302207',
22707             'Test2::Require::EnvVar'=> '1.302207',
22708             'Test2::Require::ExtendedTesting'=> '1.302207',
22709             'Test2::Require::Fork' => '1.302207',
22710             'Test2::Require::Module'=> '1.302207',
22711             'Test2::Require::NonInteractiveTesting'=> '1.302207',
22712             'Test2::Require::Perl' => '1.302207',
22713             'Test2::Require::RealFork'=> '1.302207',
22714             'Test2::Require::ReleaseTesting'=> '1.302207',
22715             'Test2::Require::Threads'=> '1.302207',
22716             'Test2::Suite' => '1.302207',
22717             'Test2::Todo' => '1.302207',
22718             'Test2::Tools' => '1.302207',
22719             'Test2::Tools::AsyncSubtest'=> '1.302207',
22720             'Test2::Tools::Basic' => '1.302207',
22721             'Test2::Tools::Class' => '1.302207',
22722             'Test2::Tools::ClassicCompare'=> '1.302207',
22723             'Test2::Tools::Compare' => '1.302207',
22724             'Test2::Tools::Defer' => '1.302207',
22725             'Test2::Tools::Encoding'=> '1.302207',
22726             'Test2::Tools::Event' => '1.302207',
22727             'Test2::Tools::Exception'=> '1.302207',
22728             'Test2::Tools::Exports' => '1.302207',
22729             'Test2::Tools::GenTemp' => '1.302207',
22730             'Test2::Tools::Grab' => '1.302207',
22731             'Test2::Tools::Mock' => '1.302207',
22732             'Test2::Tools::Ref' => '1.302207',
22733             'Test2::Tools::Refcount'=> '1.302207',
22734             'Test2::Tools::Spec' => '1.302207',
22735             'Test2::Tools::Subtest' => '1.302207',
22736             'Test2::Tools::Target' => '1.302207',
22737             'Test2::Tools::Tester' => '1.302207',
22738             'Test2::Tools::Tiny' => '1.302207',
22739             'Test2::Tools::Warnings'=> '1.302207',
22740             'Test2::Util' => '1.302207',
22741             'Test2::Util::ExternalMeta'=> '1.302207',
22742             'Test2::Util::Facets2Legacy'=> '1.302207',
22743             'Test2::Util::Grabber' => '1.302207',
22744             'Test2::Util::Guard' => '1.302207',
22745             'Test2::Util::HashBase' => '1.302207',
22746             'Test2::Util::Importer' => '1.302207',
22747             'Test2::Util::Ref' => '1.302207',
22748             'Test2::Util::Stash' => '1.302207',
22749             'Test2::Util::Sub' => '1.302207',
22750             'Test2::Util::Table' => '1.302207',
22751             'Test2::Util::Table::Cell'=> '1.302207',
22752             'Test2::Util::Table::LineBreak'=> '1.302207',
22753             'Test2::Util::Term' => '1.302207',
22754             'Test2::Util::Times' => '1.302207',
22755             'Test2::Util::Trace' => '1.302207',
22756             'Test2::V0' => '1.302207',
22757             'Test2::Workflow' => '1.302207',
22758             'Test2::Workflow::BlockBase'=> '1.302207',
22759             'Test2::Workflow::Build'=> '1.302207',
22760             'Test2::Workflow::Runner'=> '1.302207',
22761             'Test2::Workflow::Task' => '1.302207',
22762             'Test2::Workflow::Task::Action'=> '1.302207',
22763             'Test2::Workflow::Task::Group'=> '1.302207',
22764             'Test::Builder' => '1.302207',
22765             'Test::Builder::Formatter'=> '1.302207',
22766             'Test::Builder::Module' => '1.302207',
22767             'Test::Builder::Tester' => '1.302207',
22768             'Test::Builder::Tester::Color'=> '1.302207',
22769             'Test::Builder::TodoDiag'=> '1.302207',
22770             'Test::More' => '1.302207',
22771             'Test::Simple' => '1.302207',
22772             'Test::Tester' => '1.302207',
22773             'Test::Tester::Capture' => '1.302207',
22774             'Test::Tester::CaptureRunner'=> '1.302207',
22775             'Test::Tester::Delegate'=> '1.302207',
22776             'Test::use::ok' => '1.302207',
22777             'Time::Piece' => '1.35',
22778             'Time::Seconds' => '1.35',
22779             'experimental' => '0.034',
22780             'ok' => '1.302207',
22781             'stable' => '0.034',
22782             },
22783             removed => {
22784             'Test::Builder::IO::Scalar'=> 1,
22785             }
22786             },
22787             5.041009 => {
22788             delta_from => 5.041008,
22789             changed => {
22790             'B::Deparse' => '1.83',
22791             'B::Op_private' => '5.041009',
22792             'Config' => '5.041009',
22793             'Exporter' => '5.79',
22794             'Exporter::Heavy' => '5.79',
22795             'IO::Poll' => '1.56',
22796             'Math::BigFloat' => '2.003004',
22797             'Math::BigInt' => '2.003004',
22798             'Math::BigInt::Calc' => '2.003004',
22799             'Math::BigInt::Lib' => '2.003004',
22800             'Math::BigRat' => '2.003004',
22801             'Module::CoreList' => '5.20250220',
22802             'Module::CoreList::Utils'=> '5.20250220',
22803             'ODBM_File' => '1.20',
22804             'Opcode' => '1.69',
22805             'Safe' => '2.46',
22806             'Test2' => '1.302209',
22807             'Test2::API' => '1.302209',
22808             'Test2::API::Breakage' => '1.302209',
22809             'Test2::API::Context' => '1.302209',
22810             'Test2::API::Instance' => '1.302209',
22811             'Test2::API::InterceptResult'=> '1.302209',
22812             'Test2::API::InterceptResult::Event'=> '1.302209',
22813             'Test2::API::InterceptResult::Facet'=> '1.302209',
22814             'Test2::API::InterceptResult::Hub'=> '1.302209',
22815             'Test2::API::InterceptResult::Squasher'=> '1.302209',
22816             'Test2::API::Stack' => '1.302209',
22817             'Test2::AsyncSubtest' => '1.302209',
22818             'Test2::AsyncSubtest::Event::Attach'=> '1.302209',
22819             'Test2::AsyncSubtest::Event::Detach'=> '1.302209',
22820             'Test2::AsyncSubtest::Formatter'=> '1.302209',
22821             'Test2::AsyncSubtest::Hub'=> '1.302209',
22822             'Test2::Bundle' => '1.302209',
22823             'Test2::Bundle::Extended'=> '1.302209',
22824             'Test2::Bundle::More' => '1.302209',
22825             'Test2::Bundle::Simple' => '1.302209',
22826             'Test2::Compare' => '1.302209',
22827             'Test2::Compare::Array' => '1.302209',
22828             'Test2::Compare::Bag' => '1.302209',
22829             'Test2::Compare::Base' => '1.302209',
22830             'Test2::Compare::Bool' => '1.302209',
22831             'Test2::Compare::Custom'=> '1.302209',
22832             'Test2::Compare::DeepRef'=> '1.302209',
22833             'Test2::Compare::Delta' => '1.302209',
22834             'Test2::Compare::Event' => '1.302209',
22835             'Test2::Compare::EventMeta'=> '1.302209',
22836             'Test2::Compare::Float' => '1.302209',
22837             'Test2::Compare::Hash' => '1.302209',
22838             'Test2::Compare::Isa' => '1.302209',
22839             'Test2::Compare::Meta' => '1.302209',
22840             'Test2::Compare::Negatable'=> '1.302209',
22841             'Test2::Compare::Number'=> '1.302209',
22842             'Test2::Compare::Object'=> '1.302209',
22843             'Test2::Compare::OrderedSubset'=> '1.302209',
22844             'Test2::Compare::Pattern'=> '1.302209',
22845             'Test2::Compare::Ref' => '1.302209',
22846             'Test2::Compare::Regex' => '1.302209',
22847             'Test2::Compare::Scalar'=> '1.302209',
22848             'Test2::Compare::Set' => '1.302209',
22849             'Test2::Compare::String'=> '1.302209',
22850             'Test2::Compare::Undef' => '1.302209',
22851             'Test2::Compare::Wildcard'=> '1.302209',
22852             'Test2::Env' => '1.302209',
22853             'Test2::Event' => '1.302209',
22854             'Test2::Event::Bail' => '1.302209',
22855             'Test2::Event::Diag' => '1.302209',
22856             'Test2::Event::Encoding'=> '1.302209',
22857             'Test2::Event::Exception'=> '1.302209',
22858             'Test2::Event::Fail' => '1.302209',
22859             'Test2::Event::Generic' => '1.302209',
22860             'Test2::Event::Note' => '1.302209',
22861             'Test2::Event::Ok' => '1.302209',
22862             'Test2::Event::Pass' => '1.302209',
22863             'Test2::Event::Plan' => '1.302209',
22864             'Test2::Event::Skip' => '1.302209',
22865             'Test2::Event::Subtest' => '1.302209',
22866             'Test2::Event::TAP::Version'=> '1.302209',
22867             'Test2::Event::V2' => '1.302209',
22868             'Test2::Event::Waiting' => '1.302209',
22869             'Test2::EventFacet' => '1.302209',
22870             'Test2::EventFacet::About'=> '1.302209',
22871             'Test2::EventFacet::Amnesty'=> '1.302209',
22872             'Test2::EventFacet::Assert'=> '1.302209',
22873             'Test2::EventFacet::Control'=> '1.302209',
22874             'Test2::EventFacet::Error'=> '1.302209',
22875             'Test2::EventFacet::Hub'=> '1.302209',
22876             'Test2::EventFacet::Info'=> '1.302209',
22877             'Test2::EventFacet::Info::Table'=> '1.302209',
22878             'Test2::EventFacet::Meta'=> '1.302209',
22879             'Test2::EventFacet::Parent'=> '1.302209',
22880             'Test2::EventFacet::Plan'=> '1.302209',
22881             'Test2::EventFacet::Render'=> '1.302209',
22882             'Test2::EventFacet::Trace'=> '1.302209',
22883             'Test2::Formatter' => '1.302209',
22884             'Test2::Formatter::TAP' => '1.302209',
22885             'Test2::Hub' => '1.302209',
22886             'Test2::Hub::Interceptor'=> '1.302209',
22887             'Test2::Hub::Interceptor::Terminator'=> '1.302209',
22888             'Test2::Hub::Subtest' => '1.302209',
22889             'Test2::IPC' => '1.302209',
22890             'Test2::IPC::Driver' => '1.302209',
22891             'Test2::IPC::Driver::Files'=> '1.302209',
22892             'Test2::Manual' => '1.302209',
22893             'Test2::Manual::Anatomy'=> '1.302209',
22894             'Test2::Manual::Anatomy::API'=> '1.302209',
22895             'Test2::Manual::Anatomy::Context'=> '1.302209',
22896             'Test2::Manual::Anatomy::EndToEnd'=> '1.302209',
22897             'Test2::Manual::Anatomy::Event'=> '1.302209',
22898             'Test2::Manual::Anatomy::Hubs'=> '1.302209',
22899             'Test2::Manual::Anatomy::IPC'=> '1.302209',
22900             'Test2::Manual::Anatomy::Utilities'=> '1.302209',
22901             'Test2::Manual::Concurrency'=> '1.302209',
22902             'Test2::Manual::Contributing'=> '1.302209',
22903             'Test2::Manual::Testing'=> '1.302209',
22904             'Test2::Manual::Testing::Introduction'=> '1.302209',
22905             'Test2::Manual::Testing::Migrating'=> '1.302209',
22906             'Test2::Manual::Testing::Planning'=> '1.302209',
22907             'Test2::Manual::Testing::Todo'=> '1.302209',
22908             'Test2::Manual::Tooling'=> '1.302209',
22909             'Test2::Manual::Tooling::FirstTool'=> '1.302209',
22910             'Test2::Manual::Tooling::Formatter'=> '1.302209',
22911             'Test2::Manual::Tooling::Nesting'=> '1.302209',
22912             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302209',
22913             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302209',
22914             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302209',
22915             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302209',
22916             'Test2::Manual::Tooling::Subtest'=> '1.302209',
22917             'Test2::Manual::Tooling::TestBuilder'=> '1.302209',
22918             'Test2::Manual::Tooling::Testing'=> '1.302209',
22919             'Test2::Mock' => '1.302209',
22920             'Test2::Plugin' => '1.302209',
22921             'Test2::Plugin::BailOnFail'=> '1.302209',
22922             'Test2::Plugin::DieOnFail'=> '1.302209',
22923             'Test2::Plugin::ExitSummary'=> '1.302209',
22924             'Test2::Plugin::SRand' => '1.302209',
22925             'Test2::Plugin::Times' => '1.302209',
22926             'Test2::Plugin::UTF8' => '1.302209',
22927             'Test2::Require' => '1.302209',
22928             'Test2::Require::AuthorTesting'=> '1.302209',
22929             'Test2::Require::AutomatedTesting'=> '1.302209',
22930             'Test2::Require::EnvVar'=> '1.302209',
22931             'Test2::Require::ExtendedTesting'=> '1.302209',
22932             'Test2::Require::Fork' => '1.302209',
22933             'Test2::Require::Module'=> '1.302209',
22934             'Test2::Require::NonInteractiveTesting'=> '1.302209',
22935             'Test2::Require::Perl' => '1.302209',
22936             'Test2::Require::RealFork'=> '1.302209',
22937             'Test2::Require::ReleaseTesting'=> '1.302209',
22938             'Test2::Require::Threads'=> '1.302209',
22939             'Test2::Suite' => '1.302209',
22940             'Test2::Todo' => '1.302209',
22941             'Test2::Tools' => '1.302209',
22942             'Test2::Tools::AsyncSubtest'=> '1.302209',
22943             'Test2::Tools::Basic' => '1.302209',
22944             'Test2::Tools::Class' => '1.302209',
22945             'Test2::Tools::ClassicCompare'=> '1.302209',
22946             'Test2::Tools::Compare' => '1.302209',
22947             'Test2::Tools::Defer' => '1.302209',
22948             'Test2::Tools::Encoding'=> '1.302209',
22949             'Test2::Tools::Event' => '1.302209',
22950             'Test2::Tools::Exception'=> '1.302209',
22951             'Test2::Tools::Exports' => '1.302209',
22952             'Test2::Tools::GenTemp' => '1.302209',
22953             'Test2::Tools::Grab' => '1.302209',
22954             'Test2::Tools::Mock' => '1.302209',
22955             'Test2::Tools::Ref' => '1.302209',
22956             'Test2::Tools::Refcount'=> '1.302209',
22957             'Test2::Tools::Spec' => '1.302209',
22958             'Test2::Tools::Subtest' => '1.302209',
22959             'Test2::Tools::Target' => '1.302209',
22960             'Test2::Tools::Tester' => '1.302209',
22961             'Test2::Tools::Tiny' => '1.302209',
22962             'Test2::Tools::Warnings'=> '1.302209',
22963             'Test2::Util' => '1.302209',
22964             'Test2::Util::ExternalMeta'=> '1.302209',
22965             'Test2::Util::Facets2Legacy'=> '1.302209',
22966             'Test2::Util::Grabber' => '1.302209',
22967             'Test2::Util::Guard' => '1.302209',
22968             'Test2::Util::HashBase' => '1.302209',
22969             'Test2::Util::Importer' => '1.302209',
22970             'Test2::Util::Ref' => '1.302209',
22971             'Test2::Util::Sig' => '1.302209',
22972             'Test2::Util::Stash' => '1.302209',
22973             'Test2::Util::Sub' => '1.302209',
22974             'Test2::Util::Table' => '1.302209',
22975             'Test2::Util::Table::Cell'=> '1.302209',
22976             'Test2::Util::Table::LineBreak'=> '1.302209',
22977             'Test2::Util::Term' => '1.302209',
22978             'Test2::Util::Times' => '1.302209',
22979             'Test2::Util::Trace' => '1.302209',
22980             'Test2::V0' => '1.302209',
22981             'Test2::Workflow' => '1.302209',
22982             'Test2::Workflow::BlockBase'=> '1.302209',
22983             'Test2::Workflow::Build'=> '1.302209',
22984             'Test2::Workflow::Runner'=> '1.302209',
22985             'Test2::Workflow::Task' => '1.302209',
22986             'Test2::Workflow::Task::Action'=> '1.302209',
22987             'Test2::Workflow::Task::Group'=> '1.302209',
22988             'Test::Builder' => '1.302209',
22989             'Test::Builder::Formatter'=> '1.302209',
22990             'Test::Builder::Module' => '1.302209',
22991             'Test::Builder::Tester' => '1.302209',
22992             'Test::Builder::Tester::Color'=> '1.302209',
22993             'Test::Builder::TodoDiag'=> '1.302209',
22994             'Test::More' => '1.302209',
22995             'Test::Simple' => '1.302209',
22996             'Test::Tester' => '1.302209',
22997             'Test::Tester::Capture' => '1.302209',
22998             'Test::Tester::CaptureRunner'=> '1.302209',
22999             'Test::Tester::Delegate'=> '1.302209',
23000             'Test::use::ok' => '1.302209',
23001             'Unicode::UCD' => '0.79',
23002             'feature' => '1.94',
23003             'ok' => '1.302209',
23004             'overload' => '1.40',
23005             'warnings' => '1.73',
23006             },
23007             removed => {
23008             }
23009             },
23010             5.041010 => {
23011             delta_from => 5.041009,
23012             changed => {
23013             'Archive::Tar' => '3.04',
23014             'Archive::Tar::Constant'=> '3.04',
23015             'Archive::Tar::File' => '3.04',
23016             'B::Op_private' => '5.041010',
23017             'Benchmark' => '1.27',
23018             'Config' => '5.04101',
23019             'ExtUtils::Command' => '7.72',
23020             'ExtUtils::Command::MM' => '7.72',
23021             'ExtUtils::Liblist' => '7.72',
23022             'ExtUtils::Liblist::Kid'=> '7.72',
23023             'ExtUtils::MM' => '7.72',
23024             'ExtUtils::MM_AIX' => '7.72',
23025             'ExtUtils::MM_Any' => '7.72',
23026             'ExtUtils::MM_BeOS' => '7.72',
23027             'ExtUtils::MM_Cygwin' => '7.72',
23028             'ExtUtils::MM_DOS' => '7.72',
23029             'ExtUtils::MM_Darwin' => '7.72',
23030             'ExtUtils::MM_MacOS' => '7.72',
23031             'ExtUtils::MM_NW5' => '7.72',
23032             'ExtUtils::MM_OS2' => '7.72',
23033             'ExtUtils::MM_OS390' => '7.72',
23034             'ExtUtils::MM_QNX' => '7.72',
23035             'ExtUtils::MM_UWIN' => '7.72',
23036             'ExtUtils::MM_Unix' => '7.72',
23037             'ExtUtils::MM_VMS' => '7.72',
23038             'ExtUtils::MM_VOS' => '7.72',
23039             'ExtUtils::MM_Win32' => '7.72',
23040             'ExtUtils::MM_Win95' => '7.72',
23041             'ExtUtils::MY' => '7.72',
23042             'ExtUtils::MakeMaker' => '7.72',
23043             'ExtUtils::MakeMaker::Config'=> '7.72',
23044             'ExtUtils::MakeMaker::Locale'=> '7.72',
23045             'ExtUtils::MakeMaker::version'=> '7.72',
23046             'ExtUtils::MakeMaker::version::regex'=> '7.72',
23047             'ExtUtils::Mkbootstrap' => '7.72',
23048             'ExtUtils::Mksymlists' => '7.72',
23049             'ExtUtils::testlib' => '7.72',
23050             'Math::BigFloat' => '2.004001',
23051             'Math::BigInt' => '2.004001',
23052             'Math::BigInt::Calc' => '2.004001',
23053             'Math::BigInt::FastCalc'=> '0.5019',
23054             'Math::BigInt::Lib' => '2.004001',
23055             'Math::BigRat' => '2.004001',
23056             'Module::CoreList' => '5.20250321',
23057             'Module::CoreList::Utils'=> '5.20250321',
23058             'Safe' => '2.47',
23059             'Search::Dict' => '1.08',
23060             'Storable' => '3.36',
23061             'VMS::Filespec' => '1.15',
23062             'XS::APItest' => '1.41',
23063             'builtin' => '0.018',
23064             'feature' => '1.95',
23065             'fields' => '2.27',
23066             'threads' => '2.43',
23067             'warnings' => '1.74',
23068             },
23069             removed => {
23070             }
23071             },
23072             5.038004 => {
23073             delta_from => 5.038003,
23074             changed => {
23075             'B::Op_private' => '5.038004',
23076             'Config' => '5.038004',
23077             'Module::CoreList' => '5.20250413_38',
23078             'Module::CoreList::Utils'=> '5.20250413_38',
23079             },
23080             removed => {
23081             }
23082             },
23083             5.040002 => {
23084             delta_from => 5.040001,
23085             changed => {
23086             'B::Op_private' => '5.040002',
23087             'Config' => '5.040002',
23088             'Module::CoreList' => '5.20250413_40',
23089             'Module::CoreList::Utils'=> '5.20250413_40',
23090             },
23091             removed => {
23092             }
23093             },
23094             5.041011 => {
23095             delta_from => 5.041010,
23096             changed => {
23097             'B::Op_private' => '5.041011',
23098             'Config' => '5.041011',
23099             'Cwd' => '3.94',
23100             'Data::Dumper' => '2.192',
23101             'ExtUtils::Command' => '7.74',
23102             'ExtUtils::Command::MM' => '7.74',
23103             'ExtUtils::Liblist' => '7.74',
23104             'ExtUtils::Liblist::Kid'=> '7.74',
23105             'ExtUtils::MM' => '7.74',
23106             'ExtUtils::MM_AIX' => '7.74',
23107             'ExtUtils::MM_Any' => '7.74',
23108             'ExtUtils::MM_BeOS' => '7.74',
23109             'ExtUtils::MM_Cygwin' => '7.74',
23110             'ExtUtils::MM_DOS' => '7.74',
23111             'ExtUtils::MM_Darwin' => '7.74',
23112             'ExtUtils::MM_MacOS' => '7.74',
23113             'ExtUtils::MM_NW5' => '7.74',
23114             'ExtUtils::MM_OS2' => '7.74',
23115             'ExtUtils::MM_OS390' => '7.74',
23116             'ExtUtils::MM_QNX' => '7.74',
23117             'ExtUtils::MM_UWIN' => '7.74',
23118             'ExtUtils::MM_Unix' => '7.74',
23119             'ExtUtils::MM_VMS' => '7.74',
23120             'ExtUtils::MM_VOS' => '7.74',
23121             'ExtUtils::MM_Win32' => '7.74',
23122             'ExtUtils::MM_Win95' => '7.74',
23123             'ExtUtils::MY' => '7.74',
23124             'ExtUtils::MakeMaker' => '7.74',
23125             'ExtUtils::MakeMaker::Config'=> '7.74',
23126             'ExtUtils::MakeMaker::Locale'=> '7.74',
23127             'ExtUtils::MakeMaker::version'=> '7.74',
23128             'ExtUtils::MakeMaker::version::regex'=> '7.74',
23129             'ExtUtils::Mkbootstrap' => '7.74',
23130             'ExtUtils::Mksymlists' => '7.74',
23131             'ExtUtils::testlib' => '7.74',
23132             'Fcntl' => '1.20',
23133             'File::Spec' => '3.94',
23134             'File::Spec::AmigaOS' => '3.94',
23135             'File::Spec::Cygwin' => '3.94',
23136             'File::Spec::Epoc' => '3.94',
23137             'File::Spec::Functions' => '3.94',
23138             'File::Spec::Mac' => '3.94',
23139             'File::Spec::OS2' => '3.94',
23140             'File::Spec::Unix' => '3.94',
23141             'File::Spec::VMS' => '3.94',
23142             'File::Spec::Win32' => '3.94',
23143             'Math::BigFloat' => '2.005002',
23144             'Math::BigInt' => '2.005002',
23145             'Math::BigInt::Calc' => '2.005002',
23146             'Math::BigInt::FastCalc'=> '0.5020',
23147             'Math::BigInt::Lib' => '2.005002',
23148             'Math::BigRat' => '2.005002',
23149             'Module::CoreList' => '5.20250420',
23150             'Module::CoreList::Utils'=> '5.20250420',
23151             'Pod::Usage' => '2.05',
23152             'Scalar::List::Utils' => '1.69',
23153             'Storable' => '3.37',
23154             'Test2' => '1.302210',
23155             'Test2::API' => '1.302210',
23156             'Test2::API::Breakage' => '1.302210',
23157             'Test2::API::Context' => '1.302210',
23158             'Test2::API::Instance' => '1.302210',
23159             'Test2::API::InterceptResult'=> '1.302210',
23160             'Test2::API::InterceptResult::Event'=> '1.302210',
23161             'Test2::API::InterceptResult::Facet'=> '1.302210',
23162             'Test2::API::InterceptResult::Hub'=> '1.302210',
23163             'Test2::API::InterceptResult::Squasher'=> '1.302210',
23164             'Test2::API::Stack' => '1.302210',
23165             'Test2::AsyncSubtest' => '1.302210',
23166             'Test2::AsyncSubtest::Event::Attach'=> '1.302210',
23167             'Test2::AsyncSubtest::Event::Detach'=> '1.302210',
23168             'Test2::AsyncSubtest::Formatter'=> '1.302210',
23169             'Test2::AsyncSubtest::Hub'=> '1.302210',
23170             'Test2::Bundle' => '1.302210',
23171             'Test2::Bundle::Extended'=> '1.302210',
23172             'Test2::Bundle::More' => '1.302210',
23173             'Test2::Bundle::Simple' => '1.302210',
23174             'Test2::Compare' => '1.302210',
23175             'Test2::Compare::Array' => '1.302210',
23176             'Test2::Compare::Bag' => '1.302210',
23177             'Test2::Compare::Base' => '1.302210',
23178             'Test2::Compare::Bool' => '1.302210',
23179             'Test2::Compare::Custom'=> '1.302210',
23180             'Test2::Compare::DeepRef'=> '1.302210',
23181             'Test2::Compare::Delta' => '1.302210',
23182             'Test2::Compare::Event' => '1.302210',
23183             'Test2::Compare::EventMeta'=> '1.302210',
23184             'Test2::Compare::Float' => '1.302210',
23185             'Test2::Compare::Hash' => '1.302210',
23186             'Test2::Compare::Isa' => '1.302210',
23187             'Test2::Compare::Meta' => '1.302210',
23188             'Test2::Compare::Negatable'=> '1.302210',
23189             'Test2::Compare::Number'=> '1.302210',
23190             'Test2::Compare::Object'=> '1.302210',
23191             'Test2::Compare::OrderedSubset'=> '1.302210',
23192             'Test2::Compare::Pattern'=> '1.302210',
23193             'Test2::Compare::Ref' => '1.302210',
23194             'Test2::Compare::Regex' => '1.302210',
23195             'Test2::Compare::Scalar'=> '1.302210',
23196             'Test2::Compare::Set' => '1.302210',
23197             'Test2::Compare::String'=> '1.302210',
23198             'Test2::Compare::Undef' => '1.302210',
23199             'Test2::Compare::Wildcard'=> '1.302210',
23200             'Test2::Env' => '1.302210',
23201             'Test2::Event' => '1.302210',
23202             'Test2::Event::Bail' => '1.302210',
23203             'Test2::Event::Diag' => '1.302210',
23204             'Test2::Event::Encoding'=> '1.302210',
23205             'Test2::Event::Exception'=> '1.302210',
23206             'Test2::Event::Fail' => '1.302210',
23207             'Test2::Event::Generic' => '1.302210',
23208             'Test2::Event::Note' => '1.302210',
23209             'Test2::Event::Ok' => '1.302210',
23210             'Test2::Event::Pass' => '1.302210',
23211             'Test2::Event::Plan' => '1.302210',
23212             'Test2::Event::Skip' => '1.302210',
23213             'Test2::Event::Subtest' => '1.302210',
23214             'Test2::Event::TAP::Version'=> '1.302210',
23215             'Test2::Event::V2' => '1.302210',
23216             'Test2::Event::Waiting' => '1.302210',
23217             'Test2::EventFacet' => '1.302210',
23218             'Test2::EventFacet::About'=> '1.302210',
23219             'Test2::EventFacet::Amnesty'=> '1.302210',
23220             'Test2::EventFacet::Assert'=> '1.302210',
23221             'Test2::EventFacet::Control'=> '1.302210',
23222             'Test2::EventFacet::Error'=> '1.302210',
23223             'Test2::EventFacet::Hub'=> '1.302210',
23224             'Test2::EventFacet::Info'=> '1.302210',
23225             'Test2::EventFacet::Info::Table'=> '1.302210',
23226             'Test2::EventFacet::Meta'=> '1.302210',
23227             'Test2::EventFacet::Parent'=> '1.302210',
23228             'Test2::EventFacet::Plan'=> '1.302210',
23229             'Test2::EventFacet::Render'=> '1.302210',
23230             'Test2::EventFacet::Trace'=> '1.302210',
23231             'Test2::Formatter' => '1.302210',
23232             'Test2::Formatter::TAP' => '1.302210',
23233             'Test2::Hub' => '1.302210',
23234             'Test2::Hub::Interceptor'=> '1.302210',
23235             'Test2::Hub::Interceptor::Terminator'=> '1.302210',
23236             'Test2::Hub::Subtest' => '1.302210',
23237             'Test2::IPC' => '1.302210',
23238             'Test2::IPC::Driver' => '1.302210',
23239             'Test2::IPC::Driver::Files'=> '1.302210',
23240             'Test2::Manual' => '1.302210',
23241             'Test2::Manual::Anatomy'=> '1.302210',
23242             'Test2::Manual::Anatomy::API'=> '1.302210',
23243             'Test2::Manual::Anatomy::Context'=> '1.302210',
23244             'Test2::Manual::Anatomy::EndToEnd'=> '1.302210',
23245             'Test2::Manual::Anatomy::Event'=> '1.302210',
23246             'Test2::Manual::Anatomy::Hubs'=> '1.302210',
23247             'Test2::Manual::Anatomy::IPC'=> '1.302210',
23248             'Test2::Manual::Anatomy::Utilities'=> '1.302210',
23249             'Test2::Manual::Concurrency'=> '1.302210',
23250             'Test2::Manual::Contributing'=> '1.302210',
23251             'Test2::Manual::Testing'=> '1.302210',
23252             'Test2::Manual::Testing::Introduction'=> '1.302210',
23253             'Test2::Manual::Testing::Migrating'=> '1.302210',
23254             'Test2::Manual::Testing::Planning'=> '1.302210',
23255             'Test2::Manual::Testing::Todo'=> '1.302210',
23256             'Test2::Manual::Tooling'=> '1.302210',
23257             'Test2::Manual::Tooling::FirstTool'=> '1.302210',
23258             'Test2::Manual::Tooling::Formatter'=> '1.302210',
23259             'Test2::Manual::Tooling::Nesting'=> '1.302210',
23260             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302210',
23261             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302210',
23262             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302210',
23263             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302210',
23264             'Test2::Manual::Tooling::Subtest'=> '1.302210',
23265             'Test2::Manual::Tooling::TestBuilder'=> '1.302210',
23266             'Test2::Manual::Tooling::Testing'=> '1.302210',
23267             'Test2::Mock' => '1.302210',
23268             'Test2::Plugin' => '1.302210',
23269             'Test2::Plugin::BailOnFail'=> '1.302210',
23270             'Test2::Plugin::DieOnFail'=> '1.302210',
23271             'Test2::Plugin::ExitSummary'=> '1.302210',
23272             'Test2::Plugin::SRand' => '1.302210',
23273             'Test2::Plugin::Times' => '1.302210',
23274             'Test2::Plugin::UTF8' => '1.302210',
23275             'Test2::Require' => '1.302210',
23276             'Test2::Require::AuthorTesting'=> '1.302210',
23277             'Test2::Require::AutomatedTesting'=> '1.302210',
23278             'Test2::Require::EnvVar'=> '1.302210',
23279             'Test2::Require::ExtendedTesting'=> '1.302210',
23280             'Test2::Require::Fork' => '1.302210',
23281             'Test2::Require::Module'=> '1.302210',
23282             'Test2::Require::NonInteractiveTesting'=> '1.302210',
23283             'Test2::Require::Perl' => '1.302210',
23284             'Test2::Require::RealFork'=> '1.302210',
23285             'Test2::Require::ReleaseTesting'=> '1.302210',
23286             'Test2::Require::Threads'=> '1.302210',
23287             'Test2::Suite' => '1.302210',
23288             'Test2::Todo' => '1.302210',
23289             'Test2::Tools' => '1.302210',
23290             'Test2::Tools::AsyncSubtest'=> '1.302210',
23291             'Test2::Tools::Basic' => '1.302210',
23292             'Test2::Tools::Class' => '1.302210',
23293             'Test2::Tools::ClassicCompare'=> '1.302210',
23294             'Test2::Tools::Compare' => '1.302210',
23295             'Test2::Tools::Defer' => '1.302210',
23296             'Test2::Tools::Encoding'=> '1.302210',
23297             'Test2::Tools::Event' => '1.302210',
23298             'Test2::Tools::Exception'=> '1.302210',
23299             'Test2::Tools::Exports' => '1.302210',
23300             'Test2::Tools::GenTemp' => '1.302210',
23301             'Test2::Tools::Grab' => '1.302210',
23302             'Test2::Tools::Mock' => '1.302210',
23303             'Test2::Tools::Ref' => '1.302210',
23304             'Test2::Tools::Refcount'=> '1.302210',
23305             'Test2::Tools::Spec' => '1.302210',
23306             'Test2::Tools::Subtest' => '1.302210',
23307             'Test2::Tools::Target' => '1.302210',
23308             'Test2::Tools::Tester' => '1.302210',
23309             'Test2::Tools::Tiny' => '1.302210',
23310             'Test2::Tools::Warnings'=> '1.302210',
23311             'Test2::Util' => '1.302210',
23312             'Test2::Util::ExternalMeta'=> '1.302210',
23313             'Test2::Util::Facets2Legacy'=> '1.302210',
23314             'Test2::Util::Grabber' => '1.302210',
23315             'Test2::Util::Guard' => '1.302210',
23316             'Test2::Util::HashBase' => '1.302210',
23317             'Test2::Util::Importer' => '1.302210',
23318             'Test2::Util::Ref' => '1.302210',
23319             'Test2::Util::Sig' => '1.302210',
23320             'Test2::Util::Stash' => '1.302210',
23321             'Test2::Util::Sub' => '1.302210',
23322             'Test2::Util::Table' => '1.302210',
23323             'Test2::Util::Table::Cell'=> '1.302210',
23324             'Test2::Util::Table::LineBreak'=> '1.302210',
23325             'Test2::Util::Term' => '1.302210',
23326             'Test2::Util::Times' => '1.302210',
23327             'Test2::Util::Trace' => '1.302210',
23328             'Test2::V0' => '1.302210',
23329             'Test2::Workflow' => '1.302210',
23330             'Test2::Workflow::BlockBase'=> '1.302210',
23331             'Test2::Workflow::Build'=> '1.302210',
23332             'Test2::Workflow::Runner'=> '1.302210',
23333             'Test2::Workflow::Task' => '1.302210',
23334             'Test2::Workflow::Task::Action'=> '1.302210',
23335             'Test2::Workflow::Task::Group'=> '1.302210',
23336             'Test::Builder' => '1.302210',
23337             'Test::Builder::Formatter'=> '1.302210',
23338             'Test::Builder::Module' => '1.302210',
23339             'Test::Builder::Tester' => '1.302210',
23340             'Test::Builder::Tester::Color'=> '1.302210',
23341             'Test::Builder::TodoDiag'=> '1.302210',
23342             'Test::More' => '1.302210',
23343             'Test::Simple' => '1.302210',
23344             'Test::Tester' => '1.302210',
23345             'Test::Tester::Capture' => '1.302210',
23346             'Test::Tester::CaptureRunner'=> '1.302210',
23347             'Test::Tester::Delegate'=> '1.302210',
23348             'Test::use::ok' => '1.302210',
23349             'Time::HiRes' => '1.9778',
23350             'Time::Piece' => '1.36',
23351             'Time::Seconds' => '1.36',
23352             'Unicode' => '16.0.0',
23353             'Unicode::UCD' => '0.80',
23354             'XS::APItest' => '1.42',
23355             'ok' => '1.302210',
23356             },
23357             removed => {
23358             }
23359             },
23360             5.041012 => {
23361             delta_from => 5.041011,
23362             changed => {
23363             'B::Op_private' => '5.041012',
23364             'Config' => '5.041012',
23365             },
23366             removed => {
23367             }
23368             },
23369             5.041013 => {
23370             delta_from => 5.041012,
23371             changed => {
23372             'B::Deparse' => '1.85',
23373             'B::Op_private' => '5.041013',
23374             'Config' => '5.041013',
23375             'ExtUtils::CBuilder' => '0.280241',
23376             'ExtUtils::CBuilder::Base'=> '0.280241',
23377             'ExtUtils::CBuilder::Platform::Unix'=> '0.280241',
23378             'ExtUtils::CBuilder::Platform::VMS'=> '0.280241',
23379             'ExtUtils::CBuilder::Platform::Windows'=> '0.280241',
23380             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280241',
23381             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280241',
23382             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280241',
23383             'ExtUtils::CBuilder::Platform::aix'=> '0.280241',
23384             'ExtUtils::CBuilder::Platform::android'=> '0.280241',
23385             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280241',
23386             'ExtUtils::CBuilder::Platform::darwin'=> '0.280241',
23387             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280241',
23388             'ExtUtils::CBuilder::Platform::os2'=> '0.280241',
23389             'ExtUtils::Command' => '7.76',
23390             'ExtUtils::Command::MM' => '7.76',
23391             'ExtUtils::Liblist' => '7.76',
23392             'ExtUtils::Liblist::Kid'=> '7.76',
23393             'ExtUtils::MM' => '7.76',
23394             'ExtUtils::MM_AIX' => '7.76',
23395             'ExtUtils::MM_Any' => '7.76',
23396             'ExtUtils::MM_BeOS' => '7.76',
23397             'ExtUtils::MM_Cygwin' => '7.76',
23398             'ExtUtils::MM_DOS' => '7.76',
23399             'ExtUtils::MM_Darwin' => '7.76',
23400             'ExtUtils::MM_MacOS' => '7.76',
23401             'ExtUtils::MM_NW5' => '7.76',
23402             'ExtUtils::MM_OS2' => '7.76',
23403             'ExtUtils::MM_OS390' => '7.76',
23404             'ExtUtils::MM_QNX' => '7.76',
23405             'ExtUtils::MM_UWIN' => '7.76',
23406             'ExtUtils::MM_Unix' => '7.76',
23407             'ExtUtils::MM_VMS' => '7.76',
23408             'ExtUtils::MM_VOS' => '7.76',
23409             'ExtUtils::MM_Win32' => '7.76',
23410             'ExtUtils::MM_Win95' => '7.76',
23411             'ExtUtils::MY' => '7.76',
23412             'ExtUtils::MakeMaker' => '7.76',
23413             'ExtUtils::MakeMaker::Config'=> '7.76',
23414             'ExtUtils::MakeMaker::Locale'=> '7.76',
23415             'ExtUtils::MakeMaker::version'=> '7.76',
23416             'ExtUtils::MakeMaker::version::regex'=> '7.76',
23417             'ExtUtils::Mkbootstrap' => '7.76',
23418             'ExtUtils::Mksymlists' => '7.76',
23419             'ExtUtils::testlib' => '7.76',
23420             'Module::CoreList' => '5.20250528',
23421             'Module::CoreList::Utils'=> '5.20250528',
23422             'SelfLoader' => '1.28',
23423             'Thread' => '3.06',
23424             'Tie::File' => '1.10',
23425             'Unicode::UCD' => '0.81',
23426             'builtin' => '0.019',
23427             'experimental' => '0.035',
23428             'feature' => '1.96',
23429             're' => '0.48',
23430             'stable' => '0.035',
23431             'strict' => '1.14',
23432             },
23433             removed => {
23434             }
23435             },
23436             5.042000 => {
23437             delta_from => 5.041013,
23438             changed => {
23439             'B::Op_private' => '5.042000',
23440             'Config' => '5.042',
23441             'ExtUtils::CBuilder' => '0.280242',
23442             'ExtUtils::CBuilder::Base'=> '0.280242',
23443             'ExtUtils::CBuilder::Platform::Unix'=> '0.280242',
23444             'ExtUtils::CBuilder::Platform::VMS'=> '0.280242',
23445             'ExtUtils::CBuilder::Platform::Windows'=> '0.280242',
23446             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280242',
23447             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280242',
23448             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280242',
23449             'ExtUtils::CBuilder::Platform::aix'=> '0.280242',
23450             'ExtUtils::CBuilder::Platform::android'=> '0.280242',
23451             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280242',
23452             'ExtUtils::CBuilder::Platform::darwin'=> '0.280242',
23453             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280242',
23454             'ExtUtils::CBuilder::Platform::os2'=> '0.280242',
23455             'Module::CoreList' => '5.20250702',
23456             'Module::CoreList::Utils'=> '5.20250702',
23457             'XS::APItest' => '1.43',
23458             'feature' => '1.97',
23459             'perlfaq' => '5.20250619',
23460             },
23461             removed => {
23462             }
23463             },
23464              
23465             5.043000 => {
23466             delta_from => 5.042000,
23467             changed => {
23468             'B::Op_private' => '5.043000',
23469             'Config' => '5.043',
23470             'Math::BigFloat' => '2.005003',
23471             'Math::BigInt' => '2.005003',
23472             'Math::BigInt::Calc' => '2.005003',
23473             'Math::BigInt::Lib' => '2.005003',
23474             'Math::BigRat' => '2.005003',
23475             'Module::CoreList' => '5.20250703',
23476             'Module::CoreList::Utils'=> '5.20250703',
23477             'feature' => '1.98',
23478             },
23479             removed => {
23480             }
23481             },
23482             5.043001 => {
23483             delta_from => 5.043,
23484             changed => {
23485             'App::Prove' => '3.52',
23486             'App::Prove::State' => '3.52',
23487             'App::Prove::State::Result'=> '3.52',
23488             'App::Prove::State::Result::Test'=> '3.52',
23489             'B::Op_private' => '5.043001',
23490             'Config' => '5.043001',
23491             'ExtUtils::ParseXS' => '3.58',
23492             'ExtUtils::ParseXS::Constants'=> '3.58',
23493             'ExtUtils::ParseXS::CountLines'=> '3.58',
23494             'ExtUtils::ParseXS::Eval'=> '3.58',
23495             'ExtUtils::ParseXS::Node'=> '3.58',
23496             'ExtUtils::ParseXS::Utilities'=> '3.58',
23497             'ExtUtils::Typemaps' => '3.58',
23498             'ExtUtils::Typemaps::Cmd'=> '3.58',
23499             'ExtUtils::Typemaps::InputMap'=> '3.58',
23500             'ExtUtils::Typemaps::OutputMap'=> '3.58',
23501             'ExtUtils::Typemaps::Type'=> '3.58',
23502             'File::Fetch' => '1.08',
23503             'Module::CoreList' => '5.20250720',
23504             'Module::CoreList::Utils'=> '5.20250720',
23505             'PerlIO::via' => '0.20',
23506             'Pod::Simple' => '3.47',
23507             'Pod::Simple::BlackBox' => '3.47',
23508             'Pod::Simple::Checker' => '3.47',
23509             'Pod::Simple::Debug' => '3.47',
23510             'Pod::Simple::DumpAsText'=> '3.47',
23511             'Pod::Simple::DumpAsXML'=> '3.47',
23512             'Pod::Simple::HTML' => '3.47',
23513             'Pod::Simple::HTMLBatch'=> '3.47',
23514             'Pod::Simple::LinkSection'=> '3.47',
23515             'Pod::Simple::Methody' => '3.47',
23516             'Pod::Simple::Progress' => '3.47',
23517             'Pod::Simple::PullParser'=> '3.47',
23518             'Pod::Simple::PullParserEndToken'=> '3.47',
23519             'Pod::Simple::PullParserStartToken'=> '3.47',
23520             'Pod::Simple::PullParserTextToken'=> '3.47',
23521             'Pod::Simple::PullParserToken'=> '3.47',
23522             'Pod::Simple::RTF' => '3.47',
23523             'Pod::Simple::Search' => '3.47',
23524             'Pod::Simple::SimpleTree'=> '3.47',
23525             'Pod::Simple::Text' => '3.47',
23526             'Pod::Simple::TextContent'=> '3.47',
23527             'Pod::Simple::TiedOutFH'=> '3.47',
23528             'Pod::Simple::Transcode'=> '3.47',
23529             'Pod::Simple::TranscodeDumb'=> '3.47',
23530             'Pod::Simple::TranscodeSmart'=> '3.47',
23531             'Pod::Simple::XHTML' => '3.47',
23532             'Pod::Simple::XMLOutStream'=> '3.47',
23533             'Socket' => '2.040',
23534             'TAP::Base' => '3.52',
23535             'TAP::Formatter::Base' => '3.52',
23536             'TAP::Formatter::Color' => '3.52',
23537             'TAP::Formatter::Console'=> '3.52',
23538             'TAP::Formatter::Console::ParallelSession'=> '3.52',
23539             'TAP::Formatter::Console::Session'=> '3.52',
23540             'TAP::Formatter::File' => '3.52',
23541             'TAP::Formatter::File::Session'=> '3.52',
23542             'TAP::Formatter::Session'=> '3.52',
23543             'TAP::Harness' => '3.52',
23544             'TAP::Harness::Env' => '3.52',
23545             'TAP::Object' => '3.52',
23546             'TAP::Parser' => '3.52',
23547             'TAP::Parser::Aggregator'=> '3.52',
23548             'TAP::Parser::Grammar' => '3.52',
23549             'TAP::Parser::Iterator' => '3.52',
23550             'TAP::Parser::Iterator::Array'=> '3.52',
23551             'TAP::Parser::Iterator::Process'=> '3.52',
23552             'TAP::Parser::Iterator::Stream'=> '3.52',
23553             'TAP::Parser::IteratorFactory'=> '3.52',
23554             'TAP::Parser::Multiplexer'=> '3.52',
23555             'TAP::Parser::Result' => '3.52',
23556             'TAP::Parser::Result::Bailout'=> '3.52',
23557             'TAP::Parser::Result::Comment'=> '3.52',
23558             'TAP::Parser::Result::Plan'=> '3.52',
23559             'TAP::Parser::Result::Pragma'=> '3.52',
23560             'TAP::Parser::Result::Test'=> '3.52',
23561             'TAP::Parser::Result::Unknown'=> '3.52',
23562             'TAP::Parser::Result::Version'=> '3.52',
23563             'TAP::Parser::Result::YAML'=> '3.52',
23564             'TAP::Parser::ResultFactory'=> '3.52',
23565             'TAP::Parser::Scheduler'=> '3.52',
23566             'TAP::Parser::Scheduler::Job'=> '3.52',
23567             'TAP::Parser::Scheduler::Spinner'=> '3.52',
23568             'TAP::Parser::Source' => '3.52',
23569             'TAP::Parser::SourceHandler'=> '3.52',
23570             'TAP::Parser::SourceHandler::Executable'=> '3.52',
23571             'TAP::Parser::SourceHandler::File'=> '3.52',
23572             'TAP::Parser::SourceHandler::Handle'=> '3.52',
23573             'TAP::Parser::SourceHandler::Perl'=> '3.52',
23574             'TAP::Parser::SourceHandler::RawTAP'=> '3.52',
23575             'TAP::Parser::YAMLish::Reader'=> '3.52',
23576             'TAP::Parser::YAMLish::Writer'=> '3.52',
23577             'Test2' => '1.302214',
23578             'Test2::API' => '1.302214',
23579             'Test2::API::Breakage' => '1.302214',
23580             'Test2::API::Context' => '1.302214',
23581             'Test2::API::Instance' => '1.302214',
23582             'Test2::API::InterceptResult'=> '1.302214',
23583             'Test2::API::InterceptResult::Event'=> '1.302214',
23584             'Test2::API::InterceptResult::Facet'=> '1.302214',
23585             'Test2::API::InterceptResult::Hub'=> '1.302214',
23586             'Test2::API::InterceptResult::Squasher'=> '1.302214',
23587             'Test2::API::Stack' => '1.302214',
23588             'Test2::AsyncSubtest' => '1.302214',
23589             'Test2::AsyncSubtest::Event::Attach'=> '1.302214',
23590             'Test2::AsyncSubtest::Event::Detach'=> '1.302214',
23591             'Test2::AsyncSubtest::Formatter'=> '1.302214',
23592             'Test2::AsyncSubtest::Hub'=> '1.302214',
23593             'Test2::Bundle' => '1.302214',
23594             'Test2::Bundle::Extended'=> '1.302214',
23595             'Test2::Bundle::More' => '1.302214',
23596             'Test2::Bundle::Simple' => '1.302214',
23597             'Test2::Compare' => '1.302214',
23598             'Test2::Compare::Array' => '1.302214',
23599             'Test2::Compare::Bag' => '1.302214',
23600             'Test2::Compare::Base' => '1.302214',
23601             'Test2::Compare::Bool' => '1.302214',
23602             'Test2::Compare::Custom'=> '1.302214',
23603             'Test2::Compare::DeepRef'=> '1.302214',
23604             'Test2::Compare::Delta' => '1.302214',
23605             'Test2::Compare::Event' => '1.302214',
23606             'Test2::Compare::EventMeta'=> '1.302214',
23607             'Test2::Compare::Float' => '1.302214',
23608             'Test2::Compare::Hash' => '1.302214',
23609             'Test2::Compare::Isa' => '1.302214',
23610             'Test2::Compare::Meta' => '1.302214',
23611             'Test2::Compare::Negatable'=> '1.302214',
23612             'Test2::Compare::Number'=> '1.302214',
23613             'Test2::Compare::Object'=> '1.302214',
23614             'Test2::Compare::OrderedSubset'=> '1.302214',
23615             'Test2::Compare::Pattern'=> '1.302214',
23616             'Test2::Compare::Ref' => '1.302214',
23617             'Test2::Compare::Regex' => '1.302214',
23618             'Test2::Compare::Scalar'=> '1.302214',
23619             'Test2::Compare::Set' => '1.302214',
23620             'Test2::Compare::String'=> '1.302214',
23621             'Test2::Compare::Undef' => '1.302214',
23622             'Test2::Compare::Wildcard'=> '1.302214',
23623             'Test2::Env' => '1.302214',
23624             'Test2::Event' => '1.302214',
23625             'Test2::Event::Bail' => '1.302214',
23626             'Test2::Event::Diag' => '1.302214',
23627             'Test2::Event::Encoding'=> '1.302214',
23628             'Test2::Event::Exception'=> '1.302214',
23629             'Test2::Event::Fail' => '1.302214',
23630             'Test2::Event::Generic' => '1.302214',
23631             'Test2::Event::Note' => '1.302214',
23632             'Test2::Event::Ok' => '1.302214',
23633             'Test2::Event::Pass' => '1.302214',
23634             'Test2::Event::Plan' => '1.302214',
23635             'Test2::Event::Skip' => '1.302214',
23636             'Test2::Event::Subtest' => '1.302214',
23637             'Test2::Event::TAP::Version'=> '1.302214',
23638             'Test2::Event::V2' => '1.302214',
23639             'Test2::Event::Waiting' => '1.302214',
23640             'Test2::EventFacet' => '1.302214',
23641             'Test2::EventFacet::About'=> '1.302214',
23642             'Test2::EventFacet::Amnesty'=> '1.302214',
23643             'Test2::EventFacet::Assert'=> '1.302214',
23644             'Test2::EventFacet::Control'=> '1.302214',
23645             'Test2::EventFacet::Error'=> '1.302214',
23646             'Test2::EventFacet::Hub'=> '1.302214',
23647             'Test2::EventFacet::Info'=> '1.302214',
23648             'Test2::EventFacet::Info::Table'=> '1.302214',
23649             'Test2::EventFacet::Meta'=> '1.302214',
23650             'Test2::EventFacet::Parent'=> '1.302214',
23651             'Test2::EventFacet::Plan'=> '1.302214',
23652             'Test2::EventFacet::Render'=> '1.302214',
23653             'Test2::EventFacet::Trace'=> '1.302214',
23654             'Test2::Formatter' => '1.302214',
23655             'Test2::Formatter::TAP' => '1.302214',
23656             'Test2::Hub' => '1.302214',
23657             'Test2::Hub::Interceptor'=> '1.302214',
23658             'Test2::Hub::Interceptor::Terminator'=> '1.302214',
23659             'Test2::Hub::Subtest' => '1.302214',
23660             'Test2::IPC' => '1.302214',
23661             'Test2::IPC::Driver' => '1.302214',
23662             'Test2::IPC::Driver::Files'=> '1.302214',
23663             'Test2::Manual' => '1.302214',
23664             'Test2::Manual::Anatomy'=> '1.302214',
23665             'Test2::Manual::Anatomy::API'=> '1.302214',
23666             'Test2::Manual::Anatomy::Context'=> '1.302214',
23667             'Test2::Manual::Anatomy::EndToEnd'=> '1.302214',
23668             'Test2::Manual::Anatomy::Event'=> '1.302214',
23669             'Test2::Manual::Anatomy::Hubs'=> '1.302214',
23670             'Test2::Manual::Anatomy::IPC'=> '1.302214',
23671             'Test2::Manual::Anatomy::Utilities'=> '1.302214',
23672             'Test2::Manual::Concurrency'=> '1.302214',
23673             'Test2::Manual::Contributing'=> '1.302214',
23674             'Test2::Manual::Testing'=> '1.302214',
23675             'Test2::Manual::Testing::Introduction'=> '1.302214',
23676             'Test2::Manual::Testing::Migrating'=> '1.302214',
23677             'Test2::Manual::Testing::Planning'=> '1.302214',
23678             'Test2::Manual::Testing::Todo'=> '1.302214',
23679             'Test2::Manual::Tooling'=> '1.302214',
23680             'Test2::Manual::Tooling::FirstTool'=> '1.302214',
23681             'Test2::Manual::Tooling::Formatter'=> '1.302214',
23682             'Test2::Manual::Tooling::Nesting'=> '1.302214',
23683             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302214',
23684             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302214',
23685             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302214',
23686             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302214',
23687             'Test2::Manual::Tooling::Subtest'=> '1.302214',
23688             'Test2::Manual::Tooling::TestBuilder'=> '1.302214',
23689             'Test2::Manual::Tooling::Testing'=> '1.302214',
23690             'Test2::Mock' => '1.302214',
23691             'Test2::Plugin' => '1.302214',
23692             'Test2::Plugin::BailOnFail'=> '1.302214',
23693             'Test2::Plugin::DieOnFail'=> '1.302214',
23694             'Test2::Plugin::ExitSummary'=> '1.302214',
23695             'Test2::Plugin::SRand' => '1.302214',
23696             'Test2::Plugin::Times' => '1.302214',
23697             'Test2::Plugin::UTF8' => '1.302214',
23698             'Test2::Require' => '1.302214',
23699             'Test2::Require::AuthorTesting'=> '1.302214',
23700             'Test2::Require::AutomatedTesting'=> '1.302214',
23701             'Test2::Require::EnvVar'=> '1.302214',
23702             'Test2::Require::ExtendedTesting'=> '1.302214',
23703             'Test2::Require::Fork' => '1.302214',
23704             'Test2::Require::Module'=> '1.302214',
23705             'Test2::Require::NonInteractiveTesting'=> '1.302214',
23706             'Test2::Require::Perl' => '1.302214',
23707             'Test2::Require::RealFork'=> '1.302214',
23708             'Test2::Require::ReleaseTesting'=> '1.302214',
23709             'Test2::Require::Threads'=> '1.302214',
23710             'Test2::Suite' => '1.302214',
23711             'Test2::Todo' => '1.302214',
23712             'Test2::Tools' => '1.302214',
23713             'Test2::Tools::AsyncSubtest'=> '1.302214',
23714             'Test2::Tools::Basic' => '1.302214',
23715             'Test2::Tools::Class' => '1.302214',
23716             'Test2::Tools::ClassicCompare'=> '1.302214',
23717             'Test2::Tools::Compare' => '1.302214',
23718             'Test2::Tools::Defer' => '1.302214',
23719             'Test2::Tools::Encoding'=> '1.302214',
23720             'Test2::Tools::Event' => '1.302214',
23721             'Test2::Tools::Exception'=> '1.302214',
23722             'Test2::Tools::Exports' => '1.302214',
23723             'Test2::Tools::GenTemp' => '1.302214',
23724             'Test2::Tools::Grab' => '1.302214',
23725             'Test2::Tools::Mock' => '1.302214',
23726             'Test2::Tools::Ref' => '1.302214',
23727             'Test2::Tools::Refcount'=> '1.302214',
23728             'Test2::Tools::Spec' => '1.302214',
23729             'Test2::Tools::Subtest' => '1.302214',
23730             'Test2::Tools::Target' => '1.302214',
23731             'Test2::Tools::Tester' => '1.302214',
23732             'Test2::Tools::Tiny' => '1.302214',
23733             'Test2::Tools::Warnings'=> '1.302214',
23734             'Test2::Util' => '1.302214',
23735             'Test2::Util::ExternalMeta'=> '1.302214',
23736             'Test2::Util::Facets2Legacy'=> '1.302214',
23737             'Test2::Util::Grabber' => '1.302214',
23738             'Test2::Util::Guard' => '1.302214',
23739             'Test2::Util::HashBase' => '1.302214',
23740             'Test2::Util::Importer' => '1.302214',
23741             'Test2::Util::Ref' => '1.302214',
23742             'Test2::Util::Sig' => '1.302214',
23743             'Test2::Util::Stash' => '1.302214',
23744             'Test2::Util::Sub' => '1.302214',
23745             'Test2::Util::Table' => '1.302214',
23746             'Test2::Util::Table::Cell'=> '1.302214',
23747             'Test2::Util::Table::LineBreak'=> '1.302214',
23748             'Test2::Util::Term' => '1.302214',
23749             'Test2::Util::Times' => '1.302214',
23750             'Test2::Util::Trace' => '1.302214',
23751             'Test2::V0' => '1.302214',
23752             'Test2::Workflow' => '1.302214',
23753             'Test2::Workflow::BlockBase'=> '1.302214',
23754             'Test2::Workflow::Build'=> '1.302214',
23755             'Test2::Workflow::Runner'=> '1.302214',
23756             'Test2::Workflow::Task' => '1.302214',
23757             'Test2::Workflow::Task::Action'=> '1.302214',
23758             'Test2::Workflow::Task::Group'=> '1.302214',
23759             'Test::Builder' => '1.302214',
23760             'Test::Builder::Formatter'=> '1.302214',
23761             'Test::Builder::Module' => '1.302214',
23762             'Test::Builder::Tester' => '1.302214',
23763             'Test::Builder::Tester::Color'=> '1.302214',
23764             'Test::Builder::TodoDiag'=> '1.302214',
23765             'Test::Harness' => '3.52',
23766             'Test::More' => '1.302214',
23767             'Test::Simple' => '1.302214',
23768             'Test::Tester' => '1.302214',
23769             'Test::Tester::Capture' => '1.302214',
23770             'Test::Tester::CaptureRunner'=> '1.302214',
23771             'Test::Tester::Delegate'=> '1.302214',
23772             'Test::use::ok' => '1.302214',
23773             'Unicode::UCD' => '0.82',
23774             'experimental' => '0.036',
23775             'ok' => '1.302214',
23776             'stable' => '0.036',
23777             },
23778             removed => {
23779             }
23780             },
23781             5.038005 => {
23782             delta_from => 5.038004,
23783             changed => {
23784             'B::Op_private' => '5.038005',
23785             'Config' => '5.038005',
23786             'Module::CoreList' => '5.20250803_38',
23787             'Module::CoreList::Utils'=> '5.20250803_38',
23788             },
23789             removed => {
23790             }
23791             },
23792             5.040003 => {
23793             delta_from => 5.040002,
23794             changed => {
23795             'B::Op_private' => '5.040003',
23796             'Config' => '5.040003',
23797             'Module::CoreList' => '5.20250803_40',
23798             'Module::CoreList::Utils'=> '5.20250803_40',
23799             },
23800             removed => {
23801             }
23802             },
23803             5.043002 => {
23804             delta_from => 5.043001,
23805             changed => {
23806             'B::Deparse' => '1.86',
23807             'B::Op_private' => '5.043002',
23808             'Config' => '5.043002',
23809             'ExtUtils::Miniperl' => '1.15',
23810             'ExtUtils::ParseXS' => '3.59',
23811             'ExtUtils::ParseXS::Constants'=> '3.59',
23812             'ExtUtils::ParseXS::CountLines'=> '3.59',
23813             'ExtUtils::ParseXS::Eval'=> '3.59',
23814             'ExtUtils::ParseXS::Node'=> '3.59',
23815             'ExtUtils::ParseXS::Utilities'=> '3.59',
23816             'ExtUtils::Typemaps' => '3.59',
23817             'ExtUtils::Typemaps::Cmd'=> '3.59',
23818             'ExtUtils::Typemaps::InputMap'=> '3.59',
23819             'ExtUtils::Typemaps::OutputMap'=> '3.59',
23820             'ExtUtils::Typemaps::Type'=> '3.59',
23821             'File::Copy' => '2.42',
23822             'File::stat' => '1.15',
23823             'Filter::Simple' => '0.97',
23824             'List::Util' => '1.70',
23825             'List::Util::XS' => '1.70',
23826             'Module::CoreList' => '5.20250820',
23827             'Module::CoreList::Utils'=> '5.20250820',
23828             'POSIX' => '2.24',
23829             'Scalar::List::Utils' => '1.70',
23830             'Scalar::Util' => '1.70',
23831             'Storable' => '3.38',
23832             'Sub::Util' => '1.70',
23833             'Text::Balanced' => '2.07',
23834             'Unicode::UCD' => '0.83',
23835             'XS::APItest' => '1.44',
23836             'feature' => '1.99',
23837             'mro' => '1.30',
23838             'threads::shared' => '1.71',
23839             },
23840             removed => {
23841             }
23842             },
23843             5.043003 => {
23844             delta_from => 5.043002,
23845             changed => {
23846             'B' => '1.90',
23847             'B::Concise' => '1.009',
23848             'B::Deparse' => '1.87',
23849             'B::Op_private' => '5.043003',
23850             'Config' => '5.043003',
23851             'ExtUtils::ParseXS' => '3.60',
23852             'ExtUtils::ParseXS::Constants'=> '3.60',
23853             'ExtUtils::ParseXS::CountLines'=> '3.60',
23854             'ExtUtils::ParseXS::Eval'=> '3.60',
23855             'ExtUtils::ParseXS::Node'=> '3.60',
23856             'ExtUtils::ParseXS::Utilities'=> '3.60',
23857             'ExtUtils::Typemaps' => '3.60',
23858             'ExtUtils::Typemaps::Cmd'=> '3.60',
23859             'ExtUtils::Typemaps::InputMap'=> '3.60',
23860             'ExtUtils::Typemaps::OutputMap'=> '3.60',
23861             'ExtUtils::Typemaps::Type'=> '3.60',
23862             'File::Copy' => '2.43',
23863             'File::Temp' => '0.2312',
23864             'Filter::Util::Call' => '1.65',
23865             'Module::CoreList' => '5.20250923',
23866             'Module::CoreList::Utils'=> '5.20250923',
23867             'Net::Ping' => '2.77',
23868             'Opcode' => '1.70',
23869             'PerlIO::via' => '0.21',
23870             'Storable' => '3.39',
23871             'Term::Table' => '0.025',
23872             'Term::Table::Cell' => '0.025',
23873             'Term::Table::CellStack'=> '0.025',
23874             'Term::Table::HashBase' => '0.025',
23875             'Term::Table::LineBreak'=> '0.025',
23876             'Term::Table::Spacer' => '0.025',
23877             'Term::Table::Util' => '0.025',
23878             'Time::HiRes' => '1.9779',
23879             'Time::Piece' => '1.3701',
23880             'Time::Seconds' => '1.3701',
23881             'Unicode' => '17.0.0',
23882             'XS::APItest' => '1.46',
23883             'overloading' => '0.03',
23884             'utf8' => '1.29',
23885             },
23886             removed => {
23887             }
23888             },
23889             5.043004 => {
23890             delta_from => 5.043003,
23891             changed => {
23892             'B::Deparse' => '1.88',
23893             'B::Op_private' => '5.043004',
23894             'Config' => '5.043004',
23895             'Module::CoreList' => '5.20251022',
23896             'Module::CoreList::Utils'=> '5.20251022',
23897             'SelectSaver' => '1.03',
23898             'Time::Piece' => '1.38',
23899             'Time::Seconds' => '1.38',
23900             'XS::APItest' => '1.47',
23901             'attributes' => '0.37',
23902             'feature' => '2.00',
23903             },
23904             removed => {
23905             }
23906             },
23907             5.043005 => {
23908             delta_from => 5.043004,
23909             changed => {
23910             'B::Op_private' => '5.043005',
23911             'Compress::Raw::Bzip2' => '2.214',
23912             'Compress::Raw::Zlib' => '2.214',
23913             'Compress::Zlib' => '2.214',
23914             'Config' => '5.043005',
23915             'Getopt::Std' => '1.15',
23916             'IO::Compress' => '2.214',
23917             'IO::Compress::Adapter::Bzip2'=> '2.214',
23918             'IO::Compress::Adapter::Deflate'=> '2.214',
23919             'IO::Compress::Adapter::Identity'=> '2.214',
23920             'IO::Compress::Base' => '2.214',
23921             'IO::Compress::Base::Common'=> '2.214',
23922             'IO::Compress::Bzip2' => '2.214',
23923             'IO::Compress::Deflate' => '2.214',
23924             'IO::Compress::Gzip' => '2.214',
23925             'IO::Compress::Gzip::Constants'=> '2.214',
23926             'IO::Compress::RawDeflate'=> '2.214',
23927             'IO::Compress::Zip' => '2.214',
23928             'IO::Compress::Zip::Constants'=> '2.214',
23929             'IO::Compress::Zlib::Constants'=> '2.214',
23930             'IO::Compress::Zlib::Extra'=> '2.214',
23931             'IO::Uncompress::Adapter::Bunzip2'=> '2.214',
23932             'IO::Uncompress::Adapter::Identity'=> '2.214',
23933             'IO::Uncompress::Adapter::Inflate'=> '2.214',
23934             'IO::Uncompress::AnyInflate'=> '2.214',
23935             'IO::Uncompress::AnyUncompress'=> '2.214',
23936             'IO::Uncompress::Base' => '2.214',
23937             'IO::Uncompress::Bunzip2'=> '2.214',
23938             'IO::Uncompress::Gunzip'=> '2.214',
23939             'IO::Uncompress::Inflate'=> '2.214',
23940             'IO::Uncompress::RawInflate'=> '2.214',
23941             'IO::Uncompress::Unzip' => '2.214',
23942             'Module::CoreList' => '5.20251120',
23943             'Module::CoreList::Utils'=> '5.20251120',
23944             'Term::Table' => '0.027',
23945             'Term::Table::Cell' => '0.027',
23946             'Term::Table::CellStack'=> '0.027',
23947             'Term::Table::HashBase' => '0.027',
23948             'Term::Table::LineBreak'=> '0.027',
23949             'Term::Table::Spacer' => '0.027',
23950             'Term::Table::Util' => '0.027',
23951             'Test2' => '1.302216',
23952             'Test2::API' => '1.302216',
23953             'Test2::API::Breakage' => '1.302216',
23954             'Test2::API::Context' => '1.302216',
23955             'Test2::API::Instance' => '1.302216',
23956             'Test2::API::InterceptResult'=> '1.302216',
23957             'Test2::API::InterceptResult::Event'=> '1.302216',
23958             'Test2::API::InterceptResult::Facet'=> '1.302216',
23959             'Test2::API::InterceptResult::Hub'=> '1.302216',
23960             'Test2::API::InterceptResult::Squasher'=> '1.302216',
23961             'Test2::API::Stack' => '1.302216',
23962             'Test2::AsyncSubtest' => '1.302216',
23963             'Test2::AsyncSubtest::Event::Attach'=> '1.302216',
23964             'Test2::AsyncSubtest::Event::Detach'=> '1.302216',
23965             'Test2::AsyncSubtest::Formatter'=> '1.302216',
23966             'Test2::AsyncSubtest::Hub'=> '1.302216',
23967             'Test2::Bundle' => '1.302216',
23968             'Test2::Bundle::Extended'=> '1.302216',
23969             'Test2::Bundle::More' => '1.302216',
23970             'Test2::Bundle::Simple' => '1.302216',
23971             'Test2::Compare' => '1.302216',
23972             'Test2::Compare::Array' => '1.302216',
23973             'Test2::Compare::Bag' => '1.302216',
23974             'Test2::Compare::Base' => '1.302216',
23975             'Test2::Compare::Bool' => '1.302216',
23976             'Test2::Compare::Custom'=> '1.302216',
23977             'Test2::Compare::DeepRef'=> '1.302216',
23978             'Test2::Compare::Delta' => '1.302216',
23979             'Test2::Compare::Event' => '1.302216',
23980             'Test2::Compare::EventMeta'=> '1.302216',
23981             'Test2::Compare::Float' => '1.302216',
23982             'Test2::Compare::Hash' => '1.302216',
23983             'Test2::Compare::Isa' => '1.302216',
23984             'Test2::Compare::Meta' => '1.302216',
23985             'Test2::Compare::Negatable'=> '1.302216',
23986             'Test2::Compare::Number'=> '1.302216',
23987             'Test2::Compare::Object'=> '1.302216',
23988             'Test2::Compare::OrderedSubset'=> '1.302216',
23989             'Test2::Compare::Pattern'=> '1.302216',
23990             'Test2::Compare::Ref' => '1.302216',
23991             'Test2::Compare::Regex' => '1.302216',
23992             'Test2::Compare::Scalar'=> '1.302216',
23993             'Test2::Compare::Set' => '1.302216',
23994             'Test2::Compare::String'=> '1.302216',
23995             'Test2::Compare::Undef' => '1.302216',
23996             'Test2::Compare::Wildcard'=> '1.302216',
23997             'Test2::Env' => '1.302216',
23998             'Test2::Event' => '1.302216',
23999             'Test2::Event::Bail' => '1.302216',
24000             'Test2::Event::Diag' => '1.302216',
24001             'Test2::Event::Encoding'=> '1.302216',
24002             'Test2::Event::Exception'=> '1.302216',
24003             'Test2::Event::Fail' => '1.302216',
24004             'Test2::Event::Generic' => '1.302216',
24005             'Test2::Event::Note' => '1.302216',
24006             'Test2::Event::Ok' => '1.302216',
24007             'Test2::Event::Pass' => '1.302216',
24008             'Test2::Event::Plan' => '1.302216',
24009             'Test2::Event::Skip' => '1.302216',
24010             'Test2::Event::Subtest' => '1.302216',
24011             'Test2::Event::TAP::Version'=> '1.302216',
24012             'Test2::Event::V2' => '1.302216',
24013             'Test2::Event::Waiting' => '1.302216',
24014             'Test2::EventFacet' => '1.302216',
24015             'Test2::EventFacet::About'=> '1.302216',
24016             'Test2::EventFacet::Amnesty'=> '1.302216',
24017             'Test2::EventFacet::Assert'=> '1.302216',
24018             'Test2::EventFacet::Control'=> '1.302216',
24019             'Test2::EventFacet::Error'=> '1.302216',
24020             'Test2::EventFacet::Hub'=> '1.302216',
24021             'Test2::EventFacet::Info'=> '1.302216',
24022             'Test2::EventFacet::Info::Table'=> '1.302216',
24023             'Test2::EventFacet::Meta'=> '1.302216',
24024             'Test2::EventFacet::Parent'=> '1.302216',
24025             'Test2::EventFacet::Plan'=> '1.302216',
24026             'Test2::EventFacet::Render'=> '1.302216',
24027             'Test2::EventFacet::Trace'=> '1.302216',
24028             'Test2::Formatter' => '1.302216',
24029             'Test2::Formatter::TAP' => '1.302216',
24030             'Test2::Hub' => '1.302216',
24031             'Test2::Hub::Interceptor'=> '1.302216',
24032             'Test2::Hub::Interceptor::Terminator'=> '1.302216',
24033             'Test2::Hub::Subtest' => '1.302216',
24034             'Test2::IPC' => '1.302216',
24035             'Test2::IPC::Driver' => '1.302216',
24036             'Test2::IPC::Driver::Files'=> '1.302216',
24037             'Test2::Manual' => '1.302216',
24038             'Test2::Manual::Anatomy'=> '1.302216',
24039             'Test2::Manual::Anatomy::API'=> '1.302216',
24040             'Test2::Manual::Anatomy::Context'=> '1.302216',
24041             'Test2::Manual::Anatomy::EndToEnd'=> '1.302216',
24042             'Test2::Manual::Anatomy::Event'=> '1.302216',
24043             'Test2::Manual::Anatomy::Hubs'=> '1.302216',
24044             'Test2::Manual::Anatomy::IPC'=> '1.302216',
24045             'Test2::Manual::Anatomy::Utilities'=> '1.302216',
24046             'Test2::Manual::Concurrency'=> '1.302216',
24047             'Test2::Manual::Contributing'=> '1.302216',
24048             'Test2::Manual::Testing'=> '1.302216',
24049             'Test2::Manual::Testing::Introduction'=> '1.302216',
24050             'Test2::Manual::Testing::Migrating'=> '1.302216',
24051             'Test2::Manual::Testing::Planning'=> '1.302216',
24052             'Test2::Manual::Testing::Todo'=> '1.302216',
24053             'Test2::Manual::Tooling'=> '1.302216',
24054             'Test2::Manual::Tooling::FirstTool'=> '1.302216',
24055             'Test2::Manual::Tooling::Formatter'=> '1.302216',
24056             'Test2::Manual::Tooling::Nesting'=> '1.302216',
24057             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302216',
24058             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302216',
24059             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302216',
24060             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302216',
24061             'Test2::Manual::Tooling::Subtest'=> '1.302216',
24062             'Test2::Manual::Tooling::TestBuilder'=> '1.302216',
24063             'Test2::Manual::Tooling::Testing'=> '1.302216',
24064             'Test2::Mock' => '1.302216',
24065             'Test2::Plugin' => '1.302216',
24066             'Test2::Plugin::BailOnFail'=> '1.302216',
24067             'Test2::Plugin::DieOnFail'=> '1.302216',
24068             'Test2::Plugin::ExitSummary'=> '1.302216',
24069             'Test2::Plugin::SRand' => '1.302216',
24070             'Test2::Plugin::Times' => '1.302216',
24071             'Test2::Plugin::UTF8' => '1.302216',
24072             'Test2::Require' => '1.302216',
24073             'Test2::Require::AuthorTesting'=> '1.302216',
24074             'Test2::Require::AutomatedTesting'=> '1.302216',
24075             'Test2::Require::EnvVar'=> '1.302216',
24076             'Test2::Require::ExtendedTesting'=> '1.302216',
24077             'Test2::Require::Fork' => '1.302216',
24078             'Test2::Require::Module'=> '1.302216',
24079             'Test2::Require::NonInteractiveTesting'=> '1.302216',
24080             'Test2::Require::Perl' => '1.302216',
24081             'Test2::Require::RealFork'=> '1.302216',
24082             'Test2::Require::ReleaseTesting'=> '1.302216',
24083             'Test2::Require::Threads'=> '1.302216',
24084             'Test2::Suite' => '1.302216',
24085             'Test2::Todo' => '1.302216',
24086             'Test2::Tools' => '1.302216',
24087             'Test2::Tools::AsyncSubtest'=> '1.302216',
24088             'Test2::Tools::Basic' => '1.302216',
24089             'Test2::Tools::Class' => '1.302216',
24090             'Test2::Tools::ClassicCompare'=> '1.302216',
24091             'Test2::Tools::Compare' => '1.302216',
24092             'Test2::Tools::Defer' => '1.302216',
24093             'Test2::Tools::Encoding'=> '1.302216',
24094             'Test2::Tools::Event' => '1.302216',
24095             'Test2::Tools::Exception'=> '1.302216',
24096             'Test2::Tools::Exports' => '1.302216',
24097             'Test2::Tools::GenTemp' => '1.302216',
24098             'Test2::Tools::Grab' => '1.302216',
24099             'Test2::Tools::Mock' => '1.302216',
24100             'Test2::Tools::Ref' => '1.302216',
24101             'Test2::Tools::Refcount'=> '1.302216',
24102             'Test2::Tools::Spec' => '1.302216',
24103             'Test2::Tools::Subtest' => '1.302216',
24104             'Test2::Tools::Target' => '1.302216',
24105             'Test2::Tools::Tester' => '1.302216',
24106             'Test2::Tools::Tiny' => '1.302216',
24107             'Test2::Tools::Warnings'=> '1.302216',
24108             'Test2::Util' => '1.302216',
24109             'Test2::Util::ExternalMeta'=> '1.302216',
24110             'Test2::Util::Facets2Legacy'=> '1.302216',
24111             'Test2::Util::Grabber' => '1.302216',
24112             'Test2::Util::Guard' => '1.302216',
24113             'Test2::Util::HashBase' => '1.302216',
24114             'Test2::Util::Importer' => '1.302216',
24115             'Test2::Util::Ref' => '1.302216',
24116             'Test2::Util::Sig' => '1.302216',
24117             'Test2::Util::Stash' => '1.302216',
24118             'Test2::Util::Sub' => '1.302216',
24119             'Test2::Util::Table' => '1.302216',
24120             'Test2::Util::Table::Cell'=> '1.302216',
24121             'Test2::Util::Table::LineBreak'=> '1.302216',
24122             'Test2::Util::Term' => '1.302216',
24123             'Test2::Util::Times' => '1.302216',
24124             'Test2::Util::Trace' => '1.302216',
24125             'Test2::V0' => '1.302216',
24126             'Test2::Workflow' => '1.302216',
24127             'Test2::Workflow::BlockBase'=> '1.302216',
24128             'Test2::Workflow::Build'=> '1.302216',
24129             'Test2::Workflow::Runner'=> '1.302216',
24130             'Test2::Workflow::Task' => '1.302216',
24131             'Test2::Workflow::Task::Action'=> '1.302216',
24132             'Test2::Workflow::Task::Group'=> '1.302216',
24133             'Test::Builder' => '1.302216',
24134             'Test::Builder::Formatter'=> '1.302216',
24135             'Test::Builder::Module' => '1.302216',
24136             'Test::Builder::Tester' => '1.302216',
24137             'Test::Builder::Tester::Color'=> '1.302216',
24138             'Test::Builder::TodoDiag'=> '1.302216',
24139             'Test::More' => '1.302216',
24140             'Test::Simple' => '1.302216',
24141             'Test::Tester' => '1.302216',
24142             'Test::Tester::Capture' => '1.302216',
24143             'Test::Tester::CaptureRunner'=> '1.302216',
24144             'Test::Tester::Delegate'=> '1.302216',
24145             'Test::use::ok' => '1.302216',
24146             'Time::Piece' => '1.41',
24147             'Time::Seconds' => '1.41',
24148             'ok' => '1.302216',
24149             'warnings' => '1.75',
24150             },
24151             removed => {
24152             }
24153             },
24154             5.043006 => {
24155             delta_from => 5.043005,
24156             changed => {
24157             'B::Op_private' => '5.043006',
24158             'Config' => '5.043006',
24159             'ExtUtils::ParseXS' => '3.61',
24160             'ExtUtils::ParseXS::Constants'=> '3.61',
24161             'ExtUtils::ParseXS::CountLines'=> '3.61',
24162             'ExtUtils::ParseXS::Eval'=> '3.61',
24163             'ExtUtils::ParseXS::Node'=> '3.61',
24164             'ExtUtils::ParseXS::Utilities'=> '3.61',
24165             'ExtUtils::Typemaps' => '3.61',
24166             'ExtUtils::Typemaps::Cmd'=> '3.61',
24167             'ExtUtils::Typemaps::InputMap'=> '3.61',
24168             'ExtUtils::Typemaps::OutputMap'=> '3.61',
24169             'ExtUtils::Typemaps::Type'=> '3.61',
24170             'Module::CoreList' => '5.20251220',
24171             'Module::CoreList::Utils'=> '5.20251220',
24172             'Term::Table' => '0.028',
24173             'Term::Table::Cell' => '0.028',
24174             'Term::Table::CellStack'=> '0.028',
24175             'Term::Table::HashBase' => '0.028',
24176             'Term::Table::LineBreak'=> '0.028',
24177             'Term::Table::Spacer' => '0.028',
24178             'Term::Table::Util' => '0.028',
24179             'Test2' => '1.302219',
24180             'Test2::API' => '1.302219',
24181             'Test2::API::Breakage' => '1.302219',
24182             'Test2::API::Context' => '1.302219',
24183             'Test2::API::Instance' => '1.302219',
24184             'Test2::API::InterceptResult'=> '1.302219',
24185             'Test2::API::InterceptResult::Event'=> '1.302219',
24186             'Test2::API::InterceptResult::Facet'=> '1.302219',
24187             'Test2::API::InterceptResult::Hub'=> '1.302219',
24188             'Test2::API::InterceptResult::Squasher'=> '1.302219',
24189             'Test2::API::Stack' => '1.302219',
24190             'Test2::AsyncSubtest' => '1.302219',
24191             'Test2::AsyncSubtest::Event::Attach'=> '1.302219',
24192             'Test2::AsyncSubtest::Event::Detach'=> '1.302219',
24193             'Test2::AsyncSubtest::Formatter'=> '1.302219',
24194             'Test2::AsyncSubtest::Hub'=> '1.302219',
24195             'Test2::Bundle' => '1.302219',
24196             'Test2::Bundle::Extended'=> '1.302219',
24197             'Test2::Bundle::More' => '1.302219',
24198             'Test2::Bundle::Simple' => '1.302219',
24199             'Test2::Compare' => '1.302219',
24200             'Test2::Compare::Array' => '1.302219',
24201             'Test2::Compare::Bag' => '1.302219',
24202             'Test2::Compare::Base' => '1.302219',
24203             'Test2::Compare::Bool' => '1.302219',
24204             'Test2::Compare::Custom'=> '1.302219',
24205             'Test2::Compare::DeepRef'=> '1.302219',
24206             'Test2::Compare::Delta' => '1.302219',
24207             'Test2::Compare::Event' => '1.302219',
24208             'Test2::Compare::EventMeta'=> '1.302219',
24209             'Test2::Compare::Float' => '1.302219',
24210             'Test2::Compare::Hash' => '1.302219',
24211             'Test2::Compare::Isa' => '1.302219',
24212             'Test2::Compare::Meta' => '1.302219',
24213             'Test2::Compare::Negatable'=> '1.302219',
24214             'Test2::Compare::Number'=> '1.302219',
24215             'Test2::Compare::Object'=> '1.302219',
24216             'Test2::Compare::OrderedSubset'=> '1.302219',
24217             'Test2::Compare::Pattern'=> '1.302219',
24218             'Test2::Compare::Ref' => '1.302219',
24219             'Test2::Compare::Regex' => '1.302219',
24220             'Test2::Compare::Scalar'=> '1.302219',
24221             'Test2::Compare::Set' => '1.302219',
24222             'Test2::Compare::String'=> '1.302219',
24223             'Test2::Compare::Undef' => '1.302219',
24224             'Test2::Compare::Wildcard'=> '1.302219',
24225             'Test2::Env' => '1.302219',
24226             'Test2::Event' => '1.302219',
24227             'Test2::Event::Bail' => '1.302219',
24228             'Test2::Event::Diag' => '1.302219',
24229             'Test2::Event::Encoding'=> '1.302219',
24230             'Test2::Event::Exception'=> '1.302219',
24231             'Test2::Event::Fail' => '1.302219',
24232             'Test2::Event::Generic' => '1.302219',
24233             'Test2::Event::Note' => '1.302219',
24234             'Test2::Event::Ok' => '1.302219',
24235             'Test2::Event::Pass' => '1.302219',
24236             'Test2::Event::Plan' => '1.302219',
24237             'Test2::Event::Skip' => '1.302219',
24238             'Test2::Event::Subtest' => '1.302219',
24239             'Test2::Event::TAP::Version'=> '1.302219',
24240             'Test2::Event::V2' => '1.302219',
24241             'Test2::Event::Waiting' => '1.302219',
24242             'Test2::EventFacet' => '1.302219',
24243             'Test2::EventFacet::About'=> '1.302219',
24244             'Test2::EventFacet::Amnesty'=> '1.302219',
24245             'Test2::EventFacet::Assert'=> '1.302219',
24246             'Test2::EventFacet::Control'=> '1.302219',
24247             'Test2::EventFacet::Error'=> '1.302219',
24248             'Test2::EventFacet::Hub'=> '1.302219',
24249             'Test2::EventFacet::Info'=> '1.302219',
24250             'Test2::EventFacet::Info::Table'=> '1.302219',
24251             'Test2::EventFacet::Meta'=> '1.302219',
24252             'Test2::EventFacet::Parent'=> '1.302219',
24253             'Test2::EventFacet::Plan'=> '1.302219',
24254             'Test2::EventFacet::Render'=> '1.302219',
24255             'Test2::EventFacet::Trace'=> '1.302219',
24256             'Test2::Formatter' => '1.302219',
24257             'Test2::Formatter::TAP' => '1.302219',
24258             'Test2::Handle' => '1.302219',
24259             'Test2::Hub' => '1.302219',
24260             'Test2::Hub::Interceptor'=> '1.302219',
24261             'Test2::Hub::Interceptor::Terminator'=> '1.302219',
24262             'Test2::Hub::Subtest' => '1.302219',
24263             'Test2::IPC' => '1.302219',
24264             'Test2::IPC::Driver' => '1.302219',
24265             'Test2::IPC::Driver::Files'=> '1.302219',
24266             'Test2::Manual' => '1.302219',
24267             'Test2::Manual::Anatomy'=> '1.302219',
24268             'Test2::Manual::Anatomy::API'=> '1.302219',
24269             'Test2::Manual::Anatomy::Context'=> '1.302219',
24270             'Test2::Manual::Anatomy::EndToEnd'=> '1.302219',
24271             'Test2::Manual::Anatomy::Event'=> '1.302219',
24272             'Test2::Manual::Anatomy::Hubs'=> '1.302219',
24273             'Test2::Manual::Anatomy::IPC'=> '1.302219',
24274             'Test2::Manual::Anatomy::Utilities'=> '1.302219',
24275             'Test2::Manual::Concurrency'=> '1.302219',
24276             'Test2::Manual::Contributing'=> '1.302219',
24277             'Test2::Manual::Testing'=> '1.302219',
24278             'Test2::Manual::Testing::Introduction'=> '1.302219',
24279             'Test2::Manual::Testing::Migrating'=> '1.302219',
24280             'Test2::Manual::Testing::Planning'=> '1.302219',
24281             'Test2::Manual::Testing::Todo'=> '1.302219',
24282             'Test2::Manual::Tooling'=> '1.302219',
24283             'Test2::Manual::Tooling::FirstTool'=> '1.302219',
24284             'Test2::Manual::Tooling::Formatter'=> '1.302219',
24285             'Test2::Manual::Tooling::Nesting'=> '1.302219',
24286             'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302219',
24287             'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302219',
24288             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302219',
24289             'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302219',
24290             'Test2::Manual::Tooling::Subtest'=> '1.302219',
24291             'Test2::Manual::Tooling::TestBuilder'=> '1.302219',
24292             'Test2::Manual::Tooling::Testing'=> '1.302219',
24293             'Test2::Mock' => '1.302219',
24294             'Test2::Plugin' => '1.302219',
24295             'Test2::Plugin::BailOnFail'=> '1.302219',
24296             'Test2::Plugin::DieOnFail'=> '1.302219',
24297             'Test2::Plugin::ExitSummary'=> '1.302219',
24298             'Test2::Plugin::SRand' => '1.302219',
24299             'Test2::Plugin::Times' => '1.302219',
24300             'Test2::Plugin::UTF8' => '1.302219',
24301             'Test2::Require' => '1.302219',
24302             'Test2::Require::AuthorTesting'=> '1.302219',
24303             'Test2::Require::AutomatedTesting'=> '1.302219',
24304             'Test2::Require::EnvVar'=> '1.302219',
24305             'Test2::Require::ExtendedTesting'=> '1.302219',
24306             'Test2::Require::Fork' => '1.302219',
24307             'Test2::Require::Module'=> '1.302219',
24308             'Test2::Require::NonInteractiveTesting'=> '1.302219',
24309             'Test2::Require::Perl' => '1.302219',
24310             'Test2::Require::RealFork'=> '1.302219',
24311             'Test2::Require::ReleaseTesting'=> '1.302219',
24312             'Test2::Require::Threads'=> '1.302219',
24313             'Test2::Suite' => '1.302219',
24314             'Test2::Todo' => '1.302219',
24315             'Test2::Tools' => '1.302219',
24316             'Test2::Tools::AsyncSubtest'=> '1.302219',
24317             'Test2::Tools::Basic' => '1.302219',
24318             'Test2::Tools::Class' => '1.302219',
24319             'Test2::Tools::ClassicCompare'=> '1.302219',
24320             'Test2::Tools::Compare' => '1.302219',
24321             'Test2::Tools::Defer' => '1.302219',
24322             'Test2::Tools::Encoding'=> '1.302219',
24323             'Test2::Tools::Event' => '1.302219',
24324             'Test2::Tools::Exception'=> '1.302219',
24325             'Test2::Tools::Exports' => '1.302219',
24326             'Test2::Tools::GenTemp' => '1.302219',
24327             'Test2::Tools::Grab' => '1.302219',
24328             'Test2::Tools::Mock' => '1.302219',
24329             'Test2::Tools::Ref' => '1.302219',
24330             'Test2::Tools::Refcount'=> '1.302219',
24331             'Test2::Tools::Spec' => '1.302219',
24332             'Test2::Tools::Subtest' => '1.302219',
24333             'Test2::Tools::Target' => '1.302219',
24334             'Test2::Tools::Tester' => '1.302219',
24335             'Test2::Tools::Tiny' => '1.302219',
24336             'Test2::Tools::Warnings'=> '1.302219',
24337             'Test2::Util' => '1.302219',
24338             'Test2::Util::ExternalMeta'=> '1.302219',
24339             'Test2::Util::Facets2Legacy'=> '1.302219',
24340             'Test2::Util::Grabber' => '1.302219',
24341             'Test2::Util::Guard' => '1.302219',
24342             'Test2::Util::HashBase' => '1.302219',
24343             'Test2::Util::Importer' => '1.302219',
24344             'Test2::Util::Ref' => '1.302219',
24345             'Test2::Util::Sig' => '1.302219',
24346             'Test2::Util::Stash' => '1.302219',
24347             'Test2::Util::Sub' => '1.302219',
24348             'Test2::Util::Table' => '1.302219',
24349             'Test2::Util::Table::Cell'=> '1.302219',
24350             'Test2::Util::Table::LineBreak'=> '1.302219',
24351             'Test2::Util::Term' => '1.302219',
24352             'Test2::Util::Times' => '1.302219',
24353             'Test2::Util::Trace' => '1.302219',
24354             'Test2::V0' => '1.302219',
24355             'Test2::V1' => '1.302219',
24356             'Test2::V1::Base' => '1.302219',
24357             'Test2::V1::Handle' => '1.302219',
24358             'Test2::Workflow' => '1.302219',
24359             'Test2::Workflow::BlockBase'=> '1.302219',
24360             'Test2::Workflow::Build'=> '1.302219',
24361             'Test2::Workflow::Runner'=> '1.302219',
24362             'Test2::Workflow::Task' => '1.302219',
24363             'Test2::Workflow::Task::Action'=> '1.302219',
24364             'Test2::Workflow::Task::Group'=> '1.302219',
24365             'Test::Builder' => '1.302219',
24366             'Test::Builder::Formatter'=> '1.302219',
24367             'Test::Builder::Module' => '1.302219',
24368             'Test::Builder::Tester' => '1.302219',
24369             'Test::Builder::Tester::Color'=> '1.302219',
24370             'Test::Builder::TodoDiag'=> '1.302219',
24371             'Test::More' => '1.302219',
24372             'Test::Simple' => '1.302219',
24373             'Test::Tester' => '1.302219',
24374             'Test::Tester::Capture' => '1.302219',
24375             'Test::Tester::CaptureRunner'=> '1.302219',
24376             'Test::Tester::Delegate'=> '1.302219',
24377             'Test::use::ok' => '1.302219',
24378             'XS::APItest' => '1.48',
24379             '_charnames' => '1.51',
24380             'charnames' => '1.51',
24381             'ok' => '1.302219',
24382             'warnings' => '1.76',
24383             },
24384             removed => {
24385             }
24386             },
24387             5.043007 => {
24388             delta_from => 5.043006,
24389             changed => {
24390             'B' => '1.91',
24391             'B::Concise' => '1.010',
24392             'B::Op_private' => '5.043007',
24393             'Config' => '5.043007',
24394             'ExtUtils::ParseXS' => '3.62',
24395             'ExtUtils::ParseXS::Constants'=> '3.62',
24396             'ExtUtils::ParseXS::CountLines'=> '3.62',
24397             'ExtUtils::ParseXS::Eval'=> '3.62',
24398             'ExtUtils::ParseXS::Node'=> '3.62',
24399             'ExtUtils::ParseXS::Utilities'=> '3.62',
24400             'ExtUtils::Typemaps' => '3.62',
24401             'ExtUtils::Typemaps::Cmd'=> '3.62',
24402             'ExtUtils::Typemaps::InputMap'=> '3.62',
24403             'ExtUtils::Typemaps::OutputMap'=> '3.62',
24404             'ExtUtils::Typemaps::Type'=> '3.62',
24405             'HTTP::Tiny' => '0.092',
24406             'Module::CoreList' => '5.20260119',
24407             'Module::CoreList::Utils'=> '5.20260119',
24408             'POSIX' => '2.25',
24409             'Pod::Html' => '1.36',
24410             'Pod::Html::Util' => '1.36',
24411             },
24412             removed => {
24413             }
24414             },
24415             5.043008 => {
24416             delta_from => 5.043007,
24417             changed => {
24418             'B::Concise' => '1.011',
24419             'B::Deparse' => '1.89',
24420             'B::Op_private' => '5.043008',
24421             'CPAN::Meta' => '2.150012',
24422             'CPAN::Meta::Converter' => '2.150012',
24423             'CPAN::Meta::Feature' => '2.150012',
24424             'CPAN::Meta::History' => '2.150012',
24425             'CPAN::Meta::Merge' => '2.150012',
24426             'CPAN::Meta::Prereqs' => '2.150012',
24427             'CPAN::Meta::Spec' => '2.150012',
24428             'CPAN::Meta::Validator' => '2.150012',
24429             'Compress::Raw::Bzip2' => '2.217',
24430             'Compress::Raw::Zlib' => '2.218',
24431             'Compress::Zlib' => '2.217',
24432             'Config' => '5.043008',
24433             'Config::Perl::V' => '0.39',
24434             'DB_File' => '1.860',
24435             'English' => '1.12',
24436             'ExtUtils::ParseXS' => '3.63',
24437             'ExtUtils::ParseXS::Constants'=> '3.63',
24438             'ExtUtils::ParseXS::CountLines'=> '3.63',
24439             'ExtUtils::ParseXS::Eval'=> '3.63',
24440             'ExtUtils::ParseXS::Node'=> '3.63',
24441             'ExtUtils::ParseXS::Utilities'=> '3.63',
24442             'ExtUtils::Typemaps' => '3.63',
24443             'ExtUtils::Typemaps::Cmd'=> '3.63',
24444             'ExtUtils::Typemaps::InputMap'=> '3.63',
24445             'ExtUtils::Typemaps::OutputMap'=> '3.63',
24446             'ExtUtils::Typemaps::Type'=> '3.63',
24447             'IO::Compress' => '2.217',
24448             'IO::Compress::Adapter::Bzip2'=> '2.217',
24449             'IO::Compress::Adapter::Deflate'=> '2.217',
24450             'IO::Compress::Adapter::Identity'=> '2.217',
24451             'IO::Compress::Base' => '2.217',
24452             'IO::Compress::Base::Common'=> '2.217',
24453             'IO::Compress::Bzip2' => '2.217',
24454             'IO::Compress::Deflate' => '2.217',
24455             'IO::Compress::Gzip' => '2.217',
24456             'IO::Compress::Gzip::Constants'=> '2.217',
24457             'IO::Compress::RawDeflate'=> '2.217',
24458             'IO::Compress::Zip' => '2.217',
24459             'IO::Compress::Zip::Constants'=> '2.217',
24460             'IO::Compress::Zlib::Constants'=> '2.217',
24461             'IO::Compress::Zlib::Extra'=> '2.217',
24462             'IO::Uncompress::Adapter::Bunzip2'=> '2.217',
24463             'IO::Uncompress::Adapter::Identity'=> '2.217',
24464             'IO::Uncompress::Adapter::Inflate'=> '2.217',
24465             'IO::Uncompress::AnyInflate'=> '2.217',
24466             'IO::Uncompress::AnyUncompress'=> '2.217',
24467             'IO::Uncompress::Base' => '2.217',
24468             'IO::Uncompress::Bunzip2'=> '2.217',
24469             'IO::Uncompress::Gunzip'=> '2.217',
24470             'IO::Uncompress::Inflate'=> '2.217',
24471             'IO::Uncompress::RawInflate'=> '2.217',
24472             'IO::Uncompress::Unzip' => '2.217',
24473             'Module::CoreList' => '5.20260220',
24474             'Module::CoreList::Utils'=> '5.20260220',
24475             'Parse::CPAN::Meta' => '2.150012',
24476             'Time::HiRes' => '1.9780',
24477             'XS::APItest' => '1.49',
24478             'XS::Typemap' => '0.21',
24479             'feature' => '2.01',
24480             'threads' => '2.44',
24481             'threads::shared' => '1.72',
24482             'warnings' => '1.77',
24483             },
24484             removed => {
24485             }
24486             },
24487             5.042001 => {
24488             delta_from => 5.042000,
24489             changed => {
24490             'B::Op_private' => '5.042001',
24491             'Config' => '5.042001',
24492             'Module::CoreList' => '5.20260308',
24493             'Module::CoreList::Utils'=> '5.20260308',
24494             'POSIX' => '2.23_01',
24495             },
24496             removed => {
24497             }
24498             },
24499             5.043009 => {
24500             delta_from => 5.043008,
24501             changed => {
24502             'B' => '1.92',
24503             'B::Op_private' => '5.043009',
24504             'CPAN::Meta' => '2.150013',
24505             'CPAN::Meta::Converter' => '2.150013',
24506             'CPAN::Meta::Feature' => '2.150013',
24507             'CPAN::Meta::History' => '2.150013',
24508             'CPAN::Meta::Merge' => '2.150013',
24509             'CPAN::Meta::Prereqs' => '2.150013',
24510             'CPAN::Meta::Requirements'=> '2.145',
24511             'CPAN::Meta::Requirements::Range'=> '2.145',
24512             'CPAN::Meta::Spec' => '2.150013',
24513             'CPAN::Meta::Validator' => '2.150013',
24514             'Compress::Raw::Bzip2' => '2.218',
24515             'Compress::Raw::Zlib' => '2.222',
24516             'Compress::Zlib' => '2.219',
24517             'Config' => '5.043009',
24518             'Cwd' => '3.95',
24519             'ExtUtils::CBuilder' => '0.280243',
24520             'ExtUtils::CBuilder::Base'=> '0.280243',
24521             'ExtUtils::CBuilder::Platform::Unix'=> '0.280243',
24522             'ExtUtils::CBuilder::Platform::VMS'=> '0.280243',
24523             'ExtUtils::CBuilder::Platform::Windows'=> '0.280243',
24524             'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280243',
24525             'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280243',
24526             'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280243',
24527             'ExtUtils::CBuilder::Platform::aix'=> '0.280243',
24528             'ExtUtils::CBuilder::Platform::android'=> '0.280243',
24529             'ExtUtils::CBuilder::Platform::cygwin'=> '0.280243',
24530             'ExtUtils::CBuilder::Platform::darwin'=> '0.280243',
24531             'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280243',
24532             'ExtUtils::CBuilder::Platform::os2'=> '0.280243',
24533             'ExtUtils::Command' => '7.78',
24534             'ExtUtils::Command::MM' => '7.78',
24535             'ExtUtils::Liblist' => '7.78',
24536             'ExtUtils::Liblist::Kid'=> '7.78',
24537             'ExtUtils::MM' => '7.78',
24538             'ExtUtils::MM_AIX' => '7.78',
24539             'ExtUtils::MM_Any' => '7.78',
24540             'ExtUtils::MM_BeOS' => '7.78',
24541             'ExtUtils::MM_Cygwin' => '7.78',
24542             'ExtUtils::MM_DOS' => '7.78',
24543             'ExtUtils::MM_Darwin' => '7.78',
24544             'ExtUtils::MM_MacOS' => '7.78',
24545             'ExtUtils::MM_NW5' => '7.78',
24546             'ExtUtils::MM_OS2' => '7.78',
24547             'ExtUtils::MM_OS390' => '7.78',
24548             'ExtUtils::MM_QNX' => '7.78',
24549             'ExtUtils::MM_UWIN' => '7.78',
24550             'ExtUtils::MM_Unix' => '7.78',
24551             'ExtUtils::MM_VMS' => '7.78',
24552             'ExtUtils::MM_VOS' => '7.78',
24553             'ExtUtils::MM_Win32' => '7.78',
24554             'ExtUtils::MM_Win95' => '7.78',
24555             'ExtUtils::MY' => '7.78',
24556             'ExtUtils::MakeMaker' => '7.78',
24557             'ExtUtils::MakeMaker::Config'=> '7.78',
24558             'ExtUtils::MakeMaker::Locale'=> '7.78',
24559             'ExtUtils::MakeMaker::version'=> '7.78',
24560             'ExtUtils::MakeMaker::version::regex'=> '7.78',
24561             'ExtUtils::Mkbootstrap' => '7.78',
24562             'ExtUtils::Mksymlists' => '7.78',
24563             'ExtUtils::testlib' => '7.78',
24564             'File::Glob' => '1.43',
24565             'File::Spec' => '3.95',
24566             'File::Spec::AmigaOS' => '3.95',
24567             'File::Spec::Cygwin' => '3.95',
24568             'File::Spec::Epoc' => '3.95',
24569             'File::Spec::Functions' => '3.95',
24570             'File::Spec::Mac' => '3.95',
24571             'File::Spec::OS2' => '3.95',
24572             'File::Spec::Unix' => '3.95',
24573             'File::Spec::VMS' => '3.95',
24574             'File::Spec::Win32' => '3.95',
24575             'IO' => '1.56',
24576             'IO::Compress' => '2.219',
24577             'IO::Compress::Adapter::Bzip2'=> '2.219',
24578             'IO::Compress::Adapter::Deflate'=> '2.219',
24579             'IO::Compress::Adapter::Identity'=> '2.219',
24580             'IO::Compress::Base' => '2.219',
24581             'IO::Compress::Base::Common'=> '2.219',
24582             'IO::Compress::Bzip2' => '2.219',
24583             'IO::Compress::Deflate' => '2.219',
24584             'IO::Compress::Gzip' => '2.219',
24585             'IO::Compress::Gzip::Constants'=> '2.219',
24586             'IO::Compress::RawDeflate'=> '2.219',
24587             'IO::Compress::Zip' => '2.219',
24588             'IO::Compress::Zip::Constants'=> '2.219',
24589             'IO::Compress::Zlib::Constants'=> '2.219',
24590             'IO::Compress::Zlib::Extra'=> '2.219',
24591             'IO::Dir' => '1.56',
24592             'IO::File' => '1.56',
24593             'IO::Handle' => '1.56',
24594             'IO::Pipe' => '1.56',
24595             'IO::Seekable' => '1.56',
24596             'IO::Select' => '1.56',
24597             'IO::Socket' => '1.56',
24598             'IO::Socket::INET' => '1.56',
24599             'IO::Socket::UNIX' => '1.56',
24600             'IO::Uncompress::Adapter::Bunzip2'=> '2.219',
24601             'IO::Uncompress::Adapter::Identity'=> '2.219',
24602             'IO::Uncompress::Adapter::Inflate'=> '2.219',
24603             'IO::Uncompress::AnyInflate'=> '2.219',
24604             'IO::Uncompress::AnyUncompress'=> '2.219',
24605             'IO::Uncompress::Base' => '2.219',
24606             'IO::Uncompress::Bunzip2'=> '2.219',
24607             'IO::Uncompress::Gunzip'=> '2.219',
24608             'IO::Uncompress::Inflate'=> '2.219',
24609             'IO::Uncompress::RawInflate'=> '2.219',
24610             'IO::Uncompress::Unzip' => '2.219',
24611             'Module::CoreList' => '5.20260320',
24612             'Module::CoreList::Utils'=> '5.20260320',
24613             'Opcode' => '1.71',
24614             'POSIX' => '2.26',
24615             'Parse::CPAN::Meta' => '2.150013',
24616             'Storable' => '3.40',
24617             'XS::APItest' => '1.50',
24618             'feature' => '2.02',
24619             'threads' => '2.45',
24620             'threads::shared' => '1.73',
24621             'warnings' => '1.78',
24622             },
24623             removed => {
24624             }
24625             },
24626             );
24627              
24628             sub is_core
24629             {
24630 43 100 66 43 1 336210 shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
      100        
24631 43         111 my $module = shift;
24632 43 100       196 my $module_version = @_ > 0 ? shift : undef;
24633 43 100       135 my $perl_version = @_ > 0 ? shift : $];
24634              
24635 43         159 my $first_release = first_release($module);
24636              
24637 43 100 100     716 return 0 if !defined($first_release) || $first_release > $perl_version;
24638              
24639 32         149 my $final_release = removed_from($module);
24640              
24641 32 100 100     314 return 0 if defined($final_release) && $perl_version >= $final_release;
24642              
24643             # If a minimum version of the module was specified:
24644             # Step through all perl releases ($prn)
24645             # so we can find what version of the module
24646             # was included in the specified version of perl.
24647             # On the way if we pass the required module version, we can
24648             # short-circuit and return true
24649 28 100       101 if (defined($module_version)) {
24650 21         88 my $module_version_object = eval { version->parse($module_version) };
  21         414  
24651 21 100       856 if (!defined($module_version_object)) {
24652 1         17 (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/;
24653 1         10 die $err;
24654             }
24655             # The Perl releases aren't a linear sequence, but a tree. We need to build the path
24656             # of releases from 5 to the specified release, and follow the module's version(s)
24657             # along that path.
24658 20         73 my @releases = ($perl_version);
24659 20         57 my $rel = $perl_version;
24660 20         64 while (defined($rel)) {
24661             # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
24662 598   66     1822 my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
24663 598         2317 $rel = $this_delta->{delta_from};
24664 598 100       1482 unshift(@releases, $rel) if defined($rel);
24665             }
24666             RELEASE:
24667 20         62 foreach my $prn (@releases) {
24668 531 100       1009 next RELEASE if $prn < $first_release;
24669 440 50       742 last RELEASE if $prn > $perl_version;
24670             next unless defined(my $next_module_version
24671 440 100       1600 = $delta{$prn}->{changed}->{$module});
24672 68 100       125 return 1 if eval { version->parse($next_module_version) >= $module_version_object };
  68         1013  
24673             }
24674 4         64 return 0;
24675             }
24676              
24677 7 100       89 return 1 if !defined($final_release);
24678              
24679 2         21 return $perl_version <= $final_release;
24680             }
24681              
24682             %version = _undelta(\%delta);
24683              
24684             %deprecated = (
24685             5.011 => {
24686             changed => { map { $_ => 1 } qw/
24687             Class::ISA
24688             Pod::Plainer
24689             Shell
24690             Switch
24691             /},
24692             },
24693             5.011001 => { delta_from => 5.011 },
24694             5.011002 => { delta_from => 5.011001 },
24695             5.011003 => { delta_from => 5.011002 },
24696             5.011004 => { delta_from => 5.011003 },
24697             5.011005 => { delta_from => 5.011004 },
24698              
24699             5.012 => { delta_from => 5.011005 },
24700             5.012001 => { delta_from => 5.012 },
24701             5.012002 => { delta_from => 5.012001 },
24702             5.012003 => { delta_from => 5.012002 },
24703             5.012004 => { delta_from => 5.012003 },
24704             5.012005 => { delta_from => 5.012004 },
24705              
24706             5.013 => { delta_from => 5.012005 },
24707             5.013001 => {
24708             delta_from => 5.013,
24709             removed => { map { $_ => 1 } qw/
24710             Class::ISA
24711             Pod::Plainer
24712             Switch
24713             /},
24714             },
24715             5.013002 => { delta_from => 5.013001 },
24716             5.013003 => { delta_from => 5.013002 },
24717             5.013004 => { delta_from => 5.013003 },
24718             5.013005 => { delta_from => 5.013004 },
24719             5.013006 => { delta_from => 5.013005 },
24720             5.013007 => { delta_from => 5.013006 },
24721             5.013008 => { delta_from => 5.013007 },
24722             5.013009 => { delta_from => 5.013008 },
24723             5.01301 => { delta_from => 5.013009 },
24724             5.013011 => { delta_from => 5.01301 },
24725              
24726             5.014 => { delta_from => 5.013011 },
24727             5.014001 => { delta_from => 5.014 },
24728             5.014002 => { delta_from => 5.014001 },
24729             5.014003 => { delta_from => 5.014002 },
24730             5.014004 => { delta_from => 5.014003 },
24731              
24732             5.015 => {
24733             delta_from => 5.014004,
24734             removed => { Shell => 1 },
24735             },
24736             5.015001 => { delta_from => 5.015 },
24737             5.015002 => { delta_from => 5.015001 },
24738             5.015003 => { delta_from => 5.015002 },
24739             5.015004 => { delta_from => 5.015003 },
24740             5.015005 => { delta_from => 5.015004 },
24741             5.015006 => { delta_from => 5.015005 },
24742             5.015007 => { delta_from => 5.015006 },
24743             5.015008 => { delta_from => 5.015007 },
24744             5.015009 => { delta_from => 5.015008 },
24745              
24746             5.016 => { delta_from => 5.015009 },
24747             5.016001 => { delta_from => 5.016 },
24748             5.016002 => { delta_from => 5.016001 },
24749             5.016003 => { delta_from => 5.016002 },
24750              
24751             5.017 => { delta_from => 5.016003 },
24752             5.017001 => { delta_from => 5.017 },
24753             5.017002 => { delta_from => 5.017001 },
24754             5.017003 => { delta_from => 5.017002 },
24755             5.017004 => { delta_from => 5.017003 },
24756             5.017005 => { delta_from => 5.017004 },
24757             5.017006 => { delta_from => 5.017005 },
24758             5.017007 => { delta_from => 5.017006 },
24759             5.017008 => {
24760             delta_from => 5.017007,
24761             changed => { 'Pod::LaTeX' => 1 },
24762             },
24763             5.017009 => {
24764             delta_from => 5.017008,
24765             changed => { map { $_ => 1 } qw/
24766             Archive::Extract
24767             B::Lint
24768             B::Lint::Debug
24769             CPANPLUS
24770             CPANPLUS::Backend
24771             CPANPLUS::Backend::RV
24772             CPANPLUS::Config
24773             CPANPLUS::Config::HomeEnv
24774             CPANPLUS::Configure
24775             CPANPLUS::Configure::Setup
24776             CPANPLUS::Dist
24777             CPANPLUS::Dist::Autobundle
24778             CPANPLUS::Dist::Base
24779             CPANPLUS::Dist::Build
24780             CPANPLUS::Dist::Build::Constants
24781             CPANPLUS::Dist::MM
24782             CPANPLUS::Dist::Sample
24783             CPANPLUS::Error
24784             CPANPLUS::Internals
24785             CPANPLUS::Internals::Constants
24786             CPANPLUS::Internals::Constants::Report
24787             CPANPLUS::Internals::Extract
24788             CPANPLUS::Internals::Fetch
24789             CPANPLUS::Internals::Report
24790             CPANPLUS::Internals::Search
24791             CPANPLUS::Internals::Source
24792             CPANPLUS::Internals::Source::Memory
24793             CPANPLUS::Internals::Source::SQLite
24794             CPANPLUS::Internals::Source::SQLite::Tie
24795             CPANPLUS::Internals::Utils
24796             CPANPLUS::Internals::Utils::Autoflush
24797             CPANPLUS::Module
24798             CPANPLUS::Module::Author
24799             CPANPLUS::Module::Author::Fake
24800             CPANPLUS::Module::Checksums
24801             CPANPLUS::Module::Fake
24802             CPANPLUS::Module::Signature
24803             CPANPLUS::Selfupdate
24804             CPANPLUS::Shell
24805             CPANPLUS::Shell::Classic
24806             CPANPLUS::Shell::Default
24807             CPANPLUS::Shell::Default::Plugins::CustomSource
24808             CPANPLUS::Shell::Default::Plugins::Remote
24809             CPANPLUS::Shell::Default::Plugins::Source
24810             Devel::InnerPackage
24811             File::CheckTree
24812             Log::Message
24813             Log::Message::Config
24814             Log::Message::Handlers
24815             Log::Message::Item
24816             Log::Message::Simple
24817             Module::Pluggable
24818             Module::Pluggable::Object
24819             Object::Accessor
24820             Term::UI
24821             Term::UI::History
24822             Text::Soundex
24823             /},
24824             },
24825             5.01701 => { delta_from => 5.017009 },
24826             5.017011 => { delta_from => 5.01701 },
24827              
24828             5.018 => { delta_from => 5.017011 },
24829             5.018001 => {
24830             delta_from => 5.018,
24831             changed => {
24832             },
24833             removed => {
24834             }
24835             },
24836             5.018002 => {
24837             delta_from => 5.018001,
24838             changed => {
24839             },
24840             removed => {
24841             }
24842             },
24843             5.018003 => {
24844             delta_from => 5.018,
24845             changed => {
24846             },
24847             removed => {
24848             }
24849             },
24850             5.018004 => {
24851             delta_from => 5.018,
24852             changed => {
24853             },
24854             removed => {
24855             }
24856             },
24857              
24858             5.019 => {
24859             delta_from => 5.018,
24860             changed => { 'Module::Build' => 1 },
24861             removed => { map { $_ => 1 } qw/
24862             Archive::Extract
24863             B::Lint
24864             B::Lint::Debug
24865             CPANPLUS
24866             CPANPLUS::Backend
24867             CPANPLUS::Backend::RV
24868             CPANPLUS::Config
24869             CPANPLUS::Config::HomeEnv
24870             CPANPLUS::Configure
24871             CPANPLUS::Configure::Setup
24872             CPANPLUS::Dist
24873             CPANPLUS::Dist::Autobundle
24874             CPANPLUS::Dist::Base
24875             CPANPLUS::Dist::Build
24876             CPANPLUS::Dist::Build::Constants
24877             CPANPLUS::Dist::MM
24878             CPANPLUS::Dist::Sample
24879             CPANPLUS::Error
24880             CPANPLUS::Internals
24881             CPANPLUS::Internals::Constants
24882             CPANPLUS::Internals::Constants::Report
24883             CPANPLUS::Internals::Extract
24884             CPANPLUS::Internals::Fetch
24885             CPANPLUS::Internals::Report
24886             CPANPLUS::Internals::Search
24887             CPANPLUS::Internals::Source
24888             CPANPLUS::Internals::Source::Memory
24889             CPANPLUS::Internals::Source::SQLite
24890             CPANPLUS::Internals::Source::SQLite::Tie
24891             CPANPLUS::Internals::Utils
24892             CPANPLUS::Internals::Utils::Autoflush
24893             CPANPLUS::Module
24894             CPANPLUS::Module::Author
24895             CPANPLUS::Module::Author::Fake
24896             CPANPLUS::Module::Checksums
24897             CPANPLUS::Module::Fake
24898             CPANPLUS::Module::Signature
24899             CPANPLUS::Selfupdate
24900             CPANPLUS::Shell
24901             CPANPLUS::Shell::Classic
24902             CPANPLUS::Shell::Default
24903             CPANPLUS::Shell::Default::Plugins::CustomSource
24904             CPANPLUS::Shell::Default::Plugins::Remote
24905             CPANPLUS::Shell::Default::Plugins::Source
24906             Devel::InnerPackage
24907             File::CheckTree
24908             Log::Message
24909             Log::Message::Config
24910             Log::Message::Handlers
24911             Log::Message::Item
24912             Log::Message::Simple
24913             Module::Pluggable
24914             Module::Pluggable::Object
24915             Object::Accessor
24916             Pod::LaTeX
24917             Term::UI
24918             Term::UI::History
24919             Text::Soundex
24920             /}
24921             },
24922             5.019001 => {
24923             delta_from => 5.019,
24924             changed => {
24925             },
24926             removed => {
24927             }
24928             },
24929             5.019002 => {
24930             delta_from => 5.019001,
24931             changed => {
24932             },
24933             removed => {
24934             }
24935             },
24936             5.019003 => {
24937             delta_from => 5.019002,
24938             changed => {
24939             },
24940             removed => {
24941             }
24942             },
24943             5.019004 => {
24944             delta_from => 5.019003,
24945             changed => {
24946             'Module::Build::Base' => '1',
24947             'Module::Build::Compat' => '1',
24948             'Module::Build::Config' => '1',
24949             'Module::Build::ConfigData'=> '1',
24950             'Module::Build::Cookbook'=> '1',
24951             'Module::Build::Dumper' => '1',
24952             'Module::Build::ModuleInfo'=> '1',
24953             'Module::Build::Notes' => '1',
24954             'Module::Build::PPMMaker'=> '1',
24955             'Module::Build::Platform::Default'=> '1',
24956             'Module::Build::Platform::MacOS'=> '1',
24957             'Module::Build::Platform::Unix'=> '1',
24958             'Module::Build::Platform::VMS'=> '1',
24959             'Module::Build::Platform::VOS'=> '1',
24960             'Module::Build::Platform::Windows'=> '1',
24961             'Module::Build::Platform::aix'=> '1',
24962             'Module::Build::Platform::cygwin'=> '1',
24963             'Module::Build::Platform::darwin'=> '1',
24964             'Module::Build::Platform::os2'=> '1',
24965             'Module::Build::PodParser'=> '1',
24966             'Module::Build::Version'=> '1',
24967             'Module::Build::YAML' => '1',
24968             'inc::latest' => '1',
24969             },
24970             removed => {
24971             }
24972             },
24973             5.019005 => {
24974             delta_from => 5.019004,
24975             changed => {
24976             },
24977             removed => {
24978             }
24979             },
24980             5.019006 => {
24981             delta_from => 5.019005,
24982             changed => {
24983             'Package::Constants' => '1',
24984             },
24985             removed => {
24986             }
24987             },
24988             5.019007 => {
24989             delta_from => 5.019006,
24990             changed => {
24991             'CGI' => '1',
24992             'CGI::Apache' => '1',
24993             'CGI::Carp' => '1',
24994             'CGI::Cookie' => '1',
24995             'CGI::Fast' => '1',
24996             'CGI::Pretty' => '1',
24997             'CGI::Push' => '1',
24998             'CGI::Switch' => '1',
24999             'CGI::Util' => '1',
25000             },
25001             removed => {
25002             }
25003             },
25004             5.019008 => {
25005             delta_from => 5.019007,
25006             changed => {
25007             },
25008             removed => {
25009             }
25010             },
25011             5.019009 => {
25012             delta_from => 5.019008,
25013             changed => {
25014             },
25015             removed => {
25016             }
25017             },
25018             5.01901 => {
25019             delta_from => 5.019009,
25020             changed => {
25021             },
25022             removed => {
25023             }
25024             },
25025             5.019011 => {
25026             delta_from => 5.019010,
25027             changed => {
25028             },
25029             removed => {
25030             }
25031             },
25032             5.020000 => {
25033             delta_from => 5.019011,
25034             changed => {
25035             },
25036             removed => {
25037             }
25038             },
25039             5.021000 => {
25040             delta_from => 5.020000,
25041             changed => {
25042             },
25043             removed => {
25044             'CGI' => 1,
25045             'CGI::Apache' => 1,
25046             'CGI::Carp' => 1,
25047             'CGI::Cookie' => 1,
25048             'CGI::Fast' => 1,
25049             'CGI::Pretty' => 1,
25050             'CGI::Push' => 1,
25051             'CGI::Switch' => 1,
25052             'CGI::Util' => 1,
25053             'Module::Build' => 1,
25054             'Module::Build::Base' => 1,
25055             'Module::Build::Compat' => 1,
25056             'Module::Build::Config' => 1,
25057             'Module::Build::ConfigData'=> 1,
25058             'Module::Build::Cookbook'=> 1,
25059             'Module::Build::Dumper' => 1,
25060             'Module::Build::ModuleInfo'=> 1,
25061             'Module::Build::Notes' => 1,
25062             'Module::Build::PPMMaker'=> 1,
25063             'Module::Build::Platform::Default'=> 1,
25064             'Module::Build::Platform::MacOS'=> 1,
25065             'Module::Build::Platform::Unix'=> 1,
25066             'Module::Build::Platform::VMS'=> 1,
25067             'Module::Build::Platform::VOS'=> 1,
25068             'Module::Build::Platform::Windows'=> 1,
25069             'Module::Build::Platform::aix'=> 1,
25070             'Module::Build::Platform::cygwin'=> 1,
25071             'Module::Build::Platform::darwin'=> 1,
25072             'Module::Build::Platform::os2'=> 1,
25073             'Module::Build::PodParser'=> 1,
25074             'Module::Build::Version'=> 1,
25075             'Module::Build::YAML' => 1,
25076             'Package::Constants' => 1,
25077             'inc::latest' => 1,
25078             }
25079             },
25080             5.021001 => {
25081             delta_from => 5.021000,
25082             changed => {
25083             },
25084             removed => {
25085             }
25086             },
25087             5.021002 => {
25088             delta_from => 5.021001,
25089             changed => {
25090             },
25091             removed => {
25092             }
25093             },
25094             5.021003 => {
25095             delta_from => 5.021002,
25096             changed => {
25097             },
25098             removed => {
25099             }
25100             },
25101             5.020001 => {
25102             delta_from => 5.020000,
25103             changed => {
25104             },
25105             removed => {
25106             }
25107             },
25108             5.021004 => {
25109             delta_from => 5.021003,
25110             changed => {
25111             },
25112             removed => {
25113             }
25114             },
25115             5.021005 => {
25116             delta_from => 5.021004,
25117             changed => {
25118             },
25119             removed => {
25120             }
25121             },
25122             5.021006 => {
25123             delta_from => 5.021005,
25124             changed => {
25125             },
25126             removed => {
25127             }
25128             },
25129             5.021007 => {
25130             delta_from => 5.021006,
25131             changed => {
25132             },
25133             removed => {
25134             }
25135             },
25136             5.021008 => {
25137             delta_from => 5.021007,
25138             changed => {
25139             },
25140             removed => {
25141             }
25142             },
25143             5.020002 => {
25144             delta_from => 5.020001,
25145             changed => {
25146             },
25147             removed => {
25148             }
25149             },
25150             5.021009 => {
25151             delta_from => 5.021008,
25152             changed => {
25153             },
25154             removed => {
25155             }
25156             },
25157             5.021010 => {
25158             delta_from => 5.021009,
25159             changed => {
25160             },
25161             removed => {
25162             }
25163             },
25164             5.021011 => {
25165             delta_from => 5.02101,
25166             changed => {
25167             },
25168             removed => {
25169             }
25170             },
25171             5.022000 => {
25172             delta_from => 5.021011,
25173             changed => {
25174             },
25175             removed => {
25176             }
25177             },
25178             5.023000 => {
25179             delta_from => 5.022000,
25180             changed => {
25181             },
25182             removed => {
25183             }
25184             },
25185             5.023001 => {
25186             delta_from => 5.023000,
25187             changed => {
25188             },
25189             removed => {
25190             }
25191             },
25192             5.023002 => {
25193             delta_from => 5.023001,
25194             changed => {
25195             },
25196             removed => {
25197             }
25198             },
25199             5.020003 => {
25200             delta_from => 5.020002,
25201             changed => {
25202             },
25203             removed => {
25204             }
25205             },
25206             5.023003 => {
25207             delta_from => 5.023002,
25208             changed => {
25209             },
25210             removed => {
25211             }
25212             },
25213             5.023004 => {
25214             delta_from => 5.023003,
25215             changed => {
25216             },
25217             removed => {
25218             }
25219             },
25220             5.023005 => {
25221             delta_from => 5.023004,
25222             changed => {
25223             },
25224             removed => {
25225             }
25226             },
25227             5.022001 => {
25228             delta_from => 5.022,
25229             changed => {
25230             },
25231             removed => {
25232             }
25233             },
25234             5.023006 => {
25235             delta_from => 5.023005,
25236             changed => {
25237             },
25238             removed => {
25239             }
25240             },
25241             5.023007 => {
25242             delta_from => 5.023006,
25243             changed => {
25244             },
25245             removed => {
25246             }
25247             },
25248             5.023008 => {
25249             delta_from => 5.023007,
25250             changed => {
25251             },
25252             removed => {
25253             }
25254             },
25255             5.023009 => {
25256             delta_from => 5.023008,
25257             changed => {
25258             },
25259             removed => {
25260             }
25261             },
25262             5.022002 => {
25263             delta_from => 5.022001,
25264             changed => {
25265             },
25266             removed => {
25267             }
25268             },
25269             5.024000 => {
25270             delta_from => 5.023009,
25271             changed => {
25272             },
25273             removed => {
25274             }
25275             },
25276             5.025000 => {
25277             delta_from => 5.024,
25278             changed => {
25279             },
25280             removed => {
25281             }
25282             },
25283             5.025001 => {
25284             delta_from => 5.025,
25285             changed => {
25286             },
25287             removed => {
25288             }
25289             },
25290             5.025002 => {
25291             delta_from => 5.025001,
25292             changed => {
25293             },
25294             removed => {
25295             }
25296             },
25297             5.025003 => {
25298             delta_from => 5.025002,
25299             changed => {
25300             },
25301             removed => {
25302             }
25303             },
25304             5.025004 => {
25305             delta_from => 5.025003,
25306             changed => {
25307             },
25308             removed => {
25309             }
25310             },
25311             5.025005 => {
25312             delta_from => 5.025004,
25313             changed => {
25314             },
25315             removed => {
25316             }
25317             },
25318             5.025006 => {
25319             delta_from => 5.025005,
25320             changed => {
25321             },
25322             removed => {
25323             }
25324             },
25325             5.025007 => {
25326             delta_from => 5.025006,
25327             changed => {
25328             },
25329             removed => {
25330             }
25331             },
25332             5.025008 => {
25333             delta_from => 5.025007,
25334             changed => {
25335             },
25336             removed => {
25337             }
25338             },
25339             5.022003 => {
25340             delta_from => 5.022002,
25341             changed => {
25342             },
25343             removed => {
25344             }
25345             },
25346             5.024001 => {
25347             delta_from => 5.024000,
25348             changed => {
25349             },
25350             removed => {
25351             }
25352             },
25353             5.025009 => {
25354             delta_from => 5.025008,
25355             changed => {
25356             },
25357             removed => {
25358             }
25359             },
25360             5.025010 => {
25361             delta_from => 5.025009,
25362             changed => {
25363             },
25364             removed => {
25365             }
25366             },
25367             5.025011 => {
25368             delta_from => 5.025010,
25369             changed => {
25370             },
25371             removed => {
25372             }
25373             },
25374             5.025012 => {
25375             delta_from => 5.025011,
25376             changed => {
25377             },
25378             removed => {
25379             }
25380             },
25381             5.026000 => {
25382             delta_from => 5.025012,
25383             changed => {
25384             },
25385             removed => {
25386             }
25387             },
25388             5.027000 => {
25389             delta_from => 5.026,
25390             changed => {
25391             },
25392             removed => {
25393             }
25394             },
25395             5.027001 => {
25396             delta_from => 5.027,
25397             changed => {
25398             },
25399             removed => {
25400             }
25401             },
25402             5.022004 => {
25403             delta_from => 5.022003,
25404             changed => {
25405             },
25406             removed => {
25407             }
25408             },
25409             5.024002 => {
25410             delta_from => 5.024001,
25411             changed => {
25412             },
25413             removed => {
25414             }
25415             },
25416             5.027002 => {
25417             delta_from => 5.027001,
25418             changed => {
25419             },
25420             removed => {
25421             }
25422             },
25423             5.027003 => {
25424             delta_from => 5.027002,
25425             changed => {
25426             'B::Debug' => '1',
25427             },
25428             removed => {
25429             }
25430             },
25431             5.027004 => {
25432             delta_from => 5.027003,
25433             changed => {
25434             },
25435             removed => {
25436             }
25437             },
25438             5.024003 => {
25439             delta_from => 5.024002,
25440             changed => {
25441             },
25442             removed => {
25443             }
25444             },
25445             5.026001 => {
25446             delta_from => 5.026000,
25447             changed => {
25448             },
25449             removed => {
25450             }
25451             },
25452             5.027005 => {
25453             delta_from => 5.027004,
25454             changed => {
25455             },
25456             removed => {
25457             }
25458             },
25459             5.027006 => {
25460             delta_from => 5.027005,
25461             changed => {
25462             },
25463             removed => {
25464             }
25465             },
25466             5.027007 => {
25467             delta_from => 5.027006,
25468             changed => {
25469             },
25470             removed => {
25471             }
25472             },
25473             5.027008 => {
25474             delta_from => 5.027007,
25475             changed => {
25476             },
25477             removed => {
25478             }
25479             },
25480             5.027009 => {
25481             delta_from => 5.027008,
25482             changed => {
25483             },
25484             removed => {
25485             }
25486             },
25487             5.027010 => {
25488             delta_from => 5.027009,
25489             changed => {
25490             },
25491             removed => {
25492             }
25493             },
25494             5.024004 => {
25495             delta_from => 5.024003,
25496             changed => {
25497             },
25498             removed => {
25499             }
25500             },
25501             5.026002 => {
25502             delta_from => 5.026001,
25503             changed => {
25504             },
25505             removed => {
25506             }
25507             },
25508             5.027011 => {
25509             delta_from => 5.02701,
25510             changed => {
25511             },
25512             removed => {
25513             }
25514             },
25515             5.028000 => {
25516             delta_from => 5.027011,
25517             changed => {
25518             },
25519             removed => {
25520             }
25521             },
25522             5.029000 => {
25523             delta_from => 5.028,
25524             changed => {
25525             },
25526             removed => {
25527             }
25528             },
25529             5.029001 => {
25530             delta_from => 5.029,
25531             changed => {
25532             },
25533             removed => {
25534             }
25535             },
25536             5.029002 => {
25537             delta_from => 5.029001,
25538             changed => {
25539             },
25540             removed => {
25541             }
25542             },
25543             5.029003 => {
25544             delta_from => 5.029002,
25545             changed => {
25546             },
25547             removed => {
25548             }
25549             },
25550             5.029004 => {
25551             delta_from => 5.029003,
25552             changed => {
25553             },
25554             removed => {
25555             arybase => '1',
25556             }
25557             },
25558             5.029005 => {
25559             delta_from => 5.027002,
25560             changed => {
25561             },
25562             removed => {
25563             }
25564             },
25565             5.026003 => {
25566             delta_from => 5.026002,
25567             changed => {
25568             },
25569             removed => {
25570             }
25571             },
25572             5.028001 => {
25573             delta_from => 5.028000,
25574             changed => {
25575             },
25576             removed => {
25577             }
25578             },
25579             5.029006 => {
25580             delta_from => 5.029005,
25581             changed => {
25582             },
25583             removed => {
25584             }
25585             },
25586             5.029007 => {
25587             delta_from => 5.029006,
25588             changed => {
25589             },
25590             removed => {
25591             }
25592             },
25593             5.029008 => {
25594             delta_from => 5.029007,
25595             changed => {
25596             },
25597             removed => {
25598             }
25599             },
25600             5.029009 => {
25601             delta_from => 5.029008,
25602             changed => {
25603             },
25604             removed => {
25605             }
25606             },
25607             5.028002 => {
25608             delta_from => 5.028001,
25609             changed => {
25610             },
25611             removed => {
25612             }
25613             },
25614             5.029010 => {
25615             delta_from => 5.029009,
25616             changed => {
25617             },
25618             removed => {
25619             }
25620             },
25621             5.030000 => {
25622             delta_from => 5.02901,
25623             changed => {
25624             },
25625             removed => {
25626             }
25627             },
25628             5.031000 => {
25629             delta_from => 5.030000,
25630             changed => {
25631             },
25632             removed => {
25633             }
25634             },
25635             5.031001 => {
25636             delta_from => 5.031000,
25637             changed => {
25638             },
25639             removed => {
25640             }
25641             },
25642             5.031002 => {
25643             delta_from => 5.031001,
25644             changed => {
25645             },
25646             removed => {
25647             }
25648             },
25649             5.031003 => {
25650             delta_from => 5.031002,
25651             changed => {
25652             },
25653             removed => {
25654             }
25655             },
25656             5.031004 => {
25657             delta_from => 5.031003,
25658             changed => {
25659             },
25660             removed => {
25661             }
25662             },
25663             5.031005 => {
25664             delta_from => 5.031004,
25665             changed => {
25666             },
25667             removed => {
25668             }
25669             },
25670             5.030001 => {
25671             delta_from => 5.030000,
25672             changed => {
25673             },
25674             removed => {
25675             }
25676             },
25677             5.031006 => {
25678             delta_from => 5.031005,
25679             changed => {
25680             },
25681             removed => {
25682             }
25683             },
25684             5.031007 => {
25685             delta_from => 5.031006,
25686             changed => {
25687             },
25688             removed => {
25689             }
25690             },
25691             5.031008 => {
25692             delta_from => 5.031007,
25693             changed => {
25694             },
25695             removed => {
25696             }
25697             },
25698             5.031009 => {
25699             delta_from => 5.031008,
25700             changed => {
25701             },
25702             removed => {
25703             }
25704             },
25705             5.030002 => {
25706             delta_from => 5.030001,
25707             changed => {
25708             },
25709             removed => {
25710             }
25711             },
25712             5.031010 => {
25713             delta_from => 5.031009,
25714             changed => {
25715             },
25716             removed => {
25717             }
25718             },
25719             5.031011 => {
25720             delta_from => 5.03101,
25721             changed => {
25722             },
25723             removed => {
25724             }
25725             },
25726             5.028003 => {
25727             delta_from => 5.028002,
25728             changed => {
25729             },
25730             removed => {
25731             }
25732             },
25733             5.030003 => {
25734             delta_from => 5.030002,
25735             changed => {
25736             },
25737             removed => {
25738             }
25739             },
25740             5.032000 => {
25741             delta_from => 5.031011,
25742             changed => {
25743             },
25744             removed => {
25745             }
25746             },
25747             5.033000 => {
25748             delta_from => 5.032,
25749             changed => {
25750             },
25751             removed => {
25752             }
25753             },
25754             5.033001 => {
25755             delta_from => 5.033000,
25756             changed => {
25757             },
25758             removed => {
25759             }
25760             },
25761             5.033002 => {
25762             delta_from => 5.033001,
25763             changed => {
25764             },
25765             removed => {
25766             }
25767             },
25768             5.033003 => {
25769             delta_from => 5.033002,
25770             changed => {
25771             },
25772             removed => {
25773             }
25774             },
25775             5.033004 => {
25776             delta_from => 5.033003,
25777             changed => {
25778             },
25779             removed => {
25780             }
25781             },
25782             5.033005 => {
25783             delta_from => 5.033004,
25784             changed => {
25785             },
25786             removed => {
25787             }
25788             },
25789             5.033006 => {
25790             delta_from => 5.033005,
25791             changed => {
25792             },
25793             removed => {
25794             }
25795             },
25796             5.032001 => {
25797             delta_from => 5.032,
25798             changed => {
25799             },
25800             removed => {
25801             }
25802             },
25803             5.033007 => {
25804             delta_from => 5.033006,
25805             changed => {
25806             },
25807             removed => {
25808             }
25809             },
25810             5.033008 => {
25811             delta_from => 5.033007,
25812             changed => {
25813             },
25814             removed => {
25815             }
25816             },
25817             5.033009 => {
25818             delta_from => 5.033008,
25819             changed => {
25820             },
25821             removed => {
25822             }
25823             },
25824             5.034000 => {
25825             delta_from => 5.033009,
25826             changed => {
25827             },
25828             removed => {
25829             }
25830             },
25831             5.035000 => {
25832             delta_from => 5.034,
25833             changed => {
25834             },
25835             removed => {
25836             }
25837             },
25838             5.035001 => {
25839             delta_from => 5.035,
25840             changed => {
25841             },
25842             removed => {
25843             }
25844             },
25845             5.035002 => {
25846             delta_from => 5.035001,
25847             changed => {
25848             },
25849             removed => {
25850             }
25851             },
25852             5.035003 => {
25853             delta_from => 5.035002,
25854             changed => {
25855             },
25856             removed => {
25857             }
25858             },
25859             5.035004 => {
25860             delta_from => 5.035003,
25861             changed => {
25862             },
25863             removed => {
25864             }
25865             },
25866             5.035005 => {
25867             delta_from => 5.035004,
25868             changed => {
25869             },
25870             removed => {
25871             }
25872             },
25873             5.035006 => {
25874             delta_from => 5.035005,
25875             changed => {
25876             },
25877             removed => {
25878             }
25879             },
25880             5.035007 => {
25881             delta_from => 5.035006,
25882             changed => {
25883             },
25884             removed => {
25885             }
25886             },
25887             5.035008 => {
25888             delta_from => 5.035007,
25889             changed => {
25890             },
25891             removed => {
25892             }
25893             },
25894             5.035009 => {
25895             delta_from => 5.035008,
25896             changed => {
25897             },
25898             removed => {
25899             }
25900             },
25901             5.034001 => {
25902             delta_from => 5.034000,
25903             changed => {
25904             },
25905             removed => {
25906             }
25907             },
25908             5.035010 => {
25909             delta_from => 5.035009,
25910             changed => {
25911             },
25912             removed => {
25913             }
25914             },
25915             5.035011 => {
25916             delta_from => 5.035010,
25917             changed => {
25918             },
25919             removed => {
25920             }
25921             },
25922             5.036000 => {
25923             delta_from => 5.035011,
25924             changed => {
25925             },
25926             removed => {
25927             }
25928             },
25929             5.037000 => {
25930             delta_from => 5.036000,
25931             changed => {
25932             },
25933             removed => {
25934             }
25935             },
25936             5.037001 => {
25937             delta_from => 5.037000,
25938             changed => {
25939             },
25940             removed => {
25941             }
25942             },
25943             5.037002 => {
25944             delta_from => 5.037001,
25945             changed => {
25946             },
25947             removed => {
25948             }
25949             },
25950             5.037003 => {
25951             delta_from => 5.037002,
25952             changed => {
25953             },
25954             removed => {
25955             }
25956             },
25957             5.037004 => {
25958             delta_from => 5.037003,
25959             changed => {
25960             },
25961             removed => {
25962             }
25963             },
25964             5.037005 => {
25965             delta_from => 5.037004,
25966             changed => {
25967             },
25968             removed => {
25969             }
25970             },
25971             5.037006 => {
25972             delta_from => 5.037005,
25973             changed => {
25974             },
25975             removed => {
25976             }
25977             },
25978             5.037007 => {
25979             delta_from => 5.037006,
25980             changed => {
25981             },
25982             removed => {
25983             }
25984             },
25985             5.037008 => {
25986             delta_from => 5.037007,
25987             changed => {
25988             },
25989             removed => {
25990             }
25991             },
25992             5.037009 => {
25993             delta_from => 5.037008,
25994             changed => {
25995             },
25996             removed => {
25997             }
25998             },
25999             5.037010 => {
26000             delta_from => 5.037009,
26001             changed => {
26002             },
26003             removed => {
26004             }
26005             },
26006             5.037011 => {
26007             delta_from => 5.037010,
26008             changed => {
26009             },
26010             removed => {
26011             }
26012             },
26013             5.036001 => {
26014             delta_from => 5.036,
26015             changed => {
26016             },
26017             removed => {
26018             }
26019             },
26020             5.038000 => {
26021             delta_from => 5.037011,
26022             changed => {
26023             },
26024             removed => {
26025             }
26026             },
26027             5.039001 => {
26028             delta_from => 5.038,
26029             changed => {
26030             },
26031             removed => {
26032             }
26033             },
26034             5.039002 => {
26035             delta_from => 5.039001,
26036             changed => {
26037             },
26038             removed => {
26039             }
26040             },
26041             5.039003 => {
26042             delta_from => 5.039002,
26043             changed => {
26044             },
26045             removed => {
26046             }
26047             },
26048             5.039004 => {
26049             delta_from => 5.039003,
26050             changed => {
26051             },
26052             removed => {
26053             }
26054             },
26055             5.039005 => {
26056             delta_from => 5.039004,
26057             changed => {
26058             },
26059             removed => {
26060             }
26061             },
26062             5.034002 => {
26063             delta_from => 5.034001,
26064             changed => {
26065             },
26066             removed => {
26067             }
26068             },
26069             5.036002 => {
26070             delta_from => 5.036001,
26071             changed => {
26072             },
26073             removed => {
26074             }
26075             },
26076             5.038001 => {
26077             delta_from => 5.038,
26078             changed => {
26079             },
26080             removed => {
26081             }
26082             },
26083             5.034003 => {
26084             delta_from => 5.034002,
26085             changed => {
26086             },
26087             removed => {
26088             }
26089             },
26090             5.036003 => {
26091             delta_from => 5.036002,
26092             changed => {
26093             },
26094             removed => {
26095             }
26096             },
26097             5.038002 => {
26098             delta_from => 5.038001,
26099             changed => {
26100             },
26101             removed => {
26102             }
26103             },
26104             5.039006 => {
26105             delta_from => 5.039005,
26106             changed => {
26107             },
26108             removed => {
26109             }
26110             },
26111             5.039007 => {
26112             delta_from => 5.039006,
26113             changed => {
26114             },
26115             removed => {
26116             }
26117             },
26118             5.039008 => {
26119             delta_from => 5.039007,
26120             changed => {
26121             },
26122             removed => {
26123             }
26124             },
26125             5.039009 => {
26126             delta_from => 5.039008,
26127             changed => {
26128             },
26129             removed => {
26130             }
26131             },
26132             5.039010 => {
26133             delta_from => 5.039009,
26134             changed => {
26135             },
26136             removed => {
26137             }
26138             },
26139             5.040000 => {
26140             delta_from => 5.039010,
26141             changed => {
26142             },
26143             removed => {
26144             }
26145             },
26146             5.041001 => {
26147             delta_from => 5.040000,
26148             changed => {
26149             },
26150             removed => {
26151             }
26152             },
26153             5.041002 => {
26154             delta_from => 5.041001,
26155             changed => {
26156             },
26157             removed => {
26158             }
26159             },
26160             5.041003 => {
26161             delta_from => 5.041002,
26162             changed => {
26163             },
26164             removed => {
26165             }
26166             },
26167             5.041004 => {
26168             delta_from => 5.041003,
26169             changed => {
26170             },
26171             removed => {
26172             }
26173             },
26174             5.041005 => {
26175             delta_from => 5.041004,
26176             changed => {
26177             },
26178             removed => {
26179             }
26180             },
26181             5.041006 => {
26182             delta_from => 5.041005,
26183             changed => {
26184             },
26185             removed => {
26186             }
26187             },
26188             5.041007 => {
26189             delta_from => 5.041006,
26190             changed => {
26191             },
26192             removed => {
26193             }
26194             },
26195             5.038003 => {
26196             delta_from => 5.038002,
26197             changed => {
26198             },
26199             removed => {
26200             }
26201             },
26202             5.040001 => {
26203             delta_from => 5.040000,
26204             changed => {
26205             },
26206             removed => {
26207             }
26208             },
26209             5.041008 => {
26210             delta_from => 5.041007,
26211             changed => {
26212             },
26213             removed => {
26214             }
26215             },
26216             5.041009 => {
26217             delta_from => 5.041008,
26218             changed => {
26219             },
26220             removed => {
26221             }
26222             },
26223             5.041010 => {
26224             delta_from => 5.041009,
26225             changed => {
26226             },
26227             removed => {
26228             }
26229             },
26230             5.038004 => {
26231             delta_from => 5.038003,
26232             changed => {
26233             },
26234             removed => {
26235             }
26236             },
26237             5.040002 => {
26238             delta_from => 5.040001,
26239             changed => {
26240             },
26241             removed => {
26242             }
26243             },
26244             5.041011 => {
26245             delta_from => 5.041010,
26246             changed => {
26247             },
26248             removed => {
26249             }
26250             },
26251             5.041012 => {
26252             delta_from => 5.041011,
26253             changed => {
26254             },
26255             removed => {
26256             }
26257             },
26258             5.041013 => {
26259             delta_from => 5.041012,
26260             changed => {
26261             },
26262             removed => {
26263             }
26264             },
26265             5.042000 => {
26266             delta_from => 5.041013,
26267             changed => {
26268             },
26269             removed => {
26270             }
26271             },
26272             5.043000 => {
26273             delta_from => 5.042,
26274             changed => {
26275             },
26276             removed => {
26277             }
26278             },
26279             5.043001 => {
26280             delta_from => 5.043000,
26281             changed => {
26282             },
26283             removed => {
26284             }
26285             },
26286             5.038005 => {
26287             delta_from => 5.038004,
26288             changed => {
26289             },
26290             removed => {
26291             }
26292             },
26293             5.040003 => {
26294             delta_from => 5.040002,
26295             changed => {
26296             },
26297             removed => {
26298             }
26299             },
26300             5.043002 => {
26301             delta_from => 5.043001,
26302             changed => {
26303             },
26304             removed => {
26305             }
26306             },
26307             5.043003 => {
26308             delta_from => 5.043002,
26309             changed => {
26310             },
26311             removed => {
26312             }
26313             },
26314             5.043004 => {
26315             delta_from => 5.043003,
26316             changed => {
26317             },
26318             removed => {
26319             }
26320             },
26321             5.043005 => {
26322             delta_from => 5.043004,
26323             changed => {
26324             },
26325             removed => {
26326             }
26327             },
26328             5.043006 => {
26329             delta_from => 5.043005,
26330             changed => {
26331             },
26332             removed => {
26333             }
26334             },
26335             5.043007 => {
26336             delta_from => 5.043006,
26337             changed => {
26338             },
26339             removed => {
26340             }
26341             },
26342             5.043008 => {
26343             delta_from => 5.043007,
26344             changed => {
26345             },
26346             removed => {
26347             }
26348             },
26349             5.042001 => {
26350             delta_from => 5.042,
26351             changed => {
26352             },
26353             removed => {
26354             }
26355             },
26356             5.043009 => {
26357             delta_from => 5.043008,
26358             changed => {
26359             },
26360             removed => {
26361             }
26362             },
26363             );
26364              
26365             %deprecated = _undelta(\%deprecated);
26366              
26367             %upstream = (
26368             'App::Cpan' => 'cpan',
26369             'App::Prove' => 'cpan',
26370             'App::Prove::State' => 'cpan',
26371             'App::Prove::State::Result'=> 'cpan',
26372             'App::Prove::State::Result::Test'=> 'cpan',
26373             'Archive::Tar' => 'cpan',
26374             'Archive::Tar::Constant'=> 'cpan',
26375             'Archive::Tar::File' => 'cpan',
26376             'AutoLoader' => 'cpan',
26377             'AutoSplit' => 'cpan',
26378             'CPAN' => 'cpan',
26379             'CPAN::Author' => 'cpan',
26380             'CPAN::Bundle' => 'cpan',
26381             'CPAN::CacheMgr' => 'cpan',
26382             'CPAN::Complete' => 'cpan',
26383             'CPAN::Debug' => 'cpan',
26384             'CPAN::DeferredCode' => 'cpan',
26385             'CPAN::Distribution' => 'cpan',
26386             'CPAN::Distroprefs' => 'cpan',
26387             'CPAN::Distrostatus' => 'cpan',
26388             'CPAN::Exception::RecursiveDependency'=> 'cpan',
26389             'CPAN::Exception::blocked_urllist'=> 'cpan',
26390             'CPAN::Exception::yaml_not_installed'=> 'cpan',
26391             'CPAN::Exception::yaml_process_error'=> 'cpan',
26392             'CPAN::FTP' => 'cpan',
26393             'CPAN::FTP::netrc' => 'cpan',
26394             'CPAN::FirstTime' => 'cpan',
26395             'CPAN::HTTP::Client' => 'cpan',
26396             'CPAN::HTTP::Credentials'=> 'cpan',
26397             'CPAN::HandleConfig' => 'cpan',
26398             'CPAN::Index' => 'cpan',
26399             'CPAN::InfoObj' => 'cpan',
26400             'CPAN::Kwalify' => 'cpan',
26401             'CPAN::LWP::UserAgent' => 'cpan',
26402             'CPAN::Meta' => 'cpan',
26403             'CPAN::Meta::Converter' => 'cpan',
26404             'CPAN::Meta::Feature' => 'cpan',
26405             'CPAN::Meta::History' => 'cpan',
26406             'CPAN::Meta::Merge' => 'cpan',
26407             'CPAN::Meta::Prereqs' => 'cpan',
26408             'CPAN::Meta::Requirements'=> 'cpan',
26409             'CPAN::Meta::Requirements::Range'=> 'cpan',
26410             'CPAN::Meta::Spec' => 'cpan',
26411             'CPAN::Meta::Validator' => 'cpan',
26412             'CPAN::Meta::YAML' => 'cpan',
26413             'CPAN::Mirrors' => 'cpan',
26414             'CPAN::Module' => 'cpan',
26415             'CPAN::Nox' => 'cpan',
26416             'CPAN::Plugin' => 'cpan',
26417             'CPAN::Plugin::Specfile'=> 'cpan',
26418             'CPAN::Prompt' => 'cpan',
26419             'CPAN::Queue' => 'cpan',
26420             'CPAN::Shell' => 'cpan',
26421             'CPAN::Tarzip' => 'cpan',
26422             'CPAN::URL' => 'cpan',
26423             'CPAN::Version' => 'cpan',
26424             'Compress::Raw::Bzip2' => 'cpan',
26425             'Compress::Raw::Zlib' => 'cpan',
26426             'Compress::Zlib' => 'cpan',
26427             'Config::Perl::V' => 'cpan',
26428             'DB_File' => 'cpan',
26429             'Digest' => 'cpan',
26430             'Digest::MD5' => 'cpan',
26431             'Digest::SHA' => 'cpan',
26432             'Digest::base' => 'cpan',
26433             'Digest::file' => 'cpan',
26434             'Encode' => 'cpan',
26435             'Encode::Alias' => 'cpan',
26436             'Encode::Byte' => 'cpan',
26437             'Encode::CJKConstants' => 'cpan',
26438             'Encode::CN' => 'cpan',
26439             'Encode::CN::HZ' => 'cpan',
26440             'Encode::Config' => 'cpan',
26441             'Encode::EBCDIC' => 'cpan',
26442             'Encode::Encoder' => 'cpan',
26443             'Encode::Encoding' => 'cpan',
26444             'Encode::GSM0338' => 'cpan',
26445             'Encode::Guess' => 'cpan',
26446             'Encode::JP' => 'cpan',
26447             'Encode::JP::H2Z' => 'cpan',
26448             'Encode::JP::JIS7' => 'cpan',
26449             'Encode::KR' => 'cpan',
26450             'Encode::KR::2022_KR' => 'cpan',
26451             'Encode::MIME::Header' => 'cpan',
26452             'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
26453             'Encode::MIME::Name' => 'cpan',
26454             'Encode::Symbol' => 'cpan',
26455             'Encode::TW' => 'cpan',
26456             'Encode::Unicode' => 'cpan',
26457             'Encode::Unicode::UTF7' => 'cpan',
26458             'ExtUtils::Command' => 'cpan',
26459             'ExtUtils::Command::MM' => 'cpan',
26460             'ExtUtils::Constant' => 'cpan',
26461             'ExtUtils::Constant::Base'=> 'cpan',
26462             'ExtUtils::Constant::ProxySubs'=> 'cpan',
26463             'ExtUtils::Constant::Utils'=> 'cpan',
26464             'ExtUtils::Constant::XS'=> 'cpan',
26465             'ExtUtils::Install' => 'cpan',
26466             'ExtUtils::Installed' => 'cpan',
26467             'ExtUtils::Liblist' => 'cpan',
26468             'ExtUtils::Liblist::Kid'=> 'cpan',
26469             'ExtUtils::MM' => 'cpan',
26470             'ExtUtils::MM_AIX' => 'cpan',
26471             'ExtUtils::MM_Any' => 'cpan',
26472             'ExtUtils::MM_BeOS' => 'cpan',
26473             'ExtUtils::MM_Cygwin' => 'cpan',
26474             'ExtUtils::MM_DOS' => 'cpan',
26475             'ExtUtils::MM_Darwin' => 'cpan',
26476             'ExtUtils::MM_MacOS' => 'cpan',
26477             'ExtUtils::MM_NW5' => 'cpan',
26478             'ExtUtils::MM_OS2' => 'cpan',
26479             'ExtUtils::MM_OS390' => 'cpan',
26480             'ExtUtils::MM_QNX' => 'cpan',
26481             'ExtUtils::MM_UWIN' => 'cpan',
26482             'ExtUtils::MM_Unix' => 'cpan',
26483             'ExtUtils::MM_VMS' => 'cpan',
26484             'ExtUtils::MM_VOS' => 'cpan',
26485             'ExtUtils::MM_Win32' => 'cpan',
26486             'ExtUtils::MM_Win95' => 'cpan',
26487             'ExtUtils::MY' => 'cpan',
26488             'ExtUtils::MakeMaker' => 'cpan',
26489             'ExtUtils::MakeMaker::Config'=> 'cpan',
26490             'ExtUtils::MakeMaker::Locale'=> 'cpan',
26491             'ExtUtils::MakeMaker::version'=> 'cpan',
26492             'ExtUtils::MakeMaker::version::regex'=> 'cpan',
26493             'ExtUtils::Manifest' => 'cpan',
26494             'ExtUtils::Mkbootstrap' => 'cpan',
26495             'ExtUtils::Mksymlists' => 'cpan',
26496             'ExtUtils::PL2Bat' => 'cpan',
26497             'ExtUtils::Packlist' => 'cpan',
26498             'ExtUtils::testlib' => 'cpan',
26499             'Fatal' => 'cpan',
26500             'File::Fetch' => 'cpan',
26501             'File::GlobMapper' => 'cpan',
26502             'File::Path' => 'cpan',
26503             'File::Temp' => 'cpan',
26504             'Filter::Util::Call' => 'cpan',
26505             'Getopt::Long' => 'cpan',
26506             'Getopt::Long::Parser' => 'cpan',
26507             'HTTP::Tiny' => 'cpan',
26508             'IO::Compress' => 'cpan',
26509             'IO::Compress::Adapter::Bzip2'=> 'cpan',
26510             'IO::Compress::Adapter::Deflate'=> 'cpan',
26511             'IO::Compress::Adapter::Identity'=> 'cpan',
26512             'IO::Compress::Base' => 'cpan',
26513             'IO::Compress::Base::Common'=> 'cpan',
26514             'IO::Compress::Bzip2' => 'cpan',
26515             'IO::Compress::Deflate' => 'cpan',
26516             'IO::Compress::Gzip' => 'cpan',
26517             'IO::Compress::Gzip::Constants'=> 'cpan',
26518             'IO::Compress::RawDeflate'=> 'cpan',
26519             'IO::Compress::Zip' => 'cpan',
26520             'IO::Compress::Zip::Constants'=> 'cpan',
26521             'IO::Compress::Zlib::Constants'=> 'cpan',
26522             'IO::Compress::Zlib::Extra'=> 'cpan',
26523             'IO::Socket::IP' => 'cpan',
26524             'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
26525             'IO::Uncompress::Adapter::Identity'=> 'cpan',
26526             'IO::Uncompress::Adapter::Inflate'=> 'cpan',
26527             'IO::Uncompress::AnyInflate'=> 'cpan',
26528             'IO::Uncompress::AnyUncompress'=> 'cpan',
26529             'IO::Uncompress::Base' => 'cpan',
26530             'IO::Uncompress::Bunzip2'=> 'cpan',
26531             'IO::Uncompress::Gunzip'=> 'cpan',
26532             'IO::Uncompress::Inflate'=> 'cpan',
26533             'IO::Uncompress::RawInflate'=> 'cpan',
26534             'IO::Uncompress::Unzip' => 'cpan',
26535             'IO::Zlib' => 'cpan',
26536             'IPC::Cmd' => 'cpan',
26537             'IPC::Msg' => 'cpan',
26538             'IPC::Semaphore' => 'cpan',
26539             'IPC::SharedMem' => 'cpan',
26540             'IPC::SysV' => 'cpan',
26541             'JSON::PP' => 'cpan',
26542             'JSON::PP::Boolean' => 'cpan',
26543             'List::Util' => 'cpan',
26544             'List::Util::XS' => 'cpan',
26545             'Locale::Maketext::Simple'=> 'cpan',
26546             'MIME::Base64' => 'cpan',
26547             'MIME::QuotedPrint' => 'cpan',
26548             'Math::BigFloat' => 'cpan',
26549             'Math::BigFloat::Trace' => 'cpan',
26550             'Math::BigInt' => 'cpan',
26551             'Math::BigInt::Calc' => 'cpan',
26552             'Math::BigInt::FastCalc'=> 'cpan',
26553             'Math::BigInt::Lib' => 'cpan',
26554             'Math::BigInt::Trace' => 'cpan',
26555             'Math::BigRat' => 'cpan',
26556             'Math::BigRat::Trace' => 'cpan',
26557             'Memoize' => 'cpan',
26558             'Memoize::AnyDBM_File' => 'cpan',
26559             'Memoize::Expire' => 'cpan',
26560             'Memoize::NDBM_File' => 'cpan',
26561             'Memoize::SDBM_File' => 'cpan',
26562             'Memoize::Storable' => 'cpan',
26563             'Module::Load' => 'cpan',
26564             'Module::Load::Conditional'=> 'cpan',
26565             'Module::Loaded' => 'cpan',
26566             'Module::Metadata' => 'cpan',
26567             'NEXT' => 'cpan',
26568             'Net::Cmd' => 'cpan',
26569             'Net::Config' => 'cpan',
26570             'Net::Domain' => 'cpan',
26571             'Net::FTP' => 'cpan',
26572             'Net::FTP::A' => 'cpan',
26573             'Net::FTP::E' => 'cpan',
26574             'Net::FTP::I' => 'cpan',
26575             'Net::FTP::L' => 'cpan',
26576             'Net::FTP::dataconn' => 'cpan',
26577             'Net::NNTP' => 'cpan',
26578             'Net::Netrc' => 'cpan',
26579             'Net::POP3' => 'cpan',
26580             'Net::SMTP' => 'cpan',
26581             'Net::Time' => 'cpan',
26582             'Params::Check' => 'cpan',
26583             'Parse::CPAN::Meta' => 'cpan',
26584             'Perl::OSType' => 'cpan',
26585             'PerlIO::via::QuotedPrint'=> 'cpan',
26586             'Pod::Checker' => 'cpan',
26587             'Pod::Escapes' => 'cpan',
26588             'Pod::Man' => 'cpan',
26589             'Pod::ParseLink' => 'cpan',
26590             'Pod::Perldoc' => 'cpan',
26591             'Pod::Perldoc::BaseTo' => 'cpan',
26592             'Pod::Perldoc::GetOptsOO'=> 'cpan',
26593             'Pod::Perldoc::ToANSI' => 'cpan',
26594             'Pod::Perldoc::ToChecker'=> 'cpan',
26595             'Pod::Perldoc::ToMan' => 'cpan',
26596             'Pod::Perldoc::ToNroff' => 'cpan',
26597             'Pod::Perldoc::ToPod' => 'cpan',
26598             'Pod::Perldoc::ToRtf' => 'cpan',
26599             'Pod::Perldoc::ToTerm' => 'cpan',
26600             'Pod::Perldoc::ToText' => 'cpan',
26601             'Pod::Perldoc::ToTk' => 'cpan',
26602             'Pod::Perldoc::ToXml' => 'cpan',
26603             'Pod::Simple' => 'cpan',
26604             'Pod::Simple::BlackBox' => 'cpan',
26605             'Pod::Simple::Checker' => 'cpan',
26606             'Pod::Simple::Debug' => 'cpan',
26607             'Pod::Simple::DumpAsText'=> 'cpan',
26608             'Pod::Simple::DumpAsXML'=> 'cpan',
26609             'Pod::Simple::HTML' => 'cpan',
26610             'Pod::Simple::HTMLBatch'=> 'cpan',
26611             'Pod::Simple::HTMLLegacy'=> 'cpan',
26612             'Pod::Simple::JustPod' => 'cpan',
26613             'Pod::Simple::LinkSection'=> 'cpan',
26614             'Pod::Simple::Methody' => 'cpan',
26615             'Pod::Simple::Progress' => 'cpan',
26616             'Pod::Simple::PullParser'=> 'cpan',
26617             'Pod::Simple::PullParserEndToken'=> 'cpan',
26618             'Pod::Simple::PullParserStartToken'=> 'cpan',
26619             'Pod::Simple::PullParserTextToken'=> 'cpan',
26620             'Pod::Simple::PullParserToken'=> 'cpan',
26621             'Pod::Simple::RTF' => 'cpan',
26622             'Pod::Simple::Search' => 'cpan',
26623             'Pod::Simple::SimpleTree'=> 'cpan',
26624             'Pod::Simple::Text' => 'cpan',
26625             'Pod::Simple::TextContent'=> 'cpan',
26626             'Pod::Simple::TiedOutFH'=> 'cpan',
26627             'Pod::Simple::Transcode'=> 'cpan',
26628             'Pod::Simple::TranscodeDumb'=> 'cpan',
26629             'Pod::Simple::TranscodeSmart'=> 'cpan',
26630             'Pod::Simple::XHTML' => 'cpan',
26631             'Pod::Simple::XMLOutStream'=> 'cpan',
26632             'Pod::Text' => 'cpan',
26633             'Pod::Text::Color' => 'cpan',
26634             'Pod::Text::Overstrike' => 'cpan',
26635             'Pod::Text::Termcap' => 'cpan',
26636             'Pod::Usage' => 'cpan',
26637             'Scalar::List::Utils' => 'cpan',
26638             'Scalar::Util' => 'cpan',
26639             'Socket' => 'cpan',
26640             'Sub::Util' => 'cpan',
26641             'Sys::Syslog' => 'cpan',
26642             'Sys::Syslog::Win32' => 'cpan',
26643             'TAP::Base' => 'cpan',
26644             'TAP::Formatter::Base' => 'cpan',
26645             'TAP::Formatter::Color' => 'cpan',
26646             'TAP::Formatter::Console'=> 'cpan',
26647             'TAP::Formatter::Console::ParallelSession'=> 'cpan',
26648             'TAP::Formatter::Console::Session'=> 'cpan',
26649             'TAP::Formatter::File' => 'cpan',
26650             'TAP::Formatter::File::Session'=> 'cpan',
26651             'TAP::Formatter::Session'=> 'cpan',
26652             'TAP::Harness' => 'cpan',
26653             'TAP::Harness::Env' => 'cpan',
26654             'TAP::Object' => 'cpan',
26655             'TAP::Parser' => 'cpan',
26656             'TAP::Parser::Aggregator'=> 'cpan',
26657             'TAP::Parser::Grammar' => 'cpan',
26658             'TAP::Parser::Iterator' => 'cpan',
26659             'TAP::Parser::Iterator::Array'=> 'cpan',
26660             'TAP::Parser::Iterator::Process'=> 'cpan',
26661             'TAP::Parser::Iterator::Stream'=> 'cpan',
26662             'TAP::Parser::IteratorFactory'=> 'cpan',
26663             'TAP::Parser::Multiplexer'=> 'cpan',
26664             'TAP::Parser::Result' => 'cpan',
26665             'TAP::Parser::Result::Bailout'=> 'cpan',
26666             'TAP::Parser::Result::Comment'=> 'cpan',
26667             'TAP::Parser::Result::Plan'=> 'cpan',
26668             'TAP::Parser::Result::Pragma'=> 'cpan',
26669             'TAP::Parser::Result::Test'=> 'cpan',
26670             'TAP::Parser::Result::Unknown'=> 'cpan',
26671             'TAP::Parser::Result::Version'=> 'cpan',
26672             'TAP::Parser::Result::YAML'=> 'cpan',
26673             'TAP::Parser::ResultFactory'=> 'cpan',
26674             'TAP::Parser::Scheduler'=> 'cpan',
26675             'TAP::Parser::Scheduler::Job'=> 'cpan',
26676             'TAP::Parser::Scheduler::Spinner'=> 'cpan',
26677             'TAP::Parser::Source' => 'cpan',
26678             'TAP::Parser::SourceHandler'=> 'cpan',
26679             'TAP::Parser::SourceHandler::Executable'=> 'cpan',
26680             'TAP::Parser::SourceHandler::File'=> 'cpan',
26681             'TAP::Parser::SourceHandler::Handle'=> 'cpan',
26682             'TAP::Parser::SourceHandler::Perl'=> 'cpan',
26683             'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
26684             'TAP::Parser::YAMLish::Reader'=> 'cpan',
26685             'TAP::Parser::YAMLish::Writer'=> 'cpan',
26686             'Term::ANSIColor' => 'cpan',
26687             'Term::Cap' => 'cpan',
26688             'Term::Table' => 'cpan',
26689             'Term::Table::Cell' => 'cpan',
26690             'Term::Table::CellStack'=> 'cpan',
26691             'Term::Table::HashBase' => 'cpan',
26692             'Term::Table::LineBreak'=> 'cpan',
26693             'Term::Table::Spacer' => 'cpan',
26694             'Term::Table::Util' => 'cpan',
26695             'Test2' => 'cpan',
26696             'Test2::API' => 'cpan',
26697             'Test2::API::Breakage' => 'cpan',
26698             'Test2::API::Context' => 'cpan',
26699             'Test2::API::Instance' => 'cpan',
26700             'Test2::API::InterceptResult'=> 'cpan',
26701             'Test2::API::InterceptResult::Event'=> 'cpan',
26702             'Test2::API::InterceptResult::Facet'=> 'cpan',
26703             'Test2::API::InterceptResult::Hub'=> 'cpan',
26704             'Test2::API::InterceptResult::Squasher'=> 'cpan',
26705             'Test2::API::Stack' => 'cpan',
26706             'Test2::AsyncSubtest' => 'cpan',
26707             'Test2::AsyncSubtest::Event::Attach'=> 'cpan',
26708             'Test2::AsyncSubtest::Event::Detach'=> 'cpan',
26709             'Test2::AsyncSubtest::Formatter'=> 'cpan',
26710             'Test2::AsyncSubtest::Hub'=> 'cpan',
26711             'Test2::Bundle' => 'cpan',
26712             'Test2::Bundle::Extended'=> 'cpan',
26713             'Test2::Bundle::More' => 'cpan',
26714             'Test2::Bundle::Simple' => 'cpan',
26715             'Test2::Compare' => 'cpan',
26716             'Test2::Compare::Array' => 'cpan',
26717             'Test2::Compare::Bag' => 'cpan',
26718             'Test2::Compare::Base' => 'cpan',
26719             'Test2::Compare::Bool' => 'cpan',
26720             'Test2::Compare::Custom'=> 'cpan',
26721             'Test2::Compare::DeepRef'=> 'cpan',
26722             'Test2::Compare::Delta' => 'cpan',
26723             'Test2::Compare::Event' => 'cpan',
26724             'Test2::Compare::EventMeta'=> 'cpan',
26725             'Test2::Compare::Float' => 'cpan',
26726             'Test2::Compare::Hash' => 'cpan',
26727             'Test2::Compare::Isa' => 'cpan',
26728             'Test2::Compare::Meta' => 'cpan',
26729             'Test2::Compare::Negatable'=> 'cpan',
26730             'Test2::Compare::Number'=> 'cpan',
26731             'Test2::Compare::Object'=> 'cpan',
26732             'Test2::Compare::OrderedSubset'=> 'cpan',
26733             'Test2::Compare::Pattern'=> 'cpan',
26734             'Test2::Compare::Ref' => 'cpan',
26735             'Test2::Compare::Regex' => 'cpan',
26736             'Test2::Compare::Scalar'=> 'cpan',
26737             'Test2::Compare::Set' => 'cpan',
26738             'Test2::Compare::String'=> 'cpan',
26739             'Test2::Compare::Undef' => 'cpan',
26740             'Test2::Compare::Wildcard'=> 'cpan',
26741             'Test2::Env' => 'cpan',
26742             'Test2::Event' => 'cpan',
26743             'Test2::Event::Bail' => 'cpan',
26744             'Test2::Event::Diag' => 'cpan',
26745             'Test2::Event::Encoding'=> 'cpan',
26746             'Test2::Event::Exception'=> 'cpan',
26747             'Test2::Event::Fail' => 'cpan',
26748             'Test2::Event::Generic' => 'cpan',
26749             'Test2::Event::Note' => 'cpan',
26750             'Test2::Event::Ok' => 'cpan',
26751             'Test2::Event::Pass' => 'cpan',
26752             'Test2::Event::Plan' => 'cpan',
26753             'Test2::Event::Skip' => 'cpan',
26754             'Test2::Event::Subtest' => 'cpan',
26755             'Test2::Event::TAP::Version'=> 'cpan',
26756             'Test2::Event::V2' => 'cpan',
26757             'Test2::Event::Waiting' => 'cpan',
26758             'Test2::EventFacet' => 'cpan',
26759             'Test2::EventFacet::About'=> 'cpan',
26760             'Test2::EventFacet::Amnesty'=> 'cpan',
26761             'Test2::EventFacet::Assert'=> 'cpan',
26762             'Test2::EventFacet::Control'=> 'cpan',
26763             'Test2::EventFacet::Error'=> 'cpan',
26764             'Test2::EventFacet::Hub'=> 'cpan',
26765             'Test2::EventFacet::Info'=> 'cpan',
26766             'Test2::EventFacet::Info::Table'=> 'cpan',
26767             'Test2::EventFacet::Meta'=> 'cpan',
26768             'Test2::EventFacet::Parent'=> 'cpan',
26769             'Test2::EventFacet::Plan'=> 'cpan',
26770             'Test2::EventFacet::Render'=> 'cpan',
26771             'Test2::EventFacet::Trace'=> 'cpan',
26772             'Test2::Formatter' => 'cpan',
26773             'Test2::Formatter::TAP' => 'cpan',
26774             'Test2::Handle' => 'cpan',
26775             'Test2::Hub' => 'cpan',
26776             'Test2::Hub::Interceptor'=> 'cpan',
26777             'Test2::Hub::Interceptor::Terminator'=> 'cpan',
26778             'Test2::Hub::Subtest' => 'cpan',
26779             'Test2::IPC' => 'cpan',
26780             'Test2::IPC::Driver' => 'cpan',
26781             'Test2::IPC::Driver::Files'=> 'cpan',
26782             'Test2::Manual' => 'cpan',
26783             'Test2::Manual::Anatomy'=> 'cpan',
26784             'Test2::Manual::Anatomy::API'=> 'cpan',
26785             'Test2::Manual::Anatomy::Context'=> 'cpan',
26786             'Test2::Manual::Anatomy::EndToEnd'=> 'cpan',
26787             'Test2::Manual::Anatomy::Event'=> 'cpan',
26788             'Test2::Manual::Anatomy::Hubs'=> 'cpan',
26789             'Test2::Manual::Anatomy::IPC'=> 'cpan',
26790             'Test2::Manual::Anatomy::Utilities'=> 'cpan',
26791             'Test2::Manual::Concurrency'=> 'cpan',
26792             'Test2::Manual::Contributing'=> 'cpan',
26793             'Test2::Manual::Testing'=> 'cpan',
26794             'Test2::Manual::Testing::Introduction'=> 'cpan',
26795             'Test2::Manual::Testing::Migrating'=> 'cpan',
26796             'Test2::Manual::Testing::Planning'=> 'cpan',
26797             'Test2::Manual::Testing::Todo'=> 'cpan',
26798             'Test2::Manual::Tooling'=> 'cpan',
26799             'Test2::Manual::Tooling::FirstTool'=> 'cpan',
26800             'Test2::Manual::Tooling::Formatter'=> 'cpan',
26801             'Test2::Manual::Tooling::Nesting'=> 'cpan',
26802             'Test2::Manual::Tooling::Plugin::TestExit'=> 'cpan',
26803             'Test2::Manual::Tooling::Plugin::TestingDone'=> 'cpan',
26804             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> 'cpan',
26805             'Test2::Manual::Tooling::Plugin::ToolStarts'=> 'cpan',
26806             'Test2::Manual::Tooling::Subtest'=> 'cpan',
26807             'Test2::Manual::Tooling::TestBuilder'=> 'cpan',
26808             'Test2::Manual::Tooling::Testing'=> 'cpan',
26809             'Test2::Mock' => 'cpan',
26810             'Test2::Plugin' => 'cpan',
26811             'Test2::Plugin::BailOnFail'=> 'cpan',
26812             'Test2::Plugin::DieOnFail'=> 'cpan',
26813             'Test2::Plugin::ExitSummary'=> 'cpan',
26814             'Test2::Plugin::SRand' => 'cpan',
26815             'Test2::Plugin::Times' => 'cpan',
26816             'Test2::Plugin::UTF8' => 'cpan',
26817             'Test2::Require' => 'cpan',
26818             'Test2::Require::AuthorTesting'=> 'cpan',
26819             'Test2::Require::AutomatedTesting'=> 'cpan',
26820             'Test2::Require::EnvVar'=> 'cpan',
26821             'Test2::Require::ExtendedTesting'=> 'cpan',
26822             'Test2::Require::Fork' => 'cpan',
26823             'Test2::Require::Module'=> 'cpan',
26824             'Test2::Require::NonInteractiveTesting'=> 'cpan',
26825             'Test2::Require::Perl' => 'cpan',
26826             'Test2::Require::RealFork'=> 'cpan',
26827             'Test2::Require::ReleaseTesting'=> 'cpan',
26828             'Test2::Require::Threads'=> 'cpan',
26829             'Test2::Suite' => 'cpan',
26830             'Test2::Todo' => 'cpan',
26831             'Test2::Tools' => 'cpan',
26832             'Test2::Tools::AsyncSubtest'=> 'cpan',
26833             'Test2::Tools::Basic' => 'cpan',
26834             'Test2::Tools::Class' => 'cpan',
26835             'Test2::Tools::ClassicCompare'=> 'cpan',
26836             'Test2::Tools::Compare' => 'cpan',
26837             'Test2::Tools::Defer' => 'cpan',
26838             'Test2::Tools::Encoding'=> 'cpan',
26839             'Test2::Tools::Event' => 'cpan',
26840             'Test2::Tools::Exception'=> 'cpan',
26841             'Test2::Tools::Exports' => 'cpan',
26842             'Test2::Tools::GenTemp' => 'cpan',
26843             'Test2::Tools::Grab' => 'cpan',
26844             'Test2::Tools::Mock' => 'cpan',
26845             'Test2::Tools::Ref' => 'cpan',
26846             'Test2::Tools::Refcount'=> 'cpan',
26847             'Test2::Tools::Spec' => 'cpan',
26848             'Test2::Tools::Subtest' => 'cpan',
26849             'Test2::Tools::Target' => 'cpan',
26850             'Test2::Tools::Tester' => 'cpan',
26851             'Test2::Tools::Tiny' => 'cpan',
26852             'Test2::Tools::Warnings'=> 'cpan',
26853             'Test2::Util' => 'cpan',
26854             'Test2::Util::ExternalMeta'=> 'cpan',
26855             'Test2::Util::Facets2Legacy'=> 'cpan',
26856             'Test2::Util::Grabber' => 'cpan',
26857             'Test2::Util::Guard' => 'cpan',
26858             'Test2::Util::HashBase' => 'cpan',
26859             'Test2::Util::Importer' => 'cpan',
26860             'Test2::Util::Ref' => 'cpan',
26861             'Test2::Util::Sig' => 'cpan',
26862             'Test2::Util::Stash' => 'cpan',
26863             'Test2::Util::Sub' => 'cpan',
26864             'Test2::Util::Table' => 'cpan',
26865             'Test2::Util::Table::Cell'=> 'cpan',
26866             'Test2::Util::Table::LineBreak'=> 'cpan',
26867             'Test2::Util::Term' => 'cpan',
26868             'Test2::Util::Times' => 'cpan',
26869             'Test2::Util::Trace' => 'cpan',
26870             'Test2::V0' => 'cpan',
26871             'Test2::V1' => 'cpan',
26872             'Test2::V1::Base' => 'cpan',
26873             'Test2::V1::Handle' => 'cpan',
26874             'Test2::Workflow' => 'cpan',
26875             'Test2::Workflow::BlockBase'=> 'cpan',
26876             'Test2::Workflow::Build'=> 'cpan',
26877             'Test2::Workflow::Runner'=> 'cpan',
26878             'Test2::Workflow::Task' => 'cpan',
26879             'Test2::Workflow::Task::Action'=> 'cpan',
26880             'Test2::Workflow::Task::Group'=> 'cpan',
26881             'Test::Builder' => 'cpan',
26882             'Test::Builder::Formatter'=> 'cpan',
26883             'Test::Builder::Module' => 'cpan',
26884             'Test::Builder::Tester' => 'cpan',
26885             'Test::Builder::Tester::Color'=> 'cpan',
26886             'Test::Builder::TodoDiag'=> 'cpan',
26887             'Test::Harness' => 'cpan',
26888             'Test::More' => 'cpan',
26889             'Test::Simple' => 'cpan',
26890             'Test::Tester' => 'cpan',
26891             'Test::Tester::Capture' => 'cpan',
26892             'Test::Tester::CaptureRunner'=> 'cpan',
26893             'Test::Tester::Delegate'=> 'cpan',
26894             'Test::use::ok' => 'cpan',
26895             'Text::Balanced' => 'cpan',
26896             'Text::ParseWords' => 'cpan',
26897             'Text::Tabs' => 'cpan',
26898             'Text::Wrap' => 'cpan',
26899             'Tie::RefHash' => 'cpan',
26900             'Time::Local' => 'cpan',
26901             'Time::Piece' => 'cpan',
26902             'Time::Seconds' => 'cpan',
26903             'Unicode::Collate' => 'cpan',
26904             'Unicode::Collate::CJK::Big5'=> 'cpan',
26905             'Unicode::Collate::CJK::GB2312'=> 'cpan',
26906             'Unicode::Collate::CJK::JISX0208'=> 'cpan',
26907             'Unicode::Collate::CJK::Korean'=> 'cpan',
26908             'Unicode::Collate::CJK::Pinyin'=> 'cpan',
26909             'Unicode::Collate::CJK::Stroke'=> 'cpan',
26910             'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
26911             'Unicode::Collate::Locale'=> 'cpan',
26912             'Win32' => 'cpan',
26913             'Win32API::File' => 'cpan',
26914             'autodie' => 'cpan',
26915             'autodie::Scope::Guard' => 'cpan',
26916             'autodie::Scope::GuardStack'=> 'cpan',
26917             'autodie::Util' => 'cpan',
26918             'autodie::exception' => 'cpan',
26919             'autodie::exception::system'=> 'cpan',
26920             'autodie::hints' => 'cpan',
26921             'autodie::skip' => 'cpan',
26922             'bigfloat' => 'cpan',
26923             'bigint' => 'cpan',
26924             'bignum' => 'cpan',
26925             'bigrat' => 'cpan',
26926             'encoding' => 'cpan',
26927             'experimental' => 'cpan',
26928             'ok' => 'cpan',
26929             'parent' => 'cpan',
26930             'perlfaq' => 'cpan',
26931             'stable' => 'cpan',
26932             'version' => 'cpan',
26933             'version::regex' => 'cpan',
26934             );
26935              
26936             %bug_tracker = (
26937             'App::Cpan' => undef,
26938             'App::Prove' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
26939             'App::Prove::State' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
26940             'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
26941             'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
26942             'Archive::Tar' => undef,
26943             'Archive::Tar::Constant'=> undef,
26944             'Archive::Tar::File' => undef,
26945             'CPAN' => undef,
26946             'CPAN::Author' => undef,
26947             'CPAN::Bundle' => undef,
26948             'CPAN::CacheMgr' => undef,
26949             'CPAN::Complete' => undef,
26950             'CPAN::Debug' => undef,
26951             'CPAN::DeferredCode' => undef,
26952             'CPAN::Distribution' => undef,
26953             'CPAN::Distroprefs' => undef,
26954             'CPAN::Distrostatus' => undef,
26955             'CPAN::Exception::RecursiveDependency'=> undef,
26956             'CPAN::Exception::blocked_urllist'=> undef,
26957             'CPAN::Exception::yaml_not_installed'=> undef,
26958             'CPAN::Exception::yaml_process_error'=> undef,
26959             'CPAN::FTP' => undef,
26960             'CPAN::FTP::netrc' => undef,
26961             'CPAN::FirstTime' => undef,
26962             'CPAN::HTTP::Client' => undef,
26963             'CPAN::HTTP::Credentials'=> undef,
26964             'CPAN::HandleConfig' => undef,
26965             'CPAN::Index' => undef,
26966             'CPAN::InfoObj' => undef,
26967             'CPAN::Kwalify' => undef,
26968             'CPAN::LWP::UserAgent' => undef,
26969             'CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26970             'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26971             'CPAN::Meta::Feature' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26972             'CPAN::Meta::History' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26973             'CPAN::Meta::Merge' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26974             'CPAN::Meta::Prereqs' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26975             'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
26976             'CPAN::Meta::Requirements::Range'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
26977             'CPAN::Meta::Spec' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26978             'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
26979             'CPAN::Meta::YAML' => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
26980             'CPAN::Mirrors' => undef,
26981             'CPAN::Module' => undef,
26982             'CPAN::Nox' => undef,
26983             'CPAN::Plugin' => undef,
26984             'CPAN::Plugin::Specfile'=> undef,
26985             'CPAN::Prompt' => undef,
26986             'CPAN::Queue' => undef,
26987             'CPAN::Shell' => undef,
26988             'CPAN::Tarzip' => undef,
26989             'CPAN::URL' => undef,
26990             'CPAN::Version' => undef,
26991             'Compress::Raw::Bzip2' => 'https://github.com/pmqs/Compress-Raw-Bzip2/issues',
26992             'Compress::Raw::Zlib' => 'https://github.com/pmqs/Compress-Raw-Zlib/issues',
26993             'Compress::Zlib' => 'https://github.com/pmqs/IO-Compress/issues',
26994             'Config::Perl::V' => 'https://github.com/Tux/Config-Perl-V/issues',
26995             'DB_File' => 'https://github.com/pmqs/DB_File/issues',
26996             'Digest' => 'https://github.com/Dual-Life/digest/issues',
26997             'Digest::MD5' => 'https://github.com/Dual-Life/digest-md5/issues',
26998             'Digest::SHA' => undef,
26999             'Digest::base' => 'https://github.com/Dual-Life/digest/issues',
27000             'Digest::file' => 'https://github.com/Dual-Life/digest/issues',
27001             'Encode' => undef,
27002             'Encode::Alias' => undef,
27003             'Encode::Byte' => undef,
27004             'Encode::CJKConstants' => undef,
27005             'Encode::CN' => undef,
27006             'Encode::CN::HZ' => undef,
27007             'Encode::Config' => undef,
27008             'Encode::EBCDIC' => undef,
27009             'Encode::Encoder' => undef,
27010             'Encode::Encoding' => undef,
27011             'Encode::GSM0338' => undef,
27012             'Encode::Guess' => undef,
27013             'Encode::JP' => undef,
27014             'Encode::JP::H2Z' => undef,
27015             'Encode::JP::JIS7' => undef,
27016             'Encode::KR' => undef,
27017             'Encode::KR::2022_KR' => undef,
27018             'Encode::MIME::Header' => undef,
27019             'Encode::MIME::Header::ISO_2022_JP'=> undef,
27020             'Encode::MIME::Name' => undef,
27021             'Encode::Symbol' => undef,
27022             'Encode::TW' => undef,
27023             'Encode::Unicode' => undef,
27024             'Encode::Unicode::UTF7' => undef,
27025             'ExtUtils::Command' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27026             'ExtUtils::Command::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27027             'ExtUtils::Constant' => undef,
27028             'ExtUtils::Constant::Base'=> undef,
27029             'ExtUtils::Constant::ProxySubs'=> undef,
27030             'ExtUtils::Constant::Utils'=> undef,
27031             'ExtUtils::Constant::XS'=> undef,
27032             'ExtUtils::Install' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
27033             'ExtUtils::Installed' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
27034             'ExtUtils::Liblist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27035             'ExtUtils::Liblist::Kid'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27036             'ExtUtils::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27037             'ExtUtils::MM_AIX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27038             'ExtUtils::MM_Any' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27039             'ExtUtils::MM_BeOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27040             'ExtUtils::MM_Cygwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27041             'ExtUtils::MM_DOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27042             'ExtUtils::MM_Darwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27043             'ExtUtils::MM_MacOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27044             'ExtUtils::MM_NW5' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27045             'ExtUtils::MM_OS2' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27046             'ExtUtils::MM_OS390' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27047             'ExtUtils::MM_QNX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27048             'ExtUtils::MM_UWIN' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27049             'ExtUtils::MM_Unix' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27050             'ExtUtils::MM_VMS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27051             'ExtUtils::MM_VOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27052             'ExtUtils::MM_Win32' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27053             'ExtUtils::MM_Win95' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27054             'ExtUtils::MY' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27055             'ExtUtils::MakeMaker' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27056             'ExtUtils::MakeMaker::Config'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27057             'ExtUtils::MakeMaker::Locale'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27058             'ExtUtils::MakeMaker::version'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27059             'ExtUtils::MakeMaker::version::regex'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27060             'ExtUtils::Manifest' => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
27061             'ExtUtils::Mkbootstrap' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27062             'ExtUtils::Mksymlists' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27063             'ExtUtils::PL2Bat' => 'https://github.com/Perl-Toolchain-Gang/extutils-pl2bat/issues',
27064             'ExtUtils::Packlist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
27065             'ExtUtils::testlib' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
27066             'Fatal' => 'https://github.com/pjf/autodie/issues',
27067             'File::Fetch' => undef,
27068             'File::GlobMapper' => 'https://github.com/pmqs/IO-Compress/issues',
27069             'File::Path' => undef,
27070             'File::Temp' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
27071             'Filter::Util::Call' => undef,
27072             'Getopt::Long' => 'https://github.com/sciurius/perl-Getopt-Long/issues',
27073             'Getopt::Long::Parser' => 'https://github.com/sciurius/perl-Getopt-Long/issues',
27074             'HTTP::Tiny' => 'https://github.com/Perl-Toolchain-Gang/HTTP-Tiny/issues',
27075             'IO::Compress' => 'https://github.com/pmqs/IO-Compress/issues',
27076             'IO::Compress::Adapter::Bzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
27077             'IO::Compress::Adapter::Deflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27078             'IO::Compress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
27079             'IO::Compress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
27080             'IO::Compress::Base::Common'=> 'https://github.com/pmqs/IO-Compress/issues',
27081             'IO::Compress::Bzip2' => 'https://github.com/pmqs/IO-Compress/issues',
27082             'IO::Compress::Deflate' => 'https://github.com/pmqs/IO-Compress/issues',
27083             'IO::Compress::Gzip' => 'https://github.com/pmqs/IO-Compress/issues',
27084             'IO::Compress::Gzip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
27085             'IO::Compress::RawDeflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27086             'IO::Compress::Zip' => 'https://github.com/pmqs/IO-Compress/issues',
27087             'IO::Compress::Zip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
27088             'IO::Compress::Zlib::Constants'=> 'https://github.com/pmqs/IO-Compress/issues',
27089             'IO::Compress::Zlib::Extra'=> 'https://github.com/pmqs/IO-Compress/issues',
27090             'IO::Socket::IP' => undef,
27091             'IO::Uncompress::Adapter::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
27092             'IO::Uncompress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues',
27093             'IO::Uncompress::Adapter::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27094             'IO::Uncompress::AnyInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27095             'IO::Uncompress::AnyUncompress'=> 'https://github.com/pmqs/IO-Compress/issues',
27096             'IO::Uncompress::Base' => 'https://github.com/pmqs/IO-Compress/issues',
27097             'IO::Uncompress::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues',
27098             'IO::Uncompress::Gunzip'=> 'https://github.com/pmqs/IO-Compress/issues',
27099             'IO::Uncompress::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27100             'IO::Uncompress::RawInflate'=> 'https://github.com/pmqs/IO-Compress/issues',
27101             'IO::Uncompress::Unzip' => 'https://github.com/pmqs/IO-Compress/issues',
27102             'IO::Zlib' => 'https://github.com/tomhughes/IO-Zlib/issues',
27103             'IPC::Cmd' => undef,
27104             'IPC::Msg' => undef,
27105             'IPC::Semaphore' => undef,
27106             'IPC::SharedMem' => undef,
27107             'IPC::SysV' => undef,
27108             'JSON::PP' => 'https://github.com/makamaka/JSON-PP/issues',
27109             'JSON::PP::Boolean' => 'https://github.com/makamaka/JSON-PP/issues',
27110             'List::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27111             'List::Util::XS' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27112             'Locale::Maketext::Simple'=> undef,
27113             'MIME::Base64' => 'https://github.com/Dual-Life/mime-base64/issues',
27114             'MIME::QuotedPrint' => 'https://github.com/Dual-Life/mime-base64/issues',
27115             'Math::BigFloat' => undef,
27116             'Math::BigFloat::Trace' => undef,
27117             'Math::BigInt' => undef,
27118             'Math::BigInt::Calc' => undef,
27119             'Math::BigInt::FastCalc'=> undef,
27120             'Math::BigInt::Lib' => undef,
27121             'Math::BigInt::Trace' => undef,
27122             'Math::BigRat' => undef,
27123             'Math::BigRat::Trace' => undef,
27124             'Memoize' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27125             'Memoize::AnyDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27126             'Memoize::Expire' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27127             'Memoize::NDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27128             'Memoize::SDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27129             'Memoize::Storable' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize',
27130             'Module::Load' => undef,
27131             'Module::Load::Conditional'=> undef,
27132             'Module::Loaded' => undef,
27133             'Module::Metadata' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
27134             'NEXT' => undef,
27135             'Net::Cmd' => undef,
27136             'Net::Config' => undef,
27137             'Net::Domain' => undef,
27138             'Net::FTP' => undef,
27139             'Net::FTP::A' => undef,
27140             'Net::FTP::E' => undef,
27141             'Net::FTP::I' => undef,
27142             'Net::FTP::L' => undef,
27143             'Net::FTP::dataconn' => undef,
27144             'Net::NNTP' => undef,
27145             'Net::Netrc' => undef,
27146             'Net::POP3' => undef,
27147             'Net::SMTP' => undef,
27148             'Net::Time' => undef,
27149             'Params::Check' => undef,
27150             'Parse::CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
27151             'Perl::OSType' => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
27152             'PerlIO::via::QuotedPrint'=> undef,
27153             'Pod::Checker' => undef,
27154             'Pod::Escapes' => undef,
27155             'Pod::Man' => 'https://github.com/rra/podlators/issues',
27156             'Pod::ParseLink' => 'https://github.com/rra/podlators/issues',
27157             'Pod::Perldoc' => undef,
27158             'Pod::Perldoc::BaseTo' => undef,
27159             'Pod::Perldoc::GetOptsOO'=> undef,
27160             'Pod::Perldoc::ToANSI' => undef,
27161             'Pod::Perldoc::ToChecker'=> undef,
27162             'Pod::Perldoc::ToMan' => undef,
27163             'Pod::Perldoc::ToNroff' => undef,
27164             'Pod::Perldoc::ToPod' => undef,
27165             'Pod::Perldoc::ToRtf' => undef,
27166             'Pod::Perldoc::ToTerm' => undef,
27167             'Pod::Perldoc::ToText' => undef,
27168             'Pod::Perldoc::ToTk' => undef,
27169             'Pod::Perldoc::ToXml' => undef,
27170             'Pod::Simple' => 'https://github.com/perl-pod/pod-simple/issues',
27171             'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
27172             'Pod::Simple::Checker' => 'https://github.com/perl-pod/pod-simple/issues',
27173             'Pod::Simple::Debug' => 'https://github.com/perl-pod/pod-simple/issues',
27174             'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
27175             'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
27176             'Pod::Simple::HTML' => 'https://github.com/perl-pod/pod-simple/issues',
27177             'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
27178             'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
27179             'Pod::Simple::JustPod' => 'https://github.com/perl-pod/pod-simple/issues',
27180             'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
27181             'Pod::Simple::Methody' => 'https://github.com/perl-pod/pod-simple/issues',
27182             'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
27183             'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
27184             'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27185             'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27186             'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27187             'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
27188             'Pod::Simple::RTF' => 'https://github.com/perl-pod/pod-simple/issues',
27189             'Pod::Simple::Search' => 'https://github.com/perl-pod/pod-simple/issues',
27190             'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
27191             'Pod::Simple::Text' => 'https://github.com/perl-pod/pod-simple/issues',
27192             'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
27193             'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
27194             'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
27195             'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
27196             'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
27197             'Pod::Simple::XHTML' => 'https://github.com/perl-pod/pod-simple/issues',
27198             'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
27199             'Pod::Text' => 'https://github.com/rra/podlators/issues',
27200             'Pod::Text::Color' => 'https://github.com/rra/podlators/issues',
27201             'Pod::Text::Overstrike' => 'https://github.com/rra/podlators/issues',
27202             'Pod::Text::Termcap' => 'https://github.com/rra/podlators/issues',
27203             'Pod::Usage' => 'https://github.com/Dual-Life/Pod-Usage/issues',
27204             'Scalar::List::Utils' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27205             'Scalar::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27206             'Socket' => undef,
27207             'Sub::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
27208             'Sys::Syslog' => undef,
27209             'Sys::Syslog::Win32' => undef,
27210             'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27211             'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27212             'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27213             'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27214             'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27215             'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27216             'TAP::Formatter::File' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27217             'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27218             'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27219             'TAP::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27220             'TAP::Harness::Env' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27221             'TAP::Object' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27222             'TAP::Parser' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27223             'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27224             'TAP::Parser::Grammar' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27225             'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27226             'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27227             'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27228             'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27229             'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27230             'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27231             'TAP::Parser::Result' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27232             'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27233             'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27234             'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27235             'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27236             'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27237             'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27238             'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27239             'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27240             'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27241             'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27242             'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27243             'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27244             'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27245             'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27246             'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27247             'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27248             'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27249             'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27250             'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27251             'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27252             'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27253             'Term::ANSIColor' => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor',
27254             'Term::Cap' => undef,
27255             'Term::Table' => 'http://github.com/exodist/Term-Table/issues',
27256             'Term::Table::Cell' => 'http://github.com/exodist/Term-Table/issues',
27257             'Term::Table::CellStack'=> 'http://github.com/exodist/Term-Table/issues',
27258             'Term::Table::HashBase' => 'http://github.com/exodist/Term-Table/issues',
27259             'Term::Table::LineBreak'=> 'http://github.com/exodist/Term-Table/issues',
27260             'Term::Table::Spacer' => 'http://github.com/exodist/Term-Table/issues',
27261             'Term::Table::Util' => 'http://github.com/exodist/Term-Table/issues',
27262             'Test2' => 'https://github.com/Test-More/test-more/issues',
27263             'Test2::API' => 'https://github.com/Test-More/test-more/issues',
27264             'Test2::API::Breakage' => 'https://github.com/Test-More/test-more/issues',
27265             'Test2::API::Context' => 'https://github.com/Test-More/test-more/issues',
27266             'Test2::API::Instance' => 'https://github.com/Test-More/test-more/issues',
27267             'Test2::API::InterceptResult'=> 'https://github.com/Test-More/test-more/issues',
27268             'Test2::API::InterceptResult::Event'=> 'https://github.com/Test-More/test-more/issues',
27269             'Test2::API::InterceptResult::Facet'=> 'https://github.com/Test-More/test-more/issues',
27270             'Test2::API::InterceptResult::Hub'=> 'https://github.com/Test-More/test-more/issues',
27271             'Test2::API::InterceptResult::Squasher'=> 'https://github.com/Test-More/test-more/issues',
27272             'Test2::API::Stack' => 'https://github.com/Test-More/test-more/issues',
27273             'Test2::AsyncSubtest' => 'https://github.com/Test-More/test-more/issues',
27274             'Test2::AsyncSubtest::Event::Attach'=> 'https://github.com/Test-More/test-more/issues',
27275             'Test2::AsyncSubtest::Event::Detach'=> 'https://github.com/Test-More/test-more/issues',
27276             'Test2::AsyncSubtest::Formatter'=> 'https://github.com/Test-More/test-more/issues',
27277             'Test2::AsyncSubtest::Hub'=> 'https://github.com/Test-More/test-more/issues',
27278             'Test2::Bundle' => 'https://github.com/Test-More/test-more/issues',
27279             'Test2::Bundle::Extended'=> 'https://github.com/Test-More/test-more/issues',
27280             'Test2::Bundle::More' => 'https://github.com/Test-More/test-more/issues',
27281             'Test2::Bundle::Simple' => 'https://github.com/Test-More/test-more/issues',
27282             'Test2::Compare' => 'https://github.com/Test-More/test-more/issues',
27283             'Test2::Compare::Array' => 'https://github.com/Test-More/test-more/issues',
27284             'Test2::Compare::Bag' => 'https://github.com/Test-More/test-more/issues',
27285             'Test2::Compare::Base' => 'https://github.com/Test-More/test-more/issues',
27286             'Test2::Compare::Bool' => 'https://github.com/Test-More/test-more/issues',
27287             'Test2::Compare::Custom'=> 'https://github.com/Test-More/test-more/issues',
27288             'Test2::Compare::DeepRef'=> 'https://github.com/Test-More/test-more/issues',
27289             'Test2::Compare::Delta' => 'https://github.com/Test-More/test-more/issues',
27290             'Test2::Compare::Event' => 'https://github.com/Test-More/test-more/issues',
27291             'Test2::Compare::EventMeta'=> 'https://github.com/Test-More/test-more/issues',
27292             'Test2::Compare::Float' => 'https://github.com/Test-More/test-more/issues',
27293             'Test2::Compare::Hash' => 'https://github.com/Test-More/test-more/issues',
27294             'Test2::Compare::Isa' => 'https://github.com/Test-More/test-more/issues',
27295             'Test2::Compare::Meta' => 'https://github.com/Test-More/test-more/issues',
27296             'Test2::Compare::Negatable'=> 'https://github.com/Test-More/test-more/issues',
27297             'Test2::Compare::Number'=> 'https://github.com/Test-More/test-more/issues',
27298             'Test2::Compare::Object'=> 'https://github.com/Test-More/test-more/issues',
27299             'Test2::Compare::OrderedSubset'=> 'https://github.com/Test-More/test-more/issues',
27300             'Test2::Compare::Pattern'=> 'https://github.com/Test-More/test-more/issues',
27301             'Test2::Compare::Ref' => 'https://github.com/Test-More/test-more/issues',
27302             'Test2::Compare::Regex' => 'https://github.com/Test-More/test-more/issues',
27303             'Test2::Compare::Scalar'=> 'https://github.com/Test-More/test-more/issues',
27304             'Test2::Compare::Set' => 'https://github.com/Test-More/test-more/issues',
27305             'Test2::Compare::String'=> 'https://github.com/Test-More/test-more/issues',
27306             'Test2::Compare::Undef' => 'https://github.com/Test-More/test-more/issues',
27307             'Test2::Compare::Wildcard'=> 'https://github.com/Test-More/test-more/issues',
27308             'Test2::Env' => 'https://github.com/Test-More/test-more/issues',
27309             'Test2::Event' => 'https://github.com/Test-More/test-more/issues',
27310             'Test2::Event::Bail' => 'https://github.com/Test-More/test-more/issues',
27311             'Test2::Event::Diag' => 'https://github.com/Test-More/test-more/issues',
27312             'Test2::Event::Encoding'=> 'https://github.com/Test-More/test-more/issues',
27313             'Test2::Event::Exception'=> 'https://github.com/Test-More/test-more/issues',
27314             'Test2::Event::Fail' => 'https://github.com/Test-More/test-more/issues',
27315             'Test2::Event::Generic' => 'https://github.com/Test-More/test-more/issues',
27316             'Test2::Event::Note' => 'https://github.com/Test-More/test-more/issues',
27317             'Test2::Event::Ok' => 'https://github.com/Test-More/test-more/issues',
27318             'Test2::Event::Pass' => 'https://github.com/Test-More/test-more/issues',
27319             'Test2::Event::Plan' => 'https://github.com/Test-More/test-more/issues',
27320             'Test2::Event::Skip' => 'https://github.com/Test-More/test-more/issues',
27321             'Test2::Event::Subtest' => 'https://github.com/Test-More/test-more/issues',
27322             'Test2::Event::TAP::Version'=> 'https://github.com/Test-More/test-more/issues',
27323             'Test2::Event::V2' => 'https://github.com/Test-More/test-more/issues',
27324             'Test2::Event::Waiting' => 'https://github.com/Test-More/test-more/issues',
27325             'Test2::EventFacet' => 'https://github.com/Test-More/test-more/issues',
27326             'Test2::EventFacet::About'=> 'https://github.com/Test-More/test-more/issues',
27327             'Test2::EventFacet::Amnesty'=> 'https://github.com/Test-More/test-more/issues',
27328             'Test2::EventFacet::Assert'=> 'https://github.com/Test-More/test-more/issues',
27329             'Test2::EventFacet::Control'=> 'https://github.com/Test-More/test-more/issues',
27330             'Test2::EventFacet::Error'=> 'https://github.com/Test-More/test-more/issues',
27331             'Test2::EventFacet::Hub'=> 'https://github.com/Test-More/test-more/issues',
27332             'Test2::EventFacet::Info'=> 'https://github.com/Test-More/test-more/issues',
27333             'Test2::EventFacet::Info::Table'=> 'https://github.com/Test-More/test-more/issues',
27334             'Test2::EventFacet::Meta'=> 'https://github.com/Test-More/test-more/issues',
27335             'Test2::EventFacet::Parent'=> 'https://github.com/Test-More/test-more/issues',
27336             'Test2::EventFacet::Plan'=> 'https://github.com/Test-More/test-more/issues',
27337             'Test2::EventFacet::Render'=> 'https://github.com/Test-More/test-more/issues',
27338             'Test2::EventFacet::Trace'=> 'https://github.com/Test-More/test-more/issues',
27339             'Test2::Formatter' => 'https://github.com/Test-More/test-more/issues',
27340             'Test2::Formatter::TAP' => 'https://github.com/Test-More/test-more/issues',
27341             'Test2::Handle' => 'https://github.com/Test-More/test-more/issues',
27342             'Test2::Hub' => 'https://github.com/Test-More/test-more/issues',
27343             'Test2::Hub::Interceptor'=> 'https://github.com/Test-More/test-more/issues',
27344             'Test2::Hub::Interceptor::Terminator'=> 'https://github.com/Test-More/test-more/issues',
27345             'Test2::Hub::Subtest' => 'https://github.com/Test-More/test-more/issues',
27346             'Test2::IPC' => 'https://github.com/Test-More/test-more/issues',
27347             'Test2::IPC::Driver' => 'https://github.com/Test-More/test-more/issues',
27348             'Test2::IPC::Driver::Files'=> 'https://github.com/Test-More/test-more/issues',
27349             'Test2::Manual' => 'https://github.com/Test-More/test-more/issues',
27350             'Test2::Manual::Anatomy'=> 'https://github.com/Test-More/test-more/issues',
27351             'Test2::Manual::Anatomy::API'=> 'https://github.com/Test-More/test-more/issues',
27352             'Test2::Manual::Anatomy::Context'=> 'https://github.com/Test-More/test-more/issues',
27353             'Test2::Manual::Anatomy::EndToEnd'=> 'https://github.com/Test-More/test-more/issues',
27354             'Test2::Manual::Anatomy::Event'=> 'https://github.com/Test-More/test-more/issues',
27355             'Test2::Manual::Anatomy::Hubs'=> 'https://github.com/Test-More/test-more/issues',
27356             'Test2::Manual::Anatomy::IPC'=> 'https://github.com/Test-More/test-more/issues',
27357             'Test2::Manual::Anatomy::Utilities'=> 'https://github.com/Test-More/test-more/issues',
27358             'Test2::Manual::Concurrency'=> 'https://github.com/Test-More/test-more/issues',
27359             'Test2::Manual::Contributing'=> 'https://github.com/Test-More/test-more/issues',
27360             'Test2::Manual::Testing'=> 'https://github.com/Test-More/test-more/issues',
27361             'Test2::Manual::Testing::Introduction'=> 'https://github.com/Test-More/test-more/issues',
27362             'Test2::Manual::Testing::Migrating'=> 'https://github.com/Test-More/test-more/issues',
27363             'Test2::Manual::Testing::Planning'=> 'https://github.com/Test-More/test-more/issues',
27364             'Test2::Manual::Testing::Todo'=> 'https://github.com/Test-More/test-more/issues',
27365             'Test2::Manual::Tooling'=> 'https://github.com/Test-More/test-more/issues',
27366             'Test2::Manual::Tooling::FirstTool'=> 'https://github.com/Test-More/test-more/issues',
27367             'Test2::Manual::Tooling::Formatter'=> 'https://github.com/Test-More/test-more/issues',
27368             'Test2::Manual::Tooling::Nesting'=> 'https://github.com/Test-More/test-more/issues',
27369             'Test2::Manual::Tooling::Plugin::TestExit'=> 'https://github.com/Test-More/test-more/issues',
27370             'Test2::Manual::Tooling::Plugin::TestingDone'=> 'https://github.com/Test-More/test-more/issues',
27371             'Test2::Manual::Tooling::Plugin::ToolCompletes'=> 'https://github.com/Test-More/test-more/issues',
27372             'Test2::Manual::Tooling::Plugin::ToolStarts'=> 'https://github.com/Test-More/test-more/issues',
27373             'Test2::Manual::Tooling::Subtest'=> 'https://github.com/Test-More/test-more/issues',
27374             'Test2::Manual::Tooling::TestBuilder'=> 'https://github.com/Test-More/test-more/issues',
27375             'Test2::Manual::Tooling::Testing'=> 'https://github.com/Test-More/test-more/issues',
27376             'Test2::Mock' => 'https://github.com/Test-More/test-more/issues',
27377             'Test2::Plugin' => 'https://github.com/Test-More/test-more/issues',
27378             'Test2::Plugin::BailOnFail'=> 'https://github.com/Test-More/test-more/issues',
27379             'Test2::Plugin::DieOnFail'=> 'https://github.com/Test-More/test-more/issues',
27380             'Test2::Plugin::ExitSummary'=> 'https://github.com/Test-More/test-more/issues',
27381             'Test2::Plugin::SRand' => 'https://github.com/Test-More/test-more/issues',
27382             'Test2::Plugin::Times' => 'https://github.com/Test-More/test-more/issues',
27383             'Test2::Plugin::UTF8' => 'https://github.com/Test-More/test-more/issues',
27384             'Test2::Require' => 'https://github.com/Test-More/test-more/issues',
27385             'Test2::Require::AuthorTesting'=> 'https://github.com/Test-More/test-more/issues',
27386             'Test2::Require::AutomatedTesting'=> 'https://github.com/Test-More/test-more/issues',
27387             'Test2::Require::EnvVar'=> 'https://github.com/Test-More/test-more/issues',
27388             'Test2::Require::ExtendedTesting'=> 'https://github.com/Test-More/test-more/issues',
27389             'Test2::Require::Fork' => 'https://github.com/Test-More/test-more/issues',
27390             'Test2::Require::Module'=> 'https://github.com/Test-More/test-more/issues',
27391             'Test2::Require::NonInteractiveTesting'=> 'https://github.com/Test-More/test-more/issues',
27392             'Test2::Require::Perl' => 'https://github.com/Test-More/test-more/issues',
27393             'Test2::Require::RealFork'=> 'https://github.com/Test-More/test-more/issues',
27394             'Test2::Require::ReleaseTesting'=> 'https://github.com/Test-More/test-more/issues',
27395             'Test2::Require::Threads'=> 'https://github.com/Test-More/test-more/issues',
27396             'Test2::Suite' => 'https://github.com/Test-More/test-more/issues',
27397             'Test2::Todo' => 'https://github.com/Test-More/test-more/issues',
27398             'Test2::Tools' => 'https://github.com/Test-More/test-more/issues',
27399             'Test2::Tools::AsyncSubtest'=> 'https://github.com/Test-More/test-more/issues',
27400             'Test2::Tools::Basic' => 'https://github.com/Test-More/test-more/issues',
27401             'Test2::Tools::Class' => 'https://github.com/Test-More/test-more/issues',
27402             'Test2::Tools::ClassicCompare'=> 'https://github.com/Test-More/test-more/issues',
27403             'Test2::Tools::Compare' => 'https://github.com/Test-More/test-more/issues',
27404             'Test2::Tools::Defer' => 'https://github.com/Test-More/test-more/issues',
27405             'Test2::Tools::Encoding'=> 'https://github.com/Test-More/test-more/issues',
27406             'Test2::Tools::Event' => 'https://github.com/Test-More/test-more/issues',
27407             'Test2::Tools::Exception'=> 'https://github.com/Test-More/test-more/issues',
27408             'Test2::Tools::Exports' => 'https://github.com/Test-More/test-more/issues',
27409             'Test2::Tools::GenTemp' => 'https://github.com/Test-More/test-more/issues',
27410             'Test2::Tools::Grab' => 'https://github.com/Test-More/test-more/issues',
27411             'Test2::Tools::Mock' => 'https://github.com/Test-More/test-more/issues',
27412             'Test2::Tools::Ref' => 'https://github.com/Test-More/test-more/issues',
27413             'Test2::Tools::Refcount'=> 'https://github.com/Test-More/test-more/issues',
27414             'Test2::Tools::Spec' => 'https://github.com/Test-More/test-more/issues',
27415             'Test2::Tools::Subtest' => 'https://github.com/Test-More/test-more/issues',
27416             'Test2::Tools::Target' => 'https://github.com/Test-More/test-more/issues',
27417             'Test2::Tools::Tester' => 'https://github.com/Test-More/test-more/issues',
27418             'Test2::Tools::Tiny' => 'https://github.com/Test-More/test-more/issues',
27419             'Test2::Tools::Warnings'=> 'https://github.com/Test-More/test-more/issues',
27420             'Test2::Util' => 'https://github.com/Test-More/test-more/issues',
27421             'Test2::Util::ExternalMeta'=> 'https://github.com/Test-More/test-more/issues',
27422             'Test2::Util::Facets2Legacy'=> 'https://github.com/Test-More/test-more/issues',
27423             'Test2::Util::Grabber' => 'https://github.com/Test-More/test-more/issues',
27424             'Test2::Util::Guard' => 'https://github.com/Test-More/test-more/issues',
27425             'Test2::Util::HashBase' => 'https://github.com/Test-More/test-more/issues',
27426             'Test2::Util::Importer' => 'https://github.com/Test-More/test-more/issues',
27427             'Test2::Util::Ref' => 'https://github.com/Test-More/test-more/issues',
27428             'Test2::Util::Sig' => 'https://github.com/Test-More/test-more/issues',
27429             'Test2::Util::Stash' => 'https://github.com/Test-More/test-more/issues',
27430             'Test2::Util::Sub' => 'https://github.com/Test-More/test-more/issues',
27431             'Test2::Util::Table' => 'https://github.com/Test-More/test-more/issues',
27432             'Test2::Util::Table::Cell'=> 'https://github.com/Test-More/test-more/issues',
27433             'Test2::Util::Table::LineBreak'=> 'https://github.com/Test-More/test-more/issues',
27434             'Test2::Util::Term' => 'https://github.com/Test-More/test-more/issues',
27435             'Test2::Util::Times' => 'https://github.com/Test-More/test-more/issues',
27436             'Test2::Util::Trace' => 'https://github.com/Test-More/test-more/issues',
27437             'Test2::V0' => 'https://github.com/Test-More/test-more/issues',
27438             'Test2::V1' => 'https://github.com/Test-More/test-more/issues',
27439             'Test2::V1::Base' => 'https://github.com/Test-More/test-more/issues',
27440             'Test2::V1::Handle' => 'https://github.com/Test-More/test-more/issues',
27441             'Test2::Workflow' => 'https://github.com/Test-More/test-more/issues',
27442             'Test2::Workflow::BlockBase'=> 'https://github.com/Test-More/test-more/issues',
27443             'Test2::Workflow::Build'=> 'https://github.com/Test-More/test-more/issues',
27444             'Test2::Workflow::Runner'=> 'https://github.com/Test-More/test-more/issues',
27445             'Test2::Workflow::Task' => 'https://github.com/Test-More/test-more/issues',
27446             'Test2::Workflow::Task::Action'=> 'https://github.com/Test-More/test-more/issues',
27447             'Test2::Workflow::Task::Group'=> 'https://github.com/Test-More/test-more/issues',
27448             'Test::Builder' => 'https://github.com/Test-More/test-more/issues',
27449             'Test::Builder::Formatter'=> 'https://github.com/Test-More/test-more/issues',
27450             'Test::Builder::Module' => 'https://github.com/Test-More/test-more/issues',
27451             'Test::Builder::Tester' => 'https://github.com/Test-More/test-more/issues',
27452             'Test::Builder::Tester::Color'=> 'https://github.com/Test-More/test-more/issues',
27453             'Test::Builder::TodoDiag'=> 'https://github.com/Test-More/test-more/issues',
27454             'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
27455             'Test::More' => 'https://github.com/Test-More/test-more/issues',
27456             'Test::Simple' => 'https://github.com/Test-More/test-more/issues',
27457             'Test::Tester' => 'https://github.com/Test-More/test-more/issues',
27458             'Test::Tester::Capture' => 'https://github.com/Test-More/test-more/issues',
27459             'Test::Tester::CaptureRunner'=> 'https://github.com/Test-More/test-more/issues',
27460             'Test::Tester::Delegate'=> 'https://github.com/Test-More/test-more/issues',
27461             'Test::use::ok' => 'https://github.com/Test-More/test-more/issues',
27462             'Text::Balanced' => undef,
27463             'Text::ParseWords' => undef,
27464             'Text::Tabs' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
27465             'Text::Wrap' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap',
27466             'Tie::RefHash' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Tie-RefHash',
27467             'Time::Local' => 'https://github.com/houseabsolute/Time-Local/issues',
27468             'Time::Piece' => undef,
27469             'Time::Seconds' => undef,
27470             'Unicode::Collate' => undef,
27471             'Unicode::Collate::CJK::Big5'=> undef,
27472             'Unicode::Collate::CJK::GB2312'=> undef,
27473             'Unicode::Collate::CJK::JISX0208'=> undef,
27474             'Unicode::Collate::CJK::Korean'=> undef,
27475             'Unicode::Collate::CJK::Pinyin'=> undef,
27476             'Unicode::Collate::CJK::Stroke'=> undef,
27477             'Unicode::Collate::CJK::Zhuyin'=> undef,
27478             'Unicode::Collate::Locale'=> undef,
27479             'Win32' => 'https://github.com/perl-libwin32/win32/issues',
27480             'Win32API::File' => undef,
27481             'autodie' => 'https://github.com/pjf/autodie/issues',
27482             'autodie::Scope::Guard' => 'https://github.com/pjf/autodie/issues',
27483             'autodie::Scope::GuardStack'=> 'https://github.com/pjf/autodie/issues',
27484             'autodie::Util' => 'https://github.com/pjf/autodie/issues',
27485             'autodie::exception' => 'https://github.com/pjf/autodie/issues',
27486             'autodie::exception::system'=> 'https://github.com/pjf/autodie/issues',
27487             'autodie::hints' => 'https://github.com/pjf/autodie/issues',
27488             'autodie::skip' => 'https://github.com/pjf/autodie/issues',
27489             'bigfloat' => undef,
27490             'bigint' => undef,
27491             'bignum' => undef,
27492             'bigrat' => undef,
27493             'encoding' => undef,
27494             'experimental' => 'https://github.com/Dual-Life/experimental/issues',
27495             'ok' => 'https://github.com/Test-More/test-more/issues',
27496             'parent' => undef,
27497             'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues',
27498             'stable' => 'https://github.com/Dual-Life/experimental/issues',
27499             'version' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
27500             'version::regex' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
27501             );
27502              
27503             # Create aliases with trailing zeros for $] use
27504              
27505             $released{'5.000'} = $released{5};
27506             $version{'5.000'} = $version{5};
27507              
27508             _create_aliases(\%delta);
27509             _create_aliases(\%released);
27510             _create_aliases(\%version);
27511             _create_aliases(\%deprecated);
27512              
27513             sub _create_aliases {
27514 20     20   47 my ($hash) = @_;
27515              
27516 20         1196 for my $version (keys %$hash) {
27517 5630 100       13464 next unless $version >= 5.006;
27518              
27519 5485         11833 my $padded = sprintf "%0.6f", $version;
27520              
27521             # If the version in string form isn't the same as the numeric version,
27522             # alias it.
27523 5485 100 66     19158 if ($padded ne $version && $version == $padded) {
27524 935         2342 $hash->{$padded} = $hash->{$version};
27525             }
27526             }
27527             }
27528              
27529             1;
27530             __END__