This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Adjust code which did not get automatically switched over to 5.027011
[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;
26db1972 7our $VERSION = '5.20180321';
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',
26db1972 333 5.027011 => '2018-04-20',
a47a8f3c 334 );
8f2fd531
JB
335
336for my $version ( sort { $a <=> $b } keys %released ) {
337 my $family = int ($version * 1000) / 1000;
338 push @{ $families{ $family }} , $version;
339}
340
c676c838 341%delta = (
a272bf38
DL
342 5 => {
343 changed => {
344 'AnyDBM_File' => undef,
345 'AutoLoader' => undef,
346 'AutoSplit' => undef,
347 'Benchmark' => undef,
348 'Carp' => undef,
349 'Cwd' => undef,
350 'DB_File' => undef,
351 'DynaLoader' => undef,
352 'English' => undef,
353 'Env' => undef,
354 'Exporter' => undef,
355 'ExtUtils::MakeMaker' => undef,
356 'Fcntl' => undef,
357 'File::Basename' => undef,
358 'File::CheckTree' => undef,
359 'File::Find' => undef,
360 'FileHandle' => undef,
361 'GDBM_File' => undef,
362 'Getopt::Long' => undef,
363 'Getopt::Std' => undef,
364 'I18N::Collate' => undef,
365 'IPC::Open2' => undef,
366 'IPC::Open3' => undef,
367 'Math::BigFloat' => undef,
368 'Math::BigInt' => undef,
369 'Math::Complex' => undef,
370 'NDBM_File' => undef,
371 'Net::Ping' => undef,
372 'ODBM_File' => undef,
373 'POSIX' => undef,
374 'SDBM_File' => undef,
375 'Search::Dict' => undef,
376 'Shell' => undef,
377 'Socket' => undef,
378 'Sys::Hostname' => undef,
379 'Sys::Syslog' => undef,
380 'Term::Cap' => undef,
381 'Term::Complete' => undef,
382 'Test::Harness' => undef,
383 'Text::Abbrev' => undef,
384 'Text::ParseWords' => undef,
385 'Text::Soundex' => undef,
386 'Text::Tabs' => undef,
387 'TieHash' => undef,
388 'Time::Local' => undef,
389 'integer' => undef,
390 'less' => undef,
391 'sigtrap' => undef,
392 'strict' => undef,
393 'subs' => undef,
394 },
395 removed => {
396 }
51daab35
RGS
397 },
398 5.001 => {
a272bf38
DL
399 delta_from => 5,
400 changed => {
401 'ExtUtils::Liblist' => undef,
402 'ExtUtils::Manifest' => undef,
403 'ExtUtils::Mkbootstrap' => undef,
404 'File::Path' => undef,
405 'SubstrHash' => undef,
406 'lib' => undef,
407 },
408 removed => {
409 }
51daab35
RGS
410 },
411 5.002 => {
a272bf38
DL
412 delta_from => 5.001,
413 changed => {
414 'DB_File' => '1.01',
415 'Devel::SelfStubber' => '1.01',
416 'DirHandle' => undef,
417 'DynaLoader' => '1.00',
418 'ExtUtils::Install' => undef,
419 'ExtUtils::MM_OS2' => undef,
420 'ExtUtils::MM_Unix' => undef,
421 'ExtUtils::MM_VMS' => undef,
422 'ExtUtils::MakeMaker' => '5.21',
423 'ExtUtils::Manifest' => '1.22',
424 'ExtUtils::Mksymlists' => '1.00',
425 'Fcntl' => '1.00',
426 'File::Copy' => '1.5',
427 'File::Path' => '1.01',
428 'FileCache' => undef,
429 'FileHandle' => '1.00',
430 'GDBM_File' => '1.00',
431 'Getopt::Long' => '2.01',
432 'NDBM_File' => '1.00',
433 'Net::Ping' => '1',
434 'ODBM_File' => '1.00',
435 'POSIX' => '1.00',
436 'Pod::Functions' => undef,
437 'Pod::Text' => undef,
438 'SDBM_File' => '1.00',
439 'Safe' => '1.00',
440 'SelectSaver' => undef,
441 'SelfLoader' => '1.06',
442 'Socket' => '1.5',
443 'Symbol' => undef,
444 'Term::ReadLine' => undef,
445 'Test::Harness' => '1.07',
446 'Text::Wrap' => undef,
447 'Tie::Hash' => undef,
448 'Tie::Scalar' => undef,
449 'Tie::SubstrHash' => undef,
450 'diagnostics' => undef,
451 'overload' => undef,
452 'vars' => undef,
453 },
454 removed => {
455 'SubstrHash' => 1,
456 'TieHash' => 1,
457 }
51daab35 458 },
8f2fd531 459 5.00307 => {
a272bf38
DL
460 delta_from => 5.002,
461 changed => {
462 'Config' => undef,
463 'DB_File' => '1.03',
464 'ExtUtils::Embed' => '1.18',
b7c1f088
RS
465 'ExtUtils::Install' => '1.15',
466 'ExtUtils::Liblist' => '1.20',
467 'ExtUtils::MM_Unix' => '1.107',
a272bf38
DL
468 'ExtUtils::MakeMaker' => '5.38',
469 'ExtUtils::Manifest' => '1.27',
b7c1f088
RS
470 'ExtUtils::Mkbootstrap' => '1.13',
471 'ExtUtils::Mksymlists' => '1.12',
472 'ExtUtils::testlib' => '1.11',
a272bf38
DL
473 'Fatal' => undef,
474 'File::Basename' => '2.4',
475 'FindBin' => '1.04',
476 'Getopt::Long' => '2.04',
477 'IO' => undef,
478 'IO::File' => '1.05',
479 'IO::Handle' => '1.12',
480 'IO::Pipe' => '1.07',
481 'IO::Seekable' => '1.05',
482 'IO::Select' => '1.09',
483 'IO::Socket' => '1.13',
484 'Net::Ping' => '1.01',
485 'OS2::ExtAttr' => '0.01',
486 'OS2::PrfDB' => '0.02',
487 'OS2::Process' => undef,
488 'OS2::REXX' => undef,
489 'Opcode' => '1.01',
490 'Safe' => '2.06',
491 'Test::Harness' => '1.13',
492 'Text::Tabs' => '96.051501',
493 'Text::Wrap' => '96.041801',
494 'UNIVERSAL' => undef,
495 'VMS::Filespec' => undef,
496 'VMS::Stdio' => '2.0',
497 'ops' => undef,
498 'sigtrap' => '1.01',
499 },
500 removed => {
501 }
8f2fd531 502 },
a272bf38
DL
503 5.004 => {
504 delta_from => 5.00307,
505 changed => {
506 'Bundle::CPAN' => '0.02',
507 'CGI' => '2.36',
508 'CGI::Apache' => '1.01',
509 'CGI::Carp' => '1.06',
510 'CGI::Fast' => '1.00a',
511 'CGI::Push' => '1.00',
512 'CGI::Switch' => '0.05',
513 'CPAN' => '1.2401',
b7c1f088 514 'CPAN::FirstTime' => '1.18',
a272bf38
DL
515 'CPAN::Nox' => undef,
516 'Class::Struct' => undef,
517 'Cwd' => '2.00',
518 'DB_File' => '1.14',
519 'DynaLoader' => '1.02',
520 'ExtUtils::Command' => '1.00',
521 'ExtUtils::Embed' => '1.2501',
b7c1f088
RS
522 'ExtUtils::Install' => '1.16',
523 'ExtUtils::Liblist' => '1.2201',
524 'ExtUtils::MM_Unix' => '1.114',
a272bf38
DL
525 'ExtUtils::MM_Win32' => undef,
526 'ExtUtils::MakeMaker' => '5.4002',
b7c1f088
RS
527 'ExtUtils::Manifest' => '1.33',
528 'ExtUtils::Mksymlists' => '1.13',
a272bf38
DL
529 'ExtUtils::XSSymSet' => '1.0',
530 'Fcntl' => '1.03',
531 'File::Basename' => '2.5',
532 'File::Compare' => '1.1001',
533 'File::Copy' => '2.02',
534 'File::Path' => '1.04',
535 'File::stat' => undef,
536 'FileHandle' => '2.00',
537 'Getopt::Long' => '2.10',
538 'IO::File' => '1.0602',
539 'IO::Handle' => '1.1504',
540 'IO::Pipe' => '1.0901',
541 'IO::Seekable' => '1.06',
542 'IO::Select' => '1.10',
543 'IO::Socket' => '1.1602',
544 'IPC::Open2' => '1.01',
545 'IPC::Open3' => '1.0101',
546 'Math::Complex' => '1.01',
547 'Math::Trig' => '1',
548 'Net::Ping' => '2.02',
549 'Net::hostent' => undef,
550 'Net::netent' => undef,
551 'Net::protoent' => undef,
552 'Net::servent' => undef,
553 'Opcode' => '1.04',
554 'POSIX' => '1.02',
555 'Pod::Html' => undef,
556 'Pod::Text' => '1.0203',
557 'SelfLoader' => '1.07',
558 'Socket' => '1.6',
559 'Symbol' => '1.02',
560 'Test::Harness' => '1.1502',
561 'Text::Tabs' => '96.121201',
562 'Text::Wrap' => '97.011701',
563 'Tie::RefHash' => undef,
564 'Time::gmtime' => '1.01',
565 'Time::localtime' => '1.01',
566 'Time::tm' => undef,
567 'User::grent' => undef,
568 'User::pwent' => undef,
569 'VMS::DCLsym' => '1.01',
570 'VMS::Stdio' => '2.02',
571 'autouse' => '1.01',
572 'blib' => undef,
573 'constant' => '1.00',
574 'locale' => undef,
575 'sigtrap' => '1.02',
576 'vmsish' => undef,
577 },
578 removed => {
579 'Fatal' => 1,
580 }
8f2fd531 581 },
a272bf38
DL
582 5.00405 => {
583 delta_from => 5.004,
584 changed => {
585 'AutoLoader' => '5.56',
586 'AutoSplit' => '1.0303',
587 'Bundle::CPAN' => '0.03',
588 'CGI' => '2.42',
589 'CGI::Apache' => '1.1',
590 'CGI::Carp' => '1.10',
591 'CGI::Cookie' => '1.06',
592 'CGI::Push' => '1.01',
593 'CGI::Switch' => '0.06',
594 'CPAN' => '1.40',
b7c1f088 595 'CPAN::FirstTime' => '1.30',
a272bf38
DL
596 'Cwd' => '2.01',
597 'DB_File' => '1.15',
598 'DynaLoader' => '1.03',
599 'ExtUtils::Command' => '1.01',
600 'ExtUtils::Embed' => '1.2505',
b7c1f088
RS
601 'ExtUtils::Install' => '1.28',
602 'ExtUtils::Liblist' => '1.25',
603 'ExtUtils::MM_Unix' => '1.118',
a272bf38 604 'ExtUtils::MakeMaker' => '5.42',
b7c1f088
RS
605 'ExtUtils::Mkbootstrap' => '1.14',
606 'ExtUtils::Mksymlists' => '1.16',
a272bf38
DL
607 'File::Basename' => '2.6',
608 'File::DosGlob' => undef,
609 'File::Path' => '1.0402',
610 'File::Spec' => '0.6',
611 'File::Spec::Mac' => '1.0',
612 'File::Spec::OS2' => undef,
613 'File::Spec::Unix' => undef,
614 'File::Spec::VMS' => undef,
615 'File::Spec::Win32' => undef,
616 'FindBin' => '1.41',
617 'Getopt::Long' => '2.19',
618 'IO::File' => '1.06021',
619 'IO::Socket' => '1.1603',
620 'IPC::Open3' => '1.0103',
621 'Math::Complex' => '1.25',
622 'NDBM_File' => '1.01',
623 'Pod::Html' => '1.0101',
624 'Pod::Text' => '1.0204',
625 'SelfLoader' => '1.08',
626 'Socket' => '1.7',
627 'Test' => '1.04',
628 'Test::Harness' => '1.1602',
629 'Text::ParseWords' => '3.1001',
630 'Text::Wrap' => '98.112902',
631 'Tie::Handle' => undef,
632 'attrs' => '0.1',
633 'base' => undef,
634 'blib' => '1.00',
635 're' => undef,
636 'strict' => '1.01',
637 },
638 removed => {
639 }
8f2fd531 640 },
a272bf38
DL
641 5.005 => {
642 delta_from => 5.00405,
643 changed => {
644 'AutoLoader' => undef,
645 'AutoSplit' => '1.0302',
646 'B' => undef,
647 'B::Asmdata' => undef,
648 'B::Assembler' => undef,
649 'B::Bblock' => undef,
650 'B::Bytecode' => undef,
651 'B::C' => undef,
652 'B::CC' => undef,
653 'B::Debug' => undef,
654 'B::Deparse' => '0.56',
655 'B::Disassembler' => undef,
656 'B::Lint' => undef,
657 'B::Showlex' => undef,
658 'B::Stackobj' => undef,
659 'B::Terse' => undef,
660 'B::Xref' => undef,
661 'CGI::Carp' => '1.101',
662 'CPAN' => '1.3901',
b7c1f088 663 'CPAN::FirstTime' => '1.29',
a272bf38
DL
664 'DB_File' => '1.60',
665 'Data::Dumper' => '2.09',
1549d03d 666 'Errno' => '1.09',
a272bf38 667 'ExtUtils::Installed' => '0.02',
b7c1f088 668 'ExtUtils::MM_Unix' => '1.12601',
a272bf38 669 'ExtUtils::MakeMaker' => '5.4301',
b7c1f088
RS
670 'ExtUtils::Mkbootstrap' => '1.13',
671 'ExtUtils::Mksymlists' => '1.17',
a272bf38
DL
672 'ExtUtils::Packlist' => '0.03',
673 'Fatal' => '1.02',
674 'File::Path' => '1.0401',
675 'Getopt::Long' => '2.17',
676 'IO::Handle' => '1.1505',
677 'IPC::Msg' => '1.00',
678 'IPC::Open3' => '1.0102',
679 'IPC::Semaphore' => '1.00',
680 'IPC::SysV' => '1.03',
681 'O' => undef,
682 'OS2::Process' => '0.2',
683 'Pod::Html' => '1.01',
684 'Pod::Text' => '1.0203',
685 'Text::ParseWords' => '3.1',
686 'Text::Wrap' => '97.02',
687 'Thread' => '1.0',
688 'Thread::Queue' => undef,
689 'Thread::Semaphore' => undef,
690 'Thread::Signal' => undef,
691 'Thread::Specific' => undef,
692 'Tie::Array' => '1.00',
693 'VMS::Stdio' => '2.1',
694 'attrs' => '1.0',
695 'fields' => '0.02',
696 're' => '0.02',
697 },
698 removed => {
699 'Bundle::CPAN' => 1,
700 }
8f2fd531 701 },
a272bf38
DL
702 5.00503 => {
703 delta_from => 5.005,
704 changed => {
705 'AutoSplit' => '1.0303',
706 'CGI' => '2.46',
707 'CGI::Carp' => '1.13',
708 'CGI::Fast' => '1.01',
709 'CPAN' => '1.48',
710 'CPAN::FirstTime' => '1.36',
711 'CPAN::Nox' => '1.00',
712 'DB_File' => '1.65',
713 'Data::Dumper' => '2.101',
714 'Dumpvalue' => undef,
1549d03d 715 'Errno' => '1.111',
a272bf38
DL
716 'ExtUtils::Install' => '1.28',
717 'ExtUtils::Liblist' => '1.25',
718 'ExtUtils::MM_Unix' => '1.12602',
719 'ExtUtils::MakeMaker' => '5.4302',
720 'ExtUtils::Manifest' => '1.33',
721 'ExtUtils::Mkbootstrap' => '1.14',
722 'ExtUtils::Mksymlists' => '1.17',
723 'ExtUtils::testlib' => '1.11',
724 'FindBin' => '1.42',
725 'Getopt::Long' => '2.19',
726 'Getopt::Std' => '1.01',
727 'IO::Pipe' => '1.0902',
728 'IPC::Open3' => '1.0103',
729 'Math::Complex' => '1.26',
730 'Test' => '1.122',
731 'Text::Wrap' => '98.112902',
732 },
733 removed => {
734 }
8f2fd531 735 },
ad91da88 736 5.00504 => {
a272bf38
DL
737 delta_from => 5.00503,
738 changed => {
b7c1f088 739 'CPAN::FirstTime' => '1.36',
a272bf38 740 'DB_File' => '1.807',
b7c1f088
RS
741 'ExtUtils::Install' => '1.28',
742 'ExtUtils::Liblist' => '1.25',
743 'ExtUtils::MM_Unix' => '1.12602',
744 'ExtUtils::Manifest' => '1.33',
a272bf38 745 'ExtUtils::Miniperl' => undef,
b7c1f088
RS
746 'ExtUtils::Mkbootstrap' => '1.14',
747 'ExtUtils::Mksymlists' => '1.17',
748 'ExtUtils::testlib' => '1.11',
a272bf38
DL
749 'File::Compare' => '1.1002',
750 'File::Spec' => '0.8',
751 'File::Spec::Functions' => undef,
752 'File::Spec::Mac' => undef,
753 'Getopt::Long' => '2.20',
754 'Pod::Html' => '1.02',
755 },
756 removed => {
757 }
ad91da88 758 },
a272bf38
DL
759 5.006 => {
760 delta_from => 5.00504,
761 changed => {
762 'AutoLoader' => '5.57',
763 'AutoSplit' => '1.0305',
764 'B::Deparse' => '0.59',
765 'B::Stash' => undef,
766 'Benchmark' => '1',
767 'ByteLoader' => '0.03',
768 'CGI' => '2.56',
769 'CGI::Apache' => undef,
770 'CGI::Carp' => '1.14',
771 'CGI::Cookie' => '1.12',
772 'CGI::Fast' => '1.02',
773 'CGI::Pretty' => '1.03',
774 'CGI::Switch' => undef,
775 'CPAN' => '1.52',
b7c1f088 776 'CPAN::FirstTime' => '1.38',
a272bf38
DL
777 'Carp::Heavy' => undef,
778 'Class::Struct' => '0.58',
779 'Cwd' => '2.02',
780 'DB' => '1.0',
781 'DB_File' => '1.72',
782 'Devel::DProf' => '20000000.00_00',
783 'Devel::Peek' => '1.00_01',
784 'DynaLoader' => '1.04',
785 'Exporter' => '5.562',
786 'Exporter::Heavy' => undef,
787 'ExtUtils::MM_Cygwin' => undef,
b7c1f088 788 'ExtUtils::MM_Unix' => '1.12603',
a272bf38
DL
789 'ExtUtils::MakeMaker' => '5.45',
790 'File::Copy' => '2.03',
791 'File::Glob' => '0.991',
792 'File::Path' => '1.0403',
793 'GDBM_File' => '1.03',
794 'Getopt::Long' => '2.23',
795 'Getopt::Std' => '1.02',
796 'IO' => '1.20',
797 'IO::Dir' => '1.03',
798 'IO::File' => '1.08',
799 'IO::Handle' => '1.21',
800 'IO::Pipe' => '1.121',
801 'IO::Poll' => '0.01',
802 'IO::Seekable' => '1.08',
803 'IO::Select' => '1.14',
804 'IO::Socket' => '1.26',
805 'IO::Socket::INET' => '1.25',
806 'IO::Socket::UNIX' => '1.20',
807 'JNI' => '0.01',
808 'JPL::AutoLoader' => undef,
809 'JPL::Class' => undef,
810 'JPL::Compile' => undef,
811 'NDBM_File' => '1.03',
812 'ODBM_File' => '1.02',
813 'OS2::DLL' => undef,
814 'POSIX' => '1.03',
815 'Pod::Checker' => '1.098',
816 'Pod::Find' => '0.12',
817 'Pod::Html' => '1.03',
818 'Pod::InputObjects' => '1.12',
819 'Pod::Man' => '1.02',
820 'Pod::ParseUtils' => '0.2',
821 'Pod::Parser' => '1.12',
822 'Pod::Plainer' => '0.01',
823 'Pod::Select' => '1.12',
824 'Pod::Text' => '2.03',
825 'Pod::Text::Color' => '0.05',
826 'Pod::Text::Termcap' => '0.04',
827 'Pod::Usage' => '1.12',
828 'SDBM_File' => '1.02',
829 'SelfLoader' => '1.0901',
830 'Shell' => '0.2',
831 'Socket' => '1.72',
832 'Sys::Hostname' => '1.1',
833 'Sys::Syslog' => '0.01',
834 'Term::ANSIColor' => '1.01',
835 'Test' => '1.13',
836 'Test::Harness' => '1.1604',
837 'Text::ParseWords' => '3.2',
838 'Text::Soundex' => '1.0',
839 'Text::Tabs' => '98.112801',
840 'Tie::Array' => '1.01',
841 'Tie::Handle' => '1.0',
842 'VMS::Stdio' => '2.2',
843 'XSLoader' => '0.01',
844 'attributes' => '0.03',
845 'autouse' => '1.02',
846 'base' => '1.01',
847 'bytes' => undef,
848 'charnames' => undef,
849 'constant' => '1.02',
850 'diagnostics' => '1.0',
851 'fields' => '1.01',
852 'filetest' => undef,
853 'lib' => '0.5564',
854 'open' => undef,
855 'utf8' => undef,
856 'warnings' => undef,
857 'warnings::register' => undef,
858 },
859 removed => {
860 }
8f2fd531 861 },
a272bf38
DL
862 5.006001 => {
863 delta_from => 5.006,
864 changed => {
865 'AutoLoader' => '5.58',
866 'B::Assembler' => '0.02',
867 'B::Concise' => '0.51',
868 'B::Deparse' => '0.6',
869 'ByteLoader' => '0.04',
870 'CGI' => '2.752',
871 'CGI::Carp' => '1.20',
872 'CGI::Cookie' => '1.18',
873 'CGI::Pretty' => '1.05',
874 'CGI::Push' => '1.04',
875 'CGI::Util' => '1.1',
876 'CPAN' => '1.59_54',
877 'CPAN::FirstTime' => '1.53',
878 'Class::Struct' => '0.59',
879 'Cwd' => '2.04',
880 'DB_File' => '1.75',
881 'Data::Dumper' => '2.102',
882 'ExtUtils::Install' => '1.28',
883 'ExtUtils::Liblist' => '1.26',
884 'ExtUtils::MM_Unix' => '1.12603',
885 'ExtUtils::Manifest' => '1.33',
886 'ExtUtils::Mkbootstrap' => '1.14',
887 'ExtUtils::Mksymlists' => '1.17',
888 'ExtUtils::testlib' => '1.11',
889 'File::Path' => '1.0404',
890 'File::Spec' => '0.82',
891 'File::Spec::Epoc' => undef,
892 'File::Spec::Functions' => '1.1',
893 'File::Spec::Mac' => '1.2',
894 'File::Spec::OS2' => '1.1',
895 'File::Spec::Unix' => '1.2',
896 'File::Spec::VMS' => '1.1',
897 'File::Spec::Win32' => '1.2',
898 'File::Temp' => '0.12',
899 'GDBM_File' => '1.05',
900 'Getopt::Long' => '2.25',
901 'IO::Poll' => '0.05',
902 'JNI' => '0.1',
903 'Math::BigFloat' => '0.02',
904 'Math::BigInt' => '0.01',
905 'Math::Complex' => '1.31',
906 'NDBM_File' => '1.04',
907 'ODBM_File' => '1.03',
908 'OS2::REXX' => '1.00',
909 'Pod::Checker' => '1.2',
910 'Pod::Find' => '0.21',
911 'Pod::InputObjects' => '1.13',
912 'Pod::LaTeX' => '0.53',
913 'Pod::Man' => '1.15',
914 'Pod::ParseUtils' => '0.22',
915 'Pod::Parser' => '1.13',
916 'Pod::Select' => '1.13',
917 'Pod::Text' => '2.08',
918 'Pod::Text::Color' => '0.06',
919 'Pod::Text::Overstrike' => '1.01',
920 'Pod::Text::Termcap' => '1',
921 'Pod::Usage' => '1.14',
922 'SDBM_File' => '1.03',
923 'SelfLoader' => '1.0902',
924 'Shell' => '0.3',
925 'Term::ANSIColor' => '1.03',
926 'Test' => '1.15',
927 'Text::Wrap' => '2001.0131',
928 'Tie::Handle' => '4.0',
929 'Tie::RefHash' => '1.3',
930 },
931 removed => {
932 }
8f2fd531
JB
933 },
934 5.006002 => {
a272bf38
DL
935 delta_from => 5.006001,
936 changed => {
b7c1f088 937 'CPAN::FirstTime' => '1.53',
a272bf38
DL
938 'DB_File' => '1.806',
939 'Data::Dumper' => '2.121',
940 'ExtUtils::Command' => '1.05',
941 'ExtUtils::Command::MM' => '0.03',
942 'ExtUtils::Install' => '1.32',
943 'ExtUtils::Installed' => '0.08',
944 'ExtUtils::Liblist' => '1.01',
945 'ExtUtils::Liblist::Kid'=> '1.3',
946 'ExtUtils::MM' => '0.04',
947 'ExtUtils::MM_Any' => '0.07',
948 'ExtUtils::MM_BeOS' => '1.04',
949 'ExtUtils::MM_Cygwin' => '1.06',
950 'ExtUtils::MM_DOS' => '0.02',
951 'ExtUtils::MM_MacOS' => '1.07',
952 'ExtUtils::MM_NW5' => '2.06',
953 'ExtUtils::MM_OS2' => '1.04',
954 'ExtUtils::MM_UWIN' => '0.02',
955 'ExtUtils::MM_Unix' => '1.42',
956 'ExtUtils::MM_VMS' => '5.70',
957 'ExtUtils::MM_Win32' => '1.09',
958 'ExtUtils::MM_Win95' => '0.03',
959 'ExtUtils::MY' => '0.01',
960 'ExtUtils::MakeMaker' => '6.17',
961 'ExtUtils::MakeMaker::bytes'=> '0.01',
962 'ExtUtils::MakeMaker::vmsish'=> '0.01',
963 'ExtUtils::Manifest' => '1.42',
964 'ExtUtils::Mkbootstrap' => '1.15',
965 'ExtUtils::Mksymlists' => '1.19',
966 'ExtUtils::Packlist' => '0.04',
967 'ExtUtils::testlib' => '1.15',
968 'File::Spec' => '0.86',
969 'File::Spec::Cygwin' => '1.1',
970 'File::Spec::Epoc' => '1.1',
971 'File::Spec::Functions' => '1.3',
972 'File::Spec::Mac' => '1.4',
973 'File::Spec::OS2' => '1.2',
974 'File::Spec::Unix' => '1.5',
975 'File::Spec::VMS' => '1.4',
976 'File::Spec::Win32' => '1.4',
977 'File::Temp' => '0.14',
978 'Safe' => '2.10',
979 'Test' => '1.24',
980 'Test::Builder' => '0.17',
981 'Test::Harness' => '2.30',
982 'Test::Harness::Assert' => '0.01',
983 'Test::Harness::Iterator'=> '0.01',
984 'Test::Harness::Straps' => '0.15',
985 'Test::More' => '0.47',
986 'Test::Simple' => '0.47',
987 'Unicode' => '3.0.1',
988 'if' => '0.03',
989 'ops' => '1.00',
990 },
991 removed => {
992 }
c595d054 993 },
a272bf38
DL
994 5.007003 => {
995 delta_from => 5.006001,
996 changed => {
997 'AnyDBM_File' => '1.00',
998 'Attribute::Handlers' => '0.76',
999 'AutoLoader' => '5.59',
1000 'AutoSplit' => '1.0307',
1001 'B' => '1.00',
1002 'B::Asmdata' => '1.00',
1003 'B::Assembler' => '0.04',
1004 'B::Bblock' => '1.00',
1005 'B::Bytecode' => '1.00',
1006 'B::C' => '1.01',
1007 'B::CC' => '1.00',
1008 'B::Concise' => '0.52',
1009 'B::Debug' => '1.00',
1010 'B::Deparse' => '0.63',
1011 'B::Disassembler' => '1.01',
1012 'B::Lint' => '1.00',
1013 'B::Showlex' => '1.00',
1014 'B::Stackobj' => '1.00',
1015 'B::Stash' => '1.00',
1016 'B::Terse' => '1.00',
1017 'B::Xref' => '1.00',
1018 'Benchmark' => '1.04',
1019 'CGI' => '2.80',
1020 'CGI::Apache' => '1.00',
1021 'CGI::Carp' => '1.22',
1022 'CGI::Cookie' => '1.20',
1023 'CGI::Fast' => '1.04',
1024 'CGI::Pretty' => '1.05_00',
1025 'CGI::Switch' => '1.00',
1026 'CGI::Util' => '1.3',
1027 'CPAN' => '1.59_56',
b7c1f088 1028 'CPAN::FirstTime' => '1.54',
a272bf38
DL
1029 'CPAN::Nox' => '1.00_01',
1030 'Carp' => '1.01',
e1f9e915 1031 'Carp::Heavy' => '1.01',
a272bf38
DL
1032 'Class::ISA' => '0.32',
1033 'Class::Struct' => '0.61',
1034 'Cwd' => '2.06',
1035 'DB_File' => '1.804',
1036 'Data::Dumper' => '2.12',
1037 'Devel::DProf' => '20000000.00_01',
1038 'Devel::PPPort' => '2.0002',
1039 'Devel::Peek' => '1.00_03',
1040 'Devel::SelfStubber' => '1.03',
1041 'Digest' => '1.00',
1042 'Digest::MD5' => '2.16',
1043 'DirHandle' => '1.00',
1044 'Dumpvalue' => '1.10',
1045 'Encode' => '0.40',
1046 'Encode::CN' => '0.02',
1047 'Encode::CN::HZ' => undef,
1048 'Encode::Encoding' => '0.02',
1049 'Encode::Internal' => '0.30',
1050 'Encode::JP' => '0.02',
1051 'Encode::JP::Constants' => '1.02',
1052 'Encode::JP::H2Z' => '0.77',
1053 'Encode::JP::ISO_2022_JP'=> undef,
1054 'Encode::JP::JIS' => undef,
1055 'Encode::JP::Tr' => '0.77',
1056 'Encode::KR' => '0.02',
1057 'Encode::TW' => '0.02',
1058 'Encode::Tcl' => '1.01',
1059 'Encode::Tcl::Escape' => '1.01',
1060 'Encode::Tcl::Extended' => '1.01',
1061 'Encode::Tcl::HanZi' => '1.01',
1062 'Encode::Tcl::Table' => '1.01',
1063 'Encode::Unicode' => '0.30',
1064 'Encode::XS' => '0.40',
1065 'Encode::iso10646_1' => '0.30',
1066 'Encode::usc2_le' => '0.30',
1067 'Encode::utf8' => '0.30',
1068 'English' => '1.00',
1069 'Env' => '1.00',
1070 'Exporter' => '5.566',
1071 'Exporter::Heavy' => '5.562',
1072 'ExtUtils::Command' => '1.02',
1073 'ExtUtils::Constant' => '0.11',
1074 'ExtUtils::Embed' => '1.250601',
1075 'ExtUtils::Install' => '1.29',
1076 'ExtUtils::Installed' => '0.04',
1077 'ExtUtils::Liblist' => '1.2701',
1078 'ExtUtils::MM_BeOS' => '1.00',
1079 'ExtUtils::MM_Cygwin' => '1.00',
1080 'ExtUtils::MM_OS2' => '1.00',
1081 'ExtUtils::MM_Unix' => '1.12607',
1082 'ExtUtils::MM_VMS' => '5.56',
1083 'ExtUtils::MM_Win32' => '1.00_02',
1084 'ExtUtils::MakeMaker' => '5.48_03',
1085 'ExtUtils::Manifest' => '1.35',
1086 'ExtUtils::Mkbootstrap' => '1.1401',
1087 'ExtUtils::Mksymlists' => '1.18',
1088 'ExtUtils::Packlist' => '0.04',
1089 'ExtUtils::testlib' => '1.1201',
1090 'Fatal' => '1.03',
1091 'Fcntl' => '1.04',
1092 'File::Basename' => '2.71',
1093 'File::CheckTree' => '4.1',
1094 'File::Compare' => '1.1003',
1095 'File::Copy' => '2.05',
1096 'File::DosGlob' => '1.00',
1097 'File::Find' => '1.04',
1098 'File::Glob' => '1.01',
1099 'File::Path' => '1.05',
1100 'File::Spec' => '0.83',
1101 'File::Spec::Cygwin' => '1.0',
1102 'File::Spec::Epoc' => '1.00',
1103 'File::Spec::Functions' => '1.2',
1104 'File::Spec::Mac' => '1.3',
1105 'File::Spec::Unix' => '1.4',
1106 'File::Spec::VMS' => '1.2',
1107 'File::Spec::Win32' => '1.3',
1108 'File::Temp' => '0.13',
1109 'File::stat' => '1.00',
1110 'FileCache' => '1.00',
1111 'FileHandle' => '2.01',
1112 'Filter::Simple' => '0.77',
1113 'Filter::Util::Call' => '1.06',
1114 'FindBin' => '1.43',
1115 'GDBM_File' => '1.06',
1116 'Getopt::Long' => '2.28',
1117 'Getopt::Std' => '1.03',
1118 'I18N::Collate' => '1.00',
1119 'I18N::LangTags' => '0.27',
1120 'I18N::LangTags::List' => '0.25',
1121 'I18N::Langinfo' => '0.01',
1122 'IO::Dir' => '1.03_00',
1123 'IO::File' => '1.09',
1124 'IO::Handle' => '1.21_00',
1125 'IO::Pipe' => '1.122',
1126 'IO::Poll' => '0.06',
1127 'IO::Seekable' => '1.08_00',
1128 'IO::Select' => '1.15',
1129 'IO::Socket' => '1.27',
1130 'IO::Socket::INET' => '1.26',
1131 'IO::Socket::UNIX' => '1.20_00',
1132 'IPC::Msg' => '1.00_00',
1133 'IPC::Open3' => '1.0104',
1134 'IPC::Semaphore' => '1.00_00',
1135 'IPC::SysV' => '1.03_00',
1136 'List::Util' => '1.06_00',
1137 'Locale::Constants' => '2.01',
1138 'Locale::Country' => '2.01',
1139 'Locale::Currency' => '2.01',
1140 'Locale::Language' => '2.01',
1141 'Locale::Maketext' => '1.03',
1142 'Locale::Script' => '2.01',
1143 'MIME::Base64' => '2.12',
1144 'MIME::QuotedPrint' => '2.03',
1145 'Math::BigFloat' => '1.30',
1146 'Math::BigInt' => '1.54',
1147 'Math::BigInt::Calc' => '0.25',
1148 'Math::Complex' => '1.34',
1149 'Math::Trig' => '1.01',
1150 'Memoize' => '0.66',
1151 'Memoize::AnyDBM_File' => '0.65',
1152 'Memoize::Expire' => '0.66',
1153 'Memoize::ExpireFile' => '0.65',
1154 'Memoize::ExpireTest' => '0.65',
1155 'Memoize::NDBM_File' => '0.65',
1156 'Memoize::SDBM_File' => '0.65',
1157 'Memoize::Storable' => '0.65',
1158 'NEXT' => '0.50',
1159 'Net::Cmd' => '2.21',
1160 'Net::Config' => '1.10',
1161 'Net::Domain' => '2.17',
1162 'Net::FTP' => '2.64',
1163 'Net::FTP::A' => '1.15',
1164 'Net::FTP::E' => '0.01',
1165 'Net::FTP::I' => '1.12',
1166 'Net::FTP::L' => '0.01',
1167 'Net::FTP::dataconn' => '0.10',
1168 'Net::NNTP' => '2.21',
1169 'Net::Netrc' => '2.12',
1170 'Net::POP3' => '2.23',
1171 'Net::Ping' => '2.12',
1172 'Net::SMTP' => '2.21',
1173 'Net::Time' => '2.09',
1174 'Net::hostent' => '1.00',
1175 'Net::netent' => '1.00',
1176 'Net::protoent' => '1.00',
1177 'Net::servent' => '1.00',
1178 'O' => '1.00',
1179 'OS2::DLL' => '1.00',
1180 'OS2::Process' => '1.0',
1181 'OS2::REXX' => '1.01',
1182 'Opcode' => '1.05',
1183 'POSIX' => '1.05',
1184 'PerlIO' => '1.00',
1185 'PerlIO::Scalar' => '0.01',
1186 'PerlIO::Via' => '0.01',
1187 'Pod::Checker' => '1.3',
1188 'Pod::Find' => '0.22',
1189 'Pod::Functions' => '1.01',
1190 'Pod::Html' => '1.04',
1191 'Pod::LaTeX' => '0.54',
1192 'Pod::Man' => '1.32',
1193 'Pod::ParseLink' => '1.05',
1194 'Pod::Text' => '2.18',
1195 'Pod::Text::Color' => '1.03',
1196 'Pod::Text::Overstrike' => '1.08',
1197 'Pod::Text::Termcap' => '1.09',
1198 'Safe' => '2.07',
6b27384d 1199 'Scalar::Util' => '1.06_00',
a272bf38
DL
1200 'Search::Dict' => '1.02',
1201 'SelectSaver' => '1.00',
1202 'SelfLoader' => '1.0903',
1203 'Shell' => '0.4',
1204 'Socket' => '1.75',
1205 'Storable' => '1.015',
1206 'Switch' => '2.06',
1207 'Symbol' => '1.04',
1208 'Sys::Syslog' => '0.02',
1209 'Term::ANSIColor' => '1.04',
1210 'Term::Cap' => '1.07',
1211 'Term::Complete' => '1.4',
1212 'Term::ReadLine' => '1.00',
1213 'Test' => '1.18',
1214 'Test::Builder' => '0.11',
1215 'Test::Harness' => '2.01',
1216 'Test::Harness::Assert' => '0.01',
1217 'Test::Harness::Iterator'=> '0.01',
1218 'Test::Harness::Straps' => '0.08',
1219 'Test::More' => '0.41',
1220 'Test::Simple' => '0.41',
1221 'Text::Abbrev' => '1.00',
1222 'Text::Balanced' => '1.89',
1223 'Text::ParseWords' => '3.21',
1224 'Text::Soundex' => '1.01',
1225 'Text::Wrap' => '2001.0929',
1226 'Thread' => '2.00',
1227 'Thread::Queue' => '1.00',
1228 'Thread::Semaphore' => '1.00',
1229 'Thread::Signal' => '1.00',
1230 'Thread::Specific' => '1.00',
1231 'Tie::Array' => '1.02',
1232 'Tie::File' => '0.17',
1233 'Tie::Handle' => '4.1',
1234 'Tie::Hash' => '1.00',
1235 'Tie::Memoize' => '1.0',
1236 'Tie::RefHash' => '1.3_00',
1237 'Tie::Scalar' => '1.00',
1238 'Tie::SubstrHash' => '1.00',
1239 'Time::HiRes' => '1.20_00',
1240 'Time::Local' => '1.04',
1241 'Time::gmtime' => '1.02',
1242 'Time::localtime' => '1.02',
1243 'Time::tm' => '1.00',
1244 'UNIVERSAL' => '1.00',
1245 'Unicode::Collate' => '0.10',
1246 'Unicode::Normalize' => '0.14',
1247 'Unicode::UCD' => '0.2',
1248 'User::grent' => '1.00',
1249 'User::pwent' => '1.00',
1250 'VMS::DCLsym' => '1.02',
1251 'VMS::Filespec' => '1.1',
1252 'VMS::Stdio' => '2.3',
1253 'XS::Typemap' => '0.01',
1254 'attributes' => '0.04_01',
1255 'attrs' => '1.01',
1256 'autouse' => '1.03',
1257 'base' => '1.02',
1258 'blib' => '1.01',
1259 'bytes' => '1.00',
1260 'charnames' => '1.01',
1261 'constant' => '1.04',
1262 'diagnostics' => '1.1',
1263 'encoding' => '1.00',
1264 'fields' => '1.02',
1265 'filetest' => '1.00',
1266 'if' => '0.01',
1267 'integer' => '1.00',
1268 'less' => '0.01',
1269 'locale' => '1.00',
1270 'open' => '1.01',
1271 'ops' => '1.00',
1272 'overload' => '1.00',
1273 're' => '0.03',
1274 'sort' => '1.00',
1275 'strict' => '1.02',
1276 'subs' => '1.00',
1277 'threads' => '0.05',
1278 'threads::shared' => '0.90',
1279 'utf8' => '1.00',
1280 'vars' => '1.01',
1281 'vmsish' => '1.00',
1282 'warnings' => '1.00',
1283 'warnings::register' => '1.00',
1284 },
1285 removed => {
a272bf38 1286 }
8f2fd531 1287 },
a272bf38
DL
1288 5.008 => {
1289 delta_from => 5.007003,
1290 changed => {
1291 'Attribute::Handlers' => '0.77',
1292 'B' => '1.01',
1293 'B::Lint' => '1.01',
1294 'B::Xref' => '1.01',
1295 'CGI' => '2.81',
1296 'CGI::Carp' => '1.23',
1297 'CPAN' => '1.61',
b7c1f088 1298 'CPAN::FirstTime' => '1.56',
a272bf38 1299 'CPAN::Nox' => '1.02',
a272bf38
DL
1300 'Digest::MD5' => '2.20',
1301 'Dumpvalue' => '1.11',
1302 'Encode' => '1.75',
1303 'Encode::Alias' => '1.32',
1304 'Encode::Byte' => '1.22',
1305 'Encode::CJKConstants' => '1.00',
1306 'Encode::CN' => '1.24',
1307 'Encode::CN::HZ' => '1.04',
1308 'Encode::Config' => '1.06',
1309 'Encode::EBCDIC' => '1.21',
1310 'Encode::Encoder' => '0.05',
1311 'Encode::Encoding' => '1.30',
1312 'Encode::Guess' => '1.06',
1313 'Encode::JP' => '1.25',
1314 'Encode::JP::H2Z' => '1.02',
1315 'Encode::JP::JIS7' => '1.08',
1316 'Encode::KR' => '1.22',
1317 'Encode::KR::2022_KR' => '1.05',
1318 'Encode::MIME::Header' => '1.05',
1319 'Encode::Symbol' => '1.22',
1320 'Encode::TW' => '1.26',
1321 'Encode::Unicode' => '1.37',
1322 'Exporter::Heavy' => '5.566',
1323 'ExtUtils::Command' => '1.04',
1324 'ExtUtils::Command::MM' => '0.01',
1325 'ExtUtils::Constant' => '0.12',
1326 'ExtUtils::Installed' => '0.06',
1327 'ExtUtils::Liblist' => '1.00',
1328 'ExtUtils::Liblist::Kid'=> '1.29',
1329 'ExtUtils::MM' => '0.04',
1330 'ExtUtils::MM_Any' => '0.04',
1331 'ExtUtils::MM_BeOS' => '1.03',
1332 'ExtUtils::MM_Cygwin' => '1.04',
1333 'ExtUtils::MM_DOS' => '0.01',
1334 'ExtUtils::MM_MacOS' => '1.03',
1335 'ExtUtils::MM_NW5' => '2.05',
1336 'ExtUtils::MM_OS2' => '1.03',
1337 'ExtUtils::MM_UWIN' => '0.01',
1338 'ExtUtils::MM_Unix' => '1.33',
1339 'ExtUtils::MM_VMS' => '5.65',
1340 'ExtUtils::MM_Win32' => '1.05',
1341 'ExtUtils::MM_Win95' => '0.02',
1342 'ExtUtils::MY' => '0.01',
1343 'ExtUtils::MakeMaker' => '6.03',
1344 'ExtUtils::Manifest' => '1.38',
1345 'ExtUtils::Mkbootstrap' => '1.15',
1346 'ExtUtils::Mksymlists' => '1.19',
1347 'ExtUtils::testlib' => '1.15',
1348 'File::CheckTree' => '4.2',
1349 'FileCache' => '1.021',
1350 'Filter::Simple' => '0.78',
1351 'Getopt::Long' => '2.32',
1352 'Hash::Util' => '0.04',
1353 'List::Util' => '1.07_00',
1354 'Locale::Country' => '2.04',
1355 'Math::BigFloat' => '1.35',
1356 'Math::BigFloat::Trace' => '0.01',
1357 'Math::BigInt' => '1.60',
1358 'Math::BigInt::Calc' => '0.30',
1359 'Math::BigInt::Trace' => '0.01',
1360 'Math::BigRat' => '0.07',
1361 'Memoize' => '1.01',
1362 'Memoize::Expire' => '1.00',
1363 'Memoize::ExpireFile' => '1.01',
1364 'Net::FTP' => '2.65',
1365 'Net::FTP::dataconn' => '0.11',
1366 'Net::Ping' => '2.19',
1367 'Net::SMTP' => '2.24',
1368 'PerlIO' => '1.01',
1369 'PerlIO::encoding' => '0.06',
1370 'PerlIO::scalar' => '0.01',
1371 'PerlIO::via' => '0.01',
1372 'PerlIO::via::QuotedPrint'=> '0.04',
1373 'Pod::Man' => '1.33',
1374 'Pod::Text' => '2.19',
6b27384d 1375 'Scalar::Util' => '1.07_00',
a272bf38
DL
1376 'Storable' => '2.04',
1377 'Switch' => '2.09',
1378 'Sys::Syslog' => '0.03',
1379 'Test' => '1.20',
1380 'Test::Builder' => '0.15',
1381 'Test::Harness' => '2.26',
1382 'Test::Harness::Straps' => '0.14',
1383 'Test::More' => '0.45',
1384 'Test::Simple' => '0.45',
1385 'Thread::Queue' => '2.00',
1386 'Thread::Semaphore' => '2.00',
1387 'Tie::File' => '0.93',
1388 'Tie::RefHash' => '1.30',
1389 'Unicode' => '3.2.0',
1390 'Unicode::Collate' => '0.12',
1391 'Unicode::Normalize' => '0.17',
1392 'XS::APItest' => '0.01',
1393 'attributes' => '0.05',
1394 'base' => '1.03',
1395 'bigint' => '0.02',
1396 'bignum' => '0.11',
1397 'bigrat' => '0.04',
1398 'blib' => '1.02',
1399 'encoding' => '1.35',
1400 'sort' => '1.01',
1401 'threads' => '0.99',
1402 },
1403 removed => {
1404 'Encode::Internal' => 1,
1405 'Encode::JP::Constants' => 1,
1406 'Encode::JP::ISO_2022_JP'=> 1,
1407 'Encode::JP::JIS' => 1,
1408 'Encode::JP::Tr' => 1,
1409 'Encode::Tcl' => 1,
1410 'Encode::Tcl::Escape' => 1,
1411 'Encode::Tcl::Extended' => 1,
1412 'Encode::Tcl::HanZi' => 1,
1413 'Encode::Tcl::Table' => 1,
1414 'Encode::XS' => 1,
1415 'Encode::iso10646_1' => 1,
1416 'Encode::usc2_le' => 1,
1417 'Encode::utf8' => 1,
1418 'PerlIO::Scalar' => 1,
1419 'PerlIO::Via' => 1,
1420 }
8f2fd531 1421 },
8f2fd531 1422 5.008001 => {
a272bf38
DL
1423 delta_from => 5.008,
1424 changed => {
1425 'Attribute::Handlers' => '0.78',
1426 'AutoLoader' => '5.60',
1427 'AutoSplit' => '1.04',
1428 'B' => '1.02',
1429 'B::Asmdata' => '1.01',
1430 'B::Assembler' => '0.06',
1431 'B::Bblock' => '1.02',
1432 'B::Bytecode' => '1.01',
1433 'B::C' => '1.02',
1434 'B::Concise' => '0.56',
1435 'B::Debug' => '1.01',
1436 'B::Deparse' => '0.64',
1437 'B::Disassembler' => '1.03',
1438 'B::Lint' => '1.02',
1439 'B::Terse' => '1.02',
1440 'Benchmark' => '1.051',
1441 'ByteLoader' => '0.05',
1442 'CGI' => '3.00',
1443 'CGI::Carp' => '1.26',
1444 'CGI::Cookie' => '1.24',
1445 'CGI::Fast' => '1.041',
1446 'CGI::Pretty' => '1.07_00',
1447 'CGI::Util' => '1.31',
1448 'CPAN' => '1.76_01',
b7c1f088 1449 'CPAN::FirstTime' => '1.60',
a272bf38 1450 'CPAN::Nox' => '1.03',
a272bf38
DL
1451 'Class::Struct' => '0.63',
1452 'Cwd' => '2.08',
1453 'DB_File' => '1.806',
1454 'Data::Dumper' => '2.121',
1455 'Devel::DProf' => '20030813.00',
1456 'Devel::PPPort' => '2.007',
1457 'Devel::Peek' => '1.01',
1458 'Digest' => '1.02',
1459 'Digest::MD5' => '2.27',
1460 'Encode' => '1.9801',
1461 'Encode::Alias' => '1.38',
1462 'Encode::Byte' => '1.23',
1463 'Encode::CJKConstants' => '1.02',
1464 'Encode::CN::HZ' => '1.05',
1465 'Encode::Config' => '1.07',
1466 'Encode::Encoder' => '0.07',
1467 'Encode::Encoding' => '1.33',
1468 'Encode::Guess' => '1.09',
1469 'Encode::JP::JIS7' => '1.12',
1470 'Encode::KR' => '1.23',
1471 'Encode::KR::2022_KR' => '1.06',
1472 'Encode::MIME::Header' => '1.09',
1473 'Encode::Unicode' => '1.40',
1474 'Encode::Unicode::UTF7' => '0.02',
1475 'English' => '1.01',
1476 'Errno' => '1.09_00',
1477 'Exporter' => '5.567',
1478 'Exporter::Heavy' => '5.567',
1479 'ExtUtils::Command' => '1.05',
1480 'ExtUtils::Command::MM' => '0.03',
1481 'ExtUtils::Constant' => '0.14',
1482 'ExtUtils::Install' => '1.32',
1483 'ExtUtils::Installed' => '0.08',
1484 'ExtUtils::Liblist' => '1.01',
1485 'ExtUtils::Liblist::Kid'=> '1.3',
1486 'ExtUtils::MM_Any' => '0.07',
1487 'ExtUtils::MM_BeOS' => '1.04',
1488 'ExtUtils::MM_Cygwin' => '1.06',
1489 'ExtUtils::MM_DOS' => '0.02',
1490 'ExtUtils::MM_MacOS' => '1.07',
1491 'ExtUtils::MM_NW5' => '2.06',
1492 'ExtUtils::MM_OS2' => '1.04',
1493 'ExtUtils::MM_UWIN' => '0.02',
1494 'ExtUtils::MM_Unix' => '1.42',
1495 'ExtUtils::MM_VMS' => '5.70',
1496 'ExtUtils::MM_Win32' => '1.09',
1497 'ExtUtils::MM_Win95' => '0.03',
1498 'ExtUtils::MakeMaker' => '6.17',
1499 'ExtUtils::MakeMaker::bytes'=> '0.01',
1500 'ExtUtils::MakeMaker::vmsish'=> '0.01',
1501 'ExtUtils::Manifest' => '1.42',
1502 'Fcntl' => '1.05',
1503 'File::Basename' => '2.72',
1504 'File::Copy' => '2.06',
1505 'File::Find' => '1.05',
1506 'File::Glob' => '1.02',
1507 'File::Path' => '1.06',
1508 'File::Spec' => '0.86',
1509 'File::Spec::Cygwin' => '1.1',
1510 'File::Spec::Epoc' => '1.1',
1511 'File::Spec::Functions' => '1.3',
1512 'File::Spec::Mac' => '1.4',
1513 'File::Spec::OS2' => '1.2',
1514 'File::Spec::Unix' => '1.5',
1515 'File::Spec::VMS' => '1.4',
1516 'File::Spec::Win32' => '1.4',
1517 'File::Temp' => '0.14',
1518 'FileCache' => '1.03',
1519 'Filter::Util::Call' => '1.0601',
1520 'GDBM_File' => '1.07',
1521 'Getopt::Long' => '2.34',
1522 'Getopt::Std' => '1.04',
1523 'Hash::Util' => '0.05',
1524 'I18N::LangTags' => '0.28',
1525 'I18N::LangTags::List' => '0.26',
1526 'I18N::Langinfo' => '0.02',
1527 'IO' => '1.21',
1528 'IO::Dir' => '1.04',
1529 'IO::File' => '1.10',
1530 'IO::Handle' => '1.23',
1531 'IO::Seekable' => '1.09',
1532 'IO::Select' => '1.16',
1533 'IO::Socket' => '1.28',
1534 'IO::Socket::INET' => '1.27',
1535 'IO::Socket::UNIX' => '1.21',
1536 'IPC::Msg' => '1.02',
1537 'IPC::Open3' => '1.0105',
1538 'IPC::Semaphore' => '1.02',
1539 'IPC::SysV' => '1.04',
1540 'JNI' => '0.2',
1541 'List::Util' => '1.13',
1542 'Locale::Country' => '2.61',
1543 'Locale::Currency' => '2.21',
1544 'Locale::Language' => '2.21',
1545 'Locale::Maketext' => '1.06',
1546 'Locale::Maketext::Guts'=> undef,
1547 'Locale::Maketext::GutsLoader'=> undef,
1548 'Locale::Script' => '2.21',
1549 'MIME::Base64' => '2.20',
1550 'MIME::QuotedPrint' => '2.20',
1551 'Math::BigFloat' => '1.40',
1552 'Math::BigInt' => '1.66',
1553 'Math::BigInt::Calc' => '0.36',
1554 'Math::BigInt::Scalar' => '0.11',
1555 'Math::BigRat' => '0.10',
1556 'Math::Trig' => '1.02',
1557 'NDBM_File' => '1.05',
1558 'NEXT' => '0.60',
1559 'Net::Cmd' => '2.24',
1560 'Net::Domain' => '2.18',
1561 'Net::FTP' => '2.71',
1562 'Net::FTP::A' => '1.16',
1563 'Net::NNTP' => '2.22',
1564 'Net::POP3' => '2.24',
1565 'Net::Ping' => '2.31',
1566 'Net::SMTP' => '2.26',
1567 'Net::hostent' => '1.01',
1568 'Net::servent' => '1.01',
1569 'ODBM_File' => '1.04',
1570 'OS2::DLL' => '1.01',
1571 'OS2::ExtAttr' => '0.02',
1572 'OS2::PrfDB' => '0.03',
1573 'OS2::Process' => '1.01',
1574 'OS2::REXX' => '1.02',
1575 'POSIX' => '1.06',
1576 'PerlIO' => '1.02',
1577 'PerlIO::encoding' => '0.07',
1578 'PerlIO::scalar' => '0.02',
1579 'PerlIO::via' => '0.02',
1580 'PerlIO::via::QuotedPrint'=> '0.05',
1581 'Pod::Checker' => '1.41',
1582 'Pod::Find' => '0.24',
1583 'Pod::Functions' => '1.02',
1584 'Pod::Html' => '1.0501',
1585 'Pod::InputObjects' => '1.14',
1586 'Pod::LaTeX' => '0.55',
1587 'Pod::Man' => '1.37',
1588 'Pod::ParseLink' => '1.06',
1589 'Pod::ParseUtils' => '0.3',
1590 'Pod::Perldoc' => '3.10',
1591 'Pod::Perldoc::BaseTo' => undef,
1592 'Pod::Perldoc::GetOptsOO'=> undef,
1593 'Pod::Perldoc::ToChecker'=> undef,
1594 'Pod::Perldoc::ToMan' => undef,
1595 'Pod::Perldoc::ToNroff' => undef,
1596 'Pod::Perldoc::ToPod' => undef,
1597 'Pod::Perldoc::ToRtf' => undef,
1598 'Pod::Perldoc::ToText' => undef,
4121f36a 1599 'Pod::Perldoc::ToTk' => undef,
a272bf38
DL
1600 'Pod::Perldoc::ToXml' => undef,
1601 'Pod::PlainText' => '2.01',
1602 'Pod::Text' => '2.21',
1603 'Pod::Text::Color' => '1.04',
1604 'Pod::Text::Overstrike' => '1.1',
1605 'Pod::Text::Termcap' => '1.11',
1606 'Pod::Usage' => '1.16',
1607 'SDBM_File' => '1.04',
1608 'Safe' => '2.10',
1609 'Scalar::Util' => '1.13',
1610 'SelfLoader' => '1.0904',
1611 'Shell' => '0.5',
1612 'Socket' => '1.76',
1613 'Storable' => '2.08',
1614 'Switch' => '2.10',
1615 'Symbol' => '1.05',
1616 'Sys::Hostname' => '1.11',
1617 'Sys::Syslog' => '0.04',
1618 'Term::ANSIColor' => '1.07',
1619 'Term::Cap' => '1.08',
1620 'Term::Complete' => '1.401',
1621 'Term::ReadLine' => '1.01',
1622 'Test' => '1.24',
1623 'Test::Builder' => '0.17',
1624 'Test::Harness' => '2.30',
1625 'Test::Harness::Straps' => '0.15',
1626 'Test::More' => '0.47',
1627 'Test::Simple' => '0.47',
1628 'Text::Abbrev' => '1.01',
1629 'Text::Balanced' => '1.95',
1630 'Text::Wrap' => '2001.09291',
1631 'Thread::Semaphore' => '2.01',
1632 'Tie::Array' => '1.03',
1633 'Tie::File' => '0.97',
1634 'Tie::RefHash' => '1.31',
1635 'Time::HiRes' => '1.51',
1636 'Time::Local' => '1.07',
1637 'UNIVERSAL' => '1.01',
1638 'Unicode' => '4.0.0',
1639 'Unicode::Collate' => '0.28',
1640 'Unicode::Normalize' => '0.23',
1641 'Unicode::UCD' => '0.21',
1642 'VMS::Filespec' => '1.11',
1643 'XS::APItest' => '0.02',
1644 'XSLoader' => '0.02',
1645 'attributes' => '0.06',
1646 'base' => '2.03',
1647 'bigint' => '0.04',
1648 'bignum' => '0.14',
1649 'bigrat' => '0.06',
1650 'bytes' => '1.01',
1651 'charnames' => '1.02',
1652 'diagnostics' => '1.11',
1653 'encoding' => '1.47',
1654 'fields' => '2.03',
1655 'filetest' => '1.01',
1656 'if' => '0.03',
1657 'lib' => '0.5565',
1658 'open' => '1.02',
1659 'overload' => '1.01',
1660 're' => '0.04',
1661 'sort' => '1.02',
1662 'strict' => '1.03',
1663 'threads' => '1.00',
1664 'threads::shared' => '0.91',
1665 'utf8' => '1.02',
1666 'vmsish' => '1.01',
1667 'warnings' => '1.03',
1668 },
1669 removed => {
1670 }
8f2fd531 1671 },
8f2fd531 1672 5.008002 => {
a272bf38
DL
1673 delta_from => 5.008001,
1674 changed => {
1675 'DB_File' => '1.807',
1676 'Devel::PPPort' => '2.009',
1677 'Digest::MD5' => '2.30',
1678 'I18N::LangTags' => '0.29',
1679 'I18N::LangTags::List' => '0.29',
1680 'MIME::Base64' => '2.21',
1681 'MIME::QuotedPrint' => '2.21',
1682 'Net::Domain' => '2.19',
1683 'Net::FTP' => '2.72',
1684 'Pod::Perldoc' => '3.11',
a272bf38
DL
1685 'Time::HiRes' => '1.52',
1686 'Unicode::Collate' => '0.30',
1687 'Unicode::Normalize' => '0.25',
1688 },
1689 removed => {
1690 }
8f2fd531 1691 },
ad91da88 1692 5.008003 => {
a272bf38
DL
1693 delta_from => 5.008002,
1694 changed => {
1695 'Benchmark' => '1.052',
1696 'CGI' => '3.01',
1697 'CGI::Carp' => '1.27',
1698 'CGI::Fast' => '1.05',
1699 'CGI::Pretty' => '1.08',
1700 'CGI::Util' => '1.4',
1701 'Cwd' => '2.12',
1702 'DB_File' => '1.808',
1703 'Devel::PPPort' => '2.011',
1704 'Digest' => '1.05',
1705 'Digest::MD5' => '2.33',
1706 'Digest::base' => '1.00',
1707 'Encode' => '1.99',
1708 'Exporter' => '5.57',
1709 'File::CheckTree' => '4.3',
1710 'File::Copy' => '2.07',
1711 'File::Find' => '1.06',
1712 'File::Spec' => '0.87',
1713 'FindBin' => '1.44',
1714 'Getopt::Std' => '1.05',
1715 'Math::BigFloat' => '1.42',
1716 'Math::BigInt' => '1.68',
1717 'Math::BigInt::Calc' => '0.38',
1718 'Math::BigInt::CalcEmu' => '0.02',
1719 'OS2::DLL' => '1.02',
1720 'POSIX' => '1.07',
1721 'PerlIO' => '1.03',
1722 'PerlIO::via::QuotedPrint'=> '0.06',
1723 'Pod::Html' => '1.0502',
1724 'Pod::Parser' => '1.14',
1725 'Pod::Perldoc' => '3.12',
a272bf38
DL
1726 'Pod::PlainText' => '2.02',
1727 'Storable' => '2.09',
1728 'Test::Harness' => '2.40',
1729 'Test::Harness::Assert' => '0.02',
1730 'Test::Harness::Iterator'=> '0.02',
1731 'Test::Harness::Straps' => '0.19',
1732 'Tie::Hash' => '1.01',
1733 'Unicode::Collate' => '0.33',
1734 'Unicode::Normalize' => '0.28',
1735 'XS::APItest' => '0.03',
1736 'base' => '2.04',
1737 'diagnostics' => '1.12',
1738 'encoding' => '1.48',
1739 'threads' => '1.01',
1740 'threads::shared' => '0.92',
1741 },
1742 removed => {
1743 'Math::BigInt::Scalar' => 1,
1744 }
8f2fd531
JB
1745 },
1746 5.008004 => {
a272bf38
DL
1747 delta_from => 5.008003,
1748 changed => {
1749 'Attribute::Handlers' => '0.78_01',
1750 'B::Assembler' => '0.07',
1751 'B::Concise' => '0.60',
1752 'B::Deparse' => '0.66',
1753 'Benchmark' => '1.06',
1754 'CGI' => '3.04',
1755 'Carp' => '1.02',
1756 'Cwd' => '2.17',
1757 'DBM_Filter' => '0.01',
1758 'DBM_Filter::compress' => '0.01',
1759 'DBM_Filter::encode' => '0.01',
1760 'DBM_Filter::int32' => '0.01',
1761 'DBM_Filter::null' => '0.01',
1762 'DBM_Filter::utf8' => '0.01',
1763 'Digest' => '1.06',
1764 'DynaLoader' => '1.05',
1765 'Encode' => '1.99_01',
1766 'Encode::CN::HZ' => '1.0501',
1767 'Exporter' => '5.58',
1768 'Exporter::Heavy' => '5.57',
1769 'ExtUtils::Liblist::Kid'=> '1.3001',
1770 'ExtUtils::MM_NW5' => '2.07_02',
1771 'ExtUtils::MM_Win95' => '0.0301',
1772 'File::Find' => '1.07',
1773 'IO::Handle' => '1.24',
1774 'IO::Pipe' => '1.123',
1775 'IPC::Open3' => '1.0106',
1776 'Locale::Maketext' => '1.08',
1777 'MIME::Base64' => '3.01',
1778 'MIME::QuotedPrint' => '3.01',
1779 'Math::BigFloat' => '1.44',
1780 'Math::BigInt' => '1.70',
1781 'Math::BigInt::Calc' => '0.40',
1782 'Math::BigInt::CalcEmu' => '0.04',
1783 'Math::BigRat' => '0.12',
1784 'ODBM_File' => '1.05',
1785 'POSIX' => '1.08',
1786 'Shell' => '0.5.2',
1787 'Socket' => '1.77',
1788 'Storable' => '2.12',
1789 'Sys::Syslog' => '0.05',
1790 'Term::ANSIColor' => '1.08',
1791 'Time::HiRes' => '1.59',
1792 'Unicode' => '4.0.1',
1793 'Unicode::UCD' => '0.22',
70c5bd90 1794 'Win32' => '0.23',
a272bf38
DL
1795 'base' => '2.05',
1796 'bigint' => '0.05',
1797 'bignum' => '0.15',
1798 'charnames' => '1.03',
1799 'open' => '1.03',
1800 'threads' => '1.03',
1801 'utf8' => '1.03',
1802 },
1803 removed => {
1804 }
8f2fd531 1805 },
ad91da88 1806 5.008005 => {
a272bf38
DL
1807 delta_from => 5.008004,
1808 changed => {
1809 'B::Concise' => '0.61',
1810 'B::Deparse' => '0.67',
1811 'CGI' => '3.05',
1812 'CGI::Carp' => '1.28',
1813 'CGI::Util' => '1.5',
1814 'Carp' => '1.03',
e1f9e915 1815 'Carp::Heavy' => '1.03',
a272bf38
DL
1816 'Cwd' => '2.19',
1817 'DB_File' => '1.809',
1818 'Digest' => '1.08',
1819 'Encode' => '2.01',
1820 'Encode::Alias' => '2.00',
1821 'Encode::Byte' => '2.00',
1822 'Encode::CJKConstants' => '2.00',
1823 'Encode::CN' => '2.00',
1824 'Encode::CN::HZ' => '2.01',
1825 'Encode::Config' => '2.00',
1826 'Encode::EBCDIC' => '2.00',
1827 'Encode::Encoder' => '2.00',
1828 'Encode::Encoding' => '2.00',
1829 'Encode::Guess' => '2.00',
1830 'Encode::JP' => '2.00',
1831 'Encode::JP::H2Z' => '2.00',
1832 'Encode::JP::JIS7' => '2.00',
1833 'Encode::KR' => '2.00',
1834 'Encode::KR::2022_KR' => '2.00',
1835 'Encode::MIME::Header' => '2.00',
1836 'Encode::Symbol' => '2.00',
1837 'Encode::TW' => '2.00',
1838 'Encode::Unicode' => '2.00',
1839 'Encode::Unicode::UTF7' => '2.01',
1840 'File::Basename' => '2.73',
1841 'File::Copy' => '2.08',
1842 'File::Glob' => '1.03',
1843 'FileCache' => '1.04_01',
1844 'I18N::LangTags' => '0.33',
1845 'I18N::LangTags::Detect'=> '1.03',
1846 'List::Util' => '1.14',
1847 'Locale::Constants' => '2.07',
1848 'Locale::Country' => '2.07',
1849 'Locale::Currency' => '2.07',
1850 'Locale::Language' => '2.07',
1851 'Locale::Maketext' => '1.09',
1852 'Locale::Script' => '2.07',
1853 'Net::Cmd' => '2.26',
1854 'Net::FTP' => '2.75',
1855 'Net::NNTP' => '2.23',
1856 'Net::POP3' => '2.28',
1857 'Net::SMTP' => '2.29',
1858 'Net::Time' => '2.10',
1859 'Pod::Checker' => '1.42',
1860 'Pod::Find' => '0.2401',
1861 'Pod::LaTeX' => '0.56',
1862 'Pod::ParseUtils' => '1.2',
1863 'Pod::Perldoc' => '3.13',
1864 'Safe' => '2.11',
1865 'Scalar::Util' => '1.14',
1866 'Shell' => '0.6',
1867 'Storable' => '2.13',
1868 'Term::Cap' => '1.09',
1869 'Test' => '1.25',
1870 'Test::Harness' => '2.42',
1871 'Text::ParseWords' => '3.22',
1872 'Text::Wrap' => '2001.09292',
1873 'Time::Local' => '1.10',
1874 'Unicode::Collate' => '0.40',
1875 'Unicode::Normalize' => '0.30',
1876 'XS::APItest' => '0.04',
1877 'autouse' => '1.04',
1878 'base' => '2.06',
1879 'charnames' => '1.04',
1880 'diagnostics' => '1.13',
1881 'encoding' => '2.00',
1882 'threads' => '1.05',
1883 'utf8' => '1.04',
1884 },
1885 removed => {
1886 }
8f2fd531
JB
1887 },
1888 5.008006 => {
a272bf38
DL
1889 delta_from => 5.008005,
1890 changed => {
1891 'B' => '1.07',
1892 'B::C' => '1.04',
1893 'B::Concise' => '0.64',
1894 'B::Debug' => '1.02',
1895 'B::Deparse' => '0.69',
1896 'B::Lint' => '1.03',
1897 'B::Showlex' => '1.02',
a272bf38
DL
1898 'Cwd' => '3.01',
1899 'DB_File' => '1.810',
1900 'Data::Dumper' => '2.121_02',
1901 'Devel::PPPort' => '3.03',
1902 'Devel::Peek' => '1.02',
1903 'Encode' => '2.08',
1904 'Encode::Alias' => '2.02',
1905 'Encode::Encoding' => '2.02',
1906 'Encode::JP' => '2.01',
1907 'Encode::Unicode' => '2.02',
1908 'Exporter::Heavy' => '5.58',
1909 'ExtUtils::Constant' => '0.1401',
1910 'File::Spec' => '3.01',
1911 'File::Spec::Win32' => '1.5',
1912 'I18N::LangTags' => '0.35',
1913 'I18N::LangTags::List' => '0.35',
1914 'MIME::Base64' => '3.05',
1915 'MIME::QuotedPrint' => '3.03',
1916 'Math::BigFloat' => '1.47',
1917 'Math::BigInt' => '1.73',
1918 'Math::BigInt::Calc' => '0.43',
1919 'Math::BigRat' => '0.13',
1920 'Text::ParseWords' => '3.23',
1921 'Time::HiRes' => '1.65',
1922 'XS::APItest' => '0.05',
1923 'diagnostics' => '1.14',
1924 'encoding' => '2.01',
1925 'open' => '1.04',
1926 'overload' => '1.02',
1927 },
1928 removed => {
1929 }
c9600ef6 1930 },
cda59a31 1931 5.008007 => {
a272bf38
DL
1932 delta_from => 5.008006,
1933 changed => {
1934 'B' => '1.09',
1935 'B::Concise' => '0.65',
1936 'B::Deparse' => '0.7',
1937 'B::Disassembler' => '1.04',
1938 'B::Terse' => '1.03',
1939 'Benchmark' => '1.07',
1940 'CGI' => '3.10',
1941 'CGI::Carp' => '1.29',
1942 'CGI::Cookie' => '1.25',
1943 'Carp' => '1.04',
1944 'Carp::Heavy' => '1.04',
1945 'Class::ISA' => '0.33',
1946 'Cwd' => '3.05',
1947 'DB_File' => '1.811',
1948 'Data::Dumper' => '2.121_04',
1949 'Devel::DProf' => '20050310.00',
1950 'Devel::PPPort' => '3.06',
1951 'Digest' => '1.10',
1952 'Digest::file' => '0.01',
1953 'Encode' => '2.10',
1954 'Encode::Alias' => '2.03',
1955 'Errno' => '1.09_01',
1956 'ExtUtils::Constant' => '0.16',
1957 'ExtUtils::Constant::Base'=> '0.01',
1958 'ExtUtils::Constant::Utils'=> '0.01',
1959 'ExtUtils::Constant::XS'=> '0.01',
1960 'File::Find' => '1.09',
1961 'File::Glob' => '1.04',
1962 'File::Path' => '1.07',
1963 'File::Spec' => '3.05',
1964 'File::Temp' => '0.16',
1965 'FileCache' => '1.05',
1966 'IO::File' => '1.11',
1967 'IO::Socket::INET' => '1.28',
1968 'Math::BigFloat' => '1.51',
1969 'Math::BigInt' => '1.77',
1970 'Math::BigInt::Calc' => '0.47',
1971 'Math::BigInt::CalcEmu' => '0.05',
1972 'Math::BigRat' => '0.15',
1973 'Pod::Find' => '1.3',
1974 'Pod::Html' => '1.0503',
1975 'Pod::InputObjects' => '1.3',
1976 'Pod::LaTeX' => '0.58',
1977 'Pod::ParseUtils' => '1.3',
1978 'Pod::Parser' => '1.3',
1979 'Pod::Perldoc' => '3.14',
a272bf38
DL
1980 'Pod::Select' => '1.3',
1981 'Pod::Usage' => '1.3',
1982 'SelectSaver' => '1.01',
1983 'Symbol' => '1.06',
1984 'Sys::Syslog' => '0.06',
1985 'Term::ANSIColor' => '1.09',
1986 'Term::Complete' => '1.402',
1987 'Test::Builder' => '0.22',
1988 'Test::Harness' => '2.48',
1989 'Test::Harness::Point' => '0.01',
1990 'Test::Harness::Straps' => '0.23',
1991 'Test::More' => '0.54',
1992 'Test::Simple' => '0.54',
1993 'Text::ParseWords' => '3.24',
1994 'Text::Wrap' => '2001.09293',
1995 'Tie::RefHash' => '1.32',
1996 'Time::HiRes' => '1.66',
1997 'Time::Local' => '1.11',
1998 'Unicode' => '4.1.0',
1999 'Unicode::Normalize' => '0.32',
2000 'Unicode::UCD' => '0.23',
2001 'Win32' => '0.24',
2002 'XS::APItest' => '0.06',
2003 'base' => '2.07',
2004 'bigint' => '0.07',
2005 'bignum' => '0.17',
2006 'bigrat' => '0.08',
2007 'bytes' => '1.02',
2008 'constant' => '1.05',
2009 'overload' => '1.03',
2010 'threads::shared' => '0.93',
2011 'utf8' => '1.05',
2012 },
2013 removed => {
2014 'JNI' => 1,
2015 'JPL::AutoLoader' => 1,
2016 'JPL::Class' => 1,
2017 'JPL::Compile' => 1,
a272bf38 2018 }
f372d768
RGS
2019 },
2020 5.008008 => {
a272bf38
DL
2021 delta_from => 5.008007,
2022 changed => {
2023 'Attribute::Handlers' => '0.78_02',
2024 'B' => '1.09_01',
2025 'B::Bblock' => '1.02_01',
2026 'B::Bytecode' => '1.01_01',
2027 'B::C' => '1.04_01',
2028 'B::CC' => '1.00_01',
2029 'B::Concise' => '0.66',
2030 'B::Debug' => '1.02_01',
2031 'B::Deparse' => '0.71',
2032 'B::Disassembler' => '1.05',
2033 'B::Terse' => '1.03_01',
2034 'ByteLoader' => '0.06',
2035 'CGI' => '3.15',
2036 'CGI::Cookie' => '1.26',
2037 'CPAN' => '1.76_02',
2038 'Cwd' => '3.12',
2039 'DB' => '1.01',
2040 'DB_File' => '1.814',
2041 'Data::Dumper' => '2.121_08',
2042 'Devel::DProf' => '20050603.00',
2043 'Devel::PPPort' => '3.06_01',
2044 'Devel::Peek' => '1.03',
2045 'Digest' => '1.14',
2046 'Digest::MD5' => '2.36',
2047 'Digest::file' => '1.00',
2048 'Dumpvalue' => '1.12',
2049 'Encode' => '2.12',
2050 'Encode::Alias' => '2.04',
2051 'Encode::Config' => '2.01',
2052 'Encode::MIME::Header' => '2.01',
2053 'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
2054 'English' => '1.02',
2055 'ExtUtils::Command' => '1.09',
2056 'ExtUtils::Command::MM' => '0.05',
2057 'ExtUtils::Constant' => '0.17',
2058 'ExtUtils::Embed' => '1.26',
2059 'ExtUtils::Install' => '1.33',
2060 'ExtUtils::Liblist::Kid'=> '1.3',
2061 'ExtUtils::MM' => '0.05',
2062 'ExtUtils::MM_AIX' => '0.03',
2063 'ExtUtils::MM_Any' => '0.13',
2064 'ExtUtils::MM_BeOS' => '1.05',
2065 'ExtUtils::MM_Cygwin' => '1.08',
2066 'ExtUtils::MM_MacOS' => '1.08',
2067 'ExtUtils::MM_NW5' => '2.08',
2068 'ExtUtils::MM_OS2' => '1.05',
2069 'ExtUtils::MM_QNX' => '0.02',
2070 'ExtUtils::MM_Unix' => '1.50',
2071 'ExtUtils::MM_VMS' => '5.73',
2072 'ExtUtils::MM_VOS' => '0.02',
2073 'ExtUtils::MM_Win32' => '1.12',
2074 'ExtUtils::MM_Win95' => '0.04',
2075 'ExtUtils::MakeMaker' => '6.30',
2076 'ExtUtils::MakeMaker::Config'=> '0.02',
2077 'ExtUtils::Manifest' => '1.46',
2078 'File::Basename' => '2.74',
2079 'File::Copy' => '2.09',
2080 'File::Find' => '1.10',
2081 'File::Glob' => '1.05',
2082 'File::Path' => '1.08',
2083 'File::Spec' => '3.12',
2084 'File::Spec::Win32' => '1.6',
2085 'FileCache' => '1.06',
2086 'Filter::Simple' => '0.82',
2087 'FindBin' => '1.47',
2088 'GDBM_File' => '1.08',
2089 'Getopt::Long' => '2.35',
2090 'IO' => '1.22',
2091 'IO::Dir' => '1.05',
2092 'IO::File' => '1.13',
2093 'IO::Handle' => '1.25',
2094 'IO::Pipe' => '1.13',
2095 'IO::Poll' => '0.07',
2096 'IO::Seekable' => '1.10',
2097 'IO::Select' => '1.17',
2098 'IO::Socket' => '1.29',
2099 'IO::Socket::INET' => '1.29',
2100 'IO::Socket::UNIX' => '1.22',
2101 'IPC::Open2' => '1.02',
2102 'IPC::Open3' => '1.02',
2103 'List::Util' => '1.18',
2104 'MIME::Base64' => '3.07',
2105 'MIME::QuotedPrint' => '3.07',
2106 'Math::Complex' => '1.35',
2107 'Math::Trig' => '1.03',
2108 'NDBM_File' => '1.06',
2109 'ODBM_File' => '1.06',
78da2da6
CBW
2110 'OS2::PrfDB' => '0.04',
2111 'OS2::Process' => '1.02',
2112 'OS2::REXX' => '1.03',
a272bf38
DL
2113 'Opcode' => '1.06',
2114 'POSIX' => '1.09',
2115 'PerlIO' => '1.04',
2116 'PerlIO::encoding' => '0.09',
2117 'PerlIO::scalar' => '0.04',
2118 'PerlIO::via' => '0.03',
2119 'Pod::Checker' => '1.43',
2120 'Pod::Find' => '1.34',
2121 'Pod::Functions' => '1.03',
2122 'Pod::Html' => '1.0504',
2123 'Pod::ParseUtils' => '1.33',
2124 'Pod::Parser' => '1.32',
2125 'Pod::Usage' => '1.33',
2126 'SDBM_File' => '1.05',
2127 'Safe' => '2.12',
2128 'Scalar::Util' => '1.18',
2129 'Socket' => '1.78',
2130 'Storable' => '2.15',
2131 'Switch' => '2.10_01',
2132 'Sys::Syslog' => '0.13',
2133 'Term::ANSIColor' => '1.10',
2134 'Term::ReadLine' => '1.02',
2135 'Test::Builder' => '0.32',
2136 'Test::Builder::Module' => '0.02',
2137 'Test::Builder::Tester' => '1.02',
2138 'Test::Builder::Tester::Color'=> undef,
2139 'Test::Harness' => '2.56',
2140 'Test::Harness::Straps' => '0.26',
2141 'Test::More' => '0.62',
2142 'Test::Simple' => '0.62',
2143 'Text::Tabs' => '2005.0824',
2144 'Text::Wrap' => '2005.082401',
2145 'Tie::Hash' => '1.02',
2146 'Time::HiRes' => '1.86',
2147 'Unicode::Collate' => '0.52',
2148 'Unicode::UCD' => '0.24',
2149 'User::grent' => '1.01',
2150 'Win32' => '0.2601',
2151 'XS::APItest' => '0.08',
2152 'XS::Typemap' => '0.02',
2153 'XSLoader' => '0.06',
2154 'attrs' => '1.02',
2155 'autouse' => '1.05',
2156 'blib' => '1.03',
2157 'charnames' => '1.05',
2158 'diagnostics' => '1.15',
2159 'encoding' => '2.02',
2160 'if' => '0.05',
2161 'open' => '1.05',
2162 'ops' => '1.01',
2163 'overload' => '1.04',
2164 're' => '0.05',
2165 'threads' => '1.07',
2166 'threads::shared' => '0.94',
2167 'utf8' => '1.06',
2168 'vmsish' => '1.02',
2169 'warnings' => '1.05',
2170 'warnings::register' => '1.01',
2171 },
2172 removed => {
2173 }
2174 },
2175 5.008009 => {
2176 delta_from => 5.008008,
2177 changed => {
2178 'Attribute::Handlers' => '0.78_03',
2179 'AutoLoader' => '5.67',
2180 'AutoSplit' => '1.06',
2181 'B' => '1.19',
2182 'B::Asmdata' => '1.02',
2183 'B::Assembler' => '0.08',
2184 'B::C' => '1.05',
2185 'B::Concise' => '0.76',
2186 'B::Debug' => '1.05',
2187 'B::Deparse' => '0.87',
2188 'B::Lint' => '1.11',
2189 'B::Lint::Debug' => undef,
2190 'B::Terse' => '1.05',
2191 'Benchmark' => '1.1',
2192 'CGI' => '3.42',
2193 'CGI::Carp' => '1.30_01',
2194 'CGI::Cookie' => '1.29',
2195 'CGI::Fast' => '1.07',
2196 'CGI::Util' => '1.5_01',
2197 'CPAN' => '1.9301',
2198 'CPAN::Debug' => '5.5',
2199 'CPAN::DeferedCode' => '5.50',
2200 'CPAN::Distroprefs' => '6',
2201 'CPAN::FirstTime' => '5.5_01',
2202 'CPAN::HandleConfig' => '5.5',
2203 'CPAN::Kwalify' => '5.50',
2204 'CPAN::Nox' => '5.50',
2205 'CPAN::Queue' => '5.5',
2206 'CPAN::Tarzip' => '5.5',
2207 'CPAN::Version' => '5.5',
2208 'Carp' => '1.10',
2209 'Carp::Heavy' => '1.10',
2210 'Cwd' => '3.29',
2211 'DBM_Filter' => '0.02',
2212 'DBM_Filter::compress' => '0.02',
2213 'DBM_Filter::encode' => '0.02',
2214 'DBM_Filter::int32' => '0.02',
2215 'DBM_Filter::null' => '0.02',
2216 'DBM_Filter::utf8' => '0.02',
2217 'DB_File' => '1.817',
2218 'Data::Dumper' => '2.121_17',
2219 'Devel::DProf' => '20080331.00',
2220 'Devel::InnerPackage' => '0.3',
2221 'Devel::PPPort' => '3.14',
2222 'Devel::Peek' => '1.04',
2223 'Digest' => '1.15',
2224 'Digest::MD5' => '2.37',
2225 'DirHandle' => '1.02',
2226 'DynaLoader' => '1.09',
2227 'Encode' => '2.26',
2228 'Encode::Alias' => '2.10',
2229 'Encode::Byte' => '2.03',
2230 'Encode::CJKConstants' => '2.02',
2231 'Encode::CN' => '2.02',
2232 'Encode::CN::HZ' => '2.05',
2233 'Encode::Config' => '2.05',
2234 'Encode::EBCDIC' => '2.02',
2235 'Encode::Encoder' => '2.01',
2236 'Encode::Encoding' => '2.05',
2237 'Encode::GSM0338' => '2.01',
2238 'Encode::Guess' => '2.02',
2239 'Encode::JP' => '2.03',
2240 'Encode::JP::H2Z' => '2.02',
2241 'Encode::JP::JIS7' => '2.04',
2242 'Encode::KR' => '2.02',
2243 'Encode::KR::2022_KR' => '2.02',
2244 'Encode::MIME::Header' => '2.05',
2245 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2246 'Encode::MIME::Name' => '1.01',
2247 'Encode::Symbol' => '2.02',
2248 'Encode::TW' => '2.02',
2249 'Encode::Unicode' => '2.05',
2250 'Encode::Unicode::UTF7' => '2.04',
2251 'English' => '1.03',
2252 'Errno' => '1.10',
2253 'Exporter' => '5.63',
2254 'Exporter::Heavy' => '5.63',
2255 'ExtUtils::Command' => '1.15',
2256 'ExtUtils::Command::MM' => '6.48',
2257 'ExtUtils::Constant' => '0.21',
2258 'ExtUtils::Constant::Base'=> '0.04',
2259 'ExtUtils::Constant::ProxySubs'=> '0.06',
2260 'ExtUtils::Constant::Utils'=> '0.02',
2261 'ExtUtils::Constant::XS'=> '0.02',
2262 'ExtUtils::Embed' => '1.28',
2263 'ExtUtils::Install' => '1.50_01',
2264 'ExtUtils::Installed' => '1.43',
2265 'ExtUtils::Liblist' => '6.48',
2266 'ExtUtils::Liblist::Kid'=> '6.48',
2267 'ExtUtils::MM' => '6.48',
2268 'ExtUtils::MM_AIX' => '6.48',
2269 'ExtUtils::MM_Any' => '6.48',
2270 'ExtUtils::MM_BeOS' => '6.48',
2271 'ExtUtils::MM_Cygwin' => '6.48',
2272 'ExtUtils::MM_DOS' => '6.48',
2273 'ExtUtils::MM_Darwin' => '6.48',
2274 'ExtUtils::MM_MacOS' => '6.48',
2275 'ExtUtils::MM_NW5' => '6.48',
2276 'ExtUtils::MM_OS2' => '6.48',
2277 'ExtUtils::MM_QNX' => '6.48',
2278 'ExtUtils::MM_UWIN' => '6.48',
2279 'ExtUtils::MM_Unix' => '6.48',
2280 'ExtUtils::MM_VMS' => '6.48',
2281 'ExtUtils::MM_VOS' => '6.48',
2282 'ExtUtils::MM_Win32' => '6.48',
2283 'ExtUtils::MM_Win95' => '6.48',
2284 'ExtUtils::MY' => '6.48',
2285 'ExtUtils::MakeMaker' => '6.48',
2286 'ExtUtils::MakeMaker::Config'=> '6.48',
2287 'ExtUtils::MakeMaker::bytes'=> '6.48',
2288 'ExtUtils::MakeMaker::vmsish'=> '6.48',
2289 'ExtUtils::Manifest' => '1.55',
2290 'ExtUtils::Mkbootstrap' => '6.48',
2291 'ExtUtils::Mksymlists' => '6.48',
2292 'ExtUtils::Packlist' => '1.43',
2293 'ExtUtils::ParseXS' => '2.19',
2294 'ExtUtils::XSSymSet' => '1.1',
2295 'ExtUtils::testlib' => '6.48',
2296 'Fatal' => '1.06',
2297 'Fcntl' => '1.06',
2298 'File::Basename' => '2.77',
2299 'File::CheckTree' => '4.4',
2300 'File::Compare' => '1.1005',
2301 'File::Copy' => '2.13',
2302 'File::DosGlob' => '1.01',
2303 'File::Find' => '1.13',
2304 'File::Glob' => '1.06',
2305 'File::Path' => '2.07_02',
2306 'File::Spec' => '3.29',
2307 'File::Spec::Cygwin' => '3.29',
2308 'File::Spec::Epoc' => '3.29',
2309 'File::Spec::Functions' => '3.29',
2310 'File::Spec::Mac' => '3.29',
2311 'File::Spec::OS2' => '3.29',
2312 'File::Spec::Unix' => '3.29',
2313 'File::Spec::VMS' => '3.29',
2314 'File::Spec::Win32' => '3.29',
2315 'File::Temp' => '0.20',
2316 'File::stat' => '1.01',
2317 'FileCache' => '1.07',
2318 'Filter::Simple' => '0.83',
2319 'Filter::Util::Call' => '1.07',
2320 'FindBin' => '1.49',
2321 'GDBM_File' => '1.09',
2322 'Getopt::Long' => '2.37',
2323 'Getopt::Std' => '1.06',
2324 'Hash::Util' => '0.06',
2325 'IO' => '1.23',
2326 'IO::Dir' => '1.06',
2327 'IO::File' => '1.14',
2328 'IO::Handle' => '1.27',
2329 'IO::Socket' => '1.30',
2330 'IO::Socket::INET' => '1.31',
2331 'IO::Socket::UNIX' => '1.23',
2332 'IPC::Msg' => '2.00',
2333 'IPC::Open2' => '1.03',
2334 'IPC::Open3' => '1.03',
2335 'IPC::Semaphore' => '2.00',
2336 'IPC::SharedMem' => '2.00',
2337 'IPC::SysV' => '2.00',
2338 'List::Util' => '1.19',
2339 'Locale::Maketext' => '1.13',
2340 'Locale::Maketext::Guts'=> '1.13',
2341 'Locale::Maketext::GutsLoader'=> '1.13',
2342 'Math::BigFloat' => '1.60',
2343 'Math::BigInt' => '1.89',
2344 'Math::BigInt::Calc' => '0.52',
2345 'Math::BigRat' => '0.22',
2346 'Math::Complex' => '1.54',
2347 'Math::Trig' => '1.18',
2348 'Module::CoreList' => '2.17',
2349 'Module::Pluggable' => '3.8',
2350 'Module::Pluggable::Object'=> '3.6',
2351 'NDBM_File' => '1.07',
2352 'NEXT' => '0.61',
2353 'Net::Cmd' => '2.29',
2354 'Net::Config' => '1.11',
2355 'Net::Domain' => '2.20',
2356 'Net::FTP' => '2.77',
2357 'Net::FTP::A' => '1.18',
2358 'Net::NNTP' => '2.24',
2359 'Net::POP3' => '2.29',
2360 'Net::Ping' => '2.35',
2361 'Net::SMTP' => '2.31',
2362 'O' => '1.01',
2363 'ODBM_File' => '1.07',
78da2da6
CBW
2364 'OS2::DLL' => '1.03',
2365 'OS2::Process' => '1.03',
a272bf38
DL
2366 'Opcode' => '1.0601',
2367 'POSIX' => '1.15',
2368 'PerlIO' => '1.05',
2369 'PerlIO::encoding' => '0.11',
2370 'PerlIO::scalar' => '0.06',
2371 'PerlIO::via' => '0.05',
2372 'Pod::Html' => '1.09',
2373 'Pod::ParseUtils' => '1.35',
2374 'Pod::Parser' => '1.35',
2375 'Pod::Select' => '1.35',
2376 'Pod::Usage' => '1.35',
2377 'SDBM_File' => '1.06',
2378 'Safe' => '2.16',
2379 'Scalar::Util' => '1.19',
2380 'SelfLoader' => '1.17',
2381 'Shell' => '0.72',
2382 'Socket' => '1.81',
2383 'Storable' => '2.19',
2384 'Switch' => '2.13',
2385 'Sys::Syslog' => '0.27',
2386 'Sys::Syslog::win32::Win32'=> undef,
2387 'Term::ANSIColor' => '1.12',
2388 'Term::Cap' => '1.12',
2389 'Term::ReadLine' => '1.03',
2390 'Test::Builder' => '0.80',
2391 'Test::Builder::Module' => '0.80',
2392 'Test::Builder::Tester' => '1.13',
2393 'Test::Harness' => '2.64',
2394 'Test::Harness::Results'=> '0.01_01',
2395 'Test::Harness::Straps' => '0.26_01',
2396 'Test::Harness::Util' => '0.01',
2397 'Test::More' => '0.80',
2398 'Test::Simple' => '0.80',
2399 'Text::Balanced' => '1.98',
2400 'Text::ParseWords' => '3.27',
2401 'Text::Soundex' => '3.03',
2402 'Text::Tabs' => '2007.1117',
2403 'Text::Wrap' => '2006.1117',
2404 'Thread' => '2.01',
2405 'Thread::Queue' => '2.11',
2406 'Thread::Semaphore' => '2.09',
2407 'Tie::Handle' => '4.2',
2408 'Tie::Hash' => '1.03',
2409 'Tie::Memoize' => '1.1',
2410 'Tie::RefHash' => '1.38',
2411 'Tie::Scalar' => '1.01',
2412 'Tie::StdHandle' => '4.2',
2413 'Time::HiRes' => '1.9715',
2414 'Time::Local' => '1.1901',
2415 'Time::gmtime' => '1.03',
2416 'Unicode' => '5.1.0',
2417 'Unicode::Normalize' => '1.02',
2418 'Unicode::UCD' => '0.25',
2419 'VMS::DCLsym' => '1.03',
2420 'VMS::Stdio' => '2.4',
2421 'Win32' => '0.38',
2422 'Win32API::File' => '0.1001_01',
2423 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2424 'Win32CORE' => '0.02',
2425 'XS::APItest' => '0.15',
2426 'XS::Typemap' => '0.03',
2427 'XSLoader' => '0.10',
2428 'attributes' => '0.09',
2429 'autouse' => '1.06',
2430 'base' => '2.13',
2431 'bigint' => '0.23',
2432 'bignum' => '0.23',
2433 'bigrat' => '0.23',
2434 'blib' => '1.04',
2435 'charnames' => '1.06',
2436 'constant' => '1.17',
2437 'diagnostics' => '1.16',
2438 'encoding' => '2.6_01',
2439 'fields' => '2.12',
2440 'filetest' => '1.02',
2441 'lib' => '0.61',
2442 'open' => '1.06',
2443 'ops' => '1.02',
2444 'overload' => '1.06',
2445 're' => '0.0601',
2446 'sigtrap' => '1.04',
2447 'threads' => '1.71',
2448 'threads::shared' => '1.27',
2449 'utf8' => '1.07',
2450 'warnings' => '1.05_01',
2451 },
2452 removed => {
2453 }
2454 },
2455 5.009 => {
2456 delta_from => 5.008002,
2457 changed => {
2458 'B' => '1.03',
2459 'B::C' => '1.03',
2460 'B::Concise' => '0.57',
2461 'B::Deparse' => '0.65',
2462 'DB_File' => '1.806',
2463 'Devel::PPPort' => '2.008',
2464 'English' => '1.02',
2465 'Fatal' => '1.04',
2466 'OS2::DLL' => '1.02',
2467 'Opcode' => '1.06',
a272bf38
DL
2468 'Time::HiRes' => '1.51',
2469 'Unicode::Collate' => '0.28',
2470 'Unicode::Normalize' => '0.23',
2471 'XSLoader' => '0.03',
2472 'assertions' => '0.01',
2473 'assertions::activate' => '0.01',
2474 'overload' => '1.02',
2475 'version' => '0.29',
2476 },
2477 removed => {
2478 }
2479 },
2480 5.009001 => {
2481 delta_from => 5.008004,
2482 changed => {
2483 'B' => '1.05',
2484 'B::Assembler' => '0.06',
2485 'B::C' => '1.04',
2486 'B::Concise' => '0.59',
2487 'B::Debug' => '1.02',
2488 'B::Deparse' => '0.65',
2489 'DB_File' => '1.808_01',
2490 'Devel::PPPort' => '2.011_01',
2491 'Digest' => '1.05',
2492 'DynaLoader' => '1.04',
2493 'English' => '1.02',
2494 'Exporter::Heavy' => '5.567',
2495 'ExtUtils::Command' => '1.07',
2496 'ExtUtils::Liblist::Kid'=> '1.3',
2497 'ExtUtils::MM_Any' => '0.0901',
2498 'ExtUtils::MM_Cygwin' => '1.07',
2499 'ExtUtils::MM_NW5' => '2.07_01',
2500 'ExtUtils::MM_Unix' => '1.45_01',
2501 'ExtUtils::MM_VMS' => '5.71_01',
2502 'ExtUtils::MM_Win32' => '1.10_01',
2503 'ExtUtils::MM_Win95' => '0.03',
2504 'ExtUtils::MakeMaker' => '6.21_02',
2505 'ExtUtils::Manifest' => '1.43',
2506 'Fatal' => '1.04',
2507 'Getopt::Long' => '2.3401',
2508 'IO::Handle' => '1.23',
2509 'IO::Pipe' => '1.122',
2510 'IPC::Open3' => '1.0105',
2511 'MIME::Base64' => '3.00_01',
2512 'MIME::QuotedPrint' => '3.00',
2513 'Memoize' => '1.01_01',
2514 'ODBM_File' => '1.04',
2515 'Opcode' => '1.06',
2516 'POSIX' => '1.07',
2517 'Storable' => '2.11',
2518 'Time::HiRes' => '1.56',
2519 'Time::Local' => '1.07_94',
2520 'UNIVERSAL' => '1.02',
2521 'Unicode' => '4.0.0',
2522 'Unicode::UCD' => '0.21',
2523 'XSLoader' => '0.03',
2524 'assertions' => '0.01',
2525 'assertions::activate' => '0.01',
2526 'base' => '2.04',
2527 'if' => '0.0401',
2528 'open' => '1.02',
2529 'overload' => '1.02',
2530 'threads' => '1.02',
2531 'utf8' => '1.02',
2532 'version' => '0.36',
2533 },
2534 removed => {
2535 }
2536 },
2537 5.009002 => {
2538 delta_from => 5.008007,
2539 changed => {
2540 'B' => '1.07',
2541 'B::Concise' => '0.64',
2542 'B::Deparse' => '0.69',
2543 'B::Disassembler' => '1.03',
2544 'B::Terse' => '1.02',
2545 'CGI' => '3.07',
2546 'Config::Extensions' => '0.01',
2547 'Devel::DProf' => '20030813.00',
2548 'DynaLoader' => '1.07',
2549 'Encode' => '2.09',
2550 'Encode::Alias' => '2.02',
2551 'English' => '1.03',
2552 'Exporter' => '5.59',
2553 'Exporter::Heavy' => '5.59',
2554 'ExtUtils::Command' => '1.07',
2555 'ExtUtils::Command::MM' => '0.03_01',
2556 'ExtUtils::Embed' => '1.26',
2557 'ExtUtils::Liblist::Kid'=> '1.3',
2558 'ExtUtils::MM_Any' => '0.10',
2559 'ExtUtils::MM_Cygwin' => '1.07',
2560 'ExtUtils::MM_MacOS' => '1.08',
2561 'ExtUtils::MM_NW5' => '2.07',
2562 'ExtUtils::MM_Unix' => '1.46_01',
2563 'ExtUtils::MM_VMS' => '5.71',
2564 'ExtUtils::MM_Win32' => '1.10',
2565 'ExtUtils::MM_Win95' => '0.03',
2566 'ExtUtils::MakeMaker' => '6.25',
2567 'ExtUtils::Manifest' => '1.44',
2568 'Fatal' => '1.04',
2569 'File::Path' => '1.06',
2570 'FileCache' => '1.04_01',
2571 'Getopt::Long' => '2.3401',
2572 'IO::File' => '1.10',
2573 'IO::Socket::INET' => '1.27',
2574 'Math::BigFloat' => '1.49',
2575 'Math::BigInt' => '1.75',
2576 'Math::BigInt::Calc' => '0.45',
2577 'Math::BigRat' => '0.14',
2578 'Memoize' => '1.01_01',
2579 'Module::CoreList' => '1.99',
2580 'NEXT' => '0.60_01',
2581 'Opcode' => '1.06',
2582 'Pod::Html' => '1.0502',
2583 'Scalar::Util' => '1.14_1',
2584 'Storable' => '2.14',
2585 'Symbol' => '1.05',
2586 'Test::Harness' => '2.46',
2587 'Test::Harness::Straps' => '0.20_01',
2588 'Text::Balanced' => '1.95_01',
2589 'Text::Wrap' => '2001.09292',
2590 'UNIVERSAL' => '1.02',
2591 'Unicode' => '4.0.1',
2592 'Unicode::Normalize' => '0.30',
2593 'Unicode::UCD' => '0.22',
2594 'Win32' => '0.23',
2595 'XS::APItest' => '0.05',
2596 'XSLoader' => '0.03',
2597 'assertions' => '0.01',
2598 'assertions::activate' => '0.01',
2599 'base' => '2.06',
2600 'bigint' => '0.06',
2601 'bignum' => '0.16',
2602 'bigrat' => '0.07',
2603 'bytes' => '1.01',
2604 'encoding::warnings' => '0.05',
2605 'if' => '0.0401',
2606 're' => '0.05',
2607 'threads::shared' => '0.92',
2608 'utf8' => '1.04',
2609 'version' => '0.42',
2610 'warnings' => '1.04',
2611 },
2612 removed => {
2613 'Test::Harness::Point' => 1,
2614 }
2615 },
2616 5.009003 => {
2617 delta_from => 5.008008,
2618 changed => {
2619 'Archive::Tar' => '1.26_01',
2620 'Archive::Tar::Constant'=> '0.02',
2621 'Archive::Tar::File' => '0.02',
2622 'AutoSplit' => '1.04_01',
2623 'B' => '1.10',
2624 'B::Bblock' => '1.02',
2625 'B::Bytecode' => '1.01',
2626 'B::C' => '1.04',
2627 'B::CC' => '1.00',
2628 'B::Concise' => '0.67',
2629 'B::Debug' => '1.02',
2630 'B::Deparse' => '0.73',
2631 'B::Lint' => '1.04',
2632 'B::Terse' => '1.03',
2633 'CGI' => '3.15_01',
2634 'CPAN' => '1.83_58',
2635 'CPAN::Debug' => '4.44',
2636 'CPAN::FirstTime' => '4.50',
2637 'CPAN::HandleConfig' => '4.31',
2638 'CPAN::Nox' => '2.31',
2639 'CPAN::Tarzip' => '3.36',
2640 'CPAN::Version' => '2.55',
2641 'Carp' => '1.05',
2642 'Carp::Heavy' => '1.05',
2643 'Compress::Zlib' => '2.000_07',
2644 'Compress::Zlib::Common'=> '2.000_07',
2645 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2646 'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2647 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2648 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2649 'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2650 'Compress::Zlib::FileConstants'=> '2.000_07',
2651 'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2652 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2653 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2654 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2655 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2656 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2657 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2658 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2659 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2660 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2661 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2662 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2663 'Compress::Zlib::ParseParameters'=> '2.000_07',
2664 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2665 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2666 'Config::Extensions' => '0.01',
2667 'Cwd' => '3.15',
2668 'Devel::PPPort' => '3.08',
2669 'Digest::SHA' => '5.32',
2670 'DirHandle' => '1.01',
2671 'DynaLoader' => '1.07',
2672 'Encode' => '2.14',
2673 'Encode::CN::HZ' => '2.02',
2674 'Encode::MIME::Header' => '2.02',
2675 'English' => '1.04',
2676 'Exporter' => '5.59',
2677 'Exporter::Heavy' => '5.59',
2678 'ExtUtils::CBuilder' => '0.15',
2679 'ExtUtils::CBuilder::Base'=> '0.12',
2680 'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2681 'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2682 'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2683 'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2684 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2685 'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2686 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2687 'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2688 'ExtUtils::Command::MM' => '0.05_01',
2689 'ExtUtils::Constant' => '0.2',
2690 'ExtUtils::Constant::Base'=> '0.02',
2691 'ExtUtils::Constant::ProxySubs'=> '0.01',
2692 'ExtUtils::Constant::XS'=> '0.02',
2693 'ExtUtils::MM_Any' => '0.13_01',
2694 'ExtUtils::MM_Unix' => '1.50_01',
2695 'ExtUtils::MakeMaker' => '6.30_01',
2696 'ExtUtils::ParseXS' => '2.15_02',
2697 'Fatal' => '1.04',
2698 'File::Compare' => '1.1005',
2699 'File::Spec' => '3.15',
2700 'File::Temp' => '0.16_01',
2701 'IO::File' => '1.13_01',
2702 'IO::Handle' => '1.26',
2703 'IO::Socket' => '1.29_01',
2704 'IO::Socket::INET' => '1.29_02',
2705 'IO::Socket::UNIX' => '1.22_01',
2706 'IO::Zlib' => '1.04_02',
2707 'Locale::Maketext' => '1.10_01',
2708 'Math::BigInt::FastCalc'=> '0.10',
2709 'Memoize' => '1.01_01',
2710 'Module::CoreList' => '2.02',
2711 'Moped::Msg' => '0.01',
2712 'NEXT' => '0.60_01',
2713 'Net::Cmd' => '2.26_01',
2714 'Net::Domain' => '2.19_01',
2715 'Net::Ping' => '2.31_04',
2716 'Opcode' => '1.08',
2717 'POSIX' => '1.10',
2718 'Pod::Escapes' => '1.04',
2719 'Pod::Man' => '2.04',
2720 'Pod::Perldoc' => '3.14_01',
2721 'Pod::Simple' => '3.04',
2722 'Pod::Simple::BlackBox' => undef,
2723 'Pod::Simple::Checker' => '2.02',
2724 'Pod::Simple::Debug' => undef,
2725 'Pod::Simple::DumpAsText'=> '2.02',
2726 'Pod::Simple::DumpAsXML'=> '2.02',
2727 'Pod::Simple::HTML' => '3.03',
2728 'Pod::Simple::HTMLBatch'=> '3.02',
2729 'Pod::Simple::HTMLLegacy'=> '5.01',
2730 'Pod::Simple::LinkSection'=> undef,
2731 'Pod::Simple::Methody' => '2.02',
2732 'Pod::Simple::Progress' => '1.01',
2733 'Pod::Simple::PullParser'=> '2.02',
2734 'Pod::Simple::PullParserEndToken'=> undef,
2735 'Pod::Simple::PullParserStartToken'=> undef,
2736 'Pod::Simple::PullParserTextToken'=> undef,
2737 'Pod::Simple::PullParserToken'=> '2.02',
2738 'Pod::Simple::RTF' => '2.02',
2739 'Pod::Simple::Search' => '3.04',
2740 'Pod::Simple::SimpleTree'=> '2.02',
2741 'Pod::Simple::Text' => '2.02',
2742 'Pod::Simple::TextContent'=> '2.02',
2743 'Pod::Simple::TiedOutFH'=> undef,
2744 'Pod::Simple::Transcode'=> undef,
2745 'Pod::Simple::TranscodeDumb'=> '2.02',
2746 'Pod::Simple::TranscodeSmart'=> undef,
2747 'Pod::Simple::XMLOutStream'=> '2.02',
2748 'Pod::Text' => '3.01',
2749 'Pod::Text::Color' => '2.01',
2750 'Pod::Text::Overstrike' => '2',
2751 'Pod::Text::Termcap' => '2.01',
2752 'Pod::Usage' => '1.33_01',
2753 'SelfLoader' => '1.0905',
2754 'Storable' => '2.15_02',
2755 'Test::Builder::Module' => '0.03',
2756 'Text::Balanced' => '1.95_01',
2757 'Tie::File' => '0.97_01',
2758 'UNIVERSAL' => '1.03',
2759 'XS::APItest' => '0.09',
2760 'assertions' => '0.02',
2761 'assertions::activate' => '0.02',
2762 'assertions::compat' => undef,
2763 'constant' => '1.07',
2764 'encoding::warnings' => '0.05',
2765 'feature' => '1.00',
2766 're' => '0.06',
2767 'sort' => '2.00',
2768 'version' => '0.53',
2769 },
2770 removed => {
2771 }
f372d768 2772 },
16531488 2773 5.009004 => {
a272bf38
DL
2774 delta_from => 5.009003,
2775 changed => {
2776 'Archive::Tar' => '1.30_01',
2777 'AutoLoader' => '5.61',
2778 'B' => '1.11',
2779 'B::Bytecode' => '1.02',
2780 'B::C' => '1.05',
2781 'B::Concise' => '0.69',
2782 'B::Deparse' => '0.76',
2783 'B::Lint' => '1.08',
2784 'Benchmark' => '1.08',
2785 'CGI' => '3.20',
2786 'CGI::Cookie' => '1.27',
2787 'CGI::Fast' => '1.07',
2788 'CPAN' => '1.87_55',
2789 'CPAN::Debug' => '5.400561',
2790 'CPAN::FirstTime' => '5.400742',
2791 'CPAN::HandleConfig' => '5.400740',
2792 'CPAN::Nox' => '5.400561',
2793 'CPAN::Tarzip' => '5.400714',
2794 'CPAN::Version' => '5.400561',
2795 'Compress::Raw::Zlib' => '2.000_13',
2796 'Compress::Zlib' => '2.000_13',
2797 'Cwd' => '3.19',
2798 'Devel::PPPort' => '3.10',
2799 'Digest' => '1.15',
2800 'Digest::SHA' => '5.43',
2801 'Encode' => '2.18_01',
2802 'Encode::Alias' => '2.06',
2803 'Encode::Byte' => '2.02',
2804 'Encode::CJKConstants' => '2.02',
2805 'Encode::CN' => '2.02',
2806 'Encode::CN::HZ' => '2.04',
2807 'Encode::Config' => '2.03',
2808 'Encode::EBCDIC' => '2.02',
2809 'Encode::Encoder' => '2.01',
2810 'Encode::Encoding' => '2.04',
2811 'Encode::Guess' => '2.02',
2812 'Encode::JP' => '2.03',
2813 'Encode::JP::H2Z' => '2.02',
2814 'Encode::JP::JIS7' => '2.02',
2815 'Encode::KR' => '2.02',
2816 'Encode::KR::2022_KR' => '2.02',
2817 'Encode::MIME::Header' => '2.04',
2818 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2819 'Encode::Symbol' => '2.02',
2820 'Encode::TW' => '2.02',
2821 'Encode::Unicode' => '2.03',
2822 'Encode::Unicode::UTF7' => '2.04',
2823 'ExtUtils::CBuilder' => '0.18',
2824 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2825 'ExtUtils::Constant::Base'=> '0.03',
2826 'ExtUtils::Constant::ProxySubs'=> '0.03',
2827 'ExtUtils::Install' => '1.41',
2828 'ExtUtils::Installed' => '1.41',
2829 'ExtUtils::MM_Any' => '0.13_02',
2830 'ExtUtils::MM_NW5' => '2.08_01',
2831 'ExtUtils::MM_Unix' => '1.5003',
2832 'ExtUtils::MM_VMS' => '5.73_03',
2833 'ExtUtils::MM_Win32' => '1.12_02',
2834 'ExtUtils::MM_Win95' => '0.04_01',
2835 'ExtUtils::MakeMaker' => '6.30_02',
2836 'ExtUtils::Manifest' => '1.46_01',
2837 'ExtUtils::Mkbootstrap' => '1.15_01',
2838 'ExtUtils::Mksymlists' => '1.19_01',
2839 'ExtUtils::Packlist' => '1.41',
2840 'File::Basename' => '2.75',
2841 'File::Find' => '1.11',
2842 'File::GlobMapper' => '0.000_02',
2843 'File::Spec' => '3.19',
2844 'FileCache' => '1.07',
2845 'Getopt::Long' => '2.3501',
2846 'Hash::Util' => '0.07',
2847 'Hash::Util::FieldHash' => '0.01',
2848 'IO' => '1.23_01',
2849 'IO::Compress::Adapter::Deflate'=> '2.000_13',
2850 'IO::Compress::Adapter::Identity'=> '2.000_13',
2851 'IO::Compress::Base' => '2.000_13',
2852 'IO::Compress::Base::Common'=> '2.000_13',
2853 'IO::Compress::Deflate' => '2.000_13',
2854 'IO::Compress::Gzip' => '2.000_13',
2855 'IO::Compress::Gzip::Constants'=> '2.000_13',
2856 'IO::Compress::RawDeflate'=> '2.000_13',
2857 'IO::Compress::Zip' => '2.000_13',
2858 'IO::Compress::Zip::Constants'=> '2.000_13',
2859 'IO::Compress::Zlib::Constants'=> '2.000_13',
2860 'IO::Compress::Zlib::Extra'=> '2.000_13',
2861 'IO::Dir' => '1.06',
2862 'IO::File' => '1.14',
2863 'IO::Handle' => '1.27',
2864 'IO::Socket' => '1.30_01',
2865 'IO::Socket::INET' => '1.31',
2866 'IO::Socket::UNIX' => '1.23',
2867 'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2868 'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2869 'IO::Uncompress::AnyInflate'=> '2.000_13',
2870 'IO::Uncompress::AnyUncompress'=> '2.000_13',
2871 'IO::Uncompress::Base' => '2.000_13',
2872 'IO::Uncompress::Gunzip'=> '2.000_13',
2873 'IO::Uncompress::Inflate'=> '2.000_13',
2874 'IO::Uncompress::RawInflate'=> '2.000_13',
2875 'IO::Uncompress::Unzip' => '2.000_13',
2876 'MIME::Base64' => '3.07_01',
2877 'Math::Complex' => '1.36',
2878 'Math::Trig' => '1.04',
2879 'Module::Build' => '0.2805',
2880 'Module::Build::Base' => undef,
2881 'Module::Build::Compat' => '0.03',
2882 'Module::Build::ConfigData'=> undef,
2883 'Module::Build::Cookbook'=> undef,
2884 'Module::Build::ModuleInfo'=> undef,
2885 'Module::Build::Notes' => undef,
2886 'Module::Build::PPMMaker'=> undef,
2887 'Module::Build::Platform::Amiga'=> undef,
2888 'Module::Build::Platform::Default'=> undef,
2889 'Module::Build::Platform::EBCDIC'=> undef,
2890 'Module::Build::Platform::MPEiX'=> undef,
2891 'Module::Build::Platform::MacOS'=> undef,
2892 'Module::Build::Platform::RiscOS'=> undef,
2893 'Module::Build::Platform::Unix'=> undef,
2894 'Module::Build::Platform::VMS'=> undef,
2895 'Module::Build::Platform::VOS'=> undef,
2896 'Module::Build::Platform::Windows'=> undef,
2897 'Module::Build::Platform::aix'=> undef,
2898 'Module::Build::Platform::cygwin'=> undef,
2899 'Module::Build::Platform::darwin'=> undef,
2900 'Module::Build::Platform::os2'=> undef,
2901 'Module::Build::PodParser'=> undef,
2902 'Module::Build::Version'=> '0',
2903 'Module::Build::YAML' => '0.50',
2904 'Module::CoreList' => '2.08',
2905 'Module::Load' => '0.10',
2906 'Module::Loaded' => '0.01',
2907 'Package::Constants' => '0.01',
2908 'Pod::Html' => '1.07',
2909 'Pod::Man' => '2.09',
2910 'Pod::Text' => '3.07',
2911 'Pod::Text::Color' => '2.03',
2912 'Pod::Text::Termcap' => '2.03',
2913 'SDBM_File' => '1.06',
2914 'Shell' => '0.7',
2915 'Sys::Syslog' => '0.17',
2916 'Term::ANSIColor' => '1.11',
2917 'Test::Builder' => '0.33',
2918 'Test::Builder::Tester' => '1.04',
2919 'Test::Harness' => '2.62',
2920 'Test::Harness::Util' => '0.01',
2921 'Test::More' => '0.64',
2922 'Test::Simple' => '0.64',
2923 'Text::Balanced' => '1.98_01',
2924 'Text::ParseWords' => '3.25',
2925 'Text::Tabs' => '2007.071101',
2926 'Text::Wrap' => '2006.0711',
2927 'Tie::RefHash' => '1.34_01',
2928 'Time::HiRes' => '1.87',
2929 'Time::Local' => '1.13',
2930 'Time::gmtime' => '1.03',
2931 'UNIVERSAL' => '1.04',
2932 'Unicode::Normalize' => '1.01',
2933 'Win32API::File' => '0.1001',
2934 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2935 'assertions' => '0.03',
2936 'assertions::compat' => '0.02',
2937 'autouse' => '1.06',
2938 'diagnostics' => '1.16',
2939 'encoding' => '2.04',
2940 'encoding::warnings' => '0.10',
2941 'feature' => '1.01',
2942 're' => '0.0601',
2943 'threads' => '1.38',
2944 'threads::shared' => '0.94_01',
2945 'version' => '0.67',
2946 },
2947 removed => {
2948 'Compress::Zlib::Common'=> 1,
2949 'Compress::Zlib::Compress::Gzip::Constants'=> 1,
2950 'Compress::Zlib::Compress::Zip::Constants'=> 1,
2951 'Compress::Zlib::CompressPlugin::Deflate'=> 1,
2952 'Compress::Zlib::CompressPlugin::Identity'=> 1,
2953 'Compress::Zlib::File::GlobMapper'=> 1,
2954 'Compress::Zlib::FileConstants'=> 1,
2955 'Compress::Zlib::IO::Compress::Base'=> 1,
2956 'Compress::Zlib::IO::Compress::Deflate'=> 1,
2957 'Compress::Zlib::IO::Compress::Gzip'=> 1,
2958 'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
2959 'Compress::Zlib::IO::Compress::Zip'=> 1,
2960 'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
2961 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
2962 'Compress::Zlib::IO::Uncompress::Base'=> 1,
2963 'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
2964 'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
2965 'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
2966 'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
2967 'Compress::Zlib::ParseParameters'=> 1,
2968 'Compress::Zlib::UncompressPlugin::Identity'=> 1,
2969 'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
2970 }
16531488 2971 },
201a0ee1 2972 5.009005 => {
a272bf38
DL
2973 delta_from => 5.009004,
2974 changed => {
2975 'Archive::Extract' => '0.22_01',
2976 'Archive::Tar' => '1.32',
2977 'Attribute::Handlers' => '0.78_06',
2978 'AutoLoader' => '5.63',
2979 'AutoSplit' => '1.05',
2980 'B' => '1.16',
2981 'B::Concise' => '0.72',
2982 'B::Debug' => '1.05',
2983 'B::Deparse' => '0.82',
2984 'B::Lint' => '1.09',
2985 'B::Terse' => '1.05',
2986 'Benchmark' => '1.1',
2987 'CGI' => '3.29',
2988 'CGI::Cookie' => '1.28',
2989 'CGI::Util' => '1.5_01',
2990 'CPAN' => '1.9102',
2991 'CPAN::Debug' => '5.400955',
2992 'CPAN::FirstTime' => '5.401669',
2993 'CPAN::HandleConfig' => '5.401744',
2994 'CPAN::Kwalify' => '5.401418',
2995 'CPAN::Nox' => '5.400844',
2996 'CPAN::Queue' => '5.401704',
2997 'CPAN::Tarzip' => '5.401717',
2998 'CPAN::Version' => '5.401387',
2999 'CPANPLUS' => '0.81_01',
3000 'CPANPLUS::Backend' => undef,
3001 'CPANPLUS::Backend::RV' => undef,
3002 'CPANPLUS::Config' => undef,
3003 'CPANPLUS::Configure' => undef,
3004 'CPANPLUS::Configure::Setup'=> undef,
3005 'CPANPLUS::Dist' => undef,
3006 'CPANPLUS::Dist::Base' => '0.01',
3007 'CPANPLUS::Dist::Build' => '0.06_01',
3008 'CPANPLUS::Dist::Build::Constants'=> '0.01',
3009 'CPANPLUS::Dist::MM' => undef,
3010 'CPANPLUS::Dist::Sample'=> undef,
3011 'CPANPLUS::Error' => undef,
3012 'CPANPLUS::Internals' => '0.81_01',
3013 'CPANPLUS::Internals::Constants'=> '0.01',
3014 'CPANPLUS::Internals::Constants::Report'=> '0.01',
3015 'CPANPLUS::Internals::Extract'=> undef,
3016 'CPANPLUS::Internals::Fetch'=> undef,
3017 'CPANPLUS::Internals::Report'=> undef,
3018 'CPANPLUS::Internals::Search'=> undef,
3019 'CPANPLUS::Internals::Source'=> undef,
3020 'CPANPLUS::Internals::Utils'=> undef,
3021 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
3022 'CPANPLUS::Module' => undef,
3023 'CPANPLUS::Module::Author'=> undef,
3024 'CPANPLUS::Module::Author::Fake'=> undef,
3025 'CPANPLUS::Module::Checksums'=> undef,
3026 'CPANPLUS::Module::Fake'=> undef,
3027 'CPANPLUS::Module::Signature'=> undef,
3028 'CPANPLUS::Selfupdate' => undef,
3029 'CPANPLUS::Shell' => undef,
3030 'CPANPLUS::Shell::Classic'=> '0.0562',
3031 'CPANPLUS::Shell::Default'=> '0.81_01',
3032 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
3033 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
3034 'CPANPLUS::inc' => undef,
3035 'Carp' => '1.07',
3036 'Carp::Heavy' => '1.07',
3037 'Compress::Raw::Zlib' => '2.005',
3038 'Compress::Zlib' => '2.005',
3039 'Cwd' => '3.25',
3040 'DBM_Filter' => '0.02',
3041 'DB_File' => '1.815',
3042 'Data::Dumper' => '2.121_13',
3043 'Devel::InnerPackage' => '0.3',
3044 'Devel::PPPort' => '3.11_01',
3045 'Digest::MD5' => '2.36_01',
3046 'Digest::SHA' => '5.44',
3047 'DynaLoader' => '1.08',
3048 'Encode' => '2.23',
3049 'Encode::Alias' => '2.07',
3050 'Encode::Byte' => '2.03',
3051 'Encode::Config' => '2.04',
3052 'Encode::Encoding' => '2.05',
3053 'Encode::GSM0338' => '2.00',
3054 'Encode::JP::JIS7' => '2.03',
3055 'Encode::MIME::Header' => '2.05',
3056 'Encode::MIME::Name' => '1.01',
3057 'Encode::Unicode' => '2.05',
3058 'Errno' => '1.10',
3059 'Exporter' => '5.60',
3060 'Exporter::Heavy' => '5.60',
3061 'ExtUtils::CBuilder' => '0.19',
3062 'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
3063 'ExtUtils::Command' => '1.13',
3064 'ExtUtils::Command::MM' => '0.07',
3065 'ExtUtils::Constant::Base'=> '0.04',
3066 'ExtUtils::Install' => '1.41_01',
3067 'ExtUtils::Liblist' => '1.03',
3068 'ExtUtils::Liblist::Kid'=> '1.33',
3069 'ExtUtils::MM' => '0.07',
3070 'ExtUtils::MM_AIX' => '0.05',
3071 'ExtUtils::MM_Any' => '0.15',
3072 'ExtUtils::MM_BeOS' => '1.07',
3073 'ExtUtils::MM_Cygwin' => '1.1',
3074 'ExtUtils::MM_DOS' => '0.04',
3075 'ExtUtils::MM_MacOS' => '1.1',
3076 'ExtUtils::MM_NW5' => '2.1',
3077 'ExtUtils::MM_OS2' => '1.07',
3078 'ExtUtils::MM_QNX' => '0.04',
3079 'ExtUtils::MM_UWIN' => '0.04',
3080 'ExtUtils::MM_Unix' => '1.54_01',
3081 'ExtUtils::MM_VMS' => '5.76',
3082 'ExtUtils::MM_VOS' => '0.04',
3083 'ExtUtils::MM_Win32' => '1.15',
3084 'ExtUtils::MM_Win95' => '0.06',
3085 'ExtUtils::MY' => '0.03',
3086 'ExtUtils::MakeMaker' => '6.36',
3087 'ExtUtils::MakeMaker::Config'=> '0.04',
3088 'ExtUtils::MakeMaker::bytes'=> '0.03',
3089 'ExtUtils::MakeMaker::vmsish'=> '0.03',
3090 'ExtUtils::Manifest' => '1.51_01',
3091 'ExtUtils::Mkbootstrap' => '1.17',
3092 'ExtUtils::Mksymlists' => '1.21',
3093 'ExtUtils::ParseXS' => '2.18',
3094 'ExtUtils::XSSymSet' => '1.1',
3095 'ExtUtils::testlib' => '1.17',
3096 'Fatal' => '1.05',
3097 'Fcntl' => '1.06',
3098 'File::Basename' => '2.76',
3099 'File::Copy' => '2.10',
3100 'File::Fetch' => '0.10',
3101 'File::Glob' => '1.06',
3102 'File::Path' => '2.01',
3103 'File::Spec' => '3.25',
3104 'File::Spec::Cygwin' => '1.1_01',
3105 'File::Spec::VMS' => '1.4_01',
3106 'File::Temp' => '0.18',
3107 'Filter::Util::Call' => '1.0602',
3108 'FindBin' => '1.49',
3109 'Getopt::Long' => '2.36',
3110 'Hash::Util::FieldHash' => '1.01',
3111 'IO::Compress::Adapter::Deflate'=> '2.005',
3112 'IO::Compress::Adapter::Identity'=> '2.005',
3113 'IO::Compress::Base' => '2.005',
3114 'IO::Compress::Base::Common'=> '2.005',
3115 'IO::Compress::Deflate' => '2.005',
3116 'IO::Compress::Gzip' => '2.005',
3117 'IO::Compress::Gzip::Constants'=> '2.005',
3118 'IO::Compress::RawDeflate'=> '2.005',
3119 'IO::Compress::Zip' => '2.005',
3120 'IO::Compress::Zip::Constants'=> '2.005',
3121 'IO::Compress::Zlib::Constants'=> '2.005',
3122 'IO::Compress::Zlib::Extra'=> '2.005',
3123 'IO::Uncompress::Adapter::Identity'=> '2.005',
3124 'IO::Uncompress::Adapter::Inflate'=> '2.005',
3125 'IO::Uncompress::AnyInflate'=> '2.005',
3126 'IO::Uncompress::AnyUncompress'=> '2.005',
3127 'IO::Uncompress::Base' => '2.005',
3128 'IO::Uncompress::Gunzip'=> '2.005',
3129 'IO::Uncompress::Inflate'=> '2.005',
3130 'IO::Uncompress::RawInflate'=> '2.005',
3131 'IO::Uncompress::Unzip' => '2.005',
3132 'IO::Zlib' => '1.05_01',
3133 'IPC::Cmd' => '0.36_01',
3134 'List::Util' => '1.19',
3135 'Locale::Maketext::Simple'=> '0.18',
3136 'Log::Message' => '0.01',
3137 'Log::Message::Config' => '0.01',
3138 'Log::Message::Handlers'=> undef,
3139 'Log::Message::Item' => undef,
3140 'Log::Message::Simple' => '0.0201',
3141 'Math::BigFloat' => '1.58',
3142 'Math::BigInt' => '1.87',
3143 'Math::BigInt::Calc' => '0.51',
3144 'Math::BigInt::FastCalc'=> '0.15_01',
3145 'Math::BigRat' => '0.19',
3146 'Math::Complex' => '1.37',
3147 'Memoize' => '1.01_02',
3148 'Module::Build' => '0.2808',
3149 'Module::Build::Config' => undef,
3150 'Module::Build::Version'=> '0.7203',
3151 'Module::CoreList' => '2.12',
3152 'Module::Load::Conditional'=> '0.16',
3153 'Module::Pluggable' => '3.6',
3154 'Module::Pluggable::Object'=> '3.6',
3155 'NDBM_File' => '1.07',
3156 'Net::Cmd' => '2.28',
3157 'Net::Config' => '1.11',
3158 'Net::Domain' => '2.20',
3159 'Net::FTP' => '2.77',
3160 'Net::FTP::A' => '1.18',
3161 'Net::NNTP' => '2.24',
3162 'Net::POP3' => '2.29',
3163 'Net::SMTP' => '2.31',
3164 'ODBM_File' => '1.07',
78da2da6 3165 'OS2::DLL' => '1.03',
a272bf38
DL
3166 'Object::Accessor' => '0.32',
3167 'Opcode' => '1.09',
3168 'POSIX' => '1.13',
3169 'Params::Check' => '0.26',
3170 'PerlIO::encoding' => '0.10',
3171 'PerlIO::scalar' => '0.05',
3172 'PerlIO::via' => '0.04',
3173 'Pod::Html' => '1.08',
3174 'Pod::Man' => '2.12',
3175 'Pod::ParseUtils' => '1.35',
3176 'Pod::Parser' => '1.35',
3177 'Pod::Select' => '1.35',
3178 'Pod::Simple' => '3.05',
3179 'Pod::Text' => '3.08',
3180 'Pod::Usage' => '1.35',
3181 'Scalar::Util' => '1.19',
3182 'SelfLoader' => '1.11',
3183 'Shell' => '0.72_01',
3184 'Socket' => '1.79',
3185 'Storable' => '2.16',
3186 'Switch' => '2.13',
3187 'Sys::Syslog' => '0.18_01',
3188 'Term::ANSIColor' => '1.12',
3189 'Term::UI' => '0.14_01',
3190 'Term::UI::History' => undef,
3191 'Test::Builder' => '0.70',
3192 'Test::Builder::Module' => '0.68',
3193 'Test::Builder::Tester' => '1.07',
3194 'Test::Harness' => '2.64',
3195 'Test::Harness::Results'=> '0.01',
3196 'Test::More' => '0.70',
3197 'Test::Simple' => '0.70',
3198 'Text::Balanced' => '2.0.0',
3199 'Text::Soundex' => '3.02',
3200 'Text::Tabs' => '2007.1117',
3201 'Text::Wrap' => '2006.1117',
3202 'Thread' => '3.02',
3203 'Tie::File' => '0.97_02',
3204 'Tie::Hash::NamedCapture'=> '0.06',
3205 'Tie::Memoize' => '1.1',
3206 'Tie::RefHash' => '1.37',
3207 'Time::HiRes' => '1.9707',
3208 'Time::Local' => '1.17',
3209 'Time::Piece' => '1.11_02',
3210 'Time::Seconds' => undef,
3211 'Unicode' => '5.0.0',
3212 'Unicode::Normalize' => '1.02',
3213 'Unicode::UCD' => '0.25',
3214 'VMS::DCLsym' => '1.03',
3215 'Win32' => '0.30',
3216 'Win32API::File' => '0.1001_01',
3217 'Win32CORE' => '0.02',
3218 'XS::APItest' => '0.12',
3219 'XSLoader' => '0.08',
3220 'attributes' => '0.08',
3221 'base' => '2.12',
3222 'bigint' => '0.22',
3223 'bignum' => '0.22',
3224 'bigrat' => '0.22',
3225 'bytes' => '1.03',
3226 'charnames' => '1.06',
3227 'constant' => '1.10',
3228 'diagnostics' => '1.17',
3229 'encoding' => '2.06',
3230 'encoding::warnings' => '0.11',
3231 'feature' => '1.10',
3232 'fields' => '2.12',
3233 'less' => '0.02',
3234 'mro' => '1.00',
3235 'overload' => '1.06',
3236 're' => '0.08',
3237 'sigtrap' => '1.04',
3238 'sort' => '2.01',
3239 'strict' => '1.04',
3240 'threads' => '1.63',
3241 'threads::shared' => '1.12',
3242 'utf8' => '1.07',
3243 'version' => '0.7203',
3244 'warnings' => '1.06',
3245 },
3246 removed => {
3247 'B::Asmdata' => 1,
3248 'B::Assembler' => 1,
3249 'B::Bblock' => 1,
3250 'B::Bytecode' => 1,
3251 'B::C' => 1,
3252 'B::CC' => 1,
3253 'B::Disassembler' => 1,
3254 'B::Stackobj' => 1,
3255 'B::Stash' => 1,
3256 'ByteLoader' => 1,
3257 'Thread::Signal' => 1,
3258 'Thread::Specific' => 1,
3259 'assertions' => 1,
3260 'assertions::activate' => 1,
3261 'assertions::compat' => 1,
3262 }
a3240fe5 3263 },
a272bf38
DL
3264 5.01 => {
3265 delta_from => 5.009005,
3266 changed => {
3267 'Archive::Extract' => '0.24',
3268 'Archive::Tar' => '1.38',
3269 'Attribute::Handlers' => '0.79',
3270 'B' => '1.17',
3271 'B::Concise' => '0.74',
3272 'B::Deparse' => '0.83',
3273 'CPAN' => '1.9205',
3274 'CPAN::API::HOWTO' => undef,
3275 'CPAN::Debug' => '5.402212',
3276 'CPAN::DeferedCode' => '5.50',
3277 'CPAN::FirstTime' => '5.402229',
3278 'CPAN::HandleConfig' => '5.402212',
3279 'CPAN::Nox' => '5.402411',
3280 'CPAN::Queue' => '5.402212',
3281 'CPAN::Tarzip' => '5.402213',
3282 'CPAN::Version' => '5.5',
3283 'CPANPLUS' => '0.84',
3284 'CPANPLUS::Dist::Build' => '0.06_02',
3285 'CPANPLUS::Internals' => '0.84',
3286 'CPANPLUS::Shell::Default'=> '0.84',
3287 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3288 'Carp' => '1.08',
3289 'Carp::Heavy' => '1.08',
3290 'Compress::Raw::Zlib' => '2.008',
3291 'Compress::Zlib' => '2.008',
3292 'Cwd' => '3.2501',
3293 'DB_File' => '1.816_1',
3294 'Data::Dumper' => '2.121_14',
3295 'Devel::PPPort' => '3.13',
3296 'Digest::SHA' => '5.45',
3297 'Exporter' => '5.62',
3298 'Exporter::Heavy' => '5.62',
3299 'ExtUtils::CBuilder' => '0.21',
3300 'ExtUtils::CBuilder::Base'=> '0.21',
3301 'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3302 'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3303 'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3304 'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3305 'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3306 'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3307 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3308 'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3309 'ExtUtils::Command::MM' => '6.42',
3310 'ExtUtils::Constant::ProxySubs'=> '0.05',
3311 'ExtUtils::Embed' => '1.27',
3312 'ExtUtils::Install' => '1.44',
3313 'ExtUtils::Installed' => '1.43',
3314 'ExtUtils::Liblist' => '6.42',
3315 'ExtUtils::Liblist::Kid'=> '6.42',
3316 'ExtUtils::MM' => '6.42',
3317 'ExtUtils::MM_AIX' => '6.42',
3318 'ExtUtils::MM_Any' => '6.42',
3319 'ExtUtils::MM_BeOS' => '6.42',
3320 'ExtUtils::MM_Cygwin' => '6.42',
3321 'ExtUtils::MM_DOS' => '6.42',
3322 'ExtUtils::MM_MacOS' => '6.42',
3323 'ExtUtils::MM_NW5' => '6.42',
3324 'ExtUtils::MM_OS2' => '6.42',
3325 'ExtUtils::MM_QNX' => '6.42',
3326 'ExtUtils::MM_UWIN' => '6.42',
3327 'ExtUtils::MM_Unix' => '6.42',
3328 'ExtUtils::MM_VMS' => '6.42',
3329 'ExtUtils::MM_VOS' => '6.42',
3330 'ExtUtils::MM_Win32' => '6.42',
3331 'ExtUtils::MM_Win95' => '6.42',
3332 'ExtUtils::MY' => '6.42',
3333 'ExtUtils::MakeMaker' => '6.42',
3334 'ExtUtils::MakeMaker::Config'=> '6.42',
3335 'ExtUtils::MakeMaker::bytes'=> '6.42',
3336 'ExtUtils::MakeMaker::vmsish'=> '6.42',
3337 'ExtUtils::Mkbootstrap' => '6.42',
3338 'ExtUtils::Mksymlists' => '6.42',
3339 'ExtUtils::Packlist' => '1.43',
3340 'ExtUtils::ParseXS' => '2.18_02',
3341 'ExtUtils::testlib' => '6.42',
3342 'File::Copy' => '2.11',
3343 'File::Fetch' => '0.14',
3344 'File::Find' => '1.12',
3345 'File::Path' => '2.04',
3346 'File::Spec' => '3.2501',
3347 'File::Spec::Cygwin' => '3.2501',
3348 'File::Spec::Epoc' => '3.2501',
3349 'File::Spec::Functions' => '3.2501',
3350 'File::Spec::Mac' => '3.2501',
3351 'File::Spec::OS2' => '3.2501',
3352 'File::Spec::Unix' => '3.2501',
3353 'File::Spec::VMS' => '3.2501',
3354 'File::Spec::Win32' => '3.2501',
3355 'Filter::Util::Call' => '1.07',
3356 'Getopt::Long' => '2.37',
3357 'Hash::Util::FieldHash' => '1.03',
3358 'IO::Compress::Adapter::Deflate'=> '2.008',
3359 'IO::Compress::Adapter::Identity'=> '2.008',
3360 'IO::Compress::Base' => '2.008',
3361 'IO::Compress::Base::Common'=> '2.008',
3362 'IO::Compress::Deflate' => '2.008',
3363 'IO::Compress::Gzip' => '2.008',
3364 'IO::Compress::Gzip::Constants'=> '2.008',
3365 'IO::Compress::RawDeflate'=> '2.008',
3366 'IO::Compress::Zip' => '2.008',
3367 'IO::Compress::Zip::Constants'=> '2.008',
3368 'IO::Compress::Zlib::Constants'=> '2.008',
3369 'IO::Compress::Zlib::Extra'=> '2.008',
3370 'IO::Uncompress::Adapter::Identity'=> '2.008',
3371 'IO::Uncompress::Adapter::Inflate'=> '2.008',
3372 'IO::Uncompress::AnyInflate'=> '2.008',
3373 'IO::Uncompress::AnyUncompress'=> '2.008',
3374 'IO::Uncompress::Base' => '2.008',
3375 'IO::Uncompress::Gunzip'=> '2.008',
3376 'IO::Uncompress::Inflate'=> '2.008',
3377 'IO::Uncompress::RawInflate'=> '2.008',
3378 'IO::Uncompress::Unzip' => '2.008',
3379 'IO::Zlib' => '1.07',
3380 'IPC::Cmd' => '0.40_1',
3381 'IPC::SysV' => '1.05',
3382 'Locale::Maketext' => '1.12',
3383 'Log::Message::Simple' => '0.04',
3384 'Math::BigFloat' => '1.59',
3385 'Math::BigInt' => '1.88',
3386 'Math::BigInt::Calc' => '0.52',
3387 'Math::BigInt::FastCalc'=> '0.16',
3388 'Math::BigRat' => '0.21',
3389 'Module::Build' => '0.2808_01',
3390 'Module::Build::Base' => '0.2808_01',
3391 'Module::Build::Compat' => '0.2808_01',
3392 'Module::Build::Config' => '0.2808_01',
3393 'Module::Build::Dumper' => undef,
3394 'Module::Build::ModuleInfo'=> '0.2808_01',
3395 'Module::Build::Notes' => '0.2808_01',
3396 'Module::Build::PPMMaker'=> '0.2808_01',
3397 'Module::Build::Platform::Amiga'=> '0.2808_01',
3398 'Module::Build::Platform::Default'=> '0.2808_01',
3399 'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3400 'Module::Build::Platform::MPEiX'=> '0.2808_01',
3401 'Module::Build::Platform::MacOS'=> '0.2808_01',
3402 'Module::Build::Platform::RiscOS'=> '0.2808_01',
3403 'Module::Build::Platform::Unix'=> '0.2808_01',
3404 'Module::Build::Platform::VMS'=> '0.2808_01',
3405 'Module::Build::Platform::VOS'=> '0.2808_01',
3406 'Module::Build::Platform::Windows'=> '0.2808_01',
3407 'Module::Build::Platform::aix'=> '0.2808_01',
3408 'Module::Build::Platform::cygwin'=> '0.2808_01',
3409 'Module::Build::Platform::darwin'=> '0.2808_01',
3410 'Module::Build::Platform::os2'=> '0.2808_01',
3411 'Module::Build::PodParser'=> '0.2808_01',
3412 'Module::CoreList' => '2.13',
3413 'Module::Load' => '0.12',
3414 'Module::Load::Conditional'=> '0.22',
3415 'Net::Cmd' => '2.29',
3416 'Net::Ping' => '2.33',
3417 'Opcode' => '1.11',
3418 'Pod::Checker' => '1.43_01',
3419 'Pod::Man' => '2.16',
3420 'Pod::Perldoc' => '3.14_02',
3421 'Socket' => '1.80',
3422 'Storable' => '2.18',
3423 'Sys::Syslog' => '0.22',
3424 'Sys::Syslog::win32::Win32'=> undef,
3425 'Term::Cap' => '1.12',
3426 'Term::ReadLine' => '1.03',
3427 'Term::UI' => '0.18',
3428 'Test::Builder' => '0.72',
3429 'Test::Builder::Module' => '0.72',
3430 'Test::Builder::Tester' => '1.09',
3431 'Test::Harness::Straps' => '0.26_01',
3432 'Test::More' => '0.72',
3433 'Test::Simple' => '0.72',
3434 'Text::ParseWords' => '3.26',
3435 'Text::Soundex' => '3.03',
3436 'Tie::StdHandle' => undef,
3437 'Time::HiRes' => '1.9711',
3438 'Time::Local' => '1.18',
3439 'Time::Piece' => '1.12',
3440 'VMS::Filespec' => '1.12',
3441 'Win32' => '0.34',
3442 'base' => '2.13',
3443 'constant' => '1.13',
3444 'feature' => '1.11',
3445 'fields' => '2.13',
3446 'filetest' => '1.02',
3447 'open' => '1.06',
3448 'threads' => '1.67',
3449 'threads::shared' => '1.14',
3450 'version' => '0.74',
3451 },
3452 removed => {
3453 }
5b5f44f3 3454 },
781ea95a 3455 5.010001 => {
a272bf38
DL
3456 delta_from => 5.01,
3457 changed => {
3458 'App::Prove' => '3.17',
3459 'App::Prove::State' => '3.17',
3460 'App::Prove::State::Result'=> '3.17',
3461 'App::Prove::State::Result::Test'=> '3.17',
3462 'Archive::Extract' => '0.34',
3463 'Archive::Tar' => '1.52',
3464 'Attribute::Handlers' => '0.85',
3465 'AutoLoader' => '5.68',
3466 'AutoSplit' => '1.06',
3467 'B' => '1.22',
3468 'B::Concise' => '0.76',
3469 'B::Debug' => '1.11',
3470 'B::Deparse' => '0.89',
3471 'B::Lint' => '1.11',
3472 'B::Lint::Debug' => undef,
3473 'B::Xref' => '1.02',
3474 'Benchmark' => '1.11',
3475 'CGI' => '3.43',
3476 'CGI::Carp' => '1.30_01',
3477 'CGI::Cookie' => '1.29',
3478 'CPAN' => '1.9402',
3479 'CPAN::Author' => '5.5',
3480 'CPAN::Bundle' => '5.5',
3481 'CPAN::CacheMgr' => '5.5',
3482 'CPAN::Complete' => '5.5',
3483 'CPAN::Debug' => '5.5',
3484 'CPAN::DeferredCode' => '5.50',
3485 'CPAN::Distribution' => '1.93',
3486 'CPAN::Distroprefs' => '6',
3487 'CPAN::Distrostatus' => '5.5',
3488 'CPAN::Exception::RecursiveDependency'=> '5.5',
3489 'CPAN::Exception::blocked_urllist'=> '1.0',
3490 'CPAN::Exception::yaml_not_installed'=> '5.5',
3491 'CPAN::FTP' => '5.5001',
3492 'CPAN::FTP::netrc' => '1.00',
3493 'CPAN::FirstTime' => '5.53',
3494 'CPAN::HandleConfig' => '5.5',
3495 'CPAN::Index' => '1.93',
3496 'CPAN::InfoObj' => '5.5',
3497 'CPAN::Kwalify' => '5.50',
3498 'CPAN::LWP::UserAgent' => '1.00',
3499 'CPAN::Module' => '5.5',
3500 'CPAN::Nox' => '5.50',
3501 'CPAN::Prompt' => '5.5',
3502 'CPAN::Queue' => '5.5',
3503 'CPAN::Shell' => '5.5',
3504 'CPAN::Tarzip' => '5.501',
3505 'CPAN::URL' => '5.5',
3506 'CPANPLUS' => '0.88',
3507 'CPANPLUS::Dist::Autobundle'=> undef,
3508 'CPANPLUS::Dist::Base' => undef,
3509 'CPANPLUS::Dist::Build' => '0.36',
3510 'CPANPLUS::Dist::Build::Constants'=> '0.36',
3511 'CPANPLUS::Internals' => '0.88',
3512 'CPANPLUS::Internals::Constants'=> undef,
3513 'CPANPLUS::Internals::Constants::Report'=> undef,
3514 'CPANPLUS::Internals::Source::Memory'=> undef,
3515 'CPANPLUS::Internals::Source::SQLite'=> undef,
3516 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3517 'CPANPLUS::Shell::Default'=> '0.88',
3518 'Carp' => '1.11',
3519 'Carp::Heavy' => '1.11',
3520 'Compress::Raw::Bzip2' => '2.020',
3521 'Compress::Raw::Zlib' => '2.020',
3522 'Compress::Zlib' => '2.020',
3523 'Cwd' => '3.30',
3524 'DB' => '1.02',
3525 'DBM_Filter::compress' => '0.02',
3526 'DBM_Filter::encode' => '0.02',
3527 'DBM_Filter::int32' => '0.02',
3528 'DBM_Filter::null' => '0.02',
3529 'DBM_Filter::utf8' => '0.02',
3530 'DB_File' => '1.820',
3531 'Data::Dumper' => '2.124',
3532 'Devel::DProf' => '20080331.00',
3533 'Devel::PPPort' => '3.19',
3534 'Devel::Peek' => '1.04',
3535 'Digest' => '1.16',
3536 'Digest::MD5' => '2.39',
3537 'Digest::SHA' => '5.47',
3538 'Digest::base' => '1.16',
3539 'Digest::file' => '1.16',
3540 'DirHandle' => '1.03',
3541 'Dumpvalue' => '1.13',
3542 'DynaLoader' => '1.10',
3543 'Encode' => '2.35',
3544 'Encode::Alias' => '2.12',
3545 'Encode::CN::HZ' => '2.05',
3546 'Encode::Config' => '2.05',
3547 'Encode::GSM0338' => '2.01',
3548 'Encode::Guess' => '2.03',
3549 'Encode::JP::JIS7' => '2.04',
3550 'Encode::MIME::Header' => '2.11',
3551 'Encode::Unicode' => '2.06',
3552 'Errno' => '1.11',
3553 'Exporter' => '5.63',
3554 'Exporter::Heavy' => '5.63',
3555 'ExtUtils::CBuilder' => '0.2602',
3556 'ExtUtils::CBuilder::Base'=> '0.2602',
3557 'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3558 'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3559 'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3560 'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3561 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3562 'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3563 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3564 'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3565 'ExtUtils::Command' => '1.16',
3566 'ExtUtils::Command::MM' => '6.55_02',
3567 'ExtUtils::Constant' => '0.22',
3568 'ExtUtils::Constant::ProxySubs'=> '0.06',
3569 'ExtUtils::Constant::Utils'=> '0.02',
3570 'ExtUtils::Constant::XS'=> '0.03',
3571 'ExtUtils::Embed' => '1.28',
3572 'ExtUtils::Install' => '1.54',
3573 'ExtUtils::Installed' => '1.999_001',
3574 'ExtUtils::Liblist' => '6.55_02',
3575 'ExtUtils::Liblist::Kid'=> '6.5502',
3576 'ExtUtils::MM' => '6.55_02',
3577 'ExtUtils::MM_AIX' => '6.55_02',
3578 'ExtUtils::MM_Any' => '6.55_02',
3579 'ExtUtils::MM_BeOS' => '6.55_02',
3580 'ExtUtils::MM_Cygwin' => '6.55_02',
3581 'ExtUtils::MM_DOS' => '6.5502',
3582 'ExtUtils::MM_Darwin' => '6.55_02',
3583 'ExtUtils::MM_MacOS' => '6.5502',
3584 'ExtUtils::MM_NW5' => '6.55_02',
3585 'ExtUtils::MM_OS2' => '6.55_02',
3586 'ExtUtils::MM_QNX' => '6.55_02',
3587 'ExtUtils::MM_UWIN' => '6.5502',
3588 'ExtUtils::MM_Unix' => '6.55_02',
3589 'ExtUtils::MM_VMS' => '6.55_02',
3590 'ExtUtils::MM_VOS' => '6.55_02',
3591 'ExtUtils::MM_Win32' => '6.55_02',
3592 'ExtUtils::MM_Win95' => '6.55_02',
3593 'ExtUtils::MY' => '6.5502',
3594 'ExtUtils::MakeMaker' => '6.55_02',
3595 'ExtUtils::MakeMaker::Config'=> '6.55_02',
3596 'ExtUtils::Manifest' => '1.56',
3597 'ExtUtils::Mkbootstrap' => '6.55_02',
3598 'ExtUtils::Mksymlists' => '6.55_02',
3599 'ExtUtils::ParseXS' => '2.2002',
3600 'ExtUtils::testlib' => '6.5502',
3601 'Fatal' => '2.06_01',
3602 'File::Basename' => '2.77',
3603 'File::CheckTree' => '4.4',
3604 'File::Compare' => '1.1006',
3605 'File::Copy' => '2.14',
3606 'File::DosGlob' => '1.01',
3607 'File::Fetch' => '0.20',
3608 'File::Find' => '1.14',
3609 'File::GlobMapper' => '1.000',
3610 'File::Path' => '2.07_03',
3611 'File::Spec' => '3.30',
3612 'File::Spec::Cygwin' => '3.30',
3613 'File::Spec::Epoc' => '3.30',
3614 'File::Spec::Functions' => '3.30',
3615 'File::Spec::Mac' => '3.30',
3616 'File::Spec::OS2' => '3.30',
3617 'File::Spec::Unix' => '3.30',
3618 'File::Spec::VMS' => '3.30',
3619 'File::Spec::Win32' => '3.30',
3620 'File::Temp' => '0.22',
3621 'File::stat' => '1.01',
3622 'FileCache' => '1.08',
3623 'FileHandle' => '2.02',
3624 'Filter::Simple' => '0.84',
3625 'Filter::Util::Call' => '1.08',
3626 'FindBin' => '1.50',
3627 'GDBM_File' => '1.09',
3628 'Getopt::Long' => '2.38',
3629 'Getopt::Std' => '1.06',
3630 'Hash::Util::FieldHash' => '1.04',
3631 'I18N::Collate' => '1.01',
3632 'IO' => '1.25',
3633 'IO::Compress::Adapter::Bzip2'=> '2.020',
3634 'IO::Compress::Adapter::Deflate'=> '2.020',
3635 'IO::Compress::Adapter::Identity'=> '2.020',
3636 'IO::Compress::Base' => '2.020',
3637 'IO::Compress::Base::Common'=> '2.020',
3638 'IO::Compress::Bzip2' => '2.020',
3639 'IO::Compress::Deflate' => '2.020',
3640 'IO::Compress::Gzip' => '2.020',
3641 'IO::Compress::Gzip::Constants'=> '2.020',
3642 'IO::Compress::RawDeflate'=> '2.020',
3643 'IO::Compress::Zip' => '2.020',
3644 'IO::Compress::Zip::Constants'=> '2.020',
3645 'IO::Compress::Zlib::Constants'=> '2.020',
3646 'IO::Compress::Zlib::Extra'=> '2.020',
3647 'IO::Dir' => '1.07',
3648 'IO::Handle' => '1.28',
3649 'IO::Socket' => '1.31',
3650 'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3651 'IO::Uncompress::Adapter::Identity'=> '2.020',
3652 'IO::Uncompress::Adapter::Inflate'=> '2.020',
3653 'IO::Uncompress::AnyInflate'=> '2.020',
3654 'IO::Uncompress::AnyUncompress'=> '2.020',
3655 'IO::Uncompress::Base' => '2.020',
3656 'IO::Uncompress::Bunzip2'=> '2.020',
3657 'IO::Uncompress::Gunzip'=> '2.020',
3658 'IO::Uncompress::Inflate'=> '2.020',
3659 'IO::Uncompress::RawInflate'=> '2.020',
3660 'IO::Uncompress::Unzip' => '2.020',
3661 'IO::Zlib' => '1.09',
3662 'IPC::Cmd' => '0.46',
3663 'IPC::Msg' => '2.01',
3664 'IPC::Open2' => '1.03',
3665 'IPC::Open3' => '1.04',
3666 'IPC::Semaphore' => '2.01',
3667 'IPC::SharedMem' => '2.01',
3668 'IPC::SysV' => '2.01',
3669 'List::Util' => '1.21',
3670 'List::Util::PP' => '1.21',
3671 'List::Util::XS' => '1.21',
3672 'Locale::Maketext' => '1.13',
3673 'Locale::Maketext::Guts'=> '1.13',
3674 'Locale::Maketext::GutsLoader'=> '1.13',
3675 'Log::Message' => '0.02',
3676 'MIME::Base64' => '3.08',
3677 'MIME::QuotedPrint' => '3.08',
3678 'Math::BigFloat' => '1.60',
3679 'Math::BigInt' => '1.89',
3680 'Math::BigInt::FastCalc'=> '0.19',
3681 'Math::BigRat' => '0.22',
3682 'Math::Complex' => '1.56',
3683 'Math::Trig' => '1.2',
3684 'Memoize' => '1.01_03',
3685 'Module::Build' => '0.340201',
3686 'Module::Build::Base' => '0.340201',
3687 'Module::Build::Compat' => '0.340201',
3688 'Module::Build::Config' => '0.340201',
3689 'Module::Build::Cookbook'=> '0.340201',
3690 'Module::Build::Dumper' => '0.340201',
3691 'Module::Build::ModuleInfo'=> '0.340201',
3692 'Module::Build::Notes' => '0.340201',
3693 'Module::Build::PPMMaker'=> '0.340201',
3694 'Module::Build::Platform::Amiga'=> '0.340201',
3695 'Module::Build::Platform::Default'=> '0.340201',
3696 'Module::Build::Platform::EBCDIC'=> '0.340201',
3697 'Module::Build::Platform::MPEiX'=> '0.340201',
3698 'Module::Build::Platform::MacOS'=> '0.340201',
3699 'Module::Build::Platform::RiscOS'=> '0.340201',
3700 'Module::Build::Platform::Unix'=> '0.340201',
3701 'Module::Build::Platform::VMS'=> '0.340201',
3702 'Module::Build::Platform::VOS'=> '0.340201',
3703 'Module::Build::Platform::Windows'=> '0.340201',
3704 'Module::Build::Platform::aix'=> '0.340201',
3705 'Module::Build::Platform::cygwin'=> '0.340201',
3706 'Module::Build::Platform::darwin'=> '0.340201',
3707 'Module::Build::Platform::os2'=> '0.340201',
3708 'Module::Build::PodParser'=> '0.340201',
3709 'Module::Build::Version'=> '0.77',
3710 'Module::CoreList' => '2.18',
3711 'Module::Load' => '0.16',
3712 'Module::Load::Conditional'=> '0.30',
3713 'Module::Loaded' => '0.02',
3714 'Module::Pluggable' => '3.9',
3715 'Module::Pluggable::Object'=> '3.9',
3716 'NDBM_File' => '1.08',
3717 'NEXT' => '0.64',
3718 'Net::Ping' => '2.36',
3719 'O' => '1.01',
78da2da6
CBW
3720 'OS2::Process' => '1.03',
3721 'OS2::REXX' => '1.04',
a272bf38
DL
3722 'Object::Accessor' => '0.34',
3723 'POSIX' => '1.17',
3724 'Package::Constants' => '0.02',
3725 'Parse::CPAN::Meta' => '1.39',
3726 'PerlIO' => '1.06',
3727 'PerlIO::encoding' => '0.11',
3728 'PerlIO::scalar' => '0.07',
3729 'PerlIO::via' => '0.07',
3730 'Pod::Checker' => '1.45',
3731 'Pod::Find' => '1.35',
3732 'Pod::Html' => '1.09',
3733 'Pod::InputObjects' => '1.31',
3734 'Pod::Man' => '2.22',
3735 'Pod::ParseLink' => '1.09',
3736 'Pod::ParseUtils' => '1.36',
3737 'Pod::Parser' => '1.37',
3738 'Pod::Perldoc' => '3.14_04',
3739 'Pod::PlainText' => '2.04',
3740 'Pod::Select' => '1.36',
3741 'Pod::Simple' => '3.07',
3742 'Pod::Simple::XHTML' => '3.04',
3743 'Pod::Text' => '3.13',
3744 'Pod::Text::Color' => '2.05',
3745 'Pod::Text::Overstrike' => '2.03',
3746 'Pod::Text::Termcap' => '2.05',
3747 'Pod::Usage' => '1.36',
3748 'Safe' => '2.18',
3749 'Scalar::Util' => '1.21',
3750 'Scalar::Util::PP' => '1.21',
3751 'SelectSaver' => '1.02',
3752 'SelfLoader' => '1.17',
3753 'Socket' => '1.82',
3754 'Storable' => '2.20',
3755 'Switch' => '2.14',
3756 'Symbol' => '1.07',
3757 'Sys::Syslog' => '0.27',
3758 'TAP::Base' => '3.17',
3759 'TAP::Formatter::Base' => '3.17',
3760 'TAP::Formatter::Color' => '3.17',
3761 'TAP::Formatter::Console'=> '3.17',
3762 'TAP::Formatter::Console::ParallelSession'=> '3.17',
3763 'TAP::Formatter::Console::Session'=> '3.17',
3764 'TAP::Formatter::File' => '3.17',
3765 'TAP::Formatter::File::Session'=> '3.17',
3766 'TAP::Formatter::Session'=> '3.17',
3767 'TAP::Harness' => '3.17',
3768 'TAP::Object' => '3.17',
3769 'TAP::Parser' => '3.17',
3770 'TAP::Parser::Aggregator'=> '3.17',
3771 'TAP::Parser::Grammar' => '3.17',
3772 'TAP::Parser::Iterator' => '3.17',
3773 'TAP::Parser::Iterator::Array'=> '3.17',
3774 'TAP::Parser::Iterator::Process'=> '3.17',
3775 'TAP::Parser::Iterator::Stream'=> '3.17',
3776 'TAP::Parser::IteratorFactory'=> '3.17',
3777 'TAP::Parser::Multiplexer'=> '3.17',
3778 'TAP::Parser::Result' => '3.17',
3779 'TAP::Parser::Result::Bailout'=> '3.17',
3780 'TAP::Parser::Result::Comment'=> '3.17',
3781 'TAP::Parser::Result::Plan'=> '3.17',
3782 'TAP::Parser::Result::Pragma'=> '3.17',
3783 'TAP::Parser::Result::Test'=> '3.17',
3784 'TAP::Parser::Result::Unknown'=> '3.17',
3785 'TAP::Parser::Result::Version'=> '3.17',
3786 'TAP::Parser::Result::YAML'=> '3.17',
3787 'TAP::Parser::ResultFactory'=> '3.17',
3788 'TAP::Parser::Scheduler'=> '3.17',
3789 'TAP::Parser::Scheduler::Job'=> '3.17',
3790 'TAP::Parser::Scheduler::Spinner'=> '3.17',
3791 'TAP::Parser::Source' => '3.17',
3792 'TAP::Parser::Source::Perl'=> '3.17',
3793 'TAP::Parser::Utils' => '3.17',
3794 'TAP::Parser::YAMLish::Reader'=> '3.17',
3795 'TAP::Parser::YAMLish::Writer'=> '3.17',
3796 'Term::ANSIColor' => '2.00',
3797 'Term::ReadLine' => '1.04',
3798 'Term::UI' => '0.20',
3799 'Test' => '1.25_02',
3800 'Test::Builder' => '0.92',
3801 'Test::Builder::Module' => '0.92',
3802 'Test::Builder::Tester' => '1.18',
3803 'Test::Builder::Tester::Color'=> '1.18',
3804 'Test::Harness' => '3.17',
3805 'Test::More' => '0.92',
3806 'Test::Simple' => '0.92',
3807 'Text::ParseWords' => '3.27',
3808 'Text::Tabs' => '2009.0305',
3809 'Text::Wrap' => '2009.0305',
3810 'Thread::Queue' => '2.11',
3811 'Thread::Semaphore' => '2.09',
3812 'Tie::Handle' => '4.2',
3813 'Tie::Hash' => '1.03',
3814 'Tie::RefHash' => '1.38',
3815 'Tie::Scalar' => '1.01',
3816 'Tie::StdHandle' => '4.2',
3817 'Time::HiRes' => '1.9719',
3818 'Time::Local' => '1.1901',
3819 'Time::Piece' => '1.15',
3820 'UNIVERSAL' => '1.05',
3821 'Unicode' => '5.1.0',
3822 'Unicode::Normalize' => '1.03',
3823 'Unicode::UCD' => '0.27',
3824 'VMS::Stdio' => '2.4',
3825 'Win32' => '0.39',
3826 'Win32API::File' => '0.1101',
3827 'XS::APItest' => '0.15',
3828 'XS::Typemap' => '0.03',
3829 'XSLoader' => '0.10',
3830 'attributes' => '0.09',
3831 'attrs' => '1.03',
3832 'autodie' => '2.06_01',
3833 'autodie::exception' => '2.06_01',
3834 'autodie::exception::system'=> '2.06_01',
3835 'autodie::hints' => '2.06_01',
3836 'base' => '2.14',
3837 'bigint' => '0.23',
3838 'bignum' => '0.23',
3839 'bigrat' => '0.23',
3840 'blib' => '1.04',
3841 'charnames' => '1.07',
3842 'constant' => '1.17',
3843 'encoding' => '2.6_01',
3844 'feature' => '1.13',
3845 'fields' => '2.14',
3846 'lib' => '0.62',
3847 'mro' => '1.01',
3848 'open' => '1.07',
3849 'ops' => '1.02',
3850 'overload' => '1.07',
3851 'overload::numbers' => undef,
3852 'overloading' => '0.01',
3853 'parent' => '0.221',
3854 're' => '0.09',
3855 'threads' => '1.72',
3856 'threads::shared' => '1.29',
3857 'version' => '0.77',
3858 },
3859 removed => {
3860 'CPAN::API::HOWTO' => 1,
3861 'CPAN::DeferedCode' => 1,
3862 'CPANPLUS::inc' => 1,
3863 'ExtUtils::MakeMaker::bytes'=> 1,
3864 'ExtUtils::MakeMaker::vmsish'=> 1,
3865 'Test::Harness::Assert' => 1,
3866 'Test::Harness::Iterator'=> 1,
3867 'Test::Harness::Point' => 1,
3868 'Test::Harness::Results'=> 1,
3869 'Test::Harness::Straps' => 1,
3870 'Test::Harness::Util' => 1,
3871 }
781ea95a 3872 },
a272bf38
DL
3873 5.011 => {
3874 delta_from => 5.010001,
3875 changed => {
3876 'Archive::Tar' => '1.54',
3877 'Attribute::Handlers' => '0.87',
3878 'AutoLoader' => '5.70',
3879 'B::Deparse' => '0.91',
3880 'B::Lint' => '1.11_01',
3881 'B::Lint::Debug' => '0.01',
3882 'CGI' => '3.45',
3883 'CGI::Apache' => '1.01',
3884 'CGI::Carp' => '3.45',
3885 'CGI::Pretty' => '3.44',
3886 'CGI::Switch' => '1.01',
3887 'CGI::Util' => '3.45',
3888 'CPAN' => '1.94_51',
3889 'CPAN::Distribution' => '1.94',
3890 'CPAN::FTP' => '5.5002',
3891 'CPAN::Index' => '1.94',
3892 'CPAN::LWP::UserAgent' => '1.94',
3893 'CPANPLUS::Dist::Build' => '0.40',
3894 'CPANPLUS::Dist::Build::Constants'=> '0.40',
3895 'Carp' => '1.12',
3896 'Carp::Heavy' => '1.12',
3897 'Class::ISA' => '0.36',
3898 'Compress::Raw::Bzip2' => '2.021',
3899 'Compress::Raw::Zlib' => '2.021',
3900 'Compress::Zlib' => '2.021',
3901 'Cwd' => '3.3002',
3902 'Data::Dumper' => '2.125',
3903 'Encode' => '2.37',
3904 'Exporter' => '5.64',
3905 'Exporter::Heavy' => '5.64',
3906 'ExtUtils::ParseXS' => '2.200403',
3907 'File::Basename' => '2.78',
3908 'File::Copy' => '2.16',
3909 'File::stat' => '1.02',
3910 'IO' => '1.25_01',
3911 'IO::Compress::Adapter::Bzip2'=> '2.021',
3912 'IO::Compress::Adapter::Deflate'=> '2.021',
3913 'IO::Compress::Adapter::Identity'=> '2.021',
3914 'IO::Compress::Base' => '2.021',
3915 'IO::Compress::Base::Common'=> '2.021',
3916 'IO::Compress::Bzip2' => '2.021',
3917 'IO::Compress::Deflate' => '2.021',
3918 'IO::Compress::Gzip' => '2.021',
3919 'IO::Compress::Gzip::Constants'=> '2.021',
3920 'IO::Compress::RawDeflate'=> '2.021',
3921 'IO::Compress::Zip' => '2.021',
3922 'IO::Compress::Zip::Constants'=> '2.021',
3923 'IO::Compress::Zlib::Constants'=> '2.021',
3924 'IO::Compress::Zlib::Extra'=> '2.021',
3925 'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
3926 'IO::Uncompress::Adapter::Identity'=> '2.021',
3927 'IO::Uncompress::Adapter::Inflate'=> '2.021',
3928 'IO::Uncompress::AnyInflate'=> '2.021',
3929 'IO::Uncompress::AnyUncompress'=> '2.021',
3930 'IO::Uncompress::Base' => '2.021',
3931 'IO::Uncompress::Bunzip2'=> '2.021',
3932 'IO::Uncompress::Gunzip'=> '2.021',
3933 'IO::Uncompress::Inflate'=> '2.021',
3934 'IO::Uncompress::RawInflate'=> '2.021',
3935 'IO::Uncompress::Unzip' => '2.021',
3936 'IO::Zlib' => '1.10',
3937 'IPC::Cmd' => '0.50',
3938 'IPC::Open3' => '1.05',
3939 'Locale::Maketext::Simple'=> '0.21',
3940 'Log::Message::Simple' => '0.06',
3941 'Math::BigInt' => '1.89_01',
3942 'Math::BigRat' => '0.24',
3943 'Module::Build' => '0.35',
3944 'Module::Build::Base' => '0.35',
3945 'Module::Build::Compat' => '0.35',
3946 'Module::Build::Config' => '0.35',
3947 'Module::Build::Cookbook'=> '0.35',
3948 'Module::Build::Dumper' => '0.35',
3949 'Module::Build::ModuleInfo'=> '0.35',
3950 'Module::Build::Notes' => '0.35',
3951 'Module::Build::PPMMaker'=> '0.35',
3952 'Module::Build::Platform::Amiga'=> '0.35',
3953 'Module::Build::Platform::Default'=> '0.35',
3954 'Module::Build::Platform::EBCDIC'=> '0.35',
3955 'Module::Build::Platform::MPEiX'=> '0.35',
3956 'Module::Build::Platform::MacOS'=> '0.35',
3957 'Module::Build::Platform::RiscOS'=> '0.35',
3958 'Module::Build::Platform::Unix'=> '0.35',
3959 'Module::Build::Platform::VMS'=> '0.35',
3960 'Module::Build::Platform::VOS'=> '0.35',
3961 'Module::Build::Platform::Windows'=> '0.35',
3962 'Module::Build::Platform::aix'=> '0.35',
3963 'Module::Build::Platform::cygwin'=> '0.35',
3964 'Module::Build::Platform::darwin'=> '0.35',
3965 'Module::Build::Platform::os2'=> '0.35',
3966 'Module::Build::PodParser'=> '0.35',
3967 'Module::CoreList' => '2.19',
3968 'Module::Loaded' => '0.06',
3969 'Opcode' => '1.13',
3970 'PerlIO::via' => '0.08',
3971 'Pod::Perldoc' => '3.15_01',
3972 'Pod::Plainer' => '1.01',
3973 'Safe' => '2.19',
3974 'Socket' => '1.84',
3975 'Switch' => '2.14_01',
3976 'Term::ANSIColor' => '2.02',
3977 'Term::ReadLine' => '1.05',
3978 'Text::Balanced' => '2.02',
3979 'Text::Soundex' => '3.03_01',
3980 'Time::Local' => '1.1901_01',
3981 'Unicode::Collate' => '0.52_01',
3982 'attributes' => '0.12',
3983 'constant' => '1.19',
3984 'deprecate' => '0.01',
3985 'overload' => '1.08',
3986 'parent' => '0.223',
3987 're' => '0.10',
3988 'threads' => '1.74',
3989 'threads::shared' => '1.31',
3990 'warnings' => '1.07',
3991 },
3992 removed => {
3993 'attrs' => 1,
3994 }
24081a3a 3995 },
979b9961 3996 5.011001 => {
a272bf38
DL
3997 delta_from => 5.011,
3998 changed => {
3999 'B' => '1.23',
4000 'B::Concise' => '0.77',
4001 'B::Deparse' => '0.92',
4002 'CGI' => '3.48',
4003 'CGI::Pretty' => '3.46',
4004 'CGI::Util' => '3.48',
4005 'CPANPLUS' => '0.89_03',
4006 'CPANPLUS::Internals' => '0.89_03',
4007 'CPANPLUS::Shell::Default'=> '0.89_03',
4008 'Carp' => '1.13',
4009 'Carp::Heavy' => '1.13',
4010 'ExtUtils::CBuilder' => '0.260301',
4011 'ExtUtils::CBuilder::Base'=> '0.260301',
4012 'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
4013 'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
4014 'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
4015 'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
4016 'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
4017 'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
4018 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
4019 'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
4020 'ExtUtils::Install' => '1.55',
4021 'ExtUtils::Manifest' => '1.57',
4022 'ExtUtils::Packlist' => '1.44',
4023 'ExtUtils::ParseXS' => '2.21',
4024 'File::Glob' => '1.07',
4025 'File::Path' => '2.08',
4026 'IO' => '1.25_02',
4027 'Module::CoreList' => '2.21',
78da2da6
CBW
4028 'OS2::DLL' => '1.04',
4029 'OS2::Process' => '1.04',
a272bf38
DL
4030 'Object::Accessor' => '0.36',
4031 'Opcode' => '1.15',
4032 'POSIX' => '1.18',
4033 'Parse::CPAN::Meta' => '1.40',
4034 'PerlIO::via' => '0.09',
4035 'Pod::Simple' => '3.08',
4036 'Socket' => '1.85',
4037 'Storable' => '2.22',
4038 'Switch' => '2.15',
4039 'Test::Builder' => '0.94',
4040 'Test::Builder::Module' => '0.94',
4041 'Test::More' => '0.94',
4042 'Test::Simple' => '0.94',
4043 'XS::APItest' => '0.16',
4044 'mro' => '1.02',
4045 'overload' => '1.09',
4046 'threads::shared' => '1.32',
4047 },
4048 removed => {
4049 }
979b9961 4050 },
a68163ea 4051 5.011002 => {
a272bf38
DL
4052 delta_from => 5.011001,
4053 changed => {
4054 'B::Concise' => '0.78',
4055 'B::Deparse' => '0.93',
4056 'CPANPLUS' => '0.89_09',
4057 'CPANPLUS::Dist::Build' => '0.44',
4058 'CPANPLUS::Dist::Build::Constants'=> '0.44',
4059 'CPANPLUS::Internals' => '0.89_09',
4060 'CPANPLUS::Shell::Default'=> '0.89_09',
4061 'Carp' => '1.14',
4062 'Carp::Heavy' => '1.14',
4063 'Compress::Zlib' => '2.022',
4064 'DBM_Filter' => '0.03',
4065 'Encode' => '2.38',
4066 'Encode::Byte' => '2.04',
4067 'Encode::CN' => '2.03',
4068 'Encode::JP' => '2.04',
4069 'Encode::KR' => '2.03',
4070 'Encode::TW' => '2.03',
4071 'Encode::Unicode' => '2.07',
4072 'Env' => '1.01',
4073 'Exporter' => '5.64_01',
4074 'Exporter::Heavy' => '5.64_01',
4075 'ExtUtils::CBuilder' => '0.27',
4076 'ExtUtils::CBuilder::Base'=> '0.27',
4077 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
4078 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
4079 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
4080 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
4081 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
4082 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
4083 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
4084 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
4085 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
4086 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
4087 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
4088 'File::Fetch' => '0.22',
4089 'I18N::LangTags::Detect'=> '1.04',
4090 'I18N::Langinfo' => '0.03',
4091 'IO::Compress::Adapter::Bzip2'=> '2.022',
4092 'IO::Compress::Adapter::Deflate'=> '2.022',
4093 'IO::Compress::Adapter::Identity'=> '2.022',
4094 'IO::Compress::Base' => '2.022',
4095 'IO::Compress::Base::Common'=> '2.022',
4096 'IO::Compress::Bzip2' => '2.022',
4097 'IO::Compress::Deflate' => '2.022',
4098 'IO::Compress::Gzip' => '2.022',
4099 'IO::Compress::Gzip::Constants'=> '2.022',
4100 'IO::Compress::RawDeflate'=> '2.022',
4101 'IO::Compress::Zip' => '2.022',
4102 'IO::Compress::Zip::Constants'=> '2.022',
4103 'IO::Compress::Zlib::Constants'=> '2.022',
4104 'IO::Compress::Zlib::Extra'=> '2.022',
4105 'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4106 'IO::Uncompress::Adapter::Identity'=> '2.022',
4107 'IO::Uncompress::Adapter::Inflate'=> '2.022',
4108 'IO::Uncompress::AnyInflate'=> '2.022',
4109 'IO::Uncompress::AnyUncompress'=> '2.022',
4110 'IO::Uncompress::Base' => '2.022',
4111 'IO::Uncompress::Bunzip2'=> '2.022',
4112 'IO::Uncompress::Gunzip'=> '2.022',
4113 'IO::Uncompress::Inflate'=> '2.022',
4114 'IO::Uncompress::RawInflate'=> '2.022',
4115 'IO::Uncompress::Unzip' => '2.022',
4116 'IPC::Cmd' => '0.54',
4117 'List::Util' => '1.22',
4118 'List::Util::PP' => '1.22',
4119 'List::Util::XS' => '1.22',
4120 'Locale::Maketext' => '1.14',
4121 'Module::Build' => '0.35_09',
4122 'Module::Build::Base' => '0.35_09',
4123 'Module::Build::Compat' => '0.35_09',
4124 'Module::Build::Config' => '0.35_09',
4125 'Module::Build::Cookbook'=> '0.35_09',
4126 'Module::Build::Dumper' => '0.35_09',
4127 'Module::Build::ModuleInfo'=> '0.35_09',
4128 'Module::Build::Notes' => '0.35_09',
4129 'Module::Build::PPMMaker'=> '0.35_09',
4130 'Module::Build::Platform::Amiga'=> '0.35_09',
4131 'Module::Build::Platform::Default'=> '0.35_09',
4132 'Module::Build::Platform::EBCDIC'=> '0.35_09',
4133 'Module::Build::Platform::MPEiX'=> '0.35_09',
4134 'Module::Build::Platform::MacOS'=> '0.35_09',
4135 'Module::Build::Platform::RiscOS'=> '0.35_09',
4136 'Module::Build::Platform::Unix'=> '0.35_09',
4137 'Module::Build::Platform::VMS'=> '0.35_09',
4138 'Module::Build::Platform::VOS'=> '0.35_09',
4139 'Module::Build::Platform::Windows'=> '0.35_09',
4140 'Module::Build::Platform::aix'=> '0.35_09',
4141 'Module::Build::Platform::cygwin'=> '0.35_09',
4142 'Module::Build::Platform::darwin'=> '0.35_09',
4143 'Module::Build::Platform::os2'=> '0.35_09',
4144 'Module::Build::PodParser'=> '0.35_09',
4145 'Module::Build::YAML' => '1.40',
4146 'Module::CoreList' => '2.23',
4147 'Module::Load::Conditional'=> '0.34',
4148 'Pod::Simple' => '3.10',
4149 'Pod::Simple::XHTML' => '3.10',
4150 'Scalar::Util' => '1.22',
4151 'Scalar::Util::PP' => '1.22',
4152 'Switch' => '2.16',
4153 'XS::APItest' => '0.17',
4154 'XS::APItest::KeywordRPN'=> '0.003',
4155 'base' => '2.15',
4156 'diagnostics' => '1.18',
4157 'fields' => '2.15',
4158 'inc::latest' => '0.35_09',
4159 'legacy' => '1.00',
4160 'overload' => '1.10',
4161 },
4162 removed => {
4163 }
a68163ea 4164 },
65f8b4e7 4165 5.011003 => {
a272bf38
DL
4166 delta_from => 5.011002,
4167 changed => {
4168 'App::Cpan' => '1.570001',
4169 'Archive::Extract' => '0.36',
4170 'CPAN' => '1.94_5301',
4171 'CPAN::FTP' => '5.5004',
4172 'CPAN::FirstTime' => '5.530001',
4173 'CPAN::Mirrors' => '1.770001',
4174 'CPANPLUS' => '0.90',
4175 'CPANPLUS::Internals' => '0.90',
4176 'CPANPLUS::Shell::Default'=> '0.90',
4177 'Cwd' => '3.31',
4178 'Encode' => '2.39',
4179 'ExtUtils::Command::MM' => '6.56',
4180 'ExtUtils::Liblist' => '6.56',
4181 'ExtUtils::Liblist::Kid'=> '6.56',
4182 'ExtUtils::MM' => '6.56',
4183 'ExtUtils::MM_AIX' => '6.56',
4184 'ExtUtils::MM_Any' => '6.56',
4185 'ExtUtils::MM_BeOS' => '6.56',
4186 'ExtUtils::MM_Cygwin' => '6.56',
4187 'ExtUtils::MM_DOS' => '6.56',
4188 'ExtUtils::MM_Darwin' => '6.56',
4189 'ExtUtils::MM_MacOS' => '6.56',
4190 'ExtUtils::MM_NW5' => '6.56',
4191 'ExtUtils::MM_OS2' => '6.56',
4192 'ExtUtils::MM_QNX' => '6.56',
4193 'ExtUtils::MM_UWIN' => '6.56',
4194 'ExtUtils::MM_Unix' => '6.56',
4195 'ExtUtils::MM_VMS' => '6.56',
4196 'ExtUtils::MM_VOS' => '6.56',
4197 'ExtUtils::MM_Win32' => '6.56',
4198 'ExtUtils::MM_Win95' => '6.56',
4199 'ExtUtils::MY' => '6.56',
4200 'ExtUtils::MakeMaker' => '6.56',
4201 'ExtUtils::MakeMaker::Config'=> '6.56',
4202 'ExtUtils::Mkbootstrap' => '6.56',
4203 'ExtUtils::Mksymlists' => '6.56',
4204 'ExtUtils::testlib' => '6.56',
4205 'File::Find' => '1.15',
4206 'File::Path' => '2.08_01',
4207 'File::Spec' => '3.31',
4208 'Module::Build' => '0.36',
4209 'Module::Build::Base' => '0.36',
4210 'Module::Build::Compat' => '0.36',
4211 'Module::Build::Config' => '0.36',
4212 'Module::Build::Cookbook'=> '0.36',
4213 'Module::Build::Dumper' => '0.36',
4214 'Module::Build::ModuleInfo'=> '0.36',
4215 'Module::Build::Notes' => '0.36',
4216 'Module::Build::PPMMaker'=> '0.36',
4217 'Module::Build::Platform::Amiga'=> '0.36',
4218 'Module::Build::Platform::Default'=> '0.36',
4219 'Module::Build::Platform::EBCDIC'=> '0.36',
4220 'Module::Build::Platform::MPEiX'=> '0.36',
4221 'Module::Build::Platform::MacOS'=> '0.36',
4222 'Module::Build::Platform::RiscOS'=> '0.36',
4223 'Module::Build::Platform::Unix'=> '0.36',
4224 'Module::Build::Platform::VMS'=> '0.36',
4225 'Module::Build::Platform::VOS'=> '0.36',
4226 'Module::Build::Platform::Windows'=> '0.36',
4227 'Module::Build::Platform::aix'=> '0.36',
4228 'Module::Build::Platform::cygwin'=> '0.36',
4229 'Module::Build::Platform::darwin'=> '0.36',
4230 'Module::Build::Platform::os2'=> '0.36',
4231 'Module::Build::PodParser'=> '0.36',
4232 'Module::CoreList' => '2.24',
4233 'POSIX' => '1.19',
4234 'Pod::Simple' => '3.13',
4235 'Pod::Simple::BlackBox' => '3.13',
4236 'Pod::Simple::Checker' => '3.13',
4237 'Pod::Simple::Debug' => '3.13',
4238 'Pod::Simple::DumpAsText'=> '3.13',
4239 'Pod::Simple::DumpAsXML'=> '3.13',
4240 'Pod::Simple::HTML' => '3.13',
4241 'Pod::Simple::HTMLBatch'=> '3.13',
4242 'Pod::Simple::LinkSection'=> '3.13',
4243 'Pod::Simple::Methody' => '3.13',
4244 'Pod::Simple::Progress' => '3.13',
4245 'Pod::Simple::PullParser'=> '3.13',
4246 'Pod::Simple::PullParserEndToken'=> '3.13',
4247 'Pod::Simple::PullParserStartToken'=> '3.13',
4248 'Pod::Simple::PullParserTextToken'=> '3.13',
4249 'Pod::Simple::PullParserToken'=> '3.13',
4250 'Pod::Simple::RTF' => '3.13',
4251 'Pod::Simple::Search' => '3.13',
4252 'Pod::Simple::SimpleTree'=> '3.13',
4253 'Pod::Simple::Text' => '3.13',
4254 'Pod::Simple::TextContent'=> '3.13',
4255 'Pod::Simple::TiedOutFH'=> '3.13',
4256 'Pod::Simple::Transcode'=> '3.13',
4257 'Pod::Simple::TranscodeDumb'=> '3.13',
4258 'Pod::Simple::TranscodeSmart'=> '3.13',
4259 'Pod::Simple::XHTML' => '3.13',
4260 'Pod::Simple::XMLOutStream'=> '3.13',
4261 'Safe' => '2.20',
4262 'Unicode' => '5.2.0',
4263 'constant' => '1.20',
4264 'diagnostics' => '1.19',
4265 'feature' => '1.14',
4266 'inc::latest' => '0.36',
4267 'threads' => '1.75',
4268 'warnings' => '1.08',
4269 },
4270 removed => {
4271 'legacy' => 1,
4272 }
65f8b4e7 4273 },
d3cba0fe 4274 5.011004 => {
a272bf38
DL
4275 delta_from => 5.011003,
4276 changed => {
4277 'App::Cpan' => '1.5701',
4278 'Archive::Extract' => '0.38',
4279 'B::Deparse' => '0.94',
4280 'CPAN' => '1.94_54',
4281 'CPAN::FirstTime' => '5.53',
4282 'CPAN::Mirrors' => '1.77',
4283 'Carp' => '1.15',
4284 'Carp::Heavy' => '1.15',
4285 'Compress::Raw::Bzip2' => '2.024',
4286 'Compress::Raw::Zlib' => '2.024',
4287 'Compress::Zlib' => '2.024',
4288 'File::Copy' => '2.17',
4289 'File::Fetch' => '0.24',
4290 'GDBM_File' => '1.10',
4291 'IO::Compress::Adapter::Bzip2'=> '2.024',
4292 'IO::Compress::Adapter::Deflate'=> '2.024',
4293 'IO::Compress::Adapter::Identity'=> '2.024',
4294 'IO::Compress::Base' => '2.024',
4295 'IO::Compress::Base::Common'=> '2.024',
4296 'IO::Compress::Bzip2' => '2.024',
4297 'IO::Compress::Deflate' => '2.024',
4298 'IO::Compress::Gzip' => '2.024',
4299 'IO::Compress::Gzip::Constants'=> '2.024',
4300 'IO::Compress::RawDeflate'=> '2.024',
4301 'IO::Compress::Zip' => '2.024',
4302 'IO::Compress::Zip::Constants'=> '2.024',
4303 'IO::Compress::Zlib::Constants'=> '2.024',
4304 'IO::Compress::Zlib::Extra'=> '2.024',
4305 'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4306 'IO::Uncompress::Adapter::Identity'=> '2.024',
4307 'IO::Uncompress::Adapter::Inflate'=> '2.024',
4308 'IO::Uncompress::AnyInflate'=> '2.024',
4309 'IO::Uncompress::AnyUncompress'=> '2.024',
4310 'IO::Uncompress::Base' => '2.024',
4311 'IO::Uncompress::Bunzip2'=> '2.024',
4312 'IO::Uncompress::Gunzip'=> '2.024',
4313 'IO::Uncompress::Inflate'=> '2.024',
4314 'IO::Uncompress::RawInflate'=> '2.024',
4315 'IO::Uncompress::Unzip' => '2.024',
4316 'Module::Build' => '0.3603',
4317 'Module::Build::Base' => '0.3603',
4318 'Module::Build::Compat' => '0.3603',
4319 'Module::Build::Config' => '0.3603',
4320 'Module::Build::Cookbook'=> '0.3603',
4321 'Module::Build::Dumper' => '0.3603',
4322 'Module::Build::ModuleInfo'=> '0.3603',
4323 'Module::Build::Notes' => '0.3603',
4324 'Module::Build::PPMMaker'=> '0.3603',
4325 'Module::Build::Platform::Amiga'=> '0.3603',
4326 'Module::Build::Platform::Default'=> '0.3603',
4327 'Module::Build::Platform::EBCDIC'=> '0.3603',
4328 'Module::Build::Platform::MPEiX'=> '0.3603',
4329 'Module::Build::Platform::MacOS'=> '0.3603',
4330 'Module::Build::Platform::RiscOS'=> '0.3603',
4331 'Module::Build::Platform::Unix'=> '0.3603',
4332 'Module::Build::Platform::VMS'=> '0.3603',
4333 'Module::Build::Platform::VOS'=> '0.3603',
4334 'Module::Build::Platform::Windows'=> '0.3603',
4335 'Module::Build::Platform::aix'=> '0.3603',
4336 'Module::Build::Platform::cygwin'=> '0.3603',
4337 'Module::Build::Platform::darwin'=> '0.3603',
4338 'Module::Build::Platform::os2'=> '0.3603',
4339 'Module::Build::PodParser'=> '0.3603',
4340 'Module::CoreList' => '2.25',
4341 'PerlIO::encoding' => '0.12',
4342 'Safe' => '2.21',
4343 'UNIVERSAL' => '1.06',
4344 'feature' => '1.15',
4345 'inc::latest' => '0.3603',
4346 'less' => '0.03',
4347 're' => '0.11',
4348 'version' => '0.81',
4349 'warnings' => '1.09',
4350 },
4351 removed => {
4352 }
d3cba0fe 4353 },
2a3ea5b5 4354 5.011005 => {
a272bf38
DL
4355 delta_from => 5.011004,
4356 changed => {
4357 'B::Debug' => '1.12',
4358 'CPAN' => '1.94_56',
4359 'CPAN::Debug' => '5.5001',
4360 'CPAN::Distribution' => '1.9456',
4361 'CPAN::FirstTime' => '5.5301',
4362 'CPAN::HandleConfig' => '5.5001',
4363 'CPAN::Shell' => '5.5001',
4364 'CPAN::Tarzip' => '5.5011',
4365 'CPANPLUS::Dist::Build' => '0.46',
4366 'CPANPLUS::Dist::Build::Constants'=> '0.46',
4367 'Module::CoreList' => '2.26',
4368 'Pod::Man' => '2.23',
4369 'Pod::ParseLink' => '1.10',
4370 'Pod::Perldoc' => '3.15_02',
4371 'Pod::Plainer' => '1.02',
4372 'Pod::Text' => '3.14',
4373 'Pod::Text::Color' => '2.06',
4374 'Pod::Text::Overstrike' => '2.04',
4375 'Pod::Text::Termcap' => '2.06',
4376 'Safe' => '2.22',
4377 'Socket' => '1.86',
4378 'version' => '0.82',
4379 },
4380 removed => {
4381 }
812cbf67 4382 },
a272bf38
DL
4383 5.012 => {
4384 delta_from => 5.011005,
4385 changed => {
4386 'B::Deparse' => '0.96',
4387 'CPAN::Distribution' => '1.9456_01',
4388 'Module::CoreList' => '2.29',
4389 'Safe' => '2.25',
4390 'Socket' => '1.87',
4391 'Tie::Scalar' => '1.02',
4392 'Time::Piece' => '1.15_01',
4393 'bytes' => '1.04',
4394 'feature' => '1.16',
4395 'utf8' => '1.08',
4396 },
4397 removed => {
4398 }
3ec75686 4399 },
16ccd2bb 4400 5.012001 => {
a272bf38
DL
4401 delta_from => 5.012,
4402 changed => {
4403 'B::Deparse' => '0.97',
4404 'CGI' => '3.49',
4405 'CGI::Fast' => '1.08',
4406 'Carp' => '1.16',
4407 'Carp::Heavy' => '1.16',
4408 'File::Copy' => '2.18',
4409 'Module::CoreList' => '2.32',
4410 'Pod::Functions' => '1.04',
4411 'Pod::Simple' => '3.14',
4412 'Pod::Simple::BlackBox' => '3.14',
4413 'Pod::Simple::Checker' => '3.14',
4414 'Pod::Simple::Debug' => '3.14',
4415 'Pod::Simple::DumpAsText'=> '3.14',
4416 'Pod::Simple::DumpAsXML'=> '3.14',
4417 'Pod::Simple::HTML' => '3.14',
4418 'Pod::Simple::HTMLBatch'=> '3.14',
4419 'Pod::Simple::LinkSection'=> '3.14',
4420 'Pod::Simple::Methody' => '3.14',
4421 'Pod::Simple::Progress' => '3.14',
4422 'Pod::Simple::PullParser'=> '3.14',
4423 'Pod::Simple::PullParserEndToken'=> '3.14',
4424 'Pod::Simple::PullParserStartToken'=> '3.14',
4425 'Pod::Simple::PullParserTextToken'=> '3.14',
4426 'Pod::Simple::PullParserToken'=> '3.14',
4427 'Pod::Simple::RTF' => '3.14',
4428 'Pod::Simple::Search' => '3.14',
4429 'Pod::Simple::SimpleTree'=> '3.14',
4430 'Pod::Simple::Text' => '3.14',
4431 'Pod::Simple::TextContent'=> '3.14',
4432 'Pod::Simple::TiedOutFH'=> '3.14',
4433 'Pod::Simple::Transcode'=> '3.14',
4434 'Pod::Simple::TranscodeDumb'=> '3.14',
4435 'Pod::Simple::TranscodeSmart'=> '3.14',
4436 'Pod::Simple::XHTML' => '3.14',
4437 'Pod::Simple::XMLOutStream'=> '3.14',
4438 'Safe' => '2.27',
4439 },
4440 removed => {
4441 }
4442 },
4443 5.012002 => {
4444 delta_from => 5.012001,
4445 changed => {
4446 'Carp' => '1.17',
4447 'Carp::Heavy' => '1.17',
4448 'File::Spec' => '3.31_01',
4449 'Module::CoreList' => '2.38',
4450 'Module::Load::Conditional'=> '0.38',
4451 'PerlIO::scalar' => '0.08',
4452 },
4453 removed => {
4454 }
4455 },
4456 5.012003 => {
4457 delta_from => 5.012002,
4458 changed => {
4459 'B::Deparse' => '0.9701',
4460 'Module::Build::Platform::cygwin'=> '0.360301',
4461 'Module::CoreList' => '2.43',
4462 'Socket' => '1.87_01',
4463 },
4464 removed => {
4465 }
4466 },
4467 5.012004 => {
4468 delta_from => 5.012003,
4469 changed => {
4470 'Module::CoreList' => '2.50',
4471 },
4472 removed => {
a272bf38
DL
4473 }
4474 },
3df1c36a
CBW
4475 5.012005 => {
4476 delta_from => 5.012004,
4477 changed => {
4478 'B::Concise' => '0.78_01',
4479 'Encode' => '2.39_01',
4480 'File::Glob' => '1.07_01',
4481 'Module::CoreList' => '2.50_02',
4482 'Unicode::UCD' => '0.29',
4483 'charnames' => '1.07_01',
4484 },
4485 removed => {
4486 }
4487 },
a272bf38
DL
4488 5.013 => {
4489 delta_from => 5.012,
4490 changed => {
4491 'CGI' => '3.49',
4492 'CGI::Fast' => '1.08',
4493 'Data::Dumper' => '2.126',
4494 'ExtUtils::MM_Unix' => '6.5601',
4495 'ExtUtils::MakeMaker' => '6.5601',
4496 'File::Copy' => '2.18',
4497 'IPC::Open3' => '1.06',
4498 'MIME::Base64' => '3.09',
4499 'MIME::QuotedPrint' => '3.09',
4500 'Module::CoreList' => '2.31',
4501 'Pod::Functions' => '1.04',
4502 'XS::APItest' => '0.18',
4503 'XS::APItest::KeywordRPN'=> '0.004',
4504 'feature' => '1.17',
4505 'threads' => '1.77_01',
4506 'threads::shared' => '1.33',
4507 },
4508 removed => {
4509 }
16ccd2bb 4510 },
528f07d6 4511 5.013001 => {
a272bf38
DL
4512 delta_from => 5.012001,
4513 changed => {
4514 'Data::Dumper' => '2.126',
4515 'Dumpvalue' => '1.14',
4516 'Errno' => '1.12',
4517 'ExtUtils::MM_Unix' => '6.5601',
4518 'ExtUtils::MakeMaker' => '6.5601',
4519 'ExtUtils::ParseXS' => '2.2205',
4520 'File::Find' => '1.16',
4521 'IPC::Cmd' => '0.58',
4522 'IPC::Open3' => '1.06',
4523 'List::Util' => '1.23',
4524 'List::Util::PP' => '1.23',
4525 'List::Util::XS' => '1.23',
4526 'Locale::Codes' => '3.12',
4527 'Locale::Codes::Country'=> '3.12',
4528 'Locale::Codes::Currency'=> '3.12',
4529 'Locale::Codes::Language'=> '3.12',
4530 'Locale::Codes::Script' => '3.12',
4531 'Locale::Constants' => '3.12',
4532 'Locale::Country' => '3.12',
4533 'Locale::Currency' => '3.12',
4534 'Locale::Language' => '3.12',
4535 'Locale::Script' => '3.12',
4536 'MIME::Base64' => '3.09',
4537 'MIME::QuotedPrint' => '3.09',
4538 'Module::Build::Platform::cygwin'=> '0.360301',
4539 'Module::CoreList' => '2.34',
4540 'Module::Load::Conditional'=> '0.38',
4541 'PerlIO::scalar' => '0.08',
4542 'Scalar::Util' => '1.23',
4543 'Scalar::Util::PP' => '1.23',
4544 'Socket' => '1.88',
4545 'Term::ReadLine' => '1.06',
4546 'Unicode::UCD' => '0.28',
4547 'XS::APItest' => '0.19',
4548 'XS::APItest::KeywordRPN'=> '0.004',
4549 'charnames' => '1.08',
4550 'feature' => '1.17',
4551 'threads' => '1.77_01',
4552 'threads::shared' => '1.33',
4553 },
4554 removed => {
4555 'Class::ISA' => 1,
4556 'Pod::Plainer' => 1,
4557 'Switch' => 1,
4558 }
528f07d6 4559 },
37e1f6c7 4560 5.013002 => {
a272bf38
DL
4561 delta_from => 5.013001,
4562 changed => {
4563 'B::Concise' => '0.79',
4564 'B::Deparse' => '0.98',
4565 'CPAN' => '1.94_57',
4566 'CPAN::Distribution' => '1.9600',
4567 'Exporter' => '5.64_02',
4568 'Exporter::Heavy' => '5.64_02',
4569 'File::Copy' => '2.19',
4570 'Hash::Util' => '0.08',
4571 'IO::Socket' => '1.32',
4572 'Locale::Codes' => '3.13',
4573 'Locale::Codes::Country'=> '3.13',
4574 'Locale::Codes::Currency'=> '3.13',
4575 'Locale::Codes::Language'=> '3.13',
4576 'Locale::Codes::Script' => '3.13',
4577 'Locale::Constants' => '3.13',
4578 'Locale::Country' => '3.13',
4579 'Locale::Currency' => '3.13',
4580 'Locale::Language' => '3.13',
4581 'Locale::Script' => '3.13',
4582 'Search::Dict' => '1.03',
4583 'Socket' => '1.89',
4584 'Thread::Semaphore' => '2.11',
4585 'UNIVERSAL' => '1.07',
4586 'VMS::DCLsym' => '1.04',
4587 'mro' => '1.03',
4588 'threads' => '1.77_02',
4589 'threads::shared' => '1.33_01',
4590 },
4591 removed => {
4592 }
37e1f6c7 4593 },
a4729c0f 4594 5.013003 => {
a272bf38
DL
4595 delta_from => 5.013002,
4596 changed => {
4597 'App::Prove' => '3.21',
4598 'App::Prove::State' => '3.21',
4599 'App::Prove::State::Result'=> '3.21',
4600 'App::Prove::State::Result::Test'=> '3.21',
4601 'Archive::Extract' => '0.42',
4602 'Archive::Tar' => '1.64',
4603 'Archive::Tar::Constant'=> '1.64',
4604 'Archive::Tar::File' => '1.64',
4605 'Attribute::Handlers' => '0.88',
4606 'CPANPLUS' => '0.9007',
4607 'CPANPLUS::Internals' => '0.9007',
4608 'CPANPLUS::Shell::Default'=> '0.9007',
4609 'Compress::Raw::Bzip2' => '2.027',
4610 'Compress::Raw::Zlib' => '2.027_01',
4611 'Compress::Zlib' => '2.027',
4612 'DB' => '1.03',
4613 'Digest::MD5' => '2.40',
4614 'Digest::SHA' => '5.48',
4615 'Exporter' => '5.64_03',
4616 'Exporter::Heavy' => '5.64_03',
4617 'ExtUtils::CBuilder' => '0.2703',
4618 'ExtUtils::CBuilder::Base'=> '0.2703_01',
4619 'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4620 'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4621 'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4622 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4623 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4624 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4625 'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4626 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4627 'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4628 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4629 'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4630 'ExtUtils::Manifest' => '1.58',
4631 'ExtUtils::ParseXS' => '2.2206',
4632 'Fatal' => '2.10',
4633 'File::Basename' => '2.79',
4634 'File::Copy' => '2.20',
4635 'File::DosGlob' => '1.02',
4636 'File::Find' => '1.17',
4637 'File::Glob' => '1.08',
4638 'File::stat' => '1.03',
4639 'I18N::LangTags' => '0.35_01',
4640 'I18N::LangTags::List' => '0.35_01',
4641 'IO::Compress::Adapter::Bzip2'=> '2.027',
4642 'IO::Compress::Adapter::Deflate'=> '2.027',
4643 'IO::Compress::Adapter::Identity'=> '2.027',
4644 'IO::Compress::Base' => '2.027',
4645 'IO::Compress::Base::Common'=> '2.027',
4646 'IO::Compress::Bzip2' => '2.027',
4647 'IO::Compress::Deflate' => '2.027',
4648 'IO::Compress::Gzip' => '2.027',
4649 'IO::Compress::Gzip::Constants'=> '2.027',
4650 'IO::Compress::RawDeflate'=> '2.027',
4651 'IO::Compress::Zip' => '2.027',
4652 'IO::Compress::Zip::Constants'=> '2.027',
4653 'IO::Compress::Zlib::Constants'=> '2.027',
4654 'IO::Compress::Zlib::Extra'=> '2.027',
4655 'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4656 'IO::Uncompress::Adapter::Identity'=> '2.027',
4657 'IO::Uncompress::Adapter::Inflate'=> '2.027',
4658 'IO::Uncompress::AnyInflate'=> '2.027',
4659 'IO::Uncompress::AnyUncompress'=> '2.027',
4660 'IO::Uncompress::Base' => '2.027',
4661 'IO::Uncompress::Bunzip2'=> '2.027',
4662 'IO::Uncompress::Gunzip'=> '2.027',
4663 'IO::Uncompress::Inflate'=> '2.027',
4664 'IO::Uncompress::RawInflate'=> '2.027',
4665 'IO::Uncompress::Unzip' => '2.027',
4666 'IPC::Cmd' => '0.60',
4667 'IPC::Msg' => '2.03',
4668 'IPC::Semaphore' => '2.03',
4669 'IPC::SharedMem' => '2.03',
4670 'IPC::SysV' => '2.03',
4671 'Locale::Maketext' => '1.15',
4672 'Locale::Maketext::Guts'=> undef,
4673 'Locale::Maketext::GutsLoader'=> undef,
4674 'Module::Build' => '0.3607',
4675 'Module::Build::Base' => '0.3607',
4676 'Module::Build::Compat' => '0.3607',
4677 'Module::Build::Config' => '0.3607',
4678 'Module::Build::Cookbook'=> '0.3607',
4679 'Module::Build::Dumper' => '0.3607',
4680 'Module::Build::ModuleInfo'=> '0.3607',
4681 'Module::Build::Notes' => '0.3607',
4682 'Module::Build::PPMMaker'=> '0.3607',
4683 'Module::Build::Platform::Amiga'=> '0.3607',
4684 'Module::Build::Platform::Default'=> '0.3607',
4685 'Module::Build::Platform::EBCDIC'=> '0.3607',
4686 'Module::Build::Platform::MPEiX'=> '0.3607',
4687 'Module::Build::Platform::MacOS'=> '0.3607',
4688 'Module::Build::Platform::RiscOS'=> '0.3607',
4689 'Module::Build::Platform::Unix'=> '0.3607',
4690 'Module::Build::Platform::VMS'=> '0.3607',
4691 'Module::Build::Platform::VOS'=> '0.3607',
4692 'Module::Build::Platform::Windows'=> '0.3607',
4693 'Module::Build::Platform::aix'=> '0.3607',
4694 'Module::Build::Platform::cygwin'=> '0.3607',
4695 'Module::Build::Platform::darwin'=> '0.3607',
4696 'Module::Build::Platform::os2'=> '0.3607',
4697 'Module::Build::PodParser'=> '0.3607',
4698 'Module::CoreList' => '2.36',
4699 'Module::Load' => '0.18',
4700 'TAP::Base' => '3.21',
4701 'TAP::Formatter::Base' => '3.21',
4702 'TAP::Formatter::Color' => '3.21',
4703 'TAP::Formatter::Console'=> '3.21',
4704 'TAP::Formatter::Console::ParallelSession'=> '3.21',
4705 'TAP::Formatter::Console::Session'=> '3.21',
4706 'TAP::Formatter::File' => '3.21',
4707 'TAP::Formatter::File::Session'=> '3.21',
4708 'TAP::Formatter::Session'=> '3.21',
4709 'TAP::Harness' => '3.21',
4710 'TAP::Object' => '3.21',
4711 'TAP::Parser' => '3.21',
4712 'TAP::Parser::Aggregator'=> '3.21',
4713 'TAP::Parser::Grammar' => '3.21',
4714 'TAP::Parser::Iterator' => '3.21',
4715 'TAP::Parser::Iterator::Array'=> '3.21',
4716 'TAP::Parser::Iterator::Process'=> '3.21',
4717 'TAP::Parser::Iterator::Stream'=> '3.21',
4718 'TAP::Parser::IteratorFactory'=> '3.21',
4719 'TAP::Parser::Multiplexer'=> '3.21',
4720 'TAP::Parser::Result' => '3.21',
4721 'TAP::Parser::Result::Bailout'=> '3.21',
4722 'TAP::Parser::Result::Comment'=> '3.21',
4723 'TAP::Parser::Result::Plan'=> '3.21',
4724 'TAP::Parser::Result::Pragma'=> '3.21',
4725 'TAP::Parser::Result::Test'=> '3.21',
4726 'TAP::Parser::Result::Unknown'=> '3.21',
4727 'TAP::Parser::Result::Version'=> '3.21',
4728 'TAP::Parser::Result::YAML'=> '3.21',
4729 'TAP::Parser::ResultFactory'=> '3.21',
4730 'TAP::Parser::Scheduler'=> '3.21',
4731 'TAP::Parser::Scheduler::Job'=> '3.21',
4732 'TAP::Parser::Scheduler::Spinner'=> '3.21',
4733 'TAP::Parser::Source' => '3.21',
4734 'TAP::Parser::SourceHandler'=> '3.21',
4735 'TAP::Parser::SourceHandler::Executable'=> '3.21',
4736 'TAP::Parser::SourceHandler::File'=> '3.21',
4737 'TAP::Parser::SourceHandler::Handle'=> '3.21',
4738 'TAP::Parser::SourceHandler::Perl'=> '3.21',
4739 'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4740 'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4741 'TAP::Parser::Utils' => '3.21',
4742 'TAP::Parser::YAMLish::Reader'=> '3.21',
4743 'TAP::Parser::YAMLish::Writer'=> '3.21',
4744 'Term::ANSIColor' => '3.00',
4745 'Term::ReadLine' => '1.07',
4746 'Test::Harness' => '3.21',
4747 'Tie::Array' => '1.04',
4748 'Time::HiRes' => '1.9721',
4749 'Time::Piece' => '1.20_01',
4750 'Unicode::Collate' => '0.53',
4751 'Unicode::Normalize' => '1.06',
4752 'Unicode::UCD' => '0.29',
4753 'autodie' => '2.10',
4754 'autodie::exception' => '2.10',
4755 'autodie::exception::system'=> '2.10',
4756 'autodie::hints' => '2.10',
4757 'blib' => '1.05',
4758 'charnames' => '1.11',
4759 'diagnostics' => '1.20',
4760 'inc::latest' => '0.3607',
4761 'lib' => '0.63',
4762 're' => '0.12',
4763 'threads' => '1.77_03',
4764 'threads::shared' => '1.33_02',
4765 'vars' => '1.02',
4766 'warnings' => '1.10',
4767 },
4768 removed => {
a272bf38
DL
4769 'TAP::Parser::Source::Perl'=> 1,
4770 }
a4729c0f 4771 },
7529c15c 4772 5.013004 => {
a272bf38
DL
4773 delta_from => 5.013003,
4774 changed => {
4775 'App::Prove' => '3.22',
4776 'App::Prove::State' => '3.22',
4777 'App::Prove::State::Result'=> '3.22',
4778 'App::Prove::State::Result::Test'=> '3.22',
4779 'Archive::Tar' => '1.68',
4780 'Archive::Tar::Constant'=> '1.68',
4781 'Archive::Tar::File' => '1.68',
4782 'B::Lint' => '1.12',
4783 'B::Lint::Debug' => '1.12',
4784 'Carp' => '1.18',
4785 'Carp::Heavy' => '1.18',
4786 'Compress::Raw::Bzip2' => '2.030',
4787 'Compress::Raw::Zlib' => '2.030',
4788 'Compress::Zlib' => '2.030',
a272bf38
DL
4789 'ExtUtils::ParseXS' => '2.2207',
4790 'File::Spec' => '3.31_01',
4791 'I18N::Langinfo' => '0.04',
4792 'IO::Compress::Adapter::Bzip2'=> '2.030',
4793 'IO::Compress::Adapter::Deflate'=> '2.030',
4794 'IO::Compress::Adapter::Identity'=> '2.030',
4795 'IO::Compress::Base' => '2.030',
4796 'IO::Compress::Base::Common'=> '2.030',
4797 'IO::Compress::Bzip2' => '2.030',
4798 'IO::Compress::Deflate' => '2.030',
4799 'IO::Compress::Gzip' => '2.030',
4800 'IO::Compress::Gzip::Constants'=> '2.030',
4801 'IO::Compress::RawDeflate'=> '2.030',
4802 'IO::Compress::Zip' => '2.030',
4803 'IO::Compress::Zip::Constants'=> '2.030',
4804 'IO::Compress::Zlib::Constants'=> '2.030',
4805 'IO::Compress::Zlib::Extra'=> '2.030',
4806 'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4807 'IO::Uncompress::Adapter::Identity'=> '2.030',
4808 'IO::Uncompress::Adapter::Inflate'=> '2.030',
4809 'IO::Uncompress::AnyInflate'=> '2.030',
4810 'IO::Uncompress::AnyUncompress'=> '2.030',
4811 'IO::Uncompress::Base' => '2.030',
4812 'IO::Uncompress::Bunzip2'=> '2.030',
4813 'IO::Uncompress::Gunzip'=> '2.030',
4814 'IO::Uncompress::Inflate'=> '2.030',
4815 'IO::Uncompress::RawInflate'=> '2.030',
4816 'IO::Uncompress::Unzip' => '2.030',
4817 'Module::CoreList' => '2.37',
4818 'TAP::Base' => '3.22',
4819 'TAP::Formatter::Base' => '3.22',
4820 'TAP::Formatter::Color' => '3.22',
4821 'TAP::Formatter::Console'=> '3.22',
4822 'TAP::Formatter::Console::ParallelSession'=> '3.22',
4823 'TAP::Formatter::Console::Session'=> '3.22',
4824 'TAP::Formatter::File' => '3.22',
4825 'TAP::Formatter::File::Session'=> '3.22',
4826 'TAP::Formatter::Session'=> '3.22',
4827 'TAP::Harness' => '3.22',
4828 'TAP::Object' => '3.22',
4829 'TAP::Parser' => '3.22',
4830 'TAP::Parser::Aggregator'=> '3.22',
4831 'TAP::Parser::Grammar' => '3.22',
4832 'TAP::Parser::Iterator' => '3.22',
4833 'TAP::Parser::Iterator::Array'=> '3.22',
4834 'TAP::Parser::Iterator::Process'=> '3.22',
4835 'TAP::Parser::Iterator::Stream'=> '3.22',
4836 'TAP::Parser::IteratorFactory'=> '3.22',
4837 'TAP::Parser::Multiplexer'=> '3.22',
4838 'TAP::Parser::Result' => '3.22',
4839 'TAP::Parser::Result::Bailout'=> '3.22',
4840 'TAP::Parser::Result::Comment'=> '3.22',
4841 'TAP::Parser::Result::Plan'=> '3.22',
4842 'TAP::Parser::Result::Pragma'=> '3.22',
4843 'TAP::Parser::Result::Test'=> '3.22',
4844 'TAP::Parser::Result::Unknown'=> '3.22',
4845 'TAP::Parser::Result::Version'=> '3.22',
4846 'TAP::Parser::Result::YAML'=> '3.22',
4847 'TAP::Parser::ResultFactory'=> '3.22',
4848 'TAP::Parser::Scheduler'=> '3.22',
4849 'TAP::Parser::Scheduler::Job'=> '3.22',
4850 'TAP::Parser::Scheduler::Spinner'=> '3.22',
4851 'TAP::Parser::Source' => '3.22',
4852 'TAP::Parser::SourceHandler'=> '3.22',
4853 'TAP::Parser::SourceHandler::Executable'=> '3.22',
4854 'TAP::Parser::SourceHandler::File'=> '3.22',
4855 'TAP::Parser::SourceHandler::Handle'=> '3.22',
4856 'TAP::Parser::SourceHandler::Perl'=> '3.22',
4857 'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4858 'TAP::Parser::Utils' => '3.22',
4859 'TAP::Parser::YAMLish::Reader'=> '3.22',
4860 'TAP::Parser::YAMLish::Writer'=> '3.22',
4861 'Test::Builder' => '0.96',
4862 'Test::Builder::Module' => '0.96',
4863 'Test::Builder::Tester' => '1.20',
4864 'Test::Builder::Tester::Color'=> '1.20',
4865 'Test::Harness' => '3.22',
4866 'Test::More' => '0.96',
4867 'Test::Simple' => '0.96',
4868 'Unicode::Collate' => '0.56',
4869 'Unicode::Collate::Locale'=> '0.56',
4870 'XS::APItest' => '0.20',
4871 'charnames' => '1.15',
4872 'feature' => '1.18',
4873 },
4874 removed => {
4875 'TAP::Parser::SourceHandler::pgTAP'=> 1,
4876 }
b55a5fdc 4877 },
0530d763 4878 5.013005 => {
a272bf38
DL
4879 delta_from => 5.013004,
4880 changed => {
4881 'B::Debug' => '1.16',
4882 'CPANPLUS::Dist::Build' => '0.48',
4883 'CPANPLUS::Dist::Build::Constants'=> '0.48',
4884 'Data::Dumper' => '2.128',
4885 'Encode' => '2.40',
4886 'Encode::Guess' => '2.04',
4887 'Encode::MIME::Header' => '2.12',
4888 'Encode::Unicode::UTF7' => '2.05',
4889 'Errno' => '1.13',
4890 'ExtUtils::Command::MM' => '6.57_05',
4891 'ExtUtils::Liblist' => '6.57_05',
4892 'ExtUtils::Liblist::Kid'=> '6.5705',
4893 'ExtUtils::MM' => '6.57_05',
4894 'ExtUtils::MM_AIX' => '6.57_05',
4895 'ExtUtils::MM_Any' => '6.57_05',
4896 'ExtUtils::MM_BeOS' => '6.57_05',
4897 'ExtUtils::MM_Cygwin' => '6.57_05',
4898 'ExtUtils::MM_DOS' => '6.5705',
4899 'ExtUtils::MM_Darwin' => '6.57_05',
4900 'ExtUtils::MM_MacOS' => '6.5705',
4901 'ExtUtils::MM_NW5' => '6.57_05',
4902 'ExtUtils::MM_OS2' => '6.57_05',
4903 'ExtUtils::MM_QNX' => '6.57_05',
4904 'ExtUtils::MM_UWIN' => '6.5705',
4905 'ExtUtils::MM_Unix' => '6.57_05',
4906 'ExtUtils::MM_VMS' => '6.57_05',
4907 'ExtUtils::MM_VOS' => '6.57_05',
4908 'ExtUtils::MM_Win32' => '6.57_05',
4909 'ExtUtils::MM_Win95' => '6.57_05',
4910 'ExtUtils::MY' => '6.5705',
4911 'ExtUtils::MakeMaker' => '6.57_05',
4912 'ExtUtils::MakeMaker::Config'=> '6.57_05',
4913 'ExtUtils::MakeMaker::YAML'=> '1.44',
4914 'ExtUtils::Mkbootstrap' => '6.57_05',
4915 'ExtUtils::Mksymlists' => '6.57_05',
4916 'ExtUtils::testlib' => '6.5705',
4917 'Filter::Simple' => '0.85',
4918 'Hash::Util' => '0.09',
4919 'Math::BigFloat' => '1.62',
4920 'Math::BigInt' => '1.95',
4921 'Math::BigInt::Calc' => '0.54',
4922 'Math::BigInt::CalcEmu' => '0.06',
4923 'Math::BigInt::FastCalc'=> '0.22',
4924 'Math::BigRat' => '0.26',
4925 'Module::CoreList' => '2.39',
4926 'POSIX' => '1.20',
4927 'PerlIO::scalar' => '0.09',
4928 'Safe' => '2.28',
4929 'Test::Builder' => '0.97_01',
4930 'Test::Builder::Module' => '0.97_01',
4931 'Test::Builder::Tester' => '1.21_01',
4932 'Test::Builder::Tester::Color'=> '1.21_01',
4933 'Test::More' => '0.97_01',
4934 'Test::Simple' => '0.97_01',
4935 'Tie::Hash' => '1.04',
4936 'Unicode::Collate' => '0.59',
4937 'Unicode::Collate::Locale'=> '0.59',
4938 'XS::APItest' => '0.21',
4939 'XS::APItest::KeywordRPN'=> '0.005',
4940 'XSLoader' => '0.11',
4941 'bigint' => '0.25',
4942 'bignum' => '0.25',
4943 'bigrat' => '0.25',
4944 'blib' => '1.06',
4945 'open' => '1.08',
4946 'threads::shared' => '1.33_03',
4947 'warnings' => '1.11',
4948 'warnings::register' => '1.02',
4949 },
4950 removed => {
4951 }
0530d763 4952 },
7de25fd5 4953 5.013006 => {
a272bf38
DL
4954 delta_from => 5.013005,
4955 changed => {
4956 'Archive::Extract' => '0.44',
4957 'B' => '1.24',
4958 'B::Deparse' => '0.99',
4959 'CPAN' => '1.94_61',
4960 'CPAN::FTP' => '5.5005',
4961 'CPAN::Queue' => '5.5001',
4962 'CPAN::Version' => '5.5001',
4963 'Carp' => '1.19',
4964 'Carp::Heavy' => '1.19',
4965 'Compress::Raw::Bzip2' => '2.031',
4966 'Cwd' => '3.34',
4967 'Data::Dumper' => '2.129',
4968 'Devel::Peek' => '1.05',
4969 'Digest::MD5' => '2.51',
4970 'ExtUtils::Constant::Base'=> '0.05',
4971 'ExtUtils::Constant::ProxySubs'=> '0.07',
4972 'ExtUtils::Embed' => '1.29',
4973 'ExtUtils::XSSymSet' => '1.2',
4974 'Fcntl' => '1.09',
4975 'File::DosGlob' => '1.03',
4976 'File::Find' => '1.18',
4977 'File::Glob' => '1.09',
4978 'File::Spec' => '3.33',
4979 'File::Spec::Cygwin' => '3.33',
4980 'File::Spec::Epoc' => '3.33',
4981 'File::Spec::Functions' => '3.33',
4982 'File::Spec::Mac' => '3.33',
4983 'File::Spec::OS2' => '3.33',
4984 'File::Spec::Unix' => '3.33',
4985 'File::Spec::VMS' => '3.33',
4986 'File::Spec::Win32' => '3.33',
4987 'GDBM_File' => '1.11',
4988 'Hash::Util::FieldHash' => '1.05',
4989 'I18N::Langinfo' => '0.06',
4990 'IPC::Cmd' => '0.64',
4991 'IPC::Open3' => '1.07',
4992 'Locale::Codes' => '3.14',
4993 'Locale::Codes::Country'=> '3.14',
4994 'Locale::Codes::Currency'=> '3.14',
4995 'Locale::Codes::Language'=> '3.14',
4996 'Locale::Codes::Script' => '3.14',
4997 'Locale::Constants' => '3.14',
4998 'Locale::Country' => '3.14',
4999 'Locale::Currency' => '3.14',
5000 'Locale::Language' => '3.14',
5001 'Locale::Maketext' => '1.16',
5002 'Locale::Script' => '3.14',
5003 'Math::BigFloat' => '1.63',
5004 'Math::BigInt' => '1.97',
5005 'Math::BigInt::Calc' => '0.55',
5006 'Math::BigInt::CalcEmu' => '0.07',
5007 'Module::CoreList' => '2.40',
5008 'NDBM_File' => '1.09',
5009 'NEXT' => '0.65',
5010 'ODBM_File' => '1.08',
5011 'Opcode' => '1.16',
5012 'POSIX' => '1.21',
5013 'PerlIO::encoding' => '0.13',
5014 'PerlIO::scalar' => '0.10',
5015 'PerlIO::via' => '0.10',
5016 'Pod::Man' => '2.25',
5017 'Pod::Text' => '3.15',
5018 'SDBM_File' => '1.07',
5019 'Socket' => '1.90',
5020 'Sys::Hostname' => '1.13',
5021 'Tie::Hash::NamedCapture'=> '0.07',
5022 'Unicode::Collate' => '0.63',
5023 'Unicode::Collate::Locale'=> '0.63',
5024 'Unicode::Normalize' => '1.07',
5025 'XS::APItest' => '0.23',
5026 'XSLoader' => '0.13',
5027 'attributes' => '0.13',
5028 'charnames' => '1.16',
5029 'if' => '0.06',
5030 'mro' => '1.04',
5031 'overload' => '1.11',
5032 're' => '0.13',
5033 'sigtrap' => '1.05',
5034 'threads' => '1.81_01',
5035 'threads::shared' => '1.34',
5036 },
5037 removed => {
5038 'XS::APItest::KeywordRPN'=> 1,
5039 }
7de25fd5 5040 },
d24e0a99 5041 5.013007 => {
a272bf38
DL
5042 delta_from => 5.013006,
5043 changed => {
5044 'Archive::Extract' => '0.46',
5045 'Archive::Tar' => '1.72',
5046 'Archive::Tar::Constant'=> '1.72',
5047 'Archive::Tar::File' => '1.72',
5048 'AutoLoader' => '5.71',
5049 'B' => '1.26',
5050 'B::Concise' => '0.81',
5051 'B::Deparse' => '1.01',
5052 'CGI' => '3.50',
5053 'CPAN' => '1.94_62',
5054 'CPANPLUS' => '0.9010',
5055 'CPANPLUS::Dist::Build' => '0.50',
5056 'CPANPLUS::Dist::Build::Constants'=> '0.50',
5057 'CPANPLUS::Internals' => '0.9010',
5058 'CPANPLUS::Shell::Default'=> '0.9010',
5059 'Data::Dumper' => '2.130_01',
5060 'DynaLoader' => '1.11',
5061 'ExtUtils::Constant' => '0.23',
5062 'ExtUtils::Constant::ProxySubs'=> '0.08',
5063 'Fcntl' => '1.10',
5064 'File::Fetch' => '0.28',
5065 'File::Glob' => '1.10',
5066 'File::stat' => '1.04',
5067 'GDBM_File' => '1.12',
5068 'Hash::Util' => '0.10',
5069 'Hash::Util::FieldHash' => '1.06',
5070 'I18N::Langinfo' => '0.07',
5071 'Locale::Maketext' => '1.17',
5072 'Locale::Maketext::Guts'=> '1.17',
5073 'Locale::Maketext::GutsLoader'=> '1.17',
5074 'MIME::Base64' => '3.10',
5075 'MIME::QuotedPrint' => '3.10',
5076 'Math::BigFloat' => '1.99_01',
5077 'Math::BigInt' => '1.99_01',
5078 'Math::BigInt::Calc' => '1.99_01',
5079 'Math::BigInt::CalcEmu' => '1.99_01',
5080 'Math::BigInt::FastCalc'=> '0.24_01',
5081 'Math::BigRat' => '0.26_01',
5082 'Module::CoreList' => '2.41',
5083 'NDBM_File' => '1.10',
5084 'ODBM_File' => '1.09',
5085 'Opcode' => '1.17',
5086 'POSIX' => '1.22',
5087 'Pod::Simple' => '3.15',
5088 'Pod::Simple::BlackBox' => '3.15',
5089 'Pod::Simple::Checker' => '3.15',
5090 'Pod::Simple::Debug' => '3.15',
5091 'Pod::Simple::DumpAsText'=> '3.15',
5092 'Pod::Simple::DumpAsXML'=> '3.15',
5093 'Pod::Simple::HTML' => '3.15',
5094 'Pod::Simple::HTMLBatch'=> '3.15',
5095 'Pod::Simple::LinkSection'=> '3.15',
5096 'Pod::Simple::Methody' => '3.15',
5097 'Pod::Simple::Progress' => '3.15',
5098 'Pod::Simple::PullParser'=> '3.15',
5099 'Pod::Simple::PullParserEndToken'=> '3.15',
5100 'Pod::Simple::PullParserStartToken'=> '3.15',
5101 'Pod::Simple::PullParserTextToken'=> '3.15',
5102 'Pod::Simple::PullParserToken'=> '3.15',
5103 'Pod::Simple::RTF' => '3.15',
5104 'Pod::Simple::Search' => '3.15',
5105 'Pod::Simple::SimpleTree'=> '3.15',
5106 'Pod::Simple::Text' => '3.15',
5107 'Pod::Simple::TextContent'=> '3.15',
5108 'Pod::Simple::TiedOutFH'=> '3.15',
5109 'Pod::Simple::Transcode'=> '3.15',
5110 'Pod::Simple::TranscodeDumb'=> '3.15',
5111 'Pod::Simple::TranscodeSmart'=> '3.15',
5112 'Pod::Simple::XHTML' => '3.15',
5113 'Pod::Simple::XMLOutStream'=> '3.15',
5114 'SDBM_File' => '1.08',
5115 'Safe' => '2.29',
5116 'SelfLoader' => '1.18',
5117 'Socket' => '1.91',
5118 'Storable' => '2.24',
5119 'Sys::Hostname' => '1.14',
5120 'Unicode' => '6.0.0',
5121 'Unicode::Collate' => '0.67',
5122 'Unicode::Collate::CJK::Big5'=> '0.65',
5123 'Unicode::Collate::CJK::GB2312'=> '0.65',
5124 'Unicode::Collate::CJK::JISX0208'=> '0.64',
5125 'Unicode::Collate::CJK::Korean'=> '0.66',
5126 'Unicode::Collate::CJK::Pinyin'=> '0.65',
5127 'Unicode::Collate::CJK::Stroke'=> '0.65',
5128 'Unicode::Collate::Locale'=> '0.67',
5129 'XS::APItest' => '0.26',
5130 'XS::Typemap' => '0.04',
5131 'charnames' => '1.17',
5132 'mro' => '1.05',
5133 'parent' => '0.224',
5134 're' => '0.14',
5135 'threads' => '1.81_02',
5136 },
5137 removed => {
5138 }
d24e0a99 5139 },
67dbc274 5140 5.013008 => {
a272bf38
DL
5141 delta_from => 5.013007,
5142 changed => {
5143 'Archive::Tar' => '1.74',
5144 'Archive::Tar::Constant'=> '1.74',
5145 'Archive::Tar::File' => '1.74',
5146 'B' => '1.27',
5147 'B::Concise' => '0.82',
5148 'B::Deparse' => '1.02',
5149 'Carp::Heavy' => '1.17',
5150 'Cwd' => '3.35',
5151 'Data::Dumper' => '2.130_02',
5152 'Devel::Peek' => '1.06',
5153 'Devel::SelfStubber' => '1.05',
5154 'Digest::SHA' => '5.50',
5155 'Dumpvalue' => '1.15',
5156 'DynaLoader' => '1.12',
5157 'Env' => '1.02',
5158 'Exporter::Heavy' => '5.64_01',
5159 'ExtUtils::CBuilder' => '0.280201',
5160 'ExtUtils::CBuilder::Base'=> '0.280201',
5161 'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5162 'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5163 'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5164 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5165 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5166 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5167 'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5168 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5169 'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5170 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5171 'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5172 'ExtUtils::Constant::Utils'=> '0.03',
5173 'ExtUtils::Embed' => '1.30',
5174 'ExtUtils::ParseXS' => '2.2208',
5175 'Fatal' => '2.1001',
5176 'Fcntl' => '1.11',
5177 'File::CheckTree' => '4.41',
5178 'File::Glob' => '1.11',
5179 'GDBM_File' => '1.13',
5180 'Hash::Util::FieldHash' => '1.07',
5181 'I18N::Collate' => '1.02',
5182 'IO' => '1.25_03',
5183 'IPC::Cmd' => '0.66',
5184 'IPC::Open3' => '1.08',
5185 'Locale::Codes' => '3.15',
5186 'Locale::Codes::Country'=> '3.15',
5187 'Locale::Codes::Currency'=> '3.15',
5188 'Locale::Codes::Language'=> '3.15',
5189 'Locale::Codes::Script' => '3.15',
5190 'Locale::Constants' => '3.15',
5191 'Locale::Country' => '3.15',
5192 'Locale::Currency' => '3.15',
5193 'Locale::Language' => '3.15',
5194 'Locale::Script' => '3.15',
5195 'MIME::Base64' => '3.13',
5196 'MIME::QuotedPrint' => '3.13',
5197 'Math::BigFloat' => '1.99_02',
5198 'Math::BigInt' => '1.99_02',
5199 'Math::BigInt::Calc' => '1.99_02',
5200 'Math::BigInt::CalcEmu' => '1.99_02',
5201 'Memoize' => '1.02',
5202 'Memoize::AnyDBM_File' => '1.02',
5203 'Memoize::Expire' => '1.02',
5204 'Memoize::ExpireFile' => '1.02',
5205 'Memoize::ExpireTest' => '1.02',
5206 'Memoize::NDBM_File' => '1.02',
5207 'Memoize::SDBM_File' => '1.02',
5208 'Memoize::Storable' => '1.02',
5209 'Module::CoreList' => '2.43',
5210 'NDBM_File' => '1.11',
5211 'Net::Ping' => '2.37',
5212 'ODBM_File' => '1.10',
5213 'Opcode' => '1.18',
5214 'POSIX' => '1.23',
5215 'PerlIO::encoding' => '0.14',
5216 'PerlIO::scalar' => '0.11',
5217 'PerlIO::via' => '0.11',
5218 'SDBM_File' => '1.09',
5219 'Socket' => '1.92',
5220 'Storable' => '2.25',
5221 'Time::HiRes' => '1.9721_01',
5222 'Unicode::Collate' => '0.6801',
5223 'Unicode::Collate::Locale'=> '0.68',
5224 'Unicode::Normalize' => '1.08',
5225 'Unicode::UCD' => '0.30',
5226 'Win32' => '0.41',
5227 'XS::APItest' => '0.27',
5228 'autodie' => '2.1001',
5229 'autodie::exception' => '2.1001',
5230 'autodie::exception::system'=> '2.1001',
5231 'autodie::hints' => '2.1001',
5232 'feature' => '1.19',
5233 'if' => '0.0601',
5234 'mro' => '1.06',
5235 'overload' => '1.12',
5236 're' => '0.15',
5237 'threads' => '1.81_03',
5238 'threads::shared' => '1.35',
5239 'version' => '0.86',
5240 },
5241 removed => {
5242 }
57e52dbe 5243 },
e0698539 5244 5.013009 => {
a272bf38
DL
5245 delta_from => 5.013008,
5246 changed => {
5247 'Archive::Extract' => '0.48',
5248 'Archive::Tar' => '1.76',
5249 'Archive::Tar::Constant'=> '1.76',
5250 'Archive::Tar::File' => '1.76',
5251 'B::Concise' => '0.83',
5252 'B::Deparse' => '1.03',
5253 'B::Lint' => '1.13',
5254 'Benchmark' => '1.12',
5255 'CGI' => '3.51',
5256 'CGI::Carp' => '3.51',
5257 'CGI::Cookie' => '1.30',
5258 'CGI::Push' => '1.05',
5259 'CGI::Util' => '3.51',
5260 'CPAN' => '1.94_63',
5261 'CPAN::HTTP::Client' => '1.94',
5262 'CPAN::HTTP::Credentials'=> '1.94',
5263 'CPAN::Meta::YAML' => '0.003',
5264 'CPANPLUS' => '0.9011',
5265 'CPANPLUS::Dist::Build' => '0.52',
5266 'CPANPLUS::Dist::Build::Constants'=> '0.52',
5267 'CPANPLUS::Internals' => '0.9011',
5268 'CPANPLUS::Shell::Default'=> '0.9011',
5269 'Carp::Heavy' => '1.19',
5270 'Compress::Raw::Bzip2' => '2.033',
5271 'Compress::Raw::Zlib' => '2.033',
5272 'Compress::Zlib' => '2.033',
5273 'Cwd' => '3.36',
5274 'DBM_Filter' => '0.04',
5275 'DB_File' => '1.821',
5276 'Devel::Peek' => '1.07',
5277 'DirHandle' => '1.04',
5278 'Dumpvalue' => '1.16',
5279 'Encode' => '2.42',
5280 'Encode::Alias' => '2.13',
5281 'Encode::MIME::Header' => '2.13',
5282 'Exporter::Heavy' => '5.64_03',
5283 'ExtUtils::Install' => '1.56',
5284 'ExtUtils::ParseXS' => '2.2209',
5285 'File::Basename' => '2.80',
5286 'File::Copy' => '2.21',
5287 'File::DosGlob' => '1.04',
5288 'File::Fetch' => '0.32',
5289 'File::Find' => '1.19',
5290 'File::Spec::Mac' => '3.34',
5291 'File::Spec::VMS' => '3.34',
5292 'File::stat' => '1.05',
5293 'HTTP::Tiny' => '0.009',
5294 'Hash::Util::FieldHash' => '1.08',
5295 'IO::Compress::Adapter::Bzip2'=> '2.033',
5296 'IO::Compress::Adapter::Deflate'=> '2.033',
5297 'IO::Compress::Adapter::Identity'=> '2.033',
5298 'IO::Compress::Base' => '2.033',
5299 'IO::Compress::Base::Common'=> '2.033',
5300 'IO::Compress::Bzip2' => '2.033',
5301 'IO::Compress::Deflate' => '2.033',
5302 'IO::Compress::Gzip' => '2.033',
5303 'IO::Compress::Gzip::Constants'=> '2.033',
5304 'IO::Compress::RawDeflate'=> '2.033',
5305 'IO::Compress::Zip' => '2.033',
5306 'IO::Compress::Zip::Constants'=> '2.033',
5307 'IO::Compress::Zlib::Constants'=> '2.033',
5308 'IO::Compress::Zlib::Extra'=> '2.033',
5309 'IO::Handle' => '1.29',
5310 'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5311 'IO::Uncompress::Adapter::Identity'=> '2.033',
5312 'IO::Uncompress::Adapter::Inflate'=> '2.033',
5313 'IO::Uncompress::AnyInflate'=> '2.033',
5314 'IO::Uncompress::AnyUncompress'=> '2.033',
5315 'IO::Uncompress::Base' => '2.033',
5316 'IO::Uncompress::Bunzip2'=> '2.033',
5317 'IO::Uncompress::Gunzip'=> '2.033',
5318 'IO::Uncompress::Inflate'=> '2.033',
5319 'IO::Uncompress::RawInflate'=> '2.033',
5320 'IO::Uncompress::Unzip' => '2.033',
5321 'IPC::Cmd' => '0.68',
5322 'IPC::Open3' => '1.09',
5323 'JSON::PP' => '2.27103',
5324 'JSON::PP::Boolean' => undef,
5325 'Locale::Maketext' => '1.18',
5326 'Log::Message' => '0.04',
5327 'Log::Message::Config' => '0.04',
5328 'Log::Message::Handlers'=> '0.04',
5329 'Log::Message::Item' => '0.04',
5330 'Log::Message::Simple' => '0.08',
5331 'Math::BigFloat' => '1.99_03',
5332 'Math::BigInt' => '1.99_03',
5333 'Math::BigInt::Calc' => '1.99_03',
5334 'Math::BigInt::FastCalc'=> '0.24_02',
5335 'Math::BigRat' => '0.26_02',
5336 'Module::CoreList' => '2.42_01',
5337 'Module::Load::Conditional'=> '0.40',
5338 'Module::Metadata' => '1.000003',
5339 'Net::Ping' => '2.38',
78da2da6 5340 'OS2::Process' => '1.05',
a272bf38
DL
5341 'Object::Accessor' => '0.38',
5342 'POSIX' => '1.24',
5343 'Params::Check' => '0.28',
5344 'Perl::OSType' => '1.002',
5345 'Pod::LaTeX' => '0.59',
5346 'Pod::Perldoc' => '3.15_03',
5347 'Socket' => '1.93',
5348 'Storable' => '2.26',
5349 'Sys::Hostname' => '1.15',
5350 'Term::UI' => '0.24',
5351 'Thread::Queue' => '2.12',
5352 'Thread::Semaphore' => '2.12',
5353 'Time::Local' => '1.2000',
5354 'UNIVERSAL' => '1.08',
5355 'Unicode::Normalize' => '1.10',
5356 'Win32' => '0.44',
5357 'bigint' => '0.26',
5358 'bignum' => '0.26',
5359 'bigrat' => '0.26',
5360 'charnames' => '1.18',
5361 'diagnostics' => '1.21',
5362 're' => '0.16',
5363 'threads' => '1.83',
5364 'threads::shared' => '1.36',
5365 'version' => '0.88',
5366 },
5367 removed => {
5368 }
e0698539 5369 },
a272bf38
DL
5370 5.01301 => {
5371 delta_from => 5.013009,
5372 changed => {
5373 'Attribute::Handlers' => '0.89',
5374 'B' => '1.28',
5375 'B::Showlex' => '1.03',
5376 'CGI' => '3.52',
5377 'CPAN' => '1.94_65',
5378 'CPAN::Distribution' => '1.9601',
5379 'CPAN::FTP::netrc' => '1.01',
5380 'CPAN::FirstTime' => '5.5303',
5381 'CPAN::HandleConfig' => '5.5003',
5382 'CPAN::Meta' => '2.110440',
5383 'CPAN::Meta::Converter' => '2.110440',
5384 'CPAN::Meta::Feature' => '2.110440',
5385 'CPAN::Meta::History' => '2.110440',
5386 'CPAN::Meta::Prereqs' => '2.110440',
5387 'CPAN::Meta::Spec' => '2.110440',
5388 'CPAN::Meta::Validator' => '2.110440',
5389 'CPAN::Shell' => '5.5002',
5390 'CPANPLUS' => '0.9101',
5391 'CPANPLUS::Internals' => '0.9101',
5392 'CPANPLUS::Shell::Default'=> '0.9101',
5393 'Carp' => '1.20',
5394 'Carp::Heavy' => '1.20',
5395 'Cwd' => '3.37',
5396 'Devel::DProf' => '20110217.00',
5397 'DynaLoader' => '1.13',
5398 'ExtUtils::CBuilder' => '0.280202',
5399 'ExtUtils::CBuilder::Base'=> '0.280202',
5400 'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5401 'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5402 'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5403 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5404 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5405 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5406 'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5407 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5408 'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5409 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5410 'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5411 'File::Copy' => '2.22',
5412 'Filter::Simple' => '0.86',
5413 'HTTP::Tiny' => '0.010',
5414 'I18N::LangTags::Detect'=> '1.05',
5415 'IO::Select' => '1.18',
5416 'IPC::Cmd' => '0.70',
5417 'Locale::Maketext' => '1.19',
5418 'Math::BigFloat' => '1.992',
5419 'Math::BigInt' => '1.992',
5420 'Math::BigInt::Calc' => '1.992',
5421 'Math::BigInt::CalcEmu' => '1.992',
5422 'Module::Build' => '0.37_05',
5423 'Module::Build::Base' => '0.37_05',
5424 'Module::Build::Compat' => '0.37_05',
5425 'Module::Build::Config' => '0.37_05',
5426 'Module::Build::Cookbook'=> '0.37_05',
5427 'Module::Build::Dumper' => '0.37_05',
5428 'Module::Build::ModuleInfo'=> '0.37_05',
5429 'Module::Build::Notes' => '0.37_05',
5430 'Module::Build::PPMMaker'=> '0.37_05',
5431 'Module::Build::Platform::Amiga'=> '0.37_05',
5432 'Module::Build::Platform::Default'=> '0.37_05',
5433 'Module::Build::Platform::EBCDIC'=> '0.37_05',
5434 'Module::Build::Platform::MPEiX'=> '0.37_05',
5435 'Module::Build::Platform::MacOS'=> '0.37_05',
5436 'Module::Build::Platform::RiscOS'=> '0.37_05',
5437 'Module::Build::Platform::Unix'=> '0.37_05',
5438 'Module::Build::Platform::VMS'=> '0.37_05',
5439 'Module::Build::Platform::VOS'=> '0.37_05',
5440 'Module::Build::Platform::Windows'=> '0.37_05',
5441 'Module::Build::Platform::aix'=> '0.37_05',
5442 'Module::Build::Platform::cygwin'=> '0.37_05',
5443 'Module::Build::Platform::darwin'=> '0.37_05',
5444 'Module::Build::Platform::os2'=> '0.37_05',
5445 'Module::Build::PodParser'=> '0.37_05',
5446 'Module::Build::Version'=> '0.87',
5447 'Module::Build::YAML' => '1.41',
5448 'Module::CoreList' => '2.45',
5449 'Module::Load::Conditional'=> '0.44',
5450 'Module::Metadata' => '1.000004',
78da2da6 5451 'OS2::Process' => '1.06',
a272bf38
DL
5452 'Parse::CPAN::Meta' => '1.4401',
5453 'Pod::Html' => '1.1',
5454 'Socket' => '1.94',
5455 'Term::UI' => '0.26',
5456 'Unicode::Collate' => '0.72',
5457 'Unicode::Collate::Locale'=> '0.71',
5458 'Unicode::UCD' => '0.31',
5459 'VMS::DCLsym' => '1.05',
5460 'Version::Requirements' => '0.101020',
5461 'bigrat' => '0.27',
5462 'deprecate' => '0.02',
5463 'diagnostics' => '1.22',
5464 'inc::latest' => '0.37_05',
5465 'overload' => '1.13',
5466 're' => '0.17',
5467 'utf8' => '1.09',
5468 'warnings' => '1.12',
5469 },
5470 removed => {
5471 }
c552c5b5 5472 },
45492fbf 5473 5.013011 => {
a272bf38
DL
5474 delta_from => 5.01301,
5475 changed => {
5476 'App::Prove' => '3.23',
5477 'App::Prove::State' => '3.23',
5478 'App::Prove::State::Result'=> '3.23',
5479 'App::Prove::State::Result::Test'=> '3.23',
5480 'B' => '1.29',
5481 'CPAN' => '1.9600',
5482 'CPAN::Author' => '5.5001',
5483 'CPAN::CacheMgr' => '5.5001',
5484 'CPAN::Distribution' => '1.9602',
5485 'CPAN::Exception::blocked_urllist'=> '1.001',
5486 'CPAN::HTTP::Client' => '1.9600',
5487 'CPAN::HTTP::Credentials'=> '1.9600',
5488 'CPAN::Index' => '1.9600',
5489 'CPAN::LWP::UserAgent' => '1.9600',
5490 'CPAN::Mirrors' => '1.9600',
5491 'CPAN::Module' => '5.5001',
5492 'CPANPLUS' => '0.9103',
5493 'CPANPLUS::Dist::Build' => '0.54',
5494 'CPANPLUS::Dist::Build::Constants'=> '0.54',
5495 'CPANPLUS::Internals' => '0.9103',
5496 'CPANPLUS::Shell::Default'=> '0.9103',
5497 'Cwd' => '3.36',
5498 'Devel::DProf' => '20110228.00',
5499 'Digest::SHA' => '5.61',
5500 'ExtUtils::Command' => '1.17',
5501 'File::Basename' => '2.81',
5502 'File::Copy' => '2.21',
5503 'File::Glob' => '1.12',
5504 'GDBM_File' => '1.14',
5505 'HTTP::Tiny' => '0.011',
5506 'Hash::Util' => '0.11',
5507 'Hash::Util::FieldHash' => '1.09',
5508 'I18N::Langinfo' => '0.08',
5509 'IO' => '1.25_04',
5510 'IO::Dir' => '1.08',
5511 'IO::File' => '1.15',
5512 'IO::Handle' => '1.30',
5513 'IO::Pipe' => '1.14',
5514 'IO::Poll' => '0.08',
5515 'IO::Select' => '1.20',
5516 'JSON::PP' => '2.27105',
5517 'Locale::Codes' => '3.16',
5518 'Locale::Codes::Country'=> '3.16',
5519 'Locale::Codes::Currency'=> '3.16',
5520 'Locale::Codes::Language'=> '3.16',
5521 'Locale::Codes::Script' => '3.16',
5522 'Locale::Constants' => '3.16',
5523 'Locale::Country' => '3.16',
5524 'Locale::Currency' => '3.16',
5525 'Locale::Language' => '3.16',
5526 'Locale::Script' => '3.16',
5527 'Math::BigFloat' => '1.993',
5528 'Math::BigInt' => '1.994',
5529 'Math::BigInt::Calc' => '1.993',
5530 'Math::BigInt::CalcEmu' => '1.993',
5531 'Math::BigInt::FastCalc'=> '0.28',
5532 'Module::Build' => '0.3800',
5533 'Module::Build::Base' => '0.3800',
5534 'Module::Build::Compat' => '0.3800',
5535 'Module::Build::Config' => '0.3800',
5536 'Module::Build::Cookbook'=> '0.3800',
5537 'Module::Build::Dumper' => '0.3800',
5538 'Module::Build::ModuleInfo'=> '0.3800',
5539 'Module::Build::Notes' => '0.3800',
5540 'Module::Build::PPMMaker'=> '0.3800',
5541 'Module::Build::Platform::Amiga'=> '0.3800',
5542 'Module::Build::Platform::Default'=> '0.3800',
5543 'Module::Build::Platform::EBCDIC'=> '0.3800',
5544 'Module::Build::Platform::MPEiX'=> '0.3800',
5545 'Module::Build::Platform::MacOS'=> '0.3800',
5546 'Module::Build::Platform::RiscOS'=> '0.3800',
5547 'Module::Build::Platform::Unix'=> '0.3800',
5548 'Module::Build::Platform::VMS'=> '0.3800',
5549 'Module::Build::Platform::VOS'=> '0.3800',
5550 'Module::Build::Platform::Windows'=> '0.3800',
5551 'Module::Build::Platform::aix'=> '0.3800',
5552 'Module::Build::Platform::cygwin'=> '0.3800',
5553 'Module::Build::Platform::darwin'=> '0.3800',
5554 'Module::Build::Platform::os2'=> '0.3800',
5555 'Module::Build::PodParser'=> '0.3800',
5556 'Module::CoreList' => '2.46',
5557 'NDBM_File' => '1.12',
5558 'Pod::Simple' => '3.16',
5559 'Pod::Simple::BlackBox' => '3.16',
5560 'Pod::Simple::Checker' => '3.16',
5561 'Pod::Simple::Debug' => '3.16',
5562 'Pod::Simple::DumpAsText'=> '3.16',
5563 'Pod::Simple::DumpAsXML'=> '3.16',
5564 'Pod::Simple::HTML' => '3.16',
5565 'Pod::Simple::HTMLBatch'=> '3.16',
5566 'Pod::Simple::LinkSection'=> '3.16',
5567 'Pod::Simple::Methody' => '3.16',
5568 'Pod::Simple::Progress' => '3.16',
5569 'Pod::Simple::PullParser'=> '3.16',
5570 'Pod::Simple::PullParserEndToken'=> '3.16',
5571 'Pod::Simple::PullParserStartToken'=> '3.16',
5572 'Pod::Simple::PullParserTextToken'=> '3.16',
5573 'Pod::Simple::PullParserToken'=> '3.16',
5574 'Pod::Simple::RTF' => '3.16',
5575 'Pod::Simple::Search' => '3.16',
5576 'Pod::Simple::SimpleTree'=> '3.16',
5577 'Pod::Simple::Text' => '3.16',
5578 'Pod::Simple::TextContent'=> '3.16',
5579 'Pod::Simple::TiedOutFH'=> '3.16',
5580 'Pod::Simple::Transcode'=> '3.16',
5581 'Pod::Simple::TranscodeDumb'=> '3.16',
5582 'Pod::Simple::TranscodeSmart'=> '3.16',
5583 'Pod::Simple::XHTML' => '3.16',
5584 'Pod::Simple::XMLOutStream'=> '3.16',
5585 'Storable' => '2.27',
5586 'Sys::Hostname' => '1.16',
5587 'TAP::Base' => '3.23',
5588 'TAP::Formatter::Base' => '3.23',
5589 'TAP::Formatter::Color' => '3.23',
5590 'TAP::Formatter::Console'=> '3.23',
5591 'TAP::Formatter::Console::ParallelSession'=> '3.23',
5592 'TAP::Formatter::Console::Session'=> '3.23',
5593 'TAP::Formatter::File' => '3.23',
5594 'TAP::Formatter::File::Session'=> '3.23',
5595 'TAP::Formatter::Session'=> '3.23',
5596 'TAP::Harness' => '3.23',
5597 'TAP::Object' => '3.23',
5598 'TAP::Parser' => '3.23',
5599 'TAP::Parser::Aggregator'=> '3.23',
5600 'TAP::Parser::Grammar' => '3.23',
5601 'TAP::Parser::Iterator' => '3.23',
5602 'TAP::Parser::Iterator::Array'=> '3.23',
5603 'TAP::Parser::Iterator::Process'=> '3.23',
5604 'TAP::Parser::Iterator::Stream'=> '3.23',
5605 'TAP::Parser::IteratorFactory'=> '3.23',
5606 'TAP::Parser::Multiplexer'=> '3.23',
5607 'TAP::Parser::Result' => '3.23',
5608 'TAP::Parser::Result::Bailout'=> '3.23',
5609 'TAP::Parser::Result::Comment'=> '3.23',
5610 'TAP::Parser::Result::Plan'=> '3.23',
5611 'TAP::Parser::Result::Pragma'=> '3.23',
5612 'TAP::Parser::Result::Test'=> '3.23',
5613 'TAP::Parser::Result::Unknown'=> '3.23',
5614 'TAP::Parser::Result::Version'=> '3.23',
5615 'TAP::Parser::Result::YAML'=> '3.23',
5616 'TAP::Parser::ResultFactory'=> '3.23',
5617 'TAP::Parser::Scheduler'=> '3.23',
5618 'TAP::Parser::Scheduler::Job'=> '3.23',
5619 'TAP::Parser::Scheduler::Spinner'=> '3.23',
5620 'TAP::Parser::Source' => '3.23',
5621 'TAP::Parser::SourceHandler'=> '3.23',
5622 'TAP::Parser::SourceHandler::Executable'=> '3.23',
5623 'TAP::Parser::SourceHandler::File'=> '3.23',
5624 'TAP::Parser::SourceHandler::Handle'=> '3.23',
5625 'TAP::Parser::SourceHandler::Perl'=> '3.23',
5626 'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5627 'TAP::Parser::Utils' => '3.23',
5628 'TAP::Parser::YAMLish::Reader'=> '3.23',
5629 'TAP::Parser::YAMLish::Writer'=> '3.23',
5630 'Test::Builder' => '0.98',
5631 'Test::Builder::Module' => '0.98',
5632 'Test::Builder::Tester' => '1.22',
5633 'Test::Builder::Tester::Color'=> '1.22',
5634 'Test::Harness' => '3.23',
5635 'Test::More' => '0.98',
5636 'Test::Simple' => '0.98',
5637 'Tie::Hash::NamedCapture'=> '0.08',
5638 'Tie::RefHash' => '1.39',
5639 'Unicode::Collate' => '0.73',
5640 'Unicode::Collate::Locale'=> '0.73',
5641 'Unicode::UCD' => '0.32',
5642 'XS::Typemap' => '0.05',
5643 'attributes' => '0.14',
5644 'base' => '2.16',
5645 'inc::latest' => '0.3800',
5646 'mro' => '1.07',
5647 'parent' => '0.225',
5648 },
5649 removed => {
5650 }
f3fd521e 5651 },
a272bf38
DL
5652 5.014 => {
5653 delta_from => 5.013011,
5654 changed => {
5655 'ExtUtils::CBuilder' => '0.280203',
5656 'ExtUtils::CBuilder::Base'=> '0.280203',
5657 'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5658 'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5659 'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5660 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5661 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5662 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5663 'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5664 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5665 'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5666 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5667 'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5668 'ExtUtils::ParseXS' => '2.2210',
5669 'File::Basename' => '2.82',
5670 'HTTP::Tiny' => '0.012',
5671 'IO::Handle' => '1.31',
5672 'Module::CoreList' => '2.49',
5673 'PerlIO' => '1.07',
5674 'Pod::Html' => '1.11',
5675 'XS::APItest' => '0.28',
5676 'bigint' => '0.27',
5677 'bignum' => '0.27',
5678 'bigrat' => '0.28',
5679 'constant' => '1.21',
5680 'feature' => '1.20',
5681 're' => '0.18',
5682 'threads::shared' => '1.37',
5683 },
5684 removed => {
5685 }
0b3bdea4 5686 },
3d108019 5687 5.014001 => {
a272bf38
DL
5688 delta_from => 5.014,
5689 changed => {
5690 'B::Deparse' => '1.04',
5691 'Module::CoreList' => '2.49_01',
5692 'Pod::Perldoc' => '3.15_04',
5693 },
5694 removed => {
5695 }
3d108019 5696 },
a272bf38
DL
5697 5.014002 => {
5698 delta_from => 5.014001,
5699 changed => {
5700 'CPAN' => '1.9600_01',
5701 'CPAN::Distribution' => '1.9602_01',
5702 'Devel::DProf::dprof::V'=> undef,
5703 'Encode' => '2.42_01',
5704 'File::Glob' => '1.13',
5705 'Module::CoreList' => '2.49_02',
5706 'PerlIO::scalar' => '0.11_01',
5707 'Time::Piece::Seconds' => undef,
a272bf38
DL
5708 },
5709 removed => {
5710 }
5711 },
f7a5efeb
CBW
5712 5.014003 => {
5713 delta_from => 5.014002,
5714 changed => {
5715 'Digest' => '1.16_01',
5716 'IPC::Open3' => '1.09_01',
5717 'Module::CoreList' => '2.49_04',
5718 },
5719 removed => {
5720 }
5721 },
6ee607eb
CBW
5722 5.014004 => {
5723 delta_from => 5.014003,
5724 changed => {
5725 'Encode' => '2.42_02',
5726 'IPC::Open3' => '1.0901',
5727 'Module::CoreList' => '2.49_06',
5728 },
5729 removed => {
5730 }
5731 },
a272bf38
DL
5732 5.015 => {
5733 delta_from => 5.014001,
5734 changed => {
5735 'Archive::Extract' => '0.52',
5736 'Attribute::Handlers' => '0.91',
5737 'B' => '1.30',
5738 'B::Concise' => '0.84',
5739 'B::Deparse' => '1.05',
5740 'Benchmark' => '1.13',
5741 'CGI' => '3.54',
5742 'CGI::Util' => '3.53',
5743 'CPAN::Meta' => '2.110930',
5744 'CPAN::Meta::Converter' => '2.110930',
5745 'CPAN::Meta::Feature' => '2.110930',
5746 'CPAN::Meta::History' => '2.110930',
5747 'CPAN::Meta::Prereqs' => '2.110930',
5748 'CPAN::Meta::Spec' => '2.110930',
5749 'CPAN::Meta::Validator' => '2.110930',
5750 'CPANPLUS' => '0.9105',
5751 'CPANPLUS::Dist::Build' => '0.56',
5752 'CPANPLUS::Dist::Build::Constants'=> '0.56',
5753 'CPANPLUS::Internals' => '0.9105',
5754 'CPANPLUS::Shell::Default'=> '0.9105',
5755 'Compress::Raw::Bzip2' => '2.035',
5756 'Compress::Raw::Zlib' => '2.035',
5757 'Compress::Zlib' => '2.035',
5758 'DB_File' => '1.822',
5759 'Data::Dumper' => '2.131',
5760 'Devel::Peek' => '1.08',
5761 'Digest::SHA' => '5.62',
5762 'Encode' => '2.43',
5763 'Encode::Alias' => '2.14',
5764 'ExtUtils::CBuilder' => '0.280204',
5765 'ExtUtils::CBuilder::Base'=> '0.280204',
5766 'Fatal' => '2.10',
5767 'File::Spec::Win32' => '3.34',
5768 'Filter::Simple' => '0.87',
5769 'Filter::Util::Call' => '1.39',
5770 'FindBin' => '1.51',
5771 'Hash::Util::FieldHash' => '1.10',
5772 'I18N::LangTags' => '0.36',
5773 'IO::Compress::Adapter::Bzip2'=> '2.035',
5774 'IO::Compress::Adapter::Deflate'=> '2.035',
5775 'IO::Compress::Adapter::Identity'=> '2.035',
5776 'IO::Compress::Base' => '2.035',
5777 'IO::Compress::Base::Common'=> '2.035',
5778 'IO::Compress::Bzip2' => '2.035',
5779 'IO::Compress::Deflate' => '2.035',
5780 'IO::Compress::Gzip' => '2.035',
5781 'IO::Compress::Gzip::Constants'=> '2.035',
5782 'IO::Compress::RawDeflate'=> '2.035',
5783 'IO::Compress::Zip' => '2.035',
5784 'IO::Compress::Zip::Constants'=> '2.035',
5785 'IO::Compress::Zlib::Constants'=> '2.035',
5786 'IO::Compress::Zlib::Extra'=> '2.035',
5787 'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5788 'IO::Uncompress::Adapter::Identity'=> '2.035',
5789 'IO::Uncompress::Adapter::Inflate'=> '2.035',
5790 'IO::Uncompress::AnyInflate'=> '2.035',
5791 'IO::Uncompress::AnyUncompress'=> '2.035',
5792 'IO::Uncompress::Base' => '2.035',
5793 'IO::Uncompress::Bunzip2'=> '2.035',
5794 'IO::Uncompress::Gunzip'=> '2.035',
5795 'IO::Uncompress::Inflate'=> '2.035',
5796 'IO::Uncompress::RawInflate'=> '2.035',
5797 'IO::Uncompress::Unzip' => '2.035',
5798 'IPC::Open2' => '1.04',
5799 'IPC::Open3' => '1.11',
5800 'JSON::PP' => '2.27200',
5801 'Math::BigFloat' => '1.994',
5802 'Math::BigInt' => '1.995',
5803 'Math::Complex' => '1.57',
5804 'Math::Trig' => '1.21',
5805 'Module::CoreList' => '2.51',
5806 'ODBM_File' => '1.11',
5807 'Object::Accessor' => '0.42',
5808 'Opcode' => '1.19',
5809 'PerlIO::encoding' => '0.15',
5810 'PerlIO::scalar' => '0.12',
5811 'Pod::Perldoc' => '3.15_05',
5812 'Storable' => '2.28',
5813 'Sys::Syslog' => '0.29',
5814 'Time::HiRes' => '1.9722',
5815 'Unicode::Collate' => '0.76',
5816 'Unicode::Collate::CJK::Pinyin'=> '0.76',
5817 'Unicode::Collate::CJK::Stroke'=> '0.76',
5818 'Unicode::Collate::Locale'=> '0.76',
5819 'Unicode::Normalize' => '1.12',
5820 'XS::APItest' => '0.29',
5821 'XSLoader' => '0.15',
5822 'autodie' => '2.10',
5823 'autodie::exception' => '2.10',
5824 'autodie::exception::system'=> '2.10',
5825 'autodie::hints' => '2.10',
5826 'base' => '2.17',
5827 'charnames' => '1.22',
5828 'constant' => '1.22',
5829 'feature' => '1.21',
5830 'mro' => '1.08',
5831 'overload' => '1.14',
5832 'threads::shared' => '1.38',
5833 'vmsish' => '1.03',
5834 },
5835 removed => {
5836 'Devel::DProf' => 1,
5837 'Shell' => 1,
5838 }
1f1f08f5 5839 },
48b66e80 5840 5.015001 => {
a272bf38
DL
5841 delta_from => 5.015,
5842 changed => {
5843 'B::Deparse' => '1.06',
5844 'CGI' => '3.55',
5845 'CPAN::Meta' => '2.110930001',
5846 'CPAN::Meta::Converter' => '2.110930001',
5847 'CPANPLUS' => '0.9108',
5848 'CPANPLUS::Internals' => '0.9108',
5849 'CPANPLUS::Shell::Default'=> '0.9108',
5850 'Carp' => '1.21',
5851 'Carp::Heavy' => '1.21',
5852 'Compress::Raw::Bzip2' => '2.037',
5853 'Compress::Raw::Zlib' => '2.037',
5854 'Compress::Zlib' => '2.037',
5855 'Cwd' => '3.37',
5856 'Env' => '1.03',
5857 'ExtUtils::Command::MM' => '6.58',
5858 'ExtUtils::Liblist' => '6.58',
5859 'ExtUtils::Liblist::Kid'=> '6.58',
5860 'ExtUtils::MM' => '6.58',
5861 'ExtUtils::MM_AIX' => '6.58',
5862 'ExtUtils::MM_Any' => '6.58',
5863 'ExtUtils::MM_BeOS' => '6.58',
5864 'ExtUtils::MM_Cygwin' => '6.58',
5865 'ExtUtils::MM_DOS' => '6.58',
5866 'ExtUtils::MM_Darwin' => '6.58',
5867 'ExtUtils::MM_MacOS' => '6.58',
5868 'ExtUtils::MM_NW5' => '6.58',
5869 'ExtUtils::MM_OS2' => '6.58',
5870 'ExtUtils::MM_QNX' => '6.58',
5871 'ExtUtils::MM_UWIN' => '6.58',
5872 'ExtUtils::MM_Unix' => '6.58',
5873 'ExtUtils::MM_VMS' => '6.58',
5874 'ExtUtils::MM_VOS' => '6.58',
5875 'ExtUtils::MM_Win32' => '6.58',
5876 'ExtUtils::MM_Win95' => '6.58',
5877 'ExtUtils::MY' => '6.58',
5878 'ExtUtils::MakeMaker' => '6.58',
5879 'ExtUtils::MakeMaker::Config'=> '6.58',
5880 'ExtUtils::Mkbootstrap' => '6.58',
5881 'ExtUtils::Mksymlists' => '6.58',
5882 'ExtUtils::ParseXS' => '3.00_01',
5883 'ExtUtils::ParseXS::Constants'=> undef,
5884 'ExtUtils::ParseXS::CountLines'=> undef,
5885 'ExtUtils::ParseXS::Utilities'=> undef,
5886 'ExtUtils::Typemaps' => '1.00',
5887 'ExtUtils::Typemaps::InputMap'=> undef,
5888 'ExtUtils::Typemaps::OutputMap'=> undef,
5889 'ExtUtils::Typemaps::Type'=> '0.05',
5890 'ExtUtils::testlib' => '6.58',
5891 'File::Basename' => '2.83',
5892 'File::Find' => '1.20',
5893 'HTTP::Tiny' => '0.013',
5894 'I18N::Langinfo' => '0.08_02',
5895 'IO::Compress::Adapter::Bzip2'=> '2.037',
5896 'IO::Compress::Adapter::Deflate'=> '2.037',
5897 'IO::Compress::Adapter::Identity'=> '2.037',
5898 'IO::Compress::Base' => '2.037',
5899 'IO::Compress::Base::Common'=> '2.037',
5900 'IO::Compress::Bzip2' => '2.037',
5901 'IO::Compress::Deflate' => '2.037',
5902 'IO::Compress::Gzip' => '2.037',
5903 'IO::Compress::Gzip::Constants'=> '2.037',
5904 'IO::Compress::RawDeflate'=> '2.037',
5905 'IO::Compress::Zip' => '2.037',
5906 'IO::Compress::Zip::Constants'=> '2.037',
5907 'IO::Compress::Zlib::Constants'=> '2.037',
5908 'IO::Compress::Zlib::Extra'=> '2.037',
5909 'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
5910 'IO::Uncompress::Adapter::Identity'=> '2.037',
5911 'IO::Uncompress::Adapter::Inflate'=> '2.037',
5912 'IO::Uncompress::AnyInflate'=> '2.037',
5913 'IO::Uncompress::AnyUncompress'=> '2.037',
5914 'IO::Uncompress::Base' => '2.037',
5915 'IO::Uncompress::Bunzip2'=> '2.037',
5916 'IO::Uncompress::Gunzip'=> '2.037',
5917 'IO::Uncompress::Inflate'=> '2.037',
5918 'IO::Uncompress::RawInflate'=> '2.037',
5919 'IO::Uncompress::Unzip' => '2.037',
5920 'IPC::Cmd' => '0.72',
5921 'Locale::Codes' => '3.17',
5922 'Locale::Codes::Constants'=> '3.17',
5923 'Locale::Codes::Country'=> '3.17',
5924 'Locale::Codes::Country_Codes'=> '3.17',
5925 'Locale::Codes::Currency'=> '3.17',
5926 'Locale::Codes::Currency_Codes'=> '3.17',
5927 'Locale::Codes::LangExt'=> '3.17',
5928 'Locale::Codes::LangExt_Codes'=> '3.17',
5929 'Locale::Codes::LangVar'=> '3.17',
5930 'Locale::Codes::LangVar_Codes'=> '3.17',
5931 'Locale::Codes::Language'=> '3.17',
5932 'Locale::Codes::Language_Codes'=> '3.17',
5933 'Locale::Codes::Script' => '3.17',
5934 'Locale::Codes::Script_Codes'=> '3.17',
5935 'Locale::Country' => '3.17',
5936 'Locale::Currency' => '3.17',
5937 'Locale::Language' => '3.17',
5938 'Locale::Script' => '3.17',
5939 'Math::BigFloat::Trace' => '0.28',
5940 'Math::BigInt::FastCalc'=> '0.29',
5941 'Math::BigInt::Trace' => '0.28',
5942 'Math::BigRat' => '0.2602',
5943 'Math::Complex' => '1.58',
5944 'Math::Trig' => '1.22',
5945 'Module::CoreList' => '2.54',
78da2da6 5946 'OS2::Process' => '1.07',
a272bf38
DL
5947 'Pod::Perldoc' => '3.15_06',
5948 'Pod::Simple' => '3.18',
5949 'Pod::Simple::BlackBox' => '3.18',
5950 'Pod::Simple::Checker' => '3.18',
5951 'Pod::Simple::Debug' => '3.18',
5952 'Pod::Simple::DumpAsText'=> '3.18',
5953 'Pod::Simple::DumpAsXML'=> '3.18',
5954 'Pod::Simple::HTML' => '3.18',
5955 'Pod::Simple::HTMLBatch'=> '3.18',
5956 'Pod::Simple::LinkSection'=> '3.18',
5957 'Pod::Simple::Methody' => '3.18',
5958 'Pod::Simple::Progress' => '3.18',
5959 'Pod::Simple::PullParser'=> '3.18',
5960 'Pod::Simple::PullParserEndToken'=> '3.18',
5961 'Pod::Simple::PullParserStartToken'=> '3.18',
5962 'Pod::Simple::PullParserTextToken'=> '3.18',
5963 'Pod::Simple::PullParserToken'=> '3.18',
5964 'Pod::Simple::RTF' => '3.18',
5965 'Pod::Simple::Search' => '3.18',
5966 'Pod::Simple::SimpleTree'=> '3.18',
5967 'Pod::Simple::Text' => '3.18',
5968 'Pod::Simple::TextContent'=> '3.18',
5969 'Pod::Simple::TiedOutFH'=> '3.18',
5970 'Pod::Simple::Transcode'=> '3.18',
5971 'Pod::Simple::TranscodeDumb'=> '3.18',
5972 'Pod::Simple::TranscodeSmart'=> '3.18',
5973 'Pod::Simple::XHTML' => '3.18',
5974 'Pod::Simple::XMLOutStream'=> '3.18',
5975 'Storable' => '2.31',
5976 'Sys::Syslog::Win32' => undef,
5977 'Time::HiRes' => '1.9724',
5978 'Unicode::Collate' => '0.77',
5979 'Unicode::UCD' => '0.33',
5980 'Win32API::File' => '0.1200',
5981 'XS::APItest' => '0.30',
5982 'attributes' => '0.15',
5983 'bigint' => '0.28',
5984 'bignum' => '0.28',
5985 'charnames' => '1.23',
5986 'diagnostics' => '1.23',
5987 'feature' => '1.22',
5988 'overload' => '1.15',
5989 'perlfaq' => '5.015000',
5990 'threads' => '1.84',
5991 'version' => '0.93',
5992 },
5993 removed => {
5994 'ExtUtils::MakeMaker::YAML'=> 1,
5995 'Locale::Constants' => 1,
5996 'Sys::Syslog::win32::Win32'=> 1,
5997 }
48b66e80 5998 },
2f183b41 5999 5.015002 => {
a272bf38
DL
6000 delta_from => 5.015001,
6001 changed => {
6002 'Attribute::Handlers' => '0.92',
6003 'B' => '1.31',
6004 'B::Concise' => '0.85',
6005 'B::Deparse' => '1.07',
6006 'B::Terse' => '1.06',
6007 'B::Xref' => '1.03',
6008 'CPAN' => '1.9800',
6009 'CPAN::Exception::yaml_process_error'=> '5.5',
6010 'CPAN::Meta' => '2.112150',
6011 'CPAN::Meta::Converter' => '2.112150',
6012 'CPAN::Meta::Feature' => '2.112150',
6013 'CPAN::Meta::History' => '2.112150',
6014 'CPAN::Meta::Prereqs' => '2.112150',
6015 'CPAN::Meta::Spec' => '2.112150',
6016 'CPAN::Meta::Validator' => '2.112150',
6017 'CPANPLUS' => '0.9109',
6018 'CPANPLUS::Internals' => '0.9109',
6019 'CPANPLUS::Shell::Default'=> '0.9109',
6020 'DB_File' => '1.824',
6021 'Data::Dumper' => '2.132',
6022 'Encode' => '2.44',
6023 'Encode::Alias' => '2.15',
6024 'Encode::Encoder' => '2.02',
6025 'Encode::Guess' => '2.05',
6026 'ExtUtils::Command::MM' => '6.59',
6027 'ExtUtils::Install' => '1.57',
6028 'ExtUtils::Installed' => '1.999002',
6029 'ExtUtils::Liblist' => '6.59',
6030 'ExtUtils::Liblist::Kid'=> '6.59',
6031 'ExtUtils::MM' => '6.59',
6032 'ExtUtils::MM_AIX' => '6.59',
6033 'ExtUtils::MM_Any' => '6.59',
6034 'ExtUtils::MM_BeOS' => '6.59',
6035 'ExtUtils::MM_Cygwin' => '6.59',
6036 'ExtUtils::MM_DOS' => '6.59',
6037 'ExtUtils::MM_Darwin' => '6.59',
6038 'ExtUtils::MM_MacOS' => '6.59',
6039 'ExtUtils::MM_NW5' => '6.59',
6040 'ExtUtils::MM_OS2' => '6.59',
6041 'ExtUtils::MM_QNX' => '6.59',
6042 'ExtUtils::MM_UWIN' => '6.59',
6043 'ExtUtils::MM_Unix' => '6.59',
6044 'ExtUtils::MM_VMS' => '6.59',
6045 'ExtUtils::MM_VOS' => '6.59',
6046 'ExtUtils::MM_Win32' => '6.59',
6047 'ExtUtils::MM_Win95' => '6.59',
6048 'ExtUtils::MY' => '6.59',
6049 'ExtUtils::MakeMaker' => '6.59',
6050 'ExtUtils::MakeMaker::Config'=> '6.59',
6051 'ExtUtils::Manifest' => '1.60',
6052 'ExtUtils::Mkbootstrap' => '6.59',
6053 'ExtUtils::Mksymlists' => '6.59',
6054 'ExtUtils::ParseXS' => '3.03_01',
6055 'ExtUtils::Typemaps' => '1.01',
6056 'ExtUtils::testlib' => '6.59',
6057 'File::Spec' => '3.34',
6058 'File::Spec::Mac' => '3.35',
6059 'File::Spec::Unix' => '3.34',
6060 'File::Spec::VMS' => '3.35',
6061 'File::Spec::Win32' => '3.35',
6062 'I18N::LangTags' => '0.37',
6063 'IO' => '1.25_05',
6064 'IO::Handle' => '1.32',
6065 'IO::Socket' => '1.33',
6066 'IO::Socket::INET' => '1.32',
6067 'IPC::Open3' => '1.12',
6068 'Math::BigFloat' => '1.995',
6069 'Math::BigFloat::Trace' => '0.29',
6070 'Math::BigInt' => '1.996',
6071 'Math::BigInt::Trace' => '0.29',
6072 'Module::Build' => '0.39_01',
6073 'Module::Build::Base' => '0.39_01',
6074 'Module::Build::Compat' => '0.39_01',
6075 'Module::Build::Config' => '0.39_01',
6076 'Module::Build::Cookbook'=> '0.39_01',
6077 'Module::Build::Dumper' => '0.39_01',
6078 'Module::Build::ModuleInfo'=> '0.39_01',
6079 'Module::Build::Notes' => '0.39_01',
6080 'Module::Build::PPMMaker'=> '0.39_01',
6081 'Module::Build::Platform::Amiga'=> '0.39_01',
6082 'Module::Build::Platform::Default'=> '0.39_01',
6083 'Module::Build::Platform::EBCDIC'=> '0.39_01',
6084 'Module::Build::Platform::MPEiX'=> '0.39_01',
6085 'Module::Build::Platform::MacOS'=> '0.39_01',
6086 'Module::Build::Platform::RiscOS'=> '0.39_01',
6087 'Module::Build::Platform::Unix'=> '0.39_01',
6088 'Module::Build::Platform::VMS'=> '0.39_01',
6089 'Module::Build::Platform::VOS'=> '0.39_01',
6090 'Module::Build::Platform::Windows'=> '0.39_01',
6091 'Module::Build::Platform::aix'=> '0.39_01',
6092 'Module::Build::Platform::cygwin'=> '0.39_01',
6093 'Module::Build::Platform::darwin'=> '0.39_01',
6094 'Module::Build::Platform::os2'=> '0.39_01',
6095 'Module::Build::PodParser'=> '0.39_01',
6096 'Module::CoreList' => '2.55',
6097 'Module::Load' => '0.20',
6098 'Module::Metadata' => '1.000005_01',
6099 'Opcode' => '1.20',
6100 'Params::Check' => '0.32',
6101 'PerlIO::via' => '0.12',
6102 'Term::ANSIColor' => '3.01',
6103 'Unicode::Collate' => '0.78',
6104 'Unicode::Normalize' => '1.13',
6105 'Unicode::UCD' => '0.34',
6106 'bigint' => '0.29',
6107 'bignum' => '0.29',
6108 'bigrat' => '0.29',
6109 'diagnostics' => '1.24',
6110 'fields' => '2.16',
6111 'inc::latest' => '0.39_01',
6112 },
6113 removed => {
6114 }
33f96037 6115 },
e46b3c7d 6116 5.015003 => {
a272bf38
DL
6117 delta_from => 5.015002,
6118 changed => {
6119 'AnyDBM_File' => '1.01',
6120 'Archive::Extract' => '0.56',
6121 'Archive::Tar' => '1.78',
6122 'Archive::Tar::Constant'=> '1.78',
6123 'Archive::Tar::File' => '1.78',
6124 'Attribute::Handlers' => '0.93',
6125 'B' => '1.32',
6126 'B::Concise' => '0.86',
6127 'B::Deparse' => '1.08',
6128 'CPAN::Meta' => '2.112621',
6129 'CPAN::Meta::Converter' => '2.112621',
6130 'CPAN::Meta::Feature' => '2.112621',
6131 'CPAN::Meta::History' => '2.112621',
6132 'CPAN::Meta::Prereqs' => '2.112621',
6133 'CPAN::Meta::Spec' => '2.112621',
6134 'CPAN::Meta::Validator' => '2.112621',
6135 'CPAN::Meta::YAML' => '0.004',
6136 'CPANPLUS' => '0.9111',
6137 'CPANPLUS::Dist::Build' => '0.58',
6138 'CPANPLUS::Dist::Build::Constants'=> '0.58',
6139 'CPANPLUS::Internals' => '0.9111',
6140 'CPANPLUS::Shell::Default'=> '0.9111',
6141 'Carp' => '1.23',
6142 'Carp::Heavy' => '1.23',
6143 'Data::Dumper' => '2.134',
6144 'Devel::PPPort' => '3.20',
6145 'Errno' => '1.14',
6146 'Exporter' => '5.65',
6147 'Exporter::Heavy' => '5.65',
6148 'ExtUtils::ParseXS' => '3.04_04',
6149 'ExtUtils::ParseXS::Constants'=> '3.04_04',
6150 'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6151 'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6152 'ExtUtils::Typemaps' => '1.02',
6153 'File::Glob' => '1.13',
6154 'Filter::Simple' => '0.88',
6155 'IO' => '1.25_06',
6156 'IO::Handle' => '1.33',
6157 'Locale::Codes' => '3.18',
6158 'Locale::Codes::Constants'=> '3.18',
6159 'Locale::Codes::Country'=> '3.18',
6160 'Locale::Codes::Country_Codes'=> '3.18',
6161 'Locale::Codes::Currency'=> '3.18',
6162 'Locale::Codes::Currency_Codes'=> '3.18',
6163 'Locale::Codes::LangExt'=> '3.18',
6164 'Locale::Codes::LangExt_Codes'=> '3.18',
6165 'Locale::Codes::LangVar'=> '3.18',
6166 'Locale::Codes::LangVar_Codes'=> '3.18',
6167 'Locale::Codes::Language'=> '3.18',
6168 'Locale::Codes::Language_Codes'=> '3.18',
6169 'Locale::Codes::Script' => '3.18',
6170 'Locale::Codes::Script_Codes'=> '3.18',
6171 'Locale::Country' => '3.18',
6172 'Locale::Currency' => '3.18',
6173 'Locale::Language' => '3.18',
6174 'Locale::Script' => '3.18',
6175 'Math::BigFloat' => '1.997',
6176 'Math::BigInt' => '1.997',
6177 'Math::BigInt::Calc' => '1.997',
6178 'Math::BigInt::CalcEmu' => '1.997',
6179 'Math::BigInt::FastCalc'=> '0.30',
6180 'Math::BigRat' => '0.2603',
6181 'Module::CoreList' => '2.56',
6182 'Module::Load::Conditional'=> '0.46',
6183 'Module::Metadata' => '1.000007',
6184 'ODBM_File' => '1.12',
6185 'POSIX' => '1.26',
6186 'Pod::Perldoc' => '3.15_07',
6187 'Pod::Simple' => '3.19',
6188 'Pod::Simple::BlackBox' => '3.19',
6189 'Pod::Simple::Checker' => '3.19',
6190 'Pod::Simple::Debug' => '3.19',
6191 'Pod::Simple::DumpAsText'=> '3.19',
6192 'Pod::Simple::DumpAsXML'=> '3.19',
6193 'Pod::Simple::HTML' => '3.19',
6194 'Pod::Simple::HTMLBatch'=> '3.19',
6195 'Pod::Simple::LinkSection'=> '3.19',
6196 'Pod::Simple::Methody' => '3.19',
6197 'Pod::Simple::Progress' => '3.19',
6198 'Pod::Simple::PullParser'=> '3.19',
6199 'Pod::Simple::PullParserEndToken'=> '3.19',
6200 'Pod::Simple::PullParserStartToken'=> '3.19',
6201 'Pod::Simple::PullParserTextToken'=> '3.19',
6202 'Pod::Simple::PullParserToken'=> '3.19',
6203 'Pod::Simple::RTF' => '3.19',
6204 'Pod::Simple::Search' => '3.19',
6205 'Pod::Simple::SimpleTree'=> '3.19',
6206 'Pod::Simple::Text' => '3.19',
6207 'Pod::Simple::TextContent'=> '3.19',
6208 'Pod::Simple::TiedOutFH'=> '3.19',
6209 'Pod::Simple::Transcode'=> '3.19',
6210 'Pod::Simple::TranscodeDumb'=> '3.19',
6211 'Pod::Simple::TranscodeSmart'=> '3.19',
6212 'Pod::Simple::XHTML' => '3.19',
6213 'Pod::Simple::XMLOutStream'=> '3.19',
6214 'Search::Dict' => '1.04',
6215 'Socket' => '1.94_01',
6216 'Storable' => '2.32',
6217 'Text::Abbrev' => '1.02',
6218 'Tie::Array' => '1.05',
6219 'UNIVERSAL' => '1.09',
6220 'Unicode::UCD' => '0.35',
6221 'XS::APItest' => '0.31',
6222 'XSLoader' => '0.16',
6223 'attributes' => '0.16',
6224 'diagnostics' => '1.25',
6225 'open' => '1.09',
6226 'perlfaq' => '5.0150034',
6227 'threads' => '1.85',
6228 'threads::shared' => '1.40',
6229 },
6230 removed => {
6231 }
e46b3c7d 6232 },
f0381222 6233 5.015004 => {
a272bf38
DL
6234 delta_from => 5.015003,
6235 changed => {
6236 'Archive::Tar' => '1.80',
6237 'Archive::Tar::Constant'=> '1.80',
6238 'Archive::Tar::File' => '1.80',
6239 'Digest' => '1.17',
6240 'DynaLoader' => '1.14',
6241 'ExtUtils::Command::MM' => '6.61_01',
6242 'ExtUtils::Liblist' => '6.61_01',
6243 'ExtUtils::Liblist::Kid'=> '6.61_01',
6244 'ExtUtils::MM' => '6.61_01',
6245 'ExtUtils::MM_AIX' => '6.61_01',
6246 'ExtUtils::MM_Any' => '6.61_01',
6247 'ExtUtils::MM_BeOS' => '6.61_01',
6248 'ExtUtils::MM_Cygwin' => '6.61_01',
6249 'ExtUtils::MM_DOS' => '6.61_01',
6250 'ExtUtils::MM_Darwin' => '6.61_01',
6251 'ExtUtils::MM_MacOS' => '6.61_01',
6252 'ExtUtils::MM_NW5' => '6.61_01',
6253 'ExtUtils::MM_OS2' => '6.61_01',
6254 'ExtUtils::MM_QNX' => '6.61_01',
6255 'ExtUtils::MM_UWIN' => '6.61_01',
6256 'ExtUtils::MM_Unix' => '6.61_01',
6257 'ExtUtils::MM_VMS' => '6.61_01',
6258 'ExtUtils::MM_VOS' => '6.61_01',
6259 'ExtUtils::MM_Win32' => '6.61_01',
6260 'ExtUtils::MM_Win95' => '6.61_01',
6261 'ExtUtils::MY' => '6.61_01',
6262 'ExtUtils::MakeMaker' => '6.61_01',
6263 'ExtUtils::MakeMaker::Config'=> '6.61_01',
6264 'ExtUtils::Mkbootstrap' => '6.61_01',
6265 'ExtUtils::Mksymlists' => '6.61_01',
6266 'ExtUtils::ParseXS' => '3.05',
6267 'ExtUtils::ParseXS::Constants'=> '3.05',
6268 'ExtUtils::ParseXS::CountLines'=> '3.05',
6269 'ExtUtils::ParseXS::Utilities'=> '3.05',
6270 'ExtUtils::testlib' => '6.61_01',
6271 'File::DosGlob' => '1.05',
6272 'Module::CoreList' => '2.57',
6273 'Module::Load' => '0.22',
6274 'Unicode::Collate' => '0.80',
6275 'Unicode::Collate::Locale'=> '0.80',
6276 'Unicode::UCD' => '0.36',
6277 'XS::APItest' => '0.32',
6278 'XS::Typemap' => '0.07',
6279 'attributes' => '0.17',
6280 'base' => '2.18',
6281 'constant' => '1.23',
6282 'mro' => '1.09',
6283 'open' => '1.10',
6284 'perlfaq' => '5.0150035',
6285 },
6286 removed => {
6287 }
f0381222 6288 },
40f3bdee 6289 5.015005 => {
a272bf38
DL
6290 delta_from => 5.015004,
6291 changed => {
6292 'Archive::Extract' => '0.58',
6293 'B::Concise' => '0.87',
6294 'B::Deparse' => '1.09',
6295 'CGI' => '3.58',
6296 'CGI::Fast' => '1.09',
6297 'CPANPLUS' => '0.9112',
6298 'CPANPLUS::Dist::Build' => '0.60',
6299 'CPANPLUS::Dist::Build::Constants'=> '0.60',
6300 'CPANPLUS::Internals' => '0.9112',
6301 'CPANPLUS::Shell::Default'=> '0.9112',
6302 'Compress::Raw::Bzip2' => '2.042',
6303 'Compress::Raw::Zlib' => '2.042',
6304 'Compress::Zlib' => '2.042',
6305 'Digest::SHA' => '5.63',
6306 'Errno' => '1.15',
6307 'ExtUtils::Command::MM' => '6.63_02',
6308 'ExtUtils::Liblist' => '6.63_02',
6309 'ExtUtils::Liblist::Kid'=> '6.63_02',
6310 'ExtUtils::MM' => '6.63_02',
6311 'ExtUtils::MM_AIX' => '6.63_02',
6312 'ExtUtils::MM_Any' => '6.63_02',
6313 'ExtUtils::MM_BeOS' => '6.63_02',
6314 'ExtUtils::MM_Cygwin' => '6.63_02',
6315 'ExtUtils::MM_DOS' => '6.63_02',
6316 'ExtUtils::MM_Darwin' => '6.63_02',
6317 'ExtUtils::MM_MacOS' => '6.63_02',
6318 'ExtUtils::MM_NW5' => '6.63_02',
6319 'ExtUtils::MM_OS2' => '6.63_02',
6320 'ExtUtils::MM_QNX' => '6.63_02',
6321 'ExtUtils::MM_UWIN' => '6.63_02',
6322 'ExtUtils::MM_Unix' => '6.63_02',
6323 'ExtUtils::MM_VMS' => '6.63_02',
6324 'ExtUtils::MM_VOS' => '6.63_02',
6325 'ExtUtils::MM_Win32' => '6.63_02',
6326 'ExtUtils::MM_Win95' => '6.63_02',
6327 'ExtUtils::MY' => '6.63_02',
6328 'ExtUtils::MakeMaker' => '6.63_02',
6329 'ExtUtils::MakeMaker::Config'=> '6.63_02',
6330 'ExtUtils::Mkbootstrap' => '6.63_02',
6331 'ExtUtils::Mksymlists' => '6.63_02',
6332 'ExtUtils::testlib' => '6.63_02',
6333 'File::DosGlob' => '1.06',
6334 'File::Glob' => '1.14',
6335 'HTTP::Tiny' => '0.016',
6336 'IO::Compress::Adapter::Bzip2'=> '2.042',
6337 'IO::Compress::Adapter::Deflate'=> '2.042',
6338 'IO::Compress::Adapter::Identity'=> '2.042',
6339 'IO::Compress::Base' => '2.042',
6340 'IO::Compress::Base::Common'=> '2.042',
6341 'IO::Compress::Bzip2' => '2.042',
6342 'IO::Compress::Deflate' => '2.042',
6343 'IO::Compress::Gzip' => '2.042',
6344 'IO::Compress::Gzip::Constants'=> '2.042',
6345 'IO::Compress::RawDeflate'=> '2.042',
6346 'IO::Compress::Zip' => '2.042',
6347 'IO::Compress::Zip::Constants'=> '2.042',
6348 'IO::Compress::Zlib::Constants'=> '2.042',
6349 'IO::Compress::Zlib::Extra'=> '2.042',
6350 'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6351 'IO::Uncompress::Adapter::Identity'=> '2.042',
6352 'IO::Uncompress::Adapter::Inflate'=> '2.042',
6353 'IO::Uncompress::AnyInflate'=> '2.042',
6354 'IO::Uncompress::AnyUncompress'=> '2.042',
6355 'IO::Uncompress::Base' => '2.042',
6356 'IO::Uncompress::Bunzip2'=> '2.042',
6357 'IO::Uncompress::Gunzip'=> '2.042',
6358 'IO::Uncompress::Inflate'=> '2.042',
6359 'IO::Uncompress::RawInflate'=> '2.042',
6360 'IO::Uncompress::Unzip' => '2.042',
6361 'Locale::Maketext' => '1.20',
6362 'Locale::Maketext::Guts'=> '1.20',
6363 'Locale::Maketext::GutsLoader'=> '1.20',
6364 'Module::CoreList' => '2.58',
6365 'Opcode' => '1.21',
6366 'Socket' => '1.94_02',
6367 'Storable' => '2.33',
6368 'UNIVERSAL' => '1.10',
6369 'Unicode::Collate' => '0.85',
6370 'Unicode::Collate::CJK::Pinyin'=> '0.85',
6371 'Unicode::Collate::CJK::Stroke'=> '0.85',
6372 'Unicode::Collate::Locale'=> '0.85',
6373 'Unicode::UCD' => '0.37',
6374 'XS::APItest' => '0.33',
6375 'arybase' => '0.01',
6376 'charnames' => '1.24',
6377 'feature' => '1.23',
6378 'perlfaq' => '5.0150036',
6379 'strict' => '1.05',
6380 'unicore::Name' => undef,
6381 },
6382 removed => {
6383 }
40f3bdee 6384 },
9cdfa110 6385 5.015006 => {
a272bf38
DL
6386 delta_from => 5.015005,
6387 changed => {
6388 'Archive::Tar' => '1.82',
6389 'Archive::Tar::Constant'=> '1.82',
6390 'Archive::Tar::File' => '1.82',
6391 'AutoLoader' => '5.72',
6392 'B::Concise' => '0.88',
6393 'B::Debug' => '1.17',
6394 'B::Deparse' => '1.10',
6395 'CPAN::Meta::YAML' => '0.005',
6396 'CPANPLUS' => '0.9113',
6397 'CPANPLUS::Internals' => '0.9113',
6398 'CPANPLUS::Shell::Default'=> '0.9113',
6399 'Carp' => '1.24',
6400 'Compress::Raw::Bzip2' => '2.045',
6401 'Compress::Raw::Zlib' => '2.045',
6402 'Compress::Zlib' => '2.045',
6403 'Cwd' => '3.38',
6404 'DB' => '1.04',
6405 'Data::Dumper' => '2.135_01',
6406 'Digest::SHA' => '5.70',
6407 'Dumpvalue' => '1.17',
6408 'Exporter' => '5.66',
6409 'Exporter::Heavy' => '5.66',
6410 'ExtUtils::CBuilder' => '0.280205',
6411 'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6412 'ExtUtils::Packlist' => '1.45',
6413 'ExtUtils::ParseXS' => '3.08',
6414 'ExtUtils::ParseXS::Constants'=> '3.08',
6415 'ExtUtils::ParseXS::CountLines'=> '3.08',
6416 'ExtUtils::ParseXS::Utilities'=> '3.08',
6417 'File::Basename' => '2.84',
6418 'File::Glob' => '1.15',
6419 'File::Spec::Unix' => '3.35',
6420 'Getopt::Std' => '1.07',
6421 'I18N::LangTags' => '0.38',
6422 'IO::Compress::Adapter::Bzip2'=> '2.045',
6423 'IO::Compress::Adapter::Deflate'=> '2.045',
6424 'IO::Compress::Adapter::Identity'=> '2.045',
6425 'IO::Compress::Base' => '2.046',
6426 'IO::Compress::Base::Common'=> '2.045',
6427 'IO::Compress::Bzip2' => '2.045',
6428 'IO::Compress::Deflate' => '2.045',
6429 'IO::Compress::Gzip' => '2.045',
6430 'IO::Compress::Gzip::Constants'=> '2.045',
6431 'IO::Compress::RawDeflate'=> '2.045',
6432 'IO::Compress::Zip' => '2.046',
6433 'IO::Compress::Zip::Constants'=> '2.045',
6434 'IO::Compress::Zlib::Constants'=> '2.045',
6435 'IO::Compress::Zlib::Extra'=> '2.045',
6436 'IO::Dir' => '1.09',
6437 'IO::File' => '1.16',
6438 'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6439 'IO::Uncompress::Adapter::Identity'=> '2.045',
6440 'IO::Uncompress::Adapter::Inflate'=> '2.045',
6441 'IO::Uncompress::AnyInflate'=> '2.045',
6442 'IO::Uncompress::AnyUncompress'=> '2.045',
6443 'IO::Uncompress::Base' => '2.046',
6444 'IO::Uncompress::Bunzip2'=> '2.045',
6445 'IO::Uncompress::Gunzip'=> '2.045',
6446 'IO::Uncompress::Inflate'=> '2.045',
6447 'IO::Uncompress::RawInflate'=> '2.045',
6448 'IO::Uncompress::Unzip' => '2.046',
6449 'Locale::Codes' => '3.20',
6450 'Locale::Codes::Constants'=> '3.20',
6451 'Locale::Codes::Country'=> '3.20',
6452 'Locale::Codes::Country_Codes'=> '3.20',
6453 'Locale::Codes::Country_Retired'=> '3.20',
6454 'Locale::Codes::Currency'=> '3.20',
6455 'Locale::Codes::Currency_Codes'=> '3.20',
6456 'Locale::Codes::Currency_Retired'=> '3.20',
6457 'Locale::Codes::LangExt'=> '3.20',
6458 'Locale::Codes::LangExt_Codes'=> '3.20',
6459 'Locale::Codes::LangExt_Retired'=> '3.20',
6460 'Locale::Codes::LangFam'=> '3.20',
6461 'Locale::Codes::LangFam_Codes'=> '3.20',
6462 'Locale::Codes::LangFam_Retired'=> '3.20',
6463 'Locale::Codes::LangVar'=> '3.20',
6464 'Locale::Codes::LangVar_Codes'=> '3.20',
6465 'Locale::Codes::LangVar_Retired'=> '3.20',
6466 'Locale::Codes::Language'=> '3.20',
6467 'Locale::Codes::Language_Codes'=> '3.20',
6468 'Locale::Codes::Language_Retired'=> '3.20',
6469 'Locale::Codes::Script' => '3.20',
6470 'Locale::Codes::Script_Codes'=> '3.20',
6471 'Locale::Codes::Script_Retired'=> '3.20',
6472 'Locale::Country' => '3.20',
6473 'Locale::Currency' => '3.20',
6474 'Locale::Language' => '3.20',
6475 'Locale::Maketext' => '1.21',
6476 'Locale::Script' => '3.20',
6477 'Module::CoreList' => '2.59',
6478 'Module::Loaded' => '0.08',
6479 'Opcode' => '1.22',
6480 'POSIX' => '1.27',
6481 'Pod::Html' => '1.12',
6482 'Pod::LaTeX' => '0.60',
6483 'Pod::Perldoc' => '3.15_08',
6484 'Safe' => '2.30',
6485 'SelfLoader' => '1.20',
6486 'Socket' => '1.97',
6487 'Storable' => '2.34',
6488 'UNIVERSAL' => '1.11',
6489 'Unicode::Collate' => '0.87',
6490 'Unicode::Collate::Locale'=> '0.87',
6491 'XS::APItest' => '0.34',
6492 'arybase' => '0.02',
6493 'charnames' => '1.27',
6494 'diagnostics' => '1.26',
6495 'feature' => '1.24',
6496 'if' => '0.0602',
6497 'overload' => '1.16',
6498 'sigtrap' => '1.06',
6499 'strict' => '1.06',
6500 'threads' => '1.86',
6501 'version' => '0.96',
6502 },
6503 removed => {
6504 }
d10490f6
RS
6505 },
6506 5.015007 => {
a272bf38
DL
6507 delta_from => 5.015006,
6508 changed => {
6509 'B' => '1.33',
6510 'B::Deparse' => '1.11',
6511 'CGI' => '3.59',
6512 'CPAN::Meta' => '2.113640',
6513 'CPAN::Meta::Converter' => '2.113640',
6514 'CPAN::Meta::Feature' => '2.113640',
6515 'CPAN::Meta::History' => '2.113640',
6516 'CPAN::Meta::Prereqs' => '2.113640',
6517 'CPAN::Meta::Requirements'=> '2.113640',
6518 'CPAN::Meta::Spec' => '2.113640',
6519 'CPAN::Meta::Validator' => '2.113640',
6520 'CPANPLUS' => '0.9116',
6521 'CPANPLUS::Internals' => '0.9116',
6522 'CPANPLUS::Shell::Default'=> '0.9116',
6523 'Cwd' => '3.39_01',
6524 'Data::Dumper' => '2.135_03',
6525 'Devel::InnerPackage' => '0.4',
6526 'ExtUtils::CBuilder::Base'=> '0.280205',
6527 'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6528 'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6529 'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6530 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6531 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6532 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6533 'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6534 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6535 'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6536 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6537 'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6538 'ExtUtils::Manifest' => '1.61',
6539 'ExtUtils::Packlist' => '1.46',
6540 'ExtUtils::ParseXS' => '3.12',
6541 'ExtUtils::ParseXS::Constants'=> '3.12',
6542 'ExtUtils::ParseXS::CountLines'=> '3.12',
6543 'ExtUtils::ParseXS::Utilities'=> '3.12',
6544 'ExtUtils::Typemaps' => '1.03',
6545 'ExtUtils::Typemaps::Cmd'=> undef,
6546 'ExtUtils::Typemaps::Type'=> '0.06',
6547 'File::Glob' => '1.16',
6548 'File::Spec' => '3.39_01',
6549 'File::Spec::Cygwin' => '3.39_01',
6550 'File::Spec::Epoc' => '3.39_01',
6551 'File::Spec::Functions' => '3.39_01',
6552 'File::Spec::Mac' => '3.39_01',
6553 'File::Spec::OS2' => '3.39_01',
6554 'File::Spec::Unix' => '3.39_01',
6555 'File::Spec::VMS' => '3.39_01',
6556 'File::Spec::Win32' => '3.39_01',
6557 'IO::Dir' => '1.10',
6558 'IO::Pipe' => '1.15',
6559 'IO::Poll' => '0.09',
6560 'IO::Select' => '1.21',
6561 'IO::Socket' => '1.34',
6562 'IO::Socket::INET' => '1.33',
6563 'IO::Socket::UNIX' => '1.24',
6564 'Locale::Maketext' => '1.22',
6565 'Math::BigInt' => '1.998',
6566 'Module::CoreList' => '2.60',
6567 'Module::Pluggable' => '4.0',
6568 'POSIX' => '1.28',
6569 'PerlIO::scalar' => '0.13',
6570 'Pod::Html' => '1.13',
6571 'Pod::Perldoc' => '3.15_15',
6572 'Pod::Perldoc::BaseTo' => '3.15_15',
6573 'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6574 'Pod::Perldoc::ToANSI' => '3.15_15',
6575 'Pod::Perldoc::ToChecker'=> '3.15_15',
6576 'Pod::Perldoc::ToMan' => '3.15_15',
6577 'Pod::Perldoc::ToNroff' => '3.15_15',
6578 'Pod::Perldoc::ToPod' => '3.15_15',
6579 'Pod::Perldoc::ToRtf' => '3.15_15',
6580 'Pod::Perldoc::ToTerm' => '3.15_15',
6581 'Pod::Perldoc::ToText' => '3.15_15',
6582 'Pod::Perldoc::ToTk' => '3.15_15',
6583 'Pod::Perldoc::ToXml' => '3.15_15',
6584 'Term::UI' => '0.30',
6585 'Tie::File' => '0.98',
6586 'Unicode::UCD' => '0.39',
6587 'Version::Requirements' => '0.101021',
6588 'XS::APItest' => '0.35',
6589 '_charnames' => '1.28',
6590 'arybase' => '0.03',
6591 'autouse' => '1.07',
6592 'charnames' => '1.28',
6593 'diagnostics' => '1.27',
6594 'feature' => '1.25',
6595 'overload' => '1.17',
6596 'overloading' => '0.02',
6597 'perlfaq' => '5.0150038',
6598 },
6599 removed => {
6600 }
9cdfa110 6601 },
d10490f6 6602 5.015008 => {
a272bf38
DL
6603 delta_from => 5.015007,
6604 changed => {
6605 'B' => '1.34',
6606 'B::Deparse' => '1.12',
6607 'CPAN::Meta' => '2.120351',
6608 'CPAN::Meta::Converter' => '2.120351',
6609 'CPAN::Meta::Feature' => '2.120351',
6610 'CPAN::Meta::History' => '2.120351',
6611 'CPAN::Meta::Prereqs' => '2.120351',
6612 'CPAN::Meta::Requirements'=> '2.120351',
6613 'CPAN::Meta::Spec' => '2.120351',
6614 'CPAN::Meta::Validator' => '2.120351',
6615 'CPAN::Meta::YAML' => '0.007',
6616 'CPANPLUS' => '0.9118',
6617 'CPANPLUS::Dist::Build' => '0.62',
6618 'CPANPLUS::Dist::Build::Constants'=> '0.62',
6619 'CPANPLUS::Internals' => '0.9118',
6620 'CPANPLUS::Shell::Default'=> '0.9118',
6621 'Carp' => '1.25',
6622 'Carp::Heavy' => '1.25',
6623 'Compress::Raw::Bzip2' => '2.048',
6624 'Compress::Raw::Zlib' => '2.048',
6625 'Compress::Zlib' => '2.048',
6626 'Cwd' => '3.39_02',
6627 'DB_File' => '1.826',
6628 'Data::Dumper' => '2.135_05',
6629 'English' => '1.05',
6630 'ExtUtils::Install' => '1.58',
6631 'ExtUtils::ParseXS' => '3.16',
6632 'ExtUtils::ParseXS::Constants'=> '3.16',
6633 'ExtUtils::ParseXS::CountLines'=> '3.16',
6634 'ExtUtils::ParseXS::Utilities'=> '3.16',
6635 'ExtUtils::Typemaps' => '3.16',
6636 'ExtUtils::Typemaps::Cmd'=> '3.16',
6637 'ExtUtils::Typemaps::InputMap'=> '3.16',
6638 'ExtUtils::Typemaps::OutputMap'=> '3.16',
6639 'ExtUtils::Typemaps::Type'=> '3.16',
6640 'File::Copy' => '2.23',
6641 'File::Glob' => '1.17',
6642 'File::Spec' => '3.39_02',
6643 'File::Spec::Cygwin' => '3.39_02',
6644 'File::Spec::Epoc' => '3.39_02',
6645 'File::Spec::Functions' => '3.39_02',
6646 'File::Spec::Mac' => '3.39_02',
6647 'File::Spec::OS2' => '3.39_02',
6648 'File::Spec::Unix' => '3.39_02',
6649 'File::Spec::VMS' => '3.39_02',
6650 'File::Spec::Win32' => '3.39_02',
6651 'Filter::Util::Call' => '1.40',
6652 'IO::Compress::Adapter::Bzip2'=> '2.048',
6653 'IO::Compress::Adapter::Deflate'=> '2.048',
6654 'IO::Compress::Adapter::Identity'=> '2.048',
6655 'IO::Compress::Base' => '2.048',
6656 'IO::Compress::Base::Common'=> '2.048',
6657 'IO::Compress::Bzip2' => '2.048',
6658 'IO::Compress::Deflate' => '2.048',
6659 'IO::Compress::Gzip' => '2.048',
6660 'IO::Compress::Gzip::Constants'=> '2.048',
6661 'IO::Compress::RawDeflate'=> '2.048',
6662 'IO::Compress::Zip' => '2.048',
6663 'IO::Compress::Zip::Constants'=> '2.048',
6664 'IO::Compress::Zlib::Constants'=> '2.048',
6665 'IO::Compress::Zlib::Extra'=> '2.048',
6666 'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6667 'IO::Uncompress::Adapter::Identity'=> '2.048',
6668 'IO::Uncompress::Adapter::Inflate'=> '2.048',
6669 'IO::Uncompress::AnyInflate'=> '2.048',
6670 'IO::Uncompress::AnyUncompress'=> '2.048',
6671 'IO::Uncompress::Base' => '2.048',
6672 'IO::Uncompress::Bunzip2'=> '2.048',
6673 'IO::Uncompress::Gunzip'=> '2.048',
6674 'IO::Uncompress::Inflate'=> '2.048',
6675 'IO::Uncompress::RawInflate'=> '2.048',
6676 'IO::Uncompress::Unzip' => '2.048',
6677 'IPC::Cmd' => '0.76',
6678 'Math::Complex' => '1.59',
6679 'Math::Trig' => '1.23',
6680 'Module::Metadata' => '1.000009',
6681 'Opcode' => '1.23',
6682 'POSIX' => '1.30',
6683 'Parse::CPAN::Meta' => '1.4402',
6684 'PerlIO::mmap' => '0.010',
6685 'Pod::Checker' => '1.51',
6686 'Pod::Find' => '1.51',
6687 'Pod::Functions' => '1.05',
a272bf38
DL
6688 'Pod::Html' => '1.14',
6689 'Pod::InputObjects' => '1.51',
6690 'Pod::ParseUtils' => '1.51',
6691 'Pod::Parser' => '1.51',
6692 'Pod::PlainText' => '2.05',
6693 'Pod::Select' => '1.51',
6694 'Pod::Usage' => '1.51',
6695 'Safe' => '2.31',
6696 'Socket' => '1.98',
6697 'Term::Cap' => '1.13',
6698 'Term::ReadLine' => '1.08',
6699 'Time::HiRes' => '1.9725',
6700 'Unicode' => '6.1.0',
6701 'Unicode::UCD' => '0.41',
6702 'Version::Requirements' => '0.101022',
6703 'XS::APItest' => '0.36',
6704 'XS::Typemap' => '0.08',
6705 '_charnames' => '1.29',
6706 'arybase' => '0.04',
6707 'charnames' => '1.29',
6708 'diagnostics' => '1.28',
6709 'feature' => '1.26',
6710 'locale' => '1.01',
6711 'overload' => '1.18',
6712 'perlfaq' => '5.0150039',
6713 're' => '0.19',
6714 'subs' => '1.01',
6715 'warnings' => '1.13',
6716 },
6717 removed => {
6718 }
b240fc0f 6719 },
d10490f6 6720 5.015009 => {
a272bf38
DL
6721 delta_from => 5.015008,
6722 changed => {
6723 'B::Deparse' => '1.13',
6724 'B::Lint' => '1.14',
6725 'B::Lint::Debug' => '1.14',
6726 'CPAN::Meta' => '2.120630',
6727 'CPAN::Meta::Converter' => '2.120630',
6728 'CPAN::Meta::Feature' => '2.120630',
6729 'CPAN::Meta::History' => '2.120630',
6730 'CPAN::Meta::Prereqs' => '2.120630',
6731 'CPAN::Meta::Requirements'=> '2.120630',
6732 'CPAN::Meta::Spec' => '2.120630',
6733 'CPAN::Meta::Validator' => '2.120630',
6734 'CPANPLUS' => '0.9121',
6735 'CPANPLUS::Internals' => '0.9121',
6736 'CPANPLUS::Shell::Default'=> '0.9121',
6737 'Data::Dumper' => '2.135_06',
6738 'Digest::SHA' => '5.71',
6739 'ExtUtils::CBuilder' => '0.280206',
6740 'ExtUtils::CBuilder::Base'=> '0.280206',
6741 'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6742 'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6743 'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6744 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6745 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6746 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6747 'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6748 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6749 'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6750 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6751 'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6752 'HTTP::Tiny' => '0.017',
6753 'Locale::Codes' => '3.21',
6754 'Locale::Codes::Constants'=> '3.21',
6755 'Locale::Codes::Country'=> '3.21',
6756 'Locale::Codes::Country_Codes'=> '3.21',
6757 'Locale::Codes::Country_Retired'=> '3.21',
6758 'Locale::Codes::Currency'=> '3.21',
6759 'Locale::Codes::Currency_Codes'=> '3.21',
6760 'Locale::Codes::Currency_Retired'=> '3.21',
6761 'Locale::Codes::LangExt'=> '3.21',
6762 'Locale::Codes::LangExt_Codes'=> '3.21',
6763 'Locale::Codes::LangExt_Retired'=> '3.21',
6764 'Locale::Codes::LangFam'=> '3.21',
6765 'Locale::Codes::LangFam_Codes'=> '3.21',
6766 'Locale::Codes::LangFam_Retired'=> '3.21',
6767 'Locale::Codes::LangVar'=> '3.21',
6768 'Locale::Codes::LangVar_Codes'=> '3.21',
6769 'Locale::Codes::LangVar_Retired'=> '3.21',
6770 'Locale::Codes::Language'=> '3.21',
6771 'Locale::Codes::Language_Codes'=> '3.21',
6772 'Locale::Codes::Language_Retired'=> '3.21',
6773 'Locale::Codes::Script' => '3.21',
6774 'Locale::Codes::Script_Codes'=> '3.21',
6775 'Locale::Codes::Script_Retired'=> '3.21',
6776 'Locale::Country' => '3.21',
6777 'Locale::Currency' => '3.21',
6778 'Locale::Language' => '3.21',
6779 'Locale::Script' => '3.21',
6780 'Module::CoreList' => '2.65',
6781 'Pod::Html' => '1.1501',
6782 'Pod::Perldoc' => '3.17',
6783 'Pod::Perldoc::BaseTo' => '3.17',
6784 'Pod::Perldoc::GetOptsOO'=> '3.17',
6785 'Pod::Perldoc::ToANSI' => '3.17',
6786 'Pod::Perldoc::ToChecker'=> '3.17',
6787 'Pod::Perldoc::ToMan' => '3.17',
6788 'Pod::Perldoc::ToNroff' => '3.17',
6789 'Pod::Perldoc::ToPod' => '3.17',
6790 'Pod::Perldoc::ToRtf' => '3.17',
6791 'Pod::Perldoc::ToTerm' => '3.17',
6792 'Pod::Perldoc::ToText' => '3.17',
6793 'Pod::Perldoc::ToTk' => '3.17',
6794 'Pod::Perldoc::ToXml' => '3.17',
6795 'Pod::Simple' => '3.20',
6796 'Pod::Simple::BlackBox' => '3.20',
6797 'Pod::Simple::Checker' => '3.20',
6798 'Pod::Simple::Debug' => '3.20',
6799 'Pod::Simple::DumpAsText'=> '3.20',
6800 'Pod::Simple::DumpAsXML'=> '3.20',
6801 'Pod::Simple::HTML' => '3.20',
6802 'Pod::Simple::HTMLBatch'=> '3.20',
6803 'Pod::Simple::LinkSection'=> '3.20',
6804 'Pod::Simple::Methody' => '3.20',
6805 'Pod::Simple::Progress' => '3.20',
6806 'Pod::Simple::PullParser'=> '3.20',
6807 'Pod::Simple::PullParserEndToken'=> '3.20',
6808 'Pod::Simple::PullParserStartToken'=> '3.20',
6809 'Pod::Simple::PullParserTextToken'=> '3.20',
6810 'Pod::Simple::PullParserToken'=> '3.20',
6811 'Pod::Simple::RTF' => '3.20',
6812 'Pod::Simple::Search' => '3.20',
6813 'Pod::Simple::SimpleTree'=> '3.20',
6814 'Pod::Simple::Text' => '3.20',
6815 'Pod::Simple::TextContent'=> '3.20',
6816 'Pod::Simple::TiedOutFH'=> '3.20',
6817 'Pod::Simple::Transcode'=> '3.20',
6818 'Pod::Simple::TranscodeDumb'=> '3.20',
6819 'Pod::Simple::TranscodeSmart'=> '3.20',
6820 'Pod::Simple::XHTML' => '3.20',
6821 'Pod::Simple::XMLOutStream'=> '3.20',
6822 'Socket' => '2.000',
6823 'Term::ReadLine' => '1.09',
6824 'Unicode::Collate' => '0.89',
6825 'Unicode::Collate::CJK::Korean'=> '0.88',
6826 'Unicode::Collate::Locale'=> '0.89',
6827 'Unicode::Normalize' => '1.14',
6828 'Unicode::UCD' => '0.42',
6829 'XS::APItest' => '0.37',
6830 'arybase' => '0.05',
6831 'attributes' => '0.18',
6832 'charnames' => '1.30',
6833 'feature' => '1.27',
6834 },
6835 removed => {
6836 }
f50587e0 6837 },
a272bf38
DL
6838 5.016 => {
6839 delta_from => 5.015009,
6840 changed => {
6841 'B::Concise' => '0.89',
6842 'B::Deparse' => '1.14',
6843 'Carp' => '1.26',
6844 'Carp::Heavy' => '1.26',
6845 'IO::Socket' => '1.35',
6846 'Module::CoreList' => '2.66',
6847 'PerlIO::scalar' => '0.14',
6848 'Pod::Html' => '1.1502',
6849 'Safe' => '2.31_01',
6850 'Socket' => '2.001',
6851 'Unicode::UCD' => '0.43',
6852 'XS::APItest' => '0.38',
6853 '_charnames' => '1.31',
6854 'attributes' => '0.19',
6855 'strict' => '1.07',
6856 'version' => '0.99',
6857 },
6858 removed => {
6859 }
68a91acb 6860 },
990b8741
RS
6861 5.016001 => {
6862 delta_from => 5.016,
6863 changed => {
6864 'B' => '1.35',
6865 'B::Deparse' => '1.14_01',
6866 'List::Util' => '1.25',
6867 'List::Util::PP' => '1.25',
6868 'List::Util::XS' => '1.25',
6869 'Module::CoreList' => '2.70',
6870 'PerlIO::scalar' => '0.14_01',
6871 'Scalar::Util' => '1.25',
6872 'Scalar::Util::PP' => '1.25',
6873 're' => '0.19_01',
6874 },
6875 removed => {
6876 }
6877 },
e0a7ebbc
CBW
6878 5.016002 => {
6879 delta_from => 5.016001,
6880 changed => {
c078d967 6881 'Module::CoreList' => '2.76',
e0a7ebbc
CBW
6882 },
6883 removed => {
6884 }
6885 },
cd98b2f5
CBW
6886 5.016003 => {
6887 delta_from => 5.016002,
6888 changed => {
6889 'Encode' => '2.44_01',
6890 'Module::CoreList' => '2.76_02',
6891 'XS::APItest' => '0.39',
6892 },
6893 removed => {
6894 }
6895 },
a272bf38
DL
6896 5.017 => {
6897 delta_from => 5.016,
6898 changed => {
6899 'B' => '1.35',
6900 'B::Concise' => '0.90',
6901 'ExtUtils::ParseXS' => '3.17',
6902 'ExtUtils::ParseXS::Utilities'=> '3.17',
6903 'File::DosGlob' => '1.07',
6904 'File::Find' => '1.21',
6905 'File::stat' => '1.06',
6906 'Hash::Util' => '0.12',
6907 'IO::Socket' => '1.34',
6908 'Module::CoreList' => '2.67',
6909 'Pod::Functions' => '1.06',
a272bf38
DL
6910 'Storable' => '2.35',
6911 'XS::APItest' => '0.39',
6912 'diagnostics' => '1.29',
6913 'feature' => '1.28',
6914 'overload' => '1.19',
6915 'utf8' => '1.10',
6916 },
6917 removed => {
6918 'Version::Requirements' => 1,
6919 }
f558db2f 6920 },
71014848 6921 5.017001 => {
a272bf38
DL
6922 delta_from => 5.017,
6923 changed => {
6924 'App::Prove' => '3.25',
6925 'App::Prove::State' => '3.25',
6926 'App::Prove::State::Result'=> '3.25',
6927 'App::Prove::State::Result::Test'=> '3.25',
6928 'Archive::Extract' => '0.60',
6929 'Archive::Tar' => '1.88',
6930 'Archive::Tar::Constant'=> '1.88',
6931 'Archive::Tar::File' => '1.88',
6932 'B' => '1.36',
6933 'B::Deparse' => '1.15',
6934 'CPAN::Meta' => '2.120921',
6935 'CPAN::Meta::Converter' => '2.120921',
6936 'CPAN::Meta::Feature' => '2.120921',
6937 'CPAN::Meta::History' => '2.120921',
6938 'CPAN::Meta::Prereqs' => '2.120921',
6939 'CPAN::Meta::Requirements'=> '2.122',
6940 'CPAN::Meta::Spec' => '2.120921',
6941 'CPAN::Meta::Validator' => '2.120921',
6942 'CPAN::Meta::YAML' => '0.008',
6943 'CPANPLUS' => '0.9130',
6944 'CPANPLUS::Config::HomeEnv'=> '0.04',
6945 'CPANPLUS::Internals' => '0.9130',
6946 'CPANPLUS::Shell::Default'=> '0.9130',
6947 'Class::Struct' => '0.64',
6948 'Compress::Raw::Bzip2' => '2.052',
6949 'Compress::Raw::Zlib' => '2.054',
6950 'Compress::Zlib' => '2.052',
6951 'Digest::MD5' => '2.52',
6952 'DynaLoader' => '1.15',
6953 'ExtUtils::CBuilder' => '0.280208',
6954 'ExtUtils::CBuilder::Base'=> '0.280208',
6955 'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
6956 'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
6957 'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
6958 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
6959 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
6960 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
6961 'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
6962 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
6963 'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
6964 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
6965 'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
6966 'Fatal' => '2.11',
6967 'File::DosGlob' => '1.08',
6968 'File::Fetch' => '0.34',
6969 'File::Spec::Unix' => '3.39_03',
6970 'Filter::Util::Call' => '1.45',
6971 'HTTP::Tiny' => '0.022',
6972 'IO' => '1.25_07',
6973 'IO::Compress::Adapter::Bzip2'=> '2.052',
6974 'IO::Compress::Adapter::Deflate'=> '2.052',
6975 'IO::Compress::Adapter::Identity'=> '2.052',
6976 'IO::Compress::Base' => '2.052',
6977 'IO::Compress::Base::Common'=> '2.052',
6978 'IO::Compress::Bzip2' => '2.052',
6979 'IO::Compress::Deflate' => '2.052',
6980 'IO::Compress::Gzip' => '2.052',
6981 'IO::Compress::Gzip::Constants'=> '2.052',
6982 'IO::Compress::RawDeflate'=> '2.052',
6983 'IO::Compress::Zip' => '2.052',
6984 'IO::Compress::Zip::Constants'=> '2.052',
6985 'IO::Compress::Zlib::Constants'=> '2.052',
6986 'IO::Compress::Zlib::Extra'=> '2.052',
6987 'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
6988 'IO::Uncompress::Adapter::Identity'=> '2.052',
6989 'IO::Uncompress::Adapter::Inflate'=> '2.052',
6990 'IO::Uncompress::AnyInflate'=> '2.052',
6991 'IO::Uncompress::AnyUncompress'=> '2.052',
6992 'IO::Uncompress::Base' => '2.052',
6993 'IO::Uncompress::Bunzip2'=> '2.052',
6994 'IO::Uncompress::Gunzip'=> '2.052',
6995 'IO::Uncompress::Inflate'=> '2.052',
6996 'IO::Uncompress::RawInflate'=> '2.052',
6997 'IO::Uncompress::Unzip' => '2.052',
6998 'IPC::Cmd' => '0.78',
6999 'List::Util' => '1.25',
7000 'List::Util::XS' => '1.25',
7001 'Locale::Codes' => '3.22',
7002 'Locale::Codes::Constants'=> '3.22',
7003 'Locale::Codes::Country'=> '3.22',
7004 'Locale::Codes::Country_Codes'=> '3.22',
7005 'Locale::Codes::Country_Retired'=> '3.22',
7006 'Locale::Codes::Currency'=> '3.22',
7007 'Locale::Codes::Currency_Codes'=> '3.22',
7008 'Locale::Codes::Currency_Retired'=> '3.22',
7009 'Locale::Codes::LangExt'=> '3.22',
7010 'Locale::Codes::LangExt_Codes'=> '3.22',
7011 'Locale::Codes::LangExt_Retired'=> '3.22',
7012 'Locale::Codes::LangFam'=> '3.22',
7013 'Locale::Codes::LangFam_Codes'=> '3.22',
7014 'Locale::Codes::LangFam_Retired'=> '3.22',
7015 'Locale::Codes::LangVar'=> '3.22',
7016 'Locale::Codes::LangVar_Codes'=> '3.22',
7017 'Locale::Codes::LangVar_Retired'=> '3.22',
7018 'Locale::Codes::Language'=> '3.22',
7019 'Locale::Codes::Language_Codes'=> '3.22',
7020 'Locale::Codes::Language_Retired'=> '3.22',
7021 'Locale::Codes::Script' => '3.22',
7022 'Locale::Codes::Script_Codes'=> '3.22',
7023 'Locale::Codes::Script_Retired'=> '3.22',
7024 'Locale::Country' => '3.22',
7025 'Locale::Currency' => '3.22',
7026 'Locale::Language' => '3.22',
7027 'Locale::Script' => '3.22',
7028 'Memoize' => '1.03',
7029 'Memoize::AnyDBM_File' => '1.03',
7030 'Memoize::Expire' => '1.03',
7031 'Memoize::ExpireFile' => '1.03',
7032 'Memoize::ExpireTest' => '1.03',
7033 'Memoize::NDBM_File' => '1.03',
7034 'Memoize::SDBM_File' => '1.03',
7035 'Memoize::Storable' => '1.03',
7036 'Module::Build' => '0.40',
7037 'Module::Build::Base' => '0.40',
7038 'Module::Build::Compat' => '0.40',
7039 'Module::Build::Config' => '0.40',
7040 'Module::Build::Cookbook'=> '0.40',
7041 'Module::Build::Dumper' => '0.40',
7042 'Module::Build::ModuleInfo'=> '0.40',
7043 'Module::Build::Notes' => '0.40',
7044 'Module::Build::PPMMaker'=> '0.40',
7045 'Module::Build::Platform::Amiga'=> '0.40',
7046 'Module::Build::Platform::Default'=> '0.40',
7047 'Module::Build::Platform::EBCDIC'=> '0.40',
7048 'Module::Build::Platform::MPEiX'=> '0.40',
7049 'Module::Build::Platform::MacOS'=> '0.40',
7050 'Module::Build::Platform::RiscOS'=> '0.40',
7051 'Module::Build::Platform::Unix'=> '0.40',
7052 'Module::Build::Platform::VMS'=> '0.40',
7053 'Module::Build::Platform::VOS'=> '0.40',
7054 'Module::Build::Platform::Windows'=> '0.40',
7055 'Module::Build::Platform::aix'=> '0.40',
7056 'Module::Build::Platform::cygwin'=> '0.40',
7057 'Module::Build::Platform::darwin'=> '0.40',
7058 'Module::Build::Platform::os2'=> '0.40',
7059 'Module::Build::PodParser'=> '0.40',
7060 'Module::CoreList' => '2.68',
7061 'Module::Load::Conditional'=> '0.50',
7062 'Object::Accessor' => '0.44',
7063 'POSIX' => '1.31',
7064 'Params::Check' => '0.36',
7065 'Parse::CPAN::Meta' => '1.4404',
7066 'PerlIO::mmap' => '0.011',
7067 'PerlIO::via::QuotedPrint'=> '0.07',
7068 'Pod::Html' => '1.16',
7069 'Pod::Man' => '2.26',
7070 'Pod::Text' => '3.16',
7071 'Safe' => '2.33_01',
7072 'Scalar::Util' => '1.25',
7073 'Search::Dict' => '1.07',
7074 'Storable' => '2.36',
7075 'TAP::Base' => '3.25',
7076 'TAP::Formatter::Base' => '3.25',
7077 'TAP::Formatter::Color' => '3.25',
7078 'TAP::Formatter::Console'=> '3.25',
7079 'TAP::Formatter::Console::ParallelSession'=> '3.25',
7080 'TAP::Formatter::Console::Session'=> '3.25',
7081 'TAP::Formatter::File' => '3.25',
7082 'TAP::Formatter::File::Session'=> '3.25',
7083 'TAP::Formatter::Session'=> '3.25',
7084 'TAP::Harness' => '3.25',
7085 'TAP::Object' => '3.25',
7086 'TAP::Parser' => '3.25',
7087 'TAP::Parser::Aggregator'=> '3.25',
7088 'TAP::Parser::Grammar' => '3.25',
7089 'TAP::Parser::Iterator' => '3.25',
7090 'TAP::Parser::Iterator::Array'=> '3.25',
7091 'TAP::Parser::Iterator::Process'=> '3.25',
7092 'TAP::Parser::Iterator::Stream'=> '3.25',
7093 'TAP::Parser::IteratorFactory'=> '3.25',
7094 'TAP::Parser::Multiplexer'=> '3.25',
7095 'TAP::Parser::Result' => '3.25',
7096 'TAP::Parser::Result::Bailout'=> '3.25',
7097 'TAP::Parser::Result::Comment'=> '3.25',
7098 'TAP::Parser::Result::Plan'=> '3.25',
7099 'TAP::Parser::Result::Pragma'=> '3.25',
7100 'TAP::Parser::Result::Test'=> '3.25',
7101 'TAP::Parser::Result::Unknown'=> '3.25',
7102 'TAP::Parser::Result::Version'=> '3.25',
7103 'TAP::Parser::Result::YAML'=> '3.25',
7104 'TAP::Parser::ResultFactory'=> '3.25',
7105 'TAP::Parser::Scheduler'=> '3.25',
7106 'TAP::Parser::Scheduler::Job'=> '3.25',
7107 'TAP::Parser::Scheduler::Spinner'=> '3.25',
7108 'TAP::Parser::Source' => '3.25',
7109 'TAP::Parser::SourceHandler'=> '3.25',
7110 'TAP::Parser::SourceHandler::Executable'=> '3.25',
7111 'TAP::Parser::SourceHandler::File'=> '3.25',
7112 'TAP::Parser::SourceHandler::Handle'=> '3.25',
7113 'TAP::Parser::SourceHandler::Perl'=> '3.25',
7114 'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7115 'TAP::Parser::Utils' => '3.25',
7116 'TAP::Parser::YAMLish::Reader'=> '3.25',
7117 'TAP::Parser::YAMLish::Writer'=> '3.25',
7118 'Term::ANSIColor' => '3.02',
7119 'Test::Harness' => '3.25',
7120 'Unicode' => '6.2.0',
7121 'Unicode::UCD' => '0.44',
7122 'XS::APItest' => '0.40',
7123 '_charnames' => '1.32',
7124 'attributes' => '0.2',
7125 'autodie' => '2.11',
7126 'autodie::exception' => '2.11',
7127 'autodie::exception::system'=> '2.11',
7128 'autodie::hints' => '2.11',
7129 'bigint' => '0.30',
7130 'charnames' => '1.32',
7131 'feature' => '1.29',
7132 'inc::latest' => '0.40',
7133 'perlfaq' => '5.0150040',
7134 're' => '0.20',
7135 },
7136 removed => {
7137 'List::Util::PP' => 1,
7138 'Scalar::Util::PP' => 1,
7139 }
71014848 7140 },
7ca04d94 7141 5.017002 => {
a272bf38
DL
7142 delta_from => 5.017001,
7143 changed => {
7144 'App::Prove' => '3.25_01',
7145 'App::Prove::State' => '3.25_01',
7146 'App::Prove::State::Result'=> '3.25_01',
7147 'App::Prove::State::Result::Test'=> '3.25_01',
7148 'B::Concise' => '0.91',
7149 'Compress::Raw::Bzip2' => '2.05201',
7150 'Compress::Raw::Zlib' => '2.05401',
7151 'Exporter' => '5.67',
7152 'Exporter::Heavy' => '5.67',
7153 'Fatal' => '2.12',
7154 'File::Fetch' => '0.36',
7155 'File::stat' => '1.07',
7156 'IO' => '1.25_08',
7157 'IO::Socket' => '1.35',
7158 'Module::CoreList' => '2.69',
7159 'PerlIO::scalar' => '0.15',
7160 'Socket' => '2.002',
7161 'Storable' => '2.37',
7162 'TAP::Base' => '3.25_01',
7163 'TAP::Formatter::Base' => '3.25_01',
7164 'TAP::Formatter::Color' => '3.25_01',
7165 'TAP::Formatter::Console'=> '3.25_01',
7166 'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7167 'TAP::Formatter::Console::Session'=> '3.25_01',
7168 'TAP::Formatter::File' => '3.25_01',
7169 'TAP::Formatter::File::Session'=> '3.25_01',
7170 'TAP::Formatter::Session'=> '3.25_01',
7171 'TAP::Harness' => '3.25_01',
7172 'TAP::Object' => '3.25_01',
7173 'TAP::Parser' => '3.25_01',
7174 'TAP::Parser::Aggregator'=> '3.25_01',
7175 'TAP::Parser::Grammar' => '3.25_01',
7176 'TAP::Parser::Iterator' => '3.25_01',
7177 'TAP::Parser::Iterator::Array'=> '3.25_01',
7178 'TAP::Parser::Iterator::Process'=> '3.25_01',
7179 'TAP::Parser::Iterator::Stream'=> '3.25_01',
7180 'TAP::Parser::IteratorFactory'=> '3.25_01',
7181 'TAP::Parser::Multiplexer'=> '3.25_01',
7182 'TAP::Parser::Result' => '3.25_01',
7183 'TAP::Parser::Result::Bailout'=> '3.25_01',
7184 'TAP::Parser::Result::Comment'=> '3.25_01',
7185 'TAP::Parser::Result::Plan'=> '3.25_01',
7186 'TAP::Parser::Result::Pragma'=> '3.25_01',
7187 'TAP::Parser::Result::Test'=> '3.25_01',
7188 'TAP::Parser::Result::Unknown'=> '3.25_01',
7189 'TAP::Parser::Result::Version'=> '3.25_01',
7190 'TAP::Parser::Result::YAML'=> '3.25_01',
7191 'TAP::Parser::ResultFactory'=> '3.25_01',
7192 'TAP::Parser::Scheduler'=> '3.25_01',
7193 'TAP::Parser::Scheduler::Job'=> '3.25_01',
7194 'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7195 'TAP::Parser::Source' => '3.25_01',
7196 'TAP::Parser::SourceHandler'=> '3.25_01',
7197 'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7198 'TAP::Parser::SourceHandler::File'=> '3.25_01',
7199 'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7200 'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7201 'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7202 'TAP::Parser::Utils' => '3.25_01',
7203 'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7204 'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7205 'Test::Harness' => '3.25_01',
7206 'Tie::StdHandle' => '4.3',
7207 'XS::APItest' => '0.41',
7208 'autodie' => '2.12',
7209 'autodie::exception' => '2.12',
7210 'autodie::exception::system'=> '2.12',
7211 'autodie::hints' => '2.12',
7212 'diagnostics' => '1.30',
7213 'overload' => '1.20',
7214 're' => '0.21',
7215 'vars' => '1.03',
7216 },
7217 removed => {
7218 }
7ca04d94 7219 },
752b5616
SH
7220 5.017003 => {
7221 delta_from => 5.017002,
7222 changed => {
7223 'B' => '1.37',
7224 'B::Concise' => '0.92',
7225 'B::Debug' => '1.18',
7226 'B::Deparse' => '1.16',
7227 'CGI' => '3.60',
7228 'Compress::Raw::Bzip2' => '2.055',
7229 'Compress::Raw::Zlib' => '2.056',
7230 'Compress::Zlib' => '2.055',
7231 'Data::Dumper' => '2.135_07',
7232 'Devel::Peek' => '1.09',
7233 'Encode' => '2.47',
7234 'Encode::Alias' => '2.16',
7235 'Encode::GSM0338' => '2.02',
7236 'Encode::Unicode::UTF7' => '2.06',
7237 'IO::Compress::Adapter::Bzip2'=> '2.055',
7238 'IO::Compress::Adapter::Deflate'=> '2.055',
7239 'IO::Compress::Adapter::Identity'=> '2.055',
7240 'IO::Compress::Base' => '2.055',
7241 'IO::Compress::Base::Common'=> '2.055',
7242 'IO::Compress::Bzip2' => '2.055',
7243 'IO::Compress::Deflate' => '2.055',
7244 'IO::Compress::Gzip' => '2.055',
7245 'IO::Compress::Gzip::Constants'=> '2.055',
7246 'IO::Compress::RawDeflate'=> '2.055',
7247 'IO::Compress::Zip' => '2.055',
7248 'IO::Compress::Zip::Constants'=> '2.055',
7249 'IO::Compress::Zlib::Constants'=> '2.055',
7250 'IO::Compress::Zlib::Extra'=> '2.055',
7251 'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7252 'IO::Uncompress::Adapter::Identity'=> '2.055',
7253 'IO::Uncompress::Adapter::Inflate'=> '2.055',
7254 'IO::Uncompress::AnyInflate'=> '2.055',
7255 'IO::Uncompress::AnyUncompress'=> '2.055',
7256 'IO::Uncompress::Base' => '2.055',
7257 'IO::Uncompress::Bunzip2'=> '2.055',
7258 'IO::Uncompress::Gunzip'=> '2.055',
7259 'IO::Uncompress::Inflate'=> '2.055',
7260 'IO::Uncompress::RawInflate'=> '2.055',
7261 'IO::Uncompress::Unzip' => '2.055',
7262 'Module::Build' => '0.4003',
7263 'Module::Build::Base' => '0.4003',
7264 'Module::Build::Compat' => '0.4003',
7265 'Module::Build::Config' => '0.4003',
7266 'Module::Build::Cookbook'=> '0.4003',
7267 'Module::Build::Dumper' => '0.4003',
7268 'Module::Build::ModuleInfo'=> '0.4003',
7269 'Module::Build::Notes' => '0.4003',
7270 'Module::Build::PPMMaker'=> '0.4003',
7271 'Module::Build::Platform::Amiga'=> '0.4003',
7272 'Module::Build::Platform::Default'=> '0.4003',
7273 'Module::Build::Platform::EBCDIC'=> '0.4003',
7274 'Module::Build::Platform::MPEiX'=> '0.4003',
7275 'Module::Build::Platform::MacOS'=> '0.4003',
7276 'Module::Build::Platform::RiscOS'=> '0.4003',
7277 'Module::Build::Platform::Unix'=> '0.4003',
7278 'Module::Build::Platform::VMS'=> '0.4003',
7279 'Module::Build::Platform::VOS'=> '0.4003',
7280 'Module::Build::Platform::Windows'=> '0.4003',
7281 'Module::Build::Platform::aix'=> '0.4003',
7282 'Module::Build::Platform::cygwin'=> '0.4003',
7283 'Module::Build::Platform::darwin'=> '0.4003',
7284 'Module::Build::Platform::os2'=> '0.4003',
7285 'Module::Build::PodParser'=> '0.4003',
7286 'Module::CoreList' => '2.71',
7287 'Module::CoreList::TieHashDelta'=> '2.71',
7288 'Module::Load::Conditional'=> '0.54',
7289 'Module::Metadata' => '1.000011',
7290 'Module::Pluggable' => '4.3',
7291 'Module::Pluggable::Object'=> '4.3',
7292 'Pod::Simple' => '3.23',
7293 'Pod::Simple::BlackBox' => '3.23',
7294 'Pod::Simple::Checker' => '3.23',
7295 'Pod::Simple::Debug' => '3.23',
7296 'Pod::Simple::DumpAsText'=> '3.23',
7297 'Pod::Simple::DumpAsXML'=> '3.23',
7298 'Pod::Simple::HTML' => '3.23',
7299 'Pod::Simple::HTMLBatch'=> '3.23',
7300 'Pod::Simple::LinkSection'=> '3.23',
7301 'Pod::Simple::Methody' => '3.23',
7302 'Pod::Simple::Progress' => '3.23',
7303 'Pod::Simple::PullParser'=> '3.23',
7304 'Pod::Simple::PullParserEndToken'=> '3.23',
7305 'Pod::Simple::PullParserStartToken'=> '3.23',
7306 'Pod::Simple::PullParserTextToken'=> '3.23',
7307 'Pod::Simple::PullParserToken'=> '3.23',
7308 'Pod::Simple::RTF' => '3.23',
7309 'Pod::Simple::Search' => '3.23',
7310 'Pod::Simple::SimpleTree'=> '3.23',
7311 'Pod::Simple::Text' => '3.23',
7312 'Pod::Simple::TextContent'=> '3.23',
7313 'Pod::Simple::TiedOutFH'=> '3.23',
7314 'Pod::Simple::Transcode'=> '3.23',
7315 'Pod::Simple::TranscodeDumb'=> '3.23',
7316 'Pod::Simple::TranscodeSmart'=> '3.23',
7317 'Pod::Simple::XHTML' => '3.23',
7318 'Pod::Simple::XMLOutStream'=> '3.23',
7319 'Socket' => '2.004',
7320 'Storable' => '2.38',
7321 'Sys::Syslog' => '0.31',
7322 'Term::ReadLine' => '1.10',
7323 'Text::Tabs' => '2012.0818',
7324 'Text::Wrap' => '2012.0818',
7325 'Time::Local' => '1.2300',
7326 'Unicode::UCD' => '0.45',
7327 'Win32' => '0.45',
7328 'Win32CORE' => '0.03',
7329 'XS::APItest' => '0.42',
7330 'inc::latest' => '0.4003',
7331 'perlfaq' => '5.0150041',
7332 're' => '0.22',
7333 },
7334 removed => {
7335 }
7336 },
a1484e43
FR
7337 5.017004 => {
7338 delta_from => 5.017003,
7339 changed => {
7340 'Archive::Tar' => '1.90',
7341 'Archive::Tar::Constant'=> '1.90',
7342 'Archive::Tar::File' => '1.90',
7343 'B' => '1.38',
7344 'B::Concise' => '0.93',
7345 'B::Deparse' => '1.17',
7346 'B::Xref' => '1.04',
7347 'CPANPLUS' => '0.9131',
7348 'CPANPLUS::Internals' => '0.9131',
7349 'CPANPLUS::Shell::Default'=> '0.9131',
7350 'DB_File' => '1.827',
7351 'Devel::Peek' => '1.10',
7352 'DynaLoader' => '1.16',
7353 'Errno' => '1.16',
7354 'ExtUtils::ParseXS' => '3.18',
7355 'ExtUtils::ParseXS::Constants'=> '3.18',
7356 'ExtUtils::ParseXS::CountLines'=> '3.18',
7357 'ExtUtils::ParseXS::Utilities'=> '3.18',
7358 'File::Copy' => '2.24',
7359 'File::Find' => '1.22',
7360 'IPC::Open3' => '1.13',
7361 'Locale::Codes' => '3.23',
7362 'Locale::Codes::Constants'=> '3.23',
7363 'Locale::Codes::Country'=> '3.23',
7364 'Locale::Codes::Country_Codes'=> '3.23',
7365 'Locale::Codes::Country_Retired'=> '3.23',
7366 'Locale::Codes::Currency'=> '3.23',
7367 'Locale::Codes::Currency_Codes'=> '3.23',
7368 'Locale::Codes::Currency_Retired'=> '3.23',
7369 'Locale::Codes::LangExt'=> '3.23',
7370 'Locale::Codes::LangExt_Codes'=> '3.23',
7371 'Locale::Codes::LangExt_Retired'=> '3.23',
7372 'Locale::Codes::LangFam'=> '3.23',
7373 'Locale::Codes::LangFam_Codes'=> '3.23',
7374 'Locale::Codes::LangFam_Retired'=> '3.23',
7375 'Locale::Codes::LangVar'=> '3.23',
7376 'Locale::Codes::LangVar_Codes'=> '3.23',
7377 'Locale::Codes::LangVar_Retired'=> '3.23',
7378 'Locale::Codes::Language'=> '3.23',
7379 'Locale::Codes::Language_Codes'=> '3.23',
7380 'Locale::Codes::Language_Retired'=> '3.23',
7381 'Locale::Codes::Script' => '3.23',
7382 'Locale::Codes::Script_Codes'=> '3.23',
7383 'Locale::Codes::Script_Retired'=> '3.23',
7384 'Locale::Country' => '3.23',
7385 'Locale::Currency' => '3.23',
7386 'Locale::Language' => '3.23',
7387 'Locale::Script' => '3.23',
7388 'Math::BigFloat::Trace' => '0.30',
7389 'Math::BigInt::Trace' => '0.30',
7390 'Module::CoreList' => '2.73',
7391 'Module::CoreList::TieHashDelta'=> '2.73',
7392 'Opcode' => '1.24',
7393 'Socket' => '2.006',
7394 'Storable' => '2.39',
7395 'Sys::Syslog' => '0.32',
7396 'Unicode::UCD' => '0.46',
7397 'XS::APItest' => '0.43',
7398 'bignum' => '0.30',
7399 'bigrat' => '0.30',
7400 'constant' => '1.24',
7401 'feature' => '1.30',
7402 'threads::shared' => '1.41',
7403 'version' => '0.9901',
7404 'warnings' => '1.14',
7405 },
7406 removed => {
7407 }
7408 },
03708946
FR
7409 5.017005 => {
7410 delta_from => 5.017004,
7411 changed => {
7412 'AutoLoader' => '5.73',
7413 'B' => '1.39',
7414 'B::Deparse' => '1.18',
7415 'CPANPLUS' => '0.9133',
7416 'CPANPLUS::Internals' => '0.9133',
7417 'CPANPLUS::Shell::Default'=> '0.9133',
7418 'Carp' => '1.27',
7419 'Carp::Heavy' => '1.27',
7420 'Data::Dumper' => '2.136',
7421 'Digest::SHA' => '5.72',
7422 'ExtUtils::CBuilder' => '0.280209',
7423 'ExtUtils::CBuilder::Base'=> '0.280209',
7424 'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7425 'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7426 'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7427 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7428 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7429 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7430 'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7431 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7432 'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7433 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7434 'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7435 'File::Copy' => '2.25',
7436 'File::Glob' => '1.18',
7437 'HTTP::Tiny' => '0.024',
7438 'Module::CoreList' => '2.75',
7439 'Module::CoreList::TieHashDelta'=> '2.75',
7440 'PerlIO::encoding' => '0.16',
7441 'Unicode::Collate' => '0.90',
7442 'Unicode::Collate::Locale'=> '0.90',
7443 'Unicode::Normalize' => '1.15',
7444 'Win32CORE' => '0.04',
7445 'XS::APItest' => '0.44',
7446 'attributes' => '0.21',
7447 'bigint' => '0.31',
7448 'bignum' => '0.31',
7449 'bigrat' => '0.31',
7450 'feature' => '1.31',
7451 'threads::shared' => '1.42',
7452 'warnings' => '1.15',
7453 },
7454 removed => {
7455 }
7456 },
e498bd59
RS
7457 5.017006 => {
7458 delta_from => 5.017005,
7459 changed => {
7460 'B' => '1.40',
7461 'B::Concise' => '0.94',
7462 'B::Deparse' => '1.19',
7463 'B::Xref' => '1.05',
7464 'CGI' => '3.63',
7465 'CGI::Util' => '3.62',
7466 'CPAN' => '1.99_51',
7467 'CPANPLUS::Dist::Build' => '0.64',
7468 'CPANPLUS::Dist::Build::Constants'=> '0.64',
7469 'Carp' => '1.28',
7470 'Carp::Heavy' => '1.28',
7471 'Compress::Raw::Bzip2' => '2.058',
7472 'Compress::Raw::Zlib' => '2.058',
7473 'Compress::Zlib' => '2.058',
7474 'Data::Dumper' => '2.137',
7475 'Digest::SHA' => '5.73',
7476 'DynaLoader' => '1.17',
7477 'Env' => '1.04',
7478 'Errno' => '1.17',
7479 'ExtUtils::Manifest' => '1.62',
7480 'ExtUtils::Typemaps' => '3.18',
7481 'ExtUtils::Typemaps::Cmd'=> '3.18',
7482 'ExtUtils::Typemaps::InputMap'=> '3.18',
7483 'ExtUtils::Typemaps::OutputMap'=> '3.18',
7484 'ExtUtils::Typemaps::Type'=> '3.18',
7485 'Fatal' => '2.13',
7486 'File::Find' => '1.23',
7487 'Hash::Util' => '0.13',
7488 'IO::Compress::Adapter::Bzip2'=> '2.058',
7489 'IO::Compress::Adapter::Deflate'=> '2.058',
7490 'IO::Compress::Adapter::Identity'=> '2.058',
7491 'IO::Compress::Base' => '2.058',
7492 'IO::Compress::Base::Common'=> '2.058',
7493 'IO::Compress::Bzip2' => '2.058',
7494 'IO::Compress::Deflate' => '2.058',
7495 'IO::Compress::Gzip' => '2.058',
7496 'IO::Compress::Gzip::Constants'=> '2.058',
7497 'IO::Compress::RawDeflate'=> '2.058',
7498 'IO::Compress::Zip' => '2.058',
7499 'IO::Compress::Zip::Constants'=> '2.058',
7500 'IO::Compress::Zlib::Constants'=> '2.058',
7501 'IO::Compress::Zlib::Extra'=> '2.058',
7502 'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7503 'IO::Uncompress::Adapter::Identity'=> '2.058',
7504 'IO::Uncompress::Adapter::Inflate'=> '2.058',
7505 'IO::Uncompress::AnyInflate'=> '2.058',
7506 'IO::Uncompress::AnyUncompress'=> '2.058',
7507 'IO::Uncompress::Base' => '2.058',
7508 'IO::Uncompress::Bunzip2'=> '2.058',
7509 'IO::Uncompress::Gunzip'=> '2.058',
7510 'IO::Uncompress::Inflate'=> '2.058',
7511 'IO::Uncompress::RawInflate'=> '2.058',
7512 'IO::Uncompress::Unzip' => '2.058',
7513 'Module::CoreList' => '2.78',
7514 'Module::CoreList::TieHashDelta'=> '2.77',
7515 'Module::Pluggable' => '4.5',
7516 'Module::Pluggable::Object'=> '4.5',
7517 'Opcode' => '1.25',
7518 'Sys::Hostname' => '1.17',
7519 'Term::UI' => '0.32',
7520 'Thread::Queue' => '3.01',
7521 'Tie::Hash::NamedCapture'=> '0.09',
7522 'Unicode::Collate' => '0.93',
7523 'Unicode::Collate::CJK::Korean'=> '0.93',
7524 'Unicode::Collate::Locale'=> '0.93',
7525 'Unicode::Normalize' => '1.16',
7526 'Unicode::UCD' => '0.47',
7527 'XS::APItest' => '0.46',
7528 '_charnames' => '1.33',
7529 'autodie' => '2.13',
7530 'autodie::exception' => '2.13',
7531 'autodie::exception::system'=> '2.13',
7532 'autodie::hints' => '2.13',
7533 'charnames' => '1.33',
7534 're' => '0.23',
7535 },
7536 removed => {
7537 }
7538 },
fe03d33b
DR
7539 5.017007 => {
7540 delta_from => 5.017006,
7541 changed => {
7542 'B' => '1.41',
7543 'CPANPLUS::Dist::Build' => '0.68',
7544 'CPANPLUS::Dist::Build::Constants'=> '0.68',
7545 'Compress::Raw::Bzip2' => '2.059',
7546 'Compress::Raw::Zlib' => '2.059',
7547 'Compress::Zlib' => '2.059',
7548 'Cwd' => '3.39_03',
7549 'Data::Dumper' => '2.139',
7550 'Devel::Peek' => '1.11',
7551 'Digest::SHA' => '5.80',
7552 'DynaLoader' => '1.18',
7553 'English' => '1.06',
7554 'Errno' => '1.18',
7555 'ExtUtils::Command::MM' => '6.64',
7556 'ExtUtils::Liblist' => '6.64',
7557 'ExtUtils::Liblist::Kid'=> '6.64',
7558 'ExtUtils::MM' => '6.64',
7559 'ExtUtils::MM_AIX' => '6.64',
7560 'ExtUtils::MM_Any' => '6.64',
7561 'ExtUtils::MM_BeOS' => '6.64',
7562 'ExtUtils::MM_Cygwin' => '6.64',
7563 'ExtUtils::MM_DOS' => '6.64',
7564 'ExtUtils::MM_Darwin' => '6.64',
7565 'ExtUtils::MM_MacOS' => '6.64',
7566 'ExtUtils::MM_NW5' => '6.64',
7567 'ExtUtils::MM_OS2' => '6.64',
7568 'ExtUtils::MM_QNX' => '6.64',
7569 'ExtUtils::MM_UWIN' => '6.64',
7570 'ExtUtils::MM_Unix' => '6.64',
7571 'ExtUtils::MM_VMS' => '6.64',
7572 'ExtUtils::MM_VOS' => '6.64',
7573 'ExtUtils::MM_Win32' => '6.64',
7574 'ExtUtils::MM_Win95' => '6.64',
7575 'ExtUtils::MY' => '6.64',
7576 'ExtUtils::MakeMaker' => '6.64',
7577 'ExtUtils::MakeMaker::Config'=> '6.64',
7578 'ExtUtils::Mkbootstrap' => '6.64',
7579 'ExtUtils::Mksymlists' => '6.64',
7580 'ExtUtils::testlib' => '6.64',
7581 'File::DosGlob' => '1.09',
7582 'File::Glob' => '1.19',
7583 'GDBM_File' => '1.15',
7584 'IO::Compress::Adapter::Bzip2'=> '2.059',
7585 'IO::Compress::Adapter::Deflate'=> '2.059',
7586 'IO::Compress::Adapter::Identity'=> '2.059',
7587 'IO::Compress::Base' => '2.059',
7588 'IO::Compress::Base::Common'=> '2.059',
7589 'IO::Compress::Bzip2' => '2.059',
7590 'IO::Compress::Deflate' => '2.059',
7591 'IO::Compress::Gzip' => '2.059',
7592 'IO::Compress::Gzip::Constants'=> '2.059',
7593 'IO::Compress::RawDeflate'=> '2.059',
7594 'IO::Compress::Zip' => '2.059',
7595 'IO::Compress::Zip::Constants'=> '2.059',
7596 'IO::Compress::Zlib::Constants'=> '2.059',
7597 'IO::Compress::Zlib::Extra'=> '2.059',
7598 'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7599 'IO::Uncompress::Adapter::Identity'=> '2.059',
7600 'IO::Uncompress::Adapter::Inflate'=> '2.059',
7601 'IO::Uncompress::AnyInflate'=> '2.059',
7602 'IO::Uncompress::AnyUncompress'=> '2.059',
7603 'IO::Uncompress::Base' => '2.059',
7604 'IO::Uncompress::Bunzip2'=> '2.059',
7605 'IO::Uncompress::Gunzip'=> '2.059',
7606 'IO::Uncompress::Inflate'=> '2.059',
7607 'IO::Uncompress::RawInflate'=> '2.059',
7608 'IO::Uncompress::Unzip' => '2.059',
7609 'List::Util' => '1.26',
7610 'List::Util::XS' => '1.26',
7611 'Locale::Codes' => '3.24',
7612 'Locale::Codes::Constants'=> '3.24',
7613 'Locale::Codes::Country'=> '3.24',
7614 'Locale::Codes::Country_Codes'=> '3.24',
7615 'Locale::Codes::Country_Retired'=> '3.24',
7616 'Locale::Codes::Currency'=> '3.24',
7617 'Locale::Codes::Currency_Codes'=> '3.24',
7618 'Locale::Codes::Currency_Retired'=> '3.24',
7619 'Locale::Codes::LangExt'=> '3.24',
7620 'Locale::Codes::LangExt_Codes'=> '3.24',
7621 'Locale::Codes::LangExt_Retired'=> '3.24',
7622 'Locale::Codes::LangFam'=> '3.24',
7623 'Locale::Codes::LangFam_Codes'=> '3.24',
7624 'Locale::Codes::LangFam_Retired'=> '3.24',
7625 'Locale::Codes::LangVar'=> '3.24',
7626 'Locale::Codes::LangVar_Codes'=> '3.24',
7627 'Locale::Codes::LangVar_Retired'=> '3.24',
7628 'Locale::Codes::Language'=> '3.24',
7629 'Locale::Codes::Language_Codes'=> '3.24',
7630 'Locale::Codes::Language_Retired'=> '3.24',
7631 'Locale::Codes::Script' => '3.24',
7632 'Locale::Codes::Script_Codes'=> '3.24',
7633 'Locale::Codes::Script_Retired'=> '3.24',
7634 'Locale::Country' => '3.24',
7635 'Locale::Currency' => '3.24',
7636 'Locale::Language' => '3.24',
7637 'Locale::Maketext' => '1.23',
7638 'Locale::Script' => '3.24',
7639 'Module::CoreList' => '2.79',
dd4b1c75 7640 'Module::CoreList::TieHashDelta'=> '2.79',
fe03d33b
DR
7641 'POSIX' => '1.32',
7642 'Scalar::Util' => '1.26',
7643 'Socket' => '2.006_001',
7644 'Storable' => '2.40',
7645 'Term::ReadLine' => '1.11',
7646 'Unicode::Collate' => '0.96',
7647 'Unicode::Collate::CJK::Stroke'=> '0.94',
7648 'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7649 'Unicode::Collate::Locale'=> '0.96',
7650 'XS::APItest' => '0.48',
7651 'XS::Typemap' => '0.09',
7652 '_charnames' => '1.34',
7653 'charnames' => '1.34',
7654 'feature' => '1.32',
7655 'mro' => '1.10',
7656 'sigtrap' => '1.07',
7657 'sort' => '2.02',
7658 },
7659 removed => {
7660 }
7661 },
dd4b1c75
AC
7662 5.017008 => {
7663 delta_from => 5.017007,
7664 changed => {
7665 'Archive::Extract' => '0.62',
7666 'B' => '1.42',
7667 'B::Concise' => '0.95',
7668 'Compress::Raw::Bzip2' => '2.060',
7669 'Compress::Raw::Zlib' => '2.060',
7670 'Compress::Zlib' => '2.060',
7671 'Cwd' => '3.40',
7672 'Data::Dumper' => '2.141',
7673 'Digest::SHA' => '5.81',
7674 'ExtUtils::Install' => '1.59',
7675 'File::Fetch' => '0.38',
7676 'File::Path' => '2.09',
7677 'File::Spec' => '3.40',
7678 'File::Spec::Cygwin' => '3.40',
7679 'File::Spec::Epoc' => '3.40',
7680 'File::Spec::Functions' => '3.40',
7681 'File::Spec::Mac' => '3.40',
7682 'File::Spec::OS2' => '3.40',
7683 'File::Spec::Unix' => '3.40',
7684 'File::Spec::VMS' => '3.40',
7685 'File::Spec::Win32' => '3.40',
7686 'HTTP::Tiny' => '0.025',
7687 'Hash::Util' => '0.14',
7688 'I18N::LangTags' => '0.39',
7689 'I18N::LangTags::List' => '0.39',
7690 'I18N::Langinfo' => '0.09',
7691 'IO' => '1.26',
7692 'IO::Compress::Adapter::Bzip2'=> '2.060',
7693 'IO::Compress::Adapter::Deflate'=> '2.060',
7694 'IO::Compress::Adapter::Identity'=> '2.060',
7695 'IO::Compress::Base' => '2.060',
7696 'IO::Compress::Base::Common'=> '2.060',
7697 'IO::Compress::Bzip2' => '2.060',
7698 'IO::Compress::Deflate' => '2.060',
7699 'IO::Compress::Gzip' => '2.060',
7700 'IO::Compress::Gzip::Constants'=> '2.060',
7701 'IO::Compress::RawDeflate'=> '2.060',
7702 'IO::Compress::Zip' => '2.060',
7703 'IO::Compress::Zip::Constants'=> '2.060',
7704 'IO::Compress::Zlib::Constants'=> '2.060',
7705 'IO::Compress::Zlib::Extra'=> '2.060',
7706 'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7707 'IO::Uncompress::Adapter::Identity'=> '2.060',
7708 'IO::Uncompress::Adapter::Inflate'=> '2.060',
7709 'IO::Uncompress::AnyInflate'=> '2.060',
7710 'IO::Uncompress::AnyUncompress'=> '2.060',
7711 'IO::Uncompress::Base' => '2.060',
7712 'IO::Uncompress::Bunzip2'=> '2.060',
7713 'IO::Uncompress::Gunzip'=> '2.060',
7714 'IO::Uncompress::Inflate'=> '2.060',
7715 'IO::Uncompress::RawInflate'=> '2.060',
7716 'IO::Uncompress::Unzip' => '2.060',
7717 'List::Util' => '1.27',
7718 'List::Util::XS' => '1.27',
7719 'Module::CoreList' => '2.80',
7720 'Module::CoreList::TieHashDelta'=> '2.80',
7721 'Pod::Html' => '1.17',
7722 'Pod::LaTeX' => '0.61',
7723 'Pod::Man' => '2.27',
7724 'Pod::Text' => '3.17',
7725 'Pod::Text::Color' => '2.07',
7726 'Pod::Text::Overstrike' => '2.05',
7727 'Pod::Text::Termcap' => '2.07',
7728 'Safe' => '2.34',
7729 'Scalar::Util' => '1.27',
7730 'Socket' => '2.009',
7731 'Term::ANSIColor' => '4.02',
7732 'Test' => '1.26',
7733 'Unicode::Collate' => '0.97',
7734 'XS::APItest' => '0.51',
7735 'XS::Typemap' => '0.10',
7736 '_charnames' => '1.35',
7737 'charnames' => '1.35',
7738 'constant' => '1.25',
7739 'diagnostics' => '1.31',
7740 'threads::shared' => '1.43',
7741 'warnings' => '1.16',
7742 },
7743 removed => {
7744 }
7745 },
52f6865c
CBW
7746 5.017009 => {
7747 delta_from => 5.017008,
7748 changed => {
7749 'App::Cpan' => '1.60_02',
7750 'App::Prove' => '3.26',
7751 'App::Prove::State' => '3.26',
7752 'App::Prove::State::Result'=> '3.26',
7753 'App::Prove::State::Result::Test'=> '3.26',
7754 'Archive::Extract' => '0.68',
7755 'Attribute::Handlers' => '0.94',
7756 'B::Lint' => '1.17',
7757 'B::Lint::Debug' => '1.17',
7758 'Benchmark' => '1.14',
7759 'CPAN' => '2.00',
7760 'CPAN::Distribution' => '2.00',
7761 'CPAN::FirstTime' => '5.5304',
7762 'CPAN::Nox' => '5.5001',
7763 'CPANPLUS' => '0.9135',
7764 'CPANPLUS::Backend' => '0.9135',
7765 'CPANPLUS::Backend::RV' => '0.9135',
7766 'CPANPLUS::Config' => '0.9135',
7767 'CPANPLUS::Config::HomeEnv'=> '0.9135',
7768 'CPANPLUS::Configure' => '0.9135',
7769 'CPANPLUS::Configure::Setup'=> '0.9135',
7770 'CPANPLUS::Dist' => '0.9135',
7771 'CPANPLUS::Dist::Autobundle'=> '0.9135',
7772 'CPANPLUS::Dist::Base' => '0.9135',
7773 'CPANPLUS::Dist::Build' => '0.70',
7774 'CPANPLUS::Dist::Build::Constants'=> '0.70',
7775 'CPANPLUS::Dist::MM' => '0.9135',
7776 'CPANPLUS::Dist::Sample'=> '0.9135',
7777 'CPANPLUS::Error' => '0.9135',
7778 'CPANPLUS::Internals' => '0.9135',
7779 'CPANPLUS::Internals::Constants'=> '0.9135',
7780 'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7781 'CPANPLUS::Internals::Extract'=> '0.9135',
7782 'CPANPLUS::Internals::Fetch'=> '0.9135',
7783 'CPANPLUS::Internals::Report'=> '0.9135',
7784 'CPANPLUS::Internals::Search'=> '0.9135',
7785 'CPANPLUS::Internals::Source'=> '0.9135',
7786 'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7787 'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7788 'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7789 'CPANPLUS::Internals::Utils'=> '0.9135',
7790 'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7791 'CPANPLUS::Module' => '0.9135',
7792 'CPANPLUS::Module::Author'=> '0.9135',
7793 'CPANPLUS::Module::Author::Fake'=> '0.9135',
7794 'CPANPLUS::Module::Checksums'=> '0.9135',
7795 'CPANPLUS::Module::Fake'=> '0.9135',
7796 'CPANPLUS::Module::Signature'=> '0.9135',
7797 'CPANPLUS::Selfupdate' => '0.9135',
7798 'CPANPLUS::Shell' => '0.9135',
7799 'CPANPLUS::Shell::Classic'=> '0.9135',
7800 'CPANPLUS::Shell::Default'=> '0.9135',
7801 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7802 'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7803 'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
cc423833 7804 'Config' => '5.017009',
52f6865c
CBW
7805 'Config::Perl::V' => '0.17',
7806 'DBM_Filter' => '0.05',
7807 'Data::Dumper' => '2.142',
7808 'Digest::SHA' => '5.82',
7809 'Encode' => '2.48',
7810 'ExtUtils::Installed' => '1.999003',
7811 'ExtUtils::Manifest' => '1.63',
7812 'ExtUtils::ParseXS::Utilities'=> '3.19',
7813 'ExtUtils::Typemaps' => '3.19',
7814 'File::CheckTree' => '4.42',
7815 'File::DosGlob' => '1.10',
7816 'File::Temp' => '0.22_90',
7817 'Filter::Simple' => '0.89',
7818 'IO' => '1.27',
7819 'Log::Message' => '0.06',
7820 'Log::Message::Config' => '0.06',
7821 'Log::Message::Handlers'=> '0.06',
7822 'Log::Message::Item' => '0.06',
7823 'Log::Message::Simple' => '0.10',
7824 'Math::BigInt' => '1.999',
7825 'Module::CoreList' => '2.82',
7826 'Module::CoreList::TieHashDelta'=> '2.82',
7827 'Module::Load' => '0.24',
7828 'Module::Pluggable' => '4.6',
7829 'Module::Pluggable::Object'=> '4.6',
78da2da6
CBW
7830 'OS2::DLL' => '1.05',
7831 'OS2::ExtAttr' => '0.03',
7832 'OS2::Process' => '1.08',
52f6865c
CBW
7833 'Object::Accessor' => '0.46',
7834 'PerlIO::scalar' => '0.16',
7835 'Pod::Checker' => '1.60',
7836 'Pod::Find' => '1.60',
7837 'Pod::Html' => '1.18',
7838 'Pod::InputObjects' => '1.60',
7839 'Pod::ParseUtils' => '1.60',
7840 'Pod::Parser' => '1.60',
7841 'Pod::Perldoc' => '3.19',
7842 'Pod::Perldoc::BaseTo' => '3.19',
7843 'Pod::Perldoc::GetOptsOO'=> '3.19',
7844 'Pod::Perldoc::ToANSI' => '3.19',
7845 'Pod::Perldoc::ToChecker'=> '3.19',
7846 'Pod::Perldoc::ToMan' => '3.19',
7847 'Pod::Perldoc::ToNroff' => '3.19',
7848 'Pod::Perldoc::ToPod' => '3.19',
7849 'Pod::Perldoc::ToRtf' => '3.19',
7850 'Pod::Perldoc::ToTerm' => '3.19',
7851 'Pod::Perldoc::ToText' => '3.19',
7852 'Pod::Perldoc::ToTk' => '3.19',
7853 'Pod::Perldoc::ToXml' => '3.19',
7854 'Pod::PlainText' => '2.06',
7855 'Pod::Select' => '1.60',
7856 'Pod::Usage' => '1.61',
7857 'SelfLoader' => '1.21',
7858 'TAP::Base' => '3.26',
7859 'TAP::Formatter::Base' => '3.26',
7860 'TAP::Formatter::Color' => '3.26',
7861 'TAP::Formatter::Console'=> '3.26',
7862 'TAP::Formatter::Console::ParallelSession'=> '3.26',
7863 'TAP::Formatter::Console::Session'=> '3.26',
7864 'TAP::Formatter::File' => '3.26',
7865 'TAP::Formatter::File::Session'=> '3.26',
7866 'TAP::Formatter::Session'=> '3.26',
7867 'TAP::Harness' => '3.26',
7868 'TAP::Object' => '3.26',
7869 'TAP::Parser' => '3.26',
7870 'TAP::Parser::Aggregator'=> '3.26',
7871 'TAP::Parser::Grammar' => '3.26',
7872 'TAP::Parser::Iterator' => '3.26',
7873 'TAP::Parser::Iterator::Array'=> '3.26',
7874 'TAP::Parser::Iterator::Process'=> '3.26',
7875 'TAP::Parser::Iterator::Stream'=> '3.26',
7876 'TAP::Parser::IteratorFactory'=> '3.26',
7877 'TAP::Parser::Multiplexer'=> '3.26',
7878 'TAP::Parser::Result' => '3.26',
7879 'TAP::Parser::Result::Bailout'=> '3.26',
7880 'TAP::Parser::Result::Comment'=> '3.26',
7881 'TAP::Parser::Result::Plan'=> '3.26',
7882 'TAP::Parser::Result::Pragma'=> '3.26',
7883 'TAP::Parser::Result::Test'=> '3.26',
7884 'TAP::Parser::Result::Unknown'=> '3.26',
7885 'TAP::Parser::Result::Version'=> '3.26',
7886 'TAP::Parser::Result::YAML'=> '3.26',
7887 'TAP::Parser::ResultFactory'=> '3.26',
7888 'TAP::Parser::Scheduler'=> '3.26',
7889 'TAP::Parser::Scheduler::Job'=> '3.26',
7890 'TAP::Parser::Scheduler::Spinner'=> '3.26',
7891 'TAP::Parser::Source' => '3.26',
7892 'TAP::Parser::SourceHandler'=> '3.26',
7893 'TAP::Parser::SourceHandler::Executable'=> '3.26',
7894 'TAP::Parser::SourceHandler::File'=> '3.26',
7895 'TAP::Parser::SourceHandler::Handle'=> '3.26',
7896 'TAP::Parser::SourceHandler::Perl'=> '3.26',
7897 'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
7898 'TAP::Parser::Utils' => '3.26',
7899 'TAP::Parser::YAMLish::Reader'=> '3.26',
7900 'TAP::Parser::YAMLish::Writer'=> '3.26',
7901 'Term::UI' => '0.34',
7902 'Test::Harness' => '3.26',
7903 'Text::Soundex' => '3.04',
7904 'Thread::Queue' => '3.02',
7905 'Unicode::UCD' => '0.50',
7906 'Win32' => '0.46',
7907 'Win32API::File' => '0.1201',
7908 '_charnames' => '1.36',
7909 'arybase' => '0.06',
7910 'bigint' => '0.32',
7911 'bignum' => '0.32',
7912 'charnames' => '1.36',
7913 'filetest' => '1.03',
7914 'locale' => '1.02',
7915 'overload' => '1.21',
7916 'warnings' => '1.17',
7917 },
7918 removed => {
7919 }
7920 },
fd3b4111
MM
7921 5.017010 => {
7922 delta_from => 5.017009,
7923 changed => {
7924 'Benchmark' => '1.15',
cc423833 7925 'Config' => '5.017009',
fd3b4111
MM
7926 'Data::Dumper' => '2.145',
7927 'Digest::SHA' => '5.84',
7928 'Encode' => '2.49',
7929 'ExtUtils::Command::MM' => '6.65_01',
7930 'ExtUtils::Liblist' => '6.65_01',
7931 'ExtUtils::Liblist::Kid'=> '6.65_01',
7932 'ExtUtils::MM' => '6.65_01',
7933 'ExtUtils::MM_AIX' => '6.65_01',
7934 'ExtUtils::MM_Any' => '6.65_01',
7935 'ExtUtils::MM_BeOS' => '6.65_01',
7936 'ExtUtils::MM_Cygwin' => '6.65_01',
7937 'ExtUtils::MM_DOS' => '6.65_01',
7938 'ExtUtils::MM_Darwin' => '6.65_01',
7939 'ExtUtils::MM_MacOS' => '6.65_01',
7940 'ExtUtils::MM_NW5' => '6.65_01',
7941 'ExtUtils::MM_OS2' => '6.65_01',
7942 'ExtUtils::MM_QNX' => '6.65_01',
7943 'ExtUtils::MM_UWIN' => '6.65_01',
7944 'ExtUtils::MM_Unix' => '6.65_01',
7945 'ExtUtils::MM_VMS' => '6.65_01',
7946 'ExtUtils::MM_VOS' => '6.65_01',
7947 'ExtUtils::MM_Win32' => '6.65_01',
7948 'ExtUtils::MM_Win95' => '6.65_01',
7949 'ExtUtils::MY' => '6.65_01',
7950 'ExtUtils::MakeMaker' => '6.65_01',
7951 'ExtUtils::MakeMaker::Config'=> '6.65_01',
7952 'ExtUtils::Mkbootstrap' => '6.65_01',
7953 'ExtUtils::Mksymlists' => '6.65_01',
7954 'ExtUtils::testlib' => '6.65_01',
7955 'File::Copy' => '2.26',
7956 'File::Temp' => '0.23',
7957 'Getopt::Long' => '2.39',
7958 'Hash::Util' => '0.15',
7959 'I18N::Langinfo' => '0.10',
7960 'IPC::Cmd' => '0.80',
7961 'JSON::PP' => '2.27202',
7962 'Locale::Codes' => '3.25',
7963 'Locale::Codes::Constants'=> '3.25',
7964 'Locale::Codes::Country'=> '3.25',
7965 'Locale::Codes::Country_Codes'=> '3.25',
7966 'Locale::Codes::Country_Retired'=> '3.25',
7967 'Locale::Codes::Currency'=> '3.25',
7968 'Locale::Codes::Currency_Codes'=> '3.25',
7969 'Locale::Codes::Currency_Retired'=> '3.25',
7970 'Locale::Codes::LangExt'=> '3.25',
7971 'Locale::Codes::LangExt_Codes'=> '3.25',
7972 'Locale::Codes::LangExt_Retired'=> '3.25',
7973 'Locale::Codes::LangFam'=> '3.25',
7974 'Locale::Codes::LangFam_Codes'=> '3.25',
7975 'Locale::Codes::LangFam_Retired'=> '3.25',
7976 'Locale::Codes::LangVar'=> '3.25',
7977 'Locale::Codes::LangVar_Codes'=> '3.25',
7978 'Locale::Codes::LangVar_Retired'=> '3.25',
7979 'Locale::Codes::Language'=> '3.25',
7980 'Locale::Codes::Language_Codes'=> '3.25',
7981 'Locale::Codes::Language_Retired'=> '3.25',
7982 'Locale::Codes::Script' => '3.25',
7983 'Locale::Codes::Script_Codes'=> '3.25',
7984 'Locale::Codes::Script_Retired'=> '3.25',
7985 'Locale::Country' => '3.25',
7986 'Locale::Currency' => '3.25',
7987 'Locale::Language' => '3.25',
7988 'Locale::Script' => '3.25',
7989 'Math::BigFloat' => '1.998',
7990 'Math::BigFloat::Trace' => '0.32',
7991 'Math::BigInt' => '1.9991',
7992 'Math::BigInt::CalcEmu' => '1.998',
7993 'Math::BigInt::Trace' => '0.32',
7994 'Math::BigRat' => '0.2604',
7995 'Module::CoreList' => '2.84',
7996 'Module::CoreList::TieHashDelta'=> '2.84',
7997 'Module::Pluggable' => '4.7',
7998 'Net::Ping' => '2.41',
7999 'Perl::OSType' => '1.003',
8000 'Pod::Simple' => '3.26',
8001 'Pod::Simple::BlackBox' => '3.26',
8002 'Pod::Simple::Checker' => '3.26',
8003 'Pod::Simple::Debug' => '3.26',
8004 'Pod::Simple::DumpAsText'=> '3.26',
8005 'Pod::Simple::DumpAsXML'=> '3.26',
8006 'Pod::Simple::HTML' => '3.26',
8007 'Pod::Simple::HTMLBatch'=> '3.26',
8008 'Pod::Simple::LinkSection'=> '3.26',
8009 'Pod::Simple::Methody' => '3.26',
8010 'Pod::Simple::Progress' => '3.26',
8011 'Pod::Simple::PullParser'=> '3.26',
8012 'Pod::Simple::PullParserEndToken'=> '3.26',
8013 'Pod::Simple::PullParserStartToken'=> '3.26',
8014 'Pod::Simple::PullParserTextToken'=> '3.26',
8015 'Pod::Simple::PullParserToken'=> '3.26',
8016 'Pod::Simple::RTF' => '3.26',
8017 'Pod::Simple::Search' => '3.26',
8018 'Pod::Simple::SimpleTree'=> '3.26',
8019 'Pod::Simple::Text' => '3.26',
8020 'Pod::Simple::TextContent'=> '3.26',
8021 'Pod::Simple::TiedOutFH'=> '3.26',
8022 'Pod::Simple::Transcode'=> '3.26',
8023 'Pod::Simple::TranscodeDumb'=> '3.26',
8024 'Pod::Simple::TranscodeSmart'=> '3.26',
8025 'Pod::Simple::XHTML' => '3.26',
8026 'Pod::Simple::XMLOutStream'=> '3.26',
8027 'Safe' => '2.35',
8028 'Term::ReadLine' => '1.12',
8029 'Text::ParseWords' => '3.28',
8030 'Tie::File' => '0.99',
8031 'Unicode::UCD' => '0.51',
8032 'Win32' => '0.47',
8033 'bigint' => '0.33',
8034 'bignum' => '0.33',
8035 'bigrat' => '0.33',
8036 'constant' => '1.27',
8037 'perlfaq' => '5.0150042',
8038 'version' => '0.9902',
8039 },
8040 removed => {
8041 }
8042 },
e55f48ec
RS
8043 5.017011 => {
8044 delta_from => 5.017010,
8045 changed => {
8046 'App::Cpan' => '1.61',
8047 'B::Deparse' => '1.20',
cc423833 8048 'Config' => '5.017009',
e55f48ec
RS
8049 'Exporter' => '5.68',
8050 'Exporter::Heavy' => '5.68',
8051 'ExtUtils::CBuilder' => '0.280210',
8052 'ExtUtils::Command::MM' => '6.66',
8053 'ExtUtils::Liblist' => '6.66',
8054 'ExtUtils::Liblist::Kid'=> '6.66',
8055 'ExtUtils::MM' => '6.66',
8056 'ExtUtils::MM_AIX' => '6.66',
8057 'ExtUtils::MM_Any' => '6.66',
8058 'ExtUtils::MM_BeOS' => '6.66',
8059 'ExtUtils::MM_Cygwin' => '6.66',
8060 'ExtUtils::MM_DOS' => '6.66',
8061 'ExtUtils::MM_Darwin' => '6.66',
8062 'ExtUtils::MM_MacOS' => '6.66',
8063 'ExtUtils::MM_NW5' => '6.66',
8064 'ExtUtils::MM_OS2' => '6.66',
8065 'ExtUtils::MM_QNX' => '6.66',
8066 'ExtUtils::MM_UWIN' => '6.66',
8067 'ExtUtils::MM_Unix' => '6.66',
8068 'ExtUtils::MM_VMS' => '6.66',
8069 'ExtUtils::MM_VOS' => '6.66',
8070 'ExtUtils::MM_Win32' => '6.66',
8071 'ExtUtils::MM_Win95' => '6.66',
8072 'ExtUtils::MY' => '6.66',
8073 'ExtUtils::MakeMaker' => '6.66',
8074 'ExtUtils::MakeMaker::Config'=> '6.66',
8075 'ExtUtils::Mkbootstrap' => '6.66',
8076 'ExtUtils::Mksymlists' => '6.66',
8077 'ExtUtils::testlib' => '6.66',
8078 'File::Glob' => '1.20',
8079 'IO' => '1.28',
8080 'Module::CoreList' => '2.87',
8081 'Module::CoreList::TieHashDelta'=> '2.87',
8082 'Storable' => '2.41',
8083 'bigint' => '0.34',
8084 'mro' => '1.11',
8085 'overload' => '1.22',
8086 'warnings' => '1.18',
8087 },
8088 removed => {
8089 }
8090 },
d4d6c558
RS
8091 5.018000 => {
8092 delta_from => 5.017011,
8093 changed => {
8094 'Carp' => '1.29',
8095 'Carp::Heavy' => '1.29',
cc423833 8096 'Config' => '5.018000',
d4d6c558
RS
8097 'Hash::Util' => '0.16',
8098 'IO::Handle' => '1.34',
8099 'IO::Socket' => '1.36',
058ce27e
RS
8100 'Module::CoreList' => '2.89',
8101 'Module::CoreList::TieHashDelta'=> '2.89',
3b95efe6
RS
8102 'Pod::Simple' => '3.28',
8103 'Pod::Simple::BlackBox' => '3.28',
8104 'Pod::Simple::Checker' => '3.28',
8105 'Pod::Simple::Debug' => '3.28',
8106 'Pod::Simple::DumpAsText'=> '3.28',
8107 'Pod::Simple::DumpAsXML'=> '3.28',
8108 'Pod::Simple::HTML' => '3.28',
8109 'Pod::Simple::HTMLBatch'=> '3.28',
8110 'Pod::Simple::LinkSection'=> '3.28',
8111 'Pod::Simple::Methody' => '3.28',
8112 'Pod::Simple::Progress' => '3.28',
8113 'Pod::Simple::PullParser'=> '3.28',
8114 'Pod::Simple::PullParserEndToken'=> '3.28',
8115 'Pod::Simple::PullParserStartToken'=> '3.28',
8116 'Pod::Simple::PullParserTextToken'=> '3.28',
8117 'Pod::Simple::PullParserToken'=> '3.28',
8118 'Pod::Simple::RTF' => '3.28',
8119 'Pod::Simple::Search' => '3.28',
8120 'Pod::Simple::SimpleTree'=> '3.28',
8121 'Pod::Simple::Text' => '3.28',
8122 'Pod::Simple::TextContent'=> '3.28',
8123 'Pod::Simple::TiedOutFH'=> '3.28',
8124 'Pod::Simple::Transcode'=> '3.28',
8125 'Pod::Simple::TranscodeDumb'=> '3.28',
8126 'Pod::Simple::TranscodeSmart'=> '3.28',
8127 'Pod::Simple::XHTML' => '3.28',
8128 'Pod::Simple::XMLOutStream'=> '3.28',
d4d6c558
RS
8129 },
8130 removed => {
8131 }
8132 },
ba4dd7ef
RS
8133 5.018001 => {
8134 delta_from => 5.018000,
8135 changed => {
8136 'B' => '1.42_01',
8137 'Config' => '5.018001',
8138 'Digest::SHA' => '5.84_01',
8139 'Module::CoreList' => '2.96',
8140 'Module::CoreList::TieHashDelta'=> '2.96',
8141 'Module::CoreList::Utils'=> '2.96',
8142 },
8143 removed => {
8144 'VMS::Filespec' => 1,
8145 }
8146 },
6c2a7b42
CBW
8147 5.018002 => {
8148 delta_from => 5.018001,
8149 changed => {
8150 'B' => '1.42_02',
8151 'B::Concise' => '0.95_01',
8152 'Config' => '5.018002',
8153 'File::Glob' => '1.20_01',
8154 'Module::CoreList' => '3.03',
8155 'Module::CoreList::TieHashDelta'=> '3.03',
8156 'Module::CoreList::Utils'=> '3.03',
8157 },
8158 },
b616d4df
RS
8159 5.018003 => {
8160 delta_from => 5.018002,
8161 changed => {
b564105b
CBW
8162 'Config' => '5.018003',
8163 'Digest::SHA' => '5.84_02',
b616d4df
RS
8164 'Module::CoreList' => '3.12',
8165 'Module::CoreList::TieHashDelta'=> '3.12',
8166 'Module::CoreList::Utils'=> '3.12',
8167 },
8168 },
8169 5.018004 => {
8170 delta_from => 5.018003,
8171 changed => {
b564105b 8172 'Config' => '5.018004',
b616d4df
RS
8173 'Module::CoreList' => '3.13',
8174 'Module::CoreList::TieHashDelta'=> '3.13',
8175 'Module::CoreList::Utils'=> '3.13',
8176 },
8177 },
38a400f2
RS
8178 5.019000 => {
8179 delta_from => 5.018000,
8180 changed => {
cc423833 8181 'Config' => '5.019000',
e68d5354 8182 'Getopt::Std' => '1.08',
38a400f2
RS
8183 'Module::CoreList' => '2.91',
8184 'Module::CoreList::TieHashDelta'=> '2.91',
8185 'Storable' => '2.42',
8186 'feature' => '1.33',
e68d5354 8187 'utf8' => '1.11',
38a400f2
RS
8188 },
8189 removed => {
8190 'Archive::Extract' => 1,
8191 'B::Lint' => 1,
8192 'B::Lint::Debug' => 1,
8193 'CPANPLUS' => 1,
8194 'CPANPLUS::Backend' => 1,
8195 'CPANPLUS::Backend::RV' => 1,
8196 'CPANPLUS::Config' => 1,
8197 'CPANPLUS::Config::HomeEnv'=> 1,
8198 'CPANPLUS::Configure' => 1,
8199 'CPANPLUS::Configure::Setup'=> 1,
8200 'CPANPLUS::Dist' => 1,
8201 'CPANPLUS::Dist::Autobundle'=> 1,
8202 'CPANPLUS::Dist::Base' => 1,
8203 'CPANPLUS::Dist::Build' => 1,
8204 'CPANPLUS::Dist::Build::Constants'=> 1,
8205 'CPANPLUS::Dist::MM' => 1,
8206 'CPANPLUS::Dist::Sample'=> 1,
8207 'CPANPLUS::Error' => 1,
8208 'CPANPLUS::Internals' => 1,
8209 'CPANPLUS::Internals::Constants'=> 1,
8210 'CPANPLUS::Internals::Constants::Report'=> 1,
8211 'CPANPLUS::Internals::Extract'=> 1,
8212 'CPANPLUS::Internals::Fetch'=> 1,
8213 'CPANPLUS::Internals::Report'=> 1,
8214 'CPANPLUS::Internals::Search'=> 1,
8215 'CPANPLUS::Internals::Source'=> 1,
8216 'CPANPLUS::Internals::Source::Memory'=> 1,
8217 'CPANPLUS::Internals::Source::SQLite'=> 1,
8218 'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8219 'CPANPLUS::Internals::Utils'=> 1,
8220 'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8221 'CPANPLUS::Module' => 1,
8222 'CPANPLUS::Module::Author'=> 1,
8223 'CPANPLUS::Module::Author::Fake'=> 1,
8224 'CPANPLUS::Module::Checksums'=> 1,
8225 'CPANPLUS::Module::Fake'=> 1,
8226 'CPANPLUS::Module::Signature'=> 1,
8227 'CPANPLUS::Selfupdate' => 1,
8228 'CPANPLUS::Shell' => 1,
8229 'CPANPLUS::Shell::Classic'=> 1,
8230 'CPANPLUS::Shell::Default'=> 1,
8231 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8232 'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8233 'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8234 'Devel::InnerPackage' => 1,
8235 'File::CheckTree' => 1,
8236 'Log::Message' => 1,
8237 'Log::Message::Config' => 1,
8238 'Log::Message::Handlers'=> 1,
8239 'Log::Message::Item' => 1,
8240 'Log::Message::Simple' => 1,
8241 'Module::Pluggable' => 1,
8242 'Module::Pluggable::Object'=> 1,
8243 'Object::Accessor' => 1,
8244 'Pod::LaTeX' => 1,
8245 'Term::UI' => 1,
8246 'Term::UI::History' => 1,
8247 'Text::Soundex' => 1,
8248 }
8249 },
2f4a2205
DG
8250 5.019001 => {
8251 delta_from => 5.019000,
8252 changed => {
8253 'App::Prove' => '3.28',
8254 'App::Prove::State' => '3.28',
8255 'App::Prove::State::Result'=> '3.28',
8256 'App::Prove::State::Result::Test'=> '3.28',
8257 'Archive::Tar' => '1.92',
8258 'Archive::Tar::Constant'=> '1.92',
8259 'Archive::Tar::File' => '1.92',
8260 'Attribute::Handlers' => '0.95',
8261 'B' => '1.43',
8262 'B::Concise' => '0.96',
8263 'B::Deparse' => '1.21',
8264 'B::Showlex' => '1.04',
8265 'Benchmark' => '1.16',
8266 'CPAN::Meta' => '2.131560',
8267 'CPAN::Meta::Converter' => '2.131560',
8268 'CPAN::Meta::Feature' => '2.131560',
8269 'CPAN::Meta::History' => '2.131560',
8270 'CPAN::Meta::Prereqs' => '2.131560',
8271 'CPAN::Meta::Spec' => '2.131560',
8272 'CPAN::Meta::Validator' => '2.131560',
8273 'Carp' => '1.30',
8274 'Carp::Heavy' => '1.30',
8275 'Compress::Raw::Bzip2' => '2.061',
8276 'Compress::Raw::Zlib' => '2.061',
8277 'Compress::Zlib' => '2.061',
cc423833 8278 'Config' => '5.019001',
2f4a2205
DG
8279 'Config::Perl::V' => '0.18',
8280 'Cwd' => '3.41',
8281 'DB' => '1.06',
8282 'DB_File' => '1.828',
8283 'Data::Dumper' => '2.146',
8284 'Encode' => '2.51',
8285 'Encode::CN::HZ' => '2.06',
8286 'Encode::GSM0338' => '2.03',
8287 'Encode::Unicode::UTF7' => '2.07',
8288 'ExtUtils::CBuilder::Base'=> '0.280210',
8289 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8290 'ExtUtils::Command::MM' => '6.68',
8291 'ExtUtils::Install' => '1.60',
8292 'ExtUtils::Liblist' => '6.68',
8293 'ExtUtils::Liblist::Kid'=> '6.68',
8294 'ExtUtils::MM' => '6.68',
8295 'ExtUtils::MM_AIX' => '6.68',
8296 'ExtUtils::MM_Any' => '6.68',
8297 'ExtUtils::MM_BeOS' => '6.68',
8298 'ExtUtils::MM_Cygwin' => '6.68',
8299 'ExtUtils::MM_DOS' => '6.68',
8300 'ExtUtils::MM_Darwin' => '6.68',
8301 'ExtUtils::MM_MacOS' => '6.68',
8302 'ExtUtils::MM_NW5' => '6.68',
8303 'ExtUtils::MM_OS2' => '6.68',
8304 'ExtUtils::MM_QNX' => '6.68',
8305 'ExtUtils::MM_UWIN' => '6.68',
8306 'ExtUtils::MM_Unix' => '6.68',
8307 'ExtUtils::MM_VMS' => '6.68',
8308 'ExtUtils::MM_VOS' => '6.68',
8309 'ExtUtils::MM_Win32' => '6.68',
8310 'ExtUtils::MM_Win95' => '6.68',
8311 'ExtUtils::MY' => '6.68',
8312 'ExtUtils::MakeMaker' => '6.68',
8313 'ExtUtils::MakeMaker::Config'=> '6.68',
8314 'ExtUtils::Mkbootstrap' => '6.68',
8315 'ExtUtils::Mksymlists' => '6.68',
8316 'ExtUtils::ParseXS' => '3.19',
8317 'ExtUtils::testlib' => '6.68',
8318 'Fatal' => '2.19',
8319 'File::Copy' => '2.27',
8320 'File::DosGlob' => '1.11',
8321 'File::Fetch' => '0.42',
8322 'File::Find' => '1.24',
8323 'File::Spec' => '3.41',
8324 'File::Spec::Cygwin' => '3.41',
8325 'File::Spec::Epoc' => '3.41',
8326 'File::Spec::Mac' => '3.41',
8327 'File::Spec::OS2' => '3.41',
8328 'File::Spec::Unix' => '3.41',
8329 'File::Spec::VMS' => '3.41',
8330 'File::Spec::Win32' => '3.41',
8331 'File::Temp' => '0.2301',
8332 'Filter::Simple' => '0.90',
8333 'Filter::Util::Call' => '1.49',
8334 'Getopt::Long' => '2.4',
8335 'HTTP::Tiny' => '0.031',
8336 'Hash::Util::FieldHash' => '1.11',
8337 'IO::Compress::Adapter::Bzip2'=> '2.061',
8338 'IO::Compress::Adapter::Deflate'=> '2.061',
8339 'IO::Compress::Adapter::Identity'=> '2.061',
8340 'IO::Compress::Base' => '2.061',
8341 'IO::Compress::Base::Common'=> '2.061',
8342 'IO::Compress::Bzip2' => '2.061',
8343 'IO::Compress::Deflate' => '2.061',
8344 'IO::Compress::Gzip' => '2.061',
8345 'IO::Compress::Gzip::Constants'=> '2.061',
8346 'IO::Compress::RawDeflate'=> '2.061',
8347 'IO::Compress::Zip' => '2.061',
8348 'IO::Compress::Zip::Constants'=> '2.061',
8349 'IO::Compress::Zlib::Constants'=> '2.061',
8350 'IO::Compress::Zlib::Extra'=> '2.061',
8351 'IO::Handle' => '1.35',
8352 'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8353 'IO::Uncompress::Adapter::Identity'=> '2.061',
8354 'IO::Uncompress::Adapter::Inflate'=> '2.061',
8355 'IO::Uncompress::AnyInflate'=> '2.061',
8356 'IO::Uncompress::AnyUncompress'=> '2.061',
8357 'IO::Uncompress::Base' => '2.061',
8358 'IO::Uncompress::Bunzip2'=> '2.061',
8359 'IO::Uncompress::Gunzip'=> '2.061',
8360 'IO::Uncompress::Inflate'=> '2.061',
8361 'IO::Uncompress::RawInflate'=> '2.061',
8362 'IO::Uncompress::Unzip' => '2.061',
8363 'IPC::Open3' => '1.14',
8364 'Locale::Codes' => '3.26',
8365 'Locale::Codes::Constants'=> '3.26',
8366 'Locale::Codes::Country'=> '3.26',
8367 'Locale::Codes::Country_Codes'=> '3.26',
8368 'Locale::Codes::Country_Retired'=> '3.26',
8369 'Locale::Codes::Currency'=> '3.26',
8370 'Locale::Codes::Currency_Codes'=> '3.26',
8371 'Locale::Codes::Currency_Retired'=> '3.26',
8372 'Locale::Codes::LangExt'=> '3.26',
8373 'Locale::Codes::LangExt_Codes'=> '3.26',
8374 'Locale::Codes::LangExt_Retired'=> '3.26',
8375 'Locale::Codes::LangFam'=> '3.26',
8376 'Locale::Codes::LangFam_Codes'=> '3.26',
8377 'Locale::Codes::LangFam_Retired'=> '3.26',
8378 'Locale::Codes::LangVar'=> '3.26',
8379 'Locale::Codes::LangVar_Codes'=> '3.26',
8380 'Locale::Codes::LangVar_Retired'=> '3.26',
8381 'Locale::Codes::Language'=> '3.26',
8382 'Locale::Codes::Language_Codes'=> '3.26',
8383 'Locale::Codes::Language_Retired'=> '3.26',
8384 'Locale::Codes::Script' => '3.26',
8385 'Locale::Codes::Script_Codes'=> '3.26',
8386 'Locale::Codes::Script_Retired'=> '3.26',
8387 'Locale::Country' => '3.26',
8388 'Locale::Currency' => '3.26',
8389 'Locale::Language' => '3.26',
8390 'Locale::Maketext' => '1.24',
8391 'Locale::Script' => '3.26',
8392 'Math::BigFloat' => '1.999',
8393 'Math::BigInt' => '1.9992',
8394 'Math::BigInt::Calc' => '1.998',
8395 'Math::BigInt::CalcEmu' => '1.9991',
8396 'Math::BigRat' => '0.2606',
8397 'Module::Build' => '0.4005',
8398 'Module::Build::Base' => '0.4005',
8399 'Module::Build::Compat' => '0.4005',
8400 'Module::Build::Config' => '0.4005',
8401 'Module::Build::Cookbook'=> '0.4005',
8402 'Module::Build::Dumper' => '0.4005',
8403 'Module::Build::ModuleInfo'=> '0.4005',
8404 'Module::Build::Notes' => '0.4005',
8405 'Module::Build::PPMMaker'=> '0.4005',
8406 'Module::Build::Platform::Amiga'=> '0.4005',
8407 'Module::Build::Platform::Default'=> '0.4005',
8408 'Module::Build::Platform::EBCDIC'=> '0.4005',
8409 'Module::Build::Platform::MPEiX'=> '0.4005',
8410 'Module::Build::Platform::MacOS'=> '0.4005',
8411 'Module::Build::Platform::RiscOS'=> '0.4005',
8412 'Module::Build::Platform::Unix'=> '0.4005',
8413 'Module::Build::Platform::VMS'=> '0.4005',
8414 'Module::Build::Platform::VOS'=> '0.4005',
8415 'Module::Build::Platform::Windows'=> '0.4005',
8416 'Module::Build::Platform::aix'=> '0.4005',
8417 'Module::Build::Platform::cygwin'=> '0.4005',
8418 'Module::Build::Platform::darwin'=> '0.4005',
8419 'Module::Build::Platform::os2'=> '0.4005',
8420 'Module::Build::PodParser'=> '0.4005',
8421 'Module::CoreList' => '2.92',
8422 'Module::CoreList::TieHashDelta'=> '2.92',
8423 'Module::CoreList::Utils'=> '2.92',
8424 'Module::Metadata' => '1.000014',
8425 'Net::Ping' => '2.42',
78da2da6 8426 'OS2::Process' => '1.09',
2f4a2205
DG
8427 'POSIX' => '1.33',
8428 'Pod::Find' => '1.61',
8429 'Pod::Html' => '1.19',
8430 'Pod::InputObjects' => '1.61',
8431 'Pod::ParseUtils' => '1.61',
8432 'Pod::Parser' => '1.61',
8433 'Pod::Perldoc' => '3.20',
8434 'Pod::Perldoc::BaseTo' => '3.20',
8435 'Pod::Perldoc::GetOptsOO'=> '3.20',
8436 'Pod::Perldoc::ToANSI' => '3.20',
8437 'Pod::Perldoc::ToChecker'=> '3.20',
8438 'Pod::Perldoc::ToMan' => '3.20',
8439 'Pod::Perldoc::ToNroff' => '3.20',
8440 'Pod::Perldoc::ToPod' => '3.20',
8441 'Pod::Perldoc::ToRtf' => '3.20',
8442 'Pod::Perldoc::ToTerm' => '3.20',
8443 'Pod::Perldoc::ToText' => '3.20',
8444 'Pod::Perldoc::ToTk' => '3.20',
8445 'Pod::Perldoc::ToXml' => '3.20',
8446 'Pod::Select' => '1.61',
8447 'Pod::Usage' => '1.63',
8448 'Safe' => '2.36',
8449 'Storable' => '2.43',
8450 'Sys::Hostname' => '1.18',
8451 'Sys::Syslog' => '0.33',
8452 'TAP::Base' => '3.28',
8453 'TAP::Formatter::Base' => '3.28',
8454 'TAP::Formatter::Color' => '3.28',
8455 'TAP::Formatter::Console'=> '3.28',
8456 'TAP::Formatter::Console::ParallelSession'=> '3.28',
8457 'TAP::Formatter::Console::Session'=> '3.28',
8458 'TAP::Formatter::File' => '3.28',
8459 'TAP::Formatter::File::Session'=> '3.28',
8460 'TAP::Formatter::Session'=> '3.28',
8461 'TAP::Harness' => '3.28',
8462 'TAP::Object' => '3.28',
8463 'TAP::Parser' => '3.28',
8464 'TAP::Parser::Aggregator'=> '3.28',
8465 'TAP::Parser::Grammar' => '3.28',
8466 'TAP::Parser::Iterator' => '3.28',
8467 'TAP::Parser::Iterator::Array'=> '3.28',
8468 'TAP::Parser::Iterator::Process'=> '3.28',
8469 'TAP::Parser::Iterator::Stream'=> '3.28',
8470 'TAP::Parser::IteratorFactory'=> '3.28',
8471 'TAP::Parser::Multiplexer'=> '3.28',
8472 'TAP::Parser::Result' => '3.28',
8473 'TAP::Parser::Result::Bailout'=> '3.28',
8474 'TAP::Parser::Result::Comment'=> '3.28',
8475 'TAP::Parser::Result::Plan'=> '3.28',
8476 'TAP::Parser::Result::Pragma'=> '3.28',
8477 'TAP::Parser::Result::Test'=> '3.28',
8478 'TAP::Parser::Result::Unknown'=> '3.28',
8479 'TAP::Parser::Result::Version'=> '3.28',
8480 'TAP::Parser::Result::YAML'=> '3.28',
8481 'TAP::Parser::ResultFactory'=> '3.28',
8482 'TAP::Parser::Scheduler'=> '3.28',
8483 'TAP::Parser::Scheduler::Job'=> '3.28',
8484 'TAP::Parser::Scheduler::Spinner'=> '3.28',
8485 'TAP::Parser::Source' => '3.28',
8486 'TAP::Parser::SourceHandler'=> '3.28',
8487 'TAP::Parser::SourceHandler::Executable'=> '3.28',
8488 'TAP::Parser::SourceHandler::File'=> '3.28',
8489 'TAP::Parser::SourceHandler::Handle'=> '3.28',
8490 'TAP::Parser::SourceHandler::Perl'=> '3.28',
8491 'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8492 'TAP::Parser::Utils' => '3.28',
8493 'TAP::Parser::YAMLish::Reader'=> '3.28',
8494 'TAP::Parser::YAMLish::Writer'=> '3.28',
8495 'Term::ReadLine' => '1.13',
8496 'Test::Harness' => '3.28',
8497 'Text::Tabs' => '2013.0523',
8498 'Text::Wrap' => '2013.0523',
8499 'Thread' => '3.04',
8500 'Tie::File' => '1.00',
8501 'Time::Piece' => '1.2002',
8502 'Unicode::Collate' => '0.98',
8503 'Unicode::UCD' => '0.53',
8504 'XS::APItest' => '0.53',
8505 '_charnames' => '1.37',
8506 'autodie' => '2.19',
8507 'autodie::exception' => '2.19',
8508 'autodie::exception::system'=> '2.19',
8509 'autodie::hints' => '2.19',
8510 'autodie::skip' => '2.19',
8511 'bigint' => '0.35',
8512 'charnames' => '1.38',
8513 'encoding' => '2.12',
8514 'inc::latest' => '0.4005',
8515 'mro' => '1.12',
8516 'perlfaq' => '5.0150043',
8517 're' => '0.25',
8518 'threads' => '1.87',
8519 'threads::shared' => '1.44',
8520 'utf8' => '1.12',
8521 },
8522 removed => {
8523 }
8524 },
d04adc20
DG
8525 5.019002 => {
8526 delta_from => 5.019001,
8527 changed => {
1f0ad552
AP
8528 'B' => '1.44',
8529 'B::Concise' => '0.98',
8530 'B::Deparse' => '1.22',
8531 'Benchmark' => '1.17',
8532 'Class::Struct' => '0.65',
cc423833 8533 'Config' => '5.019002',
1f0ad552
AP
8534 'DB' => '1.07',
8535 'DBM_Filter' => '0.06',
8536 'DBM_Filter::compress' => '0.03',
8537 'DBM_Filter::encode' => '0.03',
8538 'DBM_Filter::int32' => '0.03',
8539 'DBM_Filter::null' => '0.03',
8540 'DBM_Filter::utf8' => '0.03',
8541 'DB_File' => '1.829',
8542 'Data::Dumper' => '2.147',
8543 'Devel::Peek' => '1.12',
8544 'Digest::MD5' => '2.53',
8545 'Digest::SHA' => '5.85',
8546 'English' => '1.07',
8547 'Errno' => '1.19',
8548 'ExtUtils::Embed' => '1.31',
8549 'ExtUtils::Miniperl' => '1',
8550 'ExtUtils::ParseXS' => '3.21',
8551 'ExtUtils::ParseXS::Constants'=> '3.21',
8552 'ExtUtils::ParseXS::CountLines'=> '3.21',
8553 'ExtUtils::ParseXS::Eval'=> '3.19',
8554 'ExtUtils::ParseXS::Utilities'=> '3.21',
8555 'ExtUtils::Typemaps' => '3.21',
8556 'ExtUtils::Typemaps::Cmd'=> '3.21',
8557 'ExtUtils::Typemaps::InputMap'=> '3.21',
8558 'ExtUtils::Typemaps::OutputMap'=> '3.21',
8559 'ExtUtils::Typemaps::Type'=> '3.21',
8560 'ExtUtils::XSSymSet' => '1.3',
8561 'Fatal' => '2.20',
8562 'File::Basename' => '2.85',
8563 'File::Spec::VMS' => '3.43',
8564 'File::Spec::Win32' => '3.42',
8565 'Getopt::Long' => '2.41',
8566 'Getopt::Std' => '1.09',
8567 'HTTP::Tiny' => '0.034',
8568 'Hash::Util::FieldHash' => '1.12',
8569 'I18N::Langinfo' => '0.11',
8570 'IO::Socket::INET' => '1.34',
8571 'IO::Socket::UNIX' => '1.25',
8572 'IPC::Cmd' => '0.82',
8573 'MIME::Base64' => '3.14',
8574 'Module::CoreList' => '2.94',
8575 'Module::CoreList::TieHashDelta'=> '2.94',
8576 'Module::CoreList::Utils'=> '2.94',
8577 'POSIX' => '1.34',
8578 'Params::Check' => '0.38',
8579 'Parse::CPAN::Meta' => '1.4405',
8580 'Pod::Functions' => '1.07',
1f0ad552
AP
8581 'Pod::Html' => '1.2',
8582 'Safe' => '2.37',
8583 'Socket' => '2.010',
8584 'Storable' => '2.45',
8585 'Text::ParseWords' => '3.29',
8586 'Tie::Array' => '1.06',
8587 'Tie::Hash' => '1.05',
8588 'Tie::Scalar' => '1.03',
8589 'Time::Piece' => '1.21',
8590 'Time::Seconds' => '1.21',
8591 'XS::APItest' => '0.54',
8592 'autodie' => '2.20',
8593 'autodie::exception' => '2.20',
8594 'autodie::exception::system'=> '2.20',
8595 'autodie::hints' => '2.20',
8596 'autodie::skip' => '2.20',
8597 'base' => '2.19',
8598 'deprecate' => '0.03',
8599 'if' => '0.0603',
8600 'integer' => '1.01',
8601 'strict' => '1.08',
8602 'subs' => '1.02',
8603 'vmsish' => '1.04',
d04adc20
DG
8604 },
8605 removed => {
8606 }
8607 },
a7e68be8
AP
8608 5.019003 => {
8609 delta_from => 5.019002,
8610 changed => {
91c842ce
SH
8611 'B' => '1.45',
8612 'CPAN::Meta' => '2.132140',
8613 'CPAN::Meta::Converter' => '2.132140',
8614 'CPAN::Meta::Feature' => '2.132140',
8615 'CPAN::Meta::History' => '2.132140',
8616 'CPAN::Meta::Prereqs' => '2.132140',
8617 'CPAN::Meta::Spec' => '2.132140',
8618 'CPAN::Meta::Validator' => '2.132140',
8619 'Carp' => '1.31',
8620 'Carp::Heavy' => '1.31',
8621 'Compress::Raw::Bzip2' => '2.062',
8622 'Compress::Raw::Zlib' => '2.062',
8623 'Compress::Zlib' => '2.062',
8624 'Config' => '5.019003',
8625 'Config::Perl::V' => '0.19',
8626 'Cwd' => '3.44',
8627 'Data::Dumper' => '2.148',
8628 'Devel::PPPort' => '3.21',
8629 'Devel::Peek' => '1.13',
8630 'DynaLoader' => '1.19',
8631 'Encode' => '2.52',
8632 'Encode::Alias' => '2.17',
8633 'Encode::Encoding' => '2.06',
8634 'Encode::GSM0338' => '2.04',
8635 'Encode::MIME::Header' => '2.14',
8636 'Encode::Unicode' => '2.08',
8637 'English' => '1.08',
8638 'Exporter' => '5.69',
8639 'Exporter::Heavy' => '5.69',
8640 'ExtUtils::Command::MM' => '6.72',
8641 'ExtUtils::Liblist' => '6.72',
8642 'ExtUtils::Liblist::Kid'=> '6.72',
8643 'ExtUtils::MM' => '6.72',
8644 'ExtUtils::MM_AIX' => '6.72',
8645 'ExtUtils::MM_Any' => '6.72',
8646 'ExtUtils::MM_BeOS' => '6.72',
8647 'ExtUtils::MM_Cygwin' => '6.72',
8648 'ExtUtils::MM_DOS' => '6.72',
8649 'ExtUtils::MM_Darwin' => '6.72',
8650 'ExtUtils::MM_MacOS' => '6.72',
8651 'ExtUtils::MM_NW5' => '6.72',
8652 'ExtUtils::MM_OS2' => '6.72',
8653 'ExtUtils::MM_QNX' => '6.72',
8654 'ExtUtils::MM_UWIN' => '6.72',
8655 'ExtUtils::MM_Unix' => '6.72',
8656 'ExtUtils::MM_VMS' => '6.72',
8657 'ExtUtils::MM_VOS' => '6.72',
8658 'ExtUtils::MM_Win32' => '6.72',
8659 'ExtUtils::MM_Win95' => '6.72',
8660 'ExtUtils::MY' => '6.72',
8661 'ExtUtils::MakeMaker' => '6.72',
8662 'ExtUtils::MakeMaker::Config'=> '6.72',
8663 'ExtUtils::Mkbootstrap' => '6.72',
8664 'ExtUtils::Mksymlists' => '6.72',
8665 'ExtUtils::ParseXS::Eval'=> '3.21',
8666 'ExtUtils::testlib' => '6.72',
8667 'File::Spec' => '3.44',
8668 'File::Spec::Cygwin' => '3.44',
8669 'File::Spec::Epoc' => '3.44',
8670 'File::Spec::Functions' => '3.44',
8671 'File::Spec::Mac' => '3.44',
8672 'File::Spec::OS2' => '3.44',
8673 'File::Spec::Unix' => '3.44',
8674 'File::Spec::VMS' => '3.44',
8675 'File::Spec::Win32' => '3.44',
8676 'Getopt::Std' => '1.10',
8677 'IO::Compress::Adapter::Bzip2'=> '2.062',
8678 'IO::Compress::Adapter::Deflate'=> '2.062',
8679 'IO::Compress::Adapter::Identity'=> '2.062',
8680 'IO::Compress::Base' => '2.062',
8681 'IO::Compress::Base::Common'=> '2.062',
8682 'IO::Compress::Bzip2' => '2.062',
8683 'IO::Compress::Deflate' => '2.062',
8684 'IO::Compress::Gzip' => '2.062',
8685 'IO::Compress::Gzip::Constants'=> '2.062',
8686 'IO::Compress::RawDeflate'=> '2.062',
8687 'IO::Compress::Zip' => '2.062',
8688 'IO::Compress::Zip::Constants'=> '2.062',
8689 'IO::Compress::Zlib::Constants'=> '2.062',
8690 'IO::Compress::Zlib::Extra'=> '2.062',
8691 'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8692 'IO::Uncompress::Adapter::Identity'=> '2.062',
8693 'IO::Uncompress::Adapter::Inflate'=> '2.062',
8694 'IO::Uncompress::AnyInflate'=> '2.062',
8695 'IO::Uncompress::AnyUncompress'=> '2.062',
8696 'IO::Uncompress::Base' => '2.062',
8697 'IO::Uncompress::Bunzip2'=> '2.062',
8698 'IO::Uncompress::Gunzip'=> '2.062',
8699 'IO::Uncompress::Inflate'=> '2.062',
8700 'IO::Uncompress::RawInflate'=> '2.062',
8701 'IO::Uncompress::Unzip' => '2.062',
8702 'IPC::Cmd' => '0.84',
8703 'IPC::Msg' => '2.04',
8704 'IPC::Open3' => '1.15',
8705 'IPC::Semaphore' => '2.04',
8706 'IPC::SharedMem' => '2.04',
8707 'IPC::SysV' => '2.04',
8708 'List::Util' => '1.31',
8709 'List::Util::XS' => '1.31',
8710 'Math::BigFloat::Trace' => '0.36',
8711 'Math::BigInt::Trace' => '0.36',
8712 'Module::Build' => '0.4007',
8713 'Module::Build::Base' => '0.4007',
8714 'Module::Build::Compat' => '0.4007',
8715 'Module::Build::Config' => '0.4007',
8716 'Module::Build::Cookbook'=> '0.4007',
8717 'Module::Build::Dumper' => '0.4007',
8718 'Module::Build::ModuleInfo'=> '0.4007',
8719 'Module::Build::Notes' => '0.4007',
8720 'Module::Build::PPMMaker'=> '0.4007',
8721 'Module::Build::Platform::Default'=> '0.4007',
8722 'Module::Build::Platform::MacOS'=> '0.4007',
8723 'Module::Build::Platform::Unix'=> '0.4007',
8724 'Module::Build::Platform::VMS'=> '0.4007',
8725 'Module::Build::Platform::VOS'=> '0.4007',
8726 'Module::Build::Platform::Windows'=> '0.4007',
8727 'Module::Build::Platform::aix'=> '0.4007',
8728 'Module::Build::Platform::cygwin'=> '0.4007',
8729 'Module::Build::Platform::darwin'=> '0.4007',
8730 'Module::Build::Platform::os2'=> '0.4007',
8731 'Module::Build::PodParser'=> '0.4007',
8732 'Module::CoreList' => '2.97',
8733 'Module::CoreList::TieHashDelta'=> '2.97',
8734 'Module::CoreList::Utils'=> '2.97',
8735 'Net::Cmd' => '2.30',
8736 'Net::Config' => '1.12',
8737 'Net::Domain' => '2.22',
8738 'Net::FTP' => '2.78',
8739 'Net::FTP::dataconn' => '0.12',
8740 'Net::NNTP' => '2.25',
8741 'Net::Netrc' => '2.14',
8742 'Net::POP3' => '2.30',
8743 'Net::SMTP' => '2.32',
8744 'PerlIO' => '1.08',
8745 'Pod::Functions' => '1.08',
91c842ce
SH
8746 'Scalar::Util' => '1.31',
8747 'Socket' => '2.011',
8748 'Storable' => '2.46',
8749 'Time::HiRes' => '1.9726',
8750 'Time::Piece' => '1.22',
8751 'Time::Seconds' => '1.22',
8752 'XS::APItest' => '0.55',
8753 'bigint' => '0.36',
8754 'bignum' => '0.36',
8755 'bigrat' => '0.36',
8756 'constant' => '1.28',
8757 'diagnostics' => '1.32',
8758 'inc::latest' => '0.4007',
8759 'mro' => '1.13',
8760 'parent' => '0.226',
8761 'utf8' => '1.13',
8762 'version' => '0.9903',
a7e68be8
AP
8763 },
8764 removed => {
91c842ce
SH
8765 'Module::Build::Platform::Amiga'=> 1,
8766 'Module::Build::Platform::EBCDIC'=> 1,
8767 'Module::Build::Platform::MPEiX'=> 1,
8768 'Module::Build::Platform::RiscOS'=> 1,
a7e68be8
AP
8769 }
8770 },
37287258
SH
8771 5.019004 => {
8772 delta_from => 5.019003,
8773 changed => {
62de23d1
SH
8774 'B' => '1.46',
8775 'B::Concise' => '0.99',
8776 'B::Deparse' => '1.23',
8777 'CPAN' => '2.03',
8778 'CPAN::Meta' => '2.132620',
8779 'CPAN::Meta::Converter' => '2.132620',
8780 'CPAN::Meta::Feature' => '2.132620',
8781 'CPAN::Meta::History' => '2.132620',
8782 'CPAN::Meta::Prereqs' => '2.132620',
8783 'CPAN::Meta::Requirements'=> '2.123',
8784 'CPAN::Meta::Spec' => '2.132620',
8785 'CPAN::Meta::Validator' => '2.132620',
8786 'Carp' => '1.32',
8787 'Carp::Heavy' => '1.32',
37287258 8788 'Config' => '5.019004',
62de23d1
SH
8789 'Data::Dumper' => '2.149',
8790 'Devel::Peek' => '1.14',
8791 'DynaLoader' => '1.20',
8792 'Encode' => '2.55',
8793 'Encode::Alias' => '2.18',
8794 'Encode::CN::HZ' => '2.07',
8795 'Encode::Encoder' => '2.03',
8796 'Encode::Encoding' => '2.07',
8797 'Encode::GSM0338' => '2.05',
8798 'Encode::Guess' => '2.06',
8799 'Encode::JP::JIS7' => '2.05',
8800 'Encode::KR::2022_KR' => '2.03',
8801 'Encode::MIME::Header' => '2.15',
8802 'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8803 'Encode::Unicode' => '2.09',
8804 'Encode::Unicode::UTF7' => '2.08',
8805 'Errno' => '1.20',
8806 'Exporter' => '5.70',
8807 'Exporter::Heavy' => '5.70',
8808 'ExtUtils::CBuilder' => '0.280212',
8809 'ExtUtils::CBuilder::Base'=> '0.280212',
8810 'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8811 'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8812 'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8813 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8814 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8815 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8816 'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8817 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8818 'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8819 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8820 'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8821 'ExtUtils::Command' => '1.18',
8822 'ExtUtils::Command::MM' => '6.76',
8823 'ExtUtils::Liblist' => '6.76',
8824 'ExtUtils::Liblist::Kid'=> '6.76',
8825 'ExtUtils::MM' => '6.76',
8826 'ExtUtils::MM_AIX' => '6.76',
8827 'ExtUtils::MM_Any' => '6.76',
8828 'ExtUtils::MM_BeOS' => '6.76',
8829 'ExtUtils::MM_Cygwin' => '6.76',
8830 'ExtUtils::MM_DOS' => '6.76',
8831 'ExtUtils::MM_Darwin' => '6.76',
8832 'ExtUtils::MM_MacOS' => '6.76',
8833 'ExtUtils::MM_NW5' => '6.76',
8834 'ExtUtils::MM_OS2' => '6.76',
8835 'ExtUtils::MM_QNX' => '6.76',
8836 'ExtUtils::MM_UWIN' => '6.76',
8837 'ExtUtils::MM_Unix' => '6.76',
8838 'ExtUtils::MM_VMS' => '6.76',
8839 'ExtUtils::MM_VOS' => '6.76',
8840 'ExtUtils::MM_Win32' => '6.76',
8841 'ExtUtils::MM_Win95' => '6.76',
8842 'ExtUtils::MY' => '6.76',
8843 'ExtUtils::MakeMaker' => '6.76',
8844 'ExtUtils::MakeMaker::Config'=> '6.76',
8845 'ExtUtils::Mkbootstrap' => '6.76',
8846 'ExtUtils::Mksymlists' => '6.76',
8847 'ExtUtils::ParseXS' => '3.23',
8848 'ExtUtils::ParseXS::Constants'=> '3.23',
8849 'ExtUtils::ParseXS::CountLines'=> '3.23',
8850 'ExtUtils::ParseXS::Eval'=> '3.23',
8851 'ExtUtils::ParseXS::Utilities'=> '3.23',
8852 'ExtUtils::Typemaps' => '3.23',
8853 'ExtUtils::Typemaps::Cmd'=> '3.23',
8854 'ExtUtils::Typemaps::InputMap'=> '3.23',
8855 'ExtUtils::Typemaps::OutputMap'=> '3.23',
8856 'ExtUtils::Typemaps::Type'=> '3.23',
8857 'ExtUtils::testlib' => '6.76',
8858 'Fatal' => '2.21',
8859 'File::Copy' => '2.28',
8860 'File::Find' => '1.25',
8861 'File::Glob' => '1.21',
8862 'FileCache' => '1.09',
8863 'HTTP::Tiny' => '0.035',
8864 'Hash::Util::FieldHash' => '1.13',
8865 'I18N::LangTags' => '0.40',
8866 'IO' => '1.29',
8867 'IO::Socket' => '1.37',
8868 'IPC::Open3' => '1.16',
8869 'JSON::PP' => '2.27202_01',
8870 'List::Util' => '1.32',
8871 'List::Util::XS' => '1.32',
8872 'Locale::Codes' => '3.27',
8873 'Locale::Codes::Constants'=> '3.27',
8874 'Locale::Codes::Country'=> '3.27',
8875 'Locale::Codes::Country_Codes'=> '3.27',
8876 'Locale::Codes::Country_Retired'=> '3.27',
8877 'Locale::Codes::Currency'=> '3.27',
8878 'Locale::Codes::Currency_Codes'=> '3.27',
8879 'Locale::Codes::Currency_Retired'=> '3.27',
8880 'Locale::Codes::LangExt'=> '3.27',
8881 'Locale::Codes::LangExt_Codes'=> '3.27',
8882 'Locale::Codes::LangExt_Retired'=> '3.27',
8883 'Locale::Codes::LangFam'=> '3.27',
8884 'Locale::Codes::LangFam_Codes'=> '3.27',
8885 'Locale::Codes::LangFam_Retired'=> '3.27',
8886 'Locale::Codes::LangVar'=> '3.27',
8887 'Locale::Codes::LangVar_Codes'=> '3.27',
8888 'Locale::Codes::LangVar_Retired'=> '3.27',
8889 'Locale::Codes::Language'=> '3.27',
8890 'Locale::Codes::Language_Codes'=> '3.27',
8891 'Locale::Codes::Language_Retired'=> '3.27',
8892 'Locale::Codes::Script' => '3.27',
8893 'Locale::Codes::Script_Codes'=> '3.27',
8894 'Locale::Codes::Script_Retired'=> '3.27',
8895 'Locale::Country' => '3.27',
8896 'Locale::Currency' => '3.27',
8897 'Locale::Language' => '3.27',
8898 'Locale::Script' => '3.27',
8899 'Math::BigFloat' => '1.9991',
8900 'Math::BigInt' => '1.9993',
8901 'Math::BigInt::FastCalc'=> '0.31',
8902 'Module::CoreList' => '2.99',
8903 'Module::CoreList::TieHashDelta'=> '2.99',
8904 'Module::CoreList::Utils'=> '2.99',
8905 'Module::Load::Conditional'=> '0.58',
8906 'Module::Metadata' => '1.000018',
8907 'Opcode' => '1.26',
8908 'POSIX' => '1.35',
8909 'Parse::CPAN::Meta' => '1.4407',
8910 'Perl::OSType' => '1.005',
8911 'Pod::Html' => '1.21',
8912 'Scalar::Util' => '1.32',
8913 'Socket' => '2.012',
8914 'Storable' => '2.47',
8915 'Term::ReadLine' => '1.14',
8916 'Test::Builder' => '0.98_06',
8917 'Test::Builder::Module' => '0.98_06',
8918 'Test::More' => '0.98_06',
8919 'Test::Simple' => '0.98_06',
8920 'Time::Piece' => '1.23',
8921 'Time::Seconds' => '1.23',
8922 'Unicode::Collate' => '0.99',
8923 'Unicode::UCD' => '0.54',
8924 'XS::APItest' => '0.56',
37287258 8925 'XS::Typemap' => '0.11',
62de23d1
SH
8926 '_charnames' => '1.39',
8927 'autodie' => '2.21',
8928 'autodie::exception' => '2.21',
8929 'autodie::exception::system'=> '2.21',
8930 'autodie::hints' => '2.21',
8931 'autodie::skip' => '2.21',
8932 'charnames' => '1.39',
8933 'diagnostics' => '1.33',
8934 'mro' => '1.14',
8935 'parent' => '0.228',
8936 'perlfaq' => '5.0150044',
8937 're' => '0.26',
8938 'version' => '0.9904',
8939 'warnings' => '1.19',
37287258
SH
8940 },
8941 removed => {
8942 }
8943 },
fa5fbb39
SH
8944 5.019005 => {
8945 delta_from => 5.019004,
8946 changed => {
19c1ec11
SH
8947 'App::Prove' => '3.29',
8948 'App::Prove::State' => '3.29',
8949 'App::Prove::State::Result'=> '3.29',
8950 'App::Prove::State::Result::Test'=> '3.29',
8951 'CPAN::Meta' => '2.132830',
8952 'CPAN::Meta::Converter' => '2.132830',
8953 'CPAN::Meta::Feature' => '2.132830',
8954 'CPAN::Meta::History' => '2.132830',
8955 'CPAN::Meta::Prereqs' => '2.132830',
8956 'CPAN::Meta::Requirements'=> '2.125',
8957 'CPAN::Meta::Spec' => '2.132830',
8958 'CPAN::Meta::Validator' => '2.132830',
8959 'CPAN::Meta::YAML' => '0.010',
fa5fbb39 8960 'Config' => '5.019005',
19c1ec11
SH
8961 'Cwd' => '3.45',
8962 'ExtUtils::Command::MM' => '6.80',
8963 'ExtUtils::Install' => '1.61',
8964 'ExtUtils::Liblist' => '6.80',
8965 'ExtUtils::Liblist::Kid'=> '6.80',
8966 'ExtUtils::MM' => '6.80',
8967 'ExtUtils::MM_AIX' => '6.80',
8968 'ExtUtils::MM_Any' => '6.80',
8969 'ExtUtils::MM_BeOS' => '6.80',
8970 'ExtUtils::MM_Cygwin' => '6.80',
8971 'ExtUtils::MM_DOS' => '6.80',
8972 'ExtUtils::MM_Darwin' => '6.80',
8973 'ExtUtils::MM_MacOS' => '6.80',
8974 'ExtUtils::MM_NW5' => '6.80',
8975 'ExtUtils::MM_OS2' => '6.80',
8976 'ExtUtils::MM_QNX' => '6.80',
8977 'ExtUtils::MM_UWIN' => '6.80',
8978 'ExtUtils::MM_Unix' => '6.80',
8979 'ExtUtils::MM_VMS' => '6.80',
8980 'ExtUtils::MM_VOS' => '6.80',
8981 'ExtUtils::MM_Win32' => '6.80',
8982 'ExtUtils::MM_Win95' => '6.80',
8983 'ExtUtils::MY' => '6.80',
8984 'ExtUtils::MakeMaker' => '6.80',
8985 'ExtUtils::MakeMaker::Config'=> '6.80',
8986 'ExtUtils::Mkbootstrap' => '6.80',
8987 'ExtUtils::Mksymlists' => '6.80',
8988 'ExtUtils::testlib' => '6.80',
8989 'Fatal' => '2.22',
8990 'File::Fetch' => '0.44',
8991 'File::Glob' => '1.22',
8992 'File::Spec' => '3.45',
8993 'File::Spec::Cygwin' => '3.45',
8994 'File::Spec::Epoc' => '3.45',
8995 'File::Spec::Functions' => '3.45',
8996 'File::Spec::Mac' => '3.45',
8997 'File::Spec::OS2' => '3.45',
8998 'File::Spec::Unix' => '3.45',
8999 'File::Spec::VMS' => '3.45',
9000 'File::Spec::Win32' => '3.45',
9001 'File::Temp' => '0.2304',
9002 'Getopt::Long' => '2.42',
9003 'HTTP::Tiny' => '0.036',
9004 'IPC::Cmd' => '0.84_01',
9005 'JSON::PP' => '2.27203',
9006 'List::Util' => '1.35',
9007 'List::Util::XS' => '1.35',
fa5fbb39
SH
9008 'Module::CoreList' => '3.00',
9009 'Module::CoreList::TieHashDelta'=> '3.00',
9010 'Module::CoreList::Utils'=> '3.00',
19c1ec11
SH
9011 'Module::Metadata' => '1.000019',
9012 'Parse::CPAN::Meta' => '1.4409',
9013 'Perl::OSType' => '1.006',
9014 'PerlIO::scalar' => '0.17',
9015 'Pod::Man' => '2.28',
9016 'Pod::Text' => '3.18',
9017 'Pod::Text::Termcap' => '2.08',
9018 'Scalar::Util' => '1.35',
9019 'TAP::Base' => '3.29',
9020 'TAP::Formatter::Base' => '3.29',
9021 'TAP::Formatter::Color' => '3.29',
9022 'TAP::Formatter::Console'=> '3.29',
9023 'TAP::Formatter::Console::ParallelSession'=> '3.29',
9024 'TAP::Formatter::Console::Session'=> '3.29',
9025 'TAP::Formatter::File' => '3.29',
9026 'TAP::Formatter::File::Session'=> '3.29',
9027 'TAP::Formatter::Session'=> '3.29',
9028 'TAP::Harness' => '3.29',
9029 'TAP::Harness::Env' => '3.29',
9030 'TAP::Object' => '3.29',
9031 'TAP::Parser' => '3.29',
9032 'TAP::Parser::Aggregator'=> '3.29',
9033 'TAP::Parser::Grammar' => '3.29',
9034 'TAP::Parser::Iterator' => '3.29',
9035 'TAP::Parser::Iterator::Array'=> '3.29',
9036 'TAP::Parser::Iterator::Process'=> '3.29',
9037 'TAP::Parser::Iterator::Stream'=> '3.29',
9038 'TAP::Parser::IteratorFactory'=> '3.29',
9039 'TAP::Parser::Multiplexer'=> '3.29',
9040 'TAP::Parser::Result' => '3.29',
9041 'TAP::Parser::Result::Bailout'=> '3.29',
9042 'TAP::Parser::Result::Comment'=> '3.29',
9043 'TAP::Parser::Result::Plan'=> '3.29',
9044 'TAP::Parser::Result::Pragma'=> '3.29',
9045 'TAP::Parser::Result::Test'=> '3.29',
9046 'TAP::Parser::Result::Unknown'=> '3.29',
9047 'TAP::Parser::Result::Version'=> '3.29',
9048 'TAP::Parser::Result::YAML'=> '3.29',
9049 'TAP::Parser::ResultFactory'=> '3.29',
9050 'TAP::Parser::Scheduler'=> '3.29',
9051 'TAP::Parser::Scheduler::Job'=> '3.29',
9052 'TAP::Parser::Scheduler::Spinner'=> '3.29',
9053 'TAP::Parser::Source' => '3.29',
9054 'TAP::Parser::SourceHandler'=> '3.29',
9055 'TAP::Parser::SourceHandler::Executable'=> '3.29',
9056 'TAP::Parser::SourceHandler::File'=> '3.29',
9057 'TAP::Parser::SourceHandler::Handle'=> '3.29',
9058 'TAP::Parser::SourceHandler::Perl'=> '3.29',
9059 'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
9060 'TAP::Parser::YAMLish::Reader'=> '3.29',
9061 'TAP::Parser::YAMLish::Writer'=> '3.29',
9062 'Test::Builder' => '0.99',
9063 'Test::Builder::Module' => '0.99',
9064 'Test::Builder::Tester' => '1.23_002',
9065 'Test::Builder::Tester::Color'=> '1.23_002',
9066 'Test::Harness' => '3.29',
9067 'Test::More' => '0.99',
9068 'Test::Simple' => '0.99',
9069 'Unicode' => '6.3.0',
9070 'Unicode::Normalize' => '1.17',
9071 'Unicode::UCD' => '0.55',
9072 'attributes' => '0.22',
9073 'autodie' => '2.22',
9074 'autodie::exception' => '2.22',
9075 'autodie::exception::system'=> '2.22',
9076 'autodie::hints' => '2.22',
9077 'autodie::skip' => '2.22',
9078 'feature' => '1.34',
9079 'threads' => '1.89',
9080 'warnings' => '1.20',
fa5fbb39
SH
9081 },
9082 removed => {
19c1ec11 9083 'TAP::Parser::Utils' => 1,
fa5fbb39
SH
9084 }
9085 },
494bd897
SH
9086 5.019006 => {
9087 delta_from => 5.019005,
9088 changed => {
1f2fd626
CBW
9089 'App::Prove' => '3.30',
9090 'App::Prove::State' => '3.30',
9091 'App::Prove::State::Result'=> '3.30',
9092 'App::Prove::State::Result::Test'=> '3.30',
9093 'Archive::Tar' => '1.96',
9094 'Archive::Tar::Constant'=> '1.96',
9095 'Archive::Tar::File' => '1.96',
9096 'AutoLoader' => '5.74',
9097 'B' => '1.47',
9098 'B::Concise' => '0.991',
9099 'B::Debug' => '1.19',
9100 'B::Deparse' => '1.24',
9101 'Benchmark' => '1.18',
9102 'Compress::Raw::Bzip2' => '2.063',
9103 'Compress::Raw::Zlib' => '2.063',
9104 'Compress::Zlib' => '2.063',
494bd897 9105 'Config' => '5.019006',
1f2fd626
CBW
9106 'DB_File' => '1.831',
9107 'Devel::Peek' => '1.15',
9108 'DynaLoader' => '1.21',
9109 'Errno' => '1.20_01',
9110 'ExtUtils::Command::MM' => '6.82',
9111 'ExtUtils::Liblist' => '6.82',
9112 'ExtUtils::Liblist::Kid'=> '6.82',
9113 'ExtUtils::MM' => '6.82',
9114 'ExtUtils::MM_AIX' => '6.82',
9115 'ExtUtils::MM_Any' => '6.82',
9116 'ExtUtils::MM_BeOS' => '6.82',
9117 'ExtUtils::MM_Cygwin' => '6.82',
9118 'ExtUtils::MM_DOS' => '6.82',
9119 'ExtUtils::MM_Darwin' => '6.82',
9120 'ExtUtils::MM_MacOS' => '6.82',
9121 'ExtUtils::MM_NW5' => '6.82',
9122 'ExtUtils::MM_OS2' => '6.82',
9123 'ExtUtils::MM_QNX' => '6.82',
9124 'ExtUtils::MM_UWIN' => '6.82',
9125 'ExtUtils::MM_Unix' => '6.82',
9126 'ExtUtils::MM_VMS' => '6.82',
9127 'ExtUtils::MM_VOS' => '6.82',
9128 'ExtUtils::MM_Win32' => '6.82',
9129 'ExtUtils::MM_Win95' => '6.82',
9130 'ExtUtils::MY' => '6.82',
9131 'ExtUtils::MakeMaker' => '6.82',
9132 'ExtUtils::MakeMaker::Config'=> '6.82',
9133 'ExtUtils::Mkbootstrap' => '6.82',
9134 'ExtUtils::Mksymlists' => '6.82',
9135 'ExtUtils::testlib' => '6.82',
9136 'File::DosGlob' => '1.12',
9137 'File::Find' => '1.26',
9138 'File::Glob' => '1.23',
9139 'HTTP::Tiny' => '0.038',
9140 'IO' => '1.30',
9141 'IO::Compress::Adapter::Bzip2'=> '2.063',
9142 'IO::Compress::Adapter::Deflate'=> '2.063',
9143 'IO::Compress::Adapter::Identity'=> '2.063',
9144 'IO::Compress::Base' => '2.063',
9145 'IO::Compress::Base::Common'=> '2.063',
9146 'IO::Compress::Bzip2' => '2.063',
9147 'IO::Compress::Deflate' => '2.063',
9148 'IO::Compress::Gzip' => '2.063',
9149 'IO::Compress::Gzip::Constants'=> '2.063',
9150 'IO::Compress::RawDeflate'=> '2.063',
9151 'IO::Compress::Zip' => '2.063',
9152 'IO::Compress::Zip::Constants'=> '2.063',
9153 'IO::Compress::Zlib::Constants'=> '2.063',
9154 'IO::Compress::Zlib::Extra'=> '2.063',
9155 'IO::Select' => '1.22',
9156 'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9157 'IO::Uncompress::Adapter::Identity'=> '2.063',
9158 'IO::Uncompress::Adapter::Inflate'=> '2.063',
9159 'IO::Uncompress::AnyInflate'=> '2.063',
9160 'IO::Uncompress::AnyUncompress'=> '2.063',
9161 'IO::Uncompress::Base' => '2.063',
9162 'IO::Uncompress::Bunzip2'=> '2.063',
9163 'IO::Uncompress::Gunzip'=> '2.063',
9164 'IO::Uncompress::Inflate'=> '2.063',
9165 'IO::Uncompress::RawInflate'=> '2.063',
9166 'IO::Uncompress::Unzip' => '2.063',
9167 'IPC::Cmd' => '0.90',
9168 'Locale::Maketext' => '1.25',
9169 'Module::Build' => '0.4202',
9170 'Module::Build::Base' => '0.4202',
9171 'Module::Build::Compat' => '0.4202',
9172 'Module::Build::Config' => '0.4202',
9173 'Module::Build::Cookbook'=> '0.4202',
9174 'Module::Build::Dumper' => '0.4202',
9175 'Module::Build::ModuleInfo'=> '0.4202',
9176 'Module::Build::Notes' => '0.4202',
9177 'Module::Build::PPMMaker'=> '0.4202',
9178 'Module::Build::Platform::Default'=> '0.4202',
9179 'Module::Build::Platform::MacOS'=> '0.4202',
9180 'Module::Build::Platform::Unix'=> '0.4202',
9181 'Module::Build::Platform::VMS'=> '0.4202',
9182 'Module::Build::Platform::VOS'=> '0.4202',
9183 'Module::Build::Platform::Windows'=> '0.4202',
9184 'Module::Build::Platform::aix'=> '0.4202',
9185 'Module::Build::Platform::cygwin'=> '0.4202',
9186 'Module::Build::Platform::darwin'=> '0.4202',
9187 'Module::Build::Platform::os2'=> '0.4202',
9188 'Module::Build::PodParser'=> '0.4202',
494bd897
SH
9189 'Module::CoreList' => '3.01',
9190 'Module::CoreList::TieHashDelta'=> '3.01',
9191 'Module::CoreList::Utils'=> '3.01',
1f2fd626
CBW
9192 'Opcode' => '1.27',
9193 'POSIX' => '1.36',
9194 'Package::Constants' => '0.04',
9195 'PerlIO::scalar' => '0.18',
9196 'PerlIO::via' => '0.13',
9197 'SDBM_File' => '1.10',
9198 'Socket' => '2.013',
9199 'TAP::Base' => '3.30',
9200 'TAP::Formatter::Base' => '3.30',
9201 'TAP::Formatter::Color' => '3.30',
9202 'TAP::Formatter::Console'=> '3.30',
9203 'TAP::Formatter::Console::ParallelSession'=> '3.30',
9204 'TAP::Formatter::Console::Session'=> '3.30',
9205 'TAP::Formatter::File' => '3.30',
9206 'TAP::Formatter::File::Session'=> '3.30',
9207 'TAP::Formatter::Session'=> '3.30',
9208 'TAP::Harness' => '3.30',
9209 'TAP::Harness::Env' => '3.30',
9210 'TAP::Object' => '3.30',
9211 'TAP::Parser' => '3.30',
9212 'TAP::Parser::Aggregator'=> '3.30',
9213 'TAP::Parser::Grammar' => '3.30',
9214 'TAP::Parser::Iterator' => '3.30',
9215 'TAP::Parser::Iterator::Array'=> '3.30',
9216 'TAP::Parser::Iterator::Process'=> '3.30',
9217 'TAP::Parser::Iterator::Stream'=> '3.30',
9218 'TAP::Parser::IteratorFactory'=> '3.30',
9219 'TAP::Parser::Multiplexer'=> '3.30',
9220 'TAP::Parser::Result' => '3.30',
9221 'TAP::Parser::Result::Bailout'=> '3.30',
9222 'TAP::Parser::Result::Comment'=> '3.30',
9223 'TAP::Parser::Result::Plan'=> '3.30',
9224 'TAP::Parser::Result::Pragma'=> '3.30',
9225 'TAP::Parser::Result::Test'=> '3.30',
9226 'TAP::Parser::Result::Unknown'=> '3.30',
9227 'TAP::Parser::Result::Version'=> '3.30',
9228 'TAP::Parser::Result::YAML'=> '3.30',
9229 'TAP::Parser::ResultFactory'=> '3.30',
9230 'TAP::Parser::Scheduler'=> '3.30',
9231 'TAP::Parser::Scheduler::Job'=> '3.30',
9232 'TAP::Parser::Scheduler::Spinner'=> '3.30',
9233 'TAP::Parser::Source' => '3.30',
9234 'TAP::Parser::SourceHandler'=> '3.30',
9235 'TAP::Parser::SourceHandler::Executable'=> '3.30',
9236 'TAP::Parser::SourceHandler::File'=> '3.30',
9237 'TAP::Parser::SourceHandler::Handle'=> '3.30',
9238 'TAP::Parser::SourceHandler::Perl'=> '3.30',
9239 'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9240 'TAP::Parser::YAMLish::Reader'=> '3.30',
9241 'TAP::Parser::YAMLish::Writer'=> '3.30',
9242 'Term::Cap' => '1.15',
9243 'Test::Builder' => '1.001002',
9244 'Test::Builder::Module' => '1.001002',
9245 'Test::Harness' => '3.30',
9246 'Test::More' => '1.001002',
9247 'Test::Simple' => '1.001002',
9248 'Tie::StdHandle' => '4.4',
9249 'Unicode::Collate' => '1.02',
9250 'Unicode::Collate::CJK::Korean'=> '1.02',
9251 'Unicode::Collate::Locale'=> '1.02',
9252 'XS::APItest' => '0.57',
9253 'XS::Typemap' => '0.12',
9254 'arybase' => '0.07',
9255 'bignum' => '0.37',
9256 'constant' => '1.29',
9257 'fields' => '2.17',
9258 'inc::latest' => '0.4202',
9259 'threads' => '1.90',
9260 'threads::shared' => '1.45',
494bd897
SH
9261 },
9262 removed => {
9263 }
9264 },
b3f76264
CBW
9265 5.019007 => {
9266 delta_from => 5.019006,
9267 changed => {
95eb96f3
A
9268 'CGI' => '3.64',
9269 'CGI::Apache' => '1.02',
9270 'CGI::Carp' => '3.64',
9271 'CGI::Cookie' => '1.31',
9272 'CGI::Fast' => '1.10',
9273 'CGI::Pretty' => '3.64',
9274 'CGI::Push' => '1.06',
9275 'CGI::Switch' => '1.02',
9276 'CGI::Util' => '3.64',
9277 'CPAN::Meta' => '2.133380',
9278 'CPAN::Meta::Converter' => '2.133380',
9279 'CPAN::Meta::Feature' => '2.133380',
9280 'CPAN::Meta::History' => '2.133380',
9281 'CPAN::Meta::Prereqs' => '2.133380',
9282 'CPAN::Meta::Spec' => '2.133380',
9283 'CPAN::Meta::Validator' => '2.133380',
b3f76264 9284 'Config' => '5.019007',
95eb96f3
A
9285 'Data::Dumper' => '2.150',
9286 'DynaLoader' => '1.22',
9287 'ExtUtils::Command::MM' => '6.84',
9288 'ExtUtils::Liblist' => '6.84',
9289 'ExtUtils::Liblist::Kid'=> '6.84',
9290 'ExtUtils::MM' => '6.84',
9291 'ExtUtils::MM_AIX' => '6.84',
9292 'ExtUtils::MM_Any' => '6.84',
9293 'ExtUtils::MM_BeOS' => '6.84',
9294 'ExtUtils::MM_Cygwin' => '6.84',
9295 'ExtUtils::MM_DOS' => '6.84',
9296 'ExtUtils::MM_Darwin' => '6.84',
9297 'ExtUtils::MM_MacOS' => '6.84',
9298 'ExtUtils::MM_NW5' => '6.84',
9299 'ExtUtils::MM_OS2' => '6.84',
9300 'ExtUtils::MM_QNX' => '6.84',
9301 'ExtUtils::MM_UWIN' => '6.84',
9302 'ExtUtils::MM_Unix' => '6.84',
9303 'ExtUtils::MM_VMS' => '6.84',
9304 'ExtUtils::MM_VOS' => '6.84',
9305 'ExtUtils::MM_Win32' => '6.84',
9306 'ExtUtils::MM_Win95' => '6.84',
9307 'ExtUtils::MY' => '6.84',
9308 'ExtUtils::MakeMaker' => '6.84',
9309 'ExtUtils::MakeMaker::Config'=> '6.84',
9310 'ExtUtils::Mkbootstrap' => '6.84',
9311 'ExtUtils::Mksymlists' => '6.84',
9312 'ExtUtils::testlib' => '6.84',
9313 'File::Fetch' => '0.46',
9314 'HTTP::Tiny' => '0.039',
9315 'Locale::Codes' => '3.28',
9316 'Locale::Codes::Constants'=> '3.28',
9317 'Locale::Codes::Country'=> '3.28',
9318 'Locale::Codes::Country_Codes'=> '3.28',
9319 'Locale::Codes::Country_Retired'=> '3.28',
9320 'Locale::Codes::Currency'=> '3.28',
9321 'Locale::Codes::Currency_Codes'=> '3.28',
9322 'Locale::Codes::Currency_Retired'=> '3.28',
9323 'Locale::Codes::LangExt'=> '3.28',
9324 'Locale::Codes::LangExt_Codes'=> '3.28',
9325 'Locale::Codes::LangExt_Retired'=> '3.28',
9326 'Locale::Codes::LangFam'=> '3.28',
9327 'Locale::Codes::LangFam_Codes'=> '3.28',
9328 'Locale::Codes::LangFam_Retired'=> '3.28',
9329 'Locale::Codes::LangVar'=> '3.28',
9330 'Locale::Codes::LangVar_Codes'=> '3.28',
9331 'Locale::Codes::LangVar_Retired'=> '3.28',
9332 'Locale::Codes::Language'=> '3.28',
9333 'Locale::Codes::Language_Codes'=> '3.28',
9334 'Locale::Codes::Language_Retired'=> '3.28',
9335 'Locale::Codes::Script' => '3.28',
9336 'Locale::Codes::Script_Codes'=> '3.28',
9337 'Locale::Codes::Script_Retired'=> '3.28',
9338 'Locale::Country' => '3.28',
9339 'Locale::Currency' => '3.28',
9340 'Locale::Language' => '3.28',
9341 'Locale::Script' => '3.28',
9342 'Module::Build' => '0.4203',
9343 'Module::Build::Base' => '0.4203',
9344 'Module::Build::Compat' => '0.4203',
9345 'Module::Build::Config' => '0.4203',
9346 'Module::Build::Cookbook'=> '0.4203',
9347 'Module::Build::Dumper' => '0.4203',
9348 'Module::Build::ModuleInfo'=> '0.4203',
9349 'Module::Build::Notes' => '0.4203',
9350 'Module::Build::PPMMaker'=> '0.4203',
9351 'Module::Build::Platform::Default'=> '0.4203',
9352 'Module::Build::Platform::MacOS'=> '0.4203',
9353 'Module::Build::Platform::Unix'=> '0.4203',
9354 'Module::Build::Platform::VMS'=> '0.4203',
9355 'Module::Build::Platform::VOS'=> '0.4203',
9356 'Module::Build::Platform::Windows'=> '0.4203',
9357 'Module::Build::Platform::aix'=> '0.4203',
9358 'Module::Build::Platform::cygwin'=> '0.4203',
9359 'Module::Build::Platform::darwin'=> '0.4203',
9360 'Module::Build::Platform::os2'=> '0.4203',
9361 'Module::Build::PodParser'=> '0.4203',
b3f76264
CBW
9362 'Module::CoreList' => '3.02',
9363 'Module::CoreList::TieHashDelta'=> '3.02',
9364 'Module::CoreList::Utils'=> '3.02',
95eb96f3 9365 'POSIX' => '1.37',
95eb96f3
A
9366 'PerlIO::encoding' => '0.17',
9367 'PerlIO::via' => '0.14',
9368 'SDBM_File' => '1.11',
9369 'Storable' => '2.48',
9370 'Time::Piece' => '1.24',
9371 'Time::Seconds' => '1.24',
9372 'Unicode::Collate' => '1.04',
9373 'Win32' => '0.48',
9374 'XS::APItest' => '0.58',
9375 'base' => '2.20',
9376 'constant' => '1.30',
9377 'inc::latest' => '0.4203',
9378 'threads' => '1.91',
b3f76264
CBW
9379 },
9380 removed => {
9381 }
9382 },
365f8c3e
CBW
9383 5.019008 => {
9384 delta_from => 5.019007,
9385 changed => {
9386 'Config' => '5.019008',
d0ff74ad
RS
9387 'DynaLoader' => '1.24',
9388 'Encode' => '2.57',
9389 'Errno' => '1.20_02',
9390 'ExtUtils::CBuilder' => '0.280213',
9391 'ExtUtils::CBuilder::Base'=> '0.280213',
9392 'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9393 'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9394 'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9395 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9396 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9397 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9398 'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9399 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9400 'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9401 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9402 'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9403 'ExtUtils::Command::MM' => '6.86',
9404 'ExtUtils::Liblist' => '6.86',
9405 'ExtUtils::Liblist::Kid'=> '6.86',
9406 'ExtUtils::MM' => '6.86',
9407 'ExtUtils::MM_AIX' => '6.86',
9408 'ExtUtils::MM_Any' => '6.86',
9409 'ExtUtils::MM_BeOS' => '6.86',
9410 'ExtUtils::MM_Cygwin' => '6.86',
9411 'ExtUtils::MM_DOS' => '6.86',
9412 'ExtUtils::MM_Darwin' => '6.86',
9413 'ExtUtils::MM_MacOS' => '6.86',
9414 'ExtUtils::MM_NW5' => '6.86',
9415 'ExtUtils::MM_OS2' => '6.86',
9416 'ExtUtils::MM_QNX' => '6.86',
9417 'ExtUtils::MM_UWIN' => '6.86',
9418 'ExtUtils::MM_Unix' => '6.86',
9419 'ExtUtils::MM_VMS' => '6.86',
9420 'ExtUtils::MM_VOS' => '6.86',
9421 'ExtUtils::MM_Win32' => '6.86',
9422 'ExtUtils::MM_Win95' => '6.86',
9423 'ExtUtils::MY' => '6.86',
9424 'ExtUtils::MakeMaker' => '6.86',
9425 'ExtUtils::MakeMaker::Config'=> '6.86',
9426 'ExtUtils::Mkbootstrap' => '6.86',
9427 'ExtUtils::Mksymlists' => '6.86',
9428 'ExtUtils::testlib' => '6.86',
9429 'File::Copy' => '2.29',
9430 'Hash::Util::FieldHash' => '1.14',
9431 'IO::Socket::IP' => '0.26',
9432 'IO::Socket::UNIX' => '1.26',
9433 'List::Util' => '1.36',
9434 'List::Util::XS' => '1.36',
9435 'Module::Build' => '0.4204',
9436 'Module::Build::Base' => '0.4204',
9437 'Module::Build::Compat' => '0.4204',
9438 'Module::Build::Config' => '0.4204',
9439 'Module::Build::Cookbook'=> '0.4204',
9440 'Module::Build::Dumper' => '0.4204',
9441 'Module::Build::ModuleInfo'=> '0.4204',
9442 'Module::Build::Notes' => '0.4204',
9443 'Module::Build::PPMMaker'=> '0.4204',
9444 'Module::Build::Platform::Default'=> '0.4204',
9445 'Module::Build::Platform::MacOS'=> '0.4204',
9446 'Module::Build::Platform::Unix'=> '0.4204',
9447 'Module::Build::Platform::VMS'=> '0.4204',
9448 'Module::Build::Platform::VOS'=> '0.4204',
9449 'Module::Build::Platform::Windows'=> '0.4204',
9450 'Module::Build::Platform::aix'=> '0.4204',
9451 'Module::Build::Platform::cygwin'=> '0.4204',
9452 'Module::Build::Platform::darwin'=> '0.4204',
9453 'Module::Build::Platform::os2'=> '0.4204',
9454 'Module::Build::PodParser'=> '0.4204',
365f8c3e
CBW
9455 'Module::CoreList' => '3.04',
9456 'Module::CoreList::TieHashDelta'=> '3.04',
9457 'Module::CoreList::Utils'=> '3.04',
d0ff74ad
RS
9458 'Module::Load' => '0.28',
9459 'Module::Load::Conditional'=> '0.60',
9460 'Net::Config' => '1.13',
9461 'Net::FTP::A' => '1.19',
9462 'POSIX' => '1.38_01',
9463 'Perl::OSType' => '1.007',
9464 'PerlIO::encoding' => '0.18',
9465 'Pod::Perldoc' => '3.21',
9466 'Pod::Perldoc::BaseTo' => '3.21',
9467 'Pod::Perldoc::GetOptsOO'=> '3.21',
9468 'Pod::Perldoc::ToANSI' => '3.21',
9469 'Pod::Perldoc::ToChecker'=> '3.21',
9470 'Pod::Perldoc::ToMan' => '3.21',
9471 'Pod::Perldoc::ToNroff' => '3.21',
9472 'Pod::Perldoc::ToPod' => '3.21',
9473 'Pod::Perldoc::ToRtf' => '3.21',
9474 'Pod::Perldoc::ToTerm' => '3.21',
9475 'Pod::Perldoc::ToText' => '3.21',
9476 'Pod::Perldoc::ToTk' => '3.21',
9477 'Pod::Perldoc::ToXml' => '3.21',
9478 'Scalar::Util' => '1.36',
9479 'Time::Piece' => '1.27',
9480 'Time::Seconds' => '1.27',
9481 'Unicode::UCD' => '0.57',
9482 'XS::APItest' => '0.59',
9483 'XSLoader' => '0.17',
9484 'base' => '2.21',
9485 'constant' => '1.31',
9486 'inc::latest' => '0.4204',
9487 'threads::shared' => '1.46',
9488 'version' => '0.9907',
9489 'version::regex' => '0.9907',
9490 'version::vpp' => '0.9907',
9491 'warnings' => '1.21',
365f8c3e
CBW
9492 },
9493 removed => {
9494 }
9495 },
a27b5f52
CBW
9496 5.019009 => {
9497 delta_from => 5.019008,
9498 changed => {
5a39b45b
TC
9499 'B' => '1.48',
9500 'B::Concise' => '0.992',
9501 'B::Deparse' => '1.25',
9502 'CGI' => '3.65',
9503 'CPAN::Meta::YAML' => '0.011',
9504 'Compress::Raw::Bzip2' => '2.064',
9505 'Compress::Raw::Zlib' => '2.065',
9506 'Compress::Zlib' => '2.064',
a27b5f52 9507 'Config' => '5.019009',
5a39b45b
TC
9508 'Config::Perl::V' => '0.20',
9509 'Cwd' => '3.47',
9510 'Devel::Peek' => '1.16',
9511 'Digest::SHA' => '5.87',
9512 'DynaLoader' => '1.25',
9513 'English' => '1.09',
9514 'ExtUtils::CBuilder' => '0.280216',
9515 'ExtUtils::CBuilder::Base'=> '0.280216',
9516 'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9517 'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9518 'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9519 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9520 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9521 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9522 'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9523 'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9524 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9525 'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9526 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9527 'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9528 'ExtUtils::Command::MM' => '6.88',
9529 'ExtUtils::Embed' => '1.32',
9530 'ExtUtils::Install' => '1.62',
9531 'ExtUtils::Installed' => '1.999004',
9532 'ExtUtils::Liblist' => '6.88',
9533 'ExtUtils::Liblist::Kid'=> '6.88',
9534 'ExtUtils::MM' => '6.88',
9535 'ExtUtils::MM_AIX' => '6.88',
9536 'ExtUtils::MM_Any' => '6.88',
9537 'ExtUtils::MM_BeOS' => '6.88',
9538 'ExtUtils::MM_Cygwin' => '6.88',
9539 'ExtUtils::MM_DOS' => '6.88',
9540 'ExtUtils::MM_Darwin' => '6.88',
9541 'ExtUtils::MM_MacOS' => '6.88',
9542 'ExtUtils::MM_NW5' => '6.88',
9543 'ExtUtils::MM_OS2' => '6.88',
9544 'ExtUtils::MM_QNX' => '6.88',
9545 'ExtUtils::MM_UWIN' => '6.88',
9546 'ExtUtils::MM_Unix' => '6.88',
9547 'ExtUtils::MM_VMS' => '6.88',
9548 'ExtUtils::MM_VOS' => '6.88',
9549 'ExtUtils::MM_Win32' => '6.88',
9550 'ExtUtils::MM_Win95' => '6.88',
9551 'ExtUtils::MY' => '6.88',
9552 'ExtUtils::MakeMaker' => '6.88',
9553 'ExtUtils::MakeMaker::Config'=> '6.88',
9554 'ExtUtils::Mkbootstrap' => '6.88',
9555 'ExtUtils::Mksymlists' => '6.88',
9556 'ExtUtils::Packlist' => '1.47',
9557 'ExtUtils::testlib' => '6.88',
9558 'Fatal' => '2.23',
9559 'File::Fetch' => '0.48',
9560 'File::Spec' => '3.47',
9561 'File::Spec::Cygwin' => '3.47',
9562 'File::Spec::Epoc' => '3.47',
9563 'File::Spec::Functions' => '3.47',
9564 'File::Spec::Mac' => '3.47',
9565 'File::Spec::OS2' => '3.47',
9566 'File::Spec::Unix' => '3.47',
9567 'File::Spec::VMS' => '3.47',
9568 'File::Spec::Win32' => '3.47',
9569 'HTTP::Tiny' => '0.042',
9570 'IO::Compress::Adapter::Bzip2'=> '2.064',
9571 'IO::Compress::Adapter::Deflate'=> '2.064',
9572 'IO::Compress::Adapter::Identity'=> '2.064',
9573 'IO::Compress::Base' => '2.064',
9574 'IO::Compress::Base::Common'=> '2.064',
9575 'IO::Compress::Bzip2' => '2.064',
9576 'IO::Compress::Deflate' => '2.064',
9577 'IO::Compress::Gzip' => '2.064',
9578 'IO::Compress::Gzip::Constants'=> '2.064',
9579 'IO::Compress::RawDeflate'=> '2.064',
9580 'IO::Compress::Zip' => '2.064',
9581 'IO::Compress::Zip::Constants'=> '2.064',
9582 'IO::Compress::Zlib::Constants'=> '2.064',
9583 'IO::Compress::Zlib::Extra'=> '2.064',
9584 'IO::Socket::INET' => '1.35',
9585 'IO::Socket::IP' => '0.28',
9586 'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9587 'IO::Uncompress::Adapter::Identity'=> '2.064',
9588 'IO::Uncompress::Adapter::Inflate'=> '2.064',
9589 'IO::Uncompress::AnyInflate'=> '2.064',
9590 'IO::Uncompress::AnyUncompress'=> '2.064',
9591 'IO::Uncompress::Base' => '2.064',
9592 'IO::Uncompress::Bunzip2'=> '2.064',
9593 'IO::Uncompress::Gunzip'=> '2.064',
9594 'IO::Uncompress::Inflate'=> '2.064',
9595 'IO::Uncompress::RawInflate'=> '2.064',
9596 'IO::Uncompress::Unzip' => '2.064',
9597 'IPC::Cmd' => '0.92',
9598 'List::Util' => '1.38',
9599 'List::Util::XS' => '1.38',
9600 'Locale::Codes' => '3.29',
9601 'Locale::Codes::Constants'=> '3.29',
9602 'Locale::Codes::Country'=> '3.29',
9603 'Locale::Codes::Country_Codes'=> '3.29',
9604 'Locale::Codes::Country_Retired'=> '3.29',
9605 'Locale::Codes::Currency'=> '3.29',
9606 'Locale::Codes::Currency_Codes'=> '3.29',
9607 'Locale::Codes::Currency_Retired'=> '3.29',
9608 'Locale::Codes::LangExt'=> '3.29',
9609 'Locale::Codes::LangExt_Codes'=> '3.29',
9610 'Locale::Codes::LangExt_Retired'=> '3.29',
9611 'Locale::Codes::LangFam'=> '3.29',
9612 'Locale::Codes::LangFam_Codes'=> '3.29',
9613 'Locale::Codes::LangFam_Retired'=> '3.29',
9614 'Locale::Codes::LangVar'=> '3.29',
9615 'Locale::Codes::LangVar_Codes'=> '3.29',
9616 'Locale::Codes::LangVar_Retired'=> '3.29',
9617 'Locale::Codes::Language'=> '3.29',
9618 'Locale::Codes::Language_Codes'=> '3.29',
9619 'Locale::Codes::Language_Retired'=> '3.29',
9620 'Locale::Codes::Script' => '3.29',
9621 'Locale::Codes::Script_Codes'=> '3.29',
9622 'Locale::Codes::Script_Retired'=> '3.29',
9623 'Locale::Country' => '3.29',
9624 'Locale::Currency' => '3.29',
9625 'Locale::Language' => '3.29',
9626 'Locale::Script' => '3.29',
9627 'Module::Build' => '0.4205',
9628 'Module::Build::Base' => '0.4205',
9629 'Module::Build::Compat' => '0.4205',
9630 'Module::Build::Config' => '0.4205',
9631 'Module::Build::Cookbook'=> '0.4205',
9632 'Module::Build::Dumper' => '0.4205',
9633 'Module::Build::ModuleInfo'=> '0.4205',
9634 'Module::Build::Notes' => '0.4205',
9635 'Module::Build::PPMMaker'=> '0.4205',
9636 'Module::Build::Platform::Default'=> '0.4205',
9637 'Module::Build::Platform::MacOS'=> '0.4205',
9638 'Module::Build::Platform::Unix'=> '0.4205',
9639 'Module::Build::Platform::VMS'=> '0.4205',
9640 'Module::Build::Platform::VOS'=> '0.4205',
9641 'Module::Build::Platform::Windows'=> '0.4205',
9642 'Module::Build::Platform::aix'=> '0.4205',
9643 'Module::Build::Platform::cygwin'=> '0.4205',
9644 'Module::Build::Platform::darwin'=> '0.4205',
9645 'Module::Build::Platform::os2'=> '0.4205',
9646 'Module::Build::PodParser'=> '0.4205',
9647 'Module::CoreList' => '3.06',
9648 'Module::CoreList::TieHashDelta'=> '3.06',
9649 'Module::CoreList::Utils'=> '3.06',
9650 'Module::Load' => '0.30',
9651 'Module::Load::Conditional'=> '0.62',
9652 'Net::Domain' => '2.23',
9653 'Net::FTP' => '2.79',
9654 'Net::NNTP' => '2.26',
9655 'Net::POP3' => '2.31',
9656 'Net::Ping' => '2.43',
9657 'Net::SMTP' => '2.33',
9658 'POSIX' => '1.38_02',
9659 'Parse::CPAN::Meta' => '1.4413',
5a39b45b
TC
9660 'Pod::Escapes' => '1.06',
9661 'Pod::Find' => '1.62',
9662 'Pod::InputObjects' => '1.62',
9663 'Pod::ParseUtils' => '1.62',
9664 'Pod::Parser' => '1.62',
9665 'Pod::Select' => '1.62',
9666 'Scalar::Util' => '1.38',
9667 'autodie' => '2.23',
9668 'autodie::exception' => '2.23',
9669 'autodie::exception::system'=> '2.23',
9670 'autodie::hints' => '2.23',
9671 'autodie::skip' => '2.23',
9672 'diagnostics' => '1.34',
9673 'feature' => '1.35',
9674 'inc::latest' => '0.4205',
9675 'locale' => '1.03',
9676 'mro' => '1.15',
9677 'threads' => '1.92',
9678 'version' => '0.9908',
9679 'version::regex' => '0.9908',
9680 'version::vpp' => '0.9908',
9681 'warnings' => '1.22',
a27b5f52
CBW
9682 },
9683 removed => {
9684 }
9685 },
ce42a9e6 9686 5.01901 => {
baca4554
TC
9687 delta_from => 5.019009,
9688 changed => {
ce42a9e6
AC
9689 'App::Cpan' => '1.62',
9690 'Attribute::Handlers' => '0.96',
9691 'B::Deparse' => '1.26',
9692 'CPAN' => '2.04',
9693 'CPAN::Bundle' => '5.5001',
9694 'CPAN::Complete' => '5.5001',
9695 'CPAN::Distribution' => '2.01',
9696 'CPAN::Distroprefs' => '6.0001',
9697 'CPAN::FirstTime' => '5.5305',
9698 'CPAN::Meta' => '2.140640',
9699 'CPAN::Meta::Converter' => '2.140640',
9700 'CPAN::Meta::Feature' => '2.140640',
9701 'CPAN::Meta::History' => '2.140640',
9702 'CPAN::Meta::Prereqs' => '2.140640',
9703 'CPAN::Meta::Spec' => '2.140640',
9704 'CPAN::Meta::Validator' => '2.140640',
9705 'CPAN::Meta::YAML' => '0.012',
9706 'CPAN::Queue' => '5.5002',
9707 'CPAN::Shell' => '5.5003',
9708 'CPAN::Tarzip' => '5.5012',
9709 'CPAN::Version' => '5.5003',
9710 'Carp' => '1.33',
9711 'Carp::Heavy' => '1.33',
baca4554 9712 'Config' => '5.019010',
ce42a9e6
AC
9713 'Data::Dumper' => '2.151',
9714 'Devel::PPPort' => '3.22',
9715 'Digest::SHA' => '5.88',
9716 'ExtUtils::Command::MM' => '6.92',
9717 'ExtUtils::Install' => '1.63',
9718 'ExtUtils::Installed' => '1.999005',
9719 'ExtUtils::Liblist' => '6.92',
9720 'ExtUtils::Liblist::Kid'=> '6.92',
9721 'ExtUtils::MM' => '6.92',
9722 'ExtUtils::MM_AIX' => '6.92',
9723 'ExtUtils::MM_Any' => '6.92',
9724 'ExtUtils::MM_BeOS' => '6.92',
9725 'ExtUtils::MM_Cygwin' => '6.92',
9726 'ExtUtils::MM_DOS' => '6.92',
9727 'ExtUtils::MM_Darwin' => '6.92',
9728 'ExtUtils::MM_MacOS' => '6.92',
9729 'ExtUtils::MM_NW5' => '6.92',
9730 'ExtUtils::MM_OS2' => '6.92',
9731 'ExtUtils::MM_QNX' => '6.92',
9732 'ExtUtils::MM_UWIN' => '6.92',
9733 'ExtUtils::MM_Unix' => '6.92',
9734 'ExtUtils::MM_VMS' => '6.92',
9735 'ExtUtils::MM_VOS' => '6.92',
9736 'ExtUtils::MM_Win32' => '6.92',
9737 'ExtUtils::MM_Win95' => '6.92',
9738 'ExtUtils::MY' => '6.92',
9739 'ExtUtils::MakeMaker' => '6.92',
9740 'ExtUtils::MakeMaker::Config'=> '6.92',
9741 'ExtUtils::Mkbootstrap' => '6.92',
9742 'ExtUtils::Mksymlists' => '6.92',
9743 'ExtUtils::Packlist' => '1.48',
9744 'ExtUtils::ParseXS' => '3.24',
9745 'ExtUtils::ParseXS::Constants'=> '3.24',
9746 'ExtUtils::ParseXS::CountLines'=> '3.24',
9747 'ExtUtils::ParseXS::Eval'=> '3.24',
9748 'ExtUtils::ParseXS::Utilities'=> '3.24',
9749 'ExtUtils::Typemaps' => '3.24',
9750 'ExtUtils::Typemaps::Cmd'=> '3.24',
9751 'ExtUtils::Typemaps::InputMap'=> '3.24',
9752 'ExtUtils::Typemaps::OutputMap'=> '3.24',
9753 'ExtUtils::Typemaps::Type'=> '3.24',
9754 'ExtUtils::testlib' => '6.92',
9755 'File::Find' => '1.27',
9756 'Filter::Simple' => '0.91',
9757 'HTTP::Tiny' => '0.043',
9758 'Hash::Util::FieldHash' => '1.15',
9759 'IO' => '1.31',
9760 'IO::Socket::IP' => '0.29',
9761 'Locale::Codes' => '3.30',
9762 'Locale::Codes::Constants'=> '3.30',
9763 'Locale::Codes::Country'=> '3.30',
9764 'Locale::Codes::Country_Codes'=> '3.30',
9765 'Locale::Codes::Country_Retired'=> '3.30',
9766 'Locale::Codes::Currency'=> '3.30',
9767 'Locale::Codes::Currency_Codes'=> '3.30',
9768 'Locale::Codes::Currency_Retired'=> '3.30',
9769 'Locale::Codes::LangExt'=> '3.30',
9770 'Locale::Codes::LangExt_Codes'=> '3.30',
9771 'Locale::Codes::LangExt_Retired'=> '3.30',
9772 'Locale::Codes::LangFam'=> '3.30',
9773 'Locale::Codes::LangFam_Codes'=> '3.30',
9774 'Locale::Codes::LangFam_Retired'=> '3.30',
9775 'Locale::Codes::LangVar'=> '3.30',
9776 'Locale::Codes::LangVar_Codes'=> '3.30',
9777 'Locale::Codes::LangVar_Retired'=> '3.30',
9778 'Locale::Codes::Language'=> '3.30',
9779 'Locale::Codes::Language_Codes'=> '3.30',
9780 'Locale::Codes::Language_Retired'=> '3.30',
9781 'Locale::Codes::Script' => '3.30',
9782 'Locale::Codes::Script_Codes'=> '3.30',
9783 'Locale::Codes::Script_Retired'=> '3.30',
9784 'Locale::Country' => '3.30',
9785 'Locale::Currency' => '3.30',
9786 'Locale::Language' => '3.30',
9787 'Locale::Script' => '3.30',
9788 'Module::CoreList' => '3.09',
9789 'Module::CoreList::TieHashDelta'=> '3.09',
9790 'Module::CoreList::Utils'=> '3.09',
9791 'Module::Load' => '0.32',
9792 'POSIX' => '1.38_03',
9793 'Parse::CPAN::Meta' => '1.4414',
9794 'Pod::Perldoc' => '3.23',
9795 'Pod::Perldoc::BaseTo' => '3.23',
9796 'Pod::Perldoc::GetOptsOO'=> '3.23',
9797 'Pod::Perldoc::ToANSI' => '3.23',
9798 'Pod::Perldoc::ToChecker'=> '3.23',
9799 'Pod::Perldoc::ToMan' => '3.23',
9800 'Pod::Perldoc::ToNroff' => '3.23',
9801 'Pod::Perldoc::ToPod' => '3.23',
9802 'Pod::Perldoc::ToRtf' => '3.23',
9803 'Pod::Perldoc::ToTerm' => '3.23',
9804 'Pod::Perldoc::ToText' => '3.23',
9805 'Pod::Perldoc::ToTk' => '3.23',
9806 'Pod::Perldoc::ToXml' => '3.23',
9807 'Thread::Queue' => '3.05',
9808 'XS::APItest' => '0.60',
9809 'XS::Typemap' => '0.13',
9810 'autouse' => '1.08',
9811 'base' => '2.22',
9812 'charnames' => '1.40',
9813 'feature' => '1.36',
9814 'mro' => '1.16',
9815 'threads' => '1.93',
9816 'warnings' => '1.23',
9817 'warnings::register' => '1.03',
baca4554
TC
9818 },
9819 removed => {
9820 }
9821 },
b776cec1 9822 5.019011 => {
70152776 9823 delta_from => 5.01901,
b776cec1 9824 changed => {
70152776
SH
9825 'CPAN' => '2.05',
9826 'CPAN::Distribution' => '2.02',
9827 'CPAN::FirstTime' => '5.5306',
9828 'CPAN::Shell' => '5.5004',
9829 'Carp' => '1.3301',
9830 'Carp::Heavy' => '1.3301',
b776cec1 9831 'Config' => '5.019011',
70152776
SH
9832 'ExtUtils::Command::MM' => '6.94',
9833 'ExtUtils::Install' => '1.67',
9834 'ExtUtils::Liblist' => '6.94',
9835 'ExtUtils::Liblist::Kid'=> '6.94',
9836 'ExtUtils::MM' => '6.94',
9837 'ExtUtils::MM_AIX' => '6.94',
9838 'ExtUtils::MM_Any' => '6.94',
9839 'ExtUtils::MM_BeOS' => '6.94',
9840 'ExtUtils::MM_Cygwin' => '6.94',
9841 'ExtUtils::MM_DOS' => '6.94',
9842 'ExtUtils::MM_Darwin' => '6.94',
9843 'ExtUtils::MM_MacOS' => '6.94',
9844 'ExtUtils::MM_NW5' => '6.94',
9845 'ExtUtils::MM_OS2' => '6.94',
9846 'ExtUtils::MM_QNX' => '6.94',
9847 'ExtUtils::MM_UWIN' => '6.94',
9848 'ExtUtils::MM_Unix' => '6.94',
9849 'ExtUtils::MM_VMS' => '6.94',
9850 'ExtUtils::MM_VOS' => '6.94',
9851 'ExtUtils::MM_Win32' => '6.94',
9852 'ExtUtils::MM_Win95' => '6.94',
9853 'ExtUtils::MY' => '6.94',
9854 'ExtUtils::MakeMaker' => '6.94',
9855 'ExtUtils::MakeMaker::Config'=> '6.94',
9856 'ExtUtils::Mkbootstrap' => '6.94',
9857 'ExtUtils::Mksymlists' => '6.94',
9858 'ExtUtils::testlib' => '6.94',
b776cec1
AC
9859 'Module::CoreList' => '3.10',
9860 'Module::CoreList::TieHashDelta'=> '3.10',
9861 'Module::CoreList::Utils'=> '3.10',
70152776
SH
9862 'PerlIO' => '1.09',
9863 'Storable' => '2.49',
9864 'Win32' => '0.49',
9865 'experimental' => '0.007',
b776cec1
AC
9866 },
9867 removed => {
70152776 9868 }
b776cec1 9869 },
1b6c17c2 9870 5.020000 => {
48cbd9dd
SH
9871 delta_from => 5.019011,
9872 changed => {
7520a923
RS
9873 'Config' => '5.02',
9874 'Devel::PPPort' => '3.21',
9875 'Encode' => '2.60',
9876 'Errno' => '1.20_03',
9877 'ExtUtils::Command::MM' => '6.98',
9878 'ExtUtils::Liblist' => '6.98',
9879 'ExtUtils::Liblist::Kid'=> '6.98',
9880 'ExtUtils::MM' => '6.98',
9881 'ExtUtils::MM_AIX' => '6.98',
9882 'ExtUtils::MM_Any' => '6.98',
9883 'ExtUtils::MM_BeOS' => '6.98',
9884 'ExtUtils::MM_Cygwin' => '6.98',
9885 'ExtUtils::MM_DOS' => '6.98',
9886 'ExtUtils::MM_Darwin' => '6.98',
9887 'ExtUtils::MM_MacOS' => '6.98',
9888 'ExtUtils::MM_NW5' => '6.98',
9889 'ExtUtils::MM_OS2' => '6.98',
9890 'ExtUtils::MM_QNX' => '6.98',
9891 'ExtUtils::MM_UWIN' => '6.98',
9892 'ExtUtils::MM_Unix' => '6.98',
9893 'ExtUtils::MM_VMS' => '6.98',
9894 'ExtUtils::MM_VOS' => '6.98',
9895 'ExtUtils::MM_Win32' => '6.98',
9896 'ExtUtils::MM_Win95' => '6.98',
9897 'ExtUtils::MY' => '6.98',
9898 'ExtUtils::MakeMaker' => '6.98',
9899 'ExtUtils::MakeMaker::Config'=> '6.98',
9900 'ExtUtils::Miniperl' => '1.01',
9901 'ExtUtils::Mkbootstrap' => '6.98',
9902 'ExtUtils::Mksymlists' => '6.98',
9903 'ExtUtils::testlib' => '6.98',
9904 'Pod::Functions::Functions'=> '1.08',
48cbd9dd
SH
9905 },
9906 removed => {
9907 }
9908 },
75325e51 9909 5.021000 => {
4f2cd4f7 9910 delta_from => 5.020000,
75325e51 9911 changed => {
4f2cd4f7
RS
9912 'Module::CoreList' => '5.021001',
9913 'Module::CoreList::TieHashDelta'=> '5.021001',
9914 'Module::CoreList::Utils'=> '5.021001',
9915 'feature' => '1.37',
75325e51
RS
9916 },
9917 removed => {
4f2cd4f7
RS
9918 'CGI' => 1,
9919 'CGI::Apache' => 1,
9920 'CGI::Carp' => 1,
9921 'CGI::Cookie' => 1,
9922 'CGI::Fast' => 1,
9923 'CGI::Pretty' => 1,
9924 'CGI::Push' => 1,
9925 'CGI::Switch' => 1,
9926 'CGI::Util' => 1,
9927 'Module::Build' => 1,
9928 'Module::Build::Base' => 1,
9929 'Module::Build::Compat' => 1,
9930 'Module::Build::Config' => 1,
9931 'Module::Build::ConfigData'=> 1,
9932 'Module::Build::Cookbook'=> 1,
9933 'Module::Build::Dumper' => 1,
9934 'Module::Build::ModuleInfo'=> 1,
9935 'Module::Build::Notes' => 1,
9936 'Module::Build::PPMMaker'=> 1,
9937 'Module::Build::Platform::Default'=> 1,
9938 'Module::Build::Platform::MacOS'=> 1,
9939 'Module::Build::Platform::Unix'=> 1,
9940 'Module::Build::Platform::VMS'=> 1,
9941 'Module::Build::Platform::VOS'=> 1,
9942 'Module::Build::Platform::Windows'=> 1,
9943 'Module::Build::Platform::aix'=> 1,
9944 'Module::Build::Platform::cygwin'=> 1,
9945 'Module::Build::Platform::darwin'=> 1,
9946 'Module::Build::Platform::os2'=> 1,
9947 'Module::Build::PodParser'=> 1,
9948 'Module::Build::Version'=> 1,
9949 'Module::Build::YAML' => 1,
9950 'Package::Constants' => 1,
4f2cd4f7 9951 'inc::latest' => 1,
75325e51
RS
9952 }
9953 },
5a534470
RS
9954 5.021001 => {
9955 delta_from => 5.021000,
9956 changed => {
04c0d500
MH
9957 'App::Prove' => '3.32',
9958 'App::Prove::State' => '3.32',
9959 'App::Prove::State::Result'=> '3.32',
9960 'App::Prove::State::Result::Test'=> '3.32',
9961 'Archive::Tar' => '2.00',
9962 'Archive::Tar::Constant'=> '2.00',
9963 'Archive::Tar::File' => '2.00',
9964 'B' => '1.49',
9965 'B::Deparse' => '1.27',
9966 'Benchmark' => '1.19',
9967 'CPAN::Meta' => '2.141520',
9968 'CPAN::Meta::Converter' => '2.141520',
9969 'CPAN::Meta::Feature' => '2.141520',
9970 'CPAN::Meta::History' => '2.141520',
9971 'CPAN::Meta::Prereqs' => '2.141520',
9972 'CPAN::Meta::Spec' => '2.141520',
9973 'CPAN::Meta::Validator' => '2.141520',
9974 'Carp' => '1.34',
9975 'Carp::Heavy' => '1.34',
5a534470 9976 'Config' => '5.021001',
04c0d500
MH
9977 'Cwd' => '3.48',
9978 'Data::Dumper' => '2.152',
9979 'Devel::PPPort' => '3.24',
9980 'Devel::Peek' => '1.17',
9981 'Digest::SHA' => '5.92',
9982 'DynaLoader' => '1.26',
9983 'Encode' => '2.62',
9984 'Errno' => '1.20_04',
9985 'Exporter' => '5.71',
9986 'Exporter::Heavy' => '5.71',
9987 'ExtUtils::Install' => '1.68',
9988 'ExtUtils::Miniperl' => '1.02',
9989 'ExtUtils::ParseXS' => '3.25',
9990 'ExtUtils::ParseXS::Constants'=> '3.25',
9991 'ExtUtils::ParseXS::CountLines'=> '3.25',
9992 'ExtUtils::ParseXS::Eval'=> '3.25',
9993 'ExtUtils::ParseXS::Utilities'=> '3.25',
9994 'ExtUtils::Typemaps' => '3.25',
9995 'ExtUtils::Typemaps::Cmd'=> '3.25',
9996 'ExtUtils::Typemaps::InputMap'=> '3.25',
9997 'ExtUtils::Typemaps::OutputMap'=> '3.25',
9998 'ExtUtils::Typemaps::Type'=> '3.25',
9999 'Fatal' => '2.25',
10000 'File::Spec' => '3.48',
10001 'File::Spec::Cygwin' => '3.48',
10002 'File::Spec::Epoc' => '3.48',
10003 'File::Spec::Functions' => '3.48',
10004 'File::Spec::Mac' => '3.48',
10005 'File::Spec::OS2' => '3.48',
10006 'File::Spec::Unix' => '3.48',
10007 'File::Spec::VMS' => '3.48',
10008 'File::Spec::Win32' => '3.48',
10009 'Hash::Util' => '0.17',
10010 'IO' => '1.32',
10011 'List::Util' => '1.39',
10012 'List::Util::XS' => '1.39',
10013 'Locale::Codes' => '3.31',
10014 'Locale::Codes::Constants'=> '3.31',
10015 'Locale::Codes::Country'=> '3.31',
10016 'Locale::Codes::Country_Codes'=> '3.31',
10017 'Locale::Codes::Country_Retired'=> '3.31',
10018 'Locale::Codes::Currency'=> '3.31',
10019 'Locale::Codes::Currency_Codes'=> '3.31',
10020 'Locale::Codes::Currency_Retired'=> '3.31',
10021 'Locale::Codes::LangExt'=> '3.31',
10022 'Locale::Codes::LangExt_Codes'=> '3.31',
10023 'Locale::Codes::LangExt_Retired'=> '3.31',
10024 'Locale::Codes::LangFam'=> '3.31',
10025 'Locale::Codes::LangFam_Codes'=> '3.31',
10026 'Locale::Codes::LangFam_Retired'=> '3.31',
10027 'Locale::Codes::LangVar'=> '3.31',
10028 'Locale::Codes::LangVar_Codes'=> '3.31',
10029 'Locale::Codes::LangVar_Retired'=> '3.31',
10030 'Locale::Codes::Language'=> '3.31',
10031 'Locale::Codes::Language_Codes'=> '3.31',
10032 'Locale::Codes::Language_Retired'=> '3.31',
10033 'Locale::Codes::Script' => '3.31',
10034 'Locale::Codes::Script_Codes'=> '3.31',
10035 'Locale::Codes::Script_Retired'=> '3.31',
10036 'Locale::Country' => '3.31',
10037 'Locale::Currency' => '3.31',
10038 'Locale::Language' => '3.31',
10039 'Locale::Script' => '3.31',
10040 'Math::BigFloat' => '1.9994',
10041 'Math::BigInt' => '1.9995',
10042 'Math::BigInt::Calc' => '1.9994',
10043 'Math::BigInt::CalcEmu' => '1.9994',
10044 'Math::BigRat' => '0.2608',
10045 'Module::CoreList' => '5.021001_01',
10046 'Module::CoreList::TieHashDelta'=> '5.021001_01',
10047 'Module::CoreList::Utils'=> '5.021001_01',
10048 'Module::Metadata' => '1.000024',
04c0d500
MH
10049 'NDBM_File' => '1.13',
10050 'Net::Config' => '1.14',
10051 'Net::SMTP' => '2.34',
10052 'Net::Time' => '2.11',
10053 'OS2::Process' => '1.10',
10054 'POSIX' => '1.40',
10055 'PerlIO::encoding' => '0.19',
10056 'PerlIO::mmap' => '0.013',
10057 'PerlIO::scalar' => '0.19',
10058 'PerlIO::via' => '0.15',
10059 'Pod::Html' => '1.22',
10060 'Scalar::Util' => '1.39',
10061 'SelfLoader' => '1.22',
10062 'Socket' => '2.014',
10063 'Storable' => '2.51',
10064 'TAP::Base' => '3.32',
10065 'TAP::Formatter::Base' => '3.32',
10066 'TAP::Formatter::Color' => '3.32',
10067 'TAP::Formatter::Console'=> '3.32',
10068 'TAP::Formatter::Console::ParallelSession'=> '3.32',
10069 'TAP::Formatter::Console::Session'=> '3.32',
10070 'TAP::Formatter::File' => '3.32',
10071 'TAP::Formatter::File::Session'=> '3.32',
10072 'TAP::Formatter::Session'=> '3.32',
10073 'TAP::Harness' => '3.32',
10074 'TAP::Harness::Env' => '3.32',
10075 'TAP::Object' => '3.32',
10076 'TAP::Parser' => '3.32',
10077 'TAP::Parser::Aggregator'=> '3.32',
10078 'TAP::Parser::Grammar' => '3.32',
10079 'TAP::Parser::Iterator' => '3.32',
10080 'TAP::Parser::Iterator::Array'=> '3.32',
10081 'TAP::Parser::Iterator::Process'=> '3.32',
10082 'TAP::Parser::Iterator::Stream'=> '3.32',
10083 'TAP::Parser::IteratorFactory'=> '3.32',
10084 'TAP::Parser::Multiplexer'=> '3.32',
10085 'TAP::Parser::Result' => '3.32',
10086 'TAP::Parser::Result::Bailout'=> '3.32',
10087 'TAP::Parser::Result::Comment'=> '3.32',
10088 'TAP::Parser::Result::Plan'=> '3.32',
10089 'TAP::Parser::Result::Pragma'=> '3.32',
10090 'TAP::Parser::Result::Test'=> '3.32',
10091 'TAP::Parser::Result::Unknown'=> '3.32',
10092 'TAP::Parser::Result::Version'=> '3.32',
10093 'TAP::Parser::Result::YAML'=> '3.32',
10094 'TAP::Parser::ResultFactory'=> '3.32',
10095 'TAP::Parser::Scheduler'=> '3.32',
10096 'TAP::Parser::Scheduler::Job'=> '3.32',
10097 'TAP::Parser::Scheduler::Spinner'=> '3.32',
10098 'TAP::Parser::Source' => '3.32',
10099 'TAP::Parser::SourceHandler'=> '3.32',
10100 'TAP::Parser::SourceHandler::Executable'=> '3.32',
10101 'TAP::Parser::SourceHandler::File'=> '3.32',
10102 'TAP::Parser::SourceHandler::Handle'=> '3.32',
10103 'TAP::Parser::SourceHandler::Perl'=> '3.32',
10104 'TAP::Parser::SourceHandler::RawTAP'=> '3.32',
10105 'TAP::Parser::YAMLish::Reader'=> '3.32',
10106 'TAP::Parser::YAMLish::Writer'=> '3.32',
10107 'Term::ANSIColor' => '4.03',
10108 'Test::Builder' => '1.001003',
10109 'Test::Builder::Module' => '1.001003',
10110 'Test::Builder::Tester' => '1.23_003',
10111 'Test::Harness' => '3.32',
10112 'Test::More' => '1.001003',
10113 'Test::Simple' => '1.001003',
10114 'Tie::File' => '1.01',
10115 'Unicode' => '7.0.0',
10116 'Unicode::Collate' => '1.07',
10117 'Unicode::Normalize' => '1.18',
10118 'Unicode::UCD' => '0.58',
10119 'XS::APItest' => '0.61',
10120 '_charnames' => '1.41',
10121 'autodie' => '2.25',
10122 'autodie::Scope::Guard' => '2.25',
10123 'autodie::Scope::GuardStack'=> '2.25',
10124 'autodie::ScopeUtil' => '2.25',
10125 'autodie::exception' => '2.25',
10126 'autodie::exception::system'=> '2.25',
10127 'autodie::hints' => '2.25',
10128 'autodie::skip' => '2.25',
10129 'charnames' => '1.41',
10130 'locale' => '1.04',
10131 'threads' => '1.94',
10132 'utf8' => '1.14',
10133 'warnings' => '1.24',
5a534470
RS
10134 },
10135 removed => {
10136 }
10137 },
2901561d
MH
10138 5.021002 => {
10139 delta_from => 5.021001,
10140 changed => {
6488e103 10141 'B' => '1.50',
2901561d 10142 'Config' => '5.021002',
6488e103
A
10143 'Cwd' => '3.49',
10144 'Devel::Peek' => '1.18',
10145 'ExtUtils::Manifest' => '1.64',
10146 'File::Copy' => '2.30',
10147 'File::Spec' => '3.49',
10148 'File::Spec::Cygwin' => '3.49',
10149 'File::Spec::Epoc' => '3.49',
10150 'File::Spec::Functions' => '3.49',
10151 'File::Spec::Mac' => '3.49',
10152 'File::Spec::OS2' => '3.49',
10153 'File::Spec::Unix' => '3.49',
10154 'File::Spec::VMS' => '3.49',
10155 'File::Spec::Win32' => '3.49',
10156 'Filter::Simple' => '0.92',
10157 'Hash::Util' => '0.18',
10158 'IO' => '1.33',
10159 'IO::Socket::IP' => '0.31',
10160 'IPC::Open3' => '1.17',
10161 'Math::BigFloat' => '1.9996',
10162 'Math::BigInt' => '1.9996',
10163 'Math::BigInt::Calc' => '1.9996',
10164 'Math::BigInt::CalcEmu' => '1.9996',
2901561d
MH
10165 'Module::CoreList' => '5.021002',
10166 'Module::CoreList::TieHashDelta'=> '5.021002',
10167 'Module::CoreList::Utils'=> '5.021002',
6488e103
A
10168 'POSIX' => '1.41',
10169 'Pod::Usage' => '1.64',
10170 'XS::APItest' => '0.62',
10171 'arybase' => '0.08',
10172 'experimental' => '0.008',
10173 'threads' => '1.95',
10174 'warnings' => '1.26',
2901561d
MH
10175 },
10176 removed => {
10177 }
10178 },
633c51bc
A
10179 5.021003 => {
10180 delta_from => 5.021002,
10181 changed => {
46e58890
PM
10182 'B::Debug' => '1.21',
10183 'CPAN::Meta' => '2.142060',
10184 'CPAN::Meta::Converter' => '2.142060',
10185 'CPAN::Meta::Feature' => '2.142060',
10186 'CPAN::Meta::History' => '2.142060',
10187 'CPAN::Meta::Merge' => '2.142060',
10188 'CPAN::Meta::Prereqs' => '2.142060',
10189 'CPAN::Meta::Requirements'=> '2.126',
10190 'CPAN::Meta::Spec' => '2.142060',
10191 'CPAN::Meta::Validator' => '2.142060',
633c51bc 10192 'Config' => '5.021003',
46e58890
PM
10193 'Config::Perl::V' => '0.22',
10194 'ExtUtils::CBuilder' => '0.280217',
10195 'ExtUtils::CBuilder::Base'=> '0.280217',
10196 'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10197 'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10198 'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10199 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10200 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10201 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10202 'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10203 'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10204 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10205 'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10206 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10207 'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10208 'ExtUtils::Manifest' => '1.65',
10209 'HTTP::Tiny' => '0.047',
10210 'IPC::Open3' => '1.18',
10211 'Module::CoreList' => '5.021003',
10212 'Module::CoreList::TieHashDelta'=> '5.021003',
10213 'Module::CoreList::Utils'=> '5.021003',
10214 'Opcode' => '1.28',
10215 'POSIX' => '1.42',
10216 'Safe' => '2.38',
10217 'Socket' => '2.015',
10218 'Sys::Hostname' => '1.19',
10219 'UNIVERSAL' => '1.12',
10220 'XS::APItest' => '0.63',
10221 'perlfaq' => '5.0150045',
633c51bc
A
10222 },
10223 removed => {
10224 }
10225 },
1c6aa017
SH
10226 5.020001 => {
10227 delta_from => 5.020000,
10228 changed => {
10229 'Config' => '5.020001',
10230 'Config::Perl::V' => '0.22',
10231 'Cwd' => '3.48',
10232 'Exporter' => '5.71',
10233 'Exporter::Heavy' => '5.71',
10234 'ExtUtils::CBuilder' => '0.280217',
10235 'ExtUtils::CBuilder::Base'=> '0.280217',
10236 'ExtUtils::CBuilder::Platform::Unix'=> '0.280217',
10237 'ExtUtils::CBuilder::Platform::VMS'=> '0.280217',
10238 'ExtUtils::CBuilder::Platform::Windows'=> '0.280217',
10239 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217',
10240 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217',
10241 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217',
10242 'ExtUtils::CBuilder::Platform::aix'=> '0.280217',
10243 'ExtUtils::CBuilder::Platform::android'=> '0.280217',
10244 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217',
10245 'ExtUtils::CBuilder::Platform::darwin'=> '0.280217',
10246 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217',
10247 'ExtUtils::CBuilder::Platform::os2'=> '0.280217',
10248 'File::Copy' => '2.30',
10249 'File::Spec' => '3.48',
10250 'File::Spec::Cygwin' => '3.48',
10251 'File::Spec::Epoc' => '3.48',
10252 'File::Spec::Functions' => '3.48',
10253 'File::Spec::Mac' => '3.48',
10254 'File::Spec::OS2' => '3.48',
10255 'File::Spec::Unix' => '3.48',
10256 'File::Spec::VMS' => '3.48',
10257 'File::Spec::Win32' => '3.48',
10258 'Module::CoreList' => '5.020001',
10259 'Module::CoreList::TieHashDelta'=> '5.020001',
10260 'Module::CoreList::Utils'=> '5.020001',
10261 'PerlIO::via' => '0.15',
10262 'Unicode::UCD' => '0.58',
10263 'XS::APItest' => '0.60_01',
10264 'utf8' => '1.13_01',
10265 'version' => '0.9909',
10266 'version::regex' => '0.9909',
10267 'version::vpp' => '0.9909',
10268 },
10269 removed => {
10270 }
10271 },
14cc2657
SH
10272 5.021004 => {
10273 delta_from => 5.021003,
10274 changed => {
50e7b15e
SH
10275 'App::Prove' => '3.33',
10276 'App::Prove::State' => '3.33',
10277 'App::Prove::State::Result'=> '3.33',
10278 'App::Prove::State::Result::Test'=> '3.33',
10279 'Archive::Tar' => '2.02',
10280 'Archive::Tar::Constant'=> '2.02',
10281 'Archive::Tar::File' => '2.02',
10282 'Attribute::Handlers' => '0.97',
10283 'B' => '1.51',
10284 'B::Concise' => '0.993',
10285 'B::Deparse' => '1.28',
10286 'B::Op_private' => '5.021004',
10287 'CPAN::Meta::Requirements'=> '2.128',
10288 'Config' => '5.021004',
10289 'Cwd' => '3.50',
10290 'Data::Dumper' => '2.154',
10291 'ExtUtils::CBuilder' => '0.280219',
10292 'ExtUtils::CBuilder::Base'=> '0.280219',
10293 'ExtUtils::CBuilder::Platform::Unix'=> '0.280219',
10294 'ExtUtils::CBuilder::Platform::VMS'=> '0.280219',
10295 'ExtUtils::CBuilder::Platform::Windows'=> '0.280219',
10296 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219',
10297 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219',
10298 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219',
10299 'ExtUtils::CBuilder::Platform::aix'=> '0.280219',
10300 'ExtUtils::CBuilder::Platform::android'=> '0.280219',
10301 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219',
10302 'ExtUtils::CBuilder::Platform::darwin'=> '0.280219',
10303 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219',
10304 'ExtUtils::CBuilder::Platform::os2'=> '0.280219',
10305 'ExtUtils::Install' => '2.04',
10306 'ExtUtils::Installed' => '2.04',
10307 'ExtUtils::Liblist::Kid'=> '6.98_01',
10308 'ExtUtils::Manifest' => '1.68',
10309 'ExtUtils::Packlist' => '2.04',
10310 'File::Find' => '1.28',
10311 'File::Spec' => '3.50',
10312 'File::Spec::Cygwin' => '3.50',
10313 'File::Spec::Epoc' => '3.50',
10314 'File::Spec::Functions' => '3.50',
10315 'File::Spec::Mac' => '3.50',
10316 'File::Spec::OS2' => '3.50',
10317 'File::Spec::Unix' => '3.50',
10318 'File::Spec::VMS' => '3.50',
10319 'File::Spec::Win32' => '3.50',
10320 'Getopt::Std' => '1.11',
10321 'HTTP::Tiny' => '0.049',
10322 'IO' => '1.34',
10323 'IO::Socket::IP' => '0.32',
10324 'List::Util' => '1.41',
10325 'List::Util::XS' => '1.41',
10326 'Locale::Codes' => '3.32',
10327 'Locale::Codes::Constants'=> '3.32',
10328 'Locale::Codes::Country'=> '3.32',
10329 'Locale::Codes::Country_Codes'=> '3.32',
10330 'Locale::Codes::Country_Retired'=> '3.32',
10331 'Locale::Codes::Currency'=> '3.32',
10332 'Locale::Codes::Currency_Codes'=> '3.32',
10333 'Locale::Codes::Currency_Retired'=> '3.32',
10334 'Locale::Codes::LangExt'=> '3.32',
10335 'Locale::Codes::LangExt_Codes'=> '3.32',
10336 'Locale::Codes::LangExt_Retired'=> '3.32',
10337 'Locale::Codes::LangFam'=> '3.32',
10338 'Locale::Codes::LangFam_Codes'=> '3.32',
10339 'Locale::Codes::LangFam_Retired'=> '3.32',
10340 'Locale::Codes::LangVar'=> '3.32',
10341 'Locale::Codes::LangVar_Codes'=> '3.32',
10342 'Locale::Codes::LangVar_Retired'=> '3.32',
10343 'Locale::Codes::Language'=> '3.32',
10344 'Locale::Codes::Language_Codes'=> '3.32',
10345 'Locale::Codes::Language_Retired'=> '3.32',
10346 'Locale::Codes::Script' => '3.32',
10347 'Locale::Codes::Script_Codes'=> '3.32',
10348 'Locale::Codes::Script_Retired'=> '3.32',
10349 'Locale::Country' => '3.32',
10350 'Locale::Currency' => '3.32',
10351 'Locale::Language' => '3.32',
10352 'Locale::Script' => '3.32',
10353 'Math::BigFloat' => '1.9997',
10354 'Math::BigInt' => '1.9997',
10355 'Math::BigInt::Calc' => '1.9997',
10356 'Math::BigInt::CalcEmu' => '1.9997',
10357 'Module::CoreList' => '5.20140920',
10358 'Module::CoreList::TieHashDelta'=> '5.20140920',
10359 'Module::CoreList::Utils'=> '5.20140920',
10360 'POSIX' => '1.43',
10361 'Pod::Perldoc' => '3.24',
10362 'Pod::Perldoc::BaseTo' => '3.24',
10363 'Pod::Perldoc::GetOptsOO'=> '3.24',
10364 'Pod::Perldoc::ToANSI' => '3.24',
10365 'Pod::Perldoc::ToChecker'=> '3.24',
10366 'Pod::Perldoc::ToMan' => '3.24',
10367 'Pod::Perldoc::ToNroff' => '3.24',
10368 'Pod::Perldoc::ToPod' => '3.24',
10369 'Pod::Perldoc::ToRtf' => '3.24',
10370 'Pod::Perldoc::ToTerm' => '3.24',
10371 'Pod::Perldoc::ToText' => '3.24',
10372 'Pod::Perldoc::ToTk' => '3.24',
10373 'Pod::Perldoc::ToXml' => '3.24',
10374 'Scalar::Util' => '1.41',
10375 'Sub::Util' => '1.41',
10376 'TAP::Base' => '3.33',
10377 'TAP::Formatter::Base' => '3.33',
10378 'TAP::Formatter::Color' => '3.33',
10379 'TAP::Formatter::Console'=> '3.33',
10380 'TAP::Formatter::Console::ParallelSession'=> '3.33',
10381 'TAP::Formatter::Console::Session'=> '3.33',
10382 'TAP::Formatter::File' => '3.33',
10383 'TAP::Formatter::File::Session'=> '3.33',
10384 'TAP::Formatter::Session'=> '3.33',
10385 'TAP::Harness' => '3.33',
10386 'TAP::Harness::Env' => '3.33',
10387 'TAP::Object' => '3.33',
10388 'TAP::Parser' => '3.33',
10389 'TAP::Parser::Aggregator'=> '3.33',
10390 'TAP::Parser::Grammar' => '3.33',
10391 'TAP::Parser::Iterator' => '3.33',
10392 'TAP::Parser::Iterator::Array'=> '3.33',
10393 'TAP::Parser::Iterator::Process'=> '3.33',
10394 'TAP::Parser::Iterator::Stream'=> '3.33',
10395 'TAP::Parser::IteratorFactory'=> '3.33',
10396 'TAP::Parser::Multiplexer'=> '3.33',
10397 'TAP::Parser::Result' => '3.33',
10398 'TAP::Parser::Result::Bailout'=> '3.33',
10399 'TAP::Parser::Result::Comment'=> '3.33',
10400 'TAP::Parser::Result::Plan'=> '3.33',
10401 'TAP::Parser::Result::Pragma'=> '3.33',
10402 'TAP::Parser::Result::Test'=> '3.33',
10403 'TAP::Parser::Result::Unknown'=> '3.33',
10404 'TAP::Parser::Result::Version'=> '3.33',
10405 'TAP::Parser::Result::YAML'=> '3.33',
10406 'TAP::Parser::ResultFactory'=> '3.33',
10407 'TAP::Parser::Scheduler'=> '3.33',
10408 'TAP::Parser::Scheduler::Job'=> '3.33',
10409 'TAP::Parser::Scheduler::Spinner'=> '3.33',
10410 'TAP::Parser::Source' => '3.33',
10411 'TAP::Parser::SourceHandler'=> '3.33',
10412 'TAP::Parser::SourceHandler::Executable'=> '3.33',
10413 'TAP::Parser::SourceHandler::File'=> '3.33',
10414 'TAP::Parser::SourceHandler::Handle'=> '3.33',
10415 'TAP::Parser::SourceHandler::Perl'=> '3.33',
10416 'TAP::Parser::SourceHandler::RawTAP'=> '3.33',
10417 'TAP::Parser::YAMLish::Reader'=> '3.33',
10418 'TAP::Parser::YAMLish::Writer'=> '3.33',
10419 'Term::ReadLine' => '1.15',
10420 'Test::Builder' => '1.001006',
10421 'Test::Builder::Module' => '1.001006',
10422 'Test::Builder::Tester' => '1.24',
10423 'Test::Builder::Tester::Color'=> '1.24',
10424 'Test::Harness' => '3.33',
10425 'Test::More' => '1.001006',
10426 'Test::Simple' => '1.001006',
10427 'Time::Piece' => '1.29',
10428 'Time::Seconds' => '1.29',
10429 'XS::APItest' => '0.64',
10430 '_charnames' => '1.42',
10431 'attributes' => '0.23',
10432 'bigint' => '0.37',
10433 'bignum' => '0.38',
10434 'bigrat' => '0.37',
10435 'constant' => '1.32',
10436 'experimental' => '0.010',
10437 'overload' => '1.23',
10438 'threads' => '1.96',
10439 'version' => '0.9909',
10440 'version::regex' => '0.9909',
10441 'version::vpp' => '0.9909',
14cc2657
SH
10442 },
10443 removed => {
10444 }
10445 },
84d03adf
SH
10446 5.021005 => {
10447 delta_from => 5.021004,
10448 changed => {
54457154
A
10449 'B' => '1.52',
10450 'B::Concise' => '0.994',
10451 'B::Debug' => '1.22',
10452 'B::Deparse' => '1.29',
84d03adf 10453 'B::Op_private' => '5.021005',
54457154
A
10454 'CPAN::Meta' => '2.142690',
10455 'CPAN::Meta::Converter' => '2.142690',
10456 'CPAN::Meta::Feature' => '2.142690',
10457 'CPAN::Meta::History' => '2.142690',
10458 'CPAN::Meta::Merge' => '2.142690',
10459 'CPAN::Meta::Prereqs' => '2.142690',
10460 'CPAN::Meta::Spec' => '2.142690',
10461 'CPAN::Meta::Validator' => '2.142690',
10462 'Compress::Raw::Bzip2' => '2.066',
10463 'Compress::Raw::Zlib' => '2.066',
10464 'Compress::Zlib' => '2.066',
84d03adf 10465 'Config' => '5.021005',
54457154
A
10466 'Cwd' => '3.51',
10467 'DynaLoader' => '1.27',
10468 'Errno' => '1.21',
10469 'ExtUtils::CBuilder' => '0.280220',
10470 'ExtUtils::CBuilder::Base'=> '0.280220',
10471 'ExtUtils::CBuilder::Platform::Unix'=> '0.280220',
10472 'ExtUtils::CBuilder::Platform::VMS'=> '0.280220',
10473 'ExtUtils::CBuilder::Platform::Windows'=> '0.280220',
10474 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220',
10475 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220',
10476 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220',
10477 'ExtUtils::CBuilder::Platform::aix'=> '0.280220',
10478 'ExtUtils::CBuilder::Platform::android'=> '0.280220',
10479 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220',
10480 'ExtUtils::CBuilder::Platform::darwin'=> '0.280220',
10481 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220',
10482 'ExtUtils::CBuilder::Platform::os2'=> '0.280220',
10483 'ExtUtils::Miniperl' => '1.03',
10484 'Fcntl' => '1.13',
10485 'File::Find' => '1.29',
10486 'File::Spec' => '3.51',
10487 'File::Spec::Cygwin' => '3.51',
10488 'File::Spec::Epoc' => '3.51',
10489 'File::Spec::Functions' => '3.51',
10490 'File::Spec::Mac' => '3.51',
10491 'File::Spec::OS2' => '3.51',
10492 'File::Spec::Unix' => '3.51',
10493 'File::Spec::VMS' => '3.51',
10494 'File::Spec::Win32' => '3.51',
10495 'HTTP::Tiny' => '0.050',
10496 'IO::Compress::Adapter::Bzip2'=> '2.066',
10497 'IO::Compress::Adapter::Deflate'=> '2.066',
10498 'IO::Compress::Adapter::Identity'=> '2.066',
10499 'IO::Compress::Base' => '2.066',
10500 'IO::Compress::Base::Common'=> '2.066',
10501 'IO::Compress::Bzip2' => '2.066',
10502 'IO::Compress::Deflate' => '2.066',
10503 'IO::Compress::Gzip' => '2.066',
10504 'IO::Compress::Gzip::Constants'=> '2.066',
10505 'IO::Compress::RawDeflate'=> '2.066',
10506 'IO::Compress::Zip' => '2.066',
10507 'IO::Compress::Zip::Constants'=> '2.066',
10508 'IO::Compress::Zlib::Constants'=> '2.066',
10509 'IO::Compress::Zlib::Extra'=> '2.066',
10510 'IO::Uncompress::Adapter::Bunzip2'=> '2.066',
10511 'IO::Uncompress::Adapter::Identity'=> '2.066',
10512 'IO::Uncompress::Adapter::Inflate'=> '2.066',
10513 'IO::Uncompress::AnyInflate'=> '2.066',
10514 'IO::Uncompress::AnyUncompress'=> '2.066',
10515 'IO::Uncompress::Base' => '2.066',
10516 'IO::Uncompress::Bunzip2'=> '2.066',
10517 'IO::Uncompress::Gunzip'=> '2.066',
10518 'IO::Uncompress::Inflate'=> '2.066',
10519 'IO::Uncompress::RawInflate'=> '2.066',
10520 'IO::Uncompress::Unzip' => '2.066',
10521 'JSON::PP' => '2.27300',
84d03adf
SH
10522 'Module::CoreList' => '5.20141020',
10523 'Module::CoreList::TieHashDelta'=> '5.20141020',
10524 'Module::CoreList::Utils'=> '5.20141020',
54457154
A
10525 'Net::Cmd' => '3.02',
10526 'Net::Config' => '3.02',
10527 'Net::Domain' => '3.02',
10528 'Net::FTP' => '3.02',
10529 'Net::FTP::A' => '3.02',
10530 'Net::FTP::E' => '3.02',
10531 'Net::FTP::I' => '3.02',
10532 'Net::FTP::L' => '3.02',
10533 'Net::FTP::dataconn' => '3.02',
10534 'Net::NNTP' => '3.02',
10535 'Net::Netrc' => '3.02',
10536 'Net::POP3' => '3.02',
10537 'Net::SMTP' => '3.02',
10538 'Net::Time' => '3.02',
10539 'Opcode' => '1.29',
10540 'POSIX' => '1.45',
10541 'Socket' => '2.016',
10542 'Test::Builder' => '1.001008',
10543 'Test::Builder::Module' => '1.001008',
10544 'Test::More' => '1.001008',
10545 'Test::Simple' => '1.001008',
10546 'XS::APItest' => '0.65',
10547 'XSLoader' => '0.18',
10548 'attributes' => '0.24',
10549 'experimental' => '0.012',
10550 'feature' => '1.38',
10551 'perlfaq' => '5.0150046',
10552 're' => '0.27',
10553 'threads::shared' => '1.47',
10554 'warnings' => '1.28',
10555 'warnings::register' => '1.04',
84d03adf
SH
10556 },
10557 removed => {
10558 }
10559 },
e22432a4 10560 5.021006 => {
20f5d8f8
CBW
10561 delta_from => 5.021005,
10562 changed => {
10563 'App::Prove' => '3.34',
10564 'App::Prove::State' => '3.34',
10565 'App::Prove::State::Result'=> '3.34',
10566 'App::Prove::State::Result::Test'=> '3.34',
10567 'B' => '1.53',
10568 'B::Concise' => '0.995',
10569 'B::Deparse' => '1.30',
10570 'B::Op_private' => '5.021006',
10571 'CPAN::Meta' => '2.143240',
10572 'CPAN::Meta::Converter' => '2.143240',
10573 'CPAN::Meta::Feature' => '2.143240',
10574 'CPAN::Meta::History' => '2.143240',
10575 'CPAN::Meta::Merge' => '2.143240',
10576 'CPAN::Meta::Prereqs' => '2.143240',
10577 'CPAN::Meta::Requirements'=> '2.130',
10578 'CPAN::Meta::Spec' => '2.143240',
10579 'CPAN::Meta::Validator' => '2.143240',
10580 'Config' => '5.021006',
10581 'Devel::Peek' => '1.19',
10582 'Digest::SHA' => '5.93',
10583 'DynaLoader' => '1.28',
10584 'Encode' => '2.64',
10585 'Exporter' => '5.72',
10586 'Exporter::Heavy' => '5.72',
10587 'ExtUtils::Command::MM' => '7.02',
10588 'ExtUtils::Liblist' => '7.02',
10589 'ExtUtils::Liblist::Kid'=> '7.02',
10590 'ExtUtils::MM' => '7.02',
10591 'ExtUtils::MM_AIX' => '7.02',
10592 'ExtUtils::MM_Any' => '7.02',
10593 'ExtUtils::MM_BeOS' => '7.02',
10594 'ExtUtils::MM_Cygwin' => '7.02',
10595 'ExtUtils::MM_DOS' => '7.02',
10596 'ExtUtils::MM_Darwin' => '7.02',
10597 'ExtUtils::MM_MacOS' => '7.02',
10598 'ExtUtils::MM_NW5' => '7.02',
10599 'ExtUtils::MM_OS2' => '7.02',
10600 'ExtUtils::MM_QNX' => '7.02',
10601 'ExtUtils::MM_UWIN' => '7.02',
10602 'ExtUtils::MM_Unix' => '7.02',
10603 'ExtUtils::MM_VMS' => '7.02',
10604 'ExtUtils::MM_VOS' => '7.02',
10605 'ExtUtils::MM_Win32' => '7.02',
10606 'ExtUtils::MM_Win95' => '7.02',
10607 'ExtUtils::MY' => '7.02',
10608 'ExtUtils::MakeMaker' => '7.02',
10609 'ExtUtils::MakeMaker::Config'=> '7.02',
10610 'ExtUtils::MakeMaker::Locale'=> '7.02',
10611 'ExtUtils::MakeMaker::version'=> '7.02',
10612 'ExtUtils::MakeMaker::version::regex'=> '7.02',
10613 'ExtUtils::MakeMaker::version::vpp'=> '7.02',
10614 'ExtUtils::Manifest' => '1.69',
10615 'ExtUtils::Mkbootstrap' => '7.02',
10616 'ExtUtils::Mksymlists' => '7.02',
10617 'ExtUtils::ParseXS' => '3.26',
10618 'ExtUtils::ParseXS::Constants'=> '3.26',
10619 'ExtUtils::ParseXS::CountLines'=> '3.26',
10620 'ExtUtils::ParseXS::Eval'=> '3.26',
10621 'ExtUtils::ParseXS::Utilities'=> '3.26',
10622 'ExtUtils::testlib' => '7.02',
10623 'File::Spec::VMS' => '3.52',
10624 'HTTP::Tiny' => '0.051',
10625 'I18N::Langinfo' => '0.12',
10626 'IO::Socket' => '1.38',
10627 'Module::CoreList' => '5.20141120',
10628 'Module::CoreList::TieHashDelta'=> '5.20141120',
10629 'Module::CoreList::Utils'=> '5.20141120',
10630 'POSIX' => '1.46',
10631 'PerlIO::encoding' => '0.20',
10632 'PerlIO::scalar' => '0.20',
10633 'TAP::Base' => '3.34',
10634 'TAP::Formatter::Base' => '3.34',
10635 'TAP::Formatter::Color' => '3.34',
10636 'TAP::Formatter::Console'=> '3.34',
10637 'TAP::Formatter::Console::ParallelSession'=> '3.34',
10638 'TAP::Formatter::Console::Session'=> '3.34',
10639 'TAP::Formatter::File' => '3.34',
10640 'TAP::Formatter::File::Session'=> '3.34',
10641 'TAP::Formatter::Session'=> '3.34',
10642 'TAP::Harness' => '3.34',
10643 'TAP::Harness::Env' => '3.34',
10644 'TAP::Object' => '3.34',
10645 'TAP::Parser' => '3.34',
10646 'TAP::Parser::Aggregator'=> '3.34',
10647 'TAP::Parser::Grammar' => '3.34',
10648 'TAP::Parser::Iterator' => '3.34',
10649 'TAP::Parser::Iterator::Array'=> '3.34',
10650 'TAP::Parser::Iterator::Process'=> '3.34',
10651 'TAP::Parser::Iterator::Stream'=> '3.34',
10652 'TAP::Parser::IteratorFactory'=> '3.34',
10653 'TAP::Parser::Multiplexer'=> '3.34',
10654 'TAP::Parser::Result' => '3.34',
10655 'TAP::Parser::Result::Bailout'=> '3.34',
10656 'TAP::Parser::Result::Comment'=> '3.34',
10657 'TAP::Parser::Result::Plan'=> '3.34',
10658 'TAP::Parser::Result::Pragma'=> '3.34',
10659 'TAP::Parser::Result::Test'=> '3.34',
10660 'TAP::Parser::Result::Unknown'=> '3.34',
10661 'TAP::Parser::Result::Version'=> '3.34',
10662 'TAP::Parser::Result::YAML'=> '3.34',
10663 'TAP::Parser::ResultFactory'=> '3.34',
10664 'TAP::Parser::Scheduler'=> '3.34',
10665 'TAP::Parser::Scheduler::Job'=> '3.34',
10666 'TAP::Parser::Scheduler::Spinner'=> '3.34',
10667 'TAP::Parser::Source' => '3.34',
10668 'TAP::Parser::SourceHandler'=> '3.34',
10669 'TAP::Parser::SourceHandler::Executable'=> '3.34',
10670 'TAP::Parser::SourceHandler::File'=> '3.34',
10671 'TAP::Parser::SourceHandler::Handle'=> '3.34',
10672 'TAP::Parser::SourceHandler::Perl'=> '3.34',
10673 'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
10674 'TAP::Parser::YAMLish::Reader'=> '3.34',
10675 'TAP::Parser::YAMLish::Writer'=> '3.34',
10676 'Test::Builder' => '1.301001_075',
10677 'Test::Builder::Module' => '1.301001_075',
10678 'Test::Builder::Tester' => '1.301001_075',
10679 'Test::Builder::Tester::Color'=> '1.301001_075',
10680 'Test::Harness' => '3.34',
10681 'Test::More' => '1.301001_075',
10682 'Test::More::DeepCheck' => undef,
10683 'Test::More::DeepCheck::Strict'=> undef,
10684 'Test::More::DeepCheck::Tolerant'=> undef,
10685 'Test::More::Tools' => undef,
10686 'Test::MostlyLike' => undef,
10687 'Test::Simple' => '1.301001_075',
10688 'Test::Stream' => '1.301001_075',
10689 'Test::Stream::ArrayBase'=> undef,
10690 'Test::Stream::ArrayBase::Meta'=> undef,
10691 'Test::Stream::Carp' => undef,
10692 'Test::Stream::Context' => undef,
10693 'Test::Stream::Event' => undef,
10694 'Test::Stream::Event::Bail'=> undef,
10695 'Test::Stream::Event::Child'=> undef,
10696 'Test::Stream::Event::Diag'=> undef,
10697 'Test::Stream::Event::Finish'=> undef,
10698 'Test::Stream::Event::Note'=> undef,
10699 'Test::Stream::Event::Ok'=> undef,
10700 'Test::Stream::Event::Plan'=> undef,
10701 'Test::Stream::Event::Subtest'=> undef,
10702 'Test::Stream::ExitMagic'=> undef,
10703 'Test::Stream::ExitMagic::Context'=> undef,
10704 'Test::Stream::Exporter'=> undef,
10705 'Test::Stream::Exporter::Meta'=> undef,
10706 'Test::Stream::IOSets' => undef,
10707 'Test::Stream::Meta' => undef,
10708 'Test::Stream::PackageUtil'=> undef,
10709 'Test::Stream::Tester' => undef,
10710 'Test::Stream::Tester::Checks'=> undef,
10711 'Test::Stream::Tester::Checks::Event'=> undef,
10712 'Test::Stream::Tester::Events'=> undef,
10713 'Test::Stream::Tester::Events::Event'=> undef,
10714 'Test::Stream::Tester::Grab'=> undef,
10715 'Test::Stream::Threads' => undef,
10716 'Test::Stream::Toolset' => undef,
10717 'Test::Stream::Util' => undef,
10718 'Test::Tester' => '1.301001_075',
10719 'Test::Tester::Capture' => undef,
10720 'Test::use::ok' => '1.301001_075',
10721 'Unicode::UCD' => '0.59',
10722 'XS::APItest' => '0.68',
10723 'XSLoader' => '0.19',
10724 'experimental' => '0.013',
10725 'locale' => '1.05',
10726 'ok' => '1.301001_075',
10727 'overload' => '1.24',
10728 're' => '0.28',
10729 'warnings' => '1.29',
e22432a4
A
10730 },
10731 removed => {
20f5d8f8 10732 }
e22432a4 10733 },
3f572b05
CBW
10734 5.021007 => {
10735 delta_from => 5.021006,
10736 changed => {
e544daaa
MM
10737 'Archive::Tar' => '2.04',
10738 'Archive::Tar::Constant'=> '2.04',
10739 'Archive::Tar::File' => '2.04',
10740 'B' => '1.54',
10741 'B::Concise' => '0.996',
10742 'B::Deparse' => '1.31',
3f572b05 10743 'B::Op_private' => '5.021007',
e544daaa
MM
10744 'B::Showlex' => '1.05',
10745 'Compress::Raw::Bzip2' => '2.067',
10746 'Compress::Raw::Zlib' => '2.067',
10747 'Compress::Zlib' => '2.067',
3f572b05 10748 'Config' => '5.021007',
e544daaa
MM
10749 'Cwd' => '3.54',
10750 'DB_File' => '1.834',
10751 'Data::Dumper' => '2.155',
10752 'Devel::PPPort' => '3.25',
10753 'Devel::Peek' => '1.20',
10754 'DynaLoader' => '1.29',
10755 'Encode' => '2.67',
10756 'Errno' => '1.22',
10757 'ExtUtils::CBuilder' => '0.280221',
10758 'ExtUtils::CBuilder::Base'=> '0.280221',
10759 'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
10760 'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
10761 'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
10762 'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
10763 'ExtUtils::CBuilder::Platform::android'=> '0.280221',
10764 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
10765 'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
10766 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
10767 'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
10768 'ExtUtils::Command::MM' => '7.04',
10769 'ExtUtils::Liblist' => '7.04',
10770 'ExtUtils::Liblist::Kid'=> '7.04',
10771 'ExtUtils::MM' => '7.04',
10772 'ExtUtils::MM_AIX' => '7.04',
10773 'ExtUtils::MM_Any' => '7.04',
10774 'ExtUtils::MM_BeOS' => '7.04',
10775 'ExtUtils::MM_Cygwin' => '7.04',
10776 'ExtUtils::MM_DOS' => '7.04',
10777 'ExtUtils::MM_Darwin' => '7.04',
10778 'ExtUtils::MM_MacOS' => '7.04',
10779 'ExtUtils::MM_NW5' => '7.04',
10780 'ExtUtils::MM_OS2' => '7.04',
10781 'ExtUtils::MM_QNX' => '7.04',
10782 'ExtUtils::MM_UWIN' => '7.04',
10783 'ExtUtils::MM_Unix' => '7.04',
10784 'ExtUtils::MM_VMS' => '7.04',
10785 'ExtUtils::MM_VOS' => '7.04',
10786 'ExtUtils::MM_Win32' => '7.04',
10787 'ExtUtils::MM_Win95' => '7.04',
10788 'ExtUtils::MY' => '7.04',
10789 'ExtUtils::MakeMaker' => '7.04',
10790 'ExtUtils::MakeMaker::Config'=> '7.04',
10791 'ExtUtils::MakeMaker::Locale'=> '7.04',
10792 'ExtUtils::MakeMaker::version'=> '7.04',
10793 'ExtUtils::MakeMaker::version::regex'=> '7.04',
10794 'ExtUtils::MakeMaker::version::vpp'=> '7.04',
10795 'ExtUtils::Mkbootstrap' => '7.04',
10796 'ExtUtils::Mksymlists' => '7.04',
10797 'ExtUtils::ParseXS' => '3.27',
10798 'ExtUtils::ParseXS::Constants'=> '3.27',
10799 'ExtUtils::ParseXS::CountLines'=> '3.27',
10800 'ExtUtils::ParseXS::Eval'=> '3.27',
10801 'ExtUtils::ParseXS::Utilities'=> '3.27',
10802 'ExtUtils::testlib' => '7.04',
10803 'File::Spec' => '3.53',
10804 'File::Spec::Cygwin' => '3.54',
10805 'File::Spec::Epoc' => '3.54',
10806 'File::Spec::Functions' => '3.54',
10807 'File::Spec::Mac' => '3.54',
10808 'File::Spec::OS2' => '3.54',
10809 'File::Spec::Unix' => '3.54',
10810 'File::Spec::VMS' => '3.54',
10811 'File::Spec::Win32' => '3.54',
10812 'Filter::Util::Call' => '1.51',
10813 'HTTP::Tiny' => '0.053',
10814 'IO' => '1.35',
10815 'IO::Compress::Adapter::Bzip2'=> '2.067',
10816 'IO::Compress::Adapter::Deflate'=> '2.067',
10817 'IO::Compress::Adapter::Identity'=> '2.067',
10818 'IO::Compress::Base' => '2.067',
10819 'IO::Compress::Base::Common'=> '2.067',
10820 'IO::Compress::Bzip2' => '2.067',
10821 'IO::Compress::Deflate' => '2.067',
10822 'IO::Compress::Gzip' => '2.067',
10823 'IO::Compress::Gzip::Constants'=> '2.067',
10824 'IO::Compress::RawDeflate'=> '2.067',
10825 'IO::Compress::Zip' => '2.067',
10826 'IO::Compress::Zip::Constants'=> '2.067',
10827 'IO::Compress::Zlib::Constants'=> '2.067',
10828 'IO::Compress::Zlib::Extra'=> '2.067',
10829 'IO::Socket::IP' => '0.34',
10830 'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
10831 'IO::Uncompress::Adapter::Identity'=> '2.067',
10832 'IO::Uncompress::Adapter::Inflate'=> '2.067',
10833 'IO::Uncompress::AnyInflate'=> '2.067',
10834 'IO::Uncompress::AnyUncompress'=> '2.067',
10835 'IO::Uncompress::Base' => '2.067',
10836 'IO::Uncompress::Bunzip2'=> '2.067',
10837 'IO::Uncompress::Gunzip'=> '2.067',
10838 'IO::Uncompress::Inflate'=> '2.067',
10839 'IO::Uncompress::RawInflate'=> '2.067',
10840 'IO::Uncompress::Unzip' => '2.067',
10841 'Locale::Codes' => '3.33',
10842 'Locale::Codes::Constants'=> '3.33',
10843 'Locale::Codes::Country'=> '3.33',
10844 'Locale::Codes::Country_Codes'=> '3.33',
10845 'Locale::Codes::Country_Retired'=> '3.33',
10846 'Locale::Codes::Currency'=> '3.33',
10847 'Locale::Codes::Currency_Codes'=> '3.33',
10848 'Locale::Codes::Currency_Retired'=> '3.33',
10849 'Locale::Codes::LangExt'=> '3.33',
10850 'Locale::Codes::LangExt_Codes'=> '3.33',
10851 'Locale::Codes::LangExt_Retired'=> '3.33',
10852 'Locale::Codes::LangFam'=> '3.33',
10853 'Locale::Codes::LangFam_Codes'=> '3.33',
10854 'Locale::Codes::LangFam_Retired'=> '3.33',
10855 'Locale::Codes::LangVar'=> '3.33',
10856 'Locale::Codes::LangVar_Codes'=> '3.33',
10857 'Locale::Codes::LangVar_Retired'=> '3.33',
10858 'Locale::Codes::Language'=> '3.33',
10859 'Locale::Codes::Language_Codes'=> '3.33',
10860 'Locale::Codes::Language_Retired'=> '3.33',
10861 'Locale::Codes::Script' => '3.33',
10862 'Locale::Codes::Script_Codes'=> '3.33',
10863 'Locale::Codes::Script_Retired'=> '3.33',
10864 'Locale::Country' => '3.33',
10865 'Locale::Currency' => '3.33',
10866 'Locale::Language' => '3.33',
10867 'Locale::Maketext' => '1.26',
10868 'Locale::Script' => '3.33',
3f572b05
CBW
10869 'Module::CoreList' => '5.20141220',
10870 'Module::CoreList::TieHashDelta'=> '5.20141220',
10871 'Module::CoreList::Utils'=> '5.20141220',
e544daaa
MM
10872 'NDBM_File' => '1.14',
10873 'Net::Cmd' => '3.04',
10874 'Net::Config' => '3.04',
10875 'Net::Domain' => '3.04',
10876 'Net::FTP' => '3.04',
10877 'Net::FTP::A' => '3.04',
10878 'Net::FTP::E' => '3.04',
10879 'Net::FTP::I' => '3.04',
10880 'Net::FTP::L' => '3.04',
10881 'Net::FTP::dataconn' => '3.04',
10882 'Net::NNTP' => '3.04',
10883 'Net::Netrc' => '3.04',
10884 'Net::POP3' => '3.04',
10885 'Net::SMTP' => '3.04',
10886 'Net::Time' => '3.04',
10887 'Opcode' => '1.30',
10888 'POSIX' => '1.48',
10889 'PerlIO::scalar' => '0.21',
10890 'Pod::Escapes' => '1.07',
10891 'SDBM_File' => '1.12',
10892 'Storable' => '2.52',
10893 'Sys::Hostname' => '1.20',
10894 'Test::Builder' => '1.301001_090',
10895 'Test::Builder::Module' => '1.301001_090',
10896 'Test::Builder::Tester' => '1.301001_090',
10897 'Test::Builder::Tester::Color'=> '1.301001_090',
10898 'Test::CanFork' => undef,
10899 'Test::CanThread' => undef,
10900 'Test::More' => '1.301001_090',
10901 'Test::Simple' => '1.301001_090',
10902 'Test::Stream' => '1.301001_090',
10903 'Test::Stream::API' => undef,
10904 'Test::Stream::ForceExit'=> undef,
10905 'Test::Stream::Subtest' => undef,
10906 'Test::Tester' => '1.301001_090',
10907 'Test::use::ok' => '1.301001_090',
10908 'Unicode::Collate' => '1.09',
10909 'Unicode::Collate::CJK::Big5'=> '1.09',
10910 'Unicode::Collate::CJK::GB2312'=> '1.09',
10911 'Unicode::Collate::CJK::JISX0208'=> '1.09',
10912 'Unicode::Collate::CJK::Korean'=> '1.09',
10913 'Unicode::Collate::CJK::Pinyin'=> '1.09',
10914 'Unicode::Collate::CJK::Stroke'=> '1.09',
10915 'Unicode::Collate::CJK::Zhuyin'=> '1.09',
10916 'Unicode::Collate::Locale'=> '1.09',
10917 'XS::APItest' => '0.69',
10918 'XSLoader' => '0.20',
10919 '_charnames' => '1.43',
10920 'arybase' => '0.09',
10921 'charnames' => '1.43',
10922 'feature' => '1.39',
10923 'mro' => '1.17',
10924 'ok' => '1.301001_090',
10925 'strict' => '1.09',
10926 'threads' => '1.96_001',
3f572b05
CBW
10927 },
10928 removed => {
10929 }
10930 },
e31034da
MM
10931 5.021008 => {
10932 delta_from => 5.021007,
10933 changed => {
50ab518c
MH
10934 'App::Prove' => '3.35',
10935 'App::Prove::State' => '3.35',
10936 'App::Prove::State::Result'=> '3.35',
10937 'App::Prove::State::Result::Test'=> '3.35',
10938 'B' => '1.55',
10939 'B::Deparse' => '1.32',
e31034da 10940 'B::Op_private' => '5.021008',
50ab518c
MH
10941 'CPAN::Meta::Requirements'=> '2.131',
10942 'Compress::Raw::Bzip2' => '2.068',
10943 'Compress::Raw::Zlib' => '2.068',
10944 'Compress::Zlib' => '2.068',
e31034da 10945 'Config' => '5.021008',
50ab518c
MH
10946 'DB_File' => '1.835',
10947 'Data::Dumper' => '2.156',
10948 'Devel::PPPort' => '3.28',
10949 'Devel::Peek' => '1.21',
10950 'Digest::MD5' => '2.54',
10951 'Digest::SHA' => '5.95',
10952 'DynaLoader' => '1.30',
10953 'ExtUtils::Command' => '1.20',
10954 'ExtUtils::Manifest' => '1.70',
10955 'Fatal' => '2.26',
10956 'File::Glob' => '1.24',
10957 'Filter::Util::Call' => '1.54',
10958 'Getopt::Long' => '2.43',
10959 'IO::Compress::Adapter::Bzip2'=> '2.068',
10960 'IO::Compress::Adapter::Deflate'=> '2.068',
10961 'IO::Compress::Adapter::Identity'=> '2.068',
10962 'IO::Compress::Base' => '2.068',
10963 'IO::Compress::Base::Common'=> '2.068',
10964 'IO::Compress::Bzip2' => '2.068',
10965 'IO::Compress::Deflate' => '2.068',
10966 'IO::Compress::Gzip' => '2.068',
10967 'IO::Compress::Gzip::Constants'=> '2.068',
10968 'IO::Compress::RawDeflate'=> '2.068',
10969 'IO::Compress::Zip' => '2.068',
10970 'IO::Compress::Zip::Constants'=> '2.068',
10971 'IO::Compress::Zlib::Constants'=> '2.068',
10972 'IO::Compress::Zlib::Extra'=> '2.068',
10973 'IO::Socket::IP' => '0.36',
10974 'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
10975 'IO::Uncompress::Adapter::Identity'=> '2.068',
10976 'IO::Uncompress::Adapter::Inflate'=> '2.068',
10977 'IO::Uncompress::AnyInflate'=> '2.068',
10978 'IO::Uncompress::AnyUncompress'=> '2.068',
10979 'IO::Uncompress::Base' => '2.068',
10980 'IO::Uncompress::Bunzip2'=> '2.068',
10981 'IO::Uncompress::Gunzip'=> '2.068',
10982 'IO::Uncompress::Inflate'=> '2.068',
10983 'IO::Uncompress::RawInflate'=> '2.068',
10984 'IO::Uncompress::Unzip' => '2.068',
10985 'MIME::Base64' => '3.15',
c543a22d
MH
10986 'Module::CoreList' => '5.20150220',
10987 'Module::CoreList::TieHashDelta'=> '5.20150220',
10988 'Module::CoreList::Utils'=> '5.20150220',
50ab518c
MH
10989 'Module::Load::Conditional'=> '0.64',
10990 'Module::Metadata' => '1.000026',
10991 'Net::Cmd' => '3.05',
10992 'Net::Config' => '3.05',
10993 'Net::Domain' => '3.05',
10994 'Net::FTP' => '3.05',
10995 'Net::FTP::A' => '3.05',
10996 'Net::FTP::E' => '3.05',
10997 'Net::FTP::I' => '3.05',
10998 'Net::FTP::L' => '3.05',
10999 'Net::FTP::dataconn' => '3.05',
11000 'Net::NNTP' => '3.05',
11001 'Net::Netrc' => '3.05',
11002 'Net::POP3' => '3.05',
11003 'Net::SMTP' => '3.05',
11004 'Net::Time' => '3.05',
11005 'Opcode' => '1.31',
11006 'POSIX' => '1.49',
11007 'PerlIO::encoding' => '0.21',
11008 'Pod::Simple' => '3.29',
11009 'Pod::Simple::BlackBox' => '3.29',
11010 'Pod::Simple::Checker' => '3.29',
11011 'Pod::Simple::Debug' => '3.29',
11012 'Pod::Simple::DumpAsText'=> '3.29',
11013 'Pod::Simple::DumpAsXML'=> '3.29',
11014 'Pod::Simple::HTML' => '3.29',
11015 'Pod::Simple::HTMLBatch'=> '3.29',
11016 'Pod::Simple::LinkSection'=> '3.29',
11017 'Pod::Simple::Methody' => '3.29',
11018 'Pod::Simple::Progress' => '3.29',
11019 'Pod::Simple::PullParser'=> '3.29',
11020 'Pod::Simple::PullParserEndToken'=> '3.29',
11021 'Pod::Simple::PullParserStartToken'=> '3.29',
11022 'Pod::Simple::PullParserTextToken'=> '3.29',
11023 'Pod::Simple::PullParserToken'=> '3.29',
11024 'Pod::Simple::RTF' => '3.29',
11025 'Pod::Simple::Search' => '3.29',
11026 'Pod::Simple::SimpleTree'=> '3.29',
11027 'Pod::Simple::Text' => '3.29',
11028 'Pod::Simple::TextContent'=> '3.29',
11029 'Pod::Simple::TiedOutFH'=> '3.29',
11030 'Pod::Simple::Transcode'=> '3.29',
11031 'Pod::Simple::TranscodeDumb'=> '3.29',
11032 'Pod::Simple::TranscodeSmart'=> '3.29',
11033 'Pod::Simple::XHTML' => '3.29',
11034 'Pod::Simple::XMLOutStream'=> '3.29',
11035 'SDBM_File' => '1.13',
11036 'Safe' => '2.39',
11037 'TAP::Base' => '3.35',
11038 'TAP::Formatter::Base' => '3.35',
11039 'TAP::Formatter::Color' => '3.35',
11040 'TAP::Formatter::Console'=> '3.35',
11041 'TAP::Formatter::Console::ParallelSession'=> '3.35',
11042 'TAP::Formatter::Console::Session'=> '3.35',
11043 'TAP::Formatter::File' => '3.35',
11044 'TAP::Formatter::File::Session'=> '3.35',
11045 'TAP::Formatter::Session'=> '3.35',
11046 'TAP::Harness' => '3.35',
11047 'TAP::Harness::Env' => '3.35',
11048 'TAP::Object' => '3.35',
11049 'TAP::Parser' => '3.35',
11050 'TAP::Parser::Aggregator'=> '3.35',
11051 'TAP::Parser::Grammar' => '3.35',
11052 'TAP::Parser::Iterator' => '3.35',
11053 'TAP::Parser::Iterator::Array'=> '3.35',
11054 'TAP::Parser::Iterator::Process'=> '3.35',
11055 'TAP::Parser::Iterator::Stream'=> '3.35',
11056 'TAP::Parser::IteratorFactory'=> '3.35',
11057 'TAP::Parser::Multiplexer'=> '3.35',
11058 'TAP::Parser::Result' => '3.35',
11059 'TAP::Parser::Result::Bailout'=> '3.35',
11060 'TAP::Parser::Result::Comment'=> '3.35',
11061 'TAP::Parser::Result::Plan'=> '3.35',
11062 'TAP::Parser::Result::Pragma'=> '3.35',
11063 'TAP::Parser::Result::Test'=> '3.35',
11064 'TAP::Parser::Result::Unknown'=> '3.35',
11065 'TAP::Parser::Result::Version'=> '3.35',
11066 'TAP::Parser::Result::YAML'=> '3.35',
11067 'TAP::Parser::ResultFactory'=> '3.35',
11068 'TAP::Parser::Scheduler'=> '3.35',
11069 'TAP::Parser::Scheduler::Job'=> '3.35',
11070 'TAP::Parser::Scheduler::Spinner'=> '3.35',
11071 'TAP::Parser::Source' => '3.35',
11072 'TAP::Parser::SourceHandler'=> '3.35',
11073 'TAP::Parser::SourceHandler::Executable'=> '3.35',
11074 'TAP::Parser::SourceHandler::File'=> '3.35',
11075 'TAP::Parser::SourceHandler::Handle'=> '3.35',
11076 'TAP::Parser::SourceHandler::Perl'=> '3.35',
11077 'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
11078 'TAP::Parser::YAMLish::Reader'=> '3.35',
11079 'TAP::Parser::YAMLish::Writer'=> '3.35',
11080 'Test::Builder' => '1.301001_097',
11081 'Test::Builder::Module' => '1.301001_097',
11082 'Test::Builder::Tester' => '1.301001_097',
11083 'Test::Builder::Tester::Color'=> '1.301001_097',
11084 'Test::Harness' => '3.35',
11085 'Test::More' => '1.301001_097',
11086 'Test::Simple' => '1.301001_097',
11087 'Test::Stream' => '1.301001_097',
11088 'Test::Stream::Block' => undef,
11089 'Test::Tester' => '1.301001_097',
11090 'Test::Tester::CaptureRunner'=> undef,
11091 'Test::Tester::Delegate'=> undef,
11092 'Test::use::ok' => '1.301001_097',
11093 'Unicode::Collate' => '1.10',
11094 'Unicode::Collate::CJK::Big5'=> '1.10',
11095 'Unicode::Collate::CJK::GB2312'=> '1.10',
11096 'Unicode::Collate::CJK::JISX0208'=> '1.10',
11097 'Unicode::Collate::CJK::Korean'=> '1.10',
11098 'Unicode::Collate::CJK::Pinyin'=> '1.10',
11099 'Unicode::Collate::CJK::Stroke'=> '1.10',
11100 'Unicode::Collate::CJK::Zhuyin'=> '1.10',
11101 'Unicode::Collate::Locale'=> '1.10',
11102 'VMS::DCLsym' => '1.06',
11103 'XS::APItest' => '0.70',
11104 'arybase' => '0.10',
11105 'attributes' => '0.25',
11106 'autodie' => '2.26',
11107 'autodie::Scope::Guard' => '2.26',
11108 'autodie::Scope::GuardStack'=> '2.26',
11109 'autodie::ScopeUtil' => '2.26',
11110 'autodie::exception' => '2.26',
11111 'autodie::exception::system'=> '2.26',
11112 'autodie::hints' => '2.26',
11113 'autodie::skip' => '2.26',
11114 'ok' => '1.301001_097',
11115 're' => '0.30',
11116 'warnings' => '1.30',
e31034da
MM
11117 },
11118 removed => {
11119 }
11120 },
8ad047ea
SH
11121 5.020002 => {
11122 delta_from => 5.020001,
11123 changed => {
11124 'CPAN::Author' => '5.5002',
11125 'CPAN::CacheMgr' => '5.5002',
11126 'CPAN::FTP' => '5.5006',
11127 'CPAN::HTTP::Client' => '1.9601',
11128 'CPAN::HandleConfig' => '5.5005',
11129 'CPAN::Index' => '1.9601',
11130 'CPAN::LWP::UserAgent' => '1.9601',
11131 'CPAN::Mirrors' => '1.9601',
11132 'Config' => '5.020002',
11133 'Cwd' => '3.48_01',
11134 'Data::Dumper' => '2.151_01',
11135 'Errno' => '1.20_05',
11136 'File::Spec' => '3.48_01',
11137 'File::Spec::Cygwin' => '3.48_01',
11138 'File::Spec::Epoc' => '3.48_01',
11139 'File::Spec::Functions' => '3.48_01',
11140 'File::Spec::Mac' => '3.48_01',
11141 'File::Spec::OS2' => '3.48_01',
11142 'File::Spec::Unix' => '3.48_01',
11143 'File::Spec::VMS' => '3.48_01',
11144 'File::Spec::Win32' => '3.48_01',
11145 'IO::Socket' => '1.38',
28a17c3c
SH
11146 'Module::CoreList' => '5.20150214',
11147 'Module::CoreList::TieHashDelta'=> '5.20150214',
11148 'Module::CoreList::Utils'=> '5.20150214',
8ad047ea
SH
11149 'PerlIO::scalar' => '0.18_01',
11150 'Pod::PlainText' => '2.07',
11151 'Storable' => '2.49_01',
11152 'VMS::DCLsym' => '1.05_01',
11153 'VMS::Stdio' => '2.41',
11154 'attributes' => '0.23',
11155 'feature' => '1.36_01',
11156 },
11157 removed => {
11158 }
11159 },
2e3866c3
MH
11160 5.021009 => {
11161 delta_from => 5.021008,
11162 changed => {
c02a3722
S
11163 'B' => '1.56',
11164 'B::Debug' => '1.23',
11165 'B::Deparse' => '1.33',
0d2b7240 11166 'B::Op_private' => '5.021009',
c02a3722
S
11167 'Benchmark' => '1.20',
11168 'CPAN::Author' => '5.5002',
11169 'CPAN::CacheMgr' => '5.5002',
11170 'CPAN::FTP' => '5.5006',
11171 'CPAN::HTTP::Client' => '1.9601',
11172 'CPAN::HandleConfig' => '5.5005',
11173 'CPAN::Index' => '1.9601',
11174 'CPAN::LWP::UserAgent' => '1.9601',
11175 'CPAN::Meta::Requirements'=> '2.132',
11176 'CPAN::Mirrors' => '1.9601',
11177 'Carp' => '1.35',
11178 'Carp::Heavy' => '1.35',
0d2b7240 11179 'Config' => '5.021009',
c02a3722
S
11180 'Config::Perl::V' => '0.23',
11181 'Data::Dumper' => '2.157',
11182 'Devel::Peek' => '1.22',
11183 'DynaLoader' => '1.31',
11184 'Encode' => '2.70',
11185 'Encode::MIME::Header' => '2.16',
11186 'Errno' => '1.23',
11187 'ExtUtils::Miniperl' => '1.04',
11188 'HTTP::Tiny' => '0.054',
0939a951
S
11189 'Module::CoreList' => '5.20150220',
11190 'Module::CoreList::TieHashDelta'=> '5.20150220',
11191 'Module::CoreList::Utils'=> '5.20150220',
c02a3722
S
11192 'Opcode' => '1.32',
11193 'POSIX' => '1.51',
11194 'Perl::OSType' => '1.008',
11195 'PerlIO::scalar' => '0.22',
11196 'Pod::Find' => '1.63',
11197 'Pod::InputObjects' => '1.63',
11198 'Pod::ParseUtils' => '1.63',
11199 'Pod::Parser' => '1.63',
11200 'Pod::Perldoc' => '3.25',
11201 'Pod::Perldoc::BaseTo' => '3.25',
11202 'Pod::Perldoc::GetOptsOO'=> '3.25',
11203 'Pod::Perldoc::ToANSI' => '3.25',
11204 'Pod::Perldoc::ToChecker'=> '3.25',
11205 'Pod::Perldoc::ToMan' => '3.25',
11206 'Pod::Perldoc::ToNroff' => '3.25',
11207 'Pod::Perldoc::ToPod' => '3.25',
11208 'Pod::Perldoc::ToRtf' => '3.25',
11209 'Pod::Perldoc::ToTerm' => '3.25',
11210 'Pod::Perldoc::ToText' => '3.25',
11211 'Pod::Perldoc::ToTk' => '3.25',
11212 'Pod::Perldoc::ToXml' => '3.25',
11213 'Pod::PlainText' => '2.07',
11214 'Pod::Select' => '1.63',
11215 'Socket' => '2.018',
11216 'Storable' => '2.53',
11217 'Test::Builder' => '1.301001_098',
11218 'Test::Builder::Module' => '1.301001_098',
11219 'Test::Builder::Tester' => '1.301001_098',
11220 'Test::Builder::Tester::Color'=> '1.301001_098',
11221 'Test::More' => '1.301001_098',
11222 'Test::Simple' => '1.301001_098',
11223 'Test::Stream' => '1.301001_098',
11224 'Test::Tester' => '1.301001_098',
11225 'Test::use::ok' => '1.301001_098',
11226 'Unicode::Collate' => '1.11',
11227 'Unicode::Collate::CJK::Big5'=> '1.11',
11228 'Unicode::Collate::CJK::GB2312'=> '1.11',
11229 'Unicode::Collate::CJK::JISX0208'=> '1.11',
11230 'Unicode::Collate::CJK::Korean'=> '1.11',
11231 'Unicode::Collate::CJK::Pinyin'=> '1.11',
11232 'Unicode::Collate::CJK::Stroke'=> '1.11',
11233 'Unicode::Collate::CJK::Zhuyin'=> '1.11',
11234 'Unicode::Collate::Locale'=> '1.11',
11235 'Unicode::UCD' => '0.61',
11236 'VMS::Stdio' => '2.41',
11237 'Win32' => '0.51',
11238 'Win32API::File' => '0.1202',
11239 'attributes' => '0.26',
11240 'bigint' => '0.39',
11241 'bignum' => '0.39',
11242 'bigrat' => '0.39',
11243 'constant' => '1.33',
11244 'encoding' => '2.13',
11245 'feature' => '1.40',
11246 'ok' => '1.301001_098',
11247 'overload' => '1.25',
11248 'perlfaq' => '5.021009',
11249 're' => '0.31',
11250 'threads::shared' => '1.48',
11251 'warnings' => '1.31',
2e3866c3
MH
11252 },
11253 removed => {
0d2b7240 11254 }
2e3866c3 11255 },
ff4e8df2
S
11256 5.021010 => {
11257 delta_from => 5.021009,
11258 changed => {
77dc754d
SH
11259 'App::Cpan' => '1.63',
11260 'B' => '1.57',
11261 'B::Deparse' => '1.34',
11262 'B::Op_private' => '5.021010',
11263 'Benchmark' => '1.2',
11264 'CPAN' => '2.10',
11265 'CPAN::Distribution' => '2.04',
11266 'CPAN::FirstTime' => '5.5307',
11267 'CPAN::HTTP::Credentials'=> '1.9601',
11268 'CPAN::HandleConfig' => '5.5006',
11269 'CPAN::Meta' => '2.150001',
11270 'CPAN::Meta::Converter' => '2.150001',
11271 'CPAN::Meta::Feature' => '2.150001',
11272 'CPAN::Meta::History' => '2.150001',
11273 'CPAN::Meta::Merge' => '2.150001',
11274 'CPAN::Meta::Prereqs' => '2.150001',
11275 'CPAN::Meta::Spec' => '2.150001',
11276 'CPAN::Meta::Validator' => '2.150001',
11277 'CPAN::Module' => '5.5002',
11278 'CPAN::Plugin' => '0.95',
11279 'CPAN::Plugin::Specfile'=> '0.01',
11280 'CPAN::Shell' => '5.5005',
11281 'Carp' => '1.36',
11282 'Carp::Heavy' => '1.36',
11283 'Config' => '5.02101',
11284 'Cwd' => '3.55',
11285 'DB' => '1.08',
11286 'Data::Dumper' => '2.158',
11287 'Devel::PPPort' => '3.31',
11288 'DynaLoader' => '1.32',
11289 'Encode' => '2.72',
11290 'Encode::Alias' => '2.19',
11291 'File::Spec' => '3.55',
11292 'File::Spec::Cygwin' => '3.55',
11293 'File::Spec::Epoc' => '3.55',
11294 'File::Spec::Functions' => '3.55',
11295 'File::Spec::Mac' => '3.55',
11296 'File::Spec::OS2' => '3.55',
11297 'File::Spec::Unix' => '3.55',
11298 'File::Spec::VMS' => '3.55',
11299 'File::Spec::Win32' => '3.55',
11300 'Getopt::Long' => '2.45',
11301 'Locale::Codes' => '3.34',
11302 'Locale::Codes::Constants'=> '3.34',
11303 'Locale::Codes::Country'=> '3.34',
11304 'Locale::Codes::Country_Codes'=> '3.34',
11305 'Locale::Codes::Country_Retired'=> '3.34',
11306 'Locale::Codes::Currency'=> '3.34',
11307 'Locale::Codes::Currency_Codes'=> '3.34',
11308 'Locale::Codes::Currency_Retired'=> '3.34',
11309 'Locale::Codes::LangExt'=> '3.34',
11310 'Locale::Codes::LangExt_Codes'=> '3.34',
11311 'Locale::Codes::LangExt_Retired'=> '3.34',
11312 'Locale::Codes::LangFam'=> '3.34',
11313 'Locale::Codes::LangFam_Codes'=> '3.34',
11314 'Locale::Codes::LangFam_Retired'=> '3.34',
11315 'Locale::Codes::LangVar'=> '3.34',
11316 'Locale::Codes::LangVar_Codes'=> '3.34',
11317 'Locale::Codes::LangVar_Retired'=> '3.34',
11318 'Locale::Codes::Language'=> '3.34',
11319 'Locale::Codes::Language_Codes'=> '3.34',
11320 'Locale::Codes::Language_Retired'=> '3.34',
11321 'Locale::Codes::Script' => '3.34',
11322 'Locale::Codes::Script_Codes'=> '3.34',
11323 'Locale::Codes::Script_Retired'=> '3.34',
11324 'Locale::Country' => '3.34',
11325 'Locale::Currency' => '3.34',
11326 'Locale::Language' => '3.34',
11327 'Locale::Script' => '3.34',
11328 'Module::CoreList' => '5.20150320',
11329 'Module::CoreList::TieHashDelta'=> '5.20150320',
11330 'Module::CoreList::Utils'=> '5.20150320',
11331 'POSIX' => '1.52',
11332 'Pod::Functions' => '1.09',
11333 'Pod::Functions::Functions'=> '1.09',
11334 'Term::Complete' => '1.403',
11335 'Test::Builder' => '1.001014',
11336 'Test::Builder::IO::Scalar'=> '2.113',
11337 'Test::Builder::Module' => '1.001014',
11338 'Test::Builder::Tester' => '1.28',
11339 'Test::Builder::Tester::Color'=> '1.290001',
11340 'Test::More' => '1.001014',
11341 'Test::Simple' => '1.001014',
11342 'Test::Tester' => '0.114',
11343 'Test::use::ok' => '0.16',
11344 'Text::Balanced' => '2.03',
11345 'Text::ParseWords' => '3.30',
11346 'Unicode::Collate' => '1.12',
11347 'Unicode::Collate::CJK::Big5'=> '1.12',
11348 'Unicode::Collate::CJK::GB2312'=> '1.12',
11349 'Unicode::Collate::CJK::JISX0208'=> '1.12',
11350 'Unicode::Collate::CJK::Korean'=> '1.12',
11351 'Unicode::Collate::CJK::Pinyin'=> '1.12',
11352 'Unicode::Collate::CJK::Stroke'=> '1.12',
11353 'Unicode::Collate::CJK::Zhuyin'=> '1.12',
11354 'Unicode::Collate::Locale'=> '1.12',
11355 'XS::APItest' => '0.71',
11356 'encoding' => '2.14',
11357 'locale' => '1.06',
11358 'meta_notation' => undef,
11359 'ok' => '0.16',
11360 'parent' => '0.232',
11361 're' => '0.32',
11362 'sigtrap' => '1.08',
11363 'threads' => '2.01',
11364 'utf8' => '1.15',
11365 },
11366 removed => {
11367 'Test::CanFork' => 1,
11368 'Test::CanThread' => 1,
11369 'Test::More::DeepCheck' => 1,
11370 'Test::More::DeepCheck::Strict'=> 1,
11371 'Test::More::DeepCheck::Tolerant'=> 1,
11372 'Test::More::Tools' => 1,
11373 'Test::MostlyLike' => 1,
11374 'Test::Stream' => 1,
11375 'Test::Stream::API' => 1,
11376 'Test::Stream::ArrayBase'=> 1,
11377 'Test::Stream::ArrayBase::Meta'=> 1,
11378 'Test::Stream::Block' => 1,
11379 'Test::Stream::Carp' => 1,
11380 'Test::Stream::Context' => 1,
11381 'Test::Stream::Event' => 1,
11382 'Test::Stream::Event::Bail'=> 1,
11383 'Test::Stream::Event::Child'=> 1,
11384 'Test::Stream::Event::Diag'=> 1,
11385 'Test::Stream::Event::Finish'=> 1,
11386 'Test::Stream::Event::Note'=> 1,
11387 'Test::Stream::Event::Ok'=> 1,
11388 'Test::Stream::Event::Plan'=> 1,
11389 'Test::Stream::Event::Subtest'=> 1,
11390 'Test::Stream::ExitMagic'=> 1,
11391 'Test::Stream::ExitMagic::Context'=> 1,
11392 'Test::Stream::Exporter'=> 1,
11393 'Test::Stream::Exporter::Meta'=> 1,
11394 'Test::Stream::ForceExit'=> 1,
11395 'Test::Stream::IOSets' => 1,
11396 'Test::Stream::Meta' => 1,
11397 'Test::Stream::PackageUtil'=> 1,
11398 'Test::Stream::Subtest' => 1,
11399 'Test::Stream::Tester' => 1,
11400 'Test::Stream::Tester::Checks'=> 1,
11401 'Test::Stream::Tester::Checks::Event'=> 1,
11402 'Test::Stream::Tester::Events'=> 1,
11403 'Test::Stream::Tester::Events::Event'=> 1,
11404 'Test::Stream::Tester::Grab'=> 1,
11405 'Test::Stream::Threads' => 1,
11406 'Test::Stream::Toolset' => 1,
11407 'Test::Stream::Util' => 1,
ff4e8df2
S
11408 }
11409 },
53902397 11410 5.021011 => {
6432c40a 11411 delta_from => 5.021010,
53902397 11412 changed => {
6432c40a
SH
11413 'B' => '1.58',
11414 'B::Deparse' => '1.35',
53902397 11415 'B::Op_private' => '5.021011',
6432c40a 11416 'CPAN' => '2.11',
53902397 11417 'Config' => '5.021011',
6432c40a
SH
11418 'Config::Perl::V' => '0.24',
11419 'Cwd' => '3.56',
11420 'ExtUtils::Miniperl' => '1.05',
11421 'ExtUtils::ParseXS' => '3.28',
11422 'ExtUtils::ParseXS::Constants'=> '3.28',
11423 'ExtUtils::ParseXS::CountLines'=> '3.28',
11424 'ExtUtils::ParseXS::Eval'=> '3.28',
11425 'ExtUtils::ParseXS::Utilities'=> '3.28',
11426 'ExtUtils::Typemaps' => '3.28',
11427 'ExtUtils::Typemaps::Cmd'=> '3.28',
11428 'ExtUtils::Typemaps::InputMap'=> '3.28',
11429 'ExtUtils::Typemaps::OutputMap'=> '3.28',
11430 'ExtUtils::Typemaps::Type'=> '3.28',
11431 'File::Spec' => '3.56',
11432 'File::Spec::Cygwin' => '3.56',
11433 'File::Spec::Epoc' => '3.56',
11434 'File::Spec::Functions' => '3.56',
11435 'File::Spec::Mac' => '3.56',
11436 'File::Spec::OS2' => '3.56',
11437 'File::Spec::Unix' => '3.56',
11438 'File::Spec::VMS' => '3.56',
11439 'File::Spec::Win32' => '3.56',
11440 'IO::Socket::IP' => '0.37',
53902397
SH
11441 'Module::CoreList' => '5.20150420',
11442 'Module::CoreList::TieHashDelta'=> '5.20150420',
11443 'Module::CoreList::Utils'=> '5.20150420',
6432c40a
SH
11444 'PerlIO::mmap' => '0.014',
11445 'XS::APItest' => '0.72',
11446 'attributes' => '0.27',
11447 'if' => '0.0604',
11448 'utf8' => '1.16',
11449 'warnings' => '1.32',
53902397
SH
11450 },
11451 removed => {
11452 }
11453 },
bff00388 11454 5.022000 => {
6bb5549b
SH
11455 delta_from => 5.021011,
11456 changed => {
38da2237
RS
11457 'B::Op_private' => '5.022000',
11458 'Config' => '5.022',
11459 'ExtUtils::Command::MM' => '7.04_01',
11460 'ExtUtils::Liblist' => '7.04_01',
11461 'ExtUtils::Liblist::Kid'=> '7.04_01',
11462 'ExtUtils::MM' => '7.04_01',
11463 'ExtUtils::MM_AIX' => '7.04_01',
11464 'ExtUtils::MM_Any' => '7.04_01',
11465 'ExtUtils::MM_BeOS' => '7.04_01',
11466 'ExtUtils::MM_Cygwin' => '7.04_01',
11467 'ExtUtils::MM_DOS' => '7.04_01',
11468 'ExtUtils::MM_Darwin' => '7.04_01',
11469 'ExtUtils::MM_MacOS' => '7.04_01',
11470 'ExtUtils::MM_NW5' => '7.04_01',
11471 'ExtUtils::MM_OS2' => '7.04_01',
11472 'ExtUtils::MM_QNX' => '7.04_01',
11473 'ExtUtils::MM_UWIN' => '7.04_01',
11474 'ExtUtils::MM_Unix' => '7.04_01',
11475 'ExtUtils::MM_VMS' => '7.04_01',
11476 'ExtUtils::MM_VOS' => '7.04_01',
11477 'ExtUtils::MM_Win32' => '7.04_01',
11478 'ExtUtils::MM_Win95' => '7.04_01',
11479 'ExtUtils::MY' => '7.04_01',
11480 'ExtUtils::MakeMaker' => '7.04_01',
11481 'ExtUtils::MakeMaker::Config'=> '7.04_01',
11482 'ExtUtils::MakeMaker::Locale'=> '7.04_01',
11483 'ExtUtils::MakeMaker::version'=> '7.04_01',
11484 'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
11485 'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
11486 'ExtUtils::Mkbootstrap' => '7.04_01',
11487 'ExtUtils::Mksymlists' => '7.04_01',
11488 'ExtUtils::testlib' => '7.04_01',
6bb5549b
SH
11489 'Module::CoreList' => '5.20150520',
11490 'Module::CoreList::TieHashDelta'=> '5.20150520',
11491 'Module::CoreList::Utils'=> '5.20150520',
38da2237
RS
11492 'POSIX' => '1.53',
11493 'PerlIO::via::QuotedPrint'=> '0.08',
04dc37df 11494 'overload' => '1.26',
38da2237 11495 'utf8' => '1.17',
6bb5549b
SH
11496 },
11497 removed => {
11498 }
11499 },
19aba073
RS
11500 5.023000 => {
11501 delta_from => 5.022000,
11502 changed => {
11503 'B::Op_private' => '5.023000',
bffade09
RS
11504 'CPAN::Meta' => '2.150005',
11505 'CPAN::Meta::Converter' => '2.150005',
11506 'CPAN::Meta::Feature' => '2.150005',
11507 'CPAN::Meta::History' => '2.150005',
11508 'CPAN::Meta::Merge' => '2.150005',
11509 'CPAN::Meta::Prereqs' => '2.150005',
11510 'CPAN::Meta::Requirements'=> '2.133',
11511 'CPAN::Meta::Spec' => '2.150005',
11512 'CPAN::Meta::Validator' => '2.150005',
11513 'CPAN::Meta::YAML' => '0.016',
19aba073 11514 'Config' => '5.023',
bffade09
RS
11515 'Encode' => '2.73',
11516 'ExtUtils::CBuilder' => '0.280223',
11517 'ExtUtils::CBuilder::Base'=> '0.280223',
11518 'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
11519 'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
11520 'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
11521 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
11522 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
11523 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
11524 'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
11525 'ExtUtils::CBuilder::Platform::android'=> '0.280223',
11526 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
11527 'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
11528 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
11529 'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
11530 'Fatal' => '2.27',
11531 'Getopt::Long' => '2.46',
11532 'HTTP::Tiny' => '0.056',
11533 'List::Util' => '1.42_01',
11534 'List::Util::XS' => '1.42_01',
11535 'Locale::Codes' => '3.35',
11536 'Locale::Codes::Constants'=> '3.35',
11537 'Locale::Codes::Country'=> '3.35',
11538 'Locale::Codes::Country_Codes'=> '3.35',
11539 'Locale::Codes::Country_Retired'=> '3.35',
11540 'Locale::Codes::Currency'=> '3.35',
11541 'Locale::Codes::Currency_Codes'=> '3.35',
11542 'Locale::Codes::Currency_Retired'=> '3.35',
11543 'Locale::Codes::LangExt'=> '3.35',
11544 'Locale::Codes::LangExt_Codes'=> '3.35',
11545 'Locale::Codes::LangExt_Retired'=> '3.35',
11546 'Locale::Codes::LangFam'=> '3.35',
11547 'Locale::Codes::LangFam_Codes'=> '3.35',
11548 'Locale::Codes::LangFam_Retired'=> '3.35',
11549 'Locale::Codes::LangVar'=> '3.35',
11550 'Locale::Codes::LangVar_Codes'=> '3.35',
11551 'Locale::Codes::LangVar_Retired'=> '3.35',
11552 'Locale::Codes::Language'=> '3.35',
11553 'Locale::Codes::Language_Codes'=> '3.35',
11554 'Locale::Codes::Language_Retired'=> '3.35',
11555 'Locale::Codes::Script' => '3.35',
11556 'Locale::Codes::Script_Codes'=> '3.35',
11557 'Locale::Codes::Script_Retired'=> '3.35',
11558 'Locale::Country' => '3.35',
11559 'Locale::Currency' => '3.35',
11560 'Locale::Language' => '3.35',
11561 'Locale::Script' => '3.35',
11562 'Math::BigFloat' => '1.999701',
11563 'Math::BigInt' => '1.999701',
11564 'Math::BigInt::Calc' => '1.999701',
11565 'Math::BigInt::CalcEmu' => '1.999701',
11566 'Math::BigRat' => '0.260801',
11567 'Module::CoreList' => '5.20150620',
11568 'Module::CoreList::TieHashDelta'=> '5.20150620',
11569 'Module::CoreList::Utils'=> '5.20150620',
11570 'Module::Metadata' => '1.000027',
11571 'Net::Cmd' => '3.06',
11572 'Net::Config' => '3.06',
11573 'Net::Domain' => '3.06',
11574 'Net::FTP' => '3.06',
11575 'Net::FTP::A' => '3.06',
11576 'Net::FTP::E' => '3.06',
11577 'Net::FTP::I' => '3.06',
11578 'Net::FTP::L' => '3.06',
11579 'Net::FTP::dataconn' => '3.06',
11580 'Net::NNTP' => '3.06',
11581 'Net::Netrc' => '3.06',
11582 'Net::POP3' => '3.06',
11583 'Net::SMTP' => '3.06',
11584 'Net::Time' => '3.06',
11585 'POSIX' => '1.54',
11586 'Parse::CPAN::Meta' => '1.4417',
11587 'Pod::Simple' => '3.30',
11588 'Pod::Simple::BlackBox' => '3.30',
11589 'Pod::Simple::Checker' => '3.30',
11590 'Pod::Simple::Debug' => '3.30',
11591 'Pod::Simple::DumpAsText'=> '3.30',
11592 'Pod::Simple::DumpAsXML'=> '3.30',
11593 'Pod::Simple::HTML' => '3.30',
11594 'Pod::Simple::HTMLBatch'=> '3.30',
11595 'Pod::Simple::LinkSection'=> '3.30',
11596 'Pod::Simple::Methody' => '3.30',
11597 'Pod::Simple::Progress' => '3.30',
11598 'Pod::Simple::PullParser'=> '3.30',
11599 'Pod::Simple::PullParserEndToken'=> '3.30',
11600 'Pod::Simple::PullParserStartToken'=> '3.30',
11601 'Pod::Simple::PullParserTextToken'=> '3.30',
11602 'Pod::Simple::PullParserToken'=> '3.30',
11603 'Pod::Simple::RTF' => '3.30',
11604 'Pod::Simple::Search' => '3.30',
11605 'Pod::Simple::SimpleTree'=> '3.30',
11606 'Pod::Simple::Text' => '3.30',
11607 'Pod::Simple::TextContent'=> '3.30',
11608 'Pod::Simple::TiedOutFH'=> '3.30',
11609 'Pod::Simple::Transcode'=> '3.30',
11610 'Pod::Simple::TranscodeDumb'=> '3.30',
11611 'Pod::Simple::TranscodeSmart'=> '3.30',
11612 'Pod::Simple::XHTML' => '3.30',
11613 'Pod::Simple::XMLOutStream'=> '3.30',
11614 'Pod::Usage' => '1.67',
11615 'Scalar::Util' => '1.42_01',
11616 'Socket' => '2.019',
11617 'Sub::Util' => '1.42_01',
11618 'Time::Piece' => '1.30',
11619 'Time::Seconds' => '1.30',
11620 'UNIVERSAL' => '1.13',
11621 'Unicode' => '8.0.0',
11622 'XS::APItest' => '0.73',
11623 'autodie' => '2.27',
11624 'autodie::Scope::Guard' => '2.27',
11625 'autodie::Scope::GuardStack'=> '2.27',
11626 'autodie::Util' => '2.27',
11627 'autodie::exception' => '2.27',
11628 'autodie::exception::system'=> '2.27',
11629 'autodie::hints' => '2.27',
11630 'autodie::skip' => '2.27',
11631 'encoding' => '2.15',
11632 'feature' => '1.41',
11633 'parent' => '0.234',
11634 'threads' => '2.02',
19aba073
RS
11635 },
11636 removed => {
11637 }
11638 },
b9e156a2 11639 5.023001 => {
8656412d 11640 delta_from => 5.023000,
b9e156a2 11641 changed => {
8656412d 11642 'B::Op_private' => '5.023001',
b9e156a2 11643 'Config' => '5.023001',
8656412d
MH
11644 'DynaLoader' => '1.33',
11645 'Encode' => '2.75',
11646 'Encode::MIME::Header' => '2.17',
11647 'Encode::Unicode' => '2.13',
11648 'Fatal' => '2.29',
11649 'File::Path' => '2.11',
11650 'Getopt::Long' => '2.47',
11651 'I18N::Langinfo' => '0.13',
11652 'IPC::Open3' => '1.19',
b9e156a2
RS
11653 'Module::CoreList' => '5.20150720',
11654 'Module::CoreList::TieHashDelta'=> '5.20150720',
11655 'Module::CoreList::Utils'=> '5.20150720',
8656412d
MH
11656 'Net::Cmd' => '3.07',
11657 'Net::Config' => '3.07',
11658 'Net::Domain' => '3.07',
11659 'Net::FTP' => '3.07',
11660 'Net::FTP::A' => '3.07',
11661 'Net::FTP::E' => '3.07',
11662 'Net::FTP::I' => '3.07',
11663 'Net::FTP::L' => '3.07',
11664 'Net::FTP::dataconn' => '3.07',
11665 'Net::NNTP' => '3.07',
11666 'Net::Netrc' => '3.07',
11667 'Net::POP3' => '3.07',
11668 'Net::SMTP' => '3.07',
11669 'Net::Time' => '3.07',
11670 'Opcode' => '1.33',
11671 'POSIX' => '1.55',
11672 'PerlIO::scalar' => '0.23',
11673 'Socket' => '2.020',
11674 'Storable' => '2.54',
11675 'Unicode::Collate' => '1.14',
11676 'Unicode::Collate::CJK::Big5'=> '1.14',
11677 'Unicode::Collate::CJK::GB2312'=> '1.14',
11678 'Unicode::Collate::CJK::JISX0208'=> '1.14',
11679 'Unicode::Collate::CJK::Korean'=> '1.14',
11680 'Unicode::Collate::CJK::Pinyin'=> '1.14',
11681 'Unicode::Collate::CJK::Stroke'=> '1.14',
11682 'Unicode::Collate::CJK::Zhuyin'=> '1.14',
11683 'Unicode::Collate::Locale'=> '1.14',
11684 'Unicode::Normalize' => '1.19',
11685 'XS::APItest' => '0.74',
11686 'XS::Typemap' => '0.14',
11687 'autodie' => '2.29',
11688 'autodie::Scope::Guard' => '2.29',
11689 'autodie::Scope::GuardStack'=> '2.29',
11690 'autodie::Util' => '2.29',
11691 'autodie::exception' => '2.29',
11692 'autodie::exception::system'=> '2.29',
11693 'autodie::hints' => '2.29',
11694 'autodie::skip' => '2.29',
11695 'encoding' => '2.16',
11696 'feature' => '1.42',
11697 'warnings' => '1.33',
b9e156a2
RS
11698 },
11699 removed => {
11700 'autodie::ScopeUtil' => 1,
11701 }
11702 },
923c264e
MH
11703 5.023002 => {
11704 delta_from => 5.023001,
11705 changed => {
7d12bc6a 11706 'Attribute::Handlers' => '0.99',
923c264e 11707 'B::Op_private' => '5.023002',
7d12bc6a 11708 'CPAN::Meta::YAML' => '0.017',
923c264e 11709 'Config' => '5.023002',
7d12bc6a
MH
11710 'Cwd' => '3.57',
11711 'Encode' => '2.76',
11712 'ExtUtils::ParseXS' => '3.29',
11713 'ExtUtils::ParseXS::Constants'=> '3.29',
11714 'ExtUtils::ParseXS::CountLines'=> '3.29',
11715 'ExtUtils::ParseXS::Eval'=> '3.29',
11716 'ExtUtils::ParseXS::Utilities'=> '3.29',
11717 'ExtUtils::Typemaps' => '3.29',
11718 'File::Find' => '1.30',
11719 'File::Spec' => '3.57',
11720 'File::Spec::Cygwin' => '3.57',
11721 'File::Spec::Epoc' => '3.57',
11722 'File::Spec::Functions' => '3.57',
11723 'File::Spec::Mac' => '3.57',
11724 'File::Spec::OS2' => '3.57',
11725 'File::Spec::Unix' => '3.57',
11726 'File::Spec::VMS' => '3.57',
11727 'File::Spec::Win32' => '3.57',
11728 'Filter::Util::Call' => '1.55',
11729 'Hash::Util' => '0.19',
003900e2
MH
11730 'Module::CoreList' => '5.20150820',
11731 'Module::CoreList::TieHashDelta'=> '5.20150820',
11732 'Module::CoreList::Utils'=> '5.20150820',
7d12bc6a
MH
11733 'POSIX' => '1.56',
11734 'Term::Cap' => '1.17',
11735 'Unicode::UCD' => '0.62',
11736 'perlfaq' => '5.021010',
923c264e
MH
11737 },
11738 removed => {
11739 }
11740 },
2490a830
SH
11741 5.020003 => {
11742 delta_from => 5.020002,
11743 changed => {
11744 'Config' => '5.020003',
11745 'Errno' => '1.20_06',
b55fc902
SH
11746 'Module::CoreList' => '5.20150912',
11747 'Module::CoreList::TieHashDelta'=> '5.20150912',
11748 'Module::CoreList::Utils'=> '5.20150912',
2490a830
SH
11749 },
11750 removed => {
11751 }
11752 },
c0bc7731
MH
11753 5.023003 => {
11754 delta_from => 5.023002,
11755 changed => {
52513e61
PM
11756 'Amiga::ARexx' => '0.02',
11757 'Amiga::Exec' => '0.01',
11758 'B' => '1.59',
c0bc7731 11759 'B::Op_private' => '5.023003',
52513e61
PM
11760 'Carp' => '1.37',
11761 'Carp::Heavy' => '1.37',
11762 'Compress::Raw::Zlib' => '2.068_01',
c0bc7731 11763 'Config' => '5.023003',
52513e61
PM
11764 'Cwd' => '3.58',
11765 'DynaLoader' => '1.34',
11766 'Encode' => '2.77',
11767 'Encode::Unicode' => '2.14',
11768 'English' => '1.10',
11769 'Errno' => '1.24',
11770 'ExtUtils::Command' => '7.10',
11771 'ExtUtils::Command::MM' => '7.10',
11772 'ExtUtils::Liblist' => '7.10',
11773 'ExtUtils::Liblist::Kid'=> '7.10',
11774 'ExtUtils::MM' => '7.10',
11775 'ExtUtils::MM_AIX' => '7.10',
11776 'ExtUtils::MM_Any' => '7.10',
11777 'ExtUtils::MM_BeOS' => '7.10',
11778 'ExtUtils::MM_Cygwin' => '7.10',
11779 'ExtUtils::MM_DOS' => '7.10',
11780 'ExtUtils::MM_Darwin' => '7.10',
11781 'ExtUtils::MM_MacOS' => '7.10',
11782 'ExtUtils::MM_NW5' => '7.10',
11783 'ExtUtils::MM_OS2' => '7.10',
11784 'ExtUtils::MM_QNX' => '7.10',
11785 'ExtUtils::MM_UWIN' => '7.10',
11786 'ExtUtils::MM_Unix' => '7.10',
11787 'ExtUtils::MM_VMS' => '7.10',
11788 'ExtUtils::MM_VOS' => '7.10',
11789 'ExtUtils::MM_Win32' => '7.10',
11790 'ExtUtils::MM_Win95' => '7.10',
11791 'ExtUtils::MY' => '7.10',
11792 'ExtUtils::MakeMaker' => '7.10',
11793 'ExtUtils::MakeMaker::Config'=> '7.10',
11794 'ExtUtils::MakeMaker::Locale'=> '7.10',
11795 'ExtUtils::MakeMaker::version'=> '7.10',
11796 'ExtUtils::MakeMaker::version::regex'=> '7.10',
11797 'ExtUtils::MakeMaker::version::vpp'=> '7.10',
11798 'ExtUtils::Mkbootstrap' => '7.10',
11799 'ExtUtils::Mksymlists' => '7.10',
11800 'ExtUtils::ParseXS' => '3.30',
11801 'ExtUtils::ParseXS::Constants'=> '3.30',
11802 'ExtUtils::ParseXS::CountLines'=> '3.30',
11803 'ExtUtils::ParseXS::Eval'=> '3.30',
11804 'ExtUtils::ParseXS::Utilities'=> '3.30',
11805 'ExtUtils::Typemaps' => '3.30',
11806 'ExtUtils::Typemaps::Cmd'=> '3.30',
11807 'ExtUtils::Typemaps::InputMap'=> '3.30',
11808 'ExtUtils::Typemaps::OutputMap'=> '3.30',
11809 'ExtUtils::Typemaps::Type'=> '3.30',
11810 'ExtUtils::testlib' => '7.10',
11811 'File::Find' => '1.31',
11812 'File::Glob' => '1.25',
11813 'File::Spec' => '3.58',
11814 'File::Spec::AmigaOS' => '3.58',
11815 'File::Spec::Cygwin' => '3.58',
11816 'File::Spec::Epoc' => '3.58',
11817 'File::Spec::Functions' => '3.58',
11818 'File::Spec::Mac' => '3.58',
11819 'File::Spec::OS2' => '3.58',
11820 'File::Spec::Unix' => '3.58',
11821 'File::Spec::VMS' => '3.58',
11822 'File::Spec::Win32' => '3.58',
11823 'Hash::Util::FieldHash' => '1.17',
11824 'Locale::Codes' => '3.36',
11825 'Locale::Codes::Constants'=> '3.36',
11826 'Locale::Codes::Country'=> '3.36',
11827 'Locale::Codes::Country_Codes'=> '3.36',
11828 'Locale::Codes::Country_Retired'=> '3.36',
11829 'Locale::Codes::Currency'=> '3.36',
11830 'Locale::Codes::Currency_Codes'=> '3.36',
11831 'Locale::Codes::Currency_Retired'=> '3.36',
11832 'Locale::Codes::LangExt'=> '3.36',
11833 'Locale::Codes::LangExt_Codes'=> '3.36',
11834 'Locale::Codes::LangExt_Retired'=> '3.36',
11835 'Locale::Codes::LangFam'=> '3.36',
11836 'Locale::Codes::LangFam_Codes'=> '3.36',
11837 'Locale::Codes::LangFam_Retired'=> '3.36',
11838 'Locale::Codes::LangVar'=> '3.36',
11839 'Locale::Codes::LangVar_Codes'=> '3.36',
11840 'Locale::Codes::LangVar_Retired'=> '3.36',
11841 'Locale::Codes::Language'=> '3.36',
11842 'Locale::Codes::Language_Codes'=> '3.36',
11843 'Locale::Codes::Language_Retired'=> '3.36',
11844 'Locale::Codes::Script' => '3.36',
11845 'Locale::Codes::Script_Codes'=> '3.36',
11846 'Locale::Codes::Script_Retired'=> '3.36',
11847 'Locale::Country' => '3.36',
11848 'Locale::Currency' => '3.36',
11849 'Locale::Language' => '3.36',
11850 'Locale::Script' => '3.36',
11851 'Math::BigFloat::Trace' => '0.40',
11852 'Math::BigInt::Trace' => '0.40',
11853 'Module::CoreList' => '5.20150920',
11854 'Module::CoreList::TieHashDelta'=> '5.20150920',
11855 'Module::CoreList::Utils'=> '5.20150920',
11856 'OS2::DLL' => '1.06',
11857 'OS2::ExtAttr' => '0.04',
11858 'OS2::Process' => '1.11',
11859 'OS2::REXX' => '1.05',
11860 'POSIX' => '1.57',
11861 'Pod::Perldoc' => '3.25_01',
11862 'Socket' => '2.020_01',
11863 'Test' => '1.27',
11864 'Thread::Queue' => '3.06',
11865 'Time::HiRes' => '1.9727_02',
11866 'Unicode::UCD' => '0.63',
11867 'Win32' => '0.52',
11868 'XS::APItest' => '0.75',
11869 'bigint' => '0.40',
11870 'bignum' => '0.40',
11871 'bigrat' => '0.40',
11872 'encoding' => '2.17',
11873 'experimental' => '0.014',
11874 'if' => '0.0605',
11875 'locale' => '1.07',
11876 'mro' => '1.18',
11877 'threads' => '2.03',
c0bc7731
MH
11878 },
11879 removed => {
11880 }
11881 },
2d9b5f10
PM
11882 5.023004 => {
11883 delta_from => 5.023003,
11884 changed => {
210f4ae1 11885 'B' => '1.60',
2d9b5f10 11886 'B::Op_private' => '5.023004',
210f4ae1
SH
11887 'Compress::Raw::Bzip2' => '2.069',
11888 'Compress::Raw::Zlib' => '2.069',
11889 'Compress::Zlib' => '2.069',
2d9b5f10 11890 'Config' => '5.023004',
210f4ae1
SH
11891 'Devel::PPPort' => '3.32',
11892 'DynaLoader' => '1.35',
11893 'Encode' => '2.78',
11894 'ExtUtils::CBuilder' => '0.280224',
11895 'ExtUtils::CBuilder::Base'=> '0.280224',
11896 'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
11897 'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
11898 'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
11899 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
11900 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
11901 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
11902 'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
11903 'ExtUtils::CBuilder::Platform::android'=> '0.280224',
11904 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
11905 'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
11906 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
11907 'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
11908 'File::Path' => '2.12',
11909 'IO' => '1.36',
11910 'IO::Compress::Adapter::Bzip2'=> '2.069',
11911 'IO::Compress::Adapter::Deflate'=> '2.069',
11912 'IO::Compress::Adapter::Identity'=> '2.069',
11913 'IO::Compress::Base' => '2.069',
11914 'IO::Compress::Base::Common'=> '2.069',
11915 'IO::Compress::Bzip2' => '2.069',
11916 'IO::Compress::Deflate' => '2.069',
11917 'IO::Compress::Gzip' => '2.069',
11918 'IO::Compress::Gzip::Constants'=> '2.069',
11919 'IO::Compress::RawDeflate'=> '2.069',
11920 'IO::Compress::Zip' => '2.069',
11921 'IO::Compress::Zip::Constants'=> '2.069',
11922 'IO::Compress::Zlib::Constants'=> '2.069',
11923 'IO::Compress::Zlib::Extra'=> '2.069',
11924 'IO::Poll' => '0.10',
11925 'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
11926 'IO::Uncompress::Adapter::Identity'=> '2.069',
11927 'IO::Uncompress::Adapter::Inflate'=> '2.069',
11928 'IO::Uncompress::AnyInflate'=> '2.069',
11929 'IO::Uncompress::AnyUncompress'=> '2.069',
11930 'IO::Uncompress::Base' => '2.069',
11931 'IO::Uncompress::Bunzip2'=> '2.069',
11932 'IO::Uncompress::Gunzip'=> '2.069',
11933 'IO::Uncompress::Inflate'=> '2.069',
11934 'IO::Uncompress::RawInflate'=> '2.069',
11935 'IO::Uncompress::Unzip' => '2.069',
11936 'Math::BigFloat' => '1.999704',
11937 'Math::BigFloat::Trace' => '0.41',
11938 'Math::BigInt' => '1.999704',
11939 'Math::BigInt::Calc' => '1.999704',
11940 'Math::BigInt::CalcEmu' => '1.999704',
11941 'Math::BigInt::FastCalc'=> '0.34',
11942 'Math::BigInt::Trace' => '0.41',
2d9b5f10
PM
11943 'Module::CoreList' => '5.20151020',
11944 'Module::CoreList::TieHashDelta'=> '5.20151020',
11945 'Module::CoreList::Utils'=> '5.20151020',
210f4ae1
SH
11946 'Module::Metadata' => '1.000029',
11947 'POSIX' => '1.58',
11948 'Perl::OSType' => '1.009',
11949 'PerlIO::encoding' => '0.22',
11950 'Socket' => '2.020_02',
11951 'Unicode::Normalize' => '1.21',
11952 'XS::APItest' => '0.76',
11953 'bigint' => '0.41',
11954 'bignum' => '0.41',
11955 'bigrat' => '0.41',
11956 'experimental' => '0.016',
11957 'if' => '0.0606',
11958 'warnings' => '1.35',
2d9b5f10
PM
11959 },
11960 removed => {
11961 }
11962 },
7792a6f5
SH
11963 5.023005 => {
11964 delta_from => 5.023004,
11965 changed => {
93377cd0 11966 'B' => '1.61',
7792a6f5 11967 'B::Op_private' => '5.023005',
93377cd0
A
11968 'Carp' => '1.38',
11969 'Carp::Heavy' => '1.38',
7792a6f5 11970 'Config' => '5.023005',
93377cd0
A
11971 'Config::Perl::V' => '0.25',
11972 'Cwd' => '3.59',
11973 'Devel::Peek' => '1.23',
11974 'Dumpvalue' => '1.18',
11975 'DynaLoader' => '1.36',
11976 'File::Find' => '1.32',
11977 'File::Spec' => '3.59',
11978 'File::Spec::AmigaOS' => '3.59',
11979 'File::Spec::Cygwin' => '3.59',
11980 'File::Spec::Epoc' => '3.59',
11981 'File::Spec::Functions' => '3.59',
11982 'File::Spec::Mac' => '3.59',
11983 'File::Spec::OS2' => '3.59',
11984 'File::Spec::Unix' => '3.59',
11985 'File::Spec::VMS' => '3.59',
11986 'File::Spec::Win32' => '3.59',
11987 'Getopt::Long' => '2.48',
11988 'Hash::Util::FieldHash' => '1.18',
11989 'IPC::Open3' => '1.20',
11990 'Math::BigFloat' => '1.999710',
11991 'Math::BigInt' => '1.999710',
11992 'Math::BigInt::Calc' => '1.999710',
11993 'Math::BigInt::CalcEmu' => '1.999710',
11994 'Math::BigInt::FastCalc'=> '0.37',
7792a6f5
SH
11995 'Module::CoreList' => '5.20151120',
11996 'Module::CoreList::TieHashDelta'=> '5.20151120',
11997 'Module::CoreList::Utils'=> '5.20151120',
93377cd0
A
11998 'Module::Metadata' => '1.000030',
11999 'POSIX' => '1.59',
12000 'PerlIO::encoding' => '0.23',
12001 'PerlIO::mmap' => '0.015',
12002 'PerlIO::scalar' => '0.24',
12003 'PerlIO::via' => '0.16',
12004 'Pod::Simple' => '3.32',
12005 'Pod::Simple::BlackBox' => '3.32',
12006 'Pod::Simple::Checker' => '3.32',
12007 'Pod::Simple::Debug' => '3.32',
12008 'Pod::Simple::DumpAsText'=> '3.32',
12009 'Pod::Simple::DumpAsXML'=> '3.32',
12010 'Pod::Simple::HTML' => '3.32',
12011 'Pod::Simple::HTMLBatch'=> '3.32',
12012 'Pod::Simple::LinkSection'=> '3.32',
12013 'Pod::Simple::Methody' => '3.32',
12014 'Pod::Simple::Progress' => '3.32',
12015 'Pod::Simple::PullParser'=> '3.32',
12016 'Pod::Simple::PullParserEndToken'=> '3.32',
12017 'Pod::Simple::PullParserStartToken'=> '3.32',
12018 'Pod::Simple::PullParserTextToken'=> '3.32',
12019 'Pod::Simple::PullParserToken'=> '3.32',
12020 'Pod::Simple::RTF' => '3.32',
12021 'Pod::Simple::Search' => '3.32',
12022 'Pod::Simple::SimpleTree'=> '3.32',
12023 'Pod::Simple::Text' => '3.32',
12024 'Pod::Simple::TextContent'=> '3.32',
12025 'Pod::Simple::TiedOutFH'=> '3.32',
12026 'Pod::Simple::Transcode'=> '3.32',
12027 'Pod::Simple::TranscodeDumb'=> '3.32',
12028 'Pod::Simple::TranscodeSmart'=> '3.32',
12029 'Pod::Simple::XHTML' => '3.32',
12030 'Pod::Simple::XMLOutStream'=> '3.32',
12031 'Thread::Queue' => '3.07',
12032 'Tie::Scalar' => '1.04',
12033 'Time::HiRes' => '1.9728',
12034 'Time::Piece' => '1.31',
12035 'Time::Seconds' => '1.31',
12036 'Unicode::Normalize' => '1.23',
12037 'XSLoader' => '0.21',
12038 'arybase' => '0.11',
12039 'base' => '2.22_01',
12040 'fields' => '2.22_01',
12041 'threads' => '2.04',
12042 'threads::shared' => '1.49',
12043 },
12044 removed => {
12045 'ExtUtils::MakeMaker::version::vpp'=> 1,
12046 'version::vpp' => 1,
7792a6f5
SH
12047 }
12048 },
83cfc1da
SH
12049 5.022001 => {
12050 delta_from => 5.022,
12051 changed => {
12052 'B::Op_private' => '5.022001',
12053 'Config' => '5.022001',
9c75bdd1
SH
12054 'Module::CoreList' => '5.20151213',
12055 'Module::CoreList::TieHashDelta'=> '5.20151213',
12056 'Module::CoreList::Utils'=> '5.20151213',
83cfc1da
SH
12057 'POSIX' => '1.53_01',
12058 'PerlIO::scalar' => '0.23',
12059 'Storable' => '2.53_01',
12060 'Win32' => '0.52',
12061 'warnings' => '1.34',
12062 },
12063 removed => {
12064 }
12065 },
7c294235
A
12066 5.023006 => {
12067 delta_from => 5.023005,
12068 changed => {
b733cacc 12069 'B::Deparse' => '1.36',
7c294235 12070 'B::Op_private' => '5.023006',
b733cacc
DG
12071 'Benchmark' => '1.21',
12072 'CPAN::Meta::Requirements'=> '2.140',
12073 'CPAN::Meta::YAML' => '0.018',
7c294235 12074 'Config' => '5.023006',
b733cacc
DG
12075 'Cwd' => '3.60',
12076 'Data::Dumper' => '2.159',
12077 'DynaLoader' => '1.37',
12078 'File::Spec' => '3.60',
12079 'File::Spec::AmigaOS' => '3.60',
12080 'File::Spec::Cygwin' => '3.60',
12081 'File::Spec::Epoc' => '3.60',
12082 'File::Spec::Functions' => '3.60',
12083 'File::Spec::Mac' => '3.60',
12084 'File::Spec::OS2' => '3.60',
12085 'File::Spec::Unix' => '3.60',
12086 'File::Spec::VMS' => '3.60',
12087 'File::Spec::Win32' => '3.60',
12088 'Hash::Util::FieldHash' => '1.19',
12089 'Locale::Codes' => '3.37',
12090 'Locale::Codes::Constants'=> '3.37',
12091 'Locale::Codes::Country'=> '3.37',
12092 'Locale::Codes::Country_Codes'=> '3.37',
12093 'Locale::Codes::Country_Retired'=> '3.37',
12094 'Locale::Codes::Currency'=> '3.37',
12095 'Locale::Codes::Currency_Codes'=> '3.37',
12096 'Locale::Codes::Currency_Retired'=> '3.37',
12097 'Locale::Codes::LangExt'=> '3.37',
12098 'Locale::Codes::LangExt_Codes'=> '3.37',
12099 'Locale::Codes::LangExt_Retired'=> '3.37',
12100 'Locale::Codes::LangFam'=> '3.37',
12101 'Locale::Codes::LangFam_Codes'=> '3.37',
12102 'Locale::Codes::LangFam_Retired'=> '3.37',
12103 'Locale::Codes::LangVar'=> '3.37',
12104 'Locale::Codes::LangVar_Codes'=> '3.37',
12105 'Locale::Codes::LangVar_Retired'=> '3.37',
12106 'Locale::Codes::Language'=> '3.37',
12107 'Locale::Codes::Language_Codes'=> '3.37',
12108 'Locale::Codes::Language_Retired'=> '3.37',
12109 'Locale::Codes::Script' => '3.37',
12110 'Locale::Codes::Script_Codes'=> '3.37',
12111 'Locale::Codes::Script_Retired'=> '3.37',
12112 'Locale::Country' => '3.37',
12113 'Locale::Currency' => '3.37',
12114 'Locale::Language' => '3.37',
12115 'Locale::Script' => '3.37',
12116 'Math::BigInt::FastCalc'=> '0.38',
12117 'Module::CoreList' => '5.20151220',
12118 'Module::CoreList::TieHashDelta'=> '5.20151220',
12119 'Module::CoreList::Utils'=> '5.20151220',
12120 'Module::Metadata' => '1.000031',
12121 'Opcode' => '1.34',
12122 'PerlIO::mmap' => '0.016',
12123 'Pod::Perldoc' => '3.25_02',
12124 'SDBM_File' => '1.14',
12125 'Term::ANSIColor' => '4.04',
12126 'Test' => '1.28',
12127 'Unicode::Normalize' => '1.24',
12128 'XS::APItest' => '0.77',
12129 'base' => '2.23',
12130 'encoding::warnings' => '0.12',
12131 'fields' => '2.23',
7c294235 12132 'locale' => '1.08',
b733cacc
DG
12133 'strict' => '1.10',
12134 'threads' => '2.05',
12135 'threads::shared' => '1.50',
12136 'utf8' => '1.18',
7c294235
A
12137 },
12138 removed => {
12139 }
12140 },
5d4cc497
DG
12141 5.023007 => {
12142 delta_from => 5.023006,
12143 changed => {
bbab6af9
SL
12144 'App::Prove' => '3.36',
12145 'App::Prove::State' => '3.36',
12146 'App::Prove::State::Result'=> '3.36',
12147 'App::Prove::State::Result::Test'=> '3.36',
12148 'B' => '1.62',
12149 'B::Deparse' => '1.37',
5d4cc497 12150 'B::Op_private' => '5.023007',
bbab6af9 12151 'Benchmark' => '1.22',
5d4cc497 12152 'Config' => '5.023007',
bbab6af9
SL
12153 'Cwd' => '3.62',
12154 'Data::Dumper' => '2.160',
12155 'ExtUtils::ParseXS' => '3.31',
12156 'ExtUtils::ParseXS::Constants'=> '3.31',
12157 'ExtUtils::ParseXS::CountLines'=> '3.31',
12158 'ExtUtils::ParseXS::Eval'=> '3.31',
12159 'ExtUtils::ParseXS::Utilities'=> '3.31',
12160 'ExtUtils::Typemaps' => '3.31',
12161 'ExtUtils::Typemaps::Cmd'=> '3.31',
12162 'ExtUtils::Typemaps::InputMap'=> '3.31',
12163 'ExtUtils::Typemaps::OutputMap'=> '3.31',
12164 'ExtUtils::Typemaps::Type'=> '3.31',
12165 'File::Find' => '1.33',
12166 'File::Spec' => '3.62',
12167 'File::Spec::AmigaOS' => '3.62',
12168 'File::Spec::Cygwin' => '3.62',
12169 'File::Spec::Epoc' => '3.62',
12170 'File::Spec::Functions' => '3.62',
12171 'File::Spec::Mac' => '3.62',
12172 'File::Spec::OS2' => '3.62',
12173 'File::Spec::Unix' => '3.62',
12174 'File::Spec::VMS' => '3.62',
12175 'File::Spec::Win32' => '3.62',
12176 'Math::BigFloat' => '1.999715',
12177 'Math::BigFloat::Trace' => '0.42',
12178 'Math::BigInt' => '1.999715',
12179 'Math::BigInt::Calc' => '1.999715',
12180 'Math::BigInt::CalcEmu' => '1.999715',
12181 'Math::BigInt::FastCalc'=> '0.40',
12182 'Math::BigInt::Trace' => '0.42',
12183 'Math::BigRat' => '0.260802',
5d4cc497
DG
12184 'Module::CoreList' => '5.20160120',
12185 'Module::CoreList::TieHashDelta'=> '5.20160120',
12186 'Module::CoreList::Utils'=> '5.20160120',
bbab6af9
SL
12187 'Net::Cmd' => '3.08',
12188 'Net::Config' => '3.08',
12189 'Net::Domain' => '3.08',
12190 'Net::FTP' => '3.08',
12191 'Net::FTP::A' => '3.08',
12192 'Net::FTP::E' => '3.08',
12193 'Net::FTP::I' => '3.08',
12194 'Net::FTP::L' => '3.08',
12195 'Net::FTP::dataconn' => '3.08',
12196 'Net::NNTP' => '3.08',
12197 'Net::Netrc' => '3.08',
12198 'Net::POP3' => '3.08',
12199 'Net::SMTP' => '3.08',
12200 'Net::Time' => '3.08',
12201 'Pod::Man' => '4.04',
12202 'Pod::ParseLink' => '4.04',
12203 'Pod::Text' => '4.04',
12204 'Pod::Text::Color' => '4.04',
12205 'Pod::Text::Overstrike' => '4.04',
12206 'Pod::Text::Termcap' => '4.04',
12207 'Pod::Usage' => '1.68',
12208 'TAP::Base' => '3.36',
12209 'TAP::Formatter::Base' => '3.36',
12210 'TAP::Formatter::Color' => '3.36',
12211 'TAP::Formatter::Console'=> '3.36',
12212 'TAP::Formatter::Console::ParallelSession'=> '3.36',
12213 'TAP::Formatter::Console::Session'=> '3.36',
12214 'TAP::Formatter::File' => '3.36',
12215 'TAP::Formatter::File::Session'=> '3.36',
12216 'TAP::Formatter::Session'=> '3.36',
12217 'TAP::Harness' => '3.36',
12218 'TAP::Harness::Env' => '3.36',
12219 'TAP::Object' => '3.36',
12220 'TAP::Parser' => '3.36',
12221 'TAP::Parser::Aggregator'=> '3.36',
12222 'TAP::Parser::Grammar' => '3.36',
12223 'TAP::Parser::Iterator' => '3.36',
12224 'TAP::Parser::Iterator::Array'=> '3.36',
12225 'TAP::Parser::Iterator::Process'=> '3.36',
12226 'TAP::Parser::Iterator::Stream'=> '3.36',
12227 'TAP::Parser::IteratorFactory'=> '3.36',
12228 'TAP::Parser::Multiplexer'=> '3.36',
12229 'TAP::Parser::Result' => '3.36',
12230 'TAP::Parser::Result::Bailout'=> '3.36',
12231 'TAP::Parser::Result::Comment'=> '3.36',
12232 'TAP::Parser::Result::Plan'=> '3.36',
12233 'TAP::Parser::Result::Pragma'=> '3.36',
12234 'TAP::Parser::Result::Test'=> '3.36',
12235 'TAP::Parser::Result::Unknown'=> '3.36',
12236 'TAP::Parser::Result::Version'=> '3.36',
12237 'TAP::Parser::Result::YAML'=> '3.36',
12238 'TAP::Parser::ResultFactory'=> '3.36',
12239 'TAP::Parser::Scheduler'=> '3.36',
12240 'TAP::Parser::Scheduler::Job'=> '3.36',
12241 'TAP::Parser::Scheduler::Spinner'=> '3.36',
12242 'TAP::Parser::Source' => '3.36',
12243 'TAP::Parser::SourceHandler'=> '3.36',
12244 'TAP::Parser::SourceHandler::Executable'=> '3.36',
12245 'TAP::Parser::SourceHandler::File'=> '3.36',
12246 'TAP::Parser::SourceHandler::Handle'=> '3.36',
12247 'TAP::Parser::SourceHandler::Perl'=> '3.36',
12248 'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
12249 'TAP::Parser::YAMLish::Reader'=> '3.36',
12250 'TAP::Parser::YAMLish::Writer'=> '3.36',
12251 'Test::Harness' => '3.36',
12252 'Unicode::Normalize' => '1.25',
12253 'Unicode::UCD' => '0.64',
12254 'XS::APItest' => '0.78',
12255 'bigint' => '0.42',
12256 'bignum' => '0.42',
12257 'bigrat' => '0.42',
12258 'utf8' => '1.19',
5d4cc497
DG
12259 },
12260 removed => {
12261 }
12262 },
519be8b0
TC
12263 5.023008 => {
12264 delta_from => 5.023007,
12265 changed => {
12266 'B::Op_private' => '5.023008',
12267 'Config' => '5.023008',
b5fa05a4
S
12268 'Cwd' => '3.63',
12269 'DynaLoader' => '1.38',
12270 'Encode' => '2.80',
12271 'Encode::Alias' => '2.20',
12272 'Encode::MIME::Header' => '2.19',
12273 'Encode::Unicode' => '2.15',
12274 'ExtUtils::CBuilder' => '0.280225',
12275 'ExtUtils::CBuilder::Base'=> '0.280225',
12276 'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
12277 'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
12278 'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
12279 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
12280 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
12281 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
12282 'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
12283 'ExtUtils::CBuilder::Platform::android'=> '0.280225',
12284 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
12285 'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
12286 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
12287 'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
12288 'ExtUtils::Command::MM' => '7.10_01',
12289 'ExtUtils::Liblist' => '7.10_01',
12290 'ExtUtils::Liblist::Kid'=> '7.10_01',
12291 'ExtUtils::MM' => '7.10_01',
12292 'ExtUtils::MM_AIX' => '7.10_01',
12293 'ExtUtils::MM_Any' => '7.10_01',
12294 'ExtUtils::MM_BeOS' => '7.10_01',
12295 'ExtUtils::MM_Cygwin' => '7.10_01',
12296 'ExtUtils::MM_DOS' => '7.10_01',
12297 'ExtUtils::MM_Darwin' => '7.10_01',
12298 'ExtUtils::MM_MacOS' => '7.10_01',
12299 'ExtUtils::MM_NW5' => '7.10_01',
12300 'ExtUtils::MM_OS2' => '7.10_01',
12301 'ExtUtils::MM_QNX' => '7.10_01',
12302 'ExtUtils::MM_UWIN' => '7.10_01',
12303 'ExtUtils::MM_Unix' => '7.10_01',
12304 'ExtUtils::MM_VMS' => '7.10_01',
12305 'ExtUtils::MM_VOS' => '7.10_01',
12306 'ExtUtils::MM_Win32' => '7.10_01',
12307 'ExtUtils::MM_Win95' => '7.10_01',
12308 'ExtUtils::MY' => '7.10_01',
12309 'ExtUtils::MakeMaker' => '7.10_01',
12310 'ExtUtils::MakeMaker::Config'=> '7.10_01',
12311 'ExtUtils::MakeMaker::version'=> '7.10_01',
12312 'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
12313 'ExtUtils::Mkbootstrap' => '7.10_01',
12314 'ExtUtils::Mksymlists' => '7.10_01',
12315 'ExtUtils::testlib' => '7.10_01',
12316 'File::Spec' => '3.63',
12317 'File::Spec::AmigaOS' => '3.63',
12318 'File::Spec::Cygwin' => '3.63',
12319 'File::Spec::Epoc' => '3.63',
12320 'File::Spec::Functions' => '3.63',
12321 'File::Spec::Mac' => '3.63',
12322 'File::Spec::OS2' => '3.63',
12323 'File::Spec::Unix' => '3.63',
12324 'File::Spec::VMS' => '3.63',
12325 'File::Spec::Win32' => '3.63',
12326 'IPC::Msg' => '2.05',
12327 'IPC::Semaphore' => '2.05',
12328 'IPC::SharedMem' => '2.05',
12329 'IPC::SysV' => '2.05',
519be8b0
TC
12330 'Module::CoreList' => '5.20160121',
12331 'Module::CoreList::TieHashDelta'=> '5.20160121',
12332 'Module::CoreList::Utils'=> '5.20160121',
b5fa05a4
S
12333 'ODBM_File' => '1.13',
12334 'POSIX' => '1.63',
12335 'PerlIO::encoding' => '0.24',
12336 'Pod::Man' => '4.06',
12337 'Pod::ParseLink' => '4.06',
12338 'Pod::Text' => '4.06',
12339 'Pod::Text::Color' => '4.06',
12340 'Pod::Text::Overstrike' => '4.06',
12341 'Pod::Text::Termcap' => '4.06',
12342 'Storable' => '2.55',
12343 'Time::HiRes' => '1.9730',
12344 'XS::APItest' => '0.79',
519be8b0
TC
12345 },
12346 removed => {
12347 }
12348 },
0515d31c
S
12349 5.023009 => {
12350 delta_from => 5.023008,
12351 changed => {
489c35bb
A
12352 'Amiga::ARexx' => '0.04',
12353 'Amiga::Exec' => '0.02',
28192377 12354 'B::Op_private' => '5.023009',
489c35bb
A
12355 'Carp' => '1.40',
12356 'Carp::Heavy' => '1.40',
28192377 12357 'Config' => '5.023009',
489c35bb
A
12358 'Errno' => '1.25',
12359 'ExtUtils::Embed' => '1.33',
12360 'File::Find' => '1.34',
12361 'File::Glob' => '1.26',
12362 'File::Spec::AmigaOS' => ';.64',
12363 'IPC::Msg' => '2.06_01',
12364 'IPC::Semaphore' => '2.06_01',
12365 'IPC::SharedMem' => '2.06_01',
12366 'IPC::SysV' => '2.06_01',
12367 'List::Util' => '1.42_02',
12368 'List::Util::XS' => '1.42_02',
12369 'Module::CoreList' => '5.20160320',
12370 'Module::CoreList::TieHashDelta'=> '5.20160320',
12371 'Module::CoreList::Utils'=> '5.20160320',
12372 'POSIX' => '1.64',
12373 'Pod::Functions' => '1.10',
12374 'Pod::Functions::Functions'=> '1.10',
12375 'Scalar::Util' => '1.42_02',
12376 'SelfLoader' => '1.23',
12377 'Socket' => '2.020_03',
12378 'Storable' => '2.56',
12379 'Sub::Util' => '1.42_02',
12380 'Thread::Queue' => '3.08',
12381 'Tie::File' => '1.02',
12382 'Time::HiRes' => '1.9732',
12383 'Win32API::File' => '0.1203',
12384 'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1',
12385 'XS::APItest' => '0.80',
12386 'autouse' => '1.11',
12387 'bytes' => '1.05',
12388 'strict' => '1.11',
12389 'threads' => '2.06',
12390 'version' => '0.9916',
12391 'version::regex' => '0.9916',
12392 'warnings' => '1.36',
12393 },
12394 removed => {
12395 'Win32API::File::ExtUtils::Myconst2perl'=> 1,
0515d31c
S
12396 }
12397 },
e42cacf8
SH
12398 5.022002 => {
12399 delta_from => 5.022001,
12400 changed => {
12401 'B::Op_private' => '5.022002',
12402 'Config' => '5.022002',
12403 'Cwd' => '3.56_01',
12404 'File::Spec' => '3.56_01',
12405 'File::Spec::Cygwin' => '3.56_01',
12406 'File::Spec::Epoc' => '3.56_01',
12407 'File::Spec::Functions' => '3.56_01',
12408 'File::Spec::Mac' => '3.56_01',
12409 'File::Spec::OS2' => '3.56_01',
12410 'File::Spec::Unix' => '3.56_01',
12411 'File::Spec::VMS' => '3.56_01',
12412 'File::Spec::Win32' => '3.56_01',
12413 'Module::CoreList' => '5.20160429',
12414 'Module::CoreList::TieHashDelta'=> '5.20160429',
12415 'Module::CoreList::Utils'=> '5.20160429',
12416 'XS::APItest' => '0.72_01',
12417 },
12418 removed => {
12419 }
12420 },
de1edec7 12421 5.024000 => {
d1fa969e
A
12422 delta_from => 5.023009,
12423 changed => {
de1edec7
RS
12424 'B::Op_private' => '5.024000',
12425 'Config' => '5.024',
8a355c19 12426 'File::Copy' => '2.31',
de1edec7
RS
12427 'File::Path' => '2.12_01',
12428 'File::Spec::AmigaOS' => '3.64',
c800d8b3 12429 'IO::Handle' => '1.36',
1bbb0949
RS
12430 'Module::CoreList' => '5.20160506',
12431 'Module::CoreList::TieHashDelta'=> '5.20160506',
12432 'Module::CoreList::Utils'=> '5.20160506',
de1edec7
RS
12433 'ODBM_File' => '1.14',
12434 'POSIX' => '1.65',
12435 'Pod::Man' => '4.07',
12436 'Pod::ParseLink' => '4.07',
12437 'Pod::Text' => '4.07',
12438 'Pod::Text::Color' => '4.07',
12439 'Pod::Text::Overstrike' => '4.07',
12440 'Pod::Text::Termcap' => '4.07',
4a9f92ef 12441 'Thread::Queue' => '3.09',
aec451e9 12442 'Time::HiRes' => '1.9733',
1a8aefec
RS
12443 'threads' => '2.07',
12444 'threads::shared' => '1.51',
c800d8b3
RS
12445 'locale' => '1.09',
12446 },
12447 removed => {
12448 }
12449 },
12450 5.025000 => {
12451 delta_from => 5.024,
12452 changed => {
12453 'B::Op_private' => '5.025000',
12454 'Config' => '5.025',
12455 'Module::CoreList' => '5.20160507',
12456 'Module::CoreList::TieHashDelta'=> '5.20160507',
12457 'Module::CoreList::Utils'=> '5.20160507',
2c5484a6 12458 'feature' => '1.43',
d1fa969e
A
12459 },
12460 removed => {
12461 }
12462 },
4170737e 12463 5.025001 => {
f7a1e8ff 12464 delta_from => 5.025,
4170737e 12465 changed => {
f7a1e8ff
S
12466 'Archive::Tar' => '2.08',
12467 'Archive::Tar::Constant'=> '2.08',
12468 'Archive::Tar::File' => '2.08',
4170737e 12469 'B::Op_private' => '5.025001',
f7a1e8ff
S
12470 'Carp' => '1.41',
12471 'Carp::Heavy' => '1.41',
4170737e 12472 'Config' => '5.025001',
f7a1e8ff
S
12473 'Config::Perl::V' => '0.26',
12474 'DB_File' => '1.838',
12475 'Digest::MD5' => '2.55',
12476 'IPC::Cmd' => '0.94',
12477 'IPC::Msg' => '2.07',
12478 'IPC::Semaphore' => '2.07',
12479 'IPC::SharedMem' => '2.07',
12480 'IPC::SysV' => '2.07',
12481 'List::Util' => '1.45_01',
12482 'List::Util::XS' => '1.45_01',
12483 'Locale::Codes' => '3.38',
12484 'Locale::Codes::Constants'=> '3.38',
12485 'Locale::Codes::Country'=> '3.38',
12486 'Locale::Codes::Country_Codes'=> '3.38',
12487 'Locale::Codes::Country_Retired'=> '3.38',
12488 'Locale::Codes::Currency'=> '3.38',
12489 'Locale::Codes::Currency_Codes'=> '3.38',
12490 'Locale::Codes::Currency_Retired'=> '3.38',
12491 'Locale::Codes::LangExt'=> '3.38',
12492 'Locale::Codes::LangExt_Codes'=> '3.38',
12493 'Locale::Codes::LangExt_Retired'=> '3.38',
12494 'Locale::Codes::LangFam'=> '3.38',
12495 'Locale::Codes::LangFam_Codes'=> '3.38',
12496 'Locale::Codes::LangFam_Retired'=> '3.38',
12497 'Locale::Codes::LangVar'=> '3.38',
12498 'Locale::Codes::LangVar_Codes'=> '3.38',
12499 'Locale::Codes::LangVar_Retired'=> '3.38',
12500 'Locale::Codes::Language'=> '3.38',
12501 'Locale::Codes::Language_Codes'=> '3.38',
12502 'Locale::Codes::Language_Retired'=> '3.38',
12503 'Locale::Codes::Script' => '3.38',
12504 'Locale::Codes::Script_Codes'=> '3.38',
12505 'Locale::Codes::Script_Retired'=> '3.38',
12506 'Locale::Country' => '3.38',
12507 'Locale::Currency' => '3.38',
12508 'Locale::Language' => '3.38',
12509 'Locale::Maketext' => '1.27',
12510 'Locale::Script' => '3.38',
4170737e
RS
12511 'Module::CoreList' => '5.20160520',
12512 'Module::CoreList::TieHashDelta'=> '5.20160520',
12513 'Module::CoreList::Utils'=> '5.20160520',
f7a1e8ff
S
12514 'Module::Metadata' => '1.000032',
12515 'POSIX' => '1.69',
12516 'Scalar::Util' => '1.45_01',
12517 'Sub::Util' => '1.45_01',
12518 'Sys::Syslog' => '0.34',
12519 'Term::ANSIColor' => '4.05',
12520 'Test2' => '1.302015',
12521 'Test2::API' => '1.302015',
12522 'Test2::API::Breakage' => '1.302015',
12523 'Test2::API::Context' => '1.302015',
12524 'Test2::API::Instance' => '1.302015',
12525 'Test2::API::Stack' => '1.302015',
12526 'Test2::Event' => '1.302015',
12527 'Test2::Event::Bail' => '1.302015',
12528 'Test2::Event::Diag' => '1.302015',
12529 'Test2::Event::Exception'=> '1.302015',
12530 'Test2::Event::Note' => '1.302015',
12531 'Test2::Event::Ok' => '1.302015',
12532 'Test2::Event::Plan' => '1.302015',
12533 'Test2::Event::Skip' => '1.302015',
12534 'Test2::Event::Subtest' => '1.302015',
12535 'Test2::Event::Waiting' => '1.302015',
12536 'Test2::Formatter' => '1.302015',
12537 'Test2::Formatter::TAP' => '1.302015',
12538 'Test2::Hub' => '1.302015',
12539 'Test2::Hub::Interceptor'=> '1.302015',
12540 'Test2::Hub::Interceptor::Terminator'=> '1.302015',
12541 'Test2::Hub::Subtest' => '1.302015',
12542 'Test2::IPC' => '1.302015',
12543 'Test2::IPC::Driver' => '1.302015',
12544 'Test2::IPC::Driver::Files'=> '1.302015',
12545 'Test2::Util' => '1.302015',
12546 'Test2::Util::ExternalMeta'=> '1.302015',
12547 'Test2::Util::HashBase' => '1.302015',
12548 'Test2::Util::Trace' => '1.302015',
12549 'Test::Builder' => '1.302015',
12550 'Test::Builder::Formatter'=> '1.302015',
12551 'Test::Builder::Module' => '1.302015',
12552 'Test::Builder::Tester' => '1.302015',
12553 'Test::Builder::Tester::Color'=> '1.302015',
12554 'Test::Builder::TodoDiag'=> '1.302015',
12555 'Test::More' => '1.302015',
12556 'Test::Simple' => '1.302015',
12557 'Test::Tester' => '1.302015',
12558 'Test::Tester::Capture' => '1.302015',
12559 'Test::Tester::CaptureRunner'=> '1.302015',
12560 'Test::Tester::Delegate'=> '1.302015',
12561 'Test::use::ok' => '1.302015',
12562 'XS::APItest' => '0.81',
12563 '_charnames' => '1.44',
12564 'charnames' => '1.44',
12565 'ok' => '1.302015',
12566 'perlfaq' => '5.021011',
12567 're' => '0.33',
12568 'threads' => '2.08',
12569 'threads::shared' => '1.52',
4170737e
RS
12570 },
12571 removed => {
12572 }
12573 },
a55ca2cb
FC
12574 5.025002 => {
12575 delta_from => 5.025001,
12576 changed => {
7984aa21
MH
12577 'App::Cpan' => '1.64',
12578 'B::Op_private' => '5.025002',
12579 'CPAN' => '2.14',
12580 'CPAN::Distribution' => '2.12',
12581 'CPAN::FTP' => '5.5007',
12582 'CPAN::FirstTime' => '5.5309',
12583 'CPAN::HandleConfig' => '5.5007',
12584 'CPAN::Index' => '2.12',
12585 'CPAN::Mirrors' => '2.12',
12586 'CPAN::Plugin' => '0.96',
12587 'CPAN::Shell' => '5.5006',
12588 'Config' => '5.025002',
12589 'Cwd' => '3.64',
12590 'Devel::Peek' => '1.24',
12591 'DynaLoader' => '1.39',
12592 'ExtUtils::Command' => '7.18',
12593 'ExtUtils::Command::MM' => '7.18',
12594 'ExtUtils::Liblist' => '7.18',
12595 'ExtUtils::Liblist::Kid'=> '7.18',
12596 'ExtUtils::MM' => '7.18',
12597 'ExtUtils::MM_AIX' => '7.18',
12598 'ExtUtils::MM_Any' => '7.18',
12599 'ExtUtils::MM_BeOS' => '7.18',
12600 'ExtUtils::MM_Cygwin' => '7.18',
12601 'ExtUtils::MM_DOS' => '7.18',
12602 'ExtUtils::MM_Darwin' => '7.18',
12603 'ExtUtils::MM_MacOS' => '7.18',
12604 'ExtUtils::MM_NW5' => '7.18',
12605 'ExtUtils::MM_OS2' => '7.18',
12606 'ExtUtils::MM_QNX' => '7.18',
12607 'ExtUtils::MM_UWIN' => '7.18',
12608 'ExtUtils::MM_Unix' => '7.18',
12609 'ExtUtils::MM_VMS' => '7.18',
12610 'ExtUtils::MM_VOS' => '7.18',
12611 'ExtUtils::MM_Win32' => '7.18',
12612 'ExtUtils::MM_Win95' => '7.18',
12613 'ExtUtils::MY' => '7.18',
12614 'ExtUtils::MakeMaker' => '7.18',
12615 'ExtUtils::MakeMaker::Config'=> '7.18',
12616 'ExtUtils::MakeMaker::Locale'=> '7.18',
12617 'ExtUtils::MakeMaker::version'=> '7.18',
12618 'ExtUtils::MakeMaker::version::regex'=> '7.18',
12619 'ExtUtils::Miniperl' => '1.06',
12620 'ExtUtils::Mkbootstrap' => '7.18',
12621 'ExtUtils::Mksymlists' => '7.18',
12622 'ExtUtils::ParseXS' => '3.32',
12623 'ExtUtils::ParseXS::Constants'=> '3.32',
12624 'ExtUtils::ParseXS::CountLines'=> '3.32',
12625 'ExtUtils::ParseXS::Eval'=> '3.32',
12626 'ExtUtils::ParseXS::Utilities'=> '3.32',
12627 'ExtUtils::Typemaps' => '3.32',
12628 'ExtUtils::Typemaps::Cmd'=> '3.32',
12629 'ExtUtils::Typemaps::InputMap'=> '3.32',
12630 'ExtUtils::Typemaps::OutputMap'=> '3.32',
12631 'ExtUtils::Typemaps::Type'=> '3.32',
12632 'ExtUtils::testlib' => '7.18',
12633 'File::Copy' => '2.32',
12634 'File::Glob' => '1.27',
12635 'File::Spec' => '3.64',
12636 'File::Spec::Cygwin' => '3.64',
12637 'File::Spec::Epoc' => '3.64',
12638 'File::Spec::Functions' => '3.64',
12639 'File::Spec::Mac' => '3.64',
12640 'File::Spec::OS2' => '3.64',
12641 'File::Spec::Unix' => '3.64',
12642 'File::Spec::VMS' => '3.64',
12643 'File::Spec::Win32' => '3.64',
12644 'FileHandle' => '2.03',
12645 'Getopt::Long' => '2.49',
12646 'HTTP::Tiny' => '0.058',
12647 'JSON::PP' => '2.27400',
12648 'Locale::Codes' => '3.39',
12649 'Locale::Codes::Constants'=> '3.39',
12650 'Locale::Codes::Country'=> '3.39',
12651 'Locale::Codes::Country_Codes'=> '3.39',
12652 'Locale::Codes::Country_Retired'=> '3.39',
12653 'Locale::Codes::Currency'=> '3.39',
12654 'Locale::Codes::Currency_Codes'=> '3.39',
12655 'Locale::Codes::Currency_Retired'=> '3.39',
12656 'Locale::Codes::LangExt'=> '3.39',
12657 'Locale::Codes::LangExt_Codes'=> '3.39',
12658 'Locale::Codes::LangExt_Retired'=> '3.39',
12659 'Locale::Codes::LangFam'=> '3.39',
12660 'Locale::Codes::LangFam_Codes'=> '3.39',
12661 'Locale::Codes::LangFam_Retired'=> '3.39',
12662 'Locale::Codes::LangVar'=> '3.39',
12663 'Locale::Codes::LangVar_Codes'=> '3.39',
12664 'Locale::Codes::LangVar_Retired'=> '3.39',
12665 'Locale::Codes::Language'=> '3.39',
12666 'Locale::Codes::Language_Codes'=> '3.39',
12667 'Locale::Codes::Language_Retired'=> '3.39',
12668 'Locale::Codes::Script' => '3.39',
12669 'Locale::Codes::Script_Codes'=> '3.39',
12670 'Locale::Codes::Script_Retired'=> '3.39',
12671 'Locale::Country' => '3.39',
12672 'Locale::Currency' => '3.39',
12673 'Locale::Language' => '3.39',
12674 'Locale::Script' => '3.39',
12675 'Module::CoreList' => '5.20160620',
12676 'Module::CoreList::TieHashDelta'=> '5.20160620',
12677 'Module::CoreList::Utils'=> '5.20160620',
12678 'Opcode' => '1.35',
12679 'POSIX' => '1.70',
12680 'Pod::Checker' => '1.73',
12681 'Pod::Functions' => '1.11',
12682 'Pod::Functions::Functions'=> '1.11',
12683 'Pod::Usage' => '1.69',
12684 'Test2' => '1.302026',
12685 'Test2::API' => '1.302026',
12686 'Test2::API::Breakage' => '1.302026',
12687 'Test2::API::Context' => '1.302026',
12688 'Test2::API::Instance' => '1.302026',
12689 'Test2::API::Stack' => '1.302026',
12690 'Test2::Event' => '1.302026',
12691 'Test2::Event::Bail' => '1.302026',
12692 'Test2::Event::Diag' => '1.302026',
12693 'Test2::Event::Exception'=> '1.302026',
12694 'Test2::Event::Generic' => '1.302026',
12695 'Test2::Event::Note' => '1.302026',
12696 'Test2::Event::Ok' => '1.302026',
12697 'Test2::Event::Plan' => '1.302026',
12698 'Test2::Event::Skip' => '1.302026',
12699 'Test2::Event::Subtest' => '1.302026',
12700 'Test2::Event::Waiting' => '1.302026',
12701 'Test2::Formatter' => '1.302026',
12702 'Test2::Formatter::TAP' => '1.302026',
12703 'Test2::Hub' => '1.302026',
12704 'Test2::Hub::Interceptor'=> '1.302026',
12705 'Test2::Hub::Interceptor::Terminator'=> '1.302026',
12706 'Test2::Hub::Subtest' => '1.302026',
12707 'Test2::IPC' => '1.302026',
12708 'Test2::IPC::Driver' => '1.302026',
12709 'Test2::IPC::Driver::Files'=> '1.302026',
12710 'Test2::Util' => '1.302026',
12711 'Test2::Util::ExternalMeta'=> '1.302026',
12712 'Test2::Util::HashBase' => '1.302026',
12713 'Test2::Util::Trace' => '1.302026',
12714 'Test::Builder' => '1.302026',
12715 'Test::Builder::Formatter'=> '1.302026',
12716 'Test::Builder::Module' => '1.302026',
12717 'Test::Builder::Tester' => '1.302026',
12718 'Test::Builder::Tester::Color'=> '1.302026',
12719 'Test::Builder::TodoDiag'=> '1.302026',
12720 'Test::More' => '1.302026',
12721 'Test::Simple' => '1.302026',
12722 'Test::Tester' => '1.302026',
12723 'Test::Tester::Capture' => '1.302026',
12724 'Test::Tester::CaptureRunner'=> '1.302026',
12725 'Test::Tester::Delegate'=> '1.302026',
12726 'Test::use::ok' => '1.302026',
12727 'Thread::Queue' => '3.11',
12728 'Time::HiRes' => '1.9734',
12729 'Unicode::UCD' => '0.65',
12730 'VMS::DCLsym' => '1.07',
12731 'XS::APItest' => '0.82',
12732 'diagnostics' => '1.35',
12733 'feature' => '1.44',
12734 'ok' => '1.302026',
12735 'threads' => '2.09',
a55ca2cb
FC
12736 },
12737 removed => {
12738 }
12739 },
c338e234
MH
12740 5.025003 => {
12741 delta_from => 5.025002,
12742 changed => {
12743 'B::Op_private' => '5.025003',
12744 'Config' => '5.025003',
42a3cde1
SH
12745 'Data::Dumper' => '2.161',
12746 'Devel::PPPort' => '3.35',
12747 'Encode' => '2.84',
12748 'Encode::MIME::Header' => '2.23',
12749 'Encode::MIME::Header::ISO_2022_JP'=> '1.07',
12750 'ExtUtils::ParseXS' => '3.33',
12751 'ExtUtils::ParseXS::Constants'=> '3.33',
12752 'ExtUtils::ParseXS::CountLines'=> '3.33',
12753 'ExtUtils::ParseXS::Eval'=> '3.33',
12754 'ExtUtils::ParseXS::Utilities'=> '3.33',
12755 'ExtUtils::Typemaps' => '3.33',
12756 'ExtUtils::Typemaps::Cmd'=> '3.33',
12757 'ExtUtils::Typemaps::InputMap'=> '3.33',
12758 'ExtUtils::Typemaps::OutputMap'=> '3.33',
12759 'ExtUtils::Typemaps::Type'=> '3.33',
12760 'Hash::Util' => '0.20',
12761 'Math::BigFloat' => '1.999726',
12762 'Math::BigFloat::Trace' => '0.43',
12763 'Math::BigInt' => '1.999726',
12764 'Math::BigInt::Calc' => '1.999726',
12765 'Math::BigInt::CalcEmu' => '1.999726',
12766 'Math::BigInt::FastCalc'=> '0.42',
12767 'Math::BigInt::Trace' => '0.43',
12768 'Math::BigRat' => '0.260804',
c338e234
MH
12769 'Module::CoreList' => '5.20160720',
12770 'Module::CoreList::TieHashDelta'=> '5.20160720',
12771 'Module::CoreList::Utils'=> '5.20160720',
42a3cde1
SH
12772 'Net::Cmd' => '3.09',
12773 'Net::Config' => '3.09',
12774 'Net::Domain' => '3.09',
12775 'Net::FTP' => '3.09',
12776 'Net::FTP::A' => '3.09',
12777 'Net::FTP::E' => '3.09',
12778 'Net::FTP::I' => '3.09',
12779 'Net::FTP::L' => '3.09',
12780 'Net::FTP::dataconn' => '3.09',
12781 'Net::NNTP' => '3.09',
12782 'Net::Netrc' => '3.09',
12783 'Net::POP3' => '3.09',
12784 'Net::SMTP' => '3.09',
12785 'Net::Time' => '3.09',
12786 'Parse::CPAN::Meta' => '1.4422',
12787 'Perl::OSType' => '1.010',
12788 'Test2' => '1.302045',
12789 'Test2::API' => '1.302045',
12790 'Test2::API::Breakage' => '1.302045',
12791 'Test2::API::Context' => '1.302045',
12792 'Test2::API::Instance' => '1.302045',
12793 'Test2::API::Stack' => '1.302045',
12794 'Test2::Event' => '1.302045',
12795 'Test2::Event::Bail' => '1.302045',
12796 'Test2::Event::Diag' => '1.302045',
12797 'Test2::Event::Exception'=> '1.302045',
12798 'Test2::Event::Generic' => '1.302045',
12799 'Test2::Event::Info' => '1.302045',
12800 'Test2::Event::Note' => '1.302045',
12801 'Test2::Event::Ok' => '1.302045',
12802 'Test2::Event::Plan' => '1.302045',
12803 'Test2::Event::Skip' => '1.302045',
12804 'Test2::Event::Subtest' => '1.302045',
12805 'Test2::Event::Waiting' => '1.302045',
12806 'Test2::Formatter' => '1.302045',
12807 'Test2::Formatter::TAP' => '1.302045',
12808 'Test2::Hub' => '1.302045',
12809 'Test2::Hub::Interceptor'=> '1.302045',
12810 'Test2::Hub::Interceptor::Terminator'=> '1.302045',
12811 'Test2::Hub::Subtest' => '1.302045',
12812 'Test2::IPC' => '1.302045',
12813 'Test2::IPC::Driver' => '1.302045',
12814 'Test2::IPC::Driver::Files'=> '1.302045',
12815 'Test2::Util' => '1.302045',
12816 'Test2::Util::ExternalMeta'=> '1.302045',
12817 'Test2::Util::HashBase' => '1.302045',
12818 'Test2::Util::Trace' => '1.302045',
12819 'Test::Builder' => '1.302045',
12820 'Test::Builder::Formatter'=> '1.302045',
12821 'Test::Builder::Module' => '1.302045',
12822 'Test::Builder::Tester' => '1.302045',
12823 'Test::Builder::Tester::Color'=> '1.302045',
12824 'Test::Builder::TodoDiag'=> '1.302045',
12825 'Test::More' => '1.302045',
12826 'Test::Simple' => '1.302045',
12827 'Test::Tester' => '1.302045',
12828 'Test::Tester::Capture' => '1.302045',
12829 'Test::Tester::CaptureRunner'=> '1.302045',
12830 'Test::Tester::Delegate'=> '1.302045',
12831 'Test::use::ok' => '1.302045',
12832 'Time::HiRes' => '1.9739',
12833 'Unicode' => '9.0.0',
12834 'Unicode::UCD' => '0.66',
12835 'XSLoader' => '0.22',
12836 'bigint' => '0.43',
12837 'bignum' => '0.43',
12838 'bigrat' => '0.43',
12839 'encoding' => '2.17_01',
12840 'encoding::warnings' => '0.13',
12841 'feature' => '1.45',
12842 'ok' => '1.302045',
12843 'version' => '0.9917',
12844 'version::regex' => '0.9917',
12845 'warnings' => '1.37',
c338e234
MH
12846 },
12847 removed => {
12848 }
12849 },
dec2b171
SH
12850 5.025004 => {
12851 delta_from => 5.025003,
12852 changed => {
45f300ac
CBW
12853 'App::Cpan' => '1.64_01',
12854 'App::Prove' => '3.36_01',
12855 'App::Prove::State' => '3.36_01',
12856 'App::Prove::State::Result'=> '3.36_01',
12857 'App::Prove::State::Result::Test'=> '3.36_01',
12858 'Archive::Tar' => '2.10',
12859 'Archive::Tar::Constant'=> '2.10',
12860 'Archive::Tar::File' => '2.10',
12861 'B' => '1.63',
12862 'B::Concise' => '0.998',
12863 'B::Deparse' => '1.38',
dec2b171 12864 'B::Op_private' => '5.025004',
45f300ac
CBW
12865 'CPAN' => '2.14_01',
12866 'CPAN::Meta' => '2.150010',
12867 'CPAN::Meta::Converter' => '2.150010',
12868 'CPAN::Meta::Feature' => '2.150010',
12869 'CPAN::Meta::History' => '2.150010',
12870 'CPAN::Meta::Merge' => '2.150010',
12871 'CPAN::Meta::Prereqs' => '2.150010',
12872 'CPAN::Meta::Spec' => '2.150010',
12873 'CPAN::Meta::Validator' => '2.150010',
12874 'Carp' => '1.42',
12875 'Carp::Heavy' => '1.42',
12876 'Compress::Zlib' => '2.069_01',
dec2b171 12877 'Config' => '5.025004',
45f300ac
CBW
12878 'Config::Perl::V' => '0.27',
12879 'Cwd' => '3.65',
12880 'Digest' => '1.17_01',
12881 'Digest::SHA' => '5.96',
12882 'Encode' => '2.86',
12883 'Errno' => '1.26',
12884 'ExtUtils::Command' => '7.24',
12885 'ExtUtils::Command::MM' => '7.24',
12886 'ExtUtils::Liblist' => '7.24',
12887 'ExtUtils::Liblist::Kid'=> '7.24',
12888 'ExtUtils::MM' => '7.24',
12889 'ExtUtils::MM_AIX' => '7.24',
12890 'ExtUtils::MM_Any' => '7.24',
12891 'ExtUtils::MM_BeOS' => '7.24',
12892 'ExtUtils::MM_Cygwin' => '7.24',
12893 'ExtUtils::MM_DOS' => '7.24',
12894 'ExtUtils::MM_Darwin' => '7.24',
12895 'ExtUtils::MM_MacOS' => '7.24',
12896 'ExtUtils::MM_NW5' => '7.24',
12897 'ExtUtils::MM_OS2' => '7.24',
12898 'ExtUtils::MM_QNX' => '7.24',
12899 'ExtUtils::MM_UWIN' => '7.24',
12900 'ExtUtils::MM_Unix' => '7.24',
12901 'ExtUtils::MM_VMS' => '7.24',
12902 'ExtUtils::MM_VOS' => '7.24',
12903 'ExtUtils::MM_Win32' => '7.24',
12904 'ExtUtils::MM_Win95' => '7.24',
12905 'ExtUtils::MY' => '7.24',
12906 'ExtUtils::MakeMaker' => '7.24',
12907 'ExtUtils::MakeMaker::Config'=> '7.24',
12908 'ExtUtils::MakeMaker::Locale'=> '7.24',
12909 'ExtUtils::MakeMaker::version'=> '7.24',
12910 'ExtUtils::MakeMaker::version::regex'=> '7.24',
12911 'ExtUtils::Mkbootstrap' => '7.24',
12912 'ExtUtils::Mksymlists' => '7.24',
12913 'ExtUtils::testlib' => '7.24',
12914 'File::Fetch' => '0.52',
12915 'File::Spec' => '3.65',
12916 'File::Spec::AmigaOS' => '3.65',
12917 'File::Spec::Cygwin' => '3.65',
12918 'File::Spec::Epoc' => '3.65',
12919 'File::Spec::Functions' => '3.65',
12920 'File::Spec::Mac' => '3.65',
12921 'File::Spec::OS2' => '3.65',
12922 'File::Spec::Unix' => '3.65',
12923 'File::Spec::VMS' => '3.65',
12924 'File::Spec::Win32' => '3.65',
12925 'HTTP::Tiny' => '0.064',
12926 'Hash::Util' => '0.21',
12927 'I18N::LangTags' => '0.41',
12928 'I18N::LangTags::Detect'=> '1.06',
12929 'IO' => '1.37',
12930 'IO::Compress::Adapter::Bzip2'=> '2.069_01',
12931 'IO::Compress::Adapter::Deflate'=> '2.069_01',
12932 'IO::Compress::Adapter::Identity'=> '2.069_01',
12933 'IO::Compress::Base' => '2.069_01',
12934 'IO::Compress::Base::Common'=> '2.069_01',
12935 'IO::Compress::Bzip2' => '2.069_01',
12936 'IO::Compress::Deflate' => '2.069_01',
12937 'IO::Compress::Gzip' => '2.069_01',
12938 'IO::Compress::Gzip::Constants'=> '2.069_01',
12939 'IO::Compress::RawDeflate'=> '2.069_01',
12940 'IO::Compress::Zip' => '2.069_01',
12941 'IO::Compress::Zip::Constants'=> '2.069_01',
12942 'IO::Compress::Zlib::Constants'=> '2.069_01',
12943 'IO::Compress::Zlib::Extra'=> '2.069_01',
12944 'IO::Socket::IP' => '0.38',
12945 'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01',
12946 'IO::Uncompress::Adapter::Identity'=> '2.069_01',
12947 'IO::Uncompress::Adapter::Inflate'=> '2.069_01',
12948 'IO::Uncompress::AnyInflate'=> '2.069_01',
12949 'IO::Uncompress::AnyUncompress'=> '2.069_01',
12950 'IO::Uncompress::Base' => '2.069_01',
12951 'IO::Uncompress::Bunzip2'=> '2.069_01',
12952 'IO::Uncompress::Gunzip'=> '2.069_01',
12953 'IO::Uncompress::Inflate'=> '2.069_01',
12954 'IO::Uncompress::RawInflate'=> '2.069_01',
12955 'IO::Uncompress::Unzip' => '2.069_01',
12956 'IPC::Cmd' => '0.96',
12957 'JSON::PP' => '2.27400_01',
12958 'Locale::Maketext' => '1.28',
12959 'Locale::Maketext::Simple'=> '0.21_01',
12960 'Math::BigFloat::Trace' => '0.43_01',
12961 'Math::BigInt::Trace' => '0.43_01',
12962 'Memoize' => '1.03_01',
dec2b171
SH
12963 'Module::CoreList' => '5.20160820',
12964 'Module::CoreList::TieHashDelta'=> '5.20160820',
12965 'Module::CoreList::Utils'=> '5.20160820',
45f300ac
CBW
12966 'Module::Load::Conditional'=> '0.68',
12967 'Module::Metadata' => '1.000033',
12968 'NEXT' => '0.67',
12969 'Net::Cmd' => '3.10',
12970 'Net::Config' => '3.10',
12971 'Net::Domain' => '3.10',
12972 'Net::FTP' => '3.10',
12973 'Net::FTP::A' => '3.10',
12974 'Net::FTP::E' => '3.10',
12975 'Net::FTP::I' => '3.10',
12976 'Net::FTP::L' => '3.10',
12977 'Net::FTP::dataconn' => '3.10',
12978 'Net::NNTP' => '3.10',
12979 'Net::Netrc' => '3.10',
12980 'Net::POP3' => '3.10',
12981 'Net::Ping' => '2.44',
12982 'Net::SMTP' => '3.10',
12983 'Net::Time' => '3.10',
12984 'Opcode' => '1.37',
12985 'POSIX' => '1.71',
12986 'Parse::CPAN::Meta' => '2.150010',
12987 'Pod::Html' => '1.2201',
12988 'Pod::Perldoc' => '3.27',
12989 'Pod::Perldoc::BaseTo' => '3.27',
12990 'Pod::Perldoc::GetOptsOO'=> '3.27',
12991 'Pod::Perldoc::ToANSI' => '3.27',
12992 'Pod::Perldoc::ToChecker'=> '3.27',
12993 'Pod::Perldoc::ToMan' => '3.27',
12994 'Pod::Perldoc::ToNroff' => '3.27',
12995 'Pod::Perldoc::ToPod' => '3.27',
12996 'Pod::Perldoc::ToRtf' => '3.27',
12997 'Pod::Perldoc::ToTerm' => '3.27',
12998 'Pod::Perldoc::ToText' => '3.27',
12999 'Pod::Perldoc::ToTk' => '3.27',
13000 'Pod::Perldoc::ToXml' => '3.27',
13001 'Storable' => '2.57',
13002 'Sys::Syslog' => '0.34_01',
13003 'TAP::Base' => '3.36_01',
13004 'TAP::Formatter::Base' => '3.36_01',
13005 'TAP::Formatter::Color' => '3.36_01',
13006 'TAP::Formatter::Console'=> '3.36_01',
13007 'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13008 'TAP::Formatter::Console::Session'=> '3.36_01',
13009 'TAP::Formatter::File' => '3.36_01',
13010 'TAP::Formatter::File::Session'=> '3.36_01',
13011 'TAP::Formatter::Session'=> '3.36_01',
13012 'TAP::Harness' => '3.36_01',
13013 'TAP::Harness::Env' => '3.36_01',
13014 'TAP::Object' => '3.36_01',
13015 'TAP::Parser' => '3.36_01',
13016 'TAP::Parser::Aggregator'=> '3.36_01',
13017 'TAP::Parser::Grammar' => '3.36_01',
13018 'TAP::Parser::Iterator' => '3.36_01',
13019 'TAP::Parser::Iterator::Array'=> '3.36_01',
13020 'TAP::Parser::Iterator::Process'=> '3.36_01',
13021 'TAP::Parser::Iterator::Stream'=> '3.36_01',
13022 'TAP::Parser::IteratorFactory'=> '3.36_01',
13023 'TAP::Parser::Multiplexer'=> '3.36_01',
13024 'TAP::Parser::Result' => '3.36_01',
13025 'TAP::Parser::Result::Bailout'=> '3.36_01',
13026 'TAP::Parser::Result::Comment'=> '3.36_01',
13027 'TAP::Parser::Result::Plan'=> '3.36_01',
13028 'TAP::Parser::Result::Pragma'=> '3.36_01',
13029 'TAP::Parser::Result::Test'=> '3.36_01',
13030 'TAP::Parser::Result::Unknown'=> '3.36_01',
13031 'TAP::Parser::Result::Version'=> '3.36_01',
13032 'TAP::Parser::Result::YAML'=> '3.36_01',
13033 'TAP::Parser::ResultFactory'=> '3.36_01',
13034 'TAP::Parser::Scheduler'=> '3.36_01',
13035 'TAP::Parser::Scheduler::Job'=> '3.36_01',
13036 'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13037 'TAP::Parser::Source' => '3.36_01',
13038 'TAP::Parser::SourceHandler'=> '3.36_01',
13039 'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13040 'TAP::Parser::SourceHandler::File'=> '3.36_01',
13041 'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13042 'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13043 'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13044 'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13045 'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13046 'Test' => '1.29',
13047 'Test2' => '1.302052',
13048 'Test2::API' => '1.302052',
13049 'Test2::API::Breakage' => '1.302052',
13050 'Test2::API::Context' => '1.302052',
13051 'Test2::API::Instance' => '1.302052',
13052 'Test2::API::Stack' => '1.302052',
13053 'Test2::Event' => '1.302052',
13054 'Test2::Event::Bail' => '1.302052',
13055 'Test2::Event::Diag' => '1.302052',
13056 'Test2::Event::Exception'=> '1.302052',
13057 'Test2::Event::Generic' => '1.302052',
13058 'Test2::Event::Info' => '1.302052',
13059 'Test2::Event::Note' => '1.302052',
13060 'Test2::Event::Ok' => '1.302052',
13061 'Test2::Event::Plan' => '1.302052',
13062 'Test2::Event::Skip' => '1.302052',
13063 'Test2::Event::Subtest' => '1.302052',
13064 'Test2::Event::Waiting' => '1.302052',
13065 'Test2::Formatter' => '1.302052',
13066 'Test2::Formatter::TAP' => '1.302052',
13067 'Test2::Hub' => '1.302052',
13068 'Test2::Hub::Interceptor'=> '1.302052',
13069 'Test2::Hub::Interceptor::Terminator'=> '1.302052',
13070 'Test2::Hub::Subtest' => '1.302052',
13071 'Test2::IPC' => '1.302052',
13072 'Test2::IPC::Driver' => '1.302052',
13073 'Test2::IPC::Driver::Files'=> '1.302052',
13074 'Test2::Util' => '1.302052',
13075 'Test2::Util::ExternalMeta'=> '1.302052',
13076 'Test2::Util::HashBase' => '1.302052',
13077 'Test2::Util::Trace' => '1.302052',
13078 'Test::Builder' => '1.302052',
13079 'Test::Builder::Formatter'=> '1.302052',
13080 'Test::Builder::Module' => '1.302052',
13081 'Test::Builder::Tester' => '1.302052',
13082 'Test::Builder::Tester::Color'=> '1.302052',
13083 'Test::Builder::TodoDiag'=> '1.302052',
13084 'Test::Harness' => '3.36_01',
13085 'Test::More' => '1.302052',
13086 'Test::Simple' => '1.302052',
13087 'Test::Tester' => '1.302052',
13088 'Test::Tester::Capture' => '1.302052',
13089 'Test::Tester::CaptureRunner'=> '1.302052',
13090 'Test::Tester::Delegate'=> '1.302052',
13091 'Test::use::ok' => '1.302052',
13092 'Tie::Hash::NamedCapture'=> '0.10',
13093 'Time::Local' => '1.24',
13094 'XS::APItest' => '0.83',
13095 'arybase' => '0.12',
13096 'base' => '2.24',
13097 'bigint' => '0.43_01',
13098 'bignum' => '0.43_01',
13099 'bigrat' => '0.43_01',
13100 'encoding' => '2.18',
13101 'ok' => '1.302052',
dec2b171
SH
13102 },
13103 removed => {
13104 }
13105 },
9b3afcbd
CBW
13106 5.025005 => {
13107 delta_from => 5.025004,
13108 changed => {
13109 'B::Op_private' => '5.025005',
13110 'Config' => '5.025005',
7852d856
SL
13111 'Filter::Simple' => '0.93',
13112 'Locale::Codes' => '3.40',
13113 'Locale::Codes::Constants'=> '3.40',
13114 'Locale::Codes::Country'=> '3.40',
13115 'Locale::Codes::Country_Codes'=> '3.40',
13116 'Locale::Codes::Country_Retired'=> '3.40',
13117 'Locale::Codes::Currency'=> '3.40',
13118 'Locale::Codes::Currency_Codes'=> '3.40',
13119 'Locale::Codes::Currency_Retired'=> '3.40',
13120 'Locale::Codes::LangExt'=> '3.40',
13121 'Locale::Codes::LangExt_Codes'=> '3.40',
13122 'Locale::Codes::LangExt_Retired'=> '3.40',
13123 'Locale::Codes::LangFam'=> '3.40',
13124 'Locale::Codes::LangFam_Codes'=> '3.40',
13125 'Locale::Codes::LangFam_Retired'=> '3.40',
13126 'Locale::Codes::LangVar'=> '3.40',
13127 'Locale::Codes::LangVar_Codes'=> '3.40',
13128 'Locale::Codes::LangVar_Retired'=> '3.40',
13129 'Locale::Codes::Language'=> '3.40',
13130 'Locale::Codes::Language_Codes'=> '3.40',
13131 'Locale::Codes::Language_Retired'=> '3.40',
13132 'Locale::Codes::Script' => '3.40',
13133 'Locale::Codes::Script_Codes'=> '3.40',
13134 'Locale::Codes::Script_Retired'=> '3.40',
13135 'Locale::Country' => '3.40',
13136 'Locale::Currency' => '3.40',
13137 'Locale::Language' => '3.40',
13138 'Locale::Script' => '3.40',
9b3afcbd
CBW
13139 'Module::CoreList' => '5.20160920',
13140 'Module::CoreList::TieHashDelta'=> '5.20160920',
13141 'Module::CoreList::Utils'=> '5.20160920',
7852d856
SL
13142 'POSIX' => '1.72',
13143 'Sys::Syslog' => '0.35',
13144 'Test2' => '1.302056',
13145 'Test2::API' => '1.302056',
13146 'Test2::API::Breakage' => '1.302056',
13147 'Test2::API::Context' => '1.302056',
13148 'Test2::API::Instance' => '1.302056',
13149 'Test2::API::Stack' => '1.302056',
13150 'Test2::Event' => '1.302056',
13151 'Test2::Event::Bail' => '1.302056',
13152 'Test2::Event::Diag' => '1.302056',
13153 'Test2::Event::Exception'=> '1.302056',
13154 'Test2::Event::Generic' => '1.302056',
13155 'Test2::Event::Info' => '1.302056',
13156 'Test2::Event::Note' => '1.302056',
13157 'Test2::Event::Ok' => '1.302056',
13158 'Test2::Event::Plan' => '1.302056',
13159 'Test2::Event::Skip' => '1.302056',
13160 'Test2::Event::Subtest' => '1.302056',
13161 'Test2::Event::Waiting' => '1.302056',
13162 'Test2::Formatter' => '1.302056',
13163 'Test2::Formatter::TAP' => '1.302056',
13164 'Test2::Hub' => '1.302056',
13165 'Test2::Hub::Interceptor'=> '1.302056',
13166 'Test2::Hub::Interceptor::Terminator'=> '1.302056',
13167 'Test2::Hub::Subtest' => '1.302056',
13168 'Test2::IPC' => '1.302056',
13169 'Test2::IPC::Driver' => '1.302056',
13170 'Test2::IPC::Driver::Files'=> '1.302056',
13171 'Test2::Util' => '1.302056',
13172 'Test2::Util::ExternalMeta'=> '1.302056',
13173 'Test2::Util::HashBase' => '1.302056',
13174 'Test2::Util::Trace' => '1.302056',
13175 'Test::Builder' => '1.302056',
13176 'Test::Builder::Formatter'=> '1.302056',
13177 'Test::Builder::Module' => '1.302056',
13178 'Test::Builder::Tester' => '1.302056',
13179 'Test::Builder::Tester::Color'=> '1.302056',
13180 'Test::Builder::TodoDiag'=> '1.302056',
13181 'Test::More' => '1.302056',
13182 'Test::Simple' => '1.302056',
13183 'Test::Tester' => '1.302056',
13184 'Test::Tester::Capture' => '1.302056',
13185 'Test::Tester::CaptureRunner'=> '1.302056',
13186 'Test::Tester::Delegate'=> '1.302056',
13187 'Test::use::ok' => '1.302056',
13188 'Thread::Semaphore' => '2.13',
13189 'XS::APItest' => '0.84',
13190 'XSLoader' => '0.24',
13191 'ok' => '1.302056',
9b3afcbd
CBW
13192 },
13193 removed => {
13194 }
13195 },
bc46539a
SL
13196 5.025006 => {
13197 delta_from => 5.025005,
13198 changed => {
f6fd8a7a
AC
13199 'Archive::Tar' => '2.14',
13200 'Archive::Tar::Constant'=> '2.14',
13201 'Archive::Tar::File' => '2.14',
13202 'B' => '1.64',
13203 'B::Concise' => '0.999',
13204 'B::Deparse' => '1.39',
bc46539a
SL
13205 'B::Op_private' => '5.025006',
13206 'Config' => '5.025006',
13207 'Data::Dumper' => '2.162',
f6fd8a7a
AC
13208 'Devel::Peek' => '1.25',
13209 'HTTP::Tiny' => '0.070',
13210 'List::Util' => '1.46',
13211 'List::Util::XS' => '1.46',
13212 'Module::CoreList' => '5.20161020',
13213 'Module::CoreList::TieHashDelta'=> '5.20161020',
13214 'Module::CoreList::Utils'=> '5.20161020',
13215 'Net::Ping' => '2.51',
bc46539a 13216 'OS2::DLL' => '1.07',
f6fd8a7a 13217 'Opcode' => '1.38',
bc46539a
SL
13218 'POSIX' => '1.73',
13219 'PerlIO::encoding' => '0.25',
f6fd8a7a
AC
13220 'Pod::Man' => '4.08',
13221 'Pod::ParseLink' => '4.08',
13222 'Pod::Text' => '4.08',
13223 'Pod::Text::Color' => '4.08',
13224 'Pod::Text::Overstrike' => '4.08',
13225 'Pod::Text::Termcap' => '4.08',
13226 'Scalar::Util' => '1.46',
bc46539a 13227 'Storable' => '2.58',
f6fd8a7a
AC
13228 'Sub::Util' => '1.46',
13229 'Test2' => '1.302059',
13230 'Test2::API' => '1.302059',
13231 'Test2::API::Breakage' => '1.302059',
13232 'Test2::API::Context' => '1.302059',
13233 'Test2::API::Instance' => '1.302059',
13234 'Test2::API::Stack' => '1.302059',
13235 'Test2::Event' => '1.302059',
13236 'Test2::Event::Bail' => '1.302059',
13237 'Test2::Event::Diag' => '1.302059',
13238 'Test2::Event::Exception'=> '1.302059',
13239 'Test2::Event::Generic' => '1.302059',
13240 'Test2::Event::Info' => '1.302059',
13241 'Test2::Event::Note' => '1.302059',
13242 'Test2::Event::Ok' => '1.302059',
13243 'Test2::Event::Plan' => '1.302059',
13244 'Test2::Event::Skip' => '1.302059',
13245 'Test2::Event::Subtest' => '1.302059',
13246 'Test2::Event::Waiting' => '1.302059',
13247 'Test2::Formatter' => '1.302059',
13248 'Test2::Formatter::TAP' => '1.302059',
13249 'Test2::Hub' => '1.302059',
13250 'Test2::Hub::Interceptor'=> '1.302059',
13251 'Test2::Hub::Interceptor::Terminator'=> '1.302059',
13252 'Test2::Hub::Subtest' => '1.302059',
13253 'Test2::IPC' => '1.302059',
13254 'Test2::IPC::Driver' => '1.302059',
13255 'Test2::IPC::Driver::Files'=> '1.302059',
13256 'Test2::Util' => '1.302059',
13257 'Test2::Util::ExternalMeta'=> '1.302059',
13258 'Test2::Util::HashBase' => '1.302059',
13259 'Test2::Util::Trace' => '1.302059',
13260 'Test::Builder' => '1.302059',
13261 'Test::Builder::Formatter'=> '1.302059',
13262 'Test::Builder::Module' => '1.302059',
13263 'Test::Builder::Tester' => '1.302059',
13264 'Test::Builder::Tester::Color'=> '1.302059',
13265 'Test::Builder::TodoDiag'=> '1.302059',
13266 'Test::More' => '1.302059',
13267 'Test::Simple' => '1.302059',
13268 'Test::Tester' => '1.302059',
13269 'Test::Tester::Capture' => '1.302059',
13270 'Test::Tester::CaptureRunner'=> '1.302059',
13271 'Test::Tester::Delegate'=> '1.302059',
13272 'Test::use::ok' => '1.302059',
13273 'Time::HiRes' => '1.9740_01',
13274 'VMS::Stdio' => '2.42',
13275 'XS::APItest' => '0.86',
13276 'attributes' => '0.28',
13277 'mro' => '1.19',
13278 'ok' => '1.302059',
13279 'overload' => '1.27',
13280 'parent' => '0.236',
bc46539a
SL
13281 },
13282 removed => {
13283 }
13284 },
935d7564
AC
13285 5.025007 => {
13286 delta_from => 5.025006,
13287 changed => {
b1b49d10
CG
13288 'Archive::Tar' => '2.18',
13289 'Archive::Tar::Constant'=> '2.18',
13290 'Archive::Tar::File' => '2.18',
13291 'B' => '1.65',
935d7564
AC
13292 'B::Op_private' => '5.025007',
13293 'Config' => '5.025007',
b1b49d10
CG
13294 'Cwd' => '3.66',
13295 'Data::Dumper' => '2.165',
13296 'Devel::Peek' => '1.26',
13297 'DynaLoader' => '1.40',
13298 'Errno' => '1.27',
13299 'ExtUtils::ParseXS::Utilities'=> '3.34',
13300 'File::Spec' => '3.66',
13301 'File::Spec::AmigaOS' => '3.66',
13302 'File::Spec::Cygwin' => '3.66',
13303 'File::Spec::Epoc' => '3.66',
13304 'File::Spec::Functions' => '3.66',
13305 'File::Spec::Mac' => '3.66',
13306 'File::Spec::OS2' => '3.66',
13307 'File::Spec::Unix' => '3.66',
13308 'File::Spec::VMS' => '3.66',
13309 'File::Spec::Win32' => '3.66',
13310 'Hash::Util' => '0.22',
13311 'JSON::PP' => '2.27400_02',
13312 'List::Util' => '1.46_02',
13313 'List::Util::XS' => '1.46_02',
13314 'Math::BigFloat' => '1.999727',
13315 'Math::BigInt' => '1.999727',
13316 'Math::BigInt::Calc' => '1.999727',
13317 'Math::BigInt::CalcEmu' => '1.999727',
13318 'Math::Complex' => '1.5901',
13319 'Module::CoreList' => '5.20161120',
13320 'Module::CoreList::TieHashDelta'=> '5.20161120',
13321 'Module::CoreList::Utils'=> '5.20161120',
13322 'Net::Ping' => '2.55',
13323 'Opcode' => '1.39',
13324 'POSIX' => '1.75',
13325 'Pod::Man' => '4.09',
13326 'Pod::ParseLink' => '4.09',
13327 'Pod::Text' => '4.09',
13328 'Pod::Text::Color' => '4.09',
13329 'Pod::Text::Overstrike' => '4.09',
13330 'Pod::Text::Termcap' => '4.09',
13331 'Scalar::Util' => '1.46_02',
13332 'Storable' => '2.59',
13333 'Sub::Util' => '1.46_02',
13334 'Term::ANSIColor' => '4.06',
13335 'Test2' => '1.302062',
13336 'Test2::API' => '1.302062',
13337 'Test2::API::Breakage' => '1.302062',
13338 'Test2::API::Context' => '1.302062',
13339 'Test2::API::Instance' => '1.302062',
13340 'Test2::API::Stack' => '1.302062',
13341 'Test2::Event' => '1.302062',
13342 'Test2::Event::Bail' => '1.302062',
13343 'Test2::Event::Diag' => '1.302062',
13344 'Test2::Event::Exception'=> '1.302062',
13345 'Test2::Event::Generic' => '1.302062',
13346 'Test2::Event::Info' => '1.302062',
13347 'Test2::Event::Note' => '1.302062',
13348 'Test2::Event::Ok' => '1.302062',
13349 'Test2::Event::Plan' => '1.302062',
13350 'Test2::Event::Skip' => '1.302062',
13351 'Test2::Event::Subtest' => '1.302062',
13352 'Test2::Event::Waiting' => '1.302062',
13353 'Test2::Formatter' => '1.302062',
13354 'Test2::Formatter::TAP' => '1.302062',
13355 'Test2::Hub' => '1.302062',
13356 'Test2::Hub::Interceptor'=> '1.302062',
13357 'Test2::Hub::Interceptor::Terminator'=> '1.302062',
13358 'Test2::Hub::Subtest' => '1.302062',
13359 'Test2::IPC' => '1.302062',
13360 'Test2::IPC::Driver' => '1.302062',
13361 'Test2::IPC::Driver::Files'=> '1.302062',
13362 'Test2::Util' => '1.302062',
13363 'Test2::Util::ExternalMeta'=> '1.302062',
13364 'Test2::Util::HashBase' => '1.302062',
13365 'Test2::Util::Trace' => '1.302062',
13366 'Test::Builder' => '1.302062',
13367 'Test::Builder::Formatter'=> '1.302062',
13368 'Test::Builder::Module' => '1.302062',
13369 'Test::Builder::Tester' => '1.302062',
13370 'Test::Builder::Tester::Color'=> '1.302062',
13371 'Test::Builder::TodoDiag'=> '1.302062',
13372 'Test::More' => '1.302062',
13373 'Test::Simple' => '1.302062',
13374 'Test::Tester' => '1.302062',
13375 'Test::Tester::Capture' => '1.302062',
13376 'Test::Tester::CaptureRunner'=> '1.302062',
13377 'Test::Tester::Delegate'=> '1.302062',
13378 'Test::use::ok' => '1.302062',
13379 'Time::HiRes' => '1.9740_03',
13380 'Unicode::Collate' => '1.18',
13381 'Unicode::Collate::CJK::Big5'=> '1.18',
13382 'Unicode::Collate::CJK::GB2312'=> '1.18',
13383 'Unicode::Collate::CJK::JISX0208'=> '1.18',
13384 'Unicode::Collate::CJK::Korean'=> '1.18',
13385 'Unicode::Collate::CJK::Pinyin'=> '1.18',
13386 'Unicode::Collate::CJK::Stroke'=> '1.18',
13387 'Unicode::Collate::CJK::Zhuyin'=> '1.18',
13388 'Unicode::Collate::Locale'=> '1.18',
13389 'Unicode::UCD' => '0.67',
13390 'XS::APItest' => '0.87',
13391 'XS::Typemap' => '0.15',
13392 'mro' => '1.20',
13393 'ok' => '1.302062',
13394 'threads' => '2.10',
935d7564
AC
13395 },
13396 removed => {
13397 }
13398 },
d5584eb3
CG
13399 5.025008 => {
13400 delta_from => 5.025007,
13401 changed => {
79ca97c0
S
13402 'Archive::Tar' => '2.24',
13403 'Archive::Tar::Constant'=> '2.24',
13404 'Archive::Tar::File' => '2.24',
13405 'B::Debug' => '1.24',
13406 'B::Op_private' => '5.025008',
13407 'Config' => '5.025008',
13408 'Data::Dumper' => '2.166',
13409 'Encode' => '2.88',
13410 'Encode::Alias' => '2.21',
13411 'Encode::CN::HZ' => '2.08',
13412 'Encode::MIME::Header' => '2.24',
13413 'Encode::MIME::Name' => '1.02',
13414 'Encode::Unicode' => '2.1501',
13415 'IO' => '1.38',
13416 'Locale::Codes' => '3.42',
13417 'Locale::Codes::Constants'=> '3.42',
13418 'Locale::Codes::Country'=> '3.42',
13419 'Locale::Codes::Country_Codes'=> '3.42',
13420 'Locale::Codes::Country_Retired'=> '3.42',
13421 'Locale::Codes::Currency'=> '3.42',
13422 'Locale::Codes::Currency_Codes'=> '3.42',
13423 'Locale::Codes::Currency_Retired'=> '3.42',
13424 'Locale::Codes::LangExt'=> '3.42',
13425 'Locale::Codes::LangExt_Codes'=> '3.42',
13426 'Locale::Codes::LangExt_Retired'=> '3.42',
13427 'Locale::Codes::LangFam'=> '3.42',
13428 'Locale::Codes::LangFam_Codes'=> '3.42',
13429 'Locale::Codes::LangFam_Retired'=> '3.42',
13430 'Locale::Codes::LangVar'=> '3.42',
13431 'Locale::Codes::LangVar_Codes'=> '3.42',
13432 'Locale::Codes::LangVar_Retired'=> '3.42',
13433 'Locale::Codes::Language'=> '3.42',
13434 'Locale::Codes::Language_Codes'=> '3.42',
13435 'Locale::Codes::Language_Retired'=> '3.42',
13436 'Locale::Codes::Script' => '3.42',
13437 'Locale::Codes::Script_Codes'=> '3.42',
13438 'Locale::Codes::Script_Retired'=> '3.42',
13439 'Locale::Country' => '3.42',
13440 'Locale::Currency' => '3.42',
13441 'Locale::Language' => '3.42',
13442 'Locale::Script' => '3.42',
13443 'Math::BigFloat' => '1.999806',
13444 'Math::BigFloat::Trace' => '0.47',
13445 'Math::BigInt' => '1.999806',
13446 'Math::BigInt::Calc' => '1.999806',
13447 'Math::BigInt::CalcEmu' => '1.999806',
13448 'Math::BigInt::FastCalc'=> '0.5005',
13449 'Math::BigInt::Lib' => '1.999806',
13450 'Math::BigInt::Trace' => '0.47',
13451 'Math::BigRat' => '0.2611',
d5584eb3
CG
13452 'Module::CoreList' => '5.20161220',
13453 'Module::CoreList::TieHashDelta'=> '5.20161220',
13454 'Module::CoreList::Utils'=> '5.20161220',
79ca97c0
S
13455 'POSIX' => '1.76',
13456 'PerlIO::scalar' => '0.25',
13457 'Pod::Simple' => '3.35',
13458 'Pod::Simple::BlackBox' => '3.35',
13459 'Pod::Simple::Checker' => '3.35',
13460 'Pod::Simple::Debug' => '3.35',
13461 'Pod::Simple::DumpAsText'=> '3.35',
13462 'Pod::Simple::DumpAsXML'=> '3.35',
13463 'Pod::Simple::HTML' => '3.35',
13464 'Pod::Simple::HTMLBatch'=> '3.35',
13465 'Pod::Simple::LinkSection'=> '3.35',
13466 'Pod::Simple::Methody' => '3.35',
13467 'Pod::Simple::Progress' => '3.35',
13468 'Pod::Simple::PullParser'=> '3.35',
13469 'Pod::Simple::PullParserEndToken'=> '3.35',
13470 'Pod::Simple::PullParserStartToken'=> '3.35',
13471 'Pod::Simple::PullParserTextToken'=> '3.35',
13472 'Pod::Simple::PullParserToken'=> '3.35',
13473 'Pod::Simple::RTF' => '3.35',
13474 'Pod::Simple::Search' => '3.35',
13475 'Pod::Simple::SimpleTree'=> '3.35',
13476 'Pod::Simple::Text' => '3.35',
13477 'Pod::Simple::TextContent'=> '3.35',
13478 'Pod::Simple::TiedOutFH'=> '3.35',
13479 'Pod::Simple::Transcode'=> '3.35',
13480 'Pod::Simple::TranscodeDumb'=> '3.35',
13481 'Pod::Simple::TranscodeSmart'=> '3.35',
13482 'Pod::Simple::XHTML' => '3.35',
13483 'Pod::Simple::XMLOutStream'=> '3.35',
13484 'Test2' => '1.302073',
13485 'Test2::API' => '1.302073',
13486 'Test2::API::Breakage' => '1.302073',
13487 'Test2::API::Context' => '1.302073',
13488 'Test2::API::Instance' => '1.302073',
13489 'Test2::API::Stack' => '1.302073',
13490 'Test2::Event' => '1.302073',
13491 'Test2::Event::Bail' => '1.302073',
13492 'Test2::Event::Diag' => '1.302073',
13493 'Test2::Event::Encoding'=> '1.302073',
13494 'Test2::Event::Exception'=> '1.302073',
13495 'Test2::Event::Generic' => '1.302073',
13496 'Test2::Event::Info' => '1.302073',
13497 'Test2::Event::Note' => '1.302073',
13498 'Test2::Event::Ok' => '1.302073',
13499 'Test2::Event::Plan' => '1.302073',
13500 'Test2::Event::Skip' => '1.302073',
13501 'Test2::Event::Subtest' => '1.302073',
13502 'Test2::Event::TAP::Version'=> '1.302073',
13503 'Test2::Event::Waiting' => '1.302073',
13504 'Test2::Formatter' => '1.302073',
13505 'Test2::Formatter::TAP' => '1.302073',
13506 'Test2::Hub' => '1.302073',
13507 'Test2::Hub::Interceptor'=> '1.302073',
13508 'Test2::Hub::Interceptor::Terminator'=> '1.302073',
13509 'Test2::Hub::Subtest' => '1.302073',
13510 'Test2::IPC' => '1.302073',
13511 'Test2::IPC::Driver' => '1.302073',
13512 'Test2::IPC::Driver::Files'=> '1.302073',
13513 'Test2::Tools::Tiny' => '1.302073',
13514 'Test2::Util' => '1.302073',
13515 'Test2::Util::ExternalMeta'=> '1.302073',
13516 'Test2::Util::HashBase' => '0.002',
13517 'Test2::Util::Trace' => '1.302073',
13518 'Test::Builder' => '1.302073',
13519 'Test::Builder::Formatter'=> '1.302073',
13520 'Test::Builder::Module' => '1.302073',
13521 'Test::Builder::Tester' => '1.302073',
13522 'Test::Builder::Tester::Color'=> '1.302073',
13523 'Test::Builder::TodoDiag'=> '1.302073',
13524 'Test::More' => '1.302073',
13525 'Test::Simple' => '1.302073',
13526 'Test::Tester' => '1.302073',
13527 'Test::Tester::Capture' => '1.302073',
13528 'Test::Tester::CaptureRunner'=> '1.302073',
13529 'Test::Tester::Delegate'=> '1.302073',
13530 'Test::use::ok' => '1.302073',
13531 'Time::HiRes' => '1.9741',
13532 'Time::Local' => '1.25',
13533 'Unicode::Collate' => '1.19',
13534 'Unicode::Collate::CJK::Big5'=> '1.19',
13535 'Unicode::Collate::CJK::GB2312'=> '1.19',
13536 'Unicode::Collate::CJK::JISX0208'=> '1.19',
13537 'Unicode::Collate::CJK::Korean'=> '1.19',
13538 'Unicode::Collate::CJK::Pinyin'=> '1.19',
13539 'Unicode::Collate::CJK::Stroke'=> '1.19',
13540 'Unicode::Collate::CJK::Zhuyin'=> '1.19',
13541 'Unicode::Collate::Locale'=> '1.19',
13542 'bigint' => '0.47',
13543 'bignum' => '0.47',
13544 'bigrat' => '0.47',
13545 'encoding' => '2.19',
13546 'ok' => '1.302073',
d5584eb3
CG
13547 },
13548 removed => {
13549 }
2b776413 13550 },
d202f2b8
SH
13551 5.022003 => {
13552 delta_from => 5.022002,
13553 changed => {
13554 'App::Cpan' => '1.63_01',
13555 'App::Prove' => '3.35_01',
13556 'App::Prove::State' => '3.35_01',
13557 'App::Prove::State::Result'=> '3.35_01',
13558 'App::Prove::State::Result::Test'=> '3.35_01',
13559 'Archive::Tar' => '2.04_01',
13560 'Archive::Tar::Constant'=> '2.04_01',
13561 'Archive::Tar::File' => '2.04_01',
13562 'B::Op_private' => '5.022003',
13563 'CPAN' => '2.11_01',
13564 'Compress::Zlib' => '2.068_001',
13565 'Config' => '5.022003',
13566 'Cwd' => '3.56_02',
13567 'Digest' => '1.17_01',
13568 'Digest::SHA' => '5.95_01',
13569 'Encode' => '2.72_01',
13570 'ExtUtils::Command' => '1.20_01',
13571 'ExtUtils::Command::MM' => '7.04_02',
13572 'ExtUtils::Liblist' => '7.04_02',
13573 'ExtUtils::Liblist::Kid'=> '7.04_02',
13574 'ExtUtils::MM' => '7.04_02',
13575 'ExtUtils::MM_AIX' => '7.04_02',
13576 'ExtUtils::MM_Any' => '7.04_02',
13577 'ExtUtils::MM_BeOS' => '7.04_02',
13578 'ExtUtils::MM_Cygwin' => '7.04_02',
13579 'ExtUtils::MM_DOS' => '7.04_02',
13580 'ExtUtils::MM_Darwin' => '7.04_02',
13581 'ExtUtils::MM_MacOS' => '7.04_02',
13582 'ExtUtils::MM_NW5' => '7.04_02',
13583 'ExtUtils::MM_OS2' => '7.04_02',
13584 'ExtUtils::MM_QNX' => '7.04_02',
13585 'ExtUtils::MM_UWIN' => '7.04_02',
13586 'ExtUtils::MM_Unix' => '7.04_02',
13587 'ExtUtils::MM_VMS' => '7.04_02',
13588 'ExtUtils::MM_VOS' => '7.04_02',
13589 'ExtUtils::MM_Win32' => '7.04_02',
13590 'ExtUtils::MM_Win95' => '7.04_02',
13591 'ExtUtils::MY' => '7.04_02',
13592 'ExtUtils::MakeMaker' => '7.04_02',
13593 'ExtUtils::MakeMaker::Config'=> '7.04_02',
13594 'ExtUtils::Mkbootstrap' => '7.04_02',
13595 'ExtUtils::Mksymlists' => '7.04_02',
13596 'ExtUtils::testlib' => '7.04_02',
13597 'File::Fetch' => '0.48_01',
13598 'File::Spec' => '3.56_02',
13599 'File::Spec::Cygwin' => '3.56_02',
13600 'File::Spec::Epoc' => '3.56_02',
13601 'File::Spec::Functions' => '3.56_02',
13602 'File::Spec::Mac' => '3.56_02',
13603 'File::Spec::OS2' => '3.56_02',
13604 'File::Spec::Unix' => '3.56_02',
13605 'File::Spec::VMS' => '3.56_02',
13606 'File::Spec::Win32' => '3.56_02',
13607 'HTTP::Tiny' => '0.054_01',
13608 'I18N::LangTags::Detect'=> '1.05_01',
13609 'IO' => '1.35_01',
13610 'IO::Compress::Adapter::Bzip2'=> '2.068_001',
13611 'IO::Compress::Adapter::Deflate'=> '2.068_001',
13612 'IO::Compress::Adapter::Identity'=> '2.068_001',
13613 'IO::Compress::Base' => '2.068_001',
13614 'IO::Compress::Base::Common'=> '2.068_001',
13615 'IO::Compress::Bzip2' => '2.068_001',
13616 'IO::Compress::Deflate' => '2.068_001',
13617 'IO::Compress::Gzip' => '2.068_001',
13618 'IO::Compress::Gzip::Constants'=> '2.068_001',
13619 'IO::Compress::RawDeflate'=> '2.068_001',
13620 'IO::Compress::Zip' => '2.068_001',
13621 'IO::Compress::Zip::Constants'=> '2.068_001',
13622 'IO::Compress::Zlib::Constants'=> '2.068_001',
13623 'IO::Compress::Zlib::Extra'=> '2.068_001',
13624 'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001',
13625 'IO::Uncompress::Adapter::Identity'=> '2.068_001',
13626 'IO::Uncompress::Adapter::Inflate'=> '2.068_001',
13627 'IO::Uncompress::AnyInflate'=> '2.068_001',
13628 'IO::Uncompress::AnyUncompress'=> '2.068_001',
13629 'IO::Uncompress::Base' => '2.068_001',
13630 'IO::Uncompress::Bunzip2'=> '2.068_001',
13631 'IO::Uncompress::Gunzip'=> '2.068_001',
13632 'IO::Uncompress::Inflate'=> '2.068_001',
13633 'IO::Uncompress::RawInflate'=> '2.068_001',
13634 'IO::Uncompress::Unzip' => '2.068_001',
13635 'IPC::Cmd' => '0.92_01',
13636 'JSON::PP' => '2.27300_01',
13637 'Locale::Maketext' => '1.26_01',
13638 'Locale::Maketext::Simple'=> '0.21_01',
13639 'Memoize' => '1.03_01',
13640 'Module::CoreList' => '5.20170114_22',
13641 'Module::CoreList::TieHashDelta'=> '5.20170114_22',
13642 'Module::CoreList::Utils'=> '5.20170114_22',
13643 'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13644 'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13645 'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13646 'Net::Cmd' => '3.05_01',
13647 'Net::Config' => '3.05_01',
13648 'Net::Domain' => '3.05_01',
13649 'Net::FTP' => '3.05_01',
13650 'Net::FTP::A' => '3.05_01',
13651 'Net::FTP::E' => '3.05_01',
13652 'Net::FTP::I' => '3.05_01',
13653 'Net::FTP::L' => '3.05_01',
13654 'Net::FTP::dataconn' => '3.05_01',
13655 'Net::NNTP' => '3.05_01',
13656 'Net::Netrc' => '3.05_01',
13657 'Net::POP3' => '3.05_01',
13658 'Net::Ping' => '2.43_01',
13659 'Net::SMTP' => '3.05_01',
13660 'Net::Time' => '3.05_01',
13661 'Parse::CPAN::Meta' => '1.4414_001',
13662 'Pod::Html' => '1.2201',
13663 'Pod::Perldoc' => '3.25_01',
13664 'Storable' => '2.53_02',
13665 'Sys::Syslog' => '0.33_01',
13666 'TAP::Base' => '3.35_01',
13667 'TAP::Formatter::Base' => '3.35_01',
13668 'TAP::Formatter::Color' => '3.35_01',
13669 'TAP::Formatter::Console'=> '3.35_01',
13670 'TAP::Formatter::Console::ParallelSession'=> '3.35_01',
13671 'TAP::Formatter::Console::Session'=> '3.35_01',
13672 'TAP::Formatter::File' => '3.35_01',
13673 'TAP::Formatter::File::Session'=> '3.35_01',
13674 'TAP::Formatter::Session'=> '3.35_01',
13675 'TAP::Harness' => '3.35_01',
13676 'TAP::Harness::Env' => '3.35_01',
13677 'TAP::Object' => '3.35_01',
13678 'TAP::Parser' => '3.35_01',
13679 'TAP::Parser::Aggregator'=> '3.35_01',
13680 'TAP::Parser::Grammar' => '3.35_01',
13681 'TAP::Parser::Iterator' => '3.35_01',
13682 'TAP::Parser::Iterator::Array'=> '3.35_01',
13683 'TAP::Parser::Iterator::Process'=> '3.35_01',
13684 'TAP::Parser::Iterator::Stream'=> '3.35_01',
13685 'TAP::Parser::IteratorFactory'=> '3.35_01',
13686 'TAP::Parser::Multiplexer'=> '3.35_01',
13687 'TAP::Parser::Result' => '3.35_01',
13688 'TAP::Parser::Result::Bailout'=> '3.35_01',
13689 'TAP::Parser::Result::Comment'=> '3.35_01',
13690 'TAP::Parser::Result::Plan'=> '3.35_01',
13691 'TAP::Parser::Result::Pragma'=> '3.35_01',
13692 'TAP::Parser::Result::Test'=> '3.35_01',
13693 'TAP::Parser::Result::Unknown'=> '3.35_01',
13694 'TAP::Parser::Result::Version'=> '3.35_01',
13695 'TAP::Parser::Result::YAML'=> '3.35_01',
13696 'TAP::Parser::ResultFactory'=> '3.35_01',
13697 'TAP::Parser::Scheduler'=> '3.35_01',
13698 'TAP::Parser::Scheduler::Job'=> '3.35_01',
13699 'TAP::Parser::Scheduler::Spinner'=> '3.35_01',
13700 'TAP::Parser::Source' => '3.35_01',
13701 'TAP::Parser::SourceHandler'=> '3.35_01',
13702 'TAP::Parser::SourceHandler::Executable'=> '3.35_01',
13703 'TAP::Parser::SourceHandler::File'=> '3.35_01',
13704 'TAP::Parser::SourceHandler::Handle'=> '3.35_01',
13705 'TAP::Parser::SourceHandler::Perl'=> '3.35_01',
13706 'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01',
13707 'TAP::Parser::YAMLish::Reader'=> '3.35_01',
13708 'TAP::Parser::YAMLish::Writer'=> '3.35_01',
13709 'Test' => '1.26_01',
13710 'Test::Harness' => '3.35_01',
13711 'XSLoader' => '0.20_01',
13712 'bigint' => '0.39_01',
13713 'bignum' => '0.39_01',
13714 'bigrat' => '0.39_01',
13715 },
13716 removed => {
13717 }
13718 },
13719 5.024001 => {
13720 delta_from => 5.024000,
13721 changed => {
13722 'App::Cpan' => '1.63_01',
13723 'App::Prove' => '3.36_01',
13724 'App::Prove::State' => '3.36_01',
13725 'App::Prove::State::Result'=> '3.36_01',
13726 'App::Prove::State::Result::Test'=> '3.36_01',
13727 'Archive::Tar' => '2.04_01',
13728 'Archive::Tar::Constant'=> '2.04_01',
13729 'Archive::Tar::File' => '2.04_01',
13730 'B::Op_private' => '5.024001',
13731 'CPAN' => '2.11_01',
13732 'Compress::Zlib' => '2.069_001',
13733 'Config' => '5.024001',
13734 'Cwd' => '3.63_01',
13735 'Digest' => '1.17_01',
13736 'Digest::SHA' => '5.95_01',
13737 'Encode' => '2.80_01',
13738 'ExtUtils::Command' => '7.10_02',
13739 'ExtUtils::Command::MM' => '7.10_02',
13740 'ExtUtils::Liblist' => '7.10_02',
13741 'ExtUtils::Liblist::Kid'=> '7.10_02',
13742 'ExtUtils::MM' => '7.10_02',
13743 'ExtUtils::MM_AIX' => '7.10_02',
13744 'ExtUtils::MM_Any' => '7.10_02',
13745 'ExtUtils::MM_BeOS' => '7.10_02',
13746 'ExtUtils::MM_Cygwin' => '7.10_02',
13747 'ExtUtils::MM_DOS' => '7.10_02',
13748 'ExtUtils::MM_Darwin' => '7.10_02',
13749 'ExtUtils::MM_MacOS' => '7.10_02',
13750 'ExtUtils::MM_NW5' => '7.10_02',
13751 'ExtUtils::MM_OS2' => '7.10_02',
13752 'ExtUtils::MM_QNX' => '7.10_02',
13753 'ExtUtils::MM_UWIN' => '7.10_02',
13754 'ExtUtils::MM_Unix' => '7.10_02',
13755 'ExtUtils::MM_VMS' => '7.10_02',
13756 'ExtUtils::MM_VOS' => '7.10_02',
13757 'ExtUtils::MM_Win32' => '7.10_02',
13758 'ExtUtils::MM_Win95' => '7.10_02',
13759 'ExtUtils::MY' => '7.10_02',
13760 'ExtUtils::MakeMaker' => '7.10_02',
13761 'ExtUtils::MakeMaker::Config'=> '7.10_02',
13762 'ExtUtils::Mkbootstrap' => '7.10_02',
13763 'ExtUtils::Mksymlists' => '7.10_02',
13764 'ExtUtils::testlib' => '7.10_02',
13765 'File::Fetch' => '0.48_01',
13766 'File::Spec' => '3.63_01',
13767 'File::Spec::Cygwin' => '3.63_01',
13768 'File::Spec::Epoc' => '3.63_01',
13769 'File::Spec::Functions' => '3.63_01',
13770 'File::Spec::Mac' => '3.63_01',
13771 'File::Spec::OS2' => '3.63_01',
13772 'File::Spec::Unix' => '3.63_01',
13773 'File::Spec::VMS' => '3.63_01',
13774 'File::Spec::Win32' => '3.63_01',
13775 'HTTP::Tiny' => '0.056_001',
13776 'I18N::LangTags::Detect'=> '1.05_01',
13777 'IO' => '1.36_01',
13778 'IO::Compress::Adapter::Bzip2'=> '2.069_001',
13779 'IO::Compress::Adapter::Deflate'=> '2.069_001',
13780 'IO::Compress::Adapter::Identity'=> '2.069_001',
13781 'IO::Compress::Base' => '2.069_001',
13782 'IO::Compress::Base::Common'=> '2.069_001',
13783 'IO::Compress::Bzip2' => '2.069_001',
13784 'IO::Compress::Deflate' => '2.069_001',
13785 'IO::Compress::Gzip' => '2.069_001',
13786 'IO::Compress::Gzip::Constants'=> '2.069_001',
13787 'IO::Compress::RawDeflate'=> '2.069_001',
13788 'IO::Compress::Zip' => '2.069_001',
13789 'IO::Compress::Zip::Constants'=> '2.069_001',
13790 'IO::Compress::Zlib::Constants'=> '2.069_001',
13791 'IO::Compress::Zlib::Extra'=> '2.069_001',
13792 'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001',
13793 'IO::Uncompress::Adapter::Identity'=> '2.069_001',
13794 'IO::Uncompress::Adapter::Inflate'=> '2.069_001',
13795 'IO::Uncompress::AnyInflate'=> '2.069_001',
13796 'IO::Uncompress::AnyUncompress'=> '2.069_001',
13797 'IO::Uncompress::Base' => '2.069_001',
13798 'IO::Uncompress::Bunzip2'=> '2.069_001',
13799 'IO::Uncompress::Gunzip'=> '2.069_001',
13800 'IO::Uncompress::Inflate'=> '2.069_001',
13801 'IO::Uncompress::RawInflate'=> '2.069_001',
13802 'IO::Uncompress::Unzip' => '2.069_001',
13803 'IPC::Cmd' => '0.92_01',
13804 'JSON::PP' => '2.27300_01',
13805 'Locale::Maketext' => '1.26_01',
13806 'Locale::Maketext::Simple'=> '0.21_01',
13807 'Math::BigFloat::Trace' => '0.42_01',
13808 'Math::BigInt::Trace' => '0.42_01',
13809 'Memoize' => '1.03_01',
13810 'Module::CoreList' => '5.20170114_24',
13811 'Module::CoreList::TieHashDelta'=> '5.20170114_24',
13812 'Module::CoreList::Utils'=> '5.20170114_24',
13813 'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef,
13814 'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef,
13815 'Module::Metadata::corpus::BOMTest::UTF8'=> '1',
13816 'Net::Cmd' => '3.08_01',
13817 'Net::Config' => '3.08_01',
13818 'Net::Domain' => '3.08_01',
13819 'Net::FTP' => '3.08_01',
13820 'Net::FTP::A' => '3.08_01',
13821 'Net::FTP::E' => '3.08_01',
13822 'Net::FTP::I' => '3.08_01',
13823 'Net::FTP::L' => '3.08_01',
13824 'Net::FTP::dataconn' => '3.08_01',
13825 'Net::NNTP' => '3.08_01',
13826 'Net::Netrc' => '3.08_01',
13827 'Net::POP3' => '3.08_01',
13828 'Net::Ping' => '2.43_01',
13829 'Net::SMTP' => '3.08_01',
13830 'Net::Time' => '3.08_01',
13831 'Parse::CPAN::Meta' => '1.4417_001',
13832 'Pod::Html' => '1.2201',
13833 'Pod::Perldoc' => '3.25_03',
13834 'Storable' => '2.56_01',
13835 'Sys::Syslog' => '0.33_01',
13836 'TAP::Base' => '3.36_01',
13837 'TAP::Formatter::Base' => '3.36_01',
13838 'TAP::Formatter::Color' => '3.36_01',
13839 'TAP::Formatter::Console'=> '3.36_01',
13840 'TAP::Formatter::Console::ParallelSession'=> '3.36_01',
13841 'TAP::Formatter::Console::Session'=> '3.36_01',
13842 'TAP::Formatter::File' => '3.36_01',
13843 'TAP::Formatter::File::Session'=> '3.36_01',
13844 'TAP::Formatter::Session'=> '3.36_01',
13845 'TAP::Harness' => '3.36_01',
13846 'TAP::Harness::Env' => '3.36_01',
13847 'TAP::Object' => '3.36_01',
13848 'TAP::Parser' => '3.36_01',
13849 'TAP::Parser::Aggregator'=> '3.36_01',
13850 'TAP::Parser::Grammar' => '3.36_01',
13851 'TAP::Parser::Iterator' => '3.36_01',
13852 'TAP::Parser::Iterator::Array'=> '3.36_01',
13853 'TAP::Parser::Iterator::Process'=> '3.36_01',
13854 'TAP::Parser::Iterator::Stream'=> '3.36_01',
13855 'TAP::Parser::IteratorFactory'=> '3.36_01',
13856 'TAP::Parser::Multiplexer'=> '3.36_01',
13857 'TAP::Parser::Result' => '3.36_01',
13858 'TAP::Parser::Result::Bailout'=> '3.36_01',
13859 'TAP::Parser::Result::Comment'=> '3.36_01',
13860 'TAP::Parser::Result::Plan'=> '3.36_01',
13861 'TAP::Parser::Result::Pragma'=> '3.36_01',
13862 'TAP::Parser::Result::Test'=> '3.36_01',
13863 'TAP::Parser::Result::Unknown'=> '3.36_01',
13864 'TAP::Parser::Result::Version'=> '3.36_01',
13865 'TAP::Parser::Result::YAML'=> '3.36_01',
13866 'TAP::Parser::ResultFactory'=> '3.36_01',
13867 'TAP::Parser::Scheduler'=> '3.36_01',
13868 'TAP::Parser::Scheduler::Job'=> '3.36_01',
13869 'TAP::Parser::Scheduler::Spinner'=> '3.36_01',
13870 'TAP::Parser::Source' => '3.36_01',
13871 'TAP::Parser::SourceHandler'=> '3.36_01',
13872 'TAP::Parser::SourceHandler::Executable'=> '3.36_01',
13873 'TAP::Parser::SourceHandler::File'=> '3.36_01',
13874 'TAP::Parser::SourceHandler::Handle'=> '3.36_01',
13875 'TAP::Parser::SourceHandler::Perl'=> '3.36_01',
13876 'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01',
13877 'TAP::Parser::YAMLish::Reader'=> '3.36_01',
13878 'TAP::Parser::YAMLish::Writer'=> '3.36_01',
13879 'Test' => '1.28_01',
13880 'Test::Harness' => '3.36_01',
13881 'XSLoader' => '0.22',
13882 'bigint' => '0.42_01',
13883 'bignum' => '0.42_01',
13884 'bigrat' => '0.42_01',
13885 },
13886 removed => {
13887 }
13888 },
2b776413
JK
13889 5.025009 => {
13890 delta_from => 5.025008,
13891 changed => {
ff2fd50f
A
13892 'App::Cpan' => '1.66',
13893 'B::Deparse' => '1.40',
d4151a23 13894 'B::Op_private' => '5.025009',
ff2fd50f
A
13895 'B::Terse' => '1.07',
13896 'B::Xref' => '1.06',
13897 'CPAN' => '2.16',
13898 'CPAN::Bundle' => '5.5002',
13899 'CPAN::Distribution' => '2.16',
13900 'CPAN::Exception::RecursiveDependency'=> '5.5001',
13901 'CPAN::FTP' => '5.5008',
13902 'CPAN::FirstTime' => '5.5310',
13903 'CPAN::HandleConfig' => '5.5008',
13904 'CPAN::Module' => '5.5003',
13905 'Compress::Raw::Bzip2' => '2.070',
13906 'Compress::Raw::Zlib' => '2.070',
d4151a23 13907 'Config' => '5.025009',
ff2fd50f
A
13908 'DB_File' => '1.840',
13909 'Data::Dumper' => '2.167',
13910 'Devel::SelfStubber' => '1.06',
13911 'DynaLoader' => '1.41',
13912 'Errno' => '1.28',
13913 'ExtUtils::Embed' => '1.34',
13914 'File::Glob' => '1.28',
13915 'I18N::LangTags' => '0.42',
2b776413
JK
13916 'Module::CoreList' => '5.20170120',
13917 'Module::CoreList::TieHashDelta'=> '5.20170120',
13918 'Module::CoreList::Utils'=> '5.20170120',
ff2fd50f
A
13919 'OS2::Process' => '1.12',
13920 'PerlIO::scalar' => '0.26',
13921 'Pod::Html' => '1.2202',
13922 'Storable' => '2.61',
13923 'Symbol' => '1.08',
13924 'Term::ReadLine' => '1.16',
13925 'Test' => '1.30',
13926 'Unicode::UCD' => '0.68',
13927 'VMS::DCLsym' => '1.08',
13928 'XS::APItest' => '0.88',
13929 'XSLoader' => '0.26',
13930 'attributes' => '0.29',
13931 'diagnostics' => '1.36',
13932 'feature' => '1.46',
13933 'lib' => '0.64',
13934 'overload' => '1.28',
13935 're' => '0.34',
13936 'threads' => '2.12',
13937 'threads::shared' => '1.54',
2b776413
JK
13938 },
13939 removed => {
13940 }
d5584eb3 13941 },
f5294d12
A
13942 5.025010 => {
13943 delta_from => 5.025009,
13944 changed => {
a9f73db0 13945 'B' => '1.68',
f5294d12 13946 'B::Op_private' => '5.025010',
a9f73db0
RB
13947 'CPAN' => '2.17',
13948 'CPAN::Distribution' => '2.17',
f5294d12 13949 'Config' => '5.02501',
a9f73db0 13950 'Getopt::Std' => '1.12',
f5294d12
A
13951 'Module::CoreList' => '5.20170220',
13952 'Module::CoreList::TieHashDelta'=> '5.20170220',
13953 'Module::CoreList::Utils'=> '5.20170220',
a9f73db0
RB
13954 'PerlIO' => '1.10',
13955 'Storable' => '2.62',
13956 'Thread::Queue' => '3.12',
13957 'feature' => '1.47',
13958 'open' => '1.11',
13959 'threads' => '2.13',
f5294d12
A
13960 },
13961 removed => {
13962 }
13963 },
b25fc2a6
DM
13964 5.025011 => {
13965 delta_from => 5.025010,
13966 changed => {
7055fb8e
S
13967 'App::Prove' => '3.38',
13968 'App::Prove::State' => '3.38',
13969 'App::Prove::State::Result'=> '3.38',
13970 'App::Prove::State::Result::Test'=> '3.38',
b25fc2a6 13971 'B::Op_private' => '5.025011',
7055fb8e
S
13972 'Compress::Raw::Bzip2' => '2.074',
13973 'Compress::Raw::Zlib' => '2.074',
13974 'Compress::Zlib' => '2.074',
b25fc2a6 13975 'Config' => '5.025011',
7055fb8e
S
13976 'Config::Perl::V' => '0.28',
13977 'Cwd' => '3.67',
13978 'ExtUtils::ParseXS' => '3.34',
13979 'ExtUtils::ParseXS::Constants'=> '3.34',
13980 'ExtUtils::ParseXS::CountLines'=> '3.34',
13981 'ExtUtils::ParseXS::Eval'=> '3.34',
13982 'ExtUtils::Typemaps' => '3.34',
13983 'ExtUtils::Typemaps::Cmd'=> '3.34',
13984 'ExtUtils::Typemaps::InputMap'=> '3.34',
13985 'ExtUtils::Typemaps::OutputMap'=> '3.34',
13986 'ExtUtils::Typemaps::Type'=> '3.34',
13987 'File::Spec' => '3.67',
13988 'File::Spec::AmigaOS' => '3.67',
13989 'File::Spec::Cygwin' => '3.67',
13990 'File::Spec::Epoc' => '3.67',
13991 'File::Spec::Functions' => '3.67',
13992 'File::Spec::Mac' => '3.67',
13993 'File::Spec::OS2' => '3.67',
13994 'File::Spec::Unix' => '3.67',
13995 'File::Spec::VMS' => '3.67',
13996 'File::Spec::Win32' => '3.67',
13997 'IO::Compress::Adapter::Bzip2'=> '2.074',
13998 'IO::Compress::Adapter::Deflate'=> '2.074',
13999 'IO::Compress::Adapter::Identity'=> '2.074',
14000 'IO::Compress::Base' => '2.074',
14001 'IO::Compress::Base::Common'=> '2.074',
14002 'IO::Compress::Bzip2' => '2.074',
14003 'IO::Compress::Deflate' => '2.074',
14004 'IO::Compress::Gzip' => '2.074',
14005 'IO::Compress::Gzip::Constants'=> '2.074',
14006 'IO::Compress::RawDeflate'=> '2.074',
14007 'IO::Compress::Zip' => '2.074',
14008 'IO::Compress::Zip::Constants'=> '2.074',
14009 'IO::Compress::Zlib::Constants'=> '2.074',
14010 'IO::Compress::Zlib::Extra'=> '2.074',
14011 'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
14012 'IO::Uncompress::Adapter::Identity'=> '2.074',
14013 'IO::Uncompress::Adapter::Inflate'=> '2.074',
14014 'IO::Uncompress::AnyInflate'=> '2.074',
14015 'IO::Uncompress::AnyUncompress'=> '2.074',
14016 'IO::Uncompress::Base' => '2.074',
14017 'IO::Uncompress::Bunzip2'=> '2.074',
14018 'IO::Uncompress::Gunzip'=> '2.074',
14019 'IO::Uncompress::Inflate'=> '2.074',
14020 'IO::Uncompress::RawInflate'=> '2.074',
14021 'IO::Uncompress::Unzip' => '2.074',
b25fc2a6
DM
14022 'Module::CoreList' => '5.20170320',
14023 'Module::CoreList::TieHashDelta'=> '5.20170230',
14024 'Module::CoreList::Utils'=> '5.20170320',
7055fb8e
S
14025 'Pod::Perldoc' => '3.28',
14026 'Pod::Perldoc::BaseTo' => '3.28',
14027 'Pod::Perldoc::GetOptsOO'=> '3.28',
14028 'Pod::Perldoc::ToANSI' => '3.28',
14029 'Pod::Perldoc::ToChecker'=> '3.28',
14030 'Pod::Perldoc::ToMan' => '3.28',
14031 'Pod::Perldoc::ToNroff' => '3.28',
14032 'Pod::Perldoc::ToPod' => '3.28',
14033 'Pod::Perldoc::ToRtf' => '3.28',
14034 'Pod::Perldoc::ToTerm' => '3.28',
14035 'Pod::Perldoc::ToText' => '3.28',
14036 'Pod::Perldoc::ToTk' => '3.28',
14037 'Pod::Perldoc::ToXml' => '3.28',
14038 'TAP::Base' => '3.38',
14039 'TAP::Formatter::Base' => '3.38',
14040 'TAP::Formatter::Color' => '3.38',
14041 'TAP::Formatter::Console'=> '3.38',
14042 'TAP::Formatter::Console::ParallelSession'=> '3.38',
14043 'TAP::Formatter::Console::Session'=> '3.38',
14044 'TAP::Formatter::File' => '3.38',
14045 'TAP::Formatter::File::Session'=> '3.38',
14046 'TAP::Formatter::Session'=> '3.38',
14047 'TAP::Harness' => '3.38',
14048 'TAP::Harness::Env' => '3.38',
14049 'TAP::Object' => '3.38',
14050 'TAP::Parser' => '3.38',
14051 'TAP::Parser::Aggregator'=> '3.38',
14052 'TAP::Parser::Grammar' => '3.38',
14053 'TAP::Parser::Iterator' => '3.38',
14054 'TAP::Parser::Iterator::Array'=> '3.38',
14055 'TAP::Parser::Iterator::Process'=> '3.38',
14056 'TAP::Parser::Iterator::Stream'=> '3.38',
14057 'TAP::Parser::IteratorFactory'=> '3.38',
14058 'TAP::Parser::Multiplexer'=> '3.38',
14059 'TAP::Parser::Result' => '3.38',
14060 'TAP::Parser::Result::Bailout'=> '3.38',
14061 'TAP::Parser::Result::Comment'=> '3.38',
14062 'TAP::Parser::Result::Plan'=> '3.38',
14063 'TAP::Parser::Result::Pragma'=> '3.38',
14064 'TAP::Parser::Result::Test'=> '3.38',
14065 'TAP::Parser::Result::Unknown'=> '3.38',
14066 'TAP::Parser::Result::Version'=> '3.38',
14067 'TAP::Parser::Result::YAML'=> '3.38',
14068 'TAP::Parser::ResultFactory'=> '3.38',
14069 'TAP::Parser::Scheduler'=> '3.38',
14070 'TAP::Parser::Scheduler::Job'=> '3.38',
14071 'TAP::Parser::Scheduler::Spinner'=> '3.38',
14072 'TAP::Parser::Source' => '3.38',
14073 'TAP::Parser::SourceHandler'=> '3.38',
14074 'TAP::Parser::SourceHandler::Executable'=> '3.38',
14075 'TAP::Parser::SourceHandler::File'=> '3.38',
14076 'TAP::Parser::SourceHandler::Handle'=> '3.38',
14077 'TAP::Parser::SourceHandler::Perl'=> '3.38',
14078 'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
14079 'TAP::Parser::YAMLish::Reader'=> '3.38',
14080 'TAP::Parser::YAMLish::Writer'=> '3.38',
14081 'Test::Harness' => '3.38',
14082 'VMS::Stdio' => '2.41',
14083 'threads' => '2.15',
14084 'threads::shared' => '1.55',
b25fc2a6
DM
14085 },
14086 removed => {
14087 }
14088 },
1798a06e 14089 5.025012 => {
fbe3f407
S
14090 delta_from => 5.025011,
14091 changed => {
b62b979e
S
14092 'B::Op_private' => '5.025012',
14093 'CPAN' => '2.18',
14094 'CPAN::Bundle' => '5.5003',
14095 'CPAN::Distribution' => '2.18',
14096 'Config' => '5.025012',
14097 'DynaLoader' => '1.42',
fbe3f407
S
14098 'Module::CoreList' => '5.20170420',
14099 'Module::CoreList::TieHashDelta'=> '5.20170420',
14100 'Module::CoreList::Utils'=> '5.20170420',
b62b979e
S
14101 'Safe' => '2.40',
14102 'XSLoader' => '0.27',
14103 'base' => '2.25',
14104 'threads::shared' => '1.56',
fbe3f407
S
14105 },
14106 removed => {
14107 }
14108 },
60454717
S
14109 5.026000 => {
14110 delta_from => 5.025012,
14111 changed => {
14112 'B::Op_private' => '5.026000',
14113 'Config' => '5.026',
dee2a2b8
S
14114 'Module::CoreList' => '5.20170530',
14115 'Module::CoreList::TieHashDelta'=> '5.20170530',
14116 'Module::CoreList::Utils'=> '5.20170530',
60454717
S
14117 },
14118 removed => {
14119 }
14120 },
753bd946 14121 5.027000 => {
a6b08d8b 14122 delta_from => 5.026000,
753bd946 14123 changed => {
a6b08d8b
S
14124 'Attribute::Handlers' => '1.00',
14125 'B::Concise' => '1.000',
14126 'B::Deparse' => '1.41',
753bd946
S
14127 'B::Op_private' => '5.027000',
14128 'Config' => '5.027',
9927ab6a
SH
14129 'Module::CoreList' => '5.20170531',
14130 'Module::CoreList::TieHashDelta'=> '5.20170531',
14131 'Module::CoreList::Utils'=> '5.20170531',
a6b08d8b
S
14132 'O' => '1.02',
14133 'attributes' => '0.3',
c8e60329 14134 'feature' => '1.48',
753bd946
S
14135 },
14136 removed => {
14137 }
14138 },
bb5b17cd 14139 5.027001 => {
09b93956
EH
14140 delta_from => 5.027,
14141 changed => {
14142 'App::Prove' => '3.39',
14143 'App::Prove::State' => '3.39',
14144 'App::Prove::State::Result'=> '3.39',
14145 'App::Prove::State::Result::Test'=> '3.39',
14146 'Archive::Tar' => '2.26',
14147 'Archive::Tar::Constant'=> '2.26',
14148 'Archive::Tar::File' => '2.26',
bb5b17cd 14149 'B::Op_private' => '5.027001',
09b93956 14150 'B::Terse' => '1.08',
bb5b17cd 14151 'Config' => '5.027001',
09b93956
EH
14152 'Devel::PPPort' => '3.36',
14153 'DirHandle' => '1.05',
14154 'ExtUtils::Command' => '7.30',
14155 'ExtUtils::Command::MM' => '7.30',
14156 'ExtUtils::Install' => '2.14',
14157 'ExtUtils::Installed' => '2.14',
14158 'ExtUtils::Liblist' => '7.30',
14159 'ExtUtils::Liblist::Kid'=> '7.30',
14160 'ExtUtils::MM' => '7.30',
14161 'ExtUtils::MM_AIX' => '7.30',
14162 'ExtUtils::MM_Any' => '7.30',
14163 'ExtUtils::MM_BeOS' => '7.30',
14164 'ExtUtils::MM_Cygwin' => '7.30',
14165 'ExtUtils::MM_DOS' => '7.30',
14166 'ExtUtils::MM_Darwin' => '7.30',
14167 'ExtUtils::MM_MacOS' => '7.30',
14168 'ExtUtils::MM_NW5' => '7.30',
14169 'ExtUtils::MM_OS2' => '7.30',
14170 'ExtUtils::MM_QNX' => '7.30',
14171 'ExtUtils::MM_UWIN' => '7.30',
14172 'ExtUtils::MM_Unix' => '7.30',
14173 'ExtUtils::MM_VMS' => '7.30',
14174 'ExtUtils::MM_VOS' => '7.30',
14175 'ExtUtils::MM_Win32' => '7.30',
14176 'ExtUtils::MM_Win95' => '7.30',
14177 'ExtUtils::MY' => '7.30',
14178 'ExtUtils::MakeMaker' => '7.30',
14179 'ExtUtils::MakeMaker::Config'=> '7.30',
14180 'ExtUtils::MakeMaker::Locale'=> '7.30',
14181 'ExtUtils::MakeMaker::version'=> '7.30',
14182 'ExtUtils::MakeMaker::version::regex'=> '7.30',
14183 'ExtUtils::Mkbootstrap' => '7.30',
14184 'ExtUtils::Mksymlists' => '7.30',
14185 'ExtUtils::Packlist' => '2.14',
14186 'ExtUtils::testlib' => '7.30',
14187 'File::Path' => '2.14',
14188 'Filter::Util::Call' => '1.57',
bb5b17cd 14189 'GDBM_File' => '1.16',
09b93956
EH
14190 'Getopt::Long' => '2.5',
14191 'IO::Socket::IP' => '0.39',
14192 'IPC::Cmd' => '0.98',
14193 'JSON::PP' => '2.94',
14194 'JSON::PP::Boolean' => '2.94',
bb5b17cd
DM
14195 'Locale::Codes' => '3.52',
14196 'Locale::Codes::Constants'=> '3.52',
14197 'Locale::Codes::Country'=> '3.52',
14198 'Locale::Codes::Country_Codes'=> '3.52',
14199 'Locale::Codes::Country_Retired'=> '3.52',
14200 'Locale::Codes::Currency'=> '3.52',
14201 'Locale::Codes::Currency_Codes'=> '3.52',
14202 'Locale::Codes::Currency_Retired'=> '3.52',
14203 'Locale::Codes::LangExt'=> '3.52',
14204 'Locale::Codes::LangExt_Codes'=> '3.52',
14205 'Locale::Codes::LangExt_Retired'=> '3.52',
14206 'Locale::Codes::LangFam'=> '3.52',
14207 'Locale::Codes::LangFam_Codes'=> '3.52',
14208 'Locale::Codes::LangFam_Retired'=> '3.52',
14209 'Locale::Codes::LangVar'=> '3.52',
14210 'Locale::Codes::LangVar_Codes'=> '3.52',
14211 'Locale::Codes::LangVar_Retired'=> '3.52',
14212 'Locale::Codes::Language'=> '3.52',
14213 'Locale::Codes::Language_Codes'=> '3.52',
14214 'Locale::Codes::Language_Retired'=> '3.52',
14215 'Locale::Codes::Script' => '3.52',
14216 'Locale::Codes::Script_Codes'=> '3.52',
14217 'Locale::Codes::Script_Retired'=> '3.52',
14218 'Locale::Country' => '3.52',
14219 'Locale::Currency' => '3.52',
14220 'Locale::Language' => '3.52',
14221 'Locale::Script' => '3.52',
09b93956
EH
14222 'Module::CoreList' => '5.20170621',
14223 'Module::CoreList::TieHashDelta'=> '5.20170621',
14224 'Module::CoreList::Utils'=> '5.20170621',
14225 'PerlIO::scalar' => '0.27',
14226 'PerlIO::via' => '0.17',
14227 'Storable' => '2.63',
14228 'TAP::Base' => '3.39',
14229 'TAP::Formatter::Base' => '3.39',
14230 'TAP::Formatter::Color' => '3.39',
14231 'TAP::Formatter::Console'=> '3.39',
14232 'TAP::Formatter::Console::ParallelSession'=> '3.39',
14233 'TAP::Formatter::Console::Session'=> '3.39',
14234 'TAP::Formatter::File' => '3.39',
14235 'TAP::Formatter::File::Session'=> '3.39',
14236 'TAP::Formatter::Session'=> '3.39',
14237 'TAP::Harness' => '3.39',
14238 'TAP::Harness::Env' => '3.39',
14239 'TAP::Object' => '3.39',
14240 'TAP::Parser' => '3.39',
14241 'TAP::Parser::Aggregator'=> '3.39',
14242 'TAP::Parser::Grammar' => '3.39',
14243 'TAP::Parser::Iterator' => '3.39',
14244 'TAP::Parser::Iterator::Array'=> '3.39',
14245 'TAP::Parser::Iterator::Process'=> '3.39',
14246 'TAP::Parser::Iterator::Stream'=> '3.39',
14247 'TAP::Parser::IteratorFactory'=> '3.39',
14248 'TAP::Parser::Multiplexer'=> '3.39',
14249 'TAP::Parser::Result' => '3.39',
14250 'TAP::Parser::Result::Bailout'=> '3.39',
14251 'TAP::Parser::Result::Comment'=> '3.39',
14252 'TAP::Parser::Result::Plan'=> '3.39',
14253 'TAP::Parser::Result::Pragma'=> '3.39',
14254 'TAP::Parser::Result::Test'=> '3.39',
14255 'TAP::Parser::Result::Unknown'=> '3.39',
14256 'TAP::Parser::Result::Version'=> '3.39',
14257 'TAP::Parser::Result::YAML'=> '3.39',
14258 'TAP::Parser::ResultFactory'=> '3.39',
14259 'TAP::Parser::Scheduler'=> '3.39',
14260 'TAP::Parser::Scheduler::Job'=> '3.39',
14261 'TAP::Parser::Scheduler::Spinner'=> '3.39',
14262 'TAP::Parser::Source' => '3.39',
14263 'TAP::Parser::SourceHandler'=> '3.39',
14264 'TAP::Parser::SourceHandler::Executable'=> '3.39',
14265 'TAP::Parser::SourceHandler::File'=> '3.39',
14266 'TAP::Parser::SourceHandler::Handle'=> '3.39',
14267 'TAP::Parser::SourceHandler::Perl'=> '3.39',
14268 'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
14269 'TAP::Parser::YAMLish::Reader'=> '3.39',
14270 'TAP::Parser::YAMLish::Writer'=> '3.39',
14271 'Test::Harness' => '3.39',
bb5b17cd
DM
14272 'XS::APItest' => '0.89',
14273 '_charnames' => '1.45',
14274 'charnames' => '1.45',
14275 'if' => '0.0607',
14276 'mro' => '1.21',
14277 'threads' => '2.16',
14278 'threads::shared' => '1.57',
14279 'version' => '0.9918',
14280 'version::regex' => '0.9918',
14281 },
14282 removed => {
14283 }
14284 },
e029cc95
SH
14285 5.022004 => {
14286 delta_from => 5.022003,
14287 changed => {
14288 'B::Op_private' => '5.022004',
14289 'Config' => '5.022004',
14290 'Module::CoreList' => '5.20170715_22',
14291 'Module::CoreList::TieHashDelta'=> '5.20170715_22',
14292 'Module::CoreList::Utils'=> '5.20170715_22',
14293 'base' => '2.22_01',
14294 },
14295 removed => {
14296 }
14297 },
da0817c4
SH
14298 5.024002 => {
14299 delta_from => 5.024001,
14300 changed => {
14301 'B::Op_private' => '5.024002',
14302 'Config' => '5.024002',
14303 'Module::CoreList' => '5.20170715_24',
14304 'Module::CoreList::TieHashDelta'=> '5.20170715_24',
14305 'Module::CoreList::Utils'=> '5.20170715_24',
14306 'base' => '2.23_01',
14307 },
14308 removed => {
14309 }
14310 },
0db26723
EH
14311 5.027002 => {
14312 delta_from => 5.027001,
14313 changed => {
14314 'B::Op_private' => '5.027002',
7ffcba09
AC
14315 'Carp' => '1.43',
14316 'Carp::Heavy' => '1.43',
0db26723 14317 'Config' => '5.027002',
7ffcba09
AC
14318 'Cwd' => '3.68',
14319 'Encode' => '2.92',
14320 'Encode::Alias' => '2.23',
14321 'Encode::CN::HZ' => '2.09',
14322 'Encode::Encoding' => '2.08',
14323 'Encode::GSM0338' => '2.07',
14324 'Encode::Guess' => '2.07',
14325 'Encode::JP::JIS7' => '2.07',
14326 'Encode::KR::2022_KR' => '2.04',
14327 'Encode::MIME::Header' => '2.27',
14328 'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
14329 'Encode::Unicode' => '2.16',
14330 'Encode::Unicode::UTF7' => '2.10',
14331 'ExtUtils::CBuilder' => '0.280228',
14332 'ExtUtils::CBuilder::Base'=> '0.280228',
14333 'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
14334 'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
14335 'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
14336 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
14337 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
14338 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
14339 'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
14340 'ExtUtils::CBuilder::Platform::android'=> '0.280228',
14341 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
14342 'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
14343 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
14344 'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
14345 'File::Glob' => '1.29',
14346 'File::Spec' => '3.68',
14347 'File::Spec::AmigaOS' => '3.68',
14348 'File::Spec::Cygwin' => '3.68',
14349 'File::Spec::Epoc' => '3.68',
14350 'File::Spec::Functions' => '3.68',
14351 'File::Spec::Mac' => '3.68',
14352 'File::Spec::OS2' => '3.68',
14353 'File::Spec::Unix' => '3.68',
14354 'File::Spec::VMS' => '3.68',
14355 'File::Spec::Win32' => '3.68',
14356 'List::Util' => '1.48',
14357 'List::Util::XS' => '1.48',
14358 'Math::BigRat' => '0.2613',
59b1919d
SH
14359 'Module::CoreList' => '5.20170720',
14360 'Module::CoreList::TieHashDelta'=> '5.20170720',
14361 'Module::CoreList::Utils'=> '5.20170720',
7ffcba09
AC
14362 'Opcode' => '1.40',
14363 'POSIX' => '1.77',
14364 'PerlIO::scalar' => '0.29',
14365 'Scalar::Util' => '1.48',
14366 'Sub::Util' => '1.48',
14367 'Time::HiRes' => '1.9743',
14368 'Time::Piece' => '1.3201',
14369 'Time::Seconds' => '1.3201',
0db26723 14370 'Unicode' => '10.0.0',
7ffcba09
AC
14371 'XS::APItest' => '0.90',
14372 'arybase' => '0.13',
14373 'encoding' => '2.20',
14374 'feature' => '1.49',
14375 're' => '0.35',
0db26723
EH
14376 },
14377 removed => {
14378 }
14379 },
56c35cf6
AC
14380 5.027003 => {
14381 delta_from => 5.027002,
14382 changed => {
e94c2221
MH
14383 'B' => '1.69',
14384 'B::Concise' => '1.001',
14385 'B::Debug' => '1.25',
14386 'B::Deparse' => '1.42',
56c35cf6
AC
14387 'B::Op_private' => '5.027003',
14388 'Config' => '5.027003',
e94c2221
MH
14389 'Data::Dumper' => '2.167_02',
14390 'Devel::Peek' => '1.27',
14391 'ExtUtils::Constant' => '0.24',
14392 'ExtUtils::Constant::Base'=> '0.06',
14393 'ExtUtils::Constant::ProxySubs'=> '0.09',
14394 'ExtUtils::Constant::Utils'=> '0.04',
14395 'ExtUtils::ParseXS' => '3.35',
14396 'ExtUtils::ParseXS::Constants'=> '3.35',
14397 'ExtUtils::ParseXS::CountLines'=> '3.35',
14398 'ExtUtils::ParseXS::Eval'=> '3.35',
14399 'ExtUtils::ParseXS::Utilities'=> '3.35',
14400 'ExtUtils::Typemaps' => '3.35',
14401 'ExtUtils::Typemaps::Cmd'=> '3.35',
14402 'ExtUtils::Typemaps::InputMap'=> '3.35',
14403 'ExtUtils::Typemaps::OutputMap'=> '3.35',
14404 'ExtUtils::Typemaps::Type'=> '3.35',
14405 'Filter::Simple' => '0.94',
14406 'Module::CoreList' => '5.20170821',
14407 'Module::CoreList::TieHashDelta'=> '5.20170821',
14408 'Module::CoreList::Utils'=> '5.20170821',
14409 'SelfLoader' => '1.24',
14410 'Storable' => '2.64',
14411 'XS::APItest' => '0.91',
14412 'base' => '2.26',
14413 'threads' => '2.17',
14414 'utf8' => '1.20',
56c35cf6
AC
14415 },
14416 removed => {
14417 }
14418 },
9f9332db
MH
14419 5.027004 => {
14420 delta_from => 5.027003,
14421 changed => {
14422 'B::Op_private' => '5.027004',
14423 'Config' => '5.027004',
0c32d890
JSA
14424 'File::Glob' => '1.30',
14425 'I18N::Langinfo' => '0.14',
9f9332db
MH
14426 'Module::CoreList' => '5.20170920',
14427 'Module::CoreList::TieHashDelta'=> '5.20170920',
14428 'Module::CoreList::Utils'=> '5.20170920',
0c32d890
JSA
14429 'Term::ReadLine' => '1.17',
14430 'VMS::Stdio' => '2.42',
14431 'XS::APItest' => '0.92',
14432 'attributes' => '0.31',
14433 'sort' => '2.03',
14434 'threads' => '2.18',
9f9332db
MH
14435 },
14436 removed => {
14437 }
14438 },
0ba9031a
SH
14439 5.024003 => {
14440 delta_from => 5.024002,
14441 changed => {
14442 'B::Op_private' => '5.024003',
14443 'Config' => '5.024003',
14444 'Module::CoreList' => '5.20170922_24',
14445 'Module::CoreList::TieHashDelta'=> '5.20170922_24',
14446 'Module::CoreList::Utils'=> '5.20170922_24',
14447 'POSIX' => '1.65_01',
14448 'Time::HiRes' => '1.9741',
14449 },
14450 removed => {
14451 }
14452 },
14453 5.026001 => {
14454 delta_from => 5.026000,
14455 changed => {
14456 'B::Op_private' => '5.026001',
14457 'Config' => '5.026001',
14458 'Module::CoreList' => '5.20170922_26',
14459 'Module::CoreList::TieHashDelta'=> '5.20170922_26',
14460 'Module::CoreList::Utils'=> '5.20170922_26',
14461 '_charnames' => '1.45',
14462 'base' => '2.26',
14463 'charnames' => '1.45',
14464 },
14465 removed => {
14466 }
14467 },
1967e407
JSA
14468 5.027005 => {
14469 delta_from => 5.027004,
14470 changed => {
0b2e8509
SH
14471 'B' => '1.70',
14472 'B::Concise' => '1.002',
14473 'B::Deparse' => '1.43',
1967e407 14474 'B::Op_private' => '5.027005',
0b2e8509 14475 'B::Xref' => '1.07',
1967e407 14476 'Config' => '5.027005',
0b2e8509
SH
14477 'Config::Perl::V' => '0.29',
14478 'Digest::SHA' => '5.98',
14479 'Encode' => '2.93',
14480 'Encode::CN::HZ' => '2.10',
14481 'Encode::JP::JIS7' => '2.08',
14482 'Encode::MIME::Header' => '2.28',
14483 'Encode::MIME::Name' => '1.03',
14484 'File::Fetch' => '0.54',
14485 'File::Path' => '2.15',
14486 'List::Util' => '1.49',
14487 'List::Util::XS' => '1.49',
14488 'Locale::Codes' => '3.54',
14489 'Locale::Codes::Constants'=> '3.54',
14490 'Locale::Codes::Country'=> '3.54',
14491 'Locale::Codes::Country_Codes'=> '3.54',
14492 'Locale::Codes::Country_Retired'=> '3.54',
14493 'Locale::Codes::Currency'=> '3.54',
14494 'Locale::Codes::Currency_Codes'=> '3.54',
14495 'Locale::Codes::Currency_Retired'=> '3.54',
14496 'Locale::Codes::LangExt'=> '3.54',
14497 'Locale::Codes::LangExt_Codes'=> '3.54',
14498 'Locale::Codes::LangExt_Retired'=> '3.54',
14499 'Locale::Codes::LangFam'=> '3.54',
14500 'Locale::Codes::LangFam_Codes'=> '3.54',
14501 'Locale::Codes::LangFam_Retired'=> '3.54',
14502 'Locale::Codes::LangVar'=> '3.54',
14503 'Locale::Codes::LangVar_Codes'=> '3.54',
14504 'Locale::Codes::LangVar_Retired'=> '3.54',
14505 'Locale::Codes::Language'=> '3.54',
14506 'Locale::Codes::Language_Codes'=> '3.54',
14507 'Locale::Codes::Language_Retired'=> '3.54',
14508 'Locale::Codes::Script' => '3.54',
14509 'Locale::Codes::Script_Codes'=> '3.54',
14510 'Locale::Codes::Script_Retired'=> '3.54',
14511 'Locale::Country' => '3.54',
14512 'Locale::Currency' => '3.54',
14513 'Locale::Language' => '3.54',
14514 'Locale::Script' => '3.54',
14515 'Math::BigFloat' => '1.999811',
14516 'Math::BigInt' => '1.999811',
14517 'Math::BigInt::Calc' => '1.999811',
14518 'Math::BigInt::CalcEmu' => '1.999811',
14519 'Math::BigInt::FastCalc'=> '0.5006',
14520 'Math::BigInt::Lib' => '1.999811',
1967e407
JSA
14521 'Module::CoreList' => '5.20171020',
14522 'Module::CoreList::TieHashDelta'=> '5.20171020',
14523 'Module::CoreList::Utils'=> '5.20171020',
0b2e8509
SH
14524 'NEXT' => '0.67_01',
14525 'POSIX' => '1.78',
14526 'Pod::Perldoc' => '3.2801',
14527 'Scalar::Util' => '1.49',
14528 'Sub::Util' => '1.49',
14529 'Sys::Hostname' => '1.21',
14530 'Test2' => '1.302103',
14531 'Test2::API' => '1.302103',
14532 'Test2::API::Breakage' => '1.302103',
14533 'Test2::API::Context' => '1.302103',
14534 'Test2::API::Instance' => '1.302103',
14535 'Test2::API::Stack' => '1.302103',
14536 'Test2::Event' => '1.302103',
14537 'Test2::Event::Bail' => '1.302103',
14538 'Test2::Event::Diag' => '1.302103',
14539 'Test2::Event::Encoding'=> '1.302103',
14540 'Test2::Event::Exception'=> '1.302103',
14541 'Test2::Event::Fail' => '1.302103',
14542 'Test2::Event::Generic' => '1.302103',
14543 'Test2::Event::Note' => '1.302103',
14544 'Test2::Event::Ok' => '1.302103',
14545 'Test2::Event::Pass' => '1.302103',
14546 'Test2::Event::Plan' => '1.302103',
14547 'Test2::Event::Skip' => '1.302103',
14548 'Test2::Event::Subtest' => '1.302103',
14549 'Test2::Event::TAP::Version'=> '1.302103',
14550 'Test2::Event::Waiting' => '1.302103',
14551 'Test2::EventFacet' => '1.302103',
14552 'Test2::EventFacet::About'=> '1.302103',
14553 'Test2::EventFacet::Amnesty'=> '1.302103',
14554 'Test2::EventFacet::Assert'=> '1.302103',
14555 'Test2::EventFacet::Control'=> '1.302103',
14556 'Test2::EventFacet::Error'=> '1.302103',
14557 'Test2::EventFacet::Info'=> '1.302103',
14558 'Test2::EventFacet::Meta'=> '1.302103',
14559 'Test2::EventFacet::Parent'=> '1.302103',
14560 'Test2::EventFacet::Plan'=> '1.302103',
14561 'Test2::EventFacet::Trace'=> '1.302103',
14562 'Test2::Formatter' => '1.302103',
14563 'Test2::Formatter::TAP' => '1.302103',
14564 'Test2::Hub' => '1.302103',
14565 'Test2::Hub::Interceptor'=> '1.302103',
14566 'Test2::Hub::Interceptor::Terminator'=> '1.302103',
14567 'Test2::Hub::Subtest' => '1.302103',
14568 'Test2::IPC' => '1.302103',
14569 'Test2::IPC::Driver' => '1.302103',
14570 'Test2::IPC::Driver::Files'=> '1.302103',
14571 'Test2::Tools::Tiny' => '1.302103',
14572 'Test2::Util' => '1.302103',
14573 'Test2::Util::ExternalMeta'=> '1.302103',
14574 'Test2::Util::Facets2Legacy'=> '1.302103',
14575 'Test2::Util::HashBase' => '0.005',
14576 'Test2::Util::Trace' => '1.302103',
14577 'Test::Builder' => '1.302103',
14578 'Test::Builder::Formatter'=> '1.302103',
14579 'Test::Builder::IO::Scalar'=> '2.114',
14580 'Test::Builder::Module' => '1.302103',
14581 'Test::Builder::Tester' => '1.302103',
14582 'Test::Builder::Tester::Color'=> '1.302103',
14583 'Test::Builder::TodoDiag'=> '1.302103',
14584 'Test::More' => '1.302103',
14585 'Test::Simple' => '1.302103',
14586 'Test::Tester' => '1.302103',
14587 'Test::Tester::Capture' => '1.302103',
14588 'Test::Tester::CaptureRunner'=> '1.302103',
14589 'Test::Tester::Delegate'=> '1.302103',
14590 'Test::use::ok' => '1.302103',
14591 'Time::HiRes' => '1.9746',
14592 'Time::Piece' => '1.3202',
14593 'Time::Seconds' => '1.3202',
14594 'arybase' => '0.14',
14595 'encoding' => '2.21',
14596 'ok' => '1.302103',
14597 },
14598 removed => {
14599 'Test2::Event::Info' => 1,
1967e407
JSA
14600 }
14601 },
78425520
SH
14602 5.027006 => {
14603 delta_from => 5.027005,
14604 changed => {
feee2c5b
KE
14605 'Attribute::Handlers' => '1.01',
14606 'B' => '1.72',
14607 'B::Concise' => '1.003',
14608 'B::Deparse' => '1.45',
78425520 14609 'B::Op_private' => '5.027006',
feee2c5b
KE
14610 'Carp' => '1.44',
14611 'Carp::Heavy' => '1.44',
14612 'Compress::Raw::Zlib' => '2.075',
78425520 14613 'Config' => '5.027006',
feee2c5b
KE
14614 'Config::Extensions' => '0.02',
14615 'Cwd' => '3.70',
14616 'DynaLoader' => '1.44',
14617 'ExtUtils::CBuilder' => '0.280229',
14618 'ExtUtils::CBuilder::Platform::Unix'=> '0.280229',
14619 'ExtUtils::CBuilder::Platform::VMS'=> '0.280229',
14620 'ExtUtils::CBuilder::Platform::Windows'=> '0.280229',
14621 'ExtUtils::CBuilder::Platform::aix'=> '0.280229',
14622 'ExtUtils::CBuilder::Platform::android'=> '0.280229',
14623 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229',
14624 'ExtUtils::CBuilder::Platform::darwin'=> '0.280229',
14625 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229',
14626 'ExtUtils::CBuilder::Platform::os2'=> '0.280229',
14627 'ExtUtils::Embed' => '1.35',
14628 'ExtUtils::Miniperl' => '1.07',
14629 'ExtUtils::ParseXS' => '3.36',
14630 'ExtUtils::ParseXS::Constants'=> '3.36',
14631 'ExtUtils::ParseXS::CountLines'=> '3.36',
14632 'ExtUtils::ParseXS::Eval'=> '3.36',
14633 'ExtUtils::ParseXS::Utilities'=> '3.36',
14634 'ExtUtils::Typemaps' => '3.36',
14635 'ExtUtils::Typemaps::Cmd'=> '3.36',
14636 'ExtUtils::Typemaps::InputMap'=> '3.36',
14637 'ExtUtils::Typemaps::OutputMap'=> '3.36',
14638 'ExtUtils::Typemaps::Type'=> '3.36',
14639 'ExtUtils::XSSymSet' => '1.4',
14640 'File::Copy' => '2.33',
14641 'File::Spec' => '3.69',
14642 'File::Spec::AmigaOS' => '3.69',
14643 'File::Spec::Cygwin' => '3.69',
14644 'File::Spec::Epoc' => '3.69',
14645 'File::Spec::Functions' => '3.69',
14646 'File::Spec::Mac' => '3.69',
14647 'File::Spec::OS2' => '3.69',
14648 'File::Spec::Unix' => '3.69',
14649 'File::Spec::VMS' => '3.69',
14650 'File::Spec::Win32' => '3.69',
14651 'File::stat' => '1.08',
14652 'FileCache' => '1.10',
14653 'Filter::Simple' => '0.95',
14654 'Hash::Util::FieldHash' => '1.20',
14655 'I18N::LangTags' => '0.43',
14656 'I18N::LangTags::Detect'=> '1.07',
14657 'I18N::LangTags::List' => '0.40',
14658 'I18N::Langinfo' => '0.15',
14659 'IO::Handle' => '1.37',
14660 'IO::Select' => '1.23',
14661 'Locale::Maketext' => '1.29',
78425520
SH
14662 'Module::CoreList' => '5.20171120',
14663 'Module::CoreList::TieHashDelta'=> '5.20171120',
14664 'Module::CoreList::Utils'=> '5.20171120',
feee2c5b
KE
14665 'Net::Cmd' => '3.11',
14666 'Net::Config' => '3.11',
14667 'Net::Domain' => '3.11',
14668 'Net::FTP' => '3.11',
14669 'Net::FTP::A' => '3.11',
14670 'Net::FTP::E' => '3.11',
14671 'Net::FTP::I' => '3.11',
14672 'Net::FTP::L' => '3.11',
14673 'Net::FTP::dataconn' => '3.11',
14674 'Net::NNTP' => '3.11',
14675 'Net::Netrc' => '3.11',
14676 'Net::POP3' => '3.11',
14677 'Net::Ping' => '2.62',
14678 'Net::SMTP' => '3.11',
14679 'Net::Time' => '3.11',
14680 'Net::hostent' => '1.02',
14681 'Net::netent' => '1.01',
14682 'Net::protoent' => '1.01',
14683 'Net::servent' => '1.02',
14684 'O' => '1.03',
14685 'ODBM_File' => '1.15',
14686 'Opcode' => '1.41',
14687 'POSIX' => '1.80',
14688 'Pod::Html' => '1.2203',
14689 'SelfLoader' => '1.25',
14690 'Socket' => '2.020_04',
14691 'Storable' => '2.65',
14692 'Storable::__Storable__'=> '2.65',
14693 'Test' => '1.31',
14694 'Test2' => '1.302111',
14695 'Test2::API' => '1.302111',
14696 'Test2::API::Breakage' => '1.302111',
14697 'Test2::API::Context' => '1.302111',
14698 'Test2::API::Instance' => '1.302111',
14699 'Test2::API::Stack' => '1.302111',
14700 'Test2::Event' => '1.302111',
14701 'Test2::Event::Bail' => '1.302111',
14702 'Test2::Event::Diag' => '1.302111',
14703 'Test2::Event::Encoding'=> '1.302111',
14704 'Test2::Event::Exception'=> '1.302111',
14705 'Test2::Event::Fail' => '1.302111',
14706 'Test2::Event::Generic' => '1.302111',
14707 'Test2::Event::Note' => '1.302111',
14708 'Test2::Event::Ok' => '1.302111',
14709 'Test2::Event::Pass' => '1.302111',
14710 'Test2::Event::Plan' => '1.302111',
14711 'Test2::Event::Skip' => '1.302111',
14712 'Test2::Event::Subtest' => '1.302111',
14713 'Test2::Event::TAP::Version'=> '1.302111',
14714 'Test2::Event::Waiting' => '1.302111',
14715 'Test2::EventFacet' => '1.302111',
14716 'Test2::EventFacet::About'=> '1.302111',
14717 'Test2::EventFacet::Amnesty'=> '1.302111',
14718 'Test2::EventFacet::Assert'=> '1.302111',
14719 'Test2::EventFacet::Control'=> '1.302111',
14720 'Test2::EventFacet::Error'=> '1.302111',
14721 'Test2::EventFacet::Info'=> '1.302111',
14722 'Test2::EventFacet::Meta'=> '1.302111',
14723 'Test2::EventFacet::Parent'=> '1.302111',
14724 'Test2::EventFacet::Plan'=> '1.302111',
14725 'Test2::EventFacet::Trace'=> '1.302111',
14726 'Test2::Formatter' => '1.302111',
14727 'Test2::Formatter::TAP' => '1.302111',
14728 'Test2::Hub' => '1.302111',
14729 'Test2::Hub::Interceptor'=> '1.302111',
14730 'Test2::Hub::Interceptor::Terminator'=> '1.302111',
14731 'Test2::Hub::Subtest' => '1.302111',
14732 'Test2::IPC' => '1.302111',
14733 'Test2::IPC::Driver' => '1.302111',
14734 'Test2::IPC::Driver::Files'=> '1.302111',
14735 'Test2::Tools::Tiny' => '1.302111',
14736 'Test2::Util' => '1.302111',
14737 'Test2::Util::ExternalMeta'=> '1.302111',
14738 'Test2::Util::Facets2Legacy'=> '1.302111',
14739 'Test2::Util::HashBase' => '1.302111',
14740 'Test2::Util::Trace' => '1.302111',
14741 'Test::Builder' => '1.302111',
14742 'Test::Builder::Formatter'=> '1.302111',
14743 'Test::Builder::Module' => '1.302111',
14744 'Test::Builder::Tester' => '1.302111',
14745 'Test::Builder::Tester::Color'=> '1.302111',
14746 'Test::Builder::TodoDiag'=> '1.302111',
14747 'Test::More' => '1.302111',
14748 'Test::Simple' => '1.302111',
14749 'Test::Tester' => '1.302111',
14750 'Test::Tester::Capture' => '1.302111',
14751 'Test::Tester::CaptureRunner'=> '1.302111',
14752 'Test::Tester::Delegate'=> '1.302111',
14753 'Test::use::ok' => '1.302111',
14754 'Tie::Array' => '1.07',
14755 'Tie::StdHandle' => '4.5',
14756 'Time::HiRes' => '1.9747',
14757 'Time::gmtime' => '1.04',
14758 'Time::localtime' => '1.03',
14759 'Unicode::Collate' => '1.23',
14760 'Unicode::Collate::CJK::Big5'=> '1.23',
14761 'Unicode::Collate::CJK::GB2312'=> '1.23',
14762 'Unicode::Collate::CJK::JISX0208'=> '1.23',
14763 'Unicode::Collate::CJK::Korean'=> '1.23',
14764 'Unicode::Collate::CJK::Pinyin'=> '1.23',
14765 'Unicode::Collate::CJK::Stroke'=> '1.23',
14766 'Unicode::Collate::CJK::Zhuyin'=> '1.23',
14767 'Unicode::Collate::Locale'=> '1.23',
14768 'Unicode::Normalize' => '1.26',
14769 'User::grent' => '1.02',
14770 'User::pwent' => '1.01',
14771 'VMS::DCLsym' => '1.09',
14772 'VMS::Stdio' => '2.44',
14773 'XS::APItest' => '0.93',
14774 'XS::Typemap' => '0.16',
14775 'XSLoader' => '0.28',
14776 'attributes' => '0.32',
14777 'base' => '2.27',
14778 'blib' => '1.07',
14779 'experimental' => '0.017',
14780 'fields' => '2.24',
14781 'ok' => '1.302111',
14782 're' => '0.36',
14783 'sort' => '2.04',
14784 'threads' => '2.19',
14785 'warnings' => '1.38',
78425520
SH
14786 },
14787 removed => {
14788 }
14789 },
a67b31e3
KE
14790 5.027007 => {
14791 delta_from => 5.027006,
14792 changed => {
e4b1fb85
CBW
14793 'App::Cpan' => '1.67',
14794 'B' => '1.73',
14795 'B::Debug' => '1.26',
14796 'B::Deparse' => '1.46',
a67b31e3 14797 'B::Op_private' => '5.027007',
e4b1fb85
CBW
14798 'CPAN' => '2.20',
14799 'CPAN::Distribution' => '2.19',
14800 'CPAN::FTP' => '5.5011',
14801 'CPAN::FirstTime' => '5.5311',
14802 'CPAN::Shell' => '5.5007',
14803 'Carp' => '1.45',
14804 'Carp::Heavy' => '1.45',
14805 'Compress::Raw::Zlib' => '2.076',
a67b31e3 14806 'Config' => '5.027007',
e4b1fb85
CBW
14807 'Cwd' => '3.71',
14808 'Data::Dumper' => '2.169',
14809 'Devel::PPPort' => '3.37',
14810 'Digest::SHA' => '6.00',
14811 'DynaLoader' => '1.45',
14812 'ExtUtils::CBuilder' => '0.280230',
14813 'ExtUtils::CBuilder::Base'=> '0.280230',
14814 'ExtUtils::CBuilder::Platform::Unix'=> '0.280230',
14815 'ExtUtils::CBuilder::Platform::VMS'=> '0.280230',
14816 'ExtUtils::CBuilder::Platform::Windows'=> '0.280230',
14817 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230',
14818 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230',
14819 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230',
14820 'ExtUtils::CBuilder::Platform::aix'=> '0.280230',
14821 'ExtUtils::CBuilder::Platform::android'=> '0.280230',
14822 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230',
14823 'ExtUtils::CBuilder::Platform::darwin'=> '0.280230',
14824 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230',
14825 'ExtUtils::CBuilder::Platform::os2'=> '0.280230',
14826 'ExtUtils::Typemaps' => '3.37',
14827 'File::Fetch' => '0.56',
14828 'File::Spec' => '3.71',
14829 'File::Spec::AmigaOS' => '3.71',
14830 'File::Spec::Cygwin' => '3.71',
14831 'File::Spec::Epoc' => '3.71',
14832 'File::Spec::Functions' => '3.71',
14833 'File::Spec::Mac' => '3.71',
14834 'File::Spec::OS2' => '3.71',
14835 'File::Spec::Unix' => '3.71',
14836 'File::Spec::VMS' => '3.71',
14837 'File::Spec::Win32' => '3.71',
14838 'Filter::Util::Call' => '1.58',
14839 'GDBM_File' => '1.17',
14840 'JSON::PP' => '2.97000',
14841 'JSON::PP::Boolean' => '2.97000',
14842 'Locale::Codes' => '3.55',
14843 'Locale::Codes::Constants'=> '3.55',
14844 'Locale::Codes::Country'=> '3.55',
14845 'Locale::Codes::Country_Codes'=> '3.55',
14846 'Locale::Codes::Country_Retired'=> '3.55',
14847 'Locale::Codes::Currency'=> '3.55',
14848 'Locale::Codes::Currency_Codes'=> '3.55',
14849 'Locale::Codes::Currency_Retired'=> '3.55',
14850 'Locale::Codes::LangExt'=> '3.55',
14851 'Locale::Codes::LangExt_Codes'=> '3.55',
14852 'Locale::Codes::LangExt_Retired'=> '3.55',
14853 'Locale::Codes::LangFam'=> '3.55',
14854 'Locale::Codes::LangFam_Codes'=> '3.55',
14855 'Locale::Codes::LangFam_Retired'=> '3.55',
14856 'Locale::Codes::LangVar'=> '3.55',
14857 'Locale::Codes::LangVar_Codes'=> '3.55',
14858 'Locale::Codes::LangVar_Retired'=> '3.55',
14859 'Locale::Codes::Language'=> '3.55',
14860 'Locale::Codes::Language_Codes'=> '3.55',
14861 'Locale::Codes::Language_Retired'=> '3.55',
14862 'Locale::Codes::Script' => '3.55',
14863 'Locale::Codes::Script_Codes'=> '3.55',
14864 'Locale::Codes::Script_Retired'=> '3.55',
14865 'Locale::Country' => '3.55',
14866 'Locale::Currency' => '3.55',
14867 'Locale::Language' => '3.55',
14868 'Locale::Script' => '3.55',
a67b31e3
KE
14869 'Module::CoreList' => '5.20171220',
14870 'Module::CoreList::TieHashDelta'=> '5.20171220',
14871 'Module::CoreList::Utils'=> '5.20171220',
e4b1fb85
CBW
14872 'Opcode' => '1.42',
14873 'POSIX' => '1.81',
14874 'Pod::Functions' => '1.12',
14875 'Pod::Functions::Functions'=> '1.12',
14876 'Pod::Html' => '1.23',
14877 'Sys::Hostname' => '1.22',
14878 'Test2' => '1.302120',
14879 'Test2::API' => '1.302120',
14880 'Test2::API::Breakage' => '1.302120',
14881 'Test2::API::Context' => '1.302120',
14882 'Test2::API::Instance' => '1.302120',
14883 'Test2::API::Stack' => '1.302120',
14884 'Test2::Event' => '1.302120',
14885 'Test2::Event::Bail' => '1.302120',
14886 'Test2::Event::Diag' => '1.302120',
14887 'Test2::Event::Encoding'=> '1.302120',
14888 'Test2::Event::Exception'=> '1.302120',
14889 'Test2::Event::Fail' => '1.302120',
14890 'Test2::Event::Generic' => '1.302120',
14891 'Test2::Event::Note' => '1.302120',
14892 'Test2::Event::Ok' => '1.302120',
14893 'Test2::Event::Pass' => '1.302120',
14894 'Test2::Event::Plan' => '1.302120',
14895 'Test2::Event::Skip' => '1.302120',
14896 'Test2::Event::Subtest' => '1.302120',
14897 'Test2::Event::TAP::Version'=> '1.302120',
14898 'Test2::Event::Waiting' => '1.302120',
14899 'Test2::EventFacet' => '1.302120',
14900 'Test2::EventFacet::About'=> '1.302120',
14901 'Test2::EventFacet::Amnesty'=> '1.302120',
14902 'Test2::EventFacet::Assert'=> '1.302120',
14903 'Test2::EventFacet::Control'=> '1.302120',
14904 'Test2::EventFacet::Error'=> '1.302120',
14905 'Test2::EventFacet::Info'=> '1.302120',
14906 'Test2::EventFacet::Meta'=> '1.302120',
14907 'Test2::EventFacet::Parent'=> '1.302120',
14908 'Test2::EventFacet::Plan'=> '1.302120',
14909 'Test2::EventFacet::Trace'=> '1.302120',
14910 'Test2::Formatter' => '1.302120',
14911 'Test2::Formatter::TAP' => '1.302120',
14912 'Test2::Hub' => '1.302120',
14913 'Test2::Hub::Interceptor'=> '1.302120',
14914 'Test2::Hub::Interceptor::Terminator'=> '1.302120',
14915 'Test2::Hub::Subtest' => '1.302120',
14916 'Test2::IPC' => '1.302120',
14917 'Test2::IPC::Driver' => '1.302120',
14918 'Test2::IPC::Driver::Files'=> '1.302120',
14919 'Test2::Tools::Tiny' => '1.302120',
14920 'Test2::Util' => '1.302120',
14921 'Test2::Util::ExternalMeta'=> '1.302120',
14922 'Test2::Util::Facets2Legacy'=> '1.302120',
14923 'Test2::Util::HashBase' => '1.302120',
14924 'Test2::Util::Trace' => '1.302120',
14925 'Test::Builder' => '1.302120',
14926 'Test::Builder::Formatter'=> '1.302120',
14927 'Test::Builder::Module' => '1.302120',
14928 'Test::Builder::Tester' => '1.302120',
14929 'Test::Builder::Tester::Color'=> '1.302120',
14930 'Test::Builder::TodoDiag'=> '1.302120',
14931 'Test::More' => '1.302120',
14932 'Test::Simple' => '1.302120',
14933 'Test::Tester' => '1.302120',
14934 'Test::Tester::Capture' => '1.302120',
14935 'Test::Tester::CaptureRunner'=> '1.302120',
14936 'Test::Tester::Delegate'=> '1.302120',
14937 'Test::use::ok' => '1.302120',
14938 'Time::HiRes' => '1.9748',
14939 'Time::Piece' => '1.3203',
14940 'Time::Seconds' => '1.3203',
14941 'Unicode::Collate' => '1.25',
14942 'Unicode::Collate::CJK::Big5'=> '1.25',
14943 'Unicode::Collate::CJK::GB2312'=> '1.25',
14944 'Unicode::Collate::CJK::JISX0208'=> '1.25',
14945 'Unicode::Collate::CJK::Korean'=> '1.25',
14946 'Unicode::Collate::CJK::Pinyin'=> '1.25',
14947 'Unicode::Collate::CJK::Stroke'=> '1.25',
14948 'Unicode::Collate::CJK::Zhuyin'=> '1.25',
14949 'Unicode::Collate::Locale'=> '1.25',
14950 'Unicode::UCD' => '0.69',
14951 'XS::APItest' => '0.94',
14952 'XSLoader' => '0.29',
14953 'arybase' => '0.15',
14954 'autodie::exception' => '2.29001',
14955 'autodie::hints' => '2.29001',
14956 'experimental' => '0.019',
14957 'feature' => '1.50',
14958 'ok' => '1.302120',
14959 'overload' => '1.29',
14960 'threads' => '2.21',
14961 'threads::shared' => '1.58',
14962 'warnings' => '1.39',
a67b31e3
KE
14963 },
14964 removed => {
14965 }
14966 },
946b6ed4
CBW
14967 5.027008 => {
14968 delta_from => 5.027007,
14969 changed => {
48d2ed92
A
14970 'B' => '1.74',
14971 'B::Deparse' => '1.47',
946b6ed4
CBW
14972 'B::Op_private' => '5.027008',
14973 'Config' => '5.027008',
48d2ed92
A
14974 'Cwd' => '3.72',
14975 'Data::Dumper' => '2.170',
14976 'Devel::PPPort' => '3.38',
14977 'Digest::SHA' => '6.01',
14978 'Encode' => '2.94',
14979 'Encode::Alias' => '2.24',
14980 'ExtUtils::Miniperl' => '1.08',
14981 'File::Spec' => '3.72',
14982 'File::Spec::AmigaOS' => '3.72',
14983 'File::Spec::Cygwin' => '3.72',
14984 'File::Spec::Epoc' => '3.72',
14985 'File::Spec::Functions' => '3.72',
14986 'File::Spec::Mac' => '3.72',
14987 'File::Spec::OS2' => '3.72',
14988 'File::Spec::Unix' => '3.72',
14989 'File::Spec::VMS' => '3.72',
14990 'File::Spec::Win32' => '3.72',
14991 'JSON::PP' => '2.97001',
14992 'JSON::PP::Boolean' => '2.97001',
946b6ed4
CBW
14993 'Module::CoreList' => '5.20180120',
14994 'Module::CoreList::TieHashDelta'=> '5.20180120',
14995 'Module::CoreList::Utils'=> '5.20180120',
48d2ed92
A
14996 'Opcode' => '1.43',
14997 'Pod::Functions' => '1.13',
14998 'Pod::Functions::Functions'=> '1.13',
14999 'Pod::Html' => '1.24',
15000 'Pod::Man' => '4.10',
15001 'Pod::ParseLink' => '4.10',
15002 'Pod::Text' => '4.10',
15003 'Pod::Text::Color' => '4.10',
15004 'Pod::Text::Overstrike' => '4.10',
15005 'Pod::Text::Termcap' => '4.10',
15006 'Socket' => '2.027',
15007 'Time::HiRes' => '1.9752',
15008 'Unicode::UCD' => '0.70',
15009 'XS::APItest' => '0.95',
15010 'XSLoader' => '0.30',
15011 'autodie::exception' => '2.29002',
15012 'feature' => '1.51',
15013 'overload' => '1.30',
15014 'utf8' => '1.21',
15015 'warnings' => '1.40',
946b6ed4
CBW
15016 },
15017 removed => {
15018 }
15019 },
3f4fae50
A
15020 5.027009 => {
15021 delta_from => 5.027008,
15022 changed => {
15023 'B::Op_private' => '5.027009',
9862549e
RB
15024 'Carp' => '1.46',
15025 'Carp::Heavy' => '1.46',
3f4fae50 15026 'Config' => '5.027009',
9862549e
RB
15027 'Cwd' => '3.74',
15028 'Devel::PPPort' => '3.39',
15029 'Encode' => '2.96',
15030 'Encode::Unicode' => '2.17',
15031 'Errno' => '1.29',
15032 'ExtUtils::Command' => '7.32',
15033 'ExtUtils::Command::MM' => '7.32',
15034 'ExtUtils::Liblist' => '7.32',
15035 'ExtUtils::Liblist::Kid'=> '7.32',
15036 'ExtUtils::MM' => '7.32',
15037 'ExtUtils::MM_AIX' => '7.32',
15038 'ExtUtils::MM_Any' => '7.32',
15039 'ExtUtils::MM_BeOS' => '7.32',
15040 'ExtUtils::MM_Cygwin' => '7.32',
15041 'ExtUtils::MM_DOS' => '7.32',
15042 'ExtUtils::MM_Darwin' => '7.32',
15043 'ExtUtils::MM_MacOS' => '7.32',
15044 'ExtUtils::MM_NW5' => '7.32',
15045 'ExtUtils::MM_OS2' => '7.32',
15046 'ExtUtils::MM_QNX' => '7.32',
15047 'ExtUtils::MM_UWIN' => '7.32',
15048 'ExtUtils::MM_Unix' => '7.32',
15049 'ExtUtils::MM_VMS' => '7.32',
15050 'ExtUtils::MM_VOS' => '7.32',
15051 'ExtUtils::MM_Win32' => '7.32',
15052 'ExtUtils::MM_Win95' => '7.32',
15053 'ExtUtils::MY' => '7.32',
15054 'ExtUtils::MakeMaker' => '7.32',
15055 'ExtUtils::MakeMaker::Config'=> '7.32',
15056 'ExtUtils::MakeMaker::Locale'=> '7.32',
15057 'ExtUtils::MakeMaker::version'=> '7.32',
15058 'ExtUtils::MakeMaker::version::regex'=> '7.32',
15059 'ExtUtils::Mkbootstrap' => '7.32',
15060 'ExtUtils::Mksymlists' => '7.32',
15061 'ExtUtils::ParseXS' => '3.38',
15062 'ExtUtils::ParseXS::Constants'=> '3.38',
15063 'ExtUtils::ParseXS::CountLines'=> '3.38',
15064 'ExtUtils::ParseXS::Eval'=> '3.38',
15065 'ExtUtils::ParseXS::Utilities'=> '3.38',
15066 'ExtUtils::Typemaps' => '3.38',
15067 'ExtUtils::Typemaps::Cmd'=> '3.38',
15068 'ExtUtils::Typemaps::InputMap'=> '3.38',
15069 'ExtUtils::Typemaps::OutputMap'=> '3.38',
15070 'ExtUtils::Typemaps::Type'=> '3.38',
15071 'ExtUtils::testlib' => '7.32',
15072 'File::Spec' => '3.74',
15073 'File::Spec::AmigaOS' => '3.74',
15074 'File::Spec::Cygwin' => '3.74',
15075 'File::Spec::Epoc' => '3.74',
15076 'File::Spec::Functions' => '3.74',
15077 'File::Spec::Mac' => '3.74',
15078 'File::Spec::OS2' => '3.74',
15079 'File::Spec::Unix' => '3.74',
15080 'File::Spec::VMS' => '3.74',
15081 'File::Spec::Win32' => '3.74',
15082 'IPC::Cmd' => '1.00',
15083 'Math::BigFloat::Trace' => '0.49',
15084 'Math::BigInt::Trace' => '0.49',
3f4fae50 15085 'Module::CoreList' => '5.20180220',
3f4fae50 15086 'Module::CoreList::Utils'=> '5.20180220',
9862549e
RB
15087 'POSIX' => '1.82',
15088 'PerlIO::encoding' => '0.26',
15089 'Storable' => '3.06',
15090 'Storable::Limit' => undef,
15091 'Storable::__Storable__'=> '3.06',
15092 'Test2' => '1.302122',
15093 'Test2::API' => '1.302122',
15094 'Test2::API::Breakage' => '1.302122',
15095 'Test2::API::Context' => '1.302122',
15096 'Test2::API::Instance' => '1.302122',
15097 'Test2::API::Stack' => '1.302122',
15098 'Test2::Event' => '1.302122',
15099 'Test2::Event::Bail' => '1.302122',
15100 'Test2::Event::Diag' => '1.302122',
15101 'Test2::Event::Encoding'=> '1.302122',
15102 'Test2::Event::Exception'=> '1.302122',
15103 'Test2::Event::Fail' => '1.302122',
15104 'Test2::Event::Generic' => '1.302122',
15105 'Test2::Event::Note' => '1.302122',
15106 'Test2::Event::Ok' => '1.302122',
15107 'Test2::Event::Pass' => '1.302122',
15108 'Test2::Event::Plan' => '1.302122',
15109 'Test2::Event::Skip' => '1.302122',
15110 'Test2::Event::Subtest' => '1.302122',
15111 'Test2::Event::TAP::Version'=> '1.302122',
15112 'Test2::Event::Waiting' => '1.302122',
15113 'Test2::EventFacet' => '1.302122',
15114 'Test2::EventFacet::About'=> '1.302122',
15115 'Test2::EventFacet::Amnesty'=> '1.302122',
15116 'Test2::EventFacet::Assert'=> '1.302122',
15117 'Test2::EventFacet::Control'=> '1.302122',
15118 'Test2::EventFacet::Error'=> '1.302122',
15119 'Test2::EventFacet::Info'=> '1.302122',
15120 'Test2::EventFacet::Meta'=> '1.302122',
15121 'Test2::EventFacet::Parent'=> '1.302122',
15122 'Test2::EventFacet::Plan'=> '1.302122',
15123 'Test2::EventFacet::Render'=> '1.302122',
15124 'Test2::EventFacet::Trace'=> '1.302122',
15125 'Test2::Formatter' => '1.302122',
15126 'Test2::Formatter::TAP' => '1.302122',
15127 'Test2::Hub' => '1.302122',
15128 'Test2::Hub::Interceptor'=> '1.302122',
15129 'Test2::Hub::Interceptor::Terminator'=> '1.302122',
15130 'Test2::Hub::Subtest' => '1.302122',
15131 'Test2::IPC' => '1.302122',
15132 'Test2::IPC::Driver' => '1.302122',
15133 'Test2::IPC::Driver::Files'=> '1.302122',
15134 'Test2::Tools::Tiny' => '1.302122',
15135 'Test2::Util' => '1.302122',
15136 'Test2::Util::ExternalMeta'=> '1.302122',
15137 'Test2::Util::Facets2Legacy'=> '1.302122',
15138 'Test2::Util::HashBase' => '1.302122',
15139 'Test2::Util::Trace' => '1.302122',
15140 'Test::Builder' => '1.302122',
15141 'Test::Builder::Formatter'=> '1.302122',
15142 'Test::Builder::Module' => '1.302122',
15143 'Test::Builder::Tester' => '1.302122',
15144 'Test::Builder::Tester::Color'=> '1.302122',
15145 'Test::Builder::TodoDiag'=> '1.302122',
15146 'Test::More' => '1.302122',
15147 'Test::Simple' => '1.302122',
15148 'Test::Tester' => '1.302122',
15149 'Test::Tester::Capture' => '1.302122',
15150 'Test::Tester::CaptureRunner'=> '1.302122',
15151 'Test::Tester::Delegate'=> '1.302122',
15152 'Test::use::ok' => '1.302122',
15153 'Time::HiRes' => '1.9753',
15154 'XS::APItest' => '0.96',
15155 'bigint' => '0.49',
15156 'bignum' => '0.49',
15157 'bigrat' => '0.49',
15158 'encoding' => '2.22',
15159 'if' => '0.0608',
15160 'mro' => '1.22',
15161 'ok' => '1.302122',
15162 'threads' => '2.22',
15163 'warnings' => '1.41',
3f4fae50
A
15164 },
15165 removed => {
9862549e 15166 'Module::CoreList::TieHashDelta'=> 1,
3f4fae50
A
15167 }
15168 },
4f01496f
S
15169 5.027010 => {
15170 delta_from => 5.027009,
15171 changed => {
27ee818c
TR
15172 'App::Prove' => '3.42',
15173 'App::Prove::State' => '3.42',
15174 'App::Prove::State::Result'=> '3.42',
15175 'App::Prove::State::Result::Test'=> '3.42',
15176 'B::Deparse' => '1.48',
15177 'B::Op_private' => '5.027010',
4f01496f
S
15178 'Carp' => '1.49',
15179 'Carp::Heavy' => '1.49',
15180 'Config' => '5.02701',
27ee818c
TR
15181 'Encode' => '2.97',
15182 'ExtUtils::Command' => '7.34',
15183 'ExtUtils::Command::MM' => '7.34',
15184 'ExtUtils::Liblist' => '7.34',
15185 'ExtUtils::Liblist::Kid'=> '7.34',
15186 'ExtUtils::MM' => '7.34',
15187 'ExtUtils::MM_AIX' => '7.34',
15188 'ExtUtils::MM_Any' => '7.34',
15189 'ExtUtils::MM_BeOS' => '7.34',
15190 'ExtUtils::MM_Cygwin' => '7.34',
15191 'ExtUtils::MM_DOS' => '7.34',
15192 'ExtUtils::MM_Darwin' => '7.34',
15193 'ExtUtils::MM_MacOS' => '7.34',
15194 'ExtUtils::MM_NW5' => '7.34',
15195 'ExtUtils::MM_OS2' => '7.34',
15196 'ExtUtils::MM_QNX' => '7.34',
15197 'ExtUtils::MM_UWIN' => '7.34',
15198 'ExtUtils::MM_Unix' => '7.34',
15199 'ExtUtils::MM_VMS' => '7.34',
15200 'ExtUtils::MM_VOS' => '7.34',
15201 'ExtUtils::MM_Win32' => '7.34',
15202 'ExtUtils::MM_Win95' => '7.34',
15203 'ExtUtils::MY' => '7.34',
15204 'ExtUtils::MakeMaker' => '7.34',
15205 'ExtUtils::MakeMaker::Config'=> '7.34',
15206 'ExtUtils::MakeMaker::Locale'=> '7.34',
15207 'ExtUtils::MakeMaker::version'=> '7.34',
15208 'ExtUtils::MakeMaker::version::regex'=> '7.34',
15209 'ExtUtils::Mkbootstrap' => '7.34',
15210 'ExtUtils::Mksymlists' => '7.34',
15211 'ExtUtils::ParseXS' => '3.39',
15212 'ExtUtils::ParseXS::Constants'=> '3.39',
15213 'ExtUtils::ParseXS::CountLines'=> '3.39',
15214 'ExtUtils::ParseXS::Eval'=> '3.39',
15215 'ExtUtils::ParseXS::Utilities'=> '3.39',
15216 'ExtUtils::testlib' => '7.34',
15217 'File::Glob' => '1.31',
15218 'I18N::Langinfo' => '0.16',
15219 'List::Util' => '1.50',
15220 'List::Util::XS' => '1.50',
15221 'Locale::Codes' => '3.56',
15222 'Locale::Codes::Constants'=> '3.56',
15223 'Locale::Codes::Country'=> '3.56',
15224 'Locale::Codes::Country_Codes'=> '3.56',
15225 'Locale::Codes::Country_Retired'=> '3.56',
15226 'Locale::Codes::Currency'=> '3.56',
15227 'Locale::Codes::Currency_Codes'=> '3.56',
15228 'Locale::Codes::Currency_Retired'=> '3.56',
15229 'Locale::Codes::LangExt'=> '3.56',
15230 'Locale::Codes::LangExt_Codes'=> '3.56',
15231 'Locale::Codes::LangExt_Retired'=> '3.56',
15232 'Locale::Codes::LangFam'=> '3.56',
15233 'Locale::Codes::LangFam_Codes'=> '3.56',
15234 'Locale::Codes::LangFam_Retired'=> '3.56',
15235 'Locale::Codes::LangVar'=> '3.56',
15236 'Locale::Codes::LangVar_Codes'=> '3.56',
15237 'Locale::Codes::LangVar_Retired'=> '3.56',
15238 'Locale::Codes::Language'=> '3.56',
15239 'Locale::Codes::Language_Codes'=> '3.56',
15240 'Locale::Codes::Language_Retired'=> '3.56',
15241 'Locale::Codes::Script' => '3.56',
15242 'Locale::Codes::Script_Codes'=> '3.56',
15243 'Locale::Codes::Script_Retired'=> '3.56',
15244 'Locale::Country' => '3.56',
15245 'Locale::Currency' => '3.56',
15246 'Locale::Language' => '3.56',
15247 'Locale::Script' => '3.56',
15248 'Module::CoreList' => '5.20180221',
15249 'Module::CoreList::Utils'=> '5.20180221',
15250 'POSIX' => '1.83',
15251 'Scalar::Util' => '1.50',
15252 'Sub::Util' => '1.50',
15253 'TAP::Base' => '3.42',
15254 'TAP::Formatter::Base' => '3.42',
15255 'TAP::Formatter::Color' => '3.42',
15256 'TAP::Formatter::Console'=> '3.42',
15257 'TAP::Formatter::Console::ParallelSession'=> '3.42',
15258 'TAP::Formatter::Console::Session'=> '3.42',
15259 'TAP::Formatter::File' => '3.42',
15260 'TAP::Formatter::File::Session'=> '3.42',
15261 'TAP::Formatter::Session'=> '3.42',
15262 'TAP::Harness' => '3.42',
15263 'TAP::Harness::Env' => '3.42',
15264 'TAP::Object' => '3.42',
15265 'TAP::Parser' => '3.42',
15266 'TAP::Parser::Aggregator'=> '3.42',
15267 'TAP::Parser::Grammar' => '3.42',
15268 'TAP::Parser::Iterator' => '3.42',
15269 'TAP::Parser::Iterator::Array'=> '3.42',
15270 'TAP::Parser::Iterator::Process'=> '3.42',
15271 'TAP::Parser::Iterator::Stream'=> '3.42',
15272 'TAP::Parser::IteratorFactory'=> '3.42',
15273 'TAP::Parser::Multiplexer'=> '3.42',
15274 'TAP::Parser::Result' => '3.42',
15275 'TAP::Parser::Result::Bailout'=> '3.42',
15276 'TAP::Parser::Result::Comment'=> '3.42',
15277 'TAP::Parser::Result::Plan'=> '3.42',
15278 'TAP::Parser::Result::Pragma'=> '3.42',
15279 'TAP::Parser::Result::Test'=> '3.42',
15280 'TAP::Parser::Result::Unknown'=> '3.42',
15281 'TAP::Parser::Result::Version'=> '3.42',
15282 'TAP::Parser::Result::YAML'=> '3.42',
15283 'TAP::Parser::ResultFactory'=> '3.42',
15284 'TAP::Parser::Scheduler'=> '3.42',
15285 'TAP::Parser::Scheduler::Job'=> '3.42',
15286 'TAP::Parser::Scheduler::Spinner'=> '3.42',
15287 'TAP::Parser::Source' => '3.42',
15288 'TAP::Parser::SourceHandler'=> '3.42',
15289 'TAP::Parser::SourceHandler::Executable'=> '3.42',
15290 'TAP::Parser::SourceHandler::File'=> '3.42',
15291 'TAP::Parser::SourceHandler::Handle'=> '3.42',
15292 'TAP::Parser::SourceHandler::Perl'=> '3.42',
15293 'TAP::Parser::SourceHandler::RawTAP'=> '3.42',
15294 'TAP::Parser::YAMLish::Reader'=> '3.42',
15295 'TAP::Parser::YAMLish::Writer'=> '3.42',
15296 'Test2' => '1.302133',
15297 'Test2::API' => '1.302133',
15298 'Test2::API::Breakage' => '1.302133',
15299 'Test2::API::Context' => '1.302133',
15300 'Test2::API::Instance' => '1.302133',
15301 'Test2::API::Stack' => '1.302133',
15302 'Test2::Event' => '1.302133',
15303 'Test2::Event::Bail' => '1.302133',
15304 'Test2::Event::Diag' => '1.302133',
15305 'Test2::Event::Encoding'=> '1.302133',
15306 'Test2::Event::Exception'=> '1.302133',
15307 'Test2::Event::Fail' => '1.302133',
15308 'Test2::Event::Generic' => '1.302133',
15309 'Test2::Event::Note' => '1.302133',
15310 'Test2::Event::Ok' => '1.302133',
15311 'Test2::Event::Pass' => '1.302133',
15312 'Test2::Event::Plan' => '1.302133',
15313 'Test2::Event::Skip' => '1.302133',
15314 'Test2::Event::Subtest' => '1.302133',
15315 'Test2::Event::TAP::Version'=> '1.302133',
15316 'Test2::Event::V2' => '1.302133',
15317 'Test2::Event::Waiting' => '1.302133',
15318 'Test2::EventFacet' => '1.302133',
15319 'Test2::EventFacet::About'=> '1.302133',
15320 'Test2::EventFacet::Amnesty'=> '1.302133',
15321 'Test2::EventFacet::Assert'=> '1.302133',
15322 'Test2::EventFacet::Control'=> '1.302133',
15323 'Test2::EventFacet::Error'=> '1.302133',
15324 'Test2::EventFacet::Hub'=> '1.302133',
15325 'Test2::EventFacet::Info'=> '1.302133',
15326 'Test2::EventFacet::Meta'=> '1.302133',
15327 'Test2::EventFacet::Parent'=> '1.302133',
15328 'Test2::EventFacet::Plan'=> '1.302133',
15329 'Test2::EventFacet::Render'=> '1.302133',
15330 'Test2::EventFacet::Trace'=> '1.302133',
15331 'Test2::Formatter' => '1.302133',
15332 'Test2::Formatter::TAP' => '1.302133',
15333 'Test2::Hub' => '1.302133',
15334 'Test2::Hub::Interceptor'=> '1.302133',
15335 'Test2::Hub::Interceptor::Terminator'=> '1.302133',
15336 'Test2::Hub::Subtest' => '1.302133',
15337 'Test2::IPC' => '1.302133',
15338 'Test2::IPC::Driver' => '1.302133',
15339 'Test2::IPC::Driver::Files'=> '1.302133',
15340 'Test2::Tools::Tiny' => '1.302133',
15341 'Test2::Util' => '1.302133',
15342 'Test2::Util::ExternalMeta'=> '1.302133',
15343 'Test2::Util::Facets2Legacy'=> '1.302133',
15344 'Test2::Util::HashBase' => '1.302133',
15345 'Test2::Util::Trace' => '1.302133',
15346 'Test::Builder' => '1.302133',
15347 'Test::Builder::Formatter'=> '1.302133',
15348 'Test::Builder::Module' => '1.302133',
15349 'Test::Builder::Tester' => '1.302133',
15350 'Test::Builder::Tester::Color'=> '1.302133',
15351 'Test::Builder::TodoDiag'=> '1.302133',
15352 'Test::Harness' => '3.42',
15353 'Test::More' => '1.302133',
15354 'Test::Simple' => '1.302133',
15355 'Test::Tester' => '1.302133',
15356 'Test::Tester::Capture' => '1.302133',
15357 'Test::Tester::CaptureRunner'=> '1.302133',
15358 'Test::Tester::Delegate'=> '1.302133',
15359 'Test::use::ok' => '1.302133',
15360 'Time::HiRes' => '1.9757',
15361 'Time::Piece' => '1.3204',
15362 'Time::Seconds' => '1.3204',
15363 'attributes' => '0.33',
15364 'ok' => '1.302133',
15365 'warnings' => '1.42',
4f01496f
S
15366 },
15367 removed => {
15368 }
15369 },
26db1972
TR
15370 5.027011 => {
15371 delta_from => 5.027010,
15372 changed => {
15373 },
15374 removed => {
15375 }
15376 },
cda59a31 15377);
8f2fd531 15378
2a21e867
NB
15379sub is_core
15380{
766780a5 15381 shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
2a21e867 15382 my $module = shift;
766780a5
AP
15383 my $module_version = @_ > 0 ? shift : undef;
15384 my $perl_version = @_ > 0 ? shift : $];
2a21e867
NB
15385
15386 my $first_release = first_release($module);
15387
15388 return 0 if !defined($first_release) || $first_release > $perl_version;
15389
15390 my $final_release = removed_from($module);
15391
cf549c1a 15392 return 0 if defined($final_release) && $perl_version >= $final_release;
2a21e867
NB
15393
15394 # If a minimum version of the module was specified:
717ace6e
NB
15395 # Step through all perl releases ($prn)
15396 # so we can find what version of the module
2a21e867
NB
15397 # was included in the specified version of perl.
15398 # On the way if we pass the required module version, we can
15399 # short-circuit and return true
15400 if (defined($module_version)) {
a0f8d0d7
DIM
15401 my $module_version_object = eval { version->parse($module_version) };
15402 if (!defined($module_version_object)) {
15403 (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/;
15404 die $err;
15405 }
717ace6e
NB
15406 # The Perl releases aren't a linear sequence, but a tree. We need to build the path
15407 # of releases from 5 to the specified release, and follow the module's version(s)
15408 # along that path.
15409 my @releases = ($perl_version);
15410 my $rel = $perl_version;
15411 while (defined($rel)) {
4e70aa16 15412 # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
1e2bda49 15413 my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
4e70aa16 15414 $rel = $this_delta->{delta_from};
717ace6e
NB
15415 unshift(@releases, $rel) if defined($rel);
15416 }
2a21e867 15417 RELEASE:
717ace6e 15418 foreach my $prn (@releases) {
6af6e599 15419 next RELEASE if $prn < $first_release;
2a21e867
NB
15420 last RELEASE if $prn > $perl_version;
15421 next unless defined(my $next_module_version
15422 = $delta{$prn}->{changed}->{$module});
a0f8d0d7 15423 return 1 if eval { version->parse($next_module_version) >= $module_version_object };
2a21e867
NB
15424 }
15425 return 0;
15426 }
15427
15428 return 1 if !defined($final_release);
15429
15430 return $perl_version <= $final_release;
15431}
15432
8bbcf42b 15433%version = _undelta(\%delta);
a272bf38 15434
a762e054 15435%deprecated = (
5ff416ff
MD
15436 5.011 => {
15437 changed => { map { $_ => 1 } qw/
15438 Class::ISA
15439 Pod::Plainer
15440 Shell
15441 Switch
15442 /},
15443 },
15444 5.011001 => { delta_from => 5.011 },
15445 5.011002 => { delta_from => 5.011001 },
15446 5.011003 => { delta_from => 5.011002 },
15447 5.011004 => { delta_from => 5.011003 },
15448 5.011005 => { delta_from => 5.011004 },
15449
15450 5.012 => { delta_from => 5.011005 },
15451 5.012001 => { delta_from => 5.012 },
15452 5.012002 => { delta_from => 5.012001 },
15453 5.012003 => { delta_from => 5.012002 },
15454 5.012004 => { delta_from => 5.012003 },
15455 5.012005 => { delta_from => 5.012004 },
15456
15457 5.013 => { delta_from => 5.012005 },
30570232 15458 5.013001 => {
5ff416ff
MD
15459 delta_from => 5.013,
15460 removed => { map { $_ => 1 } qw/
15461 Class::ISA
15462 Pod::Plainer
15463 Switch
15464 /},
15465 },
15466 5.013002 => { delta_from => 5.013001 },
15467 5.013003 => { delta_from => 5.013002 },
15468 5.013004 => { delta_from => 5.013003 },
15469 5.013005 => { delta_from => 5.013004 },
15470 5.013006 => { delta_from => 5.013005 },
15471 5.013007 => { delta_from => 5.013006 },
15472 5.013008 => { delta_from => 5.013007 },
15473 5.013009 => { delta_from => 5.013008 },
15474 5.01301 => { delta_from => 5.013009 },
15475 5.013011 => { delta_from => 5.01301 },
15476
15477 5.014 => { delta_from => 5.013011 },
15478 5.014001 => { delta_from => 5.014 },
15479 5.014002 => { delta_from => 5.014001 },
15480 5.014003 => { delta_from => 5.014002 },
15481 5.014004 => { delta_from => 5.014003 },
15482
15483 5.015 => {
15484 delta_from => 5.014004,
15485 removed => { Shell => 1 },
15486 },
15487 5.015001 => { delta_from => 5.015 },
15488 5.015002 => { delta_from => 5.015001 },
15489 5.015003 => { delta_from => 5.015002 },
15490 5.015004 => { delta_from => 5.015003 },
15491 5.015005 => { delta_from => 5.015004 },
15492 5.015006 => { delta_from => 5.015005 },
15493 5.015007 => { delta_from => 5.015006 },
15494 5.015008 => { delta_from => 5.015007 },
15495 5.015009 => { delta_from => 5.015008 },
15496
15497 5.016 => { delta_from => 5.015009 },
15498 5.016001 => { delta_from => 5.016 },
15499 5.016002 => { delta_from => 5.016001 },
15500 5.016003 => { delta_from => 5.016002 },
15501
15502 5.017 => { delta_from => 5.016003 },
15503 5.017001 => { delta_from => 5.017 },
15504 5.017002 => { delta_from => 5.017001 },
15505 5.017003 => { delta_from => 5.017002 },
15506 5.017004 => { delta_from => 5.017003 },
15507 5.017005 => { delta_from => 5.017004 },
15508 5.017006 => { delta_from => 5.017005 },
15509 5.017007 => { delta_from => 5.017006 },
dd4b1c75 15510 5.017008 => {
5ff416ff
MD
15511 delta_from => 5.017007,
15512 changed => { 'Pod::LaTeX' => 1 },
299c740c
CBW
15513 },
15514 5.017009 => {
5ff416ff
MD
15515 delta_from => 5.017008,
15516 changed => { map { $_ => 1 } qw/
15517 Archive::Extract
15518 B::Lint
15519 B::Lint::Debug
15520 CPANPLUS
15521 CPANPLUS::Backend
15522 CPANPLUS::Backend::RV
15523 CPANPLUS::Config
15524 CPANPLUS::Config::HomeEnv
15525 CPANPLUS::Configure
15526 CPANPLUS::Configure::Setup
15527 CPANPLUS::Dist
15528 CPANPLUS::Dist::Autobundle
15529 CPANPLUS::Dist::Base
15530 CPANPLUS::Dist::Build
15531 CPANPLUS::Dist::Build::Constants
15532 CPANPLUS::Dist::MM
15533 CPANPLUS::Dist::Sample
15534 CPANPLUS::Error
15535 CPANPLUS::Internals
15536 CPANPLUS::Internals::Constants
15537 CPANPLUS::Internals::Constants::Report
15538 CPANPLUS::Internals::Extract
15539 CPANPLUS::Internals::Fetch
15540 CPANPLUS::Internals::Report
15541 CPANPLUS::Internals::Search
15542 CPANPLUS::Internals::Source
15543 CPANPLUS::Internals::Source::Memory
15544 CPANPLUS::Internals::Source::SQLite
15545 CPANPLUS::Internals::Source::SQLite::Tie
15546 CPANPLUS::Internals::Utils
15547 CPANPLUS::Internals::Utils::Autoflush
15548 CPANPLUS::Module
15549 CPANPLUS::Module::Author
15550 CPANPLUS::Module::Author::Fake
15551 CPANPLUS::Module::Checksums
15552 CPANPLUS::Module::Fake
15553 CPANPLUS::Module::Signature
15554 CPANPLUS::Selfupdate
15555 CPANPLUS::Shell
15556 CPANPLUS::Shell::Classic
15557 CPANPLUS::Shell::Default
15558 CPANPLUS::Shell::Default::Plugins::CustomSource
15559 CPANPLUS::Shell::Default::Plugins::Remote
15560 CPANPLUS::Shell::Default::Plugins::Source
15561 Devel::InnerPackage
230125ea 15562 File::CheckTree
5ff416ff
MD
15563 Log::Message
15564 Log::Message::Config
15565 Log::Message::Handlers
15566 Log::Message::Item
15567 Log::Message::Simple
15568 Module::Pluggable
15569 Module::Pluggable::Object
15570 Object::Accessor
15571 Term::UI
15572 Term::UI::History
230125ea 15573 Text::Soundex
5ff416ff
MD
15574 /},
15575 },
15576 5.01701 => { delta_from => 5.017009 },
15577 5.017011 => { delta_from => 5.01701 },
5ff416ff 15578
be59b6aa 15579 5.018 => { delta_from => 5.017011 },
ba4dd7ef
RS
15580 5.018001 => {
15581 delta_from => 5.018,
15582 changed => {
15583 },
15584 removed => {
15585 }
15586 },
6c2a7b42
CBW
15587 5.018002 => {
15588 delta_from => 5.018001,
15589 changed => {
15590 },
15591 removed => {
15592 }
15593 },
b616d4df
RS
15594 5.018003 => {
15595 delta_from => 5.018,
15596 changed => {
15597 },
15598 removed => {
15599 }
15600 },
15601 5.018004 => {
15602 delta_from => 5.018,
15603 changed => {
15604 },
15605 removed => {
15606 }
15607 },
5ff416ff
MD
15608
15609 5.019 => {
15610 delta_from => 5.018,
93980676 15611 changed => { 'Module::Build' => 1 },
5ff416ff
MD
15612 removed => { map { $_ => 1 } qw/
15613 Archive::Extract
15614 B::Lint
15615 B::Lint::Debug
15616 CPANPLUS
15617 CPANPLUS::Backend
15618 CPANPLUS::Backend::RV
15619 CPANPLUS::Config
15620 CPANPLUS::Config::HomeEnv
15621 CPANPLUS::Configure
15622 CPANPLUS::Configure::Setup
15623 CPANPLUS::Dist
15624 CPANPLUS::Dist::Autobundle
15625 CPANPLUS::Dist::Base
15626 CPANPLUS::Dist::Build
15627 CPANPLUS::Dist::Build::Constants
15628 CPANPLUS::Dist::MM
15629 CPANPLUS::Dist::Sample
15630 CPANPLUS::Error
15631 CPANPLUS::Internals
15632 CPANPLUS::Internals::Constants
15633 CPANPLUS::Internals::Constants::Report
15634 CPANPLUS::Internals::Extract
15635 CPANPLUS::Internals::Fetch
15636 CPANPLUS::Internals::Report
15637 CPANPLUS::Internals::Search
15638 CPANPLUS::Internals::Source
15639 CPANPLUS::Internals::Source::Memory
15640 CPANPLUS::Internals::Source::SQLite
15641 CPANPLUS::Internals::Source::SQLite::Tie
15642 CPANPLUS::Internals::Utils
15643 CPANPLUS::Internals::Utils::Autoflush
15644 CPANPLUS::Module
15645 CPANPLUS::Module::Author
15646 CPANPLUS::Module::Author::Fake
15647 CPANPLUS::Module::Checksums
15648 CPANPLUS::Module::Fake
15649 CPANPLUS::Module::Signature
15650 CPANPLUS::Selfupdate
15651 CPANPLUS::Shell
15652 CPANPLUS::Shell::Classic
15653 CPANPLUS::Shell::Default
15654 CPANPLUS::Shell::Default::Plugins::CustomSource
15655 CPANPLUS::Shell::Default::Plugins::Remote
15656 CPANPLUS::Shell::Default::Plugins::Source
15657 Devel::InnerPackage
230125ea 15658 File::CheckTree
5ff416ff
MD
15659 Log::Message
15660 Log::Message::Config
15661 Log::Message::Handlers
15662 Log::Message::Item
15663 Log::Message::Simple
15664 Module::Pluggable
15665 Module::Pluggable::Object
15666 Object::Accessor
15667 Pod::LaTeX
15668 Term::UI
15669 Term::UI::History
230125ea 15670 Text::Soundex
5ff416ff 15671 /}
38a400f2 15672 },
2f4a2205
DG
15673 5.019001 => {
15674 delta_from => 5.019,
15675 changed => {
15676 },
15677 removed => {
15678 }
15679 },
d04adc20 15680 5.019002 => {
1f0ad552 15681 delta_from => 5.019001,
d04adc20 15682 changed => {
a7e68be8
AP
15683 },
15684 removed => {
15685 }
15686 },
15687 5.019003 => {
15688 delta_from => 5.019002,
15689 changed => {
d04adc20
DG
15690 },
15691 removed => {
15692 }
15693 },
37287258
SH
15694 5.019004 => {
15695 delta_from => 5.019003,
15696 changed => {
62de23d1
SH
15697 'Module::Build::Base' => '1',
15698 'Module::Build::Compat' => '1',
15699 'Module::Build::Config' => '1',
15700 'Module::Build::ConfigData'=> '1',
15701 'Module::Build::Cookbook'=> '1',
15702 'Module::Build::Dumper' => '1',
15703 'Module::Build::ModuleInfo'=> '1',
15704 'Module::Build::Notes' => '1',
15705 'Module::Build::PPMMaker'=> '1',
15706 'Module::Build::Platform::Default'=> '1',
15707 'Module::Build::Platform::MacOS'=> '1',
15708 'Module::Build::Platform::Unix'=> '1',
15709 'Module::Build::Platform::VMS'=> '1',
15710 'Module::Build::Platform::VOS'=> '1',
15711 'Module::Build::Platform::Windows'=> '1',
15712 'Module::Build::Platform::aix'=> '1',
15713 'Module::Build::Platform::cygwin'=> '1',
15714 'Module::Build::Platform::darwin'=> '1',
15715 'Module::Build::Platform::os2'=> '1',
15716 'Module::Build::PodParser'=> '1',
15717 'Module::Build::Version'=> '1',
15718 'Module::Build::YAML' => '1',
15719 'inc::latest' => '1',
37287258
SH
15720 },
15721 removed => {
15722 }
15723 },
fa5fbb39
SH
15724 5.019005 => {
15725 delta_from => 5.019004,
15726 changed => {
15727 },
15728 removed => {
15729 }
15730 },
494bd897
SH
15731 5.019006 => {
15732 delta_from => 5.019005,
15733 changed => {
1f2fd626 15734 'Package::Constants' => '1',
494bd897
SH
15735 },
15736 removed => {
15737 }
15738 },
b3f76264
CBW
15739 5.019007 => {
15740 delta_from => 5.019006,
15741 changed => {
95eb96f3
A
15742 'CGI' => '1',
15743 'CGI::Apache' => '1',
15744 'CGI::Carp' => '1',
15745 'CGI::Cookie' => '1',
15746 'CGI::Fast' => '1',
15747 'CGI::Pretty' => '1',
15748 'CGI::Push' => '1',
15749 'CGI::Switch' => '1',
15750 'CGI::Util' => '1',
b3f76264
CBW
15751 },
15752 removed => {
15753 }
15754 },
365f8c3e
CBW
15755 5.019008 => {
15756 delta_from => 5.019007,
15757 changed => {
15758 },
15759 removed => {
15760 }
15761 },
a27b5f52
CBW
15762 5.019009 => {
15763 delta_from => 5.019008,
15764 changed => {
15765 },
15766 removed => {
15767 }
15768 },
ce42a9e6 15769 5.01901 => {
baca4554
TC
15770 delta_from => 5.019009,
15771 changed => {
15772 },
15773 removed => {
15774 }
15775 },
b776cec1
AC
15776 5.019011 => {
15777 delta_from => 5.019010,
15778 changed => {
15779 },
15780 removed => {
15781 }
15782 },
1b6c17c2 15783 5.020000 => {
48cbd9dd
SH
15784 delta_from => 5.019011,
15785 changed => {
15786 },
15787 removed => {
15788 }
15789 },
75325e51 15790 5.021000 => {
4f2cd4f7 15791 delta_from => 5.020000,
75325e51
RS
15792 changed => {
15793 },
15794 removed => {
be59b6aa
AP
15795 'CGI' => 1,
15796 'CGI::Apache' => 1,
15797 'CGI::Carp' => 1,
15798 'CGI::Cookie' => 1,
15799 'CGI::Fast' => 1,
15800 'CGI::Pretty' => 1,
15801 'CGI::Push' => 1,
15802 'CGI::Switch' => 1,
15803 'CGI::Util' => 1,
15804 'Module::Build' => 1,
15805 'Module::Build::Base' => 1,
15806 'Module::Build::Compat' => 1,
15807 'Module::Build::Config' => 1,
15808 'Module::Build::ConfigData'=> 1,
15809 'Module::Build::Cookbook'=> 1,
15810 'Module::Build::Dumper' => 1,
15811 'Module::Build::ModuleInfo'=> 1,
15812 'Module::Build::Notes' => 1,
15813 'Module::Build::PPMMaker'=> 1,
15814 'Module::Build::Platform::Default'=> 1,
15815 'Module::Build::Platform::MacOS'=> 1,
15816 'Module::Build::Platform::Unix'=> 1,
15817 'Module::Build::Platform::VMS'=> 1,
15818 'Module::Build::Platform::VOS'=> 1,
15819 'Module::Build::Platform::Windows'=> 1,
15820 'Module::Build::Platform::aix'=> 1,
15821 'Module::Build::Platform::cygwin'=> 1,
15822 'Module::Build::Platform::darwin'=> 1,
15823 'Module::Build::Platform::os2'=> 1,
15824 'Module::Build::PodParser'=> 1,
15825 'Module::Build::Version'=> 1,
15826 'Module::Build::YAML' => 1,
15827 'Package::Constants' => 1,
be59b6aa 15828 'inc::latest' => 1,
75325e51
RS
15829 }
15830 },
5a534470 15831 5.021001 => {
be59b6aa 15832 delta_from => 5.021000,
5a534470
RS
15833 changed => {
15834 },
15835 removed => {
15836 }
15837 },
2901561d
MH
15838 5.021002 => {
15839 delta_from => 5.021001,
15840 changed => {
15841 },
15842 removed => {
15843 }
15844 },
633c51bc
A
15845 5.021003 => {
15846 delta_from => 5.021002,
15847 changed => {
15848 },
15849 removed => {
15850 }
15851 },
14cc2657
SH
15852 5.020001 => {
15853 delta_from => 5.020000,
5c851aa1
PM
15854 changed => {
15855 },
15856 removed => {
15857 }
15858 },
14cc2657
SH
15859 5.021004 => {
15860 delta_from => 5.021003,
1c6aa017
SH
15861 changed => {
15862 },
15863 removed => {
15864 }
15865 },
84d03adf
SH
15866 5.021005 => {
15867 delta_from => 5.021004,
15868 changed => {
15869 },
15870 removed => {
15871 }
15872 },
20f5d8f8
CBW
15873 5.021006 => {
15874 delta_from => 5.021005,
15875 changed => {
15876 },
15877 removed => {
15878 }
15879 },
3f572b05
CBW
15880 5.021007 => {
15881 delta_from => 5.021006,
15882 changed => {
15883 },
15884 removed => {
15885 }
15886 },
c379aaf4
MM
15887 5.021008 => {
15888 delta_from => 5.021007,
15889 changed => {
15890 },
15891 removed => {
15892 }
15893 },
8ad047ea
SH
15894 5.020002 => {
15895 delta_from => 5.020001,
15896 changed => {
15897 },
15898 removed => {
15899 }
15900 },
2e3866c3
MH
15901 5.021009 => {
15902 delta_from => 5.021008,
15903 changed => {
15904 },
15905 removed => {
15906 }
15907 },
ff4e8df2
S
15908 5.021010 => {
15909 delta_from => 5.021009,
15910 changed => {
15911 },
15912 removed => {
15913 }
15914 },
53902397
SH
15915 5.021011 => {
15916 delta_from => 5.02101,
15917 changed => {
15918 },
15919 removed => {
15920 }
15921 },
bff00388 15922 5.022000 => {
6bb5549b
SH
15923 delta_from => 5.021011,
15924 changed => {
15925 },
15926 removed => {
15927 }
15928 },
19aba073
RS
15929 5.023000 => {
15930 delta_from => 5.022000,
15931 changed => {
15932 },
15933 removed => {
15934 }
15935 },
b9e156a2
RS
15936 5.023001 => {
15937 delta_from => 5.023000,
15938 changed => {
15939 },
15940 removed => {
15941 }
15942 },
923c264e
MH
15943 5.023002 => {
15944 delta_from => 5.023001,
15945 changed => {
15946 },
15947 removed => {
15948 }
15949 },
2490a830
SH
15950 5.020003 => {
15951 delta_from => 5.020002,
15952 changed => {
15953 },
15954 removed => {
15955 }
15956 },
c0bc7731
MH
15957 5.023003 => {
15958 delta_from => 5.023002,
15959 changed => {
15960 },
15961 removed => {
15962 }
15963 },
2d9b5f10
PM
15964 5.023004 => {
15965 delta_from => 5.023003,
15966 changed => {
15967 },
15968 removed => {
15969 }
15970 },
7792a6f5
SH
15971 5.023005 => {
15972 delta_from => 5.023004,
15973 changed => {
83cfc1da
SH
15974 },
15975 removed => {
15976 }
15977 },
15978 5.022001 => {
15979 delta_from => 5.022,
15980 changed => {
7792a6f5
SH
15981 },
15982 removed => {
15983 }
15984 },
7c294235
A
15985 5.023006 => {
15986 delta_from => 5.023005,
15987 changed => {
15988 },
15989 removed => {
15990 }
15991 },
5d4cc497
DG
15992 5.023007 => {
15993 delta_from => 5.023006,
15994 changed => {
15995 },
15996 removed => {
15997 }
15998 },
b5fa05a4
S
15999 5.023008 => {
16000 delta_from => 5.023007,
16001 changed => {
16002 },
16003 removed => {
16004 }
16005 },
0515d31c
S
16006 5.023009 => {
16007 delta_from => 5.023008,
16008 changed => {
16009 },
16010 removed => {
16011 }
16012 },
e42cacf8
SH
16013 5.022002 => {
16014 delta_from => 5.022001,
16015 changed => {
16016 },
16017 removed => {
16018 }
16019 },
de1edec7 16020 5.024000 => {
d1fa969e
A
16021 delta_from => 5.023009,
16022 changed => {
16023 },
16024 removed => {
16025 }
16026 },
c800d8b3
RS
16027 5.025000 => {
16028 delta_from => 5.024,
16029 changed => {
16030 },
16031 removed => {
16032 }
16033 },
4170737e 16034 5.025001 => {
f7a1e8ff 16035 delta_from => 5.025,
4170737e
RS
16036 changed => {
16037 },
16038 removed => {
16039 }
16040 },
a55ca2cb
FC
16041 5.025002 => {
16042 delta_from => 5.025001,
16043 changed => {
16044 },
16045 removed => {
16046 }
16047 },
c338e234
MH
16048 5.025003 => {
16049 delta_from => 5.025002,
16050 changed => {
16051 },
16052 removed => {
16053 }
16054 },
dec2b171
SH
16055 5.025004 => {
16056 delta_from => 5.025003,
16057 changed => {
16058 },
16059 removed => {
16060 }
16061 },
9b3afcbd
CBW
16062 5.025005 => {
16063 delta_from => 5.025004,
16064 changed => {
16065 },
16066 removed => {
16067 }
16068 },
bc46539a
SL
16069 5.025006 => {
16070 delta_from => 5.025005,
16071 changed => {
16072 },
16073 removed => {
16074 }
16075 },
935d7564
AC
16076 5.025007 => {
16077 delta_from => 5.025006,
16078 changed => {
16079 },
16080 removed => {
16081 }
16082 },
79ca97c0
S
16083 5.025008 => {
16084 delta_from => 5.025007,
16085 changed => {
16086 },
16087 removed => {
16088 }
16089 },
d202f2b8
SH
16090 5.022003 => {
16091 delta_from => 5.022002,
16092 changed => {
16093 },
16094 removed => {
16095 }
16096 },
16097 5.024001 => {
16098 delta_from => 5.024000,
16099 changed => {
16100 },
16101 removed => {
16102 }
16103 },
d4151a23
S
16104 5.025009 => {
16105 delta_from => 5.025008,
16106 changed => {
16107 },
16108 removed => {
16109 }
16110 },
f5294d12
A
16111 5.025010 => {
16112 delta_from => 5.025009,
16113 changed => {
16114 },
16115 removed => {
16116 }
16117 },
b25fc2a6
DM
16118 5.025011 => {
16119 delta_from => 5.025010,
16120 changed => {
16121 },
16122 removed => {
16123 }
16124 },
1798a06e 16125 5.025012 => {
fbe3f407
S
16126 delta_from => 5.025011,
16127 changed => {
16128 },
16129 removed => {
16130 }
16131 },
60454717
S
16132 5.026000 => {
16133 delta_from => 5.025012,
16134 changed => {
16135 },
16136 removed => {
16137 }
16138 },
753bd946 16139 5.027000 => {
c8e60329 16140 delta_from => 5.026,
753bd946
S
16141 changed => {
16142 },
16143 removed => {
16144 }
16145 },
bb5b17cd
DM
16146 5.027001 => {
16147 delta_from => 5.027,
16148 changed => {
16149 },
16150 removed => {
16151 }
16152 },
e029cc95
SH
16153 5.022004 => {
16154 delta_from => 5.022003,
16155 changed => {
16156 },
16157 removed => {
16158 }
16159 },
da0817c4
SH
16160 5.024002 => {
16161 delta_from => 5.024001,
16162 changed => {
16163 },
16164 removed => {
16165 }
16166 },
0db26723
EH
16167 5.027002 => {
16168 delta_from => 5.027001,
16169 changed => {
16170 },
16171 removed => {
16172 }
16173 },
56c35cf6
AC
16174 5.027003 => {
16175 delta_from => 5.027002,
16176 changed => {
e94c2221 16177 'B::Debug' => '1',
56c35cf6
AC
16178 },
16179 removed => {
16180 }
16181 },
9f9332db
MH
16182 5.027004 => {
16183 delta_from => 5.027003,
16184 changed => {
16185 },
16186 removed => {
16187 }
16188 },
0ba9031a
SH
16189 5.024003 => {
16190 delta_from => 5.024002,
16191 changed => {
16192 },
16193 removed => {
16194 }
16195 },
16196 5.026001 => {
16197 delta_from => 5.026000,
16198 changed => {
16199 },
16200 removed => {
16201 }
16202 },
1967e407
JSA
16203 5.027005 => {
16204 delta_from => 5.027004,
16205 changed => {
16206 },
16207 removed => {
16208 }
16209 },
78425520
SH
16210 5.027006 => {
16211 delta_from => 5.027005,
16212 changed => {
16213 },
16214 removed => {
16215 }
16216 },
a67b31e3
KE
16217 5.027007 => {
16218 delta_from => 5.027006,
16219 changed => {
16220 },
16221 removed => {
16222 }
16223 },
946b6ed4
CBW
16224 5.027008 => {
16225 delta_from => 5.027007,
16226 changed => {
16227 },
16228 removed => {
16229 }
16230 },
3f4fae50
A
16231 5.027009 => {
16232 delta_from => 5.027008,
16233 changed => {
16234 },
16235 removed => {
16236 }
16237 },
4f01496f
S
16238 5.027010 => {
16239 delta_from => 5.027009,
16240 changed => {
16241 },
16242 removed => {
16243 }
16244 },
26db1972
TR
16245 5.027011 => {
16246 delta_from => 5.027010,
16247 changed => {
16248 },
16249 removed => {
16250 }
16251 },
a762e054
DG
16252);
16253
8bbcf42b 16254%deprecated = _undelta(\%deprecated);
5ff416ff 16255
29cab1c7 16256%upstream = (
65f8b4e7 16257 'App::Cpan' => 'cpan',
a4729c0f
DG
16258 'App::Prove' => 'cpan',
16259 'App::Prove::State' => 'cpan',
16260 'App::Prove::State::Result'=> 'cpan',
16261 'App::Prove::State::Result::Test'=> 'cpan',
29cab1c7
NC
16262 'Archive::Tar' => 'cpan',
16263 'Archive::Tar::Constant'=> 'cpan',
16264 'Archive::Tar::File' => 'cpan',
29cab1c7
NC
16265 'AutoLoader' => 'cpan',
16266 'AutoSplit' => 'cpan',
0530d763 16267 'B::Debug' => 'cpan',
24081a3a
JV
16268 'CPAN' => 'cpan',
16269 'CPAN::Author' => 'cpan',
16270 'CPAN::Bundle' => 'cpan',
16271 'CPAN::CacheMgr' => 'cpan',
16272 'CPAN::Complete' => 'cpan',
16273 'CPAN::Debug' => 'cpan',
16274 'CPAN::DeferredCode' => 'cpan',
16275 'CPAN::Distribution' => 'cpan',
16276 'CPAN::Distroprefs' => 'cpan',
16277 'CPAN::Distrostatus' => 'cpan',
16278 'CPAN::Exception::RecursiveDependency'=> 'cpan',
16279 'CPAN::Exception::blocked_urllist'=> 'cpan',
16280 'CPAN::Exception::yaml_not_installed'=> 'cpan',
2f183b41 16281 'CPAN::Exception::yaml_process_error'=> 'cpan',
24081a3a
JV
16282 'CPAN::FTP' => 'cpan',
16283 'CPAN::FTP::netrc' => 'cpan',
16284 'CPAN::FirstTime' => 'cpan',
e0698539
JV
16285 'CPAN::HTTP::Client' => 'cpan',
16286 'CPAN::HTTP::Credentials'=> 'cpan',
24081a3a
JV
16287 'CPAN::HandleConfig' => 'cpan',
16288 'CPAN::Index' => 'cpan',
16289 'CPAN::InfoObj' => 'cpan',
16290 'CPAN::Kwalify' => 'cpan',
16291 'CPAN::LWP::UserAgent' => 'cpan',
c552c5b5
AB
16292 'CPAN::Meta' => 'cpan',
16293 'CPAN::Meta::Converter' => 'cpan',
16294 'CPAN::Meta::Feature' => 'cpan',
16295 'CPAN::Meta::History' => 'cpan',
46e58890 16296 'CPAN::Meta::Merge' => 'cpan',
c552c5b5 16297 'CPAN::Meta::Prereqs' => 'cpan',
b240fc0f 16298 'CPAN::Meta::Requirements'=> 'cpan',
c552c5b5
AB
16299 'CPAN::Meta::Spec' => 'cpan',
16300 'CPAN::Meta::Validator' => 'cpan',
e0698539 16301 'CPAN::Meta::YAML' => 'cpan',
65f8b4e7 16302 'CPAN::Mirrors' => 'cpan',
24081a3a
JV
16303 'CPAN::Module' => 'cpan',
16304 'CPAN::Nox' => 'cpan',
77dc754d
SH
16305 'CPAN::Plugin' => 'cpan',
16306 'CPAN::Plugin::Specfile'=> 'cpan',
24081a3a
JV
16307 'CPAN::Prompt' => 'cpan',
16308 'CPAN::Queue' => 'cpan',
16309 'CPAN::Shell' => 'cpan',
16310 'CPAN::Tarzip' => 'cpan',
16311 'CPAN::URL' => 'cpan',
16312 'CPAN::Version' => 'cpan',
7529c15c
FR
16313 'Compress::Raw::Bzip2' => 'cpan',
16314 'Compress::Raw::Zlib' => 'cpan',
979b9961 16315 'Compress::Zlib' => 'cpan',
52f6865c 16316 'Config::Perl::V' => 'cpan',
f50587e0 16317 'DB_File' => 'cpan',
0530d763
SH
16318 'Digest' => 'cpan',
16319 'Digest::MD5' => 'cpan',
a4729c0f 16320 'Digest::SHA' => 'cpan',
0530d763
SH
16321 'Digest::base' => 'cpan',
16322 'Digest::file' => 'cpan',
67dbc274
Z
16323 'Encode' => 'cpan',
16324 'Encode::Alias' => 'cpan',
16325 'Encode::Byte' => 'cpan',
16326 'Encode::CJKConstants' => 'cpan',
16327 'Encode::CN' => 'cpan',
16328 'Encode::CN::HZ' => 'cpan',
16329 'Encode::Config' => 'cpan',
16330 'Encode::EBCDIC' => 'cpan',
16331 'Encode::Encoder' => 'cpan',
16332 'Encode::Encoding' => 'cpan',
16333 'Encode::GSM0338' => 'cpan',
16334 'Encode::Guess' => 'cpan',
16335 'Encode::JP' => 'cpan',
16336 'Encode::JP::H2Z' => 'cpan',
16337 'Encode::JP::JIS7' => 'cpan',
16338 'Encode::KR' => 'cpan',
16339 'Encode::KR::2022_KR' => 'cpan',
16340 'Encode::MIME::Header' => 'cpan',
16341 'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
16342 'Encode::MIME::Name' => 'cpan',
16343 'Encode::Symbol' => 'cpan',
16344 'Encode::TW' => 'cpan',
16345 'Encode::Unicode' => 'cpan',
16346 'Encode::Unicode::UTF7' => 'cpan',
46e58890 16347 'ExtUtils::Command' => 'cpan',
62de23d1 16348 'ExtUtils::Command::MM' => 'cpan',
19c1ec11
SH
16349 'ExtUtils::Constant' => 'cpan',
16350 'ExtUtils::Constant::Base'=> 'cpan',
16351 'ExtUtils::Constant::ProxySubs'=> 'cpan',
16352 'ExtUtils::Constant::Utils'=> 'cpan',
16353 'ExtUtils::Constant::XS'=> 'cpan',
46e58890
PM
16354 'ExtUtils::Install' => 'cpan',
16355 'ExtUtils::Installed' => 'cpan',
62de23d1
SH
16356 'ExtUtils::Liblist' => 'cpan',
16357 'ExtUtils::Liblist::Kid'=> 'cpan',
16358 'ExtUtils::MM' => 'cpan',
16359 'ExtUtils::MM_AIX' => 'cpan',
16360 'ExtUtils::MM_Any' => 'cpan',
16361 'ExtUtils::MM_BeOS' => 'cpan',
16362 'ExtUtils::MM_Cygwin' => 'cpan',
16363 'ExtUtils::MM_DOS' => 'cpan',
16364 'ExtUtils::MM_Darwin' => 'cpan',
16365 'ExtUtils::MM_MacOS' => 'cpan',
16366 'ExtUtils::MM_NW5' => 'cpan',
16367 'ExtUtils::MM_OS2' => 'cpan',
16368 'ExtUtils::MM_QNX' => 'cpan',
16369 'ExtUtils::MM_UWIN' => 'cpan',
16370 'ExtUtils::MM_Unix' => 'cpan',
16371 'ExtUtils::MM_VMS' => 'cpan',
16372 'ExtUtils::MM_VOS' => 'cpan',
16373 'ExtUtils::MM_Win32' => 'cpan',
16374 'ExtUtils::MM_Win95' => 'cpan',
16375 'ExtUtils::MY' => 'cpan',
16376 'ExtUtils::MakeMaker' => 'cpan',
16377 'ExtUtils::MakeMaker::Config'=> 'cpan',
20f5d8f8
CBW
16378 'ExtUtils::MakeMaker::Locale'=> 'cpan',
16379 'ExtUtils::MakeMaker::version'=> 'cpan',
16380 'ExtUtils::MakeMaker::version::regex'=> 'cpan',
46e58890 16381 'ExtUtils::Manifest' => 'cpan',
62de23d1
SH
16382 'ExtUtils::Mkbootstrap' => 'cpan',
16383 'ExtUtils::Mksymlists' => 'cpan',
46e58890 16384 'ExtUtils::Packlist' => 'cpan',
62de23d1 16385 'ExtUtils::testlib' => 'cpan',
29cab1c7
NC
16386 'Fatal' => 'cpan',
16387 'File::Fetch' => 'cpan',
979b9961 16388 'File::GlobMapper' => 'cpan',
19c1ec11 16389 'File::Path' => 'cpan',
68a91acb 16390 'File::Temp' => 'cpan',
f50587e0 16391 'Filter::Util::Call' => 'cpan',
29cab1c7 16392 'Getopt::Long' => 'cpan',
e0698539 16393 'HTTP::Tiny' => 'cpan',
979b9961
JV
16394 'IO::Compress::Adapter::Bzip2'=> 'cpan',
16395 'IO::Compress::Adapter::Deflate'=> 'cpan',
16396 'IO::Compress::Adapter::Identity'=> 'cpan',
16397 'IO::Compress::Base' => 'cpan',
16398 'IO::Compress::Base::Common'=> 'cpan',
16399 'IO::Compress::Bzip2' => 'cpan',
16400 'IO::Compress::Deflate' => 'cpan',
16401 'IO::Compress::Gzip' => 'cpan',
16402 'IO::Compress::Gzip::Constants'=> 'cpan',
16403 'IO::Compress::RawDeflate'=> 'cpan',
16404 'IO::Compress::Zip' => 'cpan',
16405 'IO::Compress::Zip::Constants'=> 'cpan',
16406 'IO::Compress::Zlib::Constants'=> 'cpan',
16407 'IO::Compress::Zlib::Extra'=> 'cpan',
5a39b45b 16408 'IO::Socket::IP' => 'cpan',
979b9961
JV
16409 'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
16410 'IO::Uncompress::Adapter::Identity'=> 'cpan',
16411 'IO::Uncompress::Adapter::Inflate'=> 'cpan',
16412 'IO::Uncompress::AnyInflate'=> 'cpan',
16413 'IO::Uncompress::AnyUncompress'=> 'cpan',
16414 'IO::Uncompress::Base' => 'cpan',
16415 'IO::Uncompress::Bunzip2'=> 'cpan',
16416 'IO::Uncompress::Gunzip'=> 'cpan',
16417 'IO::Uncompress::Inflate'=> 'cpan',
16418 'IO::Uncompress::RawInflate'=> 'cpan',
16419 'IO::Uncompress::Unzip' => 'cpan',
19c1ec11 16420 'IO::Zlib' => 'cpan',
29cab1c7
NC
16421 'IPC::Cmd' => 'cpan',
16422 'IPC::Msg' => 'cpan',
16423 'IPC::Semaphore' => 'cpan',
16424 'IPC::SharedMem' => 'cpan',
16425 'IPC::SysV' => 'cpan',
e0698539
JV
16426 'JSON::PP' => 'cpan',
16427 'JSON::PP::Boolean' => 'cpan',
45492fbf 16428 'List::Util' => 'cpan',
45492fbf 16429 'List::Util::XS' => 'cpan',
2db8ee47 16430 'Locale::Codes' => 'cpan',
48b66e80 16431 'Locale::Codes::Constants'=> 'cpan',
2db8ee47 16432 'Locale::Codes::Country'=> 'cpan',
48b66e80 16433 'Locale::Codes::Country_Codes'=> 'cpan',
9cdfa110 16434 'Locale::Codes::Country_Retired'=> 'cpan',
2db8ee47 16435 'Locale::Codes::Currency'=> 'cpan',
48b66e80 16436 'Locale::Codes::Currency_Codes'=> 'cpan',
9cdfa110 16437 'Locale::Codes::Currency_Retired'=> 'cpan',
48b66e80
Z
16438 'Locale::Codes::LangExt'=> 'cpan',
16439 'Locale::Codes::LangExt_Codes'=> 'cpan',
9cdfa110
DR
16440 'Locale::Codes::LangExt_Retired'=> 'cpan',
16441 'Locale::Codes::LangFam'=> 'cpan',
16442 'Locale::Codes::LangFam_Codes'=> 'cpan',
16443 'Locale::Codes::LangFam_Retired'=> 'cpan',
48b66e80
Z
16444 'Locale::Codes::LangVar'=> 'cpan',
16445 'Locale::Codes::LangVar_Codes'=> 'cpan',
9cdfa110 16446 'Locale::Codes::LangVar_Retired'=> 'cpan',
2db8ee47 16447 'Locale::Codes::Language'=> 'cpan',
48b66e80 16448 'Locale::Codes::Language_Codes'=> 'cpan',
9cdfa110 16449 'Locale::Codes::Language_Retired'=> 'cpan',
2db8ee47 16450 'Locale::Codes::Script' => 'cpan',
48b66e80 16451 'Locale::Codes::Script_Codes'=> 'cpan',
9cdfa110 16452 'Locale::Codes::Script_Retired'=> 'cpan',
2db8ee47
RS
16453 'Locale::Country' => 'cpan',
16454 'Locale::Currency' => 'cpan',
16455 'Locale::Language' => 'cpan',
a6abef0d 16456 'Locale::Maketext::Simple'=> 'cpan',
2db8ee47 16457 'Locale::Script' => 'cpan',
3ec75686
LB
16458 'MIME::Base64' => 'cpan',
16459 'MIME::QuotedPrint' => 'cpan',
52513e61 16460 'Math::BigFloat' => 'cpan',
210f4ae1 16461 'Math::BigFloat::Trace' => 'cpan',
52513e61
PM
16462 'Math::BigInt' => 'cpan',
16463 'Math::BigInt::Calc' => 'cpan',
16464 'Math::BigInt::CalcEmu' => 'cpan',
16465 'Math::BigInt::FastCalc'=> 'cpan',
79ca97c0 16466 'Math::BigInt::Lib' => 'cpan',
210f4ae1 16467 'Math::BigInt::Trace' => 'cpan',
52513e61 16468 'Math::BigRat' => 'cpan',
29cab1c7
NC
16469 'Math::Complex' => 'cpan',
16470 'Math::Trig' => 'cpan',
7de25fd5
TM
16471 'Memoize' => 'cpan',
16472 'Memoize::AnyDBM_File' => 'cpan',
16473 'Memoize::Expire' => 'cpan',
16474 'Memoize::ExpireFile' => 'cpan',
16475 'Memoize::ExpireTest' => 'cpan',
16476 'Memoize::NDBM_File' => 'cpan',
16477 'Memoize::SDBM_File' => 'cpan',
16478 'Memoize::Storable' => 'cpan',
29cab1c7
NC
16479 'Module::Load' => 'cpan',
16480 'Module::Load::Conditional'=> 'cpan',
16481 'Module::Loaded' => 'cpan',
e0698539 16482 'Module::Metadata' => 'cpan',
29cab1c7 16483 'NEXT' => 'cpan',
91c842ce
SH
16484 'Net::Cmd' => 'cpan',
16485 'Net::Config' => 'cpan',
16486 'Net::Domain' => 'cpan',
16487 'Net::FTP' => 'cpan',
16488 'Net::FTP::A' => 'cpan',
16489 'Net::FTP::E' => 'cpan',
16490 'Net::FTP::I' => 'cpan',
16491 'Net::FTP::L' => 'cpan',
16492 'Net::FTP::dataconn' => 'cpan',
16493 'Net::NNTP' => 'cpan',
16494 'Net::Netrc' => 'cpan',
16495 'Net::POP3' => 'cpan',
91c842ce
SH
16496 'Net::SMTP' => 'cpan',
16497 'Net::Time' => 'cpan',
29cab1c7
NC
16498 'Params::Check' => 'cpan',
16499 'Parse::CPAN::Meta' => 'cpan',
e0698539 16500 'Perl::OSType' => 'cpan',
19c1ec11 16501 'PerlIO::via::QuotedPrint'=> 'cpan',
f50587e0 16502 'Pod::Checker' => 'cpan',
19c1ec11 16503 'Pod::Escapes' => 'cpan',
f50587e0
MM
16504 'Pod::Find' => 'cpan',
16505 'Pod::InputObjects' => 'cpan',
29cab1c7
NC
16506 'Pod::Man' => 'cpan',
16507 'Pod::ParseLink' => 'cpan',
f50587e0
MM
16508 'Pod::ParseUtils' => 'cpan',
16509 'Pod::Parser' => 'cpan',
16510 'Pod::Perldoc' => 'cpan',
16511 'Pod::Perldoc::BaseTo' => 'cpan',
16512 'Pod::Perldoc::GetOptsOO'=> 'cpan',
16513 'Pod::Perldoc::ToANSI' => 'cpan',
16514 'Pod::Perldoc::ToChecker'=> 'cpan',
16515 'Pod::Perldoc::ToMan' => 'cpan',
16516 'Pod::Perldoc::ToNroff' => 'cpan',
16517 'Pod::Perldoc::ToPod' => 'cpan',
16518 'Pod::Perldoc::ToRtf' => 'cpan',
16519 'Pod::Perldoc::ToTerm' => 'cpan',
16520 'Pod::Perldoc::ToText' => 'cpan',
16521 'Pod::Perldoc::ToTk' => 'cpan',
16522 'Pod::Perldoc::ToXml' => 'cpan',
16523 'Pod::PlainText' => 'cpan',
16524 'Pod::Select' => 'cpan',
979b9961
JV
16525 'Pod::Simple' => 'cpan',
16526 'Pod::Simple::BlackBox' => 'cpan',
16527 'Pod::Simple::Checker' => 'cpan',
16528 'Pod::Simple::Debug' => 'cpan',
16529 'Pod::Simple::DumpAsText'=> 'cpan',
16530 'Pod::Simple::DumpAsXML'=> 'cpan',
16531 'Pod::Simple::HTML' => 'cpan',
16532 'Pod::Simple::HTMLBatch'=> 'cpan',
16533 'Pod::Simple::HTMLLegacy'=> 'cpan',
16534 'Pod::Simple::LinkSection'=> 'cpan',
16535 'Pod::Simple::Methody' => 'cpan',
16536 'Pod::Simple::Progress' => 'cpan',
16537 'Pod::Simple::PullParser'=> 'cpan',
16538 'Pod::Simple::PullParserEndToken'=> 'cpan',
16539 'Pod::Simple::PullParserStartToken'=> 'cpan',
16540 'Pod::Simple::PullParserTextToken'=> 'cpan',
16541 'Pod::Simple::PullParserToken'=> 'cpan',
16542 'Pod::Simple::RTF' => 'cpan',
16543 'Pod::Simple::Search' => 'cpan',
16544 'Pod::Simple::SimpleTree'=> 'cpan',
16545 'Pod::Simple::Text' => 'cpan',
16546 'Pod::Simple::TextContent'=> 'cpan',
16547 'Pod::Simple::TiedOutFH'=> 'cpan',
16548 'Pod::Simple::Transcode'=> 'cpan',
16549 'Pod::Simple::TranscodeDumb'=> 'cpan',
16550 'Pod::Simple::TranscodeSmart'=> 'cpan',
16551 'Pod::Simple::XHTML' => 'cpan',
16552 'Pod::Simple::XMLOutStream'=> 'cpan',
29cab1c7
NC
16553 'Pod::Text' => 'cpan',
16554 'Pod::Text::Color' => 'cpan',
16555 'Pod::Text::Overstrike' => 'cpan',
16556 'Pod::Text::Termcap' => 'cpan',
f50587e0 16557 'Pod::Usage' => 'cpan',
45492fbf 16558 'Scalar::Util' => 'cpan',
9cdfa110 16559 'Socket' => 'cpan',
50e7b15e 16560 'Sub::Util' => 'cpan',
a47a8f3c 16561 'Sys::Syslog' => 'cpan',
48b66e80 16562 'Sys::Syslog::Win32' => 'cpan',
a4729c0f
DG
16563 'TAP::Base' => 'cpan',
16564 'TAP::Formatter::Base' => 'cpan',
16565 'TAP::Formatter::Color' => 'cpan',
16566 'TAP::Formatter::Console'=> 'cpan',
16567 'TAP::Formatter::Console::ParallelSession'=> 'cpan',
16568 'TAP::Formatter::Console::Session'=> 'cpan',
16569 'TAP::Formatter::File' => 'cpan',
16570 'TAP::Formatter::File::Session'=> 'cpan',
16571 'TAP::Formatter::Session'=> 'cpan',
16572 'TAP::Harness' => 'cpan',
19c1ec11 16573 'TAP::Harness::Env' => 'cpan',
a4729c0f
DG
16574 'TAP::Object' => 'cpan',
16575 'TAP::Parser' => 'cpan',
16576 'TAP::Parser::Aggregator'=> 'cpan',
16577 'TAP::Parser::Grammar' => 'cpan',
16578 'TAP::Parser::Iterator' => 'cpan',
16579 'TAP::Parser::Iterator::Array'=> 'cpan',
16580 'TAP::Parser::Iterator::Process'=> 'cpan',
16581 'TAP::Parser::Iterator::Stream'=> 'cpan',
16582 'TAP::Parser::IteratorFactory'=> 'cpan',
16583 'TAP::Parser::Multiplexer'=> 'cpan',
16584 'TAP::Parser::Result' => 'cpan',
16585 'TAP::Parser::Result::Bailout'=> 'cpan',
16586 'TAP::Parser::Result::Comment'=> 'cpan',
16587 'TAP::Parser::Result::Plan'=> 'cpan',
16588 'TAP::Parser::Result::Pragma'=> 'cpan',
16589 'TAP::Parser::Result::Test'=> 'cpan',
16590 'TAP::Parser::Result::Unknown'=> 'cpan',
16591 'TAP::Parser::Result::Version'=> 'cpan',
16592 'TAP::Parser::Result::YAML'=> 'cpan',
16593 'TAP::Parser::ResultFactory'=> 'cpan',
16594 'TAP::Parser::Scheduler'=> 'cpan',
16595 'TAP::Parser::Scheduler::Job'=> 'cpan',
16596 'TAP::Parser::Scheduler::Spinner'=> 'cpan',
16597 'TAP::Parser::Source' => 'cpan',
16598 'TAP::Parser::SourceHandler'=> 'cpan',
16599 'TAP::Parser::SourceHandler::Executable'=> 'cpan',
16600 'TAP::Parser::SourceHandler::File'=> 'cpan',
16601 'TAP::Parser::SourceHandler::Handle'=> 'cpan',
16602 'TAP::Parser::SourceHandler::Perl'=> 'cpan',
16603 'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
a4729c0f
DG
16604 'TAP::Parser::YAMLish::Reader'=> 'cpan',
16605 'TAP::Parser::YAMLish::Writer'=> 'cpan',
29cab1c7 16606 'Term::ANSIColor' => 'cpan',
19c1ec11 16607 'Term::Cap' => 'cpan',
f7a1e8ff
S
16608 'Test2' => 'cpan',
16609 'Test2::API' => 'cpan',
16610 'Test2::API::Breakage' => 'cpan',
16611 'Test2::API::Context' => 'cpan',
16612 'Test2::API::Instance' => 'cpan',
16613 'Test2::API::Stack' => 'cpan',
16614 'Test2::Event' => 'cpan',
16615 'Test2::Event::Bail' => 'cpan',
16616 'Test2::Event::Diag' => 'cpan',
79ca97c0 16617 'Test2::Event::Encoding'=> 'cpan',
f7a1e8ff 16618 'Test2::Event::Exception'=> 'cpan',
0b2e8509 16619 'Test2::Event::Fail' => 'cpan',
7984aa21 16620 'Test2::Event::Generic' => 'cpan',
f7a1e8ff
S
16621 'Test2::Event::Note' => 'cpan',
16622 'Test2::Event::Ok' => 'cpan',
0b2e8509 16623 'Test2::Event::Pass' => 'cpan',
f7a1e8ff
S
16624 'Test2::Event::Plan' => 'cpan',
16625 'Test2::Event::Skip' => 'cpan',
16626 'Test2::Event::Subtest' => 'cpan',
79ca97c0 16627 'Test2::Event::TAP::Version'=> 'cpan',
27ee818c 16628 'Test2::Event::V2' => 'cpan',
f7a1e8ff 16629 'Test2::Event::Waiting' => 'cpan',
0b2e8509
SH
16630 'Test2::EventFacet' => 'cpan',
16631 'Test2::EventFacet::About'=> 'cpan',
16632 'Test2::EventFacet::Amnesty'=> 'cpan',
16633 'Test2::EventFacet::Assert'=> 'cpan',
16634 'Test2::EventFacet::Control'=> 'cpan',
16635 'Test2::EventFacet::Error'=> 'cpan',
27ee818c 16636 'Test2::EventFacet::Hub'=> 'cpan',
0b2e8509
SH
16637 'Test2::EventFacet::Info'=> 'cpan',
16638 'Test2::EventFacet::Meta'=> 'cpan',
16639 'Test2::EventFacet::Parent'=> 'cpan',
16640 'Test2::EventFacet::Plan'=> 'cpan',
9862549e 16641 'Test2::EventFacet::Render'=> 'cpan',
0b2e8509 16642 'Test2::EventFacet::Trace'=> 'cpan',
f7a1e8ff
S
16643 'Test2::Formatter' => 'cpan',
16644 'Test2::Formatter::TAP' => 'cpan',
16645 'Test2::Hub' => 'cpan',
16646 'Test2::Hub::Interceptor'=> 'cpan',
16647 'Test2::Hub::Interceptor::Terminator'=> 'cpan',
16648 'Test2::Hub::Subtest' => 'cpan',
16649 'Test2::IPC' => 'cpan',
16650 'Test2::IPC::Driver' => 'cpan',
16651 'Test2::IPC::Driver::Files'=> 'cpan',
79ca97c0 16652 'Test2::Tools::Tiny' => 'cpan',
f7a1e8ff
S
16653 'Test2::Util' => 'cpan',
16654 'Test2::Util::ExternalMeta'=> 'cpan',
0b2e8509 16655 'Test2::Util::Facets2Legacy'=> 'cpan',
f7a1e8ff
S
16656 'Test2::Util::HashBase' => 'cpan',
16657 'Test2::Util::Trace' => 'cpan',
979b9961 16658 'Test::Builder' => 'cpan',
f7a1e8ff 16659 'Test::Builder::Formatter'=> 'cpan',
77dc754d 16660 'Test::Builder::IO::Scalar'=> 'cpan',
979b9961
JV
16661 'Test::Builder::Module' => 'cpan',
16662 'Test::Builder::Tester' => 'cpan',
16663 'Test::Builder::Tester::Color'=> 'cpan',
f7a1e8ff 16664 'Test::Builder::TodoDiag'=> 'cpan',
a4729c0f 16665 'Test::Harness' => 'cpan',
979b9961
JV
16666 'Test::More' => 'cpan',
16667 'Test::Simple' => 'cpan',
20f5d8f8
CBW
16668 'Test::Tester' => 'cpan',
16669 'Test::Tester::Capture' => 'cpan',
50ab518c
MH
16670 'Test::Tester::CaptureRunner'=> 'cpan',
16671 'Test::Tester::Delegate'=> 'cpan',
20f5d8f8 16672 'Test::use::ok' => 'cpan',
e46b3c7d 16673 'Text::Balanced' => 'cpan',
19c1ec11 16674 'Text::ParseWords' => 'cpan',
29cab1c7
NC
16675 'Text::Tabs' => 'cpan',
16676 'Text::Wrap' => 'cpan',
29cab1c7 16677 'Tie::RefHash' => 'cpan',
e0698539 16678 'Time::Local' => 'cpan',
19c1ec11
SH
16679 'Time::Piece' => 'cpan',
16680 'Time::Seconds' => 'cpan',
62de23d1
SH
16681 'Unicode::Collate' => 'cpan',
16682 'Unicode::Collate::CJK::Big5'=> 'cpan',
16683 'Unicode::Collate::CJK::GB2312'=> 'cpan',
16684 'Unicode::Collate::CJK::JISX0208'=> 'cpan',
16685 'Unicode::Collate::CJK::Korean'=> 'cpan',
16686 'Unicode::Collate::CJK::Pinyin'=> 'cpan',
16687 'Unicode::Collate::CJK::Stroke'=> 'cpan',
16688 'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
16689 'Unicode::Collate::Locale'=> 'cpan',
a6abef0d 16690 'Win32' => 'cpan',
979b9961 16691 'Win32API::File' => 'cpan',
489c35bb 16692 'Win32API::File::inc::ExtUtils::Myconst2perl'=> 'cpan',
29cab1c7 16693 'autodie' => 'cpan',
04c0d500
MH
16694 'autodie::Scope::Guard' => 'cpan',
16695 'autodie::Scope::GuardStack'=> 'cpan',
bffade09 16696 'autodie::Util' => 'cpan',
29cab1c7
NC
16697 'autodie::exception' => 'cpan',
16698 'autodie::exception::system'=> 'cpan',
781ea95a 16699 'autodie::hints' => 'cpan',
2f4a2205 16700 'autodie::skip' => 'cpan',
210f4ae1
SH
16701 'bigint' => 'cpan',
16702 'bignum' => 'cpan',
16703 'bigrat' => 'cpan',
67dbc274 16704 'encoding' => 'cpan',
70152776 16705 'experimental' => 'cpan',
20f5d8f8 16706 'ok' => 'cpan',
19c1ec11 16707 'parent' => 'cpan',
e46b3c7d 16708 'perlfaq' => 'cpan',
a27b5f52
CBW
16709 'version' => 'cpan',
16710 'version::regex' => 'cpan',
29cab1c7
NC
16711);
16712
16713%bug_tracker = (
65f8b4e7 16714 'App::Cpan' => undef,
29cab1c7
NC
16715 'App::Prove' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16716 'App::Prove::State' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16717 'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
16718 'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
29cab1c7
NC
16719 'Archive::Tar' => undef,
16720 'Archive::Tar::Constant'=> undef,
16721 'Archive::Tar::File' => undef,
29cab1c7 16722 'B::Debug' => undef,
29cab1c7
NC
16723 'CPAN' => undef,
16724 'CPAN::Author' => undef,
16725 'CPAN::Bundle' => undef,
16726 'CPAN::CacheMgr' => undef,
16727 'CPAN::Complete' => undef,
16728 'CPAN::Debug' => undef,
16729 'CPAN::DeferredCode' => undef,
16730 'CPAN::Distribution' => undef,
16731 'CPAN::Distroprefs' => undef,
16732 'CPAN::Distrostatus' => undef,
16733 'CPAN::Exception::RecursiveDependency'=> undef,
16734 'CPAN::Exception::blocked_urllist'=> undef,
16735 'CPAN::Exception::yaml_not_installed'=> undef,
2f183b41 16736 'CPAN::Exception::yaml_process_error'=> undef,
29cab1c7
NC
16737 'CPAN::FTP' => undef,
16738 'CPAN::FTP::netrc' => undef,
16739 'CPAN::FirstTime' => undef,
e0698539
JV
16740 'CPAN::HTTP::Client' => undef,
16741 'CPAN::HTTP::Credentials'=> undef,
29cab1c7
NC
16742 'CPAN::HandleConfig' => undef,
16743 'CPAN::Index' => undef,
16744 'CPAN::InfoObj' => undef,
16745 'CPAN::Kwalify' => undef,
16746 'CPAN::LWP::UserAgent' => undef,
62de23d1
SH
16747 'CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
16748 'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
16749 'CPAN::Meta::Feature' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
16750 'CPAN::Meta::History' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
46e58890 16751 'CPAN::Meta::Merge' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
62de23d1 16752 'CPAN::Meta::Prereqs' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
b733cacc 16753 'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
62de23d1
SH
16754 'CPAN::Meta::Spec' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
16755 'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
77dc754d 16756 'CPAN::Meta::YAML' => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
65f8b4e7 16757 'CPAN::Mirrors' => undef,
29cab1c7
NC
16758 'CPAN::Module' => undef,
16759 'CPAN::Nox' => undef,
77dc754d
SH
16760 'CPAN::Plugin' => undef,
16761 'CPAN::Plugin::Specfile'=> undef,
29cab1c7
NC
16762 'CPAN::Prompt' => undef,
16763 'CPAN::Queue' => undef,
16764 'CPAN::Shell' => undef,
16765 'CPAN::Tarzip' => undef,
16766 'CPAN::URL' => undef,
16767 'CPAN::Version' => undef,
29cab1c7
NC
16768 'Compress::Raw::Bzip2' => undef,
16769 'Compress::Raw::Zlib' => undef,
979b9961 16770 'Compress::Zlib' => undef,
52f6865c 16771 'Config::Perl::V' => undef,
29cab1c7 16772 'DB_File' => undef,
29cab1c7
NC
16773 'Digest' => undef,
16774 'Digest::MD5' => undef,
16775 'Digest::SHA' => undef,
16776 'Digest::base' => undef,
16777 'Digest::file' => undef,
16778 'Encode' => undef,
16779 'Encode::Alias' => undef,
16780 'Encode::Byte' => undef,
16781 'Encode::CJKConstants' => undef,
16782 'Encode::CN' => undef,
16783 'Encode::CN::HZ' => undef,
16784 'Encode::Config' => undef,
16785 'Encode::EBCDIC' => undef,
16786 'Encode::Encoder' => undef,
16787 'Encode::Encoding' => undef,
16788 'Encode::GSM0338' => undef,
16789 'Encode::Guess' => undef,
16790 'Encode::JP' => undef,
16791 'Encode::JP::H2Z' => undef,
16792 'Encode::JP::JIS7' => undef,
16793 'Encode::KR' => undef,
16794 'Encode::KR::2022_KR' => undef,
16795 'Encode::MIME::Header' => undef,
16796 'Encode::MIME::Header::ISO_2022_JP'=> undef,
16797 'Encode::MIME::Name' => undef,
16798 'Encode::Symbol' => undef,
16799 'Encode::TW' => undef,
16800 'Encode::Unicode' => undef,
16801 'Encode::Unicode::UTF7' => undef,
52513e61 16802 'ExtUtils::Command' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
62de23d1 16803 'ExtUtils::Command::MM' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
29cab1c7
NC
16804 'ExtUtils::Constant' => undef,
16805 'ExtUtils::Constant::Base'=> undef,
16806 'ExtUtils::Constant::ProxySubs'=> undef,
16807 'ExtUtils::Constant::Utils'=> undef,
16808 'ExtUtils::Constant::XS'=> undef,
50e7b15e
SH
16809 'ExtUtils::Install' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
16810 'ExtUtils::Installed' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
62de23d1
SH
16811 'ExtUtils::Liblist' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16812 'ExtUtils::Liblist::Kid'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16813 'ExtUtils::MM' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16814 'ExtUtils::MM_AIX' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16815 'ExtUtils::MM_Any' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16816 'ExtUtils::MM_BeOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16817 'ExtUtils::MM_Cygwin' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16818 'ExtUtils::MM_DOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16819 'ExtUtils::MM_Darwin' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16820 'ExtUtils::MM_MacOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16821 'ExtUtils::MM_NW5' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16822 'ExtUtils::MM_OS2' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16823 'ExtUtils::MM_QNX' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16824 'ExtUtils::MM_UWIN' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16825 'ExtUtils::MM_Unix' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16826 'ExtUtils::MM_VMS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16827 'ExtUtils::MM_VOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16828 'ExtUtils::MM_Win32' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16829 'ExtUtils::MM_Win95' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16830 'ExtUtils::MY' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16831 'ExtUtils::MakeMaker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16832 'ExtUtils::MakeMaker::Config'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
20f5d8f8
CBW
16833 'ExtUtils::MakeMaker::Locale'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16834 'ExtUtils::MakeMaker::version'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16835 'ExtUtils::MakeMaker::version::regex'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
50e7b15e 16836 'ExtUtils::Manifest' => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
62de23d1
SH
16837 'ExtUtils::Mkbootstrap' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
16838 'ExtUtils::Mksymlists' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
50e7b15e 16839 'ExtUtils::Packlist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install',
62de23d1 16840 'ExtUtils::testlib' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
29cab1c7
NC
16841 'Fatal' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
16842 'File::Fetch' => undef,
979b9961 16843 'File::GlobMapper' => undef,
29cab1c7 16844 'File::Path' => undef,
1f2fd626 16845 'File::Temp' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
29cab1c7
NC
16846 'Filter::Util::Call' => undef,
16847 'Getopt::Long' => undef,
fd3b4111 16848 'HTTP::Tiny' => 'https://github.com/chansen/p5-http-tiny/issues',
979b9961
JV
16849 'IO::Compress::Adapter::Bzip2'=> undef,
16850 'IO::Compress::Adapter::Deflate'=> undef,
16851 'IO::Compress::Adapter::Identity'=> undef,
16852 'IO::Compress::Base' => undef,
16853 'IO::Compress::Base::Common'=> undef,
16854 'IO::Compress::Bzip2' => undef,
16855 'IO::Compress::Deflate' => undef,
16856 'IO::Compress::Gzip' => undef,
16857 'IO::Compress::Gzip::Constants'=> undef,
16858 'IO::Compress::RawDeflate'=> undef,
16859 'IO::Compress::Zip' => undef,
16860 'IO::Compress::Zip::Constants'=> undef,
16861 'IO::Compress::Zlib::Constants'=> undef,
16862 'IO::Compress::Zlib::Extra'=> undef,
5a39b45b 16863 'IO::Socket::IP' => undef,
979b9961
JV
16864 'IO::Uncompress::Adapter::Bunzip2'=> undef,
16865 'IO::Uncompress::Adapter::Identity'=> undef,
16866 'IO::Uncompress::Adapter::Inflate'=> undef,
16867 'IO::Uncompress::AnyInflate'=> undef,
16868 'IO::Uncompress::AnyUncompress'=> undef,
16869 'IO::Uncompress::Base' => undef,
16870 'IO::Uncompress::Bunzip2'=> undef,
16871 'IO::Uncompress::Gunzip'=> undef,
16872 'IO::Uncompress::Inflate'=> undef,
16873 'IO::Uncompress::RawInflate'=> undef,
16874 'IO::Uncompress::Unzip' => undef,
29cab1c7
NC
16875 'IO::Zlib' => undef,
16876 'IPC::Cmd' => undef,
16877 'IPC::Msg' => undef,
16878 'IPC::Semaphore' => undef,
16879 'IPC::SharedMem' => undef,
16880 'IPC::SysV' => undef,
e0698539
JV
16881 'JSON::PP' => undef,
16882 'JSON::PP::Boolean' => undef,
b5fa05a4
S
16883 'List::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
16884 'List::Util::XS' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
2db8ee47 16885 'Locale::Codes' => undef,
48b66e80 16886 'Locale::Codes::Constants'=> undef,
2db8ee47 16887 'Locale::Codes::Country'=> undef,
48b66e80 16888 'Locale::Codes::Country_Codes'=> undef,
9cdfa110 16889 'Locale::Codes::Country_Retired'=> undef,
2db8ee47 16890 'Locale::Codes::Currency'=> undef,
48b66e80 16891 'Locale::Codes::Currency_Codes'=> undef,
9cdfa110 16892 'Locale::Codes::Currency_Retired'=> undef,
48b66e80
Z
16893 'Locale::Codes::LangExt'=> undef,
16894 'Locale::Codes::LangExt_Codes'=> undef,
9cdfa110
DR
16895 'Locale::Codes::LangExt_Retired'=> undef,
16896 'Locale::Codes::LangFam'=> undef,
16897 'Locale::Codes::LangFam_Codes'=> undef,
16898 'Locale::Codes::LangFam_Retired'=> undef,
48b66e80
Z
16899 'Locale::Codes::LangVar'=> undef,
16900 'Locale::Codes::LangVar_Codes'=> undef,
9cdfa110 16901 'Locale::Codes::LangVar_Retired'=> undef,
2db8ee47 16902 'Locale::Codes::Language'=> undef,
48b66e80 16903 'Locale::Codes::Language_Codes'=> undef,
9cdfa110 16904 'Locale::Codes::Language_Retired'=> undef,
2db8ee47 16905 'Locale::Codes::Script' => undef,
48b66e80 16906 'Locale::Codes::Script_Codes'=> undef,
9cdfa110 16907 'Locale::Codes::Script_Retired'=> undef,
29cab1c7
NC
16908 'Locale::Country' => undef,
16909 'Locale::Currency' => undef,
16910 'Locale::Language' => undef,
29cab1c7
NC
16911 'Locale::Maketext::Simple'=> undef,
16912 'Locale::Script' => undef,
29cab1c7
NC
16913 'MIME::Base64' => undef,
16914 'MIME::QuotedPrint' => undef,
52513e61 16915 'Math::BigFloat' => undef,
210f4ae1 16916 'Math::BigFloat::Trace' => undef,
52513e61
PM
16917 'Math::BigInt' => undef,
16918 'Math::BigInt::Calc' => undef,
16919 'Math::BigInt::CalcEmu' => undef,
16920 'Math::BigInt::FastCalc'=> undef,
79ca97c0 16921 'Math::BigInt::Lib' => undef,
210f4ae1 16922 'Math::BigInt::Trace' => undef,
52513e61 16923 'Math::BigRat' => undef,
29cab1c7
NC
16924 'Math::Complex' => undef,
16925 'Math::Trig' => undef,
16926 'Memoize' => undef,
16927 'Memoize::AnyDBM_File' => undef,
16928 'Memoize::Expire' => undef,
16929 'Memoize::ExpireFile' => undef,
16930 'Memoize::ExpireTest' => undef,
16931 'Memoize::NDBM_File' => undef,
16932 'Memoize::SDBM_File' => undef,
16933 'Memoize::Storable' => undef,
29cab1c7
NC
16934 'Module::Load' => undef,
16935 'Module::Load::Conditional'=> undef,
16936 'Module::Loaded' => undef,
62de23d1 16937 'Module::Metadata' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
29cab1c7
NC
16938 'NEXT' => undef,
16939 'Net::Cmd' => undef,
16940 'Net::Config' => undef,
16941 'Net::Domain' => undef,
16942 'Net::FTP' => undef,
16943 'Net::FTP::A' => undef,
16944 'Net::FTP::E' => undef,
16945 'Net::FTP::I' => undef,
16946 'Net::FTP::L' => undef,
16947 'Net::FTP::dataconn' => undef,
16948 'Net::NNTP' => undef,
16949 'Net::Netrc' => undef,
16950 'Net::POP3' => undef,
29cab1c7
NC
16951 'Net::SMTP' => undef,
16952 'Net::Time' => undef,
29cab1c7 16953 'Params::Check' => undef,
45f300ac 16954 'Parse::CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
210f4ae1 16955 'Perl::OSType' => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
29cab1c7
NC
16956 'PerlIO::via::QuotedPrint'=> undef,
16957 'Pod::Checker' => undef,
16958 'Pod::Escapes' => undef,
16959 'Pod::Find' => undef,
16960 'Pod::InputObjects' => undef,
bbab6af9
SL
16961 'Pod::Man' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
16962 'Pod::ParseLink' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
29cab1c7
NC
16963 'Pod::ParseUtils' => undef,
16964 'Pod::Parser' => undef,
16965 'Pod::Perldoc' => undef,
16966 'Pod::Perldoc::BaseTo' => undef,
16967 'Pod::Perldoc::GetOptsOO'=> undef,
b240fc0f 16968 'Pod::Perldoc::ToANSI' => undef,
29cab1c7
NC
16969 'Pod::Perldoc::ToChecker'=> undef,
16970 'Pod::Perldoc::ToMan' => undef,
16971 'Pod::Perldoc::ToNroff' => undef,
16972 'Pod::Perldoc::ToPod' => undef,
16973 'Pod::Perldoc::ToRtf' => undef,
b240fc0f 16974 'Pod::Perldoc::ToTerm' => undef,
29cab1c7
NC
16975 'Pod::Perldoc::ToText' => undef,
16976 'Pod::Perldoc::ToTk' => undef,
16977 'Pod::Perldoc::ToXml' => undef,
16978 'Pod::PlainText' => undef,
29cab1c7 16979 'Pod::Select' => undef,
52513e61
PM
16980 'Pod::Simple' => 'https://github.com/perl-pod/pod-simple/issues',
16981 'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
16982 'Pod::Simple::Checker' => 'https://github.com/perl-pod/pod-simple/issues',
16983 'Pod::Simple::Debug' => 'https://github.com/perl-pod/pod-simple/issues',
16984 'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
16985 'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
16986 'Pod::Simple::HTML' => 'https://github.com/perl-pod/pod-simple/issues',
16987 'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
16988 'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
16989 'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
16990 'Pod::Simple::Methody' => 'https://github.com/perl-pod/pod-simple/issues',
16991 'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
16992 'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
16993 'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
16994 'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
16995 'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
16996 'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
16997 'Pod::Simple::RTF' => 'https://github.com/perl-pod/pod-simple/issues',
16998 'Pod::Simple::Search' => 'https://github.com/perl-pod/pod-simple/issues',
16999 'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
17000 'Pod::Simple::Text' => 'https://github.com/perl-pod/pod-simple/issues',
17001 'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
17002 'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
17003 'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
17004 'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
17005 'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
17006 'Pod::Simple::XHTML' => 'https://github.com/perl-pod/pod-simple/issues',
17007 'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
bbab6af9
SL
17008 'Pod::Text' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
17009 'Pod::Text::Color' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
17010 'Pod::Text::Overstrike' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
17011 'Pod::Text::Termcap' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
29cab1c7 17012 'Pod::Usage' => undef,
b5fa05a4 17013 'Scalar::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
9cdfa110 17014 'Socket' => undef,
b5fa05a4 17015 'Sub::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
29cab1c7 17016 'Sys::Syslog' => undef,
48b66e80 17017 'Sys::Syslog::Win32' => undef,
29cab1c7
NC
17018 'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17019 'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17020 'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17021 'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17022 'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17023 'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17024 'TAP::Formatter::File' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17025 'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17026 'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17027 'TAP::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
1f2fd626 17028 'TAP::Harness::Env' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
29cab1c7
NC
17029 'TAP::Object' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17030 'TAP::Parser' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17031 'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17032 'TAP::Parser::Grammar' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17033 'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17034 'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17035 'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17036 'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17037 'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17038 'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17039 'TAP::Parser::Result' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17040 'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17041 'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17042 'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17043 'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17044 'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17045 'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17046 'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17047 'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17048 'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17049 'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17050 'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17051 'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17052 'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
a4729c0f
DG
17053 'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17054 'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17055 'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17056 'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17057 'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17058 'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
29cab1c7
NC
17059 'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
17060 'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
de1edec7 17061 'Term::ANSIColor' => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor',
29cab1c7 17062 'Term::Cap' => undef,
f7a1e8ff
S
17063 'Test2' => 'http://github.com/Test-More/test-more/issues',
17064 'Test2::API' => 'http://github.com/Test-More/test-more/issues',
17065 'Test2::API::Breakage' => 'http://github.com/Test-More/test-more/issues',
17066 'Test2::API::Context' => 'http://github.com/Test-More/test-more/issues',
17067 'Test2::API::Instance' => 'http://github.com/Test-More/test-more/issues',
17068 'Test2::API::Stack' => 'http://github.com/Test-More/test-more/issues',
17069 'Test2::Event' => 'http://github.com/Test-More/test-more/issues',
17070 'Test2::Event::Bail' => 'http://github.com/Test-More/test-more/issues',
17071 'Test2::Event::Diag' => 'http://github.com/Test-More/test-more/issues',
79ca97c0 17072 'Test2::Event::Encoding'=> 'http://github.com/Test-More/test-more/issues',
f7a1e8ff 17073 'Test2::Event::Exception'=> 'http://github.com/Test-More/test-more/issues',
0b2e8509 17074 'Test2::Event::Fail' => 'http://github.com/Test-More/test-more/issues',
7984aa21 17075 'Test2::Event::Generic' => 'http://github.com/Test-More/test-more/issues',
f7a1e8ff
S
17076 'Test2::Event::Note' => 'http://github.com/Test-More/test-more/issues',
17077 'Test2::Event::Ok' => 'http://github.com/Test-More/test-more/issues',
0b2e8509 17078 'Test2::Event::Pass' => 'http://github.com/Test-More/test-more/issues',
f7a1e8ff
S
17079 'Test2::Event::Plan' => 'http://github.com/Test-More/test-more/issues',
17080 'Test2::Event::Skip' => 'http://github.com/Test-More/test-more/issues',
17081 'Test2::Event::Subtest' => 'http://github.com/Test-More/test-more/issues',
79ca97c0 17082 'Test2::Event::TAP::Version'=> 'http://github.com/Test-More/test-more/issues',
27ee818c 17083 'Test2::Event::V2' => 'http://github.com/Test-More/test-more/issues',
f7a1e8ff 17084 'Test2::Event::Waiting' => 'http://github.com/Test-More/test-more/issues',
0b2e8509
SH
17085 'Test2::EventFacet' => 'http://github.com/Test-More/test-more/issues',
17086 'Test2::EventFacet::About'=> 'http://github.com/Test-More/test-more/issues',
17087 'Test2::EventFacet::Amnesty'=> 'http://github.com/Test-More/test-more/issues',
17088 'Test2::EventFacet::Assert'=> 'http://github.com/Test-More/test-more/issues',
17089 'Test2::EventFacet::Control'=> 'http://github.com/Test-More/test-more/issues',
17090 'Test2::EventFacet::Error'=> 'http://github.com/Test-More/test-more/issues',
27ee818c 17091 'Test2::EventFacet::Hub'=> 'http://github.com/Test-More/test-more/issues',
0b2e8509
SH
17092 'Test2::EventFacet::Info'=> 'http://github.com/Test-More/test-more/issues',
17093 'Test2::EventFacet::Meta'=> 'http://github.com/Test-More/test-more/issues',
17094 'Test2::EventFacet::Parent'=> 'http://github.com/Test-More/test-more/issues',
17095 'Test2::EventFacet::Plan'=> 'http://github.com/Test-More/test-more/issues',
9862549e 17096 'Test2::EventFacet::Render'=> 'http://github.com/Test-More/test-more/issues',
0b2e8509 17097 'Test2::EventFacet::Trace'=> 'http://github.com/Test-More/test-more/issues',
f7a1e8ff
S
17098 'Test2::Formatter' => 'http://github.com/Test-More/test-more/issues',
17099 'Test2::Formatter::TAP' => 'http://github.com/Test-More/test-more/issues',
17100 'Test2::Hub' => 'http://github.com/Test-More/test-more/issues',
17101 'Test2::Hub::Interceptor'=> 'http://github.com/Test-More/test-more/issues',
17102 'Test2::Hub::Interceptor::Terminator'=> 'http://github.com/Test-More/test-more/issues',
17103 'Test2::Hub::Subtest' => 'http://github.com/Test-More/test-more/issues',
17104 'Test2::IPC' => 'http://github.com/Test-More/test-more/issues',
17105 'Test2::IPC::Driver' => 'http://github.com/Test-More/test-more/issues',
17106 'Test2::IPC::Driver::Files'=> 'http://github.com/Test-More/test-more/issues',
79ca97c0 17107 'Test2::Tools::Tiny' => 'http://github.com/Test-More/test-more/issues',
f7a1e8ff
S
17108 'Test2::Util' => 'http://github.com/Test-More/test-more/issues',
17109 'Test2::Util::ExternalMeta'=> 'http://github.com/Test-More/test-more/issues',
0b2e8509 17110 'Test2::Util::Facets2Legacy'=> 'http://github.com/Test-More/test-more/issues',
f7a1e8ff
S
17111 'Test2::Util::HashBase' => 'http://github.com/Test-More/test-more/issues',
17112 'Test2::Util::Trace' => 'http://github.com/Test-More/test-more/issues',
17113 'Test::Builder' => 'http://github.com/Test-More/test-more/issues',
17114 'Test::Builder::Formatter'=> 'http://github.com/Test-More/test-more/issues',
17115 'Test::Builder::IO::Scalar'=> 'http://github.com/Test-More/test-more/issues',
17116 'Test::Builder::Module' => 'http://github.com/Test-More/test-more/issues',
17117 'Test::Builder::Tester' => 'http://github.com/Test-More/test-more/issues',
17118 'Test::Builder::Tester::Color'=> 'http://github.com/Test-More/test-more/issues',
17119 'Test::Builder::TodoDiag'=> 'http://github.com/Test-More/test-more/issues',
29cab1c7 17120 'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
f7a1e8ff
S
17121 'Test::More' => 'http://github.com/Test-More/test-more/issues',
17122 'Test::Simple' => 'http://github.com/Test-More/test-more/issues',
17123 'Test::Tester' => 'http://github.com/Test-More/test-more/issues',
17124 'Test::Tester::Capture' => 'http://github.com/Test-More/test-more/issues',
17125 'Test::Tester::CaptureRunner'=> 'http://github.com/Test-More/test-more/issues',
17126 'Test::Tester::Delegate'=> 'http://github.com/Test-More/test-more/issues',
17127 'Test::use::ok' => 'http://github.com/Test-More/test-more/issues',
29cab1c7
NC
17128 'Text::Balanced' => undef,
17129 'Text::ParseWords' => undef,
29cab1c7
NC
17130 'Text::Tabs' => undef,
17131 'Text::Wrap' => undef,
29cab1c7 17132 'Tie::RefHash' => undef,
b1b49d10 17133 'Time::Local' => 'https://github.com/houseabsolute/Time-Local/issues',
29cab1c7 17134 'Time::Piece' => undef,
48b66e80 17135 'Time::Seconds' => undef,
29cab1c7 17136 'Unicode::Collate' => undef,
d24e0a99
CBW
17137 'Unicode::Collate::CJK::Big5'=> undef,
17138 'Unicode::Collate::CJK::GB2312'=> undef,
17139 'Unicode::Collate::CJK::JISX0208'=> undef,
17140 'Unicode::Collate::CJK::Korean'=> undef,
17141 'Unicode::Collate::CJK::Pinyin'=> undef,
17142 'Unicode::Collate::CJK::Stroke'=> undef,
fe03d33b 17143 'Unicode::Collate::CJK::Zhuyin'=> undef,
7529c15c 17144 'Unicode::Collate::Locale'=> undef,
29cab1c7
NC
17145 'Win32' => undef,
17146 'Win32API::File' => undef,
489c35bb 17147 'Win32API::File::inc::ExtUtils::Myconst2perl'=> undef,
29cab1c7 17148 'autodie' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
04c0d500
MH
17149 'autodie::Scope::Guard' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
17150 'autodie::Scope::GuardStack'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
bffade09 17151 'autodie::Util' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
29cab1c7
NC
17152 'autodie::exception' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
17153 'autodie::exception::system'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
781ea95a 17154 'autodie::hints' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
2f4a2205 17155 'autodie::skip' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
210f4ae1
SH
17156 'bigint' => undef,
17157 'bignum' => undef,
17158 'bigrat' => undef,
29cab1c7 17159 'encoding' => undef,
70152776 17160 'experimental' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
f7a1e8ff 17161 'ok' => 'http://github.com/Test-More/test-more/issues',
29cab1c7 17162 'parent' => undef,
e46b3c7d 17163 'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues',
c543a22d
MH
17164 'version' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
17165 'version::regex' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
29cab1c7
NC
17166);
17167
8f83a467
JP
17168# Create aliases with trailing zeros for $] use
17169
17170$released{'5.000'} = $released{5};
8f83a467 17171$version{'5.000'} = $version{5};
8f83a467 17172
baca4554 17173_create_aliases(\%delta);
4ffbb0c4
DL
17174_create_aliases(\%released);
17175_create_aliases(\%version);
17176_create_aliases(\%deprecated);
17177
17178sub _create_aliases {
17179 my ($hash) = @_;
17180
17181 for my $version (keys %$hash) {
8e036272 17182 next unless $version >= 5.006;
4ffbb0c4
DL
17183
17184 my $padded = sprintf "%0.6f", $version;
17185
17186 # If the version in string form isn't the same as the numeric version,
17187 # alias it.
17188 if ($padded ne $version && $version == $padded) {
17189 $hash->{$padded} = $hash->{$version};
17190 }
17191 }
17192}
a762e054 17193
8f2fd531
JB
171941;
17195__END__