This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Module-CoreList for v5.29.2
[perl5.git] / dist / Module-CoreList / lib / Module / CoreList.pm
CommitLineData
8f2fd531
JB
1package Module::CoreList;
2use strict;
1a58b39a
N
3
4our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
5
74921e08 6use version;
c0036c4e 7our $VERSION = '5.20180820';
8f2fd531 8
766780a5
AP
9sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
10sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
11
8bbcf42b
AP
12sub _undelta {
13 my ($delta) = @_;
33f1827f
AP
14 my (%expanded, $delta_from, $base, $changed, $removed);
15 for my $v (sort keys %$delta) {
16 ($delta_from, $changed, $removed) = @{$delta->{$v}}{qw( delta_from changed removed )};
17 $base = $delta_from ? $expanded{$delta_from} : {};
18 my %full = ( %$base, %{$changed || {}} );
19 delete @full{ keys %$removed };
20 $expanded{$v} = \%full;
8bbcf42b
AP
21 }
22 return %expanded;
23}
24
02b4438c
KW
25sub _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 : $released{$a} cmp $released{$b} )
33}
34
8f2fd531
JB
35my $dumpinc = 0;
36sub import {
37 my $self = shift;
38 my $what = shift || '';
39 if ($what eq 'dumpinc') {
40 $dumpinc = 1;
41 }
42}
43
44END {
45 print "---INC---\n", join "\n" => keys %INC
46 if $dumpinc;
47}
48
49
79be940f 50sub first_release_raw {
766780a5 51 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
6d7c3a12 52 my $module = shift;
6d7c3a12 53 my $version = shift;
8f2fd531
JB
54
55 my @perls = $version
41b9d3e4 56 ? grep { defined $version{$_}{ $module } &&
482096f1 57 $version{$_}{ $module } ge $version } keys %version
8f2fd531
JB
58 : grep { exists $version{$_}{ $module } } keys %version;
59
79be940f
RGS
60 return @perls;
61}
62
63sub first_release_by_date {
64 my @perls = &first_release_raw;
8f2fd531 65 return unless @perls;
02b4438c 66 return (sort _released_order @perls)[0];
8f2fd531
JB
67}
68
79be940f
RGS
69sub first_release {
70 my @perls = &first_release_raw;
71 return unless @perls;
72 return (sort { $a cmp $b } @perls)[0];
73}
74
18b19aec 75sub find_modules {
766780a5 76 shift if _looks_like_invocant $_[0];
18b19aec 77 my $regex = shift;
766780a5 78 my @perls = @_ ? @_ : keys %version;
18b19aec
RGS
79
80 my %mods;
81 foreach (@perls) {
82 while (my ($k, $v) = each %{$version{$_}}) {
83 $mods{$k}++ if $k =~ $regex;
84 }
85 }
86 return sort keys %mods
87}
88
6127f3cd 89sub find_version {
766780a5 90 shift if _looks_like_invocant $_[0];
6d7c3a12 91 my $v = shift;
766780a5 92 return $version{$v} if defined $v and defined $version{$v};
ba4fc2b4 93 return;
6127f3cd 94}
8f2fd531 95
c77945c3 96sub is_deprecated {
766780a5 97 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
6d7c3a12 98 my $module = shift;
766780a5 99 my $perl_version = shift || $];
0dee1c27
DG
100 return unless $module && exists $deprecated{$perl_version}{$module};
101 return $deprecated{$perl_version}{$module};
c77945c3
CBW
102}
103
10526356 104sub deprecated_in {
766780a5
AP
105 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
106 my $module = shift or return;
10526356
AC
107 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
108 return unless @perls;
109 require List::Util;
94691b80 110 return List::Util::minstr(@perls);
10526356
AC
111}
112
044d64a8
CBW
113sub removed_from {
114 my @perls = &removed_raw;
115 return shift @perls;
116}
117
118sub removed_from_by_date {
02b4438c 119 my @perls = sort _released_order &removed_raw;
044d64a8
CBW
120 return shift @perls;
121}
122
123sub removed_raw {
766780a5 124 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
044d64a8 125 my $mod = shift;
044d64a8
CBW
126 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
127 my $last = pop @perls;
128 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
129 return @removed;
130}
131
797ced94 132sub changes_between {
766780a5 133 shift if _looks_like_invocant $_[0];
5622f451 134 my $left_ver = shift;
5622f451 135 my $right_ver = shift;
797ced94
RS
136
137 my $left = $version{ $left_ver };
138 my $right = $version{ $right_ver };
139
140 my %uniq = (%$left, %$right);
141
142 my %changes;
143 for my $lib (keys %uniq) {
144 my $lhs = exists $left->{ $lib }
145 ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)')
146 : '(absent)';
147 my $rhs = exists $right->{ $lib }
148 ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)')
149 : '(absent)';
150
151 next if $lhs eq $rhs;
152
153 my $change = {
154 (exists $left->{$lib} ? (left => $left->{$lib}) : ()),
155 (exists $right->{$lib} ? (right => $right->{$lib}) : ()),
156 };
157
158 $changes{$lib} = $change;
159 }
160
161 return %changes;
162}
163
2a61b338
RGS
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.
8f2fd531 168%released = (
51daab35
RGS
169 5.000 => '1994-10-17',
170 5.001 => '1995-03-14',
e1371c03 171 5.002 => '1996-02-29',
8f2fd531
JB
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',
8f2fd531
JB
179 5.007003 => '2002-03-05',
180 5.008 => '2002-07-19',
181 5.008001 => '2003-09-25',
8f2fd531 182 5.009 => '2003-10-27',
9f602dc7
MB
183 5.008002 => '2003-11-05',
184 5.006002 => '2003-11-15',
8f2fd531
JB
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',
c9600ef6 191 5.009002 => '2005-04-01',
cda59a31 192 5.008007 => '2005-05-30',
f372d768
RGS
193 5.009003 => '2006-01-28',
194 5.008008 => '2006-01-31',
16531488 195 5.009004 => '2006-08-15',
201a0ee1 196 5.009005 => '2007-07-07',
a3240fe5 197 5.010000 => '2007-12-18',
5b5f44f3 198 5.008009 => '2008-12-14',
6c1a81b0 199 5.010001 => '2009-08-22',
a6abef0d 200 5.011000 => '2009-10-02',
979b9961 201 5.011001 => '2009-10-20',
a68163ea 202 5.011002 => '2009-11-20',
65f8b4e7 203 5.011003 => '2009-12-20',
d3cba0fe 204 5.011004 => '2010-01-20',
2a3ea5b5 205 5.011005 => '2010-02-20',
431be7b3 206 5.012000 => '2010-04-12',
3ec75686 207 5.013000 => '2010-04-20',
2cbeaf93 208 5.012001 => '2010-05-16',
2db8ee47 209 5.013001 => '2010-05-20',
37e1f6c7 210 5.013002 => '2010-06-22',
a4729c0f 211 5.013003 => '2010-07-20',
7529c15c 212 5.013004 => '2010-08-20',
cf6d0998 213 5.012002 => '2010-09-06',
0530d763 214 5.013005 => '2010-09-19',
7de25fd5 215 5.013006 => '2010-10-20',
d24e0a99 216 5.013007 => '2010-11-20',
67dbc274 217 5.013008 => '2010-12-20',
96e4e4a0 218 5.012003 => '2011-01-21',
e0698539 219 5.013009 => '2011-01-20',
c552c5b5 220 5.013010 => '2011-02-20',
45492fbf 221 5.013011 => '2011-03-20',
ee2a35ba 222 5.014000 => '2011-05-14',
3f07daad 223 5.012004 => '2011-06-20',
3df1c36a 224 5.012005 => '2012-11-10',
3d108019 225 5.014001 => '2011-06-16',
1f1f08f5 226 5.015000 => '2011-06-20',
48b66e80 227 5.015001 => '2011-07-20',
2f183b41 228 5.015002 => '2011-08-20',
33f96037 229 5.014002 => '2011-09-26',
e46b3c7d 230 5.015003 => '2011-09-20',
f0381222 231 5.015004 => '2011-10-20',
40f3bdee 232 5.015005 => '2011-11-20',
9cdfa110 233 5.015006 => '2011-12-20',
b240fc0f 234 5.015007 => '2012-01-20',
f50587e0 235 5.015008 => '2012-02-20',
68a91acb 236 5.015009 => '2012-03-20',
d10490f6 237 5.016000 => '2012-05-20',
990b8741 238 5.016001 => '2012-08-08',
e0a7ebbc 239 5.016002 => '2012-11-01',
f558db2f 240 5.017000 => '2012-05-26',
71014848 241 5.017001 => '2012-06-20',
7ca04d94 242 5.017002 => '2012-07-20',
752b5616 243 5.017003 => '2012-08-20',
a1484e43 244 5.017004 => '2012-09-20',
f7a5efeb 245 5.014003 => '2012-10-12',
03708946 246 5.017005 => '2012-10-20',
e498bd59 247 5.017006 => '2012-11-20',
fe03d33b 248 5.017007 => '2012-12-18',
dd4b1c75 249 5.017008 => '2013-01-20',
52f6865c 250 5.017009 => '2013-02-20',
11d2dbf3 251 5.014004 => '2013-03-10',
cd98b2f5 252 5.016003 => '2013-03-11',
fd3b4111 253 5.017010 => '2013-03-21',
e55f48ec 254 5.017011 => '2013-04-20',
058ce27e 255 5.018000 => '2013-05-18',
38a400f2 256 5.019000 => '2013-05-20',
2f4a2205 257 5.019001 => '2013-06-21',
1f0ad552 258 5.019002 => '2013-07-22',
ba4dd7ef 259 5.018001 => '2013-08-12',
91c842ce 260 5.019003 => '2013-08-20',
62de23d1 261 5.019004 => '2013-09-20',
19c1ec11 262 5.019005 => '2013-10-20',
1f2fd626 263 5.019006 => '2013-11-20',
95eb96f3 264 5.019007 => '2013-12-20',
6c2a7b42 265 5.018002 => '2014-01-06',
b616d4df
RS
266 5.018003 => '2014-10-01',
267 5.018004 => '2014-10-01',
d0ff74ad 268 5.019008 => '2014-01-20',
5a39b45b 269 5.019009 => '2014-02-20',
ce42a9e6 270 5.01901 => '2014-03-20',
70152776 271 5.019011 => '2014-04-20',
4224d62f 272 5.020000 => '2014-05-27',
4f2cd4f7 273 5.021000 => '2014-05-27',
2901561d 274 5.021001 => '2014-06-20',
6488e103 275 5.021002 => '2014-07-20',
46e58890 276 5.021003 => '2014-08-20',
096a768b 277 5.020001 => '2014-09-14',
50e7b15e 278 5.021004 => '2014-09-20',
54457154 279 5.021005 => '2014-10-20',
20f5d8f8 280 5.021006 => '2014-11-20',
e544daaa 281 5.021007 => '2014-12-20',
50ab518c 282 5.021008 => '2015-01-20',
be3ff683 283 5.020002 => '2015-02-14',
c02a3722 284 5.021009 => '2015-02-21',
77dc754d 285 5.021010 => '2015-03-20',
6432c40a 286 5.021011 => '2015-04-20',
5b0ac1aa 287 5.022000 => '2015-06-01',
b9e156a2 288 5.023000 => '2015-06-20',
8656412d 289 5.023001 => '2015-07-20',
7d12bc6a 290 5.023002 => '2015-08-20',
b55fc902 291 5.020003 => '2015-09-12',
52513e61 292 5.023003 => '2015-09-20',
210f4ae1 293 5.023004 => '2015-10-20',
93377cd0 294 5.023005 => '2015-11-20',
9c75bdd1 295 5.022001 => '2015-12-13',
b733cacc 296 5.023006 => '2015-12-21',
1998e9cd 297 5.023007 => '2016-01-20',
b5fa05a4 298 5.023008 => '2016-02-20',
489c35bb 299 5.023009 => '2016-03-20',
e42cacf8 300 5.022002 => '2016-04-29',
4f8325ba 301 5.024000 => '2016-05-09',
c800d8b3 302 5.025000 => '2016-05-09',
f7a1e8ff 303 5.025001 => '2016-05-20',
7984aa21 304 5.025002 => '2016-06-20',
42a3cde1 305 5.025003 => '2016-07-20',
3f85950f 306 5.025004 => '2016-08-20',
7852d856 307 5.025005 => '2016-09-20',
1ef3f097 308 5.025006 => '2016-10-20',
c49a7ab0 309 5.025007 => '2016-11-20',
79ca97c0 310 5.025008 => '2016-12-20',
d202f2b8
SH
311 5.022003 => '2017-01-14',
312 5.024001 => '2017-01-14',
ff2fd50f 313 5.025009 => '2017-01-20',
a9f73db0 314 5.025010 => '2017-02-20',
7055fb8e 315 5.025011 => '2017-03-20',
b62b979e 316 5.025012 => '2017-04-20',
753bd946
S
317 5.026000 => '2017-05-30',
318 5.027000 => '2017-05-31',
bd010555 319 5.027001 => '2017-06-20',
e029cc95 320 5.022004 => '2017-07-15',
da0817c4 321 5.024002 => '2017-07-15',
0db26723 322 5.027002 => '2017-07-20',
e49cf9b2 323 5.027003 => '2017-08-21',
9f9332db 324 5.027004 => '2017-09-20',
0ba9031a
SH
325 5.024003 => '2017-09-22',
326 5.026001 => '2017-09-22',
1967e407 327 5.027005 => '2017-10-20',
78425520 328 5.027006 => '2017-11-20',
a67b31e3 329 5.027007 => '2017-12-20',
946b6ed4 330 5.027008 => '2018-01-20',
3f4fae50 331 5.027009 => '2018-02-20',
4f01496f 332 5.027010 => '2018-03-20',
994c9c84
SH
333 5.024004 => '2018-04-14',
334 5.026002 => '2018-04-14',
26db1972 335 5.027011 => '2018-04-20',
55f79f56 336 5.028000 => '2018-06-22',
84208e00 337 5.029000 => '2018-06-26',
c176529f 338 5.029001 => '2018-07-20',
c0036c4e 339 5.029002 => '2018-08-20',
a47a8f3c 340 );
8f2fd531
JB
341
342for my $version ( sort { $a <=> $b } keys %released ) {
343 my $family = int ($version * 1000) / 1000;
344 push @{ $families{ $family }} , $version;
345}
346
c676c838 347%delta = (
a272bf38
DL
348 5 => {
349 changed => {
350 'AnyDBM_File' => undef,
351 'AutoLoader' => undef,
352 'AutoSplit' => undef,
353 'Benchmark' => undef,
354 'Carp' => undef,
355 'Cwd' => undef,
356 'DB_File' => undef,
357 'DynaLoader' => undef,
358 'English' => undef,
359 'Env' => undef,
360 'Exporter' => undef,
361 'ExtUtils::MakeMaker' => undef,
362 'Fcntl' => undef,
363 'File::Basename' => undef,
364 'File::CheckTree' => undef,
365 'File::Find' => undef,
366 'FileHandle' => undef,
367 'GDBM_File' => undef,
368 'Getopt::Long' => undef,
369 'Getopt::Std' => undef,
370 'I18N::Collate' => undef,
371 'IPC::Open2' => undef,
372 'IPC::Open3' => undef,
373 'Math::BigFloat' => undef,
374 'Math::BigInt' => undef,
375 'Math::Complex' => undef,
376 'NDBM_File' => undef,
377 'Net::Ping' => undef,
378 'ODBM_File' => undef,
379 'POSIX' => undef,
380 'SDBM_File' => undef,
381 'Search::Dict' => undef,
382 'Shell' => undef,
383 'Socket' => undef,
384 'Sys::Hostname' => undef,
385 'Sys::Syslog' => undef,
386 'Term::Cap' => undef,
387 'Term::Complete' => undef,
388 'Test::Harness' => undef,
389 'Text::Abbrev' => undef,
390 'Text::ParseWords' => undef,
391 'Text::Soundex' => undef,
392 'Text::Tabs' => undef,
393 'TieHash' => undef,
394 'Time::Local' => undef,
395 'integer' => undef,
396 'less' => undef,
397 'sigtrap' => undef,
398 'strict' => undef,
399 'subs' => undef,
400 },
401 removed => {
402 }
51daab35
RGS
403 },
404 5.001 => {
a272bf38
DL
405 delta_from => 5,
406 changed => {
407 'ExtUtils::Liblist' => undef,
408 'ExtUtils::Manifest' => undef,
409 'ExtUtils::Mkbootstrap' => undef,
410 'File::Path' => undef,
411 'SubstrHash' => undef,
412 'lib' => undef,
413 },
414 removed => {
415 }
51daab35
RGS
416 },
417 5.002 => {
a272bf38
DL
418 delta_from => 5.001,
419 changed => {
420 'DB_File' => '1.01',
421 'Devel::SelfStubber' => '1.01',
422 'DirHandle' => undef,
423 'DynaLoader' => '1.00',
424 'ExtUtils::Install' => undef,
425 'ExtUtils::MM_OS2' => undef,
426 'ExtUtils::MM_Unix' => undef,
427 'ExtUtils::MM_VMS' => undef,
428 'ExtUtils::MakeMaker' => '5.21',
429 'ExtUtils::Manifest' => '1.22',
430 'ExtUtils::Mksymlists' => '1.00',
431 'Fcntl' => '1.00',
432 'File::Copy' => '1.5',
433 'File::Path' => '1.01',
434 'FileCache' => undef,
435 'FileHandle' => '1.00',
436 'GDBM_File' => '1.00',
437 'Getopt::Long' => '2.01',
438 'NDBM_File' => '1.00',
439 'Net::Ping' => '1',
440 'ODBM_File' => '1.00',
441 'POSIX' => '1.00',
442 'Pod::Functions' => undef,
443 'Pod::Text' => undef,
444 'SDBM_File' => '1.00',
445 'Safe' => '1.00',
446 'SelectSaver' => undef,
447 'SelfLoader' => '1.06',
448 'Socket' => '1.5',
449 'Symbol' => undef,
450 'Term::ReadLine' => undef,
451 'Test::Harness' => '1.07',
452 'Text::Wrap' => undef,
453 'Tie::Hash' => undef,
454 'Tie::Scalar' => undef,
455 'Tie::SubstrHash' => undef,
456 'diagnostics' => undef,
457 'overload' => undef,
458 'vars' => undef,
459 },
460 removed => {
461 'SubstrHash' => 1,
462 'TieHash' => 1,
463 }
51daab35 464 },
8f2fd531 465 5.00307 => {
a272bf38
DL
466 delta_from => 5.002,
467 changed => {
468 'Config' => undef,
469 'DB_File' => '1.03',
470 'ExtUtils::Embed' => '1.18',
b7c1f088
RS
471 'ExtUtils::Install' => '1.15',
472 'ExtUtils::Liblist' => '1.20',
473 'ExtUtils::MM_Unix' => '1.107',
a272bf38
DL
474 'ExtUtils::MakeMaker' => '5.38',
475 'ExtUtils::Manifest' => '1.27',
b7c1f088
RS
476 'ExtUtils::Mkbootstrap' => '1.13',
477 'ExtUtils::Mksymlists' => '1.12',
478 'ExtUtils::testlib' => '1.11',
a272bf38
DL
479 'Fatal' => undef,
480 'File::Basename' => '2.4',
481 'FindBin' => '1.04',
482 'Getopt::Long' => '2.04',
483 'IO' => undef,
484 'IO::File' => '1.05',
485 'IO::Handle' => '1.12',
486 'IO::Pipe' => '1.07',
487 'IO::Seekable' => '1.05',
488 'IO::Select' => '1.09',
489 'IO::Socket' => '1.13',
490 'Net::Ping' => '1.01',
491 'OS2::ExtAttr' => '0.01',
492 'OS2::PrfDB' => '0.02',
493 'OS2::Process' => undef,
494 'OS2::REXX' => undef,
495 'Opcode' => '1.01',
496 'Safe' => '2.06',
497 'Test::Harness' => '1.13',
498 'Text::Tabs' => '96.051501',
499 'Text::Wrap' => '96.041801',
500 'UNIVERSAL' => undef,
501 'VMS::Filespec' => undef,
502 'VMS::Stdio' => '2.0',
503 'ops' => undef,
504 'sigtrap' => '1.01',
505 },
506 removed => {
507 }
8f2fd531 508 },
a272bf38
DL
509 5.004 => {
510 delta_from => 5.00307,
511 changed => {
512 'Bundle::CPAN' => '0.02',
513 'CGI' => '2.36',
514 'CGI::Apache' => '1.01',
515 'CGI::Carp' => '1.06',
516 'CGI::Fast' => '1.00a',
517 'CGI::Push' => '1.00',
518 'CGI::Switch' => '0.05',
519 'CPAN' => '1.2401',
b7c1f088 520 'CPAN::FirstTime' => '1.18',
a272bf38
DL
521 'CPAN::Nox' => undef,
522 'Class::Struct' => undef,
523 'Cwd' => '2.00',
524 'DB_File' => '1.14',
525 'DynaLoader' => '1.02',
526 'ExtUtils::Command' => '1.00',
527 'ExtUtils::Embed' => '1.2501',
b7c1f088
RS
528 'ExtUtils::Install' => '1.16',
529 'ExtUtils::Liblist' => '1.2201',
530 'ExtUtils::MM_Unix' => '1.114',
a272bf38
DL
531 'ExtUtils::MM_Win32' => undef,
532 'ExtUtils::MakeMaker' => '5.4002',
b7c1f088
RS
533 'ExtUtils::Manifest' => '1.33',
534 'ExtUtils::Mksymlists' => '1.13',
a272bf38
DL
535 'ExtUtils::XSSymSet' => '1.0',
536 'Fcntl' => '1.03',
537 'File::Basename' => '2.5',
538 'File::Compare' => '1.1001',
539 'File::Copy' => '2.02',
540 'File::Path' => '1.04',
541 'File::stat' => undef,
542 'FileHandle' => '2.00',
543 'Getopt::Long' => '2.10',
544 'IO::File' => '1.0602',
545 'IO::Handle' => '1.1504',
546 'IO::Pipe' => '1.0901',
547 'IO::Seekable' => '1.06',
548 'IO::Select' => '1.10',
549 'IO::Socket' => '1.1602',
550 'IPC::Open2' => '1.01',
551 'IPC::Open3' => '1.0101',
552 'Math::Complex' => '1.01',
553 'Math::Trig' => '1',
554 'Net::Ping' => '2.02',
555 'Net::hostent' => undef,
556 'Net::netent' => undef,
557 'Net::protoent' => undef,
558 'Net::servent' => undef,
559 'Opcode' => '1.04',
560 'POSIX' => '1.02',
561 'Pod::Html' => undef,
562 'Pod::Text' => '1.0203',
563 'SelfLoader' => '1.07',
564 'Socket' => '1.6',
565 'Symbol' => '1.02',
566 'Test::Harness' => '1.1502',
567 'Text::Tabs' => '96.121201',
568 'Text::Wrap' => '97.011701',
569 'Tie::RefHash' => undef,
570 'Time::gmtime' => '1.01',
571 'Time::localtime' => '1.01',
572 'Time::tm' => undef,
573 'User::grent' => undef,
574 'User::pwent' => undef,
575 'VMS::DCLsym' => '1.01',
576 'VMS::Stdio' => '2.02',
577 'autouse' => '1.01',
578 'blib' => undef,
579 'constant' => '1.00',
580 'locale' => undef,
581 'sigtrap' => '1.02',
582 'vmsish' => undef,
583 },
584 removed => {
585 'Fatal' => 1,
586 }
8f2fd531 587 },
a272bf38
DL
588 5.00405 => {
589 delta_from => 5.004,
590 changed => {
591 'AutoLoader' => '5.56',
592 'AutoSplit' => '1.0303',
593 'Bundle::CPAN' => '0.03',
594 'CGI' => '2.42',
595 'CGI::Apache' => '1.1',
596 'CGI::Carp' => '1.10',
597 'CGI::Cookie' => '1.06',
598 'CGI::Push' => '1.01',
599 'CGI::Switch' => '0.06',
600 'CPAN' => '1.40',
b7c1f088 601 'CPAN::FirstTime' => '1.30',
a272bf38
DL
602 'Cwd' => '2.01',
603 'DB_File' => '1.15',
604 'DynaLoader' => '1.03',
605 'ExtUtils::Command' => '1.01',
606 'ExtUtils::Embed' => '1.2505',
b7c1f088
RS
607 'ExtUtils::Install' => '1.28',
608 'ExtUtils::Liblist' => '1.25',
609 'ExtUtils::MM_Unix' => '1.118',
a272bf38 610 'ExtUtils::MakeMaker' => '5.42',
b7c1f088
RS
611 'ExtUtils::Mkbootstrap' => '1.14',
612 'ExtUtils::Mksymlists' => '1.16',
a272bf38
DL
613 'File::Basename' => '2.6',
614 'File::DosGlob' => undef,
615 'File::Path' => '1.0402',
616 'File::Spec' => '0.6',
617 'File::Spec::Mac' => '1.0',
618 'File::Spec::OS2' => undef,
619 'File::Spec::Unix' => undef,
620 'File::Spec::VMS' => undef,
621 'File::Spec::Win32' => undef,
622 'FindBin' => '1.41',
623 'Getopt::Long' => '2.19',
624 'IO::File' => '1.06021',
625 'IO::Socket' => '1.1603',
626 'IPC::Open3' => '1.0103',
627 'Math::Complex' => '1.25',
628 'NDBM_File' => '1.01',
629 'Pod::Html' => '1.0101',
630 'Pod::Text' => '1.0204',
631 'SelfLoader' => '1.08',
632 'Socket' => '1.7',
633 'Test' => '1.04',
634 'Test::Harness' => '1.1602',
635 'Text::ParseWords' => '3.1001',
636 'Text::Wrap' => '98.112902',
637 'Tie::Handle' => undef,
638 'attrs' => '0.1',
639 'base' => undef,
640 'blib' => '1.00',
641 're' => undef,
642 'strict' => '1.01',
643 },
644 removed => {
645 }
8f2fd531 646 },
a272bf38
DL
647 5.005 => {
648 delta_from => 5.00405,
649 changed => {
650 'AutoLoader' => undef,
651 'AutoSplit' => '1.0302',
652 'B' => undef,
653 'B::Asmdata' => undef,
654 'B::Assembler' => undef,
655 'B::Bblock' => undef,
656 'B::Bytecode' => undef,
657 'B::C' => undef,
658 'B::CC' => undef,
659 'B::Debug' => undef,
660 'B::Deparse' => '0.56',
661 'B::Disassembler' => undef,
662 'B::Lint' => undef,
663 'B::Showlex' => undef,
664 'B::Stackobj' => undef,
665 'B::Terse' => undef,
666 'B::Xref' => undef,
667 'CGI::Carp' => '1.101',
668 'CPAN' => '1.3901',
b7c1f088 669 'CPAN::FirstTime' => '1.29',
a272bf38
DL
670 'DB_File' => '1.60',
671 'Data::Dumper' => '2.09',
1549d03d 672 'Errno' => '1.09',
a272bf38 673 'ExtUtils::Installed' => '0.02',
b7c1f088 674 'ExtUtils::MM_Unix' => '1.12601',
a272bf38 675 'ExtUtils::MakeMaker' => '5.4301',
b7c1f088
RS
676 'ExtUtils::Mkbootstrap' => '1.13',
677 'ExtUtils::Mksymlists' => '1.17',
a272bf38
DL
678 'ExtUtils::Packlist' => '0.03',
679 'Fatal' => '1.02',
680 'File::Path' => '1.0401',
681 'Getopt::Long' => '2.17',
682 'IO::Handle' => '1.1505',
683 'IPC::Msg' => '1.00',
684 'IPC::Open3' => '1.0102',
685 'IPC::Semaphore' => '1.00',
686 'IPC::SysV' => '1.03',
687 'O' => undef,
688 'OS2::Process' => '0.2',
689 'Pod::Html' => '1.01',
690 'Pod::Text' => '1.0203',
691 'Text::ParseWords' => '3.1',
692 'Text::Wrap' => '97.02',
693 'Thread' => '1.0',
694 'Thread::Queue' => undef,
695 'Thread::Semaphore' => undef,
696 'Thread::Signal' => undef,
697 'Thread::Specific' => undef,
698 'Tie::Array' => '1.00',
699 'VMS::Stdio' => '2.1',
700 'attrs' => '1.0',
701 'fields' => '0.02',
702 're' => '0.02',
703 },
704 removed => {
705 'Bundle::CPAN' => 1,
706 }
8f2fd531 707 },
a272bf38
DL
708 5.00503 => {
709 delta_from => 5.005,
710 changed => {
711 'AutoSplit' => '1.0303',
712 'CGI' => '2.46',
713 'CGI::Carp' => '1.13',
714 'CGI::Fast' => '1.01',
715 'CPAN' => '1.48',
716 'CPAN::FirstTime' => '1.36',
717 'CPAN::Nox' => '1.00',
718 'DB_File' => '1.65',
719 'Data::Dumper' => '2.101',
720 'Dumpvalue' => undef,
1549d03d 721 'Errno' => '1.111',
a272bf38
DL
722 'ExtUtils::Install' => '1.28',
723 'ExtUtils::Liblist' => '1.25',
724 'ExtUtils::MM_Unix' => '1.12602',
725 'ExtUtils::MakeMaker' => '5.4302',
726 'ExtUtils::Manifest' => '1.33',
727 'ExtUtils::Mkbootstrap' => '1.14',
728 'ExtUtils::Mksymlists' => '1.17',
729 'ExtUtils::testlib' => '1.11',
730 'FindBin' => '1.42',
731 'Getopt::Long' => '2.19',
732 'Getopt::Std' => '1.01',
733 'IO::Pipe' => '1.0902',
734 'IPC::Open3' => '1.0103',
735 'Math::Complex' => '1.26',
736 'Test' => '1.122',
737 'Text::Wrap' => '98.112902',
738 },
739 removed => {
740 }
8f2fd531 741 },
ad91da88 742 5.00504 => {
a272bf38
DL
743 delta_from => 5.00503,
744 changed => {
b7c1f088 745 'CPAN::FirstTime' => '1.36',
a272bf38 746 'DB_File' => '1.807',
b7c1f088
RS
747 'ExtUtils::Install' => '1.28',
748 'ExtUtils::Liblist' => '1.25',
749 'ExtUtils::MM_Unix' => '1.12602',
750 'ExtUtils::Manifest' => '1.33',
a272bf38 751 'ExtUtils::Miniperl' => undef,
b7c1f088
RS
752 'ExtUtils::Mkbootstrap' => '1.14',
753 'ExtUtils::Mksymlists' => '1.17',
754 'ExtUtils::testlib' => '1.11',
a272bf38
DL
755 'File::Compare' => '1.1002',
756 'File::Spec' => '0.8',
757 'File::Spec::Functions' => undef,
758 'File::Spec::Mac' => undef,
759 'Getopt::Long' => '2.20',
760 'Pod::Html' => '1.02',
761 },
762 removed => {
763 }
ad91da88 764 },
a272bf38
DL
765 5.006 => {
766 delta_from => 5.00504,
767 changed => {
768 'AutoLoader' => '5.57',
769 'AutoSplit' => '1.0305',
770 'B::Deparse' => '0.59',
771 'B::Stash' => undef,
772 'Benchmark' => '1',
773 'ByteLoader' => '0.03',
774 'CGI' => '2.56',
775 'CGI::Apache' => undef,
776 'CGI::Carp' => '1.14',
777 'CGI::Cookie' => '1.12',
778 'CGI::Fast' => '1.02',
779 'CGI::Pretty' => '1.03',
780 'CGI::Switch' => undef,
781 'CPAN' => '1.52',
b7c1f088 782 'CPAN::FirstTime' => '1.38',
a272bf38
DL
783 'Carp::Heavy' => undef,
784 'Class::Struct' => '0.58',
785 'Cwd' => '2.02',
786 'DB' => '1.0',
787 'DB_File' => '1.72',
788 'Devel::DProf' => '20000000.00_00',
789 'Devel::Peek' => '1.00_01',
790 'DynaLoader' => '1.04',
791 'Exporter' => '5.562',
792 'Exporter::Heavy' => undef,
793 'ExtUtils::MM_Cygwin' => undef,
b7c1f088 794 'ExtUtils::MM_Unix' => '1.12603',
a272bf38
DL
795 'ExtUtils::MakeMaker' => '5.45',
796 'File::Copy' => '2.03',
797 'File::Glob' => '0.991',
798 'File::Path' => '1.0403',
799 'GDBM_File' => '1.03',
800 'Getopt::Long' => '2.23',
801 'Getopt::Std' => '1.02',
802 'IO' => '1.20',
803 'IO::Dir' => '1.03',
804 'IO::File' => '1.08',
805 'IO::Handle' => '1.21',
806 'IO::Pipe' => '1.121',
807 'IO::Poll' => '0.01',
808 'IO::Seekable' => '1.08',
809 'IO::Select' => '1.14',
810 'IO::Socket' => '1.26',
811 'IO::Socket::INET' => '1.25',
812 'IO::Socket::UNIX' => '1.20',
813 'JNI' => '0.01',
814 'JPL::AutoLoader' => undef,
815 'JPL::Class' => undef,
816 'JPL::Compile' => undef,
817 'NDBM_File' => '1.03',
818 'ODBM_File' => '1.02',
819 'OS2::DLL' => undef,
820 'POSIX' => '1.03',
821 'Pod::Checker' => '1.098',
822 'Pod::Find' => '0.12',
823 'Pod::Html' => '1.03',
824 'Pod::InputObjects' => '1.12',
825 'Pod::Man' => '1.02',
826 'Pod::ParseUtils' => '0.2',
827 'Pod::Parser' => '1.12',
828 'Pod::Plainer' => '0.01',
829 'Pod::Select' => '1.12',
830 'Pod::Text' => '2.03',
831 'Pod::Text::Color' => '0.05',
832 'Pod::Text::Termcap' => '0.04',
833 'Pod::Usage' => '1.12',
834 'SDBM_File' => '1.02',
835 'SelfLoader' => '1.0901',
836 'Shell' => '0.2',
837 'Socket' => '1.72',
838 'Sys::Hostname' => '1.1',
839 'Sys::Syslog' => '0.01',
840 'Term::ANSIColor' => '1.01',
841 'Test' => '1.13',
842 'Test::Harness' => '1.1604',
843 'Text::ParseWords' => '3.2',
844 'Text::Soundex' => '1.0',
845 'Text::Tabs' => '98.112801',
846 'Tie::Array' => '1.01',
847 'Tie::Handle' => '1.0',
848 'VMS::Stdio' => '2.2',
849 'XSLoader' => '0.01',
850 'attributes' => '0.03',
851 'autouse' => '1.02',
852 'base' => '1.01',
853 'bytes' => undef,
854 'charnames' => undef,
855 'constant' => '1.02',
856 'diagnostics' => '1.0',
857 'fields' => '1.01',
858 'filetest' => undef,
859 'lib' => '0.5564',
860 'open' => undef,
861 'utf8' => undef,
862 'warnings' => undef,
863 'warnings::register' => undef,
864 },
865 removed => {
866 }
8f2fd531 867 },
a272bf38
DL
868 5.006001 => {
869 delta_from => 5.006,
870 changed => {
871 'AutoLoader' => '5.58',
872 'B::Assembler' => '0.02',
873 'B::Concise' => '0.51',
874 'B::Deparse' => '0.6',
875 'ByteLoader' => '0.04',
876 'CGI' => '2.752',
877 'CGI::Carp' => '1.20',
878 'CGI::Cookie' => '1.18',
879 'CGI::Pretty' => '1.05',
880 'CGI::Push' => '1.04',
881 'CGI::Util' => '1.1',
882 'CPAN' => '1.59_54',
883 'CPAN::FirstTime' => '1.53',
884 'Class::Struct' => '0.59',
885 'Cwd' => '2.04',
886 'DB_File' => '1.75',
887 'Data::Dumper' => '2.102',
888 'ExtUtils::Install' => '1.28',
889 'ExtUtils::Liblist' => '1.26',
890 'ExtUtils::MM_Unix' => '1.12603',
891 'ExtUtils::Manifest' => '1.33',
892 'ExtUtils::Mkbootstrap' => '1.14',
893 'ExtUtils::Mksymlists' => '1.17',
894 'ExtUtils::testlib' => '1.11',
895 'File::Path' => '1.0404',
896 'File::Spec' => '0.82',
897 'File::Spec::Epoc' => undef,
898 'File::Spec::Functions' => '1.1',
899 'File::Spec::Mac' => '1.2',
900 'File::Spec::OS2' => '1.1',
901 'File::Spec::Unix' => '1.2',
902 'File::Spec::VMS' => '1.1',
903 'File::Spec::Win32' => '1.2',
904 'File::Temp' => '0.12',
905 'GDBM_File' => '1.05',
906 'Getopt::Long' => '2.25',
907 'IO::Poll' => '0.05',
908 'JNI' => '0.1',
909 'Math::BigFloat' => '0.02',
910 'Math::BigInt' => '0.01',
911 'Math::Complex' => '1.31',
912 'NDBM_File' => '1.04',
913 'ODBM_File' => '1.03',
914 'OS2::REXX' => '1.00',
915 'Pod::Checker' => '1.2',
916 'Pod::Find' => '0.21',
917 'Pod::InputObjects' => '1.13',
918 'Pod::LaTeX' => '0.53',
919 'Pod::Man' => '1.15',
920 'Pod::ParseUtils' => '0.22',
921 'Pod::Parser' => '1.13',
922 'Pod::Select' => '1.13',
923 'Pod::Text' => '2.08',
924 'Pod::Text::Color' => '0.06',
925 'Pod::Text::Overstrike' => '1.01',
926 'Pod::Text::Termcap' => '1',
927 'Pod::Usage' => '1.14',
928 'SDBM_File' => '1.03',
929 'SelfLoader' => '1.0902',
930 'Shell' => '0.3',
931 'Term::ANSIColor' => '1.03',
932 'Test' => '1.15',
933 'Text::Wrap' => '2001.0131',
934 'Tie::Handle' => '4.0',
935 'Tie::RefHash' => '1.3',
936 },
937 removed => {
938 }
8f2fd531
JB
939 },
940 5.006002 => {
a272bf38
DL
941 delta_from => 5.006001,
942 changed => {
b7c1f088 943 'CPAN::FirstTime' => '1.53',
a272bf38
DL
944 'DB_File' => '1.806',
945 'Data::Dumper' => '2.121',
946 'ExtUtils::Command' => '1.05',
947 'ExtUtils::Command::MM' => '0.03',
948 'ExtUtils::Install' => '1.32',
949 'ExtUtils::Installed' => '0.08',
950 'ExtUtils::Liblist' => '1.01',
951 'ExtUtils::Liblist::Kid'=> '1.3',
952 'ExtUtils::MM' => '0.04',
953 'ExtUtils::MM_Any' => '0.07',
954 'ExtUtils::MM_BeOS' => '1.04',
955 'ExtUtils::MM_Cygwin' => '1.06',
956 'ExtUtils::MM_DOS' => '0.02',
957 'ExtUtils::MM_MacOS' => '1.07',
958 'ExtUtils::MM_NW5' => '2.06',
959 'ExtUtils::MM_OS2' => '1.04',
960 'ExtUtils::MM_UWIN' => '0.02',
961 'ExtUtils::MM_Unix' => '1.42',
962 'ExtUtils::MM_VMS' => '5.70',
963 'ExtUtils::MM_Win32' => '1.09',
964 'ExtUtils::MM_Win95' => '0.03',
965 'ExtUtils::MY' => '0.01',
966 'ExtUtils::MakeMaker' => '6.17',
967 'ExtUtils::MakeMaker::bytes'=> '0.01',
968 'ExtUtils::MakeMaker::vmsish'=> '0.01',
969 'ExtUtils::Manifest' => '1.42',
970 'ExtUtils::Mkbootstrap' => '1.15',
971 'ExtUtils::Mksymlists' => '1.19',
972 'ExtUtils::Packlist' => '0.04',
973 'ExtUtils::testlib' => '1.15',
974 'File::Spec' => '0.86',
975 'File::Spec::Cygwin' => '1.1',
976 'File::Spec::Epoc' => '1.1',
977 'File::Spec::Functions' => '1.3',
978 'File::Spec::Mac' => '1.4',
979 'File::Spec::OS2' => '1.2',
980 'File::Spec::Unix' => '1.5',
981 'File::Spec::VMS' => '1.4',
982 'File::Spec::Win32' => '1.4',
983 'File::Temp' => '0.14',
984 'Safe' => '2.10',
985 'Test' => '1.24',
986 'Test::Builder' => '0.17',
987 'Test::Harness' => '2.30',
988 'Test::Harness::Assert' => '0.01',
989 'Test::Harness::Iterator'=> '0.01',
990 'Test::Harness::Straps' => '0.15',
991 'Test::More' => '0.47',
992 'Test::Simple' => '0.47',
993 'Unicode' => '3.0.1',
994 'if' => '0.03',
995 'ops' => '1.00',
996 },
997 removed => {
998 }
c595d054 999 },
a272bf38
DL
1000 5.007003 => {
1001 delta_from => 5.006001,
1002 changed => {
1003 'AnyDBM_File' => '1.00',
1004 'Attribute::Handlers' => '0.76',
1005 'AutoLoader' => '5.59',
1006 'AutoSplit' => '1.0307',
1007 'B' => '1.00',
1008 'B::Asmdata' => '1.00',
1009 'B::Assembler' => '0.04',
1010 'B::Bblock' => '1.00',
1011 'B::Bytecode' => '1.00',
1012 'B::C' => '1.01',
1013 'B::CC' => '1.00',
1014 'B::Concise' => '0.52',
1015 'B::Debug' => '1.00',
1016 'B::Deparse' => '0.63',
1017 'B::Disassembler' => '1.01',
1018 'B::Lint' => '1.00',
1019 'B::Showlex' => '1.00',
1020 'B::Stackobj' => '1.00',
1021 'B::Stash' => '1.00',
1022 'B::Terse' => '1.00',
1023 'B::Xref' => '1.00',
1024 'Benchmark' => '1.04',
1025 'CGI' => '2.80',
1026 'CGI::Apache' => '1.00',
1027 'CGI::Carp' => '1.22',
1028 'CGI::Cookie' => '1.20',
1029 'CGI::Fast' => '1.04',
1030 'CGI::Pretty' => '1.05_00',
1031 'CGI::Switch' => '1.00',
1032 'CGI::Util' => '1.3',
1033 'CPAN' => '1.59_56',
b7c1f088 1034 'CPAN::FirstTime' => '1.54',
a272bf38
DL
1035 'CPAN::Nox' => '1.00_01',
1036 'Carp' => '1.01',
e1f9e915 1037 'Carp::Heavy' => '1.01',
a272bf38
DL
1038 'Class::ISA' => '0.32',
1039 'Class::Struct' => '0.61',
1040 'Cwd' => '2.06',
1041 'DB_File' => '1.804',
1042 'Data::Dumper' => '2.12',
1043 'Devel::DProf' => '20000000.00_01',
1044 'Devel::PPPort' => '2.0002',
1045 'Devel::Peek' => '1.00_03',
1046 'Devel::SelfStubber' => '1.03',
1047 'Digest' => '1.00',
1048 'Digest::MD5' => '2.16',
1049 'DirHandle' => '1.00',
1050 'Dumpvalue' => '1.10',
1051 'Encode' => '0.40',
1052 'Encode::CN' => '0.02',
1053 'Encode::CN::HZ' => undef,
1054 'Encode::Encoding' => '0.02',
1055 'Encode::Internal' => '0.30',
1056 'Encode::JP' => '0.02',
1057 'Encode::JP::Constants' => '1.02',
1058 'Encode::JP::H2Z' => '0.77',
1059 'Encode::JP::ISO_2022_JP'=> undef,
1060 'Encode::JP::JIS' => undef,
1061 'Encode::JP::Tr' => '0.77',
1062 'Encode::KR' => '0.02',
1063 'Encode::TW' => '0.02',
1064 'Encode::Tcl' => '1.01',
1065 'Encode::Tcl::Escape' => '1.01',
1066 'Encode::Tcl::Extended' => '1.01',
1067 'Encode::Tcl::HanZi' => '1.01',
1068 'Encode::Tcl::Table' => '1.01',
1069 'Encode::Unicode' => '0.30',
1070 'Encode::XS' => '0.40',
1071 'Encode::iso10646_1' => '0.30',
1072 'Encode::usc2_le' => '0.30',
1073 'Encode::utf8' => '0.30',
1074 'English' => '1.00',
1075 'Env' => '1.00',
1076 'Exporter' => '5.566',
1077 'Exporter::Heavy' => '5.562',
1078 'ExtUtils::Command' => '1.02',
1079 'ExtUtils::Constant' => '0.11',
1080 'ExtUtils::Embed' => '1.250601',
1081 'ExtUtils::Install' => '1.29',
1082 'ExtUtils::Installed' => '0.04',
1083 'ExtUtils::Liblist' => '1.2701',
1084 'ExtUtils::MM_BeOS' => '1.00',
1085 'ExtUtils::MM_Cygwin' => '1.00',
1086 'ExtUtils::MM_OS2' => '1.00',
1087 'ExtUtils::MM_Unix' => '1.12607',
1088 'ExtUtils::MM_VMS' => '5.56',
1089 'ExtUtils::MM_Win32' => '1.00_02',
1090 'ExtUtils::MakeMaker' => '5.48_03',
1091 'ExtUtils::Manifest' => '1.35',
1092 'ExtUtils::Mkbootstrap' => '1.1401',
1093 'ExtUtils::Mksymlists' => '1.18',
1094 'ExtUtils::Packlist' => '0.04',
1095 'ExtUtils::testlib' => '1.1201',
1096 'Fatal' => '1.03',
1097 'Fcntl' => '1.04',
1098 'File::Basename' => '2.71',
1099 'File::CheckTree' => '4.1',
1100 'File::Compare' => '1.1003',
1101 'File::Copy' => '2.05',
1102 'File::DosGlob' => '1.00',
1103 'File::Find' => '1.04',
1104 'File::Glob' => '1.01',
1105 'File::Path' => '1.05',
1106 'File::Spec' => '0.83',
1107 'File::Spec::Cygwin' => '1.0',
1108 'File::Spec::Epoc' => '1.00',
1109 'File::Spec::Functions' => '1.2',
1110 'File::Spec::Mac' => '1.3',
1111 'File::Spec::Unix' => '1.4',
1112 'File::Spec::VMS' => '1.2',
1113 'File::Spec::Win32' => '1.3',
1114 'File::Temp' => '0.13',
1115 'File::stat' => '1.00',
1116 'FileCache' => '1.00',
1117 'FileHandle' => '2.01',
1118 'Filter::Simple' => '0.77',
1119 'Filter::Util::Call' => '1.06',
1120 'FindBin' => '1.43',
1121 'GDBM_File' => '1.06',
1122 'Getopt::Long' => '2.28',
1123 'Getopt::Std' => '1.03',
1124 'I18N::Collate' => '1.00',
1125 'I18N::LangTags' => '0.27',
1126 'I18N::LangTags::List' => '0.25',
1127 'I18N::Langinfo' => '0.01',
1128 'IO::Dir' => '1.03_00',
1129 'IO::File' => '1.09',
1130 'IO::Handle' => '1.21_00',
1131 'IO::Pipe' => '1.122',
1132 'IO::Poll' => '0.06',
1133 'IO::Seekable' => '1.08_00',
1134 'IO::Select' => '1.15',
1135 'IO::Socket' => '1.27',
1136 'IO::Socket::INET' => '1.26',
1137 'IO::Socket::UNIX' => '1.20_00',
1138 'IPC::Msg' => '1.00_00',
1139 'IPC::Open3' => '1.0104',
1140 'IPC::Semaphore' => '1.00_00',
1141 'IPC::SysV' => '1.03_00',
1142 'List::Util' => '1.06_00',
1143 'Locale::Constants' => '2.01',
1144 'Locale::Country' => '2.01',
1145 'Locale::Currency' => '2.01',
1146 'Locale::Language' => '2.01',
1147 'Locale::Maketext' => '1.03',
1148 'Locale::Script' => '2.01',
1149 'MIME::Base64' => '2.12',
1150 'MIME::QuotedPrint' => '2.03',
1151 'Math::BigFloat' => '1.30',
1152 'Math::BigInt' => '1.54',
1153 'Math::BigInt::Calc' => '0.25',
1154 'Math::Complex' => '1.34',
1155 'Math::Trig' => '1.01',
1156 'Memoize' => '0.66',
1157 'Memoize::AnyDBM_File' => '0.65',
1158 'Memoize::Expire' => '0.66',
1159 'Memoize::ExpireFile' => '0.65',
1160 'Memoize::ExpireTest' => '0.65',
1161 'Memoize::NDBM_File' => '0.65',
1162 'Memoize::SDBM_File' => '0.65',
1163 'Memoize::Storable' => '0.65',
1164 'NEXT' => '0.50',
1165 'Net::Cmd' => '2.21',
1166 'Net::Config' => '1.10',
1167 'Net::Domain' => '2.17',
1168 'Net::FTP' => '2.64',
1169 'Net::FTP::A' => '1.15',
1170 'Net::FTP::E' => '0.01',
1171 'Net::FTP::I' => '1.12',
1172 'Net::FTP::L' => '0.01',
1173 'Net::FTP::dataconn' => '0.10',
1174 'Net::NNTP' => '2.21',
1175 'Net::Netrc' => '2.12',
1176 'Net::POP3' => '2.23',
1177 'Net::Ping' => '2.12',
1178 'Net::SMTP' => '2.21',
1179 'Net::Time' => '2.09',
1180 'Net::hostent' => '1.00',
1181 'Net::netent' => '1.00',
1182 'Net::protoent' => '1.00',
1183 'Net::servent' => '1.00',
1184 'O' => '1.00',
1185 'OS2::DLL' => '1.00',
1186 'OS2::Process' => '1.0',
1187 'OS2::REXX' => '1.01',
1188 'Opcode' => '1.05',
1189 'POSIX' => '1.05',
1190 'PerlIO' => '1.00',
1191 'PerlIO::Scalar' => '0.01',
1192 'PerlIO::Via' => '0.01',
1193 'Pod::Checker' => '1.3',
1194 'Pod::Find' => '0.22',
1195 'Pod::Functions' => '1.01',
1196 'Pod::Html' => '1.04',
1197 'Pod::LaTeX' => '0.54',
1198 'Pod::Man' => '1.32',
1199 'Pod::ParseLink' => '1.05',
1200 'Pod::Text' => '2.18',
1201 'Pod::Text::Color' => '1.03',
1202 'Pod::Text::Overstrike' => '1.08',
1203 'Pod::Text::Termcap' => '1.09',
1204 'Safe' => '2.07',
6b27384d 1205 'Scalar::Util' => '1.06_00',
a272bf38
DL
1206 'Search::Dict' => '1.02',
1207 'SelectSaver' => '1.00',
1208 'SelfLoader' => '1.0903',
1209 'Shell' => '0.4',
1210 'Socket' => '1.75',
1211 'Storable' => '1.015',
1212 'Switch' => '2.06',
1213 'Symbol' => '1.04',
1214 'Sys::Syslog' => '0.02',
1215 'Term::ANSIColor' => '1.04',
1216 'Term::Cap' => '1.07',
1217 'Term::Complete' => '1.4',
1218 'Term::ReadLine' => '1.00',
1219 'Test' => '1.18',
1220 'Test::Builder' => '0.11',
1221 'Test::Harness' => '2.01',
1222 'Test::Harness::Assert' => '0.01',
1223 'Test::Harness::Iterator'=> '0.01',
1224 'Test::Harness::Straps' => '0.08',
1225 'Test::More' => '0.41',
1226 'Test::Simple' => '0.41',
1227 'Text::Abbrev' => '1.00',
1228 'Text::Balanced' => '1.89',
1229 'Text::ParseWords' => '3.21',
1230 'Text::Soundex' => '1.01',
1231 'Text::Wrap' => '2001.0929',
1232 'Thread' => '2.00',
1233 'Thread::Queue' => '1.00',
1234 'Thread::Semaphore' => '1.00',
1235 'Thread::Signal' => '1.00',
1236 'Thread::Specific' => '1.00',
1237 'Tie::Array' => '1.02',
1238 'Tie::File' => '0.17',
1239 'Tie::Handle' => '4.1',
1240 'Tie::Hash' => '1.00',
1241 'Tie::Memoize' => '1.0',
1242 'Tie::RefHash' => '1.3_00',
1243 'Tie::Scalar' => '1.00',
1244 'Tie::SubstrHash' => '1.00',
1245 'Time::HiRes' => '1.20_00',
1246 'Time::Local' => '1.04',
1247 'Time::gmtime' => '1.02',
1248 'Time::localtime' => '1.02',
1249 'Time::tm' => '1.00',
1250 'UNIVERSAL' => '1.00',
1251 'Unicode::Collate' => '0.10',
1252 'Unicode::Normalize' => '0.14',
1253 'Unicode::UCD' => '0.2',
1254 'User::grent' => '1.00',
1255 'User::pwent' => '1.00',
1256 'VMS::DCLsym' => '1.02',
1257 'VMS::Filespec' => '1.1',
1258 'VMS::Stdio' => '2.3',
1259 'XS::Typemap' => '0.01',
1260 'attributes' => '0.04_01',
1261 'attrs' => '1.01',
1262 'autouse' => '1.03',
1263 'base' => '1.02',
1264 'blib' => '1.01',
1265 'bytes' => '1.00',
1266 'charnames' => '1.01',
1267 'constant' => '1.04',
1268 'diagnostics' => '1.1',
1269 'encoding' => '1.00',
1270 'fields' => '1.02',
1271 'filetest' => '1.00',
1272 'if' => '0.01',
1273 'integer' => '1.00',
1274 'less' => '0.01',
1275 'locale' => '1.00',
1276 'open' => '1.01',
1277 'ops' => '1.00',
1278 'overload' => '1.00',
1279 're' => '0.03',
1280 'sort' => '1.00',
1281 'strict' => '1.02',
1282 'subs' => '1.00',
1283 'threads' => '0.05',
1284 'threads::shared' => '0.90',
1285 'utf8' => '1.00',
1286 'vars' => '1.01',
1287 'vmsish' => '1.00',
1288 'warnings' => '1.00',
1289 'warnings::register' => '1.00',
1290 },
1291 removed => {
a272bf38 1292 }
8f2fd531 1293 },
a272bf38
DL
1294 5.008 => {
1295 delta_from => 5.007003,
1296 changed => {
1297 'Attribute::Handlers' => '0.77',
1298 'B' => '1.01',
1299 'B::Lint' => '1.01',
1300 'B::Xref' => '1.01',
1301 'CGI' => '2.81',
1302 'CGI::Carp' => '1.23',
1303 'CPAN' => '1.61',
b7c1f088 1304 'CPAN::FirstTime' => '1.56',
a272bf38 1305 'CPAN::Nox' => '1.02',
a272bf38
DL
1306 'Digest::MD5' => '2.20',
1307 'Dumpvalue' => '1.11',
1308 'Encode' => '1.75',
1309 'Encode::Alias' => '1.32',
1310 'Encode::Byte' => '1.22',
1311 'Encode::CJKConstants' => '1.00',
1312 'Encode::CN' => '1.24',
1313 'Encode::CN::HZ' => '1.04',
1314 'Encode::Config' => '1.06',
1315 'Encode::EBCDIC' => '1.21',
1316 'Encode::Encoder' => '0.05',
1317 'Encode::Encoding' => '1.30',
1318 'Encode::Guess' => '1.06',
1319 'Encode::JP' => '1.25',
1320 'Encode::JP::H2Z' => '1.02',
1321 'Encode::JP::JIS7' => '1.08',
1322 'Encode::KR' => '1.22',
1323 'Encode::KR::2022_KR' => '1.05',
1324 'Encode::MIME::Header' => '1.05',
1325 'Encode::Symbol' => '1.22',
1326 'Encode::TW' => '1.26',
1327 'Encode::Unicode' => '1.37',
1328 'Exporter::Heavy' => '5.566',
1329 'ExtUtils::Command' => '1.04',
1330 'ExtUtils::Command::MM' => '0.01',
1331 'ExtUtils::Constant' => '0.12',
1332 'ExtUtils::Installed' => '0.06',
1333 'ExtUtils::Liblist' => '1.00',
1334 'ExtUtils::Liblist::Kid'=> '1.29',
1335 'ExtUtils::MM' => '0.04',
1336 'ExtUtils::MM_Any' => '0.04',
1337 'ExtUtils::MM_BeOS' => '1.03',
1338 'ExtUtils::MM_Cygwin' => '1.04',
1339 'ExtUtils::MM_DOS' => '0.01',
1340 'ExtUtils::MM_MacOS' => '1.03',
1341 'ExtUtils::MM_NW5' => '2.05',
1342 'ExtUtils::MM_OS2' => '1.03',
1343 'ExtUtils::MM_UWIN' => '0.01',
1344 'ExtUtils::MM_Unix' => '1.33',
1345 'ExtUtils::MM_VMS' => '5.65',
1346 'ExtUtils::MM_Win32' => '1.05',
1347 'ExtUtils::MM_Win95' => '0.02',
1348 'ExtUtils::MY' => '0.01',
1349 'ExtUtils::MakeMaker' => '6.03',
1350 'ExtUtils::Manifest' => '1.38',
1351 'ExtUtils::Mkbootstrap' => '1.15',
1352 'ExtUtils::Mksymlists' => '1.19',
1353 'ExtUtils::testlib' => '1.15',
1354 'File::CheckTree' => '4.2',
1355 'FileCache' => '1.021',
1356 'Filter::Simple' => '0.78',
1357 'Getopt::Long' => '2.32',
1358 'Hash::Util' => '0.04',
1359 'List::Util' => '1.07_00',
1360 'Locale::Country' => '2.04',
1361 'Math::BigFloat' => '1.35',
1362 'Math::BigFloat::Trace' => '0.01',
1363 'Math::BigInt' => '1.60',
1364 'Math::BigInt::Calc' => '0.30',
1365 'Math::BigInt::Trace' => '0.01',
1366 'Math::BigRat' => '0.07',
1367 'Memoize' => '1.01',
1368 'Memoize::Expire' => '1.00',
1369 'Memoize::ExpireFile' => '1.01',
1370 'Net::FTP' => '2.65',
1371 'Net::FTP::dataconn' => '0.11',
1372 'Net::Ping' => '2.19',
1373 'Net::SMTP' => '2.24',
1374 'PerlIO' => '1.01',
1375 'PerlIO::encoding' => '0.06',
1376 'PerlIO::scalar' => '0.01',
1377 'PerlIO::via' => '0.01',
1378 'PerlIO::via::QuotedPrint'=> '0.04',
1379 'Pod::Man' => '1.33',
1380 'Pod::Text' => '2.19',
6b27384d 1381 'Scalar::Util' => '1.07_00',
a272bf38
DL
1382 'Storable' => '2.04',
1383 'Switch' => '2.09',
1384 'Sys::Syslog' => '0.03',
1385 'Test' => '1.20',
1386 'Test::Builder' => '0.15',
1387 'Test::Harness' => '2.26',
1388 'Test::Harness::Straps' => '0.14',
1389 'Test::More' => '0.45',
1390 'Test::Simple' => '0.45',
1391 'Thread::Queue' => '2.00',
1392 'Thread::Semaphore' => '2.00',
1393 'Tie::File' => '0.93',
1394 'Tie::RefHash' => '1.30',
1395 'Unicode' => '3.2.0',
1396 'Unicode::Collate' => '0.12',
1397 'Unicode::Normalize' => '0.17',
1398 'XS::APItest' => '0.01',
1399 'attributes' => '0.05',
1400 'base' => '1.03',
1401 'bigint' => '0.02',
1402 'bignum' => '0.11',
1403 'bigrat' => '0.04',
1404 'blib' => '1.02',
1405 'encoding' => '1.35',
1406 'sort' => '1.01',
1407 'threads' => '0.99',
1408 },
1409 removed => {
1410 'Encode::Internal' => 1,
1411 'Encode::JP::Constants' => 1,
1412 'Encode::JP::ISO_2022_JP'=> 1,
1413 'Encode::JP::JIS' => 1,
1414 'Encode::JP::Tr' => 1,
1415 'Encode::Tcl' => 1,
1416 'Encode::Tcl::Escape' => 1,
1417 'Encode::Tcl::Extended' => 1,
1418 'Encode::Tcl::HanZi' => 1,
1419 'Encode::Tcl::Table' => 1,
1420 'Encode::XS' => 1,
1421 'Encode::iso10646_1' => 1,
1422 'Encode::usc2_le' => 1,
1423 'Encode::utf8' => 1,
1424 'PerlIO::Scalar' => 1,
1425 'PerlIO::Via' => 1,
1426 }
8f2fd531 1427 },
8f2fd531 1428 5.008001 => {
a272bf38
DL
1429 delta_from => 5.008,
1430 changed => {
1431 'Attribute::Handlers' => '0.78',
1432 'AutoLoader' => '5.60',
1433 'AutoSplit' => '1.04',
1434 'B' => '1.02',
1435 'B::Asmdata' => '1.01',
1436 'B::Assembler' => '0.06',
1437 'B::Bblock' => '1.02',
1438 'B::Bytecode' => '1.01',
1439 'B::C' => '1.02',
1440 'B::Concise' => '0.56',
1441 'B::Debug' => '1.01',
1442 'B::Deparse' => '0.64',
1443 'B::Disassembler' => '1.03',
1444 'B::Lint' => '1.02',
1445 'B::Terse' => '1.02',
1446 'Benchmark' => '1.051',
1447 'ByteLoader' => '0.05',
1448 'CGI' => '3.00',
1449 'CGI::Carp' => '1.26',
1450 'CGI::Cookie' => '1.24',
1451 'CGI::Fast' => '1.041',
1452 'CGI::Pretty' => '1.07_00',
1453 'CGI::Util' => '1.31',
1454 'CPAN' => '1.76_01',
b7c1f088 1455 'CPAN::FirstTime' => '1.60',
a272bf38 1456 'CPAN::Nox' => '1.03',
a272bf38
DL
1457 'Class::Struct' => '0.63',
1458 'Cwd' => '2.08',
1459 'DB_File' => '1.806',
1460 'Data::Dumper' => '2.121',
1461 'Devel::DProf' => '20030813.00',
1462 'Devel::PPPort' => '2.007',
1463 'Devel::Peek' => '1.01',
1464 'Digest' => '1.02',
1465 'Digest::MD5' => '2.27',
1466 'Encode' => '1.9801',
1467 'Encode::Alias' => '1.38',
1468 'Encode::Byte' => '1.23',
1469 'Encode::CJKConstants' => '1.02',
1470 'Encode::CN::HZ' => '1.05',
1471 'Encode::Config' => '1.07',
1472 'Encode::Encoder' => '0.07',
1473 'Encode::Encoding' => '1.33',
1474 'Encode::Guess' => '1.09',
1475 'Encode::JP::JIS7' => '1.12',
1476 'Encode::KR' => '1.23',
1477 'Encode::KR::2022_KR' => '1.06',
1478 'Encode::MIME::Header' => '1.09',
1479 'Encode::Unicode' => '1.40',
1480 'Encode::Unicode::UTF7' => '0.02',
1481 'English' => '1.01',
1482 'Errno' => '1.09_00',
1483 'Exporter' => '5.567',
1484 'Exporter::Heavy' => '5.567',
1485 'ExtUtils::Command' => '1.05',
1486 'ExtUtils::Command::MM' => '0.03',
1487 'ExtUtils::Constant' => '0.14',
1488 'ExtUtils::Install' => '1.32',
1489 'ExtUtils::Installed' => '0.08',
1490 'ExtUtils::Liblist' => '1.01',
1491 'ExtUtils::Liblist::Kid'=> '1.3',
1492 'ExtUtils::MM_Any' => '0.07',
1493 'ExtUtils::MM_BeOS' => '1.04',
1494 'ExtUtils::MM_Cygwin' => '1.06',
1495 'ExtUtils::MM_DOS' => '0.02',
1496 'ExtUtils::MM_MacOS' => '1.07',
1497 'ExtUtils::MM_NW5' => '2.06',
1498 'ExtUtils::MM_OS2' => '1.04',
1499 'ExtUtils::MM_UWIN' => '0.02',
1500 'ExtUtils::MM_Unix' => '1.42',
1501 'ExtUtils::MM_VMS' => '5.70',
1502 'ExtUtils::MM_Win32' => '1.09',
1503 'ExtUtils::MM_Win95' => '0.03',
1504 'ExtUtils::MakeMaker' => '6.17',
1505 'ExtUtils::MakeMaker::bytes'=> '0.01',
1506 'ExtUtils::MakeMaker::vmsish'=> '0.01',
1507 'ExtUtils::Manifest' => '1.42',
1508 'Fcntl' => '1.05',
1509 'File::Basename' => '2.72',
1510 'File::Copy' => '2.06',
1511 'File::Find' => '1.05',
1512 'File::Glob' => '1.02',
1513 'File::Path' => '1.06',
1514 'File::Spec' => '0.86',
1515 'File::Spec::Cygwin' => '1.1',
1516 'File::Spec::Epoc' => '1.1',
1517 'File::Spec::Functions' => '1.3',
1518 'File::Spec::Mac' => '1.4',
1519 'File::Spec::OS2' => '1.2',
1520 'File::Spec::Unix' => '1.5',
1521 'File::Spec::VMS' => '1.4',
1522 'File::Spec::Win32' => '1.4',
1523 'File::Temp' => '0.14',
1524 'FileCache' => '1.03',
1525 'Filter::Util::Call' => '1.0601',
1526 'GDBM_File' => '1.07',
1527 'Getopt::Long' => '2.34',
1528 'Getopt::Std' => '1.04',
1529 'Hash::Util' => '0.05',
1530 'I18N::LangTags' => '0.28',
1531 'I18N::LangTags::List' => '0.26',
1532 'I18N::Langinfo' => '0.02',
1533 'IO' => '1.21',
1534 'IO::Dir' => '1.04',
1535 'IO::File' => '1.10',
1536 'IO::Handle' => '1.23',
1537 'IO::Seekable' => '1.09',
1538 'IO::Select' => '1.16',
1539 'IO::Socket' => '1.28',
1540 'IO::Socket::INET' => '1.27',
1541 'IO::Socket::UNIX' => '1.21',
1542 'IPC::Msg' => '1.02',
1543 'IPC::Open3' => '1.0105',
1544 'IPC::Semaphore' => '1.02',
1545 'IPC::SysV' => '1.04',
1546 'JNI' => '0.2',
1547 'List::Util' => '1.13',
1548 'Locale::Country' => '2.61',
1549 'Locale::Currency' => '2.21',
1550 'Locale::Language' => '2.21',
1551 'Locale::Maketext' => '1.06',
1552 'Locale::Maketext::Guts'=> undef,
1553 'Locale::Maketext::GutsLoader'=> undef,
1554 'Locale::Script' => '2.21',
1555 'MIME::Base64' => '2.20',
1556 'MIME::QuotedPrint' => '2.20',
1557 'Math::BigFloat' => '1.40',
1558 'Math::BigInt' => '1.66',
1559 'Math::BigInt::Calc' => '0.36',
1560 'Math::BigInt::Scalar' => '0.11',
1561 'Math::BigRat' => '0.10',
1562 'Math::Trig' => '1.02',
1563 'NDBM_File' => '1.05',
1564 'NEXT' => '0.60',
1565 'Net::Cmd' => '2.24',
1566 'Net::Domain' => '2.18',
1567 'Net::FTP' => '2.71',
1568 'Net::FTP::A' => '1.16',
1569 'Net::NNTP' => '2.22',
1570 'Net::POP3' => '2.24',
1571 'Net::Ping' => '2.31',
1572 'Net::SMTP' => '2.26',
1573 'Net::hostent' => '1.01',
1574 'Net::servent' => '1.01',
1575 'ODBM_File' => '1.04',
1576 'OS2::DLL' => '1.01',
1577 'OS2::ExtAttr' => '0.02',
1578 'OS2::PrfDB' => '0.03',
1579 'OS2::Process' => '1.01',
1580 'OS2::REXX' => '1.02',
1581 'POSIX' => '1.06',
1582 'PerlIO' => '1.02',
1583 'PerlIO::encoding' => '0.07',
1584 'PerlIO::scalar' => '0.02',
1585 'PerlIO::via' => '0.02',
1586 'PerlIO::via::QuotedPrint'=> '0.05',
1587 'Pod::Checker' => '1.41',
1588 'Pod::Find' => '0.24',
1589 'Pod::Functions' => '1.02',
1590 'Pod::Html' => '1.0501',
1591 'Pod::InputObjects' => '1.14',
1592 'Pod::LaTeX' => '0.55',
1593 'Pod::Man' => '1.37',
1594 'Pod::ParseLink' => '1.06',
1595 'Pod::ParseUtils' => '0.3',
1596 'Pod::Perldoc' => '3.10',
1597 'Pod::Perldoc::BaseTo' => undef,
1598 'Pod::Perldoc::GetOptsOO'=> undef,
1599 'Pod::Perldoc::ToChecker'=> undef,
1600 'Pod::Perldoc::ToMan' => undef,
1601 'Pod::Perldoc::ToNroff' => undef,
1602 'Pod::Perldoc::ToPod' => undef,
1603 'Pod::Perldoc::ToRtf' => undef,
1604 'Pod::Perldoc::ToText' => undef,
4121f36a 1605 'Pod::Perldoc::ToTk' => undef,
a272bf38
DL
1606 'Pod::Perldoc::ToXml' => undef,
1607 'Pod::PlainText' => '2.01',
1608 'Pod::Text' => '2.21',
1609 'Pod::Text::Color' => '1.04',
1610 'Pod::Text::Overstrike' => '1.1',
1611 'Pod::Text::Termcap' => '1.11',
1612 'Pod::Usage' => '1.16',
1613 'SDBM_File' => '1.04',
1614 'Safe' => '2.10',
1615 'Scalar::Util' => '1.13',
1616 'SelfLoader' => '1.0904',
1617 'Shell' => '0.5',
1618 'Socket' => '1.76',
1619 'Storable' => '2.08',
1620 'Switch' => '2.10',
1621 'Symbol' => '1.05',
1622 'Sys::Hostname' => '1.11',
1623 'Sys::Syslog' => '0.04',
1624 'Term::ANSIColor' => '1.07',
1625 'Term::Cap' => '1.08',
1626 'Term::Complete' => '1.401',
1627 'Term::ReadLine' => '1.01',
1628 'Test' => '1.24',
1629 'Test::Builder' => '0.17',
1630 'Test::Harness' => '2.30',
1631 'Test::Harness::Straps' => '0.15',
1632 'Test::More' => '0.47',
1633 'Test::Simple' => '0.47',
1634 'Text::Abbrev' => '1.01',
1635 'Text::Balanced' => '1.95',
1636 'Text::Wrap' => '2001.09291',
1637 'Thread::Semaphore' => '2.01',
1638 'Tie::Array' => '1.03',
1639 'Tie::File' => '0.97',
1640 'Tie::RefHash' => '1.31',
1641 'Time::HiRes' => '1.51',
1642 'Time::Local' => '1.07',
1643 'UNIVERSAL' => '1.01',
1644 'Unicode' => '4.0.0',
1645 'Unicode::Collate' => '0.28',
1646 'Unicode::Normalize' => '0.23',
1647 'Unicode::UCD' => '0.21',
1648 'VMS::Filespec' => '1.11',
1649 'XS::APItest' => '0.02',
1650 'XSLoader' => '0.02',
1651 'attributes' => '0.06',
1652 'base' => '2.03',
1653 'bigint' => '0.04',
1654 'bignum' => '0.14',
1655 'bigrat' => '0.06',
1656 'bytes' => '1.01',
1657 'charnames' => '1.02',
1658 'diagnostics' => '1.11',
1659 'encoding' => '1.47',
1660 'fields' => '2.03',
1661 'filetest' => '1.01',
1662 'if' => '0.03',
1663 'lib' => '0.5565',
1664 'open' => '1.02',
1665 'overload' => '1.01',
1666 're' => '0.04',
1667 'sort' => '1.02',
1668 'strict' => '1.03',
1669 'threads' => '1.00',
1670 'threads::shared' => '0.91',
1671 'utf8' => '1.02',
1672 'vmsish' => '1.01',
1673 'warnings' => '1.03',
1674 },
1675 removed => {
1676 }
8f2fd531 1677 },
8f2fd531 1678 5.008002 => {
a272bf38
DL
1679 delta_from => 5.008001,
1680 changed => {
1681 'DB_File' => '1.807',
1682 'Devel::PPPort' => '2.009',
1683 'Digest::MD5' => '2.30',
1684 'I18N::LangTags' => '0.29',
1685 'I18N::LangTags::List' => '0.29',
1686 'MIME::Base64' => '2.21',
1687 'MIME::QuotedPrint' => '2.21',
1688 'Net::Domain' => '2.19',
1689 'Net::FTP' => '2.72',
1690 'Pod::Perldoc' => '3.11',
a272bf38
DL
1691 'Time::HiRes' => '1.52',
1692 'Unicode::Collate' => '0.30',
1693 'Unicode::Normalize' => '0.25',
1694 },
1695 removed => {
1696 }
8f2fd531 1697 },
ad91da88 1698 5.008003 => {
a272bf38
DL
1699 delta_from => 5.008002,
1700 changed => {
1701 'Benchmark' => '1.052',
1702 'CGI' => '3.01',
1703 'CGI::Carp' => '1.27',
1704 'CGI::Fast' => '1.05',
1705 'CGI::Pretty' => '1.08',
1706 'CGI::Util' => '1.4',
1707 'Cwd' => '2.12',
1708 'DB_File' => '1.808',
1709 'Devel::PPPort' => '2.011',
1710 'Digest' => '1.05',
1711 'Digest::MD5' => '2.33',
1712 'Digest::base' => '1.00',
1713 'Encode' => '1.99',
1714 'Exporter' => '5.57',
1715 'File::CheckTree' => '4.3',
1716 'File::Copy' => '2.07',
1717 'File::Find' => '1.06',
1718 'File::Spec' => '0.87',
1719 'FindBin' => '1.44',
1720 'Getopt::Std' => '1.05',
1721 'Math::BigFloat' => '1.42',
1722 'Math::BigInt' => '1.68',
1723 'Math::BigInt::Calc' => '0.38',
1724 'Math::BigInt::CalcEmu' => '0.02',
1725 'OS2::DLL' => '1.02',
1726 'POSIX' => '1.07',
1727 'PerlIO' => '1.03',
1728 'PerlIO::via::QuotedPrint'=> '0.06',
1729 'Pod::Html' => '1.0502',
1730 'Pod::Parser' => '1.14',
1731 'Pod::Perldoc' => '3.12',
a272bf38
DL
1732 'Pod::PlainText' => '2.02',
1733 'Storable' => '2.09',
1734 'Test::Harness' => '2.40',
1735 'Test::Harness::Assert' => '0.02',
1736 'Test::Harness::Iterator'=> '0.02',
1737 'Test::Harness::Straps' => '0.19',
1738 'Tie::Hash' => '1.01',
1739 'Unicode::Collate' => '0.33',
1740 'Unicode::Normalize' => '0.28',
1741 'XS::APItest' => '0.03',
1742 'base' => '2.04',
1743 'diagnostics' => '1.12',
1744 'encoding' => '1.48',
1745 'threads' => '1.01',
1746 'threads::shared' => '0.92',
1747 },
1748 removed => {
1749 'Math::BigInt::Scalar' => 1,
1750 }
8f2fd531
JB
1751 },
1752 5.008004 => {
a272bf38
DL
1753 delta_from => 5.008003,
1754 changed => {
1755 'Attribute::Handlers' => '0.78_01',
1756 'B::Assembler' => '0.07',
1757 'B::Concise' => '0.60',
1758 'B::Deparse' => '0.66',
1759 'Benchmark' => '1.06',
1760 'CGI' => '3.04',
1761 'Carp' => '1.02',
1762 'Cwd' => '2.17',
1763 'DBM_Filter' => '0.01',
1764 'DBM_Filter::compress' => '0.01',
1765 'DBM_Filter::encode' => '0.01',
1766 'DBM_Filter::int32' => '0.01',
1767 'DBM_Filter::null' => '0.01',
1768 'DBM_Filter::utf8' => '0.01',
1769 'Digest' => '1.06',
1770 'DynaLoader' => '1.05',
1771 'Encode' => '1.99_01',
1772 'Encode::CN::HZ' => '1.0501',
1773 'Exporter' => '5.58',
1774 'Exporter::Heavy' => '5.57',
1775 'ExtUtils::Liblist::Kid'=> '1.3001',
1776 'ExtUtils::MM_NW5' => '2.07_02',
1777 'ExtUtils::MM_Win95' => '0.0301',
1778 'File::Find' => '1.07',
1779 'IO::Handle' => '1.24',
1780 'IO::Pipe' => '1.123',
1781 'IPC::Open3' => '1.0106',
1782 'Locale::Maketext' => '1.08',
1783 'MIME::Base64' => '3.01',
1784 'MIME::QuotedPrint' => '3.01',
1785 'Math::BigFloat' => '1.44',
1786 'Math::BigInt' => '1.70',
1787 'Math::BigInt::Calc' => '0.40',
1788 'Math::BigInt::CalcEmu' => '0.04',
1789 'Math::BigRat' => '0.12',
1790 'ODBM_File' => '1.05',
1791 'POSIX' => '1.08',
1792 'Shell' => '0.5.2',
1793 'Socket' => '1.77',
1794 'Storable' => '2.12',
1795 'Sys::Syslog' => '0.05',
1796 'Term::ANSIColor' => '1.08',
1797 'Time::HiRes' => '1.59',
1798 'Unicode' => '4.0.1',
1799 'Unicode::UCD' => '0.22',
70c5bd90 1800 'Win32' => '0.23',
a272bf38
DL
1801 'base' => '2.05',
1802 'bigint' => '0.05',
1803 'bignum' => '0.15',
1804 'charnames' => '1.03',
1805 'open' => '1.03',
1806 'threads' => '1.03',
1807 'utf8' => '1.03',
1808 },
1809 removed => {
1810 }
8f2fd531 1811 },
ad91da88 1812 5.008005 => {
a272bf38
DL
1813 delta_from => 5.008004,
1814 changed => {
1815 'B::Concise' => '0.61',
1816 'B::Deparse' => '0.67',
1817 'CGI' => '3.05',
1818 'CGI::Carp' => '1.28',
1819 'CGI::Util' => '1.5',
1820 'Carp' => '1.03',
e1f9e915 1821 'Carp::Heavy' => '1.03',
a272bf38
DL
1822 'Cwd' => '2.19',
1823 'DB_File' => '1.809',
1824 'Digest' => '1.08',
1825 'Encode' => '2.01',
1826 'Encode::Alias' => '2.00',
1827 'Encode::Byte' => '2.00',
1828 'Encode::CJKConstants' => '2.00',
1829 'Encode::CN' => '2.00',
1830 'Encode::CN::HZ' => '2.01',
1831 'Encode::Config' => '2.00',
1832 'Encode::EBCDIC' => '2.00',
1833 'Encode::Encoder' => '2.00',
1834 'Encode::Encoding' => '2.00',
1835 'Encode::Guess' => '2.00',
1836 'Encode::JP' => '2.00',
1837 'Encode::JP::H2Z' => '2.00',
1838 'Encode::JP::JIS7' => '2.00',
1839 'Encode::KR' => '2.00',
1840 'Encode::KR::2022_KR' => '2.00',
1841 'Encode::MIME::Header' => '2.00',
1842 'Encode::Symbol' => '2.00',
1843 'Encode::TW' => '2.00',
1844 'Encode::Unicode' => '2.00',
1845 'Encode::Unicode::UTF7' => '2.01',
1846 'File::Basename' => '2.73',
1847 'File::Copy' => '2.08',
1848 'File::Glob' => '1.03',
1849 'FileCache' => '1.04_01',
1850 'I18N::LangTags' => '0.33',
1851 'I18N::LangTags::Detect'=> '1.03',
1852 'List::Util' => '1.14',
1853 'Locale::Constants' => '2.07',
1854 'Locale::Country' => '2.07',
1855 'Locale::Currency' => '2.07',
1856 'Locale::Language' => '2.07',
1857 'Locale::Maketext' => '1.09',
1858 'Locale::Script' => '2.07',
1859 'Net::Cmd' => '2.26',
1860 'Net::FTP' => '2.75',
1861 'Net::NNTP' => '2.23',
1862 'Net::POP3' => '2.28',
1863 'Net::SMTP' => '2.29',
1864 'Net::Time' => '2.10',
1865 'Pod::Checker' => '1.42',
1866 'Pod::Find' => '0.2401',
1867 'Pod::LaTeX' => '0.56',
1868 'Pod::ParseUtils' => '1.2',
1869 'Pod::Perldoc' => '3.13',
1870 'Safe' => '2.11',
1871 'Scalar::Util' => '1.14',
1872 'Shell' => '0.6',
1873 'Storable' => '2.13',
1874 'Term::Cap' => '1.09',
1875 'Test' => '1.25',
1876 'Test::Harness' => '2.42',
1877 'Text::ParseWords' => '3.22',
1878 'Text::Wrap' => '2001.09292',
1879 'Time::Local' => '1.10',
1880 'Unicode::Collate' => '0.40',
1881 'Unicode::Normalize' => '0.30',
1882 'XS::APItest' => '0.04',
1883 'autouse' => '1.04',
1884 'base' => '2.06',
1885 'charnames' => '1.04',
1886 'diagnostics' => '1.13',
1887 'encoding' => '2.00',
1888 'threads' => '1.05',
1889 'utf8' => '1.04',
1890 },
1891 removed => {
1892 }
8f2fd531
JB
1893 },
1894 5.008006 => {
a272bf38
DL
1895 delta_from => 5.008005,
1896 changed => {
1897 'B' => '1.07',
1898 'B::C' => '1.04',
1899 'B::Concise' => '0.64',
1900 'B::Debug' => '1.02',
1901 'B::Deparse' => '0.69',
1902 'B::Lint' => '1.03',
1903 'B::Showlex' => '1.02',
a272bf38
DL
1904 'Cwd' => '3.01',
1905 'DB_File' => '1.810',
1906 'Data::Dumper' => '2.121_02',
1907 'Devel::PPPort' => '3.03',
1908 'Devel::Peek' => '1.02',
1909 'Encode' => '2.08',
1910 'Encode::Alias' => '2.02',
1911 'Encode::Encoding' => '2.02',
1912 'Encode::JP' => '2.01',
1913 'Encode::Unicode' => '2.02',
1914 'Exporter::Heavy' => '5.58',
1915 'ExtUtils::Constant' => '0.1401',
1916 'File::Spec' => '3.01',
1917 'File::Spec::Win32' => '1.5',
1918 'I18N::LangTags' => '0.35',
1919 'I18N::LangTags::List' => '0.35',
1920 'MIME::Base64' => '3.05',
1921 'MIME::QuotedPrint' => '3.03',
1922 'Math::BigFloat' => '1.47',
1923 'Math::BigInt' => '1.73',
1924 'Math::BigInt::Calc' => '0.43',
1925 'Math::BigRat' => '0.13',
1926 'Text::ParseWords' => '3.23',
1927 'Time::HiRes' => '1.65',
1928 'XS::APItest' => '0.05',
1929 'diagnostics' => '1.14',
1930 'encoding' => '2.01',
1931 'open' => '1.04',
1932 'overload' => '1.02',
1933 },
1934 removed => {
1935 }
c9600ef6 1936 },
cda59a31 1937 5.008007 => {
a272bf38
DL
1938 delta_from => 5.008006,
1939 changed => {
1940 'B' => '1.09',
1941 'B::Concise' => '0.65',
1942 'B::Deparse' => '0.7',
1943 'B::Disassembler' => '1.04',
1944 'B::Terse' => '1.03',
1945 'Benchmark' => '1.07',
1946 'CGI' => '3.10',
1947 'CGI::Carp' => '1.29',
1948 'CGI::Cookie' => '1.25',
1949 'Carp' => '1.04',
1950 'Carp::Heavy' => '1.04',
1951 'Class::ISA' => '0.33',
1952 'Cwd' => '3.05',
1953 'DB_File' => '1.811',
1954 'Data::Dumper' => '2.121_04',
1955 'Devel::DProf' => '20050310.00',
1956 'Devel::PPPort' => '3.06',
1957 'Digest' => '1.10',
1958 'Digest::file' => '0.01',
1959 'Encode' => '2.10',
1960 'Encode::Alias' => '2.03',
1961 'Errno' => '1.09_01',
1962 'ExtUtils::Constant' => '0.16',
1963 'ExtUtils::Constant::Base'=> '0.01',
1964 'ExtUtils::Constant::Utils'=> '0.01',
1965 'ExtUtils::Constant::XS'=> '0.01',
1966 'File::Find' => '1.09',
1967 'File::Glob' => '1.04',
1968 'File::Path' => '1.07',
1969 'File::Spec' => '3.05',
1970 'File::Temp' => '0.16',
1971 'FileCache' => '1.05',
1972 'IO::File' => '1.11',
1973 'IO::Socket::INET' => '1.28',
1974 'Math::BigFloat' => '1.51',
1975 'Math::BigInt' => '1.77',
1976 'Math::BigInt::Calc' => '0.47',
1977 'Math::BigInt::CalcEmu' => '0.05',
1978 'Math::BigRat' => '0.15',
1979 'Pod::Find' => '1.3',
1980 'Pod::Html' => '1.0503',
1981 'Pod::InputObjects' => '1.3',
1982 'Pod::LaTeX' => '0.58',
1983 'Pod::ParseUtils' => '1.3',
1984 'Pod::Parser' => '1.3',
1985 'Pod::Perldoc' => '3.14',
a272bf38
DL
1986 'Pod::Select' => '1.3',
1987 'Pod::Usage' => '1.3',
1988 'SelectSaver' => '1.01',
1989 'Symbol' => '1.06',
1990 'Sys::Syslog' => '0.06',
1991 'Term::ANSIColor' => '1.09',
1992 'Term::Complete' => '1.402',
1993 'Test::Builder' => '0.22',
1994 'Test::Harness' => '2.48',
1995 'Test::Harness::Point' => '0.01',
1996 'Test::Harness::Straps' => '0.23',
1997 'Test::More' => '0.54',
1998 'Test::Simple' => '0.54',
1999 'Text::ParseWords' => '3.24',
2000 'Text::Wrap' => '2001.09293',
2001 'Tie::RefHash' => '1.32',
2002 'Time::HiRes' => '1.66',
2003 'Time::Local' => '1.11',
2004 'Unicode' => '4.1.0',
2005 'Unicode::Normalize' => '0.32',
2006 'Unicode::UCD' => '0.23',
2007 'Win32' => '0.24',
2008 'XS::APItest' => '0.06',
2009 'base' => '2.07',
2010 'bigint' => '0.07',
2011 'bignum' => '0.17',
2012 'bigrat' => '0.08',
2013 'bytes' => '1.02',
2014 'constant' => '1.05',
2015 'overload' => '1.03',
2016 'threads::shared' => '0.93',
2017 'utf8' => '1.05',
2018 },
2019 removed => {
2020 'JNI' => 1,
2021 'JPL::AutoLoader' => 1,
2022 'JPL::Class' => 1,
2023 'JPL::Compile' => 1,
a272bf38 2024 }
f372d768
RGS
2025 },
2026 5.008008 => {
a272bf38
DL
2027 delta_from => 5.008007,
2028 changed => {
2029 'Attribute::Handlers' => '0.78_02',
2030 'B' => '1.09_01',
2031 'B::Bblock' => '1.02_01',
2032 'B::Bytecode' => '1.01_01',
2033 'B::C' => '1.04_01',
2034 'B::CC' => '1.00_01',
2035 'B::Concise' => '0.66',
2036 'B::Debug' => '1.02_01',
2037 'B::Deparse' => '0.71',
2038 'B::Disassembler' => '1.05',
2039 'B::Terse' => '1.03_01',
2040 'ByteLoader' => '0.06',
2041 'CGI' => '3.15',
2042 'CGI::Cookie' => '1.26',
2043 'CPAN' => '1.76_02',
2044 'Cwd' => '3.12',
2045 'DB' => '1.01',
2046 'DB_File' => '1.814',
2047 'Data::Dumper' => '2.121_08',
2048 'Devel::DProf' => '20050603.00',
2049 'Devel::PPPort' => '3.06_01',
2050 'Devel::Peek' => '1.03',
2051 'Digest' => '1.14',
2052 'Digest::MD5' => '2.36',
2053 'Digest::file' => '1.00',
2054 'Dumpvalue' => '1.12',
2055 'Encode' => '2.12',
2056 'Encode::Alias' => '2.04',
2057 'Encode::Config' => '2.01',
2058 'Encode::MIME::Header' => '2.01',
2059 'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2060 'English' => '1.02',
2061 'ExtUtils::Command' => '1.09',
2062 'ExtUtils::Command::MM' => '0.05',
2063 'ExtUtils::Constant' => '0.17',
2064 'ExtUtils::Embed' => '1.26',
2065 'ExtUtils::Install' => '1.33',
2066 'ExtUtils::Liblist::Kid'=> '1.3',
2067 'ExtUtils::MM' => '0.05',
2068 'ExtUtils::MM_AIX' => '0.03',
2069 'ExtUtils::MM_Any' => '0.13',
2070 'ExtUtils::MM_BeOS' => '1.05',
2071 'ExtUtils::MM_Cygwin' => '1.08',
2072 'ExtUtils::MM_MacOS' => '1.08',
2073 'ExtUtils::MM_NW5' => '2.08',
2074 'ExtUtils::MM_OS2' => '1.05',
2075 'ExtUtils::MM_QNX' => '0.02',
2076 'ExtUtils::MM_Unix' => '1.50',
2077 'ExtUtils::MM_VMS' => '5.73',
2078 'ExtUtils::MM_VOS' => '0.02',
2079 'ExtUtils::MM_Win32' => '1.12',
2080 'ExtUtils::MM_Win95' => '0.04',
2081 'ExtUtils::MakeMaker' => '6.30',
2082 'ExtUtils::MakeMaker::Config'=> '0.02',
2083 'ExtUtils::Manifest' => '1.46',
2084 'File::Basename' => '2.74',
2085 'File::Copy' => '2.09',
2086 'File::Find' => '1.10',
2087 'File::Glob' => '1.05',
2088 'File::Path' => '1.08',
2089 'File::Spec' => '3.12',
2090 'File::Spec::Win32' => '1.6',
2091 'FileCache' => '1.06',
2092 'Filter::Simple' => '0.82',
2093 'FindBin' => '1.47',
2094 'GDBM_File' => '1.08',
2095 'Getopt::Long' => '2.35',
2096 'IO' => '1.22',
2097 'IO::Dir' => '1.05',
2098 'IO::File' => '1.13',
2099 'IO::Handle' => '1.25',
2100 'IO::Pipe' => '1.13',
2101 'IO::Poll' => '0.07',
2102 'IO::Seekable' => '1.10',
2103 'IO::Select' => '1.17',
2104 'IO::Socket' => '1.29',
2105 'IO::Socket::INET' => '1.29',
2106 'IO::Socket::UNIX' => '1.22',
2107 'IPC::Open2' => '1.02',
2108 'IPC::Open3' => '1.02',
2109 'List::Util' => '1.18',
2110 'MIME::Base64' => '3.07',
2111 'MIME::QuotedPrint' => '3.07',
2112 'Math::Complex' => '1.35',
2113 'Math::Trig' => '1.03',
2114 'NDBM_File' => '1.06',
2115 'ODBM_File' => '1.06',
78da2da6
CBW
2116 'OS2::PrfDB' => '0.04',
2117 'OS2::Process' => '1.02',
2118 'OS2::REXX' => '1.03',
a272bf38
DL
2119 'Opcode' => '1.06',
2120 'POSIX' => '1.09',
2121 'PerlIO' => '1.04',
2122 'PerlIO::encoding' => '0.09',
2123 'PerlIO::scalar' => '0.04',
2124 'PerlIO::via' => '0.03',
2125 'Pod::Checker' => '1.43',
2126 'Pod::Find' => '1.34',
2127 'Pod::Functions' => '1.03',
2128 'Pod::Html' => '1.0504',
2129 'Pod::ParseUtils' => '1.33',
2130 'Pod::Parser' => '1.32',
2131 'Pod::Usage' => '1.33',
2132 'SDBM_File' => '1.05',
2133 'Safe' => '2.12',
2134 'Scalar::Util' => '1.18',
2135 'Socket' => '1.78',
2136 'Storable' => '2.15',
2137 'Switch' => '2.10_01',
2138 'Sys::Syslog' => '0.13',
2139 'Term::ANSIColor' => '1.10',
2140 'Term::ReadLine' => '1.02',
2141 'Test::Builder' => '0.32',
2142 'Test::Builder::Module' => '0.02',
2143 'Test::Builder::Tester' => '1.02',
2144 'Test::Builder::Tester::Color'=> undef,
2145 'Test::Harness' => '2.56',
2146 'Test::Harness::Straps' => '0.26',
2147 'Test::More' => '0.62',
2148 'Test::Simple' => '0.62',
2149 'Text::Tabs' => '2005.0824',
2150 'Text::Wrap' => '2005.082401',
2151 'Tie::Hash' => '1.02',
2152 'Time::HiRes' => '1.86',
2153 'Unicode::Collate' => '0.52',
2154 'Unicode::UCD' => '0.24',
2155 'User::grent' => '1.01',
2156 'Win32' => '0.2601',
2157 'XS::APItest' => '0.08',
2158 'XS::Typemap' => '0.02',
2159 'XSLoader' => '0.06',
2160 'attrs' => '1.02',
2161 'autouse' => '1.05',
2162 'blib' => '1.03',
2163 'charnames' => '1.05',
2164 'diagnostics' => '1.15',
2165 'encoding' => '2.02',
2166 'if' => '0.05',
2167 'open' => '1.05',
2168 'ops' => '1.01',
2169 'overload' => '1.04',
2170 're' => '0.05',
2171 'threads' => '1.07',
2172 'threads::shared' => '0.94',
2173 'utf8' => '1.06',
2174 'vmsish' => '1.02',
2175 'warnings' => '1.05',
2176 'warnings::register' => '1.01',
2177 },
2178 removed => {
2179 }
2180 },
2181 5.008009 => {
2182 delta_from => 5.008008,
2183 changed => {
2184 'Attribute::Handlers' => '0.78_03',
2185 'AutoLoader' => '5.67',
2186 'AutoSplit' => '1.06',
2187 'B' => '1.19',
2188 'B::Asmdata' => '1.02',
2189 'B::Assembler' => '0.08',
2190 'B::C' => '1.05',
2191 'B::Concise' => '0.76',
2192 'B::Debug' => '1.05',
2193 'B::Deparse' => '0.87',
2194 'B::Lint' => '1.11',
2195 'B::Lint::Debug' => undef,
2196 'B::Terse' => '1.05',
2197 'Benchmark' => '1.1',
2198 'CGI' => '3.42',
2199 'CGI::Carp' => '1.30_01',
2200 'CGI::Cookie' => '1.29',
2201 'CGI::Fast' => '1.07',
2202 'CGI::Util' => '1.5_01',
2203 'CPAN' => '1.9301',
2204 'CPAN::Debug' => '5.5',
2205 'CPAN::DeferedCode' => '5.50',
2206 'CPAN::Distroprefs' => '6',
2207 'CPAN::FirstTime' => '5.5_01',
2208 'CPAN::HandleConfig' => '5.5',
2209 'CPAN::Kwalify' => '5.50',
2210 'CPAN::Nox' => '5.50',
2211 'CPAN::Queue' => '5.5',
2212 'CPAN::Tarzip' => '5.5',
2213 'CPAN::Version' => '5.5',
2214 'Carp' => '1.10',
2215 'Carp::Heavy' => '1.10',
2216 'Cwd' => '3.29',
2217 'DBM_Filter' => '0.02',
2218 'DBM_Filter::compress' => '0.02',
2219 'DBM_Filter::encode' => '0.02',
2220 'DBM_Filter::int32' => '0.02',
2221 'DBM_Filter::null' => '0.02',
2222 'DBM_Filter::utf8' => '0.02',
2223 'DB_File' => '1.817',
2224 'Data::Dumper' => '2.121_17',
2225 'Devel::DProf' => '20080331.00',
2226 'Devel::InnerPackage' => '0.3',
2227 'Devel::PPPort' => '3.14',
2228 'Devel::Peek' => '1.04',
2229 'Digest' => '1.15',
2230 'Digest::MD5' => '2.37',
2231 'DirHandle' => '1.02',
2232 'DynaLoader' => '1.09',
2233 'Encode' => '2.26',
2234 'Encode::Alias' => '2.10',
2235 'Encode::Byte' => '2.03',
2236 'Encode::CJKConstants' => '2.02',
2237 'Encode::CN' => '2.02',
2238 'Encode::CN::HZ' => '2.05',
2239 'Encode::Config' => '2.05',
2240 'Encode::EBCDIC' => '2.02',
2241 'Encode::Encoder' => '2.01',
2242 'Encode::Encoding' => '2.05',
2243 'Encode::GSM0338' => '2.01',
2244 'Encode::Guess' => '2.02',
2245 'Encode::JP' => '2.03',
2246 'Encode::JP::H2Z' => '2.02',
2247 'Encode::JP::JIS7' => '2.04',
2248 'Encode::KR' => '2.02',
2249 'Encode::KR::2022_KR' => '2.02',
2250 'Encode::MIME::Header' => '2.05',
2251 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2252 'Encode::MIME::Name' => '1.01',
2253 'Encode::Symbol' => '2.02',
2254 'Encode::TW' => '2.02',
2255 'Encode::Unicode' => '2.05',
2256 'Encode::Unicode::UTF7' => '2.04',
2257 'English' => '1.03',
2258 'Errno' => '1.10',
2259 'Exporter' => '5.63',
2260 'Exporter::Heavy' => '5.63',
2261 'ExtUtils::Command' => '1.15',
2262 'ExtUtils::Command::MM' => '6.48',
2263 'ExtUtils::Constant' => '0.21',
2264 'ExtUtils::Constant::Base'=> '0.04',
2265 'ExtUtils::Constant::ProxySubs'=> '0.06',
2266 'ExtUtils::Constant::Utils'=> '0.02',
2267 'ExtUtils::Constant::XS'=> '0.02',
2268 'ExtUtils::Embed' => '1.28',
2269 'ExtUtils::Install' => '1.50_01',
2270 'ExtUtils::Installed' => '1.43',
2271 'ExtUtils::Liblist' => '6.48',
2272 'ExtUtils::Liblist::Kid'=> '6.48',
2273 'ExtUtils::MM' => '6.48',
2274 'ExtUtils::MM_AIX' => '6.48',
2275 'ExtUtils::MM_Any' => '6.48',
2276 'ExtUtils::MM_BeOS' => '6.48',
2277 'ExtUtils::MM_Cygwin' => '6.48',
2278 'ExtUtils::MM_DOS' => '6.48',
2279 'ExtUtils::MM_Darwin' => '6.48',
2280 'ExtUtils::MM_MacOS' => '6.48',
2281 'ExtUtils::MM_NW5' => '6.48',
2282 'ExtUtils::MM_OS2' => '6.48',
2283 'ExtUtils::MM_QNX' => '6.48',
2284 'ExtUtils::MM_UWIN' => '6.48',
2285 'ExtUtils::MM_Unix' => '6.48',
2286 'ExtUtils::MM_VMS' => '6.48',
2287 'ExtUtils::MM_VOS' => '6.48',
2288 'ExtUtils::MM_Win32' => '6.48',
2289 'ExtUtils::MM_Win95' => '6.48',
2290 'ExtUtils::MY' => '6.48',
2291 'ExtUtils::MakeMaker' => '6.48',
2292 'ExtUtils::MakeMaker::Config'=> '6.48',
2293 'ExtUtils::MakeMaker::bytes'=> '6.48',
2294 'ExtUtils::MakeMaker::vmsish'=> '6.48',
2295 'ExtUtils::Manifest' => '1.55',
2296 'ExtUtils::Mkbootstrap' => '6.48',
2297 'ExtUtils::Mksymlists' => '6.48',
2298 'ExtUtils::Packlist' => '1.43',
2299 'ExtUtils::ParseXS' => '2.19',
2300 'ExtUtils::XSSymSet' => '1.1',
2301 'ExtUtils::testlib' => '6.48',
2302 'Fatal' => '1.06',
2303 'Fcntl' => '1.06',
2304 'File::Basename' => '2.77',
2305 'File::CheckTree' => '4.4',
2306 'File::Compare' => '1.1005',
2307 'File::Copy' => '2.13',
2308 'File::DosGlob' => '1.01',
2309 'File::Find' => '1.13',
2310 'File::Glob' => '1.06',
2311 'File::Path' => '2.07_02',
2312 'File::Spec' => '3.29',
2313 'File::Spec::Cygwin' => '3.29',
2314 'File::Spec::Epoc' => '3.29',
2315 'File::Spec::Functions' => '3.29',
2316 'File::Spec::Mac' => '3.29',
2317 'File::Spec::OS2' => '3.29',
2318 'File::Spec::Unix' => '3.29',
2319 'File::Spec::VMS' => '3.29',
2320 'File::Spec::Win32' => '3.29',
2321 'File::Temp' => '0.20',
2322 'File::stat' => '1.01',
2323 'FileCache' => '1.07',
2324 'Filter::Simple' => '0.83',
2325 'Filter::Util::Call' => '1.07',
2326 'FindBin' => '1.49',
2327 'GDBM_File' => '1.09',
2328 'Getopt::Long' => '2.37',
2329 'Getopt::Std' => '1.06',
2330 'Hash::Util' => '0.06',
2331 'IO' => '1.23',
2332 'IO::Dir' => '1.06',
2333 'IO::File' => '1.14',
2334 'IO::Handle' => '1.27',
2335 'IO::Socket' => '1.30',
2336 'IO::Socket::INET' => '1.31',
2337 'IO::Socket::UNIX' => '1.23',
2338 'IPC::Msg' => '2.00',
2339 'IPC::Open2' => '1.03',
2340 'IPC::Open3' => '1.03',
2341 'IPC::Semaphore' => '2.00',
2342 'IPC::SharedMem' => '2.00',
2343 'IPC::SysV' => '2.00',
2344 'List::Util' => '1.19',
2345 'Locale::Maketext' => '1.13',
2346 'Locale::Maketext::Guts'=> '1.13',
2347 'Locale::Maketext::GutsLoader'=> '1.13',
2348 'Math::BigFloat' => '1.60',
2349 'Math::BigInt' => '1.89',
2350 'Math::BigInt::Calc' => '0.52',
2351 'Math::BigRat' => '0.22',
2352 'Math::Complex' => '1.54',
2353 'Math::Trig' => '1.18',
2354 'Module::CoreList' => '2.17',
2355 'Module::Pluggable' => '3.8',
2356 'Module::Pluggable::Object'=> '3.6',
2357 'NDBM_File' => '1.07',
2358 'NEXT' => '0.61',
2359 'Net::Cmd' => '2.29',
2360 'Net::Config' => '1.11',
2361 'Net::Domain' => '2.20',
2362 'Net::FTP' => '2.77',
2363 'Net::FTP::A' => '1.18',
2364 'Net::NNTP' => '2.24',
2365 'Net::POP3' => '2.29',
2366 'Net::Ping' => '2.35',
2367 'Net::SMTP' => '2.31',
2368 'O' => '1.01',
2369 'ODBM_File' => '1.07',
78da2da6
CBW
2370 'OS2::DLL' => '1.03',
2371 'OS2::Process' => '1.03',
a272bf38
DL
2372 'Opcode' => '1.0601',
2373 'POSIX' => '1.15',
2374 'PerlIO' => '1.05',
2375 'PerlIO::encoding' => '0.11',
2376 'PerlIO::scalar' => '0.06',
2377 'PerlIO::via' => '0.05',
2378 'Pod::Html' => '1.09',
2379 'Pod::ParseUtils' => '1.35',
2380 'Pod::Parser' => '1.35',
2381 'Pod::Select' => '1.35',
2382 'Pod::Usage' => '1.35',
2383 'SDBM_File' => '1.06',
2384 'Safe' => '2.16',
2385 'Scalar::Util' => '1.19',
2386 'SelfLoader' => '1.17',
2387 'Shell' => '0.72',
2388 'Socket' => '1.81',
2389 'Storable' => '2.19',
2390 'Switch' => '2.13',
2391 'Sys::Syslog' => '0.27',
2392 'Sys::Syslog::win32::Win32'=> undef,
2393 'Term::ANSIColor' => '1.12',
2394 'Term::Cap' => '1.12',
2395 'Term::ReadLine' => '1.03',
2396 'Test::Builder' => '0.80',
2397 'Test::Builder::Module' => '0.80',
2398 'Test::Builder::Tester' => '1.13',
2399 'Test::Harness' => '2.64',
2400 'Test::Harness::Results'=> '0.01_01',
2401 'Test::Harness::Straps' => '0.26_01',
2402 'Test::Harness::Util' => '0.01',
2403 'Test::More' => '0.80',
2404 'Test::Simple' => '0.80',
2405 'Text::Balanced' => '1.98',
2406 'Text::ParseWords' => '3.27',
2407 'Text::Soundex' => '3.03',
2408 'Text::Tabs' => '2007.1117',
2409 'Text::Wrap' => '2006.1117',
2410 'Thread' => '2.01',
2411 'Thread::Queue' => '2.11',
2412 'Thread::Semaphore' => '2.09',
2413 'Tie::Handle' => '4.2',
2414 'Tie::Hash' => '1.03',
2415 'Tie::Memoize' => '1.1',
2416 'Tie::RefHash' => '1.38',
2417 'Tie::Scalar' => '1.01',
2418 'Tie::StdHandle' => '4.2',
2419 'Time::HiRes' => '1.9715',
2420 'Time::Local' => '1.1901',
2421 'Time::gmtime' => '1.03',
2422 'Unicode' => '5.1.0',
2423 'Unicode::Normalize' => '1.02',
2424 'Unicode::UCD' => '0.25',
2425 'VMS::DCLsym' => '1.03',
2426 'VMS::Stdio' => '2.4',
2427 'Win32' => '0.38',
2428 'Win32API::File' => '0.1001_01',
2429 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2430 'Win32CORE' => '0.02',
2431 'XS::APItest' => '0.15',
2432 'XS::Typemap' => '0.03',
2433 'XSLoader' => '0.10',
2434 'attributes' => '0.09',
2435 'autouse' => '1.06',
2436 'base' => '2.13',
2437 'bigint' => '0.23',
2438 'bignum' => '0.23',
2439 'bigrat' => '0.23',
2440 'blib' => '1.04',
2441 'charnames' => '1.06',
2442 'constant' => '1.17',
2443 'diagnostics' => '1.16',
2444 'encoding' => '2.6_01',
2445 'fields' => '2.12',
2446 'filetest' => '1.02',
2447 'lib' => '0.61',
2448 'open' => '1.06',
2449 'ops' => '1.02',
2450 'overload' => '1.06',
2451 're' => '0.0601',
2452 'sigtrap' => '1.04',
2453 'threads' => '1.71',
2454 'threads::shared' => '1.27',
2455 'utf8' => '1.07',
2456 'warnings' => '1.05_01',
2457 },
2458 removed => {
2459 }
2460 },
2461 5.009 => {
2462 delta_from => 5.008002,
2463 changed => {
2464 'B' => '1.03',
2465 'B::C' => '1.03',
2466 'B::Concise' => '0.57',
2467 'B::Deparse' => '0.65',
2468 'DB_File' => '1.806',
2469 'Devel::PPPort' => '2.008',
2470 'English' => '1.02',
2471 'Fatal' => '1.04',
2472 'OS2::DLL' => '1.02',
2473 'Opcode' => '1.06',
a272bf38
DL
2474 'Time::HiRes' => '1.51',
2475 'Unicode::Collate' => '0.28',
2476 'Unicode::Normalize' => '0.23',
2477 'XSLoader' => '0.03',
2478 'assertions' => '0.01',
2479 'assertions::activate' => '0.01',
2480 'overload' => '1.02',
2481 'version' => '0.29',
2482 },
2483 removed => {
2484 }
2485 },
2486 5.009001 => {
2487 delta_from => 5.008004,
2488 changed => {
2489 'B' => '1.05',
2490 'B::Assembler' => '0.06',
2491 'B::C' => '1.04',
2492 'B::Concise' => '0.59',
2493 'B::Debug' => '1.02',
2494 'B::Deparse' => '0.65',
2495 'DB_File' => '1.808_01',
2496 'Devel::PPPort' => '2.011_01',
2497 'Digest' => '1.05',
2498 'DynaLoader' => '1.04',
2499 'English' => '1.02',
2500 'Exporter::Heavy' => '5.567',
2501 'ExtUtils::Command' => '1.07',
2502 'ExtUtils::Liblist::Kid'=> '1.3',
2503 'ExtUtils::MM_Any' => '0.0901',
2504 'ExtUtils::MM_Cygwin' => '1.07',
2505 'ExtUtils::MM_NW5' => '2.07_01',
2506 'ExtUtils::MM_Unix' => '1.45_01',
2507 'ExtUtils::MM_VMS' => '5.71_01',
2508 'ExtUtils::MM_Win32' => '1.10_01',
2509 'ExtUtils::MM_Win95' => '0.03',
2510 'ExtUtils::MakeMaker' => '6.21_02',
2511 'ExtUtils::Manifest' => '1.43',
2512 'Fatal' => '1.04',
2513 'Getopt::Long' => '2.3401',
2514 'IO::Handle' => '1.23',
2515 'IO::Pipe' => '1.122',
2516 'IPC::Open3' => '1.0105',
2517 'MIME::Base64' => '3.00_01',
2518 'MIME::QuotedPrint' => '3.00',
2519 'Memoize' => '1.01_01',
2520 'ODBM_File' => '1.04',
2521 'Opcode' => '1.06',
2522 'POSIX' => '1.07',
2523 'Storable' => '2.11',
2524 'Time::HiRes' => '1.56',
2525 'Time::Local' => '1.07_94',
2526 'UNIVERSAL' => '1.02',
2527 'Unicode' => '4.0.0',
2528 'Unicode::UCD' => '0.21',
2529 'XSLoader' => '0.03',
2530 'assertions' => '0.01',
2531 'assertions::activate' => '0.01',
2532 'base' => '2.04',
2533 'if' => '0.0401',
2534 'open' => '1.02',
2535 'overload' => '1.02',
2536 'threads' => '1.02',
2537 'utf8' => '1.02',
2538 'version' => '0.36',
2539 },
2540 removed => {
2541 }
2542 },
2543 5.009002 => {
2544 delta_from => 5.008007,
2545 changed => {
2546 'B' => '1.07',
2547 'B::Concise' => '0.64',
2548 'B::Deparse' => '0.69',
2549 'B::Disassembler' => '1.03',
2550 'B::Terse' => '1.02',
2551 'CGI' => '3.07',
2552 'Config::Extensions' => '0.01',
2553 'Devel::DProf' => '20030813.00',
2554 'DynaLoader' => '1.07',
2555 'Encode' => '2.09',
2556 'Encode::Alias' => '2.02',
2557 'English' => '1.03',
2558 'Exporter' => '5.59',
2559 'Exporter::Heavy' => '5.59',
2560 'ExtUtils::Command' => '1.07',
2561 'ExtUtils::Command::MM' => '0.03_01',
2562 'ExtUtils::Embed' => '1.26',
2563 'ExtUtils::Liblist::Kid'=> '1.3',
2564 'ExtUtils::MM_Any' => '0.10',
2565 'ExtUtils::MM_Cygwin' => '1.07',
2566 'ExtUtils::MM_MacOS' => '1.08',
2567 'ExtUtils::MM_NW5' => '2.07',
2568 'ExtUtils::MM_Unix' => '1.46_01',
2569 'ExtUtils::MM_VMS' => '5.71',
2570 'ExtUtils::MM_Win32' => '1.10',
2571 'ExtUtils::MM_Win95' => '0.03',
2572 'ExtUtils::MakeMaker' => '6.25',
2573 'ExtUtils::Manifest' => '1.44',
2574 'Fatal' => '1.04',
2575 'File::Path' => '1.06',
2576 'FileCache' => '1.04_01',
2577 'Getopt::Long' => '2.3401',
2578 'IO::File' => '1.10',
2579 'IO::Socket::INET' => '1.27',
2580 'Math::BigFloat' => '1.49',
2581 'Math::BigInt' => '1.75',
2582 'Math::BigInt::Calc' => '0.45',
2583 'Math::BigRat' => '0.14',
2584 'Memoize' => '1.01_01',
2585 'Module::CoreList' => '1.99',
2586 'NEXT' => '0.60_01',
2587 'Opcode' => '1.06',
2588 'Pod::Html' => '1.0502',
2589 'Scalar::Util' => '1.14_1',
2590 'Storable' => '2.14',
2591 'Symbol' => '1.05',
2592 'Test::Harness' => '2.46',
2593 'Test::Harness::Straps' => '0.20_01',
2594 'Text::Balanced' => '1.95_01',
2595 'Text::Wrap' => '2001.09292',
2596 'UNIVERSAL' => '1.02',
2597 'Unicode' => '4.0.1',
2598 'Unicode::Normalize' => '0.30',
2599 'Unicode::UCD' => '0.22',
2600 'Win32' => '0.23',
2601 'XS::APItest' => '0.05',
2602 'XSLoader' => '0.03',
2603 'assertions' => '0.01',
2604 'assertions::activate' => '0.01',
2605 'base' => '2.06',
2606 'bigint' => '0.06',
2607 'bignum' => '0.16',
2608 'bigrat' => '0.07',
2609 'bytes' => '1.01',
2610 'encoding::warnings' => '0.05',
2611 'if' => '0.0401',
2612 're' => '0.05',
2613 'threads::shared' => '0.92',
2614 'utf8' => '1.04',
2615 'version' => '0.42',
2616 'warnings' => '1.04',
2617 },
2618 removed => {
2619 'Test::Harness::Point' => 1,
2620 }
2621 },
2622 5.009003 => {
2623 delta_from => 5.008008,
2624 changed => {
2625 'Archive::Tar' => '1.26_01',
2626 'Archive::Tar::Constant'=> '0.02',
2627 'Archive::Tar::File' => '0.02',
2628 'AutoSplit' => '1.04_01',
2629 'B' => '1.10',
2630 'B::Bblock' => '1.02',
2631 'B::Bytecode' => '1.01',
2632 'B::C' => '1.04',
2633 'B::CC' => '1.00',
2634 'B::Concise' => '0.67',
2635 'B::Debug' => '1.02',
2636 'B::Deparse' => '0.73',
2637 'B::Lint' => '1.04',
2638 'B::Terse' => '1.03',
2639 'CGI' => '3.15_01',
2640 'CPAN' => '1.83_58',
2641 'CPAN::Debug' => '4.44',
2642 'CPAN::FirstTime' => '4.50',
2643 'CPAN::HandleConfig' => '4.31',
2644 'CPAN::Nox' => '2.31',
2645 'CPAN::Tarzip' => '3.36',
2646 'CPAN::Version' => '2.55',
2647 'Carp' => '1.05',
2648 'Carp::Heavy' => '1.05',
2649 'Compress::Zlib' => '2.000_07',
2650 'Compress::Zlib::Common'=> '2.000_07',
2651 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2652 'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2653 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2654 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2655 'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2656 'Compress::Zlib::FileConstants'=> '2.000_07',
2657 'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2658 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2659 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2660 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2661 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2662 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2663 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2664 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2665 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2666 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2667 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2668 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2669 'Compress::Zlib::ParseParameters'=> '2.000_07',
2670 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2671 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2672 'Config::Extensions' => '0.01',
2673 'Cwd' => '3.15',
2674 'Devel::PPPort' => '3.08',
2675 'Digest::SHA' => '5.32',
2676 'DirHandle' => '1.01',
2677 'DynaLoader' => '1.07',
2678 'Encode' => '2.14',
2679 'Encode::CN::HZ' => '2.02',
2680 'Encode::MIME::Header' => '2.02',
2681 'English' => '1.04',
2682 'Exporter' => '5.59',
2683 'Exporter::Heavy' => '5.59',
2684 'ExtUtils::CBuilder' => '0.15',
2685 'ExtUtils::CBuilder::Base'=> '0.12',
2686 'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2687 'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2688 'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2689 'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2690 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2691 'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2692 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2693 'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2694 'ExtUtils::Command::MM' => '0.05_01',
2695 'ExtUtils::Constant' => '0.2',
2696 'ExtUtils::Constant::Base'=> '0.02',
2697 'ExtUtils::Constant::ProxySubs'=> '0.01',
2698 'ExtUtils::Constant::XS'=> '0.02',
2699 'ExtUtils::MM_Any' => '0.13_01',
2700 'ExtUtils::MM_Unix' => '1.50_01',
2701 'ExtUtils::MakeMaker' => '6.30_01',
2702 'ExtUtils::ParseXS' => '2.15_02',
2703 'Fatal' => '1.04',
2704 'File::Compare' => '1.1005',
2705 'File::Spec' => '3.15',
2706 'File::Temp' => '0.16_01',
2707 'IO::File' => '1.13_01',
2708 'IO::Handle' => '1.26',
2709 'IO::Socket' => '1.29_01',
2710 'IO::Socket::INET' => '1.29_02',
2711 'IO::Socket::UNIX' => '1.22_01',
2712 'IO::Zlib' => '1.04_02',
2713 'Locale::Maketext' => '1.10_01',
2714 'Math::BigInt::FastCalc'=> '0.10',
2715 'Memoize' => '1.01_01',
2716 'Module::CoreList' => '2.02',
2717 'Moped::Msg' => '0.01',
2718 'NEXT' => '0.60_01',
2719 'Net::Cmd' => '2.26_01',
2720 'Net::Domain' => '2.19_01',
2721 'Net::Ping' => '2.31_04',
2722 'Opcode' => '1.08',
2723 'POSIX' => '1.10',
2724 'Pod::Escapes' => '1.04',
2725 'Pod::Man' => '2.04',
2726 'Pod::Perldoc' => '3.14_01',
2727 'Pod::Simple' => '3.04',
2728 'Pod::Simple::BlackBox' => undef,
2729 'Pod::Simple::Checker' => '2.02',
2730 'Pod::Simple::Debug' => undef,
2731 'Pod::Simple::DumpAsText'=> '2.02',
2732 'Pod::Simple::DumpAsXML'=> '2.02',
2733 'Pod::Simple::HTML' => '3.03',
2734 'Pod::Simple::HTMLBatch'=> '3.02',
2735 'Pod::Simple::HTMLLegacy'=> '5.01',
2736 'Pod::Simple::LinkSection'=> undef,
2737 'Pod::Simple::Methody' => '2.02',
2738 'Pod::Simple::Progress' => '1.01',
2739 'Pod::Simple::PullParser'=> '2.02',
2740 'Pod::Simple::PullParserEndToken'=> undef,
2741 'Pod::Simple::PullParserStartToken'=> undef,
2742 'Pod::Simple::PullParserTextToken'=> undef,
2743 'Pod::Simple::PullParserToken'=> '2.02',
2744 'Pod::Simple::RTF' => '2.02',
2745 'Pod::Simple::Search' => '3.04',
2746 'Pod::Simple::SimpleTree'=> '2.02',
2747 'Pod::Simple::Text' => '2.02',
2748 'Pod::Simple::TextContent'=> '2.02',
2749 'Pod::Simple::TiedOutFH'=> undef,
2750 'Pod::Simple::Transcode'=> undef,
2751 'Pod::Simple::TranscodeDumb'=> '2.02',
2752 'Pod::Simple::TranscodeSmart'=> undef,
2753 'Pod::Simple::XMLOutStream'=> '2.02',
2754 'Pod::Text' => '3.01',
2755 'Pod::Text::Color' => '2.01',
2756 'Pod::Text::Overstrike' => '2',
2757 'Pod::Text::Termcap' => '2.01',
2758 'Pod::Usage' => '1.33_01',
2759 'SelfLoader' => '1.0905',
2760 'Storable' => '2.15_02',
2761 'Test::Builder::Module' => '0.03',
2762 'Text::Balanced' => '1.95_01',
2763 'Tie::File' => '0.97_01',
2764 'UNIVERSAL' => '1.03',
2765 'XS::APItest' => '0.09',
2766 'assertions' => '0.02',
2767 'assertions::activate' => '0.02',
2768 'assertions::compat' => undef,
2769 'constant' => '1.07',
2770 'encoding::warnings' => '0.05',
2771 'feature' => '1.00',
2772 're' => '0.06',
2773 'sort' => '2.00',
2774 'version' => '0.53',
2775 },
2776 removed => {
2777 }
f372d768 2778 },
16531488 2779 5.009004 => {
a272bf38
DL
2780 delta_from => 5.009003,
2781 changed => {
2782 'Archive::Tar' => '1.30_01',
2783 'AutoLoader' => '5.61',
2784 'B' => '1.11',
2785 'B::Bytecode' => '1.02',
2786 'B::C' => '1.05',
2787 'B::Concise' => '0.69',
2788 'B::Deparse' => '0.76',
2789 'B::Lint' => '1.08',
2790 'Benchmark' => '1.08',
2791 'CGI' => '3.20',
2792 'CGI::Cookie' => '1.27',
2793 'CGI::Fast' => '1.07',
2794 'CPAN' => '1.87_55',
2795 'CPAN::Debug' => '5.400561',
2796 'CPAN::FirstTime' => '5.400742',
2797 'CPAN::HandleConfig' => '5.400740',
2798 'CPAN::Nox' => '5.400561',
2799 'CPAN::Tarzip' => '5.400714',
2800 'CPAN::Version' => '5.400561',
2801 'Compress::Raw::Zlib' => '2.000_13',
2802 'Compress::Zlib' => '2.000_13',
2803 'Cwd' => '3.19',
2804 'Devel::PPPort' => '3.10',
2805 'Digest' => '1.15',
2806 'Digest::SHA' => '5.43',
2807 'Encode' => '2.18_01',
2808 'Encode::Alias' => '2.06',
2809 'Encode::Byte' => '2.02',
2810 'Encode::CJKConstants' => '2.02',
2811 'Encode::CN' => '2.02',
2812 'Encode::CN::HZ' => '2.04',
2813 'Encode::Config' => '2.03',
2814 'Encode::EBCDIC' => '2.02',
2815 'Encode::Encoder' => '2.01',
2816 'Encode::Encoding' => '2.04',
2817 'Encode::Guess' => '2.02',
2818 'Encode::JP' => '2.03',
2819 'Encode::JP::H2Z' => '2.02',
2820 'Encode::JP::JIS7' => '2.02',
2821 'Encode::KR' => '2.02',
2822 'Encode::KR::2022_KR' => '2.02',
2823 'Encode::MIME::Header' => '2.04',
2824 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2825 'Encode::Symbol' => '2.02',
2826 'Encode::TW' => '2.02',
2827 'Encode::Unicode' => '2.03',
2828 'Encode::Unicode::UTF7' => '2.04',
2829 'ExtUtils::CBuilder' => '0.18',
2830 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2831 'ExtUtils::Constant::Base'=> '0.03',
2832 'ExtUtils::Constant::ProxySubs'=> '0.03',
2833 'ExtUtils::Install' => '1.41',
2834 'ExtUtils::Installed' => '1.41',
2835 'ExtUtils::MM_Any' => '0.13_02',
2836 'ExtUtils::MM_NW5' => '2.08_01',
2837 'ExtUtils::MM_Unix' => '1.5003',
2838 'ExtUtils::MM_VMS' => '5.73_03',
2839 'ExtUtils::MM_Win32' => '1.12_02',
2840 'ExtUtils::MM_Win95' => '0.04_01',
2841 'ExtUtils::MakeMaker' => '6.30_02',
2842 'ExtUtils::Manifest' => '1.46_01',
2843 'ExtUtils::Mkbootstrap' => '1.15_01',
2844 'ExtUtils::Mksymlists' => '1.19_01',
2845 'ExtUtils::Packlist' => '1.41',
2846 'File::Basename' => '2.75',
2847 'File::Find' => '1.11',
2848 'File::GlobMapper' => '0.000_02',
2849 'File::Spec' => '3.19',
2850 'FileCache' => '1.07',
2851 'Getopt::Long' => '2.3501',
2852 'Hash::Util' => '0.07',
2853 'Hash::Util::FieldHash' => '0.01',
2854 'IO' => '1.23_01',
2855 'IO::Compress::Adapter::Deflate'=> '2.000_13',
2856 'IO::Compress::Adapter::Identity'=> '2.000_13',
2857 'IO::Compress::Base' => '2.000_13',
2858 'IO::Compress::Base::Common'=> '2.000_13',
2859 'IO::Compress::Deflate' => '2.000_13',
2860 'IO::Compress::Gzip' => '2.000_13',
2861 'IO::Compress::Gzip::Constants'=> '2.000_13',
2862 'IO::Compress::RawDeflate'=> '2.000_13',
2863 'IO::Compress::Zip' => '2.000_13',
2864 'IO::Compress::Zip::Constants'=> '2.000_13',
2865 'IO::Compress::Zlib::Constants'=> '2.000_13',
2866 'IO::Compress::Zlib::Extra'=> '2.000_13',
2867 'IO::Dir' => '1.06',
2868 'IO::File' => '1.14',
2869 'IO::Handle' => '1.27',
2870 'IO::Socket' => '1.30_01',
2871 'IO::Socket::INET' => '1.31',
2872 'IO::Socket::UNIX' => '1.23',
2873 'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2874 'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2875 'IO::Uncompress::AnyInflate'=> '2.000_13',
2876 'IO::Uncompress::AnyUncompress'=> '2.000_13',
2877 'IO::Uncompress::Base' => '2.000_13',
2878 'IO::Uncompress::Gunzip'=> '2.000_13',
2879 'IO::Uncompress::Inflate'=> '2.000_13',
2880 'IO::Uncompress::RawInflate'=> '2.000_13',
2881 'IO::Uncompress::Unzip' => '2.000_13',
2882 'MIME::Base64' => '3.07_01',
2883 'Math::Complex' => '1.36',
2884 'Math::Trig' => '1.04',
2885 'Module::Build' => '0.2805',
2886 'Module::Build::Base' => undef,
2887 'Module::Build::Compat' => '0.03',
2888 'Module::Build::ConfigData'=> undef,
2889 'Module::Build::Cookbook'=> undef,
2890 'Module::Build::ModuleInfo'=> undef,
2891 'Module::Build::Notes' => undef,
2892 'Module::Build::PPMMaker'=> undef,
2893 'Module::Build::Platform::Amiga'=> undef,
2894 'Module::Build::Platform::Default'=> undef,
2895 'Module::Build::Platform::EBCDIC'=> undef,
2896 'Module::Build::Platform::MPEiX'=> undef,
2897 'Module::Build::Platform::MacOS'=> undef,
2898 'Module::Build::Platform::RiscOS'=> undef,
2899 'Module::Build::Platform::Unix'=> undef,
2900 'Module::Build::Platform::VMS'=> undef,
2901 'Module::Build::Platform::VOS'=> undef,
2902 'Module::Build::Platform::Windows'=> undef,
2903 'Module::Build::Platform::aix'=> undef,
2904 'Module::Build::Platform::cygwin'=> undef,
2905 'Module::Build::Platform::darwin'=> undef,
2906 'Module::Build::Platform::os2'=> undef,
2907 'Module::Build::PodParser'=> undef,
2908 'Module::Build::Version'=> '0',
2909 'Module::Build::YAML' => '0.50',
2910 'Module::CoreList' => '2.08',
2911 'Module::Load' => '0.10',
2912 'Module::Loaded' => '0.01',
2913 'Package::Constants' => '0.01',
2914 'Pod::Html' => '1.07',
2915 'Pod::Man' => '2.09',
2916 'Pod::Text' => '3.07',
2917 'Pod::Text::Color' => '2.03',
2918 'Pod::Text::Termcap' => '2.03',
2919 'SDBM_File' => '1.06',
2920 'Shell' => '0.7',
2921 'Sys::Syslog' => '0.17',
2922 'Term::ANSIColor' => '1.11',
2923 'Test::Builder' => '0.33',
2924 'Test::Builder::Tester' => '1.04',
2925 'Test::Harness' => '2.62',
2926 'Test::Harness::Util' => '0.01',
2927 'Test::More' => '0.64',
2928 'Test::Simple' => '0.64',
2929 'Text::Balanced' => '1.98_01',
2930 'Text::ParseWords' => '3.25',
2931 'Text::Tabs' => '2007.071101',
2932 'Text::Wrap' => '2006.0711',
2933 'Tie::RefHash' => '1.34_01',
2934 'Time::HiRes' => '1.87',
2935 'Time::Local' => '1.13',
2936 'Time::gmtime' => '1.03',
2937 'UNIVERSAL' => '1.04',
2938 'Unicode::Normalize' => '1.01',
2939 'Win32API::File' => '0.1001',
2940 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2941 'assertions' => '0.03',
2942 'assertions::compat' => '0.02',
2943 'autouse' => '1.06',
2944 'diagnostics' => '1.16',
2945 'encoding' => '2.04',
2946 'encoding::warnings' => '0.10',
2947 'feature' => '1.01',
2948 're' => '0.0601',
2949 'threads' => '1.38',
2950 'threads::shared' => '0.94_01',
2951 'version' => '0.67',
2952 },
2953 removed => {
2954 'Compress::Zlib::Common'=> 1,
2955 'Compress::Zlib::Compress::Gzip::Constants'=> 1,
2956 'Compress::Zlib::Compress::Zip::Constants'=> 1,
2957 'Compress::Zlib::CompressPlugin::Deflate'=> 1,
2958 'Compress::Zlib::CompressPlugin::Identity'=> 1,
2959 'Compress::Zlib::File::GlobMapper'=> 1,
2960 'Compress::Zlib::FileConstants'=> 1,
2961 'Compress::Zlib::IO::Compress::Base'=> 1,
2962 'Compress::Zlib::IO::Compress::Deflate'=> 1,
2963 'Compress::Zlib::IO::Compress::Gzip'=> 1,
2964 'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
2965 'Compress::Zlib::IO::Compress::Zip'=> 1,
2966 'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
2967 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
2968 'Compress::Zlib::IO::Uncompress::Base'=> 1,
2969 'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
2970 'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
2971 'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
2972 'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
2973 'Compress::Zlib::ParseParameters'=> 1,
2974 'Compress::Zlib::UncompressPlugin::Identity'=> 1,
2975 'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
2976 }
16531488 2977 },
201a0ee1 2978 5.009005 => {
a272bf38
DL
2979 delta_from => 5.009004,
2980 changed => {
2981 'Archive::Extract' => '0.22_01',
2982 'Archive::Tar' => '1.32',
2983 'Attribute::Handlers' => '0.78_06',
2984 'AutoLoader' => '5.63',
2985 'AutoSplit' => '1.05',
2986 'B' => '1.16',
2987 'B::Concise' => '0.72',
2988 'B::Debug' => '1.05',
2989 'B::Deparse' => '0.82',
2990 'B::Lint' => '1.09',
2991 'B::Terse' => '1.05',
2992 'Benchmark' => '1.1',
2993 'CGI' => '3.29',
2994 'CGI::Cookie' => '1.28',
2995 'CGI::Util' => '1.5_01',
2996 'CPAN' => '1.9102',
2997 'CPAN::Debug' => '5.400955',
2998 'CPAN::FirstTime' => '5.401669',
2999 'CPAN::HandleConfig' => '5.401744',
3000 'CPAN::Kwalify' => '5.401418',
3001 'CPAN::Nox' => '5.400844',
3002 'CPAN::Queue' => '5.401704',
3003 'CPAN::Tarzip' => '5.401717',
3004 'CPAN::Version' => '5.401387',
3005 'CPANPLUS' => '0.81_01',
3006 'CPANPLUS::Backend' => undef,
3007 'CPANPLUS::Backend::RV' => undef,
3008 'CPANPLUS::Config' => undef,
3009 'CPANPLUS::Configure' => undef,
3010 'CPANPLUS::Configure::Setup'=> undef,
3011 'CPANPLUS::Dist' => undef,
3012 'CPANPLUS::Dist::Base' => '0.01',
3013 'CPANPLUS::Dist::Build' => '0.06_01',
3014 'CPANPLUS::Dist::Build::Constants'=> '0.01',
3015 'CPANPLUS::Dist::MM' => undef,
3016 'CPANPLUS::Dist::Sample'=> undef,
3017 'CPANPLUS::Error' => undef,
3018 'CPANPLUS::Internals' => '0.81_01',
3019 'CPANPLUS::Internals::Constants'=> '0.01',
3020 'CPANPLUS::Internals::Constants::Report'=> '0.01',
3021 'CPANPLUS::Internals::Extract'=> undef,
3022 'CPANPLUS::Internals::Fetch'=> undef,
3023 'CPANPLUS::Internals::Report'=> undef,
3024 'CPANPLUS::Internals::Search'=> undef,
3025 'CPANPLUS::Internals::Source'=> undef,
3026 'CPANPLUS::Internals::Utils'=> undef,
3027 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
3028 'CPANPLUS::Module' => undef,
3029 'CPANPLUS::Module::Author'=> undef,
3030 'CPANPLUS::Module::Author::Fake'=> undef,
3031 'CPANPLUS::Module::Checksums'=> undef,
3032 'CPANPLUS::Module::Fake'=> undef,
3033 'CPANPLUS::Module::Signature'=> undef,
3034 'CPANPLUS::Selfupdate' => undef,
3035 'CPANPLUS::Shell' => undef,
3036 'CPANPLUS::Shell::Classic'=> '0.0562',
3037 'CPANPLUS::Shell::Default'=> '0.81_01',
3038 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
3039 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
3040 'CPANPLUS::inc' => undef,
3041 'Carp' => '1.07',
3042 'Carp::Heavy' => '1.07',
3043 'Compress::Raw::Zlib' => '2.005',
3044 'Compress::Zlib' => '2.005',
3045 'Cwd' => '3.25',
3046 'DBM_Filter' => '0.02',
3047 'DB_File' => '1.815',
3048 'Data::Dumper' => '2.121_13',
3049 'Devel::InnerPackage' => '0.3',
3050 'Devel::PPPort' => '3.11_01',
3051 'Digest::MD5' => '2.36_01',
3052 'Digest::SHA' => '5.44',
3053 'DynaLoader' => '1.08',
3054 'Encode' => '2.23',
3055 'Encode::Alias' => '2.07',
3056 'Encode::Byte' => '2.03',
3057 'Encode::Config' => '2.04',
3058 'Encode::Encoding' => '2.05',
3059 'Encode::GSM0338' => '2.00',
3060 'Encode::JP::JIS7' => '2.03',
3061 'Encode::MIME::Header' => '2.05',
3062 'Encode::MIME::Name' => '1.01',
3063 'Encode::Unicode' => '2.05',
3064 'Errno' => '1.10',
3065 'Exporter' => '5.60',
3066 'Exporter::Heavy' => '5.60',
3067 'ExtUtils::CBuilder' => '0.19',
3068 'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3069 'ExtUtils::Command' => '1.13',
3070 'ExtUtils::Command::MM' => '0.07',
3071 'ExtUtils::Constant::Base'=> '0.04',
3072 'ExtUtils::Install' => '1.41_01',
3073 'ExtUtils::Liblist' => '1.03',
3074 'ExtUtils::Liblist::Kid'=> '1.33',
3075 'ExtUtils::MM' => '0.07',
3076 'ExtUtils::MM_AIX' => '0.05',
3077 'ExtUtils::MM_Any' => '0.15',
3078 'ExtUtils::MM_BeOS' => '1.07',
3079 'ExtUtils::MM_Cygwin' => '1.1',
3080 'ExtUtils::MM_DOS' => '0.04',
3081 'ExtUtils::MM_MacOS' => '1.1',
3082 'ExtUtils::MM_NW5' => '2.1',
3083 'ExtUtils::MM_OS2' => '1.07',
3084 'ExtUtils::MM_QNX' => '0.04',
3085 'ExtUtils::MM_UWIN' => '0.04',
3086 'ExtUtils::MM_Unix' => '1.54_01',
3087 'ExtUtils::MM_VMS' => '5.76',
3088 'ExtUtils::MM_VOS' => '0.04',
3089 'ExtUtils::MM_Win32' => '1.15',
3090 'ExtUtils::MM_Win95' => '0.06',
3091 'ExtUtils::MY' => '0.03',
3092 'ExtUtils::MakeMaker' => '6.36',
3093 'ExtUtils::MakeMaker::Config'=> '0.04',
3094 'ExtUtils::MakeMaker::bytes'=> '0.03',
3095 'ExtUtils::MakeMaker::vmsish'=> '0.03',
3096 'ExtUtils::Manifest' => '1.51_01',
3097 'ExtUtils::Mkbootstrap' => '1.17',
3098 'ExtUtils::Mksymlists' => '1.21',
3099 'ExtUtils::ParseXS' => '2.18',
3100 'ExtUtils::XSSymSet' => '1.1',
3101 'ExtUtils::testlib' => '1.17',
3102 'Fatal' => '1.05',
3103 'Fcntl' => '1.06',
3104 'File::Basename' => '2.76',
3105 'File::Copy' => '2.10',
3106 'File::Fetch' => '0.10',
3107 'File::Glob' => '1.06',
3108 'File::Path' => '2.01',
3109 'File::Spec' => '3.25',
3110 'File::Spec::Cygwin' => '1.1_01',
3111 'File::Spec::VMS' => '1.4_01',
3112 'File::Temp' => '0.18',
3113 'Filter::Util::Call' => '1.0602',
3114 'FindBin' => '1.49',
3115 'Getopt::Long' => '2.36',
3116 'Hash::Util::FieldHash' => '1.01',
3117 'IO::Compress::Adapter::Deflate'=> '2.005',
3118 'IO::Compress::Adapter::Identity'=> '2.005',
3119 'IO::Compress::Base' => '2.005',
3120 'IO::Compress::Base::Common'=> '2.005',
3121 'IO::Compress::Deflate' => '2.005',
3122 'IO::Compress::Gzip' => '2.005',
3123 'IO::Compress::Gzip::Constants'=> '2.005',
3124 'IO::Compress::RawDeflate'=> '2.005',
3125 'IO::Compress::Zip' => '2.005',
3126 'IO::Compress::Zip::Constants'=> '2.005',
3127 'IO::Compress::Zlib::Constants'=> '2.005',
3128 'IO::Compress::Zlib::Extra'=> '2.005',
3129 'IO::Uncompress::Adapter::Identity'=> '2.005',
3130 'IO::Uncompress::Adapter::Inflate'=> '2.005',
3131 'IO::Uncompress::AnyInflate'=> '2.005',
3132 'IO::Uncompress::AnyUncompress'=> '2.005',
3133 'IO::Uncompress::Base' => '2.005',
3134 'IO::Uncompress::Gunzip'=> '2.005',
3135 'IO::Uncompress::Inflate'=> '2.005',
3136 'IO::Uncompress::RawInflate'=> '2.005',
3137 'IO::Uncompress::Unzip' => '2.005',
3138 'IO::Zlib' => '1.05_01',
3139 'IPC::Cmd' => '0.36_01',
3140 'List::Util' => '1.19',
3141 'Locale::Maketext::Simple'=> '0.18',
3142 'Log::Message' => '0.01',
3143 'Log::Message::Config' => '0.01',
3144 'Log::Message::Handlers'=> undef,
3145 'Log::Message::Item' => undef,
3146 'Log::Message::Simple' => '0.0201',
3147 'Math::BigFloat' => '1.58',
3148 'Math::BigInt' => '1.87',
3149 'Math::BigInt::Calc' => '0.51',
3150 'Math::BigInt::FastCalc'=> '0.15_01',
3151 'Math::BigRat' => '0.19',
3152 'Math::Complex' => '1.37',
3153 'Memoize' => '1.01_02',
3154 'Module::Build' => '0.2808',
3155 'Module::Build::Config' => undef,
3156 'Module::Build::Version'=> '0.7203',
3157 'Module::CoreList' => '2.12',
3158 'Module::Load::Conditional'=> '0.16',
3159 'Module::Pluggable' => '3.6',
3160 'Module::Pluggable::Object'=> '3.6',
3161 'NDBM_File' => '1.07',
3162 'Net::Cmd' => '2.28',
3163 'Net::Config' => '1.11',
3164 'Net::Domain' => '2.20',
3165 'Net::FTP' => '2.77',
3166 'Net::FTP::A' => '1.18',
3167 'Net::NNTP' => '2.24',
3168 'Net::POP3' => '2.29',
3169 'Net::SMTP' => '2.31',
3170 'ODBM_File' => '1.07',
78da2da6 3171 'OS2::DLL' => '1.03',
a272bf38
DL
3172 'Object::Accessor' => '0.32',
3173 'Opcode' => '1.09',
3174 'POSIX' => '1.13',
3175 'Params::Check' => '0.26',
3176 'PerlIO::encoding' => '0.10',
3177 'PerlIO::scalar' => '0.05',
3178 'PerlIO::via' => '0.04',
3179 'Pod::Html' => '1.08',
3180 'Pod::Man' => '2.12',
3181 'Pod::ParseUtils' => '1.35',
3182 'Pod::Parser' => '1.35',
3183 'Pod::Select' => '1.35',
3184 'Pod::Simple' => '3.05',
3185 'Pod::Text' => '3.08',
3186 'Pod::Usage' => '1.35',
3187 'Scalar::Util' => '1.19',
3188 'SelfLoader' => '1.11',
3189 'Shell' => '0.72_01',
3190 'Socket' => '1.79',
3191 'Storable' => '2.16',
3192 'Switch' => '2.13',
3193 'Sys::Syslog' => '0.18_01',
3194 'Term::ANSIColor' => '1.12',
3195 'Term::UI' => '0.14_01',
3196 'Term::UI::History' => undef,
3197 'Test::Builder' => '0.70',
3198 'Test::Builder::Module' => '0.68',
3199 'Test::Builder::Tester' => '1.07',
3200 'Test::Harness' => '2.64',
3201 'Test::Harness::Results'=> '0.01',
3202 'Test::More' => '0.70',
3203 'Test::Simple' => '0.70',
3204 'Text::Balanced' => '2.0.0',
3205 'Text::Soundex' => '3.02',
3206 'Text::Tabs' => '2007.1117',
3207 'Text::Wrap' => '2006.1117',
3208 'Thread' => '3.02',
3209 'Tie::File' => '0.97_02',
3210 'Tie::Hash::NamedCapture'=> '0.06',
3211 'Tie::Memoize' => '1.1',
3212 'Tie::RefHash' => '1.37',
3213 'Time::HiRes' => '1.9707',
3214 'Time::Local' => '1.17',
3215 'Time::Piece' => '1.11_02',
3216 'Time::Seconds' => undef,
3217 'Unicode' => '5.0.0',
3218 'Unicode::Normalize' => '1.02',
3219 'Unicode::UCD' => '0.25',
3220 'VMS::DCLsym' => '1.03',
3221 'Win32' => '0.30',
3222 'Win32API::File' => '0.1001_01',
3223 'Win32CORE' => '0.02',
3224 'XS::APItest' => '0.12',
3225 'XSLoader' => '0.08',
3226 'attributes' => '0.08',
3227 'base' => '2.12',
3228 'bigint' => '0.22',
3229 'bignum' => '0.22',
3230 'bigrat' => '0.22',
3231 'bytes' => '1.03',
3232 'charnames' => '1.06',
3233 'constant' => '1.10',
3234 'diagnostics' => '1.17',
3235 'encoding' => '2.06',
3236 'encoding::warnings' => '0.11',
3237 'feature' => '1.10',
3238 'fields' => '2.12',
3239 'less' => '0.02',
3240 'mro' => '1.00',
3241 'overload' => '1.06',
3242 're' => '0.08',
3243 'sigtrap' => '1.04',
3244 'sort' => '2.01',
3245 'strict' => '1.04',
3246 'threads' => '1.63',
3247 'threads::shared' => '1.12',
3248 'utf8' => '1.07',
3249 'version' => '0.7203',
3250 'warnings' => '1.06',
3251 },
3252 removed => {
3253 'B::Asmdata' => 1,
3254 'B::Assembler' => 1,
3255 'B::Bblock' => 1,
3256 'B::Bytecode' => 1,
3257 'B::C' => 1,
3258 'B::CC' => 1,
3259 'B::Disassembler' => 1,
3260 'B::Stackobj' => 1,
3261 'B::Stash' => 1,
3262 'ByteLoader' => 1,
3263 'Thread::Signal' => 1,
3264 'Thread::Specific' => 1,
3265 'assertions' => 1,
3266 'assertions::activate' => 1,
3267 'assertions::compat' => 1,
3268 }
a3240fe5 3269 },
a272bf38
DL
3270 5.01 => {
3271 delta_from => 5.009005,
3272 changed => {
3273 'Archive::Extract' => '0.24',
3274 'Archive::Tar' => '1.38',
3275 'Attribute::Handlers' => '0.79',
3276 'B' => '1.17',
3277 'B::Concise' => '0.74',
3278 'B::Deparse' => '0.83',
3279 'CPAN' => '1.9205',
3280 'CPAN::API::HOWTO' => undef,
3281 'CPAN::Debug' => '5.402212',
3282 'CPAN::DeferedCode' => '5.50',
3283 'CPAN::FirstTime' => '5.402229',
3284 'CPAN::HandleConfig' => '5.402212',
3285 'CPAN::Nox' => '5.402411',
3286 'CPAN::Queue' => '5.402212',
3287 'CPAN::Tarzip' => '5.402213',
3288 'CPAN::Version' => '5.5',
3289 'CPANPLUS' => '0.84',
3290 'CPANPLUS::Dist::Build' => '0.06_02',
3291 'CPANPLUS::Internals' => '0.84',
3292 'CPANPLUS::Shell::Default'=> '0.84',
3293 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3294 'Carp' => '1.08',
3295 'Carp::Heavy' => '1.08',
3296 'Compress::Raw::Zlib' => '2.008',
3297 'Compress::Zlib' => '2.008',
3298 'Cwd' => '3.2501',
3299 'DB_File' => '1.816_1',
3300 'Data::Dumper' => '2.121_14',
3301 'Devel::PPPort' => '3.13',
3302 'Digest::SHA' => '5.45',
3303 'Exporter' => '5.62',
3304 'Exporter::Heavy' => '5.62',
3305 'ExtUtils::CBuilder' => '0.21',
3306 'ExtUtils::CBuilder::Base'=> '0.21',
3307 'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3308 'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3309 'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3310 'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3311 'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3312 'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3313 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3314 'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3315 'ExtUtils::Command::MM' => '6.42',
3316 'ExtUtils::Constant::ProxySubs'=> '0.05',
3317 'ExtUtils::Embed' => '1.27',
3318 'ExtUtils::Install' => '1.44',
3319 'ExtUtils::Installed' => '1.43',
3320 'ExtUtils::Liblist' => '6.42',
3321 'ExtUtils::Liblist::Kid'=> '6.42',
3322 'ExtUtils::MM' => '6.42',
3323 'ExtUtils::MM_AIX' => '6.42',
3324 'ExtUtils::MM_Any' => '6.42',
3325 'ExtUtils::MM_BeOS' => '6.42',
3326 'ExtUtils::MM_Cygwin' => '6.42',
3327 'ExtUtils::MM_DOS' => '6.42',
3328 'ExtUtils::MM_MacOS' => '6.42',
3329 'ExtUtils::MM_NW5' => '6.42',
3330 'ExtUtils::MM_OS2' => '6.42',
3331 'ExtUtils::MM_QNX' => '6.42',
3332 'ExtUtils::MM_UWIN' => '6.42',
3333 'ExtUtils::MM_Unix' => '6.42',
3334 'ExtUtils::MM_VMS' => '6.42',
3335 'ExtUtils::MM_VOS' => '6.42',
3336 'ExtUtils::MM_Win32' => '6.42',
3337 'ExtUtils::MM_Win95' => '6.42',
3338 'ExtUtils::MY' => '6.42',
3339 'ExtUtils::MakeMaker' => '6.42',
3340 'ExtUtils::MakeMaker::Config'=> '6.42',
3341 'ExtUtils::MakeMaker::bytes'=> '6.42',
3342 'ExtUtils::MakeMaker::vmsish'=> '6.42',
3343 'ExtUtils::Mkbootstrap' => '6.42',
3344 'ExtUtils::Mksymlists' => '6.42',
3345 'ExtUtils::Packlist' => '1.43',
3346 'ExtUtils::ParseXS' => '2.18_02',
3347 'ExtUtils::testlib' => '6.42',
3348 'File::Copy' => '2.11',
3349 'File::Fetch' => '0.14',
3350 'File::Find' => '1.12',
3351 'File::Path' => '2.04',
3352 'File::Spec' => '3.2501',
3353 'File::Spec::Cygwin' => '3.2501',
3354 'File::Spec::Epoc' => '3.2501',
3355 'File::Spec::Functions' => '3.2501',
3356 'File::Spec::Mac' => '3.2501',
3357 'File::Spec::OS2' => '3.2501',
3358 'File::Spec::Unix' => '3.2501',
3359 'File::Spec::VMS' => '3.2501',
3360 'File::Spec::Win32' => '3.2501',
3361 'Filter::Util::Call' => '1.07',
3362 'Getopt::Long' => '2.37',
3363 'Hash::Util::FieldHash' => '1.03',
3364 'IO::Compress::Adapter::Deflate'=> '2.008',
3365 'IO::Compress::Adapter::Identity'=> '2.008',
3366 'IO::Compress::Base' => '2.008',
3367 'IO::Compress::Base::Common'=> '2.008',
3368 'IO::Compress::Deflate' => '2.008',
3369 'IO::Compress::Gzip' => '2.008',
3370 'IO::Compress::Gzip::Constants'=> '2.008',
3371 'IO::Compress::RawDeflate'=> '2.008',
3372 'IO::Compress::Zip' => '2.008',
3373 'IO::Compress::Zip::Constants'=> '2.008',
3374 'IO::Compress::Zlib::Constants'=> '2.008',
3375 'IO::Compress::Zlib::Extra'=> '2.008',
3376 'IO::Uncompress::Adapter::Identity'=> '2.008',
3377 'IO::Uncompress::Adapter::Inflate'=> '2.008',
3378 'IO::Uncompress::AnyInflate'=> '2.008',
3379 'IO::Uncompress::AnyUncompress'=> '2.008',
3380 'IO::Uncompress::Base' => '2.008',
3381 'IO::Uncompress::Gunzip'=> '2.008',
3382 'IO::Uncompress::Inflate'=> '2.008',
3383 'IO::Uncompress::RawInflate'=> '2.008',
3384 'IO::Uncompress::Unzip' => '2.008',
3385 'IO::Zlib' => '1.07',
3386 'IPC::Cmd' => '0.40_1',
3387 'IPC::SysV' => '1.05',
3388 'Locale::Maketext' => '1.12',
3389 'Log::Message::Simple' => '0.04',
3390 'Math::BigFloat' => '1.59',
3391 'Math::BigInt' => '1.88',
3392 'Math::BigInt::Calc' => '0.52',
3393 'Math::BigInt::FastCalc'=> '0.16',
3394 'Math::BigRat' => '0.21',
3395 'Module::Build' => '0.2808_01',
3396 'Module::Build::Base' => '0.2808_01',
3397 'Module::Build::Compat' => '0.2808_01',
3398 'Module::Build::Config' => '0.2808_01',
3399 'Module::Build::Dumper' => undef,
3400 'Module::Build::ModuleInfo'=> '0.2808_01',
3401 'Module::Build::Notes' => '0.2808_01',
3402 'Module::Build::PPMMaker'=> '0.2808_01',
3403 'Module::Build::Platform::Amiga'=> '0.2808_01',
3404 'Module::Build::Platform::Default'=> '0.2808_01',
3405 'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3406 'Module::Build::Platform::MPEiX'=> '0.2808_01',
3407 'Module::Build::Platform::MacOS'=> '0.2808_01',
3408 'Module::Build::Platform::RiscOS'=> '0.2808_01',
3409 'Module::Build::Platform::Unix'=> '0.2808_01',
3410 'Module::Build::Platform::VMS'=> '0.2808_01',
3411 'Module::Build::Platform::VOS'=> '0.2808_01',
3412 'Module::Build::Platform::Windows'=> '0.2808_01',
3413 'Module::Build::Platform::aix'=> '0.2808_01',
3414 'Module::Build::Platform::cygwin'=> '0.2808_01',
3415 'Module::Build::Platform::darwin'=> '0.2808_01',
3416 'Module::Build::Platform::os2'=> '0.2808_01',
3417 'Module::Build::PodParser'=> '0.2808_01',
3418 'Module::CoreList' => '2.13',
3419 'Module::Load' => '0.12',
3420 'Module::Load::Conditional'=> '0.22',
3421 'Net::Cmd' => '2.29',
3422 'Net::Ping' => '2.33',
3423 'Opcode' => '1.11',
3424 'Pod::Checker' => '1.43_01',
3425 'Pod::Man' => '2.16',
3426 'Pod::Perldoc' => '3.14_02',
3427 'Socket' => '1.80',
3428 'Storable' => '2.18',
3429 'Sys::Syslog' => '0.22',
3430 'Sys::Syslog::win32::Win32'=> undef,
3431 'Term::Cap' => '1.12',
3432 'Term::ReadLine' => '1.03',
3433 'Term::UI' => '0.18',
3434 'Test::Builder' => '0.72',
3435 'Test::Builder::Module' => '0.72',
3436 'Test::Builder::Tester' => '1.09',
3437 'Test::Harness::Straps' => '0.26_01',
3438 'Test::More' => '0.72',
3439 'Test::Simple' => '0.72',
3440 'Text::ParseWords' => '3.26',
3441 'Text::Soundex' => '3.03',
3442 'Tie::StdHandle' => undef,
3443 'Time::HiRes' => '1.9711',
3444 'Time::Local' => '1.18',
3445 'Time::Piece' => '1.12',
3446 'VMS::Filespec' => '1.12',
3447 'Win32' => '0.34',
3448 'base' => '2.13',
3449 'constant' => '1.13',
3450 'feature' => '1.11',
3451 'fields' => '2.13',
3452 'filetest' => '1.02',
3453 'open' => '1.06',
3454 'threads' => '1.67',
3455 'threads::shared' => '1.14',
3456 'version' => '0.74',
3457 },
3458 removed => {
3459 }
5b5f44f3 3460 },
781ea95a 3461 5.010001 => {
a272bf38
DL
3462 delta_from => 5.01,
3463 changed => {
3464 'App::Prove' => '3.17',
3465 'App::Prove::State' => '3.17',
3466 'App::Prove::State::Result'=> '3.17',
3467 'App::Prove::State::Result::Test'=> '3.17',
3468 'Archive::Extract' => '0.34',
3469 'Archive::Tar' => '1.52',
3470 'Attribute::Handlers' => '0.85',
3471 'AutoLoader' => '5.68',
3472 'AutoSplit' => '1.06',
3473 'B' => '1.22',
3474 'B::Concise' => '0.76',
3475 'B::Debug' => '1.11',
3476 'B::Deparse' => '0.89',
3477 'B::Lint' => '1.11',
3478 'B::Lint::Debug' => undef,
3479 'B::Xref' => '1.02',
3480 'Benchmark' => '1.11',
3481 'CGI' => '3.43',
3482 'CGI::Carp' => '1.30_01',
3483 'CGI::Cookie' => '1.29',
3484 'CPAN' => '1.9402',
3485 'CPAN::Author' => '5.5',
3486 'CPAN::Bundle' => '5.5',
3487 'CPAN::CacheMgr' => '5.5',
3488 'CPAN::Complete' => '5.5',
3489 'CPAN::Debug' => '5.5',
3490 'CPAN::DeferredCode' => '5.50',
3491 'CPAN::Distribution' => '1.93',
3492 'CPAN::Distroprefs' => '6',
3493 'CPAN::Distrostatus' => '5.5',
3494 'CPAN::Exception::RecursiveDependency'=> '5.5',
3495 'CPAN::Exception::blocked_urllist'=> '1.0',
3496 'CPAN::Exception::yaml_not_installed'=> '5.5',
3497 'CPAN::FTP' => '5.5001',
3498 'CPAN::FTP::netrc' => '1.00',
3499 'CPAN::FirstTime' => '5.53',
3500 'CPAN::HandleConfig' => '5.5',
3501 'CPAN::Index' => '1.93',
3502 'CPAN::InfoObj' => '5.5',
3503 'CPAN::Kwalify' => '5.50',
3504 'CPAN::LWP::UserAgent' => '1.00',
3505 'CPAN::Module' => '5.5',
3506 'CPAN::Nox' => '5.50',
3507 'CPAN::Prompt' => '5.5',
3508 'CPAN::Queue' => '5.5',
3509 'CPAN::Shell' => '5.5',
3510 'CPAN::Tarzip' => '5.501',
3511 'CPAN::URL' => '5.5',
3512 'CPANPLUS' => '0.88',
3513 'CPANPLUS::Dist::Autobundle'=> undef,
3514 'CPANPLUS::Dist::Base' => undef,
3515 'CPANPLUS::Dist::Build' => '0.36',
3516 'CPANPLUS::Dist::Build::Constants'=> '0.36',
3517 'CPANPLUS::Internals' => '0.88',
3518 'CPANPLUS::Internals::Constants'=> undef,
3519 'CPANPLUS::Internals::Constants::Report'=> undef,
3520 'CPANPLUS::Internals::Source::Memory'=> undef,
3521 'CPANPLUS::Internals::Source::SQLite'=> undef,
3522 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3523 'CPANPLUS::Shell::Default'=> '0.88',
3524 'Carp' => '1.11',
3525 'Carp::Heavy' => '1.11',
3526 'Compress::Raw::Bzip2' => '2.020',
3527 'Compress::Raw::Zlib' => '2.020',
3528 'Compress::Zlib' => '2.020',
3529 'Cwd' => '3.30',
3530 'DB' => '1.02',
3531 'DBM_Filter::compress' => '0.02',
3532 'DBM_Filter::encode' => '0.02',
3533 'DBM_Filter::int32' => '0.02',
3534 'DBM_Filter::null' => '0.02',
3535 'DBM_Filter::utf8' => '0.02',
3536 'DB_File' => '1.820',
3537 'Data::Dumper' => '2.124',
3538 'Devel::DProf' => '20080331.00',
3539 'Devel::PPPort' => '3.19',
3540 'Devel::Peek' => '1.04',
3541 'Digest' => '1.16',
3542 'Digest::MD5' => '2.39',
3543 'Digest::SHA' => '5.47',
3544 'Digest::base' => '1.16',
3545 'Digest::file' => '1.16',
3546 'DirHandle' => '1.03',
3547 'Dumpvalue' => '1.13',
3548 'DynaLoader' => '1.10',
3549 'Encode' => '2.35',
3550 'Encode::Alias' => '2.12',
3551 'Encode::CN::HZ' => '2.05',
3552 'Encode::Config' => '2.05',
3553 'Encode::GSM0338' => '2.01',
3554 'Encode::Guess' => '2.03',
3555 'Encode::JP::JIS7' => '2.04',
3556 'Encode::MIME::Header' => '2.11',
3557 'Encode::Unicode' => '2.06',
3558 'Errno' => '1.11',
3559 'Exporter' => '5.63',
3560 'Exporter::Heavy' => '5.63',
3561 'ExtUtils::CBuilder' => '0.2602',
3562 'ExtUtils::CBuilder::Base'=> '0.2602',
3563 'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3564 'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3565 'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3566 'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3567 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3568 'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3569 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3570 'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3571 'ExtUtils::Command' => '1.16',
3572 'ExtUtils::Command::MM' => '6.55_02',
3573 'ExtUtils::Constant' => '0.22',
3574 'ExtUtils::Constant::ProxySubs'=> '0.06',
3575 'ExtUtils::Constant::Utils'=> '0.02',
3576 'ExtUtils::Constant::XS'=> '0.03',
3577 'ExtUtils::Embed' => '1.28',
3578 'ExtUtils::Install' => '1.54',
3579 'ExtUtils::Installed' => '1.999_001',
3580 'ExtUtils::Liblist' => '6.55_02',
3581 'ExtUtils::Liblist::Kid'=> '6.5502',
3582 'ExtUtils::MM' => '6.55_02',
3583 'ExtUtils::MM_AIX' => '6.55_02',
3584 'ExtUtils::MM_Any' => '6.55_02',
3585 'ExtUtils::MM_BeOS' => '6.55_02',
3586 'ExtUtils::MM_Cygwin' => '6.55_02',
3587 'ExtUtils::MM_DOS' => '6.5502',
3588 'ExtUtils::MM_Darwin' => '6.55_02',
3589 'ExtUtils::MM_MacOS' => '6.5502',
3590 'ExtUtils::MM_NW5' => '6.55_02',
3591 'ExtUtils::MM_OS2' => '6.55_02',
3592 'ExtUtils::MM_QNX' => '6.55_02',
3593 'ExtUtils::MM_UWIN' => '6.5502',
3594 'ExtUtils::MM_Unix' => '6.55_02',
3595 'ExtUtils::MM_VMS' => '6.55_02',
3596 'ExtUtils::MM_VOS' => '6.55_02',
3597 'ExtUtils::MM_Win32' => '6.55_02',
3598 'ExtUtils::MM_Win95' => '6.55_02',
3599 'ExtUtils::MY' => '6.5502',
3600 'ExtUtils::MakeMaker' => '6.55_02',
3601 'ExtUtils::MakeMaker::Config'=> '6.55_02',
3602 'ExtUtils::Manifest' => '1.56',
3603 'ExtUtils::Mkbootstrap' => '6.55_02',
3604 'ExtUtils::Mksymlists' => '6.55_02',
3605 'ExtUtils::ParseXS' => '2.2002',
3606 'ExtUtils::testlib' => '6.5502',
3607 'Fatal' => '2.06_01',
3608 'File::Basename' => '2.77',
3609 'File::CheckTree' => '4.4',
3610 'File::Compare' => '1.1006',
3611 'File::Copy' => '2.14',
3612 'File::DosGlob' => '1.01',
3613 'File::Fetch' => '0.20',
3614 'File::Find' => '1.14',
3615 'File::GlobMapper' => '1.000',
3616 'File::Path' => '2.07_03',
3617 'File::Spec' => '3.30',
3618 'File::Spec::Cygwin' => '3.30',
3619 'File::Spec::Epoc' => '3.30',
3620 'File::Spec::Functions' => '3.30',
3621 'File::Spec::Mac' => '3.30',
3622 'File::Spec::OS2' => '3.30',
3623 'File::Spec::Unix' => '3.30',
3624 'File::Spec::VMS' => '3.30',
3625 'File::Spec::Win32' => '3.30',
3626 'File::Temp' => '0.22',
3627 'File::stat' => '1.01',
3628 'FileCache' => '1.08',
3629 'FileHandle' => '2.02',
3630 'Filter::Simple' => '0.84',
3631 'Filter::Util::Call' => '1.08',
3632 'FindBin' => '1.50',
3633 'GDBM_File' => '1.09',
3634 'Getopt::Long' => '2.38',
3635 'Getopt::Std' => '1.06',
3636 'Hash::Util::FieldHash' => '1.04',
3637 'I18N::Collate' => '1.01',
3638 'IO' => '1.25',
3639 'IO::Compress::Adapter::Bzip2'=> '2.020',
3640 'IO::Compress::Adapter::Deflate'=> '2.020',
3641 'IO::Compress::Adapter::Identity'=> '2.020',
3642 'IO::Compress::Base' => '2.020',
3643 'IO::Compress::Base::Common'=> '2.020',
3644 'IO::Compress::Bzip2' => '2.020',
3645 'IO::Compress::Deflate' => '2.020',
3646 'IO::Compress::Gzip' => '2.020',
3647 'IO::Compress::Gzip::Constants'=> '2.020',
3648 'IO::Compress::RawDeflate'=> '2.020',
3649 'IO::Compress::Zip' => '2.020',
3650 'IO::Compress::Zip::Constants'=> '2.020',
3651 'IO::Compress::Zlib::Constants'=> '2.020',
3652 'IO::Compress::Zlib::Extra'=> '2.020',
3653 'IO::Dir' => '1.07',
3654 'IO::Handle' => '1.28',
3655 'IO::Socket' => '1.31',
3656 'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3657 'IO::Uncompress::Adapter::Identity'=> '2.020',
3658 'IO::Uncompress::Adapter::Inflate'=> '2.020',
3659 'IO::Uncompress::AnyInflate'=> '2.020',
3660 'IO::Uncompress::AnyUncompress'=> '2.020',
3661 'IO::Uncompress::Base' => '2.020',
3662 'IO::Uncompress::Bunzip2'=> '2.020',
3663 'IO::Uncompress::Gunzip'=> '2.020',
3664 'IO::Uncompress::Inflate'=> '2.020',
3665 'IO::Uncompress::RawInflate'=> '2.020',
3666 'IO::Uncompress::Unzip' => '2.020',
3667 'IO::Zlib' => '1.09',
3668 'IPC::Cmd' => '0.46',
3669 'IPC::Msg' => '2.01',
3670 'IPC::Open2' => '1.03',
3671 'IPC::Open3' => '1.04',
3672 'IPC::Semaphore' => '2.01',
3673 'IPC::SharedMem' => '2.01',
3674 'IPC::SysV' => '2.01',
3675 'List::Util' => '1.21',
3676 'List::Util::PP' => '1.21',
3677 'List::Util::XS' => '1.21',
3678 'Locale::Maketext' => '1.13',
3679 'Locale::Maketext::Guts'=> '1.13',
3680 'Locale::Maketext::GutsLoader'=> '1.13',
3681 'Log::Message' => '0.02',
3682 'MIME::Base64' => '3.08',
3683 'MIME::QuotedPrint' => '3.08',
3684 'Math::BigFloat' => '1.60',
3685 'Math::BigInt' => '1.89',
3686 'Math::BigInt::FastCalc'=> '0.19',
3687 'Math::BigRat' => '0.22',
3688 'Math::Complex' => '1.56',
3689 'Math::Trig' => '1.2',
3690 'Memoize' => '1.01_03',
3691 'Module::Build' => '0.340201',
3692 'Module::Build::Base' => '0.340201',
3693 'Module::Build::Compat' => '0.340201',
3694 'Module::Build::Config' => '0.340201',
3695 'Module::Build::Cookbook'=> '0.340201',
3696 'Module::Build::Dumper' => '0.340201',
3697 'Module::Build::ModuleInfo'=> '0.340201',
3698 'Module::Build::Notes' => '0.340201',
3699 'Module::Build::PPMMaker'=> '0.340201',
3700 'Module::Build::Platform::Amiga'=> '0.340201',
3701 'Module::Build::Platform::Default'=> '0.340201',
3702 'Module::Build::Platform::EBCDIC'=> '0.340201',
3703 'Module::Build::Platform::MPEiX'=> '0.340201',
3704 'Module::Build::Platform::MacOS'=> '0.340201',
3705 'Module::Build::Platform::RiscOS'=> '0.340201',
3706 'Module::Build::Platform::Unix'=> '0.340201',
3707 'Module::Build::Platform::VMS'=> '0.340201',
3708 'Module::Build::Platform::VOS'=> '0.340201',
3709 'Module::Build::Platform::Windows'=> '0.340201',
3710 'Module::Build::Platform::aix'=> '0.340201',
3711 'Module::Build::Platform::cygwin'=> '0.340201',
3712 'Module::Build::Platform::darwin'=> '0.340201',
3713 'Module::Build::Platform::os2'=> '0.340201',
3714 'Module::Build::PodParser'=> '0.340201',
3715 'Module::Build::Version'=> '0.77',
3716 'Module::CoreList' => '2.18',
3717 'Module::Load' => '0.16',
3718 'Module::Load::Conditional'=> '0.30',
3719 'Module::Loaded' => '0.02',
3720 'Module::Pluggable' => '3.9',
3721 'Module::Pluggable::Object'=> '3.9',
3722 'NDBM_File' => '1.08',
3723 'NEXT' => '0.64',
3724 'Net::Ping' => '2.36',
3725 'O' => '1.01',
78da2da6
CBW
3726 'OS2::Process' => '1.03',
3727 'OS2::REXX' => '1.04',
a272bf38
DL
3728 'Object::Accessor' => '0.34',
3729 'POSIX' => '1.17',
3730 'Package::Constants' => '0.02',
3731 'Parse::CPAN::Meta' => '1.39',
3732 'PerlIO' => '1.06',
3733 'PerlIO::encoding' => '0.11',
3734 'PerlIO::scalar' => '0.07',
3735 'PerlIO::via' => '0.07',
3736 'Pod::Checker' => '1.45',
3737 'Pod::Find' => '1.35',
3738 'Pod::Html' => '1.09',
3739 'Pod::InputObjects' => '1.31',
3740 'Pod::Man' => '2.22',
3741 'Pod::ParseLink' => '1.09',
3742 'Pod::ParseUtils' => '1.36',
3743 'Pod::Parser' => '1.37',
3744 'Pod::Perldoc' => '3.14_04',
3745 'Pod::PlainText' => '2.04',
3746 'Pod::Select' => '1.36',
3747 'Pod::Simple' => '3.07',
3748 'Pod::Simple::XHTML' => '3.04',
3749 'Pod::Text' => '3.13',
3750 'Pod::Text::Color' => '2.05',
3751 'Pod::Text::Overstrike' => '2.03',
3752 'Pod::Text::Termcap' => '2.05',
3753 'Pod::Usage' => '1.36',
3754 'Safe' => '2.18',
3755 'Scalar::Util' => '1.21',
3756 'Scalar::Util::PP' => '1.21',
3757 'SelectSaver' => '1.02',
3758 'SelfLoader' => '1.17',
3759 'Socket' => '1.82',
3760 'Storable' => '2.20',
3761 'Switch' => '2.14',
3762 'Symbol' => '1.07',
3763 'Sys::Syslog' => '0.27',
3764 'TAP::Base' => '3.17',
3765 'TAP::Formatter::Base' => '3.17',
3766 'TAP::Formatter::Color' => '3.17',
3767 'TAP::Formatter::Console'=> '3.17',
3768 'TAP::Formatter::Console::ParallelSession'=> '3.17',
3769 'TAP::Formatter::Console::Session'=> '3.17',
3770 'TAP::Formatter::File' => '3.17',
3771 'TAP::Formatter::File::Session'=> '3.17',
3772 'TAP::Formatter::Session'=> '3.17',
3773 'TAP::Harness' => '3.17',
3774 'TAP::Object' => '3.17',
3775 'TAP::Parser' => '3.17',
3776 'TAP::Parser::Aggregator'=> '3.17',
3777 'TAP::Parser::Grammar' => '3.17',
3778 'TAP::Parser::Iterator' => '3.17',
3779 'TAP::Parser::Iterator::Array'=> '3.17',
3780 'TAP::Parser::Iterator::Process'=> '3.17',
3781 'TAP::Parser::Iterator::Stream'=> '3.17',
3782 'TAP::Parser::IteratorFactory'=> '3.17',
3783 'TAP::Parser::Multiplexer'=> '3.17',
3784 'TAP::Parser::Result' => '3.17',
3785 'TAP::Parser::Result::Bailout'=> '3.17',
3786 'TAP::Parser::Result::Comment'=> '3.17',
3787 'TAP::Parser::Result::Plan'=> '3.17',
3788 'TAP::Parser::Result::Pragma'=> '3.17',
3789 'TAP::Parser::Result::Test'=> '3.17',
3790 'TAP::Parser::Result::Unknown'=> '3.17',
3791 'TAP::Parser::Result::Version'=> '3.17',
3792 'TAP::Parser::Result::YAML'=> '3.17',
3793 'TAP::Parser::ResultFactory'=> '3.17',
3794 'TAP::Parser::Scheduler'=> '3.17',
3795 'TAP::Parser::Scheduler::Job'=> '3.17',
3796 'TAP::Parser::Scheduler::Spinner'=> '3.17',
3797 'TAP::Parser::Source' => '3.17',
3798 'TAP::Parser::Source::Perl'=> '3.17',
3799 'TAP::Parser::Utils' => '3.17',
3800 'TAP::Parser::YAMLish::Reader'=> '3.17',
3801 'TAP::Parser::YAMLish::Writer'=> '3.17',
3802 'Term::ANSIColor' => '2.00',
3803 'Term::ReadLine' => '1.04',
3804 'Term::UI' => '0.20',
3805 'Test' => '1.25_02',
3806 'Test::Builder' => '0.92',
3807 'Test::Builder::Module' => '0.92',
3808 'Test::Builder::Tester' => '1.18',
3809 'Test::Builder::Tester::Color'=> '1.18',
3810 'Test::Harness' => '3.17',
3811 'Test::More' => '0.92',
3812 'Test::Simple' => '0.92',
3813 'Text::ParseWords' => '3.27',
3814 'Text::Tabs' => '2009.0305',
3815 'Text::Wrap' => '2009.0305',
3816 'Thread::Queue' => '2.11',
3817 'Thread::Semaphore' => '2.09',
3818 'Tie::Handle' => '4.2',
3819 'Tie::Hash' => '1.03',
3820 'Tie::RefHash' => '1.38',
3821 'Tie::Scalar' => '1.01',
3822 'Tie::StdHandle' => '4.2',
3823 'Time::HiRes' => '1.9719',
3824 'Time::Local' => '1.1901',
3825 'Time::Piece' => '1.15',
3826 'UNIVERSAL' => '1.05',
3827 'Unicode' => '5.1.0',
3828 'Unicode::Normalize' => '1.03',
3829 'Unicode::UCD' => '0.27',
3830 'VMS::Stdio' => '2.4',
3831 'Win32' => '0.39',
3832 'Win32API::File' => '0.1101',
3833 'XS::APItest' => '0.15',
3834 'XS::Typemap' => '0.03',
3835 'XSLoader' => '0.10',
3836 'attributes' => '0.09',
3837 'attrs' => '1.03',
3838 'autodie' => '2.06_01',
3839 'autodie::exception' => '2.06_01',
3840 'autodie::exception::system'=> '2.06_01',
3841 'autodie::hints' => '2.06_01',
3842 'base' => '2.14',
3843 'bigint' => '0.23',
3844 'bignum' => '0.23',
3845 'bigrat' => '0.23',
3846 'blib' => '1.04',
3847 'charnames' => '1.07',
3848 'constant' => '1.17',
3849 'encoding' => '2.6_01',
3850 'feature' => '1.13',
3851 'fields' => '2.14',
3852 'lib' => '0.62',
3853 'mro' => '1.01',
3854 'open' => '1.07',
3855 'ops' => '1.02',
3856 'overload' => '1.07',
3857 'overload::numbers' => undef,
3858 'overloading' => '0.01',
3859 'parent' => '0.221',
3860 're' => '0.09',
3861 'threads' => '1.72',
3862 'threads::shared' => '1.29',
3863 'version' => '0.77',
3864 },
3865 removed => {
3866 'CPAN::API::HOWTO' => 1,
3867 'CPAN::DeferedCode' => 1,
3868 'CPANPLUS::inc' => 1,
3869 'ExtUtils::MakeMaker::bytes'=> 1,
3870 'ExtUtils::MakeMaker::vmsish'=> 1,
3871 'Test::Harness::Assert' => 1,
3872 'Test::Harness::Iterator'=> 1,
3873 'Test::Harness::Point' => 1,
3874 'Test::Harness::Results'=> 1,
3875 'Test::Harness::Straps' => 1,
3876 'Test::Harness::Util' => 1,
3877 }
781ea95a 3878 },
a272bf38
DL
3879 5.011 => {
3880 delta_from => 5.010001,
3881 changed => {
3882 'Archive::Tar' => '1.54',
3883 'Attribute::Handlers' => '0.87',
3884 'AutoLoader' => '5.70',
3885 'B::Deparse' => '0.91',
3886 'B::Lint' => '1.11_01',
3887 'B::Lint::Debug' => '0.01',
3888 'CGI' => '3.45',
3889 'CGI::Apache' => '1.01',
3890 'CGI::Carp' => '3.45',
3891 'CGI::Pretty' => '3.44',
3892 'CGI::Switch' => '1.01',
3893 'CGI::Util' => '3.45',
3894 'CPAN' => '1.94_51',
3895 'CPAN::Distribution' => '1.94',
3896 'CPAN::FTP' => '5.5002',
3897 'CPAN::Index' => '1.94',
3898 'CPAN::LWP::UserAgent' => '1.94',
3899 'CPANPLUS::Dist::Build' => '0.40',
3900 'CPANPLUS::Dist::Build::Constants'=> '0.40',
3901 'Carp' => '1.12',
3902 'Carp::Heavy' => '1.12',
3903 'Class::ISA' => '0.36',
3904 'Compress::Raw::Bzip2' => '2.021',
3905 'Compress::Raw::Zlib' => '2.021',
3906 'Compress::Zlib' => '2.021',
3907 'Cwd' => '3.3002',
3908 'Data::Dumper' => '2.125',
3909 'Encode' => '2.37',
3910 'Exporter' => '5.64',
3911 'Exporter::Heavy' => '5.64',
3912 'ExtUtils::ParseXS' => '2.200403',
3913 'File::Basename' => '2.78',
3914 'File::Copy' => '2.16',
3915 'File::stat' => '1.02',
3916 'IO' => '1.25_01',
3917 'IO::Compress::Adapter::Bzip2'=> '2.021',
3918 'IO::Compress::Adapter::Deflate'=> '2.021',
3919 'IO::Compress::Adapter::Identity'=> '2.021',
3920 'IO::Compress::Base' => '2.021',
3921 'IO::Compress::Base::Common'=> '2.021',
3922 'IO::Compress::Bzip2' => '2.021',
3923 'IO::Compress::Deflate' => '2.021',
3924 'IO::Compress::Gzip' => '2.021',
3925 'IO::Compress::Gzip::Constants'=> '2.021',
3926 'IO::Compress::RawDeflate'=> '2.021',
3927 'IO::Compress::Zip' => '2.021',
3928 'IO::Compress::Zip::Constants'=> '2.021',
3929 'IO::Compress::Zlib::Constants'=> '2.021',
3930 'IO::Compress::Zlib::Extra'=> '2.021',
3931 'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
3932 'IO::Uncompress::Adapter::Identity'=> '2.021',
3933 'IO::Uncompress::Adapter::Inflate'=> '2.021',
3934 'IO::Uncompress::AnyInflate'=> '2.021',
3935 'IO::Uncompress::AnyUncompress'=> '2.021',
3936 'IO::Uncompress::Base' => '2.021',
3937 'IO::Uncompress::Bunzip2'=> '2.021',
3938 'IO::Uncompress::Gunzip'=> '2.021',
3939 'IO::Uncompress::Inflate'=> '2.021',
3940 'IO::Uncompress::RawInflate'=> '2.021',
3941 'IO::Uncompress::Unzip' => '2.021',
3942 'IO::Zlib' => '1.10',
3943 'IPC::Cmd' => '0.50',
3944 'IPC::Open3' => '1.05',
3945 'Locale::Maketext::Simple'=> '0.21',
3946 'Log::Message::Simple' => '0.06',
3947 'Math::BigInt' => '1.89_01',
3948 'Math::BigRat' => '0.24',
3949 'Module::Build' => '0.35',
3950 'Module::Build::Base' => '0.35',
3951 'Module::Build::Compat' => '0.35',
3952 'Module::Build::Config' => '0.35',
3953 'Module::Build::Cookbook'=> '0.35',
3954 'Module::Build::Dumper' => '0.35',
3955 'Module::Build::ModuleInfo'=> '0.35',
3956 'Module::Build::Notes' => '0.35',
3957 'Module::Build::PPMMaker'=> '0.35',
3958 'Module::Build::Platform::Amiga'=> '0.35',
3959 'Module::Build::Platform::Default'=> '0.35',
3960 'Module::Build::Platform::EBCDIC'=> '0.35',
3961 'Module::Build::Platform::MPEiX'=> '0.35',
3962 'Module::Build::Platform::MacOS'=> '0.35',
3963 'Module::Build::Platform::RiscOS'=> '0.35',
3964 'Module::Build::Platform::Unix'=> '0.35',
3965 'Module::Build::Platform::VMS'=> '0.35',
3966 'Module::Build::Platform::VOS'=> '0.35',
3967 'Module::Build::Platform::Windows'=> '0.35',
3968 'Module::Build::Platform::aix'=> '0.35',
3969 'Module::Build::Platform::cygwin'=> '0.35',
3970 'Module::Build::Platform::darwin'=> '0.35',
3971 'Module::Build::Platform::os2'=> '0.35',
3972 'Module::Build::PodParser'=> '0.35',
3973 'Module::CoreList' => '2.19',
3974 'Module::Loaded' => '0.06',
3975 'Opcode' => '1.13',
3976 'PerlIO::via' => '0.08',
3977 'Pod::Perldoc' => '3.15_01',
3978 'Pod::Plainer' => '1.01',
3979 'Safe' => '2.19',
3980 'Socket' => '1.84',
3981 'Switch' => '2.14_01',
3982 'Term::ANSIColor' => '2.02',
3983 'Term::ReadLine' => '1.05',
3984 'Text::Balanced' => '2.02',
3985 'Text::Soundex' => '3.03_01',
3986 'Time::Local' => '1.1901_01',
3987 'Unicode::Collate' => '0.52_01',
3988 'attributes' => '0.12',
3989 'constant' => '1.19',
3990 'deprecate' => '0.01',
3991 'overload' => '1.08',
3992 'parent' => '0.223',
3993 're' => '0.10',
3994 'threads' => '1.74',
3995 'threads::shared' => '1.31',
3996 'warnings' => '1.07',
3997 },
3998 removed => {
3999 'attrs' => 1,
4000 }
24081a3a 4001 },
979b9961 4002 5.011001 => {
a272bf38
DL
4003 delta_from => 5.011,
4004 changed => {
4005 'B' => '1.23',
4006 'B::Concise' => '0.77',
4007 'B::Deparse' => '0.92',
4008 'CGI' => '3.48',
4009 'CGI::Pretty' => '3.46',
4010 'CGI::Util' => '3.48',
4011 'CPANPLUS' => '0.89_03',
4012 'CPANPLUS::Internals' => '0.89_03',
4013 'CPANPLUS::Shell::Default'=> '0.89_03',
4014 'Carp' => '1.13',
4015 'Carp::Heavy' => '1.13',
4016 'ExtUtils::CBuilder' => '0.260301',
4017 'ExtUtils::CBuilder::Base'=> '0.260301',
4018 'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
4019 'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
4020 'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
4021 'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
4022 'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
4023 'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
4024 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
4025 'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
4026 'ExtUtils::Install' => '1.55',
4027 'ExtUtils::Manifest' => '1.57',
4028 'ExtUtils::Packlist' => '1.44',
4029 'ExtUtils::ParseXS' => '2.21',
4030 'File::Glob' => '1.07',
4031 'File::Path' => '2.08',
4032 'IO' => '1.25_02',
4033 'Module::CoreList' => '2.21',
78da2da6
CBW
4034 'OS2::DLL' => '1.04',
4035 'OS2::Process' => '1.04',
a272bf38
DL
4036 'Object::Accessor' => '0.36',
4037 'Opcode' => '1.15',
4038 'POSIX' => '1.18',
4039 'Parse::CPAN::Meta' => '1.40',
4040 'PerlIO::via' => '0.09',
4041 'Pod::Simple' => '3.08',
4042 'Socket' => '1.85',
4043 'Storable' => '2.22',
4044 'Switch' => '2.15',
4045 'Test::Builder' => '0.94',
4046 'Test::Builder::Module' => '0.94',
4047 'Test::More' => '0.94',
4048 'Test::Simple' => '0.94',
4049 'XS::APItest' => '0.16',
4050 'mro' => '1.02',
4051 'overload' => '1.09',
4052 'threads::shared' => '1.32',
4053 },
4054 removed => {
4055 }
979b9961 4056 },
a68163ea 4057 5.011002 => {
a272bf38
DL
4058 delta_from => 5.011001,
4059 changed => {
4060 'B::Concise' => '0.78',
4061 'B::Deparse' => '0.93',
4062 'CPANPLUS' => '0.89_09',
4063 'CPANPLUS::Dist::Build' => '0.44',
4064 'CPANPLUS::Dist::Build::Constants'=> '0.44',
4065 'CPANPLUS::Internals' => '0.89_09',
4066 'CPANPLUS::Shell::Default'=> '0.89_09',
4067 'Carp' => '1.14',
4068 'Carp::Heavy' => '1.14',
4069 'Compress::Zlib' => '2.022',
4070 'DBM_Filter' => '0.03',
4071 'Encode' => '2.38',
4072 'Encode::Byte' => '2.04',
4073 'Encode::CN' => '2.03',
4074 'Encode::JP' => '2.04',
4075 'Encode::KR' => '2.03',
4076 'Encode::TW' => '2.03',
4077 'Encode::Unicode' => '2.07',
4078 'Env' => '1.01',
4079 'Exporter' => '5.64_01',
4080 'Exporter::Heavy' => '5.64_01',
4081 'ExtUtils::CBuilder' => '0.27',
4082 'ExtUtils::CBuilder::Base'=> '0.27',
4083 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4084 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4085 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4086 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4087 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4088 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4089 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4090 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4091 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4092 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4093 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4094 'File::Fetch' => '0.22',
4095 'I18N::LangTags::Detect'=> '1.04',
4096 'I18N::Langinfo' => '0.03',
4097 'IO::Compress::Adapter::Bzip2'=> '2.022',
4098 'IO::Compress::Adapter::Deflate'=> '2.022',
4099 'IO::Compress::Adapter::Identity'=> '2.022',
4100 'IO::Compress::Base' => '2.022',
4101 'IO::Compress::Base::Common'=> '2.022',
4102 'IO::Compress::Bzip2' => '2.022',
4103 'IO::Compress::Deflate' => '2.022',
4104 'IO::Compress::Gzip' => '2.022',
4105 'IO::Compress::Gzip::Constants'=> '2.022',
4106 'IO::Compress::RawDeflate'=> '2.022',
4107 'IO::Compress::Zip' => '2.022',
4108 'IO::Compress::Zip::Constants'=> '2.022',
4109 'IO::Compress::Zlib::Constants'=> '2.022',
4110 'IO::Compress::Zlib::Extra'=> '2.022',
4111 'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4112 'IO::Uncompress::Adapter::Identity'=> '2.022',
4113 'IO::Uncompress::Adapter::Inflate'=> '2.022',
4114 'IO::Uncompress::AnyInflate'=> '2.022',
4115 'IO::Uncompress::AnyUncompress'=> '2.022',
4116 'IO::Uncompress::Base' => '2.022',
4117 'IO::Uncompress::Bunzip2'=> '2.022',
4118 'IO::Uncompress::Gunzip'=> '2.022',
4119 'IO::Uncompress::Inflate'=> '2.022',
4120 'IO::Uncompress::RawInflate'=> '2.022',
4121 'IO::Uncompress::Unzip' => '2.022',
4122 'IPC::Cmd' => '0.54',
4123 'List::Util' => '1.22',
4124 'List::Util::PP' => '1.22',
4125 'List::Util::XS' => '1.22',
4126 'Locale::Maketext' => '1.14',
4127 'Module::Build' => '0.35_09',
4128 'Module::Build::Base' => '0.35_09',
4129 'Module::Build::Compat' => '0.35_09',
4130 'Module::Build::Config' => '0.35_09',
4131 'Module::Build::Cookbook'=> '0.35_09',
4132 'Module::Build::Dumper' => '0.35_09',
4133 'Module::Build::ModuleInfo'=> '0.35_09',
4134 'Module::Build::Notes' => '0.35_09',
4135 'Module::Build::PPMMaker'=> '0.35_09',
4136 'Module::Build::Platform::Amiga'=> '0.35_09',
4137 'Module::Build::Platform::Default'=> '0.35_09',
4138 'Module::Build::Platform::EBCDIC'=> '0.35_09',
4139 'Module::Build::Platform::MPEiX'=> '0.35_09',
4140 'Module::Build::Platform::MacOS'=> '0.35_09',
4141 'Module::Build::Platform::RiscOS'=> '0.35_09',
4142 'Module::Build::Platform::Unix'=> '0.35_09',
4143 'Module::Build::Platform::VMS'=> '0.35_09',
4144 'Module::Build::Platform::VOS'=> '0.35_09',
4145 'Module::Build::Platform::Windows'=> '0.35_09',
4146 'Module::Build::Platform::aix'=> '0.35_09',
4147 'Module::Build::Platform::cygwin'=> '0.35_09',
4148 'Module::Build::Platform::darwin'=> '0.35_09',
4149 'Module::Build::Platform::os2'=> '0.35_09',
4150 'Module::Build::PodParser'=> '0.35_09',
4151 'Module::Build::YAML' => '1.40',
4152 'Module::CoreList' => '2.23',
4153 'Module::Load::Conditional'=> '0.34',
4154 'Pod::Simple' => '3.10',
4155 'Pod::Simple::XHTML' => '3.10',
4156 'Scalar::Util' => '1.22',
4157 'Scalar::Util::PP' => '1.22',
4158 'Switch' => '2.16',
4159 'XS::APItest' => '0.17',
4160 'XS::APItest::KeywordRPN'=> '0.003',
4161 'base' => '2.15',
4162 'diagnostics' => '1.18',
4163 'fields' => '2.15',
4164 'inc::latest' => '0.35_09',
4165 'legacy' => '1.00',
4166 'overload' => '1.10',
4167 },
4168 removed => {
4169 }
a68163ea 4170 },
65f8b4e7 4171 5.011003 => {
a272bf38
DL
4172 delta_from => 5.011002,
4173 changed => {
4174 'App::Cpan' => '1.570001',
4175 'Archive::Extract' => '0.36',
4176 'CPAN' => '1.94_5301',
4177 'CPAN::FTP' => '5.5004',
4178 'CPAN::FirstTime' => '5.530001',
4179 'CPAN::Mirrors' => '1.770001',
4180 'CPANPLUS' => '0.90',
4181 'CPANPLUS::Internals' => '0.90',
4182 'CPANPLUS::Shell::Default'=> '0.90',
4183 'Cwd' => '3.31',
4184 'Encode' => '2.39',
4185 'ExtUtils::Command::MM' => '6.56',
4186 'ExtUtils::Liblist' => '6.56',
4187 'ExtUtils::Liblist::Kid'=> '6.56',
4188 'ExtUtils::MM' => '6.56',
4189 'ExtUtils::MM_AIX' => '6.56',
4190 'ExtUtils::MM_Any' => '6.56',
4191 'ExtUtils::MM_BeOS' => '6.56',
4192 'ExtUtils::MM_Cygwin' => '6.56',
4193 'ExtUtils::MM_DOS' => '6.56',
4194 'ExtUtils::MM_Darwin' => '6.56',
4195 'ExtUtils::MM_MacOS' => '6.56',
4196 'ExtUtils::MM_NW5' => '6.56',
4197 'ExtUtils::MM_OS2' => '6.56',
4198 'ExtUtils::MM_QNX' => '6.56',
4199 'ExtUtils::MM_UWIN' => '6.56',
4200 'ExtUtils::MM_Unix' => '6.56',
4201 'ExtUtils::MM_VMS' => '6.56',
4202 'ExtUtils::MM_VOS' => '6.56',
4203 'ExtUtils::MM_Win32' => '6.56',
4204 'ExtUtils::MM_Win95' => '6.56',
4205 'ExtUtils::MY' => '6.56',
4206 'ExtUtils::MakeMaker' => '6.56',
4207 'ExtUtils::MakeMaker::Config'=> '6.56',
4208 'ExtUtils::Mkbootstrap' => '6.56',
4209 'ExtUtils::Mksymlists' => '6.56',
4210 'ExtUtils::testlib' => '6.56',
4211 'File::Find' => '1.15',
4212 'File::Path' => '2.08_01',
4213 'File::Spec' => '3.31',
4214 'Module::Build' => '0.36',
4215 'Module::Build::Base' => '0.36',
4216 'Module::Build::Compat' => '0.36',
4217 'Module::Build::Config' => '0.36',
4218 'Module::Build::Cookbook'=> '0.36',
4219 'Module::Build::Dumper' => '0.36',
4220 'Module::Build::ModuleInfo'=> '0.36',
4221 'Module::Build::Notes' => '0.36',
4222 'Module::Build::PPMMaker'=> '0.36',
4223 'Module::Build::Platform::Amiga'=> '0.36',
4224 'Module::Build::Platform::Default'=> '0.36',
4225 'Module::Build::Platform::EBCDIC'=> '0.36',
4226 'Module::Build::Platform::MPEiX'=> '0.36',
4227 'Module::Build::Platform::MacOS'=> '0.36',
4228 'Module::Build::Platform::RiscOS'=> '0.36',
4229 'Module::Build::Platform::Unix'=> '0.36',
4230 'Module::Build::Platform::VMS'=> '0.36',
4231 'Module::Build::Platform::VOS'=> '0.36',
4232 'Module::Build::Platform::Windows'=> '0.36',
4233 'Module::Build::Platform::aix'=> '0.36',
4234 'Module::Build::Platform::cygwin'=> '0.36',
4235 'Module::Build::Platform::darwin'=> '0.36',
4236 'Module::Build::Platform::os2'=> '0.36',
4237 'Module::Build::PodParser'=> '0.36',
4238 'Module::CoreList' => '2.24',
4239 'POSIX' => '1.19',
4240 'Pod::Simple' => '3.13',
4241 'Pod::Simple::BlackBox' => '3.13',
4242 'Pod::Simple::Checker' => '3.13',
4243 'Pod::Simple::Debug' => '3.13',
4244 'Pod::Simple::DumpAsText'=> '3.13',
4245 'Pod::Simple::DumpAsXML'=> '3.13',
4246 'Pod::Simple::HTML' => '3.13',
4247 'Pod::Simple::HTMLBatch'=> '3.13',
4248 'Pod::Simple::LinkSection'=> '3.13',
4249 'Pod::Simple::Methody' => '3.13',
4250 'Pod::Simple::Progress' => '3.13',
4251 'Pod::Simple::PullParser'=> '3.13',
4252 'Pod::Simple::PullParserEndToken'=> '3.13',
4253 'Pod::Simple::PullParserStartToken'=> '3.13',
4254 'Pod::Simple::PullParserTextToken'=> '3.13',
4255 'Pod::Simple::PullParserToken'=> '3.13',
4256 'Pod::Simple::RTF' => '3.13',
4257 'Pod::Simple::Search' => '3.13',
4258 'Pod::Simple::SimpleTree'=> '3.13',
4259 'Pod::Simple::Text' => '3.13',
4260 'Pod::Simple::TextContent'=> '3.13',
4261 'Pod::Simple::TiedOutFH'=> '3.13',
4262 'Pod::Simple::Transcode'=> '3.13',
4263 'Pod::Simple::TranscodeDumb'=> '3.13',
4264 'Pod::Simple::TranscodeSmart'=> '3.13',
4265 'Pod::Simple::XHTML' => '3.13',
4266 'Pod::Simple::XMLOutStream'=> '3.13',
4267 'Safe' => '2.20',
4268 'Unicode' => '5.2.0',
4269 'constant' => '1.20',
4270 'diagnostics' => '1.19',
4271 'feature' => '1.14',
4272 'inc::latest' => '0.36',
4273 'threads' => '1.75',
4274 'warnings' => '1.08',
4275 },
4276 removed => {
4277 'legacy' => 1,
4278 }
65f8b4e7 4279 },
d3cba0fe 4280 5.011004 => {
a272bf38
DL
4281 delta_from => 5.011003,
4282 changed => {
4283 'App::Cpan' => '1.5701',
4284 'Archive::Extract' => '0.38',
4285 'B::Deparse' => '0.94',
4286 'CPAN' => '1.94_54',
4287 'CPAN::FirstTime' => '5.53',
4288 'CPAN::Mirrors' => '1.77',
4289 'Carp' => '1.15',
4290 'Carp::Heavy' => '1.15',
4291 'Compress::Raw::Bzip2' => '2.024',
4292 'Compress::Raw::Zlib' => '2.024',
4293 'Compress::Zlib' => '2.024',
4294 'File::Copy' => '2.17',
4295 'File::Fetch' => '0.24',
4296 'GDBM_File' => '1.10',
4297 'IO::Compress::Adapter::Bzip2'=> '2.024',
4298 'IO::Compress::Adapter::Deflate'=> '2.024',
4299 'IO::Compress::Adapter::Identity'=> '2.024',
4300 'IO::Compress::Base' => '2.024',
4301 'IO::Compress::Base::Common'=> '2.024',
4302 'IO::Compress::Bzip2' => '2.024',
4303 'IO::Compress::Deflate' => '2.024',
4304 'IO::Compress::Gzip' => '2.024',
4305 'IO::Compress::Gzip::Constants'=> '2.024',
4306 'IO::Compress::RawDeflate'=> '2.024',
4307 'IO::Compress::Zip' => '2.024',
4308 'IO::Compress::Zip::Constants'=> '2.024',
4309 'IO::Compress::Zlib::Constants'=> '2.024',
4310 'IO::Compress::Zlib::Extra'=> '2.024',
4311 'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4312 'IO::Uncompress::Adapter::Identity'=> '2.024',
4313 'IO::Uncompress::Adapter::Inflate'=> '2.024',
4314 'IO::Uncompress::AnyInflate'=> '2.024',
4315 'IO::Uncompress::AnyUncompress'=> '2.024',
4316 'IO::Uncompress::Base' => '2.024',
4317 'IO::Uncompress::Bunzip2'=> '2.024',
4318 'IO::Uncompress::Gunzip'=> '2.024',
4319 'IO::Uncompress::Inflate'=> '2.024',
4320 'IO::Uncompress::RawInflate'=> '2.024',
4321 'IO::Uncompress::Unzip' => '2.024',
4322 'Module::Build' => '0.3603',
4323 'Module::Build::Base' => '0.3603',
4324 'Module::Build::Compat' => '0.3603',
4325 'Module::Build::Config' => '0.3603',
4326 'Module::Build::Cookbook'=> '0.3603',
4327 'Module::Build::Dumper' => '0.3603',
4328 'Module::Build::ModuleInfo'=> '0.3603',
4329 'Module::Build::Notes' => '0.3603',
4330 'Module::Build::PPMMaker'=> '0.3603',
4331 'Module::Build::Platform::Amiga'=> '0.3603',
4332 'Module::Build::Platform::Default'=> '0.3603',
4333 'Module::Build::Platform::EBCDIC'=> '0.3603',
4334 'Module::Build::Platform::MPEiX'=> '0.3603',
4335 'Module::Build::Platform::MacOS'=> '0.3603',
4336 'Module::Build::Platform::RiscOS'=> '0.3603',
4337 'Module::Build::Platform::Unix'=> '0.3603',
4338 'Module::Build::Platform::VMS'=> '0.3603',
4339 'Module::Build::Platform::VOS'=> '0.3603',
4340 'Module::Build::Platform::Windows'=> '0.3603',
4341 'Module::Build::Platform::aix'=> '0.3603',
4342 'Module::Build::Platform::cygwin'=> '0.3603',
4343 'Module::Build::Platform::darwin'=> '0.3603',
4344 'Module::Build::Platform::os2'=> '0.3603',
4345 'Module::Build::PodParser'=> '0.3603',
4346 'Module::CoreList' => '2.25',
4347 'PerlIO::encoding' => '0.12',
4348 'Safe' => '2.21',
4349 'UNIVERSAL' => '1.06',
4350 'feature' => '1.15',
4351 'inc::latest' => '0.3603',
4352 'less' => '0.03',
4353 're' => '0.11',
4354 'version' => '0.81',
4355 'warnings' => '1.09',
4356 },
4357 removed => {
4358 }
d3cba0fe 4359 },
2a3ea5b5 4360 5.011005 => {
a272bf38
DL
4361 delta_from => 5.011004,
4362 changed => {
4363 'B::Debug' => '1.12',
4364 'CPAN' => '1.94_56',
4365 'CPAN::Debug' => '5.5001',
4366 'CPAN::Distribution' => '1.9456',
4367 'CPAN::FirstTime' => '5.5301',
4368 'CPAN::HandleConfig' => '5.5001',
4369 'CPAN::Shell' => '5.5001',
4370 'CPAN::Tarzip' => '5.5011',
4371 'CPANPLUS::Dist::Build' => '0.46',
4372 'CPANPLUS::Dist::Build::Constants'=> '0.46',
4373 'Module::CoreList' => '2.26',
4374 'Pod::Man' => '2.23',
4375 'Pod::ParseLink' => '1.10',
4376 'Pod::Perldoc' => '3.15_02',
4377 'Pod::Plainer' => '1.02',
4378 'Pod::Text' => '3.14',
4379 'Pod::Text::Color' => '2.06',
4380 'Pod::Text::Overstrike' => '2.04',
4381 'Pod::Text::Termcap' => '2.06',
4382 'Safe' => '2.22',
4383 'Socket' => '1.86',
4384 'version' => '0.82',
4385 },
4386 removed => {
4387 }
812cbf67 4388 },
a272bf38
DL
4389 5.012 => {
4390 delta_from => 5.011005,
4391 changed => {
4392 'B::Deparse' => '0.96',
4393 'CPAN::Distribution' => '1.9456_01',
4394 'Module::CoreList' => '2.29',
4395 'Safe' => '2.25',
4396 'Socket' => '1.87',
4397 'Tie::Scalar' => '1.02',
4398 'Time::Piece' => '1.15_01',
4399 'bytes' => '1.04',
4400 'feature' => '1.16',
4401 'utf8' => '1.08',
4402 },
4403 removed => {
4404 }
3ec75686 4405 },
16ccd2bb 4406 5.012001 => {
a272bf38
DL
4407 delta_from => 5.012,
4408 changed => {
4409 'B::Deparse' => '0.97',
4410 'CGI' => '3.49',
4411 'CGI::Fast' => '1.08',
4412 'Carp' => '1.16',
4413 'Carp::Heavy' => '1.16',
4414 'File::Copy' => '2.18',
4415 'Module::CoreList' => '2.32',
4416 'Pod::Functions' => '1.04',
4417 'Pod::Simple' => '3.14',
4418 'Pod::Simple::BlackBox' => '3.14',
4419 'Pod::Simple::Checker' => '3.14',
4420 'Pod::Simple::Debug' => '3.14',
4421 'Pod::Simple::DumpAsText'=> '3.14',
4422 'Pod::Simple::DumpAsXML'=> '3.14',
4423 'Pod::Simple::HTML' => '3.14',
4424 'Pod::Simple::HTMLBatch'=> '3.14',
4425 'Pod::Simple::LinkSection'=> '3.14',
4426 'Pod::Simple::Methody' => '3.14',
4427 'Pod::Simple::Progress' => '3.14',
4428 'Pod::Simple::PullParser'=> '3.14',
4429 'Pod::Simple::PullParserEndToken'=> '3.14',
4430 'Pod::Simple::PullParserStartToken'=> '3.14',
4431 'Pod::Simple::PullParserTextToken'=> '3.14',
4432 'Pod::Simple::PullParserToken'=> '3.14',
4433 'Pod::Simple::RTF' => '3.14',
4434 'Pod::Simple::Search' => '3.14',
4435 'Pod::Simple::SimpleTree'=> '3.14',
4436 'Pod::Simple::Text' => '3.14',
4437 'Pod::Simple::TextContent'=> '3.14',
4438 'Pod::Simple::TiedOutFH'=> '3.14',
4439 'Pod::Simple::Transcode'=> '3.14',
4440 'Pod::Simple::TranscodeDumb'=> '3.14',
4441 'Pod::Simple::TranscodeSmart'=> '3.14',
4442 'Pod::Simple::XHTML' => '3.14',
4443 'Pod::Simple::XMLOutStream'=> '3.14',
4444 'Safe' => '2.27',
4445 },
4446 removed => {
4447 }
4448 },
4449 5.012002 => {
4450 delta_from => 5.012001,
4451 changed => {
4452 'Carp' => '1.17',
4453 'Carp::Heavy' => '1.17',
4454 'File::Spec' => '3.31_01',
4455 'Module::CoreList' => '2.38',
4456 'Module::Load::Conditional'=> '0.38',
4457 'PerlIO::scalar' => '0.08',
4458 },
4459 removed => {
4460 }
4461 },
4462 5.012003 => {
4463 delta_from => 5.012002,
4464 changed => {
4465 'B::Deparse' => '0.9701',
4466 'Module::Build::Platform::cygwin'=> '0.360301',
4467 'Module::CoreList' => '2.43',
4468 'Socket' => '1.87_01',
4469 },
4470 removed => {
4471 }
4472 },
4473 5.012004 => {
4474 delta_from => 5.012003,
4475 changed => {
4476 'Module::CoreList' => '2.50',
4477 },
4478 removed => {
a272bf38
DL
4479 }
4480 },
3df1c36a
CBW
4481 5.012005 => {
4482 delta_from => 5.012004,
4483 changed => {
4484 'B::Concise' => '0.78_01',
4485 'Encode' => '2.39_01',
4486 'File::Glob' => '1.07_01',
4487 'Module::CoreList' => '2.50_02',
4488 'Unicode::UCD' => '0.29',
4489 'charnames' => '1.07_01',
4490 },
4491 removed => {
4492 }
4493 },
a272bf38
DL
4494 5.013 => {
4495 delta_from => 5.012,
4496 changed => {
4497 'CGI' => '3.49',
4498 'CGI::Fast' => '1.08',
4499 'Data::Dumper' => '2.126',
4500 'ExtUtils::MM_Unix' => '6.5601',
4501 'ExtUtils::MakeMaker' => '6.5601',
4502 'File::Copy' => '2.18',
4503 'IPC::Open3' => '1.06',
4504 'MIME::Base64' => '3.09',
4505 'MIME::QuotedPrint' => '3.09',
4506 'Module::CoreList' => '2.31',
4507 'Pod::Functions' => '1.04',
4508 'XS::APItest' => '0.18',
4509 'XS::APItest::KeywordRPN'=> '0.004',
4510 'feature' => '1.17',
4511 'threads' => '1.77_01',
4512 'threads::shared' => '1.33',
4513 },
4514 removed => {
4515 }
16ccd2bb 4516 },
528f07d6 4517 5.013001 => {
a272bf38
DL
4518 delta_from => 5.012001,
4519 changed => {
4520 'Data::Dumper' => '2.126',
4521 'Dumpvalue' => '1.14',
4522 'Errno' => '1.12',
4523 'ExtUtils::MM_Unix' => '6.5601',
4524 'ExtUtils::MakeMaker' => '6.5601',
4525 'ExtUtils::ParseXS' => '2.2205',
4526 'File::Find' => '1.16',
4527 'IPC::Cmd' => '0.58',
4528 'IPC::Open3' => '1.06',
4529 'List::Util' => '1.23',
4530 'List::Util::PP' => '1.23',
4531 'List::Util::XS' => '1.23',
4532 'Locale::Codes' => '3.12',
4533 'Locale::Codes::Country'=> '3.12',
4534 'Locale::Codes::Currency'=> '3.12',
4535 'Locale::Codes::Language'=> '3.12',
4536 'Locale::Codes::Script' => '3.12',
4537 'Locale::Constants' => '3.12',
4538 'Locale::Country' => '3.12',
4539 'Locale::Currency' => '3.12',
4540 'Locale::Language' => '3.12',
4541 'Locale::Script' => '3.12',
4542 'MIME::Base64' => '3.09',
4543 'MIME::QuotedPrint' => '3.09',
4544 'Module::Build::Platform::cygwin'=> '0.360301',
4545 'Module::CoreList' => '2.34',
4546 'Module::Load::Conditional'=> '0.38',
4547 'PerlIO::scalar' => '0.08',
4548 'Scalar::Util' => '1.23',
4549 'Scalar::Util::PP' => '1.23',
4550 'Socket' => '1.88',
4551 'Term::ReadLine' => '1.06',
4552 'Unicode::UCD' => '0.28',
4553 'XS::APItest' => '0.19',
4554 'XS::APItest::KeywordRPN'=> '0.004',
4555 'charnames' => '1.08',
4556 'feature' => '1.17',
4557 'threads' => '1.77_01',
4558 'threads::shared' => '1.33',
4559 },
4560 removed => {
4561 'Class::ISA' => 1,
4562 'Pod::Plainer' => 1,
4563 'Switch' => 1,
4564 }
528f07d6 4565 },
37e1f6c7 4566 5.013002 => {
a272bf38
DL
4567 delta_from => 5.013001,
4568 changed => {
4569 'B::Concise' => '0.79',
4570 'B::Deparse' => '0.98',
4571 'CPAN' => '1.94_57',
4572 'CPAN::Distribution' => '1.9600',
4573 'Exporter' => '5.64_02',
4574 'Exporter::Heavy' => '5.64_02',
4575 'File::Copy' => '2.19',
4576 'Hash::Util' => '0.08',
4577 'IO::Socket' => '1.32',
4578 'Locale::Codes' => '3.13',
4579 'Locale::Codes::Country'=> '3.13',
4580 'Locale::Codes::Currency'=> '3.13',
4581 'Locale::Codes::Language'=> '3.13',
4582 'Locale::Codes::Script' => '3.13',
4583 'Locale::Constants' => '3.13',
4584 'Locale::Country' => '3.13',
4585 'Locale::Currency' => '3.13',
4586 'Locale::Language' => '3.13',
4587 'Locale::Script' => '3.13',
4588 'Search::Dict' => '1.03',
4589 'Socket' => '1.89',
4590 'Thread::Semaphore' => '2.11',
4591 'UNIVERSAL' => '1.07',
4592 'VMS::DCLsym' => '1.04',
4593 'mro' => '1.03',
4594 'threads' => '1.77_02',
4595 'threads::shared' => '1.33_01',
4596 },
4597 removed => {
4598 }
37e1f6c7 4599 },
a4729c0f 4600 5.013003 => {
a272bf38
DL
4601 delta_from => 5.013002,
4602 changed => {
4603 'App::Prove' => '3.21',
4604 'App::Prove::State' => '3.21',
4605 'App::Prove::State::Result'=> '3.21',
4606 'App::Prove::State::Result::Test'=> '3.21',
4607 'Archive::Extract' => '0.42',
4608 'Archive::Tar' => '1.64',
4609 'Archive::Tar::Constant'=> '1.64',
4610 'Archive::Tar::File' => '1.64',
4611 'Attribute::Handlers' => '0.88',
4612 'CPANPLUS' => '0.9007',
4613 'CPANPLUS::Internals' => '0.9007',
4614 'CPANPLUS::Shell::Default'=> '0.9007',
4615 'Compress::Raw::Bzip2' => '2.027',
4616 'Compress::Raw::Zlib' => '2.027_01',
4617 'Compress::Zlib' => '2.027',
4618 'DB' => '1.03',
4619 'Digest::MD5' => '2.40',
4620 'Digest::SHA' => '5.48',
4621 'Exporter' => '5.64_03',
4622 'Exporter::Heavy' => '5.64_03',
4623 'ExtUtils::CBuilder' => '0.2703',
4624 'ExtUtils::CBuilder::Base'=> '0.2703_01',
4625 'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4626 'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4627 'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4628 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4629 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4630 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4631 'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4632 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4633 'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4634 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4635 'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4636 'ExtUtils::Manifest' => '1.58',
4637 'ExtUtils::ParseXS' => '2.2206',
4638 'Fatal' => '2.10',
4639 'File::Basename' => '2.79',
4640 'File::Copy' => '2.20',
4641 'File::DosGlob' => '1.02',
4642 'File::Find' => '1.17',
4643 'File::Glob' => '1.08',
4644 'File::stat' => '1.03',
4645 'I18N::LangTags' => '0.35_01',
4646 'I18N::LangTags::List' => '0.35_01',
4647 'IO::Compress::Adapter::Bzip2'=> '2.027',
4648 'IO::Compress::Adapter::Deflate'=> '2.027',
4649 'IO::Compress::Adapter::Identity'=> '2.027',
4650 'IO::Compress::Base' => '2.027',
4651 'IO::Compress::Base::Common'=> '2.027',
4652 'IO::Compress::Bzip2' => '2.027',
4653 'IO::Compress::Deflate' => '2.027',
4654 'IO::Compress::Gzip' => '2.027',
4655 'IO::Compress::Gzip::Constants'=> '2.027',
4656 'IO::Compress::RawDeflate'=> '2.027',
4657 'IO::Compress::Zip' => '2.027',
4658 'IO::Compress::Zip::Constants'=> '2.027',
4659 'IO::Compress::Zlib::Constants'=> '2.027',
4660 'IO::Compress::Zlib::Extra'=> '2.027',
4661 'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4662 'IO::Uncompress::Adapter::Identity'=> '2.027',
4663 'IO::Uncompress::Adapter::Inflate'=> '2.027',
4664 'IO::Uncompress::AnyInflate'=> '2.027',
4665 'IO::Uncompress::AnyUncompress'=> '2.027',
4666 'IO::Uncompress::Base' => '2.027',
4667 'IO::Uncompress::Bunzip2'=> '2.027',
4668 'IO::Uncompress::Gunzip'=> '2.027',
4669 'IO::Uncompress::Inflate'=> '2.027',
4670 'IO::Uncompress::RawInflate'=> '2.027',
4671 'IO::Uncompress::Unzip' => '2.027',
4672 'IPC::Cmd' => '0.60',
4673 'IPC::Msg' => '2.03',
4674 'IPC::Semaphore' => '2.03',
4675 'IPC::SharedMem' => '2.03',
4676 'IPC::SysV' => '2.03',
4677 'Locale::Maketext' => '1.15',
4678 'Locale::Maketext::Guts'=> undef,
4679 'Locale::Maketext::GutsLoader'=> undef,
4680 'Module::Build' => '0.3607',
4681 'Module::Build::Base' => '0.3607',
4682 'Module::Build::Compat' => '0.3607',
4683 'Module::Build::Config' => '0.3607',
4684 'Module::Build::Cookbook'=> '0.3607',
4685 'Module::Build::Dumper' => '0.3607',
4686 'Module::Build::ModuleInfo'=> '0.3607',
4687 'Module::Build::Notes' => '0.3607',
4688 'Module::Build::PPMMaker'=> '0.3607',
4689 'Module::Build::Platform::Amiga'=> '0.3607',
4690 'Module::Build::Platform::Default'=> '0.3607',
4691 'Module::Build::Platform::EBCDIC'=> '0.3607',
4692 'Module::Build::Platform::MPEiX'=> '0.3607',
4693 'Module::Build::Platform::MacOS'=> '0.3607',
4694 'Module::Build::Platform::RiscOS'=> '0.3607',
4695 'Module::Build::Platform::Unix'=> '0.3607',
4696 'Module::Build::Platform::VMS'=> '0.3607',
4697 'Module::Build::Platform::VOS'=> '0.3607',
4698 'Module::Build::Platform::Windows'=> '0.3607',
4699 'Module::Build::Platform::aix'=> '0.3607',
4700 'Module::Build::Platform::cygwin'=> '0.3607',
4701 'Module::Build::Platform::darwin'=> '0.3607',
4702 'Module::Build::Platform::os2'=> '0.3607',
4703 'Module::Build::PodParser'=> '0.3607',
4704 'Module::CoreList' => '2.36',
4705 'Module::Load' => '0.18',
4706 'TAP::Base' => '3.21',
4707 'TAP::Formatter::Base' => '3.21',
4708 'TAP::Formatter::Color' => '3.21',
4709 'TAP::Formatter::Console'=> '3.21',
4710 'TAP::Formatter::Console::ParallelSession'=> '3.21',
4711 'TAP::Formatter::Console::Session'=> '3.21',
4712 'TAP::Formatter::File' => '3.21',
4713 'TAP::Formatter::File::Session'=> '3.21',
4714 'TAP::Formatter::Session'=> '3.21',
4715 'TAP::Harness' => '3.21',
4716 'TAP::Object' => '3.21',
4717 'TAP::Parser' => '3.21',
4718 'TAP::Parser::Aggregator'=> '3.21',
4719 'TAP::Parser::Grammar' => '3.21',
4720 'TAP::Parser::Iterator' => '3.21',
4721 'TAP::Parser::Iterator::Array'=> '3.21',
4722 'TAP::Parser::Iterator::Process'=> '3.21',
4723 'TAP::Parser::Iterator::Stream'=> '3.21',
4724 'TAP::Parser::IteratorFactory'=> '3.21',
4725 'TAP::Parser::Multiplexer'=> '3.21',
4726 'TAP::Parser::Result' => '3.21',
4727 'TAP::Parser::Result::Bailout'=> '3.21',
4728 'TAP::Parser::Result::Comment'=> '3.21',
4729 'TAP::Parser::Result::Plan'=> '3.21',
4730 'TAP::Parser::Result::Pragma'=> '3.21',
4731 'TAP::Parser::Result::Test'=> '3.21',
4732 'TAP::Parser::Result::Unknown'=> '3.21',
4733 'TAP::Parser::Result::Version'=> '3.21',
4734 'TAP::Parser::Result::YAML'=> '3.21',
4735 'TAP::Parser::ResultFactory'=> '3.21',
4736 'TAP::Parser::Scheduler'=> '3.21',
4737 'TAP::Parser::Scheduler::Job'=> '3.21',
4738 'TAP::Parser::Scheduler::Spinner'=> '3.21',
4739 'TAP::Parser::Source' => '3.21',
4740 'TAP::Parser::SourceHandler'=> '3.21',
4741 'TAP::Parser::SourceHandler::Executable'=> '3.21',
4742 'TAP::Parser::SourceHandler::File'=> '3.21',
4743 'TAP::Parser::SourceHandler::Handle'=> '3.21',
4744 'TAP::Parser::SourceHandler::Perl'=> '3.21',
4745 'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4746 'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4747 'TAP::Parser::Utils' => '3.21',
4748 'TAP::Parser::YAMLish::Reader'=> '3.21',
4749 'TAP::Parser::YAMLish::Writer'=> '3.21',
4750 'Term::ANSIColor' => '3.00',
4751 'Term::ReadLine' => '1.07',
4752 'Test::Harness' => '3.21',
4753 'Tie::Array' => '1.04',
4754 'Time::HiRes' => '1.9721',
4755 'Time::Piece' => '1.20_01',
4756 'Unicode::Collate' => '0.53',
4757 'Unicode::Normalize' => '1.06',
4758 'Unicode::UCD' => '0.29',
4759 'autodie' => '2.10',
4760 'autodie::exception' => '2.10',
4761 'autodie::exception::system'=> '2.10',
4762 'autodie::hints' => '2.10',
4763 'blib' => '1.05',
4764 'charnames' => '1.11',
4765 'diagnostics' => '1.20',
4766 'inc::latest' => '0.3607',
4767 'lib' => '0.63',
4768 're' => '0.12',
4769 'threads' => '1.77_03',
4770 'threads::shared' => '1.33_02',
4771 'vars' => '1.02',
4772 'warnings' => '1.10',
4773 },
4774 removed => {
a272bf38
DL
4775 'TAP::Parser::Source::Perl'=> 1,
4776 }
a4729c0f 4777 },
7529c15c 4778 5.013004 => {
a272bf38
DL
4779 delta_from => 5.013003,
4780 changed => {
4781 'App::Prove' => '3.22',
4782 'App::Prove::State' => '3.22',
4783 'App::Prove::State::Result'=> '3.22',
4784 'App::Prove::State::Result::Test'=> '3.22',
4785 'Archive::Tar' => '1.68',
4786 'Archive::Tar::Constant'=> '1.68',
4787 'Archive::Tar::File' => '1.68',
4788 'B::Lint' => '1.12',
4789 'B::Lint::Debug' => '1.12',
4790 'Carp' => '1.18',
4791 'Carp::Heavy' => '1.18',
4792 'Compress::Raw::Bzip2' => '2.030',
4793 'Compress::Raw::Zlib' => '2.030',
4794 'Compress::Zlib' => '2.030',
a272bf38
DL
4795 'ExtUtils::ParseXS' => '2.2207',
4796 'File::Spec' => '3.31_01',
4797 'I18N::Langinfo' => '0.04',
4798 'IO::Compress::Adapter::Bzip2'=> '2.030',
4799 'IO::Compress::Adapter::Deflate'=> '2.030',
4800 'IO::Compress::Adapter::Identity'=> '2.030',
4801 'IO::Compress::Base' => '2.030',
4802 'IO::Compress::Base::Common'=> '2.030',
4803 'IO::Compress::Bzip2' => '2.030',
4804 'IO::Compress::Deflate' => '2.030',
4805 'IO::Compress::Gzip' => '2.030',
4806 'IO::Compress::Gzip::Constants'=> '2.030',
4807 'IO::Compress::RawDeflate'=> '2.030',
4808 'IO::Compress::Zip' => '2.030',
4809 'IO::Compress::Zip::Constants'=> '2.030',
4810 'IO::Compress::Zlib::Constants'=> '2.030',
4811 'IO::Compress::Zlib::Extra'=> '2.030',
4812 'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4813 'IO::Uncompress::Adapter::Identity'=> '2.030',
4814 'IO::Uncompress::Adapter::Inflate'=> '2.030',
4815 'IO::Uncompress::AnyInflate'=> '2.030',
4816 'IO::Uncompress::AnyUncompress'=> '2.030',
4817 'IO::Uncompress::Base' => '2.030',
4818 'IO::Uncompress::Bunzip2'=> '2.030',
4819 'IO::Uncompress::Gunzip'=> '2.030',
4820 'IO::Uncompress::Inflate'=> '2.030',
4821 'IO::Uncompress::RawInflate'=> '2.030',
4822 'IO::Uncompress::Unzip' => '2.030',
4823 'Module::CoreList' => '2.37',
4824 'TAP::Base' => '3.22',
4825 'TAP::Formatter::Base' => '3.22',
4826 'TAP::Formatter::Color' => '3.22',
4827 'TAP::Formatter::Console'=> '3.22',
4828 'TAP::Formatter::Console::ParallelSession'=> '3.22',
4829 'TAP::Formatter::Console::Session'=> '3.22',
4830 'TAP::Formatter::File' => '3.22',
4831 'TAP::Formatter::File::Session'=> '3.22',
4832 'TAP::Formatter::Session'=> '3.22',
4833 'TAP::Harness' => '3.22',
4834 'TAP::Object' => '3.22',
4835 'TAP::Parser' => '3.22',
4836 'TAP::Parser::Aggregator'=> '3.22',
4837 'TAP::Parser::Grammar' => '3.22',
4838 'TAP::Parser::Iterator' => '3.22',
4839 'TAP::Parser::Iterator::Array'=> '3.22',
4840 'TAP::Parser::Iterator::Process'=> '3.22',
4841 'TAP::Parser::Iterator::Stream'=> '3.22',
4842 'TAP::Parser::IteratorFactory'=> '3.22',
4843 'TAP::Parser::Multiplexer'=> '3.22',
4844 'TAP::Parser::Result' => '3.22',
4845 'TAP::Parser::Result::Bailout'=> '3.22',
4846 'TAP::Parser::Result::Comment'=> '3.22',
4847 'TAP::Parser::Result::Plan'=> '3.22',
4848 'TAP::Parser::Result::Pragma'=> '3.22',
4849 'TAP::Parser::Result::Test'=> '3.22',
4850 'TAP::Parser::Result::Unknown'=> '3.22',
4851 'TAP::Parser::Result::Version'=> '3.22',
4852 'TAP::Parser::Result::YAML'=> '3.22',
4853 'TAP::Parser::ResultFactory'=> '3.22',
4854 'TAP::Parser::Scheduler'=> '3.22',
4855 'TAP::Parser::Scheduler::Job'=> '3.22',
4856 'TAP::Parser::Scheduler::Spinner'=> '3.22',
4857 'TAP::Parser::Source' => '3.22',
4858 'TAP::Parser::SourceHandler'=> '3.22',
4859 'TAP::Parser::SourceHandler::Executable'=> '3.22',
4860 'TAP::Parser::SourceHandler::File'=> '3.22',
4861 'TAP::Parser::SourceHandler::Handle'=> '3.22',
4862 'TAP::Parser::SourceHandler::Perl'=> '3.22',
4863 'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4864 'TAP::Parser::Utils' => '3.22',
4865 'TAP::Parser::YAMLish::Reader'=> '3.22',
4866 'TAP::Parser::YAMLish::Writer'=> '3.22',
4867 'Test::Builder' => '0.96',
4868 'Test::Builder::Module' => '0.96',
4869 'Test::Builder::Tester' => '1.20',
4870 'Test::Builder::Tester::Color'=> '1.20',
4871 'Test::Harness' => '3.22',
4872 'Test::More' => '0.96',
4873 'Test::Simple' => '0.96',
4874 'Unicode::Collate' => '0.56',
4875 'Unicode::Collate::Locale'=> '0.56',
4876 'XS::APItest' => '0.20',
4877 'charnames' => '1.15',
4878 'feature' => '1.18',
4879 },
4880 removed => {
4881 'TAP::Parser::SourceHandler::pgTAP'=> 1,
4882 }
b55a5fdc 4883 },
0530d763 4884 5.013005 => {
a272bf38
DL
4885 delta_from => 5.013004,
4886 changed => {
4887 'B::Debug' => '1.16',
4888 'CPANPLUS::Dist::Build' => '0.48',
4889 'CPANPLUS::Dist::Build::Constants'=> '0.48',
4890 'Data::Dumper' => '2.128',
4891 'Encode' => '2.40',
4892 'Encode::Guess' => '2.04',
4893 'Encode::MIME::Header' => '2.12',
4894 'Encode::Unicode::UTF7' => '2.05',
4895 'Errno' => '1.13',
4896 'ExtUtils::Command::MM' => '6.57_05',
4897 'ExtUtils::Liblist' => '6.57_05',
4898 'ExtUtils::Liblist::Kid'=> '6.5705',
4899 'ExtUtils::MM' => '6.57_05',
4900 'ExtUtils::MM_AIX' => '6.57_05',
4901 'ExtUtils::MM_Any' => '6.57_05',
4902 'ExtUtils::MM_BeOS' => '6.57_05',
4903 'ExtUtils::MM_Cygwin' => '6.57_05',
4904 'ExtUtils::MM_DOS' => '6.5705',
4905 'ExtUtils::MM_Darwin' => '6.57_05',
4906 'ExtUtils::MM_MacOS' => '6.5705',
4907 'ExtUtils::MM_NW5' => '6.57_05',
4908 'ExtUtils::MM_OS2' => '6.57_05',
4909 'ExtUtils::MM_QNX' => '6.57_05',
4910 'ExtUtils::MM_UWIN' => '6.5705',
4911 'ExtUtils::MM_Unix' => '6.57_05',
4912 'ExtUtils::MM_VMS' => '6.57_05',
4913 'ExtUtils::MM_VOS' => '6.57_05',
4914 'ExtUtils::MM_Win32' => '6.57_05',
4915 'ExtUtils::MM_Win95' => '6.57_05',
4916 'ExtUtils::MY' => '6.5705',
4917 'ExtUtils::MakeMaker' => '6.57_05',
4918 'ExtUtils::MakeMaker::Config'=> '6.57_05',
4919 'ExtUtils::MakeMaker::YAML'=> '1.44',
4920 'ExtUtils::Mkbootstrap' => '6.57_05',
4921 'ExtUtils::Mksymlists' => '6.57_05',
4922 'ExtUtils::testlib' => '6.5705',
4923 'Filter::Simple' => '0.85',
4924 'Hash::Util' => '0.09',
4925 'Math::BigFloat' => '1.62',
4926 'Math::BigInt' => '1.95',
4927 'Math::BigInt::Calc' => '0.54',
4928 'Math::BigInt::CalcEmu' => '0.06',
4929 'Math::BigInt::FastCalc'=> '0.22',
4930 'Math::BigRat' => '0.26',
4931 'Module::CoreList' => '2.39',
4932 'POSIX' => '1.20',
4933 'PerlIO::scalar' => '0.09',
4934 'Safe' => '2.28',
4935 'Test::Builder' => '0.97_01',
4936 'Test::Builder::Module' => '0.97_01',
4937 'Test::Builder::Tester' => '1.21_01',
4938 'Test::Builder::Tester::Color'=> '1.21_01',
4939 'Test::More' => '0.97_01',
4940 'Test::Simple' => '0.97_01',
4941 'Tie::Hash' => '1.04',
4942 'Unicode::Collate' => '0.59',
4943 'Unicode::Collate::Locale'=> '0.59',
4944 'XS::APItest' => '0.21',
4945 'XS::APItest::KeywordRPN'=> '0.005',
4946 'XSLoader' => '0.11',
4947 'bigint' => '0.25',
4948 'bignum' => '0.25',
4949 'bigrat' => '0.25',
4950 'blib' => '1.06',
4951 'open' => '1.08',
4952 'threads::shared' => '1.33_03',
4953 'warnings' => '1.11',
4954 'warnings::register' => '1.02',
4955 },
4956 removed => {
4957 }
0530d763 4958 },
7de25fd5 4959 5.013006 => {
a272bf38
DL
4960 delta_from => 5.013005,
4961 changed => {
4962 'Archive::Extract' => '0.44',
4963 'B' => '1.24',
4964 'B::Deparse' => '0.99',
4965 'CPAN' => '1.94_61',
4966 'CPAN::FTP' => '5.5005',
4967 'CPAN::Queue' => '5.5001',
4968 'CPAN::Version' => '5.5001',
4969 'Carp' => '1.19',
4970 'Carp::Heavy' => '1.19',
4971 'Compress::Raw::Bzip2' => '2.031',
4972 'Cwd' => '3.34',
4973 'Data::Dumper' => '2.129',
4974 'Devel::Peek' => '1.05',
4975 'Digest::MD5' => '2.51',
4976 'ExtUtils::Constant::Base'=> '0.05',
4977 'ExtUtils::Constant::ProxySubs'=> '0.07',
4978 'ExtUtils::Embed' => '1.29',
4979 'ExtUtils::XSSymSet' => '1.2',
4980 'Fcntl' => '1.09',
4981 'File::DosGlob' => '1.03',
4982 'File::Find' => '1.18',
4983 'File::Glob' => '1.09',
4984 'File::Spec' => '3.33',
4985 'File::Spec::Cygwin' => '3.33',
4986 'File::Spec::Epoc' => '3.33',
4987 'File::Spec::Functions' => '3.33',
4988 'File::Spec::Mac' => '3.33',
4989 'File::Spec::OS2' => '3.33',
4990 'File::Spec::Unix' => '3.33',
4991 'File::Spec::VMS' => '3.33',
4992 'File::Spec::Win32' => '3.33',
4993 'GDBM_File' => '1.11',
4994 'Hash::Util::FieldHash' => '1.05',
4995 'I18N::Langinfo' => '0.06',
4996 'IPC::Cmd' => '0.64',
4997 'IPC::Open3' => '1.07',
4998 'Locale::Codes' => '3.14',
4999 'Locale::Codes::Country'=> '3.14',
5000 'Locale::Codes::Currency'=> '3.14',
5001 'Locale::Codes::Language'=> '3.14',
5002 'Locale::Codes::Script' => '3.14',
5003 'Locale::Constants' => '3.14',
5004 'Locale::Country' => '3.14',
5005 'Locale::Currency' => '3.14',
5006 'Locale::Language' => '3.14',
5007 'Locale::Maketext' => '1.16',
5008 'Locale::Script' => '3.14',
5009 'Math::BigFloat' => '1.63',
5010 'Math::BigInt' => '1.97',
5011 'Math::BigInt::Calc' => '0.55',
5012 'Math::BigInt::CalcEmu' => '0.07',
5013 'Module::CoreList' => '2.40',
5014 'NDBM_File' => '1.09',
5015 'NEXT' => '0.65',
5016 'ODBM_File' => '1.08',
5017 'Opcode' => '1.16',
5018 'POSIX' => '1.21',
5019 'PerlIO::encoding' => '0.13',
5020 'PerlIO::scalar' => '0.10',
5021 'PerlIO::via' => '0.10',
5022 'Pod::Man' => '2.25',
5023 'Pod::Text' => '3.15',
5024 'SDBM_File' => '1.07',
5025 'Socket' => '1.90',
5026 'Sys::Hostname' => '1.13',
5027 'Tie::Hash::NamedCapture'=> '0.07',
5028 'Unicode::Collate' => '0.63',
5029 'Unicode::Collate::Locale'=> '0.63',
5030 'Unicode::Normalize' => '1.07',
5031 'XS::APItest' => '0.23',
5032 'XSLoader' => '0.13',
5033 'attributes' => '0.13',
5034 'charnames' => '1.16',
5035 'if' => '0.06',
5036 'mro' => '1.04',
5037 'overload' => '1.11',
5038 're' => '0.13',
5039 'sigtrap' => '1.05',
5040 'threads' => '1.81_01',
5041 'threads::shared' => '1.34',
5042 },
5043 removed => {
5044 'XS::APItest::KeywordRPN'=> 1,
5045 }
7de25fd5 5046 },
d24e0a99 5047 5.013007 => {
a272bf38
DL
5048 delta_from => 5.013006,
5049 changed => {
5050 'Archive::Extract' => '0.46',
5051 'Archive::Tar' => '1.72',
5052 'Archive::Tar::Constant'=> '1.72',
5053 'Archive::Tar::File' => '1.72',
5054 'AutoLoader' => '5.71',
5055 'B' => '1.26',
5056 'B::Concise' => '0.81',
5057 'B::Deparse' => '1.01',
5058 'CGI' => '3.50',
5059 'CPAN' => '1.94_62',
5060 'CPANPLUS' => '0.9010',
5061 'CPANPLUS::Dist::Build' => '0.50',
5062 'CPANPLUS::Dist::Build::Constants'=> '0.50',
5063 'CPANPLUS::Internals' => '0.9010',
5064 'CPANPLUS::Shell::Default'=> '0.9010',
5065 'Data::Dumper' => '2.130_01',
5066 'DynaLoader' => '1.11',
5067 'ExtUtils::Constant' => '0.23',
5068 'ExtUtils::Constant::ProxySubs'=> '0.08',
5069 'Fcntl' => '1.10',
5070 'File::Fetch' => '0.28',
5071 'File::Glob' => '1.10',
5072 'File::stat' => '1.04',
5073 'GDBM_File' => '1.12',
5074 'Hash::Util' => '0.10',
5075 'Hash::Util::FieldHash' => '1.06',
5076 'I18N::Langinfo' => '0.07',
5077 'Locale::Maketext' => '1.17',
5078 'Locale::Maketext::Guts'=> '1.17',
5079 'Locale::Maketext::GutsLoader'=> '1.17',
5080 'MIME::Base64' => '3.10',
5081 'MIME::QuotedPrint' => '3.10',
5082 'Math::BigFloat' => '1.99_01',
5083 'Math::BigInt' => '1.99_01',
5084 'Math::BigInt::Calc' => '1.99_01',
5085 'Math::BigInt::CalcEmu' => '1.99_01',
5086 'Math::BigInt::FastCalc'=> '0.24_01',
5087 'Math::BigRat' => '0.26_01',
5088 'Module::CoreList' => '2.41',
5089 'NDBM_File' => '1.10',
5090 'ODBM_File' => '1.09',
5091 'Opcode' => '1.17',
5092 'POSIX' => '1.22',
5093 'Pod::Simple' => '3.15',
5094 'Pod::Simple::BlackBox' => '3.15',
5095 'Pod::Simple::Checker' => '3.15',
5096 'Pod::Simple::Debug' => '3.15',
5097 'Pod::Simple::DumpAsText'=> '3.15',
5098 'Pod::Simple::DumpAsXML'=> '3.15',
5099 'Pod::Simple::HTML' => '3.15',
5100 'Pod::Simple::HTMLBatch'=> '3.15',
5101 'Pod::Simple::LinkSection'=> '3.15',
5102 'Pod::Simple::Methody' => '3.15',
5103 'Pod::Simple::Progress' => '3.15',
5104 'Pod::Simple::PullParser'=> '3.15',
5105 'Pod::Simple::PullParserEndToken'=> '3.15',
5106 'Pod::Simple::PullParserStartToken'=> '3.15',
5107 'Pod::Simple::PullParserTextToken'=> '3.15',
5108 'Pod::Simple::PullParserToken'=> '3.15',
5109 'Pod::Simple::RTF' => '3.15',
5110 'Pod::Simple::Search' => '3.15',
5111 'Pod::Simple::SimpleTree'=> '3.15',
5112 'Pod::Simple::Text' => '3.15',
5113 'Pod::Simple::TextContent'=> '3.15',
5114 'Pod::Simple::TiedOutFH'=> '3.15',
5115 'Pod::Simple::Transcode'=> '3.15',
5116 'Pod::Simple::TranscodeDumb'=> '3.15',
5117 'Pod::Simple::TranscodeSmart'=> '3.15',
5118 'Pod::Simple::XHTML' => '3.15',
5119 'Pod::Simple::XMLOutStream'=> '3.15',
5120 'SDBM_File' => '1.08',
5121 'Safe' => '2.29',
5122 'SelfLoader' => '1.18',
5123 'Socket' => '1.91',
5124 'Storable' => '2.24',
5125 'Sys::Hostname' => '1.14',
5126 'Unicode' => '6.0.0',
5127 'Unicode::Collate' => '0.67',
5128 'Unicode::Collate::CJK::Big5'=> '0.65',
5129 'Unicode::Collate::CJK::GB2312'=> '0.65',
5130 'Unicode::Collate::CJK::JISX0208'=> '0.64',
5131 'Unicode::Collate::CJK::Korean'=> '0.66',
5132 'Unicode::Collate::CJK::Pinyin'=> '0.65',
5133 'Unicode::Collate::CJK::Stroke'=> '0.65',
5134 'Unicode::Collate::Locale'=> '0.67',
5135 'XS::APItest' => '0.26',
5136 'XS::Typemap' => '0.04',
5137 'charnames' => '1.17',
5138 'mro' => '1.05',
5139 'parent' => '0.224',
5140 're' => '0.14',
5141 'threads' => '1.81_02',
5142 },
5143 removed => {
5144 }
d24e0a99 5145 },
67dbc274 5146 5.013008 => {
a272bf38
DL
5147 delta_from => 5.013007,
5148 changed => {
5149 'Archive::Tar' => '1.74',
5150 'Archive::Tar::Constant'=> '1.74',
5151 'Archive::Tar::File' => '1.74',
5152 'B' => '1.27',
5153 'B::Concise' => '0.82',
5154 'B::Deparse' => '1.02',
5155 'Carp::Heavy' => '1.17',
5156 'Cwd' => '3.35',
5157 'Data::Dumper' => '2.130_02',
5158 'Devel::Peek' => '1.06',
5159 'Devel::SelfStubber' => '1.05',
5160 'Digest::SHA' => '5.50',
5161 'Dumpvalue' => '1.15',
5162 'DynaLoader' => '1.12',
5163 'Env' => '1.02',
5164 'Exporter::Heavy' => '5.64_01',
5165 'ExtUtils::CBuilder' => '0.280201',
5166 'ExtUtils::CBuilder::Base'=> '0.280201',
5167 'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5168 'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5169 'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5170 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5171 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5172 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5173 'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5174 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5175 'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5176 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5177 'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5178 'ExtUtils::Constant::Utils'=> '0.03',
5179 'ExtUtils::Embed' => '1.30',
5180 'ExtUtils::ParseXS' => '2.2208',
5181 'Fatal' => '2.1001',
5182 'Fcntl' => '1.11',
5183 'File::CheckTree' => '4.41',
5184 'File::Glob' => '1.11',
5185 'GDBM_File' => '1.13',
5186 'Hash::Util::FieldHash' => '1.07',
5187 'I18N::Collate' => '1.02',
5188 'IO' => '1.25_03',
5189 'IPC::Cmd' => '0.66',
5190 'IPC::Open3' => '1.08',
5191 'Locale::Codes' => '3.15',
5192 'Locale::Codes::Country'=> '3.15',
5193 'Locale::Codes::Currency'=> '3.15',
5194 'Locale::Codes::Language'=> '3.15',
5195 'Locale::Codes::Script' => '3.15',
5196 'Locale::Constants' => '3.15',
5197 'Locale::Country' => '3.15',
5198 'Locale::Currency' => '3.15',
5199 'Locale::Language' => '3.15',
5200 'Locale::Script' => '3.15',
5201 'MIME::Base64' => '3.13',
5202 'MIME::QuotedPrint' => '3.13',
5203 'Math::BigFloat' => '1.99_02',
5204 'Math::BigInt' => '1.99_02',
5205 'Math::BigInt::Calc' => '1.99_02',
5206 'Math::BigInt::CalcEmu' => '1.99_02',
5207 'Memoize' => '1.02',
5208 'Memoize::AnyDBM_File' => '1.02',
5209 'Memoize::Expire' => '1.02',
5210 'Memoize::ExpireFile' => '1.02',
5211 'Memoize::ExpireTest' => '1.02',
5212 'Memoize::NDBM_File' => '1.02',
5213 'Memoize::SDBM_File' => '1.02',
5214 'Memoize::Storable' => '1.02',
5215 'Module::CoreList' => '2.43',
5216 'NDBM_File' => '1.11',
5217 'Net::Ping' => '2.37',
5218 'ODBM_File' => '1.10',
5219 'Opcode' => '1.18',
5220 'POSIX' => '1.23',
5221 'PerlIO::encoding' => '0.14',
5222 'PerlIO::scalar' => '0.11',
5223 'PerlIO::via' => '0.11',
5224 'SDBM_File' => '1.09',
5225 'Socket' => '1.92',
5226 'Storable' => '2.25',
5227 'Time::HiRes' => '1.9721_01',
5228 'Unicode::Collate' => '0.6801',
5229 'Unicode::Collate::Locale'=> '0.68',
5230 'Unicode::Normalize' => '1.08',
5231 'Unicode::UCD' => '0.30',
5232 'Win32' => '0.41',
5233 'XS::APItest' => '0.27',
5234 'autodie' => '2.1001',
5235 'autodie::exception' => '2.1001',
5236 'autodie::exception::system'=> '2.1001',
5237 'autodie::hints' => '2.1001',
5238 'feature' => '1.19',
5239 'if' => '0.0601',
5240 'mro' => '1.06',
5241 'overload' => '1.12',
5242 're' => '0.15',
5243 'threads' => '1.81_03',
5244 'threads::shared' => '1.35',
5245 'version' => '0.86',
5246 },
5247 removed => {
5248 }
57e52dbe 5249 },
e0698539 5250 5.013009 => {
a272bf38
DL
5251 delta_from => 5.013008,
5252 changed => {
5253 'Archive::Extract' => '0.48',
5254 'Archive::Tar' => '1.76',
5255 'Archive::Tar::Constant'=> '1.76',
5256 'Archive::Tar::File' => '1.76',
5257 'B::Concise' => '0.83',
5258 'B::Deparse' => '1.03',
5259 'B::Lint' => '1.13',
5260 'Benchmark' => '1.12',
5261 'CGI' => '3.51',
5262 'CGI::Carp' => '3.51',
5263 'CGI::Cookie' => '1.30',
5264 'CGI::Push' => '1.05',
5265 'CGI::Util' => '3.51',
5266 'CPAN' => '1.94_63',
5267 'CPAN::HTTP::Client' => '1.94',
5268 'CPAN::HTTP::Credentials'=> '1.94',
5269 'CPAN::Meta::YAML' => '0.003',
5270 'CPANPLUS' => '0.9011',
5271 'CPANPLUS::Dist::Build' => '0.52',
5272 'CPANPLUS::Dist::Build::Constants'=> '0.52',
5273 'CPANPLUS::Internals' => '0.9011',
5274 'CPANPLUS::Shell::Default'=> '0.9011',
5275 'Carp::Heavy' => '1.19',
5276 'Compress::Raw::Bzip2' => '2.033',
5277 'Compress::Raw::Zlib' => '2.033',
5278 'Compress::Zlib' => '2.033',
5279 'Cwd' => '3.36',
5280 'DBM_Filter' => '0.04',
5281 'DB_File' => '1.821',
5282 'Devel::Peek' => '1.07',
5283 'DirHandle' => '1.04',
5284 'Dumpvalue' => '1.16',
5285 'Encode' => '2.42',
5286 'Encode::Alias' => '2.13',
5287 'Encode::MIME::Header' => '2.13',
5288 'Exporter::Heavy' => '5.64_03',
5289 'ExtUtils::Install' => '1.56',
5290 'ExtUtils::ParseXS' => '2.2209',
5291 'File::Basename' => '2.80',
5292 'File::Copy' => '2.21',
5293 'File::DosGlob' => '1.04',
5294 'File::Fetch' => '0.32',
5295 'File::Find' => '1.19',
5296 'File::Spec::Mac' => '3.34',
5297 'File::Spec::VMS' => '3.34',
5298 'File::stat' => '1.05',
5299 'HTTP::Tiny' => '0.009',
5300 'Hash::Util::FieldHash' => '1.08',
5301 'IO::Compress::Adapter::Bzip2'=> '2.033',
5302 'IO::Compress::Adapter::Deflate'=> '2.033',
5303 'IO::Compress::Adapter::Identity'=> '2.033',
5304 'IO::Compress::Base' => '2.033',
5305 'IO::Compress::Base::Common'=> '2.033',
5306 'IO::Compress::Bzip2' => '2.033',
5307 'IO::Compress::Deflate' => '2.033',
5308 'IO::Compress::Gzip' => '2.033',
5309 'IO::Compress::Gzip::Constants'=> '2.033',
5310 'IO::Compress::RawDeflate'=> '2.033',
5311 'IO::Compress::Zip' => '2.033',
5312 'IO::Compress::Zip::Constants'=> '2.033',
5313 'IO::Compress::Zlib::Constants'=> '2.033',
5314 'IO::Compress::Zlib::Extra'=> '2.033',
5315 'IO::Handle' => '1.29',
5316 'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5317 'IO::Uncompress::Adapter::Identity'=> '2.033',
5318 'IO::Uncompress::Adapter::Inflate'=> '2.033',
5319 'IO::Uncompress::AnyInflate'=> '2.033',
5320 'IO::Uncompress::AnyUncompress'=> '2.033',
5321 'IO::Uncompress::Base' => '2.033',
5322 'IO::Uncompress::Bunzip2'=> '2.033',
5323 'IO::Uncompress::Gunzip'=> '2.033',
5324 'IO::Uncompress::Inflate'=> '2.033',
5325 'IO::Uncompress::RawInflate'=> '2.033',
5326 'IO::Uncompress::Unzip' => '2.033',
5327 'IPC::Cmd' => '0.68',
5328 'IPC::Open3' => '1.09',
5329 'JSON::PP' => '2.27103',
5330 'JSON::PP::Boolean' => undef,
5331 'Locale::Maketext' => '1.18',
5332 'Log::Message' => '0.04',
5333 'Log::Message::Config' => '0.04',
5334 'Log::Message::Handlers'=> '0.04',
5335 'Log::Message::Item' => '0.04',
5336 'Log::Message::Simple' => '0.08',
5337 'Math::BigFloat' => '1.99_03',
5338 'Math::BigInt' => '1.99_03',
5339 'Math::BigInt::Calc' => '1.99_03',
5340 'Math::BigInt::FastCalc'=> '0.24_02',
5341 'Math::BigRat' => '0.26_02',
5342 'Module::CoreList' => '2.42_01',
5343 'Module::Load::Conditional'=> '0.40',
5344 'Module::Metadata' => '1.000003',
5345 'Net::Ping' => '2.38',
78da2da6 5346 'OS2::Process' => '1.05',
a272bf38
DL
5347 'Object::Accessor' => '0.38',
5348 'POSIX' => '1.24',
5349 'Params::Check' => '0.28',
5350 'Perl::OSType' => '1.002',
5351 'Pod::LaTeX' => '0.59',
5352 'Pod::Perldoc' => '3.15_03',
5353 'Socket' => '1.93',
5354 'Storable' => '2.26',
5355 'Sys::Hostname' => '1.15',
5356 'Term::UI' => '0.24',
5357 'Thread::Queue' => '2.12',
5358 'Thread::Semaphore' => '2.12',
5359 'Time::Local' => '1.2000',
5360 'UNIVERSAL' => '1.08',
5361 'Unicode::Normalize' => '1.10',
5362 'Win32' => '0.44',
5363 'bigint' => '0.26',
5364 'bignum' => '0.26',
5365 'bigrat' => '0.26',
5366 'charnames' => '1.18',
5367 'diagnostics' => '1.21',
5368 're' => '0.16',
5369 'threads' => '1.83',
5370 'threads::shared' => '1.36',
5371 'version' => '0.88',
5372 },
5373 removed => {
5374 }
e0698539 5375 },
a272bf38
DL
5376 5.01301 => {
5377 delta_from => 5.013009,
5378 changed => {
5379 'Attribute::Handlers' => '0.89',
5380 'B' => '1.28',
5381 'B::Showlex' => '1.03',
5382 'CGI' => '3.52',
5383 'CPAN' => '1.94_65',
5384 'CPAN::Distribution' => '1.9601',
5385 'CPAN::FTP::netrc' => '1.01',
5386 'CPAN::FirstTime' => '5.5303',
5387 'CPAN::HandleConfig' => '5.5003',
5388 'CPAN::Meta' => '2.110440',
5389 'CPAN::Meta::Converter' => '2.110440',
5390 'CPAN::Meta::Feature' => '2.110440',
5391 'CPAN::Meta::History' => '2.110440',
5392 'CPAN::Meta::Prereqs' => '2.110440',
5393 'CPAN::Meta::Spec' => '2.110440',
5394 'CPAN::Meta::Validator' => '2.110440',
5395 'CPAN::Shell' => '5.5002',
5396 'CPANPLUS' => '0.9101',
5397 'CPANPLUS::Internals' => '0.9101',
5398 'CPANPLUS::Shell::Default'=> '0.9101',
5399 'Carp' => '1.20',
5400 'Carp::Heavy' => '1.20',
5401 'Cwd' => '3.37',
5402 'Devel::DProf' => '20110217.00',
5403 'DynaLoader' => '1.13',
5404 'ExtUtils::CBuilder' => '0.280202',
5405 'ExtUtils::CBuilder::Base'=> '0.280202',
5406 'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5407 'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5408 'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5409 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5410 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5411 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5412 'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5413 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5414 'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5415 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5416 'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5417 'File::Copy' => '2.22',
5418 'Filter::Simple' => '0.86',
5419 'HTTP::Tiny' => '0.010',
5420 'I18N::LangTags::Detect'=> '1.05',
5421 'IO::Select' => '1.18',
5422 'IPC::Cmd' => '0.70',
5423 'Locale::Maketext' => '1.19',
5424 'Math::BigFloat' => '1.992',
5425 'Math::BigInt' => '1.992',
5426 'Math::BigInt::Calc' => '1.992',
5427 'Math::BigInt::CalcEmu' => '1.992',
5428 'Module::Build' => '0.37_05',
5429 'Module::Build::Base' => '0.37_05',
5430 'Module::Build::Compat' => '0.37_05',
5431 'Module::Build::Config' => '0.37_05',
5432 'Module::Build::Cookbook'=> '0.37_05',
5433 'Module::Build::Dumper' => '0.37_05',
5434 'Module::Build::ModuleInfo'=> '0.37_05',
5435 'Module::Build::Notes' => '0.37_05',
5436 'Module::Build::PPMMaker'=> '0.37_05',
5437 'Module::Build::Platform::Amiga'=> '0.37_05',
5438 'Module::Build::Platform::Default'=> '0.37_05',
5439 'Module::Build::Platform::EBCDIC'=> '0.37_05',
5440 'Module::Build::Platform::MPEiX'=> '0.37_05',
5441 'Module::Build::Platform::MacOS'=> '0.37_05',
5442 'Module::Build::Platform::RiscOS'=> '0.37_05',
5443 'Module::Build::Platform::Unix'=> '0.37_05',
5444 'Module::Build::Platform::VMS'=> '0.37_05',
5445 'Module::Build::Platform::VOS'=> '0.37_05',
5446 'Module::Build::Platform::Windows'=> '0.37_05',
5447 'Module::Build::Platform::aix'=> '0.37_05',
5448 'Module::Build::Platform::cygwin'=> '0.37_05',
5449 'Module::Build::Platform::darwin'=> '0.37_05',
5450 'Module::Build::Platform::os2'=> '0.37_05',
5451 'Module::Build::PodParser'=> '0.37_05',
5452 'Module::Build::Version'=> '0.87',
5453 'Module::Build::YAML' => '1.41',
5454 'Module::CoreList' => '2.45',
5455 'Module::Load::Conditional'=> '0.44',
5456 'Module::Metadata' => '1.000004',
78da2da6 5457 'OS2::Process' => '1.06',
a272bf38
DL
5458 'Parse::CPAN::Meta' => '1.4401',
5459 'Pod::Html' => '1.1',
5460 'Socket' => '1.94',
5461 'Term::UI' => '0.26',
5462 'Unicode::Collate' => '0.72',
5463 'Unicode::Collate::Locale'=> '0.71',
5464 'Unicode::UCD' => '0.31',
5465 'VMS::DCLsym' => '1.05',
5466 'Version::Requirements' => '0.101020',
5467 'bigrat' => '0.27',
5468 'deprecate' => '0.02',
5469 'diagnostics' => '1.22',
5470 'inc::latest' => '0.37_05',
5471 'overload' => '1.13',
5472 're' => '0.17',
5473 'utf8' => '1.09',
5474 'warnings' => '1.12',
5475 },
5476 removed => {
5477 }
c552c5b5 5478 },
45492fbf 5479 5.013011 => {
a272bf38
DL
5480 delta_from => 5.01301,
5481 changed => {
5482 'App::Prove' => '3.23',
5483 'App::Prove::State' => '3.23',
5484 'App::Prove::State::Result'=> '3.23',
5485 'App::Prove::State::Result::Test'=> '3.23',
5486 'B' => '1.29',
5487 'CPAN' => '1.9600',
5488 'CPAN::Author' => '5.5001',
5489 'CPAN::CacheMgr' => '5.5001',
5490 'CPAN::Distribution' => '1.9602',
5491 'CPAN::Exception::blocked_urllist'=> '1.001',
5492 'CPAN::HTTP::Client' => '1.9600',
5493 'CPAN::HTTP::Credentials'=> '1.9600',
5494 'CPAN::Index' => '1.9600',
5495 'CPAN::LWP::UserAgent' => '1.9600',
5496 'CPAN::Mirrors' => '1.9600',
5497 'CPAN::Module' => '5.5001',
5498 'CPANPLUS' => '0.9103',
5499 'CPANPLUS::Dist::Build' => '0.54',
5500 'CPANPLUS::Dist::Build::Constants'=> '0.54',
5501 'CPANPLUS::Internals' => '0.9103',
5502 'CPANPLUS::Shell::Default'=> '0.9103',
5503 'Cwd' => '3.36',
5504 'Devel::DProf' => '20110228.00',
5505 'Digest::SHA' => '5.61',
5506 'ExtUtils::Command' => '1.17',
5507 'File::Basename' => '2.81',
5508 'File::Copy' => '2.21',
5509 'File::Glob' => '1.12',
5510 'GDBM_File' => '1.14',
5511 'HTTP::Tiny' => '0.011',
5512 'Hash::Util' => '0.11',
5513 'Hash::Util::FieldHash' => '1.09',
5514 'I18N::Langinfo' => '0.08',
5515 'IO' => '1.25_04',
5516 'IO::Dir' => '1.08',
5517 'IO::File' => '1.15',
5518 'IO::Handle' => '1.30',
5519 'IO::Pipe' => '1.14',
5520 'IO::Poll' => '0.08',
5521 'IO::Select' => '1.20',
5522 'JSON::PP' => '2.27105',
5523 'Locale::Codes' => '3.16',
5524 'Locale::Codes::Country'=> '3.16',
5525 'Locale::Codes::Currency'=> '3.16',
5526 'Locale::Codes::Language'=> '3.16',
5527 'Locale::Codes::Script' => '3.16',
5528 'Locale::Constants' => '3.16',
5529 'Locale::Country' => '3.16',
5530 'Locale::Currency' => '3.16',
5531 'Locale::Language' => '3.16',
5532 'Locale::Script' => '3.16',
5533 'Math::BigFloat' => '1.993',
5534 'Math::BigInt' => '1.994',
5535 'Math::BigInt::Calc' => '1.993',
5536 'Math::BigInt::CalcEmu' => '1.993',
5537 'Math::BigInt::FastCalc'=> '0.28',
5538 'Module::Build' => '0.3800',
5539 'Module::Build::Base' => '0.3800',
5540 'Module::Build::Compat' => '0.3800',
5541 'Module::Build::Config' => '0.3800',
5542 'Module::Build::Cookbook'=> '0.3800',
5543 'Module::Build::Dumper' => '0.3800',
5544 'Module::Build::ModuleInfo'=> '0.3800',
5545 'Module::Build::Notes' => '0.3800',
5546 'Module::Build::PPMMaker'=> '0.3800',
5547 'Module::Build::Platform::Amiga'=> '0.3800',
5548 'Module::Build::Platform::Default'=> '0.3800',
5549 'Module::Build::Platform::EBCDIC'=> '0.3800',
5550 'Module::Build::Platform::MPEiX'=> '0.3800',
5551 'Module::Build::Platform::MacOS'=> '0.3800',
5552 'Module::Build::Platform::RiscOS'=> '0.3800',
5553 'Module::Build::Platform::Unix'=> '0.3800',
5554 'Module::Build::Platform::VMS'=> '0.3800',
5555 'Module::Build::Platform::VOS'=> '0.3800',
5556 'Module::Build::Platform::Windows'=> '0.3800',
5557 'Module::Build::Platform::aix'=> '0.3800',
5558 'Module::Build::Platform::cygwin'=> '0.3800',
5559 'Module::Build::Platform::darwin'=> '0.3800',
5560 'Module::Build::Platform::os2'=> '0.3800',
5561 'Module::Build::PodParser'=> '0.3800',
5562 'Module::CoreList' => '2.46',
5563 'NDBM_File' => '1.12',
5564 'Pod::Simple' => '3.16',
5565 'Pod::Simple::BlackBox' => '3.16',
5566 'Pod::Simple::Checker' => '3.16',
5567 'Pod::Simple::Debug' => '3.16',
5568 'Pod::Simple::DumpAsText'=> '3.16',
5569 'Pod::Simple::DumpAsXML'=> '3.16',
5570 'Pod::Simple::HTML' => '3.16',
5571 'Pod::Simple::HTMLBatch'=> '3.16',
5572 'Pod::Simple::LinkSection'=> '3.16',
5573 'Pod::Simple::Methody' => '3.16',
5574 'Pod::Simple::Progress' => '3.16',
5575 'Pod::Simple::PullParser'=> '3.16',
5576 'Pod::Simple::PullParserEndToken'=> '3.16',
5577 'Pod::Simple::PullParserStartToken'=> '3.16',
5578 'Pod::Simple::PullParserTextToken'=> '3.16',
5579 'Pod::Simple::PullParserToken'=> '3.16',
5580 'Pod::Simple::RTF' => '3.16',
5581 'Pod::Simple::Search' => '3.16',
5582 'Pod::Simple::SimpleTree'=> '3.16',
5583 'Pod::Simple::Text' => '3.16',
5584 'Pod::Simple::TextContent'=> '3.16',
5585 'Pod::Simple::TiedOutFH'=> '3.16',
5586 'Pod::Simple::Transcode'=> '3.16',
5587 'Pod::Simple::TranscodeDumb'=> '3.16',
5588 'Pod::Simple::TranscodeSmart'=> '3.16',
5589 'Pod::Simple::XHTML' => '3.16',
5590 'Pod::Simple::XMLOutStream'=> '3.16',
5591 'Storable' => '2.27',
5592 'Sys::Hostname' => '1.16',
5593 'TAP::Base' => '3.23',
5594 'TAP::Formatter::Base' => '3.23',
5595 'TAP::Formatter::Color' => '3.23',
5596 'TAP::Formatter::Console'=> '3.23',
5597 'TAP::Formatter::Console::ParallelSession'=> '3.23',
5598 'TAP::Formatter::Console::Session'=> '3.23',
5599 'TAP::Formatter::File' => '3.23',
5600 'TAP::Formatter::File::Session'=> '3.23',
5601 'TAP::Formatter::Session'=> '3.23',
5602 'TAP::Harness' => '3.23',
5603 'TAP::Object' => '3.23',
5604 'TAP::Parser' => '3.23',
5605 'TAP::Parser::Aggregator'=> '3.23',
5606 'TAP::Parser::Grammar' => '3.23',
5607 'TAP::Parser::Iterator' => '3.23',
5608 'TAP::Parser::Iterator::Array'=> '3.23',
5609 'TAP::Parser::Iterator::Process'=> '3.23',
5610 'TAP::Parser::Iterator::Stream'=> '3.23',
5611 'TAP::Parser::IteratorFactory'=> '3.23',
5612 'TAP::Parser::Multiplexer'=> '3.23',
5613 'TAP::Parser::Result' => '3.23',
5614 'TAP::Parser::Result::Bailout'=> '3.23',
5615 'TAP::Parser::Result::Comment'=> '3.23',
5616 'TAP::Parser::Result::Plan'=> '3.23',
5617 'TAP::Parser::Result::Pragma'=> '3.23',
5618 'TAP::Parser::Result::Test'=> '3.23',
5619 'TAP::Parser::Result::Unknown'=> '3.23',
5620 'TAP::Parser::Result::Version'=> '3.23',
5621 'TAP::Parser::Result::YAML'=> '3.23',
5622 'TAP::Parser::ResultFactory'=> '3.23',
5623 'TAP::Parser::Scheduler'=> '3.23',
5624 'TAP::Parser::Scheduler::Job'=> '3.23',
5625 'TAP::Parser::Scheduler::Spinner'=> '3.23',
5626 'TAP::Parser::Source' => '3.23',
5627 'TAP::Parser::SourceHandler'=> '3.23',
5628 'TAP::Parser::SourceHandler::Executable'=> '3.23',
5629 'TAP::Parser::SourceHandler::File'=> '3.23',
5630 'TAP::Parser::SourceHandler::Handle'=> '3.23',
5631 'TAP::Parser::SourceHandler::Perl'=> '3.23',
5632 'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5633 'TAP::Parser::Utils' => '3.23',
5634 'TAP::Parser::YAMLish::Reader'=> '3.23',
5635 'TAP::Parser::YAMLish::Writer'=> '3.23',
5636 'Test::Builder' => '0.98',
5637 'Test::Builder::Module' => '0.98',
5638 'Test::Builder::Tester' => '1.22',
5639 'Test::Builder::Tester::Color'=> '1.22',
5640 'Test::Harness' => '3.23',
5641 'Test::More' => '0.98',
5642 'Test::Simple' => '0.98',
5643 'Tie::Hash::NamedCapture'=> '0.08',
5644 'Tie::RefHash' => '1.39',
5645 'Unicode::Collate' => '0.73',
5646 'Unicode::Collate::Locale'=> '0.73',
5647 'Unicode::UCD' => '0.32',
5648 'XS::Typemap' => '0.05',
5649 'attributes' => '0.14',
5650 'base' => '2.16',
5651 'inc::latest' => '0.3800',
5652 'mro' => '1.07',
5653 'parent' => '0.225',
5654 },
5655 removed => {
5656 }
f3fd521e 5657 },
a272bf38
DL
5658 5.014 => {
5659 delta_from => 5.013011,
5660 changed => {
5661 'ExtUtils::CBuilder' => '0.280203',
5662 'ExtUtils::CBuilder::Base'=> '0.280203',
5663 'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5664 'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5665 'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5666 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5667 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5668 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5669 'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5670 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5671 'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5672 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5673 'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5674 'ExtUtils::ParseXS' => '2.2210',
5675 'File::Basename' => '2.82',
5676 'HTTP::Tiny' => '0.012',
5677 'IO::Handle' => '1.31',
5678 'Module::CoreList' => '2.49',
5679 'PerlIO' => '1.07',
5680 'Pod::Html' => '1.11',
5681 'XS::APItest' => '0.28',
5682 'bigint' => '0.27',
5683 'bignum' => '0.27',
5684 'bigrat' => '0.28',
5685 'constant' => '1.21',
5686 'feature' => '1.20',
5687 're' => '0.18',
5688 'threads::shared' => '1.37',
5689 },
5690 removed => {
5691 }
0b3bdea4 5692 },
3d108019 5693 5.014001 => {
a272bf38
DL
5694 delta_from => 5.014,
5695 changed => {
5696 'B::Deparse' => '1.04',
5697 'Module::CoreList' => '2.49_01',
5698 'Pod::Perldoc' => '3.15_04',
5699 },
5700 removed => {
5701 }
3d108019 5702 },
a272bf38
DL
5703 5.014002 => {
5704 delta_from => 5.014001,
5705 changed => {
5706 'CPAN' => '1.9600_01',
5707 'CPAN::Distribution' => '1.9602_01',
5708 'Devel::DProf::dprof::V'=> undef,
5709 'Encode' => '2.42_01',
5710 'File::Glob' => '1.13',
5711 'Module::CoreList' => '2.49_02',
5712 'PerlIO::scalar' => '0.11_01',
5713 'Time::Piece::Seconds' => undef,
a272bf38
DL
5714 },
5715 removed => {
5716 }
5717 },
f7a5efeb
CBW
5718 5.014003 => {
5719 delta_from => 5.014002,
5720 changed => {
5721 'Digest' => '1.16_01',
5722 'IPC::Open3' => '1.09_01',
5723 'Module::CoreList' => '2.49_04',
5724 },
5725 removed => {
5726 }
5727 },
6ee607eb
CBW
5728 5.014004 => {
5729 delta_from => 5.014003,
5730 changed => {
5731 'Encode' => '2.42_02',
5732 'IPC::Open3' => '1.0901',
5733 'Module::CoreList' => '2.49_06',
5734 },
5735 removed => {
5736 }
5737 },
a272bf38
DL
5738 5.015 => {
5739 delta_from => 5.014001,
5740 changed => {
5741 'Archive::Extract' => '0.52',
5742 'Attribute::Handlers' => '0.91',
5743 'B' => '1.30',
5744 'B::Concise' => '0.84',
5745 'B::Deparse' => '1.05',
5746 'Benchmark' => '1.13',
5747 'CGI' => '3.54',
5748 'CGI::Util' => '3.53',
5749 'CPAN::Meta' => '2.110930',
5750 'CPAN::Meta::Converter' => '2.110930',
5751 'CPAN::Meta::Feature' => '2.110930',
5752 'CPAN::Meta::History' => '2.110930',
5753 'CPAN::Meta::Prereqs' => '2.110930',
5754 'CPAN::Meta::Spec' => '2.110930',
5755 'CPAN::Meta::Validator' => '2.110930',
5756 'CPANPLUS' => '0.9105',
5757 'CPANPLUS::Dist::Build' => '0.56',
5758 'CPANPLUS::Dist::Build::Constants'=> '0.56',
5759 'CPANPLUS::Internals' => '0.9105',
5760 'CPANPLUS::Shell::Default'=> '0.9105',
5761 'Compress::Raw::Bzip2' => '2.035',
5762 'Compress::Raw::Zlib' => '2.035',
5763 'Compress::Zlib' => '2.035',
5764 'DB_File' => '1.822',
5765 'Data::Dumper' => '2.131',
5766 'Devel::Peek' => '1.08',
5767 'Digest::SHA' => '5.62',
5768 'Encode' => '2.43',
5769 'Encode::Alias' => '2.14',
5770 'ExtUtils::CBuilder' => '0.280204',
5771 'ExtUtils::CBuilder::Base'=> '0.280204',
5772 'Fatal' => '2.10',
5773 'File::Spec::Win32' => '3.34',
5774 'Filter::Simple' => '0.87',
5775 'Filter::Util::Call' => '1.39',
5776 'FindBin' => '1.51',
5777 'Hash::Util::FieldHash' => '1.10',
5778 'I18N::LangTags' => '0.36',
5779 'IO::Compress::Adapter::Bzip2'=> '2.035',
5780 'IO::Compress::Adapter::Deflate'=> '2.035',
5781 'IO::Compress::Adapter::Identity'=> '2.035',
5782 'IO::Compress::Base' => '2.035',
5783 'IO::Compress::Base::Common'=> '2.035',
5784 'IO::Compress::Bzip2' => '2.035',
5785 'IO::Compress::Deflate' => '2.035',
5786 'IO::Compress::Gzip' => '2.035',
5787 'IO::Compress::Gzip::Constants'=> '2.035',
5788 'IO::Compress::RawDeflate'=> '2.035',
5789 'IO::Compress::Zip' => '2.035',
5790 'IO::Compress::Zip::Constants'=> '2.035',
5791 'IO::Compress::Zlib::Constants'=> '2.035',
5792 'IO::Compress::Zlib::Extra'=> '2.035',
5793 'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5794 'IO::Uncompress::Adapter::Identity'=> '2.035',
5795 'IO::Uncompress::Adapter::Inflate'=> '2.035',
5796 'IO::Uncompress::AnyInflate'=> '2.035',
5797 'IO::Uncompress::AnyUncompress'=> '2.035',
5798 'IO::Uncompress::Base' => '2.035',
5799 'IO::Uncompress::Bunzip2'=> '2.035',
5800 'IO::Uncompress::Gunzip'=> '2.035',
5801 'IO::Uncompress::Inflate'=> '2.035',
5802 'IO::Uncompress::RawInflate'=> '2.035',
5803 'IO::Uncompress::Unzip' => '2.035',
5804 'IPC::Open2' => '1.04',
5805 'IPC::Open3' => '1.11',
5806 'JSON::PP' => '2.27200',
5807 'Math::BigFloat' => '1.994',
5808 'Math::BigInt' => '1.995',
5809 'Math::Complex' => '1.57',
5810 'Math::Trig' => '1.21',
5811 'Module::CoreList' => '2.51',
5812 'ODBM_File' => '1.11',
5813 'Object::Accessor' => '0.42',
5814 'Opcode' => '1.19',
5815 'PerlIO::encoding' => '0.15',
5816 'PerlIO::scalar' => '0.12',
5817 'Pod::Perldoc' => '3.15_05',
5818 'Storable' => '2.28',
5819 'Sys::Syslog' => '0.29',
5820 'Time::HiRes' => '1.9722',
5821 'Unicode::Collate' => '0.76',
5822 'Unicode::Collate::CJK::Pinyin'=> '0.76',
5823 'Unicode::Collate::CJK::Stroke'=> '0.76',
5824 'Unicode::Collate::Locale'=> '0.76',
5825 'Unicode::Normalize' => '1.12',
5826 'XS::APItest' => '0.29',
5827 'XSLoader' => '0.15',
5828 'autodie' => '2.10',
5829 'autodie::exception' => '2.10',
5830 'autodie::exception::system'=> '2.10',
5831 'autodie::hints' => '2.10',
5832 'base' => '2.17',
5833 'charnames' => '1.22',
5834 'constant' => '1.22',
5835 'feature' => '1.21',
5836 'mro' => '1.08',
5837 'overload' => '1.14',
5838 'threads::shared' => '1.38',
5839 'vmsish' => '1.03',
5840 },
5841 removed => {
5842 'Devel::DProf' => 1,
5843 'Shell' => 1,
5844 }
1f1f08f5 5845 },
48b66e80 5846 5.015001 => {
a272bf38
DL
5847 delta_from => 5.015,
5848 changed => {
5849 'B::Deparse' => '1.06',
5850 'CGI' => '3.55',
5851 'CPAN::Meta' => '2.110930001',
5852 'CPAN::Meta::Converter' => '2.110930001',
5853 'CPANPLUS' => '0.9108',
5854 'CPANPLUS::Internals' => '0.9108',
5855 'CPANPLUS::Shell::Default'=> '0.9108',
5856 'Carp' => '1.21',
5857 'Carp::Heavy' => '1.21',
5858 'Compress::Raw::Bzip2' => '2.037',
5859 'Compress::Raw::Zlib' => '2.037',
5860 'Compress::Zlib' => '2.037',
5861 'Cwd' => '3.37',
5862 'Env' => '1.03',
5863 'ExtUtils::Command::MM' => '6.58',
5864 'ExtUtils::Liblist' => '6.58',
5865 'ExtUtils::Liblist::Kid'=> '6.58',
5866 'ExtUtils::MM' => '6.58',
5867 'ExtUtils::MM_AIX' => '6.58',
5868 'ExtUtils::MM_Any' => '6.58',
5869 'ExtUtils::MM_BeOS' => '6.58',
5870 'ExtUtils::MM_Cygwin' => '6.58',
5871 'ExtUtils::MM_DOS' => '6.58',
5872 'ExtUtils::MM_Darwin' => '6.58',
5873 'ExtUtils::MM_MacOS' => '6.58',
5874 'ExtUtils::MM_NW5' => '6.58',
5875 'ExtUtils::MM_OS2' => '6.58',
5876 'ExtUtils::MM_QNX' => '6.58',
5877 'ExtUtils::MM_UWIN' => '6.58',
5878 'ExtUtils::MM_Unix' => '6.58',
5879 'ExtUtils::MM_VMS' => '6.58',
5880 'ExtUtils::MM_VOS' => '6.58',
5881 'ExtUtils::MM_Win32' => '6.58',
5882 'ExtUtils::MM_Win95' => '6.58',
5883 'ExtUtils::MY' => '6.58',
5884 'ExtUtils::MakeMaker' => '6.58',
5885 'ExtUtils::MakeMaker::Config'=> '6.58',
5886 'ExtUtils::Mkbootstrap' => '6.58',
5887 'ExtUtils::Mksymlists' => '6.58',
5888 'ExtUtils::ParseXS' => '3.00_01',
5889 'ExtUtils::ParseXS::Constants'=> undef,
5890 'ExtUtils::ParseXS::CountLines'=> undef,
5891 'ExtUtils::ParseXS::Utilities'=> undef,
5892 'ExtUtils::Typemaps' => '1.00',
5893 'ExtUtils::Typemaps::InputMap'=> undef,
5894 'ExtUtils::Typemaps::OutputMap'=> undef,
5895 'ExtUtils::Typemaps::Type'=> '0.05',
5896 'ExtUtils::testlib' => '6.58',
5897 'File::Basename' => '2.83',
5898 'File::Find' => '1.20',
5899 'HTTP::Tiny' => '0.013',
5900 'I18N::Langinfo' => '0.08_02',
5901 'IO::Compress::Adapter::Bzip2'=> '2.037',
5902 'IO::Compress::Adapter::Deflate'=> '2.037',
5903 'IO::Compress::Adapter::Identity'=> '2.037',
5904 'IO::Compress::Base' => '2.037',
5905 'IO::Compress::Base::Common'=> '2.037',
5906 'IO::Compress::Bzip2' => '2.037',
5907 'IO::Compress::Deflate' => '2.037',
5908 'IO::Compress::Gzip' => '2.037',
5909 'IO::Compress::Gzip::Constants'=> '2.037',
5910 'IO::Compress::RawDeflate'=> '2.037',
5911 'IO::Compress::Zip' => '2.037',
5912 'IO::Compress::Zip::Constants'=> '2.037',
5913 'IO::Compress::Zlib::Constants'=> '2.037',
5914 'IO::Compress::Zlib::Extra'=> '2.037',
5915 'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
5916 'IO::Uncompress::Adapter::Identity'=> '2.037',
5917 'IO::Uncompress::Adapter::Inflate'=> '2.037',
5918 'IO::Uncompress::AnyInflate'=> '2.037',
5919 'IO::Uncompress::AnyUncompress'=> '2.037',
5920 'IO::Uncompress::Base' => '2.037',
5921 'IO::Uncompress::Bunzip2'=> '2.037',
5922 'IO::Uncompress::Gunzip'=> '2.037',
5923 'IO::Uncompress::Inflate'=> '2.037',
5924 'IO::Uncompress::RawInflate'=> '2.037',
5925 'IO::Uncompress::Unzip' => '2.037',
5926 'IPC::Cmd' => '0.72',
5927 'Locale::Codes' => '3.17',
5928 'Locale::Codes::Constants'=> '3.17',
5929 'Locale::Codes::Country'=> '3.17',
5930 'Locale::Codes::Country_Codes'=> '3.17',
5931 'Locale::Codes::Currency'=> '3.17',
5932 'Locale::Codes::Currency_Codes'=> '3.17',
5933 'Locale::Codes::LangExt'=> '3.17',
5934 'Locale::Codes::LangExt_Codes'=> '3.17',
5935 'Locale::Codes::LangVar'=> '3.17',
5936 'Locale::Codes::LangVar_Codes'=> '3.17',
5937 'Locale::Codes::Language'=> '3.17',
5938 'Locale::Codes::Language_Codes'=> '3.17',
5939 'Locale::Codes::Script' => '3.17',
5940 'Locale::Codes::Script_Codes'=> '3.17',
5941 'Locale::Country' => '3.17',
5942 'Locale::Currency' => '3.17',
5943 'Locale::Language' => '3.17',
5944 'Locale::Script' => '3.17',
5945 'Math::BigFloat::Trace' => '0.28',
5946 'Math::BigInt::FastCalc'=> '0.29',
5947 'Math::BigInt::Trace' => '0.28',
5948 'Math::BigRat' => '0.2602',
5949 'Math::Complex' => '1.58',
5950 'Math::Trig' => '1.22',
5951 'Module::CoreList' => '2.54',
78da2da6 5952 'OS2::Process' => '1.07',
a272bf38
DL
5953 'Pod::Perldoc' => '3.15_06',
5954 'Pod::Simple' => '3.18',
5955 'Pod::Simple::BlackBox' => '3.18',
5956 'Pod::Simple::Checker' => '3.18',
5957 'Pod::Simple::Debug' => '3.18',
5958 'Pod::Simple::DumpAsText'=> '3.18',
5959 'Pod::Simple::DumpAsXML'=> '3.18',
5960 'Pod::Simple::HTML' => '3.18',
5961 'Pod::Simple::HTMLBatch'=> '3.18',
5962 'Pod::Simple::LinkSection'=> '3.18',
5963 'Pod::Simple::Methody' => '3.18',
5964 'Pod::Simple::Progress' => '3.18',
5965 'Pod::Simple::PullParser'=> '3.18',
5966 'Pod::Simple::PullParserEndToken'=> '3.18',
5967 'Pod::Simple::PullParserStartToken'=> '3.18',
5968 'Pod::Simple::PullParserTextToken'=> '3.18',
5969 'Pod::Simple::PullParserToken'=> '3.18',
5970 'Pod::Simple::RTF' => '3.18',
5971 'Pod::Simple::Search' => '3.18',
5972 'Pod::Simple::SimpleTree'=> '3.18',
5973 'Pod::Simple::Text' => '3.18',
5974 'Pod::Simple::TextContent'=> '3.18',
5975 'Pod::Simple::TiedOutFH'=> '3.18',
5976 'Pod::Simple::Transcode'=> '3.18',
5977 'Pod::Simple::TranscodeDumb'=> '3.18',
5978 'Pod::Simple::TranscodeSmart'=> '3.18',
5979 'Pod::Simple::XHTML' => '3.18',
5980 'Pod::Simple::XMLOutStream'=> '3.18',
5981 'Storable' => '2.31',
5982 'Sys::Syslog::Win32' => undef,
5983 'Time::HiRes' => '1.9724',
5984 'Unicode::Collate' => '0.77',
5985 'Unicode::UCD' => '0.33',
5986 'Win32API::File' => '0.1200',
5987 'XS::APItest' => '0.30',
5988 'attributes' => '0.15',
5989 'bigint' => '0.28',
5990 'bignum' => '0.28',
5991 'charnames' => '1.23',
5992 'diagnostics' => '1.23',
5993 'feature' => '1.22',
5994 'overload' => '1.15',
5995 'perlfaq' => '5.015000',
5996 'threads' => '1.84',
5997 'version' => '0.93',
5998 },
5999 removed => {
6000 'ExtUtils::MakeMaker::YAML'=> 1,
6001 'Locale::Constants' => 1,
6002 'Sys::Syslog::win32::Win32'=> 1,
6003 }
48b66e80 6004 },
2f183b41 6005 5.015002 => {
a272bf38
DL
6006 delta_from => 5.015001,
6007 changed => {
6008 'Attribute::Handlers' => '0.92',
6009 'B' => '1.31',
6010 'B::Concise' => '0.85',
6011 'B::Deparse' => '1.07',
6012 'B::Terse' => '1.06',
6013 'B::Xref' => '1.03',
6014 'CPAN' => '1.9800',
6015 'CPAN::Exception::yaml_process_error'=> '5.5',
6016 'CPAN::Meta' => '2.112150',
6017 'CPAN::Meta::Converter' => '2.112150',
6018 'CPAN::Meta::Feature' => '2.112150',
6019 'CPAN::Meta::History' => '2.112150',
6020 'CPAN::Meta::Prereqs' => '2.112150',
6021 'CPAN::Meta::Spec' => '2.112150',
6022 'CPAN::Meta::Validator' => '2.112150',
6023 'CPANPLUS' => '0.9109',
6024 'CPANPLUS::Internals' => '0.9109',
6025 'CPANPLUS::Shell::Default'=> '0.9109',
6026 'DB_File' => '1.824',
6027 'Data::Dumper' => '2.132',
6028 'Encode' => '2.44',
6029 'Encode::Alias' => '2.15',
6030 'Encode::Encoder' => '2.02',
6031 'Encode::Guess' => '2.05',
6032 'ExtUtils::Command::MM' => '6.59',
6033 'ExtUtils::Install' => '1.57',
6034 'ExtUtils::Installed' => '1.999002',
6035 'ExtUtils::Liblist' => '6.59',
6036 'ExtUtils::Liblist::Kid'=> '6.59',
6037 'ExtUtils::MM' => '6.59',
6038 'ExtUtils::MM_AIX' => '6.59',
6039 'ExtUtils::MM_Any' => '6.59',
6040 'ExtUtils::MM_BeOS' => '6.59',
6041 'ExtUtils::MM_Cygwin' => '6.59',
6042 'ExtUtils::MM_DOS' => '6.59',
6043 'ExtUtils::MM_Darwin' => '6.59',
6044 'ExtUtils::MM_MacOS' => '6.59',
6045 'ExtUtils::MM_NW5' => '6.59',
6046 'ExtUtils::MM_OS2' => '6.59',
6047 'ExtUtils::MM_QNX' => '6.59',
6048 'ExtUtils::MM_UWIN' => '6.59',
6049 'ExtUtils::MM_Unix' => '6.59',
6050 'ExtUtils::MM_VMS' => '6.59',
6051 'ExtUtils::MM_VOS' => '6.59',
6052 'ExtUtils::MM_Win32' => '6.59',
6053 'ExtUtils::MM_Win95' => '6.59',
6054 'ExtUtils::MY' => '6.59',
6055 'ExtUtils::MakeMaker' => '6.59',
6056 'ExtUtils::MakeMaker::Config'=> '6.59',
6057 'ExtUtils::Manifest' => '1.60',
6058 'ExtUtils::Mkbootstrap' => '6.59',
6059 'ExtUtils::Mksymlists' => '6.59',
6060 'ExtUtils::ParseXS' => '3.03_01',
6061 'ExtUtils::Typemaps' => '1.01',
6062 'ExtUtils::testlib' => '6.59',
6063 'File::Spec' => '3.34',
6064 'File::Spec::Mac' => '3.35',
6065 'File::Spec::Unix' => '3.34',
6066 'File::Spec::VMS' => '3.35',
6067 'File::Spec::Win32' => '3.35',
6068 'I18N::LangTags' => '0.37',
6069 'IO' => '1.25_05',
6070 'IO::Handle' => '1.32',
6071 'IO::Socket' => '1.33',
6072 'IO::Socket::INET' => '1.32',
6073 'IPC::Open3' => '1.12',
6074 'Math::BigFloat' => '1.995',
6075 'Math::BigFloat::Trace' => '0.29',
6076 'Math::BigInt' => '1.996',
6077 'Math::BigInt::Trace' => '0.29',
6078 'Module::Build' => '0.39_01',
6079 'Module::Build::Base' => '0.39_01',
6080 'Module::Build::Compat' => '0.39_01',
6081 'Module::Build::Config' => '0.39_01',
6082 'Module::Build::Cookbook'=> '0.39_01',
6083 'Module::Build::Dumper' => '0.39_01',
6084 'Module::Build::ModuleInfo'=> '0.39_01',
6085 'Module::Build::Notes' => '0.39_01',
6086 'Module::Build::PPMMaker'=> '0.39_01',
6087 'Module::Build::Platform::Amiga'=> '0.39_01',
6088 'Module::Build::Platform::Default'=> '0.39_01',
6089 'Module::Build::Platform::EBCDIC'=> '0.39_01',
6090 'Module::Build::Platform::MPEiX'=> '0.39_01',
6091 'Module::Build::Platform::MacOS'=> '0.39_01',
6092 'Module::Build::Platform::RiscOS'=> '0.39_01',
6093 'Module::Build::Platform::Unix'=> '0.39_01',
6094 'Module::Build::Platform::VMS'=> '0.39_01',
6095 'Module::Build::Platform::VOS'=> '0.39_01',
6096 'Module::Build::Platform::Windows'=> '0.39_01',
6097 'Module::Build::Platform::aix'=> '0.39_01',
6098 'Module::Build::Platform::cygwin'=> '0.39_01',
6099 'Module::Build::Platform::darwin'=> '0.39_01',
6100 'Module::Build::Platform::os2'=> '0.39_01',
6101 'Module::Build::PodParser'=> '0.39_01',
6102 'Module::CoreList' => '2.55',
6103 'Module::Load' => '0.20',
6104 'Module::Metadata' => '1.000005_01',
6105 'Opcode' => '1.20',
6106 'Params::Check' => '0.32',
6107 'PerlIO::via' => '0.12',
6108 'Term::ANSIColor' => '3.01',
6109 'Unicode::Collate' => '0.78',
6110 'Unicode::Normalize' => '1.13',
6111 'Unicode::UCD' => '0.34',
6112 'bigint' => '0.29',
6113 'bignum' => '0.29',
6114 'bigrat' => '0.29',
6115 'diagnostics' => '1.24',
6116 'fields' => '2.16',
6117 'inc::latest' => '0.39_01',
6118 },
6119 removed => {
6120 }
33f96037 6121 },
e46b3c7d 6122 5.015003 => {
a272bf38
DL
6123 delta_from => 5.015002,
6124 changed => {
6125 'AnyDBM_File' => '1.01',
6126 'Archive::Extract' => '0.56',
6127 'Archive::Tar' => '1.78',
6128 'Archive::Tar::Constant'=> '1.78',
6129 'Archive::Tar::File' => '1.78',
6130 'Attribute::Handlers' => '0.93',
6131 'B' => '1.32',
6132 'B::Concise' => '0.86',
6133 'B::Deparse' => '1.08',
6134 'CPAN::Meta' => '2.112621',
6135 'CPAN::Meta::Converter' => '2.112621',
6136 'CPAN::Meta::Feature' => '2.112621',
6137 'CPAN::Meta::History' => '2.112621',
6138 'CPAN::Meta::Prereqs' => '2.112621',
6139 'CPAN::Meta::Spec' => '2.112621',
6140 'CPAN::Meta::Validator' => '2.112621',
6141 'CPAN::Meta::YAML' => '0.004',
6142 'CPANPLUS' => '0.9111',
6143 'CPANPLUS::Dist::Build' => '0.58',
6144 'CPANPLUS::Dist::Build::Constants'=> '0.58',
6145 'CPANPLUS::Internals' => '0.9111',
6146 'CPANPLUS::Shell::Default'=> '0.9111',
6147 'Carp' => '1.23',
6148 'Carp::Heavy' => '1.23',
6149 'Data::Dumper' => '2.134',
6150 'Devel::PPPort' => '3.20',
6151 'Errno' => '1.14',
6152 'Exporter' => '5.65',
6153 'Exporter::Heavy' => '5.65',
6154 'ExtUtils::ParseXS' => '3.04_04',
6155 'ExtUtils::ParseXS::Constants'=> '3.04_04',
6156 'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6157 'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6158 'ExtUtils::Typemaps' => '1.02',
6159 'File::Glob' => '1.13',
6160 'Filter::Simple' => '0.88',
6161 'IO' => '1.25_06',
6162 'IO::Handle' => '1.33',
6163 'Locale::Codes' => '3.18',
6164 'Locale::Codes::Constants'=> '3.18',
6165 'Locale::Codes::Country'=> '3.18',
6166 'Locale::Codes::Country_Codes'=> '3.18',
6167 'Locale::Codes::Currency'=> '3.18',
6168 'Locale::Codes::Currency_Codes'=> '3.18',
6169 'Locale::Codes::LangExt'=> '3.18',
6170 'Locale::Codes::LangExt_Codes'=> '3.18',
6171 'Locale::Codes::LangVar'=> '3.18',
6172 'Locale::Codes::LangVar_Codes'=> '3.18',
6173 'Locale::Codes::Language'=> '3.18',
6174 'Locale::Codes::Language_Codes'=> '3.18',
6175 'Locale::Codes::Script' => '3.18',
6176 'Locale::Codes::Script_Codes'=> '3.18',
6177 'Locale::Country' => '3.18',
6178 'Locale::Currency' => '3.18',
6179 'Locale::Language' => '3.18',
6180 'Locale::Script' => '3.18',
6181 'Math::BigFloat' => '1.997',
6182 'Math::BigInt' => '1.997',
6183 'Math::BigInt::Calc' => '1.997',
6184 'Math::BigInt::CalcEmu' => '1.997',
6185 'Math::BigInt::FastCalc'=> '0.30',
6186 'Math::BigRat' => '0.2603',
6187 'Module::CoreList' => '2.56',
6188 'Module::Load::Conditional'=> '0.46',
6189 'Module::Metadata' => '1.000007',
6190 'ODBM_File' => '1.12',
6191 'POSIX' => '1.26',
6192 'Pod::Perldoc' => '3.15_07',
6193 'Pod::Simple' => '3.19',
6194 'Pod::Simple::BlackBox' => '3.19',
6195 'Pod::Simple::Checker' => '3.19',
6196 'Pod::Simple::Debug' => '3.19',
6197 'Pod::Simple::DumpAsText'=> '3.19',
6198 'Pod::Simple::DumpAsXML'=> '3.19',
6199 'Pod::Simple::HTML' => '3.19',
6200 'Pod::Simple::HTMLBatch'=> '3.19',
6201 'Pod::Simple::LinkSection'=> '3.19',
6202 'Pod::Simple::Methody' => '3.19',
6203 'Pod::Simple::Progress' => '3.19',
6204 'Pod::Simple::PullParser'=> '3.19',
6205 'Pod::Simple::PullParserEndToken'=> '3.19',
6206 'Pod::Simple::PullParserStartToken'=> '3.19',
6207 'Pod::Simple::PullParserTextToken'=> '3.19',
6208 'Pod::Simple::PullParserToken'=> '3.19',
6209 'Pod::Simple::RTF' => '3.19',
6210 'Pod::Simple::Search' => '3.19',
6211 'Pod::Simple::SimpleTree'=> '3.19',
6212 'Pod::Simple::Text' => '3.19',
6213 'Pod::Simple::TextContent'=> '3.19',
6214 'Pod::Simple::TiedOutFH'=> '3.19',
6215 'Pod::Simple::Transcode'=> '3.19',
6216 'Pod::Simple::TranscodeDumb'=> '3.19',
6217 'Pod::Simple::TranscodeSmart'=> '3.19',
6218 'Pod::Simple::XHTML' => '3.19',
6219 'Pod::Simple::XMLOutStream'=> '3.19',
6220 'Search::Dict' => '1.04',
6221 'Socket' => '1.94_01',
6222 'Storable' => '2.32',
6223 'Text::Abbrev' => '1.02',
6224 'Tie::Array' => '1.05',
6225 'UNIVERSAL' => '1.09',
6226 'Unicode::UCD' => '0.35',
6227 'XS::APItest' => '0.31',
6228 'XSLoader' => '0.16',
6229 'attributes' => '0.16',
6230 'diagnostics' => '1.25',
6231 'open' => '1.09',
6232 'perlfaq' => '5.0150034',
6233 'threads' => '1.85',
6234 'threads::shared' => '1.40',
6235 },
6236 removed => {
6237 }
e46b3c7d 6238 },
f0381222 6239 5.015004 => {
a272bf38
DL
6240 delta_from => 5.015003,
6241 changed => {
6242 'Archive::Tar' => '1.80',
6243 'Archive::Tar::Constant'=> '1.80',
6244 'Archive::Tar::File' => '1.80',
6245 'Digest' => '1.17',
6246 'DynaLoader' => '1.14',
6247 'ExtUtils::Command::MM' => '6.61_01',
6248 'ExtUtils::Liblist' => '6.61_01',
6249 'ExtUtils::Liblist::Kid'=> '6.61_01',
6250 'ExtUtils::MM' => '6.61_01',
6251 'ExtUtils::MM_AIX' => '6.61_01',
6252 'ExtUtils::MM_Any' => '6.61_01',
6253 'ExtUtils::MM_BeOS' => '6.61_01',
6254 'ExtUtils::MM_Cygwin' => '6.61_01',
6255 'ExtUtils::MM_DOS' => '6.61_01',
6256 'ExtUtils::MM_Darwin' => '6.61_01',
6257 'ExtUtils::MM_MacOS' => '6.61_01',
6258 'ExtUtils::MM_NW5' => '6.61_01',
6259 'ExtUtils::MM_OS2' => '6.61_01',
6260 'ExtUtils::MM_QNX' => '6.61_01',
6261 'ExtUtils::MM_UWIN' => '6.61_01',
6262 'ExtUtils::MM_Unix' => '6.61_01',
6263 'ExtUtils::MM_VMS' => '6.61_01',
6264 'ExtUtils::MM_VOS' => '6.61_01',
6265 'ExtUtils::MM_Win32' => '6.61_01',
6266 'ExtUtils::MM_Win95' => '6.61_01',
6267 'ExtUtils::MY' => '6.61_01',
6268 'ExtUtils::MakeMaker' => '6.61_01',
6269 'ExtUtils::MakeMaker::Config'=> '6.61_01',
6270 'ExtUtils::Mkbootstrap' => '6.61_01',
6271 'ExtUtils::Mksymlists' => '6.61_01',
6272 'ExtUtils::ParseXS' => '3.05',
6273 'ExtUtils::ParseXS::Constants'=> '3.05',
6274 'ExtUtils::ParseXS::CountLines'=> '3.05',
6275 'ExtUtils::ParseXS::Utilities'=> '3.05',
6276 'ExtUtils::testlib' => '6.61_01',
6277 'File::DosGlob' => '1.05',
6278 'Module::CoreList' => '2.57',
6279 'Module::Load' => '0.22',
6280 'Unicode::Collate' => '0.80',
6281 'Unicode::Collate::Locale'=> '0.80',
6282 'Unicode::UCD' => '0.36',
6283 'XS::APItest' => '0.32',
6284 'XS::Typemap' => '0.07',
6285 'attributes' => '0.17',
6286 'base' => '2.18',
6287 'constant' => '1.23',
6288 'mro' => '1.09',
6289 'open' => '1.10',
6290 'perlfaq' => '5.0150035',
6291 },
6292 removed => {
6293 }
f0381222 6294 },
40f3bdee 6295 5.015005 => {
a272bf38
DL
6296 delta_from => 5.015004,
6297 changed => {
6298 'Archive::Extract' => '0.58',
6299 'B::Concise' => '0.87',
6300 'B::Deparse' => '1.09',
6301 'CGI' => '3.58',
6302 'CGI::Fast' => '1.09',
6303 'CPANPLUS' => '0.9112',
6304 'CPANPLUS::Dist::Build' => '0.60',
6305 'CPANPLUS::Dist::Build::Constants'=> '0.60',
6306 'CPANPLUS::Internals' => '0.9112',
6307 'CPANPLUS::Shell::Default'=> '0.9112',
6308 'Compress::Raw::Bzip2' => '2.042',
6309 'Compress::Raw::Zlib' => '2.042',
6310 'Compress::Zlib' => '2.042',
6311 'Digest::SHA' => '5.63',
6312 'Errno' => '1.15',
6313 'ExtUtils::Command::MM' => '6.63_02',
6314 'ExtUtils::Liblist' => '6.63_02',
6315 'ExtUtils::Liblist::Kid'=> '6.63_02',
6316 'ExtUtils::MM' => '6.63_02',
6317 'ExtUtils::MM_AIX' => '6.63_02',
6318 'ExtUtils::MM_Any' => '6.63_02',
6319 'ExtUtils::MM_BeOS' => '6.63_02',
6320 'ExtUtils::MM_Cygwin' => '6.63_02',
6321 'ExtUtils::MM_DOS' => '6.63_02',
6322 'ExtUtils::MM_Darwin' => '6.63_02',
6323 'ExtUtils::MM_MacOS' => '6.63_02',
6324 'ExtUtils::MM_NW5' => '6.63_02',
6325 'ExtUtils::MM_OS2' => '6.63_02',
6326 'ExtUtils::MM_QNX' => '6.63_02',
6327 'ExtUtils::MM_UWIN' => '6.63_02',
6328 'ExtUtils::MM_Unix' => '6.63_02',
6329 'ExtUtils::MM_VMS' => '6.63_02',
6330 'ExtUtils::MM_VOS' => '6.63_02',
6331 'ExtUtils::MM_Win32' => '6.63_02',
6332 'ExtUtils::MM_Win95' => '6.63_02',
6333 'ExtUtils::MY' => '6.63_02',
6334 'ExtUtils::MakeMaker' => '6.63_02',
6335 'ExtUtils::MakeMaker::Config'=> '6.63_02',
6336 'ExtUtils::Mkbootstrap' => '6.63_02',
6337 'ExtUtils::Mksymlists' => '6.63_02',
6338 'ExtUtils::testlib' => '6.63_02',
6339 'File::DosGlob' => '1.06',
6340 'File::Glob' => '1.14',
6341 'HTTP::Tiny' => '0.016',
6342 'IO::Compress::Adapter::Bzip2'=> '2.042',
6343 'IO::Compress::Adapter::Deflate'=> '2.042',
6344 'IO::Compress::Adapter::Identity'=> '2.042',
6345 'IO::Compress::Base' => '2.042',
6346 'IO::Compress::Base::Common'=> '2.042',
6347 'IO::Compress::Bzip2' => '2.042',
6348 'IO::Compress::Deflate' => '2.042',
6349 'IO::Compress::Gzip' => '2.042',
6350 'IO::Compress::Gzip::Constants'=> '2.042',
6351 'IO::Compress::RawDeflate'=> '2.042',
6352 'IO::Compress::Zip' => '2.042',
6353 'IO::Compress::Zip::Constants'=> '2.042',
6354 'IO::Compress::Zlib::Constants'=> '2.042',
6355 'IO::Compress::Zlib::Extra'=> '2.042',
6356 'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6357 'IO::Uncompress::Adapter::Identity'=> '2.042',
6358 'IO::Uncompress::Adapter::Inflate'=> '2.042',
6359 'IO::Uncompress::AnyInflate'=> '2.042',
6360 'IO::Uncompress::AnyUncompress'=> '2.042',
6361 'IO::Uncompress::Base' => '2.042',
6362 'IO::Uncompress::Bunzip2'=> '2.042',
6363 'IO::Uncompress::Gunzip'=> '2.042',
6364 'IO::Uncompress::Inflate'=> '2.042',
6365 'IO::Uncompress::RawInflate'=> '2.042',
6366 'IO::Uncompress::Unzip' => '2.042',
6367 'Locale::Maketext' => '1.20',
6368 'Locale::Maketext::Guts'=> '1.20',
6369 'Locale::Maketext::GutsLoader'=> '1.20',
6370 'Module::CoreList' => '2.58',
6371 'Opcode' => '1.21',
6372 'Socket' => '1.94_02',
6373 'Storable' => '2.33',
6374 'UNIVERSAL' => '1.10',
6375 'Unicode::Collate' => '0.85',
6376 'Unicode::Collate::CJK::Pinyin'=> '0.85',
6377 'Unicode::Collate::CJK::Stroke'=> '0.85',
6378 'Unicode::Collate::Locale'=> '0.85',
6379 'Unicode::UCD' => '0.37',
6380 'XS::APItest' => '0.33',
6381 'arybase' => '0.01',
6382 'charnames' => '1.24',
6383 'feature' => '1.23',
6384 'perlfaq' => '5.0150036',
6385 'strict' => '1.05',
6386 'unicore::Name' => undef,
6387 },
6388 removed => {
6389 }
40f3bdee 6390 },
9cdfa110 6391 5.015006 => {
a272bf38
DL
6392 delta_from => 5.015005,
6393 changed => {
6394 'Archive::Tar' => '1.82',
6395 'Archive::Tar::Constant'=> '1.82',
6396 'Archive::Tar::File' => '1.82',
6397 'AutoLoader' => '5.72',
6398 'B::Concise' => '0.88',
6399 'B::Debug' => '1.17',
6400 'B::Deparse' => '1.10',
6401 'CPAN::Meta::YAML' => '0.005',
6402 'CPANPLUS' => '0.9113',
6403 'CPANPLUS::Internals' => '0.9113',
6404 'CPANPLUS::Shell::Default'=> '0.9113',
6405 'Carp' => '1.24',
6406 'Compress::Raw::Bzip2' => '2.045',
6407 'Compress::Raw::Zlib' => '2.045',
6408 'Compress::Zlib' => '2.045',
6409 'Cwd' => '3.38',
6410 'DB' => '1.04',
6411 'Data::Dumper' => '2.135_01',
6412 'Digest::SHA' => '5.70',
6413 'Dumpvalue' => '1.17',
6414 'Exporter' => '5.66',
6415 'Exporter::Heavy' => '5.66',
6416 'ExtUtils::CBuilder' => '0.280205',
6417 'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6418 'ExtUtils::Packlist' => '1.45',
6419 'ExtUtils::ParseXS' => '3.08',
6420 'ExtUtils::ParseXS::Constants'=> '3.08',
6421 'ExtUtils::ParseXS::CountLines'=> '3.08',
6422 'ExtUtils::ParseXS::Utilities'=> '3.08',
6423 'File::Basename' => '2.84',
6424 'File::Glob' => '1.15',
6425 'File::Spec::Unix' => '3.35',
6426 'Getopt::Std' => '1.07',
6427 'I18N::LangTags' => '0.38',
6428 'IO::Compress::Adapter::Bzip2'=> '2.045',
6429 'IO::Compress::Adapter::Deflate'=> '2.045',
6430 'IO::Compress::Adapter::Identity'=> '2.045',
6431 'IO::Compress::Base' => '2.046',
6432 'IO::Compress::Base::Common'=> '2.045',
6433 'IO::Compress::Bzip2' => '2.045',
6434 'IO::Compress::Deflate' => '2.045',
6435 'IO::Compress::Gzip' => '2.045',
6436 'IO::Compress::Gzip::Constants'=> '2.045',
6437 'IO::Compress::RawDeflate'=> '2.045',
6438 'IO::Compress::Zip' => '2.046',
6439 'IO::Compress::Zip::Constants'=> '2.045',
6440 'IO::Compress::Zlib::Constants'=> '2.045',
6441 'IO::Compress::Zlib::Extra'=> '2.045',
6442 'IO::Dir' => '1.09',
6443 'IO::File' => '1.16',
6444 'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6445 'IO::Uncompress::Adapter::Identity'=> '2.045',
6446 'IO::Uncompress::Adapter::Inflate'=> '2.045',
6447 'IO::Uncompress::AnyInflate'=> '2.045',
6448 'IO::Uncompress::AnyUncompress'=> '2.045',
6449 'IO::Uncompress::Base' => '2.046',
6450 'IO::Uncompress::Bunzip2'=> '2.045',
6451 'IO::Uncompress::Gunzip'=> '2.045',
6452 'IO::Uncompress::Inflate'=> '2.045',
6453 'IO::Uncompress::RawInflate'=> '2.045',
6454 'IO::Uncompress::Unzip' => '2.046',
6455 'Locale::Codes' => '3.20',
6456 'Locale::Codes::Constants'=> '3.20',
6457 'Locale::Codes::Country'=> '3.20',
6458 'Locale::Codes::Country_Codes'=> '3.20',
6459 'Locale::Codes::Country_Retired'=> '3.20',
6460 'Locale::Codes::Currency'=> '3.20',
6461 'Locale::Codes::Currency_Codes'=> '3.20',
6462 'Locale::Codes::Currency_Retired'=> '3.20',
6463 'Locale::Codes::LangExt'=> '3.20',
6464 'Locale::Codes::LangExt_Codes'=> '3.20',
6465 'Locale::Codes::LangExt_Retired'=> '3.20',
6466 'Locale::Codes::LangFam'=> '3.20',
6467 'Locale::Codes::LangFam_Codes'=> '3.20',
6468 'Locale::Codes::LangFam_Retired'=> '3.20',
6469 'Locale::Codes::LangVar'=> '3.20',
6470 'Locale::Codes::LangVar_Codes'=> '3.20',
6471 'Locale::Codes::LangVar_Retired'=> '3.20',
6472 'Locale::Codes::Language'=> '3.20',
6473 'Locale::Codes::Language_Codes'=> '3.20',
6474 'Locale::Codes::Language_Retired'=> '3.20',
6475 'Locale::Codes::Script' => '3.20',
6476 'Locale::Codes::Script_Codes'=> '3.20',
6477 'Locale::Codes::Script_Retired'=> '3.20',
6478 'Locale::Country' => '3.20',
6479 'Locale::Currency' => '3.20',
6480 'Locale::Language' => '3.20',
6481 'Locale::Maketext' => '1.21',
6482 'Locale::Script' => '3.20',
6483 'Module::CoreList' => '2.59',
6484 'Module::Loaded' => '0.08',
6485 'Opcode' => '1.22',
6486 'POSIX' => '1.27',
6487 'Pod::Html' => '1.12',
6488 'Pod::LaTeX' => '0.60',
6489 'Pod::Perldoc' => '3.15_08',
6490 'Safe' => '2.30',
6491 'SelfLoader' => '1.20',
6492 'Socket' => '1.97',
6493 'Storable' => '2.34',
6494 'UNIVERSAL' => '1.11',
6495 'Unicode::Collate' => '0.87',
6496 'Unicode::Collate::Locale'=> '0.87',
6497 'XS::APItest' => '0.34',
6498 'arybase' => '0.02',
6499 'charnames' => '1.27',
6500 'diagnostics' => '1.26',
6501 'feature' => '1.24',
6502 'if' => '0.0602',
6503 'overload' => '1.16',
6504 'sigtrap' => '1.06',
6505 'strict' => '1.06',
6506 'threads' => '1.86',
6507 'version' => '0.96',
6508 },
6509 removed => {
6510 }
d10490f6
RS
6511 },
6512 5.015007 => {
a272bf38
DL
6513 delta_from => 5.015006,
6514 changed => {
6515 'B' => '1.33',
6516 'B::Deparse' => '1.11',
6517 'CGI' => '3.59',
6518 'CPAN::Meta' => '2.113640',
6519 'CPAN::Meta::Converter' => '2.113640',
6520 'CPAN::Meta::Feature' => '2.113640',
6521 'CPAN::Meta::History' => '2.113640',
6522 'CPAN::Meta::Prereqs' => '2.113640',
6523 'CPAN::Meta::Requirements'=> '2.113640',
6524 'CPAN::Meta::Spec' => '2.113640',
6525 'CPAN::Meta::Validator' => '2.113640',
6526 'CPANPLUS' => '0.9116',
6527 'CPANPLUS::Internals' => '0.9116',
6528 'CPANPLUS::Shell::Default'=> '0.9116',
6529 'Cwd' => '3.39_01',
6530 'Data::Dumper' => '2.135_03',
6531 'Devel::InnerPackage' => '0.4',
6532 'ExtUtils::CBuilder::Base'=> '0.280205',
6533 'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6534 'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6535 'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6536 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6537 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6538 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6539 'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6540 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6541 'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6542 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6543 'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6544 'ExtUtils::Manifest' => '1.61',
6545 'ExtUtils::Packlist' => '1.46',
6546 'ExtUtils::ParseXS' => '3.12',
6547 'ExtUtils::ParseXS::Constants'=> '3.12',
6548 'ExtUtils::ParseXS::CountLines'=> '3.12',
6549 'ExtUtils::ParseXS::Utilities'=> '3.12',
6550 'ExtUtils::Typemaps' => '1.03',
6551 'ExtUtils::Typemaps::Cmd'=> undef,
6552 'ExtUtils::Typemaps::Type'=> '0.06',
6553 'File::Glob' => '1.16',
6554 'File::Spec' => '3.39_01',
6555 'File::Spec::Cygwin' => '3.39_01',
6556 'File::Spec::Epoc' => '3.39_01',
6557 'File::Spec::Functions' => '3.39_01',
6558 'File::Spec::Mac' => '3.39_01',
6559 'File::Spec::OS2' => '3.39_01',
6560 'File::Spec::Unix' => '3.39_01',
6561 'File::Spec::VMS' => '3.39_01',
6562 'File::Spec::Win32' => '3.39_01',
6563 'IO::Dir' => '1.10',
6564 'IO::Pipe' => '1.15',
6565 'IO::Poll' => '0.09',
6566 'IO::Select' => '1.21',
6567 'IO::Socket' => '1.34',
6568 'IO::Socket::INET' => '1.33',
6569 'IO::Socket::UNIX' => '1.24',
6570 'Locale::Maketext' => '1.22',
6571 'Math::BigInt' => '1.998',
6572 'Module::CoreList' => '2.60',
6573 'Module::Pluggable' => '4.0',
6574 'POSIX' => '1.28',
6575 'PerlIO::scalar' => '0.13',
6576 'Pod::Html' => '1.13',
6577 'Pod::Perldoc' => '3.15_15',
6578 'Pod::Perldoc::BaseTo' => '3.15_15',
6579 'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6580 'Pod::Perldoc::ToANSI' => '3.15_15',
6581 'Pod::Perldoc::ToChecker'=> '3.15_15',
6582 'Pod::Perldoc::ToMan' => '3.15_15',
6583 'Pod::Perldoc::ToNroff' => '3.15_15',
6584 'Pod::Perldoc::ToPod' => '3.15_15',
6585 'Pod::Perldoc::ToRtf' => '3.15_15',
6586 'Pod::Perldoc::ToTerm' => '3.15_15',
6587 'Pod::Perldoc::ToText' => '3.15_15',
6588 'Pod::Perldoc::ToTk' => '3.15_15',
6589 'Pod::Perldoc::ToXml' => '3.15_15',
6590 'Term::UI' => '0.30',
6591 'Tie::File' => '0.98',
6592 'Unicode::UCD' => '0.39',
6593 'Version::Requirements' => '0.101021',
6594 'XS::APItest' => '0.35',
6595 '_charnames' => '1.28',
6596 'arybase' => '0.03',
6597 'autouse' => '1.07',
6598 'charnames' => '1.28',
6599 'diagnostics' => '1.27',
6600 'feature' => '1.25',
6601 'overload' => '1.17',
6602 'overloading' => '0.02',
6603 'perlfaq' => '5.0150038',
6604 },
6605 removed => {
6606 }
9cdfa110 6607 },
d10490f6 6608 5.015008 => {
a272bf38
DL
6609 delta_from => 5.015007,
6610 changed => {
6611 'B' => '1.34',
6612 'B::Deparse' => '1.12',
6613 'CPAN::Meta' => '2.120351',
6614 'CPAN::Meta::Converter' => '2.120351',
6615 'CPAN::Meta::Feature' => '2.120351',
6616 'CPAN::Meta::History' => '2.120351',
6617 'CPAN::Meta::Prereqs' => '2.120351',
6618 'CPAN::Meta::Requirements'=> '2.120351',
6619 'CPAN::Meta::Spec' => '2.120351',
6620 'CPAN::Meta::Validator' => '2.120351',
6621 'CPAN::Meta::YAML' => '0.007',
6622 'CPANPLUS' => '0.9118',
6623 'CPANPLUS::Dist::Build' => '0.62',
6624 'CPANPLUS::Dist::Build::Constants'=> '0.62',
6625 'CPANPLUS::Internals' => '0.9118',
6626 'CPANPLUS::Shell::Default'=> '0.9118',
6627 'Carp' => '1.25',
6628 'Carp::Heavy' => '1.25',
6629 'Compress::Raw::Bzip2' => '2.048',
6630 'Compress::Raw::Zlib' => '2.048',
6631 'Compress::Zlib' => '2.048',
6632 'Cwd' => '3.39_02',
6633 'DB_File' => '1.826',
6634 'Data::Dumper' => '2.135_05',
6635 'English' => '1.05',
6636 'ExtUtils::Install' => '1.58',
6637 'ExtUtils::ParseXS' => '3.16',
6638 'ExtUtils::ParseXS::Constants'=> '3.16',
6639 'ExtUtils::ParseXS::CountLines'=> '3.16',
6640 'ExtUtils::ParseXS::Utilities'=> '3.16',
6641 'ExtUtils::Typemaps' => '3.16',
6642 'ExtUtils::Typemaps::Cmd'=> '3.16',
6643 'ExtUtils::Typemaps::InputMap'=> '3.16',
6644 'ExtUtils::Typemaps::OutputMap'=> '3.16',
6645 'ExtUtils::Typemaps::Type'=> '3.16',
6646 'File::Copy' => '2.23',
6647 'File::Glob' => '1.17',
6648 'File::Spec' => '3.39_02',
6649 'File::Spec::Cygwin' => '3.39_02',
6650 'File::Spec::Epoc' => '3.39_02',
6651 'File::Spec::Functions' => '3.39_02',
6652 'File::Spec::Mac' => '3.39_02',
6653 'File::Spec::OS2' => '3.39_02',
6654 'File::Spec::Unix' => '3.39_02',
6655 'File::Spec::VMS' => '3.39_02',
6656 'File::Spec::Win32' => '3.39_02',
6657 'Filter::Util::Call' => '1.40',
6658 'IO::Compress::Adapter::Bzip2'=> '2.048',
6659 'IO::Compress::Adapter::Deflate'=> '2.048',
6660 'IO::Compress::Adapter::Identity'=> '2.048',
6661 'IO::Compress::Base' => '2.048',
6662 'IO::Compress::Base::Common'=> '2.048',
6663 'IO::Compress::Bzip2' => '2.048',
6664 'IO::Compress::Deflate' => '2.048',
6665 'IO::Compress::Gzip' => '2.048',
6666 'IO::Compress::Gzip::Constants'=> '2.048',
6667 'IO::Compress::RawDeflate'=> '2.048',
6668 'IO::Compress::Zip' => '2.048',
6669 'IO::Compress::Zip::Constants'=> '2.048',
6670 'IO::Compress::Zlib::Constants'=> '2.048',
6671 'IO::Compress::Zlib::Extra'=> '2.048',
6672 'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6673 'IO::Uncompress::Adapter::Identity'=> '2.048',
6674 'IO::Uncompress::Adapter::Inflate'=> '2.048',
6675 'IO::Uncompress::AnyInflate'=> '2.048',
6676 'IO::Uncompress::AnyUncompress'=> '2.048',
6677 'IO::Uncompress::Base' => '2.048',
6678 'IO::Uncompress::Bunzip2'=> '2.048',
6679 'IO::Uncompress::Gunzip'=> '2.048',
6680 'IO::Uncompress::Inflate'=> '2.048',
6681 'IO::Uncompress::RawInflate'=> '2.048',
6682 'IO::Uncompress::Unzip' => '2.048',
6683 'IPC::Cmd' => '0.76',
6684 'Math::Complex' => '1.59',
6685 'Math::Trig' => '1.23',
6686 'Module::Metadata' => '1.000009',
6687 'Opcode' => '1.23',
6688 'POSIX' => '1.30',
6689 'Parse::CPAN::Meta' => '1.4402',
6690 'PerlIO::mmap' => '0.010',
6691 'Pod::Checker' => '1.51',
6692 'Pod::Find' => '1.51',
6693 'Pod::Functions' => '1.05',
a272bf38
DL
6694 'Pod::Html' => '1.14',
6695 'Pod::InputObjects' => '1.51',
6696 'Pod::ParseUtils' => '1.51',
6697 'Pod::Parser' => '1.51',
6698 'Pod::PlainText' => '2.05',
6699 'Pod::Select' => '1.51',
6700 'Pod::Usage' => '1.51',
6701 'Safe' => '2.31',
6702 'Socket' => '1.98',
6703 'Term::Cap' => '1.13',
6704 'Term::ReadLine' => '1.08',
6705 'Time::HiRes' => '1.9725',
6706 'Unicode' => '6.1.0',
6707 'Unicode::UCD' => '0.41',
6708 'Version::Requirements' => '0.101022',
6709 'XS::APItest' => '0.36',
6710 'XS::Typemap' => '0.08',
6711 '_charnames' => '1.29',
6712 'arybase' => '0.04',
6713 'charnames' => '1.29',
6714 'diagnostics' => '1.28',
6715 'feature' => '1.26',
6716 'locale' => '1.01',
6717 'overload' => '1.18',
6718 'perlfaq' => '5.0150039',
6719 're' => '0.19',
6720 'subs' => '1.01',
6721 'warnings' => '1.13',
6722 },
6723 removed => {
6724 }
b240fc0f 6725 },
d10490f6 6726 5.015009 => {
a272bf38
DL
6727 delta_from => 5.015008,
6728 changed => {
6729 'B::Deparse' => '1.13',
6730 'B::Lint' => '1.14',
6731 'B::Lint::Debug' => '1.14',
6732 'CPAN::Meta' => '2.120630',
6733 'CPAN::Meta::Converter' => '2.120630',
6734 'CPAN::Meta::Feature' => '2.120630',
6735 'CPAN::Meta::History' => '2.120630',
6736 'CPAN::Meta::Prereqs' => '2.120630',
6737 'CPAN::Meta::Requirements'=> '2.120630',
6738 'CPAN::Meta::Spec' => '2.120630',
6739 'CPAN::Meta::Validator' => '2.120630',
6740 'CPANPLUS' => '0.9121',
6741 'CPANPLUS::Internals' => '0.9121',
6742 'CPANPLUS::Shell::Default'=> '0.9121',
6743 'Data::Dumper' => '2.135_06',
6744 'Digest::SHA' => '5.71',
6745 'ExtUtils::CBuilder' => '0.280206',
6746 'ExtUtils::CBuilder::Base'=> '0.280206',
6747 'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6748 'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6749 'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6750 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6751 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6752 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6753 'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6754 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6755 'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6756 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6757 'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6758 'HTTP::Tiny' => '0.017',
6759 'Locale::Codes' => '3.21',
6760 'Locale::Codes::Constants'=> '3.21',
6761 'Locale::Codes::Country'=> '3.21',
6762 'Locale::Codes::Country_Codes'=> '3.21',
6763 'Locale::Codes::Country_Retired'=> '3.21',
6764 'Locale::Codes::Currency'=> '3.21',
6765 'Locale::Codes::Currency_Codes'=> '3.21',
6766 'Locale::Codes::Currency_Retired'=> '3.21',
6767 'Locale::Codes::LangExt'=> '3.21',
6768 'Locale::Codes::LangExt_Codes'=> '3.21',
6769 'Locale::Codes::LangExt_Retired'=> '3.21',
6770 'Locale::Codes::LangFam'=> '3.21',
6771 'Locale::Codes::LangFam_Codes'=> '3.21',
6772 'Locale::Codes::LangFam_Retired'=> '3.21',
6773 'Locale::Codes::LangVar'=> '3.21',
6774 'Locale::Codes::LangVar_Codes'=> '3.21',
6775 'Locale::Codes::LangVar_Retired'=> '3.21',
6776 'Locale::Codes::Language'=> '3.21',
6777 'Locale::Codes::Language_Codes'=> '3.21',
6778 'Locale::Codes::Language_Retired'=> '3.21',
6779 'Locale::Codes::Script' => '3.21',
6780 'Locale::Codes::Script_Codes'=> '3.21',
6781 'Locale::Codes::Script_Retired'=> '3.21',
6782 'Locale::Country' => '3.21',
6783 'Locale::Currency' => '3.21',
6784 'Locale::Language' => '3.21',
6785 'Locale::Script' => '3.21',
6786 'Module::CoreList' => '2.65',
6787 'Pod::Html' => '1.1501',
6788 'Pod::Perldoc' => '3.17',
6789 'Pod::Perldoc::BaseTo' => '3.17',
6790 'Pod::Perldoc::GetOptsOO'=> '3.17',
6791 'Pod::Perldoc::ToANSI' => '3.17',
6792 'Pod::Perldoc::ToChecker'=> '3.17',
6793 'Pod::Perldoc::ToMan' => '3.17',
6794 'Pod::Perldoc::ToNroff' => '3.17',
6795 'Pod::Perldoc::ToPod' => '3.17',
6796 'Pod::Perldoc::ToRtf' => '3.17',
6797 'Pod::Perldoc::ToTerm' => '3.17',
6798 'Pod::Perldoc::ToText' => '3.17',
6799 'Pod::Perldoc::ToTk' => '3.17',
6800 'Pod::Perldoc::ToXml' => '3.17',
6801 'Pod::Simple' => '3.20',
6802 'Pod::Simple::BlackBox' => '3.20',
6803 'Pod::Simple::Checker' => '3.20',
6804 'Pod::Simple::Debug' => '3.20',
6805 'Pod::Simple::DumpAsText'=> '3.20',
6806 'Pod::Simple::DumpAsXML'=> '3.20',
6807 'Pod::Simple::HTML' => '3.20',
6808 'Pod::Simple::HTMLBatch'=> '3.20',
6809 'Pod::Simple::LinkSection'=> '3.20',
6810 'Pod::Simple::Methody' => '3.20',
6811 'Pod::Simple::Progress' => '3.20',
6812 'Pod::Simple::PullParser'=> '3.20',
6813 'Pod::Simple::PullParserEndToken'=> '3.20',
6814 'Pod::Simple::PullParserStartToken'=> '3.20',
6815 'Pod::Simple::PullParserTextToken'=> '3.20',
6816 'Pod::Simple::PullParserToken'=> '3.20',
6817 'Pod::Simple::RTF' => '3.20',
6818 'Pod::Simple::Search' => '3.20',
6819 'Pod::Simple::SimpleTree'=> '3.20',
6820 'Pod::Simple::Text' => '3.20',
6821 'Pod::Simple::TextContent'=> '3.20',
6822 'Pod::Simple::TiedOutFH'=> '3.20',
6823 'Pod::Simple::Transcode'=> '3.20',
6824 'Pod::Simple::TranscodeDumb'=> '3.20',
6825 'Pod::Simple::TranscodeSmart'=> '3.20',
6826 'Pod::Simple::XHTML' => '3.20',
6827 'Pod::Simple::XMLOutStream'=> '3.20',
6828 'Socket' => '2.000',
6829 'Term::ReadLine' => '1.09',
6830 'Unicode::Collate' => '0.89',
6831 'Unicode::Collate::CJK::Korean'=> '0.88',
6832 'Unicode::Collate::Locale'=> '0.89',
6833 'Unicode::Normalize' => '1.14',
6834 'Unicode::UCD' => '0.42',
6835 'XS::APItest' => '0.37',
6836 'arybase' => '0.05',
6837 'attributes' => '0.18',
6838 'charnames' => '1.30',
6839 'feature' => '1.27',
6840 },
6841 removed => {
6842 }
f50587e0 6843 },
a272bf38
DL
6844 5.016 => {
6845 delta_from => 5.015009,
6846 changed => {
6847 'B::Concise' => '0.89',
6848 'B::Deparse' => '1.14',
6849 'Carp' => '1.26',
6850 'Carp::Heavy' => '1.26',
6851 'IO::Socket' => '1.35',
6852 'Module::CoreList' => '2.66',
6853 'PerlIO::scalar' => '0.14',
6854 'Pod::Html' => '1.1502',
6855 'Safe' => '2.31_01',
6856 'Socket' => '2.001',
6857 'Unicode::UCD' => '0.43',
6858 'XS::APItest' => '0.38',
6859 '_charnames' => '1.31',
6860 'attributes' => '0.19',
6861 'strict' => '1.07',
6862 'version' => '0.99',
6863 },
6864 removed => {
6865 }
68a91acb 6866 },
990b8741
RS
6867 5.016001 => {
6868 delta_from => 5.016,
6869 changed => {
6870 'B' => '1.35',
6871 'B::Deparse' => '1.14_01',
6872 'List::Util' => '1.25',
6873 'List::Util::PP' => '1.25',
6874 'List::Util::XS' => '1.25',
6875 'Module::CoreList' => '2.70',
6876 'PerlIO::scalar' => '0.14_01',
6877 'Scalar::Util' => '1.25',
6878 'Scalar::Util::PP' => '1.25',
6879 're' => '0.19_01',
6880 },
6881 removed => {
6882 }
6883 },
e0a7ebbc
CBW
6884 5.016002 => {
6885 delta_from => 5.016001,
6886 changed => {
c078d967 6887 'Module::CoreList' => '2.76',
e0a7ebbc
CBW
6888 },
6889 removed => {
6890 }
6891 },
cd98b2f5
CBW
6892 5.016003 => {
6893 delta_from => 5.016002,
6894 changed => {
6895 'Encode' => '2.44_01',
6896 'Module::CoreList' => '2.76_02',
6897 'XS::APItest' => '0.39',
6898 },
6899 removed => {
6900 }
6901 },
a272bf38
DL
6902 5.017 => {
6903 delta_from => 5.016,
6904 changed => {
6905 'B' => '1.35',
6906 'B::Concise' => '0.90',
6907 'ExtUtils::ParseXS' => '3.17',
6908 'ExtUtils::ParseXS::Utilities'=> '3.17',
6909 'File::DosGlob' => '1.07',
6910 'File::Find' => '1.21',
6911 'File::stat' => '1.06',
6912 'Hash::Util' => '0.12',
6913 'IO::Socket' => '1.34',
6914 'Module::CoreList' => '2.67',
6915 'Pod::Functions' => '1.06',
a272bf38
DL
6916 'Storable' => '2.35',
6917 'XS::APItest' => '0.39',
6918 'diagnostics' => '1.29',
6919 'feature' => '1.28',
6920 'overload' => '1.19',
6921 'utf8' => '1.10',
6922 },
6923 removed => {
6924 'Version::Requirements' => 1,
6925 }
f558db2f 6926 },
71014848 6927 5.017001 => {
a272bf38
DL
6928 delta_from => 5.017,
6929 changed => {
6930 'App::Prove' => '3.25',
6931 'App::Prove::State' => '3.25',
6932 'App::Prove::State::Result'=> '3.25',
6933 'App::Prove::State::Result::Test'=> '3.25',
6934 'Archive::Extract' => '0.60',
6935 'Archive::Tar' => '1.88',
6936 'Archive::Tar::Constant'=> '1.88',
6937 'Archive::Tar::File' => '1.88',
6938 'B' => '1.36',
6939 'B::Deparse' => '1.15',
6940 'CPAN::Meta' => '2.120921',
6941 'CPAN::Meta::Converter' => '2.120921',
6942 'CPAN::Meta::Feature' => '2.120921',
6943 'CPAN::Meta::History' => '2.120921',
6944 'CPAN::Meta::Prereqs' => '2.120921',
6945 'CPAN::Meta::Requirements'=> '2.122',
6946 'CPAN::Meta::Spec' => '2.120921',
6947 'CPAN::Meta::Validator' => '2.120921',
6948 'CPAN::Meta::YAML' => '0.008',
6949 'CPANPLUS' => '0.9130',
6950 'CPANPLUS::Config::HomeEnv'=> '0.04',
6951 'CPANPLUS::Internals' => '0.9130',
6952 'CPANPLUS::Shell::Default'=> '0.9130',
6953 'Class::Struct' => '0.64',
6954 'Compress::Raw::Bzip2' => '2.052',
6955 'Compress::Raw::Zlib' => '2.054',
6956 'Compress::Zlib' => '2.052',
6957 'Digest::MD5' => '2.52',
6958 'DynaLoader' => '1.15',
6959 'ExtUtils::CBuilder' => '0.280208',
6960 'ExtUtils::CBuilder::Base'=> '0.280208',
6961 'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
6962 'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
6963 'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
6964 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
6965 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
6966 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
6967 'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
6968 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
6969 'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
6970 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
6971 'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
6972 'Fatal' => '2.11',
6973 'File::DosGlob' => '1.08',
6974 'File::Fetch' => '0.34',
6975 'File::Spec::Unix' => '3.39_03',
6976 'Filter::Util::Call' => '1.45',
6977 'HTTP::Tiny' => '0.022',
6978 'IO' => '1.25_07',
6979 'IO::Compress::Adapter::Bzip2'=> '2.052',
6980 'IO::Compress::Adapter::Deflate'=> '2.052',
6981 'IO::Compress::Adapter::Identity'=> '2.052',
6982 'IO::Compress::Base' => '2.052',
6983 'IO::Compress::Base::Common'=> '2.052',
6984 'IO::Compress::Bzip2' => '2.052',
6985 'IO::Compress::Deflate' => '2.052',
6986 'IO::Compress::Gzip' => '2.052',
6987 'IO::Compress::Gzip::Constants'=> '2.052',
6988 'IO::Compress::RawDeflate'=> '2.052',
6989 'IO::Compress::Zip' => '2.052',
6990 'IO::Compress::Zip::Constants'=> '2.052',
6991 'IO::Compress::Zlib::Constants'=> '2.052',
6992 'IO::Compress::Zlib::Extra'=> '2.052',
6993 'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
6994 'IO::Uncompress::Adapter::Identity'=> '2.052',
6995 'IO::Uncompress::Adapter::Inflate'=> '2.052',
6996 'IO::Uncompress::AnyInflate'=> '2.052',
6997 'IO::Uncompress::AnyUncompress'=> '2.052',
6998 'IO::Uncompress::Base' => '2.052',
6999 'IO::Uncompress::Bunzip2'=> '2.052',
7000 'IO::Uncompress::Gunzip'=> '2.052',
7001 'IO::Uncompress::Inflate'=> '2.052',
7002 'IO::Uncompress::RawInflate'=> '2.052',
7003 'IO::Uncompress::Unzip' => '2.052',
7004 'IPC::Cmd' => '0.78',
7005 'List::Util' => '1.25',
7006 'List::Util::XS' => '1.25',
7007 'Locale::Codes' => '3.22',
7008 'Locale::Codes::Constants'=> '3.22',
7009 'Locale::Codes::Country'=> '3.22',
7010 'Locale::Codes::Country_Codes'=> '3.22',
7011 'Locale::Codes::Country_Retired'=> '3.22',
7012 'Locale::Codes::Currency'=> '3.22',
7013 'Locale::Codes::Currency_Codes'=> '3.22',
7014 'Locale::Codes::Currency_Retired'=> '3.22',
7015 'Locale::Codes::LangExt'=> '3.22',
7016 'Locale::Codes::LangExt_Codes'=> '3.22',
7017 'Locale::Codes::LangExt_Retired'=> '3.22',
7018 'Locale::Codes::LangFam'=> '3.22',
7019 'Locale::Codes::LangFam_Codes'=> '3.22',
7020 'Locale::Codes::LangFam_Retired'=> '3.22',
7021 'Locale::Codes::LangVar'=> '3.22',
7022 'Locale::Codes::LangVar_Codes'=> '3.22',
7023 'Locale::Codes::LangVar_Retired'=> '3.22',
7024 'Locale::Codes::Language'=> '3.22',
7025 'Locale::Codes::Language_Codes'=> '3.22',
7026 'Locale::Codes::Language_Retired'=> '3.22',
7027 'Locale::Codes::Script' => '3.22',
7028 'Locale::Codes::Script_Codes'=> '3.22',
7029 'Locale::Codes::Script_Retired'=> '3.22',
7030 'Locale::Country' => '3.22',
7031 'Locale::Currency' => '3.22',
7032 'Locale::Language' => '3.22',
7033 'Locale::Script' => '3.22',
7034 'Memoize' => '1.03',
7035 'Memoize::AnyDBM_File' => '1.03',
7036 'Memoize::Expire' => '1.03',
7037 'Memoize::ExpireFile' => '1.03',
7038 'Memoize::ExpireTest' => '1.03',
7039 'Memoize::NDBM_File' => '1.03',
7040 'Memoize::SDBM_File' => '1.03',
7041 'Memoize::Storable' => '1.03',
7042 'Module::Build' => '0.40',
7043 'Module::Build::Base' => '0.40',
7044 'Module::Build::Compat' => '0.40',
7045 'Module::Build::Config' => '0.40',
7046 'Module::Build::Cookbook'=> '0.40',
7047 'Module::Build::Dumper' => '0.40',
7048 'Module::Build::ModuleInfo'=> '0.40',
7049 'Module::Build::Notes' => '0.40',
7050 'Module::Build::PPMMaker'=> '0.40',
7051 'Module::Build::Platform::Amiga'=> '0.40',
7052 'Module::Build::Platform::Default'=> '0.40',
7053 'Module::Build::Platform::EBCDIC'=> '0.40',
7054 'Module::Build::Platform::MPEiX'=> '0.40',
7055 'Module::Build::Platform::MacOS'=> '0.40',
7056 'Module::Build::Platform::RiscOS'=> '0.40',
7057 'Module::Build::Platform::Unix'=> '0.40',
7058 'Module::Build::Platform::VMS'=> '0.40',
7059 'Module::Build::Platform::VOS'=> '0.40',
7060 'Module::Build::Platform::Windows'=> '0.40',
7061 'Module::Build::Platform::aix'=> '0.40',
7062 'Module::Build::Platform::cygwin'=> '0.40',
7063 'Module::Build::Platform::darwin'=> '0.40',
7064 'Module::Build::Platform::os2'=> '0.40',
7065 'Module::Build::PodParser'=> '0.40',
7066 'Module::CoreList' => '2.68',
7067 'Module::Load::Conditional'=> '0.50',
7068 'Object::Accessor' => '0.44',
7069 'POSIX' => '1.31',
7070 'Params::Check' => '0.36',
7071 'Parse::CPAN::Meta' => '1.4404',
7072 'PerlIO::mmap' => '0.011',
7073 'PerlIO::via::QuotedPrint'=> '0.07',
7074 'Pod::Html' => '1.16',
7075 'Pod::Man' => '2.26',
7076 'Pod::Text' => '3.16',
7077 'Safe' => '2.33_01',
7078 'Scalar::Util' => '1.25',
7079 'Search::Dict' => '1.07',
7080 'Storable' => '2.36',
7081 'TAP::Base' => '3.25',
7082 'TAP::Formatter::Base' => '3.25',
7083 'TAP::Formatter::Color' => '3.25',
7084 'TAP::Formatter::Console'=> '3.25',
7085 'TAP::Formatter::Console::ParallelSession'=> '3.25',
7086 'TAP::Formatter::Console::Session'=> '3.25',
7087 'TAP::Formatter::File' => '3.25',
7088 'TAP::Formatter::File::Session'=> '3.25',
7089 'TAP::Formatter::Session'=> '3.25',
7090 'TAP::Harness' => '3.25',
7091 'TAP::Object' => '3.25',
7092 'TAP::Parser' => '3.25',
7093 'TAP::Parser::Aggregator'=> '3.25',
7094 'TAP::Parser::Grammar' => '3.25',
7095 'TAP::Parser::Iterator' => '3.25',
7096 'TAP::Parser::Iterator::Array'=> '3.25',
7097 'TAP::Parser::Iterator::Process'=> '3.25',
7098 'TAP::Parser::Iterator::Stream'=> '3.25',
7099 'TAP::Parser::IteratorFactory'=> '3.25',
7100 'TAP::Parser::Multiplexer'=> '3.25',
7101 'TAP::Parser::Result' => '3.25',
7102 'TAP::Parser::Result::Bailout'=> '3.25',
7103 'TAP::Parser::Result::Comment'=> '3.25',
7104 'TAP::Parser::Result::Plan'=> '3.25',
7105 'TAP::Parser::Result::Pragma'=> '3.25',
7106 'TAP::Parser::Result::Test'=> '3.25',
7107 'TAP::Parser::Result::Unknown'=> '3.25',
7108 'TAP::Parser::Result::Version'=> '3.25',
7109 'TAP::Parser::Result::YAML'=> '3.25',
7110 'TAP::Parser::ResultFactory'=> '3.25',
7111 'TAP::Parser::Scheduler'=> '3.25',
7112 'TAP::Parser::Scheduler::Job'=> '3.25',
7113 'TAP::Parser::Scheduler::Spinner'=> '3.25',
7114 'TAP::Parser::Source' => '3.25',
7115 'TAP::Parser::SourceHandler'=> '3.25',
7116 'TAP::Parser::SourceHandler::Executable'=> '3.25',
7117 'TAP::Parser::SourceHandler::File'=> '3.25',
7118 'TAP::Parser::SourceHandler::Handle'=> '3.25',
7119 'TAP::Parser::SourceHandler::Perl'=> '3.25',
7120 'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7121 'TAP::Parser::Utils' => '3.25',
7122 'TAP::Parser::YAMLish::Reader'=> '3.25',
7123 'TAP::Parser::YAMLish::Writer'=> '3.25',
7124 'Term::ANSIColor' => '3.02',
7125 'Test::Harness' => '3.25',
7126 'Unicode' => '6.2.0',
7127 'Unicode::UCD' => '0.44',
7128 'XS::APItest' => '0.40',
7129 '_charnames' => '1.32',
7130 'attributes' => '0.2',
7131 'autodie' => '2.11',
7132 'autodie::exception' => '2.11',
7133 'autodie::exception::system'=> '2.11',
7134 'autodie::hints' => '2.11',
7135 'bigint' => '0.30',
7136 'charnames' => '1.32',
7137 'feature' => '1.29',
7138 'inc::latest' => '0.40',
7139 'perlfaq' => '5.0150040',
7140 're' => '0.20',
7141 },
7142 removed => {
7143 'List::Util::PP' => 1,
7144 'Scalar::Util::PP' => 1,
7145 }
71014848 7146 },
7ca04d94 7147 5.017002 => {
a272bf38
DL
7148 delta_from => 5.017001,
7149 changed => {
7150 'App::Prove' => '3.25_01',
7151 'App::Prove::State' => '3.25_01',
7152 'App::Prove::State::Result'=> '3.25_01',
7153 'App::Prove::State::Result::Test'=> '3.25_01',
7154 'B::Concise' => '0.91',
7155 'Compress::Raw::Bzip2' => '2.05201',
7156 'Compress::Raw::Zlib' => '2.05401',
7157 'Exporter' => '5.67',
7158 'Exporter::Heavy' => '5.67',
7159 'Fatal' => '2.12',
7160 'File::Fetch' => '0.36',
7161 'File::stat' => '1.07',
7162 'IO' => '1.25_08',
7163 'IO::Socket' => '1.35',
7164 'Module::CoreList' => '2.69',
7165 'PerlIO::scalar' => '0.15',
7166 'Socket' => '2.002',
7167 'Storable' => '2.37',
7168 'TAP::Base' => '3.25_01',
7169 'TAP::Formatter::Base' => '3.25_01',
7170 'TAP::Formatter::Color' => '3.25_01',
7171 'TAP::Formatter::Console'=> '3.25_01',
7172 'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7173 'TAP::Formatter::Console::Session'=> '3.25_01',
7174 'TAP::Formatter::File' => '3.25_01',
7175 'TAP::Formatter::File::Session'=> '3.25_01',
7176 'TAP::Formatter::Session'=> '3.25_01',
7177 'TAP::Harness' => '3.25_01',
7178 'TAP::Object' => '3.25_01',
7179 'TAP::Parser' => '3.25_01',
7180 'TAP::Parser::Aggregator'=> '3.25_01',
7181 'TAP::Parser::Grammar' => '3.25_01',
7182 'TAP::Parser::Iterator' => '3.25_01',
7183 'TAP::Parser::Iterator::Array'=> '3.25_01',
7184 'TAP::Parser::Iterator::Process'=> '3.25_01',
7185 'TAP::Parser::Iterator::Stream'=> '3.25_01',
7186 'TAP::Parser::IteratorFactory'=> '3.25_01',
7187 'TAP::Parser::Multiplexer'=> '3.25_01',
7188 'TAP::Parser::Result' => '3.25_01',
7189 'TAP::Parser::Result::Bailout'=> '3.25_01',
7190 'TAP::Parser::Result::Comment'=> '3.25_01',
7191 'TAP::Parser::Result::Plan'=> '3.25_01',
7192 'TAP::Parser::Result::Pragma'=> '3.25_01',
7193 'TAP::Parser::Result::Test'=> '3.25_01',
7194 'TAP::Parser::Result::Unknown'=> '3.25_01',
7195 'TAP::Parser::Result::Version'=> '3.25_01',
7196 'TAP::Parser::Result::YAML'=> '3.25_01',
7197 'TAP::Parser::ResultFactory'=> '3.25_01',
7198 'TAP::Parser::Scheduler'=> '3.25_01',
7199 'TAP::Parser::Scheduler::Job'=> '3.25_01',
7200 'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7201 'TAP::Parser::Source' => '3.25_01',
7202 'TAP::Parser::SourceHandler'=> '3.25_01',
7203 'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7204 'TAP::Parser::SourceHandler::File'=> '3.25_01',
7205 'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7206 'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7207 'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7208 'TAP::Parser::Utils' => '3.25_01',
7209 'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7210 'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7211 'Test::Harness' => '3.25_01',
7212 'Tie::StdHandle' => '4.3',
7213 'XS::APItest' => '0.41',
7214 'autodie' => '2.12',
7215 'autodie::exception' => '2.12',
7216 'autodie::exception::system'=> '2.12',
7217 'autodie::hints' => '2.12',
7218 'diagnostics' => '1.30',
7219 'overload' => '1.20',
7220 're' => '0.21',
7221 'vars' => '1.03',
7222 },
7223 removed => {
7224 }
7ca04d94 7225 },
752b5616
SH
7226 5.017003 => {
7227 delta_from => 5.017002,
7228 changed => {
7229 'B' => '1.37',
7230 'B::Concise' => '0.92',
7231 'B::Debug' => '1.18',
7232 'B::Deparse' => '1.16',
7233 'CGI' => '3.60',
7234 'Compress::Raw::Bzip2' => '2.055',
7235 'Compress::Raw::Zlib' => '2.056',
7236 'Compress::Zlib' => '2.055',
7237 'Data::Dumper' => '2.135_07',
7238 'Devel::Peek' => '1.09',
7239 'Encode' => '2.47',
7240 'Encode::Alias' => '2.16',
7241 'Encode::GSM0338' => '2.02',
7242 'Encode::Unicode::UTF7' => '2.06',
7243 'IO::Compress::Adapter::Bzip2'=> '2.055',
7244 'IO::Compress::Adapter::Deflate'=> '2.055',
7245 'IO::Compress::Adapter::Identity'=> '2.055',
7246 'IO::Compress::Base' => '2.055',
7247 'IO::Compress::Base::Common'=> '2.055',
7248 'IO::Compress::Bzip2' => '2.055',
7249 'IO::Compress::Deflate' => '2.055',
7250 'IO::Compress::Gzip' => '2.055',
7251 'IO::Compress::Gzip::Constants'=> '2.055',
7252 'IO::Compress::RawDeflate'=> '2.055',
7253 'IO::Compress::Zip' => '2.055',
7254 'IO::Compress::Zip::Constants'=> '2.055',
7255 'IO::Compress::Zlib::Constants'=> '2.055',
7256 'IO::Compress::Zlib::Extra'=> '2.055',
7257 'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7258 'IO::Uncompress::Adapter::Identity'=> '2.055',
7259 'IO::Uncompress::Adapter::Inflate'=> '2.055',
7260 'IO::Uncompress::AnyInflate'=> '2.055',
7261 'IO::Uncompress::AnyUncompress'=> '2.055',
7262 'IO::Uncompress::Base' => '2.055',
7263 'IO::Uncompress::Bunzip2'=> '2.055',
7264 'IO::Uncompress::Gunzip'=> '2.055',
7265 'IO::Uncompress::Inflate'=> '2.055',
7266 'IO::Uncompress::RawInflate'=> '2.055',
7267 'IO::Uncompress::Unzip' => '2.055',
7268 'Module::Build' => '0.4003',
7269 'Module::Build::Base' => '0.4003',
7270 'Module::Build::Compat' => '0.4003',
7271 'Module::Build::Config' => '0.4003',
7272 'Module::Build::Cookbook'=> '0.4003',
7273 'Module::Build::Dumper' => '0.4003',
7274 'Module::Build::ModuleInfo'=> '0.4003',
7275 'Module::Build::Notes' => '0.4003',
7276 'Module::Build::PPMMaker'=> '0.4003',
7277 'Module::Build::Platform::Amiga'=> '0.4003',
7278 'Module::Build::Platform::Default'=> '0.4003',
7279 'Module::Build::Platform::EBCDIC'=> '0.4003',
7280 'Module::Build::Platform::MPEiX'=> '0.4003',
7281 'Module::Build::Platform::MacOS'=> '0.4003',
7282 'Module::Build::Platform::RiscOS'=> '0.4003',
7283 'Module::Build::Platform::Unix'=> '0.4003',
7284 'Module::Build::Platform::VMS'=> '0.4003',
7285 'Module::Build::Platform::VOS'=> '0.4003',
7286 'Module::Build::Platform::Windows'=> '0.4003',
7287 'Module::Build::Platform::aix'=> '0.4003',
7288 'Module::Build::Platform::cygwin'=> '0.4003',
7289 'Module::Build::Platform::darwin'=> '0.4003',
7290 'Module::Build::Platform::os2'=> '0.4003',
7291 'Module::Build::PodParser'=> '0.4003',
7292 'Module::CoreList' => '2.71',
7293 'Module::CoreList::TieHashDelta'=> '2.71',
7294 'Module::Load::Conditional'=> '0.54',
7295 'Module::Metadata' => '1.000011',
7296 'Module::Pluggable' => '4.3',
7297 'Module::Pluggable::Object'=> '4.3',
7298 'Pod::Simple' => '3.23',
7299 'Pod::Simple::BlackBox' => '3.23',
7300 'Pod::Simple::Checker' => '3.23',
7301 'Pod::Simple::Debug' => '3.23',
7302 'Pod::Simple::DumpAsText'=> '3.23',
7303 'Pod::Simple::DumpAsXML'=> '3.23',
7304 'Pod::Simple::HTML' => '3.23',
7305 'Pod::Simple::HTMLBatch'=> '3.23',
7306 'Pod::Simple::LinkSection'=> '3.23',
7307 'Pod::Simple::Methody' => '3.23',
7308 'Pod::Simple::Progress' => '3.23',
7309 'Pod::Simple::PullParser'=> '3.23',
7310 'Pod::Simple::PullParserEndToken'=> '3.23',
7311 'Pod::Simple::PullParserStartToken'=> '3.23',
7312 'Pod::Simple::PullParserTextToken'=> '3.23',
7313 'Pod::Simple::PullParserToken'=> '3.23',
7314 'Pod::Simple::RTF' => '3.23',
7315 'Pod::Simple::Search' => '3.23',
7316 'Pod::Simple::SimpleTree'=> '3.23',
7317 'Pod::Simple::Text' => '3.23',
7318 'Pod::Simple::TextContent'=> '3.23',
7319 'Pod::Simple::TiedOutFH'=> '3.23',
7320 'Pod::Simple::Transcode'=> '3.23',
7321 'Pod::Simple::TranscodeDumb'=> '3.23',
7322 'Pod::Simple::TranscodeSmart'=> '3.23',
7323 'Pod::Simple::XHTML' => '3.23',
7324 'Pod::Simple::XMLOutStream'=> '3.23',
7325 'Socket' => '2.004',
7326 'Storable' => '2.38',
7327 'Sys::Syslog' => '0.31',
7328 'Term::ReadLine' => '1.10',
7329 'Text::Tabs' => '2012.0818',
7330 'Text::Wrap' => '2012.0818',
7331 'Time::Local' => '1.2300',
7332 'Unicode::UCD' => '0.45',
7333 'Win32' => '0.45',
7334 'Win32CORE' => '0.03',
7335 'XS::APItest' => '0.42',
7336 'inc::latest' => '0.4003',
7337 'perlfaq' => '5.0150041',
7338 're' => '0.22',
7339 },
7340 removed => {
7341 }
7342 },
a1484e43
FR
7343 5.017004 => {
7344 delta_from => 5.017003,
7345 changed => {
7346 'Archive::Tar' => '1.90',
7347 'Archive::Tar::Constant'=> '1.90',
7348 'Archive::Tar::File' => '1.90',
7349 'B' => '1.38',
7350 'B::Concise' => '0.93',
7351 'B::Deparse' => '1.17',
7352 'B::Xref' => '1.04',
7353 'CPANPLUS' => '0.9131',
7354 'CPANPLUS::Internals' => '0.9131',
7355 'CPANPLUS::Shell::Default'=> '0.9131',
7356 'DB_File' => '1.827',
7357 'Devel::Peek' => '1.10',
7358 'DynaLoader' => '1.16',
7359 'Errno' => '1.16',
7360 'ExtUtils::ParseXS' => '3.18',
7361 'ExtUtils::ParseXS::Constants'=> '3.18',
7362 'ExtUtils::ParseXS::CountLines'=> '3.18',
7363 'ExtUtils::ParseXS::Utilities'=> '3.18',
7364 'File::Copy' => '2.24',
7365 'File::Find' => '1.22',
7366 'IPC::Open3' => '1.13',
7367 'Locale::Codes' => '3.23',
7368 'Locale::Codes::Constants'=> '3.23',
7369 'Locale::Codes::Country'=> '3.23',
7370 'Locale::Codes::Country_Codes'=> '3.23',
7371 'Locale::Codes::Country_Retired'=> '3.23',
7372 'Locale::Codes::Currency'=> '3.23',
7373 'Locale::Codes::Currency_Codes'=> '3.23',
7374 'Locale::Codes::Currency_Retired'=> '3.23',
7375 'Locale::Codes::LangExt'=> '3.23',
7376 'Locale::Codes::LangExt_Codes'=> '3.23',
7377 'Locale::Codes::LangExt_Retired'=> '3.23',
7378 'Locale::Codes::LangFam'=> '3.23',
7379 'Locale::Codes::LangFam_Codes'=> '3.23',
7380 'Locale::Codes::LangFam_Retired'=> '3.23',
7381 'Locale::Codes::LangVar'=> '3.23',
7382 'Locale::Codes::LangVar_Codes'=> '3.23',
7383 'Locale::Codes::LangVar_Retired'=> '3.23',
7384 'Locale::Codes::Language'=> '3.23',
7385 'Locale::Codes::Language_Codes'=> '3.23',
7386 'Locale::Codes::Language_Retired'=> '3.23',
7387 'Locale::Codes::Script' => '3.23',
7388 'Locale::Codes::Script_Codes'=> '3.23',
7389 'Locale::Codes::Script_Retired'=> '3.23',
7390 'Locale::Country' => '3.23',
7391 'Locale::Currency' => '3.23',
7392 'Locale::Language' => '3.23',
7393 'Locale::Script' => '3.23',
7394 'Math::BigFloat::Trace' => '0.30',
7395 'Math::BigInt::Trace' => '0.30',
7396 'Module::CoreList' => '2.73',
7397 'Module::CoreList::TieHashDelta'=> '2.73',
7398 'Opcode' => '1.24',
7399 'Socket' => '2.006',
7400 'Storable' => '2.39',
7401 'Sys::Syslog' => '0.32',
7402 'Unicode::UCD' => '0.46',
7403 'XS::APItest' => '0.43',
7404 'bignum' => '0.30',
7405 'bigrat' => '0.30',
7406 'constant' => '1.24',
7407 'feature' => '1.30',
7408 'threads::shared' => '1.41',
7409 'version' => '0.9901',
7410 'warnings' => '1.14',
7411 },
7412 removed => {
7413 }
7414 },
03708946
FR
7415 5.017005 => {
7416 delta_from => 5.017004,
7417 changed => {
7418 'AutoLoader' => '5.73',
7419 'B' => '1.39',
7420 'B::Deparse' => '1.18',
7421 'CPANPLUS' => '0.9133',
7422 'CPANPLUS::Internals' => '0.9133',
7423 'CPANPLUS::Shell::Default'=> '0.9133',
7424 'Carp' => '1.27',
7425 'Carp::Heavy' => '1.27',
7426 'Data::Dumper' => '2.136',
7427 'Digest::SHA' => '5.72',
7428 'ExtUtils::CBuilder' => '0.280209',
7429 'ExtUtils::CBuilder::Base'=> '0.280209',
7430 'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7431 'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7432 'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7433 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7434 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7435 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7436 'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7437 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7438 'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7439 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7440 'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7441 'File::Copy' => '2.25',
7442 'File::Glob' => '1.18',
7443 'HTTP::Tiny' => '0.024',
7444 'Module::CoreList' => '2.75',
7445 'Module::CoreList::TieHashDelta'=> '2.75',
7446 'PerlIO::encoding' => '0.16',
7447 'Unicode::Collate' => '0.90',
7448 'Unicode::Collate::Locale'=> '0.90',
7449 'Unicode::Normalize' => '1.15',
7450 'Win32CORE' => '0.04',
7451 'XS::APItest' => '0.44',
7452 'attributes' => '0.21',
7453 'bigint' => '0.31',
7454 'bignum' => '0.31',
7455 'bigrat' => '0.31',
7456 'feature' => '1.31',
7457 'threads::shared' => '1.42',
7458 'warnings' => '1.15',
7459 },
7460 removed => {
7461 }
7462 },
e498bd59
RS
7463 5.017006 => {
7464 delta_from => 5.017005,
7465 changed => {
7466 'B' => '1.40',
7467 'B::Concise' => '0.94',
7468 'B::Deparse' => '1.19',
7469 'B::Xref' => '1.05',
7470 'CGI' => '3.63',
7471 'CGI::Util' => '3.62',
7472 'CPAN' => '1.99_51',
7473 'CPANPLUS::Dist::Build' => '0.64',
7474 'CPANPLUS::Dist::Build::Constants'=> '0.64',
7475 'Carp' => '1.28',
7476 'Carp::Heavy' => '1.28',
7477 'Compress::Raw::Bzip2' => '2.058',
7478 'Compress::Raw::Zlib' => '2.058',
7479 'Compress::Zlib' => '2.058',
7480 'Data::Dumper' => '2.137',
7481 'Digest::SHA' => '5.73',
7482 'DynaLoader' => '1.17',
7483 'Env' => '1.04',
7484 'Errno' => '1.17',
7485 'ExtUtils::Manifest' => '1.62',
7486 'ExtUtils::Typemaps' => '3.18',
7487 'ExtUtils::Typemaps::Cmd'=> '3.18',
7488 'ExtUtils::Typemaps::InputMap'=> '3.18',
7489 'ExtUtils::Typemaps::OutputMap'=> '3.18',
7490 'ExtUtils::Typemaps::Type'=> '3.18',
7491 'Fatal' => '2.13',
7492 'File::Find' => '1.23',
7493 'Hash::Util' => '0.13',
7494 'IO::Compress::Adapter::Bzip2'=> '2.058',
7495 'IO::Compress::Adapter::Deflate'=> '2.058',
7496 'IO::Compress::Adapter::Identity'=> '2.058',
7497 'IO::Compress::Base' => '2.058',
7498 'IO::Compress::Base::Common'=> '2.058',
7499 'IO::Compress::Bzip2' => '2.058',
7500 'IO::Compress::Deflate' => '2.058',
7501 'IO::Compress::Gzip' => '2.058',
7502 'IO::Compress::Gzip::Constants'=> '2.058',
7503 'IO::Compress::RawDeflate'=> '2.058',
7504 'IO::Compress::Zip' => '2.058',
7505 'IO::Compress::Zip::Constants'=> '2.058',
7506 'IO::Compress::Zlib::Constants'=> '2.058',
7507 'IO::Compress::Zlib::Extra'=> '2.058',
7508 'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7509 'IO::Uncompress::Adapter::Identity'=> '2.058',
7510 'IO::Uncompress::Adapter::Inflate'=> '2.058',
7511 'IO::Uncompress::AnyInflate'=> '2.058',
7512 'IO::Uncompress::AnyUncompress'=> '2.058',
7513 'IO::Uncompress::Base' => '2.058',
7514 'IO::Uncompress::Bunzip2'=> '2.058',
7515 'IO::Uncompress::Gunzip'=> '2.058',
7516 'IO::Uncompress::Inflate'=> '2.058',
7517 'IO::Uncompress::RawInflate'=> '2.058',
7518 'IO::Uncompress::Unzip' => '2.058',
7519 'Module::CoreList' => '2.78',
7520 'Module::CoreList::TieHashDelta'=> '2.77',
7521 'Module::Pluggable' => '4.5',
7522 'Module::Pluggable::Object'=> '4.5',
7523 'Opcode' => '1.25',
7524 'Sys::Hostname' => '1.17',
7525 'Term::UI' => '0.32',
7526 'Thread::Queue' => '3.01',
7527 'Tie::Hash::NamedCapture'=> '0.09',
7528 'Unicode::Collate' => '0.93',
7529 'Unicode::Collate::CJK::Korean'=> '0.93',
7530 'Unicode::Collate::Locale'=> '0.93',
7531 'Unicode::Normalize' => '1.16',
7532 'Unicode::UCD' => '0.47',
7533 'XS::APItest' => '0.46',
7534 '_charnames' => '1.33',
7535 'autodie' => '2.13',
7536 'autodie::exception' => '2.13',
7537 'autodie::exception::system'=> '2.13',
7538 'autodie::hints' => '2.13',
7539 'charnames' => '1.33',
7540 're' => '0.23',
7541 },
7542 removed => {
7543 }
7544 },
fe03d33b
DR
7545 5.017007 => {
7546 delta_from => 5.017006,
7547 changed => {
7548 'B' => '1.41',
7549 'CPANPLUS::Dist::Build' => '0.68',
7550 'CPANPLUS::Dist::Build::Constants'=> '0.68',
7551 'Compress::Raw::Bzip2' => '2.059',
7552 'Compress::Raw::Zlib' => '2.059',
7553 'Compress::Zlib' => '2.059',
7554 'Cwd' => '3.39_03',
7555 'Data::Dumper' => '2.139',
7556 'Devel::Peek' => '1.11',
7557 'Digest::SHA' => '5.80',
7558 'DynaLoader' => '1.18',
7559 'English' => '1.06',
7560 'Errno' => '1.18',
7561 'ExtUtils::Command::MM' => '6.64',
7562 'ExtUtils::Liblist' => '6.64',
7563 'ExtUtils::Liblist::Kid'=> '6.64',
7564 'ExtUtils::MM' => '6.64',
7565 'ExtUtils::MM_AIX' => '6.64',
7566 'ExtUtils::MM_Any' => '6.64',
7567 'ExtUtils::MM_BeOS' => '6.64',
7568 'ExtUtils::MM_Cygwin' => '6.64',
7569 'ExtUtils::MM_DOS' => '6.64',
7570 'ExtUtils::MM_Darwin' => '6.64',
7571 'ExtUtils::MM_MacOS' => '6.64',
7572 'ExtUtils::MM_NW5' => '6.64',
7573 'ExtUtils::MM_OS2' => '6.64',
7574 'ExtUtils::MM_QNX' => '6.64',
7575 'ExtUtils::MM_UWIN' => '6.64',
7576 'ExtUtils::MM_Unix' => '6.64',
7577 'ExtUtils::MM_VMS' => '6.64',
7578 'ExtUtils::MM_VOS' => '6.64',
7579 'ExtUtils::MM_Win32' => '6.64',
7580 'ExtUtils::MM_Win95' => '6.64',
7581 'ExtUtils::MY' => '6.64',
7582 'ExtUtils::MakeMaker' => '6.64',
7583 'ExtUtils::MakeMaker::Config'=> '6.64',
7584 'ExtUtils::Mkbootstrap' => '6.64',
7585 'ExtUtils::Mksymlists' => '6.64',
7586 'ExtUtils::testlib' => '6.64',
7587 'File::DosGlob' => '1.09',
7588 'File::Glob' => '1.19',
7589 'GDBM_File' => '1.15',
7590 'IO::Compress::Adapter::Bzip2'=> '2.059',
7591 'IO::Compress::Adapter::Deflate'=> '2.059',
7592 'IO::Compress::Adapter::Identity'=> '2.059',
7593 'IO::Compress::Base' => '2.059',
7594 'IO::Compress::Base::Common'=> '2.059',
7595 'IO::Compress::Bzip2' => '2.059',
7596 'IO::Compress::Deflate' => '2.059',
7597 'IO::Compress::Gzip' => '2.059',
7598 'IO::Compress::Gzip::Constants'=> '2.059',
7599 'IO::Compress::RawDeflate'=> '2.059',
7600 'IO::Compress::Zip' => '2.059',
7601 'IO::Compress::Zip::Constants'=> '2.059',
7602 'IO::Compress::Zlib::Constants'=> '2.059',
7603 'IO::Compress::Zlib::Extra'=> '2.059',
7604 'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7605 'IO::Uncompress::Adapter::Identity'=> '2.059',
7606 'IO::Uncompress::Adapter::Inflate'=> '2.059',
7607 'IO::Uncompress::AnyInflate'=> '2.059',
7608 'IO::Uncompress::AnyUncompress'=> '2.059',
7609 'IO::Uncompress::Base' => '2.059',
7610 'IO::Uncompress::Bunzip2'=> '2.059',
7611 'IO::Uncompress::Gunzip'=> '2.059',
7612 'IO::Uncompress::Inflate'=> '2.059',
7613 'IO::Uncompress::RawInflate'=> '2.059',
7614 'IO::Uncompress::Unzip' => '2.059',
7615 'List::Util' => '1.26',
7616 'List::Util::XS' => '1.26',
7617 'Locale::Codes' => '3.24',
7618 'Locale::Codes::Constants'=> '3.24',
7619 'Locale::Codes::Country'=> '3.24',
7620 'Locale::Codes::Country_Codes'=> '3.24',
7621 'Locale::Codes::Country_Retired'=> '3.24',
7622 'Locale::Codes::Currency'=> '3.24',
7623 'Locale::Codes::Currency_Codes'=> '3.24',
7624 'Locale::Codes::Currency_Retired'=> '3.24',
7625 'Locale::Codes::LangExt'=> '3.24',
7626 'Locale::Codes::LangExt_Codes'=> '3.24',
7627 'Locale::Codes::LangExt_Retired'=> '3.24',
7628 'Locale::Codes::LangFam'=> '3.24',
7629 'Locale::Codes::LangFam_Codes'=> '3.24',
7630 'Locale::Codes::LangFam_Retired'=> '3.24',
7631 'Locale::Codes::LangVar'=> '3.24',
7632 'Locale::Codes::LangVar_Codes'=> '3.24',
7633 'Locale::Codes::LangVar_Retired'=> '3.24',
7634 'Locale::Codes::Language'=> '3.24',
7635 'Locale::Codes::Language_Codes'=> '3.24',
7636 'Locale::Codes::Language_Retired'=> '3.24',
7637 'Locale::Codes::Script' => '3.24',
7638 'Locale::Codes::Script_Codes'=> '3.24',
7639 'Locale::Codes::Script_Retired'=> '3.24',
7640 'Locale::Country' => '3.24',
7641 'Locale::Currency' => '3.24',
7642 'Locale::Language' => '3.24',
7643 'Locale::Maketext' => '1.23',
7644 'Locale::Script' => '3.24',
7645 'Module::CoreList' => '2.79',
dd4b1c75 7646 'Module::CoreList::TieHashDelta'=> '2.79',
fe03d33b
DR
7647 'POSIX' => '1.32',
7648 'Scalar::Util' => '1.26',
7649 'Socket' => '2.006_001',
7650 'Storable' => '2.40',
7651 'Term::ReadLine' => '1.11',
7652 'Unicode::Collate' => '0.96',
7653 'Unicode::Collate::CJK::Stroke'=> '0.94',
7654 'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7655 'Unicode::Collate::Locale'=> '0.96',
7656 'XS::APItest' => '0.48',
7657 'XS::Typemap' => '0.09',
7658 '_charnames' => '1.34',
7659 'charnames' => '1.34',
7660 'feature' => '1.32',
7661 'mro' => '1.10',
7662 'sigtrap' => '1.07',
7663 'sort' => '2.02',
7664 },
7665 removed => {
7666 }
7667 },
dd4b1c75
AC
7668 5.017008 => {
7669 delta_from => 5.017007,
7670 changed => {
7671 'Archive::Extract' => '0.62',
7672 'B' => '1.42',
7673 'B::Concise' => '0.95',
7674 'Compress::Raw::Bzip2' => '2.060',
7675 'Compress::Raw::Zlib' => '2.060',
7676 'Compress::Zlib' => '2.060',
7677 'Cwd' => '3.40',
7678 'Data::Dumper' => '2.141',
7679 'Digest::SHA' => '5.81',
7680 'ExtUtils::Install' => '1.59',
7681 'File::Fetch' => '0.38',
7682 'File::Path' => '2.09',
7683 'File::Spec' => '3.40',
7684 'File::Spec::Cygwin' => '3.40',
7685 'File::Spec::Epoc' => '3.40',
7686 'File::Spec::Functions' => '3.40',
7687 'File::Spec::Mac' => '3.40',
7688 'File::Spec::OS2' => '3.40',
7689 'File::Spec::Unix' => '3.40',
7690 'File::Spec::VMS' => '3.40',
7691 'File::Spec::Win32' => '3.40',
7692 'HTTP::Tiny' => '0.025',
7693 'Hash::Util' => '0.14',
7694 'I18N::LangTags' => '0.39',
7695 'I18N::LangTags::List' => '0.39',
7696 'I18N::Langinfo' => '0.09',
7697 'IO' => '1.26',
7698 'IO::Compress::Adapter::Bzip2'=> '2.060',
7699 'IO::Compress::Adapter::Deflate'=> '2.060',
7700 'IO::Compress::Adapter::Identity'=> '2.060',
7701 'IO::Compress::Base' => '2.060',
7702 'IO::Compress::Base::Common'=> '2.060',
7703 'IO::Compress::Bzip2' => '2.060',
7704 'IO::Compress::Deflate' => '2.060',
7705 'IO::Compress::Gzip' => '2.060',
7706 'IO::Compress::Gzip::Constants'=> '2.060',
7707 'IO::Compress::RawDeflate'=> '2.060',
7708 'IO::Compress::Zip' => '2.060',
7709 'IO::Compress::Zip::Constants'=> '2.060',
7710 'IO::Compress::Zlib::Constants'=> '2.060',
7711 'IO::Compress::Zlib::Extra'=> '2.060',
7712 'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7713 'IO::Uncompress::Adapter::Identity'=> '2.060',
7714 'IO::Uncompress::Adapter::Inflate'=> '2.060',
7715 'IO::Uncompress::AnyInflate'=> '2.060',
7716 'IO::Uncompress::AnyUncompress'=> '2.060',
7717 'IO::Uncompress::Base' => '2.060',
7718 'IO::Uncompress::Bunzip2'=> '2.060',
7719 'IO::Uncompress::Gunzip'=> '2.060',
7720 'IO::Uncompress::Inflate'=> '2.060',
7721 'IO::Uncompress::RawInflate'=> '2.060',
7722 'IO::Uncompress::Unzip' => '2.060',
7723 'List::Util' => '1.27',
7724 'List::Util::XS' => '1.27',
7725 'Module::CoreList' => '2.80',
7726 'Module::CoreList::TieHashDelta'=> '2.80',
7727 'Pod::Html' => '1.17',
7728 'Pod::LaTeX' => '0.61',
7729 'Pod::Man' => '2.27',
7730 'Pod::Text' => '3.17',
7731 'Pod::Text::Color' => '2.07',
7732 'Pod::Text::Overstrike' => '2.05',
7733 'Pod::Text::Termcap' => '2.07',
7734 'Safe' => '2.34',
7735 'Scalar::Util' => '1.27',
7736 'Socket' => '2.009',
7737 'Term::ANSIColor' => '4.02',
7738 'Test' => '1.26',
7739 'Unicode::Collate' => '0.97',
7740 'XS::APItest' => '0.51',
7741 'XS::Typemap' => '0.10',
7742 '_charnames' => '1.35',
7743 'charnames' => '1.35',
7744 'constant' => '1.25',
7745 'diagnostics' => '1.31',
7746 'threads::shared' => '1.43',
7747 'warnings' => '1.16',
7748 },
7749 removed => {
7750 }
7751 },
52f6865c
CBW
7752 5.017009 => {
7753 delta_from => 5.017008,
7754 changed => {
7755 'App::Cpan' => '1.60_02',
7756 'App::Prove' => '3.26',
7757 'App::Prove::State' => '3.26',
7758 'App::Prove::State::Result'=> '3.26',
7759 'App::Prove::State::Result::Test'=> '3.26',
7760 'Archive::Extract' => '0.68',
7761 'Attribute::Handlers' => '0.94',
7762 'B::Lint' => '1.17',
7763 'B::Lint::Debug' => '1.17',
7764 'Benchmark' => '1.14',
7765 'CPAN' => '2.00',
7766 'CPAN::Distribution' => '2.00',
7767 'CPAN::FirstTime' => '5.5304',
7768 'CPAN::Nox' => '5.5001',
7769 'CPANPLUS' => '0.9135',
7770 'CPANPLUS::Backend' => '0.9135',
7771 'CPANPLUS::Backend::RV' => '0.9135',
7772 'CPANPLUS::Config' => '0.9135',
7773 'CPANPLUS::Config::HomeEnv'=> '0.9135',
7774 'CPANPLUS::Configure' => '0.9135',
7775 'CPANPLUS::Configure::Setup'=> '0.9135',
7776 'CPANPLUS::Dist' => '0.9135',
7777 'CPANPLUS::Dist::Autobundle'=> '0.9135',
7778 'CPANPLUS::Dist::Base' => '0.9135',
7779 'CPANPLUS::Dist::Build' => '0.70',
7780 'CPANPLUS::Dist::Build::Constants'=> '0.70',
7781 'CPANPLUS::Dist::MM' => '0.9135',
7782 'CPANPLUS::Dist::Sample'=> '0.9135',
7783 'CPANPLUS::Error' => '0.9135',
7784 'CPANPLUS::Internals' => '0.9135',
7785 'CPANPLUS::Internals::Constants'=> '0.9135',
7786 'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7787 'CPANPLUS::Internals::Extract'=> '0.9135',
7788 'CPANPLUS::Internals::Fetch'=> '0.9135',
7789 'CPANPLUS::Internals::Report'=> '0.9135',
7790 'CPANPLUS::Internals::Search'=> '0.9135',
7791 'CPANPLUS::Internals::Source'=> '0.9135',
7792 'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7793 'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7794 'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7795 'CPANPLUS::Internals::Utils'=> '0.9135',
7796 'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7797 'CPANPLUS::Module' => '0.9135',
7798 'CPANPLUS::Module::Author'=> '0.9135',
7799 'CPANPLUS::Module::Author::Fake'=> '0.9135',
7800 'CPANPLUS::Module::Checksums'=> '0.9135',
7801 'CPANPLUS::Module::Fake'=> '0.9135',
7802 'CPANPLUS::Module::Signature'=> '0.9135',
7803 'CPANPLUS::Selfupdate' => '0.9135',
7804 'CPANPLUS::Shell' => '0.9135',
7805 'CPANPLUS::Shell::Classic'=> '0.9135',
7806 'CPANPLUS::Shell::Default'=> '0.9135',
7807 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7808 'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7809 'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
cc423833 7810 'Config' => '5.017009',
52f6865c
CBW
7811 'Config::Perl::V' => '0.17',
7812 'DBM_Filter' => '0.05',
7813 'Data::Dumper' => '2.142',
7814 'Digest::SHA' => '5.82',
7815 'Encode' => '2.48',
7816 'ExtUtils::Installed' => '1.999003',
7817 'ExtUtils::Manifest' => '1.63',
7818 'ExtUtils::ParseXS::Utilities'=> '3.19',
7819 'ExtUtils::Typemaps' => '3.19',
7820 'File::CheckTree' => '4.42',
7821 'File::DosGlob' => '1.10',
7822 'File::Temp' => '0.22_90',
7823 'Filter::Simple' => '0.89',
7824 'IO' => '1.27',
7825 'Log::Message' => '0.06',
7826 'Log::Message::Config' => '0.06',
7827 'Log::Message::Handlers'=> '0.06',
7828 'Log::Message::Item' => '0.06',
7829 'Log::Message::Simple' => '0.10',
7830 'Math::BigInt' => '1.999',
7831 'Module::CoreList' => '2.82',
7832 'Module::CoreList::TieHashDelta'=> '2.82',
7833 'Module::Load' => '0.24',
7834 'Module::Pluggable' => '4.6',
7835 'Module::Pluggable::Object'=> '4.6',
78da2da6
CBW
7836 'OS2::DLL' => '1.05',
7837 'OS2::ExtAttr' => '0.03',
7838 'OS2::Process' => '1.08',
52f6865c
CBW
7839 'Object::Accessor' => '0.46',
7840 'PerlIO::scalar' => '0.16',
7841 'Pod::Checker' => '1.60',
7842 'Pod::Find' => '1.60',
7843 'Pod::Html' => '1.18',
7844 'Pod::InputObjects' => '1.60',
7845 'Pod::ParseUtils' => '1.60',
7846 'Pod::Parser' => '1.60',
7847 'Pod::Perldoc' => '3.19',
7848 'Pod::Perldoc::BaseTo' => '3.19',
7849 'Pod::Perldoc::GetOptsOO'=> '3.19',
7850 'Pod::Perldoc::ToANSI' => '3.19',
7851 'Pod::Perldoc::ToChecker'=> '3.19',
7852 'Pod::Perldoc::ToMan' => '3.19',
7853 'Pod::Perldoc::ToNroff' => '3.19',
7854 'Pod::Perldoc::ToPod' => '3.19',
7855 'Pod::Perldoc::ToRtf' => '3.19',
7856 'Pod::Perldoc::ToTerm' => '3.19',
7857 'Pod::Perldoc::ToText' => '3.19',
7858 'Pod::Perldoc::ToTk' => '3.19',
7859 'Pod::Perldoc::ToXml' => '3.19',
7860 'Pod::PlainText' => '2.06',
7861 'Pod::Select' => '1.60',
7862 'Pod::Usage' => '1.61',
7863 'SelfLoader' => '1.21',
7864 'TAP::Base' => '3.26',
7865 'TAP::Formatter::Base' => '3.26',
7866 'TAP::Formatter::Color' => '3.26',
7867 'TAP::Formatter::Console'=> '3.26',
7868 'TAP::Formatter::Console::ParallelSession'=> '3.26',
7869 'TAP::Formatter::Console::Session'=> '3.26',
7870 'TAP::Formatter::File' => '3.26',
7871 'TAP::Formatter::File::Session'=> '3.26',
7872 'TAP::Formatter::Session'=> '3.26',
7873 'TAP::Harness' => '3.26',
7874 'TAP::Object' => '3.26',
7875 'TAP::Parser' => '3.26',
7876 'TAP::Parser::Aggregator'=> '3.26',
7877 'TAP::Parser::Grammar' => '3.26',
7878 'TAP::Parser::Iterator' => '3.26',
7879 'TAP::Parser::Iterator::Array'=> '3.26',
7880 'TAP::Parser::Iterator::Process'=> '3.26',
7881 'TAP::Parser::Iterator::Stream'=> '3.26',
7882 'TAP::Parser::IteratorFactory'=> '3.26',
7883 'TAP::Parser::Multiplexer'=> '3.26',
7884 'TAP::Parser::Result' => '3.26',
7885 'TAP::Parser::Result::Bailout'=> '3.26',
7886 'TAP::Parser::Result::Comment'=> '3.26',
7887 'TAP::Parser::Result::Plan'=> '3.26',
7888 'TAP::Parser::Result::Pragma'=> '3.26',
7889 'TAP::Parser::Result::Test'=> '3.26',
7890 'TAP::Parser::Result::Unknown'=> '3.26',
7891 'TAP::Parser::Result::Version'=> '3.26',
7892 'TAP::Parser::Result::YAML'=> '3.26',
7893 'TAP::Parser::ResultFactory'=> '3.26',
7894 'TAP::Parser::Scheduler'=> '3.26',
7895 'TAP::Parser::Scheduler::Job'=> '3.26',
7896 'TAP::Parser::Scheduler::Spinner'=> '3.26',
7897 'TAP::Parser::Source' => '3.26',
7898 'TAP::Parser::SourceHandler'=> '3.26',
7899 'TAP::Parser::SourceHandler::Executable'=> '3.26',
7900 'TAP::Parser::SourceHandler::File'=> '3.26',
7901 'TAP::Parser::SourceHandler::Handle'=> '3.26',
7902 'TAP::Parser::SourceHandler::Perl'=> '3.26',
7903 'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
7904 'TAP::Parser::Utils' => '3.26',
7905 'TAP::Parser::YAMLish::Reader'=> '3.26',
7906 'TAP::Parser::YAMLish::Writer'=> '3.26',
7907 'Term::UI' => '0.34',
7908 'Test::Harness' => '3.26',
7909 'Text::Soundex' => '3.04',
7910 'Thread::Queue' => '3.02',
7911 'Unicode::UCD' => '0.50',
7912 'Win32' => '0.46',
7913 'Win32API::File' => '0.1201',
7914 '_charnames' => '1.36',
7915 'arybase' => '0.06',
7916 'bigint' => '0.32',
7917 'bignum' => '0.32',
7918 'charnames' => '1.36',
7919 'filetest' => '1.03',
7920 'locale' => '1.02',
7921 'overload' => '1.21',
7922 'warnings' => '1.17',
7923 },
7924 removed => {
7925 }
7926 },
fd3b4111
MM
7927 5.017010 => {
7928 delta_from => 5.017009,
7929 changed => {
7930 'Benchmark' => '1.15',
cc423833 7931 'Config' => '5.017009',
fd3b4111
MM
7932 'Data::Dumper' => '2.145',
7933 'Digest::SHA' => '5.84',
7934 'Encode' => '2.49',
7935 'ExtUtils::Command::MM' => '6.65_01',
7936 'ExtUtils::Liblist' => '6.65_01',
7937 'ExtUtils::Liblist::Kid'=> '6.65_01',
7938 'ExtUtils::MM' => '6.65_01',
7939 'ExtUtils::MM_AIX' => '6.65_01',
7940 'ExtUtils::MM_Any' => '6.65_01',
7941 'ExtUtils::MM_BeOS' => '6.65_01',
7942 'ExtUtils::MM_Cygwin' => '6.65_01',
7943 'ExtUtils::MM_DOS' => '6.65_01',
7944 'ExtUtils::MM_Darwin' => '6.65_01',
7945 'ExtUtils::MM_MacOS' => '6.65_01',
7946 'ExtUtils::MM_NW5' => '6.65_01',
7947 'ExtUtils::MM_OS2' => '6.65_01',
7948 'ExtUtils::MM_QNX' => '6.65_01',
7949 'ExtUtils::MM_UWIN' => '6.65_01',
7950 'ExtUtils::MM_Unix' => '6.65_01',
7951 'ExtUtils::MM_VMS' => '6.65_01',
7952 'ExtUtils::MM_VOS' => '6.65_01',
7953 'ExtUtils::MM_Win32' => '6.65_01',
7954 'ExtUtils::MM_Win95' => '6.65_01',
7955 'ExtUtils::MY' => '6.65_01',
7956 'ExtUtils::MakeMaker' => '6.65_01',
7957 'ExtUtils::MakeMaker::Config'=> '6.65_01',
7958 'ExtUtils::Mkbootstrap' => '6.65_01',
7959 'ExtUtils::Mksymlists' => '6.65_01',
7960 'ExtUtils::testlib' => '6.65_01',
7961 'File::Copy' => '2.26',
7962 'File::Temp' => '0.23',
7963 'Getopt::Long' => '2.39',
7964 'Hash::Util' => '0.15',
7965 'I18N::Langinfo' => '0.10',
7966 'IPC::Cmd' => '0.80',
7967 'JSON::PP' => '2.27202',
7968 'Locale::Codes' => '3.25',
7969 'Locale::Codes::Constants'=> '3.25',
7970 'Locale::Codes::Country'=> '3.25',
7971 'Locale::Codes::Country_Codes'=> '3.25',
7972 'Locale::Codes::Country_Retired'=> '3.25',
7973 'Locale::Codes::Currency'=> '3.25',
7974 'Locale::Codes::Currency_Codes'=> '3.25',
7975 'Locale::Codes::Currency_Retired'=> '3.25',
7976 'Locale::Codes::LangExt'=> '3.25',
7977 'Locale::Codes::LangExt_Codes'=> '3.25',
7978 'Locale::Codes::LangExt_Retired'=> '3.25',
7979 'Locale::Codes::LangFam'=> '3.25',
7980 'Locale::Codes::LangFam_Codes'=> '3.25',
7981 'Locale::Codes::LangFam_Retired'=> '3.25',
7982 'Locale::Codes::LangVar'=> '3.25',
7983 'Locale::Codes::LangVar_Codes'=> '3.25',
7984 'Locale::Codes::LangVar_Retired'=> '3.25',
7985 'Locale::Codes::Language'=> '3.25',
7986 'Locale::Codes::Language_Codes'=> '3.25',
7987 'Locale::Codes::Language_Retired'=> '3.25',
7988 'Locale::Codes::Script' => '3.25',
7989 'Locale::Codes::Script_Codes'=> '3.25',
7990 'Locale::Codes::Script_Retired'=> '3.25',
7991 'Locale::Country' => '3.25',
7992 'Locale::Currency' => '3.25',
7993 'Locale::Language' => '3.25',
7994 'Locale::Script' => '3.25',
7995 'Math::BigFloat' => '1.998',
7996 'Math::BigFloat::Trace' => '0.32',
7997 'Math::BigInt' => '1.9991',
7998 'Math::BigInt::CalcEmu' => '1.998',
7999 'Math::BigInt::Trace' => '0.32',
8000 'Math::BigRat' => '0.2604',
8001 'Module::CoreList' => '2.84',
8002 'Module::CoreList::TieHashDelta'=> '2.84',
8003 'Module::Pluggable' => '4.7',
8004 'Net::Ping' => '2.41',
8005 'Perl::OSType' => '1.003',
8006 'Pod::Simple' => '3.26',
8007 'Pod::Simple::BlackBox' => '3.26',
8008 'Pod::Simple::Checker' => '3.26',
8009 'Pod::Simple::Debug' => '3.26',
8010 'Pod::Simple::DumpAsText'=> '3.26',
8011 'Pod::Simple::DumpAsXML'=> '3.26',
8012 'Pod::Simple::HTML' => '3.26',
8013 'Pod::Simple::HTMLBatch'=> '3.26',
8014 'Pod::Simple::LinkSection'=> '3.26',
8015 'Pod::Simple::Methody' => '3.26',
8016 'Pod::Simple::Progress' => '3.26',
8017 'Pod::Simple::PullParser'=> '3.26',
8018 'Pod::Simple::PullParserEndToken'=> '3.26',
8019 'Pod::Simple::PullParserStartToken'=> '3.26',
8020 'Pod::Simple::PullParserTextToken'=> '3.26',
8021 'Pod::Simple::PullParserToken'=> '3.26',
8022 'Pod::Simple::RTF' => '3.26',
8023 'Pod::Simple::Search' => '3.26',
8024 'Pod::Simple::SimpleTree'=> '3.26',
8025 'Pod::Simple::Text' => '3.26',
8026 'Pod::Simple::TextContent'=> '3.26',
8027 'Pod::Simple::TiedOutFH'=> '3.26',
8028 'Pod::Simple::Transcode'=> '3.26',
8029 'Pod::Simple::TranscodeDumb'=> '3.26',
8030 'Pod::Simple::TranscodeSmart'=> '3.26',
8031 'Pod::Simple::XHTML' => '3.26',
8032 'Pod::Simple::XMLOutStream'=> '3.26',
8033 'Safe' => '2.35',
8034 'Term::ReadLine' => '1.12',
8035 'Text::ParseWords' => '3.28',
8036 'Tie::File' => '0.99',
8037 'Unicode::UCD' => '0.51',
8038 'Win32' => '0.47',
8039 'bigint' => '0.33',
8040 'bignum' => '0.33',
8041 'bigrat' => '0.33',
8042 'constant' => '1.27',
8043 'perlfaq' => '5.0150042',
8044 'version' => '0.9902',
8045 },
8046 removed => {
8047 }
8048 },
e55f48ec
RS
8049 5.017011 => {
8050 delta_from => 5.017010,
8051 changed => {
8052 'App::Cpan' => '1.61',
8053 'B::Deparse' => '1.20',
cc423833 8054 'Config' => '5.017009',
e55f48ec
RS
8055 'Exporter' => '5.68',
8056 'Exporter::Heavy' => '5.68',
8057 'ExtUtils::CBuilder' => '0.280210',
8058 'ExtUtils::Command::MM' => '6.66',
8059 'ExtUtils::Liblist' => '6.66',
8060 'ExtUtils::Liblist::Kid'=> '6.66',
8061 'ExtUtils::MM' => '6.66',
8062 'ExtUtils::MM_AIX' => '6.66',
8063 'ExtUtils::MM_Any' => '6.66',
8064 'ExtUtils::MM_BeOS' => '6.66',
8065 'ExtUtils::MM_Cygwin' => '6.66',
8066 'ExtUtils::MM_DOS' => '6.66',
8067 'ExtUtils::MM_Darwin' => '6.66',
8068 'ExtUtils::MM_MacOS' => '6.66',
8069 'ExtUtils::MM_NW5' => '6.66',
8070 'ExtUtils::MM_OS2' => '6.66',
8071 'ExtUtils::MM_QNX' => '6.66',
8072 'ExtUtils::MM_UWIN' => '6.66',
8073 'ExtUtils::MM_Unix' => '6.66',
8074 'ExtUtils::MM_VMS' => '6.66',
8075 'ExtUtils::MM_VOS' => '6.66',
8076 'ExtUtils::MM_Win32' => '6.66',
8077 'ExtUtils::MM_Win95' => '6.66',
8078 'ExtUtils::MY' => '6.66',
8079 'ExtUtils::MakeMaker' => '6.66',
8080 'ExtUtils::MakeMaker::Config'=> '6.66',
8081 'ExtUtils::Mkbootstrap' => '6.66',
8082 'ExtUtils::Mksymlists' => '6.66',
8083 'ExtUtils::testlib' => '6.66',
8084 'File::Glob' => '1.20',
8085 'IO' => '1.28',
8086 'Module::CoreList' => '2.87',
8087 'Module::CoreList::TieHashDelta'=> '2.87',
8088 'Storable' => '2.41',
8089 'bigint' => '0.34',
8090 'mro' => '1.11',
8091 'overload' => '1.22',
8092 'warnings' => '1.18',
8093 },
8094 removed => {
8095 }
8096 },
d4d6c558
RS
8097 5.018000 => {
8098 delta_from => 5.017011,
8099 changed => {
8100 'Carp' => '1.29',
8101 'Carp::Heavy' => '1.29',
cc423833 8102 'Config' => '5.018000',
d4d6c558
RS
8103 'Hash::Util' => '0.16',
8104 'IO::Handle' => '1.34',
8105 'IO::Socket' => '1.36',
058ce27e
RS
8106 'Module::CoreList' => '2.89',
8107 'Module::CoreList::TieHashDelta'=> '2.89',
3b95efe6
RS
8108 'Pod::Simple' => '3.28',
8109 'Pod::Simple::BlackBox' => '3.28',
8110 'Pod::Simple::Checker' => '3.28',
8111 'Pod::Simple::Debug' => '3.28',
8112 'Pod::Simple::DumpAsText'=> '3.28',
8113 'Pod::Simple::DumpAsXML'=> '3.28',
8114 'Pod::Simple::HTML' => '3.28',
8115 'Pod::Simple::HTMLBatch'=> '3.28',
8116 'Pod::Simple::LinkSection'=> '3.28',
8117 'Pod::Simple::Methody' => '3.28',
8118 'Pod::Simple::Progress' => '3.28',
8119 'Pod::Simple::PullParser'=> '3.28',
8120 'Pod::Simple::PullParserEndToken'=> '3.28',
8121 'Pod::Simple::PullParserStartToken'=> '3.28',
8122 'Pod::Simple::PullParserTextToken'=> '3.28',
8123 'Pod::Simple::PullParserToken'=> '3.28',
8124 'Pod::Simple::RTF' => '3.28',
8125 'Pod::Simple::Search' => '3.28',
8126 'Pod::Simple::SimpleTree'=> '3.28',
8127 'Pod::Simple::Text' => '3.28',
8128 'Pod::Simple::TextContent'=> '3.28',
8129 'Pod::Simple::TiedOutFH'=> '3.28',
8130 'Pod::Simple::Transcode'=> '3.28',
8131 'Pod::Simple::TranscodeDumb'=> '3.28',
8132 'Pod::Simple::TranscodeSmart'=> '3.28',
8133 'Pod::Simple::XHTML' => '3.28',
8134 'Pod::Simple::XMLOutStream'=> '3.28',
d4d6c558
RS
8135 },
8136 removed => {
8137 }
8138 },
ba4dd7ef
RS
8139 5.018001 => {
8140 delta_from => 5.018000,
8141 changed => {
8142 'B' => '1.42_01',
8143 'Config' => '5.018001',
8144 'Digest::SHA' => '5.84_01',
8145 'Module::CoreList' => '2.96',
8146 'Module::CoreList::TieHashDelta'=> '2.96',
8147 'Module::CoreList::Utils'=> '2.96',
8148 },
8149 removed => {
8150 'VMS::Filespec' => 1,
8151 }
8152 },
6c2a7b42
CBW
8153 5.018002 => {
8154 delta_from => 5.018001,
8155 changed => {
8156 'B' => '1.42_02',
8157 'B::Concise' => '0.95_01',
8158 'Config' => '5.018002',
8159 'File::Glob' => '1.20_01',
8160 'Module::CoreList' => '3.03',
8161 'Module::CoreList::TieHashDelta'=> '3.03',
8162 'Module::CoreList::Utils'=> '3.03',
8163 },
8164 },
b616d4df
RS
8165 5.018003 => {
8166 delta_from => 5.018002,
8167 changed => {
b564105b
CBW
8168 'Config' => '5.018003',
8169 'Digest::SHA' => '5.84_02',
b616d4df
RS
8170 'Module::CoreList' => '3.12',
8171 'Module::CoreList::TieHashDelta'=> '3.12',
8172 'Module::CoreList::Utils'=> '3.12',
8173 },
8174 },
8175 5.018004 => {
8176 delta_from => 5.018003,
8177 changed => {
b564105b 8178 'Config' => '5.018004',
b616d4df
RS
8179 'Module::CoreList' => '3.13',
8180 'Module::CoreList::TieHashDelta'=> '3.13',
8181 'Module::CoreList::Utils'=> '3.13',
8182 },
8183 },
38a400f2
RS
8184 5.019000 => {
8185 delta_from => 5.018000,
8186 changed => {
cc423833 8187 'Config' => '5.019000',
e68d5354 8188 'Getopt::Std' => '1.08',
38a400f2
RS
8189 'Module::CoreList' => '2.91',
8190 'Module::CoreList::TieHashDelta'=> '2.91',
8191 'Storable' => '2.42',
8192 'feature' => '1.33',
e68d5354 8193 'utf8' => '1.11',
38a400f2
RS
8194 },
8195 removed => {
8196 'Archive::Extract' => 1,
8197 'B::Lint' => 1,
8198 'B::Lint::Debug' => 1,
8199 'CPANPLUS' => 1,
8200 'CPANPLUS::Backend' => 1,
8201 'CPANPLUS::Backend::RV' => 1,
8202 'CPANPLUS::Config' => 1,
8203 'CPANPLUS::Config::HomeEnv'=> 1,
8204 'CPANPLUS::Configure' => 1,
8205 'CPANPLUS::Configure::Setup'=> 1,
8206 'CPANPLUS::Dist' => 1,
8207 'CPANPLUS::Dist::Autobundle'=> 1,
8208 'CPANPLUS::Dist::Base' => 1,
8209 'CPANPLUS::Dist::Build' => 1,
8210 'CPANPLUS::Dist::Build::Constants'=> 1,
8211 'CPANPLUS::Dist::MM' => 1,
8212 'CPANPLUS::Dist::Sample'=> 1,
8213 'CPANPLUS::Error' => 1,
8214 'CPANPLUS::Internals' => 1,
8215 'CPANPLUS::Internals::Constants'=> 1,
8216 'CPANPLUS::Internals::Constants::Report'=> 1,
8217 'CPANPLUS::Internals::Extract'=> 1,
8218 'CPANPLUS::Internals::Fetch'=> 1,
8219 'CPANPLUS::Internals::Report'=> 1,
8220 'CPANPLUS::Internals::Search'=> 1,
8221 'CPANPLUS::Internals::Source'=> 1,
8222 'CPANPLUS::Internals::Source::Memory'=> 1,
8223 'CPANPLUS::Internals::Source::SQLite'=> 1,
8224 'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8225 'CPANPLUS::Internals::Utils'=> 1,
8226 'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8227 'CPANPLUS::Module' => 1,
8228 'CPANPLUS::Module::Author'=> 1,
8229 'CPANPLUS::Module::Author::Fake'=> 1,
8230 'CPANPLUS::Module::Checksums'=> 1,
8231 'CPANPLUS::Module::Fake'=> 1,
8232 'CPANPLUS::Module::Signature'=> 1,
8233 'CPANPLUS::Selfupdate' => 1,
8234 'CPANPLUS::Shell' => 1,
8235 'CPANPLUS::Shell::Classic'=> 1,
8236 'CPANPLUS::Shell::Default'=> 1,
8237 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8238 'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8239 'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8240 'Devel::InnerPackage' => 1,
8241 'File::CheckTree' => 1,
8242 'Log::Message' => 1,
8243 'Log::Message::Config' => 1,
8244 'Log::Message::Handlers'=> 1,
8245 'Log::Message::Item' => 1,
8246 'Log::Message::Simple' => 1,
8247 'Module::Pluggable' => 1,
8248 'Module::Pluggable::Object'=> 1,
8249 'Object::Accessor' => 1,
8250 'Pod::LaTeX' => 1,
8251 'Term::UI' => 1,
8252 'Term::UI::History' => 1,
8253 'Text::Soundex' => 1,
8254 }
8255 },
2f4a2205
DG
8256 5.019001 => {
8257 delta_from => 5.019000,
8258 changed => {
8259 'App::Prove' => '3.28',
8260 'App::Prove::State' => '3.28',
8261 'App::Prove::State::Result'=> '3.28',
8262 'App::Prove::State::Result::Test'=> '3.28',
8263 'Archive::Tar' => '1.92',
8264 'Archive::Tar::Constant'=> '1.92',
8265 'Archive::Tar::File' => '1.92',
8266 'Attribute::Handlers' => '0.95',
8267 'B' => '1.43',
8268 'B::Concise' => '0.96',
8269 'B::Deparse' => '1.21',
8270 'B::Showlex' => '1.04',
8271 'Benchmark' => '1.16',
8272 'CPAN::Meta' => '2.131560',
8273 'CPAN::Meta::Converter' => '2.131560',
8274 'CPAN::Meta::Feature' => '2.131560',
8275 'CPAN::Meta::History' => '2.131560',
8276 'CPAN::Meta::Prereqs' => '2.131560',
8277 'CPAN::Meta::Spec' => '2.131560',
8278 'CPAN::Meta::Validator' => '2.131560',
8279 'Carp' => '1.30',
8280 'Carp::Heavy' => '1.30',
8281 'Compress::Raw::Bzip2' => '2.061',
8282 'Compress::Raw::Zlib' => '2.061',
8283 'Compress::Zlib' => '2.061',
cc423833 8284 'Config' => '5.019001',
2f4a2205
DG
8285 'Config::Perl::V' => '0.18',
8286 'Cwd' => '3.41',
8287 'DB' => '1.06',
8288 'DB_File' => '1.828',
8289 'Data::Dumper' => '2.146',
8290 'Encode' => '2.51',
8291 'Encode::CN::HZ' => '2.06',
8292 'Encode::GSM0338' => '2.03',
8293 'Encode::Unicode::UTF7' => '2.07',
8294 'ExtUtils::CBuilder::Base'=> '0.280210',
8295 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8296 'ExtUtils::Command::MM' => '6.68',
8297 'ExtUtils::Install' => '1.60',
8298 'ExtUtils::Liblist' => '6.68',
8299 'ExtUtils::Liblist::Kid'=> '6.68',
8300 'ExtUtils::MM' => '6.68',
8301 'ExtUtils::MM_AIX' => '6.68',
8302 'ExtUtils::MM_Any' => '6.68',
8303 'ExtUtils::MM_BeOS' => '6.68',
8304 'ExtUtils::MM_Cygwin' => '6.68',
8305 'ExtUtils::MM_DOS' => '6.68',
8306 'ExtUtils::MM_Darwin' => '6.68',
8307 'ExtUtils::MM_MacOS' => '6.68',
8308 'ExtUtils::MM_NW5' => '6.68',
8309 'ExtUtils::MM_OS2' => '6.68',
8310 'ExtUtils::MM_QNX' => '6.68',
8311 'ExtUtils::MM_UWIN' => '6.68',
8312 'ExtUtils::MM_Unix' => '6.68',
8313 'ExtUtils::MM_VMS' => '6.68',
8314 'ExtUtils::MM_VOS' => '6.68',
8315 'ExtUtils::MM_Win32' => '6.68',
8316 'ExtUtils::MM_Win95' => '6.68',
8317 'ExtUtils::MY' => '6.68',
8318 'ExtUtils::MakeMaker' => '6.68',
8319 'ExtUtils::MakeMaker::Config'=> '6.68',
8320 'ExtUtils::Mkbootstrap' => '6.68',
8321 'ExtUtils::Mksymlists' => '6.68',
8322 'ExtUtils::ParseXS' => '3.19',
8323 'ExtUtils::testlib' => '6.68',
8324 'Fatal' => '2.19',
8325 'File::Copy' => '2.27',
8326 'File::DosGlob' => '1.11',
8327 'File::Fetch' => '0.42',
8328 'File::Find' => '1.24',
8329 'File::Spec' => '3.41',
8330 'File::Spec::Cygwin' => '3.41',
8331 'File::Spec::Epoc' => '3.41',
8332 'File::Spec::Mac' => '3.41',
8333 'File::Spec::OS2' => '3.41',
8334 'File::Spec::Unix' => '3.41',
8335 'File::Spec::VMS' => '3.41',
8336 'File::Spec::Win32' => '3.41',
8337 'File::Temp' => '0.2301',
8338 'Filter::Simple' => '0.90',
8339 'Filter::Util::Call' => '1.49',
8340 'Getopt::Long' => '2.4',
8341 'HTTP::Tiny' => '0.031',
8342 'Hash::Util::FieldHash' => '1.11',
8343 'IO::Compress::Adapter::Bzip2'=> '2.061',
8344 'IO::Compress::Adapter::Deflate'=> '2.061',
8345 'IO::Compress::Adapter::Identity'=> '2.061',
8346 'IO::Compress::Base' => '2.061',
8347 'IO::Compress::Base::Common'=> '2.061',
8348 'IO::Compress::Bzip2' => '2.061',
8349 'IO::Compress::Deflate' => '2.061',
8350 'IO::Compress::Gzip' => '2.061',
8351 'IO::Compress::Gzip::Constants'=> '2.061',
8352 'IO::Compress::RawDeflate'=> '2.061',
8353 'IO::Compress::Zip' => '2.061',
8354 'IO::Compress::Zip::Constants'=> '2.061',
8355 'IO::Compress::Zlib::Constants'=> '2.061',
8356 'IO::Compress::Zlib::Extra'=> '2.061',
8357 'IO::Handle' => '1.35',
8358 'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8359 'IO::Uncompress::Adapter::Identity'=> '2.061',
8360 'IO::Uncompress::Adapter::Inflate'=> '2.061',
8361 'IO::Uncompress::AnyInflate'=> '2.061',
8362 'IO::Uncompress::AnyUncompress'=> '2.061',
8363 'IO::Uncompress::Base' => '2.061',
8364 'IO::Uncompress::Bunzip2'=> '2.061',
8365 'IO::Uncompress::Gunzip'=> '2.061',
8366 'IO::Uncompress::Inflate'=> '2.061',
8367 'IO::Uncompress::RawInflate'=> '2.061',
8368 'IO::Uncompress::Unzip' => '2.061',
8369 'IPC::Open3' => '1.14',
8370 'Locale::Codes' => '3.26',
8371 'Locale::Codes::Constants'=> '3.26',
8372 'Locale::Codes::Country'=> '3.26',
8373 'Locale::Codes::Country_Codes'=> '3.26',
8374 'Locale::Codes::Country_Retired'=> '3.26',
8375 'Locale::Codes::Currency'=> '3.26',
8376 'Locale::Codes::Currency_Codes'=> '3.26',
8377 'Locale::Codes::Currency_Retired'=> '3.26',
8378 'Locale::Codes::LangExt'=> '3.26',
8379 'Locale::Codes::LangExt_Codes'=> '3.26',
8380 'Locale::Codes::LangExt_Retired'=> '3.26',
8381 'Locale::Codes::LangFam'=> '3.26',
8382 'Locale::Codes::LangFam_Codes'=> '3.26',
8383 'Locale::Codes::LangFam_Retired'=> '3.26',
8384 'Locale::Codes::LangVar'=> '3.26',
8385 'Locale::Codes::LangVar_Codes'=> '3.26',
8386 'Locale::Codes::LangVar_Retired'=> '3.26',
8387 'Locale::Codes::Language'=> '3.26',
8388 'Locale::Codes::Language_Codes'=> '3.26',
8389 'Locale::Codes::Language_Retired'=> '3.26',
8390 'Locale::Codes::Script' => '3.26',
8391 'Locale::Codes::Script_Codes'=> '3.26',
8392 'Locale::Codes::Script_Retired'=> '3.26',
8393 'Locale::Country' => '3.26',
8394 'Locale::Currency' => '3.26',
8395 'Locale::Language' => '3.26',
8396 'Locale::Maketext' => '1.24',
8397 'Locale::Script' => '3.26',
8398 'Math::BigFloat' => '1.999',
8399 'Math::BigInt' => '1.9992',
8400 'Math::BigInt::Calc' => '1.998',
8401 'Math::BigInt::CalcEmu' => '1.9991',
8402 'Math::BigRat' => '0.2606',
8403 'Module::Build' => '0.4005',
8404 'Module::Build::Base' => '0.4005',
8405 'Module::Build::Compat' => '0.4005',
8406 'Module::Build::Config' => '0.4005',
8407 'Module::Build::Cookbook'=> '0.4005',
8408 'Module::Build::Dumper' => '0.4005',
8409 'Module::Build::ModuleInfo'=> '0.4005',
8410 'Module::Build::Notes' => '0.4005',
8411 'Module::Build::PPMMaker'=> '0.4005',
8412 'Module::Build::Platform::Amiga'=> '0.4005',
8413 'Module::Build::Platform::Default'=> '0.4005',
8414 'Module::Build::Platform::EBCDIC'=> '0.4005',
8415 'Module::Build::Platform::MPEiX'=> '0.4005',
8416 'Module::Build::Platform::MacOS'=> '0.4005',
8417 'Module::Build::Platform::RiscOS'=> '0.4005',
8418 'Module::Build::Platform::Unix'=> '0.4005',
8419 'Module::Build::Platform::VMS'=> '0.4005',
8420 'Module::Build::Platform::VOS'=> '0.4005',
8421 'Module::Build::Platform::Windows'=> '0.4005',
8422 'Module::Build::Platform::aix'=> '0.4005',
8423 'Module::Build::Platform::cygwin'=> '0.4005',
8424 'Module::Build::Platform::darwin'=> '0.4005',
8425 'Module::Build::Platform::os2'=> '0.4005',
8426 'Module::Build::PodParser'=> '0.4005',
8427 'Module::CoreList' => '2.92',
8428 'Module::CoreList::TieHashDelta'=> '2.92',
8429 'Module::CoreList::Utils'=> '2.92',
8430 'Module::Metadata' => '1.000014',
8431 'Net::Ping' => '2.42',
78da2da6 8432 'OS2::Process' => '1.09',
2f4a2205
DG
8433 'POSIX' => '1.33',
8434 'Pod::Find' => '1.61',
8435 'Pod::Html' => '1.19',
8436 'Pod::InputObjects' => '1.61',
8437 'Pod::ParseUtils' => '1.61',
8438 'Pod::Parser' => '1.61',
8439 'Pod::Perldoc' => '3.20',
8440 'Pod::Perldoc::BaseTo' => '3.20',
8441 'Pod::Perldoc::GetOptsOO'=> '3.20',
8442 'Pod::Perldoc::ToANSI' => '3.20',
8443 'Pod::Perldoc::ToChecker'=> '3.20',
8444 'Pod::Perldoc::ToMan' => '3.20',
8445 'Pod::Perldoc::ToNroff' => '3.20',
8446 'Pod::Perldoc::ToPod' => '3.20',
8447 'Pod::Perldoc::ToRtf' => '3.20',
8448 'Pod::Perldoc::ToTerm' => '3.20',
8449 'Pod::Perldoc::ToText' => '3.20',
8450 'Pod::Perldoc::ToTk' => '3.20',
8451 'Pod::Perldoc::ToXml' => '3.20',
8452 'Pod::Select' => '1.61',
8453 'Pod::Usage' => '1.63',
8454 'Safe' => '2.36',
8455 'Storable' => '2.43',
8456 'Sys::Hostname' => '1.18',
8457 'Sys::Syslog' => '0.33',
8458 'TAP::Base' => '3.28',
8459 'TAP::Formatter::Base' => '3.28',
8460 'TAP::Formatter::Color' => '3.28',
8461 'TAP::Formatter::Console'=> '3.28',
8462 'TAP::Formatter::Console::ParallelSession'=> '3.28',
8463 'TAP::Formatter::Console::Session'=> '3.28',
8464 'TAP::Formatter::File' => '3.28',
8465 'TAP::Formatter::File::Session'=> '3.28',
8466 'TAP::Formatter::Session'=> '3.28',
8467 'TAP::Harness' => '3.28',
8468 'TAP::Object' => '3.28',
8469 'TAP::Parser' => '3.28',
8470 'TAP::Parser::Aggregator'=> '3.28',
8471 'TAP::Parser::Grammar' => '3.28',
8472 'TAP::Parser::Iterator' => '3.28',
8473 'TAP::Parser::Iterator::Array'=> '3.28',
8474 'TAP::Parser::Iterator::Process'=> '3.28',
8475 'TAP::Parser::Iterator::Stream'=> '3.28',
8476 'TAP::Parser::IteratorFactory'=> '3.28',
8477 'TAP::Parser::Multiplexer'=> '3.28',
8478 'TAP::Parser::Result' => '3.28',
8479 'TAP::Parser::Result::Bailout'=> '3.28',
8480 'TAP::Parser::Result::Comment'=> '3.28',
8481 'TAP::Parser::Result::Plan'=> '3.28',
8482 'TAP::Parser::Result::Pragma'=> '3.28',
8483 'TAP::Parser::Result::Test'=> '3.28',
8484 'TAP::Parser::Result::Unknown'=> '3.28',
8485 'TAP::Parser::Result::Version'=> '3.28',
8486 'TAP::Parser::Result::YAML'=> '3.28',
8487 'TAP::Parser::ResultFactory'=> '3.28',
8488 'TAP::Parser::Scheduler'=> '3.28',
8489 'TAP::Parser::Scheduler::Job'=> '3.28',
8490 'TAP::Parser::Scheduler::Spinner'=> '3.28',
8491 'TAP::Parser::Source' => '3.28',
8492 'TAP::Parser::SourceHandler'=> '3.28',
8493 'TAP::Parser::SourceHandler::Executable'=> '3.28',
8494 'TAP::Parser::SourceHandler::File'=> '3.28',
8495 'TAP::Parser::SourceHandler::Handle'=> '3.28',
8496 'TAP::Parser::SourceHandler::Perl'=> '3.28',
8497 'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8498 'TAP::Parser::Utils' => '3.28',
8499 'TAP::Parser::YAMLish::Reader'=> '3.28',
8500 'TAP::Parser::YAMLish::Writer'=> '3.28',
8501 'Term::ReadLine' => '1.13',
8502 'Test::Harness' => '3.28',
8503 'Text::Tabs' => '2013.0523',
8504 'Text::Wrap' => '2013.0523',
8505 'Thread' => '3.04',
8506 'Tie::File' => '1.00',
8507 'Time::Piece' => '1.2002',
8508 'Unicode::Collate' => '0.98',
8509 'Unicode::UCD' => '0.53',
8510 'XS::APItest' => '0.53',
8511 '_charnames' => '1.37',
8512 'autodie' => '2.19',
8513 'autodie::exception' => '2.19',
8514 'autodie::exception::system'=> '2.19',
8515 'autodie::hints' => '2.19',
8516 'autodie::skip' => '2.19',
8517 'bigint' => '0.35',
8518 'charnames' => '1.38',
8519 'encoding' => '2.12',
8520 'inc::latest' => '0.4005',
8521 'mro' => '1.12',
8522 'perlfaq' => '5.0150043',
8523 're' => '0.25',
8524 'threads' => '1.87',
8525 'threads::shared' => '1.44',
8526 'utf8' => '1.12',
8527 },
8528 removed => {
8529 }
8530 },
d04adc20
DG
8531 5.019002 => {
8532 delta_from => 5.019001,
8533 changed => {
1f0ad552
AP
8534 'B' => '1.44',
8535 'B::Concise' => '0.98',
8536 'B::Deparse' => '1.22',
8537 'Benchmark' => '1.17',
8538 'Class::Struct' => '0.65',
cc423833 8539 'Config' => '5.019002',
1f0ad552
AP
8540 'DB' => '1.07',
8541 'DBM_Filter' => '0.06',
8542 'DBM_Filter::compress' => '0.03',
8543 'DBM_Filter::encode' => '0.03',
8544 'DBM_Filter::int32' => '0.03',
8545 'DBM_Filter::null' => '0.03',
8546 'DBM_Filter::utf8' => '0.03',
8547 'DB_File' => '1.829',
8548 'Data::Dumper' => '2.147',
8549 'Devel::Peek' => '1.12',
8550 'Digest::MD5' => '2.53',
8551 'Digest::SHA' => '5.85',
8552 'English' => '1.07',
8553 'Errno' => '1.19',
8554 'ExtUtils::Embed' => '1.31',
8555 'ExtUtils::Miniperl' => '1',
8556 'ExtUtils::ParseXS' => '3.21',
8557 'ExtUtils::ParseXS::Constants'=> '3.21',
8558 'ExtUtils::ParseXS::CountLines'=> '3.21',
8559 'ExtUtils::ParseXS::Eval'=> '3.19',
8560 'ExtUtils::ParseXS::Utilities'=> '3.21',
8561 'ExtUtils::Typemaps' => '3.21',
8562 'ExtUtils::Typemaps::Cmd'=> '3.21',
8563 'ExtUtils::Typemaps::InputMap'=> '3.21',
8564 'ExtUtils::Typemaps::OutputMap'=> '3.21',
8565 'ExtUtils::Typemaps::Type'=> '3.21',
8566 'ExtUtils::XSSymSet' => '1.3',
8567 'Fatal' => '2.20',
8568 'File::Basename' => '2.85',
8569 'File::Spec::VMS' => '3.43',
8570 'File::Spec::Win32' => '3.42',
8571 'Getopt::Long' => '2.41',
8572 'Getopt::Std' => '1.09',
8573 'HTTP::Tiny' => '0.034',
8574 'Hash::Util::FieldHash' => '1.12',
8575 'I18N::Langinfo' => '0.11',
8576 'IO::Socket::INET' => '1.34',
8577 'IO::Socket::UNIX' => '1.25',
8578 'IPC::Cmd' => '0.82',
8579 'MIME::Base64' => '3.14',
8580 'Module::CoreList' => '2.94',
8581 'Module::CoreList::TieHashDelta'=> '2.94',
8582 'Module::CoreList::Utils'=> '2.94',
8583 'POSIX' => '1.34',
8584 'Params::Check' => '0.38',
8585 'Parse::CPAN::Meta' => '1.4405',
8586 'Pod::Functions' => '1.07',
1f0ad552
AP
8587 'Pod::Html' => '1.2',
8588 'Safe' => '2.37',
8589 'Socket' => '2.010',
8590 'Storable' => '2.45',
8591 'Text::ParseWords' => '3.29',
8592 'Tie::Array' => '1.06',
8593 'Tie::Hash' => '1.05',
8594 'Tie::Scalar' => '1.03',
8595 'Time::Piece' => '1.21',
8596 'Time::Seconds' => '1.21',
8597 'XS::APItest' => '0.54',
8598 'autodie' => '2.20',
8599 'autodie::exception' => '2.20',
8600 'autodie::exception::system'=> '2.20',
8601 'autodie::hints' => '2.20',
8602 'autodie::skip' => '2.20',
8603 'base' => '2.19',
8604 'deprecate' => '0.03',
8605 'if' => '0.0603',
8606 'integer' => '1.01',
8607 'strict' => '1.08',
8608 'subs' => '1.02',
8609 'vmsish' => '1.04',
d04adc20
DG
8610 },
8611 removed => {
8612 }
8613 },
a7e68be8
AP
8614 5.019003 => {
8615 delta_from => 5.019002,
8616 changed => {
91c842ce
SH
8617 'B' => '1.45',
8618 'CPAN::Meta' => '2.132140',
8619 'CPAN::Meta::Converter' => '2.132140',
8620 'CPAN::Meta::Feature' => '2.132140',
8621 'CPAN::Meta::History' => '2.132140',
8622 'CPAN::Meta::Prereqs' => '2.132140',
8623 'CPAN::Meta::Spec' => '2.132140',
8624 'CPAN::Meta::Validator' => '2.132140',
8625 'Carp' => '1.31',
8626 'Carp::Heavy' => '1.31',
8627 'Compress::Raw::Bzip2' => '2.062',
8628 'Compress::Raw::Zlib' => '2.062',
8629 'Compress::Zlib' => '2.062',
8630 'Config' => '5.019003',
8631 'Config::Perl::V' => '0.19',
8632 'Cwd' => '3.44',
8633 'Data::Dumper' => '2.148',
8634 'Devel::PPPort' => '3.21',
8635 'Devel::Peek' => '1.13',
8636 'DynaLoader' => '1.19',
8637 'Encode' => '2.52',
8638 'Encode::Alias' => '2.17',
8639 'Encode::Encoding' => '2.06',
8640 'Encode::GSM0338' => '2.04',
8641 'Encode::MIME::Header' => '2.14',
8642 'Encode::Unicode' => '2.08',
8643 'English' => '1.08',
8644 'Exporter' => '5.69',
8645 'Exporter::Heavy' => '5.69',
8646 'ExtUtils::Command::MM' => '6.72',
8647 'ExtUtils::Liblist' => '6.72',
8648 'ExtUtils::Liblist::Kid'=> '6.72',
8649 'ExtUtils::MM' => '6.72',
8650 'ExtUtils::MM_AIX' => '6.72',
8651 'ExtUtils::MM_Any' => '6.72',
8652 'ExtUtils::MM_BeOS' => '6.72',
8653 'ExtUtils::MM_Cygwin' => '6.72',
8654 'ExtUtils::MM_DOS' => '6.72',
8655 'ExtUtils::MM_Darwin' => '6.72',
8656 'ExtUtils::MM_MacOS' => '6.72',
8657 'ExtUtils::MM_NW5' => '6.72',
8658 'ExtUtils::MM_OS2' => '6.72',
8659 'ExtUtils::MM_QNX' => '6.72',
8660 'ExtUtils::MM_UWIN' => '6.72',
8661 'ExtUtils::MM_Unix' => '6.72',
8662 'ExtUtils::MM_VMS' => '6.72',
8663 'ExtUtils::MM_VOS' => '6.72',
8664 'ExtUtils::MM_Win32' => '6.72',
8665 'ExtUtils::MM_Win95' => '6.72',
8666 'ExtUtils::MY' => '6.72',
8667 'ExtUtils::MakeMaker' => '6.72',
8668 'ExtUtils::MakeMaker::Config'=> '6.72',
8669 'ExtUtils::Mkbootstrap' => '6.72',
8670 'ExtUtils::Mksymlists' => '6.72',
8671 'ExtUtils::ParseXS::Eval'=> '3.21',
8672 'ExtUtils::testlib' => '6.72',
8673 'File::Spec' => '3.44',
8674 'File::Spec::Cygwin' => '3.44',
8675 'File::Spec::Epoc' => '3.44',
8676 'File::Spec::Functions' => '3.44',
8677 'File::Spec::Mac' => '3.44',
8678 'File::Spec::OS2' => '3.44',
8679 'File::Spec::Unix' => '3.44',
8680 'File::Spec::VMS' => '3.44',
8681 'File::Spec::Win32' => '3.44',
8682 'Getopt::Std' => '1.10',
8683 'IO::Compress::Adapter::Bzip2'=> '2.062',
8684 'IO::Compress::Adapter::Deflate'=> '2.062',
8685 'IO::Compress::Adapter::Identity'=> '2.062',
8686 'IO::Compress::Base' => '2.062',
8687 'IO::Compress::Base::Common'=> '2.062',
8688 'IO::Compress::Bzip2' => '2.062',
8689 'IO::Compress::Deflate' => '2.062',
8690 'IO::Compress::Gzip' => '2.062',
8691 'IO::Compress::Gzip::Constants'=> '2.062',
8692 'IO::Compress::RawDeflate'=> '2.062',
8693 'IO::Compress::Zip' => '2.062',
8694 'IO::Compress::Zip::Constants'=> '2.062',
8695 'IO::Compress::Zlib::Constants'=> '2.062',
8696 'IO::Compress::Zlib::Extra'=> '2.062',
8697 'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8698 'IO::Uncompress::Adapter::Identity'=> '2.062',
8699 'IO::Uncompress::Adapter::Inflate'=> '2.062',
8700 'IO::Uncompress::AnyInflate'=> '2.062',
8701 'IO::Uncompress::AnyUncompress'=> '2.062',
8702 'IO::Uncompress::Base' => '2.062',
8703 'IO::Uncompress::Bunzip2'=> '2.062',
8704 'IO::Uncompress::Gunzip'=> '2.062',
8705 'IO::Uncompress::Inflate'=> '2.062',
8706 'IO::Uncompress::RawInflate'=> '2.062',
8707 'IO::Uncompress::Unzip' => '2.062',
8708 'IPC::Cmd' => '0.84',
8709 'IPC::Msg' => '2.04',
8710 'IPC::Open3' => '1.15',
8711 'IPC::Semaphore' => '2.04',
8712 'IPC::SharedMem' => '2.04',
8713 'IPC::SysV' => '2.04',
8714 'List::Util' => '1.31',
8715 'List::Util::XS' => '1.31',
8716 'Math::BigFloat::Trace' => '0.36',
8717 'Math::BigInt::Trace' => '0.36',
8718 'Module::Build' => '0.4007',
8719 'Module::Build::Base' => '0.4007',
8720 'Module::Build::Compat' => '0.4007',
8721 'Module::Build::Config' => '0.4007',
8722 'Module::Build::Cookbook'=> '0.4007',
8723 'Module::Build::Dumper' => '0.4007',
8724 'Module::Build::ModuleInfo'=> '0.4007',
8725 'Module::Build::Notes' => '0.4007',
8726 'Module::Build::PPMMaker'=> '0.4007',
8727 'Module::Build::Platform::Default'=> '0.4007',
8728 'Module::Build::Platform::MacOS'=> '0.4007',
8729 'Module::Build::Platform::Unix'=> '0.4007',
8730 'Module::Build::Platform::VMS'=> '0.4007',
8731 'Module::Build::Platform::VOS'=> '0.4007',
8732 'Module::Build::Platform::Windows'=> '0.4007',
8733 'Module::Build::Platform::aix'=> '0.4007',
8734 'Module::Build::Platform::cygwin'=> '0.4007',
8735 'Module::Build::Platform::darwin'=> '0.4007',
8736 'Module::Build::Platform::os2'=> '0.4007',
8737 'Module::Build::PodParser'=> '0.4007',
8738 'Module::CoreList' => '2.97',
8739 'Module::CoreList::TieHashDelta'=> '2.97',
8740 'Module::CoreList::Utils'=> '2.97',
8741 'Net::Cmd' => '2.30',
8742 'Net::Config' => '1.12',
8743 'Net::Domain' => '2.22',
8744 'Net::FTP' => '2.78',
8745 'Net::FTP::dataconn' => '0.12',
8746 'Net::NNTP' => '2.25',
8747 'Net::Netrc' => '2.14',
8748 'Net::POP3' => '2.30',
8749 'Net::SMTP' => '2.32',
8750 'PerlIO' => '1.08',
8751 'Pod::Functions' => '1.08',
91c842ce
SH
8752 'Scalar::Util' => '1.31',
8753 'Socket' => '2.011',
8754 'Storable' => '2.46',
8755 'Time::HiRes' => '1.9726',
8756 'Time::Piece' => '1.22',
8757 'Time::Seconds' => '1.22',
8758 'XS::APItest' => '0.55',
8759 'bigint' => '0.36',
8760 'bignum' => '0.36',
8761 'bigrat' => '0.36',
8762 'constant' => '1.28',
8763 'diagnostics' => '1.32',
8764 'inc::latest' => '0.4007',
8765 'mro' => '1.13',
8766 'parent' => '0.226',
8767 'utf8' => '1.13',
8768 'version' => '0.9903',
a7e68be8
AP
8769 },
8770 removed => {
91c842ce
SH
8771 'Module::Build::Platform::Amiga'=> 1,
8772 'Module::Build::Platform::EBCDIC'=> 1,
8773 'Module::Build::Platform::MPEiX'=> 1,
8774 'Module::Build::Platform::RiscOS'=> 1,
a7e68be8
AP
8775 }
8776 },
37287258
SH
8777 5.019004 => {
8778 delta_from => 5.019003,
8779 changed => {
62de23d1
SH
8780 'B' => '1.46',
8781 'B::Concise' => '0.99',
8782 'B::Deparse' => '1.23',
8783 'CPAN' => '2.03',
8784 'CPAN::Meta' => '2.132620',
8785 'CPAN::Meta::Converter' => '2.132620',
8786 'CPAN::Meta::Feature' => '2.132620',
8787 'CPAN::Meta::History' => '2.132620',
8788 'CPAN::Meta::Prereqs' => '2.132620',
8789 'CPAN::Meta::Requirements'=> '2.123',
8790 'CPAN::Meta::Spec' => '2.132620',
8791 'CPAN::Meta::Validator' => '2.132620',
8792 'Carp' => '1.32',
8793 'Carp::Heavy' => '1.32',
37287258 8794 'Config' => '5.019004',
62de23d1
SH
8795 'Data::Dumper' => '2.149',
8796 'Devel::Peek' => '1.14',
8797 'DynaLoader' => '1.20',
8798 'Encode' => '2.55',
8799 'Encode::Alias' => '2.18',
8800 'Encode::CN::HZ' => '2.07',
8801 'Encode::Encoder' => '2.03',
8802 'Encode::Encoding' => '2.07',
8803 'Encode::GSM0338' => '2.05',
8804 'Encode::Guess' => '2.06',
8805 'Encode::JP::JIS7' => '2.05',
8806 'Encode::KR::2022_KR' => '2.03',
8807 'Encode::MIME::Header' => '2.15',
8808 'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8809 'Encode::Unicode' => '2.09',
8810 'Encode::Unicode::UTF7' => '2.08',
8811 'Errno' => '1.20',
8812 'Exporter' => '5.70',
8813 'Exporter::Heavy' => '5.70',
8814 'ExtUtils::CBuilder' => '0.280212',
8815 'ExtUtils::CBuilder::Base'=> '0.280212',
8816 'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8817 'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8818 'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8819 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8820 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8821 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8822 'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8823 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8824 'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8825 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8826 'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8827 'ExtUtils::Command' => '1.18',
8828 'ExtUtils::Command::MM' => '6.76',
8829 'ExtUtils::Liblist' => '6.76',
8830 'ExtUtils::Liblist::Kid'=> '6.76',
8831 'ExtUtils::MM' => '6.76',
8832 'ExtUtils::MM_AIX' => '6.76',
8833 'ExtUtils::MM_Any' => '6.76',
8834 'ExtUtils::MM_BeOS' => '6.76',
8835 'ExtUtils::MM_Cygwin' => '6.76',
8836 'ExtUtils::MM_DOS' => '6.76',
8837 'ExtUtils::MM_Darwin' => '6.76',
8838 'ExtUtils::MM_MacOS' => '6.76',
8839 'ExtUtils::MM_NW5' => '6.76',
8840 'ExtUtils::MM_OS2' => '6.76',
8841 'ExtUtils::MM_QNX' => '6.76',
8842 'ExtUtils::MM_UWIN' => '6.76',
8843 'ExtUtils::MM_Unix' => '6.76',
8844 'ExtUtils::MM_VMS' => '6.76',
8845 'ExtUtils::MM_VOS' => '6.76',
8846 'ExtUtils::MM_Win32' => '6.76',
8847 'ExtUtils::MM_Win95' => '6.76',
8848 'ExtUtils::MY' => '6.76',
8849 'ExtUtils::MakeMaker' => '6.76',
8850 'ExtUtils::MakeMaker::Config'=> '6.76',
8851 'ExtUtils::Mkbootstrap' => '6.76',
8852 'ExtUtils::Mksymlists' => '6.76',
8853 'ExtUtils::ParseXS' => '3.23',
8854 'ExtUtils::ParseXS::Constants'=> '3.23',
8855 'ExtUtils::ParseXS::CountLines'=> '3.23',
8856 'ExtUtils::ParseXS::Eval'=> '3.23',
8857 'ExtUtils::ParseXS::Utilities'=> '3.23',
8858 'ExtUtils::Typemaps' => '3.23',
8859 'ExtUtils::Typemaps::Cmd'=> '3.23',
8860 'ExtUtils::Typemaps::InputMap'=> '3.23',
8861 'ExtUtils::Typemaps::OutputMap'=> '3.23',
8862 'ExtUtils::Typemaps::Type'=> '3.23',
8863 'ExtUtils::testlib' => '6.76',
8864 'Fatal' => '2.21',
8865 'File::Copy' => '2.28',
8866 'File::Find' => '1.25',
8867 'File::Glob' => '1.21',
8868 'FileCache' => '1.09',
8869 'HTTP::Tiny' => '0.035',
8870 'Hash::Util::FieldHash' => '1.13',
8871 'I18N::LangTags' => '0.40',
8872 'IO' => '1.29',
8873 'IO::Socket' => '1.37',
8874 'IPC::Open3' => '1.16',
8875 'JSON::PP' => '2.27202_01',
8876 'List::Util' => '1.32',
8877 'List::Util::XS' => '1.32',
8878 'Locale::Codes' => '3.27',
8879 'Locale::Codes::Constants'=> '3.27',
8880 'Locale::Codes::Country'=> '3.27',
8881 'Locale::Codes::Country_Codes'=> '3.27',
8882 'Locale::Codes::Country_Retired'=> '3.27',
8883 'Locale::Codes::Currency'=> '3.27',
8884 'Locale::Codes::Currency_Codes'=> '3.27',
8885 'Locale::Codes::Currency_Retired'=> '3.27',
8886 'Locale::Codes::LangExt'=> '3.27',
8887 'Locale::Codes::LangExt_Codes'=> '3.27',
8888 'Locale::Codes::LangExt_Retired'=> '3.27',
8889 'Locale::Codes::LangFam'=> '3.27',
8890 'Locale::Codes::LangFam_Codes'=> '3.27',
8891 'Locale::Codes::LangFam_Retired'=> '3.27',
8892 'Locale::Codes::LangVar'=> '3.27',
8893 'Locale::Codes::LangVar_Codes'=> '3.27',
8894 'Locale::Codes::LangVar_Retired'=> '3.27',
8895 'Locale::Codes::Language'=> '3.27',
8896 'Locale::Codes::Language_Codes'=> '3.27',
8897 'Locale::Codes::Language_Retired'=> '3.27',
8898 'Locale::Codes::Script' => '3.27',
8899 'Locale::Codes::Script_Codes'=> '3.27',
8900 'Locale::Codes::Script_Retired'=> '3.27',
8901 'Locale::Country' => '3.27',
8902 'Locale::Currency' => '3.27',
8903 'Locale::Language' => '3.27',
8904 'Locale::Script' => '3.27',
8905 'Math::BigFloat' => '1.9991',
8906 'Math::BigInt' => '1.9993',
8907 'Math::BigInt::FastCalc'=> '0.31',
8908 'Module::CoreList' => '2.99',
8909 'Module::CoreList::TieHashDelta'=> '2.99',
8910 'Module::CoreList::Utils'=> '2.99',
8911 'Module::Load::Conditional'=> '0.58',
8912 'Module::Metadata' => '1.000018',
8913 'Opcode' => '1.26',
8914 'POSIX' => '1.35',
8915 'Parse::CPAN::Meta' => '1.4407',
8916 'Perl::OSType' => '1.005',
8917 'Pod::Html' => '1.21',
8918 'Scalar::Util' => '1.32',
8919 'Socket' => '2.012',
8920 'Storable' => '2.47',
8921 'Term::ReadLine' => '1.14',
8922 'Test::Builder' => '0.98_06',
8923 'Test::Builder::Module' => '0.98_06',
8924 'Test::More' => '0.98_06',
8925 'Test::Simple' => '0.98_06',
8926 'Time::Piece' => '1.23',
8927 'Time::Seconds' => '1.23',
8928 'Unicode::Collate' => '0.99',
8929 'Unicode::UCD' => '0.54',
8930 'XS::APItest' => '0.56',
37287258 8931 'XS::Typemap' => '0.11',
62de23d1
SH
8932 '_charnames' => '1.39',
8933 'autodie' => '2.21',
8934 'autodie::exception' => '2.21',
8935 'autodie::exception::system'=> '2.21',
8936 'autodie::hints' => '2.21',
8937 'autodie::skip' => '2.21',
8938 'charnames' => '1.39',
8939 'diagnostics' => '1.33',
8940 'mro' => '1.14',
8941 'parent' => '0.228',
8942 'perlfaq' => '5.0150044',
8943 're' => '0.26',
8944 'version' => '0.9904',
8945 'warnings' => '1.19',
37287258
SH
8946 },
8947 removed => {
8948 }
8949 },
fa5fbb39
SH
8950 5.019005 => {
8951 delta_from => 5.019004,
8952 changed => {
19c1ec11
SH
8953 'App::Prove' => '3.29',
8954 'App::Prove::State' => '3.29',
8955 'App::Prove::State::Result'=> '3.29',
8956 'App::Prove::State::Result::Test'=> '3.29',
8957 'CPAN::Meta' => '2.132830',
8958 'CPAN::Meta::Converter' => '2.132830',
8959 'CPAN::Meta::Feature' => '2.132830',
8960 'CPAN::Meta::History' => '2.132830',
8961 'CPAN::Meta::Prereqs' => '2.132830',
8962 'CPAN::Meta::Requirements'=> '2.125',
8963 'CPAN::Meta::Spec' => '2.132830',
8964 'CPAN::Meta::Validator' => '2.132830',
8965 'CPAN::Meta::YAML' => '0.010',
fa5fbb39 8966 'Config' => '5.019005',
19c1ec11
SH
8967 'Cwd' => '3.45',
8968 'ExtUtils::Command::MM' => '6.80',
8969 'ExtUtils::Install' => '1.61',
8970 'ExtUtils::Liblist' => '6.80',
8971 'ExtUtils::Liblist::Kid'=> '6.80',
8972 'ExtUtils::MM' => '6.80',
8973 'ExtUtils::MM_AIX' => '6.80',
8974 'ExtUtils::MM_Any' => '6.80',
8975 'ExtUtils::MM_BeOS' => '6.80',
8976 'ExtUtils::MM_Cygwin' => '6.80',
8977 'ExtUtils::MM_DOS' => '6.80',
8978 'ExtUtils::MM_Darwin' => '6.80',
8979 'ExtUtils::MM_MacOS' => '6.80',
8980 'ExtUtils::MM_NW5' => '6.80',
8981 'ExtUtils::MM_OS2' => '6.80',
8982 'ExtUtils::MM_QNX' => '6.80',
8983 'ExtUtils::MM_UWIN' => '6.80',
8984 'ExtUtils::MM_Unix' => '6.80',
8985 'ExtUtils::MM_VMS' => '6.80',
8986 'ExtUtils::MM_VOS' => '6.80',
8987 'ExtUtils::MM_Win32' => '6.80',
8988 'ExtUtils::MM_Win95' => '6.80',
8989 'ExtUtils::MY' => '6.80',
8990 'ExtUtils::MakeMaker' => '6.80',
8991 'ExtUtils::MakeMaker::Config'=> '6.80',
8992 'ExtUtils::Mkbootstrap' => '6.80',
8993 'ExtUtils::Mksymlists' => '6.80',
8994 'ExtUtils::testlib' => '6.80',
8995 'Fatal' => '2.22',
8996 'File::Fetch' => '0.44',
8997 'File::Glob' => '1.22',
8998 'File::Spec' => '3.45',
8999 'File::Spec::Cygwin' => '3.45',
9000 'File::Spec::Epoc' => '3.45',
9001 'File::Spec::Functions' => '3.45',
9002 'File::Spec::Mac' => '3.45',
9003 'File::Spec::OS2' => '3.45',
9004 'File::Spec::Unix' => '3.45',
9005 'File::Spec::VMS' => '3.45',
9006 'File::Spec::Win32' => '3.45',
9007 'File::Temp' => '0.2304',
9008 'Getopt::Long' => '2.42',
9009 'HTTP::Tiny' => '0.036',
9010 'IPC::Cmd' => '0.84_01',
9011 'JSON::PP' => '2.27203',
9012 'List::Util' => '1.35',
9013 'List::Util::XS' => '1.35',
fa5fbb39
SH
9014 'Module::CoreList' => '3.00',
9015 'Module::CoreList::TieHashDelta'=> '3.00',
9016 'Module::CoreList::Utils'=> '3.00',
19c1ec11
SH
9017 'Module::Metadata' => '1.000019',
9018 'Parse::CPAN::Meta' => '1.4409',
9019 'Perl::OSType' => '1.006',
9020 'PerlIO::scalar' => '0.17',
9021 'Pod::Man' => '2.28',
9022 'Pod::Text' => '3.18',
9023 'Pod::Text::Termcap' => '2.08',
9024 'Scalar::Util' => '1.35',
9025 'TAP::Base' => '3.29',
9026 'TAP::Formatter::Base' => '3.29',
9027 'TAP::Formatter::Color' => '3.29',
9028 'TAP::Formatter::Console'=> '3.29',
9029 'TAP::Formatter::Console::ParallelSession'=> '3.29',
9030 'TAP::Formatter::Console::Session'=> '3.29',
9031 'TAP::Formatter::File' => '3.29',
9032 'TAP::Formatter::File::Session'=> '3.29',
9033 'TAP::Formatter::Session'=> '3.29',
9034 'TAP::Harness' => '3.29',
9035 'TAP::Harness::Env' => '3.29',
9036 'TAP::Object' => '3.29',
9037 'TAP::Parser' => '3.29',
9038 'TAP::Parser::Aggregator'=> '3.29',
9039 'TAP::Parser::Grammar' => '3.29',
9040 'TAP::Parser::Iterator' => '3.29',
9041 'TAP::Parser::Iterator::Array'=> '3.29',
9042 'TAP::Parser::Iterator::Process'=> '3.29',
9043 'TAP::Parser::Iterator::Stream'=> '3.29',
9044 'TAP::Parser::IteratorFactory'=> '3.29',
9045 'TAP::Parser::Multiplexer'=> '3.29',
9046 'TAP::Parser::Result' => '3.29',
9047 'TAP::Parser::Result::Bailout'=> '3.29',
9048 'TAP::Parser::Result::Comment'=> '3.29',
9049 'TAP::Parser::Result::Plan'=> '3.29',
9050 'TAP::Parser::Result::Pragma'=> '3.29',
9051 'TAP::Parser::Result::Test'=> '3.29',
9052 'TAP::Parser::Result::Unknown'=> '3.29',
9053 'TAP::Parser::Result::Version'=> '3.29',
9054 'TAP::Parser::Result::YAML'=> '3.29',
9055 'TAP::Parser::ResultFactory'=> '3.29',
9056 'TAP::Parser::Scheduler'=> '3.29',
9057 'TAP::Parser::Scheduler::Job'=> '3.29',
9058 'TAP::Parser::Scheduler::Spinner'=> '3.29',
9059 'TAP::Parser::Source' => '3.29',
9060 'TAP::Parser::SourceHandler'=> '3.29',
9061 'TAP::Parser::SourceHandler::Executable'=> '3.29',
9062 'TAP::Parser::SourceHandler::File'=> '3.29',
9063 'TAP::Parser::SourceHandler::Handle'=> '3.29',
9064 'TAP::Parser::SourceHandler::Perl'=> '3.29',
9065 'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9066 'TAP::Parser::YAMLish::Reader'=> '3.29',
9067 'TAP::Parser::YAMLish::Writer'=> '3.29',
9068 'Test::Builder' => '0.99',
9069 'Test::Builder::Module' => '0.99',
9070 'Test::Builder::Tester' => '1.23_002',
9071 'Test::Builder::Tester::Color'=> '1.23_002',
9072 'Test::Harness' => '3.29',
9073 'Test::More' => '0.99',
9074 'Test::Simple' => '0.99',
9075 'Unicode' => '6.3.0',
9076 'Unicode::Normalize' => '1.17',
9077 'Unicode::UCD' => '0.55',
9078 'attributes' => '0.22',
9079 'autodie' => '2.22',
9080 'autodie::exception' => '2.22',
9081 'autodie::exception::system'=> '2.22',
9082 'autodie::hints' => '2.22',
9083 'autodie::skip' => '2.22',
9084 'feature' => '1.34',
9085 'threads' => '1.89',
9086 'warnings' => '1.20',
fa5fbb39
SH
9087 },
9088 removed => {
19c1ec11 9089 'TAP::Parser::Utils' => 1,
fa5fbb39
SH
9090 }
9091 },
494bd897
SH
9092 5.019006 => {
9093 delta_from => 5.019005,
9094 changed => {
1f2fd626
CBW
9095 'App::Prove' => '3.30',
9096 'App::Prove::State' => '3.30',
9097 'App::Prove::State::Result'=> '3.30',
9098 'App::Prove::State::Result::Test'=> '3.30',
9099 'Archive::Tar' => '1.96',
9100 'Archive::Tar::Constant'=> '1.96',
9101 'Archive::Tar::File' => '1.96',
9102 'AutoLoader' => '5.74',
9103 'B' => '1.47',
9104 'B::Concise' => '0.991',
9105 'B::Debug' => '1.19',
9106 'B::Deparse' => '1.24',
9107 'Benchmark' => '1.18',
9108 'Compress::Raw::Bzip2' => '2.063',
9109 'Compress::Raw::Zlib' => '2.063',
9110 'Compress::Zlib' => '2.063',
494bd897 9111 'Config' => '5.019006',
1f2fd626
CBW
9112 'DB_File' => '1.831',
9113 'Devel::Peek' => '1.15',
9114 'DynaLoader' => '1.21',
9115 'Errno' => '1.20_01',
9116 'ExtUtils::Command::MM' => '6.82',
9117 'ExtUtils::Liblist' => '6.82',
9118 'ExtUtils::Liblist::Kid'=> '6.82',
9119 'ExtUtils::MM' => '6.82',
9120 'ExtUtils::MM_AIX' => '6.82',
9121 'ExtUtils::MM_Any' => '6.82',
9122 'ExtUtils::MM_BeOS' => '6.82',
9123 'ExtUtils::MM_Cygwin' => '6.82',
9124 'ExtUtils::MM_DOS' => '6.82',
9125 'ExtUtils::MM_Darwin' => '6.82',
9126 'ExtUtils::MM_MacOS' => '6.82',
9127 'ExtUtils::MM_NW5' => '6.82',
9128 'ExtUtils::MM_OS2' => '6.82',
9129 'ExtUtils::MM_QNX' => '6.82',
9130 'ExtUtils::MM_UWIN' => '6.82',
9131 'ExtUtils::MM_Unix' => '6.82',
9132 'ExtUtils::MM_VMS' => '6.82',
9133 'ExtUtils::MM_VOS' => '6.82',
9134 'ExtUtils::MM_Win32' => '6.82',
9135 'ExtUtils::MM_Win95' => '6.82',
9136 'ExtUtils::MY' => '6.82',
9137 'ExtUtils::MakeMaker' => '6.82',
9138 'ExtUtils::MakeMaker::Config'=> '6.82',
9139 'ExtUtils::Mkbootstrap' => '6.82',
9140 'ExtUtils::Mksymlists' => '6.82',
9141 'ExtUtils::testlib' => '6.82',
9142 'File::DosGlob' => '1.12',
9143 'File::Find' => '1.26',
9144 'File::Glob' => '1.23',
9145 'HTTP::Tiny' => '0.038',
9146 'IO' => '1.30',
9147 'IO::Compress::Adapter::Bzip2'=> '2.063',
9148 'IO::Compress::Adapter::Deflate'=> '2.063',
9149 'IO::Compress::Adapter::Identity'=> '2.063',
9150 'IO::Compress::Base' => '2.063',
9151 'IO::Compress::Base::Common'=> '2.063',
9152 'IO::Compress::Bzip2' => '2.063',
9153 'IO::Compress::Deflate' => '2.063',
9154 'IO::Compress::Gzip' => '2.063',
9155 'IO::Compress::Gzip::Constants'=> '2.063',
9156 'IO::Compress::RawDeflate'=> '2.063',
9157 'IO::Compress::Zip' => '2.063',
9158 'IO::Compress::Zip::Constants'=> '2.063',
9159 'IO::Compress::Zlib::Constants'=> '2.063',
9160 'IO::Compress::Zlib::Extra'=> '2.063',
9161 'IO::Select' => '1.22',
9162 'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9163 'IO::Uncompress::Adapter::Identity'=> '2.063',
9164 'IO::Uncompress::Adapter::Inflate'=> '2.063',
9165 'IO::Uncompress::AnyInflate'=> '2.063',
9166 'IO::Uncompress::AnyUncompress'=> '2.063',
9167 'IO::Uncompress::Base' => '2.063',
9168 'IO::Uncompress::Bunzip2'=> '2.063',
9169 'IO::Uncompress::Gunzip'=> '2.063',
9170 'IO::Uncompress::Inflate'=> '2.063',
9171 'IO::Uncompress::RawInflate'=> '2.063',
9172 'IO::Uncompress::Unzip' => '2.063',
9173 'IPC::Cmd' => '0.90',
9174 'Locale::Maketext' => '1.25',
9175 'Module::Build' => '0.4202',
9176 'Module::Build::Base' => '0.4202',
9177 'Module::Build::Compat' => '0.4202',
9178 'Module::Build::Config' => '0.4202',
9179 'Module::Build::Cookbook'=> '0.4202',
9180 'Module::Build::Dumper' => '0.4202',
9181 'Module::Build::ModuleInfo'=> '0.4202',
9182 'Module::Build::Notes' => '0.4202',
9183 'Module::Build::PPMMaker'=> '0.4202',
9184 'Module::Build::Platform::Default'=> '0.4202',
9185 'Module::Build::Platform::MacOS'=> '0.4202',
9186 'Module::Build::Platform::Unix'=> '0.4202',
9187 'Module::Build::Platform::VMS'=> '0.4202',
9188 'Module::Build::Platform::VOS'=> '0.4202',
9189 'Module::Build::Platform::Windows'=> '0.4202',
9190 'Module::Build::Platform::aix'=> '0.4202',
9191 'Module::Build::Platform::cygwin'=> '0.4202',
9192 'Module::Build::Platform::darwin'=> '0.4202',
9193 'Module::Build::Platform::os2'=> '0.4202',
9194 'Module::Build::PodParser'=> '0.4202',
494bd897
SH
9195 'Module::CoreList' => '3.01',
9196 'Module::CoreList::TieHashDelta'=> '3.01',
9197 'Module::CoreList::Utils'=> '3.01',
1f2fd626
CBW
9198 'Opcode' => '1.27',
9199 'POSIX' => '1.36',
9200 'Package::Constants' => '0.04',
9201 'PerlIO::scalar' => '0.18',
9202 'PerlIO::via' => '0.13',
9203 'SDBM_File' => '1.10',
9204 'Socket' => '2.013',
9205 'TAP::Base' => '3.30',
9206 'TAP::Formatter::Base' => '3.30',
9207 'TAP::Formatter::Color' => '3.30',
9208 'TAP::Formatter::Console'=> '3.30',
9209 'TAP::Formatter::Console::ParallelSession'=> '3.30',
9210 'TAP::Formatter::Console::Session'=> '3.30',
9211 'TAP::Formatter::File' => '3.30',
9212 'TAP::Formatter::File::Session'=> '3.30',
9213 'TAP::Formatter::Session'=> '3.30',
9214 'TAP::Harness' => '3.30',
9215 'TAP::Harness::Env' => '3.30',
9216 'TAP::Object' => '3.30',
9217 'TAP::Parser' => '3.30',
9218 'TAP::Parser::Aggregator'=> '3.30',
9219 'TAP::Parser::Grammar' => '3.30',
9220 'TAP::Parser::Iterator' => '3.30',
9221 'TAP::Parser::Iterator::Array'=> '3.30',
9222 'TAP::Parser::Iterator::Process'=> '3.30',
9223 'TAP::Parser::Iterator::Stream'=> '3.30',
9224 'TAP::Parser::IteratorFactory'=> '3.30',
9225 'TAP::Parser::Multiplexer'=> '3.30',
9226 'TAP::Parser::Result' => '3.30',
9227 'TAP::Parser::Result::Bailout'=> '3.30',
9228 'TAP::Parser::Result::Comment'=> '3.30',
9229 'TAP::Parser::Result::Plan'=> '3.30',
9230 'TAP::Parser::Result::Pragma'=> '3.30',
9231 'TAP::Parser::Result::Test'=> '3.30',
9232 'TAP::Parser::Result::Unknown'=> '3.30',
9233 'TAP::Parser::Result::Version'=> '3.30',
9234 'TAP::Parser::Result::YAML'=> '3.30',
9235 'TAP::Parser::ResultFactory'=> '3.30',
9236 'TAP::Parser::Scheduler'=> '3.30',
9237 'TAP::Parser::Scheduler::Job'=> '3.30',
9238 'TAP::Parser::Scheduler::Spinner'=> '3.30',
9239 'TAP::Parser::Source' => '3.30',
9240 'TAP::Parser::SourceHandler'=> '3.30',
9241 'TAP::Parser::SourceHandler::Executable'=> '3.30',
9242 'TAP::Parser::SourceHandler::File'=> '3.30',
9243 'TAP::Parser::SourceHandler::Handle'=> '3.30',
9244 'TAP::Parser::SourceHandler::Perl'=> '3.30',
9245 'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9246 'TAP::Parser::YAMLish::Reader'=> '3.30',
9247 'TAP::Parser::YAMLish::Writer'=> '3.30',
9248 'Term::Cap' => '1.15',
9249 'Test::Builder' => '1.001002',
9250 'Test::Builder::Module' => '1.001002',
9251 'Test::Harness' => '3.30',
9252 'Test::More' => '1.001002',
9253 'Test::Simple' => '1.001002',
9254 'Tie::StdHandle' => '4.4',
9255 'Unicode::Collate' => '1.02',
9256 'Unicode::Collate::CJK::Korean'=> '1.02',
9257 'Unicode::Collate::Locale'=> '1.02',
9258 'XS::APItest' => '0.57',
9259 'XS::Typemap' => '0.12',
9260 'arybase' => '0.07',
9261 'bignum' => '0.37',
9262 'constant' => '1.29',
9263 'fields' => '2.17',
9264 'inc::latest' => '0.4202',
9265 'threads' => '1.90',
9266 'threads::shared' => '1.45',
494bd897
SH
9267 },
9268 removed => {
9269 }
9270 },
b3f76264
CBW
9271 5.019007 => {
9272 delta_from => 5.019006,
9273 changed => {
95eb96f3
A
9274 'CGI' => '3.64',
9275 'CGI::Apache' => '1.02',
9276 'CGI::Carp' => '3.64',
9277 'CGI::Cookie' => '1.31',
9278 'CGI::Fast' => '1.10',
9279 'CGI::Pretty' => '3.64',
9280 'CGI::Push' => '1.06',
9281 'CGI::Switch' => '1.02',
9282 'CGI::Util' => '3.64',
9283 'CPAN::Meta' => '2.133380',
9284 'CPAN::Meta::Converter' => '2.133380',
9285 'CPAN::Meta::Feature' => '2.133380',
9286 'CPAN::Meta::History' => '2.133380',
9287 'CPAN::Meta::Prereqs' => '2.133380',
9288 'CPAN::Meta::Spec' => '2.133380',
9289 'CPAN::Meta::Validator' => '2.133380',
b3f76264 9290 'Config' => '5.019007',
95eb96f3
A
9291 'Data::Dumper' => '2.150',
9292 'DynaLoader' => '1.22',
9293 'ExtUtils::Command::MM' => '6.84',
9294 'ExtUtils::Liblist' => '6.84',
9295 'ExtUtils::Liblist::Kid'=> '6.84',
9296 'ExtUtils::MM' => '6.84',
9297 'ExtUtils::MM_AIX' => '6.84',
9298 'ExtUtils::MM_Any' => '6.84',
9299 'ExtUtils::MM_BeOS' => '6.84',
9300 'ExtUtils::MM_Cygwin' => '6.84',
9301 'ExtUtils::MM_DOS' => '6.84',
9302 'ExtUtils::MM_Darwin' => '6.84',
9303 'ExtUtils::MM_MacOS' => '6.84',
9304 'ExtUtils::MM_NW5' => '6.84',
9305 'ExtUtils::MM_OS2' => '6.84',
9306 'ExtUtils::MM_QNX' => '6.84',
9307 'ExtUtils::MM_UWIN' => '6.84',
9308 'ExtUtils::MM_Unix' => '6.84',
9309 'ExtUtils::MM_VMS' => '6.84',
9310 'ExtUtils::MM_VOS' => '6.84',
9311 'ExtUtils::MM_Win32' => '6.84',
9312 'ExtUtils::MM_Win95' => '6.84',
9313 'ExtUtils::MY' => '6.84',
9314 'ExtUtils::MakeMaker' => '6.84',
9315 'ExtUtils::MakeMaker::Config'=> '6.84',
9316 'ExtUtils::Mkbootstrap' => '6.84',
9317 'ExtUtils::Mksymlists' => '6.84',
9318 'ExtUtils::testlib' => '6.84',
9319 'File::Fetch' => '0.46',
9320 'HTTP::Tiny' => '0.039',
9321 'Locale::Codes' => '3.28',
9322 'Locale::Codes::Constants'=> '3.28',
9323 'Locale::Codes::Country'=> '3.28',
9324 'Locale::Codes::Country_Codes'=> '3.28',
9325 'Locale::Codes::Country_Retired'=> '3.28',
9326 'Locale::Codes::Currency'=> '3.28',
9327 'Locale::Codes::Currency_Codes'=> '3.28',
9328 'Locale::Codes::Currency_Retired'=> '3.28',
9329 'Locale::Codes::LangExt'=> '3.28',
9330 'Locale::Codes::LangExt_Codes'=> '3.28',
9331 'Locale::Codes::LangExt_Retired'=> '3.28',
9332 'Locale::Codes::LangFam'=> '3.28',
9333 'Locale::Codes::LangFam_Codes'=> '3.28',
9334 'Locale::Codes::LangFam_Retired'=> '3.28',
9335 'Locale::Codes::LangVar'=> '3.28',
9336 'Locale::Codes::LangVar_Codes'=> '3.28',
9337 'Locale::Codes::LangVar_Retired'=> '3.28',
9338 'Locale::Codes::Language'=> '3.28',
9339 'Locale::Codes::Language_Codes'=> '3.28',
9340 'Locale::Codes::Language_Retired'=> '3.28',
9341 'Locale::Codes::Script' => '3.28',
9342 'Locale::Codes::Script_Codes'=> '3.28',
9343 'Locale::Codes::Script_Retired'=> '3.28',
9344 'Locale::Country' => '3.28',
9345 'Locale::Currency' => '3.28',
9346 'Locale::Language' => '3.28',
9347 'Locale::Script' => '3.28',
9348 'Module::Build' => '0.4203',
9349 'Module::Build::Base' => '0.4203',
9350 'Module::Build::Compat' => '0.4203',
9351 'Module::Build::Config' => '0.4203',
9352 'Module::Build::Cookbook'=> '0.4203',
9353 'Module::Build::Dumper' => '0.4203',
9354 'Module::Build::ModuleInfo'=> '0.4203',
9355 'Module::Build::Notes' => '0.4203',
9356 'Module::Build::PPMMaker'=> '0.4203',
9357 'Module::Build::Platform::Default'=> '0.4203',
9358 'Module::Build::Platform::MacOS'=> '0.4203',
9359 'Module::Build::Platform::Unix'=> '0.4203',
9360 'Module::Build::Platform::VMS'=> '0.4203',
9361 'Module::Build::Platform::VOS'=> '0.4203',
9362 'Module::Build::Platform::Windows'=> '0.4203',
9363 'Module::Build::Platform::aix'=> '0.4203',
9364 'Module::Build::Platform::cygwin'=> '0.4203',
9365 'Module::Build::Platform::darwin'=> '0.4203',
9366 'Module::Build::Platform::os2'=> '0.4203',
9367 'Module::Build::PodParser'=> '0.4203',
b3f76264
CBW
9368 'Module::CoreList' => '3.02',
9369 'Module::CoreList::TieHashDelta'=> '3.02',
9370 'Module::CoreList::Utils'=> '3.02',
95eb96f3 9371 'POSIX' => '1.37',
95eb96f3
A
9372 'PerlIO::encoding' => '0.17',
9373 'PerlIO::via' => '0.14',
9374 'SDBM_File' => '1.11',
9375 'Storable' => '2.48',
9376 'Time::Piece' => '1.24',
9377 'Time::Seconds' => '1.24',
9378 'Unicode::Collate' => '1.04',
9379 'Win32' => '0.48',
9380 'XS::APItest' => '0.58',
9381 'base' => '2.20',
9382 'constant' => '1.30',
9383 'inc::latest' => '0.4203',
9384 'threads' => '1.91',
b3f76264
CBW
9385 },
9386 removed => {
9387 }
9388 },
365f8c3e
CBW
9389 5.019008 => {
9390 delta_from => 5.019007,
9391 changed => {
9392 'Config' => '5.019008',
d0ff74ad
RS
9393 'DynaLoader' => '1.24',
9394 'Encode' => '2.57',
9395 'Errno' => '1.20_02',
9396 'ExtUtils::CBuilder' => '0.280213',
9397 'ExtUtils::CBuilder::Base'=> '0.280213',
9398 'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9399 'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9400 'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9401 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9402 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9403 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9404 'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9405 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9406 'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9407 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9408 'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9409 'ExtUtils::Command::MM' => '6.86',
9410 'ExtUtils::Liblist' => '6.86',
9411 'ExtUtils::Liblist::Kid'=> '6.86',
9412 'ExtUtils::MM' => '6.86',
9413 'ExtUtils::MM_AIX' => '6.86',
9414 'ExtUtils::MM_Any' => '6.86',
9415 'ExtUtils::MM_BeOS' => '6.86',
9416 'ExtUtils::MM_Cygwin' => '6.86',
9417 'ExtUtils::MM_DOS' => '6.86',
9418 'ExtUtils::MM_Darwin' => '6.86',
9419 'ExtUtils::MM_MacOS' => '6.86',
9420 'ExtUtils::MM_NW5' => '6.86',
9421 'ExtUtils::MM_OS2' => '6.86',
9422 'ExtUtils::MM_QNX' => '6.86',
9423 'ExtUtils::MM_UWIN' => '6.86',
9424 'ExtUtils::MM_Unix' => '6.86',
9425 'ExtUtils::MM_VMS' => '6.86',
9426 'ExtUtils::MM_VOS' => '6.86',
9427 'ExtUtils::MM_Win32' => '6.86',
9428 'ExtUtils::MM_Win95' => '6.86',
9429 'ExtUtils::MY' => '6.86',
9430 'ExtUtils::MakeMaker' => '6.86',
9431 'ExtUtils::MakeMaker::Config'=> '6.86',
9432 'ExtUtils::Mkbootstrap' => '6.86',
9433 'ExtUtils::Mksymlists' => '6.86',
9434 'ExtUtils::testlib' => '6.86',
9435 'File::Copy' => '2.29',
9436 'Hash::Util::FieldHash' => '1.14',
9437 'IO::Socket::IP' => '0.26',
9438 'IO::Socket::UNIX' => '1.26',
9439 'List::Util' => '1.36',
9440 'List::Util::XS' => '1.36',
9441 'Module::Build' => '0.4204',
9442 'Module::Build::Base' => '0.4204',
9443 'Module::Build::Compat' => '0.4204',
9444 'Module::Build::Config' => '0.4204',
9445 'Module::Build::Cookbook'=> '0.4204',
9446 'Module::Build::Dumper' => '0.4204',
9447 'Module::Build::ModuleInfo'=> '0.4204',
9448 'Module::Build::Notes' => '0.4204',
9449 'Module::Build::PPMMaker'=> '0.4204',
9450 'Module::Build::Platform::Default'=> '0.4204',
9451 'Module::Build::Platform::MacOS'=> '0.4204',
9452 'Module::Build::Platform::Unix'=> '0.4204',
9453 'Module::Build::Platform::VMS'=> '0.4204',
9454 'Module::Build::Platform::VOS'=> '0.4204',
9455 'Module::Build::Platform::Windows'=> '0.4204',
9456 'Module::Build::Platform::aix'=> '0.4204',
9457 'Module::Build::Platform::cygwin'=> '0.4204',
9458 'Module::Build::Platform::darwin'=> '0.4204',
9459 'Module::Build::Platform::os2'=> '0.4204',
9460 'Module::Build::PodParser'=> '0.4204',
365f8c3e
CBW
9461 'Module::CoreList' => '3.04',
9462 'Module::CoreList::TieHashDelta'=> '3.04',
9463 'Module::CoreList::Utils'=> '3.04',
d0ff74ad
RS
9464 'Module::Load' => '0.28',
9465 'Module::Load::Conditional'=> '0.60',
9466 'Net::Config' => '1.13',
9467 'Net::FTP::A' => '1.19',
9468 'POSIX' => '1.38_01',
9469 'Perl::OSType' => '1.007',
9470 'PerlIO::encoding' => '0.18',
9471 'Pod::Perldoc' => '3.21',
9472 'Pod::Perldoc::BaseTo' => '3.21',
9473 'Pod::Perldoc::GetOptsOO'=> '3.21',
9474 'Pod::Perldoc::ToANSI' => '3.21',
9475 'Pod::Perldoc::ToChecker'=> '3.21',
9476 'Pod::Perldoc::ToMan' => '3.21',
9477 'Pod::Perldoc::ToNroff' => '3.21',
9478 'Pod::Perldoc::ToPod' => '3.21',
9479 'Pod::Perldoc::ToRtf' => '3.21',
9480 'Pod::Perldoc::ToTerm' => '3.21',
9481 'Pod::Perldoc::ToText' => '3.21',
9482 'Pod::Perldoc::ToTk' => '3.21',
9483 'Pod::Perldoc::ToXml' => '3.21',
9484 'Scalar::Util' => '1.36',
9485 'Time::Piece' => '1.27',
9486 'Time::Seconds' => '1.27',
9487 'Unicode::UCD' => '0.57',
9488 'XS::APItest' => '0.59',
9489 'XSLoader' => '0.17',
9490 'base' => '2.21',
9491 'constant' => '1.31',
9492 'inc::latest' => '0.4204',
9493 'threads::shared' => '1.46',
9494 'version' => '0.9907',
9495 'version::regex' => '0.9907',
9496 'version::vpp' => '0.9907',
9497 'warnings' => '1.21',
365f8c3e
CBW
9498 },
9499 removed => {
9500 }
9501 },
a27b5f52
CBW
9502 5.019009 => {
9503 delta_from => 5.019008,
9504 changed => {
5a39b45b
TC
9505 'B' => '1.48',
9506 'B::Concise' => '0.992',
9507 'B::Deparse' => '1.25',
9508 'CGI' => '3.65',
9509 'CPAN::Meta::YAML' => '0.011',
9510 'Compress::Raw::Bzip2' => '2.064',
9511 'Compress::Raw::Zlib' => '2.065',
9512 'Compress::Zlib' => '2.064',
a27b5f52 9513 'Config' => '5.019009',
5a39b45b
TC
9514 'Config::Perl::V' => '0.20',
9515 'Cwd' => '3.47',
9516 'Devel::Peek' => '1.16',
9517 'Digest::SHA' => '5.87',
9518 'DynaLoader' => '1.25',
9519 'English' => '1.09',
9520 'ExtUtils::CBuilder' => '0.280216',
9521 'ExtUtils::CBuilder::Base'=> '0.280216',
9522 'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9523 'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9524 'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9525 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9526 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9527 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9528 'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9529 'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9530 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9531 'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9532 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9533 'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9534 'ExtUtils::Command::MM' => '6.88',
9535 'ExtUtils::Embed' => '1.32',
9536 'ExtUtils::Install' => '1.62',
9537 'ExtUtils::Installed' => '1.999004',
9538 'ExtUtils::Liblist' => '6.88',
9539 'ExtUtils::Liblist::Kid'=> '6.88',
9540 'ExtUtils::MM' => '6.88',
9541 'ExtUtils::MM_AIX' => '6.88',
9542 'ExtUtils::MM_Any' => '6.88',
9543 'ExtUtils::MM_BeOS' => '6.88',
9544 'ExtUtils::MM_Cygwin' => '6.88',
9545 'ExtUtils::MM_DOS' => '6.88',
9546 'ExtUtils::MM_Darwin' => '6.88',
9547 'ExtUtils::MM_MacOS' => '6.88',
9548 'ExtUtils::MM_NW5' => '6.88',
9549 'ExtUtils::MM_OS2' => '6.88',
9550 'ExtUtils::MM_QNX' => '6.88',
9551 'ExtUtils::MM_UWIN' => '6.88',
9552 'ExtUtils::MM_Unix' => '6.88',
9553 'ExtUtils::MM_VMS' => '6.88',
9554 'ExtUtils::MM_VOS' => '6.88',
9555 'ExtUtils::MM_Win32' => '6.88',
9556 'ExtUtils::MM_Win95' => '6.88',
9557 'ExtUtils::MY' => '6.88',
9558 'ExtUtils::MakeMaker' => '6.88',
9559 'ExtUtils::MakeMaker::Config'=> '6.88',
9560 'ExtUtils::Mkbootstrap' => '6.88',
9561 'ExtUtils::Mksymlists' => '6.88',
9562 'ExtUtils::Packlist' => '1.47',
9563 'ExtUtils::testlib' => '6.88',
9564 'Fatal' => '2.23',
9565 'File::Fetch' => '0.48',
9566 'File::Spec' => '3.47',
9567 'File::Spec::Cygwin' => '3.47',
9568 'File::Spec::Epoc' => '3.47',
9569 'File::Spec::Functions' => '3.47',
9570 'File::Spec::Mac' => '3.47',
9571 'File::Spec::OS2' => '3.47',
9572 'File::Spec::Unix' => '3.47',
9573 'File::Spec::VMS' => '3.47',
9574 'File::Spec::Win32' => '3.47',
9575 'HTTP::Tiny' => '0.042',
9576 'IO::Compress::Adapter::Bzip2'=> '2.064',
9577 'IO::Compress::Adapter::Deflate'=> '2.064',
9578 'IO::Compress::Adapter::Identity'=> '2.064',
9579 'IO::Compress::Base' => '2.064',
9580 'IO::Compress::Base::Common'=> '2.064',
9581 'IO::Compress::Bzip2' => '2.064',
9582 'IO::Compress::Deflate' => '2.064',
9583 'IO::Compress::Gzip' => '2.064',
9584 'IO::Compress::Gzip::Constants'=> '2.064',
9585 'IO::Compress::RawDeflate'=> '2.064',
9586 'IO::Compress::Zip' => '2.064',
9587 'IO::Compress::Zip::Constants'=> '2.064',
9588 'IO::Compress::Zlib::Constants'=> '2.064',
9589 'IO::Compress::Zlib::Extra'=> '2.064',
9590 'IO::Socket::INET' => '1.35',
9591 'IO::Socket::IP' => '0.28',
9592 'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9593 'IO::Uncompress::Adapter::Identity'=> '2.064',
9594 'IO::Uncompress::Adapter::Inflate'=> '2.064',
9595 'IO::Uncompress::AnyInflate'=> '2.064',
9596 'IO::Uncompress::AnyUncompress'=> '2.064',
9597 'IO::Uncompress::Base' => '2.064',
9598 'IO::Uncompress::Bunzip2'=> '2.064',
9599 'IO::Uncompress::Gunzip'=> '2.064',
9600 'IO::Uncompress::Inflate'=> '2.064',
9601 'IO::Uncompress::RawInflate'=> '2.064',
9602 'IO::Uncompress::Unzip' => '2.064',
9603 'IPC::Cmd' => '0.92',
9604 'List::Util' => '1.38',
9605 'List::Util::XS' => '1.38',
9606 'Locale::Codes' => '3.29',
9607 'Locale::Codes::Constants'=> '3.29',
9608 'Locale::Codes::Country'=> '3.29',
9609 'Locale::Codes::Country_Codes'=> '3.29',
9610 'Locale::Codes::Country_Retired'=> '3.29',
9611 'Locale::Codes::Currency'=> '3.29',
9612 'Locale::Codes::Currency_Codes'=> '3.29',
9613 'Locale::Codes::Currency_Retired'=> '3.29',
9614 'Locale::Codes::LangExt'=> '3.29',
9615 'Locale::Codes::LangExt_Codes'=> '3.29',
9616 'Locale::Codes::LangExt_Retired'=> '3.29',
9617 'Locale::Codes::LangFam'=> '3.29',
9618 'Locale::Codes::LangFam_Codes'=> '3.29',
9619 'Locale::Codes::LangFam_Retired'=> '3.29',
9620 'Locale::Codes::LangVar'=> '3.29',
9621 'Locale::Codes::LangVar_Codes'=> '3.29',
9622 'Locale::Codes::LangVar_Retired'=> '3.29',
9623 'Locale::Codes::Language'=> '3.29',
9624 'Locale::Codes::Language_Codes'=> '3.29',
9625 'Locale::Codes::Language_Retired'=> '3.29',
9626 'Locale::Codes::Script' => '3.29',
9627 'Locale::Codes::Script_Codes'=> '3.29',
9628 'Locale::Codes::Script_Retired'=> '3.29',
9629 'Locale::Country' => '3.29',
9630 'Locale::Currency' => '3.29',
9631 'Locale::Language' => '3.29',
9632 'Locale::Script' => '3.29',
9633 'Module::Build' => '0.4205',
9634 'Module::Build::Base' => '0.4205',
9635 'Module::Build::Compat' => '0.4205',
9636 'Module::Build::Config' => '0.4205',
9637 'Module::Build::Cookbook'=> '0.4205',
9638 'Module::Build::Dumper' => '0.4205',
9639 'Module::Build::ModuleInfo'=> '0.4205',
9640 'Module::Build::Notes' => '0.4205',
9641 'Module::Build::PPMMaker'=> '0.4205',
9642 'Module::Build::Platform::Default'=> '0.4205',
9643 'Module::Build::Platform::MacOS'=> '0.4205',
9644 'Module::Build::Platform::Unix'=> '0.4205',
9645 'Module::Build::Platform::VMS'=> '0.4205',
9646 'Module::Build::Platform::VOS'=> '0.4205',
9647 'Module::Build::Platform::Windows'=> '0.4205',
9648 'Module::Build::Platform::aix'=> '0.4205',
9649 'Module::Build::Platform::cygwin'=> '0.4205',
9650 'Module::Build::Platform::darwin'=> '0.4205',
9651 'Module::Build::Platform::os2'=> '0.4205',
9652 'Module::Build::PodParser'=> '0.4205',
9653 'Module::CoreList' => '3.06',
9654 'Module::CoreList::TieHashDelta'=> '3.06',
9655 'Module::CoreList::Utils'=> '3.06',
9656 'Module::Load' => '0.30',
9657 'Module::Load::Conditional'=> '0.62',
9658 'Net::Domain' => '2.23',
9659 'Net::FTP' => '2.79',
9660 'Net::NNTP' => '2.26',
9661 'Net::POP3' => '2.31',
9662 'Net::Ping' => '2.43',
9663 'Net::SMTP' => '2.33',
9664 'POSIX' => '1.38_02',
9665 'Parse::CPAN::Meta' => '1.4413',
5a39b45b
TC
9666 'Pod::Escapes' => '1.06',
9667 'Pod::Find' => '1.62',
9668 'Pod::InputObjects' => '1.62',
9669 'Pod::ParseUtils' => '1.62',
9670 'Pod::Parser' => '1.62',
9671 'Pod::Select' => '1.62',
9672 'Scalar::Util' => '1.38',
9673 'autodie' => '2.23',
9674 'autodie::exception' => '2.23',
9675 'autodie::exception::system'=> '2.23',
9676 'autodie::hints' => '2.23',
9677 'autodie::skip' => '2.23',
9678 'diagnostics' => '1.34',
9679 'feature' => '1.35',
9680 'inc::latest' => '0.4205',
9681 'locale' => '1.03',
9682 'mro' => '1.15',
9683 'threads' => '1.92',
9684 'version' => '0.9908',
9685 'version::regex' => '0.9908',
9686 'version::vpp' => '0.9908',
9687 'warnings' => '1.22',
a27b5f52
CBW
9688 },
9689 removed => {
9690 }
9691 },
ce42a9e6 9692 5.01901 => {
baca4554
TC
9693 delta_from => 5.019009,
9694 changed => {
ce42a9e6
AC
9695 'App::Cpan' => '1.62',
9696 'Attribute::Handlers' => '0.96',
9697 'B::Deparse' => '1.26',
9698 'CPAN' => '2.04',
9699 'CPAN::Bundle' => '5.5001',
9700 'CPAN::Complete' => '5.5001',
9701 'CPAN::Distribution' => '2.01',
9702 'CPAN::Distroprefs' => '6.0001',
9703 'CPAN::FirstTime' => '5.5305',
9704 'CPAN::Meta' => '2.140640',
9705 'CPAN::Meta::Converter' => '2.140640',
9706 'CPAN::Meta::Feature' => '2.140640',
9707 'CPAN::Meta::History' => '2.140640',
9708 'CPAN::Meta::Prereqs' => '2.140640',
9709 'CPAN::Meta::Spec' => '2.140640',
9710 'CPAN::Meta::Validator' => '2.140640',
9711 'CPAN::Meta::YAML' => '0.012',
9712 'CPAN::Queue' => '5.5002',
9713 'CPAN::Shell' => '5.5003',
9714 'CPAN::Tarzip' => '5.5012',
9715 'CPAN::Version' => '5.5003',
9716 'Carp' => '1.33',
9717 'Carp::Heavy' => '1.33',
baca4554 9718 'Config' => '5.019010',
ce42a9e6
AC
9719 'Data::Dumper' => '2.151',
9720 'Devel::PPPort' => '3.22',
9721 'Digest::SHA' => '5.88',
9722 'ExtUtils::Command::MM' => '6.92',
9723 'ExtUtils::Install' => '1.63',
9724 'ExtUtils::Installed' => '1.999005',
9725 'ExtUtils::Liblist' => '6.92',
9726 'ExtUtils::Liblist::Kid'=> '6.92',
9727 'ExtUtils::MM' => '6.92',
9728 'ExtUtils::MM_AIX' => '6.92',
9729 'ExtUtils::MM_Any' => '6.92',
9730 'ExtUtils::MM_BeOS' => '6.92',
9731 'ExtUtils::MM_Cygwin' => '6.92',
9732 'ExtUtils::MM_DOS' => '6.92',
9733 'ExtUtils::MM_Darwin' => '6.92',
9734 'ExtUtils::MM_MacOS' => '6.92',
9735 'ExtUtils::MM_NW5' => '6.92',
9736 'ExtUtils::MM_OS2' => '6.92',
9737 'ExtUtils::MM_QNX' => '6.92',
9738 'ExtUtils::MM_UWIN' => '6.92',
9739 'ExtUtils::MM_Unix' => '6.92',
9740 'ExtUtils::MM_VMS' => '6.92',
9741 'ExtUtils::MM_VOS' => '6.92',
9742 'ExtUtils::MM_Win32' => '6.92',
9743 'ExtUtils::MM_Win95' => '6.92',
9744 'ExtUtils::MY' => '6.92',
9745 'ExtUtils::MakeMaker' => '6.92',
9746 'ExtUtils::MakeMaker::Config'=> '6.92',
9747 'ExtUtils::Mkbootstrap' => '6.92',
9748 'ExtUtils::Mksymlists' => '6.92',
9749 'ExtUtils::Packlist' => '1.48',
9750 'ExtUtils::ParseXS' => '3.24',
9751 'ExtUtils::ParseXS::Constants'=> '3.24',
9752 'ExtUtils::ParseXS::CountLines'=> '3.24',
9753 'ExtUtils::ParseXS::Eval'=> '3.24',
9754 'ExtUtils::ParseXS::Utilities'=> '3.24',
9755 'ExtUtils::Typemaps' => '3.24',
9756 'ExtUtils::Typemaps::Cmd'=> '3.24',
9757 'ExtUtils::Typemaps::InputMap'=> '3.24',
9758 'ExtUtils::Typemaps::OutputMap'=> '3.24',
9759 'ExtUtils::Typemaps::Type'=> '3.24',
9760 'ExtUtils::testlib' => '6.92',
9761 'File::Find' => '1.27',
9762 'Filter::Simple' => '0.91',
9763 'HTTP::Tiny' => '0.043',
9764 'Hash::Util::FieldHash' => '1.15',
9765 'IO' => '1.31',
9766 'IO::Socket::IP' => '0.29',
9767 'Locale::Codes' => '3.30',
9768 'Locale::Codes::Constants'=> '3.30',
9769 'Locale::Codes::Country'=> '3.30',
9770 'Locale::Codes::Country_Codes'=> '3.30',
9771 'Locale::Codes::Country_Retired'=> '3.30',
9772 'Locale::Codes::Currency'=> '3.30',
9773 'Locale::Codes::Currency_Codes'=> '3.30',
9774 'Locale::Codes::Currency_Retired'=> '3.30',
9775 'Locale::Codes::LangExt'=> '3.30',
9776 'Locale::Codes::LangExt_Codes'=> '3.30',
9777 'Locale::Codes::LangExt_Retired'=> '3.30',
9778 'Locale::Codes::LangFam'=> '3.30',
9779 'Locale::Codes::LangFam_Codes'=> '3.30',
9780 'Locale::Codes::LangFam_Retired'=> '3.30',
9781 'Locale::Codes::LangVar'=> '3.30',
9782 'Locale::Codes::LangVar_Codes'=> '3.30',
9783 'Locale::Codes::LangVar_Retired'=> '3.30',
9784 'Locale::Codes::Language'=> '3.30',
9785 'Locale::Codes::Language_Codes'=> '3.30',
9786 'Locale::Codes::Language_Retired'=> '3.30',
9787 'Locale::Codes::Script' => '3.30',
9788 'Locale::Codes::Script_Codes'=> '3.30',
9789 'Locale::Codes::Script_Retired'=> '3.30',
9790 'Locale::Country' => '3.30',
9791 'Locale::Currency' => '3.30',
9792 'Locale::Language' => '3.30',
9793 'Locale::Script' => '3.30',
9794 'Module::CoreList' => '3.09',
9795 'Module::CoreList::TieHashDelta'=> '3.09',
9796 'Module::CoreList::Utils'=> '3.09',
9797 'Module::Load' => '0.32',
9798 'POSIX' => '1.38_03',
9799 'Parse::CPAN::Meta' => '1.4414',
9800 'Pod::Perldoc' => '3.23',
9801 'Pod::Perldoc::BaseTo' => '3.23',
9802 'Pod::Perldoc::GetOptsOO'=> '3.23',
9803 'Pod::Perldoc::ToANSI' => '3.23',
9804 'Pod::Perldoc::ToChecker'=> '3.23',
9805 'Pod::Perldoc::ToMan' => '3.23',
9806 'Pod::Perldoc::ToNroff' => '3.23',
9807 'Pod::Perldoc::ToPod' => '3.23',
9808 'Pod::Perldoc::ToRtf' => '3.23',
9809 'Pod::Perldoc::ToTerm' => '3.23',
9810 'Pod::Perldoc::ToText' => '3.23',
9811 'Pod::Perldoc::ToTk' => '3.23',
9812 'Pod::Perldoc::ToXml' => '3.23',
9813 'Thread::Queue' => '3.05',
9814 'XS::APItest' => '0.60',
9815 'XS::Typemap' => '0.13',
9816 'autouse' => '1.08',
9817 'base' => '2.22',
9818 'charnames' => '1.40',
9819 'feature' => '1.36',
9820 'mro' => '1.16',
9821 'threads' => '1.93',
9822 'warnings' => '1.23',
9823 'warnings::register' => '1.03',
baca4554
TC
9824 },
9825 removed => {
9826 }
9827 },
b776cec1 9828 5.019011 => {
70152776 9829 delta_from => 5.01901,
b776cec1 9830 changed => {
70152776
SH
9831 'CPAN' => '2.05',
9832 'CPAN::Distribution' => '2.02',
9833 'CPAN::FirstTime' => '5.5306',
9834 'CPAN::Shell' => '5.5004',
9835 'Carp' => '1.3301',
9836 'Carp::Heavy' => '1.3301',
b776cec1 9837 'Config' => '5.019011',
70152776
SH
9838 'ExtUtils::Command::MM' => '6.94',
9839 'ExtUtils::Install' => '1.67',
9840 'ExtUtils::Liblist' => '6.94',
9841 'ExtUtils::Liblist::Kid'=> '6.94',
9842 'ExtUtils::MM' => '6.94',
9843 'ExtUtils::MM_AIX' => '6.94',
9844 'ExtUtils::MM_Any' => '6.94',
9845 'ExtUtils::MM_BeOS' => '6.94',
9846 'ExtUtils::MM_Cygwin' => '6.94',
9847 'ExtUtils::MM_DOS' => '6.94',
9848 'ExtUtils::MM_Darwin' => '6.94',
9849 'ExtUtils::MM_MacOS' => '6.94',
9850 'ExtUtils::MM_NW5' => '6.94',
9851 'ExtUtils::MM_OS2' => '6.94',
9852 'ExtUtils::MM_QNX' => '6.94',
9853 'ExtUtils::MM_UWIN' => '6.94',
9854 'ExtUtils::MM_Unix' => '6.94',
9855 'ExtUtils::MM_VMS' => '6.94',
9856 'ExtUtils::MM_VOS' => '6.94',
9857 'ExtUtils::MM_Win32' => '6.94',
9858 'ExtUtils::MM_Win95' => '6.94',
9859 'ExtUtils::MY' => '6.94',
9860 'ExtUtils::MakeMaker' => '6.94',
9861 'ExtUtils::MakeMaker::Config'=> '6.94',
9862 'ExtUtils::Mkbootstrap' => '6.94',
9863 'ExtUtils::Mksymlists' => '6.94',
9864 'ExtUtils::testlib' => '6.94',
b776cec1
AC
9865 'Module::CoreList' => '3.10',
9866 'Module::CoreList::TieHashDelta'=> '3.10',
9867 'Module::CoreList::Utils'=> '3.10',
70152776
SH
9868 'PerlIO' => '1.09',
9869 'Storable' => '2.49',
9870 'Win32' => '0.49',
9871 'experimental' => '0.007',
b776cec1
AC
9872 },
9873 removed => {
70152776 9874 }
b776cec1 9875 },
1b6c17c2 9876 5.020000 => {
48cbd9dd
SH
9877 delta_from => 5.019011,
9878 changed => {
7520a923
RS
9879 'Config' => '5.02',
9880 'Devel::PPPort' => '3.21',
9881 'Encode' => '2.60',
9882 'Errno' => '1.20_03',
9883 'ExtUtils::Command::MM' => '6.98',
9884 'ExtUtils::Liblist' => '6.98',
9885 'ExtUtils::Liblist::Kid'=> '6.98',
9886 'ExtUtils::MM' => '6.98',
9887 'ExtUtils::MM_AIX' => '6.98',
9888 'ExtUtils::MM_Any' => '6.98',
9889 'ExtUtils::MM_BeOS' => '6.98',
9890 'ExtUtils::MM_Cygwin' => '6.98',
9891 'ExtUtils::MM_DOS' => '6.98',
9892 'ExtUtils::MM_Darwin' => '6.98',
9893 'ExtUtils::MM_MacOS' => '6.98',
9894 'ExtUtils::MM_NW5' => '6.98',
9895 'ExtUtils::MM_OS2' => '6.98',
9896 'ExtUtils::MM_QNX' => '6.98',
9897 'ExtUtils::MM_UWIN' => '6.98',
9898 'ExtUtils::MM_Unix' => '6.98',
9899 'ExtUtils::MM_VMS' => '6.98',
9900 'ExtUtils::MM_VOS' => '6.98',
9901 'ExtUtils::MM_Win32' => '6.98',
9902 'ExtUtils::MM_Win95' => '6.98',
9903 'ExtUtils::MY' => '6.98',
9904 'ExtUtils::MakeMaker' => '6.98',
9905 'ExtUtils::MakeMaker::Config'=> '6.98',
9906 'ExtUtils::Miniperl' => '1.01',
9907 'ExtUtils::Mkbootstrap' => '6.98',
9908 'ExtUtils::Mksymlists' => '6.98',
9909 'ExtUtils::testlib' => '6.98',
9910 'Pod::Functions::Functions'=> '1.08',
48cbd9dd
SH
9911 },
9912 removed => {
9913 }
9914 },
75325e51 9915 5.021000 => {
4f2cd4f7 9916 delta_from => 5.020000,
75325e51 9917 changed => {
4f2cd4f7
RS
9918 'Module::CoreList' => '5.021001',
9919 'Module::CoreList::TieHashDelta'=> '5.021001',
9920 'Module::CoreList::Utils'=> '5.021001',
9921 'feature' => '1.37',
75325e51
RS
9922 },
9923 removed => {
4f2cd4f7
RS
9924 'CGI' => 1,
9925 'CGI::Apache' => 1,
9926 'CGI::Carp' => 1,
9927 'CGI::Cookie' => 1,
9928 'CGI::Fast' => 1,
9929 'CGI::Pretty' => 1,
9930 'CGI::Push' => 1,
9931 'CGI::Switch' => 1,
9932 'CGI::Util' => 1,
9933 'Module::Build' => 1,
9934 'Module::Build::Base' => 1,
9935 'Module::Build::Compat' => 1,
9936 'Module::Build::Config' => 1,
9937 'Module::Build::ConfigData'=> 1,
9938 'Module::Build::Cookbook'=> 1,
9939 'Module::Build::Dumper' => 1,
9940 'Module::Build::ModuleInfo'=> 1,
9941 'Module::Build::Notes' => 1,
9942 'Module::Build::PPMMaker'=> 1,
9943 'Module::Build::Platform::Default'=> 1,
9944 'Module::Build::Platform::MacOS'=> 1,
9945 'Module::Build::Platform::Unix'=> 1,
9946 'Module::Build::Platform::VMS'=> 1,
9947 'Module::Build::Platform::VOS'=> 1,
9948 'Module::Build::Platform::Windows'=> 1,
9949 'Module::Build::Platform::aix'=> 1,
9950 'Module::Build::Platform::cygwin'=> 1,
9951 'Module::Build::Platform::darwin'=> 1,
9952 'Module::Build::Platform::os2'=> 1,
9953 'Module::Build::PodParser'=> 1,
9954 'Module::Build::Version'=> 1,
9955 'Module::Build::YAML' => 1,
9956 'Package::Constants' => 1,
4f2cd4f7 9957 'inc::latest' => 1,
75325e51
RS
9958 }
9959 },
5a534470
RS
9960 5.021001 => {
9961 delta_from => 5.021000,
9962 changed => {
04c0d500
MH
9963 'App::Prove' => '3.32',
9964 'App::Prove::State' => '3.32',
9965 'App::Prove::State::Result'=> '3.32',
9966 'App::Prove::State::Result::Test'=> '3.32',
9967 'Archive::Tar' => '2.00',
9968 'Archive::Tar::Constant'=> '2.00',
9969 'Archive::Tar::File' => '2.00',
9970 'B' => '1.49',
9971 'B::Deparse' => '1.27',
9972 'Benchmark' => '1.19',
9973 'CPAN::Meta' => '2.141520',
9974 'CPAN::Meta::Converter' => '2.141520',
9975 'CPAN::Meta::Feature' => '2.141520',
9976 'CPAN::Meta::History' => '2.141520',
9977 'CPAN::Meta::Prereqs' => '2.141520',
9978 'CPAN::Meta::Spec' => '2.141520',
9979 'CPAN::Meta::Validator' => '2.141520',
9980 'Carp' => '1.34',
9981 'Carp::Heavy' => '1.34',
5a534470 9982 'Config' => '5.021001',
04c0d500
MH
9983 'Cwd' => '3.48',
9984 'Data::Dumper' => '2.152',
9985 'Devel::PPPort' => '3.24',
9986 'Devel::Peek' => '1.17',
9987 'Digest::SHA' => '5.92',
9988 'DynaLoader' => '1.26',
9989 'Encode' => '2.62',
9990 'Errno' => '1.20_04',
9991 'Exporter' => '5.71',
9992 'Exporter::Heavy' => '5.71',
9993 'ExtUtils::Install' => '1.68',
9994 'ExtUtils::Miniperl' => '1.02',
9995 'ExtUtils::ParseXS' => '3.25',
9996 'ExtUtils::ParseXS::Constants'=> '3.25',
9997 'ExtUtils::ParseXS::CountLines'=> '3.25',
9998 'ExtUtils::ParseXS::Eval'=> '3.25',
9999 'ExtUtils::ParseXS::Utilities'=> '3.25',
10000 'ExtUtils::Typemaps' => '3.25',
10001 'ExtUtils::Typemaps::Cmd'=> '3.25',
10002 'ExtUtils::Typemaps::InputMap'=> '3.25',
10003 'ExtUtils::Typemaps::OutputMap'=> '3.25',
10004 'ExtUtils::Typemaps::Type'=> '3.25',
10005 'Fatal' => '2.25',
10006 'File::Spec' => '3.48',
10007 'File::Spec::Cygwin' => '3.48',
10008 'File::Spec::Epoc' => '3.48',
10009 'File::Spec::Functions' => '3.48',
10010 'File::Spec::Mac' => '3.48',
10011 'File::Spec::OS2' => '3.48',
10012 'File::Spec::Unix' => '3.48',
10013 'File::Spec::VMS' => '3.48',
10014 'File::Spec::Win32' => '3.48',
10015 'Hash::Util' => '0.17',
10016 'IO' => '1.32',
10017 'List::Util' => '1.39',
10018 'List::Util::XS' => '1.39',
10019 'Locale::Codes' => '3.31',
10020 'Locale::Codes::Constants'=> '3.31',
10021 'Locale::Codes::Country'=> '3.31',
10022 'Locale::Codes::Country_Codes'=> '3.31',
10023 'Locale::Codes::Country_Retired'=> '3.31',
10024 'Locale::Codes::Currency'=> '3.31',
10025 'Locale::Codes::Currency_Codes'=> '3.31',
10026 'Locale::Codes::Currency_Retired'=> '3.31',
10027 'Locale::Codes::LangExt'=> '3.31',
10028 'Locale::Codes::LangExt_Codes'=> '3.31',
10029 'Locale::Codes::LangExt_Retired'=> '3.31',
10030 'Locale::Codes::LangFam'=> '3.31',
10031 'Locale::Codes::LangFam_Codes'=> '3.31',
10032 'Locale::Codes::LangFam_Retired'=> '3.31',
10033 'Locale::Codes::LangVar'=> '3.31',
10034 'Locale::Codes::LangVar_Codes'=> '3.31',
10035 'Locale::Codes::LangVar_Retired'=> '3.31',
10036 'Locale::Codes::Language'=> '3.31',
10037 'Locale::Codes::Language_Codes'=> '3.31',
10038 'Locale::Codes::Language_Retired'=> '3.31',
10039 'Locale::Codes::Script' => '3.31',
10040 'Locale::Codes::Script_Codes'=> '3.31',
10041 'Locale::Codes::Script_Retired'=> '3.31',
10042 'Locale::Country' => '3.31',
10043 'Locale::Currency' => '3.31',
10044 'Locale::Language' => '3.31',
10045 'Locale::Script' => '3.31',
10046 'Math::BigFloat' => '1.9994',
10047 'Math::BigInt' => '1.9995',
10048 'Math::BigInt::Calc' => '1.9994',
10049 'Math::BigInt::CalcEmu' => '1.9994',
10050 'Math::BigRat' => '0.2608',
10051 'Module::CoreList' => '5.021001_01',
10052 'Module::CoreList::TieHashDelta'=> '5.021001_01',
10053 'Module::CoreList::Utils'=> '5.021001_01',
10054 'Module::Metadata' => '1.000024',
04c0d500
MH
10055 'NDBM_File' => '1.13',
10056 'Net::Config' => '1.14',
10057 'Net::SMTP' => '2.34',
10058 'Net::Time' => '2.11',
10059 'OS2::Process' => '1.10',
10060 'POSIX' => '1.40',
10061 'PerlIO::encoding' => '0.19',
10062 'PerlIO::mmap' => '0.013',
10063 'PerlIO::scalar' => '0.19',
10064 'PerlIO::via' => '0.15',
10065 'Pod::Html' => '1.22',
10066 'Scalar::Util' => '1.39',
10067 'SelfLoader' => '1.22',
10068 'Socket' => '2.014',
10069 'Storable' => '2.51',
10070 'TAP::Base' => '3.32',
10071 'TAP::Formatter::Base' => '3.32',
10072 'TAP::Formatter::Color' => '3.32',
10073 'TAP::Formatter::Console'=> '3.32',
10074 'TAP::Formatter::Console::ParallelSession'=> '3.32',
10075 'TAP::Formatter::Console::Session'=> '3.32',
10076 'TAP::Formatter::File' => '3.32',
10077 'TAP::Formatter::File::Session'=> '3.32',
10078 'TAP::Formatter::Session'=> '3.32',
10079 'TAP::Harness' => '3.32',
10080 'TAP::Harness::Env' => '3.32',
10081 'TAP::Object' => '3.32',
10082 'TAP::Parser' => '3.32',
10083 'TAP::Parser::Aggregator'=> '3.32',
10084 'TAP::Parser::Grammar' => '3.32',
10085 'TAP::Parser::Iterator' => '3.32',
10086 'TAP::Parser::Iterator::Array'=> '3.32',
10087 'TAP::Parser::Iterator::Process'=> '3.32',
10088 'TAP::Parser::Iterator::Stream'=> '3.32',
10089 'TAP::Parser::IteratorFactory'=> '3.32',
10090 'TAP::Parser::Multiplexer'=> '3.32',
10091 'TAP::Parser::Result' => '3.32',
10092 'TAP::Parser::Result::Bailout'=> '3.32',
10093 'TAP::Parser::Result::Comment'=> '3.32',
10094 'TAP::Parser::Result::Plan'=> '3.32',
10095 'TAP::Parser::Result::Pragma'=> '3.32',
10096 'TAP::Parser::Result::Test'=> '3.32',
10097 'TAP::Parser::Result::Unknown'=> '3.32',
10098 'TAP::Parser::Result::Version'=> '3.32',
10099 'TAP::Parser::Result::YAML'=> '3.32',
10100 'TAP::Parser::ResultFactory'=> '3.32',
10101 'TAP::Parser::Scheduler'=> '3.32',
10102 'TAP::Parser::Scheduler::Job'=> '3.32',
10103 'TAP::Parser::Scheduler::Spinner'=> '3.32',
10104 'TAP::Parser::Source' => '3.32',
10105 'TAP::Parser::SourceHandler'=> '3.32',
10106 'TAP::Parser::SourceHandler::Executable'=> '3.32',
10107 'TAP::Parser::SourceHandler::File'=> '3.32',
10108 'TAP::Parser::SourceHandler::Handle'=> '3.32',
10109 'TAP::Parser::SourceHandler::Perl'=> '3.32',
10110 'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10111 'TAP::Parser::YAMLish::Reader'=> '3.32',
10112 'TAP::Parser::YAMLish::Writer'=> '3.32',
10113 'Term::ANSIColor' => '4.03',
10114 'Test::Builder' => '1.001003',
10115 'Test::Builder::Module' => '1.001003',
10116 'Test::Builder::Tester' => '1.23_003',
10117 'Test::Harness' => '3.32',
10118 'Test::More' => '1.001003',
10119 'Test::Simple' => '1.001003',
10120 'Tie::File' => '1.01',
10121 'Unicode' => '7.0.0',
10122 'Unicode::Collate' => '1.07',
10123 'Unicode::Normalize' => '1.18',
10124 'Unicode::UCD' => '0.58',
10125 'XS::APItest' => '0.61',
10126 '_charnames' => '1.41',
10127 'autodie' => '2.25',
10128 'autodie::Scope::Guard' => '2.25',
10129 'autodie::Scope::GuardStack'=> '2.25',
10130 'autodie::ScopeUtil' => '2.25',
10131 'autodie::exception' => '2.25',
10132 'autodie::exception::system'=> '2.25',
10133 'autodie::hints' => '2.25',
10134 'autodie::skip' => '2.25',
10135 'charnames' => '1.41',
10136 'locale' => '1.04',
10137 'threads' => '1.94',
10138 'utf8' => '1.14',
10139 'warnings' => '1.24',
5a534470
RS
10140 },
10141 removed => {
10142 }
10143 },
2901561d
MH
10144 5.021002 => {
10145 delta_from => 5.021001,
10146 changed => {
6488e103 10147 'B' => '1.50',
2901561d 10148 'Config' => '5.021002',
6488e103
A
10149 'Cwd' => '3.49',
10150 'Devel::Peek' => '1.18',
10151 'ExtUtils::Manifest' => '1.64',
10152 'File::Copy' => '2.30',
10153 'File::Spec' => '3.49',
10154 'File::Spec::Cygwin' => '3.49',
10155 'File::Spec::Epoc' => '3.49',
10156 'File::Spec::Functions' => '3.49',
10157 'File::Spec::Mac' => '3.49',
10158 'File::Spec::OS2' => '3.49',
10159 'File::Spec::Unix' => '3.49',
10160 'File::Spec::VMS' => '3.49',
10161 'File::Spec::Win32' => '3.49',
10162 'Filter::Simple' => '0.92',
10163 'Hash::Util' => '0.18',
10164 'IO' => '1.33',
10165 'IO::Socket::IP' => '0.31',
10166 'IPC::Open3' => '1.17',
10167 'Math::BigFloat' => '1.9996',
10168 'Math::BigInt' => '1.9996',
10169 'Math::BigInt::Calc' => '1.9996',
10170 'Math::BigInt::CalcEmu' => '1.9996',
2901561d
MH
10171 'Module::CoreList' => '5.021002',
10172 'Module::CoreList::TieHashDelta'=> '5.021002',
10173 'Module::CoreList::Utils'=> '5.021002',
6488e103
A
10174 'POSIX' => '1.41',
10175 'Pod::Usage' => '1.64',
10176 'XS::APItest' => '0.62',
10177 'arybase' => '0.08',
10178 'experimental' => '0.008',
10179 'threads' => '1.95',
10180 'warnings' => '1.26',
2901561d
MH
10181 },
10182 removed => {
10183 }
10184 },
633c51bc
A
10185 5.021003 => {
10186 delta_from => 5.021002,
10187 changed => {
46e58890
PM
10188 'B::Debug' => '1.21',
10189 'CPAN::Meta' => '2.142060',
10190 'CPAN::Meta::Converter' => '2.142060',
10191 'CPAN::Meta::Feature' => '2.142060',
10192 'CPAN::Meta::History' => '2.142060',
10193 'CPAN::Meta::Merge' => '2.142060',
10194 'CPAN::Meta::Prereqs' => '2.142060',
10195 'CPAN::Meta::Requirements'=> '2.126',
10196 'CPAN::Meta::Spec' => '2.142060',
10197 'CPAN::Meta::Validator' => '2.142060',
633c51bc 10198 'Config' => '5.021003',
46e58890
PM
10199 'Config::Perl::V' => '0.22',
10200 'ExtUtils::CBuilder' => '0.280217',
10201 'ExtUtils::CBuilder::Base'=> '0.280217',
10202 'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10203 'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10204 'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10205 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10206 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10207 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10208 'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10209 'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10210 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10211 'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10212 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10213 'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10214 'ExtUtils::Manifest' => '1.65',
10215 'HTTP::Tiny' => '0.047',
10216 'IPC::Open3' => '1.18',
10217 'Module::CoreList' => '5.021003',
10218 'Module::CoreList::TieHashDelta'=> '5.021003',
10219 'Module::CoreList::Utils'=> '5.021003',
10220 'Opcode' => '1.28',
10221 'POSIX' => '1.42',
10222 'Safe' => '2.38',
10223 'Socket' => '2.015',
10224 'Sys::Hostname' => '1.19',
10225 'UNIVERSAL' => '1.12',
10226 'XS::APItest' => '0.63',
10227 'perlfaq' => '5.0150045',
633c51bc
A
10228 },
10229 removed => {
10230 }
10231 },
1c6aa017
SH
10232 5.020001 => {
10233 delta_from => 5.020000,
10234 changed => {
10235 'Config' => '5.020001',
10236 'Config::Perl::V' => '0.22',
10237 'Cwd' => '3.48',
10238 'Exporter' => '5.71',
10239 'Exporter::Heavy' => '5.71',
10240 'ExtUtils::CBuilder' => '0.280217',
10241 'ExtUtils::CBuilder::Base'=> '0.280217',
10242 'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10243 'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10244 'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10245 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10246 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10247 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10248 'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10249 'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10250 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10251 'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10252 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10253 'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10254 'File::Copy' => '2.30',
10255 'File::Spec' => '3.48',
10256 'File::Spec::Cygwin' => '3.48',
10257 'File::Spec::Epoc' => '3.48',
10258 'File::Spec::Functions' => '3.48',
10259 'File::Spec::Mac' => '3.48',
10260 'File::Spec::OS2' => '3.48',
10261 'File::Spec::Unix' => '3.48',
10262 'File::Spec::VMS' => '3.48',
10263 'File::Spec::Win32' => '3.48',
10264 'Module::CoreList' => '5.020001',
10265 'Module::CoreList::TieHashDelta'=> '5.020001',
10266 'Module::CoreList::Utils'=> '5.020001',
10267 'PerlIO::via' => '0.15',
10268 'Unicode::UCD' => '0.58',
10269 'XS::APItest' => '0.60_01',
10270 'utf8' => '1.13_01',
10271 'version' => '0.9909',
10272 'version::regex' => '0.9909',
10273 'version::vpp' => '0.9909',
10274 },
10275 removed => {
10276 }
10277 },
14cc2657
SH
10278 5.021004 => {
10279 delta_from => 5.021003,
10280 changed => {
50e7b15e
SH
10281 'App::Prove' => '3.33',
10282 'App::Prove::State' => '3.33',
10283 'App::Prove::State::Result'=> '3.33',
10284 'App::Prove::State::Result::Test'=> '3.33',
10285 'Archive::Tar' => '2.02',
10286 'Archive::Tar::Constant'=> '2.02',
10287 'Archive::Tar::File' => '2.02',
10288 'Attribute::Handlers' => '0.97',
10289 'B' => '1.51',
10290 'B::Concise' => '0.993',
10291 'B::Deparse' => '1.28',
10292 'B::Op_private' => '5.021004',
10293 'CPAN::Meta::Requirements'=> '2.128',
10294 'Config' => '5.021004',
10295 'Cwd' => '3.50',
10296 'Data::Dumper' => '2.154',
10297 'ExtUtils::CBuilder' => '0.280219',
10298 'ExtUtils::CBuilder::Base'=> '0.280219',
10299 'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10300 'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10301 'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10302 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10303 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10304 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10305 'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10306 'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10307 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10308 'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10309 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10310 'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10311 'ExtUtils::Install' => '2.04',
10312 'ExtUtils::Installed' => '2.04',
10313 'ExtUtils::Liblist::Kid'=> '6.98_01',
10314 'ExtUtils::Manifest' => '1.68',
10315 'ExtUtils::Packlist' => '2.04',
10316 'File::Find' => '1.28',
10317 'File::Spec' => '3.50',
10318 'File::Spec::Cygwin' => '3.50',
10319 'File::Spec::Epoc' => '3.50',
10320 'File::Spec::Functions' => '3.50',
10321 'File::Spec::Mac' => '3.50',
10322 'File::Spec::OS2' => '3.50',
10323 'File::Spec::Unix' => '3.50',
10324 'File::Spec::VMS' => '3.50',
10325 'File::Spec::Win32' => '3.50',
10326 'Getopt::Std' => '1.11',
10327 'HTTP::Tiny' => '0.049',
10328 'IO' => '1.34',
10329 'IO::Socket::IP' => '0.32',
10330 'List::Util' => '1.41',
10331 'List::Util::XS' => '1.41',
10332 'Locale::Codes' => '3.32',
10333 'Locale::Codes::Constants'=> '3.32',
10334 'Locale::Codes::Country'=> '3.32',
10335 'Locale::Codes::Country_Codes'=> '3.32',
10336 'Locale::Codes::Country_Retired'=> '3.32',
10337 'Locale::Codes::Currency'=> '3.32',
10338 'Locale::Codes::Currency_Codes'=> '3.32',
10339 'Locale::Codes::Currency_Retired'=> '3.32',
10340 'Locale::Codes::LangExt'=> '3.32',
10341 'Locale::Codes::LangExt_Codes'=> '3.32',
10342 'Locale::Codes::LangExt_Retired'=> '3.32',
10343 'Locale::Codes::LangFam'=> '3.32',
10344 'Locale::Codes::LangFam_Codes'=> '3.32',
10345 'Locale::Codes::LangFam_Retired'=> '3.32',
10346 'Locale::Codes::LangVar'=> '3.32',
10347 'Locale::Codes::LangVar_Codes'=> '3.32',
10348 'Locale::Codes::LangVar_Retired'=> '3.32',
10349 'Locale::Codes::Language'=> '3.32',
10350 'Locale::Codes::Language_Codes'=> '3.32',
10351 'Locale::Codes::Language_Retired'=> '3.32',
10352 'Locale::Codes::Script' => '3.32',
10353 'Locale::Codes::Script_Codes'=> '3.32',
10354 'Locale::Codes::Script_Retired'=> '3.32',
10355 'Locale::Country' => '3.32',
10356 'Locale::Currency' => '3.32',
10357 'Locale::Language' => '3.32',
10358 'Locale::Script' => '3.32',
10359 'Math::BigFloat' => '1.9997',
10360 'Math::BigInt' => '1.9997',
10361 'Math::BigInt::Calc' => '1.9997',
10362 'Math::BigInt::CalcEmu' => '1.9997',
10363 'Module::CoreList' => '5.20140920',
10364 'Module::CoreList::TieHashDelta'=> '5.20140920',
10365 'Module::CoreList::Utils'=> '5.20140920',
10366 'POSIX' => '1.43',
10367 'Pod::Perldoc' => '3.24',
10368 'Pod::Perldoc::BaseTo' => '3.24',
10369 'Pod::Perldoc::GetOptsOO'=> '3.24',
10370 'Pod::Perldoc::ToANSI' => '3.24',
10371 'Pod::Perldoc::ToChecker'=> '3.24',
10372 'Pod::Perldoc::ToMan' => '3.24',
10373 'Pod::Perldoc::ToNroff' => '3.24',
10374 'Pod::Perldoc::ToPod' => '3.24',
10375 'Pod::Perldoc::ToRtf' => '3.24',
10376 'Pod::Perldoc::ToTerm' => '3.24',
10377 'Pod::Perldoc::ToText' => '3.24',
10378 'Pod::Perldoc::ToTk' => '3.24',
10379 'Pod::Perldoc::ToXml' => '3.24',
10380 'Scalar::Util' => '1.41',
10381 'Sub::Util' => '1.41',
10382 'TAP::Base' => '3.33',
10383 'TAP::Formatter::Base' => '3.33',
10384 'TAP::Formatter::Color' => '3.33',
10385 'TAP::Formatter::Console'=> '3.33',
10386 'TAP::Formatter::Console::ParallelSession'=> '3.33',
10387 'TAP::Formatter::Console::Session'=> '3.33',
10388 'TAP::Formatter::File' => '3.33',
10389 'TAP::Formatter::File::Session'=> '3.33',
10390 'TAP::Formatter::Session'=> '3.33',
10391 'TAP::Harness' => '3.33',
10392 'TAP::Harness::Env' => '3.33',
10393 'TAP::Object' => '3.33',
10394 'TAP::Parser' => '3.33',
10395 'TAP::Parser::Aggregator'=> '3.33',
10396 'TAP::Parser::Grammar' => '3.33',
10397 'TAP::Parser::Iterator' => '3.33',
10398 'TAP::Parser::Iterator::Array'=> '3.33',
10399 'TAP::Parser::Iterator::Process'=> '3.33',
10400 'TAP::Parser::Iterator::Stream'=> '3.33',
10401 'TAP::Parser::IteratorFactory'=> '3.33',
10402 'TAP::Parser::Multiplexer'=> '3.33',
10403 'TAP::Parser::Result' => '3.33',
10404 'TAP::Parser::Result::Bailout'=> '3.33',
10405 'TAP::Parser::Result::Comment'=> '3.33',
10406 'TAP::Parser::Result::Plan'=> '3.33',
10407 'TAP::Parser::Result::Pragma'=> '3.33',
10408 'TAP::Parser::Result::Test'=> '3.33',
10409 'TAP::Parser::Result::Unknown'=> '3.33',
10410 'TAP::Parser::Result::Version'=> '3.33',
10411 'TAP::Parser::Result::YAML'=> '3.33',
10412 'TAP::Parser::ResultFactory'=> '3.33',
10413 'TAP::Parser::Scheduler'=> '3.33',
10414 'TAP::Parser::Scheduler::Job'=> '3.33',
10415 'TAP::Parser::Scheduler::Spinner'=> '3.33',
10416 'TAP::Parser::Source' => '3.33',
10417 'TAP::Parser::SourceHandler'=> '3.33',
10418 'TAP::Parser::SourceHandler::Executable'=> '3.33',
10419 'TAP::Parser::SourceHandler::File'=> '3.33',
10420 'TAP::Parser::SourceHandler::Handle'=> '3.33',
10421 'TAP::Parser::SourceHandler::Perl'=> '3.33',
10422 'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10423 'TAP::Parser::YAMLish::Reader'=> '3.33',
10424 'TAP::Parser::YAMLish::Writer'=> '3.33',
10425 'Term::ReadLine' => '1.15',
10426 'Test::Builder' => '1.001006',
10427 'Test::Builder::Module' => '1.001006',
10428 'Test::Builder::Tester' => '1.24',
10429 'Test::Builder::Tester::Color'=> '1.24',
10430 'Test::Harness' => '3.33',
10431 'Test::More' => '1.001006',
10432 'Test::Simple' => '1.001006',
10433 'Time::Piece' => '1.29',
10434 'Time::Seconds' => '1.29',
10435 'XS::APItest' => '0.64',
10436 '_charnames' => '1.42',
10437 'attributes' => '0.23',
10438 'bigint' => '0.37',
10439 'bignum' => '0.38',
10440 'bigrat' => '0.37',
10441 'constant' => '1.32',
10442 'experimental' => '0.010',
10443 'overload' => '1.23',
10444 'threads' => '1.96',
10445 'version' => '0.9909',
10446 'version::regex' => '0.9909',
10447 'version::vpp' => '0.9909',
14cc2657
SH
10448 },
10449 removed => {
10450 }
10451 },
84d03adf
SH
10452 5.021005 => {
10453 delta_from => 5.021004,
10454 changed => {
54457154
A
10455 'B' => '1.52',
10456 'B::Concise' => '0.994',
10457 'B::Debug' => '1.22',
10458 'B::Deparse' => '1.29',
84d03adf 10459 'B::Op_private' => '5.021005',
54457154
A
10460 'CPAN::Meta' => '2.142690',
10461 'CPAN::Meta::Converter' => '2.142690',
10462 'CPAN::Meta::Feature' => '2.142690',
10463 'CPAN::Meta::History' => '2.142690',
10464 'CPAN::Meta::Merge' => '2.142690',
10465 'CPAN::Meta::Prereqs' => '2.142690',
10466 'CPAN::Meta::Spec' => '2.142690',
10467 'CPAN::Meta::Validator' => '2.142690',
10468 'Compress::Raw::Bzip2' => '2.066',
10469 'Compress::Raw::Zlib' => '2.066',
10470 'Compress::Zlib' => '2.066',
84d03adf 10471 'Config' => '5.021005',
54457154
A
10472 'Cwd' => '3.51',
10473 'DynaLoader' => '1.27',
10474 'Errno' => '1.21',
10475 'ExtUtils::CBuilder' => '0.280220',
10476 'ExtUtils::CBuilder::Base'=> '0.280220',
10477 'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10478 'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10479 'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10480 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10481 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10482 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10483 'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10484 'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10485 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10486 'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10487 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10488 'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10489 'ExtUtils::Miniperl' => '1.03',
10490 'Fcntl' => '1.13',
10491 'File::Find' => '1.29',
10492 'File::Spec' => '3.51',
10493 'File::Spec::Cygwin' => '3.51',
10494 'File::Spec::Epoc' => '3.51',
10495 'File::Spec::Functions' => '3.51',
10496 'File::Spec::Mac' => '3.51',
10497 'File::Spec::OS2' => '3.51',
10498 'File::Spec::Unix' => '3.51',
10499 'File::Spec::VMS' => '3.51',
10500 'File::Spec::Win32' => '3.51',
10501 'HTTP::Tiny' => '0.050',
10502 'IO::Compress::Adapter::Bzip2'=> '2.066',
10503 'IO::Compress::Adapter::Deflate'=> '2.066',
10504 'IO::Compress::Adapter::Identity'=> '2.066',
10505 'IO::Compress::Base' => '2.066',
10506 'IO::Compress::Base::Common'=> '2.066',
10507 'IO::Compress::Bzip2' => '2.066',
10508 'IO::Compress::Deflate' => '2.066',
10509 'IO::Compress::Gzip' => '2.066',
10510 'IO::Compress::Gzip::Constants'=> '2.066',
10511 'IO::Compress::RawDeflate'=> '2.066',
10512 'IO::Compress::Zip' => '2.066',
10513 'IO::Compress::Zip::Constants'=> '2.066',
10514 'IO::Compress::Zlib::Constants'=> '2.066',
10515 'IO::Compress::Zlib::Extra'=> '2.066',
10516 'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10517 'IO::Uncompress::Adapter::Identity'=> '2.066',
10518 'IO::Uncompress::Adapter::Inflate'=> '2.066',
10519 'IO::Uncompress::AnyInflate'=> '2.066',
10520 'IO::Uncompress::AnyUncompress'=> '2.066',
10521 'IO::Uncompress::Base' => '2.066',
10522 'IO::Uncompress::Bunzip2'=> '2.066',
10523 'IO::Uncompress::Gunzip'=> '2.066',
10524 'IO::Uncompress::Inflate'=> '2.066',
10525 'IO::Uncompress::RawInflate'=> '2.066',
10526 'IO::Uncompress::Unzip' => '2.066',
10527 'JSON::PP' => '2.27300',
84d03adf
SH
10528 'Module::CoreList' => '5.20141020',
10529 'Module::CoreList::TieHashDelta'=> '5.20141020',
10530 'Module::CoreList::Utils'=> '5.20141020',
54457154
A
10531 'Net::Cmd' => '3.02',
10532 'Net::Config' => '3.02',
10533 'Net::Domain' => '3.02',
10534 'Net::FTP' => '3.02',
10535 'Net::FTP::A' => '3.02',
10536 'Net::FTP::E' => '3.02',
10537 'Net::FTP::I' => '3.02',
10538 'Net::FTP::L' => '3.02',
10539 'Net::FTP::dataconn' => '3.02',
10540 'Net::NNTP' => '3.02',
10541 'Net::Netrc' => '3.02',
10542 'Net::POP3' => '3.02',
10543 'Net::SMTP' => '3.02',
10544 'Net::Time' => '3.02',
10545 'Opcode' => '1.29',
10546 'POSIX' => '1.45',
10547 'Socket' => '2.016',
10548 'Test::Builder' => '1.001008',
10549 'Test::Builder::Module' => '1.001008',
10550 'Test::More' => '1.001008',
10551 'Test::Simple' => '1.001008',
10552 'XS::APItest' => '0.65',
10553 'XSLoader' => '0.18',
10554 'attributes' => '0.24',
10555 'experimental' => '0.012',
10556 'feature' => '1.38',
10557 'perlfaq' => '5.0150046',
10558 're' => '0.27',
10559 'threads::shared' => '1.47',
10560 'warnings' => '1.28',
10561 'warnings::register' => '1.04',
84d03adf
SH
10562 },
10563 removed => {
10564 }
10565 },
e22432a4 10566 5.021006 => {
20f5d8f8
CBW
10567 delta_from => 5.021005,
10568 changed => {
10569 'App::Prove' => '3.34',
10570 'App::Prove::State' => '3.34',
10571 'App::Prove::State::Result'=> '3.34',
10572 'App::Prove::State::Result::Test'=> '3.34',
10573 'B' => '1.53',
10574 'B::Concise' => '0.995',
10575 'B::Deparse' => '1.30',
10576 'B::Op_private' => '5.021006',
10577 'CPAN::Meta' => '2.143240',
10578 'CPAN::Meta::Converter' => '2.143240',
10579 'CPAN::Meta::Feature' => '2.143240',
10580 'CPAN::Meta::History' => '2.143240',
10581 'CPAN::Meta::Merge' => '2.143240',
10582 'CPAN::Meta::Prereqs' => '2.143240',
10583 'CPAN::Meta::Requirements'=> '2.130',
10584 'CPAN::Meta::Spec' => '2.143240',
10585 'CPAN::Meta::Validator' => '2.143240',
10586 'Config' => '5.021006',
10587 'Devel::Peek' => '1.19',
10588 'Digest::SHA' => '5.93',
10589 'DynaLoader' => '1.28',
10590 'Encode' => '2.64',
10591 'Exporter' => '5.72',
10592 'Exporter::Heavy' => '5.72',
10593 'ExtUtils::Command::MM' => '7.02',
10594 'ExtUtils::Liblist' => '7.02',
10595 'ExtUtils::Liblist::Kid'=> '7.02',
10596 'ExtUtils::MM' => '7.02',
10597 'ExtUtils::MM_AIX' => '7.02',
10598 'ExtUtils::MM_Any' => '7.02',
10599 'ExtUtils::MM_BeOS' => '7.02',
10600 'ExtUtils::MM_Cygwin' => '7.02',
10601 'ExtUtils::MM_DOS' => '7.02',
10602 'ExtUtils::MM_Darwin' => '7.02',
10603 'ExtUtils::MM_MacOS' => '7.02',
10604 'ExtUtils::MM_NW5' => '7.02',
10605 'ExtUtils::MM_OS2' => '7.02',
10606 'ExtUtils::MM_QNX' => '7.02',
10607 'ExtUtils::MM_UWIN' => '7.02',
10608 'ExtUtils::MM_Unix' => '7.02',
10609 'ExtUtils::MM_VMS' => '7.02',
10610 'ExtUtils::MM_VOS' => '7.02',
10611 'ExtUtils::MM_Win32' => '7.02',
10612 'ExtUtils::MM_Win95' => '7.02',
10613 'ExtUtils::MY' => '7.02',
10614 'ExtUtils::MakeMaker' => '7.02',
10615 'ExtUtils::MakeMaker::Config'=> '7.02',
10616 'ExtUtils::MakeMaker::Locale'=> '7.02',
10617 'ExtUtils::MakeMaker::version'=> '7.02',
10618 'ExtUtils::MakeMaker::version::regex'=> '7.02',
10619 'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10620 'ExtUtils::Manifest' => '1.69',
10621 'ExtUtils::Mkbootstrap' => '7.02',
10622 'ExtUtils::Mksymlists' => '7.02',
10623 'ExtUtils::ParseXS' => '3.26',
10624 'ExtUtils::ParseXS::Constants'=> '3.26',
10625 'ExtUtils::ParseXS::CountLines'=> '3.26',
10626 'ExtUtils::ParseXS::Eval'=> '3.26',
10627 'ExtUtils::ParseXS::Utilities'=> '3.26',
10628 'ExtUtils::testlib' => '7.02',
10629 'File::Spec::VMS' => '3.52',
10630 'HTTP::Tiny' => '0.051',
10631 'I18N::Langinfo' => '0.12',
10632 'IO::Socket' => '1.38',
10633 'Module::CoreList' => '5.20141120',
10634 'Module::CoreList::TieHashDelta'=> '5.20141120',
10635 'Module::CoreList::Utils'=> '5.20141120',
10636 'POSIX' => '1.46',
10637 'PerlIO::encoding' => '0.20',
10638 'PerlIO::scalar' => '0.20',
10639 'TAP::Base' => '3.34',
10640 'TAP::Formatter::Base' => '3.34',
10641 'TAP::Formatter::Color' => '3.34',
10642 'TAP::Formatter::Console'=> '3.34',
10643 'TAP::Formatter::Console::ParallelSession'=> '3.34',
10644 'TAP::Formatter::Console::Session'=> '3.34',
10645 'TAP::Formatter::File' => '3.34',
10646 'TAP::Formatter::File::Session'=> '3.34',
10647 'TAP::Formatter::Session'=> '3.34',
10648 'TAP::Harness' => '3.34',
10649 'TAP::Harness::Env' => '3.34',
10650 'TAP::Object' => '3.34',
10651 'TAP::Parser' => '3.34',
10652 'TAP::Parser::Aggregator'=> '3.34',
10653 'TAP::Parser::Grammar' => '3.34',
10654 'TAP::Parser::Iterator' => '3.34',
10655 'TAP::Parser::Iterator::Array'=> '3.34',
10656 'TAP::Parser::Iterator::Process'=> '3.34',
10657 'TAP::Parser::Iterator::Stream'=> '3.34',
10658 'TAP::Parser::IteratorFactory'=> '3.34',
10659 'TAP::Parser::Multiplexer'=> '3.34',
10660 'TAP::Parser::Result' => '3.34',
10661 'TAP::Parser::Result::Bailout'=> '3.34',
10662 'TAP::Parser::Result::Comment'=> '3.34',
10663 'TAP::Parser::Result::Plan'=> '3.34',
10664 'TAP::Parser::Result::Pragma'=> '3.34',
10665 'TAP::Parser::Result::Test'=> '3.34',
10666 'TAP::Parser::Result::Unknown'=> '3.34',
10667 'TAP::Parser::Result::Version'=> '3.34',
10668 'TAP::Parser::Result::YAML'=> '3.34',
10669 'TAP::Parser::ResultFactory'=> '3.34',
10670 'TAP::Parser::Scheduler'=> '3.34',
10671 'TAP::Parser::Scheduler::Job'=> '3.34',
10672 'TAP::Parser::Scheduler::Spinner'=> '3.34',
10673 'TAP::Parser::Source' => '3.34',
10674 'TAP::Parser::SourceHandler'=> '3.34',
10675 'TAP::Parser::SourceHandler::Executable'=> '3.34',
10676 'TAP::Parser::SourceHandler::File'=> '3.34',
10677 'TAP::Parser::SourceHandler::Handle'=> '3.34',
10678 'TAP::Parser::SourceHandler::Perl'=> '3.34',
10679 'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10680 'TAP::Parser::YAMLish::Reader'=> '3.34',
10681 'TAP::Parser::YAMLish::Writer'=> '3.34',
10682 'Test::Builder' => '1.301001_075',
10683 'Test::Builder::Module' => '1.301001_075',
10684 'Test::Builder::Tester' => '1.301001_075',
10685 'Test::Builder::Tester::Color'=> '1.301001_075',
10686 'Test::Harness' => '3.34',
10687 'Test::More' => '1.301001_075',
10688 'Test::More::DeepCheck' => undef,
10689 'Test::More::DeepCheck::Strict'=> undef,
10690 'Test::More::DeepCheck::Tolerant'=> undef,
10691 'Test::More::Tools' => undef,
10692 'Test::MostlyLike' => undef,
10693 'Test::Simple' => '1.301001_075',
10694 'Test::Stream' => '1.301001_075',
10695 'Test::Stream::ArrayBase'=> undef,
10696 'Test::Stream::ArrayBase::Meta'=> undef,
10697 'Test::Stream::Carp' => undef,
10698 'Test::Stream::Context' => undef,
10699 'Test::Stream::Event' => undef,
10700 'Test::Stream::Event::Bail'=> undef,
10701 'Test::Stream::Event::Child'=> undef,
10702 'Test::Stream::Event::Diag'=> undef,
10703 'Test::Stream::Event::Finish'=> undef,
10704 'Test::Stream::Event::Note'=> undef,
10705 'Test::Stream::Event::Ok'=> undef,
10706 'Test::Stream::Event::Plan'=> undef,
10707 'Test::Stream::Event::Subtest'=> undef,
10708 'Test::Stream::ExitMagic'=> undef,
10709 'Test::Stream::ExitMagic::Context'=> undef,
10710 'Test::Stream::Exporter'=> undef,
10711 'Test::Stream::Exporter::Meta'=> undef,
10712 'Test::Stream::IOSets' => undef,
10713 'Test::Stream::Meta' => undef,
10714 'Test::Stream::PackageUtil'=> undef,
10715 'Test::Stream::Tester' => undef,
10716 'Test::Stream::Tester::Checks'=> undef,
10717 'Test::Stream::Tester::Checks::Event'=> undef,
10718 'Test::Stream::Tester::Events'=> undef,
10719 'Test::Stream::Tester::Events::Event'=> undef,
10720 'Test::Stream::Tester::Grab'=> undef,
10721 'Test::Stream::Threads' => undef,
10722 'Test::Stream::Toolset' => undef,
10723 'Test::Stream::Util' => undef,
10724 'Test::Tester' => '1.301001_075',
10725 'Test::Tester::Capture' => undef,
10726 'Test::use::ok' => '1.301001_075',
10727 'Unicode::UCD' => '0.59',
10728 'XS::APItest' => '0.68',
10729 'XSLoader' => '0.19',
10730 'experimental' => '0.013',
10731 'locale' => '1.05',
10732 'ok' => '1.301001_075',
10733 'overload' => '1.24',
10734 're' => '0.28',
10735 'warnings' => '1.29',
e22432a4
A
10736 },
10737 removed => {
20f5d8f8 10738 }
e22432a4 10739 },
3f572b05
CBW
10740 5.021007 => {
10741 delta_from => 5.021006,
10742 changed => {
e544daaa
MM
10743 'Archive::Tar' => '2.04',
10744 'Archive::Tar::Constant'=> '2.04',
10745 'Archive::Tar::File' => '2.04',
10746 'B' => '1.54',
10747 'B::Concise' => '0.996',
10748 'B::Deparse' => '1.31',
3f572b05 10749 'B::Op_private' => '5.021007',
e544daaa
MM
10750 'B::Showlex' => '1.05',
10751 'Compress::Raw::Bzip2' => '2.067',
10752 'Compress::Raw::Zlib' => '2.067',
10753 'Compress::Zlib' => '2.067',
3f572b05 10754 'Config' => '5.021007',
e544daaa
MM
10755 'Cwd' => '3.54',
10756 'DB_File' => '1.834',
10757 'Data::Dumper' => '2.155',
10758 'Devel::PPPort' => '3.25',
10759 'Devel::Peek' => '1.20',
10760 'DynaLoader' => '1.29',
10761 'Encode' => '2.67',
10762 'Errno' => '1.22',
10763 'ExtUtils::CBuilder' => '0.280221',
10764 'ExtUtils::CBuilder::Base'=> '0.280221',
10765 'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10766 'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10767 'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10768 'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10769 'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10770 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10771 'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10772 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10773 'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10774 'ExtUtils::Command::MM' => '7.04',
10775 'ExtUtils::Liblist' => '7.04',
10776 'ExtUtils::Liblist::Kid'=> '7.04',
10777 'ExtUtils::MM' => '7.04',
10778 'ExtUtils::MM_AIX' => '7.04',
10779 'ExtUtils::MM_Any' => '7.04',
10780 'ExtUtils::MM_BeOS' => '7.04',
10781 'ExtUtils::MM_Cygwin' => '7.04',
10782 'ExtUtils::MM_DOS' => '7.04',
10783 'ExtUtils::MM_Darwin' => '7.04',
10784 'ExtUtils::MM_MacOS' => '7.04',
10785 'ExtUtils::MM_NW5' => '7.04',
10786 'ExtUtils::MM_OS2' => '7.04',
10787 'ExtUtils::MM_QNX' => '7.04',
10788 'ExtUtils::MM_UWIN' => '7.04',
10789 'ExtUtils::MM_Unix' => '7.04',
10790 'ExtUtils::MM_VMS' => '7.04',
10791 'ExtUtils::MM_VOS' => '7.04',
10792 'ExtUtils::MM_Win32' => '7.04',
10793 'ExtUtils::MM_Win95' => '7.04',
10794 'ExtUtils::MY' => '7.04',
10795 'ExtUtils::MakeMaker' => '7.04',
10796 'ExtUtils::MakeMaker::Config'=> '7.04',
10797 'ExtUtils::MakeMaker::Locale'=> '7.04',
10798 'ExtUtils::MakeMaker::version'=> '7.04',
10799 'ExtUtils::MakeMaker::version::regex'=> '7.04',
10800 'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10801 'ExtUtils::Mkbootstrap' => '7.04',
10802 'ExtUtils::Mksymlists' => '7.04',
10803 'ExtUtils::ParseXS' => '3.27',
10804 'ExtUtils::ParseXS::Constants'=> '3.27',
10805 'ExtUtils::ParseXS::CountLines'=> '3.27',
10806 'ExtUtils::ParseXS::Eval'=> '3.27',
10807 'ExtUtils::ParseXS::Utilities'=> '3.27',
10808 'ExtUtils::testlib' => '7.04',
10809 'File::Spec' => '3.53',
10810 'File::Spec::Cygwin' => '3.54',
10811 'File::Spec::Epoc' => '3.54',
10812 'File::Spec::Functions' => '3.54',
10813 'File::Spec::Mac' => '3.54',
10814 'File::Spec::OS2' => '3.54',
10815 'File::Spec::Unix' => '3.54',
10816 'File::Spec::VMS' => '3.54',
10817 'File::Spec::Win32' => '3.54',
10818 'Filter::Util::Call' => '1.51',
10819 'HTTP::Tiny' => '0.053',
10820 'IO' => '1.35',
10821 'IO::Compress::Adapter::Bzip2'=> '2.067',
10822 'IO::Compress::Adapter::Deflate'=> '2.067',
10823 'IO::Compress::Adapter::Identity'=> '2.067',
10824 'IO::Compress::Base' => '2.067',
10825 'IO::Compress::Base::Common'=> '2.067',
10826 'IO::Compress::Bzip2' => '2.067',
10827 'IO::Compress::Deflate' => '2.067',
10828 'IO::Compress::Gzip' => '2.067',
10829 'IO::Compress::Gzip::Constants'=> '2.067',
10830 'IO::Compress::RawDeflate'=> '2.067',
10831 'IO::Compress::Zip' => '2.067',
10832 'IO::Compress::Zip::Constants'=> '2.067',
10833 'IO::Compress::Zlib::Constants'=> '2.067',
10834 'IO::Compress::Zlib::Extra'=> '2.067',
10835 'IO::Socket::IP' => '0.34',
10836 'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10837 'IO::Uncompress::Adapter::Identity'=> '2.067',
10838 'IO::Uncompress::Adapter::Inflate'=> '2.067',
10839 'IO::Uncompress::AnyInflate'=> '2.067',
10840 'IO::Uncompress::AnyUncompress'=> '2.067',
10841 'IO::Uncompress::Base' => '2.067',
10842 'IO::Uncompress::Bunzip2'=> '2.067',
10843 'IO::Uncompress::Gunzip'=> '2.067',
10844 'IO::Uncompress::Inflate'=> '2.067',
10845 'IO::Uncompress::RawInflate'=> '2.067',
10846 'IO::Uncompress::Unzip' => '2.067',
10847 'Locale::Codes' => '3.33',
10848 'Locale::Codes::Constants'=> '3.33',
10849 'Locale::Codes::Country'=> '3.33',
10850 'Locale::Codes::Country_Codes'=> '3.33',
10851 'Locale::Codes::Country_Retired'=> '3.33',
10852 'Locale::Codes::Currency'=> '3.33',
10853 'Locale::Codes::Currency_Codes'=> '3.33',
10854 'Locale::Codes::Currency_Retired'=> '3.33',
10855 'Locale::Codes::LangExt'=> '3.33',
10856 'Locale::Codes::LangExt_Codes'=> '3.33',
10857 'Locale::Codes::LangExt_Retired'=> '3.33',
10858 'Locale::Codes::LangFam'=> '3.33',
10859 'Locale::Codes::LangFam_Codes'=> '3.33',
10860 'Locale::Codes::LangFam_Retired'=> '3.33',
10861 'Locale::Codes::LangVar'=> '3.33',
10862 'Locale::Codes::LangVar_Codes'=> '3.33',
10863 'Locale::Codes::LangVar_Retired'=> '3.33',
10864 'Locale::Codes::Language'=> '3.33',
10865 'Locale::Codes::Language_Codes'=> '3.33',
10866 'Locale::Codes::Language_Retired'=> '3.33',
10867 'Locale::Codes::Script' => '3.33',
10868 'Locale::Codes::Script_Codes'=> '3.33',
10869 'Locale::Codes::Script_Retired'=> '3.33',
10870 'Locale::Country' => '3.33',
10871 'Locale::Currency' => '3.33',
10872 'Locale::Language' => '3.33',
10873 'Locale::Maketext' => '1.26',
10874 'Locale::Script' => '3.33',
3f572b05
CBW
10875 'Module::CoreList' => '5.20141220',
10876 'Module::CoreList::TieHashDelta'=> '5.20141220',
10877 'Module::CoreList::Utils'=> '5.20141220',
e544daaa
MM
10878 'NDBM_File' => '1.14',
10879 'Net::Cmd' => '3.04',
10880 'Net::Config' => '3.04',
10881 'Net::Domain' => '3.04',
10882 'Net::FTP' => '3.04',
10883 'Net::FTP::A' => '3.04',
10884 'Net::FTP::E' => '3.04',
10885 'Net::FTP::I' => '3.04',
10886 'Net::FTP::L' => '3.04',
10887 'Net::FTP::dataconn' => '3.04',
10888 'Net::NNTP' => '3.04',
10889 'Net::Netrc' => '3.04',
10890 'Net::POP3' => '3.04',
10891 'Net::SMTP' => '3.04',
10892 'Net::Time' => '3.04',
10893 'Opcode' => '1.30',
10894 'POSIX' => '1.48',
10895 'PerlIO::scalar' => '0.21',
10896 'Pod::Escapes' => '1.07',
10897 'SDBM_File' => '1.12',
10898 'Storable' => '2.52',
10899 'Sys::Hostname' => '1.20',
10900 'Test::Builder' => '1.301001_090',
10901 'Test::Builder::Module' => '1.301001_090',
10902 'Test::Builder::Tester' => '1.301001_090',
10903 'Test::Builder::Tester::Color'=> '1.301001_090',
10904 'Test::CanFork' => undef,
10905 'Test::CanThread' => undef,
10906 'Test::More' => '1.301001_090',
10907 'Test::Simple' => '1.301001_090',
10908 'Test::Stream' => '1.301001_090',
10909 'Test::Stream::API' => undef,
10910 'Test::Stream::ForceExit'=> undef,
10911 'Test::Stream::Subtest' => undef,
10912 'Test::Tester' => '1.301001_090',
10913 'Test::use::ok' => '1.301001_090',
10914 'Unicode::Collate' => '1.09',
10915 'Unicode::Collate::CJK::Big5'=> '1.09',
10916 'Unicode::Collate::CJK::GB2312'=> '1.09',
10917 'Unicode::Collate::CJK::JISX0208'=> '1.09',
10918 'Unicode::Collate::CJK::Korean'=> '1.09',
10919 'Unicode::Collate::CJK::Pinyin'=> '1.09',
10920 'Unicode::Collate::CJK::Stroke'=> '1.09',
10921 'Unicode::Collate::CJK::Zhuyin'=> '1.09',
10922 'Unicode::Collate::Locale'=> '1.09',
10923 'XS::APItest' => '0.69',
10924 'XSLoader' => '0.20',
10925 '_charnames' => '1.43',
10926 'arybase' => '0.09',
10927 'charnames' => '1.43',
10928 'feature' => '1.39',
10929 'mro' => '1.17',
10930 'ok' => '1.301001_090',
10931 'strict' => '1.09',
10932 'threads' => '1.96_001',
3f572b05
CBW
10933 },
10934 removed => {
10935 }
10936 },
e31034da
MM
10937 5.021008 => {
10938 delta_from => 5.021007,
10939 changed => {
50ab518c
MH
10940 'App::Prove' => '3.35',
10941 'App::Prove::State' => '3.35',
10942 'App::Prove::State::Result'=> '3.35',
10943 'App::Prove::State::Result::Test'=> '3.35',
10944 'B' => '1.55',
10945 'B::Deparse' => '1.32',
e31034da 10946 'B::Op_private' => '5.021008',
50ab518c
MH
10947 'CPAN::Meta::Requirements'=> '2.131',
10948 'Compress::Raw::Bzip2' => '2.068',
10949 'Compress::Raw::Zlib' => '2.068',
10950 'Compress::Zlib' => '2.068',
e31034da 10951 'Config' => '5.021008',
50ab518c
MH
10952 'DB_File' => '1.835',
10953 'Data::Dumper' => '2.156',
10954 'Devel::PPPort' => '3.28',
10955 'Devel::Peek' => '1.21',
10956 'Digest::MD5' => '2.54',
10957 'Digest::SHA' => '5.95',
10958 'DynaLoader' => '1.30',
10959 'ExtUtils::Command' => '1.20',
10960 'ExtUtils::Manifest' => '1.70',
10961 'Fatal' => '2.26',
10962 'File::Glob' => '1.24',
10963 'Filter::Util::Call' => '1.54',
10964 'Getopt::Long' => '2.43',
10965 'IO::Compress::Adapter::Bzip2'=> '2.068',
10966 'IO::Compress::Adapter::Deflate'=> '2.068',
10967 'IO::Compress::Adapter::Identity'=> '2.068',
10968 'IO::Compress::Base' => '2.068',
10969 'IO::Compress::Base::Common'=> '2.068',
10970 'IO::Compress::Bzip2' => '2.068',
10971 'IO::Compress::Deflate' => '2.068',
10972 'IO::Compress::Gzip' => '2.068',
10973 'IO::Compress::Gzip::Constants'=> '2.068',
10974 'IO::Compress::RawDeflate'=> '2.068',
10975 'IO::Compress::Zip' => '2.068',
10976 'IO::Compress::Zip::Constants'=> '2.068',
10977 'IO::Compress::Zlib::Constants'=> '2.068',
10978 'IO::Compress::Zlib::Extra'=> '2.068',
10979 'IO::Socket::IP' => '0.36',
10980 'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
10981 'IO::Uncompress::Adapter::Identity'=> '2.068',
10982 'IO::Uncompress::Adapter::Inflate'=> '2.068',
10983 'IO::Uncompress::AnyInflate'=> '2.068',
10984 'IO::Uncompress::AnyUncompress'=> '2.068',
10985 'IO::Uncompress::Base' => '2.068',
10986 'IO::Uncompress::Bunzip2'=> '2.068',
10987 'IO::Uncompress::Gunzip'=> '2.068',
10988 'IO::Uncompress::Inflate'=> '2.068',
10989 'IO::Uncompress::RawInflate'=> '2.068',
10990 'IO::Uncompress::Unzip' => '2.068',
10991 'MIME::Base64' => '3.15',
c543a22d
MH
10992 'Module::CoreList' => '5.20150220',
10993 'Module::CoreList::TieHashDelta'=> '5.20150220',
10994 'Module::CoreList::Utils'=> '5.20150220',
50ab518c
MH
10995 'Module::Load::Conditional'=> '0.64',
10996 'Module::Metadata' => '1.000026',
10997 'Net::Cmd' => '3.05',
10998 'Net::Config' => '3.05',
10999 'Net::Domain' => '3.05',
11000 'Net::FTP' => '3.05',
11001 'Net::FTP::A' => '3.05',
11002 'Net::FTP::E' => '3.05',
11003 'Net::FTP::I' => '3.05',
11004 'Net::FTP::L' => '3.05',
11005 'Net::FTP::dataconn' => '3.05',
11006 'Net::NNTP' => '3.05',
11007 'Net::Netrc' => '3.05',
11008 'Net::POP3' => '3.05',
11009 'Net::SMTP' => '3.05',
11010 'Net::Time' => '3.05',
11011 'Opcode' => '1.31',
11012 'POSIX' => '1.49',
11013 'PerlIO::encoding' => '0.21',
11014 'Pod::Simple' => '3.29',
11015 'Pod::Simple::BlackBox' => '3.29',
11016 'Pod::Simple::Checker' => '3.29',
11017 'Pod::Simple::Debug' => '3.29',
11018 'Pod::Simple::DumpAsText'=> '3.29',
11019 'Pod::Simple::DumpAsXML'=> '3.29',
11020 'Pod::Simple::HTML' => '3.29',
11021 'Pod::Simple::HTMLBatch'=> '3.29',
11022 'Pod::Simple::LinkSection'=> '3.29',
11023 'Pod::Simple::Methody' => '3.29',
11024 'Pod::Simple::Progress' => '3.29',
11025 'Pod::Simple::PullParser'=> '3.29',
11026 'Pod::Simple::PullParserEndToken'=> '3.29',
11027 'Pod::Simple::PullParserStartToken'=> '3.29',
11028 'Pod::Simple::PullParserTextToken'=> '3.29',
11029 'Pod::Simple::PullParserToken'=> '3.29',
11030 'Pod::Simple::RTF' => '3.29',
11031 'Pod::Simple::Search' => '3.29',
11032 'Pod::Simple::SimpleTree'=> '3.29',
11033 'Pod::Simple::Text' => '3.29',
11034 'Pod::Simple::TextContent'=> '3.29',
11035 'Pod::Simple::TiedOutFH'=> '3.29',
11036 'Pod::Simple::Transcode'=> '3.29',
11037 'Pod::Simple::TranscodeDumb'=> '3.29',
11038 'Pod::Simple::TranscodeSmart'=> '3.29',
11039 'Pod::Simple::XHTML' => '3.29',
11040 'Pod::Simple::XMLOutStream'=> '3.29',
11041 'SDBM_File' => '1.13',
11042 'Safe' => '2.39',
11043 'TAP::Base' => '3.35',
11044 'TAP::Formatter::Base' => '3.35',
11045 'TAP::Formatter::Color' => '3.35',
11046 'TAP::Formatter::Console'=> '3.35',
11047 'TAP::Formatter::Console::ParallelSession'=> '3.35',
11048 'TAP::Formatter::Console::Session'=> '3.35',
11049 'TAP::Formatter::File' => '3.35',
11050 'TAP::Formatter::File::Session'=> '3.35',
11051 'TAP::Formatter::Session'=> '3.35',
11052 'TAP::Harness' => '3.35',
11053 'TAP::Harness::Env' => '3.35',
11054 'TAP::Object' => '3.35',
11055 'TAP::Parser' => '3.35',
11056 'TAP::Parser::Aggregator'=> '3.35',
11057 'TAP::Parser::Grammar' => '3.35',
11058 'TAP::Parser::Iterator' => '3.35',
11059 'TAP::Parser::Iterator::Array'=> '3.35',
11060 'TAP::Parser::Iterator::Process'=> '3.35',
11061 'TAP::Parser::Iterator::Stream'=> '3.35',
11062 'TAP::Parser::IteratorFactory'=> '3.35',
11063 'TAP::Parser::Multiplexer'=> '3.35',
11064 'TAP::Parser::Result' => '3.35',
11065 'TAP::Parser::Result::Bailout'=> '3.35',
11066 'TAP::Parser::Result::Comment'=> '3.35',
11067 'TAP::Parser::Result::Plan'=> '3.35',
11068 'TAP::Parser::Result::Pragma'=> '3.35',
11069 'TAP::Parser::Result::Test'=> '3.35',
11070 'TAP::Parser::Result::Unknown'=> '3.35',
11071 'TAP::Parser::Result::Version'=> '3.35',
11072 'TAP::Parser::Result::YAML'=> '3.35',
11073 'TAP::Parser::ResultFactory'=> '3.35',
11074 'TAP::Parser::Scheduler'=> '3.35',
11075 'TAP::Parser::Scheduler::Job'=> '3.35',
11076 'TAP::Parser::Scheduler::Spinner'=> '3.35',
11077 'TAP::Parser::Source' => '3.35',
11078 'TAP::Parser::SourceHandler'=> '3.35',
11079 'TAP::Parser::SourceHandler::Executable'=> '3.35',
11080 'TAP::Parser::SourceHandler::File'=> '3.35',
11081 'TAP::Parser::SourceHandler::Handle'=> '3.35',
11082 'TAP::Parser::SourceHandler::Perl'=> '3.35',
11083 'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11084 'TAP::Parser::YAMLish::Reader'=> '3.35',
11085 'TAP::Parser::YAMLish::Writer'=> '3.35',
11086 'Test::Builder' => '1.301001_097',
11087 'Test::Builder::Module' => '1.301001_097',
11088 'Test::Builder::Tester' => '1.301001_097',
11089 'Test::Builder::Tester::Color'=> '1.301001_097',
11090 'Test::Harness' => '3.35',
11091 'Test::More' => '1.301001_097',
11092 'Test::Simple' => '1.301001_097',
11093 'Test::Stream' => '1.301001_097',
11094 'Test::Stream::Block' => undef,
11095 'Test::Tester' => '1.301001_097',
11096 'Test::Tester::CaptureRunner'=> undef,
11097 'Test::Tester::Delegate'=> undef,
11098 'Test::use::ok' => '1.301001_097',
11099 'Unicode::Collate' => '1.10',
11100 'Unicode::Collate::CJK::Big5'=> '1.10',
11101 'Unicode::Collate::CJK::GB2312'=> '1.10',
11102 'Unicode::Collate::CJK::JISX0208'=> '1.10',
11103 'Unicode::Collate::CJK::Korean'=> '1.10',
11104 'Unicode::Collate::CJK::Pinyin'=> '1.10',
11105 'Unicode::Collate::CJK::Stroke'=> '1.10',
11106 'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11107 'Unicode::Collate::Locale'=> '1.10',
11108 'VMS::DCLsym' => '1.06',
11109 'XS::APItest' => '0.70',
11110 'arybase' => '0.10',
11111 'attributes' => '0.25',
11112 'autodie' => '2.26',
11113 'autodie::Scope::Guard' => '2.26',
11114 'autodie::Scope::GuardStack'=> '2.26',
11115 'autodie::ScopeUtil' => '2.26',
11116 'autodie::exception' => '2.26',
11117 'autodie::exception::system'=> '2.26',
11118 'autodie::hints' => '2.26',
11119 'autodie::skip' => '2.26',
11120 'ok' => '1.301001_097',
11121 're' => '0.30',
11122 'warnings' => '1.30',
e31034da
MM
11123 },
11124 removed => {
11125 }
11126 },
8ad047ea
SH
11127 5.020002 => {
11128 delta_from => 5.020001,
11129 changed => {
11130 'CPAN::Author' => '5.5002',
11131 'CPAN::CacheMgr' => '5.5002',
11132 'CPAN::FTP' => '5.5006',
11133 'CPAN::HTTP::Client' => '1.9601',
11134 'CPAN::HandleConfig' => '5.5005',
11135 'CPAN::Index' => '1.9601',
11136 'CPAN::LWP::UserAgent' => '1.9601',
11137 'CPAN::Mirrors' => '1.9601',
11138 'Config' => '5.020002',
11139 'Cwd' => '3.48_01',
11140 'Data::Dumper' => '2.151_01',
11141 'Errno' => '1.20_05',
11142 'File::Spec' => '3.48_01',
11143 'File::Spec::Cygwin' => '3.48_01',
11144 'File::Spec::Epoc' => '3.48_01',
11145 'File::Spec::Functions' => '3.48_01',
11146 'File::Spec::Mac' => '3.48_01',
11147 'File::Spec::OS2' => '3.48_01',
11148 'File::Spec::Unix' => '3.48_01',
11149 'File::Spec::VMS' => '3.48_01',
11150 'File::Spec::Win32' => '3.48_01',
11151 'IO::Socket' => '1.38',
28a17c3c
SH
11152 'Module::CoreList' => '5.20150214',
11153 'Module::CoreList::TieHashDelta'=> '5.20150214',
11154 'Module::CoreList::Utils'=> '5.20150214',
8ad047ea
SH
11155 'PerlIO::scalar' => '0.18_01',
11156 'Pod::PlainText' => '2.07',
11157 'Storable' => '2.49_01',
11158 'VMS::DCLsym' => '1.05_01',
11159 'VMS::Stdio' => '2.41',
11160 'attributes' => '0.23',
11161 'feature' => '1.36_01',
11162 },
11163 removed => {
11164 }
11165 },
2e3866c3
MH
11166 5.021009 => {
11167 delta_from => 5.021008,
11168 changed => {
c02a3722
S
11169 'B' => '1.56',
11170 'B::Debug' => '1.23',
11171 'B::Deparse' => '1.33',
0d2b7240 11172 'B::Op_private' => '5.021009',
c02a3722
S
11173 'Benchmark' => '1.20',
11174 'CPAN::Author' => '5.5002',
11175 'CPAN::CacheMgr' => '5.5002',
11176 'CPAN::FTP' => '5.5006',
11177 'CPAN::HTTP::Client' => '1.9601',
11178 'CPAN::HandleConfig' => '5.5005',
11179 'CPAN::Index' => '1.9601',
11180 'CPAN::LWP::UserAgent' => '1.9601',
11181 'CPAN::Meta::Requirements'=> '2.132',
11182 'CPAN::Mirrors' => '1.9601',
11183 'Carp' => '1.35',
11184 'Carp::Heavy' => '1.35',
0d2b7240 11185 'Config' => '5.021009',
c02a3722
S
11186 'Config::Perl::V' => '0.23',
11187 'Data::Dumper' => '2.157',
11188 'Devel::Peek' => '1.22',
11189 'DynaLoader' => '1.31',
11190 'Encode' => '2.70',
11191 'Encode::MIME::Header' => '2.16',
11192 'Errno' => '1.23',
11193 'ExtUtils::Miniperl' => '1.04',
11194 'HTTP::Tiny' => '0.054',
0939a951
S
11195 'Module::CoreList' => '5.20150220',
11196 'Module::CoreList::TieHashDelta'=> '5.20150220',
11197 'Module::CoreList::Utils'=> '5.20150220',
c02a3722
S
11198 'Opcode' => '1.32',
11199 'POSIX' => '1.51',
11200 'Perl::OSType' => '1.008',
11201 'PerlIO::scalar' => '0.22',
11202 'Pod::Find' => '1.63',
11203 'Pod::InputObjects' => '1.63',
11204 'Pod::ParseUtils' => '1.63',
11205 'Pod::Parser' => '1.63',
11206 'Pod::Perldoc' => '3.25',
11207 'Pod::Perldoc::BaseTo' => '3.25',
11208 'Pod::Perldoc::GetOptsOO'=> '3.25',
11209 'Pod::Perldoc::ToANSI' => '3.25',
11210 'Pod::Perldoc::ToChecker'=> '3.25',
11211 'Pod::Perldoc::ToMan' => '3.25',
11212 'Pod::Perldoc::ToNroff' => '3.25',
11213 'Pod::Perldoc::ToPod' => '3.25',
11214 'Pod::Perldoc::ToRtf' => '3.25',
11215 'Pod::Perldoc::ToTerm' => '3.25',
11216 'Pod::Perldoc::ToText' => '3.25',
11217 'Pod::Perldoc::ToTk' => '3.25',
11218 'Pod::Perldoc::ToXml' => '3.25',
11219 'Pod::PlainText' => '2.07',
11220 'Pod::Select' => '1.63',
11221 'Socket' => '2.018',
11222 'Storable' => '2.53',
11223 'Test::Builder' => '1.301001_098',
11224 'Test::Builder::Module' => '1.301001_098',
11225 'Test::Builder::Tester' => '1.301001_098',
11226 'Test::Builder::Tester::Color'=> '1.301001_098',
11227 'Test::More' => '1.301001_098',
11228 'Test::Simple' => '1.301001_098',
11229 'Test::Stream' => '1.301001_098',
11230 'Test::Tester' => '1.301001_098',
11231 'Test::use::ok' => '1.301001_098',
11232 'Unicode::Collate' => '1.11',
11233 'Unicode::Collate::CJK::Big5'=> '1.11',
11234 'Unicode::Collate::CJK::GB2312'=> '1.11',
11235 'Unicode::Collate::CJK::JISX0208'=> '1.11',
11236 'Unicode::Collate::CJK::Korean'=> '1.11',
11237 'Unicode::Collate::CJK::Pinyin'=> '1.11',
11238 'Unicode::Collate::CJK::Stroke'=> '1.11',
11239 'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11240 'Unicode::Collate::Locale'=> '1.11',
11241 'Unicode::UCD' => '0.61',
11242 'VMS::Stdio' => '2.41',
11243 'Win32' => '0.51',
11244 'Win32API::File' => '0.1202',
11245 'attributes' => '0.26',
11246 'bigint' => '0.39',
11247 'bignum' => '0.39',
11248 'bigrat' => '0.39',
11249 'constant' => '1.33',
11250 'encoding' => '2.13',
11251 'feature' => '1.40',
11252 'ok' => '1.301001_098',
11253 'overload' => '1.25',
11254 'perlfaq' => '5.021009',
11255 're' => '0.31',
11256 'threads::shared' => '1.48',
11257 'warnings' => '1.31',
2e3866c3
MH
11258 },
11259 removed => {
0d2b7240 11260 }
2e3866c3 11261 },
ff4e8df2
S
11262 5.021010 => {
11263 delta_from => 5.021009,
11264 changed => {
77dc754d
SH
11265 'App::Cpan' => '1.63',
11266 'B' => '1.57',
11267 'B::Deparse' => '1.34',
11268 'B::Op_private' => '5.021010',
11269 'Benchmark' => '1.2',
11270 'CPAN' => '2.10',
11271 'CPAN::Distribution' => '2.04',
11272 'CPAN::FirstTime' => '5.5307',
11273 'CPAN::HTTP::Credentials'=> '1.9601',
11274 'CPAN::HandleConfig' => '5.5006',
11275 'CPAN::Meta' => '2.150001',
11276 'CPAN::Meta::Converter' => '2.150001',
11277 'CPAN::Meta::Feature' => '2.150001',
11278 'CPAN::Meta::History' => '2.150001',
11279 'CPAN::Meta::Merge' => '2.150001',
11280 'CPAN::Meta::Prereqs' => '2.150001',
11281 'CPAN::Meta::Spec' => '2.150001',
11282 'CPAN::Meta::Validator' => '2.150001',
11283 'CPAN::Module' => '5.5002',
11284 'CPAN::Plugin' => '0.95',
11285 'CPAN::Plugin::Specfile'=> '0.01',
11286 'CPAN::Shell' => '5.5005',
11287 'Carp' => '1.36',
11288 'Carp::Heavy' => '1.36',
11289 'Config' => '5.02101',
11290 'Cwd' => '3.55',
11291 'DB' => '1.08',
11292 'Data::Dumper' => '2.158',
11293 'Devel::PPPort' => '3.31',
11294 'DynaLoader' => '1.32',
11295 'Encode' => '2.72',
11296 'Encode::Alias' => '2.19',
11297 'File::Spec' => '3.55',
11298 'File::Spec::Cygwin' => '3.55',
11299 'File::Spec::Epoc' => '3.55',
11300 'File::Spec::Functions' => '3.55',
11301 'File::Spec::Mac' => '3.55',
11302 'File::Spec::OS2' => '3.55',
11303 'File::Spec::Unix' => '3.55',
11304 'File::Spec::VMS' => '3.55',
11305 'File::Spec::Win32' => '3.55',
11306 'Getopt::Long' => '2.45',
11307 'Locale::Codes' => '3.34',
11308 'Locale::Codes::Constants'=> '3.34',
11309 'Locale::Codes::Country'=> '3.34',
11310 'Locale::Codes::Country_Codes'=> '3.34',
11311 'Locale::Codes::Country_Retired'=> '3.34',
11312 'Locale::Codes::Currency'=> '3.34',
11313 'Locale::Codes::Currency_Codes'=> '3.34',
11314 'Locale::Codes::Currency_Retired'=> '3.34',
11315 'Locale::Codes::LangExt'=> '3.34',
11316 'Locale::Codes::LangExt_Codes'=> '3.34',
11317 'Locale::Codes::LangExt_Retired'=> '3.34',
11318 'Locale::Codes::LangFam'=> '3.34',
11319 'Locale::Codes::LangFam_Codes'=> '3.34',
11320 'Locale::Codes::LangFam_Retired'=> '3.34',
11321 'Locale::Codes::LangVar'=> '3.34',
11322 'Locale::Codes::LangVar_Codes'=> '3.34',
11323 'Locale::Codes::LangVar_Retired'=> '3.34',
11324 'Locale::Codes::Language'=> '3.34',
11325 'Locale::Codes::Language_Codes'=> '3.34',
11326 'Locale::Codes::Language_Retired'=> '3.34',
11327 'Locale::Codes::Script' => '3.34',
11328 'Locale::Codes::Script_Codes'=> '3.34',
11329 'Locale::Codes::Script_Retired'=> '3.34',
11330 'Locale::Country' => '3.34',
11331 'Locale::Currency' => '3.34',
11332 'Locale::Language' => '3.34',
11333 'Locale::Script' => '3.34',
11334 'Module::CoreList' => '5.20150320',
11335 'Module::CoreList::TieHashDelta'=> '5.20150320',
11336 'Module::CoreList::Utils'=> '5.20150320',
11337 'POSIX' => '1.52',
11338 'Pod::Functions' => '1.09',
11339 'Pod::Functions::Functions'=> '1.09',
11340 'Term::Complete' => '1.403',
11341 'Test::Builder' => '1.001014',
11342 'Test::Builder::IO::Scalar'=> '2.113',
11343 'Test::Builder::Module' => '1.001014',
11344 'Test::Builder::Tester' => '1.28',
11345 'Test::Builder::Tester::Color'=> '1.290001',
11346 'Test::More' => '1.001014',
11347 'Test::Simple' => '1.001014',
11348 'Test::Tester' => '0.114',
11349 'Test::use::ok' => '0.16',
11350 'Text::Balanced' => '2.03',
11351 'Text::ParseWords' => '3.30',
11352 'Unicode::Collate' => '1.12',
11353 'Unicode::Collate::CJK::Big5'=> '1.12',
11354 'Unicode::Collate::CJK::GB2312'=> '1.12',
11355 'Unicode::Collate::CJK::JISX0208'=> '1.12',
11356 'Unicode::Collate::CJK::Korean'=> '1.12',
11357 'Unicode::Collate::CJK::Pinyin'=> '1.12',
11358 'Unicode::Collate::CJK::Stroke'=> '1.12',
11359 'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11360 'Unicode::Collate::Locale'=> '1.12',
11361 'XS::APItest' => '0.71',
11362 'encoding' => '2.14',
11363 'locale' => '1.06',
11364 'meta_notation' => undef,
11365 'ok' => '0.16',
11366 'parent' => '0.232',
11367 're' => '0.32',
11368 'sigtrap' => '1.08',
11369 'threads' => '2.01',
11370 'utf8' => '1.15',
11371 },
11372 removed => {
11373 'Test::CanFork' => 1,
11374 'Test::CanThread' => 1,
11375 'Test::More::DeepCheck' => 1,
11376 'Test::More::DeepCheck::Strict'=> 1,
11377 'Test::More::DeepCheck::Tolerant'=> 1,
11378 'Test::More::Tools' => 1,
11379 'Test::MostlyLike' => 1,
11380 'Test::Stream' => 1,
11381 'Test::Stream::API' => 1,
11382 'Test::Stream::ArrayBase'=> 1,
11383 'Test::Stream::ArrayBase::Meta'=> 1,
11384 'Test::Stream::Block' => 1,
11385 'Test::Stream::Carp' => 1,
11386 'Test::Stream::Context' => 1,
11387 'Test::Stream::Event' => 1,
11388 'Test::Stream::Event::Bail'=> 1,
11389 'Test::Stream::Event::Child'=> 1,
11390 'Test::Stream::Event::Diag'=> 1,
11391 'Test::Stream::Event::Finish'=> 1,
11392 'Test::Stream::Event::Note'=> 1,
11393 'Test::Stream::Event::Ok'=> 1,
11394 'Test::Stream::Event::Plan'=> 1,
11395 'Test::Stream::Event::Subtest'=> 1,
11396 'Test::Stream::ExitMagic'=> 1,
11397 'Test::Stream::ExitMagic::Context'=> 1,
11398 'Test::Stream::Exporter'=> 1,
11399 'Test::Stream::Exporter::Meta'=> 1,
11400 'Test::Stream::ForceExit'=> 1,
11401 'Test::Stream::IOSets' => 1,
11402 'Test::Stream::Meta' => 1,
11403 'Test::Stream::PackageUtil'=> 1,
11404 'Test::Stream::Subtest' => 1,
11405 'Test::Stream::Tester' => 1,
11406 'Test::Stream::Tester::Checks'=> 1,
11407 'Test::Stream::Tester::Checks::Event'=> 1,
11408 'Test::Stream::Tester::Events'=> 1,
11409 'Test::Stream::Tester::Events::Event'=> 1,
11410 'Test::Stream::Tester::Grab'=> 1,
11411 'Test::Stream::Threads' => 1,
11412 'Test::Stream::Toolset' => 1,
11413 'Test::Stream::Util' => 1,
ff4e8df2
S
11414 }
11415 },
53902397 11416 5.021011 => {
6432c40a 11417 delta_from => 5.021010,
53902397 11418 changed => {
6432c40a
SH
11419 'B' => '1.58',
11420 'B::Deparse' => '1.35',
53902397 11421 'B::Op_private' => '5.021011',
6432c40a 11422 'CPAN' => '2.11',
53902397 11423 'Config' => '5.021011',
6432c40a
SH
11424 'Config::Perl::V' => '0.24',
11425 'Cwd' => '3.56',
11426 'ExtUtils::Miniperl' => '1.05',
11427 'ExtUtils::ParseXS' => '3.28',
11428 'ExtUtils::ParseXS::Constants'=> '3.28',
11429 'ExtUtils::ParseXS::CountLines'=> '3.28',
11430 'ExtUtils::ParseXS::Eval'=> '3.28',
11431 'ExtUtils::ParseXS::Utilities'=> '3.28',
11432 'ExtUtils::Typemaps' => '3.28',
11433 'ExtUtils::Typemaps::Cmd'=> '3.28',
11434 'ExtUtils::Typemaps::InputMap'=> '3.28',
11435 'ExtUtils::Typemaps::OutputMap'=> '3.28',
11436 'ExtUtils::Typemaps::Type'=> '3.28',
11437 'File::Spec' => '3.56',
11438 'File::Spec::Cygwin' => '3.56',
11439 'File::Spec::Epoc' => '3.56',
11440 'File::Spec::Functions' => '3.56',
11441 'File::Spec::Mac' => '3.56',
11442 'File::Spec::OS2' => '3.56',
11443 'File::Spec::Unix' => '3.56',
11444 'File::Spec::VMS' => '3.56',
11445 'File::Spec::Win32' => '3.56',
11446 'IO::Socket::IP' => '0.37',
53902397
SH
11447 'Module::CoreList' => '5.20150420',
11448 'Module::CoreList::TieHashDelta'=> '5.20150420',
11449 'Module::CoreList::Utils'=> '5.20150420',
6432c40a
SH
11450 'PerlIO::mmap' => '0.014',
11451 'XS::APItest' => '0.72',
11452 'attributes' => '0.27',
11453 'if' => '0.0604',
11454 'utf8' => '1.16',
11455 'warnings' => '1.32',
53902397
SH
11456 },
11457 removed => {
11458 }
11459 },
bff00388 11460 5.022000 => {
6bb5549b
SH
11461 delta_from => 5.021011,
11462 changed => {
38da2237
RS
11463 'B::Op_private' => '5.022000',
11464 'Config' => '5.022',
11465 'ExtUtils::Command::MM' => '7.04_01',
11466 'ExtUtils::Liblist' => '7.04_01',
11467 'ExtUtils::Liblist::Kid'=> '7.04_01',
11468 'ExtUtils::MM' => '7.04_01',
11469 'ExtUtils::MM_AIX' => '7.04_01',
11470 'ExtUtils::MM_Any' => '7.04_01',
11471 'ExtUtils::MM_BeOS' => '7.04_01',
11472 'ExtUtils::MM_Cygwin' => '7.04_01',
11473 'ExtUtils::MM_DOS' => '7.04_01',
11474 'ExtUtils::MM_Darwin' => '7.04_01',
11475 'ExtUtils::MM_MacOS' => '7.04_01',
11476 'ExtUtils::MM_NW5' => '7.04_01',
11477 'ExtUtils::MM_OS2' => '7.04_01',
11478 'ExtUtils::MM_QNX' => '7.04_01',
11479 'ExtUtils::MM_UWIN' => '7.04_01',
11480 'ExtUtils::MM_Unix' => '7.04_01',
11481 'ExtUtils::MM_VMS' => '7.04_01',
11482 'ExtUtils::MM_VOS' => '7.04_01',
11483 'ExtUtils::MM_Win32' => '7.04_01',
11484 'ExtUtils::MM_Win95' => '7.04_01',
11485 'ExtUtils::MY' => '7.04_01',
11486 'ExtUtils::MakeMaker' => '7.04_01',
11487 'ExtUtils::MakeMaker::Config'=> '7.04_01',
11488 'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11489 'ExtUtils::MakeMaker::version'=> '7.04_01',
11490 'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11491 'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11492 'ExtUtils::Mkbootstrap' => '7.04_01',
11493 'ExtUtils::Mksymlists' => '7.04_01',
11494 'ExtUtils::testlib' => '7.04_01',
6bb5549b
SH
11495 'Module::CoreList' => '5.20150520',
11496 'Module::CoreList::TieHashDelta'=> '5.20150520',
11497 'Module::CoreList::Utils'=> '5.20150520',
38da2237
RS
11498 'POSIX' => '1.53',
11499 'PerlIO::via::QuotedPrint'=> '0.08',
04dc37df 11500 'overload' => '1.26',
38da2237 11501 'utf8' => '1.17',
6bb5549b
SH
11502 },
11503 removed => {
11504 }
11505 },
19aba073
RS
11506 5.023000 => {
11507 delta_from => 5.022000,
11508 changed => {
11509 'B::Op_private' => '5.023000',
bffade09
RS
11510 'CPAN::Meta' => '2.150005',
11511 'CPAN::Meta::Converter' => '2.150005',
11512 'CPAN::Meta::Feature' => '2.150005',
11513 'CPAN::Meta::History' => '2.150005',
11514 'CPAN::Meta::Merge' => '2.150005',
11515 'CPAN::Meta::Prereqs' => '2.150005',
11516 'CPAN::Meta::Requirements'=> '2.133',
11517 'CPAN::Meta::Spec' => '2.150005',
11518 'CPAN::Meta::Validator' => '2.150005',
11519 'CPAN::Meta::YAML' => '0.016',
19aba073 11520 'Config' => '5.023',
bffade09
RS
11521 'Encode' => '2.73',
11522 'ExtUtils::CBuilder' => '0.280223',
11523 'ExtUtils::CBuilder::Base'=> '0.280223',
11524 'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11525 'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11526 'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11527 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11528 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11529 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11530 'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11531 'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11532 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11533 'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11534 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11535 'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11536 'Fatal' => '2.27',
11537 'Getopt::Long' => '2.46',
11538 'HTTP::Tiny' => '0.056',
11539 'List::Util' => '1.42_01',
11540 'List::Util::XS' => '1.42_01',
11541 'Locale::Codes' => '3.35',
11542 'Locale::Codes::Constants'=> '3.35',
11543 'Locale::Codes::Country'=> '3.35',
11544 'Locale::Codes::Country_Codes'=> '3.35',
11545 'Locale::Codes::Country_Retired'=> '3.35',
11546 'Locale::Codes::Currency'=> '3.35',
11547 'Locale::Codes::Currency_Codes'=> '3.35',
11548 'Locale::Codes::Currency_Retired'=> '3.35',
11549 'Locale::Codes::LangExt'=> '3.35',
11550 'Locale::Codes::LangExt_Codes'=> '3.35',
11551 'Locale::Codes::LangExt_Retired'=> '3.35',
11552 'Locale::Codes::LangFam'=> '3.35',
11553 'Locale::Codes::LangFam_Codes'=> '3.35',
11554 'Locale::Codes::LangFam_Retired'=> '3.35',
11555 'Locale::Codes::LangVar'=> '3.35',
11556 'Locale::Codes::LangVar_Codes'=> '3.35',
11557 'Locale::Codes::LangVar_Retired'=> '3.35',
11558 'Locale::Codes::Language'=> '3.35',
11559 'Locale::Codes::Language_Codes'=> '3.35',
11560 'Locale::Codes::Language_Retired'=> '3.35',
11561 'Locale::Codes::Script' => '3.35',
11562 'Locale::Codes::Script_Codes'=> '3.35',
11563 'Locale::Codes::Script_Retired'=> '3.35',
11564 'Locale::Country' => '3.35',
11565 'Locale::Currency' => '3.35',
11566 'Locale::Language' => '3.35',
11567 'Locale::Script' => '3.35',
11568 'Math::BigFloat' => '1.999701',
11569 'Math::BigInt' => '1.999701',
11570 'Math::BigInt::Calc' => '1.999701',
11571 'Math::BigInt::CalcEmu' => '1.999701',
11572 'Math::BigRat' => '0.260801',
11573 'Module::CoreList' => '5.20150620',
11574 'Module::CoreList::TieHashDelta'=> '5.20150620',
11575 'Module::CoreList::Utils'=> '5.20150620',
11576 'Module::Metadata' => '1.000027',
11577 'Net::Cmd' => '3.06',
11578 'Net::Config' => '3.06',
11579 'Net::Domain' => '3.06',
11580 'Net::FTP' => '3.06',
11581 'Net::FTP::A' => '3.06',
11582 'Net::FTP::E' => '3.06',
11583 'Net::FTP::I' => '3.06',
11584 'Net::FTP::L' => '3.06',
11585 'Net::FTP::dataconn' => '3.06',
11586 'Net::NNTP' => '3.06',
11587 'Net::Netrc' => '3.06',
11588 'Net::POP3' => '3.06',
11589 'Net::SMTP' => '3.06',
11590 'Net::Time' => '3.06',
11591 'POSIX' => '1.54',
11592 'Parse::CPAN::Meta' => '1.4417',
11593 'Pod::Simple' => '3.30',
11594 'Pod::Simple::BlackBox' => '3.30',
11595 'Pod::Simple::Checker' => '3.30',
11596 'Pod::Simple::Debug' => '3.30',
11597 'Pod::Simple::DumpAsText'=> '3.30',
11598 'Pod::Simple::DumpAsXML'=> '3.30',
11599 'Pod::Simple::HTML' => '3.30',
11600 'Pod::Simple::HTMLBatch'=> '3.30',
11601 'Pod::Simple::LinkSection'=> '3.30',
11602 'Pod::Simple::Methody' => '3.30',
11603 'Pod::Simple::Progress' => '3.30',
11604 'Pod::Simple::PullParser'=> '3.30',
11605 'Pod::Simple::PullParserEndToken'=> '3.30',
11606 'Pod::Simple::PullParserStartToken'=> '3.30',
11607 'Pod::Simple::PullParserTextToken'=> '3.30',
11608 'Pod::Simple::PullParserToken'=> '3.30',
11609 'Pod::Simple::RTF' => '3.30',
11610 'Pod::Simple::Search' => '3.30',
11611 'Pod::Simple::SimpleTree'=> '3.30',
11612 'Pod::Simple::Text' => '3.30',
11613 'Pod::Simple::TextContent'=> '3.30',
11614 'Pod::Simple::TiedOutFH'=> '3.30',
11615 'Pod::Simple::Transcode'=> '3.30',
11616 'Pod::Simple::TranscodeDumb'=> '3.30',
11617 'Pod::Simple::TranscodeSmart'=> '3.30',
11618 'Pod::Simple::XHTML' => '3.30',
11619 'Pod::Simple::XMLOutStream'=> '3.30',
11620 'Pod::Usage' => '1.67',
11621 'Scalar::Util' => '1.42_01',
11622 'Socket' => '2.019',
11623 'Sub::Util' => '1.42_01',
11624 'Time::Piece' => '1.30',
11625 'Time::Seconds' => '1.30',
11626 'UNIVERSAL' => '1.13',
11627 'Unicode' => '8.0.0',
11628 'XS::APItest' => '0.73',
11629 'autodie' => '2.27',
11630 'autodie::Scope::Guard' => '2.27',
11631 'autodie::Scope::GuardStack'=> '2.27',
11632 'autodie::Util' => '2.27',
11633 'autodie::exception' => '2.27',
11634 'autodie::exception::system'=> '2.27',
11635 'autodie::hints' => '2.27',
11636 'autodie::skip' => '2.27',
11637 'encoding' => '2.15',
11638 'feature' => '1.41',
11639 'parent' => '0.234',
11640 'threads' => '2.02',
19aba073
RS
11641 },
11642 removed => {
11643 }
11644 },
b9e156a2 11645 5.023001 => {
8656412d 11646 delta_from => 5.023000,
b9e156a2 11647 changed => {
8656412d 11648 'B::Op_private' => '5.023001',
b9e156a2 11649 'Config' => '5.023001',
8656412d
MH
11650 'DynaLoader' => '1.33',
11651 'Encode' => '2.75',
11652 'Encode::MIME::Header' => '2.17',
11653 'Encode::Unicode' => '2.13',
11654 'Fatal' => '2.29',
11655 'File::Path' => '2.11',
11656 'Getopt::Long' => '2.47',
11657 'I18N::Langinfo' => '0.13',
11658 'IPC::Open3' => '1.19',
b9e156a2
RS
11659 'Module::CoreList' => '5.20150720',
11660 'Module::CoreList::TieHashDelta'=> '5.20150720',
11661 'Module::CoreList::Utils'=> '5.20150720',
8656412d
MH
11662 'Net::Cmd' => '3.07',
11663 'Net::Config' => '3.07',
11664 'Net::Domain' => '3.07',
11665 'Net::FTP' => '3.07',
11666 'Net::FTP::A' => '3.07',
11667 'Net::FTP::E' => '3.07',
11668 'Net::FTP::I' => '3.07',
11669 'Net::FTP::L' => '3.07',
11670 'Net::FTP::dataconn' => '3.07',
11671 'Net::NNTP' => '3.07',
11672 'Net::Netrc' => '3.07',
11673 'Net::POP3' => '3.07',
11674 'Net::SMTP' => '3.07',
11675 'Net::Time' => '3.07',
11676 'Opcode' => '1.33',
11677 'POSIX' => '1.55',
11678 'PerlIO::scalar' => '0.23',
11679 'Socket' => '2.020',
11680 'Storable' => '2.54',
11681 'Unicode::Collate' => '1.14',
11682 'Unicode::Collate::CJK::Big5'=> '1.14',
11683 'Unicode::Collate::CJK::GB2312'=> '1.14',
11684 'Unicode::Collate::CJK::JISX0208'=> '1.14',
11685 'Unicode::Collate::CJK::Korean'=> '1.14',
11686 'Unicode::Collate::CJK::Pinyin'=> '1.14',
11687 'Unicode::Collate::CJK::Stroke'=> '1.14',
11688 'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11689 'Unicode::Collate::Locale'=> '1.14',
11690 'Unicode::Normalize' => '1.19',
11691 'XS::APItest' => '0.74',
11692 'XS::Typemap' => '0.14',
11693 'autodie' => '2.29',
11694 'autodie::Scope::Guard' => '2.29',
11695 'autodie::Scope::GuardStack'=> '2.29',
11696 'autodie::Util' => '2.29',
11697 'autodie::exception' => '2.29',
11698 'autodie::exception::system'=> '2.29',
11699 'autodie::hints' => '2.29',
11700 'autodie::skip' => '2.29',
11701 'encoding' => '2.16',
11702 'feature' => '1.42',
11703 'warnings' => '1.33',
b9e156a2
RS
11704 },
11705 removed => {
11706 'autodie::ScopeUtil' => 1,
11707 }
11708 },
923c264e
MH
11709 5.023002 => {
11710 delta_from => 5.023001,
11711 changed => {
7d12bc6a 11712 'Attribute::Handlers' => '0.99',
923c264e 11713 'B::Op_private' => '5.023002',
7d12bc6a 11714 'CPAN::Meta::YAML' => '0.017',
923c264e 11715 'Config' => '5.023002',
7d12bc6a
MH
11716 'Cwd' => '3.57',
11717 'Encode' => '2.76',
11718 'ExtUtils::ParseXS' => '3.29',
11719 'ExtUtils::ParseXS::Constants'=> '3.29',
11720 'ExtUtils::ParseXS::CountLines'=> '3.29',
11721 'ExtUtils::ParseXS::Eval'=> '3.29',
11722 'ExtUtils::ParseXS::Utilities'=> '3.29',
11723 'ExtUtils::Typemaps' => '3.29',
11724 'File::Find' => '1.30',
11725 'File::Spec' => '3.57',
11726 'File::Spec::Cygwin' => '3.57',
11727 'File::Spec::Epoc' => '3.57',
11728 'File::Spec::Functions' => '3.57',
11729 'File::Spec::Mac' => '3.57',
11730 'File::Spec::OS2' => '3.57',
11731 'File::Spec::Unix' => '3.57',
11732 'File::Spec::VMS' => '3.57',
11733 'File::Spec::Win32' => '3.57',
11734 'Filter::Util::Call' => '1.55',
11735 'Hash::Util' => '0.19',
003900e2
MH
11736 'Module::CoreList' => '5.20150820',
11737 'Module::CoreList::TieHashDelta'=> '5.20150820',
11738 'Module::CoreList::Utils'=> '5.20150820',
7d12bc6a
MH
11739 'POSIX' => '1.56',
11740 'Term::Cap' => '1.17',
11741 'Unicode::UCD' => '0.62',
11742 'perlfaq' => '5.021010',
923c264e
MH
11743 },
11744 removed => {
11745 }
11746 },
2490a830
SH
11747 5.020003 => {
11748 delta_from => 5.020002,
11749 changed => {
11750 'Config' => '5.020003',
11751 'Errno' => '1.20_06',
b55fc902
SH
11752 'Module::CoreList' => '5.20150912',
11753 'Module::CoreList::TieHashDelta'=> '5.20150912',
11754 'Module::CoreList::Utils'=> '5.20150912',
2490a830
SH
11755 },
11756 removed => {
11757 }
11758 },
c0bc7731
MH
11759 5.023003 => {
11760 delta_from => 5.023002,
11761 changed => {
52513e61
PM
11762 'Amiga::ARexx' => '0.02',
11763 'Amiga::Exec' => '0.01',
11764 'B' => '1.59',
c0bc7731 11765 'B::Op_private' => '5.023003',
52513e61
PM
11766 'Carp' => '1.37',
11767 'Carp::Heavy' => '1.37',
11768 'Compress::Raw::Zlib' => '2.068_01',
c0bc7731 11769 'Config' => '5.023003',
52513e61
PM
11770 'Cwd' => '3.58',
11771 'DynaLoader' => '1.34',
11772 'Encode' => '2.77',
11773 'Encode::Unicode' => '2.14',
11774 'English' => '1.10',
11775 'Errno' => '1.24',
11776 'ExtUtils::Command' => '7.10',
11777 'ExtUtils::Command::MM' => '7.10',
11778 'ExtUtils::Liblist' => '7.10',
11779 'ExtUtils::Liblist::Kid'=> '7.10',
11780 'ExtUtils::MM' => '7.10',
11781 'ExtUtils::MM_AIX' => '7.10',
11782 'ExtUtils::MM_Any' => '7.10',
11783 'ExtUtils::MM_BeOS' => '7.10',
11784 'ExtUtils::MM_Cygwin' => '7.10',
11785 'ExtUtils::MM_DOS' => '7.10',
11786 'ExtUtils::MM_Darwin' => '7.10',
11787 'ExtUtils::MM_MacOS' => '7.10',
11788 'ExtUtils::MM_NW5' => '7.10',
11789 'ExtUtils::MM_OS2' => '7.10',
11790 'ExtUtils::MM_QNX' => '7.10',
11791 'ExtUtils::MM_UWIN' => '7.10',
11792 'ExtUtils::MM_Unix' => '7.10',
11793 'ExtUtils::MM_VMS' => '7.10',
11794 'ExtUtils::MM_VOS' => '7.10',
11795 'ExtUtils::MM_Win32' => '7.10',
11796 'ExtUtils::MM_Win95' => '7.10',
11797 'ExtUtils::MY' => '7.10',
11798 'ExtUtils::MakeMaker' => '7.10',
11799 'ExtUtils::MakeMaker::Config'=> '7.10',
11800 'ExtUtils::MakeMaker::Locale'=> '7.10',
11801 'ExtUtils::MakeMaker::version'=> '7.10',
11802 'ExtUtils::MakeMaker::version::regex'=> '7.10',
11803 'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11804 'ExtUtils::Mkbootstrap' => '7.10',
11805 'ExtUtils::Mksymlists' => '7.10',
11806 'ExtUtils::ParseXS' => '3.30',
11807 'ExtUtils::ParseXS::Constants'=> '3.30',
11808 'ExtUtils::ParseXS::CountLines'=> '3.30',
11809 'ExtUtils::ParseXS::Eval'=> '3.30',
11810 'ExtUtils::ParseXS::Utilities'=> '3.30',
11811 'ExtUtils::Typemaps' => '3.30',
11812 'ExtUtils::Typemaps::Cmd'=> '3.30',
11813 'ExtUtils::Typemaps::InputMap'=> '3.30',
11814 'ExtUtils::Typemaps::OutputMap'=> '3.30',
11815 'ExtUtils::Typemaps::Type'=> '3.30',
11816 'ExtUtils::testlib' => '7.10',
11817 'File::Find' => '1.31',
11818 'File::Glob' => '1.25',
11819 'File::Spec' => '3.58',
11820 'File::Spec::AmigaOS' => '3.58',
11821 'File::Spec::Cygwin' => '3.58',
11822 'File::Spec::Epoc' => '3.58',
11823 'File::Spec::Functions' => '3.58',
11824 'File::Spec::Mac' => '3.58',
11825 'File::Spec::OS2' => '3.58',
11826 'File::Spec::Unix' => '3.58',
11827 'File::Spec::VMS' => '3.58',
11828 'File::Spec::Win32' => '3.58',
11829 'Hash::Util::FieldHash' => '1.17',
11830 'Locale::Codes' => '3.36',
11831 'Locale::Codes::Constants'=> '3.36',
11832 'Locale::Codes::Country'=> '3.36',
11833 'Locale::Codes::Country_Codes'=> '3.36',
11834 'Locale::Codes::Country_Retired'=> '3.36',
11835 'Locale::Codes::Currency'=> '3.36',
11836 'Locale::Codes::Currency_Codes'=> '3.36',
11837 'Locale::Codes::Currency_Retired'=> '3.36',
11838 'Locale::Codes::LangExt'=> '3.36',
11839 'Locale::Codes::LangExt_Codes'=> '3.36',
11840 'Locale::Codes::LangExt_Retired'=> '3.36',
11841 'Locale::Codes::LangFam'=> '3.36',
11842 'Locale::Codes::LangFam_Codes'=> '3.36',
11843 'Locale::Codes::LangFam_Retired'=> '3.36',
11844 'Locale::Codes::LangVar'=> '3.36',
11845 'Locale::Codes::LangVar_Codes'=> '3.36',
11846 'Locale::Codes::LangVar_Retired'=> '3.36',
11847 'Locale::Codes::Language'=> '3.36',
11848 'Locale::Codes::Language_Codes'=> '3.36',
11849 'Locale::Codes::Language_Retired'=> '3.36',
11850 'Locale::Codes::Script' => '3.36',
11851 'Locale::Codes::Script_Codes'=> '3.36',
11852 'Locale::Codes::Script_Retired'=> '3.36',
11853 'Locale::Country' => '3.36',
11854 'Locale::Currency' => '3.36',
11855 'Locale::Language' => '3.36',
11856 'Locale::Script' => '3.36',
11857 'Math::BigFloat::Trace' => '0.40',
11858 'Math::BigInt::Trace' => '0.40',
11859 'Module::CoreList' => '5.20150920',
11860 'Module::CoreList::TieHashDelta'=> '5.20150920',
11861 'Module::CoreList::Utils'=> '5.20150920',
11862 'OS2::DLL' => '1.06',
11863 'OS2::ExtAttr' => '0.04',
11864 'OS2::Process' => '1.11',
11865 'OS2::REXX' => '1.05',
11866 'POSIX' => '1.57',
11867 'Pod::Perldoc' => '3.25_01',
11868 'Socket' => '2.020_01',
11869 'Test' => '1.27',
11870 'Thread::Queue' => '3.06',
11871 'Time::HiRes' => '1.9727_02',
11872 'Unicode::UCD' => '0.63',
11873 'Win32' => '0.52',
11874 'XS::APItest' => '0.75',
11875 'bigint' => '0.40',
11876 'bignum' => '0.40',
11877 'bigrat' => '0.40',
11878 'encoding' => '2.17',
11879 'experimental' => '0.014',
11880 'if' => '0.0605',
11881 'locale' => '1.07',
11882 'mro' => '1.18',
11883 'threads' => '2.03',
c0bc7731
MH
11884 },
11885 removed => {
11886 }
11887 },
2d9b5f10
PM
11888 5.023004 => {
11889 delta_from => 5.023003,
11890 changed => {
210f4ae1 11891 'B' => '1.60',
2d9b5f10 11892 'B::Op_private' => '5.023004',
210f4ae1
SH
11893 'Compress::Raw::Bzip2' => '2.069',
11894 'Compress::Raw::Zlib' => '2.069',
11895 'Compress::Zlib' => '2.069',
2d9b5f10 11896 'Config' => '5.023004',
210f4ae1
SH
11897 'Devel::PPPort' => '3.32',
11898 'DynaLoader' => '1.35',
11899 'Encode' => '2.78',
11900 'ExtUtils::CBuilder' => '0.280224',
11901 'ExtUtils::CBuilder::Base'=> '0.280224',
11902 'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
11903 'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
11904 'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
11905 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
11906 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
11907 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
11908 'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
11909 'ExtUtils::CBuilder::Platform::android'=> '0.280224',
11910 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
11911 'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
11912 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
11913 'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
11914 'File::Path' => '2.12',
11915 'IO' => '1.36',
11916 'IO::Compress::Adapter::Bzip2'=> '2.069',
11917 'IO::Compress::Adapter::Deflate'=> '2.069',
11918 'IO::Compress::Adapter::Identity'=> '2.069',
11919 'IO::Compress::Base' => '2.069',
11920 'IO::Compress::Base::Common'=> '2.069',
11921 'IO::Compress::Bzip2' => '2.069',
11922 'IO::Compress::Deflate' => '2.069',
11923 'IO::Compress::Gzip' => '2.069',
11924 'IO::Compress::Gzip::Constants'=> '2.069',
11925 'IO::Compress::RawDeflate'=> '2.069',
11926 'IO::Compress::Zip' => '2.069',
11927 'IO::Compress::Zip::Constants'=> '2.069',
11928 'IO::Compress::Zlib::Constants'=> '2.069',
11929 'IO::Compress::Zlib::Extra'=> '2.069',
11930 'IO::Poll' => '0.10',
11931 'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
11932 'IO::Uncompress::Adapter::Identity'=> '2.069',
11933 'IO::Uncompress::Adapter::Inflate'=> '2.069',
11934 'IO::Uncompress::AnyInflate'=> '2.069',
11935 'IO::Uncompress::AnyUncompress'=> '2.069',
11936 'IO::Uncompress::Base' => '2.069',
11937 'IO::Uncompress::Bunzip2'=> '2.069',
11938 'IO::Uncompress::Gunzip'=> '2.069',
11939 'IO::Uncompress::Inflate'=> '2.069',
11940 'IO::Uncompress::RawInflate'=> '2.069',
11941 'IO::Uncompress::Unzip' => '2.069',
11942 'Math::BigFloat' => '1.999704',
11943 'Math::BigFloat::Trace' => '0.41',
11944 'Math::BigInt' => '1.999704',
11945 'Math::BigInt::Calc' => '1.999704',
11946 'Math::BigInt::CalcEmu' => '1.999704',
11947 'Math::BigInt::FastCalc'=> '0.34',
11948 'Math::BigInt::Trace' => '0.41',
2d9b5f10
PM
11949 'Module::CoreList' => '5.20151020',
11950 'Module::CoreList::TieHashDelta'=> '5.20151020',
11951 'Module::CoreList::Utils'=> '5.20151020',
210f4ae1
SH
11952 'Module::Metadata' => '1.000029',
11953 'POSIX' => '1.58',
11954 'Perl::OSType' => '1.009',
11955 'PerlIO::encoding' => '0.22',
11956 'Socket' => '2.020_02',
11957 'Unicode::Normalize' => '1.21',
11958 'XS::APItest' => '0.76',
11959 'bigint' => '0.41',
11960 'bignum' => '0.41',
11961 'bigrat' => '0.41',
11962 'experimental' => '0.016',
11963 'if' => '0.0606',
11964 'warnings' => '1.35',
2d9b5f10
PM
11965 },
11966 removed => {
11967 }
11968 },
7792a6f5
SH
11969 5.023005 => {
11970 delta_from => 5.023004,
11971 changed => {
93377cd0 11972 'B' => '1.61',
7792a6f5 11973 'B::Op_private' => '5.023005',
93377cd0
A
11974 'Carp' => '1.38',
11975 'Carp::Heavy' => '1.38',
7792a6f5 11976 'Config' => '5.023005',
93377cd0
A
11977 'Config::Perl::V' => '0.25',
11978 'Cwd' => '3.59',
11979 'Devel::Peek' => '1.23',
11980 'Dumpvalue' => '1.18',
11981 'DynaLoader' => '1.36',
11982 'File::Find' => '1.32',
11983 'File::Spec' => '3.59',
11984 'File::Spec::AmigaOS' => '3.59',
11985 'File::Spec::Cygwin' => '3.59',
11986 'File::Spec::Epoc' => '3.59',
11987 'File::Spec::Functions' => '3.59',
11988 'File::Spec::Mac' => '3.59',
11989 'File::Spec::OS2' => '3.59',
11990 'File::Spec::Unix' => '3.59',
11991 'File::Spec::VMS' => '3.59',
11992 'File::Spec::Win32' => '3.59',
11993 'Getopt::Long' => '2.48',
11994 'Hash::Util::FieldHash' => '1.18',
11995 'IPC::Open3' => '1.20',
11996 'Math::BigFloat' => '1.999710',
11997 'Math::BigInt' => '1.999710',
11998 'Math::BigInt::Calc' => '1.999710',
11999 'Math::BigInt::CalcEmu' => '1.999710',
12000 'Math::BigInt::FastCalc'=> '0.37',
7792a6f5
SH
12001 'Module::CoreList' => '5.20151120',
12002 'Module::CoreList::TieHashDelta'=> '5.20151120',
12003 'Module::CoreList::Utils'=> '5.20151120',
93377cd0
A
12004 'Module::Metadata' => '1.000030',
12005 'POSIX' => '1.59',
12006 'PerlIO::encoding' => '0.23',
12007 'PerlIO::mmap' => '0.015',
12008 'PerlIO::scalar' => '0.24',
12009 'PerlIO::via' => '0.16',
12010 'Pod::Simple' => '3.32',
12011 'Pod::Simple::BlackBox' => '3.32',
12012 'Pod::Simple::Checker' => '3.32',
12013 'Pod::Simple::Debug' => '3.32',
12014 'Pod::Simple::DumpAsText'=> '3.32',
12015 'Pod::Simple::DumpAsXML'=> '3.32',
12016 'Pod::Simple::HTML' => '3.32',
12017 'Pod::Simple::HTMLBatch'=> '3.32',
12018 'Pod::Simple::LinkSection'=> '3.32',
12019 'Pod::Simple::Methody' => '3.32',
12020 'Pod::Simple::Progress' => '3.32',
12021 'Pod::Simple::PullParser'=> '3.32',
12022 'Pod::Simple::PullParserEndToken'=> '3.32',
12023 'Pod::Simple::PullParserStartToken'=> '3.32',
12024 'Pod::Simple::PullParserTextToken'=> '3.32',
12025 'Pod::Simple::PullParserToken'=> '3.32',
12026 'Pod::Simple::RTF' => '3.32',
12027 'Pod::Simple::Search' => '3.32',
12028 'Pod::Simple::SimpleTree'=> '3.32',
12029 'Pod::Simple::Text' => '3.32',
12030 'Pod::Simple::TextContent'=> '3.32',
12031 'Pod::Simple::TiedOutFH'=> '3.32',
12032 'Pod::Simple::Transcode'=> '3.32',
12033 'Pod::Simple::TranscodeDumb'=> '3.32',
12034 'Pod::Simple::TranscodeSmart'=> '3.32',
12035 'Pod::Simple::XHTML' => '3.32',
12036 'Pod::Simple::XMLOutStream'=> '3.32',
12037 'Thread::Queue' => '3.07',
12038 'Tie::Scalar' => '1.04',
12039 'Time::HiRes' => '1.9728',
12040 'Time::Piece' => '1.31',
12041 'Time::Seconds' => '1.31',
12042 'Unicode::Normalize' => '1.23',
12043 'XSLoader' => '0.21',
12044 'arybase' => '0.11',
12045 'base' => '2.22_01',
12046 'fields' => '2.22_01',
12047 'threads' => '2.04',
12048 'threads::shared' => '1.49',
12049 },
12050 removed => {
12051 'ExtUtils::MakeMaker::version::vpp'=> 1,
12052 'version::vpp' => 1,
7792a6f5
SH
12053 }
12054 },
83cfc1da
SH
12055 5.022001 => {
12056 delta_from => 5.022,
12057 changed => {
12058 'B::Op_private' => '5.022001',
12059 'Config' => '5.022001',
9c75bdd1
SH
12060 'Module::CoreList' => '5.20151213',
12061 'Module::CoreList::TieHashDelta'=> '5.20151213',
12062 'Module::CoreList::Utils'=> '5.20151213',
83cfc1da
SH
12063 'POSIX' => '1.53_01',
12064 'PerlIO::scalar' => '0.23',
12065 'Storable' => '2.53_01',
12066 'Win32' => '0.52',
12067 'warnings' => '1.34',
12068 },
12069 removed => {
12070 }
12071 },
7c294235
A
12072 5.023006 => {
12073 delta_from => 5.023005,
12074 changed => {
b733cacc 12075 'B::Deparse' => '1.36',
7c294235 12076 'B::Op_private' => '5.023006',
b733cacc
DG
12077 'Benchmark' => '1.21',
12078 'CPAN::Meta::Requirements'=> '2.140',
12079 'CPAN::Meta::YAML' => '0.018',
7c294235 12080 'Config' => '5.023006',
b733cacc
DG
12081 'Cwd' => '3.60',
12082 'Data::Dumper' => '2.159',
12083 'DynaLoader' => '1.37',
12084 'File::Spec' => '3.60',
12085 'File::Spec::AmigaOS' => '3.60',
12086 'File::Spec::Cygwin' => '3.60',
12087 'File::Spec::Epoc' => '3.60',
12088 'File::Spec::Functions' => '3.60',
12089 'File::Spec::Mac' => '3.60',
12090 'File::Spec::OS2' => '3.60',
12091 'File::Spec::Unix' => '3.60',
12092 'File::Spec::VMS' => '3.60',
12093 'File::Spec::Win32' => '3.60',
12094 'Hash::Util::FieldHash' => '1.19',
12095 'Locale::Codes' => '3.37',
12096 'Locale::Codes::Constants'=> '3.37',
12097 'Locale::Codes::Country'=> '3.37',
12098 'Locale::Codes::Country_Codes'=> '3.37',
12099 'Locale::Codes::Country_Retired'=> '3.37',
12100 'Locale::Codes::Currency'=> '3.37',
12101 'Locale::Codes::Currency_Codes'=> '3.37',
12102 'Locale::Codes::Currency_Retired'=> '3.37',
12103 'Locale::Codes::LangExt'=> '3.37',
12104 'Locale::Codes::LangExt_Codes'=> '3.37',
12105 'Locale::Codes::LangExt_Retired'=> '3.37',
12106 'Locale::Codes::LangFam'=> '3.37',
12107 'Locale::Codes::LangFam_Codes'=> '3.37',
12108 'Locale::Codes::LangFam_Retired'=> '3.37',
12109 'Locale::Codes::LangVar'=> '3.37',
12110 'Locale::Codes::LangVar_Codes'=> '3.37',
12111 'Locale::Codes::LangVar_Retired'=> '3.37',
12112 'Locale::Codes::Language'=> '3.37',
12113 'Locale::Codes::Language_Codes'=> '3.37',
12114 'Locale::Codes::Language_Retired'=> '3.37',
12115 'Locale::Codes::Script' => '3.37',
12116 'Locale::Codes::Script_Codes'=> '3.37',
12117 'Locale::Codes::Script_Retired'=> '3.37',
12118 'Locale::Country' => '3.37',
12119 'Locale::Currency' => '3.37',
12120 'Locale::Language' => '3.37',
12121 'Locale::Script' => '3.37',
12122 'Math::BigInt::FastCalc'=> '0.38',
12123 'Module::CoreList' => '5.20151220',
12124 'Module::CoreList::TieHashDelta'=> '5.20151220',
12125 'Module::CoreList::Utils'=> '5.20151220',
12126 'Module::Metadata' => '1.000031',
12127 'Opcode' => '1.34',
12128 'PerlIO::mmap' => '0.016',
12129 'Pod::Perldoc' => '3.25_02',
12130 'SDBM_File' => '1.14',
12131 'Term::ANSIColor' => '4.04',
12132 'Test' => '1.28',
12133 'Unicode::Normalize' => '1.24',
12134 'XS::APItest' => '0.77',
12135 'base' => '2.23',
12136 'encoding::warnings' => '0.12',
12137 'fields' => '2.23',
7c294235 12138 'locale' => '1.08',
b733cacc
DG
12139 'strict' => '1.10',
12140 'threads' => '2.05',
12141 'threads::shared' => '1.50',
12142 'utf8' => '1.18',
7c294235
A
12143 },
12144 removed => {
12145 }
12146 },
5d4cc497
DG
12147 5.023007 => {
12148 delta_from => 5.023006,
12149 changed => {
bbab6af9
SL
12150 'App::Prove' => '3.36',
12151 'App::Prove::State' => '3.36',
12152 'App::Prove::State::Result'=> '3.36',
12153 'App::Prove::State::Result::Test'=> '3.36',
12154 'B' => '1.62',
12155 'B::Deparse' => '1.37',
5d4cc497 12156 'B::Op_private' => '5.023007',
bbab6af9 12157 'Benchmark' => '1.22',
5d4cc497 12158 'Config' => '5.023007',
bbab6af9
SL
12159 'Cwd' => '3.62',
12160 'Data::Dumper' => '2.160',
12161 'ExtUtils::ParseXS' => '3.31',
12162 'ExtUtils::ParseXS::Constants'=> '3.31',
12163 'ExtUtils::ParseXS::CountLines'=> '3.31',
12164 'ExtUtils::ParseXS::Eval'=> '3.31',
12165 'ExtUtils::ParseXS::Utilities'=> '3.31',
12166 'ExtUtils::Typemaps' => '3.31',
12167 'ExtUtils::Typemaps::Cmd'=> '3.31',
12168 'ExtUtils::Typemaps::InputMap'=> '3.31',
12169 'ExtUtils::Typemaps::OutputMap'=> '3.31',
12170 'ExtUtils::Typemaps::Type'=> '3.31',
12171 'File::Find' => '1.33',
12172 'File::Spec' => '3.62',
12173 'File::Spec::AmigaOS' => '3.62',
12174 'File::Spec::Cygwin' => '3.62',
12175 'File::Spec::Epoc' => '3.62',
12176 'File::Spec::Functions' => '3.62',
12177 'File::Spec::Mac' => '3.62',
12178 'File::Spec::OS2' => '3.62',
12179 'File::Spec::Unix' => '3.62',
12180 'File::Spec::VMS' => '3.62',
12181 'File::Spec::Win32' => '3.62',
12182 'Math::BigFloat' => '1.999715',
12183 'Math::BigFloat::Trace' => '0.42',
12184 'Math::BigInt' => '1.999715',
12185 'Math::BigInt::Calc' => '1.999715',
12186 'Math::BigInt::CalcEmu' => '1.999715',
12187 'Math::BigInt::FastCalc'=> '0.40',
12188 'Math::BigInt::Trace' => '0.42',
12189 'Math::BigRat' => '0.260802',
5d4cc497
DG
12190 'Module::CoreList' => '5.20160120',
12191 'Module::CoreList::TieHashDelta'=> '5.20160120',
12192 'Module::CoreList::Utils'=> '5.20160120',
bbab6af9
SL
12193 'Net::Cmd' => '3.08',
12194 'Net::Config' => '3.08',
12195 'Net::Domain' => '3.08',
12196 'Net::FTP' => '3.08',
12197 'Net::FTP::A' => '3.08',
12198 'Net::FTP::E' => '3.08',
12199 'Net::FTP::I' => '3.08',
12200 'Net::FTP::L' => '3.08',
12201 'Net::FTP::dataconn' => '3.08',
12202 'Net::NNTP' => '3.08',
12203 'Net::Netrc' => '3.08',
12204 'Net::POP3' => '3.08',
12205 'Net::SMTP' => '3.08',
12206 'Net::Time' => '3.08',
12207 'Pod::Man' => '4.04',
12208 'Pod::ParseLink' => '4.04',
12209 'Pod::Text' => '4.04',
12210 'Pod::Text::Color' => '4.04',
12211 'Pod::Text::Overstrike' => '4.04',
12212 'Pod::Text::Termcap' => '4.04',
12213 'Pod::Usage' => '1.68',
12214 'TAP::Base' => '3.36',
12215 'TAP::Formatter::Base' => '3.36',
12216 'TAP::Formatter::Color' => '3.36',
12217 'TAP::Formatter::Console'=> '3.36',
12218 'TAP::Formatter::Console::ParallelSession'=> '3.36',
12219 'TAP::Formatter::Console::Session'=> '3.36',
12220 'TAP::Formatter::File' => '3.36',
12221 'TAP::Formatter::File::Session'=> '3.36',
12222 'TAP::Formatter::Session'=> '3.36',
12223 'TAP::Harness' => '3.36',
12224 'TAP::Harness::Env' => '3.36',
12225 'TAP::Object' => '3.36',
12226 'TAP::Parser' => '3.36',
12227 'TAP::Parser::Aggregator'=> '3.36',
12228 'TAP::Parser::Grammar' => '3.36',
12229 'TAP::Parser::Iterator' => '3.36',
12230 'TAP::Parser::Iterator::Array'=> '3.36',
12231 'TAP::Parser::Iterator::Process'=> '3.36',
12232 'TAP::Parser::Iterator::Stream'=> '3.36',
12233 'TAP::Parser::IteratorFactory'=> '3.36',
12234 'TAP::Parser::Multiplexer'=> '3.36',
12235 'TAP::Parser::Result' => '3.36',
12236 'TAP::Parser::Result::Bailout'=> '3.36',
12237 'TAP::Parser::Result::Comment'=> '3.36',
12238 'TAP::Parser::Result::Plan'=> '3.36',
12239 'TAP::Parser::Result::Pragma'=> '3.36',
12240 'TAP::Parser::Result::Test'=> '3.36',
12241 'TAP::Parser::Result::Unknown'=> '3.36',
12242 'TAP::Parser::Result::Version'=> '3.36',
12243 'TAP::Parser::Result::YAML'=> '3.36',
12244 'TAP::Parser::ResultFactory'=> '3.36',
12245 'TAP::Parser::Scheduler'=> '3.36',
12246 'TAP::Parser::Scheduler::Job'=> '3.36',
12247 'TAP::Parser::Scheduler::Spinner'=> '3.36',
12248 'TAP::Parser::Source' => '3.36',
12249 'TAP::Parser::SourceHandler'=> '3.36',
12250 'TAP::Parser::SourceHandler::Executable'=> '3.36',
12251 'TAP::Parser::SourceHandler::File'=> '3.36',
12252 'TAP::Parser::SourceHandler::Handle'=> '3.36',
12253 'TAP::Parser::SourceHandler::Perl'=> '3.36',
12254 'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
12255 'TAP::Parser::YAMLish::Reader'=> '3.36',
12256 'TAP::Parser::YAMLish::Writer'=> '3.36',
12257 'Test::Harness' => '3.36',
12258 'Unicode::Normalize' => '1.25',
12259 'Unicode::UCD' => '0.64',
12260 'XS::APItest' => '0.78',
12261 'bigint' => '0.42',
12262 'bignum' => '0.42',
12263 'bigrat' => '0.42',
12264 'utf8' => '1.19',
5d4cc497
DG
12265 },
12266 removed => {
12267 }
12268 },
519be8b0
TC
12269 5.023008 => {
12270 delta_from => 5.023007,
12271 changed => {
12272 'B::Op_private' => '5.023008',
12273 'Config' => '5.023008',
b5fa05a4
S
12274 'Cwd' => '3.63',
12275 'DynaLoader' => '1.38',
12276 'Encode' => '2.80',
12277 'Encode::Alias' => '2.20',
12278 'Encode::MIME::Header' => '2.19',
12279 'Encode::Unicode' => '2.15',
12280 'ExtUtils::CBuilder' => '0.280225',
12281 'ExtUtils::CBuilder::Base'=> '0.280225',
12282 'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
12283 'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
12284 'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
12285 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
12286 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
12287 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
12288 'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
12289 'ExtUtils::CBuilder::Platform::android'=> '0.280225',
12290 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
12291 'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
12292 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
12293 'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
12294 'ExtUtils::Command::MM' => '7.10_01',
12295 'ExtUtils::Liblist' => '7.10_01',
12296 'ExtUtils::Liblist::Kid'=> '7.10_01',
12297 'ExtUtils::MM' => '7.10_01',
12298 'ExtUtils::MM_AIX' => '7.10_01',
12299 'ExtUtils::MM_Any' => '7.10_01',
12300 'ExtUtils::MM_BeOS' => '7.10_01',
12301 'ExtUtils::MM_Cygwin' => '7.10_01',
12302 'ExtUtils::MM_DOS' => '7.10_01',
12303 'ExtUtils::MM_Darwin' => '7.10_01',
12304 'ExtUtils::MM_MacOS' => '7.10_01',
12305 'ExtUtils::MM_NW5' => '7.10_01',
12306 'ExtUtils::MM_OS2' => '7.10_01',
12307 'ExtUtils::MM_QNX' => '7.10_01',
12308 'ExtUtils::MM_UWIN' => '7.10_01',
12309 'ExtUtils::MM_Unix' => '7.10_01',
12310 'ExtUtils::MM_VMS' => '7.10_01',
12311 'ExtUtils::MM_VOS' => '7.10_01',
12312 'ExtUtils::MM_Win32' => '7.10_01',
12313 'ExtUtils::MM_Win95' => '7.10_01',
12314 'ExtUtils::MY' => '7.10_01',
12315 'ExtUtils::MakeMaker' => '7.10_01',
12316 'ExtUtils::MakeMaker::Config'=> '7.10_01',
12317 'ExtUtils::MakeMaker::version'=> '7.10_01',
12318 'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
12319 'ExtUtils::Mkbootstrap' => '7.10_01',
12320 'ExtUtils::Mksymlists' => '7.10_01',
12321 'ExtUtils::testlib' => '7.10_01',
12322 'File::Spec' => '3.63',
12323 'File::Spec::AmigaOS' => '3.63',
12324 'File::Spec::Cygwin' => '3.63',
12325 'File::Spec::Epoc' => '3.63',
12326 'File::Spec::Functions' => '3.63',
12327 'File::Spec::Mac' => '3.63',
12328 'File::Spec::OS2' => '3.63',
12329 'File::Spec::Unix' => '3.63',
12330 'File::Spec::VMS' => '3.63',
12331 'File::Spec::Win32' => '3.63',
12332 'IPC::Msg' => '2.05',
12333 'IPC::Semaphore' => '2.05',
12334 'IPC::SharedMem' => '2.05',
12335 'IPC::SysV' => '2.05',
519be8b0
TC
12336 'Module::CoreList' => '5.20160121',
12337 'Module::CoreList::TieHashDelta'=> '5.20160121',
12338 'Module::CoreList::Utils'=> '5.20160121',
b5fa05a4
S
12339 'ODBM_File' => '1.13',
12340 'POSIX' => '1.63',
12341 'PerlIO::encoding' => '0.24',
12342 'Pod::Man' => '4.06',
12343 'Pod::ParseLink' => '4.06',
12344 'Pod::Text' => '4.06',
12345 'Pod::Text::Color' => '4.06',
12346 'Pod::Text::Overstrike' => '4.06',
12347 'Pod::Text::Termcap' => '4.06',
12348 'Storable' => '2.55',
12349 'Time::HiRes' => '1.9730',
12350 'XS::APItest' => '0.79',
519be8b0
TC
12351 },
12352 removed => {
12353 }
12354 },
0515d31c
S
12355 5.023009 => {
12356 delta_from => 5.023008,
12357 changed => {
489c35bb
A
12358 'Amiga::ARexx' => '0.04',
12359 'Amiga::Exec' => '0.02',
28192377 12360 'B::Op_private' => '5.023009',
489c35bb
A
12361 'Carp' => '1.40',
12362 'Carp::Heavy' => '1.40',
28192377 12363 'Config' => '5.023009',
489c35bb
A
12364 'Errno' => '1.25',
12365 'ExtUtils::Embed' => '1.33',
12366 'File::Find' => '1.34',
12367 'File::Glob' => '1.26',
12368 'File::Spec::AmigaOS' => ';.64',
12369 'IPC::Msg' => '2.06_01',
12370 'IPC::Semaphore' => '2.06_01',
12371 'IPC::SharedMem' => '2.06_01',
12372 'IPC::SysV' => '2.06_01',
12373 'List::Util' => '1.42_02',
12374 'List::Util::XS' => '1.42_02',
12375 'Module::CoreList' => '5.20160320',
12376 'Module::CoreList::TieHashDelta'=> '5.20160320',
12377 'Module::CoreList::Utils'=> '5.20160320',
12378 'POSIX' => '1.64',
12379 'Pod::Functions' => '1.10',
12380 'Pod::Functions::Functions'=> '1.10',
12381 'Scalar::Util' => '1.42_02',
12382 'SelfLoader' => '1.23',
12383 'Socket' => '2.020_03',
12384 'Storable' => '2.56',
12385 'Sub::Util' => '1.42_02',
12386 'Thread::Queue' => '3.08',
12387 'Tie::File' => '1.02',
12388 'Time::HiRes' => '1.9732',
12389 'Win32API::File' => '0.1203',
12390 'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
12391 'XS::APItest' => '0.80',
12392 'autouse' => '1.11',
12393 'bytes' => '1.05',
12394 'strict' => '1.11',
12395 'threads' => '2.06',
12396 'version' => '0.9916',
12397 'version::regex' => '0.9916',
12398 'warnings' => '1.36',
12399 },
12400 removed => {
12401 'Win32API::File::ExtUtils::Myconst2perl'=> 1,
0515d31c
S
12402 }
12403 },
e42cacf8
SH
12404 5.022002 => {
12405 delta_from => 5.022001,
12406 changed => {
12407 'B::Op_private' => '5.022002',
12408 'Config' => '5.022002',
12409 'Cwd' => '3.56_01',
12410 'File::Spec' => '3.56_01',
12411 'File::Spec::Cygwin' => '3.56_01',
12412 'File::Spec::Epoc' => '3.56_01',
12413 'File::Spec::Functions' => '3.56_01',
12414 'File::Spec::Mac' => '3.56_01',
12415 'File::Spec::OS2' => '3.56_01',
12416 'File::Spec::Unix' => '3.56_01',
12417 'File::Spec::VMS' => '3.56_01',
12418 'File::Spec::Win32' => '3.56_01',
12419 'Module::CoreList' => '5.20160429',
12420 'Module::CoreList::TieHashDelta'=> '5.20160429',
12421 'Module::CoreList::Utils'=> '5.20160429',
12422 'XS::APItest' => '0.72_01',
12423 },
12424 removed => {
12425 }
12426 },
de1edec7 12427 5.024000 => {
d1fa969e
A
12428 delta_from => 5.023009,
12429 changed => {
de1edec7
RS
12430 'B::Op_private' => '5.024000',
12431 'Config' => '5.024',
8a355c19 12432 'File::Copy' => '2.31',
de1edec7
RS
12433 'File::Path' => '2.12_01',
12434 'File::Spec::AmigaOS' => '3.64',
c800d8b3 12435 'IO::Handle' => '1.36',
1bbb0949
RS
12436 'Module::CoreList' => '5.20160506',
12437 'Module::CoreList::TieHashDelta'=> '5.20160506',
12438 'Module::CoreList::Utils'=> '5.20160506',
de1edec7
RS
12439 'ODBM_File' => '1.14',
12440 'POSIX' => '1.65',
12441 'Pod::Man' => '4.07',
12442 'Pod::ParseLink' => '4.07',
12443 'Pod::Text' => '4.07',
12444 'Pod::Text::Color' => '4.07',
12445 'Pod::Text::Overstrike' => '4.07',
12446 'Pod::Text::Termcap' => '4.07',
4a9f92ef 12447 'Thread::Queue' => '3.09',
aec451e9 12448 'Time::HiRes' => '1.9733',
1a8aefec
RS
12449 'threads' => '2.07',
12450 'threads::shared' => '1.51',
c800d8b3
RS
12451 'locale' => '1.09',
12452 },
12453 removed => {
12454 }
12455 },
12456 5.025000 => {
12457 delta_from => 5.024,
12458 changed => {
12459 'B::Op_private' => '5.025000',
12460 'Config' => '5.025',
12461 'Module::CoreList' => '5.20160507',
12462 'Module::CoreList::TieHashDelta'=> '5.20160507',
12463 'Module::CoreList::Utils'=> '5.20160507',
2c5484a6 12464 'feature' => '1.43',
d1fa969e
A
12465 },
12466 removed => {
12467 }
12468 },
4170737e 12469 5.025001 => {
f7a1e8ff 12470 delta_from => 5.025,
4170737e 12471 changed => {
f7a1e8ff
S
12472 'Archive::Tar' => '2.08',
12473 'Archive::Tar::Constant'=> '2.08',
12474 'Archive::Tar::File' => '2.08',
4170737e 12475 'B::Op_private' => '5.025001',
f7a1e8ff
S
12476 'Carp' => '1.41',
12477 'Carp::Heavy' => '1.41',
4170737e 12478 'Config' => '5.025001',
f7a1e8ff
S
12479 'Config::Perl::V' => '0.26',
12480 'DB_File' => '1.838',
12481 'Digest::MD5' => '2.55',
12482 'IPC::Cmd' => '0.94',
12483 'IPC::Msg' => '2.07',
12484 'IPC::Semaphore' => '2.07',
12485 'IPC::SharedMem' => '2.07',
12486 'IPC::SysV' => '2.07',
12487 'List::Util' => '1.45_01',
12488 'List::Util::XS' => '1.45_01',
12489 'Locale::Codes' => '3.38',
12490 'Locale::Codes::Constants'=> '3.38',
12491 'Locale::Codes::Country'=> '3.38',
12492 'Locale::Codes::Country_Codes'=> '3.38',
12493 'Locale::Codes::Country_Retired'=> '3.38',
12494 'Locale::Codes::Currency'=> '3.38',
12495 'Locale::Codes::Currency_Codes'=> '3.38',
12496 'Locale::Codes::Currency_Retired'=> '3.38',
12497 'Locale::Codes::LangExt'=> '3.38',
12498 'Locale::Codes::LangExt_Codes'=> '3.38',
12499 'Locale::Codes::LangExt_Retired'=> '3.38',
12500 'Locale::Codes::LangFam'=> '3.38',
12501 'Locale::Codes::LangFam_Codes'=> '3.38',
12502 'Locale::Codes::LangFam_Retired'=> '3.38',
12503 'Locale::Codes::LangVar'=> '3.38',
12504 'Locale::Codes::LangVar_Codes'=> '3.38',
12505 'Locale::Codes::LangVar_Retired'=> '3.38',
12506 'Locale::Codes::Language'=> '3.38',
12507 'Locale::Codes::Language_Codes'=> '3.38',
12508 'Locale::Codes::Language_Retired'=> '3.38',
12509 'Locale::Codes::Script' => '3.38',
12510 'Locale::Codes::Script_Codes'=> '3.38',
12511 'Locale::Codes::Script_Retired'=> '3.38',
12512 'Locale::Country' => '3.38',
12513 'Locale::Currency' => '3.38',
12514 'Locale::Language' => '3.38',
12515 'Locale::Maketext' => '1.27',
12516 'Locale::Script' => '3.38',
4170737e
RS
12517 'Module::CoreList' => '5.20160520',
12518 'Module::CoreList::TieHashDelta'=> '5.20160520',
12519 'Module::CoreList::Utils'=> '5.20160520',
f7a1e8ff
S
12520 'Module::Metadata' => '1.000032',
12521 'POSIX' => '1.69',
12522 'Scalar::Util' => '1.45_01',
12523 'Sub::Util' => '1.45_01',
12524 'Sys::Syslog' => '0.34',
12525 'Term::ANSIColor' => '4.05',
12526 'Test2' => '1.302015',
12527 'Test2::API' => '1.302015',
12528 'Test2::API::Breakage' => '1.302015',
12529 'Test2::API::Context' => '1.302015',
12530 'Test2::API::Instance' => '1.302015',
12531 'Test2::API::Stack' => '1.302015',
12532 'Test2::Event' => '1.302015',
12533 'Test2::Event::Bail' => '1.302015',
12534 'Test2::Event::Diag' => '1.302015',
12535 'Test2::Event::Exception'=> '1.302015',
12536 'Test2::Event::Note' => '1.302015',
12537 'Test2::Event::Ok' => '1.302015',
12538 'Test2::Event::Plan' => '1.302015',
12539 'Test2::Event::Skip' => '1.302015',
12540 'Test2::Event::Subtest' => '1.302015',
12541 'Test2::Event::Waiting' => '1.302015',
12542 'Test2::Formatter' => '1.302015',
12543 'Test2::Formatter::TAP' => '1.302015',
12544 'Test2::Hub' => '1.302015',
12545 'Test2::Hub::Interceptor'=> '1.302015',
12546 'Test2::Hub::Interceptor::Terminator'=> '1.302015',
12547 'Test2::Hub::Subtest' => '1.302015',
12548 'Test2::IPC' => '1.302015',
12549 'Test2::IPC::Driver' => '1.302015',
12550 'Test2::IPC::Driver::Files'=> '1.302015',
12551 'Test2::Util' => '1.302015',
12552 'Test2::Util::ExternalMeta'=> '1.302015',
12553 'Test2::Util::HashBase' => '1.302015',
12554 'Test2::Util::Trace' => '1.302015',
12555 'Test::Builder' => '1.302015',
12556 'Test::Builder::Formatter'=> '1.302015',
12557 'Test::Builder::Module' => '1.302015',
12558 'Test::Builder::Tester' => '1.302015',
12559 'Test::Builder::Tester::Color'=> '1.302015',
12560 'Test::Builder::TodoDiag'=> '1.302015',
12561 'Test::More' => '1.302015',
12562 'Test::Simple' => '1.302015',
12563 'Test::Tester' => '1.302015',
12564 'Test::Tester::Capture' => '1.302015',
12565 'Test::Tester::CaptureRunner'=> '1.302015',
12566 'Test::Tester::Delegate'=> '1.302015',
12567 'Test::use::ok' => '1.302015',
12568 'XS::APItest' => '0.81',
12569 '_charnames' => '1.44',
12570 'charnames' => '1.44',
12571 'ok' => '1.302015',
12572 'perlfaq' => '5.021011',
12573 're' => '0.33',
12574 'threads' => '2.08',
12575 'threads::shared' => '1.52',
4170737e
RS
12576 },
12577 removed => {
12578 }
12579 },
a55ca2cb
FC
12580 5.025002 => {
12581 delta_from => 5.025001,
12582 changed => {
7984aa21
MH
12583 'App::Cpan' => '1.64',
12584 'B::Op_private' => '5.025002',
12585 'CPAN' => '2.14',
12586 'CPAN::Distribution' => '2.12',
12587 'CPAN::FTP' => '5.5007',
12588 'CPAN::FirstTime' => '5.5309',
12589 'CPAN::HandleConfig' => '5.5007',
12590 'CPAN::Index' => '2.12',
12591 'CPAN::Mirrors' => '2.12',
12592 'CPAN::Plugin' => '0.96',
12593 'CPAN::Shell' => '5.5006',
12594 'Config' => '5.025002',
12595 'Cwd' => '3.64',
12596 'Devel::Peek' => '1.24',
12597 'DynaLoader' => '1.39',
12598 'ExtUtils::Command' => '7.18',
12599 'ExtUtils::Command::MM' => '7.18',
12600 'ExtUtils::Liblist' => '7.18',
12601 'ExtUtils::Liblist::Kid'=> '7.18',
12602 'ExtUtils::MM' => '7.18',
12603 'ExtUtils::MM_AIX' => '7.18',
12604 'ExtUtils::MM_Any' => '7.18',
12605 'ExtUtils::MM_BeOS' => '7.18',
12606 'ExtUtils::MM_Cygwin' => '7.18',
12607 'ExtUtils::MM_DOS' => '7.18',
12608 'ExtUtils::MM_Darwin' => '7.18',
12609 'ExtUtils::MM_MacOS' => '7.18',
12610 'ExtUtils::MM_NW5' => '7.18',
12611 'ExtUtils::MM_OS2' => '7.18',
12612 'ExtUtils::MM_QNX' => '7.18',
12613 'ExtUtils::MM_UWIN' => '7.18',
12614 'ExtUtils::MM_Unix' => '7.18',
12615 'ExtUtils::MM_VMS' => '7.18',
12616 'ExtUtils::MM_VOS' => '7.18',
12617 'ExtUtils::MM_Win32' => '7.18',
12618 'ExtUtils::MM_Win95' => '7.18',
12619 'ExtUtils::MY' => '7.18',
12620 'ExtUtils::MakeMaker' => '7.18',
12621 'ExtUtils::MakeMaker::Config'=> '7.18',
12622 'ExtUtils::MakeMaker::Locale'=> '7.18',
12623 'ExtUtils::MakeMaker::version'=> '7.18',
12624 'ExtUtils::MakeMaker::version::regex'=> '7.18',
12625 'ExtUtils::Miniperl' => '1.06',
12626 'ExtUtils::Mkbootstrap' => '7.18',
12627 'ExtUtils::Mksymlists' => '7.18',
12628 'ExtUtils::ParseXS' => '3.32',
12629 'ExtUtils::ParseXS::Constants'=> '3.32',
12630 'ExtUtils::ParseXS::CountLines'=> '3.32',
12631 'ExtUtils::ParseXS::Eval'=> '3.32',
12632 'ExtUtils::ParseXS::Utilities'=> '3.32',
12633 'ExtUtils::Typemaps' => '3.32',
12634 'ExtUtils::Typemaps::Cmd'=> '3.32',
12635 'ExtUtils::Typemaps::InputMap'=> '3.32',
12636 'ExtUtils::Typemaps::OutputMap'=> '3.32',
12637 'ExtUtils::Typemaps::Type'=> '3.32',
12638 'ExtUtils::testlib' => '7.18',
12639 'File::Copy' => '2.32',
12640 'File::Glob' => '1.27',
12641 'File::Spec' => '3.64',
12642 'File::Spec::Cygwin' => '3.64',
12643 'File::Spec::Epoc' => '3.64',
12644 'File::Spec::Functions' => '3.64',
12645 'File::Spec::Mac' => '3.64',
12646 'File::Spec::OS2' => '3.64',
12647 'File::Spec::Unix' => '3.64',
12648 'File::Spec::VMS' => '3.64',
12649 'File::Spec::Win32' => '3.64',
12650 'FileHandle' => '2.03',
12651 'Getopt::Long' => '2.49',
12652 'HTTP::Tiny' => '0.058',
12653 'JSON::PP' => '2.27400',
12654 'Locale::Codes' => '3.39',
12655 'Locale::Codes::Constants'=> '3.39',
12656 'Locale::Codes::Country'=> '3.39',
12657 'Locale::Codes::Country_Codes'=> '3.39',
12658 'Locale::Codes::Country_Retired'=> '3.39',
12659 'Locale::Codes::Currency'=> '3.39',
12660 'Locale::Codes::Currency_Codes'=> '3.39',
12661 'Locale::Codes::Currency_Retired'=> '3.39',
12662 'Locale::Codes::LangExt'=> '3.39',
12663 'Locale::Codes::LangExt_Codes'=> '3.39',
12664 'Locale::Codes::LangExt_Retired'=> '3.39',
12665 'Locale::Codes::LangFam'=> '3.39',
12666 'Locale::Codes::LangFam_Codes'=> '3.39',
12667 'Locale::Codes::LangFam_Retired'=> '3.39',
12668 'Locale::Codes::LangVar'=> '3.39',
12669 'Locale::Codes::LangVar_Codes'=> '3.39',
12670 'Locale::Codes::LangVar_Retired'=> '3.39',
12671 'Locale::Codes::Language'=> '3.39',
12672 'Locale::Codes::Language_Codes'=> '3.39',
12673 'Locale::Codes::Language_Retired'=> '3.39',
12674 'Locale::Codes::Script' => '3.39',
12675 'Locale::Codes::Script_Codes'=> '3.39',
12676 'Locale::Codes::Script_Retired'=> '3.39',
12677 'Locale::Country' => '3.39',
12678 'Locale::Currency' => '3.39',
12679 'Locale::Language' => '3.39',
12680 'Locale::Script' => '3.39',
12681 'Module::CoreList' => '5.20160620',
12682 'Module::CoreList::TieHashDelta'=> '5.20160620',
12683 'Module::CoreList::Utils'=> '5.20160620',
12684 'Opcode' => '1.35',
12685 'POSIX' => '1.70',
12686 'Pod::Checker' => '1.73',
12687 'Pod::Functions' => '1.11',
12688 'Pod::Functions::Functions'=> '1.11',
12689 'Pod::Usage' => '1.69',
12690 'Test2' => '1.302026',
12691 'Test2::API' => '1.302026',
12692 'Test2::API::Breakage' => '1.302026',
12693 'Test2::API::Context' => '1.302026',
12694 'Test2::API::Instance' => '1.302026',
12695 'Test2::API::Stack' => '1.302026',
12696 'Test2::Event' => '1.302026',
12697 'Test2::Event::Bail' => '1.302026',
12698 'Test2::Event::Diag' => '1.302026',
12699 'Test2::Event::Exception'=> '1.302026',
12700 'Test2::Event::Generic' => '1.302026',
12701 'Test2::Event::Note' => '1.302026',
12702 'Test2::Event::Ok' => '1.302026',
12703 'Test2::Event::Plan' => '1.302026',
12704 'Test2::Event::Skip' => '1.302026',
12705 'Test2::Event::Subtest' => '1.302026',
12706 'Test2::Event::Waiting' => '1.302026',
12707 'Test2::Formatter' => '1.302026',
12708 'Test2::Formatter::TAP' => '1.302026',
12709 'Test2::Hub' => '1.302026',
12710 'Test2::Hub::Interceptor'=> '1.302026',
12711 'Test2::Hub::Interceptor::Terminator'=> '1.302026',
12712 'Test2::Hub::Subtest' => '1.302026',
12713 'Test2::IPC' => '1.302026',
12714 'Test2::IPC::Driver' => '1.302026',
12715 'Test2::IPC::Driver::Files'=> '1.302026',
12716 'Test2::Util' => '1.302026',
12717 'Test2::Util::ExternalMeta'=> '1.302026',
12718 'Test2::Util::HashBase' => '1.302026',
12719 'Test2::Util::Trace' => '1.302026',
12720 'Test::Builder' => '1.302026',
12721 'Test::Builder::Formatter'=> '1.302026',
12722 'Test::Builder::Module' => '1.302026',
12723 'Test::Builder::Tester' => '1.302026',
12724 'Test::Builder::Tester::Color'=> '1.302026',
12725 'Test::Builder::TodoDiag'=> '1.302026',
12726 'Test::More' => '1.302026',
12727 'Test::Simple' => '1.302026',
12728 'Test::Tester' => '1.302026',
12729 'Test::Tester::Capture' => '1.302026',
12730 'Test::Tester::CaptureRunner'=> '1.302026',
12731 'Test::Tester::Delegate'=> '1.302026',
12732 'Test::use::ok' => '1.302026',
12733 'Thread::Queue' => '3.11',
12734 'Time::HiRes' => '1.9734',
12735 'Unicode::UCD' => '0.65',
12736 'VMS::DCLsym' => '1.07',
12737 'XS::APItest' => '0.82',
12738 'diagnostics' => '1.35',
12739 'feature' => '1.44',
12740 'ok' => '1.302026',
12741 'threads' => '2.09',
a55ca2cb
FC
12742 },
12743 removed => {
12744 }
12745 },
c338e234
MH
12746 5.025003 => {
12747 delta_from => 5.025002,
12748 changed => {
12749 'B::Op_private' => '5.025003',
12750 'Config' => '5.025003',
42a3cde1
SH
12751 'Data::Dumper' => '2.161',
12752 'Devel::PPPort' => '3.35',
12753 'Encode' => '2.84',
12754 'Encode::MIME::Header' => '2.23',
12755 'Encode::MIME::Header::ISO_2022_JP'=> '1.07',
12756 'ExtUtils::ParseXS' => '3.33',
12757 'ExtUtils::ParseXS::Constants'=> '3.33',
12758 'ExtUtils::ParseXS::CountLines'=> '3.33',
12759 'ExtUtils::ParseXS::Eval'=> '3.33',
12760 'ExtUtils::ParseXS::Utilities'=> '3.33',
12761 'ExtUtils::Typemaps' => '3.33',
12762 'ExtUtils::Typemaps::Cmd'=> '3.33',
12763 'ExtUtils::Typemaps::InputMap'=> '3.33',
12764 'ExtUtils::Typemaps::OutputMap'=> '3.33',
12765 'ExtUtils::Typemaps::Type'=> '3.33',
12766 'Hash::Util' => '0.20',
12767 'Math::BigFloat' => '1.999726',
12768 'Math::BigFloat::Trace' => '0.43',
12769 'Math::BigInt' => '1.999726',
12770 'Math::BigInt::Calc' => '1.999726',
12771 'Math::BigInt::CalcEmu' => '1.999726',
12772 'Math::BigInt::FastCalc'=> '0.42',
12773 'Math::BigInt::Trace' => '0.43',
12774 'Math::BigRat' => '0.260804',
c338e234
MH
12775 'Module::CoreList' => '5.20160720',
12776 'Module::CoreList::TieHashDelta'=> '5.20160720',
12777 'Module::CoreList::Utils'=> '5.20160720',
42a3cde1
SH
12778 'Net::Cmd' => '3.09',
12779 'Net::Config' => '3.09',
12780 'Net::Domain' => '3.09',
12781 'Net::FTP' => '3.09',
12782 'Net::FTP::A' => '3.09',
12783 'Net::FTP::E' => '3.09',
12784 'Net::FTP::I' => '3.09',
12785 'Net::FTP::L' => '3.09',
12786 'Net::FTP::dataconn' => '3.09',
12787 'Net::NNTP' => '3.09',
12788 'Net::Netrc' => '3.09',
12789 'Net::POP3' => '3.09',
12790 'Net::SMTP' => '3.09',
12791 'Net::Time' => '3.09',
12792 'Parse::CPAN::Meta' => '1.4422',
12793 'Perl::OSType' => '1.010',
12794 'Test2' => '1.302045',
12795 'Test2::API' => '1.302045',
12796 'Test2::API::Breakage' => '1.302045',
12797 'Test2::API::Context' => '1.302045',
12798 'Test2::API::Instance' => '1.302045',
12799 'Test2::API::Stack' => '1.302045',
12800 'Test2::Event' => '1.302045',
12801 'Test2::Event::Bail' => '1.302045',
12802 'Test2::Event::Diag' => '1.302045',
12803 'Test2::Event::Exception'=> '1.302045',
12804 'Test2::Event::Generic' => '1.302045',
12805 'Test2::Event::Info' => '1.302045',
12806 'Test2::Event::Note' => '1.302045',
12807 'Test2::Event::Ok' => '1.302045',
12808 'Test2::Event::Plan' => '1.302045',
12809 'Test2::Event::Skip' => '1.302045',
12810 'Test2::Event::Subtest' => '1.302045',
12811 'Test2::Event::Waiting' => '1.302045',
12812 'Test2::Formatter' => '1.302045',
12813 'Test2::Formatter::TAP' => '1.302045',
12814 'Test2::Hub' => '1.302045',
12815 'Test2::Hub::Interceptor'=> '1.302045',
12816 'Test2::Hub::Interceptor::Terminator'=> '1.302045',
12817 'Test2::Hub::Subtest' => '1.302045',
12818 'Test2::IPC' => '1.302045',
12819 'Test2::IPC::Driver' => '1.302045',
12820 'Test2::IPC::Driver::Files'=> '1.302045',
12821 'Test2::Util' => '1.302045',
12822 'Test2::Util::ExternalMeta'=> '1.302045',
12823 'Test2::Util::HashBase' => '1.302045',
12824 'Test2::Util::Trace' => '1.302045',
12825 'Test::Builder' => '1.302045',
12826 'Test::Builder::Formatter'=> '1.302045',
12827 'Test::Builder::Module' => '1.302045',
12828 'Test::Builder::Tester' => '1.302045',
12829 'Test::Builder::Tester::Color'=> '1.302045',
12830 'Test::Builder::TodoDiag'=> '1.302045',
12831 'Test::More' => '1.302045',
12832 'Test::Simple' => '1.302045',
12833 'Test::Tester' => '1.302045',
12834 'Test::Tester::Capture' => '1.302045',
12835 'Test::Tester::CaptureRunner'=> '1.302045',
12836 'Test::Tester::Delegate'=> '1.302045',
12837 'Test::use::ok' => '1.302045',
12838 'Time::HiRes' => '1.9739',
12839 'Unicode' => '9.0.0',
12840 'Unicode::UCD' => '0.66',
12841 'XSLoader' => '0.22',
12842 'bigint' => '0.43',
12843 'bignum' => '0.43',
12844 'bigrat' => '0.43',
12845 'encoding' => '2.17_01',
12846 'encoding::warnings' => '0.13',
12847 'feature' => '1.45',
12848 'ok' => '1.302045',
12849 'version' => '0.9917',
12850 'version::regex' => '0.9917',
12851 'warnings' => '1.37',
c338e234
MH
12852 },
12853 removed => {
12854 }
12855 },
dec2b171
SH
12856 5.025004 => {
12857 delta_from => 5.025003,
12858 changed => {
45f300ac
CBW
12859 'App::Cpan' => '1.64_01',
12860 'App::Prove' => '3.36_01',
12861 'App::Prove::State' => '3.36_01',
12862 'App::Prove::State::Result'=> '3.36_01',
12863 'App::Prove::State::Result::Test'=> '3.36_01',
12864 'Archive::Tar' => '2.10',
12865 'Archive::Tar::Constant'=> '2.10',
12866 'Archive::Tar::File' => '2.10',
12867 'B' => '1.63',
12868 'B::Concise' => '0.998',
12869 'B::Deparse' => '1.38',
dec2b171 12870 'B::Op_private' => '5.025004',
45f300ac
CBW
12871 'CPAN' => '2.14_01',
12872 'CPAN::Meta' => '2.150010',
12873 'CPAN::Meta::Converter' => '2.150010',
12874 'CPAN::Meta::Feature' => '2.150010',
12875 'CPAN::Meta::History' => '2.150010',
12876 'CPAN::Meta::Merge' => '2.150010',
12877 'CPAN::Meta::Prereqs' => '2.150010',
12878 'CPAN::Meta::Spec' => '2.150010',
12879 'CPAN::Meta::Validator' => '2.150010',
12880 'Carp' => '1.42',
12881 'Carp::Heavy' => '1.42',
12882 'Compress::Zlib' => '2.069_01',
dec2b171 12883 'Config' => '5.025004',
45f300ac
CBW
12884 'Config::Perl::V' => '0.27',
12885 'Cwd' => '3.65',
12886 'Digest' => '1.17_01',
12887 'Digest::SHA' => '5.96',
12888 'Encode' => '2.86',
12889 'Errno' => '1.26',
12890 'ExtUtils::Command' => '7.24',
12891 'ExtUtils::Command::MM' => '7.24',
12892 'ExtUtils::Liblist' => '7.24',
12893 'ExtUtils::Liblist::Kid'=> '7.24',
12894 'ExtUtils::MM' => '7.24',
12895 'ExtUtils::MM_AIX' => '7.24',
12896 'ExtUtils::MM_Any' => '7.24',
12897 'ExtUtils::MM_BeOS' => '7.24',
12898 'ExtUtils::MM_Cygwin' => '7.24',
12899 'ExtUtils::MM_DOS' => '7.24',
12900 'ExtUtils::MM_Darwin' => '7.24',
12901 'ExtUtils::MM_MacOS' => '7.24',
12902 'ExtUtils::MM_NW5' => '7.24',
12903 'ExtUtils::MM_OS2' => '7.24',
12904 'ExtUtils::MM_QNX' => '7.24',
12905 'ExtUtils::MM_UWIN' => '7.24',
12906 'ExtUtils::MM_Unix' => '7.24',
12907 'ExtUtils::MM_VMS' => '7.24',
12908 'ExtUtils::MM_VOS' => '7.24',
12909 'ExtUtils::MM_Win32' => '7.24',
12910 'ExtUtils::MM_Win95' => '7.24',
12911 'ExtUtils::MY' => '7.24',
12912 'ExtUtils::MakeMaker' => '7.24',
12913 'ExtUtils::MakeMaker::Config'=> '7.24',
12914 'ExtUtils::MakeMaker::Locale'=> '7.24',
12915 'ExtUtils::MakeMaker::version'=> '7.24',
12916 'ExtUtils::MakeMaker::version::regex'=> '7.24',
12917 'ExtUtils::Mkbootstrap' => '7.24',
12918 'ExtUtils::Mksymlists' => '7.24',
12919 'ExtUtils::testlib' => '7.24',
12920 'File::Fetch' => '0.52',
12921 'File::Spec' => '3.65',
12922 'File::Spec::AmigaOS' => '3.65',
12923 'File::Spec::Cygwin' => '3.65',
12924 'File::Spec::Epoc' => '3.65',
12925 'File::Spec::Functions' => '3.65',
12926 'File::Spec::Mac' => '3.65',
12927 'File::Spec::OS2' => '3.65',
12928 'File::Spec::Unix' => '3.65',
12929 'File::Spec::VMS' => '3.65',
12930 'File::Spec::Win32' => '3.65',
12931 'HTTP::Tiny' => '0.064',
12932 'Hash::Util' => '0.21',
12933 'I18N::LangTags' => '0.41',
12934 'I18N::LangTags::Detect'=> '1.06',
12935 'IO' => '1.37',
12936 'IO::Compress::Adapter::Bzip2'=> '2.069_01',
12937 'IO::Compress::Adapter::Deflate'=> '2.069_01',
12938 'IO::Compress::Adapter::Identity'=> '2.069_01',
12939 'IO::Compress::Base' => '2.069_01',
12940 'IO::Compress::Base::Common'=> '2.069_01',
12941 'IO::Compress::Bzip2' => '2.069_01',
12942 'IO::Compress::Deflate' => '2.069_01',
12943 'IO::Compress::Gzip' => '2.069_01',
12944 'IO::Compress::Gzip::Constants'=> '2.069_01',
12945 'IO::Compress::RawDeflate'=> '2.069_01',
12946 'IO::Compress::Zip' => '2.069_01',
12947 'IO::Compress::Zip::Constants'=> '2.069_01',
12948 'IO::Compress::Zlib::Constants'=> '2.069_01',
12949 'IO::Compress::Zlib::Extra'=> '2.069_01',
12950 'IO::Socket::IP' => '0.38',
12951 'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01',
12952 'IO::Uncompress::Adapter::Identity'=> '2.069_01',
12953 'IO::Uncompress::Adapter::Inflate'=> '2.069_01',
12954 'IO::Uncompress::AnyInflate'=> '2.069_01',
12955 'IO::Uncompress::AnyUncompress'=> '2.069_01',
12956 'IO::Uncompress::Base' => '2.069_01',
12957 'IO::Uncompress::Bunzip2'=> '2.069_01',
12958 'IO::Uncompress::Gunzip'=> '2.069_01',
12959 'IO::Uncompress::Inflate'=> '2.069_01',
12960 'IO::Uncompress::RawInflate'=> '2.069_01',
12961 'IO::Uncompress::Unzip' => '2.069_01',
12962 'IPC::Cmd' => '0.96',
12963 'JSON::PP' => '2.27400_01',
12964 'Locale::Maketext' => '1.28',
12965 'Locale::Maketext::Simple'=> '0.21_01',
12966 'Math::BigFloat::Trace' => '0.43_01',
12967 'Math::BigInt::Trace' => '0.43_01',
12968 'Memoize' => '1.03_01',
dec2b171
SH
12969 'Module::CoreList' => '5.20160820',
12970 'Module::CoreList::TieHashDelta'=> '5.20160820',
12971 'Module::CoreList::Utils'=> '5.20160820',
45f300ac
CBW
12972 'Module::Load::Conditional'=> '0.68',
12973 'Module::Metadata' => '1.000033',
12974 'NEXT' => '0.67',
12975 'Net::Cmd' => '3.10',
12976 'Net::Config' => '3.10',
12977 'Net::Domain' => '3.10',
12978 'Net::FTP' => '3.10',
12979 'Net::FTP::A' => '3.10',
12980 'Net::FTP::E' => '3.10',
12981 'Net::FTP::I' => '3.10',
12982 'Net::FTP::L' => '3.10',
12983 'Net::FTP::dataconn' => '3.10',
12984 'Net::NNTP' => '3.10',
12985 'Net::Netrc' => '3.10',
12986 'Net::POP3' => '3.10',
12987 'Net::Ping' => '2.44',
12988 'Net::SMTP' => '3.10',
12989 'Net::Time' => '3.10',
12990 'Opcode' => '1.37',
12991 'POSIX' => '1.71',
12992 'Parse::CPAN::Meta' => '2.150010',
12993 'Pod::Html' => '1.2201',
12994 'Pod::Perldoc' => '3.27',
12995 'Pod::Perldoc::BaseTo' => '3.27',
12996 'Pod::Perldoc::GetOptsOO'=> '3.27',
12997 'Pod::Perldoc::ToANSI' => '3.27',
12998 'Pod::Perldoc::ToChecker'=> '3.27',
12999 'Pod::Perldoc::ToMan' => '3.27',
13000 'Pod::Perldoc::ToNroff' => '3.27',
13001 'Pod::Perldoc::ToPod' => '3.27',
13002 'Pod::Perldoc::ToRtf' => '3.27',
13003 'Pod::Perldoc::ToTerm' => '3.27',
13004 'Pod::Perldoc::ToText' => '3.27',
13005 'Pod::Perldoc::ToTk' => '3.27',
13006 'Pod::Perldoc::ToXml' => '3.27',
13007 'Storable' => '2.57',
13008 'Sys::Syslog' => '0.34_01',
13009 'TAP::Base' => '3.36_01',
13010 'TAP::Formatter::Base' => '3.36_01',
13011 'TAP::Formatter::Color' => '3.36_01',
13012 'TAP::Formatter::Console'=> '3.36_01',
13013 'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13014 'TAP::Formatter::Console::Session'=> '3.36_01',
13015 'TAP::Formatter::File' => '3.36_01',
13016 'TAP::Formatter::File::Session'=> '3.36_01',
13017 'TAP::Formatter::Session'=> '3.36_01',
13018 'TAP::Harness' => '3.36_01',
13019 'TAP::Harness::Env' => '3.36_01',
13020 'TAP::Object' => '3.36_01',
13021 'TAP::Parser' => '3.36_01',
13022 'TAP::Parser::Aggregator'=> '3.36_01',
13023 'TAP::Parser::Grammar' => '3.36_01',
13024 'TAP::Parser::Iterator' => '3.36_01',
13025 'TAP::Parser::Iterator::Array'=> '3.36_01',
13026 'TAP::Parser::Iterator::Process'=> '3.36_01',
13027 'TAP::Parser::Iterator::Stream'=> '3.36_01',
13028 'TAP::Parser::IteratorFactory'=> '3.36_01',
13029 'TAP::Parser::Multiplexer'=> '3.36_01',
13030 'TAP::Parser::Result' => '3.36_01',
13031 'TAP::Parser::Result::Bailout'=> '3.36_01',
13032 'TAP::Parser::Result::Comment'=> '3.36_01',
13033 'TAP::Parser::Result::Plan'=> '3.36_01',
13034 'TAP::Parser::Result::Pragma'=> '3.36_01',
13035 'TAP::Parser::Result::Test'=> '3.36_01',
13036 'TAP::Parser::Result::Unknown'=> '3.36_01',
13037 'TAP::Parser::Result::Version'=> '3.36_01',
13038 'TAP::Parser::Result::YAML'=> '3.36_01',
13039 'TAP::Parser::ResultFactory'=> '3.36_01',
13040 'TAP::Parser::Scheduler'=> '3.36_01',
13041 'TAP::Parser::Scheduler::Job'=> '3.36_01',
13042 'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13043 'TAP::Parser::Source' => '3.36_01',
13044 'TAP::Parser::SourceHandler'=> '3.36_01',
13045 'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13046 'TAP::Parser::SourceHandler::File'=> '3.36_01',
13047 'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13048 'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13049 'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13050 'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13051 'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13052 'Test' => '1.29',
13053 'Test2' => '1.302052',
13054 'Test2::API' => '1.302052',
13055 'Test2::API::Breakage' => '1.302052',
13056 'Test2::API::Context' => '1.302052',
13057 'Test2::API::Instance' => '1.302052',
13058 'Test2::API::Stack' => '1.302052',
13059 'Test2::Event' => '1.302052',
13060 'Test2::Event::Bail' => '1.302052',
13061 'Test2::Event::Diag' => '1.302052',
13062 'Test2::Event::Exception'=> '1.302052',
13063 'Test2::Event::Generic' => '1.302052',
13064 'Test2::Event::Info' => '1.302052',
13065 'Test2::Event::Note' => '1.302052',
13066 'Test2::Event::Ok' => '1.302052',
13067 'Test2::Event::Plan' => '1.302052',
13068 'Test2::Event::Skip' => '1.302052',
13069 'Test2::Event::Subtest' => '1.302052',
13070 'Test2::Event::Waiting' => '1.302052',
13071 'Test2::Formatter' => '1.302052',
13072 'Test2::Formatter::TAP' => '1.302052',
13073 'Test2::Hub' => '1.302052',
13074 'Test2::Hub::Interceptor'=> '1.302052',
13075 'Test2::Hub::Interceptor::Terminator'=> '1.302052',
13076 'Test2::Hub::Subtest' => '1.302052',
13077 'Test2::IPC' => '1.302052',
13078 'Test2::IPC::Driver' => '1.302052',
13079 'Test2::IPC::Driver::Files'=> '1.302052',
13080 'Test2::Util' => '1.302052',
13081 'Test2::Util::ExternalMeta'=> '1.302052',
13082 'Test2::Util::HashBase' => '1.302052',
13083 'Test2::Util::Trace' => '1.302052',
13084 'Test::Builder' => '1.302052',
13085 'Test::Builder::Formatter'=> '1.302052',
13086 'Test::Builder::Module' => '1.302052',
13087 'Test::Builder::Tester' => '1.302052',
13088 'Test::Builder::Tester::Color'=> '1.302052',
13089 'Test::Builder::TodoDiag'=> '1.302052',
13090 'Test::Harness' => '3.36_01',
13091 'Test::More' => '1.302052',
13092 'Test::Simple' => '1.302052',
13093 'Test::Tester' => '1.302052',
13094 'Test::Tester::Capture' => '1.302052',
13095 'Test::Tester::CaptureRunner'=> '1.302052',
13096 'Test::Tester::Delegate'=> '1.302052',
13097 'Test::use::ok' => '1.302052',
13098 'Tie::Hash::NamedCapture'=> '0.10',
13099 'Time::Local' => '1.24',
13100 'XS::APItest' => '0.83',
13101 'arybase' => '0.12',
13102 'base' => '2.24',
13103 'bigint' => '0.43_01',
13104 'bignum' => '0.43_01',
13105 'bigrat' => '0.43_01',
13106 'encoding' => '2.18',
13107 'ok' => '1.302052',
dec2b171
SH
13108 },
13109 removed => {
13110 }
13111 },
9b3afcbd
CBW
13112 5.025005 => {
13113 delta_from => 5.025004,
13114 changed => {
13115 'B::Op_private' => '5.025005',
13116 'Config' => '5.025005',
7852d856
SL
13117 'Filter::Simple' => '0.93',
13118 'Locale::Codes' => '3.40',
13119 'Locale::Codes::Constants'=> '3.40',
13120 'Locale::Codes::Country'=> '3.40',
13121 'Locale::Codes::Country_Codes'=> '3.40',
13122 'Locale::Codes::Country_Retired'=> '3.40',
13123 'Locale::Codes::Currency'=> '3.40',
13124 'Locale::Codes::Currency_Codes'=> '3.40',
13125 'Locale::Codes::Currency_Retired'=> '3.40',
13126 'Locale::Codes::LangExt'=> '3.40',
13127 'Locale::Codes::LangExt_Codes'=> '3.40',
13128 'Locale::Codes::LangExt_Retired'=> '3.40',
13129 'Locale::Codes::LangFam'=> '3.40',
13130 'Locale::Codes::LangFam_Codes'=> '3.40',
13131 'Locale::Codes::LangFam_Retired'=> '3.40',
13132 'Locale::Codes::LangVar'=> '3.40',
13133 'Locale::Codes::LangVar_Codes'=> '3.40',
13134 'Locale::Codes::LangVar_Retired'=> '3.40',
13135 'Locale::Codes::Language'=> '3.40',
13136 'Locale::Codes::Language_Codes'=> '3.40',
13137 'Locale::Codes::Language_Retired'=> '3.40',
13138 'Locale::Codes::Script' => '3.40',
13139 'Locale::Codes::Script_Codes'=> '3.40',
13140 'Locale::Codes::Script_Retired'=> '3.40',
13141 'Locale::Country' => '3.40',
13142 'Locale::Currency' => '3.40',
13143 'Locale::Language' => '3.40',
13144 'Locale::Script' => '3.40',
9b3afcbd
CBW
13145 'Module::CoreList' => '5.20160920',
13146 'Module::CoreList::TieHashDelta'=> '5.20160920',
13147 'Module::CoreList::Utils'=> '5.20160920',
7852d856
SL
13148 'POSIX' => '1.72',
13149 'Sys::Syslog' => '0.35',
13150 'Test2' => '1.302056',
13151 'Test2::API' => '1.302056',
13152 'Test2::API::Breakage' => '1.302056',
13153 'Test2::API::Context' => '1.302056',
13154 'Test2::API::Instance' => '1.302056',
13155 'Test2::API::Stack' => '1.302056',
13156 'Test2::Event' => '1.302056',
13157 'Test2::Event::Bail' => '1.302056',
13158 'Test2::Event::Diag' => '1.302056',
13159 'Test2::Event::Exception'=> '1.302056',
13160 'Test2::Event::Generic' => '1.302056',
13161 'Test2::Event::Info' => '1.302056',
13162 'Test2::Event::Note' => '1.302056',
13163 'Test2::Event::Ok' => '1.302056',
13164 'Test2::Event::Plan' => '1.302056',
13165 'Test2::Event::Skip' => '1.302056',
13166 'Test2::Event::Subtest' => '1.302056',
13167 'Test2::Event::Waiting' => '1.302056',
13168 'Test2::Formatter' => '1.302056',
13169 'Test2::Formatter::TAP' => '1.302056',
13170 'Test2::Hub' => '1.302056',
13171 'Test2::Hub::Interceptor'=> '1.302056',
13172 'Test2::Hub::Interceptor::Terminator'=> '1.302056',
13173 'Test2::Hub::Subtest' => '1.302056',
13174 'Test2::IPC' => '1.302056',
13175 'Test2::IPC::Driver' => '1.302056',
13176 'Test2::IPC::Driver::Files'=> '1.302056',
13177 'Test2::Util' => '1.302056',
13178 'Test2::Util::ExternalMeta'=> '1.302056',
13179 'Test2::Util::HashBase' => '1.302056',
13180 'Test2::Util::Trace' => '1.302056',
13181 'Test::Builder' => '1.302056',
13182 'Test::Builder::Formatter'=> '1.302056',
13183 'Test::Builder::Module' => '1.302056',
13184 'Test::Builder::Tester' => '1.302056',
13185 'Test::Builder::Tester::Color'=> '1.302056',
13186 'Test::Builder::TodoDiag'=> '1.302056',
13187 'Test::More' => '1.302056',
13188 'Test::Simple' => '1.302056',
13189 'Test::Tester' => '1.302056',
13190 'Test::Tester::Capture' => '1.302056',
13191 'Test::Tester::CaptureRunner'=> '1.302056',
13192 'Test::Tester::Delegate'=> '1.302056',
13193 'Test::use::ok' => '1.302056',
13194 'Thread::Semaphore' => '2.13',
13195 'XS::APItest' => '0.84',
13196 'XSLoader' => '0.24',
13197 'ok' => '1.302056',
9b3afcbd
CBW
13198 },
13199 removed => {
13200 }
13201 },
bc46539a
SL
13202 5.025006 => {
13203 delta_from => 5.025005,
13204 changed => {
f6fd8a7a
AC
13205 'Archive::Tar' => '2.14',
13206 'Archive::Tar::Constant'=> '2.14',
13207 'Archive::Tar::File' => '2.14',
13208 'B' => '1.64',
13209 'B::Concise' => '0.999',
13210 'B::Deparse' => '1.39',
bc46539a
SL
13211 'B::Op_private' => '5.025006',
13212 'Config' => '5.025006',
13213 'Data::Dumper' => '2.162',
f6fd8a7a
AC
13214 'Devel::Peek' => '1.25',
13215 'HTTP::Tiny' => '0.070',
13216 'List::Util' => '1.46',
13217 'List::Util::XS' => '1.46',
13218 'Module::CoreList' => '5.20161020',
13219 'Module::CoreList::TieHashDelta'=> '5.20161020',
13220 'Module::CoreList::Utils'=> '5.20161020',
13221 'Net::Ping' => '2.51',
bc46539a 13222 'OS2::DLL' => '1.07',
f6fd8a7a 13223 'Opcode' => '1.38',
bc46539a
SL
13224 'POSIX' => '1.73',
13225 'PerlIO::encoding' => '0.25',
f6fd8a7a
AC
13226 'Pod::Man' => '4.08',
13227 'Pod::ParseLink' => '4.08',
13228 'Pod::Text' => '4.08',
13229 'Pod::Text::Color' => '4.08',
13230 'Pod::Text::Overstrike' => '4.08',
13231 'Pod::Text::Termcap' => '4.08',
13232 'Scalar::Util' => '1.46',
bc46539a 13233 'Storable' => '2.58',
f6fd8a7a
AC
13234 'Sub::Util' => '1.46',
13235 'Test2' => '1.302059',
13236 'Test2::API' => '1.302059',
13237 'Test2::API::Breakage' => '1.302059',
13238 'Test2::API::Context' => '1.302059',
13239 'Test2::API::Instance' => '1.302059',
13240 'Test2::API::Stack' => '1.302059',
13241 'Test2::Event' => '1.302059',
13242 'Test2::Event::Bail' => '1.302059',
13243 'Test2::Event::Diag' => '1.302059',
13244 'Test2::Event::Exception'=> '1.302059',
13245 'Test2::Event::Generic' => '1.302059',
13246 'Test2::Event::Info' => '1.302059',
13247 'Test2::Event::Note' => '1.302059',
13248 'Test2::Event::Ok' => '1.302059',
13249 'Test2::Event::Plan' => '1.302059',
13250 'Test2::Event::Skip' => '1.302059',
13251 'Test2::Event::Subtest' => '1.302059',
13252 'Test2::Event::Waiting' => '1.302059',
13253 'Test2::Formatter' => '1.302059',
13254 'Test2::Formatter::TAP' => '1.302059',
13255 'Test2::Hub' => '1.302059',
13256 'Test2::Hub::Interceptor'=> '1.302059',
13257 'Test2::Hub::Interceptor::Terminator'=> '1.302059',
13258 'Test2::Hub::Subtest' => '1.302059',
13259 'Test2::IPC' => '1.302059',
13260 'Test2::IPC::Driver' => '1.302059',
13261 'Test2::IPC::Driver::Files'=> '1.302059',
13262 'Test2::Util' => '1.302059',
13263 'Test2::Util::ExternalMeta'=> '1.302059',
13264 'Test2::Util::HashBase' => '1.302059',
13265 'Test2::Util::Trace' => '1.302059',
13266 'Test::Builder' => '1.302059',
13267 'Test::Builder::Formatter'=> '1.302059',
13268 'Test::Builder::Module' => '1.302059',
13269 'Test::Builder::Tester' => '1.302059',
13270 'Test::Builder::Tester::Color'=> '1.302059',
13271 'Test::Builder::TodoDiag'=> '1.302059',
13272 'Test::More' => '1.302059',
13273 'Test::Simple' => '1.302059',
13274 'Test::Tester' => '1.302059',
13275 'Test::Tester::Capture' => '1.302059',
13276 'Test::Tester::CaptureRunner'=> '1.302059',
13277 'Test::Tester::Delegate'=> '1.302059',
13278 'Test::use::ok' => '1.302059',
13279 'Time::HiRes' => '1.9740_01',
13280 'VMS::Stdio' => '2.42',
13281 'XS::APItest' => '0.86',
13282 'attributes' => '0.28',
13283 'mro' => '1.19',
13284 'ok' => '1.302059',
13285 'overload' => '1.27',
13286 'parent' => '0.236',
bc46539a
SL
13287 },
13288 removed => {
13289 }
13290 },
935d7564
AC
13291 5.025007 => {
13292 delta_from => 5.025006,
13293 changed => {
b1b49d10
CG
13294 'Archive::Tar' => '2.18',
13295 'Archive::Tar::Constant'=> '2.18',
13296 'Archive::Tar::File' => '2.18',
13297 'B' => '1.65',
935d7564
AC
13298 'B::Op_private' => '5.025007',
13299 'Config' => '5.025007',
b1b49d10
CG
13300 'Cwd' => '3.66',
13301 'Data::Dumper' => '2.165',
13302 'Devel::Peek' => '1.26',
13303 'DynaLoader' => '1.40',
13304 'Errno' => '1.27',
13305 'ExtUtils::ParseXS::Utilities'=> '3.34',
13306 'File::Spec' => '3.66',
13307 'File::Spec::AmigaOS' => '3.66',
13308 'File::Spec::Cygwin' => '3.66',
13309 'File::Spec::Epoc' => '3.66',
13310 'File::Spec::Functions' => '3.66',
13311 'File::Spec::Mac' => '3.66',
13312 'File::Spec::OS2' => '3.66',
13313 'File::Spec::Unix' => '3.66',
13314 'File::Spec::VMS' => '3.66',
13315 'File::Spec::Win32' => '3.66',
13316 'Hash::Util' => '0.22',
13317 'JSON::PP' => '2.27400_02',
13318 'List::Util' => '1.46_02',
13319 'List::Util::XS' => '1.46_02',
13320 'Math::BigFloat' => '1.999727',
13321 'Math::BigInt' => '1.999727',
13322 'Math::BigInt::Calc' => '1.999727',
13323 'Math::BigInt::CalcEmu' => '1.999727',
13324 'Math::Complex' => '1.5901',
13325 'Module::CoreList' => '5.20161120',
13326 'Module::CoreList::TieHashDelta'=> '5.20161120',
13327 'Module::CoreList::Utils'=> '5.20161120',
13328 'Net::Ping' => '2.55',
13329 'Opcode' => '1.39',
13330 'POSIX' => '1.75',
13331 'Pod::Man' => '4.09',
13332 'Pod::ParseLink' => '4.09',
13333 'Pod::Text' => '4.09',
13334 'Pod::Text::Color' => '4.09',
13335 'Pod::Text::Overstrike' => '4.09',
13336 'Pod::Text::Termcap' => '4.09',
13337 'Scalar::Util' => '1.46_02',
13338 'Storable' => '2.59',
13339 'Sub::Util' => '1.46_02',
13340 'Term::ANSIColor' => '4.06',
13341 'Test2' => '1.302062',
13342 'Test2::API' => '1.302062',
13343 'Test2::API::Breakage' => '1.302062',
13344 'Test2::API::Context' => '1.302062',
13345 'Test2::API::Instance' => '1.302062',
13346 'Test2::API::Stack' => '1.302062',
13347 'Test2::Event' => '1.302062',
13348 'Test2::Event::Bail' => '1.302062',
13349 'Test2::Event::Diag' => '1.302062',
13350 'Test2::Event::Exception'=> '1.302062',
13351 'Test2::Event::Generic' => '1.302062',
13352 'Test2::Event::Info' => '1.302062',
13353 'Test2::Event::Note' => '1.302062',
13354 'Test2::Event::Ok' => '1.302062',
13355 'Test2::Event::Plan' => '1.302062',
13356 'Test2::Event::Skip' => '1.302062',
13357 'Test2::Event::Subtest' => '1.302062',
13358 'Test2::Event::Waiting' => '1.302062',
13359 'Test2::Formatter' => '1.302062',
13360 'Test2::Formatter::TAP' => '1.302062',
13361 'Test2::Hub' => '1.302062',
13362 'Test2::Hub::Interceptor'=> '1.302062',
13363 'Test2::Hub::Interceptor::Terminator'=> '1.302062',
13364 'Test2::Hub::Subtest' => '1.302062',
13365 'Test2::IPC' => '1.302062',
13366 'Test2::IPC::Driver' => '1.302062',
13367 'Test2::IPC::Driver::Files'=> '1.302062',
13368 'Test2::Util' => '1.302062',
13369 'Test2::Util::ExternalMeta'=> '1.302062',
13370 'Test2::Util::HashBase' => '1.302062',
13371 'Test2::Util::Trace' => '1.302062',
13372 'Test::Builder' => '1.302062',
13373 'Test::Builder::Formatter'=> '1.302062',
13374 'Test::Builder::Module' => '1.302062',
13375 'Test::Builder::Tester' => '1.302062',
13376 'Test::Builder::Tester::Color'=> '1.302062',
13377 'Test::Builder::TodoDiag'=> '1.302062',
13378 'Test::More' => '1.302062',
13379 'Test::Simple' => '1.302062',
13380 'Test::Tester' => '1.302062',
13381 'Test::Tester::Capture' => '1.302062',
13382 'Test::Tester::CaptureRunner'=> '1.302062',
13383 'Test::Tester::Delegate'=> '1.302062',
13384 'Test::use::ok' => '1.302062',
13385 'Time::HiRes' => '1.9740_03',
13386 'Unicode::Collate' => '1.18',
13387 'Unicode::Collate::CJK::Big5'=> '1.18',
13388 'Unicode::Collate::CJK::GB2312'=> '1.18',
13389 'Unicode::Collate::CJK::JISX0208'=> '1.18',
13390 'Unicode::Collate::CJK::Korean'=> '1.18',
13391 'Unicode::Collate::CJK::Pinyin'=> '1.18',
13392 'Unicode::Collate::CJK::Stroke'=> '1.18',
13393 'Unicode::Collate::CJK::Zhuyin'=> '1.18',
13394 'Unicode::Collate::Locale'=> '1.18',
13395 'Unicode::UCD' => '0.67',
13396 'XS::APItest' => '0.87',
13397 'XS::Typemap' => '0.15',
13398 'mro' => '1.20',
13399 'ok' => '1.302062',
13400 'threads' => '2.10',
935d7564
AC
13401 },
13402 removed => {
13403 }
13404 },
d5584eb3
CG
13405 5.025008 => {
13406 delta_from => 5.025007,
13407 changed => {
79ca97c0
S
13408 'Archive::Tar' => '2.24',
13409 'Archive::Tar::Constant'=> '2.24',
13410 'Archive::Tar::File' => '2.24',
13411 'B::Debug' => '1.24',
13412 'B::Op_private' => '5.025008',
13413 'Config' => '5.025008',
13414 'Data::Dumper' => '2.166',
13415 'Encode' => '2.88',
13416 'Encode::Alias' => '2.21',
13417 'Encode::CN::HZ' => '2.08',
13418 'Encode::MIME::Header' => '2.24',
13419 'Encode::MIME::Name' => '1.02',
13420 'Encode::Unicode' => '2.1501',
13421 'IO' => '1.38',
13422 'Locale::Codes' => '3.42',
13423 'Locale::Codes::Constants'=> '3.42',
13424 'Locale::Codes::Country'=> '3.42',
13425 'Locale::Codes::Country_Codes'=> '3.42',
13426 'Locale::Codes::Country_Retired'=> '3.42',
13427 'Locale::Codes::Currency'=> '3.42',
13428 'Locale::Codes::Currency_Codes'=> '3.42',
13429 'Locale::Codes::Currency_Retired'=> '3.42',
13430 'Locale::Codes::LangExt'=> '3.42',
13431 'Locale::Codes::LangExt_Codes'=> '3.42',
13432 'Locale::Codes::LangExt_Retired'=> '3.42',
13433 'Locale::Codes::LangFam'=> '3.42',
13434 'Locale::Codes::LangFam_Codes'=> '3.42',
13435 'Locale::Codes::LangFam_Retired'=> '3.42',
13436 'Locale::Codes::LangVar'=> '3.42',
13437 'Locale::Codes::LangVar_Codes'=> '3.42',
13438 'Locale::Codes::LangVar_Retired'=> '3.42',
13439 'Locale::Codes::Language'=> '3.42',
13440 'Locale::Codes::Language_Codes'=> '3.42',
13441 'Locale::Codes::Language_Retired'=> '3.42',
13442 'Locale::Codes::Script' => '3.42',
13443 'Locale::Codes::Script_Codes'=> '3.42',
13444 'Locale::Codes::Script_Retired'=> '3.42',
13445 'Locale::Country' => '3.42',
13446 'Locale::Currency' => '3.42',
13447 'Locale::Language' => '3.42',
13448 'Locale::Script' => '3.42',
13449 'Math::BigFloat' => '1.999806',
13450 'Math::BigFloat::Trace' => '0.47',
13451 'Math::BigInt' => '1.999806',
13452 'Math::BigInt::Calc' => '1.999806',
13453 'Math::BigInt::CalcEmu' => '1.999806',
13454 'Math::BigInt::FastCalc'=> '0.5005',
13455 'Math::BigInt::Lib' => '1.999806',
13456 'Math::BigInt::Trace' => '0.47',
13457 'Math::BigRat' => '0.2611',
d5584eb3
CG
13458 'Module::CoreList' => '5.20161220',
13459 'Module::CoreList::TieHashDelta'=> '5.20161220',
13460 'Module::CoreList::Utils'=> '5.20161220',
79ca97c0
S
13461 'POSIX' => '1.76',
13462 'PerlIO::scalar' => '0.25',
13463 'Pod::Simple' => '3.35',
13464 'Pod::Simple::BlackBox' => '3.35',
13465 'Pod::Simple::Checker' => '3.35',
13466 'Pod::Simple::Debug' => '3.35',
13467 'Pod::Simple::DumpAsText'=> '3.35',
13468 'Pod::Simple::DumpAsXML'=> '3.35',
13469 'Pod::Simple::HTML' => '3.35',
13470 'Pod::Simple::HTMLBatch'=> '3.35',
13471 'Pod::Simple::LinkSection'=> '3.35',
13472 'Pod::Simple::Methody' => '3.35',
13473 'Pod::Simple::Progress' => '3.35',
13474 'Pod::Simple::PullParser'=> '3.35',
13475 'Pod::Simple::PullParserEndToken'=> '3.35',
13476 'Pod::Simple::PullParserStartToken'=> '3.35',
13477 'Pod::Simple::PullParserTextToken'=> '3.35',
13478 'Pod::Simple::PullParserToken'=> '3.35',
13479 'Pod::Simple::RTF' => '3.35',
13480 'Pod::Simple::Search' => '3.35',
13481 'Pod::Simple::SimpleTree'=> '3.35',
13482 'Pod::Simple::Text' => '3.35',
13483 'Pod::Simple::TextContent'=> '3.35',
13484 'Pod::Simple::TiedOutFH'=> '3.35',
13485 'Pod::Simple::Transcode'=> '3.35',
13486 'Pod::Simple::TranscodeDumb'=> '3.35',
13487 'Pod::Simple::TranscodeSmart'=> '3.35',
13488 'Pod::Simple::XHTML' => '3.35',
13489 'Pod::Simple::XMLOutStream'=> '3.35',
13490 'Test2' => '1.302073',
13491 'Test2::API' => '1.302073',
13492 'Test2::API::Breakage' => '1.302073',
13493 'Test2::API::Context' => '1.302073',
13494 'Test2::API::Instance' => '1.302073',
13495 'Test2::API::Stack' => '1.302073',
13496 'Test2::Event' => '1.302073',
13497 'Test2::Event::Bail' => '1.302073',
13498 'Test2::Event::Diag' => '1.302073',
13499 'Test2::Event::Encoding'=> '1.302073',
13500 'Test2::Event::Exception'=> '1.302073',
13501 'Test2::Event::Generic' => '1.302073',
13502 'Test2::Event::Info' => '1.302073',
13503 'Test2::Event::Note' => '1.302073',
13504 'Test2::Event::Ok' => '1.302073',
13505 'Test2::Event::Plan' => '1.302073',
13506 'Test2::Event::Skip' => '1.302073',
13507 'Test2::Event::Subtest' => '1.302073',
13508 'Test2::Event::TAP::Version'=> '1.302073',
13509 'Test2::Event::Waiting' => '1.302073',
13510 'Test2::Formatter' => '1.302073',
13511 'Test2::Formatter::TAP' => '1.302073',
13512 'Test2::Hub' => '1.302073',
13513 'Test2::Hub::Interceptor'=> '1.302073',
13514 'Test2::Hub::Interceptor::Terminator'=> '1.302073',
13515 'Test2::Hub::Subtest' => '1.302073',
13516 'Test2::IPC' => '1.302073',
13517 'Test2::IPC::Driver' => '1.302073',
13518 'Test2::IPC::Driver::Files'=> '1.302073',
13519 'Test2::Tools::Tiny' => '1.302073',
13520 'Test2::Util' => '1.302073',
13521 'Test2::Util::ExternalMeta'=> '1.302073',
13522 'Test2::Util::HashBase' => '0.002',
13523 'Test2::Util::Trace' => '1.302073',
13524 'Test::Builder' => '1.302073',
13525 'Test::Builder::Formatter'=> '1.302073',
13526 'Test::Builder::Module' => '1.302073',
13527 'Test::Builder::Tester' => '1.302073',
13528 'Test::Builder::Tester::Color'=> '1.302073',
13529 'Test::Builder::TodoDiag'=> '1.302073',
13530 'Test::More' => '1.302073',
13531 'Test::Simple' => '1.302073',
13532 'Test::Tester' => '1.302073',
13533 'Test::Tester::Capture' => '1.302073',
13534 'Test::Tester::CaptureRunner'=> '1.302073',
13535 'Test::Tester::Delegate'=> '1.302073',
13536 'Test::use::ok' => '1.302073',
13537 'Time::HiRes' => '1.9741',
13538 'Time::Local' => '1.25',
13539 'Unicode::Collate' => '1.19',
13540 'Unicode::Collate::CJK::Big5'=> '1.19',
13541 'Unicode::Collate::CJK::GB2312'=> '1.19',
13542 'Unicode::Collate::CJK::JISX0208'=> '1.19',
13543 'Unicode::Collate::CJK::Korean'=> '1.19',
13544 'Unicode::Collate::CJK::Pinyin'=> '1.19',
13545 'Unicode::Collate::CJK::Stroke'=> '1.19',
13546 'Unicode::Collate::CJK::Zhuyin'=> '1.19',
13547 'Unicode::Collate::Locale'=> '1.19',
13548 'bigint' => '0.47',
13549 'bignum' => '0.47',
13550 'bigrat' => '0.47',
13551 'encoding' => '2.19',
13552 'ok' => '1.302073',
d5584eb3
CG
13553 },
13554 removed => {
13555 }
2b776413 13556 },
d202f2b8
SH
13557 5.022003 => {
13558 delta_from => 5.022002,
13559 changed => {
13560 'App::Cpan' => '1.63_01',
13561 'App::Prove' => '3.35_01',
13562 'App::Prove::State' => '3.35_01',
13563 'App::Prove::State::Result'=> '3.35_01',
13564 'App::Prove::State::Result::Test'=> '3.35_01',
13565 'Archive::Tar' => '2.04_01',
13566 'Archive::Tar::Constant'=> '2.04_01',
13567 'Archive::Tar::File' => '2.04_01',
13568 'B::Op_private' => '5.022003',
13569 'CPAN' => '2.11_01',
13570 'Compress::Zlib' => '2.068_001',
13571 'Config' => '5.022003',
13572 'Cwd' => '3.56_02',
13573 'Digest' => '1.17_01',
13574 'Digest::SHA' => '5.95_01',
13575 'Encode' => '2.72_01',
13576 'ExtUtils::Command' => '1.20_01',
13577 'ExtUtils::Command::MM' => '7.04_02',
13578 'ExtUtils::Liblist' => '7.04_02',
13579 'ExtUtils::Liblist::Kid'=> '7.04_02',
13580 'ExtUtils::MM' => '7.04_02',
13581 'ExtUtils::MM_AIX' => '7.04_02',
13582 'ExtUtils::MM_Any' => '7.04_02',
13583 'ExtUtils::MM_BeOS' => '7.04_02',
13584 'ExtUtils::MM_Cygwin' => '7.04_02',
13585 'ExtUtils::MM_DOS' => '7.04_02',
13586 'ExtUtils::MM_Darwin' => '7.04_02',
13587 'ExtUtils::MM_MacOS' => '7.04_02',
13588 'ExtUtils::MM_NW5' => '7.04_02',
13589 'ExtUtils::MM_OS2' => '7.04_02',
13590 'ExtUtils::MM_QNX' => '7.04_02',
13591 'ExtUtils::MM_UWIN' => '7.04_02',
13592 'ExtUtils::MM_Unix' => '7.04_02',
13593 'ExtUtils::MM_VMS' => '7.04_02',
13594 'ExtUtils::MM_VOS' => '7.04_02',
13595 'ExtUtils::MM_Win32' => '7.04_02',
13596 'ExtUtils::MM_Win95' => '7.04_02',
13597 'ExtUtils::MY' => '7.04_02',
13598 'ExtUtils::MakeMaker' => '7.04_02',
13599 'ExtUtils::MakeMaker::Config'=> '7.04_02',
13600 'ExtUtils::Mkbootstrap' => '7.04_02',
13601 'ExtUtils::Mksymlists' => '7.04_02',
13602 'ExtUtils::testlib' => '7.04_02',
13603 'File::Fetch' => '0.48_01',
13604 'File::Spec' => '3.56_02',
13605 'File::Spec::Cygwin' => '3.56_02',
13606 'File::Spec::Epoc' => '3.56_02',
13607 'File::Spec::Functions' => '3.56_02',
13608 'File::Spec::Mac' => '3.56_02',
13609 'File::Spec::OS2' => '3.56_02',
13610 'File::Spec::Unix' => '3.56_02',
13611 'File::Spec::VMS' => '3.56_02',
13612 'File::Spec::Win32' => '3.56_02',
13613 'HTTP::Tiny' => '0.054_01',
13614 'I18N::LangTags::Detect'=> '1.05_01',
13615 'IO' => '1.35_01',
13616 'IO::Compress::Adapter::Bzip2'=> '2.068_001',
13617 'IO::Compress::Adapter::Deflate'=> '2.068_001',
13618 'IO::Compress::Adapter::Identity'=> '2.068_001',
13619 'IO::Compress::Base' => '2.068_001',
13620 'IO::Compress::Base::Common'=> '2.068_001',
13621 'IO::Compress::Bzip2' => '2.068_001',
13622 'IO::Compress::Deflate' => '2.068_001',
13623 'IO::Compress::Gzip' => '2.068_001',
13624 'IO::Compress::Gzip::Constants'=> '2.068_001',
13625 'IO::Compress::RawDeflate'=> '2.068_001',
13626 'IO::Compress::Zip' => '2.068_001',
13627 'IO::Compress::Zip::Constants'=> '2.068_001',
13628 'IO::Compress::Zlib::Constants'=> '2.068_001',
13629 'IO::Compress::Zlib::Extra'=> '2.068_001',
13630 'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001',
13631 'IO::Uncompress::Adapter::Identity'=> '2.068_001',
13632 'IO::Uncompress::Adapter::Inflate'=> '2.068_001',
13633 'IO::Uncompress::AnyInflate'=> '2.068_001',
13634 'IO::Uncompress::AnyUncompress'=> '2.068_001',
13635 'IO::Uncompress::Base' => '2.068_001',
13636 'IO::Uncompress::Bunzip2'=> '2.068_001',
13637 'IO::Uncompress::Gunzip'=> '2.068_001',
13638 'IO::Uncompress::Inflate'=> '2.068_001',
13639 'IO::Uncompress::RawInflate'=> '2.068_001',
13640 'IO::Uncompress::Unzip' => '2.068_001',
13641 'IPC::Cmd' => '0.92_01',
13642 'JSON::PP' => '2.27300_01',
13643 'Locale::Maketext' => '1.26_01',
13644 'Locale::Maketext::Simple'=> '0.21_01',
13645 'Memoize' => '1.03_01',
13646 'Module::CoreList' => '5.20170114_22',
13647 'Module::CoreList::TieHashDelta'=> '5.20170114_22',
13648 'Module::CoreList::Utils'=> '5.20170114_22',
13649 'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13650 'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13651 'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13652 'Net::Cmd' => '3.05_01',
13653 'Net::Config' => '3.05_01',
13654 'Net::Domain' => '3.05_01',
13655 'Net::FTP' => '3.05_01',
13656 'Net::FTP::A' => '3.05_01',
13657 'Net::FTP::E' => '3.05_01',
13658 'Net::FTP::I' => '3.05_01',
13659 'Net::FTP::L' => '3.05_01',
13660 'Net::FTP::dataconn' => '3.05_01',
13661 'Net::NNTP' => '3.05_01',
13662 'Net::Netrc' => '3.05_01',
13663 'Net::POP3' => '3.05_01',
13664 'Net::Ping' => '2.43_01',
13665 'Net::SMTP' => '3.05_01',
13666 'Net::Time' => '3.05_01',
13667 'Parse::CPAN::Meta' => '1.4414_001',
13668 'Pod::Html' => '1.2201',
13669 'Pod::Perldoc' => '3.25_01',
13670 'Storable' => '2.53_02',
13671 'Sys::Syslog' => '0.33_01',
13672 'TAP::Base' => '3.35_01',
13673 'TAP::Formatter::Base' => '3.35_01',
13674 'TAP::Formatter::Color' => '3.35_01',
13675 'TAP::Formatter::Console'=> '3.35_01',
13676 'TAP::Formatter::Console::ParallelSession'=> '3.35_01',
13677 'TAP::Formatter::Console::Session'=> '3.35_01',
13678 'TAP::Formatter::File' => '3.35_01',
13679 'TAP::Formatter::File::Session'=> '3.35_01',
13680 'TAP::Formatter::Session'=> '3.35_01',
13681 'TAP::Harness' => '3.35_01',
13682 'TAP::Harness::Env' => '3.35_01',
13683 'TAP::Object' => '3.35_01',
13684 'TAP::Parser' => '3.35_01',
13685 'TAP::Parser::Aggregator'=> '3.35_01',
13686 'TAP::Parser::Grammar' => '3.35_01',
13687 'TAP::Parser::Iterator' => '3.35_01',
13688 'TAP::Parser::Iterator::Array'=> '3.35_01',
13689 'TAP::Parser::Iterator::Process'=> '3.35_01',
13690 'TAP::Parser::Iterator::Stream'=> '3.35_01',
13691 'TAP::Parser::IteratorFactory'=> '3.35_01',
13692 'TAP::Parser::Multiplexer'=> '3.35_01',
13693 'TAP::Parser::Result' => '3.35_01',
13694 'TAP::Parser::Result::Bailout'=> '3.35_01',
13695 'TAP::Parser::Result::Comment'=> '3.35_01',
13696 'TAP::Parser::Result::Plan'=> '3.35_01',
13697 'TAP::Parser::Result::Pragma'=> '3.35_01',
13698 'TAP::Parser::Result::Test'=> '3.35_01',
13699 'TAP::Parser::Result::Unknown'=> '3.35_01',
13700 'TAP::Parser::Result::Version'=> '3.35_01',
13701 'TAP::Parser::Result::YAML'=> '3.35_01',
13702 'TAP::Parser::ResultFactory'=> '3.35_01',
13703 'TAP::Parser::Scheduler'=> '3.35_01',
13704 'TAP::Parser::Scheduler::Job'=> '3.35_01',
13705 'TAP::Parser::Scheduler::Spinner'=> '3.35_01',
13706 'TAP::Parser::Source' => '3.35_01',
13707 'TAP::Parser::SourceHandler'=> '3.35_01',
13708 'TAP::Parser::SourceHandler::Executable'=> '3.35_01',
13709 'TAP::Parser::SourceHandler::File'=> '3.35_01',
13710 'TAP::Parser::SourceHandler::Handle'=> '3.35_01',
13711 'TAP::Parser::SourceHandler::Perl'=> '3.35_01',
13712 'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01',
13713 'TAP::Parser::YAMLish::Reader'=> '3.35_01',
13714 'TAP::Parser::YAMLish::Writer'=> '3.35_01',
13715 'Test' => '1.26_01',
13716 'Test::Harness' => '3.35_01',
13717 'XSLoader' => '0.20_01',
13718 'bigint' => '0.39_01',
13719 'bignum' => '0.39_01',
13720 'bigrat' => '0.39_01',
13721 },
13722 removed => {
13723 }
13724 },
13725 5.024001 => {
13726 delta_from => 5.024000,
13727 changed => {
13728 'App::Cpan' => '1.63_01',
13729 'App::Prove' => '3.36_01',
13730 'App::Prove::State' => '3.36_01',
13731 'App::Prove::State::Result'=> '3.36_01',
13732 'App::Prove::State::Result::Test'=> '3.36_01',
13733 'Archive::Tar' => '2.04_01',
13734 'Archive::Tar::Constant'=> '2.04_01',
13735 'Archive::Tar::File' => '2.04_01',
13736 'B::Op_private' => '5.024001',
13737 'CPAN' => '2.11_01',
13738 'Compress::Zlib' => '2.069_001',
13739 'Config' => '5.024001',
13740 'Cwd' => '3.63_01',
13741 'Digest' => '1.17_01',
13742 'Digest::SHA' => '5.95_01',
13743 'Encode' => '2.80_01',
13744 'ExtUtils::Command' => '7.10_02',
13745 'ExtUtils::Command::MM' => '7.10_02',
13746 'ExtUtils::Liblist' => '7.10_02',
13747 'ExtUtils::Liblist::Kid'=> '7.10_02',
13748 'ExtUtils::MM' => '7.10_02',
13749 'ExtUtils::MM_AIX' => '7.10_02',
13750 'ExtUtils::MM_Any' => '7.10_02',
13751 'ExtUtils::MM_BeOS' => '7.10_02',
13752 'ExtUtils::MM_Cygwin' => '7.10_02',
13753 'ExtUtils::MM_DOS' => '7.10_02',
13754 'ExtUtils::MM_Darwin' => '7.10_02',
13755 'ExtUtils::MM_MacOS' => '7.10_02',
13756 'ExtUtils::MM_NW5' => '7.10_02',
13757 'ExtUtils::MM_OS2' => '7.10_02',
13758 'ExtUtils::MM_QNX' => '7.10_02',
13759 'ExtUtils::MM_UWIN' => '7.10_02',
13760 'ExtUtils::MM_Unix' => '7.10_02',
13761 'ExtUtils::MM_VMS' => '7.10_02',
13762 'ExtUtils::MM_VOS' => '7.10_02',
13763 'ExtUtils::MM_Win32' => '7.10_02',
13764 'ExtUtils::MM_Win95' => '7.10_02',
13765 'ExtUtils::MY' => '7.10_02',
13766 'ExtUtils::MakeMaker' => '7.10_02',
13767 'ExtUtils::MakeMaker::Config'=> '7.10_02',
13768 'ExtUtils::Mkbootstrap' => '7.10_02',
13769 'ExtUtils::Mksymlists' => '7.10_02',
13770 'ExtUtils::testlib' => '7.10_02',
13771 'File::Fetch' => '0.48_01',
13772 'File::Spec' => '3.63_01',
13773 'File::Spec::Cygwin' => '3.63_01',
13774 'File::Spec::Epoc' => '3.63_01',
13775 'File::Spec::Functions' => '3.63_01',
13776 'File::Spec::Mac' => '3.63_01',
13777 'File::Spec::OS2' => '3.63_01',
13778 'File::Spec::Unix' => '3.63_01',
13779 'File::Spec::VMS' => '3.63_01',
13780 'File::Spec::Win32' => '3.63_01',
13781 'HTTP::Tiny' => '0.056_001',
13782 'I18N::LangTags::Detect'=> '1.05_01',
13783 'IO' => '1.36_01',
13784 'IO::Compress::Adapter::Bzip2'=> '2.069_001',
13785 'IO::Compress::Adapter::Deflate'=> '2.069_001',
13786 'IO::Compress::Adapter::Identity'=> '2.069_001',
13787 'IO::Compress::Base' => '2.069_001',
13788 'IO::Compress::Base::Common'=> '2.069_001',
13789 'IO::Compress::Bzip2' => '2.069_001',
13790 'IO::Compress::Deflate' => '2.069_001',
13791 'IO::Compress::Gzip' => '2.069_001',
13792 'IO::Compress::Gzip::Constants'=> '2.069_001',
13793 'IO::Compress::RawDeflate'=> '2.069_001',
13794 'IO::Compress::Zip' => '2.069_001',
13795 'IO::Compress::Zip::Constants'=> '2.069_001',
13796 'IO::Compress::Zlib::Constants'=> '2.069_001',
13797 'IO::Compress::Zlib::Extra'=> '2.069_001',
13798 'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001',
13799 'IO::Uncompress::Adapter::Identity'=> '2.069_001',
13800 'IO::Uncompress::Adapter::Inflate'=> '2.069_001',
13801 'IO::Uncompress::AnyInflate'=> '2.069_001',
13802 'IO::Uncompress::AnyUncompress'=> '2.069_001',
13803 'IO::Uncompress::Base' => '2.069_001',
13804 'IO::Uncompress::Bunzip2'=> '2.069_001',
13805 'IO::Uncompress::Gunzip'=> '2.069_001',
13806 'IO::Uncompress::Inflate'=> '2.069_001',
13807 'IO::Uncompress::RawInflate'=> '2.069_001',
13808 'IO::Uncompress::Unzip' => '2.069_001',
13809 'IPC::Cmd' => '0.92_01',
13810 'JSON::PP' => '2.27300_01',
13811 'Locale::Maketext' => '1.26_01',
13812 'Locale::Maketext::Simple'=> '0.21_01',
13813 'Math::BigFloat::Trace' => '0.42_01',
13814 'Math::BigInt::Trace' => '0.42_01',
13815 'Memoize' => '1.03_01',
13816 'Module::CoreList' => '5.20170114_24',
13817 'Module::CoreList::TieHashDelta'=> '5.20170114_24',
13818 'Module::CoreList::Utils'=> '5.20170114_24',
13819 'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13820 'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13821 'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13822 'Net::Cmd' => '3.08_01',
13823 'Net::Config' => '3.08_01',
13824 'Net::Domain' => '3.08_01',
13825 'Net::FTP' => '3.08_01',
13826 'Net::FTP::A' => '3.08_01',
13827 'Net::FTP::E' => '3.08_01',
13828 'Net::FTP::I' => '3.08_01',
13829 'Net::FTP::L' => '3.08_01',
13830 'Net::FTP::dataconn' => '3.08_01',
13831 'Net::NNTP' => '3.08_01',
13832 'Net::Netrc' => '3.08_01',
13833 'Net::POP3' => '3.08_01',
13834 'Net::Ping' => '2.43_01',
13835 'Net::SMTP' => '3.08_01',
13836 'Net::Time' => '3.08_01',
13837 'Parse::CPAN::Meta' => '1.4417_001',
13838 'Pod::Html' => '1.2201',
13839 'Pod::Perldoc' => '3.25_03',
13840 'Storable' => '2.56_01',
13841 'Sys::Syslog' => '0.33_01',
13842 'TAP::Base' => '3.36_01',
13843 'TAP::Formatter::Base' => '3.36_01',
13844 'TAP::Formatter::Color' => '3.36_01',
13845 'TAP::Formatter::Console'=> '3.36_01',
13846 'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13847 'TAP::Formatter::Console::Session'=> '3.36_01',
13848 'TAP::Formatter::File' => '3.36_01',
13849 'TAP::Formatter::File::Session'=> '3.36_01',
13850 'TAP::Formatter::Session'=> '3.36_01',
13851 'TAP::Harness' => '3.36_01',
13852 'TAP::Harness::Env' => '3.36_01',
13853 'TAP::Object' => '3.36_01',
13854 'TAP::Parser' => '3.36_01',
13855 'TAP::Parser::Aggregator'=> '3.36_01',
13856 'TAP::Parser::Grammar' => '3.36_01',
13857 'TAP::Parser::Iterator' => '3.36_01',
13858 'TAP::Parser::Iterator::Array'=> '3.36_01',
13859 'TAP::Parser::Iterator::Process'=> '3.36_01',
13860 'TAP::Parser::Iterator::Stream'=> '3.36_01',
13861 'TAP::Parser::IteratorFactory'=> '3.36_01',
13862 'TAP::Parser::Multiplexer'=> '3.36_01',
13863 'TAP::Parser::Result' => '3.36_01',
13864 'TAP::Parser::Result::Bailout'=> '3.36_01',
13865 'TAP::Parser::Result::Comment'=> '3.36_01',
13866 'TAP::Parser::Result::Plan'=> '3.36_01',
13867 'TAP::Parser::Result::Pragma'=> '3.36_01',
13868 'TAP::Parser::Result::Test'=> '3.36_01',
13869 'TAP::Parser::Result::Unknown'=> '3.36_01',
13870 'TAP::Parser::Result::Version'=> '3.36_01',
13871 'TAP::Parser::Result::YAML'=> '3.36_01',
13872 'TAP::Parser::ResultFactory'=> '3.36_01',
13873 'TAP::Parser::Scheduler'=> '3.36_01',
13874 'TAP::Parser::Scheduler::Job'=> '3.36_01',
13875 'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13876 'TAP::Parser::Source' => '3.36_01',
13877 'TAP::Parser::SourceHandler'=> '3.36_01',
13878 'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13879 'TAP::Parser::SourceHandler::File'=> '3.36_01',
13880 'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13881 'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13882 'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13883 'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13884 'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13885 'Test' => '1.28_01',
13886 'Test::Harness' => '3.36_01',
13887 'XSLoader' => '0.22',
13888 'bigint' => '0.42_01',
13889 'bignum' => '0.42_01',
13890 'bigrat' => '0.42_01',
13891 },
13892 removed => {
13893 }
13894 },
2b776413
JK
13895 5.025009 => {
13896 delta_from => 5.025008,
13897 changed => {
ff2fd50f
A
13898 'App::Cpan' => '1.66',
13899 'B::Deparse' => '1.40',
d4151a23 13900 'B::Op_private' => '5.025009',
ff2fd50f
A
13901 'B::Terse' => '1.07',
13902 'B::Xref' => '1.06',
13903 'CPAN' => '2.16',
13904 'CPAN::Bundle' => '5.5002',
13905 'CPAN::Distribution' => '2.16',
13906 'CPAN::Exception::RecursiveDependency'=> '5.5001',
13907 'CPAN::FTP' => '5.5008',
13908 'CPAN::FirstTime' => '5.5310',
13909 'CPAN::HandleConfig' => '5.5008',
13910 'CPAN::Module' => '5.5003',
13911 'Compress::Raw::Bzip2' => '2.070',
13912 'Compress::Raw::Zlib' => '2.070',
d4151a23 13913 'Config' => '5.025009',
ff2fd50f
A
13914 'DB_File' => '1.840',
13915 'Data::Dumper' => '2.167',
13916 'Devel::SelfStubber' => '1.06',
13917 'DynaLoader' => '1.41',
13918 'Errno' => '1.28',
13919 'ExtUtils::Embed' => '1.34',
13920 'File::Glob' => '1.28',
13921 'I18N::LangTags' => '0.42',
2b776413
JK
13922 'Module::CoreList' => '5.20170120',
13923 'Module::CoreList::TieHashDelta'=> '5.20170120',
13924 'Module::CoreList::Utils'=> '5.20170120',
ff2fd50f
A
13925 'OS2::Process' => '1.12',
13926 'PerlIO::scalar' => '0.26',
13927 'Pod::Html' => '1.2202',
13928 'Storable' => '2.61',
13929 'Symbol' => '1.08',
13930 'Term::ReadLine' => '1.16',
13931 'Test' => '1.30',
13932 'Unicode::UCD' => '0.68',
13933 'VMS::DCLsym' => '1.08',
13934 'XS::APItest' => '0.88',
13935 'XSLoader' => '0.26',
13936 'attributes' => '0.29',
13937 'diagnostics' => '1.36',
13938 'feature' => '1.46',
13939 'lib' => '0.64',
13940 'overload' => '1.28',
13941 're' => '0.34',
13942 'threads' => '2.12',
13943 'threads::shared' => '1.54',
2b776413
JK
13944 },
13945 removed => {
13946 }
d5584eb3 13947 },
f5294d12
A
13948 5.025010 => {
13949 delta_from => 5.025009,
13950 changed => {
a9f73db0 13951 'B' => '1.68',
f5294d12 13952 'B::Op_private' => '5.025010',
a9f73db0
RB
13953 'CPAN' => '2.17',
13954 'CPAN::Distribution' => '2.17',
f5294d12 13955 'Config' => '5.02501',
a9f73db0 13956 'Getopt::Std' => '1.12',
f5294d12
A
13957 'Module::CoreList' => '5.20170220',
13958 'Module::CoreList::TieHashDelta'=> '5.20170220',
13959 'Module::CoreList::Utils'=> '5.20170220',
a9f73db0
RB
13960 'PerlIO' => '1.10',
13961 'Storable' => '2.62',
13962 'Thread::Queue' => '3.12',
13963 'feature' => '1.47',
13964 'open' => '1.11',
13965 'threads' => '2.13',
f5294d12
A
13966 },
13967 removed => {
13968 }
13969 },
b25fc2a6
DM
13970 5.025011 => {
13971 delta_from => 5.025010,
13972 changed => {
7055fb8e
S
13973 'App::Prove' => '3.38',
13974 'App::Prove::State' => '3.38',
13975 'App::Prove::State::Result'=> '3.38',
13976 'App::Prove::State::Result::Test'=> '3.38',
b25fc2a6 13977 'B::Op_private' => '5.025011',
7055fb8e
S
13978 'Compress::Raw::Bzip2' => '2.074',
13979 'Compress::Raw::Zlib' => '2.074',
13980 'Compress::Zlib' => '2.074',
b25fc2a6 13981 'Config' => '5.025011',
7055fb8e
S
13982 'Config::Perl::V' => '0.28',
13983 'Cwd' => '3.67',
13984 'ExtUtils::ParseXS' => '3.34',
13985 'ExtUtils::ParseXS::Constants'=> '3.34',
13986 'ExtUtils::ParseXS::CountLines'=> '3.34',
13987 'ExtUtils::ParseXS::Eval'=> '3.34',
13988 'ExtUtils::Typemaps' => '3.34',
13989 'ExtUtils::Typemaps::Cmd'=> '3.34',
13990 'ExtUtils::Typemaps::InputMap'=> '3.34',
13991 'ExtUtils::Typemaps::OutputMap'=> '3.34',
13992 'ExtUtils::Typemaps::Type'=> '3.34',
13993 'File::Spec' => '3.67',
13994 'File::Spec::AmigaOS' => '3.67',
13995 'File::Spec::Cygwin' => '3.67',
13996 'File::Spec::Epoc' => '3.67',
13997 'File::Spec::Functions' => '3.67',
13998 'File::Spec::Mac' => '3.67',
13999 'File::Spec::OS2' => '3.67',
14000 'File::Spec::Unix' => '3.67',
14001 'File::Spec::VMS' => '3.67',
14002 'File::Spec::Win32' => '3.67',
14003 'IO::Compress::Adapter::Bzip2'=> '2.074',
14004 'IO::Compress::Adapter::Deflate'=> '2.074',
14005 'IO::Compress::Adapter::Identity'=> '2.074',
14006 'IO::Compress::Base' => '2.074',
14007 'IO::Compress::Base::Common'=> '2.074',
14008 'IO::Compress::Bzip2' => '2.074',
14009 'IO::Compress::Deflate' => '2.074',
14010 'IO::Compress::Gzip' => '2.074',
14011 'IO::Compress::Gzip::Constants'=> '2.074',
14012 'IO::Compress::RawDeflate'=> '2.074',
14013 'IO::Compress::Zip' => '2.074',
14014 'IO::Compress::Zip::Constants'=> '2.074',
14015 'IO::Compress::Zlib::Constants'=> '2.074',
14016 'IO::Compress::Zlib::Extra'=> '2.074',
14017 'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
14018 'IO::Uncompress::Adapter::Identity'=> '2.074',
14019 'IO::Uncompress::Adapter::Inflate'=> '2.074',
14020 'IO::Uncompress::AnyInflate'=> '2.074',
14021 'IO::Uncompress::AnyUncompress'=> '2.074',
14022 'IO::Uncompress::Base' => '2.074',
14023 'IO::Uncompress::Bunzip2'=> '2.074',
14024 'IO::Uncompress::Gunzip'=> '2.074',
14025 'IO::Uncompress::Inflate'=> '2.074',
14026 'IO::Uncompress::RawInflate'=> '2.074',
14027 'IO::Uncompress::Unzip' => '2.074',
b25fc2a6
DM
14028 'Module::CoreList' => '5.20170320',
14029 'Module::CoreList::TieHashDelta'=> '5.20170230',
14030 'Module::CoreList::Utils'=> '5.20170320',
7055fb8e
S
14031 'Pod::Perldoc' => '3.28',
14032 'Pod::Perldoc::BaseTo' => '3.28',
14033 'Pod::Perldoc::GetOptsOO'=> '3.28',
14034 'Pod::Perldoc::ToANSI' => '3.28',
14035 'Pod::Perldoc::ToChecker'=> '3.28',
14036 'Pod::Perldoc::ToMan' => '3.28',
14037 'Pod::Perldoc::ToNroff' => '3.28',
14038 'Pod::Perldoc::ToPod' => '3.28',
14039 'Pod::Perldoc::ToRtf' => '3.28',
14040 'Pod::Perldoc::ToTerm' => '3.28',
14041 'Pod::Perldoc::ToText' => '3.28',
14042 'Pod::Perldoc::ToTk' => '3.28',
14043 'Pod::Perldoc::ToXml' => '3.28',
14044 'TAP::Base' => '3.38',
14045 'TAP::Formatter::Base' => '3.38',
14046 'TAP::Formatter::Color' => '3.38',
14047 'TAP::Formatter::Console'=> '3.38',
14048 'TAP::Formatter::Console::ParallelSession'=> '3.38',
14049 'TAP::Formatter::Console::Session'=> '3.38',
14050 'TAP::Formatter::File' => '3.38',
14051 'TAP::Formatter::File::Session'=> '3.38',
14052 'TAP::Formatter::Session'=> '3.38',
14053 'TAP::Harness' => '3.38',
14054 'TAP::Harness::Env' => '3.38',
14055 'TAP::Object' => '3.38',
14056 'TAP::Parser' => '3.38',
14057 'TAP::Parser::Aggregator'=> '3.38',
14058 'TAP::Parser::Grammar' => '3.38',
14059 'TAP::Parser::Iterator' => '3.38',
14060 'TAP::Parser::Iterator::Array'=> '3.38',
14061 'TAP::Parser::Iterator::Process'=> '3.38',
14062 'TAP::Parser::Iterator::Stream'=> '3.38',
14063 'TAP::Parser::IteratorFactory'=> '3.38',
14064 'TAP::Parser::Multiplexer'=> '3.38',
14065 'TAP::Parser::Result' => '3.38',
14066 'TAP::Parser::Result::Bailout'=> '3.38',
14067 'TAP::Parser::Result::Comment'=> '3.38',
14068 'TAP::Parser::Result::Plan'=> '3.38',
14069 'TAP::Parser::Result::Pragma'=> '3.38',
14070 'TAP::Parser::Result::Test'=> '3.38',
14071 'TAP::Parser::Result::Unknown'=> '3.38',
14072 'TAP::Parser::Result::Version'=> '3.38',
14073 'TAP::Parser::Result::YAML'=> '3.38',
14074 'TAP::Parser::ResultFactory'=> '3.38',
14075 'TAP::Parser::Scheduler'=> '3.38',
14076 'TAP::Parser::Scheduler::Job'=> '3.38',
14077 'TAP::Parser::Scheduler::Spinner'=> '3.38',
14078 'TAP::Parser::Source' => '3.38',
14079 'TAP::Parser::SourceHandler'=> '3.38',
14080 'TAP::Parser::SourceHandler::Executable'=> '3.38',
14081 'TAP::Parser::SourceHandler::File'=> '3.38',
14082 'TAP::Parser::SourceHandler::Handle'=> '3.38',
14083 'TAP::Parser::SourceHandler::Perl'=> '3.38',
14084 'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
14085 'TAP::Parser::YAMLish::Reader'=> '3.38',
14086 'TAP::Parser::YAMLish::Writer'=> '3.38',
14087 'Test::Harness' => '3.38',
14088 'VMS::Stdio' => '2.41',
14089 'threads' => '2.15',
14090 'threads::shared' => '1.55',
b25fc2a6
DM
14091 },
14092 removed => {
14093 }
14094 },
1798a06e 14095 5.025012 => {
fbe3f407
S
14096 delta_from => 5.025011,
14097 changed => {
b62b979e
S
14098 'B::Op_private' => '5.025012',
14099 'CPAN' => '2.18',
14100 'CPAN::Bundle' => '5.5003',
14101 'CPAN::Distribution' => '2.18',
14102 'Config' => '5.025012',
14103 'DynaLoader' => '1.42',
fbe3f407
S
14104 'Module::CoreList' => '5.20170420',
14105 'Module::CoreList::TieHashDelta'=> '5.20170420',
14106 'Module::CoreList::Utils'=> '5.20170420',
b62b979e
S
14107 'Safe' => '2.40',
14108 'XSLoader' => '0.27',
14109 'base' => '2.25',
14110 'threads::shared' => '1.56',
fbe3f407
S
14111 },
14112 removed => {
14113 }
14114 },
60454717
S
14115 5.026000 => {
14116 delta_from => 5.025012,
14117 changed => {
14118 'B::Op_private' => '5.026000',
14119 'Config' => '5.026',
dee2a2b8
S
14120 'Module::CoreList' => '5.20170530',
14121 'Module::CoreList::TieHashDelta'=> '5.20170530',
14122 'Module::CoreList::Utils'=> '5.20170530',
60454717
S
14123 },
14124 removed => {
14125 }
14126 },
753bd946 14127 5.027000 => {
a6b08d8b 14128 delta_from => 5.026000,
753bd946 14129 changed => {
a6b08d8b
S
14130 'Attribute::Handlers' => '1.00',
14131 'B::Concise' => '1.000',
14132 'B::Deparse' => '1.41',
753bd946
S
14133 'B::Op_private' => '5.027000',
14134 'Config' => '5.027',
9927ab6a
SH
14135 'Module::CoreList' => '5.20170531',
14136 'Module::CoreList::TieHashDelta'=> '5.20170531',
14137 'Module::CoreList::Utils'=> '5.20170531',
a6b08d8b
S
14138 'O' => '1.02',
14139 'attributes' => '0.3',
c8e60329 14140 'feature' => '1.48',
753bd946
S
14141 },
14142 removed => {
14143 }
14144 },
bb5b17cd 14145 5.027001 => {
09b93956
EH
14146 delta_from => 5.027,
14147 changed => {
14148 'App::Prove' => '3.39',
14149 'App::Prove::State' => '3.39',
14150 'App::Prove::State::Result'=> '3.39',
14151 'App::Prove::State::Result::Test'=> '3.39',
14152 'Archive::Tar' => '2.26',
14153 'Archive::Tar::Constant'=> '2.26',
14154 'Archive::Tar::File' => '2.26',
bb5b17cd 14155 'B::Op_private' => '5.027001',
09b93956 14156 'B::Terse' => '1.08',
bb5b17cd 14157 'Config' => '5.027001',
09b93956
EH
14158 'Devel::PPPort' => '3.36',
14159 'DirHandle' => '1.05',
14160 'ExtUtils::Command' => '7.30',
14161 'ExtUtils::Command::MM' => '7.30',
14162 'ExtUtils::Install' => '2.14',
14163 'ExtUtils::Installed' => '2.14',
14164 'ExtUtils::Liblist' => '7.30',
14165 'ExtUtils::Liblist::Kid'=> '7.30',
14166 'ExtUtils::MM' => '7.30',
14167 'ExtUtils::MM_AIX' => '7.30',
14168 'ExtUtils::MM_Any' => '7.30',
14169 'ExtUtils::MM_BeOS' => '7.30',
14170 'ExtUtils::MM_Cygwin' => '7.30',
14171 'ExtUtils::MM_DOS' => '7.30',
14172 'ExtUtils::MM_Darwin' => '7.30',
14173 'ExtUtils::MM_MacOS' => '7.30',
14174 'ExtUtils::MM_NW5' => '7.30',
14175 'ExtUtils::MM_OS2' => '7.30',
14176 'ExtUtils::MM_QNX' => '7.30',
14177 'ExtUtils::MM_UWIN' => '7.30',
14178 'ExtUtils::MM_Unix' => '7.30',
14179 'ExtUtils::MM_VMS' => '7.30',
14180 'ExtUtils::MM_VOS' => '7.30',
14181 'ExtUtils::MM_Win32' => '7.30',
14182 'ExtUtils::MM_Win95' => '7.30',
14183 'ExtUtils::MY' => '7.30',
14184 'ExtUtils::MakeMaker' => '7.30',
14185 'ExtUtils::MakeMaker::Config'=> '7.30',
14186 'ExtUtils::MakeMaker::Locale'=> '7.30',
14187 'ExtUtils::MakeMaker::version'=> '7.30',
14188 'ExtUtils::MakeMaker::version::regex'=> '7.30',
14189 'ExtUtils::Mkbootstrap' => '7.30',
14190 'ExtUtils::Mksymlists' => '7.30',
14191 'ExtUtils::Packlist' => '2.14',
14192 'ExtUtils::testlib' => '7.30',
14193 'File::Path' => '2.14',
14194 'Filter::Util::Call' => '1.57',
bb5b17cd 14195 'GDBM_File' => '1.16',
09b93956
EH
14196 'Getopt::Long' => '2.5',
14197 'IO::Socket::IP' => '0.39',
14198 'IPC::Cmd' => '0.98',
14199 'JSON::PP' => '2.94',
14200 'JSON::PP::Boolean' => '2.94',
bb5b17cd
DM
14201 'Locale::Codes' => '3.52',
14202 'Locale::Codes::Constants'=> '3.52',
14203 'Locale::Codes::Country'=> '3.52',
14204 'Locale::Codes::Country_Codes'=> '3.52',
14205 'Locale::Codes::Country_Retired'=> '3.52',
14206 'Locale::Codes::Currency'=> '3.52',
14207 'Locale::Codes::Currency_Codes'=> '3.52',
14208 'Locale::Codes::Currency_Retired'=> '3.52',
14209 'Locale::Codes::LangExt'=> '3.52',
14210 'Locale::Codes::LangExt_Codes'=> '3.52',
14211 'Locale::Codes::LangExt_Retired'=> '3.52',
14212 'Locale::Codes::LangFam'=> '3.52',
14213 'Locale::Codes::LangFam_Codes'=> '3.52',
14214 'Locale::Codes::LangFam_Retired'=> '3.52',
14215 'Locale::Codes::LangVar'=> '3.52',
14216 'Locale::Codes::LangVar_Codes'=> '3.52',
14217 'Locale::Codes::LangVar_Retired'=> '3.52',
14218 'Locale::Codes::Language'=> '3.52',
14219 'Locale::Codes::Language_Codes'=> '3.52',
14220 'Locale::Codes::Language_Retired'=> '3.52',
14221 'Locale::Codes::Script' => '3.52',
14222 'Locale::Codes::Script_Codes'=> '3.52',
14223 'Locale::Codes::Script_Retired'=> '3.52',
14224 'Locale::Country' => '3.52',
14225 'Locale::Currency' => '3.52',
14226 'Locale::Language' => '3.52',
14227 'Locale::Script' => '3.52',
09b93956
EH
14228 'Module::CoreList' => '5.20170621',
14229 'Module::CoreList::TieHashDelta'=> '5.20170621',
14230 'Module::CoreList::Utils'=> '5.20170621',
14231 'PerlIO::scalar' => '0.27',
14232 'PerlIO::via' => '0.17',
14233 'Storable' => '2.63',
14234 'TAP::Base' => '3.39',
14235 'TAP::Formatter::Base' => '3.39',
14236 'TAP::Formatter::Color' => '3.39',
14237 'TAP::Formatter::Console'=> '3.39',
14238 'TAP::Formatter::Console::ParallelSession'=> '3.39',
14239 'TAP::Formatter::Console::Session'=> '3.39',
14240 'TAP::Formatter::File' => '3.39',
14241 'TAP::Formatter::File::Session'=> '3.39',
14242 'TAP::Formatter::Session'=> '3.39',
14243 'TAP::Harness' => '3.39',
14244 'TAP::Harness::Env' => '3.39',
14245 'TAP::Object' => '3.39',
14246 'TAP::Parser' => '3.39',
14247 'TAP::Parser::Aggregator'=> '3.39',
14248 'TAP::Parser::Grammar' => '3.39',
14249 'TAP::Parser::Iterator' => '3.39',
14250 'TAP::Parser::Iterator::Array'=> '3.39',
14251 'TAP::Parser::Iterator::Process'=> '3.39',
14252 'TAP::Parser::Iterator::Stream'=> '3.39',
14253 'TAP::Parser::IteratorFactory'=> '3.39',
14254 'TAP::Parser::Multiplexer'=> '3.39',
14255 'TAP::Parser::Result' => '3.39',
14256 'TAP::Parser::Result::Bailout'=> '3.39',
14257 'TAP::Parser::Result::Comment'=> '3.39',
14258 'TAP::Parser::Result::Plan'=> '3.39',
14259 'TAP::Parser::Result::Pragma'=> '3.39',
14260 'TAP::Parser::Result::Test'=> '3.39',
14261 'TAP::Parser::Result::Unknown'=> '3.39',
14262 'TAP::Parser::Result::Version'=> '3.39',
14263 'TAP::Parser::Result::YAML'=> '3.39',
14264 'TAP::Parser::ResultFactory'=> '3.39',
14265 'TAP::Parser::Scheduler'=> '3.39',
14266 'TAP::Parser::Scheduler::Job'=> '3.39',
14267 'TAP::Parser::Scheduler::Spinner'=> '3.39',
14268 'TAP::Parser::Source' => '3.39',
14269 'TAP::Parser::SourceHandler'=> '3.39',
14270 'TAP::Parser::SourceHandler::Executable'=> '3.39',
14271 'TAP::Parser::SourceHandler::File'=> '3.39',
14272 'TAP::Parser::SourceHandler::Handle'=> '3.39',
14273 'TAP::Parser::SourceHandler::Perl'=> '3.39',
14274 'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
14275 'TAP::Parser::YAMLish::Reader'=> '3.39',
14276 'TAP::Parser::YAMLish::Writer'=> '3.39',
14277 'Test::Harness' => '3.39',
bb5b17cd
DM
14278 'XS::APItest' => '0.89',
14279 '_charnames' => '1.45',
14280 'charnames' => '1.45',
14281 'if' => '0.0607',
14282 'mro' => '1.21',
14283 'threads' => '2.16',
14284 'threads::shared' => '1.57',
14285 'version' => '0.9918',
14286 'version::regex' => '0.9918',
14287 },
14288 removed => {
14289 }
14290 },
e029cc95
SH
14291 5.022004 => {
14292 delta_from => 5.022003,
14293 changed => {
14294 'B::Op_private' => '5.022004',
14295 'Config' => '5.022004',
14296 'Module::CoreList' => '5.20170715_22',
14297 'Module::CoreList::TieHashDelta'=> '5.20170715_22',
14298 'Module::CoreList::Utils'=> '5.20170715_22',
14299 'base' => '2.22_01',
14300 },
14301 removed => {
14302 }
14303 },
da0817c4
SH
14304 5.024002 => {
14305 delta_from => 5.024001,
14306 changed => {
14307 'B::Op_private' => '5.024002',
14308 'Config' => '5.024002',
14309 'Module::CoreList' => '5.20170715_24',
14310 'Module::CoreList::TieHashDelta'=> '5.20170715_24',
14311 'Module::CoreList::Utils'=> '5.20170715_24',
14312 'base' => '2.23_01',
14313 },
14314 removed => {
14315 }
14316 },
0db26723
EH
14317 5.027002 => {
14318 delta_from => 5.027001,
14319 changed => {
14320 'B::Op_private' => '5.027002',
7ffcba09
AC
14321 'Carp' => '1.43',
14322 'Carp::Heavy' => '1.43',
0db26723 14323 'Config' => '5.027002',
7ffcba09
AC
14324 'Cwd' => '3.68',
14325 'Encode' => '2.92',
14326 'Encode::Alias' => '2.23',
14327 'Encode::CN::HZ' => '2.09',
14328 'Encode::Encoding' => '2.08',
14329 'Encode::GSM0338' => '2.07',
14330 'Encode::Guess' => '2.07',
14331 'Encode::JP::JIS7' => '2.07',
14332 'Encode::KR::2022_KR' => '2.04',
14333 'Encode::MIME::Header' => '2.27',
14334 'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
14335 'Encode::Unicode' => '2.16',
14336 'Encode::Unicode::UTF7' => '2.10',
14337 'ExtUtils::CBuilder' => '0.280228',
14338 'ExtUtils::CBuilder::Base'=> '0.280228',
14339 'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
14340 'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
14341 'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
14342 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
14343 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
14344 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
14345 'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
14346 'ExtUtils::CBuilder::Platform::android'=> '0.280228',
14347 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
14348 'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
14349 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
14350 'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
14351 'File::Glob' => '1.29',
14352 'File::Spec' => '3.68',
14353 'File::Spec::AmigaOS' => '3.68',
14354 'File::Spec::Cygwin' => '3.68',
14355 'File::Spec::Epoc' => '3.68',
14356 'File::Spec::Functions' => '3.68',
14357 'File::Spec::Mac' => '3.68',
14358 'File::Spec::OS2' => '3.68',
14359 'File::Spec::Unix' => '3.68',
14360 'File::Spec::VMS' => '3.68',
14361 'File::Spec::Win32' => '3.68',
14362 'List::Util' => '1.48',
14363 'List::Util::XS' => '1.48',
14364 'Math::BigRat' => '0.2613',
59b1919d
SH
14365 'Module::CoreList' => '5.20170720',
14366 'Module::CoreList::TieHashDelta'=> '5.20170720',
14367 'Module::CoreList::Utils'=> '5.20170720',
7ffcba09
AC
14368 'Opcode' => '1.40',
14369 'POSIX' => '1.77',
14370 'PerlIO::scalar' => '0.29',
14371 'Scalar::Util' => '1.48',
14372 'Sub::Util' => '1.48',
14373 'Time::HiRes' => '1.9743',
14374 'Time::Piece' => '1.3201',
14375 'Time::Seconds' => '1.3201',
0db26723 14376 'Unicode' => '10.0.0',
7ffcba09
AC
14377 'XS::APItest' => '0.90',
14378 'arybase' => '0.13',
14379 'encoding' => '2.20',
14380 'feature' => '1.49',
14381 're' => '0.35',
0db26723
EH
14382 },
14383 removed => {
14384 }
14385 },
56c35cf6
AC
14386 5.027003 => {
14387 delta_from => 5.027002,
14388 changed => {
e94c2221
MH
14389 'B' => '1.69',
14390 'B::Concise' => '1.001',
14391 'B::Debug' => '1.25',
14392 'B::Deparse' => '1.42',
56c35cf6
AC
14393 'B::Op_private' => '5.027003',
14394 'Config' => '5.027003',
e94c2221
MH
14395 'Data::Dumper' => '2.167_02',
14396 'Devel::Peek' => '1.27',
14397 'ExtUtils::Constant' => '0.24',
14398 'ExtUtils::Constant::Base'=> '0.06',
14399 'ExtUtils::Constant::ProxySubs'=> '0.09',
14400 'ExtUtils::Constant::Utils'=> '0.04',
14401 'ExtUtils::ParseXS' => '3.35',
14402 'ExtUtils::ParseXS::Constants'=> '3.35',
14403 'ExtUtils::ParseXS::CountLines'=> '3.35',
14404 'ExtUtils::ParseXS::Eval'=> '3.35',
14405 'ExtUtils::ParseXS::Utilities'=> '3.35',
14406 'ExtUtils::Typemaps' => '3.35',
14407 'ExtUtils::Typemaps::Cmd'=> '3.35',
14408 'ExtUtils::Typemaps::InputMap'=> '3.35',
14409 'ExtUtils::Typemaps::OutputMap'=> '3.35',
14410 'ExtUtils::Typemaps::Type'=> '3.35',
14411 'Filter::Simple' => '0.94',
14412 'Module::CoreList' => '5.20170821',
14413 'Module::CoreList::TieHashDelta'=> '5.20170821',
14414 'Module::CoreList::Utils'=> '5.20170821',
14415 'SelfLoader' => '1.24',
14416 'Storable' => '2.64',
14417 'XS::APItest' => '0.91',
14418 'base' => '2.26',
14419 'threads' => '2.17',
14420 'utf8' => '1.20',
56c35cf6
AC
14421 },
14422 removed => {
14423 }
14424 },
9f9332db
MH
14425 5.027004 => {
14426 delta_from => 5.027003,
14427 changed => {
14428 'B::Op_private' => '5.027004',
14429 'Config' => '5.027004',
0c32d890
JSA
14430 'File::Glob' => '1.30',
14431 'I18N::Langinfo' => '0.14',
9f9332db
MH
14432 'Module::CoreList' => '5.20170920',
14433 'Module::CoreList::TieHashDelta'=> '5.20170920',
14434 'Module::CoreList::Utils'=> '5.20170920',
0c32d890
JSA
14435 'Term::ReadLine' => '1.17',
14436 'VMS::Stdio' => '2.42',
14437 'XS::APItest' => '0.92',
14438 'attributes' => '0.31',
14439 'sort' => '2.03',
14440 'threads' => '2.18',
9f9332db
MH
14441 },
14442 removed => {
14443 }
14444 },
0ba9031a
SH
14445 5.024003 => {
14446 delta_from => 5.024002,
14447 changed => {
14448 'B::Op_private' => '5.024003',
14449 'Config' => '5.024003',
14450 'Module::CoreList' => '5.20170922_24',
14451 'Module::CoreList::TieHashDelta'=> '5.20170922_24',
14452 'Module::CoreList::Utils'=> '5.20170922_24',
14453 'POSIX' => '1.65_01',
14454 'Time::HiRes' => '1.9741',
14455 },
14456 removed => {
14457 }
14458 },
14459 5.026001 => {
14460 delta_from => 5.026000,
14461 changed => {
14462 'B::Op_private' => '5.026001',
14463 'Config' => '5.026001',
14464 'Module::CoreList' => '5.20170922_26',
14465 'Module::CoreList::TieHashDelta'=> '5.20170922_26',
14466 'Module::CoreList::Utils'=> '5.20170922_26',
14467 '_charnames' => '1.45',
14468 'base' => '2.26',
14469 'charnames' => '1.45',
14470 },
14471 removed => {
14472 }
14473 },
1967e407
JSA
14474 5.027005 => {
14475 delta_from => 5.027004,
14476 changed => {
0b2e8509
SH
14477 'B' => '1.70',
14478 'B::Concise' => '1.002',
14479 'B::Deparse' => '1.43',
1967e407 14480 'B::Op_private' => '5.027005',
0b2e8509 14481 'B::Xref' => '1.07',
1967e407 14482 'Config' => '5.027005',
0b2e8509
SH
14483 'Config::Perl::V' => '0.29',
14484 'Digest::SHA' => '5.98',
14485 'Encode' => '2.93',
14486 'Encode::CN::HZ' => '2.10',
14487 'Encode::JP::JIS7' => '2.08',
14488 'Encode::MIME::Header' => '2.28',
14489 'Encode::MIME::Name' => '1.03',
14490 'File::Fetch' => '0.54',
14491 'File::Path' => '2.15',
14492 'List::Util' => '1.49',
14493 'List::Util::XS' => '1.49',
14494 'Locale::Codes' => '3.54',
14495 'Locale::Codes::Constants'=> '3.54',
14496 'Locale::Codes::Country'=> '3.54',
14497 'Locale::Codes::Country_Codes'=> '3.54',
14498 'Locale::Codes::Country_Retired'=> '3.54',
14499 'Locale::Codes::Currency'=> '3.54',
14500 'Locale::Codes::Currency_Codes'=> '3.54',
14501 'Locale::Codes::Currency_Retired'=> '3.54',
14502 'Locale::Codes::LangExt'=> '3.54',
14503 'Locale::Codes::LangExt_Codes'=> '3.54',
14504 'Locale::Codes::LangExt_Retired'=> '3.54',
14505 'Locale::Codes::LangFam'=> '3.54',
14506 'Locale::Codes::LangFam_Codes'=> '3.54',
14507 'Locale::Codes::LangFam_Retired'=> '3.54',
14508 'Locale::Codes::LangVar'=> '3.54',
14509 'Locale::Codes::LangVar_Codes'=> '3.54',
14510 'Locale::Codes::LangVar_Retired'=> '3.54',
14511 'Locale::Codes::Language'=> '3.54',
14512 'Locale::Codes::Language_Codes'=> '3.54',
14513 'Locale::Codes::Language_Retired'=> '3.54',
14514 'Locale::Codes::Script' => '3.54',
14515 'Locale::Codes::Script_Codes'=> '3.54',
14516 'Locale::Codes::Script_Retired'=> '3.54',
14517 'Locale::Country' => '3.54',
14518 'Locale::Currency' => '3.54',
14519 'Locale::Language' => '3.54',
14520 'Locale::Script' => '3.54',
14521 'Math::BigFloat' => '1.999811',
14522 'Math::BigInt' => '1.999811',
14523 'Math::BigInt::Calc' => '1.999811',
14524 'Math::BigInt::CalcEmu' => '1.999811',
14525 'Math::BigInt::FastCalc'=> '0.5006',
14526 'Math::BigInt::Lib' => '1.999811',
1967e407
JSA
14527 'Module::CoreList' => '5.20171020',
14528 'Module::CoreList::TieHashDelta'=> '5.20171020',
14529 'Module::CoreList::Utils'=> '5.20171020',
0b2e8509
SH
14530 'NEXT' => '0.67_01',
14531 'POSIX' => '1.78',
14532 'Pod::Perldoc' => '3.2801',
14533 'Scalar::Util' => '1.49',
14534 'Sub::Util' => '1.49',
14535 'Sys::Hostname' => '1.21',
14536 'Test2' => '1.302103',
14537 'Test2::API' => '1.302103',
14538 'Test2::API::Breakage' => '1.302103',
14539 'Test2::API::Context' => '1.302103',
14540 'Test2::API::Instance' => '1.302103',
14541 'Test2::API::Stack' => '1.302103',
14542 'Test2::Event' => '1.302103',
14543 'Test2::Event::Bail' => '1.302103',
14544 'Test2::Event::Diag' => '1.302103',
14545 'Test2::Event::Encoding'=> '1.302103',
14546 'Test2::Event::Exception'=> '1.302103',
14547 'Test2::Event::Fail' => '1.302103',
14548 'Test2::Event::Generic' => '1.302103',
14549 'Test2::Event::Note' => '1.302103',
14550 'Test2::Event::Ok' => '1.302103',
14551 'Test2::Event::Pass' => '1.302103',
14552 'Test2::Event::Plan' => '1.302103',
14553 'Test2::Event::Skip' => '1.302103',
14554 'Test2::Event::Subtest' => '1.302103',
14555 'Test2::Event::TAP::Version'=> '1.302103',
14556 'Test2::Event::Waiting' => '1.302103',
14557 'Test2::EventFacet' => '1.302103',
14558 'Test2::EventFacet::About'=> '1.302103',
14559 'Test2::EventFacet::Amnesty'=> '1.302103',
14560 'Test2::EventFacet::Assert'=> '1.302103',
14561 'Test2::EventFacet::Control'=> '1.302103',
14562 'Test2::EventFacet::Error'=> '1.302103',
14563 'Test2::EventFacet::Info'=> '1.302103',
14564 'Test2::EventFacet::Meta'=> '1.302103',
14565 'Test2::EventFacet::Parent'=> '1.302103',
14566 'Test2::EventFacet::Plan'=> '1.302103',
14567 'Test2::EventFacet::Trace'=> '1.302103',
14568 'Test2::Formatter' => '1.302103',
14569 'Test2::Formatter::TAP' => '1.302103',
14570 'Test2::Hub' => '1.302103',
14571 'Test2::Hub::Interceptor'=> '1.302103',
14572 'Test2::Hub::Interceptor::Terminator'=> '1.302103',
14573 'Test2::Hub::Subtest' => '1.302103',
14574 'Test2::IPC' => '1.302103',
14575 'Test2::IPC::Driver' => '1.302103',
14576 'Test2::IPC::Driver::Files'=> '1.302103',
14577 'Test2::Tools::Tiny' => '1.302103',
14578 'Test2::Util' => '1.302103',
14579 'Test2::Util::ExternalMeta'=> '1.302103',
14580 'Test2::Util::Facets2Legacy'=> '1.302103',
14581 'Test2::Util::HashBase' => '0.005',
14582 'Test2::Util::Trace' => '1.302103',
14583 'Test::Builder' => '1.302103',
14584 'Test::Builder::Formatter'=> '1.302103',
14585 'Test::Builder::IO::Scalar'=> '2.114',
14586 'Test::Builder::Module' => '1.302103',
14587 'Test::Builder::Tester' => '1.302103',
14588 'Test::Builder::Tester::Color'=> '1.302103',
14589 'Test::Builder::TodoDiag'=> '1.302103',
14590 'Test::More' => '1.302103',
14591 'Test::Simple' => '1.302103',
14592 'Test::Tester' => '1.302103',
14593 'Test::Tester::Capture' => '1.302103',
14594 'Test::Tester::CaptureRunner'=> '1.302103',
14595 'Test::Tester::Delegate'=> '1.302103',
14596 'Test::use::ok' => '1.302103',
14597 'Time::HiRes' => '1.9746',
14598 'Time::Piece' => '1.3202',
14599 'Time::Seconds' => '1.3202',
14600 'arybase' => '0.14',
14601 'encoding' => '2.21',
14602 'ok' => '1.302103',
14603 },
14604 removed => {
14605 'Test2::Event::Info' => 1,
1967e407
JSA
14606 }
14607 },
78425520
SH
14608 5.027006 => {
14609 delta_from => 5.027005,
14610 changed => {
feee2c5b
KE
14611 'Attribute::Handlers' => '1.01',
14612 'B' => '1.72',
14613 'B::Concise' => '1.003',
14614 'B::Deparse' => '1.45',
78425520 14615 'B::Op_private' => '5.027006',
feee2c5b
KE
14616 'Carp' => '1.44',
14617 'Carp::Heavy' => '1.44',
14618 'Compress::Raw::Zlib' => '2.075',
78425520 14619 'Config' => '5.027006',
feee2c5b
KE
14620 'Config::Extensions' => '0.02',
14621 'Cwd' => '3.70',
14622 'DynaLoader' => '1.44',
14623 'ExtUtils::CBuilder' => '0.280229',
14624 'ExtUtils::CBuilder::Platform::Unix'=> '0.280229',
14625 'ExtUtils::CBuilder::Platform::VMS'=> '0.280229',
14626 'ExtUtils::CBuilder::Platform::Windows'=> '0.280229',
14627 'ExtUtils::CBuilder::Platform::aix'=> '0.280229',
14628 'ExtUtils::CBuilder::Platform::android'=> '0.280229',
14629 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229',
14630 'ExtUtils::CBuilder::Platform::darwin'=> '0.280229',
14631 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229',
14632 'ExtUtils::CBuilder::Platform::os2'=> '0.280229',
14633 'ExtUtils::Embed' => '1.35',
14634 'ExtUtils::Miniperl' => '1.07',
14635 'ExtUtils::ParseXS' => '3.36',
14636 'ExtUtils::ParseXS::Constants'=> '3.36',
14637 'ExtUtils::ParseXS::CountLines'=> '3.36',
14638 'ExtUtils::ParseXS::Eval'=> '3.36',
14639 'ExtUtils::ParseXS::Utilities'=> '3.36',
14640 'ExtUtils::Typemaps' => '3.36',
14641 'ExtUtils::Typemaps::Cmd'=> '3.36',
14642 'ExtUtils::Typemaps::InputMap'=> '3.36',
14643 'ExtUtils::Typemaps::OutputMap'=> '3.36',
14644 'ExtUtils::Typemaps::Type'=> '3.36',
14645 'ExtUtils::XSSymSet' => '1.4',
14646 'File::Copy' => '2.33',
14647 'File::Spec' => '3.69',
14648 'File::Spec::AmigaOS' => '3.69',
14649 'File::Spec::Cygwin' => '3.69',
14650 'File::Spec::Epoc' => '3.69',
14651 'File::Spec::Functions' => '3.69',
14652 'File::Spec::Mac' => '3.69',
14653 'File::Spec::OS2' => '3.69',
14654 'File::Spec::Unix' => '3.69',
14655 'File::Spec::VMS' => '3.69',
14656 'File::Spec::Win32' => '3.69',
14657 'File::stat' => '1.08',
14658 'FileCache' => '1.10',
14659 'Filter::Simple' => '0.95',
14660 'Hash::Util::FieldHash' => '1.20',
14661 'I18N::LangTags' => '0.43',
14662 'I18N::LangTags::Detect'=> '1.07',
14663 'I18N::LangTags::List' => '0.40',
14664 'I18N::Langinfo' => '0.15',
14665 'IO::Handle' => '1.37',
14666 'IO::Select' => '1.23',
14667 'Locale::Maketext' => '1.29',
78425520
SH
14668 'Module::CoreList' => '5.20171120',
14669 'Module::CoreList::TieHashDelta'=> '5.20171120',
14670 'Module::CoreList::Utils'=> '5.20171120',
feee2c5b
KE
14671 'Net::Cmd' => '3.11',
14672 'Net::Config' => '3.11',
14673 'Net::Domain' => '3.11',
14674 'Net::FTP' => '3.11',
14675 'Net::FTP::A' => '3.11',
14676 'Net::FTP::E' => '3.11',
14677 'Net::FTP::I' => '3.11',
14678 'Net::FTP::L' => '3.11',
14679 'Net::FTP::dataconn' => '3.11',
14680 'Net::NNTP' => '3.11',
14681 'Net::Netrc' => '3.11',
14682 'Net::POP3' => '3.11',
14683 'Net::Ping' => '2.62',
14684 'Net::SMTP' => '3.11',
14685 'Net::Time' => '3.11',
14686 'Net::hostent' => '1.02',
14687 'Net::netent' => '1.01',
14688 'Net::protoent' => '1.01',
14689 'Net::servent' => '1.02',
14690 'O' => '1.03',
14691 'ODBM_File' => '1.15',
14692 'Opcode' => '1.41',
14693 'POSIX' => '1.80',
14694 'Pod::Html' => '1.2203',
14695 'SelfLoader' => '1.25',
14696 'Socket' => '2.020_04',
14697 'Storable' => '2.65',
feee2c5b
KE
14698 'Test' => '1.31',
14699 'Test2' => '1.302111',
14700 'Test2::API' => '1.302111',
14701 'Test2::API::Breakage' => '1.302111',
14702 'Test2::API::Context' => '1.302111',
14703 'Test2::API::Instance' => '1.302111',
14704 'Test2::API::Stack' => '1.302111',
14705 'Test2::Event' => '1.302111',
14706 'Test2::Event::Bail' => '1.302111',
14707 'Test2::Event::Diag' => '1.302111',
14708 'Test2::Event::Encoding'=> '1.302111',
14709 'Test2::Event::Exception'=> '1.302111',
14710 'Test2::Event::Fail' => '1.302111',
14711 'Test2::Event::Generic' => '1.302111',
14712 'Test2::Event::Note' => '1.302111',
14713 'Test2::Event::Ok' => '1.302111',
14714 'Test2::Event::Pass' => '1.302111',
14715 'Test2::Event::Plan' => '1.302111',
14716 'Test2::Event::Skip' => '1.302111',
14717 'Test2::Event::Subtest' => '1.302111',
14718 'Test2::Event::TAP::Version'=> '1.302111',
14719 'Test2::Event::Waiting' => '1.302111',
14720 'Test2::EventFacet' => '1.302111',
14721 'Test2::EventFacet::About'=> '1.302111',
14722 'Test2::EventFacet::Amnesty'=> '1.302111',
14723 'Test2::EventFacet::Assert'=> '1.302111',
14724 'Test2::EventFacet::Control'=> '1.302111',
14725 'Test2::EventFacet::Error'=> '1.302111',
14726 'Test2::EventFacet::Info'=> '1.302111',
14727 'Test2::EventFacet::Meta'=> '1.302111',
14728 'Test2::EventFacet::Parent'=> '1.302111',
14729 'Test2::EventFacet::Plan'=> '1.302111',
14730 'Test2::EventFacet::Trace'=> '1.302111',
14731 'Test2::Formatter' => '1.302111',
14732 'Test2::Formatter::TAP' => '1.302111',
14733 'Test2::Hub' => '1.302111',
14734 'Test2::Hub::Interceptor'=> '1.302111',
14735 'Test2::Hub::Interceptor::Terminator'=> '1.302111',
14736 'Test2::Hub::Subtest' => '1.302111',
14737 'Test2::IPC' => '1.302111',
14738 'Test2::IPC::Driver' => '1.302111',
14739 'Test2::IPC::Driver::Files'=> '1.302111',
14740 'Test2::Tools::Tiny' => '1.302111',
14741 'Test2::Util' => '1.302111',
14742 'Test2::Util::ExternalMeta'=> '1.302111',
14743 'Test2::Util::Facets2Legacy'=> '1.302111',
14744 'Test2::Util::HashBase' => '1.302111',
14745 'Test2::Util::Trace' => '1.302111',
14746 'Test::Builder' => '1.302111',
14747 'Test::Builder::Formatter'=> '1.302111',
14748 'Test::Builder::Module' => '1.302111',
14749 'Test::Builder::Tester' => '1.302111',
14750 'Test::Builder::Tester::Color'=> '1.302111',
14751 'Test::Builder::TodoDiag'=> '1.302111',
14752 'Test::More' => '1.302111',
14753 'Test::Simple' => '1.302111',
14754 'Test::Tester' => '1.302111',
14755 'Test::Tester::Capture' => '1.302111',
14756 'Test::Tester::CaptureRunner'=> '1.302111',
14757 'Test::Tester::Delegate'=> '1.302111',
14758 'Test::use::ok' => '1.302111',
14759 'Tie::Array' => '1.07',
14760 'Tie::StdHandle' => '4.5',
14761 'Time::HiRes' => '1.9747',
14762 'Time::gmtime' => '1.04',
14763 'Time::localtime' => '1.03',
14764 'Unicode::Collate' => '1.23',
14765 'Unicode::Collate::CJK::Big5'=> '1.23',
14766 'Unicode::Collate::CJK::GB2312'=> '1.23',
14767 'Unicode::Collate::CJK::JISX0208'=> '1.23',
14768 'Unicode::Collate::CJK::Korean'=> '1.23',
14769 'Unicode::Collate::CJK::Pinyin'=> '1.23',
14770 'Unicode::Collate::CJK::Stroke'=> '1.23',
14771 'Unicode::Collate::CJK::Zhuyin'=> '1.23',
14772 'Unicode::Collate::Locale'=> '1.23',
14773 'Unicode::Normalize' => '1.26',
14774 'User::grent' => '1.02',
14775 'User::pwent' => '1.01',
14776 'VMS::DCLsym' => '1.09',
14777 'VMS::Stdio' => '2.44',
14778 'XS::APItest' => '0.93',
14779 'XS::Typemap' => '0.16',
14780 'XSLoader' => '0.28',
14781 'attributes' => '0.32',
14782 'base' => '2.27',
14783 'blib' => '1.07',
14784 'experimental' => '0.017',
14785 'fields' => '2.24',
14786 'ok' => '1.302111',
14787 're' => '0.36',
14788 'sort' => '2.04',
14789 'threads' => '2.19',
14790 'warnings' => '1.38',
78425520
SH
14791 },
14792 removed => {
14793 }
14794 },
a67b31e3
KE
14795 5.027007 => {
14796 delta_from => 5.027006,
14797 changed => {
e4b1fb85
CBW
14798 'App::Cpan' => '1.67',
14799 'B' => '1.73',
14800 'B::Debug' => '1.26',
14801 'B::Deparse' => '1.46',
a67b31e3 14802 'B::Op_private' => '5.027007',
e4b1fb85
CBW
14803 'CPAN' => '2.20',
14804 'CPAN::Distribution' => '2.19',
14805 'CPAN::FTP' => '5.5011',
14806 'CPAN::FirstTime' => '5.5311',
14807 'CPAN::Shell' => '5.5007',
14808 'Carp' => '1.45',
14809 'Carp::Heavy' => '1.45',
14810 'Compress::Raw::Zlib' => '2.076',
a67b31e3 14811 'Config' => '5.027007',
e4b1fb85
CBW
14812 'Cwd' => '3.71',
14813 'Data::Dumper' => '2.169',
14814 'Devel::PPPort' => '3.37',
14815 'Digest::SHA' => '6.00',
14816 'DynaLoader' => '1.45',
14817 'ExtUtils::CBuilder' => '0.280230',
14818 'ExtUtils::CBuilder::Base'=> '0.280230',
14819 'ExtUtils::CBuilder::Platform::Unix'=> '0.280230',
14820 'ExtUtils::CBuilder::Platform::VMS'=> '0.280230',
14821 'ExtUtils::CBuilder::Platform::Windows'=> '0.280230',
14822 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230',
14823 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230',
14824 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230',
14825 'ExtUtils::CBuilder::Platform::aix'=> '0.280230',
14826 'ExtUtils::CBuilder::Platform::android'=> '0.280230',
14827 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230',
14828 'ExtUtils::CBuilder::Platform::darwin'=> '0.280230',
14829 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230',
14830 'ExtUtils::CBuilder::Platform::os2'=> '0.280230',
14831 'ExtUtils::Typemaps' => '3.37',
14832 'File::Fetch' => '0.56',
14833 'File::Spec' => '3.71',
14834 'File::Spec::AmigaOS' => '3.71',
14835 'File::Spec::Cygwin' => '3.71',
14836 'File::Spec::Epoc' => '3.71',
14837 'File::Spec::Functions' => '3.71',
14838 'File::Spec::Mac' => '3.71',
14839 'File::Spec::OS2' => '3.71',
14840 'File::Spec::Unix' => '3.71',
14841 'File::Spec::VMS' => '3.71',
14842 'File::Spec::Win32' => '3.71',
14843 'Filter::Util::Call' => '1.58',
14844 'GDBM_File' => '1.17',
14845 'JSON::PP' => '2.97000',
14846 'JSON::PP::Boolean' => '2.97000',
14847 'Locale::Codes' => '3.55',
14848 'Locale::Codes::Constants'=> '3.55',
14849 'Locale::Codes::Country'=> '3.55',
14850 'Locale::Codes::Country_Codes'=> '3.55',
14851 'Locale::Codes::Country_Retired'=> '3.55',
14852 'Locale::Codes::Currency'=> '3.55',
14853 'Locale::Codes::Currency_Codes'=> '3.55',
14854 'Locale::Codes::Currency_Retired'=> '3.55',
14855 'Locale::Codes::LangExt'=> '3.55',
14856 'Locale::Codes::LangExt_Codes'=> '3.55',
14857 'Locale::Codes::LangExt_Retired'=> '3.55',
14858 'Locale::Codes::LangFam'=> '3.55',
14859 'Locale::Codes::LangFam_Codes'=> '3.55',
14860 'Locale::Codes::LangFam_Retired'=> '3.55',
14861 'Locale::Codes::LangVar'=> '3.55',
14862 'Locale::Codes::LangVar_Codes'=> '3.55',
14863 'Locale::Codes::LangVar_Retired'=> '3.55',
14864 'Locale::Codes::Language'=> '3.55',
14865 'Locale::Codes::Language_Codes'=> '3.55',
14866 'Locale::Codes::Language_Retired'=> '3.55',
14867 'Locale::Codes::Script' => '3.55',
14868 'Locale::Codes::Script_Codes'=> '3.55',
14869 'Locale::Codes::Script_Retired'=> '3.55',
14870 'Locale::Country' => '3.55',
14871 'Locale::Currency' => '3.55',
14872 'Locale::Language' => '3.55',
14873 'Locale::Script' => '3.55',
a67b31e3
KE
14874 'Module::CoreList' => '5.20171220',
14875 'Module::CoreList::TieHashDelta'=> '5.20171220',
14876 'Module::CoreList::Utils'=> '5.20171220',
e4b1fb85
CBW
14877 'Opcode' => '1.42',
14878 'POSIX' => '1.81',
14879 'Pod::Functions' => '1.12',
14880 'Pod::Functions::Functions'=> '1.12',
14881 'Pod::Html' => '1.23',
14882 'Sys::Hostname' => '1.22',
14883 'Test2' => '1.302120',
14884 'Test2::API' => '1.302120',
14885 'Test2::API::Breakage' => '1.302120',
14886 'Test2::API::Context' => '1.302120',
14887 'Test2::API::Instance' => '1.302120',
14888 'Test2::API::Stack' => '1.302120',
14889 'Test2::Event' => '1.302120',
14890 'Test2::Event::Bail' => '1.302120',
14891 'Test2::Event::Diag' => '1.302120',
14892 'Test2::Event::Encoding'=> '1.302120',
14893 'Test2::Event::Exception'=> '1.302120',
14894 'Test2::Event::Fail' => '1.302120',
14895 'Test2::Event::Generic' => '1.302120',
14896 'Test2::Event::Note' => '1.302120',
14897 'Test2::Event::Ok' => '1.302120',
14898 'Test2::Event::Pass' => '1.302120',
14899 'Test2::Event::Plan' => '1.302120',
14900 'Test2::Event::Skip' => '1.302120',
14901 'Test2::Event::Subtest' => '1.302120',
14902 'Test2::Event::TAP::Version'=> '1.302120',
14903 'Test2::Event::Waiting' => '1.302120',
14904 'Test2::EventFacet' => '1.302120',
14905 'Test2::EventFacet::About'=> '1.302120',
14906 'Test2::EventFacet::Amnesty'=> '1.302120',
14907 'Test2::EventFacet::Assert'=> '1.302120',
14908 'Test2::EventFacet::Control'=> '1.302120',
14909 'Test2::EventFacet::Error'=> '1.302120',
14910 'Test2::EventFacet::Info'=> '1.302120',
14911 'Test2::EventFacet::Meta'=> '1.302120',
14912 'Test2::EventFacet::Parent'=> '1.302120',
14913 'Test2::EventFacet::Plan'=> '1.302120',
14914 'Test2::EventFacet::Trace'=> '1.302120',
14915 'Test2::Formatter' => '1.302120',
14916 'Test2::Formatter::TAP' => '1.302120',
14917 'Test2::Hub' => '1.302120',
14918 'Test2::Hub::Interceptor'=> '1.302120',
14919 'Test2::Hub::Interceptor::Terminator'=> '1.302120',
14920 'Test2::Hub::Subtest' => '1.302120',
14921 'Test2::IPC' => '1.302120',
14922 'Test2::IPC::Driver' => '1.302120',
14923 'Test2::IPC::Driver::Files'=> '1.302120',
14924 'Test2::Tools::Tiny' => '1.302120',
14925 'Test2::Util' => '1.302120',
14926 'Test2::Util::ExternalMeta'=> '1.302120',
14927 'Test2::Util::Facets2Legacy'=> '1.302120',
14928 'Test2::Util::HashBase' => '1.302120',
14929 'Test2::Util::Trace' => '1.302120',
14930 'Test::Builder' => '1.302120',
14931 'Test::Builder::Formatter'=> '1.302120',
14932 'Test::Builder::Module' => '1.302120',
14933 'Test::Builder::Tester' => '1.302120',
14934 'Test::Builder::Tester::Color'=> '1.302120',
14935 'Test::Builder::TodoDiag'=> '1.302120',
14936 'Test::More' => '1.302120',
14937 'Test::Simple' => '1.302120',
14938 'Test::Tester' => '1.302120',
14939 'Test::Tester::Capture' => '1.302120',
14940 'Test::Tester::CaptureRunner'=> '1.302120',
14941 'Test::Tester::Delegate'=> '1.302120',
14942 'Test::use::ok' => '1.302120',
14943 'Time::HiRes' => '1.9748',
14944 'Time::Piece' => '1.3203',
14945 'Time::Seconds' => '1.3203',
14946 'Unicode::Collate' => '1.25',
14947 'Unicode::Collate::CJK::Big5'=> '1.25',
14948 'Unicode::Collate::CJK::GB2312'=> '1.25',
14949 'Unicode::Collate::CJK::JISX0208'=> '1.25',
14950 'Unicode::Collate::CJK::Korean'=> '1.25',
14951 'Unicode::Collate::CJK::Pinyin'=> '1.25',
14952 'Unicode::Collate::CJK::Stroke'=> '1.25',
14953 'Unicode::Collate::CJK::Zhuyin'=> '1.25',
14954 'Unicode::Collate::Locale'=> '1.25',
14955 'Unicode::UCD' => '0.69',
14956 'XS::APItest' => '0.94',
14957 'XSLoader' => '0.29',
14958 'arybase' => '0.15',
14959 'autodie::exception' => '2.29001',
14960 'autodie::hints' => '2.29001',
14961 'experimental' => '0.019',
14962 'feature' => '1.50',
14963 'ok' => '1.302120',
14964 'overload' => '1.29',
14965 'threads' => '2.21',
14966 'threads::shared' => '1.58',
14967 'warnings' => '1.39',
a67b31e3
KE
14968 },
14969 removed => {
14970 }
14971 },
946b6ed4
CBW
14972 5.027008 => {
14973 delta_from => 5.027007,
14974 changed => {
48d2ed92
A
14975 'B' => '1.74',
14976 'B::Deparse' => '1.47',
946b6ed4
CBW
14977 'B::Op_private' => '5.027008',
14978 'Config' => '5.027008',
48d2ed92
A
14979 'Cwd' => '3.72',
14980 'Data::Dumper' => '2.170',
14981 'Devel::PPPort' => '3.38',
14982 'Digest::SHA' => '6.01',
14983 'Encode' => '2.94',
14984 'Encode::Alias' => '2.24',
14985 'ExtUtils::Miniperl' => '1.08',
14986 'File::Spec' => '3.72',
14987 'File::Spec::AmigaOS' => '3.72',
14988 'File::Spec::Cygwin' => '3.72',
14989 'File::Spec::Epoc' => '3.72',
14990 'File::Spec::Functions' => '3.72',
14991 'File::Spec::Mac' => '3.72',
14992 'File::Spec::OS2' => '3.72',
14993 'File::Spec::Unix' => '3.72',
14994 'File::Spec::VMS' => '3.72',
14995 'File::Spec::Win32' => '3.72',
14996 'JSON::PP' => '2.97001',
14997 'JSON::PP::Boolean' => '2.97001',
946b6ed4
CBW
14998 'Module::CoreList' => '5.20180120',
14999 'Module::CoreList::TieHashDelta'=> '5.20180120',
15000 'Module::CoreList::Utils'=> '5.20180120',
48d2ed92
A
15001 'Opcode' => '1.43',
15002 'Pod::Functions' => '1.13',
15003 'Pod::Functions::Functions'=> '1.13',
15004 'Pod::Html' => '1.24',
15005 'Pod::Man' => '4.10',
15006 'Pod::ParseLink' => '4.10',
15007 'Pod::Text' => '4.10',
15008 'Pod::Text::Color' => '4.10',
15009 'Pod::Text::Overstrike' => '4.10',
15010 'Pod::Text::Termcap' => '4.10',
15011 'Socket' => '2.027',
15012 'Time::HiRes' => '1.9752',
15013 'Unicode::UCD' => '0.70',
15014 'XS::APItest' => '0.95',
15015 'XSLoader' => '0.30',
15016 'autodie::exception' => '2.29002',
15017 'feature' => '1.51',
15018 'overload' => '1.30',
15019 'utf8' => '1.21',
15020 'warnings' => '1.40',
946b6ed4
CBW
15021 },
15022 removed => {
15023 }
15024 },
3f4fae50
A
15025 5.027009 => {
15026 delta_from => 5.027008,
15027 changed => {
15028 'B::Op_private' => '5.027009',
9862549e
RB
15029 'Carp' => '1.46',
15030 'Carp::Heavy' => '1.46',
3f4fae50 15031 'Config' => '5.027009',
9862549e
RB
15032 'Cwd' => '3.74',
15033 'Devel::PPPort' => '3.39',
15034 'Encode' => '2.96',
15035 'Encode::Unicode' => '2.17',
15036 'Errno' => '1.29',
15037 'ExtUtils::Command' => '7.32',
15038 'ExtUtils::Command::MM' => '7.32',
15039 'ExtUtils::Liblist' => '7.32',
15040 'ExtUtils::Liblist::Kid'=> '7.32',
15041 'ExtUtils::MM' => '7.32',
15042 'ExtUtils::MM_AIX' => '7.32',
15043 'ExtUtils::MM_Any' => '7.32',
15044 'ExtUtils::MM_BeOS' => '7.32',
15045 'ExtUtils::MM_Cygwin' => '7.32',
15046 'ExtUtils::MM_DOS' => '7.32',
15047 'ExtUtils::MM_Darwin' => '7.32',
15048 'ExtUtils::MM_MacOS' => '7.32',
15049 'ExtUtils::MM_NW5' => '7.32',
15050 'ExtUtils::MM_OS2' => '7.32',
15051 'ExtUtils::MM_QNX' => '7.32',
15052 'ExtUtils::MM_UWIN' => '7.32',
15053 'ExtUtils::MM_Unix' => '7.32',
15054 'ExtUtils::MM_VMS' => '7.32',
15055 'ExtUtils::MM_VOS' => '7.32',
15056 'ExtUtils::MM_Win32' => '7.32',
15057 'ExtUtils::MM_Win95' => '7.32',
15058 'ExtUtils::MY' => '7.32',
15059 'ExtUtils::MakeMaker' => '7.32',
15060 'ExtUtils::MakeMaker::Config'=> '7.32',
15061 'ExtUtils::MakeMaker::Locale'=> '7.32',
15062 'ExtUtils::MakeMaker::version'=> '7.32',
15063 'ExtUtils::MakeMaker::version::regex'=> '7.32',
15064 'ExtUtils::Mkbootstrap' => '7.32',
15065 'ExtUtils::Mksymlists' => '7.32',
15066 'ExtUtils::ParseXS' => '3.38',
15067 'ExtUtils::ParseXS::Constants'=> '3.38',
15068 'ExtUtils::ParseXS::CountLines'=> '3.38',
15069 'ExtUtils::ParseXS::Eval'=> '3.38',
15070 'ExtUtils::ParseXS::Utilities'=> '3.38',
15071 'ExtUtils::Typemaps' => '3.38',
15072 'ExtUtils::Typemaps::Cmd'=> '3.38',
15073 'ExtUtils::Typemaps::InputMap'=> '3.38',
15074 'ExtUtils::Typemaps::OutputMap'=> '3.38',
15075 'ExtUtils::Typemaps::Type'=> '3.38',
15076 'ExtUtils::testlib' => '7.32',
15077 'File::Spec' => '3.74',
15078 'File::Spec::AmigaOS' => '3.74',
15079 'File::Spec::Cygwin' => '3.74',
15080 'File::Spec::Epoc' => '3.74',
15081 'File::Spec::Functions' => '3.74',
15082 'File::Spec::Mac' => '3.74',
15083 'File::Spec::OS2' => '3.74',
15084 'File::Spec::Unix' => '3.74',
15085 'File::Spec::VMS' => '3.74',
15086 'File::Spec::Win32' => '3.74',
15087 'IPC::Cmd' => '1.00',
15088 'Math::BigFloat::Trace' => '0.49',
15089 'Math::BigInt::Trace' => '0.49',
3f4fae50 15090 'Module::CoreList' => '5.20180220',
3f4fae50 15091 'Module::CoreList::Utils'=> '5.20180220',
9862549e
RB
15092 'POSIX' => '1.82',
15093 'PerlIO::encoding' => '0.26',
15094 'Storable' => '3.06',
15095 'Storable::Limit' => undef,
9862549e
RB
15096 'Test2' => '1.302122',
15097 'Test2::API' => '1.302122',
15098 'Test2::API::Breakage' => '1.302122',
15099 'Test2::API::Context' => '1.302122',
15100 'Test2::API::Instance' => '1.302122',
15101 'Test2::API::Stack' => '1.302122',
15102 'Test2::Event' => '1.302122',
15103 'Test2::Event::Bail' => '1.302122',
15104 'Test2::Event::Diag' => '1.302122',
15105 'Test2::Event::Encoding'=> '1.302122',
15106 'Test2::Event::Exception'=> '1.302122',
15107 'Test2::Event::Fail' => '1.302122',
15108 'Test2::Event::Generic' => '1.302122',
15109 'Test2::Event::Note' => '1.302122',
15110 'Test2::Event::Ok' => '1.302122',
15111 'Test2::Event::Pass' => '1.302122',
15112 'Test2::Event::Plan' => '1.302122',
15113 'Test2::Event::Skip' => '1.302122',
15114 'Test2::Event::Subtest' => '1.302122',
15115 'Test2::Event::TAP::Version'=> '1.302122',
15116 'Test2::Event::Waiting' => '1.302122',
15117 'Test2::EventFacet' => '1.302122',
15118 'Test2::EventFacet::About'=> '1.302122',
15119 'Test2::EventFacet::Amnesty'=> '1.302122',
15120 'Test2::EventFacet::Assert'=> '1.302122',
15121 'Test2::EventFacet::Control'=> '1.302122',
15122 'Test2::EventFacet::Error'=> '1.302122',
15123 'Test2::EventFacet::Info'=> '1.302122',
15124 'Test2::EventFacet::Meta'=> '1.302122',
15125 'Test2::EventFacet::Parent'=> '1.302122',
15126 'Test2::EventFacet::Plan'=> '1.302122',
15127 'Test2::EventFacet::Render'=> '1.302122',
15128 'Test2::EventFacet::Trace'=> '1.302122',
15129 'Test2::Formatter' => '1.302122',
15130 'Test2::Formatter::TAP' => '1.302122',
15131 'Test2::Hub' => '1.302122',
15132 'Test2::Hub::Interceptor'=> '1.302122',
15133 'Test2::Hub::Interceptor::Terminator'=> '1.302122',
15134 'Test2::Hub::Subtest' => '1.302122',
15135 'Test2::IPC' => '1.302122',
15136 'Test2::IPC::Driver' => '1.302122',
15137 'Test2::IPC::Driver::Files'=> '1.302122',
15138 'Test2::Tools::Tiny' => '1.302122',
15139 'Test2::Util' => '1.302122',
15140 'Test2::Util::ExternalMeta'=> '1.302122',
15141 'Test2::Util::Facets2Legacy'=> '1.302122',
15142 'Test2::Util::HashBase' => '1.302122',
15143 'Test2::Util::Trace' => '1.302122',
15144 'Test::Builder' => '1.302122',
15145 'Test::Builder::Formatter'=> '1.302122',
15146 'Test::Builder::Module' => '1.302122',
15147 'Test::Builder::Tester' => '1.302122',
15148 'Test::Builder::Tester::Color'=> '1.302122',
15149 'Test::Builder::TodoDiag'=> '1.302122',
15150 'Test::More' => '1.302122',
15151 'Test::Simple' => '1.302122',
15152 'Test::Tester' => '1.302122',
15153 'Test::Tester::Capture' => '1.302122',
15154 'Test::Tester::CaptureRunner'=> '1.302122',
15155 'Test::Tester::Delegate'=> '1.302122',
15156 'Test::use::ok' => '1.302122',
15157 'Time::HiRes' => '1.9753',
15158 'XS::APItest' => '0.96',
15159 'bigint' => '0.49',
15160 'bignum' => '0.49',
15161 'bigrat' => '0.49',
15162 'encoding' => '2.22',
15163 'if' => '0.0608',
15164 'mro' => '1.22',
15165 'ok' => '1.302122',
15166 'threads' => '2.22',
15167 'warnings' => '1.41',
3f4fae50
A
15168 },
15169 removed => {
9862549e 15170 'Module::CoreList::TieHashDelta'=> 1,
3f4fae50
A
15171 }
15172 },
4f01496f
S
15173 5.027010 => {
15174 delta_from => 5.027009,
15175 changed => {
27ee818c
TR
15176 'App::Prove' => '3.42',
15177 'App::Prove::State' => '3.42',
15178 'App::Prove::State::Result'=> '3.42',
15179 'App::Prove::State::Result::Test'=> '3.42',
15180 'B::Deparse' => '1.48',
15181 'B::Op_private' => '5.027010',
4f01496f
S
15182 'Carp' => '1.49',
15183 'Carp::Heavy' => '1.49',
15184 'Config' => '5.02701',
27ee818c
TR
15185 'Encode' => '2.97',
15186 'ExtUtils::Command' => '7.34',
15187 'ExtUtils::Command::MM' => '7.34',
15188 'ExtUtils::Liblist' => '7.34',
15189 'ExtUtils::Liblist::Kid'=> '7.34',
15190 'ExtUtils::MM' => '7.34',
15191 'ExtUtils::MM_AIX' => '7.34',
15192 'ExtUtils::MM_Any' => '7.34',
15193 'ExtUtils::MM_BeOS' => '7.34',
15194 'ExtUtils::MM_Cygwin' => '7.34',
15195 'ExtUtils::MM_DOS' => '7.34',
15196 'ExtUtils::MM_Darwin' => '7.34',
15197 'ExtUtils::MM_MacOS' => '7.34',
15198 'ExtUtils::MM_NW5' => '7.34',
15199 'ExtUtils::MM_OS2' => '7.34',
15200 'ExtUtils::MM_QNX' => '7.34',
15201 'ExtUtils::MM_UWIN' => '7.34',
15202 'ExtUtils::MM_Unix' => '7.34',
15203 'ExtUtils::MM_VMS' => '7.34',
15204 'ExtUtils::MM_VOS' => '7.34',
15205 'ExtUtils::MM_Win32' => '7.34',
15206 'ExtUtils::MM_Win95' => '7.34',
15207 'ExtUtils::MY' => '7.34',
15208 'ExtUtils::MakeMaker' => '7.34',
15209 'ExtUtils::MakeMaker::Config'=> '7.34',
15210 'ExtUtils::MakeMaker::Locale'=> '7.34',
15211 'ExtUtils::MakeMaker::version'=> '7.34',
15212 'ExtUtils::MakeMaker::version::regex'=> '7.34',
15213 'ExtUtils::Mkbootstrap' => '7.34',
15214 'ExtUtils::Mksymlists' => '7.34',
15215 'ExtUtils::ParseXS' => '3.39',
15216 'ExtUtils::ParseXS::Constants'=> '3.39',
15217 'ExtUtils::ParseXS::CountLines'=> '3.39',
15218 'ExtUtils::ParseXS::Eval'=> '3.39',
15219 'ExtUtils::ParseXS::Utilities'=> '3.39',
15220 'ExtUtils::testlib' => '7.34',
15221 'File::Glob' => '1.31',
15222 'I18N::Langinfo' => '0.16',
15223 'List::Util' => '1.50',
15224 'List::Util::XS' => '1.50',
15225 'Locale::Codes' => '3.56',
15226 'Locale::Codes::Constants'=> '3.56',
15227 'Locale::Codes::Country'=> '3.56',
15228 'Locale::Codes::Country_Codes'=> '3.56',
15229 'Locale::Codes::Country_Retired'=> '3.56',
15230 'Locale::Codes::Currency'=> '3.56',
15231 'Locale::Codes::Currency_Codes'=> '3.56',
15232 'Locale::Codes::Currency_Retired'=> '3.56',
15233 'Locale::Codes::LangExt'=> '3.56',
15234 'Locale::Codes::LangExt_Codes'=> '3.56',
15235 'Locale::Codes::LangExt_Retired'=> '3.56',
15236 'Locale::Codes::LangFam'=> '3.56',
15237 'Locale::Codes::LangFam_Codes'=> '3.56',
15238 'Locale::Codes::LangFam_Retired'=> '3.56',
15239 'Locale::Codes::LangVar'=> '3.56',
15240 'Locale::Codes::LangVar_Codes'=> '3.56',
15241 'Locale::Codes::LangVar_Retired'=> '3.56',
15242 'Locale::Codes::Language'=> '3.56',
15243 'Locale::Codes::Language_Codes'=> '3.56',
15244 'Locale::Codes::Language_Retired'=> '3.56',
15245 'Locale::Codes::Script' => '3.56',
15246 'Locale::Codes::Script_Codes'=> '3.56',
15247 'Locale::Codes::Script_Retired'=> '3.56',
15248 'Locale::Country' => '3.56',
15249 'Locale::Currency' => '3.56',
15250 'Locale::Language' => '3.56',
15251 'Locale::Script' => '3.56',
15252 'Module::CoreList' => '5.20180221',
15253 'Module::CoreList::Utils'=> '5.20180221',
15254 'POSIX' => '1.83',
15255 'Scalar::Util' => '1.50',
15256 'Sub::Util' => '1.50',
15257 'TAP::Base' => '3.42',
15258 'TAP::Formatter::Base' => '3.42',
15259 'TAP::Formatter::Color' => '3.42',
15260 'TAP::Formatter::Console'=> '3.42',
15261 'TAP::Formatter::Console::ParallelSession'=> '3.42',
15262 'TAP::Formatter::Console::Session'=> '3.42',
15263 'TAP::Formatter::File' => '3.42',
15264 'TAP::Formatter::File::Session'=> '3.42',
15265 'TAP::Formatter::Session'=> '3.42',
15266 'TAP::Harness' => '3.42',
15267 'TAP::Harness::Env' => '3.42',
15268 'TAP::Object' => '3.42',
15269 'TAP::Parser' => '3.42',
15270 'TAP::Parser::Aggregator'=> '3.42',
15271 'TAP::Parser::Grammar' => '3.42',
15272 'TAP::Parser::Iterator' => '3.42',
15273 'TAP::Parser::Iterator::Array'=> '3.42',
15274 'TAP::Parser::Iterator::Process'=> '3.42',
15275 'TAP::Parser::Iterator::Stream'=> '3.42',
15276 'TAP::Parser::IteratorFactory'=> '3.42',
15277 'TAP::Parser::Multiplexer'=> '3.42',
15278 'TAP::Parser::Result' => '3.42',
15279 'TAP::Parser::Result::Bailout'=> '3.42',
15280 'TAP::Parser::Result::Comment'=> '3.42',
15281 'TAP::Parser::Result::Plan'=> '3.42',
15282 'TAP::Parser::Result::Pragma'=> '3.42',
15283 'TAP::Parser::Result::Test'=> '3.42',
15284 'TAP::Parser::Result::Unknown'=> '3.42',
15285 'TAP::Parser::Result::Version'=> '3.42',
15286 'TAP::Parser::Result::YAML'=> '3.42',
15287 'TAP::Parser::ResultFactory'=> '3.42',
15288 'TAP::Parser::Scheduler'=> '3.42',
15289 'TAP::Parser::Scheduler::Job'=> '3.42',
15290 'TAP::Parser::Scheduler::Spinner'=> '3.42',
15291 'TAP::Parser::Source' => '3.42',
15292 'TAP::Parser::SourceHandler'=> '3.42',
15293 'TAP::Parser::SourceHandler::Executable'=> '3.42',
15294 'TAP::Parser::SourceHandler::File'=> '3.42',
15295 'TAP::Parser::SourceHandler::Handle'=> '3.42',
15296 'TAP::Parser::SourceHandler::Perl'=> '3.42',
15297 'TAP::Parser::SourceHandler::RawTAP'=> '3.42',
15298 'TAP::Parser::YAMLish::Reader'=> '3.42',
15299 'TAP::Parser::YAMLish::Writer'=> '3.42',
15300 'Test2' => '1.302133',
15301 'Test2::API' => '1.302133',
15302 'Test2::API::Breakage' => '1.302133',
15303 'Test2::API::Context' => '1.302133',
15304 'Test2::API::Instance' => '1.302133',
15305 'Test2::API::Stack' => '1.302133',
15306 'Test2::Event' => '1.302133',
15307 'Test2::Event::Bail' => '1.302133',
15308 'Test2::Event::Diag' => '1.302133',
15309 'Test2::Event::Encoding'=> '1.302133',
15310 'Test2::Event::Exception'=> '1.302133',
15311 'Test2::Event::Fail' => '1.302133',
15312 'Test2::Event::Generic' => '1.302133',
15313 'Test2::Event::Note' => '1.302133',
15314 'Test2::Event::Ok' => '1.302133',
15315 'Test2::Event::Pass' => '1.302133',
15316 'Test2::Event::Plan' => '1.302133',
15317 'Test2::Event::Skip' => '1.302133',
15318 'Test2::Event::Subtest' => '1.302133',
15319 'Test2::Event::TAP::Version'=> '1.302133',
15320 'Test2::Event::V2' => '1.302133',
15321 'Test2::Event::Waiting' => '1.302133',
15322 'Test2::EventFacet' => '1.302133',
15323 'Test2::EventFacet::About'=> '1.302133',
15324 'Test2::EventFacet::Amnesty'=> '1.302133',
15325 'Test2::EventFacet::Assert'=> '1.302133',
15326 'Test2::EventFacet::Control'=> '1.302133',
15327 'Test2::EventFacet::Error'=> '1.302133',
15328 'Test2::EventFacet::Hub'=> '1.302133',
15329 'Test2::EventFacet::Info'=> '1.302133',
15330 'Test2::EventFacet::Meta'=> '1.302133',
15331 'Test2::EventFacet::Parent'=> '1.302133',
15332 'Test2::EventFacet::Plan'=> '1.302133',
15333 'Test2::EventFacet::Render'=> '1.302133',
15334 'Test2::EventFacet::Trace'=> '1.302133',
15335 'Test2::Formatter' => '1.302133',
15336 'Test2::Formatter::TAP' => '1.302133',
15337 'Test2::Hub' => '1.302133',
15338 'Test2::Hub::Interceptor'=> '1.302133',
15339 'Test2::Hub::Interceptor::Terminator'=> '1.302133',
15340 'Test2::Hub::Subtest' => '1.302133',
15341 'Test2::IPC' => '1.302133',
15342 'Test2::IPC::Driver' => '1.302133',
15343 'Test2::IPC::Driver::Files'=> '1.302133',
15344 'Test2::Tools::Tiny' => '1.302133',
15345 'Test2::Util' => '1.302133',
15346 'Test2::Util::ExternalMeta'=> '1.302133',
15347 'Test2::Util::Facets2Legacy'=> '1.302133',
15348 'Test2::Util::HashBase' => '1.302133',
15349 'Test2::Util::Trace' => '1.302133',
15350 'Test::Builder' => '1.302133',
15351 'Test::Builder::Formatter'=> '1.302133',
15352 'Test::Builder::Module' => '1.302133',
15353 'Test::Builder::Tester' => '1.302133',
15354 'Test::Builder::Tester::Color'=> '1.302133',
15355 'Test::Builder::TodoDiag'=> '1.302133',
15356 'Test::Harness' => '3.42',
15357 'Test::More' => '1.302133',
15358 'Test::Simple' => '1.302133',
15359 'Test::Tester' => '1.302133',
15360 'Test::Tester::Capture' => '1.302133',
15361 'Test::Tester::CaptureRunner'=> '1.302133',
15362 'Test::Tester::Delegate'=> '1.302133',
15363 'Test::use::ok' => '1.302133',
15364 'Time::HiRes' => '1.9757',
15365 'Time::Piece' => '1.3204',
15366 'Time::Seconds' => '1.3204',
15367 'attributes' => '0.33',
15368 'ok' => '1.302133',
15369 'warnings' => '1.42',
4f01496f
S
15370 },
15371 removed => {
15372 }
15373 },
994c9c84
SH
15374 5.024004 => {
15375 delta_from => 5.024003,
15376 changed => {
15377 'B::Op_private' => '5.024004',
15378 'Config' => '5.024004',
15379 'Module::CoreList' => '5.20180414_24',
15380 'Module::CoreList::TieHashDelta'=> '5.20180414_24',
15381 'Module::CoreList::Utils'=> '5.20180414_24',
15382 },
15383 removed => {
15384 }
15385 },
15386 5.026002 => {
15387 delta_from => 5.026001,
15388 changed => {
15389 'B::Op_private' => '5.026002',
15390 'Config' => '5.026002',
15391 'Module::CoreList' => '5.20180414_26',
15392 'Module::CoreList::TieHashDelta'=> '5.20180414_26',
15393 'Module::CoreList::Utils'=> '5.20180414_26',
15394 'PerlIO::via' => '0.17',
15395 'Term::ReadLine' => '1.17',
15396 'Unicode::UCD' => '0.69',
15397 },
15398 removed => {
15399 }
15400 },
26db1972
TR
15401 5.027011 => {
15402 delta_from => 5.027010,
15403 changed => {
488fe208
S
15404 'B::Op_private' => '5.027011',
15405 'Carp' => '1.50',
15406 'Carp::Heavy' => '1.50',
15407 'Config' => '5.027011',
15408 'Devel::PPPort' => '3.40',
15409 'Exporter' => '5.73',
15410 'Exporter::Heavy' => '5.73',
15411 'ExtUtils::Constant' => '0.25',
15412 'I18N::Langinfo' => '0.17',
15413 'IO' => '1.39',
15414 'IO::Dir' => '1.39',
15415 'IO::File' => '1.39',
15416 'IO::Handle' => '1.39',
15417 'IO::Pipe' => '1.39',
15418 'IO::Poll' => '1.39',
15419 'IO::Seekable' => '1.39',
15420 'IO::Select' => '1.39',
15421 'IO::Socket' => '1.39',
15422 'IO::Socket::INET' => '1.39',
15423 'IO::Socket::UNIX' => '1.39',
15424 'Module::CoreList' => '5.20180420',
15425 'Module::CoreList::Utils'=> '5.20180420',
15426 'POSIX' => '1.84',
15427 'Time::HiRes' => '1.9759',
15428 'XS::APItest' => '0.97',
15429 'bytes' => '1.06',
15430 'subs' => '1.03',
15431 'vars' => '1.04',
15432 'version' => '0.9923',
15433 'version::regex' => '0.9923',
26db1972
TR
15434 },
15435 removed => {
15436 }
15437 },
999f6786 15438 5.028000 => {
6087c658 15439 delta_from => 5.027011,
999f6786 15440 changed => {
9950bd1f
KE
15441 'Archive::Tar' => '2.30',
15442 'Archive::Tar::Constant'=> '2.30',
15443 'Archive::Tar::File' => '2.30',
6087c658
S
15444 'B::Op_private' => '5.028000',
15445 'Config' => '5.028',
55f79f56
S
15446 'Module::CoreList' => '5.20180622',
15447 'Module::CoreList::Utils'=> '5.20180622',
6087c658 15448 'Storable' => '3.08',
292fba8f 15449 'XS::APItest' => '0.98',
6087c658 15450 'feature' => '1.52',
999f6786
S
15451 },
15452 removed => {
15453 }
15454 },
d361a1e6 15455 5.029000 => {
84208e00 15456 delta_from => 5.028,
d361a1e6 15457 changed => {
84208e00 15458 'B::Op_private' => '5.029000',
d361a1e6 15459 'Config' => '5.029',
84208e00
S
15460 'Module::CoreList' => '5.20180626',
15461 'Module::CoreList::Utils'=> '5.20180626',
15462 'Unicode::UCD' => '0.71',
15463 'XS::APItest' => '0.99',
d361a1e6
S
15464 'feature' => '1.53',
15465 },
15466 removed => {
15467 }
15468 },
c176529f 15469 5.029001 => {
0c114ddf 15470 delta_from => 5.029000,
6818110d
S
15471 changed => {
15472 'B::Op_private' => '5.029001',
0c114ddf
SH
15473 'Compress::Raw::Bzip2' => '2.081',
15474 'Compress::Raw::Zlib' => '2.081',
15475 'Compress::Zlib' => '2.081',
6818110d 15476 'Config' => '5.029001',
0c114ddf
SH
15477 'Config::Perl::V' => '0.30',
15478 'DB_File' => '1.842',
15479 'Devel::PPPort' => '3.42',
15480 'Digest::SHA' => '6.02',
15481 'ExtUtils::Manifest' => '1.71',
15482 'File::GlobMapper' => '1.001',
15483 'File::Temp' => '0.2308',
15484 'IO::Compress::Adapter::Bzip2'=> '2.081',
15485 'IO::Compress::Adapter::Deflate'=> '2.081',
15486 'IO::Compress::Adapter::Identity'=> '2.081',
15487 'IO::Compress::Base' => '2.081',
15488 'IO::Compress::Base::Common'=> '2.081',
15489 'IO::Compress::Bzip2' => '2.081',
15490 'IO::Compress::Deflate' => '2.081',
15491 'IO::Compress::Gzip' => '2.081',
15492 'IO::Compress::Gzip::Constants'=> '2.081',
15493 'IO::Compress::RawDeflate'=> '2.081',
15494 'IO::Compress::Zip' => '2.081',
15495 'IO::Compress::Zip::Constants'=> '2.081',
15496 'IO::Compress::Zlib::Constants'=> '2.081',
15497 'IO::Compress::Zlib::Extra'=> '2.081',
15498 'IO::Uncompress::Adapter::Bunzip2'=> '2.081',
15499 'IO::Uncompress::Adapter::Identity'=> '2.081',
15500 'IO::Uncompress::Adapter::Inflate'=> '2.081',
15501 'IO::Uncompress::AnyInflate'=> '2.081',
15502 'IO::Uncompress::AnyUncompress'=> '2.081',
15503 'IO::Uncompress::Base' => '2.081',
15504 'IO::Uncompress::Bunzip2'=> '2.081',
15505 'IO::Uncompress::Gunzip'=> '2.081',
15506 'IO::Uncompress::Inflate'=> '2.081',
15507 'IO::Uncompress::RawInflate'=> '2.081',
15508 'IO::Uncompress::Unzip' => '2.081',
15509 'IPC::Cmd' => '1.02',
15510 'Locale::Codes' => '3.57',
15511 'Locale::Codes::Constants'=> '3.57',
15512 'Locale::Codes::Country'=> '3.57',
15513 'Locale::Codes::Country_Codes'=> '3.57',
15514 'Locale::Codes::Country_Retired'=> '3.57',
15515 'Locale::Codes::Currency'=> '3.57',
15516 'Locale::Codes::Currency_Codes'=> '3.57',
15517 'Locale::Codes::Currency_Retired'=> '3.57',
15518 'Locale::Codes::LangExt'=> '3.57',
15519 'Locale::Codes::LangExt_Codes'=> '3.57',
15520 'Locale::Codes::LangExt_Retired'=> '3.57',
15521 'Locale::Codes::LangFam'=> '3.57',
15522 'Locale::Codes::LangFam_Codes'=> '3.57',
15523 'Locale::Codes::LangFam_Retired'=> '3.57',
15524 'Locale::Codes::LangVar'=> '3.57',
15525 'Locale::Codes::LangVar_Codes'=> '3.57',
15526 'Locale::Codes::LangVar_Retired'=> '3.57',
15527 'Locale::Codes::Language'=> '3.57',
15528 'Locale::Codes::Language_Codes'=> '3.57',
15529 'Locale::Codes::Language_Retired'=> '3.57',
15530 'Locale::Codes::Script' => '3.57',
15531 'Locale::Codes::Script_Codes'=> '3.57',
15532 'Locale::Codes::Script_Retired'=> '3.57',
15533 'Locale::Country' => '3.57',
15534 'Locale::Currency' => '3.57',
15535 'Locale::Language' => '3.57',
15536 'Locale::Script' => '3.57',
15537 'Math::BigFloat' => '1.999813',
15538 'Math::BigFloat::Trace' => '0.50',
15539 'Math::BigInt' => '1.999813',
15540 'Math::BigInt::Calc' => '1.999813',
15541 'Math::BigInt::CalcEmu' => '1.999813',
15542 'Math::BigInt::FastCalc'=> '0.5007',
15543 'Math::BigInt::Lib' => '1.999813',
15544 'Math::BigInt::Trace' => '0.50',
15545 'Math::BigRat' => '0.2614',
2df147b6
SH
15546 'Module::CoreList' => '5.20180720',
15547 'Module::CoreList::Utils'=> '5.20180720',
0c114ddf
SH
15548 'Pod::Man' => '4.11',
15549 'Pod::ParseLink' => '4.11',
15550 'Pod::Text' => '4.11',
15551 'Pod::Text::Color' => '4.11',
15552 'Pod::Text::Overstrike' => '4.11',
15553 'Pod::Text::Termcap' => '4.11',
15554 'Storable' => '3.11',
15555 'Test2' => '1.302138',
15556 'Test2::API' => '1.302138',
15557 'Test2::API::Breakage' => '1.302138',
15558 'Test2::API::Context' => '1.302138',
15559 'Test2::API::Instance' => '1.302138',
15560 'Test2::API::Stack' => '1.302138',
15561 'Test2::Event' => '1.302138',
15562 'Test2::Event::Bail' => '1.302138',
15563 'Test2::Event::Diag' => '1.302138',
15564 'Test2::Event::Encoding'=> '1.302138',
15565 'Test2::Event::Exception'=> '1.302138',
15566 'Test2::Event::Fail' => '1.302138',
15567 'Test2::Event::Generic' => '1.302138',
15568 'Test2::Event::Note' => '1.302138',
15569 'Test2::Event::Ok' => '1.302138',
15570 'Test2::Event::Pass' => '1.302138',
15571 'Test2::Event::Plan' => '1.302138',
15572 'Test2::Event::Skip' => '1.302138',
15573 'Test2::Event::Subtest' => '1.302138',
15574 'Test2::Event::TAP::Version'=> '1.302138',
15575 'Test2::Event::V2' => '1.302138',
15576 'Test2::Event::Waiting' => '1.302138',
15577 'Test2::EventFacet' => '1.302138',
15578 'Test2::EventFacet::About'=> '1.302138',
15579 'Test2::EventFacet::Amnesty'=> '1.302138',
15580 'Test2::EventFacet::Assert'=> '1.302138',
15581 'Test2::EventFacet::Control'=> '1.302138',
15582 'Test2::EventFacet::Error'=> '1.302138',
15583 'Test2::EventFacet::Hub'=> '1.302138',
15584 'Test2::EventFacet::Info'=> '1.302138',
15585 'Test2::EventFacet::Meta'=> '1.302138',
15586 'Test2::EventFacet::Parent'=> '1.302138',
15587 'Test2::EventFacet::Plan'=> '1.302138',
15588 'Test2::EventFacet::Render'=> '1.302138',
15589 'Test2::EventFacet::Trace'=> '1.302138',
15590 'Test2::Formatter' => '1.302138',
15591 'Test2::Formatter::TAP' => '1.302138',
15592 'Test2::Hub' => '1.302138',
15593 'Test2::Hub::Interceptor'=> '1.302138',
15594 'Test2::Hub::Interceptor::Terminator'=> '1.302138',
15595 'Test2::Hub::Subtest' => '1.302138',
15596 'Test2::IPC' => '1.302138',
15597 'Test2::IPC::Driver' => '1.302138',
15598 'Test2::IPC::Driver::Files'=> '1.302138',
15599 'Test2::Tools::Tiny' => '1.302138',
15600 'Test2::Util' => '1.302138',
15601 'Test2::Util::ExternalMeta'=> '1.302138',
15602 'Test2::Util::Facets2Legacy'=> '1.302138',
15603 'Test2::Util::HashBase' => '1.302138',
15604 'Test2::Util::Trace' => '1.302138',
15605 'Test::Builder' => '1.302138',
15606 'Test::Builder::Formatter'=> '1.302138',
15607 'Test::Builder::Module' => '1.302138',
15608 'Test::Builder::Tester' => '1.302138',
15609 'Test::Builder::Tester::Color'=> '1.302138',
15610 'Test::Builder::TodoDiag'=> '1.302138',
15611 'Test::More' => '1.302138',
15612 'Test::Simple' => '1.302138',
15613 'Test::Tester' => '1.302138',
15614 'Test::Tester::Capture' => '1.302138',
15615 'Test::Tester::CaptureRunner'=> '1.302138',
15616 'Test::Tester::Delegate'=> '1.302138',
15617 'Test::use::ok' => '1.302138',
15618 'Thread::Queue' => '3.13',
15619 'Time::Local' => '1.28',
15620 'bigint' => '0.50',
15621 'bignum' => '0.50',
15622 'bigrat' => '0.50',
15623 'experimental' => '0.020',
15624 'ok' => '1.302138',
15625 'parent' => '0.237',
15626 'perlfaq' => '5.20180605',
15627 'version' => '0.9924',
15628 'version::regex' => '0.9924',
6818110d
S
15629 },
15630 removed => {
15631 }
c176529f 15632 },
c0036c4e
SH
15633 5.029002 => {
15634 delta_from => 5.029001,
15635 changed => {
15636 'B::Op_private' => '5.029002',
15637 'Config' => '5.029002',
e1603cb8
CBW
15638 'Config::Extensions' => '0.03',
15639 'Cwd' => '3.75',
15640 'Data::Dumper' => '2.171',
15641 'Filter::Util::Call' => '1.59',
15642 'HTTP::Tiny' => '0.076',
c0036c4e
SH
15643 'Module::CoreList' => '5.20180820',
15644 'Module::CoreList::Utils'=> '5.20180820',
e1603cb8
CBW
15645 'PerlIO::scalar' => '0.30',
15646 'Storable' => '3.12',
15647 'Test2' => '1.302140',
15648 'Test2::API' => '1.302140',
15649 'Test2::API::Breakage' => '1.302140',
15650 'Test2::API::Context' => '1.302140',
15651 'Test2::API::Instance' => '1.302140',
15652 'Test2::API::Stack' => '1.302140',
15653 'Test2::Event' => '1.302140',
15654 'Test2::Event::Bail' => '1.302140',
15655 'Test2::Event::Diag' => '1.302140',
15656 'Test2::Event::Encoding'=> '1.302140',
15657 'Test2::Event::Exception'=> '1.302140',
15658 'Test2::Event::Fail' => '1.302140',
15659 'Test2::Event::Generic' => '1.302140',
15660 'Test2::Event::Note' => '1.302140',
15661 'Test2::Event::Ok' => '1.302140',
15662 'Test2::Event::Pass' => '1.302140',
15663 'Test2::Event::Plan' => '1.302140',
15664 'Test2::Event::Skip' => '1.302140',
15665 'Test2::Event::Subtest' => '1.302140',
15666 'Test2::Event::TAP::Version'=> '1.302140',
15667 'Test2::Event::V2' => '1.302140',
15668 'Test2::Event::Waiting' => '1.302140',
15669 'Test2::EventFacet' => '1.302140',
15670 'Test2::EventFacet::About'=> '1.302140',
15671 'Test2::EventFacet::Amnesty'=> '1.302140',
15672 'Test2::EventFacet::Assert'=> '1.302140',
15673 'Test2::EventFacet::Control'=> '1.302140',
15674 'Test2::EventFacet::Error'=> '1.302140',
15675 'Test2::EventFacet::Hub'=> '1.302140',
15676 'Test2::EventFacet::Info'=> '1.302140',
15677 'Test2::EventFacet::Meta'=> '1.302140',
15678 'Test2::EventFacet::Parent'=> '1.302140',
15679 'Test2::EventFacet::Plan'=> '1.302140',
15680 'Test2::EventFacet::Render'=> '1.302140',
15681 'Test2::EventFacet::Trace'=> '1.302140',
15682 'Test2::Formatter' => '1.302140',
15683 'Test2::Formatter::TAP' => '1.302140',
15684 'Test2::Hub' => '1.302140',
15685 'Test2::Hub::Interceptor'=> '1.302140',
15686 'Test2::Hub::Interceptor::Terminator'=> '1.302140',
15687 'Test2::Hub::Subtest' => '1.302140',
15688 'Test2::IPC' => '1.302140',
15689 'Test2::IPC::Driver' => '1.302140',
15690 'Test2::IPC::Driver::Files'=> '1.302140',
15691 'Test2::Tools::Tiny' => '1.302140',
15692 'Test2::Util' => '1.302140',
15693 'Test2::Util::ExternalMeta'=> '1.302140',
15694 'Test2::Util::Facets2Legacy'=> '1.302140',
15695 'Test2::Util::HashBase' => '1.302140',
15696 'Test2::Util::Trace' => '1.302140',
15697 'Test::Builder' => '1.302140',
15698 'Test::Builder::Formatter'=> '1.302140',
15699 'Test::Builder::Module' => '1.302140',
15700 'Test::Builder::Tester' => '1.302140',
15701 'Test::Builder::Tester::Color'=> '1.302140',
15702 'Test::Builder::TodoDiag'=> '1.302140',
15703 'Test::More' => '1.302140',
15704 'Test::Simple' => '1.302140',
15705 'Test::Tester' => '1.302140',
15706 'Test::Tester::Capture' => '1.302140',
15707 'Test::Tester::CaptureRunner'=> '1.302140',
15708 'Test::Tester::Delegate'=> '1.302140',
15709 'Test::use::ok' => '1.302140',
15710 'Time::HiRes' => '1.9760',
15711 'Time::Piece' => '1.33',
15712 'Time::Seconds' => '1.33',
15713 'Unicode' => '11.0.0',
15714 'ok' => '1.302140',
15715 'warnings' => '1.43',
c0036c4e
SH
15716 },
15717 removed => {
15718 }
15719 },
cda59a31 15720);
8f2fd531 15721
2a21e867
NB
15722sub is_core
15723{
766780a5 15724 shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
2a21e867 15725 my $module = shift;
766780a5
AP
15726 my $module_version = @_ > 0 ? shift : undef;
15727 my $perl_version = @_ > 0 ? shift : $];
2a21e867
NB
15728
15729 my $first_release = first_release($module);
15730
15731 return 0 if !defined($first_release) || $first_release > $perl_version;
15732
15733 my $final_release = removed_from($module);
15734
cf549c1a 15735 return 0 if defined($final_release) && $perl_version >= $final_release;
2a21e867
NB
15736
15737 # If a minimum version of the module was specified:
717ace6e
NB
15738 # Step through all perl releases ($prn)
15739 # so we can find what version of the module
2a21e867
NB
15740 # was included in the specified version of perl.
15741 # On the way if we pass the required module version, we can
15742 # short-circuit and return true
15743 if (defined($module_version)) {
a0f8d0d7
DIM
15744 my $module_version_object = eval { version->parse($module_version) };
15745 if (!defined($module_version_object)) {
15746 (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/;
15747 die $err;
15748 }
717ace6e
NB
15749 # The Perl releases aren't a linear sequence, but a tree. We need to build the path
15750 # of releases from 5 to the specified release, and follow the module's version(s)
15751 # along that path.
15752 my @releases = ($perl_version);
15753 my $rel = $perl_version;
15754 while (defined($rel)) {
4e70aa16 15755 # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
1e2bda49 15756 my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
4e70aa16 15757 $rel = $this_delta->{delta_from};
717ace6e
NB
15758 unshift(@releases, $rel) if defined($rel);
15759 }
2a21e867 15760 RELEASE:
717ace6e 15761 foreach my $prn (@releases) {
6af6e599 15762 next RELEASE if $prn < $first_release;
2a21e867
NB
15763 last RELEASE if $prn > $perl_version;
15764 next unless defined(my $next_module_version
15765 = $delta{$prn}->{changed}->{$module});
a0f8d0d7 15766 return 1 if eval { version->parse($next_module_version) >= $module_version_object };
2a21e867
NB
15767 }
15768 return 0;
15769 }
15770
15771 return 1 if !defined($final_release);
15772
15773 return $perl_version <= $final_release;
15774}
15775
8bbcf42b 15776%version = _undelta(\%delta);
a272bf38 15777
a762e054 15778%deprecated = (
5ff416ff
MD
15779 5.011 => {
15780 changed => { map { $_ => 1 } qw/
15781 Class::ISA
15782 Pod::Plainer
15783 Shell
15784 Switch
15785 /},
15786 },
15787 5.011001 => { delta_from => 5.011 },
15788 5.011002 => { delta_from => 5.011001 },
15789 5.011003 => { delta_from => 5.011002 },
15790 5.011004 => { delta_from => 5.011003 },
15791 5.011005 => { delta_from => 5.011004 },
15792
15793 5.012 => { delta_from => 5.011005 },
15794 5.012001 => { delta_from => 5.012 },
15795 5.012002 => { delta_from => 5.012001 },
15796 5.012003 => { delta_from => 5.012002 },
15797 5.012004 => { delta_from => 5.012003 },
15798 5.012005 => { delta_from => 5.012004 },
15799
15800 5.013 => { delta_from => 5.012005 },
30570232 15801 5.013001 => {
5ff416ff
MD
15802 delta_from => 5.013,
15803 removed => { map { $_ => 1 } qw/
15804 Class::ISA
15805 Pod::Plainer
15806 Switch
15807 /},
15808 },
15809 5.013002 => { delta_from => 5.013001 },
15810 5.013003 => { delta_from => 5.013002 },
15811 5.013004 => { delta_from => 5.013003 },
15812 5.013005 => { delta_from => 5.013004 },
15813 5.013006 => { delta_from => 5.013005 },
15814 5.013007 => { delta_from => 5.013006 },
15815 5.013008 => { delta_from => 5.013007 },
15816 5.013009 => { delta_from => 5.013008 },
15817 5.01301 => { delta_from => 5.013009 },
15818 5.013011 => { delta_from => 5.01301 },
15819
15820 5.014 => { delta_from => 5.013011 },
15821 5.014001 => { delta_from => 5.014 },
15822 5.014002 => { delta_from => 5.014001 },
15823 5.014003 => { delta_from => 5.014002 },
15824 5.014004 => { delta_from => 5.014003 },
15825
15826 5.015 => {
15827 delta_from => 5.014004,
15828 removed => { Shell => 1 },
15829 },
15830 5.015001 => { delta_from => 5.015 },
15831 5.015002 => { delta_from => 5.015001 },
15832 5.015003 => { delta_from => 5.015002 },
15833 5.015004 => { delta_from => 5.015003 },
15834 5.015005 => { delta_from => 5.015004 },
15835 5.015006 => { delta_from => 5.015005 },
15836 5.015007 => { delta_from => 5.015006 },
15837 5.015008 => { delta_from => 5.015007 },
15838 5.015009 => { delta_from => 5.015008 },
15839
15840 5.016 => { delta_from => 5.015009 },
15841 5.016001 => { delta_from => 5.016 },
15842 5.016002 => { delta_from => 5.016001 },
15843 5.016003 => { delta_from => 5.016002 },
15844
15845 5.017 => { delta_from => 5.016003 },
15846 5.017001 => { delta_from => 5.017 },
15847 5.017002 => { delta_from => 5.017001 },
15848 5.017003 => { delta_from => 5.017002 },
15849 5.017004 => { delta_from => 5.017003 },
15850 5.017005 => { delta_from => 5.017004 },
15851 5.017006 => { delta_from => 5.017005 },
15852 5.017007 => { delta_from => 5.017006 },
dd4b1c75 15853 5.017008 => {
5ff416ff
MD
15854 delta_from => 5.017007,
15855 changed => { 'Pod::LaTeX' => 1 },
299c740c
CBW
15856 },
15857 5.017009 => {
5ff416ff
MD
15858 delta_from => 5.017008,
15859 changed => { map { $_ => 1 } qw/
15860 Archive::Extract
15861 B::Lint
15862 B::Lint::Debug
15863 CPANPLUS
15864 CPANPLUS::Backend
15865 CPANPLUS::Backend::RV
15866 CPANPLUS::Config
15867 CPANPLUS::Config::HomeEnv
15868 CPANPLUS::Configure
15869 CPANPLUS::Configure::Setup
15870 CPANPLUS::Dist
15871 CPANPLUS::Dist::Autobundle
15872 CPANPLUS::Dist::Base
15873 CPANPLUS::Dist::Build
15874 CPANPLUS::Dist::Build::Constants
15875 CPANPLUS::Dist::MM
15876 CPANPLUS::Dist::Sample
15877 CPANPLUS::Error
15878 CPANPLUS::Internals
15879 CPANPLUS::Internals::Constants
15880 CPANPLUS::Internals::Constants::Report
15881 CPANPLUS::Internals::Extract
15882 CPANPLUS::Internals::Fetch
15883 CPANPLUS::Internals::Report
15884 CPANPLUS::Internals::Search
15885 CPANPLUS::Internals::Source
15886 CPANPLUS::Internals::Source::Memory
15887 CPANPLUS::Internals::Source::SQLite
15888 CPANPLUS::Internals::Source::SQLite::Tie
15889 CPANPLUS::Internals::Utils
15890 CPANPLUS::Internals::Utils::Autoflush
15891 CPANPLUS::Module
15892 CPANPLUS::Module::Author
15893 CPANPLUS::Module::Author::Fake
15894 CPANPLUS::Module::Checksums
15895 CPANPLUS::Module::Fake
15896 CPANPLUS::Module::Signature
15897 CPANPLUS::Selfupdate
15898 CPANPLUS::Shell
15899 CPANPLUS::Shell::Classic
15900 CPANPLUS::Shell::Default
15901 CPANPLUS::Shell::Default::Plugins::CustomSource
15902 CPANPLUS::Shell::Default::Plugins::Remote
15903 CPANPLUS::Shell::Default::Plugins::Source
15904 Devel::InnerPackage
230125ea 15905 File::CheckTree
5ff416ff
MD
15906 Log::Message
15907 Log::Message::Config
15908 Log::Message::Handlers
15909 Log::Message::Item
15910 Log::Message::Simple
15911 Module::Pluggable
15912 Module::Pluggable::Object
15913 Object::Accessor
15914 Term::UI
15915 Term::UI::History
230125ea 15916 Text::Soundex
5ff416ff
MD
15917 /},
15918 },
15919 5.01701 => { delta_from => 5.017009 },
15920 5.017011 => { delta_from => 5.01701 },
5ff416ff 15921
be59b6aa 15922 5.018 => { delta_from => 5.017011 },
ba4dd7ef
RS
15923 5.018001 => {
15924 delta_from => 5.018,
15925 changed => {
15926 },
15927 removed => {
15928 }
15929 },
6c2a7b42
CBW
15930 5.018002 => {
15931 delta_from => 5.018001,
15932 changed => {
15933 },
15934 removed => {
15935 }
15936 },
b616d4df
RS
15937 5.018003 => {
15938 delta_from => 5.018,
15939 changed => {
15940 },
15941 removed => {
15942 }
15943 },
15944 5.018004 => {
15945 delta_from => 5.018,
15946 changed => {
15947 },
15948 removed => {
15949 }
15950 },
5ff416ff
MD
15951
15952 5.019 => {
15953 delta_from => 5.018,
93980676 15954 changed => { 'Module::Build' => 1 },
5ff416ff
MD
15955 removed => { map { $_ => 1 } qw/
15956 Archive::Extract
15957 B::Lint
15958 B::Lint::Debug
15959 CPANPLUS
15960 CPANPLUS::Backend
15961 CPANPLUS::Backend::RV
15962 CPANPLUS::Config
15963 CPANPLUS::Config::HomeEnv
15964 CPANPLUS::Configure
15965 CPANPLUS::Configure::Setup
15966 CPANPLUS::Dist
15967 CPANPLUS::Dist::Autobundle
15968 CPANPLUS::Dist::Base
15969 CPANPLUS::Dist::Build
15970 CPANPLUS::Dist::Build::Constants
15971 CPANPLUS::Dist::MM
15972 CPANPLUS::Dist::Sample
15973 CPANPLUS::Error
15974 CPANPLUS::Internals
15975 CPANPLUS::Internals::Constants
15976 CPANPLUS::Internals::Constants::Report
15977 CPANPLUS::Internals::Extract
15978 CPANPLUS::Internals::Fetch
15979 CPANPLUS::Internals::Report
15980 CPANPLUS::Internals::Search
15981 CPANPLUS::Internals::Source
15982 CPANPLUS::Internals::Source::Memory
15983 CPANPLUS::Internals::Source::SQLite
15984 CPANPLUS::Internals::Source::SQLite::Tie
15985 CPANPLUS::Internals::Utils
15986 CPANPLUS::Internals::Utils::Autoflush
15987 CPANPLUS::Module
15988 CPANPLUS::Module::Author
15989 CPANPLUS::Module::Author::Fake
15990 CPANPLUS::Module::Checksums
15991 CPANPLUS::Module::Fake
15992 CPANPLUS::Module::Signature
15993 CPANPLUS::Selfupdate
15994 CPANPLUS::Shell
15995 CPANPLUS::Shell::Classic
15996 CPANPLUS::Shell::Default
15997 CPANPLUS::Shell::Default::Plugins::CustomSource
15998 CPANPLUS::Shell::Default::Plugins::Remote
15999 CPANPLUS::Shell::Default::Plugins::Source
16000 Devel::InnerPackage
230125ea 16001 File::CheckTree
5ff416ff
MD
16002 Log::Message
16003 Log::Message::Config
16004 Log::Message::Handlers
16005 Log::Message::Item
16006 Log::Message::Simple
16007 Module::Pluggable
16008 Module::Pluggable::Object
16009 Object::Accessor
16010 Pod::LaTeX
16011 Term::UI
16012 Term::UI::History
230125ea 16013 Text::Soundex
5ff416ff 16014 /}
38a400f2 16015 },
2f4a2205
DG
16016 5.019001 => {
16017 delta_from => 5.019,
16018 changed => {
16019 },
16020 removed => {
16021 }
16022 },
d04adc20 16023 5.019002 => {
1f0ad552 16024 delta_from => 5.019001,
d04adc20 16025 changed => {
a7e68be8
AP
16026 },
16027 removed => {
16028 }
16029 },
16030 5.019003 => {
16031 delta_from => 5.019002,
16032 changed => {
d04adc20
DG
16033 },
16034 removed => {
16035 }
16036 },
37287258
SH
16037 5.019004 => {
16038 delta_from => 5.019003,
16039 changed => {
62de23d1
SH
16040 'Module::Build::Base' => '1',
16041 'Module::Build::Compat' => '1',
16042 'Module::Build::Config' => '1',
16043 'Module::Build::ConfigData'=> '1',
16044 'Module::Build::Cookbook'=> '1',
16045 'Module::Build::Dumper' => '1',
16046 'Module::Build::ModuleInfo'=> '1',
16047 'Module::Build::Notes' => '1',
16048 'Module::Build::PPMMaker'=> '1',
16049 'Module::Build::Platform::Default'=> '1',
16050 'Module::Build::Platform::MacOS'=> '1',
16051 'Module::Build::Platform::Unix'=> '1',
16052 'Module::Build::Platform::VMS'=> '1',
16053 'Module::Build::Platform::VOS'=> '1',
16054 'Module::Build::Platform::Windows'=> '1',
16055 'Module::Build::Platform::aix'=> '1',
16056 'Module::Build::Platform::cygwin'=> '1',
16057 'Module::Build::Platform::darwin'=> '1',
16058 'Module::Build::Platform::os2'=> '1',
16059 'Module::Build::PodParser'=> '1',
16060 'Module::Build::Version'=> '1',
16061 'Module::Build::YAML' => '1',
16062 'inc::latest' => '1',
37287258
SH
16063 },
16064 removed => {
16065 }
16066 },
fa5fbb39
SH
16067 5.019005 => {
16068 delta_from => 5.019004,
16069 changed => {
16070 },
16071 removed => {
16072 }
16073 },
494bd897
SH
16074 5.019006 => {
16075 delta_from => 5.019005,
16076 changed => {
1f2fd626 16077 'Package::Constants' => '1',
494bd897
SH
16078 },
16079 removed => {
16080 }
16081 },
b3f76264
CBW
16082 5.019007 => {
16083 delta_from => 5.019006,
16084 changed => {
95eb96f3
A
16085 'CGI' => '1',
16086 'CGI::Apache' => '1',
16087 'CGI::Carp' => '1',
16088 'CGI::Cookie' => '1',
16089 'CGI::Fast' => '1',
16090 'CGI::Pretty' => '1',
16091 'CGI::Push' => '1',
16092 'CGI::Switch' => '1',
16093 'CGI::Util' => '1',
b3f76264
CBW
16094 },
16095 removed => {
16096 }
16097 },
365f8c3e
CBW
16098 5.019008 => {
16099 delta_from => 5.019007,
16100 changed => {
16101 },
16102 removed => {
16103 }
16104 },
a27b5f52
CBW
16105 5.019009 => {
16106 delta_from => 5.019008,
16107 changed => {
16108 },
16109 removed => {
16110 }
16111 },
ce42a9e6 16112 5.01901 => {
baca4554
TC
16113 delta_from => 5.019009,
16114 changed => {
16115 },
16116 removed => {
16117 }
16118 },
b776cec1
AC
16119 5.019011 => {
16120 delta_from => 5.019010,
16121 changed => {
16122 },
16123 removed => {
16124 }
16125 },
1b6c17c2 16126 5.020000 => {
48cbd9dd
SH
16127 delta_from => 5.019011,
16128 changed => {
16129 },
16130 removed => {
16131 }
16132 },
75325e51 16133 5.021000 => {
4f2cd4f7 16134 delta_from => 5.020000,
75325e51
RS
16135 changed => {
16136 },
16137 removed => {
be59b6aa
AP
16138 'CGI' => 1,
16139 'CGI::Apache' => 1,
16140 'CGI::Carp' => 1,
16141 'CGI::Cookie' => 1,
16142 'CGI::Fast' => 1,
16143 'CGI::Pretty' => 1,
16144 'CGI::Push' => 1,
16145 'CGI::Switch' => 1,
16146 'CGI::Util' => 1,
16147 'Module::Build' => 1,
16148 'Module::Build::Base' => 1,
16149 'Module::Build::Compat' => 1,
16150 'Module::Build::Config' => 1,
16151 'Module::Build::ConfigData'=> 1,
16152 'Module::Build::Cookbook'=> 1,
16153 'Module::Build::Dumper' => 1,
16154 'Module::Build::ModuleInfo'=> 1,
16155 'Module::Build::Notes' => 1,
16156 'Module::Build::PPMMaker'=> 1,
16157 'Module::Build::Platform::Default'=> 1,
16158 'Module::Build::Platform::MacOS'=> 1,
16159 'Module::Build::Platform::Unix'=> 1,
16160 'Module::Build::Platform::VMS'=> 1,
16161 'Module::Build::Platform::VOS'=> 1,
16162 'Module::Build::Platform::Windows'=> 1,
16163 'Module::Build::Platform::aix'=> 1,
16164 'Module::Build::Platform::cygwin'=> 1,
16165 'Module::Build::Platform::darwin'=> 1,
16166 'Module::Build::Platform::os2'=> 1,
16167 'Module::Build::PodParser'=> 1,
16168 'Module::Build::Version'=> 1,
16169 'Module::Build::YAML' => 1,
16170 'Package::Constants' => 1,
be59b6aa 16171 'inc::latest' => 1,
75325e51
RS
16172 }
16173 },
5a534470 16174 5.021001 => {
be59b6aa 16175 delta_from => 5.021000,
5a534470
RS
16176 changed => {
16177 },
16178 removed => {
16179 }
16180 },
2901561d
MH
16181 5.021002 => {
16182 delta_from => 5.021001,
16183 changed => {
16184 },
16185 removed => {
16186 }
16187 },
633c51bc
A
16188 5.021003 => {
16189 delta_from => 5.021002,
16190 changed => {
16191 },
16192 removed => {
16193 }
16194 },
14cc2657
SH
16195 5.020001 => {
16196 delta_from => 5.020000,
5c851aa1
PM
16197 changed => {
16198 },
16199 removed => {
16200 }
16201 },
14cc2657
SH
16202 5.021004 => {
16203 delta_from => 5.021003,
1c6aa017
SH
16204 changed => {
16205 },
16206 removed => {
16207 }
16208 },
84d03adf
SH
16209 5.021005 => {
16210 delta_from => 5.021004,
16211 changed => {
16212 },
16213 removed => {
16214 }
16215 },
20f5d8f8
CBW
16216 5.021006 => {
16217 delta_from => 5.021005,
16218 changed => {
16219 },
16220 removed => {
16221 }
16222 },
3f572b05
CBW
16223 5.021007 => {
16224 delta_from => 5.021006,
16225 changed => {
16226 },
16227 removed => {
16228 }
16229 },
c379aaf4
MM
16230 5.021008 => {
16231 delta_from => 5.021007,
16232 changed => {
16233 },
16234 removed => {
16235 }
16236 },
8ad047ea
SH
16237 5.020002 => {
16238 delta_from => 5.020001,
16239 changed => {
16240 },
16241 removed => {
16242 }
16243 },
2e3866c3
MH
16244 5.021009 => {
16245 delta_from => 5.021008,
16246 changed => {
16247 },
16248 removed => {
16249 }
16250 },
ff4e8df2
S
16251 5.021010 => {
16252 delta_from => 5.021009,
16253 changed => {
16254 },
16255 removed => {
16256 }
16257 },
53902397
SH
16258 5.021011 => {
16259 delta_from => 5.02101,
16260 changed => {
16261 },
16262 removed => {
16263 }
16264 },
bff00388 16265 5.022000 => {
6bb5549b
SH
16266 delta_from => 5.021011,
16267 changed => {
16268 },
16269 removed => {
16270 }
16271 },
19aba073
RS
16272 5.023000 => {
16273 delta_from => 5.022000,
16274 changed => {
16275 },
16276 removed => {
16277 }
16278 },
b9e156a2
RS
16279 5.023001 => {
16280 delta_from => 5.023000,
16281 changed => {
16282 },
16283 removed => {
16284 }
16285 },
923c264e
MH
16286 5.023002 => {
16287 delta_from => 5.023001,
16288 changed => {
16289 },
16290 removed => {
16291 }
16292 },
2490a830
SH
16293 5.020003 => {
16294 delta_from => 5.020002,
16295 changed => {
16296 },
16297 removed => {
16298 }
16299 },
c0bc7731
MH
16300 5.023003 => {
16301 delta_from => 5.023002,
16302 changed => {
16303 },
16304 removed => {
16305 }
16306 },
2d9b5f10
PM
16307 5.023004 => {
16308 delta_from => 5.023003,
16309 changed => {
16310 },
16311 removed => {
16312 }
16313 },
7792a6f5
SH
16314 5.023005 => {
16315 delta_from => 5.023004,
16316 changed => {
83cfc1da
SH
16317 },
16318 removed => {
16319 }
16320 },
16321 5.022001 => {
16322 delta_from => 5.022,
16323 changed => {
7792a6f5
SH
16324 },
16325 removed => {
16326 }
16327 },
7c294235
A
16328 5.023006 => {
16329 delta_from => 5.023005,
16330 changed => {
16331 },
16332 removed => {
16333 }
16334 },
5d4cc497
DG
16335 5.023007 => {
16336 delta_from => 5.023006,
16337 changed => {
16338 },
16339 removed => {
16340 }
16341 },
b5fa05a4
S
16342 5.023008 => {
16343 delta_from => 5.023007,
16344 changed => {
16345 },
16346 removed => {
16347 }
16348 },
0515d31c
S
16349 5.023009 => {
16350 delta_from => 5.023008,
16351 changed => {
16352 },
16353 removed => {
16354 }
16355 },
e42cacf8
SH
16356 5.022002 => {
16357 delta_from => 5.022001,
16358 changed => {
16359 },
16360 removed => {
16361 }
16362 },
de1edec7 16363 5.024000 => {
d1fa969e
A
16364 delta_from => 5.023009,
16365 changed => {
16366 },
16367 removed => {
16368 }
16369 },
c800d8b3
RS
16370 5.025000 => {
16371 delta_from => 5.024,
16372 changed => {
16373 },
16374 removed => {
16375 }
16376 },
4170737e 16377 5.025001 => {
f7a1e8ff 16378 delta_from => 5.025,
4170737e
RS
16379 changed => {
16380 },
16381 removed => {
16382 }
16383 },
a55ca2cb
FC
16384 5.025002 => {
16385 delta_from => 5.025001,
16386 changed => {
16387 },
16388 removed => {
16389 }
16390 },
c338e234
MH
16391 5.025003 => {
16392 delta_from => 5.025002,
16393 changed => {
16394 },
16395 removed => {
16396 }
16397 },
dec2b171
SH
16398 5.025004 => {
16399 delta_from => 5.025003,
16400 changed => {
16401 },
16402 removed => {
16403 }
16404 },
9b3afcbd
CBW
16405 5.025005 => {
16406 delta_from => 5.025004,
16407 changed => {
16408 },
16409 removed => {
16410 }
16411 },
bc46539a
SL
16412 5.025006 => {
16413 delta_from => 5.025005,
16414 changed => {
16415 },
16416 removed => {
16417 }
16418 },
935d7564
AC
16419 5.025007 => {
16420 delta_from => 5.025006,
16421 changed => {
16422 },
16423 removed => {
16424 }
16425 },
79ca97c0
S
16426 5.025008 => {
16427 delta_from => 5.025007,
16428 changed => {
16429 },
16430 removed => {
16431 }
16432 },
d202f2b8
SH
16433 5.022003 => {
16434 delta_from => 5.022002,
16435 changed => {
16436 },
16437 removed => {
16438 }
16439 },
16440 5.024001 => {
16441 delta_from => 5.024000,
16442 changed => {
16443 },
16444 removed => {
16445 }
16446 },
d4151a23
S
16447 5.025009 => {
16448 delta_from => 5.025008,
16449 changed => {
16450 },
16451 removed => {
16452 }
16453 },
f5294d12
A
16454 5.025010 => {
16455 delta_from => 5.025009,
16456 changed => {
16457 },
16458 removed => {
16459 }
16460 },
b25fc2a6
DM
16461 5.025011 => {
16462 delta_from => 5.025010,
16463 changed => {
16464 },
16465 removed => {
16466 }
16467 },
1798a06e 16468 5.025012 => {
fbe3f407
S
16469 delta_from => 5.025011,
16470 changed => {
16471 },
16472 removed => {
16473 }
16474 },
60454717
S
16475 5.026000 => {
16476 delta_from => 5.025012,
16477 changed => {
16478 },
16479 removed => {
16480 }
16481 },
753bd946 16482 5.027000 => {
c8e60329 16483 delta_from => 5.026,
753bd946
S
16484 changed => {
16485 },
16486 removed => {
16487 }
16488 },
bb5b17cd
DM
16489 5.027001 => {
16490 delta_from => 5.027,
16491 changed => {
16492 },
16493 removed => {
16494 }
16495 },
e029cc95
SH
16496 5.022004 => {
16497 delta_from => 5.022003,
16498 changed => {
16499 },
16500 removed => {
16501 }
16502 },
da0817c4
SH
16503 5.024002 => {
16504 delta_from => 5.024001,
16505 changed => {
16506 },
16507 removed => {
16508 }
16509 },
0db26723
EH
16510 5.027002 => {
16511 delta_from => 5.027001,
16512 changed => {
16513 },
16514 removed => {
16515 }
16516 },
56c35cf6
AC
16517 5.027003 => {
16518 delta_from => 5.027002,
16519 changed => {
e94c2221 16520 'B::Debug' => '1',
56c35cf6
AC
16521 },
16522 removed => {
16523 }
16524 },
9f9332db
MH
16525 5.027004 => {
16526 delta_from => 5.027003,
16527 changed => {
16528 },
16529 removed => {
16530 }
16531 },
0ba9031a
SH
16532 5.024003 => {
16533 delta_from => 5.024002,
16534 changed => {
16535 },
16536 removed => {
16537 }
16538 },
16539 5.026001 => {
16540 delta_from => 5.026000,
16541 changed => {
16542 },
16543 removed => {
16544 }
16545 },
1967e407
JSA
16546 5.027005 => {
16547 delta_from => 5.027004,
16548 changed => {
16549 },
16550 removed => {
16551 }
16552 },
78425520
SH
16553 5.027006 => {
16554 delta_from => 5.027005,
16555 changed => {
16556 },
16557 removed => {
16558 }
16559 },
a67b31e3
KE
16560 5.027007 => {
16561 delta_from => 5.027006,
16562 changed => {
16563 },
16564 removed => {
16565 }
16566 },
946b6ed4
CBW
16567 5.027008 => {
16568 delta_from => 5.027007,
16569 changed => {
16570 },
16571 removed => {
16572 }
16573 },
3f4fae50
A
16574 5.027009 => {
16575 delta_from => 5.027008,
16576 changed => {
16577 },
16578 removed => {
16579 }
16580 },
4f01496f
S
16581 5.027010 => {
16582 delta_from => 5.027009,
16583 changed => {
16584 },
16585 removed => {
16586 }
16587 },
994c9c84
SH
16588 5.024004 => {
16589 delta_from => 5.024003,
16590 changed => {
16591 },
16592 removed => {
16593 }
16594 },
16595 5.026002 => {
16596 delta_from => 5.026001,
16597 changed => {
16598 },
16599 removed => {
16600 }
16601 },
26db1972 16602 5.027011 => {
488fe208 16603 delta_from => 5.02701,
26db1972
TR
16604 changed => {
16605 },
16606 removed => {
16607 }
16608 },
6087c658
S
16609 5.028000 => {
16610 delta_from => 5.027011,
16611 changed => {
16612 },
16613 removed => {
16614 }
16615 },
d361a1e6
S
16616 5.029000 => {
16617 delta_from => 5.028,
16618 changed => {
16619 },
16620 removed => {
16621 }
16622 },
6818110d
S
16623 5.029001 => {
16624 delta_from => 5.029,
16625 changed => {
16626 },
16627 removed => {
16628 }
16629 },
c0036c4e
SH
16630 5.029002 => {
16631 delta_from => 5.029001,
16632 changed => {
16633 },
16634 removed => {
16635 }
16636 },
a762e054
DG
16637);
16638
8bbcf42b 16639%deprecated = _undelta(\%deprecated);
5ff416ff 16640
29cab1c7 16641%upstream = (
65f8b4e7 16642 'App::Cpan' => 'cpan',
a4729c0f
DG
16643 'App::Prove' => 'cpan',
16644 'App::Prove::State' => 'cpan',
16645 'App::Prove::State::Result'=> 'cpan',
16646 'App::Prove::State::Result::Test'=> 'cpan',
29cab1c7
NC
16647 'Archive::Tar' => 'cpan',
16648 'Archive::Tar::Constant'=> 'cpan',
16649 'Archive::Tar::File' => 'cpan',
29cab1c7
NC
16650 'AutoLoader' => 'cpan',
16651 'AutoSplit' => 'cpan',
0530d763 16652 'B::Debug' => 'cpan',
24081a3a
JV
16653 'CPAN' => 'cpan',
16654 'CPAN::Author' => 'cpan',
16655 'CPAN::Bundle' => 'cpan',
16656 'CPAN::CacheMgr' => 'cpan',
16657 'CPAN::Complete' => 'cpan',
16658 'CPAN::Debug' => 'cpan',
16659 'CPAN::DeferredCode' => 'cpan',
16660 'CPAN::Distribution' => 'cpan',
16661 'CPAN::Distroprefs' => 'cpan',
16662 'CPAN::Distrostatus' => 'cpan',
16663 'CPAN::Exception::RecursiveDependency'=> 'cpan',
16664 'CPAN::Exception::blocked_urllist'=> 'cpan',
16665 'CPAN::Exception::yaml_not_installed'=> 'cpan',
2f183b41 16666 'CPAN::Exception::yaml_process_error'=> 'cpan',
24081a3a
JV
16667 'CPAN::FTP' => 'cpan',
16668 'CPAN::FTP::netrc' => 'cpan',
16669 'CPAN::FirstTime' => 'cpan',
e0698539
JV
16670 'CPAN::HTTP::Client' => 'cpan',
16671 'CPAN::HTTP::Credentials'=> 'cpan',
24081a3a
JV
16672 'CPAN::HandleConfig' => 'cpan',
16673 'CPAN::Index' => 'cpan',
16674 'CPAN::InfoObj' => 'cpan',
16675 'CPAN::Kwalify' => 'cpan',
16676 'CPAN::LWP::UserAgent' => 'cpan',
c552c5b5
AB
16677 'CPAN::Meta' => 'cpan',
16678 'CPAN::Meta::Converter' => 'cpan',
16679 'CPAN::Meta::Feature' => 'cpan',
16680 'CPAN::Meta::History' => 'cpan',
46e58890 16681 'CPAN::Meta::Merge' => 'cpan',
c552c5b5 16682 'CPAN::Meta::Prereqs' => 'cpan',
b240fc0f 16683 'CPAN::Meta::Requirements'=> 'cpan',
c552c5b5
AB
16684 'CPAN::Meta::Spec' => 'cpan',
16685 'CPAN::Meta::Validator' => 'cpan',
e0698539 16686 'CPAN::Meta::YAML' => 'cpan',
65f8b4e7 16687 'CPAN::Mirrors' => 'cpan',
24081a3a
JV
16688 'CPAN::Module' => 'cpan',
16689 'CPAN::Nox' => 'cpan',
77dc754d
SH
16690 'CPAN::Plugin' => 'cpan',
16691 'CPAN::Plugin::Specfile'=> 'cpan',
24081a3a
JV
16692 'CPAN::Prompt' => 'cpan',
16693 'CPAN::Queue' => 'cpan',
16694 'CPAN::Shell' => 'cpan',
16695 'CPAN::Tarzip' => 'cpan',
16696 'CPAN::URL' => 'cpan',
16697 'CPAN::Version' => 'cpan',
7529c15c
FR
16698 'Compress::Raw::Bzip2' => 'cpan',
16699 'Compress::Raw::Zlib' => 'cpan',
979b9961 16700 'Compress::Zlib' => 'cpan',
52f6865c 16701 'Config::Perl::V' => 'cpan',
f50587e0 16702 'DB_File' => 'cpan',
0530d763
SH
16703 'Digest' => 'cpan',
16704 'Digest::MD5' => 'cpan',
a4729c0f 16705 'Digest::SHA' => 'cpan',
0530d763
SH
16706 'Digest::base' => 'cpan',
16707 'Digest::file' => 'cpan',
67dbc274
Z
16708 'Encode' => 'cpan',
16709 'Encode::Alias' => 'cpan',
16710 'Encode::Byte' => 'cpan',
16711 'Encode::CJKConstants' => 'cpan',
16712 'Encode::CN' => 'cpan',
16713 'Encode::CN::HZ' => 'cpan',
16714 'Encode::Config' => 'cpan',
16715 'Encode::EBCDIC' => 'cpan',
16716 'Encode::Encoder' => 'cpan',
16717 'Encode::Encoding' => 'cpan',
16718 'Encode::GSM0338' => 'cpan',
16719 'Encode::Guess' => 'cpan',
16720 'Encode::JP' => 'cpan',
16721 'Encode::JP::H2Z' => 'cpan',
16722 'Encode::JP::JIS7' => 'cpan',
16723 'Encode::KR' => 'cpan',
16724 'Encode::KR::2022_KR' => 'cpan',
16725 'Encode::MIME::Header' => 'cpan',
16726 'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
16727 'Encode::MIME::Name' => 'cpan',
16728 'Encode::Symbol' => 'cpan',
16729 'Encode::TW' => 'cpan',
16730 'Encode::Unicode' => 'cpan',
16731 'Encode::Unicode::UTF7' => 'cpan',
46e58890 16732 'ExtUtils::Command' => 'cpan',
62de23d1 16733 'ExtUtils::Command::MM' => 'cpan',
19c1ec11
SH
16734 'ExtUtils::Constant' => 'cpan',
16735 'ExtUtils::Constant::Base'=> 'cpan',
16736 'ExtUtils::Constant::ProxySubs'=> 'cpan',
16737 'ExtUtils::Constant::Utils'=> 'cpan',
16738 'ExtUtils::Constant::XS'=> 'cpan',
46e58890
PM
16739 'ExtUtils::Install' => 'cpan',
16740 'ExtUtils::Installed' => 'cpan',
62de23d1
SH
16741 'ExtUtils::Liblist' => 'cpan',
16742 'ExtUtils::Liblist::Kid'=> 'cpan',
16743 'ExtUtils::MM' => 'cpan',
16744 'ExtUtils::MM_AIX' => 'cpan',
16745 'ExtUtils::MM_Any' => 'cpan',
16746 'ExtUtils::MM_BeOS' => 'cpan',
16747 'ExtUtils::MM_Cygwin' => 'cpan',
16748 'ExtUtils::MM_DOS' => 'cpan',
16749 'ExtUtils::MM_Darwin' => 'cpan',
16750 'ExtUtils::MM_MacOS' => 'cpan',
16751 'ExtUtils::MM_NW5' => 'cpan',
16752 'ExtUtils::MM_OS2' => 'cpan',
16753 'ExtUtils::MM_QNX' => 'cpan',
16754 'ExtUtils::MM_UWIN' => 'cpan',
16755 'ExtUtils::MM_Unix' => 'cpan',
16756 'ExtUtils::MM_VMS' => 'cpan',
16757 'ExtUtils::MM_VOS' => 'cpan',
16758 'ExtUtils::MM_Win32' => 'cpan',
16759 'ExtUtils::MM_Win95' => 'cpan',
16760 'ExtUtils::MY' => 'cpan',
16761 'ExtUtils::MakeMaker' => 'cpan',
16762 'ExtUtils::MakeMaker::Config'=> 'cpan',
20f5d8f8
CBW
16763 'ExtUtils::MakeMaker::Locale'=> 'cpan',
16764 'ExtUtils::MakeMaker::version'=> 'cpan',
16765 'ExtUtils::MakeMaker::version::regex'=> 'cpan',
46e58890 16766 'ExtUtils::Manifest' => 'cpan',
62de23d1
SH
16767 'ExtUtils::Mkbootstrap' => 'cpan',
16768 'ExtUtils::Mksymlists' => 'cpan',
46e58890 16769 'ExtUtils::Packlist' => 'cpan',
62de23d1 16770 'ExtUtils::testlib' => 'cpan',
29cab1c7
NC
16771 'Fatal' => 'cpan',
16772 'File::Fetch' => 'cpan',
979b9961 16773 'File::GlobMapper' => 'cpan',
19c1ec11 16774 'File::Path' => 'cpan',
68a91acb 16775 'File::Temp' => 'cpan',
f50587e0 16776 'Filter::Util::Call' => 'cpan',
29cab1c7 16777 'Getopt::Long' => 'cpan',
e0698539 16778 'HTTP::Tiny' => 'cpan',
979b9961
JV
16779 'IO::Compress::Adapter::Bzip2'=> 'cpan',
16780 'IO::Compress::Adapter::Deflate'=> 'cpan',
16781 'IO::Compress::Adapter::Identity'=> 'cpan',
16782 'IO::Compress::Base' => 'cpan',
16783 'IO::Compress::Base::Common'=> 'cpan',
16784 'IO::Compress::Bzip2' => 'cpan',
16785 'IO::Compress::Deflate' => 'cpan',
16786 'IO::Compress::Gzip' => 'cpan',
16787 'IO::Compress::Gzip::Constants'=> 'cpan',
16788 'IO::Compress::RawDeflate'=> 'cpan',
16789 'IO::Compress::Zip' => 'cpan',
16790 'IO::Compress::Zip::Constants'=> 'cpan',
16791 'IO::Compress::Zlib::Constants'=> 'cpan',
16792 'IO::Compress::Zlib::Extra'=> 'cpan',
5a39b45b 16793 'IO::Socket::IP' => 'cpan',
979b9961
JV
16794 'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
16795 'IO::Uncompress::Adapter::Identity'=> 'cpan',
16796 'IO::Uncompress::Adapter::Inflate'=> 'cpan',
16797 'IO::Uncompress::AnyInflate'=> 'cpan',
16798 'IO::Uncompress::AnyUncompress'=> 'cpan',
16799 'IO::Uncompress::Base' => 'cpan',
16800 'IO::Uncompress::Bunzip2'=> 'cpan',
16801 'IO::Uncompress::Gunzip'=> 'cpan',
16802 'IO::Uncompress::Inflate'=> 'cpan',
16803 'IO::Uncompress::RawInflate'=> 'cpan',
16804 'IO::Uncompress::Unzip' => 'cpan',
19c1ec11 16805 'IO::Zlib' => 'cpan',
29cab1c7
NC
16806 'IPC::Cmd' => 'cpan',
16807 'IPC::Msg' => 'cpan',
16808 'IPC::Semaphore' => 'cpan',
16809 'IPC::SharedMem' => 'cpan',
16810 'IPC::SysV' => 'cpan',
e0698539
JV
16811 'JSON::PP' => 'cpan',
16812 'JSON::PP::Boolean' => 'cpan',
45492fbf 16813 'List::Util' => 'cpan',
45492fbf 16814 'List::Util::XS' => 'cpan',
2db8ee47 16815 'Locale::Codes' => 'cpan',
48b66e80 16816 'Locale::Codes::Constants'=> 'cpan',
2db8ee47 16817 'Locale::Codes::Country'=> 'cpan',
48b66e80 16818 'Locale::Codes::Country_Codes'=> 'cpan',
9cdfa110 16819 'Locale::Codes::Country_Retired'=> 'cpan',
2db8ee47 16820 'Locale::Codes::Currency'=> 'cpan',
48b66e80 16821 'Locale::Codes::Currency_Codes'=> 'cpan',
9cdfa110 16822 'Locale::Codes::Currency_Retired'=> 'cpan',
48b66e80
Z
16823 'Locale::Codes::LangExt'=> 'cpan',
16824 'Locale::Codes::LangExt_Codes'=> 'cpan',
9cdfa110
DR
16825 'Locale::Codes::LangExt_Retired'=> 'cpan',
16826 'Locale::Codes::LangFam'=> 'cpan',
16827 'Locale::Codes::LangFam_Codes'=> 'cpan',
16828 'Locale::Codes::LangFam_Retired'=> 'cpan',
48b66e80
Z
16829 'Locale::Codes::LangVar'=> 'cpan',
16830 'Locale::Codes::LangVar_Codes'=> 'cpan',
9cdfa110 16831 'Locale::Codes::LangVar_Retired'=> 'cpan',
2db8ee47 16832 'Locale::Codes::Language'=> 'cpan',
48b66e80 16833 'Locale::Codes::Language_Codes'=> 'cpan',
9cdfa110 16834 'Locale::Codes::Language_Retired'=> 'cpan',
2db8ee47 16835 'Locale::Codes::Script' => 'cpan',
48b66e80 16836 'Locale::Codes::Script_Codes'=> 'cpan',
9cdfa110 16837 'Locale::Codes::Script_Retired'=> 'cpan',
2db8ee47
RS
16838 'Locale::Country' => 'cpan',
16839 'Locale::Currency' => 'cpan',
16840 'Locale::Language' => 'cpan',
a6abef0d 16841 'Locale::Maketext::Simple'=> 'cpan',
2db8ee47 16842 'Locale::Script' => 'cpan',
3ec75686
LB
16843 'MIME::Base64' => 'cpan',
16844 'MIME::QuotedPrint' => 'cpan',
52513e61 16845 'Math::BigFloat' => 'cpan',
210f4ae1 16846 'Math::BigFloat::Trace' => 'cpan',
52513e61
PM
16847 'Math::BigInt' => 'cpan',
16848 'Math::BigInt::Calc' => 'cpan',
16849 'Math::BigInt::CalcEmu' => 'cpan',
16850 'Math::BigInt::FastCalc'=> 'cpan',
79ca97c0 16851 'Math::BigInt::Lib' => 'cpan',
210f4ae1 16852 'Math::BigInt::Trace' => 'cpan',
52513e61 16853 'Math::BigRat' => 'cpan',
29cab1c7
NC
16854 'Math::Complex' => 'cpan',
16855 'Math::Trig' => 'cpan',
7de25fd5
TM
16856 'Memoize' => 'cpan',
16857 'Memoize::AnyDBM_File' => 'cpan',
16858 'Memoize::Expire' => 'cpan',
16859 'Memoize::ExpireFile' => 'cpan',
16860 'Memoize::ExpireTest' => 'cpan',
16861 'Memoize::NDBM_File' => 'cpan',
16862 'Memoize::SDBM_File' => 'cpan',
16863 'Memoize::Storable' => 'cpan',
29cab1c7
NC
16864 'Module::Load' => 'cpan',
16865 'Module::Load::Conditional'=> 'cpan',
16866 'Module::Loaded' => 'cpan',
e0698539 16867 'Module::Metadata' => 'cpan',
29cab1c7 16868 'NEXT' => 'cpan',
91c842ce
SH
16869 'Net::Cmd' => 'cpan',
16870 'Net::Config' => 'cpan',
16871 'Net::Domain' => 'cpan',
16872 'Net::FTP' => 'cpan',
16873 'Net::FTP::A' => 'cpan',
16874 'Net::FTP::E' => 'cpan',
16875 'Net::FTP::I' => 'cpan',
16876 'Net::FTP::L' => 'cpan',
16877 'Net::FTP::dataconn' => 'cpan',
16878 'Net::NNTP' => 'cpan',
16879 'Net::Netrc' => 'cpan',
16880 'Net::POP3' => 'cpan',
91c842ce
SH
16881 'Net::SMTP' => 'cpan',
16882 'Net::Time' => 'cpan',
29cab1c7
NC
16883 'Params::Check' => 'cpan',
16884 'Parse::CPAN::Meta' => 'cpan',
e0698539 16885 'Perl::OSType' => 'cpan',
19c1ec11 16886 'PerlIO::via::QuotedPrint'=> 'cpan',
f50587e0 16887 'Pod::Checker' => 'cpan',
19c1ec11 16888 'Pod::Escapes' => 'cpan',
f50587e0
MM
16889 'Pod::Find' => 'cpan',
16890 'Pod::InputObjects' => 'cpan',
29cab1c7
NC
16891 'Pod::Man' => 'cpan',
16892 'Pod::ParseLink' => 'cpan',
f50587e0
MM
16893 'Pod::ParseUtils' => 'cpan',
16894 'Pod::Parser' => 'cpan',
16895 'Pod::Perldoc' => 'cpan',
16896 'Pod::Perldoc::BaseTo' => 'cpan',
16897 'Pod::Perldoc::GetOptsOO'=> 'cpan',
16898 'Pod::Perldoc::ToANSI' => 'cpan',
16899 'Pod::Perldoc::ToChecker'=> 'cpan',
16900 'Pod::Perldoc::ToMan' => 'cpan',
16901 'Pod::Perldoc::ToNroff' => 'cpan',
16902 'Pod::Perldoc::ToPod' => 'cpan',
16903 'Pod::Perldoc::ToRtf' => 'cpan',
16904 'Pod::Perldoc::ToTerm' => 'cpan',
16905 'Pod::Perldoc::ToText' => 'cpan',
16906 'Pod::Perldoc::ToTk' => 'cpan',
16907 'Pod::Perldoc::ToXml' => 'cpan',
16908 'Pod::PlainText' => 'cpan',
16909 'Pod::Select' => 'cpan',
979b9961
JV
16910 'Pod::Simple' => 'cpan',
16911 'Pod::Simple::BlackBox' => 'cpan',
16912 'Pod::Simple::Checker' => 'cpan',
16913 'Pod::Simple::Debug' => 'cpan',
16914 'Pod::Simple::DumpAsText'=> 'cpan',
16915 'Pod::Simple::DumpAsXML'=> 'cpan',
16916 'Pod::Simple::HTML' => 'cpan',
16917 'Pod::Simple::HTMLBatch'=> 'cpan',
16918 'Pod::Simple::HTMLLegacy'=> 'cpan',
16919 'Pod::Simple::LinkSection'=> 'cpan',
16920 'Pod::Simple::Methody' => 'cpan',
16921 'Pod::Simple::Progress' => 'cpan',
16922 'Pod::Simple::PullParser'=> 'cpan',
16923 'Pod::Simple::PullParserEndToken'=> 'cpan',
16924 'Pod::Simple::PullParserStartToken'=> 'cpan',
16925 'Pod::Simple::PullParserTextToken'=> 'cpan',
16926 'Pod::Simple::PullParserToken'=> 'cpan',
16927 'Pod::Simple::RTF' => 'cpan',
16928 'Pod::Simple::Search' => 'cpan',
16929 'Pod::Simple::SimpleTree'=> 'cpan',
16930 'Pod::Simple::Text' => 'cpan',
16931 'Pod::Simple::TextContent'=> 'cpan',
16932 'Pod::Simple::TiedOutFH'=> 'cpan',
16933 'Pod::Simple::Transcode'=> 'cpan',
16934 'Pod::Simple::TranscodeDumb'=> 'cpan',
16935 'Pod::Simple::TranscodeSmart'=> 'cpan',
16936 'Pod::Simple::XHTML' => 'cpan',
16937 'Pod::Simple::XMLOutStream'=> 'cpan',
29cab1c7
NC
16938 'Pod::Text' => 'cpan',
16939 'Pod::Text::Color' => 'cpan',
16940 'Pod::Text::Overstrike' => 'cpan',
16941 'Pod::Text::Termcap' => 'cpan',
f50587e0 16942 'Pod::Usage' => 'cpan',
45492fbf 16943 'Scalar::Util' => 'cpan',
9cdfa110 16944 'Socket' => 'cpan',
50e7b15e 16945 'Sub::Util' => 'cpan',
a47a8f3c 16946 'Sys::Syslog' => 'cpan',
48b66e80 16947 'Sys::Syslog::Win32' => 'cpan',
a4729c0f
DG
16948 'TAP::Base' => 'cpan',
16949 'TAP::Formatter::Base' => 'cpan',
16950 'TAP::Formatter::Color' => 'cpan',
16951 'TAP::Formatter::Console'=> 'cpan',
16952 'TAP::Formatter::Console::ParallelSession'=> 'cpan',
16953 'TAP::Formatter::Console::Session'=> 'cpan',
16954 'TAP::Formatter::File' => 'cpan',
16955 'TAP::Formatter::File::Session'=> 'cpan',
16956 'TAP::Formatter::Session'=> 'cpan',
16957 'TAP::Harness' => 'cpan',
19c1ec11 16958 'TAP::Harness::Env' => 'cpan',
a4729c0f
DG
16959 'TAP::Object' => 'cpan',
16960 'TAP::Parser' => 'cpan',
16961 'TAP::Parser::Aggregator'=> 'cpan',
16962 'TAP::Parser::Grammar' => 'cpan',
16963 'TAP::Parser::Iterator' => 'cpan',
16964 'TAP::Parser::Iterator::Array'=> 'cpan',
16965 'TAP::Parser::Iterator::Process'=> 'cpan',
16966 'TAP::Parser::Iterator::Stream'=> 'cpan',
16967 'TAP::Parser::IteratorFactory'=> 'cpan',
16968 'TAP::Parser::Multiplexer'=> 'cpan',
16969 'TAP::Parser::Result' => 'cpan',
16970 'TAP::Parser::Result::Bailout'=> 'cpan',
16971 'TAP::Parser::Result::Comment'=> 'cpan',
16972 'TAP::Parser::Result::Plan'=> 'cpan',
16973 'TAP::Parser::Result::Pragma'=> 'cpan',
16974 'TAP::Parser::Result::Test'=> 'cpan',
16975 'TAP::Parser::Result::Unknown'=> 'cpan',
16976 'TAP::Parser::Result::Version'=> 'cpan',
16977 'TAP::Parser::Result::YAML'=> 'cpan',
16978 'TAP::Parser::ResultFactory'=> 'cpan',
16979 'TAP::Parser::Scheduler'=> 'cpan',
16980 'TAP::Parser::Scheduler::Job'=> 'cpan',
16981 'TAP::Parser::Scheduler::Spinner'=> 'cpan',
16982 'TAP::Parser::Source' => 'cpan',
16983 'TAP::Parser::SourceHandler'=> 'cpan',
16984 'TAP::Parser::SourceHandler::Executable'=> 'cpan',
16985 'TAP::Parser::SourceHandler::File'=> 'cpan',
16986 'TAP::Parser::SourceHandler::Handle'=> 'cpan',
16987 'TAP::Parser::SourceHandler::Perl'=> 'cpan',
16988 'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
a4729c0f
DG
16989 'TAP::Parser::YAMLish::Reader'=> 'cpan',
16990 'TAP::Parser::YAMLish::Writer'=> 'cpan',
29cab1c7 16991 'Term::ANSIColor' => 'cpan',
19c1ec11 16992 'Term::Cap' => 'cpan',
f7a1e8ff
S
16993 'Test2' => 'cpan',
16994 'Test2::API' => 'cpan',
16995 'Test2::API::Breakage' => 'cpan',
16996 'Test2::API::Context' => 'cpan',
16997 'Test2::API::Instance' => 'cpan',
16998 'Test2::API::Stack' => 'cpan',
16999 'Test2::Event' => 'cpan',
17000 'Test2::Event::Bail' => 'cpan',
17001 'Test2::Event::Diag' => 'cpan',
79ca97c0 17002 'Test2::Event::Encoding'=> 'cpan',
f7a1e8ff 17003 'Test2::Event::Exception'=> 'cpan',
0b2e8509 17004 'Test2::Event::Fail' => 'cpan',
7984aa21 17005 'Test2::Event::Generic' => 'cpan',
f7a1e8ff
S
17006 'Test2::Event::Note' => 'cpan',
17007 'Test2::Event::Ok' => 'cpan',
0b2e8509 17008 'Test2::Event::Pass' => 'cpan',
f7a1e8ff
S
17009 'Test2::Event::Plan' => 'cpan',
17010 'Test2::Event::Skip' => 'cpan',
17011 'Test2::Event::Subtest' => 'cpan',
79ca97c0 17012 'Test2::Event::TAP::Version'=> 'cpan',
27ee818c 17013 'Test2::Event::V2' => 'cpan',
f7a1e8ff 17014 'Test2::Event::Waiting' => 'cpan',
0b2e8509
SH
17015 'Test2::EventFacet' => 'cpan',
17016 'Test2::EventFacet::About'=> 'cpan',
17017 'Test2::EventFacet::Amnesty'=> 'cpan',
17018 'Test2::EventFacet::Assert'=> 'cpan',
17019 'Test2::EventFacet::Control'=> 'cpan',
17020 'Test2::EventFacet::Error'=> 'cpan',
27ee818c 17021 'Test2::EventFacet::Hub'=> 'cpan',
0b2e8509
SH
17022 'Test2::EventFacet::Info'=> 'cpan',
17023 'Test2::EventFacet::Meta'=> 'cpan',
17024 'Test2::EventFacet::Parent'=> 'cpan',
17025 'Test2::EventFacet::Plan'=> 'cpan',
9862549e 17026 'Test2::EventFacet::Render'=> 'cpan',
0b2e8509 17027 'Test2::EventFacet::Trace'=> 'cpan',
f7a1e8ff
S
17028 'Test2::Formatter' => 'cpan',
17029 'Test2::Formatter::TAP' => 'cpan',
17030 'Test2::Hub' => 'cpan',
17031 'Test2::Hub::Interceptor'=> 'cpan',
17032 'Test2::Hub::Interceptor::Terminator'=> 'cpan',
17033 'Test2::Hub::Subtest' => 'cpan',
17034 'Test2::IPC' => 'cpan',
17035 'Test2::IPC::Driver' => 'cpan',
17036 'Test2::IPC::Driver::Files'=> 'cpan',
79ca97c0 17037 'Test2::Tools::Tiny' => 'cpan',
f7a1e8ff
S
17038 'Test2::Util' => 'cpan',
17039 'Test2::Util::ExternalMeta'=> 'cpan',
0b2e8509 17040 'Test2::Util::Facets2Legacy'=> 'cpan',
f7a1e8ff
S
17041 'Test2::Util::HashBase' => 'cpan',
17042 'Test2::Util::Trace' => 'cpan',
979b9961 17043 'Test::Builder' => 'cpan',
f7a1e8ff 17044 'Test::Builder::Formatter'=> 'cpan',
77dc754d 17045 'Test::Builder::IO::Scalar'=> 'cpan',
979b9961
JV
17046 'Test::Builder::Module' => 'cpan',
17047 'Test::Builder::Tester' => 'cpan',
17048 'Test::Builder::Tester::Color'=> 'cpan',
f7a1e8ff 17049 'Test::Builder::TodoDiag'=> 'cpan',
a4729c0f 17050 'Test::Harness' => 'cpan',
979b9961
JV
17051 'Test::More' => 'cpan',
17052 'Test::Simple' => 'cpan',
20f5d8f8
CBW
17053 'Test::Tester' => 'cpan',
17054 'Test::Tester::Capture' => 'cpan',
50ab518c
MH
17055 'Test::Tester::CaptureRunner'=> 'cpan',
17056 'Test::Tester::Delegate'=> 'cpan',
20f5d8f8 17057 'Test::use::ok' => 'cpan',
e46b3c7d 17058 'Text::Balanced' => 'cpan',
19c1ec11 17059 'Text::ParseWords' => 'cpan',
29cab1c7
NC
17060 'Text::Tabs' => 'cpan',
17061 'Text::Wrap' => 'cpan',
29cab1c7 17062 'Tie::RefHash' => 'cpan',
e0698539 17063 'Time::Local' => 'cpan',
19c1ec11
SH
17064 'Time::Piece' => 'cpan',
17065 'Time::Seconds' => 'cpan',
62de23d1
SH
17066 'Unicode::Collate' => 'cpan',
17067 'Unicode::Collate::CJK::Big5'=> 'cpan',
17068 'Unicode::Collate::CJK::GB2312'=> 'cpan',
17069 'Unicode::Collate::CJK::JISX0208'=> 'cpan',
17070 'Unicode::Collate::CJK::Korean'=> 'cpan',
17071 'Unicode::Collate::CJK::Pinyin'=> 'cpan',
17072 'Unicode::Collate::CJK::Stroke'=> 'cpan',
17073 'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
17074 'Unicode::Collate::Locale'=> 'cpan',
a6abef0d 17075 'Win32' => 'cpan',
979b9961 17076 'Win32API::File' => 'cpan',
489c35bb 17077 'Win32API::File::inc::ExtUtils::Myconst2perl'=> 'cpan',
29cab1c7 17078 'autodie' => 'cpan',
04c0d500
MH
17079 'autodie::Scope::Guard' => 'cpan',
17080 'autodie::Scope::GuardStack'=> 'cpan',
bffade09 17081 'autodie::Util' => 'cpan',
29cab1c7
NC
17082 'autodie::exception' => 'cpan',
17083 'autodie::exception::system'=> 'cpan',
781ea95a 17084 'autodie::hints' => 'cpan',
2f4a2205 17085 'autodie::skip' => 'cpan',
210f4ae1
SH
17086 'bigint' => 'cpan',
17087 'bignum' => 'cpan',
17088 'bigrat' => 'cpan',
67dbc274 17089 'encoding' => 'cpan',
70152776 17090 'experimental' => 'cpan',
20f5d8f8 17091 'ok' => 'cpan',
19c1ec11 17092 'parent' => 'cpan',
e46b3c7d 17093 'perlfaq' => 'cpan',
a27b5f52
CBW
17094 'version' => 'cpan',
17095 'version::regex' => 'cpan',
29cab1c7
NC
17096);
17097
17098%bug_tracker = (
65f8b4e7 17099 'App::Cpan' => undef,
29cab1c7
NC
17100 'App::Prove' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17101 'App::Prove::State' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17102 'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17103 'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
29cab1c7
NC
17104 'Archive::Tar' => undef,
17105 'Archive::Tar::Constant'=> undef,
17106 'Archive::Tar::File' => undef,
29cab1c7 17107 'B::Debug' => undef,
29cab1c7
NC
17108 'CPAN' => undef,
17109 'CPAN::Author' => undef,
17110 'CPAN::Bundle' => undef,
17111 'CPAN::CacheMgr' => undef,
17112 'CPAN::Complete' => undef,
17113 'CPAN::Debug' => undef,
17114 'CPAN::DeferredCode' => undef,
17115 'CPAN::Distribution' => undef,
17116 'CPAN::Distroprefs' => undef,
17117 'CPAN::Distrostatus' => undef,
17118 'CPAN::Exception::RecursiveDependency'=> undef,
17119 'CPAN::Exception::blocked_urllist'=> undef,
17120 'CPAN::Exception::yaml_not_installed'=> undef,
2f183b41 17121 'CPAN::Exception::yaml_process_error'=> undef,
29cab1c7
NC
17122 'CPAN::FTP' => undef,
17123 'CPAN::FTP::netrc' => undef,
17124 'CPAN::FirstTime' => undef,
e0698539
JV
17125 'CPAN::HTTP::Client' => undef,
17126 'CPAN::HTTP::Credentials'=> undef,
29cab1c7
NC
17127 'CPAN::HandleConfig' => undef,
17128 'CPAN::Index' => undef,
17129 'CPAN::InfoObj' => undef,
17130 'CPAN::Kwalify' => undef,
17131 'CPAN::LWP::UserAgent' => undef,
62de23d1
SH
17132 'CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
17133 'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
17134 'CPAN::Meta::Feature' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
17135 'CPAN::Meta::History' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
46e58890 17136 'CPAN::Meta::Merge' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
62de23d1 17137 'CPAN::Meta::Prereqs' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
b733cacc 17138 'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
62de23d1
SH
17139 'CPAN::Meta::Spec' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
17140 'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
77dc754d 17141 'CPAN::Meta::YAML' => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
65f8b4e7 17142 'CPAN::Mirrors' => undef,
29cab1c7
NC
17143 'CPAN::Module' => undef,
17144 'CPAN::Nox' => undef,
77dc754d
SH
17145 'CPAN::Plugin' => undef,
17146 'CPAN::Plugin::Specfile'=> undef,
29cab1c7
NC
17147 'CPAN::Prompt' => undef,
17148 'CPAN::Queue' => undef,
17149 'CPAN::Shell' => undef,
17150 'CPAN::Tarzip' => undef,
17151 'CPAN::URL' => undef,
17152 'CPAN::Version' => undef,
29cab1c7
NC
17153 'Compress::Raw::Bzip2' => undef,
17154 'Compress::Raw::Zlib' => undef,
979b9961 17155 'Compress::Zlib' => undef,
52f6865c 17156 'Config::Perl::V' => undef,
29cab1c7 17157 'DB_File' => undef,
29cab1c7
NC
17158 'Digest' => undef,
17159 'Digest::MD5' => undef,
17160 'Digest::SHA' => undef,
17161 'Digest::base' => undef,
17162 'Digest::file' => undef,
17163 'Encode' => undef,
17164 'Encode::Alias' => undef,
17165 'Encode::Byte' => undef,
17166 'Encode::CJKConstants' => undef,
17167 'Encode::CN' => undef,
17168 'Encode::CN::HZ' => undef,
17169 'Encode::Config' => undef,
17170 'Encode::EBCDIC' => undef,
17171 'Encode::Encoder' => undef,
17172 'Encode::Encoding' => undef,
17173 'Encode::GSM0338' => undef,
17174 'Encode::Guess' => undef,
17175 'Encode::JP' => undef,
17176 'Encode::JP::H2Z' => undef,
17177 'Encode::JP::JIS7' => undef,
17178 'Encode::KR' => undef,
17179 'Encode::KR::2022_KR' => undef,
17180 'Encode::MIME::Header' => undef,
17181 'Encode::MIME::Header::ISO_2022_JP'=> undef,
17182 'Encode::MIME::Name' => undef,
17183 'Encode::Symbol' => undef,
17184 'Encode::TW' => undef,
17185 'Encode::Unicode' => undef,
17186 'Encode::Unicode::UTF7' => undef,
52513e61 17187 'ExtUtils::Command' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
62de23d1 17188 'ExtUtils::Command::MM' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
29cab1c7
NC
17189 'ExtUtils::Constant' => undef,
17190 'ExtUtils::Constant::Base'=> undef,
17191 'ExtUtils::Constant::ProxySubs'=> undef,
17192 'ExtUtils::Constant::Utils'=> undef,
17193 'ExtUtils::Constant::XS'=> undef,
50e7b15e
SH
17194 'ExtUtils::Install' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
17195 'ExtUtils::Installed' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
62de23d1
SH
17196 'ExtUtils::Liblist' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17197 'ExtUtils::Liblist::Kid'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17198 'ExtUtils::MM' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17199 'ExtUtils::MM_AIX' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17200 'ExtUtils::MM_Any' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17201 'ExtUtils::MM_BeOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17202 'ExtUtils::MM_Cygwin' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17203 'ExtUtils::MM_DOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17204 'ExtUtils::MM_Darwin' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17205 'ExtUtils::MM_MacOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17206 'ExtUtils::MM_NW5' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17207 'ExtUtils::MM_OS2' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17208 'ExtUtils::MM_QNX' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17209 'ExtUtils::MM_UWIN' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17210 'ExtUtils::MM_Unix' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17211 'ExtUtils::MM_VMS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17212 'ExtUtils::MM_VOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17213 'ExtUtils::MM_Win32' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17214 'ExtUtils::MM_Win95' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17215 'ExtUtils::MY' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17216 'ExtUtils::MakeMaker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17217 'ExtUtils::MakeMaker::Config'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
20f5d8f8
CBW
17218 'ExtUtils::MakeMaker::Locale'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17219 'ExtUtils::MakeMaker::version'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17220 'ExtUtils::MakeMaker::version::regex'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
50e7b15e 17221 'ExtUtils::Manifest' => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
62de23d1
SH
17222 'ExtUtils::Mkbootstrap' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
17223 'ExtUtils::Mksymlists' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
50e7b15e 17224 'ExtUtils::Packlist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
62de23d1 17225 'ExtUtils::testlib' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
29cab1c7
NC
17226 'Fatal' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
17227 'File::Fetch' => undef,
979b9961 17228 'File::GlobMapper' => undef,
29cab1c7 17229 'File::Path' => undef,
84208e00 17230 'File::Temp' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
29cab1c7
NC
17231 'Filter::Util::Call' => undef,
17232 'Getopt::Long' => undef,
fd3b4111 17233 'HTTP::Tiny' => 'https://github.com/chansen/p5-http-tiny/issues',
979b9961
JV
17234 'IO::Compress::Adapter::Bzip2'=> undef,
17235 'IO::Compress::Adapter::Deflate'=> undef,
17236 'IO::Compress::Adapter::Identity'=> undef,
17237 'IO::Compress::Base' => undef,
17238 'IO::Compress::Base::Common'=> undef,
17239 'IO::Compress::Bzip2' => undef,
17240 'IO::Compress::Deflate' => undef,
17241 'IO::Compress::Gzip' => undef,
17242 'IO::Compress::Gzip::Constants'=> undef,
17243 'IO::Compress::RawDeflate'=> undef,
17244 'IO::Compress::Zip' => undef,
17245 'IO::Compress::Zip::Constants'=> undef,
17246 'IO::Compress::Zlib::Constants'=> undef,
17247 'IO::Compress::Zlib::Extra'=> undef,
5a39b45b 17248 'IO::Socket::IP' => undef,
979b9961
JV
17249 'IO::Uncompress::Adapter::Bunzip2'=> undef,
17250 'IO::Uncompress::Adapter::Identity'=> undef,
17251 'IO::Uncompress::Adapter::Inflate'=> undef,
17252 'IO::Uncompress::AnyInflate'=> undef,
17253 'IO::Uncompress::AnyUncompress'=> undef,
17254 'IO::Uncompress::Base' => undef,
17255 'IO::Uncompress::Bunzip2'=> undef,
17256 'IO::Uncompress::Gunzip'=> undef,
17257 'IO::Uncompress::Inflate'=> undef,
17258 'IO::Uncompress::RawInflate'=> undef,
17259 'IO::Uncompress::Unzip' => undef,
29cab1c7
NC
17260 'IO::Zlib' => undef,
17261 'IPC::Cmd' => undef,
17262 'IPC::Msg' => undef,
17263 'IPC::Semaphore' => undef,
17264 'IPC::SharedMem' => undef,
17265 'IPC::SysV' => undef,
e0698539
JV
17266 'JSON::PP' => undef,
17267 'JSON::PP::Boolean' => undef,
b5fa05a4
S
17268 'List::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
17269 'List::Util::XS' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
2db8ee47 17270 'Locale::Codes' => undef,
48b66e80 17271 'Locale::Codes::Constants'=> undef,
2db8ee47 17272 'Locale::Codes::Country'=> undef,
48b66e80 17273 'Locale::Codes::Country_Codes'=> undef,
9cdfa110 17274 'Locale::Codes::Country_Retired'=> undef,
2db8ee47 17275 'Locale::Codes::Currency'=> undef,
48b66e80 17276 'Locale::Codes::Currency_Codes'=> undef,
9cdfa110 17277 'Locale::Codes::Currency_Retired'=> undef,
48b66e80
Z
17278 'Locale::Codes::LangExt'=> undef,
17279 'Locale::Codes::LangExt_Codes'=> undef,
9cdfa110
DR
17280 'Locale::Codes::LangExt_Retired'=> undef,
17281 'Locale::Codes::LangFam'=> undef,
17282 'Locale::Codes::LangFam_Codes'=> undef,
17283 'Locale::Codes::LangFam_Retired'=> undef,
48b66e80
Z
17284 'Locale::Codes::LangVar'=> undef,
17285 'Locale::Codes::LangVar_Codes'=> undef,
9cdfa110 17286 'Locale::Codes::LangVar_Retired'=> undef,
2db8ee47 17287 'Locale::Codes::Language'=> undef,
48b66e80 17288 'Locale::Codes::Language_Codes'=> undef,
9cdfa110 17289 'Locale::Codes::Language_Retired'=> undef,
2db8ee47 17290 'Locale::Codes::Script' => undef,
48b66e80 17291 'Locale::Codes::Script_Codes'=> undef,
9cdfa110 17292 'Locale::Codes::Script_Retired'=> undef,
29cab1c7
NC
17293 'Locale::Country' => undef,
17294 'Locale::Currency' => undef,
17295 'Locale::Language' => undef,
29cab1c7
NC
17296 'Locale::Maketext::Simple'=> undef,
17297 'Locale::Script' => undef,
29cab1c7
NC
17298 'MIME::Base64' => undef,
17299 'MIME::QuotedPrint' => undef,
52513e61 17300 'Math::BigFloat' => undef,
210f4ae1 17301 'Math::BigFloat::Trace' => undef,
52513e61
PM
17302 'Math::BigInt' => undef,
17303 'Math::BigInt::Calc' => undef,
17304 'Math::BigInt::CalcEmu' => undef,
17305 'Math::BigInt::FastCalc'=> undef,
79ca97c0 17306 'Math::BigInt::Lib' => undef,
210f4ae1 17307 'Math::BigInt::Trace' => undef,
52513e61 17308 'Math::BigRat' => undef,
29cab1c7
NC
17309 'Math::Complex' => undef,
17310 'Math::Trig' => undef,
17311 'Memoize' => undef,
17312 'Memoize::AnyDBM_File' => undef,
17313 'Memoize::Expire' => undef,
17314 'Memoize::ExpireFile' => undef,
17315 'Memoize::ExpireTest' => undef,
17316 'Memoize::NDBM_File' => undef,
17317 'Memoize::SDBM_File' => undef,
17318 'Memoize::Storable' => undef,
29cab1c7
NC
17319 'Module::Load' => undef,
17320 'Module::Load::Conditional'=> undef,
17321 'Module::Loaded' => undef,
62de23d1 17322 'Module::Metadata' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
29cab1c7
NC
17323 'NEXT' => undef,
17324 'Net::Cmd' => undef,
17325 'Net::Config' => undef,
17326 'Net::Domain' => undef,
17327 'Net::FTP' => undef,
17328 'Net::FTP::A' => undef,
17329 'Net::FTP::E' => undef,
17330 'Net::FTP::I' => undef,
17331 'Net::FTP::L' => undef,
17332 'Net::FTP::dataconn' => undef,
17333 'Net::NNTP' => undef,
17334 'Net::Netrc' => undef,
17335 'Net::POP3' => undef,
29cab1c7
NC
17336 'Net::SMTP' => undef,
17337 'Net::Time' => undef,
29cab1c7 17338 'Params::Check' => undef,
45f300ac 17339 'Parse::CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
210f4ae1 17340 'Perl::OSType' => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
29cab1c7
NC
17341 'PerlIO::via::QuotedPrint'=> undef,
17342 'Pod::Checker' => undef,
17343 'Pod::Escapes' => undef,
17344 'Pod::Find' => undef,
17345 'Pod::InputObjects' => undef,
bbab6af9
SL
17346 'Pod::Man' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
17347 'Pod::ParseLink' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
29cab1c7
NC
17348 'Pod::ParseUtils' => undef,
17349 'Pod::Parser' => undef,
17350 'Pod::Perldoc' => undef,
17351 'Pod::Perldoc::BaseTo' => undef,
17352 'Pod::Perldoc::GetOptsOO'=> undef,
b240fc0f 17353 'Pod::Perldoc::ToANSI' => undef,
29cab1c7
NC
17354 'Pod::Perldoc::ToChecker'=> undef,
17355 'Pod::Perldoc::ToMan' => undef,
17356 'Pod::Perldoc::ToNroff' => undef,
17357 'Pod::Perldoc::ToPod' => undef,
17358 'Pod::Perldoc::ToRtf' => undef,
b240fc0f 17359 'Pod::Perldoc::ToTerm' => undef,
29cab1c7
NC
17360 'Pod::Perldoc::ToText' => undef,
17361 'Pod::Perldoc::ToTk' => undef,
17362 'Pod::Perldoc::ToXml' => undef,
17363 'Pod::PlainText' => undef,
29cab1c7 17364 'Pod::Select' => undef,
52513e61
PM
17365 'Pod::Simple' => 'https://github.com/perl-pod/pod-simple/issues',
17366 'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
17367 'Pod::Simple::Checker' => 'https://github.com/perl-pod/pod-simple/issues',
17368 'Pod::Simple::Debug' => 'https://github.com/perl-pod/pod-simple/issues',
17369 'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
17370 'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
17371 'Pod::Simple::HTML' => 'https://github.com/perl-pod/pod-simple/issues',
17372 'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
17373 'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
17374 'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
17375 'Pod::Simple::Methody' => 'https://github.com/perl-pod/pod-simple/issues',
17376 'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
17377 'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
17378 'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
17379 'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
17380 'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
17381 'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
17382 'Pod::Simple::RTF' => 'https://github.com/perl-pod/pod-simple/issues',
17383 'Pod::Simple::Search' => 'https://github.com/perl-pod/pod-simple/issues',
17384 'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
17385 'Pod::Simple::Text' => 'https://github.com/perl-pod/pod-simple/issues',
17386 'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
17387 'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
17388 'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
17389 'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
17390 'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
17391 'Pod::Simple::XHTML' => 'https://github.com/perl-pod/pod-simple/issues',
17392 'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
bbab6af9
SL
17393 'Pod::Text' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
17394 'Pod::Text::Color' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
17395 'Pod::Text::Overstrike' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
17396 'Pod::Text::Termcap' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
29cab1c7 17397 'Pod::Usage' => undef,
b5fa05a4 17398 'Scalar::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
9cdfa110 17399 'Socket' => undef,
b5fa05a4 17400 'Sub::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
29cab1c7 17401 'Sys::Syslog' => undef,
48b66e80 17402 'Sys::Syslog::Win32' => undef,
29cab1c7
NC
17403 'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17404 'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17405 'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17406 'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17407 'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17408 'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17409 'TAP::Formatter::File' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17410 'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17411 'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17412 'TAP::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
1f2fd626 17413 'TAP::Harness::Env' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
29cab1c7
NC
17414 'TAP::Object' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17415 'TAP::Parser' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17416 'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17417 'TAP::Parser::Grammar' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17418 'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17419 'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17420 'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17421 'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17422 'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17423 'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17424 'TAP::Parser::Result' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17425 'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17426 'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17427 'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17428 'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17429 'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17430 'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17431 'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17432 'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17433 'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17434 'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17435 'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17436 'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17437 'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
a4729c0f
DG
17438 'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17439 'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17440 'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17441 'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17442 'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17443 'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
29cab1c7
NC
17444 'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17445 'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
de1edec7 17446 'Term::ANSIColor' => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor',
29cab1c7 17447 'Term::Cap' => undef,
f7a1e8ff
S
17448 'Test2' => 'http://github.com/Test-More/test-more/issues',
17449 'Test2::API' => 'http://github.com/Test-More/test-more/issues',
17450 'Test2::API::Breakage' => 'http://github.com/Test-More/test-more/issues',
17451 'Test2::API::Context' => 'http://github.com/Test-More/test-more/issues',
17452 'Test2::API::Instance' => 'http://github.com/Test-More/test-more/issues',
17453 'Test2::API::Stack' => 'http://github.com/Test-More/test-more/issues',
17454 'Test2::Event' => 'http://github.com/Test-More/test-more/issues',
17455 'Test2::Event::Bail' => 'http://github.com/Test-More/test-more/issues',
17456 'Test2::Event::Diag' => 'http://github.com/Test-More/test-more/issues',
79ca97c0 17457 'Test2::Event::Encoding'=> 'http://github.com/Test-More/test-more/issues',
f7a1e8ff 17458 'Test2::Event::Exception'=> 'http://github.com/Test-More/test-more/issues',
0b2e8509 17459 'Test2::Event::Fail' => 'http://github.com/Test-More/test-more/issues',
7984aa21 17460 'Test2::Event::Generic' => 'http://github.com/Test-More/test-more/issues',
f7a1e8ff
S
17461 'Test2::Event::Note' => 'http://github.com/Test-More/test-more/issues',
17462 'Test2::Event::Ok' => 'http://github.com/Test-More/test-more/issues',
0b2e8509 17463 'Test2::Event::Pass' => 'http://github.com/Test-More/test-more/issues',
f7a1e8ff
S
17464 'Test2::Event::Plan' => 'http://github.com/Test-More/test-more/issues',
17465 'Test2::Event::Skip' => 'http://github.com/Test-More/test-more/issues',
17466 'Test2::Event::Subtest' => 'http://github.com/Test-More/test-more/issues',
79ca97c0 17467 'Test2::Event::TAP::Version'=> 'http://github.com/Test-More/test-more/issues',
27ee818c 17468 'Test2::Event::V2' => 'http://github.com/Test-More/test-more/issues',
f7a1e8ff 17469 'Test2::Event::Waiting' => 'http://github.com/Test-More/test-more/issues',
0b2e8509
SH
17470 'Test2::EventFacet' => 'http://github.com/Test-More/test-more/issues',
17471 'Test2::EventFacet::About'=> 'http://github.com/Test-More/test-more/issues',
17472 'Test2::EventFacet::Amnesty'=> 'http://github.com/Test-More/test-more/issues',
17473 'Test2::EventFacet::Assert'=> 'http://github.com/Test-More/test-more/issues',
17474 'Test2::EventFacet::Control'=> 'http://github.com/Test-More/test-more/issues',
17475 'Test2::EventFacet::Error'=> 'http://github.com/Test-More/test-more/issues',
27ee818c 17476 'Test2::EventFacet::Hub'=> 'http://github.com/Test-More/test-more/issues',
0b2e8509
SH
17477 'Test2::EventFacet::Info'=> 'http://github.com/Test-More/test-more/issues',
17478 'Test2::EventFacet::Meta'=> 'http://github.com/Test-More/test-more/issues',
17479 'Test2::EventFacet::Parent'=> 'http://github.com/Test-More/test-more/issues',
17480 'Test2::EventFacet::Plan'=> 'http://github.com/Test-More/test-more/issues',
9862549e 17481 'Test2::EventFacet::Render'=> 'http://github.com/Test-More/test-more/issues',
0b2e8509 17482 'Test2::EventFacet::Trace'=> 'http://github.com/Test-More/test-more/issues',
f7a1e8ff
S
17483 'Test2::Formatter' => 'http://github.com/Test-More/test-more/issues',
17484 'Test2::Formatter::TAP' => 'http://github.com/Test-More/test-more/issues',
17485 'Test2::Hub' => 'http://github.com/Test-More/test-more/issues',
17486 'Test2::Hub::Interceptor'=> 'http://github.com/Test-More/test-more/issues',
17487 'Test2::Hub::Interceptor::Terminator'=> 'http://github.com/Test-More/test-more/issues',
17488 'Test2::Hub::Subtest' => 'http://github.com/Test-More/test-more/issues',
17489 'Test2::IPC' => 'http://github.com/Test-More/test-more/issues',
17490 'Test2::IPC::Driver' => 'http://github.com/Test-More/test-more/issues',
17491 'Test2::IPC::Driver::Files'=> 'http://github.com/Test-More/test-more/issues',
79ca97c0 17492 'Test2::Tools::Tiny' => 'http://github.com/Test-More/test-more/issues',
f7a1e8ff
S
17493 'Test2::Util' => 'http://github.com/Test-More/test-more/issues',
17494 'Test2::Util::ExternalMeta'=> 'http://github.com/Test-More/test-more/issues',
0b2e8509 17495 'Test2::Util::Facets2Legacy'=> 'http://github.com/Test-More/test-more/issues',
f7a1e8ff
S
17496 'Test2::Util::HashBase' => 'http://github.com/Test-More/test-more/issues',
17497 'Test2::Util::Trace' => 'http://github.com/Test-More/test-more/issues',
17498 'Test::Builder' => 'http://github.com/Test-More/test-more/issues',
17499 'Test::Builder::Formatter'=> 'http://github.com/Test-More/test-more/issues',
17500 'Test::Builder::IO::Scalar'=> 'http://github.com/Test-More/test-more/issues',
17501 'Test::Builder::Module' => 'http://github.com/Test-More/test-more/issues',
17502 'Test::Builder::Tester' => 'http://github.com/Test-More/test-more/issues',
17503 'Test::Builder::Tester::Color'=> 'http://github.com/Test-More/test-more/issues',
17504 'Test::Builder::TodoDiag'=> 'http://github.com/Test-More/test-more/issues',
29cab1c7 17505 'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
f7a1e8ff
S
17506 'Test::More' => 'http://github.com/Test-More/test-more/issues',
17507 'Test::Simple' => 'http://github.com/Test-More/test-more/issues',
17508 'Test::Tester' => 'http://github.com/Test-More/test-more/issues',
17509 'Test::Tester::Capture' => 'http://github.com/Test-More/test-more/issues',
17510 'Test::Tester::CaptureRunner'=> 'http://github.com/Test-More/test-more/issues',
17511 'Test::Tester::Delegate'=> 'http://github.com/Test-More/test-more/issues',
17512 'Test::use::ok' => 'http://github.com/Test-More/test-more/issues',
29cab1c7
NC
17513 'Text::Balanced' => undef,
17514 'Text::ParseWords' => undef,
29cab1c7
NC
17515 'Text::Tabs' => undef,
17516 'Text::Wrap' => undef,
29cab1c7 17517 'Tie::RefHash' => undef,
b1b49d10 17518 'Time::Local' => 'https://github.com/houseabsolute/Time-Local/issues',
29cab1c7 17519 'Time::Piece' => undef,
48b66e80 17520 'Time::Seconds' => undef,
29cab1c7 17521 'Unicode::Collate' => undef,
d24e0a99
CBW
17522 'Unicode::Collate::CJK::Big5'=> undef,
17523 'Unicode::Collate::CJK::GB2312'=> undef,
17524 'Unicode::Collate::CJK::JISX0208'=> undef,
17525 'Unicode::Collate::CJK::Korean'=> undef,
17526 'Unicode::Collate::CJK::Pinyin'=> undef,
17527 'Unicode::Collate::CJK::Stroke'=> undef,
fe03d33b 17528 'Unicode::Collate::CJK::Zhuyin'=> undef,
7529c15c 17529 'Unicode::Collate::Locale'=> undef,
29cab1c7
NC
17530 'Win32' => undef,
17531 'Win32API::File' => undef,
489c35bb 17532 'Win32API::File::inc::ExtUtils::Myconst2perl'=> undef,
29cab1c7 17533 'autodie' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
04c0d500
MH
17534 'autodie::Scope::Guard' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
17535 'autodie::Scope::GuardStack'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
bffade09 17536 'autodie::Util' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
29cab1c7
NC
17537 'autodie::exception' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
17538 'autodie::exception::system'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
781ea95a 17539 'autodie::hints' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
2f4a2205 17540 'autodie::skip' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
210f4ae1
SH
17541 'bigint' => undef,
17542 'bignum' => undef,
17543 'bigrat' => undef,
29cab1c7 17544 'encoding' => undef,
70152776 17545 'experimental' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
f7a1e8ff 17546 'ok' => 'http://github.com/Test-More/test-more/issues',
29cab1c7 17547 'parent' => undef,
e46b3c7d 17548 'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues',
c543a22d
MH
17549 'version' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
17550 'version::regex' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
29cab1c7
NC
17551);
17552
8f83a467
JP
17553# Create aliases with trailing zeros for $] use
17554
17555$released{'5.000'} = $released{5};
8f83a467 17556$version{'5.000'} = $version{5};
8f83a467 17557
baca4554 17558_create_aliases(\%delta);
4ffbb0c4
DL
17559_create_aliases(\%released);
17560_create_aliases(\%version);
17561_create_aliases(\%deprecated);
17562
17563sub _create_aliases {
17564 my ($hash) = @_;
17565
17566 for my $version (keys %$hash) {
8e036272 17567 next unless $version >= 5.006;
4ffbb0c4
DL
17568
17569 my $padded = sprintf "%0.6f", $version;
17570
17571 # If the version in string form isn't the same as the numeric version,
17572 # alias it.
17573 if ($padded ne $version && $version == $padded) {
17574 $hash->{$padded} = $hash->{$version};
17575 }
17576 }
17577}
a762e054 17578
8f2fd531
JB
175791;
17580__END__