This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
bump to version 5.19.10 and fix the version number reference in op.c
[perl5.git] / dist / Module-CoreList / lib / Module / CoreList.pm
CommitLineData
8f2fd531
JB
1package Module::CoreList;
2use strict;
f4fe2a30 3use vars qw/$VERSION %released %version %families %upstream
c676c838 4 %bug_tracker %deprecated %delta/;
a272bf38 5use Module::CoreList::TieHashDelta;
74921e08 6use version;
b90b52e0 7$VERSION = '3.06';
8f2fd531
JB
8
9my $dumpinc = 0;
10sub import {
11 my $self = shift;
12 my $what = shift || '';
13 if ($what eq 'dumpinc') {
14 $dumpinc = 1;
15 }
16}
17
18END {
19 print "---INC---\n", join "\n" => keys %INC
20 if $dumpinc;
21}
22
23
79be940f 24sub first_release_raw {
6d7c3a12 25 my $module = shift;
95effdf1 26 $module = shift if eval { $module->isa(__PACKAGE__) }
044d64a8 27 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
6d7c3a12 28 my $version = shift;
8f2fd531
JB
29
30 my @perls = $version
31 ? grep { exists $version{$_}{ $module } &&
482096f1 32 $version{$_}{ $module } ge $version } keys %version
8f2fd531
JB
33 : grep { exists $version{$_}{ $module } } keys %version;
34
79be940f
RGS
35 return @perls;
36}
37
38sub first_release_by_date {
39 my @perls = &first_release_raw;
8f2fd531
JB
40 return unless @perls;
41 return (sort { $released{$a} cmp $released{$b} } @perls)[0];
42}
43
79be940f
RGS
44sub first_release {
45 my @perls = &first_release_raw;
46 return unless @perls;
47 return (sort { $a cmp $b } @perls)[0];
48}
49
18b19aec 50sub find_modules {
18b19aec 51 my $regex = shift;
95effdf1 52 $regex = shift if eval { $regex->isa(__PACKAGE__) };
18b19aec
RGS
53 my @perls = @_;
54 @perls = keys %version unless @perls;
55
56 my %mods;
57 foreach (@perls) {
58 while (my ($k, $v) = each %{$version{$_}}) {
59 $mods{$k}++ if $k =~ $regex;
60 }
61 }
62 return sort keys %mods
63}
64
6127f3cd 65sub find_version {
6d7c3a12 66 my $v = shift;
95effdf1 67 $v = shift if eval { $v->isa(__PACKAGE__) };
6127f3cd
RGS
68 return $version{$v} if defined $version{$v};
69 return undef;
70}
8f2fd531 71
c77945c3 72sub is_deprecated {
6d7c3a12 73 my $module = shift;
95effdf1 74 $module = shift if eval { $module->isa(__PACKAGE__) }
044d64a8 75 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
6d7c3a12 76 my $perl_version = shift;
0dee1c27
DG
77 $perl_version ||= $];
78 return unless $module && exists $deprecated{$perl_version}{$module};
79 return $deprecated{$perl_version}{$module};
c77945c3
CBW
80}
81
10526356
AC
82sub deprecated_in {
83 my $module = shift;
84 $module = shift if eval { $module->isa(__PACKAGE__) }
85 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
86 return unless $module;
87 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
88 return unless @perls;
89 require List::Util;
94691b80 90 return List::Util::minstr(@perls);
10526356
AC
91}
92
044d64a8
CBW
93sub removed_from {
94 my @perls = &removed_raw;
95 return shift @perls;
96}
97
98sub removed_from_by_date {
99 my @perls = sort { $released{$a} cmp $released{$b} } &removed_raw;
100 return shift @perls;
101}
102
103sub removed_raw {
104 my $mod = shift;
95effdf1 105 $mod = shift if eval { $mod->isa(__PACKAGE__) }
044d64a8
CBW
106 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
107 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
108 my $last = pop @perls;
109 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
110 return @removed;
111}
112
797ced94 113sub changes_between {
5622f451
CBW
114 my $left_ver = shift;
115 $left_ver = shift if eval { $left_ver->isa(__PACKAGE__) };
116 my $right_ver = shift;
797ced94
RS
117
118 my $left = $version{ $left_ver };
119 my $right = $version{ $right_ver };
120
121 my %uniq = (%$left, %$right);
122
123 my %changes;
124 for my $lib (keys %uniq) {
125 my $lhs = exists $left->{ $lib }
126 ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)')
127 : '(absent)';
128 my $rhs = exists $right->{ $lib }
129 ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)')
130 : '(absent)';
131
132 next if $lhs eq $rhs;
133
134 my $change = {
135 (exists $left->{$lib} ? (left => $left->{$lib}) : ()),
136 (exists $right->{$lib} ? (right => $right->{$lib}) : ()),
137 };
138
139 $changes{$lib} = $change;
140 }
141
142 return %changes;
143}
144
2a61b338
RGS
145# When things escaped.
146# NB. If you put version numbers with trailing zeroes here, you
147# should also add an alias for the numerical ($]) version; see
148# just before the __END__ of this module.
8f2fd531 149%released = (
51daab35
RGS
150 5.000 => '1994-10-17',
151 5.001 => '1995-03-14',
e1371c03 152 5.002 => '1996-02-29',
8f2fd531
JB
153 5.00307 => '1996-10-10',
154 5.004 => '1997-05-15',
155 5.005 => '1998-07-22',
156 5.00503 => '1999-03-28',
157 5.00405 => '1999-04-29',
158 5.006 => '2000-03-22',
159 5.006001 => '2001-04-08',
8f2fd531
JB
160 5.007003 => '2002-03-05',
161 5.008 => '2002-07-19',
162 5.008001 => '2003-09-25',
8f2fd531 163 5.009 => '2003-10-27',
9f602dc7
MB
164 5.008002 => '2003-11-05',
165 5.006002 => '2003-11-15',
8f2fd531
JB
166 5.008003 => '2004-01-14',
167 5.00504 => '2004-02-23',
168 5.009001 => '2004-03-16',
169 5.008004 => '2004-04-21',
170 5.008005 => '2004-07-19',
171 5.008006 => '2004-11-27',
c9600ef6 172 5.009002 => '2005-04-01',
cda59a31 173 5.008007 => '2005-05-30',
f372d768
RGS
174 5.009003 => '2006-01-28',
175 5.008008 => '2006-01-31',
16531488 176 5.009004 => '2006-08-15',
201a0ee1 177 5.009005 => '2007-07-07',
a3240fe5 178 5.010000 => '2007-12-18',
5b5f44f3 179 5.008009 => '2008-12-14',
6c1a81b0 180 5.010001 => '2009-08-22',
a6abef0d 181 5.011000 => '2009-10-02',
979b9961 182 5.011001 => '2009-10-20',
a68163ea 183 5.011002 => '2009-11-20',
65f8b4e7 184 5.011003 => '2009-12-20',
d3cba0fe 185 5.011004 => '2010-01-20',
2a3ea5b5 186 5.011005 => '2010-02-20',
431be7b3 187 5.012000 => '2010-04-12',
3ec75686 188 5.013000 => '2010-04-20',
2cbeaf93 189 5.012001 => '2010-05-16',
2db8ee47 190 5.013001 => '2010-05-20',
37e1f6c7 191 5.013002 => '2010-06-22',
a4729c0f 192 5.013003 => '2010-07-20',
7529c15c 193 5.013004 => '2010-08-20',
cf6d0998 194 5.012002 => '2010-09-06',
0530d763 195 5.013005 => '2010-09-19',
7de25fd5 196 5.013006 => '2010-10-20',
d24e0a99 197 5.013007 => '2010-11-20',
67dbc274 198 5.013008 => '2010-12-20',
96e4e4a0 199 5.012003 => '2011-01-21',
e0698539 200 5.013009 => '2011-01-20',
c552c5b5 201 5.013010 => '2011-02-20',
45492fbf 202 5.013011 => '2011-03-20',
ee2a35ba 203 5.014000 => '2011-05-14',
3f07daad 204 5.012004 => '2011-06-20',
3df1c36a 205 5.012005 => '2012-11-10',
3d108019 206 5.014001 => '2011-06-16',
1f1f08f5 207 5.015000 => '2011-06-20',
48b66e80 208 5.015001 => '2011-07-20',
2f183b41 209 5.015002 => '2011-08-20',
33f96037 210 5.014002 => '2011-09-26',
e46b3c7d 211 5.015003 => '2011-09-20',
f0381222 212 5.015004 => '2011-10-20',
40f3bdee 213 5.015005 => '2011-11-20',
9cdfa110 214 5.015006 => '2011-12-20',
b240fc0f 215 5.015007 => '2012-01-20',
f50587e0 216 5.015008 => '2012-02-20',
68a91acb 217 5.015009 => '2012-03-20',
d10490f6 218 5.016000 => '2012-05-20',
990b8741 219 5.016001 => '2012-08-08',
e0a7ebbc 220 5.016002 => '2012-11-01',
f558db2f 221 5.017000 => '2012-05-26',
71014848 222 5.017001 => '2012-06-20',
7ca04d94 223 5.017002 => '2012-07-20',
752b5616 224 5.017003 => '2012-08-20',
a1484e43 225 5.017004 => '2012-09-20',
f7a5efeb 226 5.014003 => '2012-10-12',
03708946 227 5.017005 => '2012-10-20',
e498bd59 228 5.017006 => '2012-11-20',
fe03d33b 229 5.017007 => '2012-12-18',
dd4b1c75 230 5.017008 => '2013-01-20',
52f6865c 231 5.017009 => '2013-02-20',
11d2dbf3 232 5.014004 => '2013-03-10',
cd98b2f5 233 5.016003 => '2013-03-11',
fd3b4111 234 5.017010 => '2013-03-21',
e55f48ec 235 5.017011 => '2013-04-20',
058ce27e 236 5.018000 => '2013-05-18',
38a400f2 237 5.019000 => '2013-05-20',
2f4a2205 238 5.019001 => '2013-06-21',
1f0ad552 239 5.019002 => '2013-07-22',
ba4dd7ef 240 5.018001 => '2013-08-12',
91c842ce 241 5.019003 => '2013-08-20',
62de23d1 242 5.019004 => '2013-09-20',
19c1ec11 243 5.019005 => '2013-10-20',
1f2fd626 244 5.019006 => '2013-11-20',
95eb96f3 245 5.019007 => '2013-12-20',
6c2a7b42 246 5.018002 => '2014-01-06',
d0ff74ad 247 5.019008 => '2014-01-20',
5a39b45b 248 5.019009 => '2014-02-20',
a47a8f3c 249 );
8f2fd531
JB
250
251for my $version ( sort { $a <=> $b } keys %released ) {
252 my $family = int ($version * 1000) / 1000;
253 push @{ $families{ $family }} , $version;
254}
255
c676c838 256%delta = (
a272bf38
DL
257 5 => {
258 changed => {
259 'AnyDBM_File' => undef,
260 'AutoLoader' => undef,
261 'AutoSplit' => undef,
262 'Benchmark' => undef,
263 'Carp' => undef,
264 'Cwd' => undef,
265 'DB_File' => undef,
266 'DynaLoader' => undef,
267 'English' => undef,
268 'Env' => undef,
269 'Exporter' => undef,
270 'ExtUtils::MakeMaker' => undef,
271 'Fcntl' => undef,
272 'File::Basename' => undef,
273 'File::CheckTree' => undef,
274 'File::Find' => undef,
275 'FileHandle' => undef,
276 'GDBM_File' => undef,
277 'Getopt::Long' => undef,
278 'Getopt::Std' => undef,
279 'I18N::Collate' => undef,
280 'IPC::Open2' => undef,
281 'IPC::Open3' => undef,
282 'Math::BigFloat' => undef,
283 'Math::BigInt' => undef,
284 'Math::Complex' => undef,
285 'NDBM_File' => undef,
286 'Net::Ping' => undef,
287 'ODBM_File' => undef,
288 'POSIX' => undef,
289 'SDBM_File' => undef,
290 'Search::Dict' => undef,
291 'Shell' => undef,
292 'Socket' => undef,
293 'Sys::Hostname' => undef,
294 'Sys::Syslog' => undef,
295 'Term::Cap' => undef,
296 'Term::Complete' => undef,
297 'Test::Harness' => undef,
298 'Text::Abbrev' => undef,
299 'Text::ParseWords' => undef,
300 'Text::Soundex' => undef,
301 'Text::Tabs' => undef,
302 'TieHash' => undef,
303 'Time::Local' => undef,
304 'integer' => undef,
305 'less' => undef,
306 'sigtrap' => undef,
307 'strict' => undef,
308 'subs' => undef,
309 },
310 removed => {
311 }
51daab35
RGS
312 },
313 5.001 => {
a272bf38
DL
314 delta_from => 5,
315 changed => {
316 'ExtUtils::Liblist' => undef,
317 'ExtUtils::Manifest' => undef,
318 'ExtUtils::Mkbootstrap' => undef,
319 'File::Path' => undef,
320 'SubstrHash' => undef,
321 'lib' => undef,
322 },
323 removed => {
324 }
51daab35
RGS
325 },
326 5.002 => {
a272bf38
DL
327 delta_from => 5.001,
328 changed => {
329 'DB_File' => '1.01',
330 'Devel::SelfStubber' => '1.01',
331 'DirHandle' => undef,
332 'DynaLoader' => '1.00',
333 'ExtUtils::Install' => undef,
334 'ExtUtils::MM_OS2' => undef,
335 'ExtUtils::MM_Unix' => undef,
336 'ExtUtils::MM_VMS' => undef,
337 'ExtUtils::MakeMaker' => '5.21',
338 'ExtUtils::Manifest' => '1.22',
339 'ExtUtils::Mksymlists' => '1.00',
340 'Fcntl' => '1.00',
341 'File::Copy' => '1.5',
342 'File::Path' => '1.01',
343 'FileCache' => undef,
344 'FileHandle' => '1.00',
345 'GDBM_File' => '1.00',
346 'Getopt::Long' => '2.01',
347 'NDBM_File' => '1.00',
348 'Net::Ping' => '1',
349 'ODBM_File' => '1.00',
350 'POSIX' => '1.00',
351 'Pod::Functions' => undef,
352 'Pod::Text' => undef,
353 'SDBM_File' => '1.00',
354 'Safe' => '1.00',
355 'SelectSaver' => undef,
356 'SelfLoader' => '1.06',
357 'Socket' => '1.5',
358 'Symbol' => undef,
359 'Term::ReadLine' => undef,
360 'Test::Harness' => '1.07',
361 'Text::Wrap' => undef,
362 'Tie::Hash' => undef,
363 'Tie::Scalar' => undef,
364 'Tie::SubstrHash' => undef,
365 'diagnostics' => undef,
366 'overload' => undef,
367 'vars' => undef,
368 },
369 removed => {
370 'SubstrHash' => 1,
371 'TieHash' => 1,
372 }
51daab35 373 },
8f2fd531 374 5.00307 => {
a272bf38
DL
375 delta_from => 5.002,
376 changed => {
377 'Config' => undef,
378 'DB_File' => '1.03',
379 'ExtUtils::Embed' => '1.18',
380 'ExtUtils::Install' => '1.15 ',
381 'ExtUtils::Liblist' => '1.20 ',
382 'ExtUtils::MM_Unix' => '1.107 ',
383 'ExtUtils::MakeMaker' => '5.38',
384 'ExtUtils::Manifest' => '1.27',
385 'ExtUtils::Mkbootstrap' => '1.13 ',
386 'ExtUtils::Mksymlists' => '1.12 ',
387 'ExtUtils::testlib' => '1.11 ',
388 'Fatal' => undef,
389 'File::Basename' => '2.4',
390 'FindBin' => '1.04',
391 'Getopt::Long' => '2.04',
392 'IO' => undef,
393 'IO::File' => '1.05',
394 'IO::Handle' => '1.12',
395 'IO::Pipe' => '1.07',
396 'IO::Seekable' => '1.05',
397 'IO::Select' => '1.09',
398 'IO::Socket' => '1.13',
399 'Net::Ping' => '1.01',
400 'OS2::ExtAttr' => '0.01',
401 'OS2::PrfDB' => '0.02',
402 'OS2::Process' => undef,
403 'OS2::REXX' => undef,
404 'Opcode' => '1.01',
405 'Safe' => '2.06',
406 'Test::Harness' => '1.13',
407 'Text::Tabs' => '96.051501',
408 'Text::Wrap' => '96.041801',
409 'UNIVERSAL' => undef,
410 'VMS::Filespec' => undef,
411 'VMS::Stdio' => '2.0',
412 'ops' => undef,
413 'sigtrap' => '1.01',
414 },
415 removed => {
416 }
8f2fd531 417 },
a272bf38
DL
418 5.004 => {
419 delta_from => 5.00307,
420 changed => {
421 'Bundle::CPAN' => '0.02',
422 'CGI' => '2.36',
423 'CGI::Apache' => '1.01',
424 'CGI::Carp' => '1.06',
425 'CGI::Fast' => '1.00a',
426 'CGI::Push' => '1.00',
427 'CGI::Switch' => '0.05',
428 'CPAN' => '1.2401',
429 'CPAN::FirstTime' => '1.18 ',
430 'CPAN::Nox' => undef,
431 'Class::Struct' => undef,
432 'Cwd' => '2.00',
433 'DB_File' => '1.14',
434 'DynaLoader' => '1.02',
435 'ExtUtils::Command' => '1.00',
436 'ExtUtils::Embed' => '1.2501',
437 'ExtUtils::Install' => '1.16 ',
438 'ExtUtils::Liblist' => '1.2201 ',
439 'ExtUtils::MM_Unix' => '1.114 ',
440 'ExtUtils::MM_Win32' => undef,
441 'ExtUtils::MakeMaker' => '5.4002',
442 'ExtUtils::Manifest' => '1.33 ',
443 'ExtUtils::Mksymlists' => '1.13 ',
444 'ExtUtils::XSSymSet' => '1.0',
445 'Fcntl' => '1.03',
446 'File::Basename' => '2.5',
447 'File::Compare' => '1.1001',
448 'File::Copy' => '2.02',
449 'File::Path' => '1.04',
450 'File::stat' => undef,
451 'FileHandle' => '2.00',
452 'Getopt::Long' => '2.10',
453 'IO::File' => '1.0602',
454 'IO::Handle' => '1.1504',
455 'IO::Pipe' => '1.0901',
456 'IO::Seekable' => '1.06',
457 'IO::Select' => '1.10',
458 'IO::Socket' => '1.1602',
459 'IPC::Open2' => '1.01',
460 'IPC::Open3' => '1.0101',
461 'Math::Complex' => '1.01',
462 'Math::Trig' => '1',
463 'Net::Ping' => '2.02',
464 'Net::hostent' => undef,
465 'Net::netent' => undef,
466 'Net::protoent' => undef,
467 'Net::servent' => undef,
468 'Opcode' => '1.04',
469 'POSIX' => '1.02',
470 'Pod::Html' => undef,
471 'Pod::Text' => '1.0203',
472 'SelfLoader' => '1.07',
473 'Socket' => '1.6',
474 'Symbol' => '1.02',
475 'Test::Harness' => '1.1502',
476 'Text::Tabs' => '96.121201',
477 'Text::Wrap' => '97.011701',
478 'Tie::RefHash' => undef,
479 'Time::gmtime' => '1.01',
480 'Time::localtime' => '1.01',
481 'Time::tm' => undef,
482 'User::grent' => undef,
483 'User::pwent' => undef,
484 'VMS::DCLsym' => '1.01',
485 'VMS::Stdio' => '2.02',
486 'autouse' => '1.01',
487 'blib' => undef,
488 'constant' => '1.00',
489 'locale' => undef,
490 'sigtrap' => '1.02',
491 'vmsish' => undef,
492 },
493 removed => {
494 'Fatal' => 1,
495 }
8f2fd531 496 },
a272bf38
DL
497 5.00405 => {
498 delta_from => 5.004,
499 changed => {
500 'AutoLoader' => '5.56',
501 'AutoSplit' => '1.0303',
502 'Bundle::CPAN' => '0.03',
503 'CGI' => '2.42',
504 'CGI::Apache' => '1.1',
505 'CGI::Carp' => '1.10',
506 'CGI::Cookie' => '1.06',
507 'CGI::Push' => '1.01',
508 'CGI::Switch' => '0.06',
509 'CPAN' => '1.40',
510 'CPAN::FirstTime' => '1.30 ',
511 'Cwd' => '2.01',
512 'DB_File' => '1.15',
513 'DynaLoader' => '1.03',
514 'ExtUtils::Command' => '1.01',
515 'ExtUtils::Embed' => '1.2505',
516 'ExtUtils::Install' => '1.28 ',
517 'ExtUtils::Liblist' => '1.25 ',
518 'ExtUtils::MM_Unix' => '1.118 ',
519 'ExtUtils::MakeMaker' => '5.42',
520 'ExtUtils::Mkbootstrap' => '1.14 ',
521 'ExtUtils::Mksymlists' => '1.16 ',
522 'File::Basename' => '2.6',
523 'File::DosGlob' => undef,
524 'File::Path' => '1.0402',
525 'File::Spec' => '0.6',
526 'File::Spec::Mac' => '1.0',
527 'File::Spec::OS2' => undef,
528 'File::Spec::Unix' => undef,
529 'File::Spec::VMS' => undef,
530 'File::Spec::Win32' => undef,
531 'FindBin' => '1.41',
532 'Getopt::Long' => '2.19',
533 'IO::File' => '1.06021',
534 'IO::Socket' => '1.1603',
535 'IPC::Open3' => '1.0103',
536 'Math::Complex' => '1.25',
537 'NDBM_File' => '1.01',
538 'Pod::Html' => '1.0101',
539 'Pod::Text' => '1.0204',
540 'SelfLoader' => '1.08',
541 'Socket' => '1.7',
542 'Test' => '1.04',
543 'Test::Harness' => '1.1602',
544 'Text::ParseWords' => '3.1001',
545 'Text::Wrap' => '98.112902',
546 'Tie::Handle' => undef,
547 'attrs' => '0.1',
548 'base' => undef,
549 'blib' => '1.00',
550 're' => undef,
551 'strict' => '1.01',
552 },
553 removed => {
554 }
8f2fd531 555 },
a272bf38
DL
556 5.005 => {
557 delta_from => 5.00405,
558 changed => {
559 'AutoLoader' => undef,
560 'AutoSplit' => '1.0302',
561 'B' => undef,
562 'B::Asmdata' => undef,
563 'B::Assembler' => undef,
564 'B::Bblock' => undef,
565 'B::Bytecode' => undef,
566 'B::C' => undef,
567 'B::CC' => undef,
568 'B::Debug' => undef,
569 'B::Deparse' => '0.56',
570 'B::Disassembler' => undef,
571 'B::Lint' => undef,
572 'B::Showlex' => undef,
573 'B::Stackobj' => undef,
574 'B::Terse' => undef,
575 'B::Xref' => undef,
576 'CGI::Carp' => '1.101',
577 'CPAN' => '1.3901',
578 'CPAN::FirstTime' => '1.29 ',
579 'DB_File' => '1.60',
580 'Data::Dumper' => '2.09',
1549d03d 581 'Errno' => '1.09',
a272bf38
DL
582 'ExtUtils::Installed' => '0.02',
583 'ExtUtils::MM_Unix' => '1.12601 ',
584 'ExtUtils::MakeMaker' => '5.4301',
585 'ExtUtils::Mkbootstrap' => '1.13 ',
586 'ExtUtils::Mksymlists' => '1.17 ',
587 'ExtUtils::Packlist' => '0.03',
588 'Fatal' => '1.02',
589 'File::Path' => '1.0401',
590 'Getopt::Long' => '2.17',
591 'IO::Handle' => '1.1505',
592 'IPC::Msg' => '1.00',
593 'IPC::Open3' => '1.0102',
594 'IPC::Semaphore' => '1.00',
595 'IPC::SysV' => '1.03',
596 'O' => undef,
597 'OS2::Process' => '0.2',
598 'Pod::Html' => '1.01',
599 'Pod::Text' => '1.0203',
600 'Text::ParseWords' => '3.1',
601 'Text::Wrap' => '97.02',
602 'Thread' => '1.0',
603 'Thread::Queue' => undef,
604 'Thread::Semaphore' => undef,
605 'Thread::Signal' => undef,
606 'Thread::Specific' => undef,
607 'Tie::Array' => '1.00',
608 'VMS::Stdio' => '2.1',
609 'attrs' => '1.0',
610 'fields' => '0.02',
611 're' => '0.02',
612 },
613 removed => {
614 'Bundle::CPAN' => 1,
615 }
8f2fd531 616 },
a272bf38
DL
617 5.00503 => {
618 delta_from => 5.005,
619 changed => {
620 'AutoSplit' => '1.0303',
621 'CGI' => '2.46',
622 'CGI::Carp' => '1.13',
623 'CGI::Fast' => '1.01',
624 'CPAN' => '1.48',
625 'CPAN::FirstTime' => '1.36',
626 'CPAN::Nox' => '1.00',
627 'DB_File' => '1.65',
628 'Data::Dumper' => '2.101',
629 'Dumpvalue' => undef,
1549d03d 630 'Errno' => '1.111',
a272bf38
DL
631 'ExtUtils::Install' => '1.28',
632 'ExtUtils::Liblist' => '1.25',
633 'ExtUtils::MM_Unix' => '1.12602',
634 'ExtUtils::MakeMaker' => '5.4302',
635 'ExtUtils::Manifest' => '1.33',
636 'ExtUtils::Mkbootstrap' => '1.14',
637 'ExtUtils::Mksymlists' => '1.17',
638 'ExtUtils::testlib' => '1.11',
639 'FindBin' => '1.42',
640 'Getopt::Long' => '2.19',
641 'Getopt::Std' => '1.01',
642 'IO::Pipe' => '1.0902',
643 'IPC::Open3' => '1.0103',
644 'Math::Complex' => '1.26',
645 'Test' => '1.122',
646 'Text::Wrap' => '98.112902',
647 },
648 removed => {
649 }
8f2fd531 650 },
ad91da88 651 5.00504 => {
a272bf38
DL
652 delta_from => 5.00503,
653 changed => {
654 'CPAN::FirstTime' => '1.36 ',
655 'DB_File' => '1.807',
a272bf38
DL
656 'ExtUtils::Install' => '1.28 ',
657 'ExtUtils::Liblist' => '1.25 ',
658 'ExtUtils::MM_Unix' => '1.12602 ',
659 'ExtUtils::Manifest' => '1.33 ',
660 'ExtUtils::Miniperl' => undef,
661 'ExtUtils::Mkbootstrap' => '1.14 ',
662 'ExtUtils::Mksymlists' => '1.17 ',
663 'ExtUtils::testlib' => '1.11 ',
664 'File::Compare' => '1.1002',
665 'File::Spec' => '0.8',
666 'File::Spec::Functions' => undef,
667 'File::Spec::Mac' => undef,
668 'Getopt::Long' => '2.20',
669 'Pod::Html' => '1.02',
670 },
671 removed => {
672 }
ad91da88 673 },
a272bf38
DL
674 5.006 => {
675 delta_from => 5.00504,
676 changed => {
677 'AutoLoader' => '5.57',
678 'AutoSplit' => '1.0305',
679 'B::Deparse' => '0.59',
680 'B::Stash' => undef,
681 'Benchmark' => '1',
682 'ByteLoader' => '0.03',
683 'CGI' => '2.56',
684 'CGI::Apache' => undef,
685 'CGI::Carp' => '1.14',
686 'CGI::Cookie' => '1.12',
687 'CGI::Fast' => '1.02',
688 'CGI::Pretty' => '1.03',
689 'CGI::Switch' => undef,
690 'CPAN' => '1.52',
691 'CPAN::FirstTime' => '1.38 ',
692 'Carp::Heavy' => undef,
693 'Class::Struct' => '0.58',
694 'Cwd' => '2.02',
695 'DB' => '1.0',
696 'DB_File' => '1.72',
697 'Devel::DProf' => '20000000.00_00',
698 'Devel::Peek' => '1.00_01',
699 'DynaLoader' => '1.04',
700 'Exporter' => '5.562',
701 'Exporter::Heavy' => undef,
702 'ExtUtils::MM_Cygwin' => undef,
703 'ExtUtils::MM_Unix' => '1.12603 ',
704 'ExtUtils::MakeMaker' => '5.45',
705 'File::Copy' => '2.03',
706 'File::Glob' => '0.991',
707 'File::Path' => '1.0403',
708 'GDBM_File' => '1.03',
709 'Getopt::Long' => '2.23',
710 'Getopt::Std' => '1.02',
711 'IO' => '1.20',
712 'IO::Dir' => '1.03',
713 'IO::File' => '1.08',
714 'IO::Handle' => '1.21',
715 'IO::Pipe' => '1.121',
716 'IO::Poll' => '0.01',
717 'IO::Seekable' => '1.08',
718 'IO::Select' => '1.14',
719 'IO::Socket' => '1.26',
720 'IO::Socket::INET' => '1.25',
721 'IO::Socket::UNIX' => '1.20',
722 'JNI' => '0.01',
723 'JPL::AutoLoader' => undef,
724 'JPL::Class' => undef,
725 'JPL::Compile' => undef,
726 'NDBM_File' => '1.03',
727 'ODBM_File' => '1.02',
728 'OS2::DLL' => undef,
729 'POSIX' => '1.03',
730 'Pod::Checker' => '1.098',
731 'Pod::Find' => '0.12',
732 'Pod::Html' => '1.03',
733 'Pod::InputObjects' => '1.12',
734 'Pod::Man' => '1.02',
735 'Pod::ParseUtils' => '0.2',
736 'Pod::Parser' => '1.12',
737 'Pod::Plainer' => '0.01',
738 'Pod::Select' => '1.12',
739 'Pod::Text' => '2.03',
740 'Pod::Text::Color' => '0.05',
741 'Pod::Text::Termcap' => '0.04',
742 'Pod::Usage' => '1.12',
743 'SDBM_File' => '1.02',
744 'SelfLoader' => '1.0901',
745 'Shell' => '0.2',
746 'Socket' => '1.72',
747 'Sys::Hostname' => '1.1',
748 'Sys::Syslog' => '0.01',
749 'Term::ANSIColor' => '1.01',
750 'Test' => '1.13',
751 'Test::Harness' => '1.1604',
752 'Text::ParseWords' => '3.2',
753 'Text::Soundex' => '1.0',
754 'Text::Tabs' => '98.112801',
755 'Tie::Array' => '1.01',
756 'Tie::Handle' => '1.0',
757 'VMS::Stdio' => '2.2',
758 'XSLoader' => '0.01',
759 'attributes' => '0.03',
760 'autouse' => '1.02',
761 'base' => '1.01',
762 'bytes' => undef,
763 'charnames' => undef,
764 'constant' => '1.02',
765 'diagnostics' => '1.0',
766 'fields' => '1.01',
767 'filetest' => undef,
768 'lib' => '0.5564',
769 'open' => undef,
770 'utf8' => undef,
771 'warnings' => undef,
772 'warnings::register' => undef,
773 },
774 removed => {
775 }
8f2fd531 776 },
a272bf38
DL
777 5.006001 => {
778 delta_from => 5.006,
779 changed => {
780 'AutoLoader' => '5.58',
781 'B::Assembler' => '0.02',
782 'B::Concise' => '0.51',
783 'B::Deparse' => '0.6',
784 'ByteLoader' => '0.04',
785 'CGI' => '2.752',
786 'CGI::Carp' => '1.20',
787 'CGI::Cookie' => '1.18',
788 'CGI::Pretty' => '1.05',
789 'CGI::Push' => '1.04',
790 'CGI::Util' => '1.1',
791 'CPAN' => '1.59_54',
792 'CPAN::FirstTime' => '1.53',
793 'Class::Struct' => '0.59',
794 'Cwd' => '2.04',
795 'DB_File' => '1.75',
796 'Data::Dumper' => '2.102',
797 'ExtUtils::Install' => '1.28',
798 'ExtUtils::Liblist' => '1.26',
799 'ExtUtils::MM_Unix' => '1.12603',
800 'ExtUtils::Manifest' => '1.33',
801 'ExtUtils::Mkbootstrap' => '1.14',
802 'ExtUtils::Mksymlists' => '1.17',
803 'ExtUtils::testlib' => '1.11',
804 'File::Path' => '1.0404',
805 'File::Spec' => '0.82',
806 'File::Spec::Epoc' => undef,
807 'File::Spec::Functions' => '1.1',
808 'File::Spec::Mac' => '1.2',
809 'File::Spec::OS2' => '1.1',
810 'File::Spec::Unix' => '1.2',
811 'File::Spec::VMS' => '1.1',
812 'File::Spec::Win32' => '1.2',
813 'File::Temp' => '0.12',
814 'GDBM_File' => '1.05',
815 'Getopt::Long' => '2.25',
816 'IO::Poll' => '0.05',
817 'JNI' => '0.1',
818 'Math::BigFloat' => '0.02',
819 'Math::BigInt' => '0.01',
820 'Math::Complex' => '1.31',
821 'NDBM_File' => '1.04',
822 'ODBM_File' => '1.03',
823 'OS2::REXX' => '1.00',
824 'Pod::Checker' => '1.2',
825 'Pod::Find' => '0.21',
826 'Pod::InputObjects' => '1.13',
827 'Pod::LaTeX' => '0.53',
828 'Pod::Man' => '1.15',
829 'Pod::ParseUtils' => '0.22',
830 'Pod::Parser' => '1.13',
831 'Pod::Select' => '1.13',
832 'Pod::Text' => '2.08',
833 'Pod::Text::Color' => '0.06',
834 'Pod::Text::Overstrike' => '1.01',
835 'Pod::Text::Termcap' => '1',
836 'Pod::Usage' => '1.14',
837 'SDBM_File' => '1.03',
838 'SelfLoader' => '1.0902',
839 'Shell' => '0.3',
840 'Term::ANSIColor' => '1.03',
841 'Test' => '1.15',
842 'Text::Wrap' => '2001.0131',
843 'Tie::Handle' => '4.0',
844 'Tie::RefHash' => '1.3',
845 },
846 removed => {
847 }
8f2fd531
JB
848 },
849 5.006002 => {
a272bf38
DL
850 delta_from => 5.006001,
851 changed => {
852 'CPAN::FirstTime' => '1.53 ',
853 'DB_File' => '1.806',
854 'Data::Dumper' => '2.121',
855 'ExtUtils::Command' => '1.05',
856 'ExtUtils::Command::MM' => '0.03',
857 'ExtUtils::Install' => '1.32',
858 'ExtUtils::Installed' => '0.08',
859 'ExtUtils::Liblist' => '1.01',
860 'ExtUtils::Liblist::Kid'=> '1.3',
861 'ExtUtils::MM' => '0.04',
862 'ExtUtils::MM_Any' => '0.07',
863 'ExtUtils::MM_BeOS' => '1.04',
864 'ExtUtils::MM_Cygwin' => '1.06',
865 'ExtUtils::MM_DOS' => '0.02',
866 'ExtUtils::MM_MacOS' => '1.07',
867 'ExtUtils::MM_NW5' => '2.06',
868 'ExtUtils::MM_OS2' => '1.04',
869 'ExtUtils::MM_UWIN' => '0.02',
870 'ExtUtils::MM_Unix' => '1.42',
871 'ExtUtils::MM_VMS' => '5.70',
872 'ExtUtils::MM_Win32' => '1.09',
873 'ExtUtils::MM_Win95' => '0.03',
874 'ExtUtils::MY' => '0.01',
875 'ExtUtils::MakeMaker' => '6.17',
876 'ExtUtils::MakeMaker::bytes'=> '0.01',
877 'ExtUtils::MakeMaker::vmsish'=> '0.01',
878 'ExtUtils::Manifest' => '1.42',
879 'ExtUtils::Mkbootstrap' => '1.15',
880 'ExtUtils::Mksymlists' => '1.19',
881 'ExtUtils::Packlist' => '0.04',
882 'ExtUtils::testlib' => '1.15',
883 'File::Spec' => '0.86',
884 'File::Spec::Cygwin' => '1.1',
885 'File::Spec::Epoc' => '1.1',
886 'File::Spec::Functions' => '1.3',
887 'File::Spec::Mac' => '1.4',
888 'File::Spec::OS2' => '1.2',
889 'File::Spec::Unix' => '1.5',
890 'File::Spec::VMS' => '1.4',
891 'File::Spec::Win32' => '1.4',
892 'File::Temp' => '0.14',
893 'Safe' => '2.10',
894 'Test' => '1.24',
895 'Test::Builder' => '0.17',
896 'Test::Harness' => '2.30',
897 'Test::Harness::Assert' => '0.01',
898 'Test::Harness::Iterator'=> '0.01',
899 'Test::Harness::Straps' => '0.15',
900 'Test::More' => '0.47',
901 'Test::Simple' => '0.47',
902 'Unicode' => '3.0.1',
903 'if' => '0.03',
904 'ops' => '1.00',
905 },
906 removed => {
907 }
c595d054 908 },
a272bf38
DL
909 5.007003 => {
910 delta_from => 5.006001,
911 changed => {
912 'AnyDBM_File' => '1.00',
913 'Attribute::Handlers' => '0.76',
914 'AutoLoader' => '5.59',
915 'AutoSplit' => '1.0307',
916 'B' => '1.00',
917 'B::Asmdata' => '1.00',
918 'B::Assembler' => '0.04',
919 'B::Bblock' => '1.00',
920 'B::Bytecode' => '1.00',
921 'B::C' => '1.01',
922 'B::CC' => '1.00',
923 'B::Concise' => '0.52',
924 'B::Debug' => '1.00',
925 'B::Deparse' => '0.63',
926 'B::Disassembler' => '1.01',
927 'B::Lint' => '1.00',
928 'B::Showlex' => '1.00',
929 'B::Stackobj' => '1.00',
930 'B::Stash' => '1.00',
931 'B::Terse' => '1.00',
932 'B::Xref' => '1.00',
933 'Benchmark' => '1.04',
934 'CGI' => '2.80',
935 'CGI::Apache' => '1.00',
936 'CGI::Carp' => '1.22',
937 'CGI::Cookie' => '1.20',
938 'CGI::Fast' => '1.04',
939 'CGI::Pretty' => '1.05_00',
940 'CGI::Switch' => '1.00',
941 'CGI::Util' => '1.3',
942 'CPAN' => '1.59_56',
943 'CPAN::FirstTime' => '1.54 ',
944 'CPAN::Nox' => '1.00_01',
945 'Carp' => '1.01',
e1f9e915 946 'Carp::Heavy' => '1.01',
a272bf38
DL
947 'Class::ISA' => '0.32',
948 'Class::Struct' => '0.61',
949 'Cwd' => '2.06',
950 'DB_File' => '1.804',
951 'Data::Dumper' => '2.12',
952 'Devel::DProf' => '20000000.00_01',
953 'Devel::PPPort' => '2.0002',
954 'Devel::Peek' => '1.00_03',
955 'Devel::SelfStubber' => '1.03',
956 'Digest' => '1.00',
957 'Digest::MD5' => '2.16',
958 'DirHandle' => '1.00',
959 'Dumpvalue' => '1.10',
960 'Encode' => '0.40',
961 'Encode::CN' => '0.02',
962 'Encode::CN::HZ' => undef,
963 'Encode::Encoding' => '0.02',
964 'Encode::Internal' => '0.30',
965 'Encode::JP' => '0.02',
966 'Encode::JP::Constants' => '1.02',
967 'Encode::JP::H2Z' => '0.77',
968 'Encode::JP::ISO_2022_JP'=> undef,
969 'Encode::JP::JIS' => undef,
970 'Encode::JP::Tr' => '0.77',
971 'Encode::KR' => '0.02',
972 'Encode::TW' => '0.02',
973 'Encode::Tcl' => '1.01',
974 'Encode::Tcl::Escape' => '1.01',
975 'Encode::Tcl::Extended' => '1.01',
976 'Encode::Tcl::HanZi' => '1.01',
977 'Encode::Tcl::Table' => '1.01',
978 'Encode::Unicode' => '0.30',
979 'Encode::XS' => '0.40',
980 'Encode::iso10646_1' => '0.30',
981 'Encode::usc2_le' => '0.30',
982 'Encode::utf8' => '0.30',
983 'English' => '1.00',
984 'Env' => '1.00',
985 'Exporter' => '5.566',
986 'Exporter::Heavy' => '5.562',
987 'ExtUtils::Command' => '1.02',
988 'ExtUtils::Constant' => '0.11',
989 'ExtUtils::Embed' => '1.250601',
990 'ExtUtils::Install' => '1.29',
991 'ExtUtils::Installed' => '0.04',
992 'ExtUtils::Liblist' => '1.2701',
993 'ExtUtils::MM_BeOS' => '1.00',
994 'ExtUtils::MM_Cygwin' => '1.00',
995 'ExtUtils::MM_OS2' => '1.00',
996 'ExtUtils::MM_Unix' => '1.12607',
997 'ExtUtils::MM_VMS' => '5.56',
998 'ExtUtils::MM_Win32' => '1.00_02',
999 'ExtUtils::MakeMaker' => '5.48_03',
1000 'ExtUtils::Manifest' => '1.35',
1001 'ExtUtils::Mkbootstrap' => '1.1401',
1002 'ExtUtils::Mksymlists' => '1.18',
1003 'ExtUtils::Packlist' => '0.04',
1004 'ExtUtils::testlib' => '1.1201',
1005 'Fatal' => '1.03',
1006 'Fcntl' => '1.04',
1007 'File::Basename' => '2.71',
1008 'File::CheckTree' => '4.1',
1009 'File::Compare' => '1.1003',
1010 'File::Copy' => '2.05',
1011 'File::DosGlob' => '1.00',
1012 'File::Find' => '1.04',
1013 'File::Glob' => '1.01',
1014 'File::Path' => '1.05',
1015 'File::Spec' => '0.83',
1016 'File::Spec::Cygwin' => '1.0',
1017 'File::Spec::Epoc' => '1.00',
1018 'File::Spec::Functions' => '1.2',
1019 'File::Spec::Mac' => '1.3',
1020 'File::Spec::Unix' => '1.4',
1021 'File::Spec::VMS' => '1.2',
1022 'File::Spec::Win32' => '1.3',
1023 'File::Temp' => '0.13',
1024 'File::stat' => '1.00',
1025 'FileCache' => '1.00',
1026 'FileHandle' => '2.01',
1027 'Filter::Simple' => '0.77',
1028 'Filter::Util::Call' => '1.06',
1029 'FindBin' => '1.43',
1030 'GDBM_File' => '1.06',
1031 'Getopt::Long' => '2.28',
1032 'Getopt::Std' => '1.03',
1033 'I18N::Collate' => '1.00',
1034 'I18N::LangTags' => '0.27',
1035 'I18N::LangTags::List' => '0.25',
1036 'I18N::Langinfo' => '0.01',
1037 'IO::Dir' => '1.03_00',
1038 'IO::File' => '1.09',
1039 'IO::Handle' => '1.21_00',
1040 'IO::Pipe' => '1.122',
1041 'IO::Poll' => '0.06',
1042 'IO::Seekable' => '1.08_00',
1043 'IO::Select' => '1.15',
1044 'IO::Socket' => '1.27',
1045 'IO::Socket::INET' => '1.26',
1046 'IO::Socket::UNIX' => '1.20_00',
1047 'IPC::Msg' => '1.00_00',
1048 'IPC::Open3' => '1.0104',
1049 'IPC::Semaphore' => '1.00_00',
1050 'IPC::SysV' => '1.03_00',
1051 'List::Util' => '1.06_00',
1052 'Locale::Constants' => '2.01',
1053 'Locale::Country' => '2.01',
1054 'Locale::Currency' => '2.01',
1055 'Locale::Language' => '2.01',
1056 'Locale::Maketext' => '1.03',
1057 'Locale::Script' => '2.01',
1058 'MIME::Base64' => '2.12',
1059 'MIME::QuotedPrint' => '2.03',
1060 'Math::BigFloat' => '1.30',
1061 'Math::BigInt' => '1.54',
1062 'Math::BigInt::Calc' => '0.25',
1063 'Math::Complex' => '1.34',
1064 'Math::Trig' => '1.01',
1065 'Memoize' => '0.66',
1066 'Memoize::AnyDBM_File' => '0.65',
1067 'Memoize::Expire' => '0.66',
1068 'Memoize::ExpireFile' => '0.65',
1069 'Memoize::ExpireTest' => '0.65',
1070 'Memoize::NDBM_File' => '0.65',
1071 'Memoize::SDBM_File' => '0.65',
1072 'Memoize::Storable' => '0.65',
1073 'NEXT' => '0.50',
1074 'Net::Cmd' => '2.21',
1075 'Net::Config' => '1.10',
1076 'Net::Domain' => '2.17',
1077 'Net::FTP' => '2.64',
1078 'Net::FTP::A' => '1.15',
1079 'Net::FTP::E' => '0.01',
1080 'Net::FTP::I' => '1.12',
1081 'Net::FTP::L' => '0.01',
1082 'Net::FTP::dataconn' => '0.10',
1083 'Net::NNTP' => '2.21',
1084 'Net::Netrc' => '2.12',
1085 'Net::POP3' => '2.23',
1086 'Net::Ping' => '2.12',
1087 'Net::SMTP' => '2.21',
1088 'Net::Time' => '2.09',
1089 'Net::hostent' => '1.00',
1090 'Net::netent' => '1.00',
1091 'Net::protoent' => '1.00',
1092 'Net::servent' => '1.00',
1093 'O' => '1.00',
1094 'OS2::DLL' => '1.00',
1095 'OS2::Process' => '1.0',
1096 'OS2::REXX' => '1.01',
1097 'Opcode' => '1.05',
1098 'POSIX' => '1.05',
1099 'PerlIO' => '1.00',
1100 'PerlIO::Scalar' => '0.01',
1101 'PerlIO::Via' => '0.01',
1102 'Pod::Checker' => '1.3',
1103 'Pod::Find' => '0.22',
1104 'Pod::Functions' => '1.01',
1105 'Pod::Html' => '1.04',
1106 'Pod::LaTeX' => '0.54',
1107 'Pod::Man' => '1.32',
1108 'Pod::ParseLink' => '1.05',
1109 'Pod::Text' => '2.18',
1110 'Pod::Text::Color' => '1.03',
1111 'Pod::Text::Overstrike' => '1.08',
1112 'Pod::Text::Termcap' => '1.09',
1113 'Safe' => '2.07',
6b27384d 1114 'Scalar::Util' => '1.06_00',
a272bf38
DL
1115 'Search::Dict' => '1.02',
1116 'SelectSaver' => '1.00',
1117 'SelfLoader' => '1.0903',
1118 'Shell' => '0.4',
1119 'Socket' => '1.75',
1120 'Storable' => '1.015',
1121 'Switch' => '2.06',
1122 'Symbol' => '1.04',
1123 'Sys::Syslog' => '0.02',
1124 'Term::ANSIColor' => '1.04',
1125 'Term::Cap' => '1.07',
1126 'Term::Complete' => '1.4',
1127 'Term::ReadLine' => '1.00',
1128 'Test' => '1.18',
1129 'Test::Builder' => '0.11',
1130 'Test::Harness' => '2.01',
1131 'Test::Harness::Assert' => '0.01',
1132 'Test::Harness::Iterator'=> '0.01',
1133 'Test::Harness::Straps' => '0.08',
1134 'Test::More' => '0.41',
1135 'Test::Simple' => '0.41',
1136 'Text::Abbrev' => '1.00',
1137 'Text::Balanced' => '1.89',
1138 'Text::ParseWords' => '3.21',
1139 'Text::Soundex' => '1.01',
1140 'Text::Wrap' => '2001.0929',
1141 'Thread' => '2.00',
1142 'Thread::Queue' => '1.00',
1143 'Thread::Semaphore' => '1.00',
1144 'Thread::Signal' => '1.00',
1145 'Thread::Specific' => '1.00',
1146 'Tie::Array' => '1.02',
1147 'Tie::File' => '0.17',
1148 'Tie::Handle' => '4.1',
1149 'Tie::Hash' => '1.00',
1150 'Tie::Memoize' => '1.0',
1151 'Tie::RefHash' => '1.3_00',
1152 'Tie::Scalar' => '1.00',
1153 'Tie::SubstrHash' => '1.00',
1154 'Time::HiRes' => '1.20_00',
1155 'Time::Local' => '1.04',
1156 'Time::gmtime' => '1.02',
1157 'Time::localtime' => '1.02',
1158 'Time::tm' => '1.00',
1159 'UNIVERSAL' => '1.00',
1160 'Unicode::Collate' => '0.10',
1161 'Unicode::Normalize' => '0.14',
1162 'Unicode::UCD' => '0.2',
1163 'User::grent' => '1.00',
1164 'User::pwent' => '1.00',
1165 'VMS::DCLsym' => '1.02',
1166 'VMS::Filespec' => '1.1',
1167 'VMS::Stdio' => '2.3',
1168 'XS::Typemap' => '0.01',
1169 'attributes' => '0.04_01',
1170 'attrs' => '1.01',
1171 'autouse' => '1.03',
1172 'base' => '1.02',
1173 'blib' => '1.01',
1174 'bytes' => '1.00',
1175 'charnames' => '1.01',
1176 'constant' => '1.04',
1177 'diagnostics' => '1.1',
1178 'encoding' => '1.00',
1179 'fields' => '1.02',
1180 'filetest' => '1.00',
1181 'if' => '0.01',
1182 'integer' => '1.00',
1183 'less' => '0.01',
1184 'locale' => '1.00',
1185 'open' => '1.01',
1186 'ops' => '1.00',
1187 'overload' => '1.00',
1188 're' => '0.03',
1189 'sort' => '1.00',
1190 'strict' => '1.02',
1191 'subs' => '1.00',
1192 'threads' => '0.05',
1193 'threads::shared' => '0.90',
1194 'utf8' => '1.00',
1195 'vars' => '1.01',
1196 'vmsish' => '1.00',
1197 'warnings' => '1.00',
1198 'warnings::register' => '1.00',
1199 },
1200 removed => {
a272bf38 1201 }
8f2fd531 1202 },
a272bf38
DL
1203 5.008 => {
1204 delta_from => 5.007003,
1205 changed => {
1206 'Attribute::Handlers' => '0.77',
1207 'B' => '1.01',
1208 'B::Lint' => '1.01',
1209 'B::Xref' => '1.01',
1210 'CGI' => '2.81',
1211 'CGI::Carp' => '1.23',
1212 'CPAN' => '1.61',
1213 'CPAN::FirstTime' => '1.56 ',
1214 'CPAN::Nox' => '1.02',
a272bf38
DL
1215 'Digest::MD5' => '2.20',
1216 'Dumpvalue' => '1.11',
1217 'Encode' => '1.75',
1218 'Encode::Alias' => '1.32',
1219 'Encode::Byte' => '1.22',
1220 'Encode::CJKConstants' => '1.00',
1221 'Encode::CN' => '1.24',
1222 'Encode::CN::HZ' => '1.04',
1223 'Encode::Config' => '1.06',
1224 'Encode::EBCDIC' => '1.21',
1225 'Encode::Encoder' => '0.05',
1226 'Encode::Encoding' => '1.30',
1227 'Encode::Guess' => '1.06',
1228 'Encode::JP' => '1.25',
1229 'Encode::JP::H2Z' => '1.02',
1230 'Encode::JP::JIS7' => '1.08',
1231 'Encode::KR' => '1.22',
1232 'Encode::KR::2022_KR' => '1.05',
1233 'Encode::MIME::Header' => '1.05',
1234 'Encode::Symbol' => '1.22',
1235 'Encode::TW' => '1.26',
1236 'Encode::Unicode' => '1.37',
1237 'Exporter::Heavy' => '5.566',
1238 'ExtUtils::Command' => '1.04',
1239 'ExtUtils::Command::MM' => '0.01',
1240 'ExtUtils::Constant' => '0.12',
1241 'ExtUtils::Installed' => '0.06',
1242 'ExtUtils::Liblist' => '1.00',
1243 'ExtUtils::Liblist::Kid'=> '1.29',
1244 'ExtUtils::MM' => '0.04',
1245 'ExtUtils::MM_Any' => '0.04',
1246 'ExtUtils::MM_BeOS' => '1.03',
1247 'ExtUtils::MM_Cygwin' => '1.04',
1248 'ExtUtils::MM_DOS' => '0.01',
1249 'ExtUtils::MM_MacOS' => '1.03',
1250 'ExtUtils::MM_NW5' => '2.05',
1251 'ExtUtils::MM_OS2' => '1.03',
1252 'ExtUtils::MM_UWIN' => '0.01',
1253 'ExtUtils::MM_Unix' => '1.33',
1254 'ExtUtils::MM_VMS' => '5.65',
1255 'ExtUtils::MM_Win32' => '1.05',
1256 'ExtUtils::MM_Win95' => '0.02',
1257 'ExtUtils::MY' => '0.01',
1258 'ExtUtils::MakeMaker' => '6.03',
1259 'ExtUtils::Manifest' => '1.38',
1260 'ExtUtils::Mkbootstrap' => '1.15',
1261 'ExtUtils::Mksymlists' => '1.19',
1262 'ExtUtils::testlib' => '1.15',
1263 'File::CheckTree' => '4.2',
1264 'FileCache' => '1.021',
1265 'Filter::Simple' => '0.78',
1266 'Getopt::Long' => '2.32',
1267 'Hash::Util' => '0.04',
1268 'List::Util' => '1.07_00',
1269 'Locale::Country' => '2.04',
1270 'Math::BigFloat' => '1.35',
1271 'Math::BigFloat::Trace' => '0.01',
1272 'Math::BigInt' => '1.60',
1273 'Math::BigInt::Calc' => '0.30',
1274 'Math::BigInt::Trace' => '0.01',
1275 'Math::BigRat' => '0.07',
1276 'Memoize' => '1.01',
1277 'Memoize::Expire' => '1.00',
1278 'Memoize::ExpireFile' => '1.01',
1279 'Net::FTP' => '2.65',
1280 'Net::FTP::dataconn' => '0.11',
1281 'Net::Ping' => '2.19',
1282 'Net::SMTP' => '2.24',
1283 'PerlIO' => '1.01',
1284 'PerlIO::encoding' => '0.06',
1285 'PerlIO::scalar' => '0.01',
1286 'PerlIO::via' => '0.01',
1287 'PerlIO::via::QuotedPrint'=> '0.04',
1288 'Pod::Man' => '1.33',
1289 'Pod::Text' => '2.19',
6b27384d 1290 'Scalar::Util' => '1.07_00',
a272bf38
DL
1291 'Storable' => '2.04',
1292 'Switch' => '2.09',
1293 'Sys::Syslog' => '0.03',
1294 'Test' => '1.20',
1295 'Test::Builder' => '0.15',
1296 'Test::Harness' => '2.26',
1297 'Test::Harness::Straps' => '0.14',
1298 'Test::More' => '0.45',
1299 'Test::Simple' => '0.45',
1300 'Thread::Queue' => '2.00',
1301 'Thread::Semaphore' => '2.00',
1302 'Tie::File' => '0.93',
1303 'Tie::RefHash' => '1.30',
1304 'Unicode' => '3.2.0',
1305 'Unicode::Collate' => '0.12',
1306 'Unicode::Normalize' => '0.17',
1307 'XS::APItest' => '0.01',
1308 'attributes' => '0.05',
1309 'base' => '1.03',
1310 'bigint' => '0.02',
1311 'bignum' => '0.11',
1312 'bigrat' => '0.04',
1313 'blib' => '1.02',
1314 'encoding' => '1.35',
1315 'sort' => '1.01',
1316 'threads' => '0.99',
1317 },
1318 removed => {
1319 'Encode::Internal' => 1,
1320 'Encode::JP::Constants' => 1,
1321 'Encode::JP::ISO_2022_JP'=> 1,
1322 'Encode::JP::JIS' => 1,
1323 'Encode::JP::Tr' => 1,
1324 'Encode::Tcl' => 1,
1325 'Encode::Tcl::Escape' => 1,
1326 'Encode::Tcl::Extended' => 1,
1327 'Encode::Tcl::HanZi' => 1,
1328 'Encode::Tcl::Table' => 1,
1329 'Encode::XS' => 1,
1330 'Encode::iso10646_1' => 1,
1331 'Encode::usc2_le' => 1,
1332 'Encode::utf8' => 1,
1333 'PerlIO::Scalar' => 1,
1334 'PerlIO::Via' => 1,
1335 }
8f2fd531 1336 },
8f2fd531 1337 5.008001 => {
a272bf38
DL
1338 delta_from => 5.008,
1339 changed => {
1340 'Attribute::Handlers' => '0.78',
1341 'AutoLoader' => '5.60',
1342 'AutoSplit' => '1.04',
1343 'B' => '1.02',
1344 'B::Asmdata' => '1.01',
1345 'B::Assembler' => '0.06',
1346 'B::Bblock' => '1.02',
1347 'B::Bytecode' => '1.01',
1348 'B::C' => '1.02',
1349 'B::Concise' => '0.56',
1350 'B::Debug' => '1.01',
1351 'B::Deparse' => '0.64',
1352 'B::Disassembler' => '1.03',
1353 'B::Lint' => '1.02',
1354 'B::Terse' => '1.02',
1355 'Benchmark' => '1.051',
1356 'ByteLoader' => '0.05',
1357 'CGI' => '3.00',
1358 'CGI::Carp' => '1.26',
1359 'CGI::Cookie' => '1.24',
1360 'CGI::Fast' => '1.041',
1361 'CGI::Pretty' => '1.07_00',
1362 'CGI::Util' => '1.31',
1363 'CPAN' => '1.76_01',
1364 'CPAN::FirstTime' => '1.60 ',
1365 'CPAN::Nox' => '1.03',
a272bf38
DL
1366 'Class::Struct' => '0.63',
1367 'Cwd' => '2.08',
1368 'DB_File' => '1.806',
1369 'Data::Dumper' => '2.121',
1370 'Devel::DProf' => '20030813.00',
1371 'Devel::PPPort' => '2.007',
1372 'Devel::Peek' => '1.01',
1373 'Digest' => '1.02',
1374 'Digest::MD5' => '2.27',
1375 'Encode' => '1.9801',
1376 'Encode::Alias' => '1.38',
1377 'Encode::Byte' => '1.23',
1378 'Encode::CJKConstants' => '1.02',
1379 'Encode::CN::HZ' => '1.05',
1380 'Encode::Config' => '1.07',
1381 'Encode::Encoder' => '0.07',
1382 'Encode::Encoding' => '1.33',
1383 'Encode::Guess' => '1.09',
1384 'Encode::JP::JIS7' => '1.12',
1385 'Encode::KR' => '1.23',
1386 'Encode::KR::2022_KR' => '1.06',
1387 'Encode::MIME::Header' => '1.09',
1388 'Encode::Unicode' => '1.40',
1389 'Encode::Unicode::UTF7' => '0.02',
1390 'English' => '1.01',
1391 'Errno' => '1.09_00',
1392 'Exporter' => '5.567',
1393 'Exporter::Heavy' => '5.567',
1394 'ExtUtils::Command' => '1.05',
1395 'ExtUtils::Command::MM' => '0.03',
1396 'ExtUtils::Constant' => '0.14',
1397 'ExtUtils::Install' => '1.32',
1398 'ExtUtils::Installed' => '0.08',
1399 'ExtUtils::Liblist' => '1.01',
1400 'ExtUtils::Liblist::Kid'=> '1.3',
1401 'ExtUtils::MM_Any' => '0.07',
1402 'ExtUtils::MM_BeOS' => '1.04',
1403 'ExtUtils::MM_Cygwin' => '1.06',
1404 'ExtUtils::MM_DOS' => '0.02',
1405 'ExtUtils::MM_MacOS' => '1.07',
1406 'ExtUtils::MM_NW5' => '2.06',
1407 'ExtUtils::MM_OS2' => '1.04',
1408 'ExtUtils::MM_UWIN' => '0.02',
1409 'ExtUtils::MM_Unix' => '1.42',
1410 'ExtUtils::MM_VMS' => '5.70',
1411 'ExtUtils::MM_Win32' => '1.09',
1412 'ExtUtils::MM_Win95' => '0.03',
1413 'ExtUtils::MakeMaker' => '6.17',
1414 'ExtUtils::MakeMaker::bytes'=> '0.01',
1415 'ExtUtils::MakeMaker::vmsish'=> '0.01',
1416 'ExtUtils::Manifest' => '1.42',
1417 'Fcntl' => '1.05',
1418 'File::Basename' => '2.72',
1419 'File::Copy' => '2.06',
1420 'File::Find' => '1.05',
1421 'File::Glob' => '1.02',
1422 'File::Path' => '1.06',
1423 'File::Spec' => '0.86',
1424 'File::Spec::Cygwin' => '1.1',
1425 'File::Spec::Epoc' => '1.1',
1426 'File::Spec::Functions' => '1.3',
1427 'File::Spec::Mac' => '1.4',
1428 'File::Spec::OS2' => '1.2',
1429 'File::Spec::Unix' => '1.5',
1430 'File::Spec::VMS' => '1.4',
1431 'File::Spec::Win32' => '1.4',
1432 'File::Temp' => '0.14',
1433 'FileCache' => '1.03',
1434 'Filter::Util::Call' => '1.0601',
1435 'GDBM_File' => '1.07',
1436 'Getopt::Long' => '2.34',
1437 'Getopt::Std' => '1.04',
1438 'Hash::Util' => '0.05',
1439 'I18N::LangTags' => '0.28',
1440 'I18N::LangTags::List' => '0.26',
1441 'I18N::Langinfo' => '0.02',
1442 'IO' => '1.21',
1443 'IO::Dir' => '1.04',
1444 'IO::File' => '1.10',
1445 'IO::Handle' => '1.23',
1446 'IO::Seekable' => '1.09',
1447 'IO::Select' => '1.16',
1448 'IO::Socket' => '1.28',
1449 'IO::Socket::INET' => '1.27',
1450 'IO::Socket::UNIX' => '1.21',
1451 'IPC::Msg' => '1.02',
1452 'IPC::Open3' => '1.0105',
1453 'IPC::Semaphore' => '1.02',
1454 'IPC::SysV' => '1.04',
1455 'JNI' => '0.2',
1456 'List::Util' => '1.13',
1457 'Locale::Country' => '2.61',
1458 'Locale::Currency' => '2.21',
1459 'Locale::Language' => '2.21',
1460 'Locale::Maketext' => '1.06',
1461 'Locale::Maketext::Guts'=> undef,
1462 'Locale::Maketext::GutsLoader'=> undef,
1463 'Locale::Script' => '2.21',
1464 'MIME::Base64' => '2.20',
1465 'MIME::QuotedPrint' => '2.20',
1466 'Math::BigFloat' => '1.40',
1467 'Math::BigInt' => '1.66',
1468 'Math::BigInt::Calc' => '0.36',
1469 'Math::BigInt::Scalar' => '0.11',
1470 'Math::BigRat' => '0.10',
1471 'Math::Trig' => '1.02',
1472 'NDBM_File' => '1.05',
1473 'NEXT' => '0.60',
1474 'Net::Cmd' => '2.24',
1475 'Net::Domain' => '2.18',
1476 'Net::FTP' => '2.71',
1477 'Net::FTP::A' => '1.16',
1478 'Net::NNTP' => '2.22',
1479 'Net::POP3' => '2.24',
1480 'Net::Ping' => '2.31',
1481 'Net::SMTP' => '2.26',
1482 'Net::hostent' => '1.01',
1483 'Net::servent' => '1.01',
1484 'ODBM_File' => '1.04',
1485 'OS2::DLL' => '1.01',
1486 'OS2::ExtAttr' => '0.02',
1487 'OS2::PrfDB' => '0.03',
1488 'OS2::Process' => '1.01',
1489 'OS2::REXX' => '1.02',
1490 'POSIX' => '1.06',
1491 'PerlIO' => '1.02',
1492 'PerlIO::encoding' => '0.07',
1493 'PerlIO::scalar' => '0.02',
1494 'PerlIO::via' => '0.02',
1495 'PerlIO::via::QuotedPrint'=> '0.05',
1496 'Pod::Checker' => '1.41',
1497 'Pod::Find' => '0.24',
1498 'Pod::Functions' => '1.02',
1499 'Pod::Html' => '1.0501',
1500 'Pod::InputObjects' => '1.14',
1501 'Pod::LaTeX' => '0.55',
1502 'Pod::Man' => '1.37',
1503 'Pod::ParseLink' => '1.06',
1504 'Pod::ParseUtils' => '0.3',
1505 'Pod::Perldoc' => '3.10',
1506 'Pod::Perldoc::BaseTo' => undef,
1507 'Pod::Perldoc::GetOptsOO'=> undef,
1508 'Pod::Perldoc::ToChecker'=> undef,
1509 'Pod::Perldoc::ToMan' => undef,
1510 'Pod::Perldoc::ToNroff' => undef,
1511 'Pod::Perldoc::ToPod' => undef,
1512 'Pod::Perldoc::ToRtf' => undef,
1513 'Pod::Perldoc::ToText' => undef,
4121f36a 1514 'Pod::Perldoc::ToTk' => undef,
a272bf38
DL
1515 'Pod::Perldoc::ToXml' => undef,
1516 'Pod::PlainText' => '2.01',
1517 'Pod::Text' => '2.21',
1518 'Pod::Text::Color' => '1.04',
1519 'Pod::Text::Overstrike' => '1.1',
1520 'Pod::Text::Termcap' => '1.11',
1521 'Pod::Usage' => '1.16',
1522 'SDBM_File' => '1.04',
1523 'Safe' => '2.10',
1524 'Scalar::Util' => '1.13',
1525 'SelfLoader' => '1.0904',
1526 'Shell' => '0.5',
1527 'Socket' => '1.76',
1528 'Storable' => '2.08',
1529 'Switch' => '2.10',
1530 'Symbol' => '1.05',
1531 'Sys::Hostname' => '1.11',
1532 'Sys::Syslog' => '0.04',
1533 'Term::ANSIColor' => '1.07',
1534 'Term::Cap' => '1.08',
1535 'Term::Complete' => '1.401',
1536 'Term::ReadLine' => '1.01',
1537 'Test' => '1.24',
1538 'Test::Builder' => '0.17',
1539 'Test::Harness' => '2.30',
1540 'Test::Harness::Straps' => '0.15',
1541 'Test::More' => '0.47',
1542 'Test::Simple' => '0.47',
1543 'Text::Abbrev' => '1.01',
1544 'Text::Balanced' => '1.95',
1545 'Text::Wrap' => '2001.09291',
1546 'Thread::Semaphore' => '2.01',
1547 'Tie::Array' => '1.03',
1548 'Tie::File' => '0.97',
1549 'Tie::RefHash' => '1.31',
1550 'Time::HiRes' => '1.51',
1551 'Time::Local' => '1.07',
1552 'UNIVERSAL' => '1.01',
1553 'Unicode' => '4.0.0',
1554 'Unicode::Collate' => '0.28',
1555 'Unicode::Normalize' => '0.23',
1556 'Unicode::UCD' => '0.21',
1557 'VMS::Filespec' => '1.11',
1558 'XS::APItest' => '0.02',
1559 'XSLoader' => '0.02',
1560 'attributes' => '0.06',
1561 'base' => '2.03',
1562 'bigint' => '0.04',
1563 'bignum' => '0.14',
1564 'bigrat' => '0.06',
1565 'bytes' => '1.01',
1566 'charnames' => '1.02',
1567 'diagnostics' => '1.11',
1568 'encoding' => '1.47',
1569 'fields' => '2.03',
1570 'filetest' => '1.01',
1571 'if' => '0.03',
1572 'lib' => '0.5565',
1573 'open' => '1.02',
1574 'overload' => '1.01',
1575 're' => '0.04',
1576 'sort' => '1.02',
1577 'strict' => '1.03',
1578 'threads' => '1.00',
1579 'threads::shared' => '0.91',
1580 'utf8' => '1.02',
1581 'vmsish' => '1.01',
1582 'warnings' => '1.03',
1583 },
1584 removed => {
1585 }
8f2fd531 1586 },
8f2fd531 1587 5.008002 => {
a272bf38
DL
1588 delta_from => 5.008001,
1589 changed => {
1590 'DB_File' => '1.807',
1591 'Devel::PPPort' => '2.009',
1592 'Digest::MD5' => '2.30',
1593 'I18N::LangTags' => '0.29',
1594 'I18N::LangTags::List' => '0.29',
1595 'MIME::Base64' => '2.21',
1596 'MIME::QuotedPrint' => '2.21',
1597 'Net::Domain' => '2.19',
1598 'Net::FTP' => '2.72',
1599 'Pod::Perldoc' => '3.11',
a272bf38
DL
1600 'Time::HiRes' => '1.52',
1601 'Unicode::Collate' => '0.30',
1602 'Unicode::Normalize' => '0.25',
1603 },
1604 removed => {
1605 }
8f2fd531 1606 },
ad91da88 1607 5.008003 => {
a272bf38
DL
1608 delta_from => 5.008002,
1609 changed => {
1610 'Benchmark' => '1.052',
1611 'CGI' => '3.01',
1612 'CGI::Carp' => '1.27',
1613 'CGI::Fast' => '1.05',
1614 'CGI::Pretty' => '1.08',
1615 'CGI::Util' => '1.4',
1616 'Cwd' => '2.12',
1617 'DB_File' => '1.808',
1618 'Devel::PPPort' => '2.011',
1619 'Digest' => '1.05',
1620 'Digest::MD5' => '2.33',
1621 'Digest::base' => '1.00',
1622 'Encode' => '1.99',
1623 'Exporter' => '5.57',
1624 'File::CheckTree' => '4.3',
1625 'File::Copy' => '2.07',
1626 'File::Find' => '1.06',
1627 'File::Spec' => '0.87',
1628 'FindBin' => '1.44',
1629 'Getopt::Std' => '1.05',
1630 'Math::BigFloat' => '1.42',
1631 'Math::BigInt' => '1.68',
1632 'Math::BigInt::Calc' => '0.38',
1633 'Math::BigInt::CalcEmu' => '0.02',
1634 'OS2::DLL' => '1.02',
1635 'POSIX' => '1.07',
1636 'PerlIO' => '1.03',
1637 'PerlIO::via::QuotedPrint'=> '0.06',
1638 'Pod::Html' => '1.0502',
1639 'Pod::Parser' => '1.14',
1640 'Pod::Perldoc' => '3.12',
a272bf38
DL
1641 'Pod::PlainText' => '2.02',
1642 'Storable' => '2.09',
1643 'Test::Harness' => '2.40',
1644 'Test::Harness::Assert' => '0.02',
1645 'Test::Harness::Iterator'=> '0.02',
1646 'Test::Harness::Straps' => '0.19',
1647 'Tie::Hash' => '1.01',
1648 'Unicode::Collate' => '0.33',
1649 'Unicode::Normalize' => '0.28',
1650 'XS::APItest' => '0.03',
1651 'base' => '2.04',
1652 'diagnostics' => '1.12',
1653 'encoding' => '1.48',
1654 'threads' => '1.01',
1655 'threads::shared' => '0.92',
1656 },
1657 removed => {
1658 'Math::BigInt::Scalar' => 1,
1659 }
8f2fd531
JB
1660 },
1661 5.008004 => {
a272bf38
DL
1662 delta_from => 5.008003,
1663 changed => {
1664 'Attribute::Handlers' => '0.78_01',
1665 'B::Assembler' => '0.07',
1666 'B::Concise' => '0.60',
1667 'B::Deparse' => '0.66',
1668 'Benchmark' => '1.06',
1669 'CGI' => '3.04',
1670 'Carp' => '1.02',
1671 'Cwd' => '2.17',
1672 'DBM_Filter' => '0.01',
1673 'DBM_Filter::compress' => '0.01',
1674 'DBM_Filter::encode' => '0.01',
1675 'DBM_Filter::int32' => '0.01',
1676 'DBM_Filter::null' => '0.01',
1677 'DBM_Filter::utf8' => '0.01',
1678 'Digest' => '1.06',
1679 'DynaLoader' => '1.05',
1680 'Encode' => '1.99_01',
1681 'Encode::CN::HZ' => '1.0501',
1682 'Exporter' => '5.58',
1683 'Exporter::Heavy' => '5.57',
1684 'ExtUtils::Liblist::Kid'=> '1.3001',
1685 'ExtUtils::MM_NW5' => '2.07_02',
1686 'ExtUtils::MM_Win95' => '0.0301',
1687 'File::Find' => '1.07',
1688 'IO::Handle' => '1.24',
1689 'IO::Pipe' => '1.123',
1690 'IPC::Open3' => '1.0106',
1691 'Locale::Maketext' => '1.08',
1692 'MIME::Base64' => '3.01',
1693 'MIME::QuotedPrint' => '3.01',
1694 'Math::BigFloat' => '1.44',
1695 'Math::BigInt' => '1.70',
1696 'Math::BigInt::Calc' => '0.40',
1697 'Math::BigInt::CalcEmu' => '0.04',
1698 'Math::BigRat' => '0.12',
1699 'ODBM_File' => '1.05',
1700 'POSIX' => '1.08',
1701 'Shell' => '0.5.2',
1702 'Socket' => '1.77',
1703 'Storable' => '2.12',
1704 'Sys::Syslog' => '0.05',
1705 'Term::ANSIColor' => '1.08',
1706 'Time::HiRes' => '1.59',
1707 'Unicode' => '4.0.1',
1708 'Unicode::UCD' => '0.22',
1709 'base' => '2.05',
1710 'bigint' => '0.05',
1711 'bignum' => '0.15',
1712 'charnames' => '1.03',
1713 'open' => '1.03',
1714 'threads' => '1.03',
1715 'utf8' => '1.03',
1716 },
1717 removed => {
1718 }
8f2fd531 1719 },
ad91da88 1720 5.008005 => {
a272bf38
DL
1721 delta_from => 5.008004,
1722 changed => {
1723 'B::Concise' => '0.61',
1724 'B::Deparse' => '0.67',
1725 'CGI' => '3.05',
1726 'CGI::Carp' => '1.28',
1727 'CGI::Util' => '1.5',
1728 'Carp' => '1.03',
e1f9e915 1729 'Carp::Heavy' => '1.03',
a272bf38
DL
1730 'Cwd' => '2.19',
1731 'DB_File' => '1.809',
1732 'Digest' => '1.08',
1733 'Encode' => '2.01',
1734 'Encode::Alias' => '2.00',
1735 'Encode::Byte' => '2.00',
1736 'Encode::CJKConstants' => '2.00',
1737 'Encode::CN' => '2.00',
1738 'Encode::CN::HZ' => '2.01',
1739 'Encode::Config' => '2.00',
1740 'Encode::EBCDIC' => '2.00',
1741 'Encode::Encoder' => '2.00',
1742 'Encode::Encoding' => '2.00',
1743 'Encode::Guess' => '2.00',
1744 'Encode::JP' => '2.00',
1745 'Encode::JP::H2Z' => '2.00',
1746 'Encode::JP::JIS7' => '2.00',
1747 'Encode::KR' => '2.00',
1748 'Encode::KR::2022_KR' => '2.00',
1749 'Encode::MIME::Header' => '2.00',
1750 'Encode::Symbol' => '2.00',
1751 'Encode::TW' => '2.00',
1752 'Encode::Unicode' => '2.00',
1753 'Encode::Unicode::UTF7' => '2.01',
1754 'File::Basename' => '2.73',
1755 'File::Copy' => '2.08',
1756 'File::Glob' => '1.03',
1757 'FileCache' => '1.04_01',
1758 'I18N::LangTags' => '0.33',
1759 'I18N::LangTags::Detect'=> '1.03',
1760 'List::Util' => '1.14',
1761 'Locale::Constants' => '2.07',
1762 'Locale::Country' => '2.07',
1763 'Locale::Currency' => '2.07',
1764 'Locale::Language' => '2.07',
1765 'Locale::Maketext' => '1.09',
1766 'Locale::Script' => '2.07',
1767 'Net::Cmd' => '2.26',
1768 'Net::FTP' => '2.75',
1769 'Net::NNTP' => '2.23',
1770 'Net::POP3' => '2.28',
1771 'Net::SMTP' => '2.29',
1772 'Net::Time' => '2.10',
1773 'Pod::Checker' => '1.42',
1774 'Pod::Find' => '0.2401',
1775 'Pod::LaTeX' => '0.56',
1776 'Pod::ParseUtils' => '1.2',
1777 'Pod::Perldoc' => '3.13',
1778 'Safe' => '2.11',
1779 'Scalar::Util' => '1.14',
1780 'Shell' => '0.6',
1781 'Storable' => '2.13',
1782 'Term::Cap' => '1.09',
1783 'Test' => '1.25',
1784 'Test::Harness' => '2.42',
1785 'Text::ParseWords' => '3.22',
1786 'Text::Wrap' => '2001.09292',
1787 'Time::Local' => '1.10',
1788 'Unicode::Collate' => '0.40',
1789 'Unicode::Normalize' => '0.30',
1790 'XS::APItest' => '0.04',
1791 'autouse' => '1.04',
1792 'base' => '2.06',
1793 'charnames' => '1.04',
1794 'diagnostics' => '1.13',
1795 'encoding' => '2.00',
1796 'threads' => '1.05',
1797 'utf8' => '1.04',
1798 },
1799 removed => {
1800 }
8f2fd531
JB
1801 },
1802 5.008006 => {
a272bf38
DL
1803 delta_from => 5.008005,
1804 changed => {
1805 'B' => '1.07',
1806 'B::C' => '1.04',
1807 'B::Concise' => '0.64',
1808 'B::Debug' => '1.02',
1809 'B::Deparse' => '0.69',
1810 'B::Lint' => '1.03',
1811 'B::Showlex' => '1.02',
a272bf38
DL
1812 'Cwd' => '3.01',
1813 'DB_File' => '1.810',
1814 'Data::Dumper' => '2.121_02',
1815 'Devel::PPPort' => '3.03',
1816 'Devel::Peek' => '1.02',
1817 'Encode' => '2.08',
1818 'Encode::Alias' => '2.02',
1819 'Encode::Encoding' => '2.02',
1820 'Encode::JP' => '2.01',
1821 'Encode::Unicode' => '2.02',
1822 'Exporter::Heavy' => '5.58',
1823 'ExtUtils::Constant' => '0.1401',
1824 'File::Spec' => '3.01',
1825 'File::Spec::Win32' => '1.5',
1826 'I18N::LangTags' => '0.35',
1827 'I18N::LangTags::List' => '0.35',
1828 'MIME::Base64' => '3.05',
1829 'MIME::QuotedPrint' => '3.03',
1830 'Math::BigFloat' => '1.47',
1831 'Math::BigInt' => '1.73',
1832 'Math::BigInt::Calc' => '0.43',
1833 'Math::BigRat' => '0.13',
1834 'Text::ParseWords' => '3.23',
1835 'Time::HiRes' => '1.65',
1836 'XS::APItest' => '0.05',
1837 'diagnostics' => '1.14',
1838 'encoding' => '2.01',
1839 'open' => '1.04',
1840 'overload' => '1.02',
1841 },
1842 removed => {
1843 }
c9600ef6 1844 },
cda59a31 1845 5.008007 => {
a272bf38
DL
1846 delta_from => 5.008006,
1847 changed => {
1848 'B' => '1.09',
1849 'B::Concise' => '0.65',
1850 'B::Deparse' => '0.7',
1851 'B::Disassembler' => '1.04',
1852 'B::Terse' => '1.03',
1853 'Benchmark' => '1.07',
1854 'CGI' => '3.10',
1855 'CGI::Carp' => '1.29',
1856 'CGI::Cookie' => '1.25',
1857 'Carp' => '1.04',
1858 'Carp::Heavy' => '1.04',
1859 'Class::ISA' => '0.33',
1860 'Cwd' => '3.05',
1861 'DB_File' => '1.811',
1862 'Data::Dumper' => '2.121_04',
1863 'Devel::DProf' => '20050310.00',
1864 'Devel::PPPort' => '3.06',
1865 'Digest' => '1.10',
1866 'Digest::file' => '0.01',
1867 'Encode' => '2.10',
1868 'Encode::Alias' => '2.03',
1869 'Errno' => '1.09_01',
1870 'ExtUtils::Constant' => '0.16',
1871 'ExtUtils::Constant::Base'=> '0.01',
1872 'ExtUtils::Constant::Utils'=> '0.01',
1873 'ExtUtils::Constant::XS'=> '0.01',
1874 'File::Find' => '1.09',
1875 'File::Glob' => '1.04',
1876 'File::Path' => '1.07',
1877 'File::Spec' => '3.05',
1878 'File::Temp' => '0.16',
1879 'FileCache' => '1.05',
1880 'IO::File' => '1.11',
1881 'IO::Socket::INET' => '1.28',
1882 'Math::BigFloat' => '1.51',
1883 'Math::BigInt' => '1.77',
1884 'Math::BigInt::Calc' => '0.47',
1885 'Math::BigInt::CalcEmu' => '0.05',
1886 'Math::BigRat' => '0.15',
1887 'Pod::Find' => '1.3',
1888 'Pod::Html' => '1.0503',
1889 'Pod::InputObjects' => '1.3',
1890 'Pod::LaTeX' => '0.58',
1891 'Pod::ParseUtils' => '1.3',
1892 'Pod::Parser' => '1.3',
1893 'Pod::Perldoc' => '3.14',
a272bf38
DL
1894 'Pod::Select' => '1.3',
1895 'Pod::Usage' => '1.3',
1896 'SelectSaver' => '1.01',
1897 'Symbol' => '1.06',
1898 'Sys::Syslog' => '0.06',
1899 'Term::ANSIColor' => '1.09',
1900 'Term::Complete' => '1.402',
1901 'Test::Builder' => '0.22',
1902 'Test::Harness' => '2.48',
1903 'Test::Harness::Point' => '0.01',
1904 'Test::Harness::Straps' => '0.23',
1905 'Test::More' => '0.54',
1906 'Test::Simple' => '0.54',
1907 'Text::ParseWords' => '3.24',
1908 'Text::Wrap' => '2001.09293',
1909 'Tie::RefHash' => '1.32',
1910 'Time::HiRes' => '1.66',
1911 'Time::Local' => '1.11',
1912 'Unicode' => '4.1.0',
1913 'Unicode::Normalize' => '0.32',
1914 'Unicode::UCD' => '0.23',
1915 'Win32' => '0.24',
1916 'XS::APItest' => '0.06',
1917 'base' => '2.07',
1918 'bigint' => '0.07',
1919 'bignum' => '0.17',
1920 'bigrat' => '0.08',
1921 'bytes' => '1.02',
1922 'constant' => '1.05',
1923 'overload' => '1.03',
1924 'threads::shared' => '0.93',
1925 'utf8' => '1.05',
1926 },
1927 removed => {
1928 'JNI' => 1,
1929 'JPL::AutoLoader' => 1,
1930 'JPL::Class' => 1,
1931 'JPL::Compile' => 1,
1932 'OS2::DLL' => 1,
1933 'OS2::ExtAttr' => 1,
1934 'OS2::PrfDB' => 1,
1935 'OS2::Process' => 1,
1936 'OS2::REXX' => 1,
1937 }
f372d768
RGS
1938 },
1939 5.008008 => {
a272bf38
DL
1940 delta_from => 5.008007,
1941 changed => {
1942 'Attribute::Handlers' => '0.78_02',
1943 'B' => '1.09_01',
1944 'B::Bblock' => '1.02_01',
1945 'B::Bytecode' => '1.01_01',
1946 'B::C' => '1.04_01',
1947 'B::CC' => '1.00_01',
1948 'B::Concise' => '0.66',
1949 'B::Debug' => '1.02_01',
1950 'B::Deparse' => '0.71',
1951 'B::Disassembler' => '1.05',
1952 'B::Terse' => '1.03_01',
1953 'ByteLoader' => '0.06',
1954 'CGI' => '3.15',
1955 'CGI::Cookie' => '1.26',
1956 'CPAN' => '1.76_02',
1957 'Cwd' => '3.12',
1958 'DB' => '1.01',
1959 'DB_File' => '1.814',
1960 'Data::Dumper' => '2.121_08',
1961 'Devel::DProf' => '20050603.00',
1962 'Devel::PPPort' => '3.06_01',
1963 'Devel::Peek' => '1.03',
1964 'Digest' => '1.14',
1965 'Digest::MD5' => '2.36',
1966 'Digest::file' => '1.00',
1967 'Dumpvalue' => '1.12',
1968 'Encode' => '2.12',
1969 'Encode::Alias' => '2.04',
1970 'Encode::Config' => '2.01',
1971 'Encode::MIME::Header' => '2.01',
1972 'Encode::MIME::Header::ISO_2022_JP'=> '1.01',
1973 'English' => '1.02',
1974 'ExtUtils::Command' => '1.09',
1975 'ExtUtils::Command::MM' => '0.05',
1976 'ExtUtils::Constant' => '0.17',
1977 'ExtUtils::Embed' => '1.26',
1978 'ExtUtils::Install' => '1.33',
1979 'ExtUtils::Liblist::Kid'=> '1.3',
1980 'ExtUtils::MM' => '0.05',
1981 'ExtUtils::MM_AIX' => '0.03',
1982 'ExtUtils::MM_Any' => '0.13',
1983 'ExtUtils::MM_BeOS' => '1.05',
1984 'ExtUtils::MM_Cygwin' => '1.08',
1985 'ExtUtils::MM_MacOS' => '1.08',
1986 'ExtUtils::MM_NW5' => '2.08',
1987 'ExtUtils::MM_OS2' => '1.05',
1988 'ExtUtils::MM_QNX' => '0.02',
1989 'ExtUtils::MM_Unix' => '1.50',
1990 'ExtUtils::MM_VMS' => '5.73',
1991 'ExtUtils::MM_VOS' => '0.02',
1992 'ExtUtils::MM_Win32' => '1.12',
1993 'ExtUtils::MM_Win95' => '0.04',
1994 'ExtUtils::MakeMaker' => '6.30',
1995 'ExtUtils::MakeMaker::Config'=> '0.02',
1996 'ExtUtils::Manifest' => '1.46',
1997 'File::Basename' => '2.74',
1998 'File::Copy' => '2.09',
1999 'File::Find' => '1.10',
2000 'File::Glob' => '1.05',
2001 'File::Path' => '1.08',
2002 'File::Spec' => '3.12',
2003 'File::Spec::Win32' => '1.6',
2004 'FileCache' => '1.06',
2005 'Filter::Simple' => '0.82',
2006 'FindBin' => '1.47',
2007 'GDBM_File' => '1.08',
2008 'Getopt::Long' => '2.35',
2009 'IO' => '1.22',
2010 'IO::Dir' => '1.05',
2011 'IO::File' => '1.13',
2012 'IO::Handle' => '1.25',
2013 'IO::Pipe' => '1.13',
2014 'IO::Poll' => '0.07',
2015 'IO::Seekable' => '1.10',
2016 'IO::Select' => '1.17',
2017 'IO::Socket' => '1.29',
2018 'IO::Socket::INET' => '1.29',
2019 'IO::Socket::UNIX' => '1.22',
2020 'IPC::Open2' => '1.02',
2021 'IPC::Open3' => '1.02',
2022 'List::Util' => '1.18',
2023 'MIME::Base64' => '3.07',
2024 'MIME::QuotedPrint' => '3.07',
2025 'Math::Complex' => '1.35',
2026 'Math::Trig' => '1.03',
2027 'NDBM_File' => '1.06',
2028 'ODBM_File' => '1.06',
2029 'Opcode' => '1.06',
2030 'POSIX' => '1.09',
2031 'PerlIO' => '1.04',
2032 'PerlIO::encoding' => '0.09',
2033 'PerlIO::scalar' => '0.04',
2034 'PerlIO::via' => '0.03',
2035 'Pod::Checker' => '1.43',
2036 'Pod::Find' => '1.34',
2037 'Pod::Functions' => '1.03',
2038 'Pod::Html' => '1.0504',
2039 'Pod::ParseUtils' => '1.33',
2040 'Pod::Parser' => '1.32',
2041 'Pod::Usage' => '1.33',
2042 'SDBM_File' => '1.05',
2043 'Safe' => '2.12',
2044 'Scalar::Util' => '1.18',
2045 'Socket' => '1.78',
2046 'Storable' => '2.15',
2047 'Switch' => '2.10_01',
2048 'Sys::Syslog' => '0.13',
2049 'Term::ANSIColor' => '1.10',
2050 'Term::ReadLine' => '1.02',
2051 'Test::Builder' => '0.32',
2052 'Test::Builder::Module' => '0.02',
2053 'Test::Builder::Tester' => '1.02',
2054 'Test::Builder::Tester::Color'=> undef,
2055 'Test::Harness' => '2.56',
2056 'Test::Harness::Straps' => '0.26',
2057 'Test::More' => '0.62',
2058 'Test::Simple' => '0.62',
2059 'Text::Tabs' => '2005.0824',
2060 'Text::Wrap' => '2005.082401',
2061 'Tie::Hash' => '1.02',
2062 'Time::HiRes' => '1.86',
2063 'Unicode::Collate' => '0.52',
2064 'Unicode::UCD' => '0.24',
2065 'User::grent' => '1.01',
2066 'Win32' => '0.2601',
2067 'XS::APItest' => '0.08',
2068 'XS::Typemap' => '0.02',
2069 'XSLoader' => '0.06',
2070 'attrs' => '1.02',
2071 'autouse' => '1.05',
2072 'blib' => '1.03',
2073 'charnames' => '1.05',
2074 'diagnostics' => '1.15',
2075 'encoding' => '2.02',
2076 'if' => '0.05',
2077 'open' => '1.05',
2078 'ops' => '1.01',
2079 'overload' => '1.04',
2080 're' => '0.05',
2081 'threads' => '1.07',
2082 'threads::shared' => '0.94',
2083 'utf8' => '1.06',
2084 'vmsish' => '1.02',
2085 'warnings' => '1.05',
2086 'warnings::register' => '1.01',
2087 },
2088 removed => {
2089 }
2090 },
2091 5.008009 => {
2092 delta_from => 5.008008,
2093 changed => {
2094 'Attribute::Handlers' => '0.78_03',
2095 'AutoLoader' => '5.67',
2096 'AutoSplit' => '1.06',
2097 'B' => '1.19',
2098 'B::Asmdata' => '1.02',
2099 'B::Assembler' => '0.08',
2100 'B::C' => '1.05',
2101 'B::Concise' => '0.76',
2102 'B::Debug' => '1.05',
2103 'B::Deparse' => '0.87',
2104 'B::Lint' => '1.11',
2105 'B::Lint::Debug' => undef,
2106 'B::Terse' => '1.05',
2107 'Benchmark' => '1.1',
2108 'CGI' => '3.42',
2109 'CGI::Carp' => '1.30_01',
2110 'CGI::Cookie' => '1.29',
2111 'CGI::Fast' => '1.07',
2112 'CGI::Util' => '1.5_01',
2113 'CPAN' => '1.9301',
2114 'CPAN::Debug' => '5.5',
2115 'CPAN::DeferedCode' => '5.50',
2116 'CPAN::Distroprefs' => '6',
2117 'CPAN::FirstTime' => '5.5_01',
2118 'CPAN::HandleConfig' => '5.5',
2119 'CPAN::Kwalify' => '5.50',
2120 'CPAN::Nox' => '5.50',
2121 'CPAN::Queue' => '5.5',
2122 'CPAN::Tarzip' => '5.5',
2123 'CPAN::Version' => '5.5',
2124 'Carp' => '1.10',
2125 'Carp::Heavy' => '1.10',
2126 'Cwd' => '3.29',
2127 'DBM_Filter' => '0.02',
2128 'DBM_Filter::compress' => '0.02',
2129 'DBM_Filter::encode' => '0.02',
2130 'DBM_Filter::int32' => '0.02',
2131 'DBM_Filter::null' => '0.02',
2132 'DBM_Filter::utf8' => '0.02',
2133 'DB_File' => '1.817',
2134 'Data::Dumper' => '2.121_17',
2135 'Devel::DProf' => '20080331.00',
2136 'Devel::InnerPackage' => '0.3',
2137 'Devel::PPPort' => '3.14',
2138 'Devel::Peek' => '1.04',
2139 'Digest' => '1.15',
2140 'Digest::MD5' => '2.37',
2141 'DirHandle' => '1.02',
2142 'DynaLoader' => '1.09',
2143 'Encode' => '2.26',
2144 'Encode::Alias' => '2.10',
2145 'Encode::Byte' => '2.03',
2146 'Encode::CJKConstants' => '2.02',
2147 'Encode::CN' => '2.02',
2148 'Encode::CN::HZ' => '2.05',
2149 'Encode::Config' => '2.05',
2150 'Encode::EBCDIC' => '2.02',
2151 'Encode::Encoder' => '2.01',
2152 'Encode::Encoding' => '2.05',
2153 'Encode::GSM0338' => '2.01',
2154 'Encode::Guess' => '2.02',
2155 'Encode::JP' => '2.03',
2156 'Encode::JP::H2Z' => '2.02',
2157 'Encode::JP::JIS7' => '2.04',
2158 'Encode::KR' => '2.02',
2159 'Encode::KR::2022_KR' => '2.02',
2160 'Encode::MIME::Header' => '2.05',
2161 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2162 'Encode::MIME::Name' => '1.01',
2163 'Encode::Symbol' => '2.02',
2164 'Encode::TW' => '2.02',
2165 'Encode::Unicode' => '2.05',
2166 'Encode::Unicode::UTF7' => '2.04',
2167 'English' => '1.03',
2168 'Errno' => '1.10',
2169 'Exporter' => '5.63',
2170 'Exporter::Heavy' => '5.63',
2171 'ExtUtils::Command' => '1.15',
2172 'ExtUtils::Command::MM' => '6.48',
2173 'ExtUtils::Constant' => '0.21',
2174 'ExtUtils::Constant::Base'=> '0.04',
2175 'ExtUtils::Constant::ProxySubs'=> '0.06',
2176 'ExtUtils::Constant::Utils'=> '0.02',
2177 'ExtUtils::Constant::XS'=> '0.02',
2178 'ExtUtils::Embed' => '1.28',
2179 'ExtUtils::Install' => '1.50_01',
2180 'ExtUtils::Installed' => '1.43',
2181 'ExtUtils::Liblist' => '6.48',
2182 'ExtUtils::Liblist::Kid'=> '6.48',
2183 'ExtUtils::MM' => '6.48',
2184 'ExtUtils::MM_AIX' => '6.48',
2185 'ExtUtils::MM_Any' => '6.48',
2186 'ExtUtils::MM_BeOS' => '6.48',
2187 'ExtUtils::MM_Cygwin' => '6.48',
2188 'ExtUtils::MM_DOS' => '6.48',
2189 'ExtUtils::MM_Darwin' => '6.48',
2190 'ExtUtils::MM_MacOS' => '6.48',
2191 'ExtUtils::MM_NW5' => '6.48',
2192 'ExtUtils::MM_OS2' => '6.48',
2193 'ExtUtils::MM_QNX' => '6.48',
2194 'ExtUtils::MM_UWIN' => '6.48',
2195 'ExtUtils::MM_Unix' => '6.48',
2196 'ExtUtils::MM_VMS' => '6.48',
2197 'ExtUtils::MM_VOS' => '6.48',
2198 'ExtUtils::MM_Win32' => '6.48',
2199 'ExtUtils::MM_Win95' => '6.48',
2200 'ExtUtils::MY' => '6.48',
2201 'ExtUtils::MakeMaker' => '6.48',
2202 'ExtUtils::MakeMaker::Config'=> '6.48',
2203 'ExtUtils::MakeMaker::bytes'=> '6.48',
2204 'ExtUtils::MakeMaker::vmsish'=> '6.48',
2205 'ExtUtils::Manifest' => '1.55',
2206 'ExtUtils::Mkbootstrap' => '6.48',
2207 'ExtUtils::Mksymlists' => '6.48',
2208 'ExtUtils::Packlist' => '1.43',
2209 'ExtUtils::ParseXS' => '2.19',
2210 'ExtUtils::XSSymSet' => '1.1',
2211 'ExtUtils::testlib' => '6.48',
2212 'Fatal' => '1.06',
2213 'Fcntl' => '1.06',
2214 'File::Basename' => '2.77',
2215 'File::CheckTree' => '4.4',
2216 'File::Compare' => '1.1005',
2217 'File::Copy' => '2.13',
2218 'File::DosGlob' => '1.01',
2219 'File::Find' => '1.13',
2220 'File::Glob' => '1.06',
2221 'File::Path' => '2.07_02',
2222 'File::Spec' => '3.29',
2223 'File::Spec::Cygwin' => '3.29',
2224 'File::Spec::Epoc' => '3.29',
2225 'File::Spec::Functions' => '3.29',
2226 'File::Spec::Mac' => '3.29',
2227 'File::Spec::OS2' => '3.29',
2228 'File::Spec::Unix' => '3.29',
2229 'File::Spec::VMS' => '3.29',
2230 'File::Spec::Win32' => '3.29',
2231 'File::Temp' => '0.20',
2232 'File::stat' => '1.01',
2233 'FileCache' => '1.07',
2234 'Filter::Simple' => '0.83',
2235 'Filter::Util::Call' => '1.07',
2236 'FindBin' => '1.49',
2237 'GDBM_File' => '1.09',
2238 'Getopt::Long' => '2.37',
2239 'Getopt::Std' => '1.06',
2240 'Hash::Util' => '0.06',
2241 'IO' => '1.23',
2242 'IO::Dir' => '1.06',
2243 'IO::File' => '1.14',
2244 'IO::Handle' => '1.27',
2245 'IO::Socket' => '1.30',
2246 'IO::Socket::INET' => '1.31',
2247 'IO::Socket::UNIX' => '1.23',
2248 'IPC::Msg' => '2.00',
2249 'IPC::Open2' => '1.03',
2250 'IPC::Open3' => '1.03',
2251 'IPC::Semaphore' => '2.00',
2252 'IPC::SharedMem' => '2.00',
2253 'IPC::SysV' => '2.00',
2254 'List::Util' => '1.19',
2255 'Locale::Maketext' => '1.13',
2256 'Locale::Maketext::Guts'=> '1.13',
2257 'Locale::Maketext::GutsLoader'=> '1.13',
2258 'Math::BigFloat' => '1.60',
2259 'Math::BigInt' => '1.89',
2260 'Math::BigInt::Calc' => '0.52',
2261 'Math::BigRat' => '0.22',
2262 'Math::Complex' => '1.54',
2263 'Math::Trig' => '1.18',
2264 'Module::CoreList' => '2.17',
2265 'Module::Pluggable' => '3.8',
2266 'Module::Pluggable::Object'=> '3.6',
2267 'NDBM_File' => '1.07',
2268 'NEXT' => '0.61',
2269 'Net::Cmd' => '2.29',
2270 'Net::Config' => '1.11',
2271 'Net::Domain' => '2.20',
2272 'Net::FTP' => '2.77',
2273 'Net::FTP::A' => '1.18',
2274 'Net::NNTP' => '2.24',
2275 'Net::POP3' => '2.29',
2276 'Net::Ping' => '2.35',
2277 'Net::SMTP' => '2.31',
2278 'O' => '1.01',
2279 'ODBM_File' => '1.07',
2280 'Opcode' => '1.0601',
2281 'POSIX' => '1.15',
2282 'PerlIO' => '1.05',
2283 'PerlIO::encoding' => '0.11',
2284 'PerlIO::scalar' => '0.06',
2285 'PerlIO::via' => '0.05',
2286 'Pod::Html' => '1.09',
2287 'Pod::ParseUtils' => '1.35',
2288 'Pod::Parser' => '1.35',
2289 'Pod::Select' => '1.35',
2290 'Pod::Usage' => '1.35',
2291 'SDBM_File' => '1.06',
2292 'Safe' => '2.16',
2293 'Scalar::Util' => '1.19',
2294 'SelfLoader' => '1.17',
2295 'Shell' => '0.72',
2296 'Socket' => '1.81',
2297 'Storable' => '2.19',
2298 'Switch' => '2.13',
2299 'Sys::Syslog' => '0.27',
2300 'Sys::Syslog::win32::Win32'=> undef,
2301 'Term::ANSIColor' => '1.12',
2302 'Term::Cap' => '1.12',
2303 'Term::ReadLine' => '1.03',
2304 'Test::Builder' => '0.80',
2305 'Test::Builder::Module' => '0.80',
2306 'Test::Builder::Tester' => '1.13',
2307 'Test::Harness' => '2.64',
2308 'Test::Harness::Results'=> '0.01_01',
2309 'Test::Harness::Straps' => '0.26_01',
2310 'Test::Harness::Util' => '0.01',
2311 'Test::More' => '0.80',
2312 'Test::Simple' => '0.80',
2313 'Text::Balanced' => '1.98',
2314 'Text::ParseWords' => '3.27',
2315 'Text::Soundex' => '3.03',
2316 'Text::Tabs' => '2007.1117',
2317 'Text::Wrap' => '2006.1117',
2318 'Thread' => '2.01',
2319 'Thread::Queue' => '2.11',
2320 'Thread::Semaphore' => '2.09',
2321 'Tie::Handle' => '4.2',
2322 'Tie::Hash' => '1.03',
2323 'Tie::Memoize' => '1.1',
2324 'Tie::RefHash' => '1.38',
2325 'Tie::Scalar' => '1.01',
2326 'Tie::StdHandle' => '4.2',
2327 'Time::HiRes' => '1.9715',
2328 'Time::Local' => '1.1901',
2329 'Time::gmtime' => '1.03',
2330 'Unicode' => '5.1.0',
2331 'Unicode::Normalize' => '1.02',
2332 'Unicode::UCD' => '0.25',
2333 'VMS::DCLsym' => '1.03',
2334 'VMS::Stdio' => '2.4',
2335 'Win32' => '0.38',
2336 'Win32API::File' => '0.1001_01',
2337 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2338 'Win32CORE' => '0.02',
2339 'XS::APItest' => '0.15',
2340 'XS::Typemap' => '0.03',
2341 'XSLoader' => '0.10',
2342 'attributes' => '0.09',
2343 'autouse' => '1.06',
2344 'base' => '2.13',
2345 'bigint' => '0.23',
2346 'bignum' => '0.23',
2347 'bigrat' => '0.23',
2348 'blib' => '1.04',
2349 'charnames' => '1.06',
2350 'constant' => '1.17',
2351 'diagnostics' => '1.16',
2352 'encoding' => '2.6_01',
2353 'fields' => '2.12',
2354 'filetest' => '1.02',
2355 'lib' => '0.61',
2356 'open' => '1.06',
2357 'ops' => '1.02',
2358 'overload' => '1.06',
2359 're' => '0.0601',
2360 'sigtrap' => '1.04',
2361 'threads' => '1.71',
2362 'threads::shared' => '1.27',
2363 'utf8' => '1.07',
2364 'warnings' => '1.05_01',
2365 },
2366 removed => {
2367 }
2368 },
2369 5.009 => {
2370 delta_from => 5.008002,
2371 changed => {
2372 'B' => '1.03',
2373 'B::C' => '1.03',
2374 'B::Concise' => '0.57',
2375 'B::Deparse' => '0.65',
2376 'DB_File' => '1.806',
2377 'Devel::PPPort' => '2.008',
2378 'English' => '1.02',
2379 'Fatal' => '1.04',
2380 'OS2::DLL' => '1.02',
2381 'Opcode' => '1.06',
a272bf38
DL
2382 'Time::HiRes' => '1.51',
2383 'Unicode::Collate' => '0.28',
2384 'Unicode::Normalize' => '0.23',
2385 'XSLoader' => '0.03',
2386 'assertions' => '0.01',
2387 'assertions::activate' => '0.01',
2388 'overload' => '1.02',
2389 'version' => '0.29',
2390 },
2391 removed => {
2392 }
2393 },
2394 5.009001 => {
2395 delta_from => 5.008004,
2396 changed => {
2397 'B' => '1.05',
2398 'B::Assembler' => '0.06',
2399 'B::C' => '1.04',
2400 'B::Concise' => '0.59',
2401 'B::Debug' => '1.02',
2402 'B::Deparse' => '0.65',
2403 'DB_File' => '1.808_01',
2404 'Devel::PPPort' => '2.011_01',
2405 'Digest' => '1.05',
2406 'DynaLoader' => '1.04',
2407 'English' => '1.02',
2408 'Exporter::Heavy' => '5.567',
2409 'ExtUtils::Command' => '1.07',
2410 'ExtUtils::Liblist::Kid'=> '1.3',
2411 'ExtUtils::MM_Any' => '0.0901',
2412 'ExtUtils::MM_Cygwin' => '1.07',
2413 'ExtUtils::MM_NW5' => '2.07_01',
2414 'ExtUtils::MM_Unix' => '1.45_01',
2415 'ExtUtils::MM_VMS' => '5.71_01',
2416 'ExtUtils::MM_Win32' => '1.10_01',
2417 'ExtUtils::MM_Win95' => '0.03',
2418 'ExtUtils::MakeMaker' => '6.21_02',
2419 'ExtUtils::Manifest' => '1.43',
2420 'Fatal' => '1.04',
2421 'Getopt::Long' => '2.3401',
2422 'IO::Handle' => '1.23',
2423 'IO::Pipe' => '1.122',
2424 'IPC::Open3' => '1.0105',
2425 'MIME::Base64' => '3.00_01',
2426 'MIME::QuotedPrint' => '3.00',
2427 'Memoize' => '1.01_01',
2428 'ODBM_File' => '1.04',
2429 'Opcode' => '1.06',
2430 'POSIX' => '1.07',
2431 'Storable' => '2.11',
2432 'Time::HiRes' => '1.56',
2433 'Time::Local' => '1.07_94',
2434 'UNIVERSAL' => '1.02',
2435 'Unicode' => '4.0.0',
2436 'Unicode::UCD' => '0.21',
2437 'XSLoader' => '0.03',
2438 'assertions' => '0.01',
2439 'assertions::activate' => '0.01',
2440 'base' => '2.04',
2441 'if' => '0.0401',
2442 'open' => '1.02',
2443 'overload' => '1.02',
2444 'threads' => '1.02',
2445 'utf8' => '1.02',
2446 'version' => '0.36',
2447 },
2448 removed => {
2449 }
2450 },
2451 5.009002 => {
2452 delta_from => 5.008007,
2453 changed => {
2454 'B' => '1.07',
2455 'B::Concise' => '0.64',
2456 'B::Deparse' => '0.69',
2457 'B::Disassembler' => '1.03',
2458 'B::Terse' => '1.02',
2459 'CGI' => '3.07',
2460 'Config::Extensions' => '0.01',
2461 'Devel::DProf' => '20030813.00',
2462 'DynaLoader' => '1.07',
2463 'Encode' => '2.09',
2464 'Encode::Alias' => '2.02',
2465 'English' => '1.03',
2466 'Exporter' => '5.59',
2467 'Exporter::Heavy' => '5.59',
2468 'ExtUtils::Command' => '1.07',
2469 'ExtUtils::Command::MM' => '0.03_01',
2470 'ExtUtils::Embed' => '1.26',
2471 'ExtUtils::Liblist::Kid'=> '1.3',
2472 'ExtUtils::MM_Any' => '0.10',
2473 'ExtUtils::MM_Cygwin' => '1.07',
2474 'ExtUtils::MM_MacOS' => '1.08',
2475 'ExtUtils::MM_NW5' => '2.07',
2476 'ExtUtils::MM_Unix' => '1.46_01',
2477 'ExtUtils::MM_VMS' => '5.71',
2478 'ExtUtils::MM_Win32' => '1.10',
2479 'ExtUtils::MM_Win95' => '0.03',
2480 'ExtUtils::MakeMaker' => '6.25',
2481 'ExtUtils::Manifest' => '1.44',
2482 'Fatal' => '1.04',
2483 'File::Path' => '1.06',
2484 'FileCache' => '1.04_01',
2485 'Getopt::Long' => '2.3401',
2486 'IO::File' => '1.10',
2487 'IO::Socket::INET' => '1.27',
2488 'Math::BigFloat' => '1.49',
2489 'Math::BigInt' => '1.75',
2490 'Math::BigInt::Calc' => '0.45',
2491 'Math::BigRat' => '0.14',
2492 'Memoize' => '1.01_01',
2493 'Module::CoreList' => '1.99',
2494 'NEXT' => '0.60_01',
2495 'Opcode' => '1.06',
2496 'Pod::Html' => '1.0502',
2497 'Scalar::Util' => '1.14_1',
2498 'Storable' => '2.14',
2499 'Symbol' => '1.05',
2500 'Test::Harness' => '2.46',
2501 'Test::Harness::Straps' => '0.20_01',
2502 'Text::Balanced' => '1.95_01',
2503 'Text::Wrap' => '2001.09292',
2504 'UNIVERSAL' => '1.02',
2505 'Unicode' => '4.0.1',
2506 'Unicode::Normalize' => '0.30',
2507 'Unicode::UCD' => '0.22',
2508 'Win32' => '0.23',
2509 'XS::APItest' => '0.05',
2510 'XSLoader' => '0.03',
2511 'assertions' => '0.01',
2512 'assertions::activate' => '0.01',
2513 'base' => '2.06',
2514 'bigint' => '0.06',
2515 'bignum' => '0.16',
2516 'bigrat' => '0.07',
2517 'bytes' => '1.01',
2518 'encoding::warnings' => '0.05',
2519 'if' => '0.0401',
2520 're' => '0.05',
2521 'threads::shared' => '0.92',
2522 'utf8' => '1.04',
2523 'version' => '0.42',
2524 'warnings' => '1.04',
2525 },
2526 removed => {
2527 'Test::Harness::Point' => 1,
2528 }
2529 },
2530 5.009003 => {
2531 delta_from => 5.008008,
2532 changed => {
2533 'Archive::Tar' => '1.26_01',
2534 'Archive::Tar::Constant'=> '0.02',
2535 'Archive::Tar::File' => '0.02',
2536 'AutoSplit' => '1.04_01',
2537 'B' => '1.10',
2538 'B::Bblock' => '1.02',
2539 'B::Bytecode' => '1.01',
2540 'B::C' => '1.04',
2541 'B::CC' => '1.00',
2542 'B::Concise' => '0.67',
2543 'B::Debug' => '1.02',
2544 'B::Deparse' => '0.73',
2545 'B::Lint' => '1.04',
2546 'B::Terse' => '1.03',
2547 'CGI' => '3.15_01',
2548 'CPAN' => '1.83_58',
2549 'CPAN::Debug' => '4.44',
2550 'CPAN::FirstTime' => '4.50',
2551 'CPAN::HandleConfig' => '4.31',
2552 'CPAN::Nox' => '2.31',
2553 'CPAN::Tarzip' => '3.36',
2554 'CPAN::Version' => '2.55',
2555 'Carp' => '1.05',
2556 'Carp::Heavy' => '1.05',
2557 'Compress::Zlib' => '2.000_07',
2558 'Compress::Zlib::Common'=> '2.000_07',
2559 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07',
2560 'Compress::Zlib::Compress::Zip::Constants'=> '1.00',
2561 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05',
2562 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05',
2563 'Compress::Zlib::File::GlobMapper'=> '0.000_02',
2564 'Compress::Zlib::FileConstants'=> '2.000_07',
2565 'Compress::Zlib::IO::Compress::Base'=> '2.000_05',
2566 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07',
2567 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07',
2568 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07',
2569 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04',
2570 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07',
2571 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05',
2572 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05',
2573 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07',
2574 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07',
2575 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07',
2576 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05',
2577 'Compress::Zlib::ParseParameters'=> '2.000_07',
2578 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05',
2579 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05',
2580 'Config::Extensions' => '0.01',
2581 'Cwd' => '3.15',
2582 'Devel::PPPort' => '3.08',
2583 'Digest::SHA' => '5.32',
2584 'DirHandle' => '1.01',
2585 'DynaLoader' => '1.07',
2586 'Encode' => '2.14',
2587 'Encode::CN::HZ' => '2.02',
2588 'Encode::MIME::Header' => '2.02',
2589 'English' => '1.04',
2590 'Exporter' => '5.59',
2591 'Exporter::Heavy' => '5.59',
2592 'ExtUtils::CBuilder' => '0.15',
2593 'ExtUtils::CBuilder::Base'=> '0.12',
2594 'ExtUtils::CBuilder::Platform::Unix'=> '0.12',
2595 'ExtUtils::CBuilder::Platform::VMS'=> '0.12',
2596 'ExtUtils::CBuilder::Platform::Windows'=> '0.12',
2597 'ExtUtils::CBuilder::Platform::aix'=> '0.12',
2598 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12',
2599 'ExtUtils::CBuilder::Platform::darwin'=> '0.12',
2600 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01',
2601 'ExtUtils::CBuilder::Platform::os2'=> '0.13',
2602 'ExtUtils::Command::MM' => '0.05_01',
2603 'ExtUtils::Constant' => '0.2',
2604 'ExtUtils::Constant::Base'=> '0.02',
2605 'ExtUtils::Constant::ProxySubs'=> '0.01',
2606 'ExtUtils::Constant::XS'=> '0.02',
2607 'ExtUtils::MM_Any' => '0.13_01',
2608 'ExtUtils::MM_Unix' => '1.50_01',
2609 'ExtUtils::MakeMaker' => '6.30_01',
2610 'ExtUtils::ParseXS' => '2.15_02',
2611 'Fatal' => '1.04',
2612 'File::Compare' => '1.1005',
2613 'File::Spec' => '3.15',
2614 'File::Temp' => '0.16_01',
2615 'IO::File' => '1.13_01',
2616 'IO::Handle' => '1.26',
2617 'IO::Socket' => '1.29_01',
2618 'IO::Socket::INET' => '1.29_02',
2619 'IO::Socket::UNIX' => '1.22_01',
2620 'IO::Zlib' => '1.04_02',
2621 'Locale::Maketext' => '1.10_01',
2622 'Math::BigInt::FastCalc'=> '0.10',
2623 'Memoize' => '1.01_01',
2624 'Module::CoreList' => '2.02',
2625 'Moped::Msg' => '0.01',
2626 'NEXT' => '0.60_01',
2627 'Net::Cmd' => '2.26_01',
2628 'Net::Domain' => '2.19_01',
2629 'Net::Ping' => '2.31_04',
2630 'Opcode' => '1.08',
2631 'POSIX' => '1.10',
2632 'Pod::Escapes' => '1.04',
2633 'Pod::Man' => '2.04',
2634 'Pod::Perldoc' => '3.14_01',
2635 'Pod::Simple' => '3.04',
2636 'Pod::Simple::BlackBox' => undef,
2637 'Pod::Simple::Checker' => '2.02',
2638 'Pod::Simple::Debug' => undef,
2639 'Pod::Simple::DumpAsText'=> '2.02',
2640 'Pod::Simple::DumpAsXML'=> '2.02',
2641 'Pod::Simple::HTML' => '3.03',
2642 'Pod::Simple::HTMLBatch'=> '3.02',
2643 'Pod::Simple::HTMLLegacy'=> '5.01',
2644 'Pod::Simple::LinkSection'=> undef,
2645 'Pod::Simple::Methody' => '2.02',
2646 'Pod::Simple::Progress' => '1.01',
2647 'Pod::Simple::PullParser'=> '2.02',
2648 'Pod::Simple::PullParserEndToken'=> undef,
2649 'Pod::Simple::PullParserStartToken'=> undef,
2650 'Pod::Simple::PullParserTextToken'=> undef,
2651 'Pod::Simple::PullParserToken'=> '2.02',
2652 'Pod::Simple::RTF' => '2.02',
2653 'Pod::Simple::Search' => '3.04',
2654 'Pod::Simple::SimpleTree'=> '2.02',
2655 'Pod::Simple::Text' => '2.02',
2656 'Pod::Simple::TextContent'=> '2.02',
2657 'Pod::Simple::TiedOutFH'=> undef,
2658 'Pod::Simple::Transcode'=> undef,
2659 'Pod::Simple::TranscodeDumb'=> '2.02',
2660 'Pod::Simple::TranscodeSmart'=> undef,
2661 'Pod::Simple::XMLOutStream'=> '2.02',
2662 'Pod::Text' => '3.01',
2663 'Pod::Text::Color' => '2.01',
2664 'Pod::Text::Overstrike' => '2',
2665 'Pod::Text::Termcap' => '2.01',
2666 'Pod::Usage' => '1.33_01',
2667 'SelfLoader' => '1.0905',
2668 'Storable' => '2.15_02',
2669 'Test::Builder::Module' => '0.03',
2670 'Text::Balanced' => '1.95_01',
2671 'Tie::File' => '0.97_01',
2672 'UNIVERSAL' => '1.03',
2673 'XS::APItest' => '0.09',
2674 'assertions' => '0.02',
2675 'assertions::activate' => '0.02',
2676 'assertions::compat' => undef,
2677 'constant' => '1.07',
2678 'encoding::warnings' => '0.05',
2679 'feature' => '1.00',
2680 're' => '0.06',
2681 'sort' => '2.00',
2682 'version' => '0.53',
2683 },
2684 removed => {
2685 }
f372d768 2686 },
16531488 2687 5.009004 => {
a272bf38
DL
2688 delta_from => 5.009003,
2689 changed => {
2690 'Archive::Tar' => '1.30_01',
2691 'AutoLoader' => '5.61',
2692 'B' => '1.11',
2693 'B::Bytecode' => '1.02',
2694 'B::C' => '1.05',
2695 'B::Concise' => '0.69',
2696 'B::Deparse' => '0.76',
2697 'B::Lint' => '1.08',
2698 'Benchmark' => '1.08',
2699 'CGI' => '3.20',
2700 'CGI::Cookie' => '1.27',
2701 'CGI::Fast' => '1.07',
2702 'CPAN' => '1.87_55',
2703 'CPAN::Debug' => '5.400561',
2704 'CPAN::FirstTime' => '5.400742',
2705 'CPAN::HandleConfig' => '5.400740',
2706 'CPAN::Nox' => '5.400561',
2707 'CPAN::Tarzip' => '5.400714',
2708 'CPAN::Version' => '5.400561',
2709 'Compress::Raw::Zlib' => '2.000_13',
2710 'Compress::Zlib' => '2.000_13',
2711 'Cwd' => '3.19',
2712 'Devel::PPPort' => '3.10',
2713 'Digest' => '1.15',
2714 'Digest::SHA' => '5.43',
2715 'Encode' => '2.18_01',
2716 'Encode::Alias' => '2.06',
2717 'Encode::Byte' => '2.02',
2718 'Encode::CJKConstants' => '2.02',
2719 'Encode::CN' => '2.02',
2720 'Encode::CN::HZ' => '2.04',
2721 'Encode::Config' => '2.03',
2722 'Encode::EBCDIC' => '2.02',
2723 'Encode::Encoder' => '2.01',
2724 'Encode::Encoding' => '2.04',
2725 'Encode::Guess' => '2.02',
2726 'Encode::JP' => '2.03',
2727 'Encode::JP::H2Z' => '2.02',
2728 'Encode::JP::JIS7' => '2.02',
2729 'Encode::KR' => '2.02',
2730 'Encode::KR::2022_KR' => '2.02',
2731 'Encode::MIME::Header' => '2.04',
2732 'Encode::MIME::Header::ISO_2022_JP'=> '1.03',
2733 'Encode::Symbol' => '2.02',
2734 'Encode::TW' => '2.02',
2735 'Encode::Unicode' => '2.03',
2736 'Encode::Unicode::UTF7' => '2.04',
2737 'ExtUtils::CBuilder' => '0.18',
2738 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01',
2739 'ExtUtils::Constant::Base'=> '0.03',
2740 'ExtUtils::Constant::ProxySubs'=> '0.03',
2741 'ExtUtils::Install' => '1.41',
2742 'ExtUtils::Installed' => '1.41',
2743 'ExtUtils::MM_Any' => '0.13_02',
2744 'ExtUtils::MM_NW5' => '2.08_01',
2745 'ExtUtils::MM_Unix' => '1.5003',
2746 'ExtUtils::MM_VMS' => '5.73_03',
2747 'ExtUtils::MM_Win32' => '1.12_02',
2748 'ExtUtils::MM_Win95' => '0.04_01',
2749 'ExtUtils::MakeMaker' => '6.30_02',
2750 'ExtUtils::Manifest' => '1.46_01',
2751 'ExtUtils::Mkbootstrap' => '1.15_01',
2752 'ExtUtils::Mksymlists' => '1.19_01',
2753 'ExtUtils::Packlist' => '1.41',
2754 'File::Basename' => '2.75',
2755 'File::Find' => '1.11',
2756 'File::GlobMapper' => '0.000_02',
2757 'File::Spec' => '3.19',
2758 'FileCache' => '1.07',
2759 'Getopt::Long' => '2.3501',
2760 'Hash::Util' => '0.07',
2761 'Hash::Util::FieldHash' => '0.01',
2762 'IO' => '1.23_01',
2763 'IO::Compress::Adapter::Deflate'=> '2.000_13',
2764 'IO::Compress::Adapter::Identity'=> '2.000_13',
2765 'IO::Compress::Base' => '2.000_13',
2766 'IO::Compress::Base::Common'=> '2.000_13',
2767 'IO::Compress::Deflate' => '2.000_13',
2768 'IO::Compress::Gzip' => '2.000_13',
2769 'IO::Compress::Gzip::Constants'=> '2.000_13',
2770 'IO::Compress::RawDeflate'=> '2.000_13',
2771 'IO::Compress::Zip' => '2.000_13',
2772 'IO::Compress::Zip::Constants'=> '2.000_13',
2773 'IO::Compress::Zlib::Constants'=> '2.000_13',
2774 'IO::Compress::Zlib::Extra'=> '2.000_13',
2775 'IO::Dir' => '1.06',
2776 'IO::File' => '1.14',
2777 'IO::Handle' => '1.27',
2778 'IO::Socket' => '1.30_01',
2779 'IO::Socket::INET' => '1.31',
2780 'IO::Socket::UNIX' => '1.23',
2781 'IO::Uncompress::Adapter::Identity'=> '2.000_13',
2782 'IO::Uncompress::Adapter::Inflate'=> '2.000_13',
2783 'IO::Uncompress::AnyInflate'=> '2.000_13',
2784 'IO::Uncompress::AnyUncompress'=> '2.000_13',
2785 'IO::Uncompress::Base' => '2.000_13',
2786 'IO::Uncompress::Gunzip'=> '2.000_13',
2787 'IO::Uncompress::Inflate'=> '2.000_13',
2788 'IO::Uncompress::RawInflate'=> '2.000_13',
2789 'IO::Uncompress::Unzip' => '2.000_13',
2790 'MIME::Base64' => '3.07_01',
2791 'Math::Complex' => '1.36',
2792 'Math::Trig' => '1.04',
2793 'Module::Build' => '0.2805',
2794 'Module::Build::Base' => undef,
2795 'Module::Build::Compat' => '0.03',
2796 'Module::Build::ConfigData'=> undef,
2797 'Module::Build::Cookbook'=> undef,
2798 'Module::Build::ModuleInfo'=> undef,
2799 'Module::Build::Notes' => undef,
2800 'Module::Build::PPMMaker'=> undef,
2801 'Module::Build::Platform::Amiga'=> undef,
2802 'Module::Build::Platform::Default'=> undef,
2803 'Module::Build::Platform::EBCDIC'=> undef,
2804 'Module::Build::Platform::MPEiX'=> undef,
2805 'Module::Build::Platform::MacOS'=> undef,
2806 'Module::Build::Platform::RiscOS'=> undef,
2807 'Module::Build::Platform::Unix'=> undef,
2808 'Module::Build::Platform::VMS'=> undef,
2809 'Module::Build::Platform::VOS'=> undef,
2810 'Module::Build::Platform::Windows'=> undef,
2811 'Module::Build::Platform::aix'=> undef,
2812 'Module::Build::Platform::cygwin'=> undef,
2813 'Module::Build::Platform::darwin'=> undef,
2814 'Module::Build::Platform::os2'=> undef,
2815 'Module::Build::PodParser'=> undef,
2816 'Module::Build::Version'=> '0',
2817 'Module::Build::YAML' => '0.50',
2818 'Module::CoreList' => '2.08',
2819 'Module::Load' => '0.10',
2820 'Module::Loaded' => '0.01',
2821 'Package::Constants' => '0.01',
2822 'Pod::Html' => '1.07',
2823 'Pod::Man' => '2.09',
2824 'Pod::Text' => '3.07',
2825 'Pod::Text::Color' => '2.03',
2826 'Pod::Text::Termcap' => '2.03',
2827 'SDBM_File' => '1.06',
2828 'Shell' => '0.7',
2829 'Sys::Syslog' => '0.17',
2830 'Term::ANSIColor' => '1.11',
2831 'Test::Builder' => '0.33',
2832 'Test::Builder::Tester' => '1.04',
2833 'Test::Harness' => '2.62',
2834 'Test::Harness::Util' => '0.01',
2835 'Test::More' => '0.64',
2836 'Test::Simple' => '0.64',
2837 'Text::Balanced' => '1.98_01',
2838 'Text::ParseWords' => '3.25',
2839 'Text::Tabs' => '2007.071101',
2840 'Text::Wrap' => '2006.0711',
2841 'Tie::RefHash' => '1.34_01',
2842 'Time::HiRes' => '1.87',
2843 'Time::Local' => '1.13',
2844 'Time::gmtime' => '1.03',
2845 'UNIVERSAL' => '1.04',
2846 'Unicode::Normalize' => '1.01',
2847 'Win32API::File' => '0.1001',
2848 'Win32API::File::ExtUtils::Myconst2perl'=> '1',
2849 'assertions' => '0.03',
2850 'assertions::compat' => '0.02',
2851 'autouse' => '1.06',
2852 'diagnostics' => '1.16',
2853 'encoding' => '2.04',
2854 'encoding::warnings' => '0.10',
2855 'feature' => '1.01',
2856 're' => '0.0601',
2857 'threads' => '1.38',
2858 'threads::shared' => '0.94_01',
2859 'version' => '0.67',
2860 },
2861 removed => {
2862 'Compress::Zlib::Common'=> 1,
2863 'Compress::Zlib::Compress::Gzip::Constants'=> 1,
2864 'Compress::Zlib::Compress::Zip::Constants'=> 1,
2865 'Compress::Zlib::CompressPlugin::Deflate'=> 1,
2866 'Compress::Zlib::CompressPlugin::Identity'=> 1,
2867 'Compress::Zlib::File::GlobMapper'=> 1,
2868 'Compress::Zlib::FileConstants'=> 1,
2869 'Compress::Zlib::IO::Compress::Base'=> 1,
2870 'Compress::Zlib::IO::Compress::Deflate'=> 1,
2871 'Compress::Zlib::IO::Compress::Gzip'=> 1,
2872 'Compress::Zlib::IO::Compress::RawDeflate'=> 1,
2873 'Compress::Zlib::IO::Compress::Zip'=> 1,
2874 'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1,
2875 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1,
2876 'Compress::Zlib::IO::Uncompress::Base'=> 1,
2877 'Compress::Zlib::IO::Uncompress::Gunzip'=> 1,
2878 'Compress::Zlib::IO::Uncompress::Inflate'=> 1,
2879 'Compress::Zlib::IO::Uncompress::RawInflate'=> 1,
2880 'Compress::Zlib::IO::Uncompress::Unzip'=> 1,
2881 'Compress::Zlib::ParseParameters'=> 1,
2882 'Compress::Zlib::UncompressPlugin::Identity'=> 1,
2883 'Compress::Zlib::UncompressPlugin::Inflate'=> 1,
2884 }
16531488 2885 },
201a0ee1 2886 5.009005 => {
a272bf38
DL
2887 delta_from => 5.009004,
2888 changed => {
2889 'Archive::Extract' => '0.22_01',
2890 'Archive::Tar' => '1.32',
2891 'Attribute::Handlers' => '0.78_06',
2892 'AutoLoader' => '5.63',
2893 'AutoSplit' => '1.05',
2894 'B' => '1.16',
2895 'B::Concise' => '0.72',
2896 'B::Debug' => '1.05',
2897 'B::Deparse' => '0.82',
2898 'B::Lint' => '1.09',
2899 'B::Terse' => '1.05',
2900 'Benchmark' => '1.1',
2901 'CGI' => '3.29',
2902 'CGI::Cookie' => '1.28',
2903 'CGI::Util' => '1.5_01',
2904 'CPAN' => '1.9102',
2905 'CPAN::Debug' => '5.400955',
2906 'CPAN::FirstTime' => '5.401669',
2907 'CPAN::HandleConfig' => '5.401744',
2908 'CPAN::Kwalify' => '5.401418',
2909 'CPAN::Nox' => '5.400844',
2910 'CPAN::Queue' => '5.401704',
2911 'CPAN::Tarzip' => '5.401717',
2912 'CPAN::Version' => '5.401387',
2913 'CPANPLUS' => '0.81_01',
2914 'CPANPLUS::Backend' => undef,
2915 'CPANPLUS::Backend::RV' => undef,
2916 'CPANPLUS::Config' => undef,
2917 'CPANPLUS::Configure' => undef,
2918 'CPANPLUS::Configure::Setup'=> undef,
2919 'CPANPLUS::Dist' => undef,
2920 'CPANPLUS::Dist::Base' => '0.01',
2921 'CPANPLUS::Dist::Build' => '0.06_01',
2922 'CPANPLUS::Dist::Build::Constants'=> '0.01',
2923 'CPANPLUS::Dist::MM' => undef,
2924 'CPANPLUS::Dist::Sample'=> undef,
2925 'CPANPLUS::Error' => undef,
2926 'CPANPLUS::Internals' => '0.81_01',
2927 'CPANPLUS::Internals::Constants'=> '0.01',
2928 'CPANPLUS::Internals::Constants::Report'=> '0.01',
2929 'CPANPLUS::Internals::Extract'=> undef,
2930 'CPANPLUS::Internals::Fetch'=> undef,
2931 'CPANPLUS::Internals::Report'=> undef,
2932 'CPANPLUS::Internals::Search'=> undef,
2933 'CPANPLUS::Internals::Source'=> undef,
2934 'CPANPLUS::Internals::Utils'=> undef,
2935 'CPANPLUS::Internals::Utils::Autoflush'=> undef,
2936 'CPANPLUS::Module' => undef,
2937 'CPANPLUS::Module::Author'=> undef,
2938 'CPANPLUS::Module::Author::Fake'=> undef,
2939 'CPANPLUS::Module::Checksums'=> undef,
2940 'CPANPLUS::Module::Fake'=> undef,
2941 'CPANPLUS::Module::Signature'=> undef,
2942 'CPANPLUS::Selfupdate' => undef,
2943 'CPANPLUS::Shell' => undef,
2944 'CPANPLUS::Shell::Classic'=> '0.0562',
2945 'CPANPLUS::Shell::Default'=> '0.81_01',
2946 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef,
2947 'CPANPLUS::Shell::Default::Plugins::Source'=> undef,
2948 'CPANPLUS::inc' => undef,
2949 'Carp' => '1.07',
2950 'Carp::Heavy' => '1.07',
2951 'Compress::Raw::Zlib' => '2.005',
2952 'Compress::Zlib' => '2.005',
2953 'Cwd' => '3.25',
2954 'DBM_Filter' => '0.02',
2955 'DB_File' => '1.815',
2956 'Data::Dumper' => '2.121_13',
2957 'Devel::InnerPackage' => '0.3',
2958 'Devel::PPPort' => '3.11_01',
2959 'Digest::MD5' => '2.36_01',
2960 'Digest::SHA' => '5.44',
2961 'DynaLoader' => '1.08',
2962 'Encode' => '2.23',
2963 'Encode::Alias' => '2.07',
2964 'Encode::Byte' => '2.03',
2965 'Encode::Config' => '2.04',
2966 'Encode::Encoding' => '2.05',
2967 'Encode::GSM0338' => '2.00',
2968 'Encode::JP::JIS7' => '2.03',
2969 'Encode::MIME::Header' => '2.05',
2970 'Encode::MIME::Name' => '1.01',
2971 'Encode::Unicode' => '2.05',
2972 'Errno' => '1.10',
2973 'Exporter' => '5.60',
2974 'Exporter::Heavy' => '5.60',
2975 'ExtUtils::CBuilder' => '0.19',
2976 'ExtUtils::CBuilder::Platform::Windows'=> '0.13',
2977 'ExtUtils::Command' => '1.13',
2978 'ExtUtils::Command::MM' => '0.07',
2979 'ExtUtils::Constant::Base'=> '0.04',
2980 'ExtUtils::Install' => '1.41_01',
2981 'ExtUtils::Liblist' => '1.03',
2982 'ExtUtils::Liblist::Kid'=> '1.33',
2983 'ExtUtils::MM' => '0.07',
2984 'ExtUtils::MM_AIX' => '0.05',
2985 'ExtUtils::MM_Any' => '0.15',
2986 'ExtUtils::MM_BeOS' => '1.07',
2987 'ExtUtils::MM_Cygwin' => '1.1',
2988 'ExtUtils::MM_DOS' => '0.04',
2989 'ExtUtils::MM_MacOS' => '1.1',
2990 'ExtUtils::MM_NW5' => '2.1',
2991 'ExtUtils::MM_OS2' => '1.07',
2992 'ExtUtils::MM_QNX' => '0.04',
2993 'ExtUtils::MM_UWIN' => '0.04',
2994 'ExtUtils::MM_Unix' => '1.54_01',
2995 'ExtUtils::MM_VMS' => '5.76',
2996 'ExtUtils::MM_VOS' => '0.04',
2997 'ExtUtils::MM_Win32' => '1.15',
2998 'ExtUtils::MM_Win95' => '0.06',
2999 'ExtUtils::MY' => '0.03',
3000 'ExtUtils::MakeMaker' => '6.36',
3001 'ExtUtils::MakeMaker::Config'=> '0.04',
3002 'ExtUtils::MakeMaker::bytes'=> '0.03',
3003 'ExtUtils::MakeMaker::vmsish'=> '0.03',
3004 'ExtUtils::Manifest' => '1.51_01',
3005 'ExtUtils::Mkbootstrap' => '1.17',
3006 'ExtUtils::Mksymlists' => '1.21',
3007 'ExtUtils::ParseXS' => '2.18',
3008 'ExtUtils::XSSymSet' => '1.1',
3009 'ExtUtils::testlib' => '1.17',
3010 'Fatal' => '1.05',
3011 'Fcntl' => '1.06',
3012 'File::Basename' => '2.76',
3013 'File::Copy' => '2.10',
3014 'File::Fetch' => '0.10',
3015 'File::Glob' => '1.06',
3016 'File::Path' => '2.01',
3017 'File::Spec' => '3.25',
3018 'File::Spec::Cygwin' => '1.1_01',
3019 'File::Spec::VMS' => '1.4_01',
3020 'File::Temp' => '0.18',
3021 'Filter::Util::Call' => '1.0602',
3022 'FindBin' => '1.49',
3023 'Getopt::Long' => '2.36',
3024 'Hash::Util::FieldHash' => '1.01',
3025 'IO::Compress::Adapter::Deflate'=> '2.005',
3026 'IO::Compress::Adapter::Identity'=> '2.005',
3027 'IO::Compress::Base' => '2.005',
3028 'IO::Compress::Base::Common'=> '2.005',
3029 'IO::Compress::Deflate' => '2.005',
3030 'IO::Compress::Gzip' => '2.005',
3031 'IO::Compress::Gzip::Constants'=> '2.005',
3032 'IO::Compress::RawDeflate'=> '2.005',
3033 'IO::Compress::Zip' => '2.005',
3034 'IO::Compress::Zip::Constants'=> '2.005',
3035 'IO::Compress::Zlib::Constants'=> '2.005',
3036 'IO::Compress::Zlib::Extra'=> '2.005',
3037 'IO::Uncompress::Adapter::Identity'=> '2.005',
3038 'IO::Uncompress::Adapter::Inflate'=> '2.005',
3039 'IO::Uncompress::AnyInflate'=> '2.005',
3040 'IO::Uncompress::AnyUncompress'=> '2.005',
3041 'IO::Uncompress::Base' => '2.005',
3042 'IO::Uncompress::Gunzip'=> '2.005',
3043 'IO::Uncompress::Inflate'=> '2.005',
3044 'IO::Uncompress::RawInflate'=> '2.005',
3045 'IO::Uncompress::Unzip' => '2.005',
3046 'IO::Zlib' => '1.05_01',
3047 'IPC::Cmd' => '0.36_01',
3048 'List::Util' => '1.19',
3049 'Locale::Maketext::Simple'=> '0.18',
3050 'Log::Message' => '0.01',
3051 'Log::Message::Config' => '0.01',
3052 'Log::Message::Handlers'=> undef,
3053 'Log::Message::Item' => undef,
3054 'Log::Message::Simple' => '0.0201',
3055 'Math::BigFloat' => '1.58',
3056 'Math::BigInt' => '1.87',
3057 'Math::BigInt::Calc' => '0.51',
3058 'Math::BigInt::FastCalc'=> '0.15_01',
3059 'Math::BigRat' => '0.19',
3060 'Math::Complex' => '1.37',
3061 'Memoize' => '1.01_02',
3062 'Module::Build' => '0.2808',
3063 'Module::Build::Config' => undef,
3064 'Module::Build::Version'=> '0.7203',
3065 'Module::CoreList' => '2.12',
3066 'Module::Load::Conditional'=> '0.16',
3067 'Module::Pluggable' => '3.6',
3068 'Module::Pluggable::Object'=> '3.6',
3069 'NDBM_File' => '1.07',
3070 'Net::Cmd' => '2.28',
3071 'Net::Config' => '1.11',
3072 'Net::Domain' => '2.20',
3073 'Net::FTP' => '2.77',
3074 'Net::FTP::A' => '1.18',
3075 'Net::NNTP' => '2.24',
3076 'Net::POP3' => '2.29',
3077 'Net::SMTP' => '2.31',
3078 'ODBM_File' => '1.07',
3079 'Object::Accessor' => '0.32',
3080 'Opcode' => '1.09',
3081 'POSIX' => '1.13',
3082 'Params::Check' => '0.26',
3083 'PerlIO::encoding' => '0.10',
3084 'PerlIO::scalar' => '0.05',
3085 'PerlIO::via' => '0.04',
3086 'Pod::Html' => '1.08',
3087 'Pod::Man' => '2.12',
3088 'Pod::ParseUtils' => '1.35',
3089 'Pod::Parser' => '1.35',
3090 'Pod::Select' => '1.35',
3091 'Pod::Simple' => '3.05',
3092 'Pod::Text' => '3.08',
3093 'Pod::Usage' => '1.35',
3094 'Scalar::Util' => '1.19',
3095 'SelfLoader' => '1.11',
3096 'Shell' => '0.72_01',
3097 'Socket' => '1.79',
3098 'Storable' => '2.16',
3099 'Switch' => '2.13',
3100 'Sys::Syslog' => '0.18_01',
3101 'Term::ANSIColor' => '1.12',
3102 'Term::UI' => '0.14_01',
3103 'Term::UI::History' => undef,
3104 'Test::Builder' => '0.70',
3105 'Test::Builder::Module' => '0.68',
3106 'Test::Builder::Tester' => '1.07',
3107 'Test::Harness' => '2.64',
3108 'Test::Harness::Results'=> '0.01',
3109 'Test::More' => '0.70',
3110 'Test::Simple' => '0.70',
3111 'Text::Balanced' => '2.0.0',
3112 'Text::Soundex' => '3.02',
3113 'Text::Tabs' => '2007.1117',
3114 'Text::Wrap' => '2006.1117',
3115 'Thread' => '3.02',
3116 'Tie::File' => '0.97_02',
3117 'Tie::Hash::NamedCapture'=> '0.06',
3118 'Tie::Memoize' => '1.1',
3119 'Tie::RefHash' => '1.37',
3120 'Time::HiRes' => '1.9707',
3121 'Time::Local' => '1.17',
3122 'Time::Piece' => '1.11_02',
3123 'Time::Seconds' => undef,
3124 'Unicode' => '5.0.0',
3125 'Unicode::Normalize' => '1.02',
3126 'Unicode::UCD' => '0.25',
3127 'VMS::DCLsym' => '1.03',
3128 'Win32' => '0.30',
3129 'Win32API::File' => '0.1001_01',
3130 'Win32CORE' => '0.02',
3131 'XS::APItest' => '0.12',
3132 'XSLoader' => '0.08',
3133 'attributes' => '0.08',
3134 'base' => '2.12',
3135 'bigint' => '0.22',
3136 'bignum' => '0.22',
3137 'bigrat' => '0.22',
3138 'bytes' => '1.03',
3139 'charnames' => '1.06',
3140 'constant' => '1.10',
3141 'diagnostics' => '1.17',
3142 'encoding' => '2.06',
3143 'encoding::warnings' => '0.11',
3144 'feature' => '1.10',
3145 'fields' => '2.12',
3146 'less' => '0.02',
3147 'mro' => '1.00',
3148 'overload' => '1.06',
3149 're' => '0.08',
3150 'sigtrap' => '1.04',
3151 'sort' => '2.01',
3152 'strict' => '1.04',
3153 'threads' => '1.63',
3154 'threads::shared' => '1.12',
3155 'utf8' => '1.07',
3156 'version' => '0.7203',
3157 'warnings' => '1.06',
3158 },
3159 removed => {
3160 'B::Asmdata' => 1,
3161 'B::Assembler' => 1,
3162 'B::Bblock' => 1,
3163 'B::Bytecode' => 1,
3164 'B::C' => 1,
3165 'B::CC' => 1,
3166 'B::Disassembler' => 1,
3167 'B::Stackobj' => 1,
3168 'B::Stash' => 1,
3169 'ByteLoader' => 1,
3170 'Thread::Signal' => 1,
3171 'Thread::Specific' => 1,
3172 'assertions' => 1,
3173 'assertions::activate' => 1,
3174 'assertions::compat' => 1,
3175 }
a3240fe5 3176 },
a272bf38
DL
3177 5.01 => {
3178 delta_from => 5.009005,
3179 changed => {
3180 'Archive::Extract' => '0.24',
3181 'Archive::Tar' => '1.38',
3182 'Attribute::Handlers' => '0.79',
3183 'B' => '1.17',
3184 'B::Concise' => '0.74',
3185 'B::Deparse' => '0.83',
3186 'CPAN' => '1.9205',
3187 'CPAN::API::HOWTO' => undef,
3188 'CPAN::Debug' => '5.402212',
3189 'CPAN::DeferedCode' => '5.50',
3190 'CPAN::FirstTime' => '5.402229',
3191 'CPAN::HandleConfig' => '5.402212',
3192 'CPAN::Nox' => '5.402411',
3193 'CPAN::Queue' => '5.402212',
3194 'CPAN::Tarzip' => '5.402213',
3195 'CPAN::Version' => '5.5',
3196 'CPANPLUS' => '0.84',
3197 'CPANPLUS::Dist::Build' => '0.06_02',
3198 'CPANPLUS::Internals' => '0.84',
3199 'CPANPLUS::Shell::Default'=> '0.84',
3200 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef,
3201 'Carp' => '1.08',
3202 'Carp::Heavy' => '1.08',
3203 'Compress::Raw::Zlib' => '2.008',
3204 'Compress::Zlib' => '2.008',
3205 'Cwd' => '3.2501',
3206 'DB_File' => '1.816_1',
3207 'Data::Dumper' => '2.121_14',
3208 'Devel::PPPort' => '3.13',
3209 'Digest::SHA' => '5.45',
3210 'Exporter' => '5.62',
3211 'Exporter::Heavy' => '5.62',
3212 'ExtUtils::CBuilder' => '0.21',
3213 'ExtUtils::CBuilder::Base'=> '0.21',
3214 'ExtUtils::CBuilder::Platform::Unix'=> '0.21',
3215 'ExtUtils::CBuilder::Platform::VMS'=> '0.22',
3216 'ExtUtils::CBuilder::Platform::Windows'=> '0.21',
3217 'ExtUtils::CBuilder::Platform::aix'=> '0.21',
3218 'ExtUtils::CBuilder::Platform::cygwin'=> '0.21',
3219 'ExtUtils::CBuilder::Platform::darwin'=> '0.21',
3220 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21',
3221 'ExtUtils::CBuilder::Platform::os2'=> '0.21',
3222 'ExtUtils::Command::MM' => '6.42',
3223 'ExtUtils::Constant::ProxySubs'=> '0.05',
3224 'ExtUtils::Embed' => '1.27',
3225 'ExtUtils::Install' => '1.44',
3226 'ExtUtils::Installed' => '1.43',
3227 'ExtUtils::Liblist' => '6.42',
3228 'ExtUtils::Liblist::Kid'=> '6.42',
3229 'ExtUtils::MM' => '6.42',
3230 'ExtUtils::MM_AIX' => '6.42',
3231 'ExtUtils::MM_Any' => '6.42',
3232 'ExtUtils::MM_BeOS' => '6.42',
3233 'ExtUtils::MM_Cygwin' => '6.42',
3234 'ExtUtils::MM_DOS' => '6.42',
3235 'ExtUtils::MM_MacOS' => '6.42',
3236 'ExtUtils::MM_NW5' => '6.42',
3237 'ExtUtils::MM_OS2' => '6.42',
3238 'ExtUtils::MM_QNX' => '6.42',
3239 'ExtUtils::MM_UWIN' => '6.42',
3240 'ExtUtils::MM_Unix' => '6.42',
3241 'ExtUtils::MM_VMS' => '6.42',
3242 'ExtUtils::MM_VOS' => '6.42',
3243 'ExtUtils::MM_Win32' => '6.42',
3244 'ExtUtils::MM_Win95' => '6.42',
3245 'ExtUtils::MY' => '6.42',
3246 'ExtUtils::MakeMaker' => '6.42',
3247 'ExtUtils::MakeMaker::Config'=> '6.42',
3248 'ExtUtils::MakeMaker::bytes'=> '6.42',
3249 'ExtUtils::MakeMaker::vmsish'=> '6.42',
3250 'ExtUtils::Mkbootstrap' => '6.42',
3251 'ExtUtils::Mksymlists' => '6.42',
3252 'ExtUtils::Packlist' => '1.43',
3253 'ExtUtils::ParseXS' => '2.18_02',
3254 'ExtUtils::testlib' => '6.42',
3255 'File::Copy' => '2.11',
3256 'File::Fetch' => '0.14',
3257 'File::Find' => '1.12',
3258 'File::Path' => '2.04',
3259 'File::Spec' => '3.2501',
3260 'File::Spec::Cygwin' => '3.2501',
3261 'File::Spec::Epoc' => '3.2501',
3262 'File::Spec::Functions' => '3.2501',
3263 'File::Spec::Mac' => '3.2501',
3264 'File::Spec::OS2' => '3.2501',
3265 'File::Spec::Unix' => '3.2501',
3266 'File::Spec::VMS' => '3.2501',
3267 'File::Spec::Win32' => '3.2501',
3268 'Filter::Util::Call' => '1.07',
3269 'Getopt::Long' => '2.37',
3270 'Hash::Util::FieldHash' => '1.03',
3271 'IO::Compress::Adapter::Deflate'=> '2.008',
3272 'IO::Compress::Adapter::Identity'=> '2.008',
3273 'IO::Compress::Base' => '2.008',
3274 'IO::Compress::Base::Common'=> '2.008',
3275 'IO::Compress::Deflate' => '2.008',
3276 'IO::Compress::Gzip' => '2.008',
3277 'IO::Compress::Gzip::Constants'=> '2.008',
3278 'IO::Compress::RawDeflate'=> '2.008',
3279 'IO::Compress::Zip' => '2.008',
3280 'IO::Compress::Zip::Constants'=> '2.008',
3281 'IO::Compress::Zlib::Constants'=> '2.008',
3282 'IO::Compress::Zlib::Extra'=> '2.008',
3283 'IO::Uncompress::Adapter::Identity'=> '2.008',
3284 'IO::Uncompress::Adapter::Inflate'=> '2.008',
3285 'IO::Uncompress::AnyInflate'=> '2.008',
3286 'IO::Uncompress::AnyUncompress'=> '2.008',
3287 'IO::Uncompress::Base' => '2.008',
3288 'IO::Uncompress::Gunzip'=> '2.008',
3289 'IO::Uncompress::Inflate'=> '2.008',
3290 'IO::Uncompress::RawInflate'=> '2.008',
3291 'IO::Uncompress::Unzip' => '2.008',
3292 'IO::Zlib' => '1.07',
3293 'IPC::Cmd' => '0.40_1',
3294 'IPC::SysV' => '1.05',
3295 'Locale::Maketext' => '1.12',
3296 'Log::Message::Simple' => '0.04',
3297 'Math::BigFloat' => '1.59',
3298 'Math::BigInt' => '1.88',
3299 'Math::BigInt::Calc' => '0.52',
3300 'Math::BigInt::FastCalc'=> '0.16',
3301 'Math::BigRat' => '0.21',
3302 'Module::Build' => '0.2808_01',
3303 'Module::Build::Base' => '0.2808_01',
3304 'Module::Build::Compat' => '0.2808_01',
3305 'Module::Build::Config' => '0.2808_01',
3306 'Module::Build::Dumper' => undef,
3307 'Module::Build::ModuleInfo'=> '0.2808_01',
3308 'Module::Build::Notes' => '0.2808_01',
3309 'Module::Build::PPMMaker'=> '0.2808_01',
3310 'Module::Build::Platform::Amiga'=> '0.2808_01',
3311 'Module::Build::Platform::Default'=> '0.2808_01',
3312 'Module::Build::Platform::EBCDIC'=> '0.2808_01',
3313 'Module::Build::Platform::MPEiX'=> '0.2808_01',
3314 'Module::Build::Platform::MacOS'=> '0.2808_01',
3315 'Module::Build::Platform::RiscOS'=> '0.2808_01',
3316 'Module::Build::Platform::Unix'=> '0.2808_01',
3317 'Module::Build::Platform::VMS'=> '0.2808_01',
3318 'Module::Build::Platform::VOS'=> '0.2808_01',
3319 'Module::Build::Platform::Windows'=> '0.2808_01',
3320 'Module::Build::Platform::aix'=> '0.2808_01',
3321 'Module::Build::Platform::cygwin'=> '0.2808_01',
3322 'Module::Build::Platform::darwin'=> '0.2808_01',
3323 'Module::Build::Platform::os2'=> '0.2808_01',
3324 'Module::Build::PodParser'=> '0.2808_01',
3325 'Module::CoreList' => '2.13',
3326 'Module::Load' => '0.12',
3327 'Module::Load::Conditional'=> '0.22',
3328 'Net::Cmd' => '2.29',
3329 'Net::Ping' => '2.33',
3330 'Opcode' => '1.11',
3331 'Pod::Checker' => '1.43_01',
3332 'Pod::Man' => '2.16',
3333 'Pod::Perldoc' => '3.14_02',
3334 'Socket' => '1.80',
3335 'Storable' => '2.18',
3336 'Sys::Syslog' => '0.22',
3337 'Sys::Syslog::win32::Win32'=> undef,
3338 'Term::Cap' => '1.12',
3339 'Term::ReadLine' => '1.03',
3340 'Term::UI' => '0.18',
3341 'Test::Builder' => '0.72',
3342 'Test::Builder::Module' => '0.72',
3343 'Test::Builder::Tester' => '1.09',
3344 'Test::Harness::Straps' => '0.26_01',
3345 'Test::More' => '0.72',
3346 'Test::Simple' => '0.72',
3347 'Text::ParseWords' => '3.26',
3348 'Text::Soundex' => '3.03',
3349 'Tie::StdHandle' => undef,
3350 'Time::HiRes' => '1.9711',
3351 'Time::Local' => '1.18',
3352 'Time::Piece' => '1.12',
3353 'VMS::Filespec' => '1.12',
3354 'Win32' => '0.34',
3355 'base' => '2.13',
3356 'constant' => '1.13',
3357 'feature' => '1.11',
3358 'fields' => '2.13',
3359 'filetest' => '1.02',
3360 'open' => '1.06',
3361 'threads' => '1.67',
3362 'threads::shared' => '1.14',
3363 'version' => '0.74',
3364 },
3365 removed => {
3366 }
5b5f44f3 3367 },
781ea95a 3368 5.010001 => {
a272bf38
DL
3369 delta_from => 5.01,
3370 changed => {
3371 'App::Prove' => '3.17',
3372 'App::Prove::State' => '3.17',
3373 'App::Prove::State::Result'=> '3.17',
3374 'App::Prove::State::Result::Test'=> '3.17',
3375 'Archive::Extract' => '0.34',
3376 'Archive::Tar' => '1.52',
3377 'Attribute::Handlers' => '0.85',
3378 'AutoLoader' => '5.68',
3379 'AutoSplit' => '1.06',
3380 'B' => '1.22',
3381 'B::Concise' => '0.76',
3382 'B::Debug' => '1.11',
3383 'B::Deparse' => '0.89',
3384 'B::Lint' => '1.11',
3385 'B::Lint::Debug' => undef,
3386 'B::Xref' => '1.02',
3387 'Benchmark' => '1.11',
3388 'CGI' => '3.43',
3389 'CGI::Carp' => '1.30_01',
3390 'CGI::Cookie' => '1.29',
3391 'CPAN' => '1.9402',
3392 'CPAN::Author' => '5.5',
3393 'CPAN::Bundle' => '5.5',
3394 'CPAN::CacheMgr' => '5.5',
3395 'CPAN::Complete' => '5.5',
3396 'CPAN::Debug' => '5.5',
3397 'CPAN::DeferredCode' => '5.50',
3398 'CPAN::Distribution' => '1.93',
3399 'CPAN::Distroprefs' => '6',
3400 'CPAN::Distrostatus' => '5.5',
3401 'CPAN::Exception::RecursiveDependency'=> '5.5',
3402 'CPAN::Exception::blocked_urllist'=> '1.0',
3403 'CPAN::Exception::yaml_not_installed'=> '5.5',
3404 'CPAN::FTP' => '5.5001',
3405 'CPAN::FTP::netrc' => '1.00',
3406 'CPAN::FirstTime' => '5.53',
3407 'CPAN::HandleConfig' => '5.5',
3408 'CPAN::Index' => '1.93',
3409 'CPAN::InfoObj' => '5.5',
3410 'CPAN::Kwalify' => '5.50',
3411 'CPAN::LWP::UserAgent' => '1.00',
3412 'CPAN::Module' => '5.5',
3413 'CPAN::Nox' => '5.50',
3414 'CPAN::Prompt' => '5.5',
3415 'CPAN::Queue' => '5.5',
3416 'CPAN::Shell' => '5.5',
3417 'CPAN::Tarzip' => '5.501',
3418 'CPAN::URL' => '5.5',
3419 'CPANPLUS' => '0.88',
3420 'CPANPLUS::Dist::Autobundle'=> undef,
3421 'CPANPLUS::Dist::Base' => undef,
3422 'CPANPLUS::Dist::Build' => '0.36',
3423 'CPANPLUS::Dist::Build::Constants'=> '0.36',
3424 'CPANPLUS::Internals' => '0.88',
3425 'CPANPLUS::Internals::Constants'=> undef,
3426 'CPANPLUS::Internals::Constants::Report'=> undef,
3427 'CPANPLUS::Internals::Source::Memory'=> undef,
3428 'CPANPLUS::Internals::Source::SQLite'=> undef,
3429 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef,
3430 'CPANPLUS::Shell::Default'=> '0.88',
3431 'Carp' => '1.11',
3432 'Carp::Heavy' => '1.11',
3433 'Compress::Raw::Bzip2' => '2.020',
3434 'Compress::Raw::Zlib' => '2.020',
3435 'Compress::Zlib' => '2.020',
3436 'Cwd' => '3.30',
3437 'DB' => '1.02',
3438 'DBM_Filter::compress' => '0.02',
3439 'DBM_Filter::encode' => '0.02',
3440 'DBM_Filter::int32' => '0.02',
3441 'DBM_Filter::null' => '0.02',
3442 'DBM_Filter::utf8' => '0.02',
3443 'DB_File' => '1.820',
3444 'Data::Dumper' => '2.124',
3445 'Devel::DProf' => '20080331.00',
3446 'Devel::PPPort' => '3.19',
3447 'Devel::Peek' => '1.04',
3448 'Digest' => '1.16',
3449 'Digest::MD5' => '2.39',
3450 'Digest::SHA' => '5.47',
3451 'Digest::base' => '1.16',
3452 'Digest::file' => '1.16',
3453 'DirHandle' => '1.03',
3454 'Dumpvalue' => '1.13',
3455 'DynaLoader' => '1.10',
3456 'Encode' => '2.35',
3457 'Encode::Alias' => '2.12',
3458 'Encode::CN::HZ' => '2.05',
3459 'Encode::Config' => '2.05',
3460 'Encode::GSM0338' => '2.01',
3461 'Encode::Guess' => '2.03',
3462 'Encode::JP::JIS7' => '2.04',
3463 'Encode::MIME::Header' => '2.11',
3464 'Encode::Unicode' => '2.06',
3465 'Errno' => '1.11',
3466 'Exporter' => '5.63',
3467 'Exporter::Heavy' => '5.63',
3468 'ExtUtils::CBuilder' => '0.2602',
3469 'ExtUtils::CBuilder::Base'=> '0.2602',
3470 'ExtUtils::CBuilder::Platform::Unix'=> '0.2602',
3471 'ExtUtils::CBuilder::Platform::VMS'=> '0.2602',
3472 'ExtUtils::CBuilder::Platform::Windows'=> '0.2602',
3473 'ExtUtils::CBuilder::Platform::aix'=> '0.2602',
3474 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602',
3475 'ExtUtils::CBuilder::Platform::darwin'=> '0.2602',
3476 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602',
3477 'ExtUtils::CBuilder::Platform::os2'=> '0.2602',
3478 'ExtUtils::Command' => '1.16',
3479 'ExtUtils::Command::MM' => '6.55_02',
3480 'ExtUtils::Constant' => '0.22',
3481 'ExtUtils::Constant::ProxySubs'=> '0.06',
3482 'ExtUtils::Constant::Utils'=> '0.02',
3483 'ExtUtils::Constant::XS'=> '0.03',
3484 'ExtUtils::Embed' => '1.28',
3485 'ExtUtils::Install' => '1.54',
3486 'ExtUtils::Installed' => '1.999_001',
3487 'ExtUtils::Liblist' => '6.55_02',
3488 'ExtUtils::Liblist::Kid'=> '6.5502',
3489 'ExtUtils::MM' => '6.55_02',
3490 'ExtUtils::MM_AIX' => '6.55_02',
3491 'ExtUtils::MM_Any' => '6.55_02',
3492 'ExtUtils::MM_BeOS' => '6.55_02',
3493 'ExtUtils::MM_Cygwin' => '6.55_02',
3494 'ExtUtils::MM_DOS' => '6.5502',
3495 'ExtUtils::MM_Darwin' => '6.55_02',
3496 'ExtUtils::MM_MacOS' => '6.5502',
3497 'ExtUtils::MM_NW5' => '6.55_02',
3498 'ExtUtils::MM_OS2' => '6.55_02',
3499 'ExtUtils::MM_QNX' => '6.55_02',
3500 'ExtUtils::MM_UWIN' => '6.5502',
3501 'ExtUtils::MM_Unix' => '6.55_02',
3502 'ExtUtils::MM_VMS' => '6.55_02',
3503 'ExtUtils::MM_VOS' => '6.55_02',
3504 'ExtUtils::MM_Win32' => '6.55_02',
3505 'ExtUtils::MM_Win95' => '6.55_02',
3506 'ExtUtils::MY' => '6.5502',
3507 'ExtUtils::MakeMaker' => '6.55_02',
3508 'ExtUtils::MakeMaker::Config'=> '6.55_02',
3509 'ExtUtils::Manifest' => '1.56',
3510 'ExtUtils::Mkbootstrap' => '6.55_02',
3511 'ExtUtils::Mksymlists' => '6.55_02',
3512 'ExtUtils::ParseXS' => '2.2002',
3513 'ExtUtils::testlib' => '6.5502',
3514 'Fatal' => '2.06_01',
3515 'File::Basename' => '2.77',
3516 'File::CheckTree' => '4.4',
3517 'File::Compare' => '1.1006',
3518 'File::Copy' => '2.14',
3519 'File::DosGlob' => '1.01',
3520 'File::Fetch' => '0.20',
3521 'File::Find' => '1.14',
3522 'File::GlobMapper' => '1.000',
3523 'File::Path' => '2.07_03',
3524 'File::Spec' => '3.30',
3525 'File::Spec::Cygwin' => '3.30',
3526 'File::Spec::Epoc' => '3.30',
3527 'File::Spec::Functions' => '3.30',
3528 'File::Spec::Mac' => '3.30',
3529 'File::Spec::OS2' => '3.30',
3530 'File::Spec::Unix' => '3.30',
3531 'File::Spec::VMS' => '3.30',
3532 'File::Spec::Win32' => '3.30',
3533 'File::Temp' => '0.22',
3534 'File::stat' => '1.01',
3535 'FileCache' => '1.08',
3536 'FileHandle' => '2.02',
3537 'Filter::Simple' => '0.84',
3538 'Filter::Util::Call' => '1.08',
3539 'FindBin' => '1.50',
3540 'GDBM_File' => '1.09',
3541 'Getopt::Long' => '2.38',
3542 'Getopt::Std' => '1.06',
3543 'Hash::Util::FieldHash' => '1.04',
3544 'I18N::Collate' => '1.01',
3545 'IO' => '1.25',
3546 'IO::Compress::Adapter::Bzip2'=> '2.020',
3547 'IO::Compress::Adapter::Deflate'=> '2.020',
3548 'IO::Compress::Adapter::Identity'=> '2.020',
3549 'IO::Compress::Base' => '2.020',
3550 'IO::Compress::Base::Common'=> '2.020',
3551 'IO::Compress::Bzip2' => '2.020',
3552 'IO::Compress::Deflate' => '2.020',
3553 'IO::Compress::Gzip' => '2.020',
3554 'IO::Compress::Gzip::Constants'=> '2.020',
3555 'IO::Compress::RawDeflate'=> '2.020',
3556 'IO::Compress::Zip' => '2.020',
3557 'IO::Compress::Zip::Constants'=> '2.020',
3558 'IO::Compress::Zlib::Constants'=> '2.020',
3559 'IO::Compress::Zlib::Extra'=> '2.020',
3560 'IO::Dir' => '1.07',
3561 'IO::Handle' => '1.28',
3562 'IO::Socket' => '1.31',
3563 'IO::Uncompress::Adapter::Bunzip2'=> '2.020',
3564 'IO::Uncompress::Adapter::Identity'=> '2.020',
3565 'IO::Uncompress::Adapter::Inflate'=> '2.020',
3566 'IO::Uncompress::AnyInflate'=> '2.020',
3567 'IO::Uncompress::AnyUncompress'=> '2.020',
3568 'IO::Uncompress::Base' => '2.020',
3569 'IO::Uncompress::Bunzip2'=> '2.020',
3570 'IO::Uncompress::Gunzip'=> '2.020',
3571 'IO::Uncompress::Inflate'=> '2.020',
3572 'IO::Uncompress::RawInflate'=> '2.020',
3573 'IO::Uncompress::Unzip' => '2.020',
3574 'IO::Zlib' => '1.09',
3575 'IPC::Cmd' => '0.46',
3576 'IPC::Msg' => '2.01',
3577 'IPC::Open2' => '1.03',
3578 'IPC::Open3' => '1.04',
3579 'IPC::Semaphore' => '2.01',
3580 'IPC::SharedMem' => '2.01',
3581 'IPC::SysV' => '2.01',
3582 'List::Util' => '1.21',
3583 'List::Util::PP' => '1.21',
3584 'List::Util::XS' => '1.21',
3585 'Locale::Maketext' => '1.13',
3586 'Locale::Maketext::Guts'=> '1.13',
3587 'Locale::Maketext::GutsLoader'=> '1.13',
3588 'Log::Message' => '0.02',
3589 'MIME::Base64' => '3.08',
3590 'MIME::QuotedPrint' => '3.08',
3591 'Math::BigFloat' => '1.60',
3592 'Math::BigInt' => '1.89',
3593 'Math::BigInt::FastCalc'=> '0.19',
3594 'Math::BigRat' => '0.22',
3595 'Math::Complex' => '1.56',
3596 'Math::Trig' => '1.2',
3597 'Memoize' => '1.01_03',
3598 'Module::Build' => '0.340201',
3599 'Module::Build::Base' => '0.340201',
3600 'Module::Build::Compat' => '0.340201',
3601 'Module::Build::Config' => '0.340201',
3602 'Module::Build::Cookbook'=> '0.340201',
3603 'Module::Build::Dumper' => '0.340201',
3604 'Module::Build::ModuleInfo'=> '0.340201',
3605 'Module::Build::Notes' => '0.340201',
3606 'Module::Build::PPMMaker'=> '0.340201',
3607 'Module::Build::Platform::Amiga'=> '0.340201',
3608 'Module::Build::Platform::Default'=> '0.340201',
3609 'Module::Build::Platform::EBCDIC'=> '0.340201',
3610 'Module::Build::Platform::MPEiX'=> '0.340201',
3611 'Module::Build::Platform::MacOS'=> '0.340201',
3612 'Module::Build::Platform::RiscOS'=> '0.340201',
3613 'Module::Build::Platform::Unix'=> '0.340201',
3614 'Module::Build::Platform::VMS'=> '0.340201',
3615 'Module::Build::Platform::VOS'=> '0.340201',
3616 'Module::Build::Platform::Windows'=> '0.340201',
3617 'Module::Build::Platform::aix'=> '0.340201',
3618 'Module::Build::Platform::cygwin'=> '0.340201',
3619 'Module::Build::Platform::darwin'=> '0.340201',
3620 'Module::Build::Platform::os2'=> '0.340201',
3621 'Module::Build::PodParser'=> '0.340201',
3622 'Module::Build::Version'=> '0.77',
3623 'Module::CoreList' => '2.18',
3624 'Module::Load' => '0.16',
3625 'Module::Load::Conditional'=> '0.30',
3626 'Module::Loaded' => '0.02',
3627 'Module::Pluggable' => '3.9',
3628 'Module::Pluggable::Object'=> '3.9',
3629 'NDBM_File' => '1.08',
3630 'NEXT' => '0.64',
3631 'Net::Ping' => '2.36',
3632 'O' => '1.01',
3633 'Object::Accessor' => '0.34',
3634 'POSIX' => '1.17',
3635 'Package::Constants' => '0.02',
3636 'Parse::CPAN::Meta' => '1.39',
3637 'PerlIO' => '1.06',
3638 'PerlIO::encoding' => '0.11',
3639 'PerlIO::scalar' => '0.07',
3640 'PerlIO::via' => '0.07',
3641 'Pod::Checker' => '1.45',
3642 'Pod::Find' => '1.35',
3643 'Pod::Html' => '1.09',
3644 'Pod::InputObjects' => '1.31',
3645 'Pod::Man' => '2.22',
3646 'Pod::ParseLink' => '1.09',
3647 'Pod::ParseUtils' => '1.36',
3648 'Pod::Parser' => '1.37',
3649 'Pod::Perldoc' => '3.14_04',
3650 'Pod::PlainText' => '2.04',
3651 'Pod::Select' => '1.36',
3652 'Pod::Simple' => '3.07',
3653 'Pod::Simple::XHTML' => '3.04',
3654 'Pod::Text' => '3.13',
3655 'Pod::Text::Color' => '2.05',
3656 'Pod::Text::Overstrike' => '2.03',
3657 'Pod::Text::Termcap' => '2.05',
3658 'Pod::Usage' => '1.36',
3659 'Safe' => '2.18',
3660 'Scalar::Util' => '1.21',
3661 'Scalar::Util::PP' => '1.21',
3662 'SelectSaver' => '1.02',
3663 'SelfLoader' => '1.17',
3664 'Socket' => '1.82',
3665 'Storable' => '2.20',
3666 'Switch' => '2.14',
3667 'Symbol' => '1.07',
3668 'Sys::Syslog' => '0.27',
3669 'TAP::Base' => '3.17',
3670 'TAP::Formatter::Base' => '3.17',
3671 'TAP::Formatter::Color' => '3.17',
3672 'TAP::Formatter::Console'=> '3.17',
3673 'TAP::Formatter::Console::ParallelSession'=> '3.17',
3674 'TAP::Formatter::Console::Session'=> '3.17',
3675 'TAP::Formatter::File' => '3.17',
3676 'TAP::Formatter::File::Session'=> '3.17',
3677 'TAP::Formatter::Session'=> '3.17',
3678 'TAP::Harness' => '3.17',
3679 'TAP::Object' => '3.17',
3680 'TAP::Parser' => '3.17',
3681 'TAP::Parser::Aggregator'=> '3.17',
3682 'TAP::Parser::Grammar' => '3.17',
3683 'TAP::Parser::Iterator' => '3.17',
3684 'TAP::Parser::Iterator::Array'=> '3.17',
3685 'TAP::Parser::Iterator::Process'=> '3.17',
3686 'TAP::Parser::Iterator::Stream'=> '3.17',
3687 'TAP::Parser::IteratorFactory'=> '3.17',
3688 'TAP::Parser::Multiplexer'=> '3.17',
3689 'TAP::Parser::Result' => '3.17',
3690 'TAP::Parser::Result::Bailout'=> '3.17',
3691 'TAP::Parser::Result::Comment'=> '3.17',
3692 'TAP::Parser::Result::Plan'=> '3.17',
3693 'TAP::Parser::Result::Pragma'=> '3.17',
3694 'TAP::Parser::Result::Test'=> '3.17',
3695 'TAP::Parser::Result::Unknown'=> '3.17',
3696 'TAP::Parser::Result::Version'=> '3.17',
3697 'TAP::Parser::Result::YAML'=> '3.17',
3698 'TAP::Parser::ResultFactory'=> '3.17',
3699 'TAP::Parser::Scheduler'=> '3.17',
3700 'TAP::Parser::Scheduler::Job'=> '3.17',
3701 'TAP::Parser::Scheduler::Spinner'=> '3.17',
3702 'TAP::Parser::Source' => '3.17',
3703 'TAP::Parser::Source::Perl'=> '3.17',
3704 'TAP::Parser::Utils' => '3.17',
3705 'TAP::Parser::YAMLish::Reader'=> '3.17',
3706 'TAP::Parser::YAMLish::Writer'=> '3.17',
3707 'Term::ANSIColor' => '2.00',
3708 'Term::ReadLine' => '1.04',
3709 'Term::UI' => '0.20',
3710 'Test' => '1.25_02',
3711 'Test::Builder' => '0.92',
3712 'Test::Builder::Module' => '0.92',
3713 'Test::Builder::Tester' => '1.18',
3714 'Test::Builder::Tester::Color'=> '1.18',
3715 'Test::Harness' => '3.17',
3716 'Test::More' => '0.92',
3717 'Test::Simple' => '0.92',
3718 'Text::ParseWords' => '3.27',
3719 'Text::Tabs' => '2009.0305',
3720 'Text::Wrap' => '2009.0305',
3721 'Thread::Queue' => '2.11',
3722 'Thread::Semaphore' => '2.09',
3723 'Tie::Handle' => '4.2',
3724 'Tie::Hash' => '1.03',
3725 'Tie::RefHash' => '1.38',
3726 'Tie::Scalar' => '1.01',
3727 'Tie::StdHandle' => '4.2',
3728 'Time::HiRes' => '1.9719',
3729 'Time::Local' => '1.1901',
3730 'Time::Piece' => '1.15',
3731 'UNIVERSAL' => '1.05',
3732 'Unicode' => '5.1.0',
3733 'Unicode::Normalize' => '1.03',
3734 'Unicode::UCD' => '0.27',
3735 'VMS::Stdio' => '2.4',
3736 'Win32' => '0.39',
3737 'Win32API::File' => '0.1101',
3738 'XS::APItest' => '0.15',
3739 'XS::Typemap' => '0.03',
3740 'XSLoader' => '0.10',
3741 'attributes' => '0.09',
3742 'attrs' => '1.03',
3743 'autodie' => '2.06_01',
3744 'autodie::exception' => '2.06_01',
3745 'autodie::exception::system'=> '2.06_01',
3746 'autodie::hints' => '2.06_01',
3747 'base' => '2.14',
3748 'bigint' => '0.23',
3749 'bignum' => '0.23',
3750 'bigrat' => '0.23',
3751 'blib' => '1.04',
3752 'charnames' => '1.07',
3753 'constant' => '1.17',
3754 'encoding' => '2.6_01',
3755 'feature' => '1.13',
3756 'fields' => '2.14',
3757 'lib' => '0.62',
3758 'mro' => '1.01',
3759 'open' => '1.07',
3760 'ops' => '1.02',
3761 'overload' => '1.07',
3762 'overload::numbers' => undef,
3763 'overloading' => '0.01',
3764 'parent' => '0.221',
3765 're' => '0.09',
3766 'threads' => '1.72',
3767 'threads::shared' => '1.29',
3768 'version' => '0.77',
3769 },
3770 removed => {
3771 'CPAN::API::HOWTO' => 1,
3772 'CPAN::DeferedCode' => 1,
3773 'CPANPLUS::inc' => 1,
3774 'ExtUtils::MakeMaker::bytes'=> 1,
3775 'ExtUtils::MakeMaker::vmsish'=> 1,
3776 'Test::Harness::Assert' => 1,
3777 'Test::Harness::Iterator'=> 1,
3778 'Test::Harness::Point' => 1,
3779 'Test::Harness::Results'=> 1,
3780 'Test::Harness::Straps' => 1,
3781 'Test::Harness::Util' => 1,
3782 }
781ea95a 3783 },
a272bf38
DL
3784 5.011 => {
3785 delta_from => 5.010001,
3786 changed => {
3787 'Archive::Tar' => '1.54',
3788 'Attribute::Handlers' => '0.87',
3789 'AutoLoader' => '5.70',
3790 'B::Deparse' => '0.91',
3791 'B::Lint' => '1.11_01',
3792 'B::Lint::Debug' => '0.01',
3793 'CGI' => '3.45',
3794 'CGI::Apache' => '1.01',
3795 'CGI::Carp' => '3.45',
3796 'CGI::Pretty' => '3.44',
3797 'CGI::Switch' => '1.01',
3798 'CGI::Util' => '3.45',
3799 'CPAN' => '1.94_51',
3800 'CPAN::Distribution' => '1.94',
3801 'CPAN::FTP' => '5.5002',
3802 'CPAN::Index' => '1.94',
3803 'CPAN::LWP::UserAgent' => '1.94',
3804 'CPANPLUS::Dist::Build' => '0.40',
3805 'CPANPLUS::Dist::Build::Constants'=> '0.40',
3806 'Carp' => '1.12',
3807 'Carp::Heavy' => '1.12',
3808 'Class::ISA' => '0.36',
3809 'Compress::Raw::Bzip2' => '2.021',
3810 'Compress::Raw::Zlib' => '2.021',
3811 'Compress::Zlib' => '2.021',
3812 'Cwd' => '3.3002',
3813 'Data::Dumper' => '2.125',
3814 'Encode' => '2.37',
3815 'Exporter' => '5.64',
3816 'Exporter::Heavy' => '5.64',
3817 'ExtUtils::ParseXS' => '2.200403',
3818 'File::Basename' => '2.78',
3819 'File::Copy' => '2.16',
3820 'File::stat' => '1.02',
3821 'IO' => '1.25_01',
3822 'IO::Compress::Adapter::Bzip2'=> '2.021',
3823 'IO::Compress::Adapter::Deflate'=> '2.021',
3824 'IO::Compress::Adapter::Identity'=> '2.021',
3825 'IO::Compress::Base' => '2.021',
3826 'IO::Compress::Base::Common'=> '2.021',
3827 'IO::Compress::Bzip2' => '2.021',
3828 'IO::Compress::Deflate' => '2.021',
3829 'IO::Compress::Gzip' => '2.021',
3830 'IO::Compress::Gzip::Constants'=> '2.021',
3831 'IO::Compress::RawDeflate'=> '2.021',
3832 'IO::Compress::Zip' => '2.021',
3833 'IO::Compress::Zip::Constants'=> '2.021',
3834 'IO::Compress::Zlib::Constants'=> '2.021',
3835 'IO::Compress::Zlib::Extra'=> '2.021',
3836 'IO::Uncompress::Adapter::Bunzip2'=> '2.021',
3837 'IO::Uncompress::Adapter::Identity'=> '2.021',
3838 'IO::Uncompress::Adapter::Inflate'=> '2.021',
3839 'IO::Uncompress::AnyInflate'=> '2.021',
3840 'IO::Uncompress::AnyUncompress'=> '2.021',
3841 'IO::Uncompress::Base' => '2.021',
3842 'IO::Uncompress::Bunzip2'=> '2.021',
3843 'IO::Uncompress::Gunzip'=> '2.021',
3844 'IO::Uncompress::Inflate'=> '2.021',
3845 'IO::Uncompress::RawInflate'=> '2.021',
3846 'IO::Uncompress::Unzip' => '2.021',
3847 'IO::Zlib' => '1.10',
3848 'IPC::Cmd' => '0.50',
3849 'IPC::Open3' => '1.05',
3850 'Locale::Maketext::Simple'=> '0.21',
3851 'Log::Message::Simple' => '0.06',
3852 'Math::BigInt' => '1.89_01',
3853 'Math::BigRat' => '0.24',
3854 'Module::Build' => '0.35',
3855 'Module::Build::Base' => '0.35',
3856 'Module::Build::Compat' => '0.35',
3857 'Module::Build::Config' => '0.35',
3858 'Module::Build::Cookbook'=> '0.35',
3859 'Module::Build::Dumper' => '0.35',
3860 'Module::Build::ModuleInfo'=> '0.35',
3861 'Module::Build::Notes' => '0.35',
3862 'Module::Build::PPMMaker'=> '0.35',
3863 'Module::Build::Platform::Amiga'=> '0.35',
3864 'Module::Build::Platform::Default'=> '0.35',
3865 'Module::Build::Platform::EBCDIC'=> '0.35',
3866 'Module::Build::Platform::MPEiX'=> '0.35',
3867 'Module::Build::Platform::MacOS'=> '0.35',
3868 'Module::Build::Platform::RiscOS'=> '0.35',
3869 'Module::Build::Platform::Unix'=> '0.35',
3870 'Module::Build::Platform::VMS'=> '0.35',
3871 'Module::Build::Platform::VOS'=> '0.35',
3872 'Module::Build::Platform::Windows'=> '0.35',
3873 'Module::Build::Platform::aix'=> '0.35',
3874 'Module::Build::Platform::cygwin'=> '0.35',
3875 'Module::Build::Platform::darwin'=> '0.35',
3876 'Module::Build::Platform::os2'=> '0.35',
3877 'Module::Build::PodParser'=> '0.35',
3878 'Module::CoreList' => '2.19',
3879 'Module::Loaded' => '0.06',
3880 'Opcode' => '1.13',
3881 'PerlIO::via' => '0.08',
3882 'Pod::Perldoc' => '3.15_01',
3883 'Pod::Plainer' => '1.01',
3884 'Safe' => '2.19',
3885 'Socket' => '1.84',
3886 'Switch' => '2.14_01',
3887 'Term::ANSIColor' => '2.02',
3888 'Term::ReadLine' => '1.05',
3889 'Text::Balanced' => '2.02',
3890 'Text::Soundex' => '3.03_01',
3891 'Time::Local' => '1.1901_01',
3892 'Unicode::Collate' => '0.52_01',
3893 'attributes' => '0.12',
3894 'constant' => '1.19',
3895 'deprecate' => '0.01',
3896 'overload' => '1.08',
3897 'parent' => '0.223',
3898 're' => '0.10',
3899 'threads' => '1.74',
3900 'threads::shared' => '1.31',
3901 'warnings' => '1.07',
3902 },
3903 removed => {
3904 'attrs' => 1,
3905 }
24081a3a 3906 },
979b9961 3907 5.011001 => {
a272bf38
DL
3908 delta_from => 5.011,
3909 changed => {
3910 'B' => '1.23',
3911 'B::Concise' => '0.77',
3912 'B::Deparse' => '0.92',
3913 'CGI' => '3.48',
3914 'CGI::Pretty' => '3.46',
3915 'CGI::Util' => '3.48',
3916 'CPANPLUS' => '0.89_03',
3917 'CPANPLUS::Internals' => '0.89_03',
3918 'CPANPLUS::Shell::Default'=> '0.89_03',
3919 'Carp' => '1.13',
3920 'Carp::Heavy' => '1.13',
3921 'ExtUtils::CBuilder' => '0.260301',
3922 'ExtUtils::CBuilder::Base'=> '0.260301',
3923 'ExtUtils::CBuilder::Platform::Unix'=> '0.260301',
3924 'ExtUtils::CBuilder::Platform::VMS'=> '0.260301',
3925 'ExtUtils::CBuilder::Platform::Windows'=> '0.260301',
3926 'ExtUtils::CBuilder::Platform::aix'=> '0.260301',
3927 'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301',
3928 'ExtUtils::CBuilder::Platform::darwin'=> '0.260301',
3929 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301',
3930 'ExtUtils::CBuilder::Platform::os2'=> '0.260301',
3931 'ExtUtils::Install' => '1.55',
3932 'ExtUtils::Manifest' => '1.57',
3933 'ExtUtils::Packlist' => '1.44',
3934 'ExtUtils::ParseXS' => '2.21',
3935 'File::Glob' => '1.07',
3936 'File::Path' => '2.08',
3937 'IO' => '1.25_02',
3938 'Module::CoreList' => '2.21',
3939 'Object::Accessor' => '0.36',
3940 'Opcode' => '1.15',
3941 'POSIX' => '1.18',
3942 'Parse::CPAN::Meta' => '1.40',
3943 'PerlIO::via' => '0.09',
3944 'Pod::Simple' => '3.08',
3945 'Socket' => '1.85',
3946 'Storable' => '2.22',
3947 'Switch' => '2.15',
3948 'Test::Builder' => '0.94',
3949 'Test::Builder::Module' => '0.94',
3950 'Test::More' => '0.94',
3951 'Test::Simple' => '0.94',
3952 'XS::APItest' => '0.16',
3953 'mro' => '1.02',
3954 'overload' => '1.09',
3955 'threads::shared' => '1.32',
3956 },
3957 removed => {
3958 }
979b9961 3959 },
a68163ea 3960 5.011002 => {
a272bf38
DL
3961 delta_from => 5.011001,
3962 changed => {
3963 'B::Concise' => '0.78',
3964 'B::Deparse' => '0.93',
3965 'CPANPLUS' => '0.89_09',
3966 'CPANPLUS::Dist::Build' => '0.44',
3967 'CPANPLUS::Dist::Build::Constants'=> '0.44',
3968 'CPANPLUS::Internals' => '0.89_09',
3969 'CPANPLUS::Shell::Default'=> '0.89_09',
3970 'Carp' => '1.14',
3971 'Carp::Heavy' => '1.14',
3972 'Compress::Zlib' => '2.022',
3973 'DBM_Filter' => '0.03',
3974 'Encode' => '2.38',
3975 'Encode::Byte' => '2.04',
3976 'Encode::CN' => '2.03',
3977 'Encode::JP' => '2.04',
3978 'Encode::KR' => '2.03',
3979 'Encode::TW' => '2.03',
3980 'Encode::Unicode' => '2.07',
3981 'Env' => '1.01',
3982 'Exporter' => '5.64_01',
3983 'Exporter::Heavy' => '5.64_01',
3984 'ExtUtils::CBuilder' => '0.27',
3985 'ExtUtils::CBuilder::Base'=> '0.27',
3986 'ExtUtils::CBuilder::Platform::Unix'=> '0.27',
3987 'ExtUtils::CBuilder::Platform::VMS'=> '0.27',
3988 'ExtUtils::CBuilder::Platform::Windows'=> '0.27',
3989 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27',
3990 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27',
3991 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27',
3992 'ExtUtils::CBuilder::Platform::aix'=> '0.27',
3993 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27',
3994 'ExtUtils::CBuilder::Platform::darwin'=> '0.27',
3995 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27',
3996 'ExtUtils::CBuilder::Platform::os2'=> '0.27',
3997 'File::Fetch' => '0.22',
3998 'I18N::LangTags::Detect'=> '1.04',
3999 'I18N::Langinfo' => '0.03',
4000 'IO::Compress::Adapter::Bzip2'=> '2.022',
4001 'IO::Compress::Adapter::Deflate'=> '2.022',
4002 'IO::Compress::Adapter::Identity'=> '2.022',
4003 'IO::Compress::Base' => '2.022',
4004 'IO::Compress::Base::Common'=> '2.022',
4005 'IO::Compress::Bzip2' => '2.022',
4006 'IO::Compress::Deflate' => '2.022',
4007 'IO::Compress::Gzip' => '2.022',
4008 'IO::Compress::Gzip::Constants'=> '2.022',
4009 'IO::Compress::RawDeflate'=> '2.022',
4010 'IO::Compress::Zip' => '2.022',
4011 'IO::Compress::Zip::Constants'=> '2.022',
4012 'IO::Compress::Zlib::Constants'=> '2.022',
4013 'IO::Compress::Zlib::Extra'=> '2.022',
4014 'IO::Uncompress::Adapter::Bunzip2'=> '2.022',
4015 'IO::Uncompress::Adapter::Identity'=> '2.022',
4016 'IO::Uncompress::Adapter::Inflate'=> '2.022',
4017 'IO::Uncompress::AnyInflate'=> '2.022',
4018 'IO::Uncompress::AnyUncompress'=> '2.022',
4019 'IO::Uncompress::Base' => '2.022',
4020 'IO::Uncompress::Bunzip2'=> '2.022',
4021 'IO::Uncompress::Gunzip'=> '2.022',
4022 'IO::Uncompress::Inflate'=> '2.022',
4023 'IO::Uncompress::RawInflate'=> '2.022',
4024 'IO::Uncompress::Unzip' => '2.022',
4025 'IPC::Cmd' => '0.54',
4026 'List::Util' => '1.22',
4027 'List::Util::PP' => '1.22',
4028 'List::Util::XS' => '1.22',
4029 'Locale::Maketext' => '1.14',
4030 'Module::Build' => '0.35_09',
4031 'Module::Build::Base' => '0.35_09',
4032 'Module::Build::Compat' => '0.35_09',
4033 'Module::Build::Config' => '0.35_09',
4034 'Module::Build::Cookbook'=> '0.35_09',
4035 'Module::Build::Dumper' => '0.35_09',
4036 'Module::Build::ModuleInfo'=> '0.35_09',
4037 'Module::Build::Notes' => '0.35_09',
4038 'Module::Build::PPMMaker'=> '0.35_09',
4039 'Module::Build::Platform::Amiga'=> '0.35_09',
4040 'Module::Build::Platform::Default'=> '0.35_09',
4041 'Module::Build::Platform::EBCDIC'=> '0.35_09',
4042 'Module::Build::Platform::MPEiX'=> '0.35_09',
4043 'Module::Build::Platform::MacOS'=> '0.35_09',
4044 'Module::Build::Platform::RiscOS'=> '0.35_09',
4045 'Module::Build::Platform::Unix'=> '0.35_09',
4046 'Module::Build::Platform::VMS'=> '0.35_09',
4047 'Module::Build::Platform::VOS'=> '0.35_09',
4048 'Module::Build::Platform::Windows'=> '0.35_09',
4049 'Module::Build::Platform::aix'=> '0.35_09',
4050 'Module::Build::Platform::cygwin'=> '0.35_09',
4051 'Module::Build::Platform::darwin'=> '0.35_09',
4052 'Module::Build::Platform::os2'=> '0.35_09',
4053 'Module::Build::PodParser'=> '0.35_09',
4054 'Module::Build::YAML' => '1.40',
4055 'Module::CoreList' => '2.23',
4056 'Module::Load::Conditional'=> '0.34',
4057 'Pod::Simple' => '3.10',
4058 'Pod::Simple::XHTML' => '3.10',
4059 'Scalar::Util' => '1.22',
4060 'Scalar::Util::PP' => '1.22',
4061 'Switch' => '2.16',
4062 'XS::APItest' => '0.17',
4063 'XS::APItest::KeywordRPN'=> '0.003',
4064 'base' => '2.15',
4065 'diagnostics' => '1.18',
4066 'fields' => '2.15',
4067 'inc::latest' => '0.35_09',
4068 'legacy' => '1.00',
4069 'overload' => '1.10',
4070 },
4071 removed => {
4072 }
a68163ea 4073 },
65f8b4e7 4074 5.011003 => {
a272bf38
DL
4075 delta_from => 5.011002,
4076 changed => {
4077 'App::Cpan' => '1.570001',
4078 'Archive::Extract' => '0.36',
4079 'CPAN' => '1.94_5301',
4080 'CPAN::FTP' => '5.5004',
4081 'CPAN::FirstTime' => '5.530001',
4082 'CPAN::Mirrors' => '1.770001',
4083 'CPANPLUS' => '0.90',
4084 'CPANPLUS::Internals' => '0.90',
4085 'CPANPLUS::Shell::Default'=> '0.90',
4086 'Cwd' => '3.31',
4087 'Encode' => '2.39',
4088 'ExtUtils::Command::MM' => '6.56',
4089 'ExtUtils::Liblist' => '6.56',
4090 'ExtUtils::Liblist::Kid'=> '6.56',
4091 'ExtUtils::MM' => '6.56',
4092 'ExtUtils::MM_AIX' => '6.56',
4093 'ExtUtils::MM_Any' => '6.56',
4094 'ExtUtils::MM_BeOS' => '6.56',
4095 'ExtUtils::MM_Cygwin' => '6.56',
4096 'ExtUtils::MM_DOS' => '6.56',
4097 'ExtUtils::MM_Darwin' => '6.56',
4098 'ExtUtils::MM_MacOS' => '6.56',
4099 'ExtUtils::MM_NW5' => '6.56',
4100 'ExtUtils::MM_OS2' => '6.56',
4101 'ExtUtils::MM_QNX' => '6.56',
4102 'ExtUtils::MM_UWIN' => '6.56',
4103 'ExtUtils::MM_Unix' => '6.56',
4104 'ExtUtils::MM_VMS' => '6.56',
4105 'ExtUtils::MM_VOS' => '6.56',
4106 'ExtUtils::MM_Win32' => '6.56',
4107 'ExtUtils::MM_Win95' => '6.56',
4108 'ExtUtils::MY' => '6.56',
4109 'ExtUtils::MakeMaker' => '6.56',
4110 'ExtUtils::MakeMaker::Config'=> '6.56',
4111 'ExtUtils::Mkbootstrap' => '6.56',
4112 'ExtUtils::Mksymlists' => '6.56',
4113 'ExtUtils::testlib' => '6.56',
4114 'File::Find' => '1.15',
4115 'File::Path' => '2.08_01',
4116 'File::Spec' => '3.31',
4117 'Module::Build' => '0.36',
4118 'Module::Build::Base' => '0.36',
4119 'Module::Build::Compat' => '0.36',
4120 'Module::Build::Config' => '0.36',
4121 'Module::Build::Cookbook'=> '0.36',
4122 'Module::Build::Dumper' => '0.36',
4123 'Module::Build::ModuleInfo'=> '0.36',
4124 'Module::Build::Notes' => '0.36',
4125 'Module::Build::PPMMaker'=> '0.36',
4126 'Module::Build::Platform::Amiga'=> '0.36',
4127 'Module::Build::Platform::Default'=> '0.36',
4128 'Module::Build::Platform::EBCDIC'=> '0.36',
4129 'Module::Build::Platform::MPEiX'=> '0.36',
4130 'Module::Build::Platform::MacOS'=> '0.36',
4131 'Module::Build::Platform::RiscOS'=> '0.36',
4132 'Module::Build::Platform::Unix'=> '0.36',
4133 'Module::Build::Platform::VMS'=> '0.36',
4134 'Module::Build::Platform::VOS'=> '0.36',
4135 'Module::Build::Platform::Windows'=> '0.36',
4136 'Module::Build::Platform::aix'=> '0.36',
4137 'Module::Build::Platform::cygwin'=> '0.36',
4138 'Module::Build::Platform::darwin'=> '0.36',
4139 'Module::Build::Platform::os2'=> '0.36',
4140 'Module::Build::PodParser'=> '0.36',
4141 'Module::CoreList' => '2.24',
4142 'POSIX' => '1.19',
4143 'Pod::Simple' => '3.13',
4144 'Pod::Simple::BlackBox' => '3.13',
4145 'Pod::Simple::Checker' => '3.13',
4146 'Pod::Simple::Debug' => '3.13',
4147 'Pod::Simple::DumpAsText'=> '3.13',
4148 'Pod::Simple::DumpAsXML'=> '3.13',
4149 'Pod::Simple::HTML' => '3.13',
4150 'Pod::Simple::HTMLBatch'=> '3.13',
4151 'Pod::Simple::LinkSection'=> '3.13',
4152 'Pod::Simple::Methody' => '3.13',
4153 'Pod::Simple::Progress' => '3.13',
4154 'Pod::Simple::PullParser'=> '3.13',
4155 'Pod::Simple::PullParserEndToken'=> '3.13',
4156 'Pod::Simple::PullParserStartToken'=> '3.13',
4157 'Pod::Simple::PullParserTextToken'=> '3.13',
4158 'Pod::Simple::PullParserToken'=> '3.13',
4159 'Pod::Simple::RTF' => '3.13',
4160 'Pod::Simple::Search' => '3.13',
4161 'Pod::Simple::SimpleTree'=> '3.13',
4162 'Pod::Simple::Text' => '3.13',
4163 'Pod::Simple::TextContent'=> '3.13',
4164 'Pod::Simple::TiedOutFH'=> '3.13',
4165 'Pod::Simple::Transcode'=> '3.13',
4166 'Pod::Simple::TranscodeDumb'=> '3.13',
4167 'Pod::Simple::TranscodeSmart'=> '3.13',
4168 'Pod::Simple::XHTML' => '3.13',
4169 'Pod::Simple::XMLOutStream'=> '3.13',
4170 'Safe' => '2.20',
4171 'Unicode' => '5.2.0',
4172 'constant' => '1.20',
4173 'diagnostics' => '1.19',
4174 'feature' => '1.14',
4175 'inc::latest' => '0.36',
4176 'threads' => '1.75',
4177 'warnings' => '1.08',
4178 },
4179 removed => {
4180 'legacy' => 1,
4181 }
65f8b4e7 4182 },
d3cba0fe 4183 5.011004 => {
a272bf38
DL
4184 delta_from => 5.011003,
4185 changed => {
4186 'App::Cpan' => '1.5701',
4187 'Archive::Extract' => '0.38',
4188 'B::Deparse' => '0.94',
4189 'CPAN' => '1.94_54',
4190 'CPAN::FirstTime' => '5.53',
4191 'CPAN::Mirrors' => '1.77',
4192 'Carp' => '1.15',
4193 'Carp::Heavy' => '1.15',
4194 'Compress::Raw::Bzip2' => '2.024',
4195 'Compress::Raw::Zlib' => '2.024',
4196 'Compress::Zlib' => '2.024',
4197 'File::Copy' => '2.17',
4198 'File::Fetch' => '0.24',
4199 'GDBM_File' => '1.10',
4200 'IO::Compress::Adapter::Bzip2'=> '2.024',
4201 'IO::Compress::Adapter::Deflate'=> '2.024',
4202 'IO::Compress::Adapter::Identity'=> '2.024',
4203 'IO::Compress::Base' => '2.024',
4204 'IO::Compress::Base::Common'=> '2.024',
4205 'IO::Compress::Bzip2' => '2.024',
4206 'IO::Compress::Deflate' => '2.024',
4207 'IO::Compress::Gzip' => '2.024',
4208 'IO::Compress::Gzip::Constants'=> '2.024',
4209 'IO::Compress::RawDeflate'=> '2.024',
4210 'IO::Compress::Zip' => '2.024',
4211 'IO::Compress::Zip::Constants'=> '2.024',
4212 'IO::Compress::Zlib::Constants'=> '2.024',
4213 'IO::Compress::Zlib::Extra'=> '2.024',
4214 'IO::Uncompress::Adapter::Bunzip2'=> '2.024',
4215 'IO::Uncompress::Adapter::Identity'=> '2.024',
4216 'IO::Uncompress::Adapter::Inflate'=> '2.024',
4217 'IO::Uncompress::AnyInflate'=> '2.024',
4218 'IO::Uncompress::AnyUncompress'=> '2.024',
4219 'IO::Uncompress::Base' => '2.024',
4220 'IO::Uncompress::Bunzip2'=> '2.024',
4221 'IO::Uncompress::Gunzip'=> '2.024',
4222 'IO::Uncompress::Inflate'=> '2.024',
4223 'IO::Uncompress::RawInflate'=> '2.024',
4224 'IO::Uncompress::Unzip' => '2.024',
4225 'Module::Build' => '0.3603',
4226 'Module::Build::Base' => '0.3603',
4227 'Module::Build::Compat' => '0.3603',
4228 'Module::Build::Config' => '0.3603',
4229 'Module::Build::Cookbook'=> '0.3603',
4230 'Module::Build::Dumper' => '0.3603',
4231 'Module::Build::ModuleInfo'=> '0.3603',
4232 'Module::Build::Notes' => '0.3603',
4233 'Module::Build::PPMMaker'=> '0.3603',
4234 'Module::Build::Platform::Amiga'=> '0.3603',
4235 'Module::Build::Platform::Default'=> '0.3603',
4236 'Module::Build::Platform::EBCDIC'=> '0.3603',
4237 'Module::Build::Platform::MPEiX'=> '0.3603',
4238 'Module::Build::Platform::MacOS'=> '0.3603',
4239 'Module::Build::Platform::RiscOS'=> '0.3603',
4240 'Module::Build::Platform::Unix'=> '0.3603',
4241 'Module::Build::Platform::VMS'=> '0.3603',
4242 'Module::Build::Platform::VOS'=> '0.3603',
4243 'Module::Build::Platform::Windows'=> '0.3603',
4244 'Module::Build::Platform::aix'=> '0.3603',
4245 'Module::Build::Platform::cygwin'=> '0.3603',
4246 'Module::Build::Platform::darwin'=> '0.3603',
4247 'Module::Build::Platform::os2'=> '0.3603',
4248 'Module::Build::PodParser'=> '0.3603',
4249 'Module::CoreList' => '2.25',
4250 'PerlIO::encoding' => '0.12',
4251 'Safe' => '2.21',
4252 'UNIVERSAL' => '1.06',
4253 'feature' => '1.15',
4254 'inc::latest' => '0.3603',
4255 'less' => '0.03',
4256 're' => '0.11',
4257 'version' => '0.81',
4258 'warnings' => '1.09',
4259 },
4260 removed => {
4261 }
d3cba0fe 4262 },
2a3ea5b5 4263 5.011005 => {
a272bf38
DL
4264 delta_from => 5.011004,
4265 changed => {
4266 'B::Debug' => '1.12',
4267 'CPAN' => '1.94_56',
4268 'CPAN::Debug' => '5.5001',
4269 'CPAN::Distribution' => '1.9456',
4270 'CPAN::FirstTime' => '5.5301',
4271 'CPAN::HandleConfig' => '5.5001',
4272 'CPAN::Shell' => '5.5001',
4273 'CPAN::Tarzip' => '5.5011',
4274 'CPANPLUS::Dist::Build' => '0.46',
4275 'CPANPLUS::Dist::Build::Constants'=> '0.46',
4276 'Module::CoreList' => '2.26',
4277 'Pod::Man' => '2.23',
4278 'Pod::ParseLink' => '1.10',
4279 'Pod::Perldoc' => '3.15_02',
4280 'Pod::Plainer' => '1.02',
4281 'Pod::Text' => '3.14',
4282 'Pod::Text::Color' => '2.06',
4283 'Pod::Text::Overstrike' => '2.04',
4284 'Pod::Text::Termcap' => '2.06',
4285 'Safe' => '2.22',
4286 'Socket' => '1.86',
4287 'version' => '0.82',
4288 },
4289 removed => {
4290 }
812cbf67 4291 },
a272bf38
DL
4292 5.012 => {
4293 delta_from => 5.011005,
4294 changed => {
4295 'B::Deparse' => '0.96',
4296 'CPAN::Distribution' => '1.9456_01',
4297 'Module::CoreList' => '2.29',
4298 'Safe' => '2.25',
4299 'Socket' => '1.87',
4300 'Tie::Scalar' => '1.02',
4301 'Time::Piece' => '1.15_01',
4302 'bytes' => '1.04',
4303 'feature' => '1.16',
4304 'utf8' => '1.08',
4305 },
4306 removed => {
4307 }
3ec75686 4308 },
16ccd2bb 4309 5.012001 => {
a272bf38
DL
4310 delta_from => 5.012,
4311 changed => {
4312 'B::Deparse' => '0.97',
4313 'CGI' => '3.49',
4314 'CGI::Fast' => '1.08',
4315 'Carp' => '1.16',
4316 'Carp::Heavy' => '1.16',
4317 'File::Copy' => '2.18',
4318 'Module::CoreList' => '2.32',
4319 'Pod::Functions' => '1.04',
4320 'Pod::Simple' => '3.14',
4321 'Pod::Simple::BlackBox' => '3.14',
4322 'Pod::Simple::Checker' => '3.14',
4323 'Pod::Simple::Debug' => '3.14',
4324 'Pod::Simple::DumpAsText'=> '3.14',
4325 'Pod::Simple::DumpAsXML'=> '3.14',
4326 'Pod::Simple::HTML' => '3.14',
4327 'Pod::Simple::HTMLBatch'=> '3.14',
4328 'Pod::Simple::LinkSection'=> '3.14',
4329 'Pod::Simple::Methody' => '3.14',
4330 'Pod::Simple::Progress' => '3.14',
4331 'Pod::Simple::PullParser'=> '3.14',
4332 'Pod::Simple::PullParserEndToken'=> '3.14',
4333 'Pod::Simple::PullParserStartToken'=> '3.14',
4334 'Pod::Simple::PullParserTextToken'=> '3.14',
4335 'Pod::Simple::PullParserToken'=> '3.14',
4336 'Pod::Simple::RTF' => '3.14',
4337 'Pod::Simple::Search' => '3.14',
4338 'Pod::Simple::SimpleTree'=> '3.14',
4339 'Pod::Simple::Text' => '3.14',
4340 'Pod::Simple::TextContent'=> '3.14',
4341 'Pod::Simple::TiedOutFH'=> '3.14',
4342 'Pod::Simple::Transcode'=> '3.14',
4343 'Pod::Simple::TranscodeDumb'=> '3.14',
4344 'Pod::Simple::TranscodeSmart'=> '3.14',
4345 'Pod::Simple::XHTML' => '3.14',
4346 'Pod::Simple::XMLOutStream'=> '3.14',
4347 'Safe' => '2.27',
4348 },
4349 removed => {
4350 }
4351 },
4352 5.012002 => {
4353 delta_from => 5.012001,
4354 changed => {
4355 'Carp' => '1.17',
4356 'Carp::Heavy' => '1.17',
4357 'File::Spec' => '3.31_01',
4358 'Module::CoreList' => '2.38',
4359 'Module::Load::Conditional'=> '0.38',
4360 'PerlIO::scalar' => '0.08',
4361 },
4362 removed => {
4363 }
4364 },
4365 5.012003 => {
4366 delta_from => 5.012002,
4367 changed => {
4368 'B::Deparse' => '0.9701',
4369 'Module::Build::Platform::cygwin'=> '0.360301',
4370 'Module::CoreList' => '2.43',
4371 'Socket' => '1.87_01',
4372 },
4373 removed => {
4374 }
4375 },
4376 5.012004 => {
4377 delta_from => 5.012003,
4378 changed => {
4379 'Module::CoreList' => '2.50',
4380 },
4381 removed => {
a272bf38
DL
4382 }
4383 },
3df1c36a
CBW
4384 5.012005 => {
4385 delta_from => 5.012004,
4386 changed => {
4387 'B::Concise' => '0.78_01',
4388 'Encode' => '2.39_01',
4389 'File::Glob' => '1.07_01',
4390 'Module::CoreList' => '2.50_02',
4391 'Unicode::UCD' => '0.29',
4392 'charnames' => '1.07_01',
4393 },
4394 removed => {
4395 }
4396 },
a272bf38
DL
4397 5.013 => {
4398 delta_from => 5.012,
4399 changed => {
4400 'CGI' => '3.49',
4401 'CGI::Fast' => '1.08',
4402 'Data::Dumper' => '2.126',
4403 'ExtUtils::MM_Unix' => '6.5601',
4404 'ExtUtils::MakeMaker' => '6.5601',
4405 'File::Copy' => '2.18',
4406 'IPC::Open3' => '1.06',
4407 'MIME::Base64' => '3.09',
4408 'MIME::QuotedPrint' => '3.09',
4409 'Module::CoreList' => '2.31',
4410 'Pod::Functions' => '1.04',
4411 'XS::APItest' => '0.18',
4412 'XS::APItest::KeywordRPN'=> '0.004',
4413 'feature' => '1.17',
4414 'threads' => '1.77_01',
4415 'threads::shared' => '1.33',
4416 },
4417 removed => {
4418 }
16ccd2bb 4419 },
528f07d6 4420 5.013001 => {
a272bf38
DL
4421 delta_from => 5.012001,
4422 changed => {
4423 'Data::Dumper' => '2.126',
4424 'Dumpvalue' => '1.14',
4425 'Errno' => '1.12',
4426 'ExtUtils::MM_Unix' => '6.5601',
4427 'ExtUtils::MakeMaker' => '6.5601',
4428 'ExtUtils::ParseXS' => '2.2205',
4429 'File::Find' => '1.16',
4430 'IPC::Cmd' => '0.58',
4431 'IPC::Open3' => '1.06',
4432 'List::Util' => '1.23',
4433 'List::Util::PP' => '1.23',
4434 'List::Util::XS' => '1.23',
4435 'Locale::Codes' => '3.12',
4436 'Locale::Codes::Country'=> '3.12',
4437 'Locale::Codes::Currency'=> '3.12',
4438 'Locale::Codes::Language'=> '3.12',
4439 'Locale::Codes::Script' => '3.12',
4440 'Locale::Constants' => '3.12',
4441 'Locale::Country' => '3.12',
4442 'Locale::Currency' => '3.12',
4443 'Locale::Language' => '3.12',
4444 'Locale::Script' => '3.12',
4445 'MIME::Base64' => '3.09',
4446 'MIME::QuotedPrint' => '3.09',
4447 'Module::Build::Platform::cygwin'=> '0.360301',
4448 'Module::CoreList' => '2.34',
4449 'Module::Load::Conditional'=> '0.38',
4450 'PerlIO::scalar' => '0.08',
4451 'Scalar::Util' => '1.23',
4452 'Scalar::Util::PP' => '1.23',
4453 'Socket' => '1.88',
4454 'Term::ReadLine' => '1.06',
4455 'Unicode::UCD' => '0.28',
4456 'XS::APItest' => '0.19',
4457 'XS::APItest::KeywordRPN'=> '0.004',
4458 'charnames' => '1.08',
4459 'feature' => '1.17',
4460 'threads' => '1.77_01',
4461 'threads::shared' => '1.33',
4462 },
4463 removed => {
4464 'Class::ISA' => 1,
4465 'Pod::Plainer' => 1,
4466 'Switch' => 1,
4467 }
528f07d6 4468 },
37e1f6c7 4469 5.013002 => {
a272bf38
DL
4470 delta_from => 5.013001,
4471 changed => {
4472 'B::Concise' => '0.79',
4473 'B::Deparse' => '0.98',
4474 'CPAN' => '1.94_57',
4475 'CPAN::Distribution' => '1.9600',
4476 'Exporter' => '5.64_02',
4477 'Exporter::Heavy' => '5.64_02',
4478 'File::Copy' => '2.19',
4479 'Hash::Util' => '0.08',
4480 'IO::Socket' => '1.32',
4481 'Locale::Codes' => '3.13',
4482 'Locale::Codes::Country'=> '3.13',
4483 'Locale::Codes::Currency'=> '3.13',
4484 'Locale::Codes::Language'=> '3.13',
4485 'Locale::Codes::Script' => '3.13',
4486 'Locale::Constants' => '3.13',
4487 'Locale::Country' => '3.13',
4488 'Locale::Currency' => '3.13',
4489 'Locale::Language' => '3.13',
4490 'Locale::Script' => '3.13',
4491 'Search::Dict' => '1.03',
4492 'Socket' => '1.89',
4493 'Thread::Semaphore' => '2.11',
4494 'UNIVERSAL' => '1.07',
4495 'VMS::DCLsym' => '1.04',
4496 'mro' => '1.03',
4497 'threads' => '1.77_02',
4498 'threads::shared' => '1.33_01',
4499 },
4500 removed => {
4501 }
37e1f6c7 4502 },
a4729c0f 4503 5.013003 => {
a272bf38
DL
4504 delta_from => 5.013002,
4505 changed => {
4506 'App::Prove' => '3.21',
4507 'App::Prove::State' => '3.21',
4508 'App::Prove::State::Result'=> '3.21',
4509 'App::Prove::State::Result::Test'=> '3.21',
4510 'Archive::Extract' => '0.42',
4511 'Archive::Tar' => '1.64',
4512 'Archive::Tar::Constant'=> '1.64',
4513 'Archive::Tar::File' => '1.64',
4514 'Attribute::Handlers' => '0.88',
4515 'CPANPLUS' => '0.9007',
4516 'CPANPLUS::Internals' => '0.9007',
4517 'CPANPLUS::Shell::Default'=> '0.9007',
4518 'Compress::Raw::Bzip2' => '2.027',
4519 'Compress::Raw::Zlib' => '2.027_01',
4520 'Compress::Zlib' => '2.027',
4521 'DB' => '1.03',
4522 'Digest::MD5' => '2.40',
4523 'Digest::SHA' => '5.48',
4524 'Exporter' => '5.64_03',
4525 'Exporter::Heavy' => '5.64_03',
4526 'ExtUtils::CBuilder' => '0.2703',
4527 'ExtUtils::CBuilder::Base'=> '0.2703_01',
4528 'ExtUtils::CBuilder::Platform::Unix'=> '0.2703',
4529 'ExtUtils::CBuilder::Platform::VMS'=> '0.2703',
4530 'ExtUtils::CBuilder::Platform::Windows'=> '0.2703',
4531 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703',
4532 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703',
4533 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703',
4534 'ExtUtils::CBuilder::Platform::aix'=> '0.2703',
4535 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703',
4536 'ExtUtils::CBuilder::Platform::darwin'=> '0.2703',
4537 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703',
4538 'ExtUtils::CBuilder::Platform::os2'=> '0.2703',
4539 'ExtUtils::Manifest' => '1.58',
4540 'ExtUtils::ParseXS' => '2.2206',
4541 'Fatal' => '2.10',
4542 'File::Basename' => '2.79',
4543 'File::Copy' => '2.20',
4544 'File::DosGlob' => '1.02',
4545 'File::Find' => '1.17',
4546 'File::Glob' => '1.08',
4547 'File::stat' => '1.03',
4548 'I18N::LangTags' => '0.35_01',
4549 'I18N::LangTags::List' => '0.35_01',
4550 'IO::Compress::Adapter::Bzip2'=> '2.027',
4551 'IO::Compress::Adapter::Deflate'=> '2.027',
4552 'IO::Compress::Adapter::Identity'=> '2.027',
4553 'IO::Compress::Base' => '2.027',
4554 'IO::Compress::Base::Common'=> '2.027',
4555 'IO::Compress::Bzip2' => '2.027',
4556 'IO::Compress::Deflate' => '2.027',
4557 'IO::Compress::Gzip' => '2.027',
4558 'IO::Compress::Gzip::Constants'=> '2.027',
4559 'IO::Compress::RawDeflate'=> '2.027',
4560 'IO::Compress::Zip' => '2.027',
4561 'IO::Compress::Zip::Constants'=> '2.027',
4562 'IO::Compress::Zlib::Constants'=> '2.027',
4563 'IO::Compress::Zlib::Extra'=> '2.027',
4564 'IO::Uncompress::Adapter::Bunzip2'=> '2.027',
4565 'IO::Uncompress::Adapter::Identity'=> '2.027',
4566 'IO::Uncompress::Adapter::Inflate'=> '2.027',
4567 'IO::Uncompress::AnyInflate'=> '2.027',
4568 'IO::Uncompress::AnyUncompress'=> '2.027',
4569 'IO::Uncompress::Base' => '2.027',
4570 'IO::Uncompress::Bunzip2'=> '2.027',
4571 'IO::Uncompress::Gunzip'=> '2.027',
4572 'IO::Uncompress::Inflate'=> '2.027',
4573 'IO::Uncompress::RawInflate'=> '2.027',
4574 'IO::Uncompress::Unzip' => '2.027',
4575 'IPC::Cmd' => '0.60',
4576 'IPC::Msg' => '2.03',
4577 'IPC::Semaphore' => '2.03',
4578 'IPC::SharedMem' => '2.03',
4579 'IPC::SysV' => '2.03',
4580 'Locale::Maketext' => '1.15',
4581 'Locale::Maketext::Guts'=> undef,
4582 'Locale::Maketext::GutsLoader'=> undef,
4583 'Module::Build' => '0.3607',
4584 'Module::Build::Base' => '0.3607',
4585 'Module::Build::Compat' => '0.3607',
4586 'Module::Build::Config' => '0.3607',
4587 'Module::Build::Cookbook'=> '0.3607',
4588 'Module::Build::Dumper' => '0.3607',
4589 'Module::Build::ModuleInfo'=> '0.3607',
4590 'Module::Build::Notes' => '0.3607',
4591 'Module::Build::PPMMaker'=> '0.3607',
4592 'Module::Build::Platform::Amiga'=> '0.3607',
4593 'Module::Build::Platform::Default'=> '0.3607',
4594 'Module::Build::Platform::EBCDIC'=> '0.3607',
4595 'Module::Build::Platform::MPEiX'=> '0.3607',
4596 'Module::Build::Platform::MacOS'=> '0.3607',
4597 'Module::Build::Platform::RiscOS'=> '0.3607',
4598 'Module::Build::Platform::Unix'=> '0.3607',
4599 'Module::Build::Platform::VMS'=> '0.3607',
4600 'Module::Build::Platform::VOS'=> '0.3607',
4601 'Module::Build::Platform::Windows'=> '0.3607',
4602 'Module::Build::Platform::aix'=> '0.3607',
4603 'Module::Build::Platform::cygwin'=> '0.3607',
4604 'Module::Build::Platform::darwin'=> '0.3607',
4605 'Module::Build::Platform::os2'=> '0.3607',
4606 'Module::Build::PodParser'=> '0.3607',
4607 'Module::CoreList' => '2.36',
4608 'Module::Load' => '0.18',
4609 'TAP::Base' => '3.21',
4610 'TAP::Formatter::Base' => '3.21',
4611 'TAP::Formatter::Color' => '3.21',
4612 'TAP::Formatter::Console'=> '3.21',
4613 'TAP::Formatter::Console::ParallelSession'=> '3.21',
4614 'TAP::Formatter::Console::Session'=> '3.21',
4615 'TAP::Formatter::File' => '3.21',
4616 'TAP::Formatter::File::Session'=> '3.21',
4617 'TAP::Formatter::Session'=> '3.21',
4618 'TAP::Harness' => '3.21',
4619 'TAP::Object' => '3.21',
4620 'TAP::Parser' => '3.21',
4621 'TAP::Parser::Aggregator'=> '3.21',
4622 'TAP::Parser::Grammar' => '3.21',
4623 'TAP::Parser::Iterator' => '3.21',
4624 'TAP::Parser::Iterator::Array'=> '3.21',
4625 'TAP::Parser::Iterator::Process'=> '3.21',
4626 'TAP::Parser::Iterator::Stream'=> '3.21',
4627 'TAP::Parser::IteratorFactory'=> '3.21',
4628 'TAP::Parser::Multiplexer'=> '3.21',
4629 'TAP::Parser::Result' => '3.21',
4630 'TAP::Parser::Result::Bailout'=> '3.21',
4631 'TAP::Parser::Result::Comment'=> '3.21',
4632 'TAP::Parser::Result::Plan'=> '3.21',
4633 'TAP::Parser::Result::Pragma'=> '3.21',
4634 'TAP::Parser::Result::Test'=> '3.21',
4635 'TAP::Parser::Result::Unknown'=> '3.21',
4636 'TAP::Parser::Result::Version'=> '3.21',
4637 'TAP::Parser::Result::YAML'=> '3.21',
4638 'TAP::Parser::ResultFactory'=> '3.21',
4639 'TAP::Parser::Scheduler'=> '3.21',
4640 'TAP::Parser::Scheduler::Job'=> '3.21',
4641 'TAP::Parser::Scheduler::Spinner'=> '3.21',
4642 'TAP::Parser::Source' => '3.21',
4643 'TAP::Parser::SourceHandler'=> '3.21',
4644 'TAP::Parser::SourceHandler::Executable'=> '3.21',
4645 'TAP::Parser::SourceHandler::File'=> '3.21',
4646 'TAP::Parser::SourceHandler::Handle'=> '3.21',
4647 'TAP::Parser::SourceHandler::Perl'=> '3.21',
4648 'TAP::Parser::SourceHandler::RawTAP'=> '3.21',
4649 'TAP::Parser::SourceHandler::pgTAP'=> '3.21',
4650 'TAP::Parser::Utils' => '3.21',
4651 'TAP::Parser::YAMLish::Reader'=> '3.21',
4652 'TAP::Parser::YAMLish::Writer'=> '3.21',
4653 'Term::ANSIColor' => '3.00',
4654 'Term::ReadLine' => '1.07',
4655 'Test::Harness' => '3.21',
4656 'Tie::Array' => '1.04',
4657 'Time::HiRes' => '1.9721',
4658 'Time::Piece' => '1.20_01',
4659 'Unicode::Collate' => '0.53',
4660 'Unicode::Normalize' => '1.06',
4661 'Unicode::UCD' => '0.29',
4662 'autodie' => '2.10',
4663 'autodie::exception' => '2.10',
4664 'autodie::exception::system'=> '2.10',
4665 'autodie::hints' => '2.10',
4666 'blib' => '1.05',
4667 'charnames' => '1.11',
4668 'diagnostics' => '1.20',
4669 'inc::latest' => '0.3607',
4670 'lib' => '0.63',
4671 're' => '0.12',
4672 'threads' => '1.77_03',
4673 'threads::shared' => '1.33_02',
4674 'vars' => '1.02',
4675 'warnings' => '1.10',
4676 },
4677 removed => {
a272bf38
DL
4678 'TAP::Parser::Source::Perl'=> 1,
4679 }
a4729c0f 4680 },
7529c15c 4681 5.013004 => {
a272bf38
DL
4682 delta_from => 5.013003,
4683 changed => {
4684 'App::Prove' => '3.22',
4685 'App::Prove::State' => '3.22',
4686 'App::Prove::State::Result'=> '3.22',
4687 'App::Prove::State::Result::Test'=> '3.22',
4688 'Archive::Tar' => '1.68',
4689 'Archive::Tar::Constant'=> '1.68',
4690 'Archive::Tar::File' => '1.68',
4691 'B::Lint' => '1.12',
4692 'B::Lint::Debug' => '1.12',
4693 'Carp' => '1.18',
4694 'Carp::Heavy' => '1.18',
4695 'Compress::Raw::Bzip2' => '2.030',
4696 'Compress::Raw::Zlib' => '2.030',
4697 'Compress::Zlib' => '2.030',
a272bf38
DL
4698 'ExtUtils::ParseXS' => '2.2207',
4699 'File::Spec' => '3.31_01',
4700 'I18N::Langinfo' => '0.04',
4701 'IO::Compress::Adapter::Bzip2'=> '2.030',
4702 'IO::Compress::Adapter::Deflate'=> '2.030',
4703 'IO::Compress::Adapter::Identity'=> '2.030',
4704 'IO::Compress::Base' => '2.030',
4705 'IO::Compress::Base::Common'=> '2.030',
4706 'IO::Compress::Bzip2' => '2.030',
4707 'IO::Compress::Deflate' => '2.030',
4708 'IO::Compress::Gzip' => '2.030',
4709 'IO::Compress::Gzip::Constants'=> '2.030',
4710 'IO::Compress::RawDeflate'=> '2.030',
4711 'IO::Compress::Zip' => '2.030',
4712 'IO::Compress::Zip::Constants'=> '2.030',
4713 'IO::Compress::Zlib::Constants'=> '2.030',
4714 'IO::Compress::Zlib::Extra'=> '2.030',
4715 'IO::Uncompress::Adapter::Bunzip2'=> '2.030',
4716 'IO::Uncompress::Adapter::Identity'=> '2.030',
4717 'IO::Uncompress::Adapter::Inflate'=> '2.030',
4718 'IO::Uncompress::AnyInflate'=> '2.030',
4719 'IO::Uncompress::AnyUncompress'=> '2.030',
4720 'IO::Uncompress::Base' => '2.030',
4721 'IO::Uncompress::Bunzip2'=> '2.030',
4722 'IO::Uncompress::Gunzip'=> '2.030',
4723 'IO::Uncompress::Inflate'=> '2.030',
4724 'IO::Uncompress::RawInflate'=> '2.030',
4725 'IO::Uncompress::Unzip' => '2.030',
4726 'Module::CoreList' => '2.37',
4727 'TAP::Base' => '3.22',
4728 'TAP::Formatter::Base' => '3.22',
4729 'TAP::Formatter::Color' => '3.22',
4730 'TAP::Formatter::Console'=> '3.22',
4731 'TAP::Formatter::Console::ParallelSession'=> '3.22',
4732 'TAP::Formatter::Console::Session'=> '3.22',
4733 'TAP::Formatter::File' => '3.22',
4734 'TAP::Formatter::File::Session'=> '3.22',
4735 'TAP::Formatter::Session'=> '3.22',
4736 'TAP::Harness' => '3.22',
4737 'TAP::Object' => '3.22',
4738 'TAP::Parser' => '3.22',
4739 'TAP::Parser::Aggregator'=> '3.22',
4740 'TAP::Parser::Grammar' => '3.22',
4741 'TAP::Parser::Iterator' => '3.22',
4742 'TAP::Parser::Iterator::Array'=> '3.22',
4743 'TAP::Parser::Iterator::Process'=> '3.22',
4744 'TAP::Parser::Iterator::Stream'=> '3.22',
4745 'TAP::Parser::IteratorFactory'=> '3.22',
4746 'TAP::Parser::Multiplexer'=> '3.22',
4747 'TAP::Parser::Result' => '3.22',
4748 'TAP::Parser::Result::Bailout'=> '3.22',
4749 'TAP::Parser::Result::Comment'=> '3.22',
4750 'TAP::Parser::Result::Plan'=> '3.22',
4751 'TAP::Parser::Result::Pragma'=> '3.22',
4752 'TAP::Parser::Result::Test'=> '3.22',
4753 'TAP::Parser::Result::Unknown'=> '3.22',
4754 'TAP::Parser::Result::Version'=> '3.22',
4755 'TAP::Parser::Result::YAML'=> '3.22',
4756 'TAP::Parser::ResultFactory'=> '3.22',
4757 'TAP::Parser::Scheduler'=> '3.22',
4758 'TAP::Parser::Scheduler::Job'=> '3.22',
4759 'TAP::Parser::Scheduler::Spinner'=> '3.22',
4760 'TAP::Parser::Source' => '3.22',
4761 'TAP::Parser::SourceHandler'=> '3.22',
4762 'TAP::Parser::SourceHandler::Executable'=> '3.22',
4763 'TAP::Parser::SourceHandler::File'=> '3.22',
4764 'TAP::Parser::SourceHandler::Handle'=> '3.22',
4765 'TAP::Parser::SourceHandler::Perl'=> '3.22',
4766 'TAP::Parser::SourceHandler::RawTAP'=> '3.22',
4767 'TAP::Parser::Utils' => '3.22',
4768 'TAP::Parser::YAMLish::Reader'=> '3.22',
4769 'TAP::Parser::YAMLish::Writer'=> '3.22',
4770 'Test::Builder' => '0.96',
4771 'Test::Builder::Module' => '0.96',
4772 'Test::Builder::Tester' => '1.20',
4773 'Test::Builder::Tester::Color'=> '1.20',
4774 'Test::Harness' => '3.22',
4775 'Test::More' => '0.96',
4776 'Test::Simple' => '0.96',
4777 'Unicode::Collate' => '0.56',
4778 'Unicode::Collate::Locale'=> '0.56',
4779 'XS::APItest' => '0.20',
4780 'charnames' => '1.15',
4781 'feature' => '1.18',
4782 },
4783 removed => {
4784 'TAP::Parser::SourceHandler::pgTAP'=> 1,
4785 }
b55a5fdc 4786 },
0530d763 4787 5.013005 => {
a272bf38
DL
4788 delta_from => 5.013004,
4789 changed => {
4790 'B::Debug' => '1.16',
4791 'CPANPLUS::Dist::Build' => '0.48',
4792 'CPANPLUS::Dist::Build::Constants'=> '0.48',
4793 'Data::Dumper' => '2.128',
4794 'Encode' => '2.40',
4795 'Encode::Guess' => '2.04',
4796 'Encode::MIME::Header' => '2.12',
4797 'Encode::Unicode::UTF7' => '2.05',
4798 'Errno' => '1.13',
4799 'ExtUtils::Command::MM' => '6.57_05',
4800 'ExtUtils::Liblist' => '6.57_05',
4801 'ExtUtils::Liblist::Kid'=> '6.5705',
4802 'ExtUtils::MM' => '6.57_05',
4803 'ExtUtils::MM_AIX' => '6.57_05',
4804 'ExtUtils::MM_Any' => '6.57_05',
4805 'ExtUtils::MM_BeOS' => '6.57_05',
4806 'ExtUtils::MM_Cygwin' => '6.57_05',
4807 'ExtUtils::MM_DOS' => '6.5705',
4808 'ExtUtils::MM_Darwin' => '6.57_05',
4809 'ExtUtils::MM_MacOS' => '6.5705',
4810 'ExtUtils::MM_NW5' => '6.57_05',
4811 'ExtUtils::MM_OS2' => '6.57_05',
4812 'ExtUtils::MM_QNX' => '6.57_05',
4813 'ExtUtils::MM_UWIN' => '6.5705',
4814 'ExtUtils::MM_Unix' => '6.57_05',
4815 'ExtUtils::MM_VMS' => '6.57_05',
4816 'ExtUtils::MM_VOS' => '6.57_05',
4817 'ExtUtils::MM_Win32' => '6.57_05',
4818 'ExtUtils::MM_Win95' => '6.57_05',
4819 'ExtUtils::MY' => '6.5705',
4820 'ExtUtils::MakeMaker' => '6.57_05',
4821 'ExtUtils::MakeMaker::Config'=> '6.57_05',
4822 'ExtUtils::MakeMaker::YAML'=> '1.44',
4823 'ExtUtils::Mkbootstrap' => '6.57_05',
4824 'ExtUtils::Mksymlists' => '6.57_05',
4825 'ExtUtils::testlib' => '6.5705',
4826 'Filter::Simple' => '0.85',
4827 'Hash::Util' => '0.09',
4828 'Math::BigFloat' => '1.62',
4829 'Math::BigInt' => '1.95',
4830 'Math::BigInt::Calc' => '0.54',
4831 'Math::BigInt::CalcEmu' => '0.06',
4832 'Math::BigInt::FastCalc'=> '0.22',
4833 'Math::BigRat' => '0.26',
4834 'Module::CoreList' => '2.39',
4835 'POSIX' => '1.20',
4836 'PerlIO::scalar' => '0.09',
4837 'Safe' => '2.28',
4838 'Test::Builder' => '0.97_01',
4839 'Test::Builder::Module' => '0.97_01',
4840 'Test::Builder::Tester' => '1.21_01',
4841 'Test::Builder::Tester::Color'=> '1.21_01',
4842 'Test::More' => '0.97_01',
4843 'Test::Simple' => '0.97_01',
4844 'Tie::Hash' => '1.04',
4845 'Unicode::Collate' => '0.59',
4846 'Unicode::Collate::Locale'=> '0.59',
4847 'XS::APItest' => '0.21',
4848 'XS::APItest::KeywordRPN'=> '0.005',
4849 'XSLoader' => '0.11',
4850 'bigint' => '0.25',
4851 'bignum' => '0.25',
4852 'bigrat' => '0.25',
4853 'blib' => '1.06',
4854 'open' => '1.08',
4855 'threads::shared' => '1.33_03',
4856 'warnings' => '1.11',
4857 'warnings::register' => '1.02',
4858 },
4859 removed => {
4860 }
0530d763 4861 },
7de25fd5 4862 5.013006 => {
a272bf38
DL
4863 delta_from => 5.013005,
4864 changed => {
4865 'Archive::Extract' => '0.44',
4866 'B' => '1.24',
4867 'B::Deparse' => '0.99',
4868 'CPAN' => '1.94_61',
4869 'CPAN::FTP' => '5.5005',
4870 'CPAN::Queue' => '5.5001',
4871 'CPAN::Version' => '5.5001',
4872 'Carp' => '1.19',
4873 'Carp::Heavy' => '1.19',
4874 'Compress::Raw::Bzip2' => '2.031',
4875 'Cwd' => '3.34',
4876 'Data::Dumper' => '2.129',
4877 'Devel::Peek' => '1.05',
4878 'Digest::MD5' => '2.51',
4879 'ExtUtils::Constant::Base'=> '0.05',
4880 'ExtUtils::Constant::ProxySubs'=> '0.07',
4881 'ExtUtils::Embed' => '1.29',
4882 'ExtUtils::XSSymSet' => '1.2',
4883 'Fcntl' => '1.09',
4884 'File::DosGlob' => '1.03',
4885 'File::Find' => '1.18',
4886 'File::Glob' => '1.09',
4887 'File::Spec' => '3.33',
4888 'File::Spec::Cygwin' => '3.33',
4889 'File::Spec::Epoc' => '3.33',
4890 'File::Spec::Functions' => '3.33',
4891 'File::Spec::Mac' => '3.33',
4892 'File::Spec::OS2' => '3.33',
4893 'File::Spec::Unix' => '3.33',
4894 'File::Spec::VMS' => '3.33',
4895 'File::Spec::Win32' => '3.33',
4896 'GDBM_File' => '1.11',
4897 'Hash::Util::FieldHash' => '1.05',
4898 'I18N::Langinfo' => '0.06',
4899 'IPC::Cmd' => '0.64',
4900 'IPC::Open3' => '1.07',
4901 'Locale::Codes' => '3.14',
4902 'Locale::Codes::Country'=> '3.14',
4903 'Locale::Codes::Currency'=> '3.14',
4904 'Locale::Codes::Language'=> '3.14',
4905 'Locale::Codes::Script' => '3.14',
4906 'Locale::Constants' => '3.14',
4907 'Locale::Country' => '3.14',
4908 'Locale::Currency' => '3.14',
4909 'Locale::Language' => '3.14',
4910 'Locale::Maketext' => '1.16',
4911 'Locale::Script' => '3.14',
4912 'Math::BigFloat' => '1.63',
4913 'Math::BigInt' => '1.97',
4914 'Math::BigInt::Calc' => '0.55',
4915 'Math::BigInt::CalcEmu' => '0.07',
4916 'Module::CoreList' => '2.40',
4917 'NDBM_File' => '1.09',
4918 'NEXT' => '0.65',
4919 'ODBM_File' => '1.08',
4920 'Opcode' => '1.16',
4921 'POSIX' => '1.21',
4922 'PerlIO::encoding' => '0.13',
4923 'PerlIO::scalar' => '0.10',
4924 'PerlIO::via' => '0.10',
4925 'Pod::Man' => '2.25',
4926 'Pod::Text' => '3.15',
4927 'SDBM_File' => '1.07',
4928 'Socket' => '1.90',
4929 'Sys::Hostname' => '1.13',
4930 'Tie::Hash::NamedCapture'=> '0.07',
4931 'Unicode::Collate' => '0.63',
4932 'Unicode::Collate::Locale'=> '0.63',
4933 'Unicode::Normalize' => '1.07',
4934 'XS::APItest' => '0.23',
4935 'XSLoader' => '0.13',
4936 'attributes' => '0.13',
4937 'charnames' => '1.16',
4938 'if' => '0.06',
4939 'mro' => '1.04',
4940 'overload' => '1.11',
4941 're' => '0.13',
4942 'sigtrap' => '1.05',
4943 'threads' => '1.81_01',
4944 'threads::shared' => '1.34',
4945 },
4946 removed => {
4947 'XS::APItest::KeywordRPN'=> 1,
4948 }
7de25fd5 4949 },
d24e0a99 4950 5.013007 => {
a272bf38
DL
4951 delta_from => 5.013006,
4952 changed => {
4953 'Archive::Extract' => '0.46',
4954 'Archive::Tar' => '1.72',
4955 'Archive::Tar::Constant'=> '1.72',
4956 'Archive::Tar::File' => '1.72',
4957 'AutoLoader' => '5.71',
4958 'B' => '1.26',
4959 'B::Concise' => '0.81',
4960 'B::Deparse' => '1.01',
4961 'CGI' => '3.50',
4962 'CPAN' => '1.94_62',
4963 'CPANPLUS' => '0.9010',
4964 'CPANPLUS::Dist::Build' => '0.50',
4965 'CPANPLUS::Dist::Build::Constants'=> '0.50',
4966 'CPANPLUS::Internals' => '0.9010',
4967 'CPANPLUS::Shell::Default'=> '0.9010',
4968 'Data::Dumper' => '2.130_01',
4969 'DynaLoader' => '1.11',
4970 'ExtUtils::Constant' => '0.23',
4971 'ExtUtils::Constant::ProxySubs'=> '0.08',
4972 'Fcntl' => '1.10',
4973 'File::Fetch' => '0.28',
4974 'File::Glob' => '1.10',
4975 'File::stat' => '1.04',
4976 'GDBM_File' => '1.12',
4977 'Hash::Util' => '0.10',
4978 'Hash::Util::FieldHash' => '1.06',
4979 'I18N::Langinfo' => '0.07',
4980 'Locale::Maketext' => '1.17',
4981 'Locale::Maketext::Guts'=> '1.17',
4982 'Locale::Maketext::GutsLoader'=> '1.17',
4983 'MIME::Base64' => '3.10',
4984 'MIME::QuotedPrint' => '3.10',
4985 'Math::BigFloat' => '1.99_01',
4986 'Math::BigInt' => '1.99_01',
4987 'Math::BigInt::Calc' => '1.99_01',
4988 'Math::BigInt::CalcEmu' => '1.99_01',
4989 'Math::BigInt::FastCalc'=> '0.24_01',
4990 'Math::BigRat' => '0.26_01',
4991 'Module::CoreList' => '2.41',
4992 'NDBM_File' => '1.10',
4993 'ODBM_File' => '1.09',
4994 'Opcode' => '1.17',
4995 'POSIX' => '1.22',
4996 'Pod::Simple' => '3.15',
4997 'Pod::Simple::BlackBox' => '3.15',
4998 'Pod::Simple::Checker' => '3.15',
4999 'Pod::Simple::Debug' => '3.15',
5000 'Pod::Simple::DumpAsText'=> '3.15',
5001 'Pod::Simple::DumpAsXML'=> '3.15',
5002 'Pod::Simple::HTML' => '3.15',
5003 'Pod::Simple::HTMLBatch'=> '3.15',
5004 'Pod::Simple::LinkSection'=> '3.15',
5005 'Pod::Simple::Methody' => '3.15',
5006 'Pod::Simple::Progress' => '3.15',
5007 'Pod::Simple::PullParser'=> '3.15',
5008 'Pod::Simple::PullParserEndToken'=> '3.15',
5009 'Pod::Simple::PullParserStartToken'=> '3.15',
5010 'Pod::Simple::PullParserTextToken'=> '3.15',
5011 'Pod::Simple::PullParserToken'=> '3.15',
5012 'Pod::Simple::RTF' => '3.15',
5013 'Pod::Simple::Search' => '3.15',
5014 'Pod::Simple::SimpleTree'=> '3.15',
5015 'Pod::Simple::Text' => '3.15',
5016 'Pod::Simple::TextContent'=> '3.15',
5017 'Pod::Simple::TiedOutFH'=> '3.15',
5018 'Pod::Simple::Transcode'=> '3.15',
5019 'Pod::Simple::TranscodeDumb'=> '3.15',
5020 'Pod::Simple::TranscodeSmart'=> '3.15',
5021 'Pod::Simple::XHTML' => '3.15',
5022 'Pod::Simple::XMLOutStream'=> '3.15',
5023 'SDBM_File' => '1.08',
5024 'Safe' => '2.29',
5025 'SelfLoader' => '1.18',
5026 'Socket' => '1.91',
5027 'Storable' => '2.24',
5028 'Sys::Hostname' => '1.14',
5029 'Unicode' => '6.0.0',
5030 'Unicode::Collate' => '0.67',
5031 'Unicode::Collate::CJK::Big5'=> '0.65',
5032 'Unicode::Collate::CJK::GB2312'=> '0.65',
5033 'Unicode::Collate::CJK::JISX0208'=> '0.64',
5034 'Unicode::Collate::CJK::Korean'=> '0.66',
5035 'Unicode::Collate::CJK::Pinyin'=> '0.65',
5036 'Unicode::Collate::CJK::Stroke'=> '0.65',
5037 'Unicode::Collate::Locale'=> '0.67',
5038 'XS::APItest' => '0.26',
5039 'XS::Typemap' => '0.04',
5040 'charnames' => '1.17',
5041 'mro' => '1.05',
5042 'parent' => '0.224',
5043 're' => '0.14',
5044 'threads' => '1.81_02',
5045 },
5046 removed => {
5047 }
d24e0a99 5048 },
67dbc274 5049 5.013008 => {
a272bf38
DL
5050 delta_from => 5.013007,
5051 changed => {
5052 'Archive::Tar' => '1.74',
5053 'Archive::Tar::Constant'=> '1.74',
5054 'Archive::Tar::File' => '1.74',
5055 'B' => '1.27',
5056 'B::Concise' => '0.82',
5057 'B::Deparse' => '1.02',
5058 'Carp::Heavy' => '1.17',
5059 'Cwd' => '3.35',
5060 'Data::Dumper' => '2.130_02',
5061 'Devel::Peek' => '1.06',
5062 'Devel::SelfStubber' => '1.05',
5063 'Digest::SHA' => '5.50',
5064 'Dumpvalue' => '1.15',
5065 'DynaLoader' => '1.12',
5066 'Env' => '1.02',
5067 'Exporter::Heavy' => '5.64_01',
5068 'ExtUtils::CBuilder' => '0.280201',
5069 'ExtUtils::CBuilder::Base'=> '0.280201',
5070 'ExtUtils::CBuilder::Platform::Unix'=> '0.280201',
5071 'ExtUtils::CBuilder::Platform::VMS'=> '0.280201',
5072 'ExtUtils::CBuilder::Platform::Windows'=> '0.280201',
5073 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201',
5074 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201',
5075 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201',
5076 'ExtUtils::CBuilder::Platform::aix'=> '0.280201',
5077 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201',
5078 'ExtUtils::CBuilder::Platform::darwin'=> '0.280201',
5079 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201',
5080 'ExtUtils::CBuilder::Platform::os2'=> '0.280201',
5081 'ExtUtils::Constant::Utils'=> '0.03',
5082 'ExtUtils::Embed' => '1.30',
5083 'ExtUtils::ParseXS' => '2.2208',
5084 'Fatal' => '2.1001',
5085 'Fcntl' => '1.11',
5086 'File::CheckTree' => '4.41',
5087 'File::Glob' => '1.11',
5088 'GDBM_File' => '1.13',
5089 'Hash::Util::FieldHash' => '1.07',
5090 'I18N::Collate' => '1.02',
5091 'IO' => '1.25_03',
5092 'IPC::Cmd' => '0.66',
5093 'IPC::Open3' => '1.08',
5094 'Locale::Codes' => '3.15',
5095 'Locale::Codes::Country'=> '3.15',
5096 'Locale::Codes::Currency'=> '3.15',
5097 'Locale::Codes::Language'=> '3.15',
5098 'Locale::Codes::Script' => '3.15',
5099 'Locale::Constants' => '3.15',
5100 'Locale::Country' => '3.15',
5101 'Locale::Currency' => '3.15',
5102 'Locale::Language' => '3.15',
5103 'Locale::Script' => '3.15',
5104 'MIME::Base64' => '3.13',
5105 'MIME::QuotedPrint' => '3.13',
5106 'Math::BigFloat' => '1.99_02',
5107 'Math::BigInt' => '1.99_02',
5108 'Math::BigInt::Calc' => '1.99_02',
5109 'Math::BigInt::CalcEmu' => '1.99_02',
5110 'Memoize' => '1.02',
5111 'Memoize::AnyDBM_File' => '1.02',
5112 'Memoize::Expire' => '1.02',
5113 'Memoize::ExpireFile' => '1.02',
5114 'Memoize::ExpireTest' => '1.02',
5115 'Memoize::NDBM_File' => '1.02',
5116 'Memoize::SDBM_File' => '1.02',
5117 'Memoize::Storable' => '1.02',
5118 'Module::CoreList' => '2.43',
5119 'NDBM_File' => '1.11',
5120 'Net::Ping' => '2.37',
5121 'ODBM_File' => '1.10',
5122 'Opcode' => '1.18',
5123 'POSIX' => '1.23',
5124 'PerlIO::encoding' => '0.14',
5125 'PerlIO::scalar' => '0.11',
5126 'PerlIO::via' => '0.11',
5127 'SDBM_File' => '1.09',
5128 'Socket' => '1.92',
5129 'Storable' => '2.25',
5130 'Time::HiRes' => '1.9721_01',
5131 'Unicode::Collate' => '0.6801',
5132 'Unicode::Collate::Locale'=> '0.68',
5133 'Unicode::Normalize' => '1.08',
5134 'Unicode::UCD' => '0.30',
5135 'Win32' => '0.41',
5136 'XS::APItest' => '0.27',
5137 'autodie' => '2.1001',
5138 'autodie::exception' => '2.1001',
5139 'autodie::exception::system'=> '2.1001',
5140 'autodie::hints' => '2.1001',
5141 'feature' => '1.19',
5142 'if' => '0.0601',
5143 'mro' => '1.06',
5144 'overload' => '1.12',
5145 're' => '0.15',
5146 'threads' => '1.81_03',
5147 'threads::shared' => '1.35',
5148 'version' => '0.86',
5149 },
5150 removed => {
5151 }
57e52dbe 5152 },
e0698539 5153 5.013009 => {
a272bf38
DL
5154 delta_from => 5.013008,
5155 changed => {
5156 'Archive::Extract' => '0.48',
5157 'Archive::Tar' => '1.76',
5158 'Archive::Tar::Constant'=> '1.76',
5159 'Archive::Tar::File' => '1.76',
5160 'B::Concise' => '0.83',
5161 'B::Deparse' => '1.03',
5162 'B::Lint' => '1.13',
5163 'Benchmark' => '1.12',
5164 'CGI' => '3.51',
5165 'CGI::Carp' => '3.51',
5166 'CGI::Cookie' => '1.30',
5167 'CGI::Push' => '1.05',
5168 'CGI::Util' => '3.51',
5169 'CPAN' => '1.94_63',
5170 'CPAN::HTTP::Client' => '1.94',
5171 'CPAN::HTTP::Credentials'=> '1.94',
5172 'CPAN::Meta::YAML' => '0.003',
5173 'CPANPLUS' => '0.9011',
5174 'CPANPLUS::Dist::Build' => '0.52',
5175 'CPANPLUS::Dist::Build::Constants'=> '0.52',
5176 'CPANPLUS::Internals' => '0.9011',
5177 'CPANPLUS::Shell::Default'=> '0.9011',
5178 'Carp::Heavy' => '1.19',
5179 'Compress::Raw::Bzip2' => '2.033',
5180 'Compress::Raw::Zlib' => '2.033',
5181 'Compress::Zlib' => '2.033',
5182 'Cwd' => '3.36',
5183 'DBM_Filter' => '0.04',
5184 'DB_File' => '1.821',
5185 'Devel::Peek' => '1.07',
5186 'DirHandle' => '1.04',
5187 'Dumpvalue' => '1.16',
5188 'Encode' => '2.42',
5189 'Encode::Alias' => '2.13',
5190 'Encode::MIME::Header' => '2.13',
5191 'Exporter::Heavy' => '5.64_03',
5192 'ExtUtils::Install' => '1.56',
5193 'ExtUtils::ParseXS' => '2.2209',
5194 'File::Basename' => '2.80',
5195 'File::Copy' => '2.21',
5196 'File::DosGlob' => '1.04',
5197 'File::Fetch' => '0.32',
5198 'File::Find' => '1.19',
5199 'File::Spec::Mac' => '3.34',
5200 'File::Spec::VMS' => '3.34',
5201 'File::stat' => '1.05',
5202 'HTTP::Tiny' => '0.009',
5203 'Hash::Util::FieldHash' => '1.08',
5204 'IO::Compress::Adapter::Bzip2'=> '2.033',
5205 'IO::Compress::Adapter::Deflate'=> '2.033',
5206 'IO::Compress::Adapter::Identity'=> '2.033',
5207 'IO::Compress::Base' => '2.033',
5208 'IO::Compress::Base::Common'=> '2.033',
5209 'IO::Compress::Bzip2' => '2.033',
5210 'IO::Compress::Deflate' => '2.033',
5211 'IO::Compress::Gzip' => '2.033',
5212 'IO::Compress::Gzip::Constants'=> '2.033',
5213 'IO::Compress::RawDeflate'=> '2.033',
5214 'IO::Compress::Zip' => '2.033',
5215 'IO::Compress::Zip::Constants'=> '2.033',
5216 'IO::Compress::Zlib::Constants'=> '2.033',
5217 'IO::Compress::Zlib::Extra'=> '2.033',
5218 'IO::Handle' => '1.29',
5219 'IO::Uncompress::Adapter::Bunzip2'=> '2.033',
5220 'IO::Uncompress::Adapter::Identity'=> '2.033',
5221 'IO::Uncompress::Adapter::Inflate'=> '2.033',
5222 'IO::Uncompress::AnyInflate'=> '2.033',
5223 'IO::Uncompress::AnyUncompress'=> '2.033',
5224 'IO::Uncompress::Base' => '2.033',
5225 'IO::Uncompress::Bunzip2'=> '2.033',
5226 'IO::Uncompress::Gunzip'=> '2.033',
5227 'IO::Uncompress::Inflate'=> '2.033',
5228 'IO::Uncompress::RawInflate'=> '2.033',
5229 'IO::Uncompress::Unzip' => '2.033',
5230 'IPC::Cmd' => '0.68',
5231 'IPC::Open3' => '1.09',
5232 'JSON::PP' => '2.27103',
5233 'JSON::PP::Boolean' => undef,
5234 'Locale::Maketext' => '1.18',
5235 'Log::Message' => '0.04',
5236 'Log::Message::Config' => '0.04',
5237 'Log::Message::Handlers'=> '0.04',
5238 'Log::Message::Item' => '0.04',
5239 'Log::Message::Simple' => '0.08',
5240 'Math::BigFloat' => '1.99_03',
5241 'Math::BigInt' => '1.99_03',
5242 'Math::BigInt::Calc' => '1.99_03',
5243 'Math::BigInt::FastCalc'=> '0.24_02',
5244 'Math::BigRat' => '0.26_02',
5245 'Module::CoreList' => '2.42_01',
5246 'Module::Load::Conditional'=> '0.40',
5247 'Module::Metadata' => '1.000003',
5248 'Net::Ping' => '2.38',
5249 'Object::Accessor' => '0.38',
5250 'POSIX' => '1.24',
5251 'Params::Check' => '0.28',
5252 'Perl::OSType' => '1.002',
5253 'Pod::LaTeX' => '0.59',
5254 'Pod::Perldoc' => '3.15_03',
5255 'Socket' => '1.93',
5256 'Storable' => '2.26',
5257 'Sys::Hostname' => '1.15',
5258 'Term::UI' => '0.24',
5259 'Thread::Queue' => '2.12',
5260 'Thread::Semaphore' => '2.12',
5261 'Time::Local' => '1.2000',
5262 'UNIVERSAL' => '1.08',
5263 'Unicode::Normalize' => '1.10',
5264 'Win32' => '0.44',
5265 'bigint' => '0.26',
5266 'bignum' => '0.26',
5267 'bigrat' => '0.26',
5268 'charnames' => '1.18',
5269 'diagnostics' => '1.21',
5270 're' => '0.16',
5271 'threads' => '1.83',
5272 'threads::shared' => '1.36',
5273 'version' => '0.88',
5274 },
5275 removed => {
5276 }
e0698539 5277 },
a272bf38
DL
5278 5.01301 => {
5279 delta_from => 5.013009,
5280 changed => {
5281 'Attribute::Handlers' => '0.89',
5282 'B' => '1.28',
5283 'B::Showlex' => '1.03',
5284 'CGI' => '3.52',
5285 'CPAN' => '1.94_65',
5286 'CPAN::Distribution' => '1.9601',
5287 'CPAN::FTP::netrc' => '1.01',
5288 'CPAN::FirstTime' => '5.5303',
5289 'CPAN::HandleConfig' => '5.5003',
5290 'CPAN::Meta' => '2.110440',
5291 'CPAN::Meta::Converter' => '2.110440',
5292 'CPAN::Meta::Feature' => '2.110440',
5293 'CPAN::Meta::History' => '2.110440',
5294 'CPAN::Meta::Prereqs' => '2.110440',
5295 'CPAN::Meta::Spec' => '2.110440',
5296 'CPAN::Meta::Validator' => '2.110440',
5297 'CPAN::Shell' => '5.5002',
5298 'CPANPLUS' => '0.9101',
5299 'CPANPLUS::Internals' => '0.9101',
5300 'CPANPLUS::Shell::Default'=> '0.9101',
5301 'Carp' => '1.20',
5302 'Carp::Heavy' => '1.20',
5303 'Cwd' => '3.37',
5304 'Devel::DProf' => '20110217.00',
5305 'DynaLoader' => '1.13',
5306 'ExtUtils::CBuilder' => '0.280202',
5307 'ExtUtils::CBuilder::Base'=> '0.280202',
5308 'ExtUtils::CBuilder::Platform::Unix'=> '0.280202',
5309 'ExtUtils::CBuilder::Platform::VMS'=> '0.280202',
5310 'ExtUtils::CBuilder::Platform::Windows'=> '0.280202',
5311 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202',
5312 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202',
5313 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202',
5314 'ExtUtils::CBuilder::Platform::aix'=> '0.280202',
5315 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202',
5316 'ExtUtils::CBuilder::Platform::darwin'=> '0.280202',
5317 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202',
5318 'ExtUtils::CBuilder::Platform::os2'=> '0.280202',
5319 'File::Copy' => '2.22',
5320 'Filter::Simple' => '0.86',
5321 'HTTP::Tiny' => '0.010',
5322 'I18N::LangTags::Detect'=> '1.05',
5323 'IO::Select' => '1.18',
5324 'IPC::Cmd' => '0.70',
5325 'Locale::Maketext' => '1.19',
5326 'Math::BigFloat' => '1.992',
5327 'Math::BigInt' => '1.992',
5328 'Math::BigInt::Calc' => '1.992',
5329 'Math::BigInt::CalcEmu' => '1.992',
5330 'Module::Build' => '0.37_05',
5331 'Module::Build::Base' => '0.37_05',
5332 'Module::Build::Compat' => '0.37_05',
5333 'Module::Build::Config' => '0.37_05',
5334 'Module::Build::Cookbook'=> '0.37_05',
5335 'Module::Build::Dumper' => '0.37_05',
5336 'Module::Build::ModuleInfo'=> '0.37_05',
5337 'Module::Build::Notes' => '0.37_05',
5338 'Module::Build::PPMMaker'=> '0.37_05',
5339 'Module::Build::Platform::Amiga'=> '0.37_05',
5340 'Module::Build::Platform::Default'=> '0.37_05',
5341 'Module::Build::Platform::EBCDIC'=> '0.37_05',
5342 'Module::Build::Platform::MPEiX'=> '0.37_05',
5343 'Module::Build::Platform::MacOS'=> '0.37_05',
5344 'Module::Build::Platform::RiscOS'=> '0.37_05',
5345 'Module::Build::Platform::Unix'=> '0.37_05',
5346 'Module::Build::Platform::VMS'=> '0.37_05',
5347 'Module::Build::Platform::VOS'=> '0.37_05',
5348 'Module::Build::Platform::Windows'=> '0.37_05',
5349 'Module::Build::Platform::aix'=> '0.37_05',
5350 'Module::Build::Platform::cygwin'=> '0.37_05',
5351 'Module::Build::Platform::darwin'=> '0.37_05',
5352 'Module::Build::Platform::os2'=> '0.37_05',
5353 'Module::Build::PodParser'=> '0.37_05',
5354 'Module::Build::Version'=> '0.87',
5355 'Module::Build::YAML' => '1.41',
5356 'Module::CoreList' => '2.45',
5357 'Module::Load::Conditional'=> '0.44',
5358 'Module::Metadata' => '1.000004',
5359 'Parse::CPAN::Meta' => '1.4401',
5360 'Pod::Html' => '1.1',
5361 'Socket' => '1.94',
5362 'Term::UI' => '0.26',
5363 'Unicode::Collate' => '0.72',
5364 'Unicode::Collate::Locale'=> '0.71',
5365 'Unicode::UCD' => '0.31',
5366 'VMS::DCLsym' => '1.05',
5367 'Version::Requirements' => '0.101020',
5368 'bigrat' => '0.27',
5369 'deprecate' => '0.02',
5370 'diagnostics' => '1.22',
5371 'inc::latest' => '0.37_05',
5372 'overload' => '1.13',
5373 're' => '0.17',
5374 'utf8' => '1.09',
5375 'warnings' => '1.12',
5376 },
5377 removed => {
5378 }
c552c5b5 5379 },
45492fbf 5380 5.013011 => {
a272bf38
DL
5381 delta_from => 5.01301,
5382 changed => {
5383 'App::Prove' => '3.23',
5384 'App::Prove::State' => '3.23',
5385 'App::Prove::State::Result'=> '3.23',
5386 'App::Prove::State::Result::Test'=> '3.23',
5387 'B' => '1.29',
5388 'CPAN' => '1.9600',
5389 'CPAN::Author' => '5.5001',
5390 'CPAN::CacheMgr' => '5.5001',
5391 'CPAN::Distribution' => '1.9602',
5392 'CPAN::Exception::blocked_urllist'=> '1.001',
5393 'CPAN::HTTP::Client' => '1.9600',
5394 'CPAN::HTTP::Credentials'=> '1.9600',
5395 'CPAN::Index' => '1.9600',
5396 'CPAN::LWP::UserAgent' => '1.9600',
5397 'CPAN::Mirrors' => '1.9600',
5398 'CPAN::Module' => '5.5001',
5399 'CPANPLUS' => '0.9103',
5400 'CPANPLUS::Dist::Build' => '0.54',
5401 'CPANPLUS::Dist::Build::Constants'=> '0.54',
5402 'CPANPLUS::Internals' => '0.9103',
5403 'CPANPLUS::Shell::Default'=> '0.9103',
5404 'Cwd' => '3.36',
5405 'Devel::DProf' => '20110228.00',
5406 'Digest::SHA' => '5.61',
5407 'ExtUtils::Command' => '1.17',
5408 'File::Basename' => '2.81',
5409 'File::Copy' => '2.21',
5410 'File::Glob' => '1.12',
5411 'GDBM_File' => '1.14',
5412 'HTTP::Tiny' => '0.011',
5413 'Hash::Util' => '0.11',
5414 'Hash::Util::FieldHash' => '1.09',
5415 'I18N::Langinfo' => '0.08',
5416 'IO' => '1.25_04',
5417 'IO::Dir' => '1.08',
5418 'IO::File' => '1.15',
5419 'IO::Handle' => '1.30',
5420 'IO::Pipe' => '1.14',
5421 'IO::Poll' => '0.08',
5422 'IO::Select' => '1.20',
5423 'JSON::PP' => '2.27105',
5424 'Locale::Codes' => '3.16',
5425 'Locale::Codes::Country'=> '3.16',
5426 'Locale::Codes::Currency'=> '3.16',
5427 'Locale::Codes::Language'=> '3.16',
5428 'Locale::Codes::Script' => '3.16',
5429 'Locale::Constants' => '3.16',
5430 'Locale::Country' => '3.16',
5431 'Locale::Currency' => '3.16',
5432 'Locale::Language' => '3.16',
5433 'Locale::Script' => '3.16',
5434 'Math::BigFloat' => '1.993',
5435 'Math::BigInt' => '1.994',
5436 'Math::BigInt::Calc' => '1.993',
5437 'Math::BigInt::CalcEmu' => '1.993',
5438 'Math::BigInt::FastCalc'=> '0.28',
5439 'Module::Build' => '0.3800',
5440 'Module::Build::Base' => '0.3800',
5441 'Module::Build::Compat' => '0.3800',
5442 'Module::Build::Config' => '0.3800',
5443 'Module::Build::Cookbook'=> '0.3800',
5444 'Module::Build::Dumper' => '0.3800',
5445 'Module::Build::ModuleInfo'=> '0.3800',
5446 'Module::Build::Notes' => '0.3800',
5447 'Module::Build::PPMMaker'=> '0.3800',
5448 'Module::Build::Platform::Amiga'=> '0.3800',
5449 'Module::Build::Platform::Default'=> '0.3800',
5450 'Module::Build::Platform::EBCDIC'=> '0.3800',
5451 'Module::Build::Platform::MPEiX'=> '0.3800',
5452 'Module::Build::Platform::MacOS'=> '0.3800',
5453 'Module::Build::Platform::RiscOS'=> '0.3800',
5454 'Module::Build::Platform::Unix'=> '0.3800',
5455 'Module::Build::Platform::VMS'=> '0.3800',
5456 'Module::Build::Platform::VOS'=> '0.3800',
5457 'Module::Build::Platform::Windows'=> '0.3800',
5458 'Module::Build::Platform::aix'=> '0.3800',
5459 'Module::Build::Platform::cygwin'=> '0.3800',
5460 'Module::Build::Platform::darwin'=> '0.3800',
5461 'Module::Build::Platform::os2'=> '0.3800',
5462 'Module::Build::PodParser'=> '0.3800',
5463 'Module::CoreList' => '2.46',
5464 'NDBM_File' => '1.12',
5465 'Pod::Simple' => '3.16',
5466 'Pod::Simple::BlackBox' => '3.16',
5467 'Pod::Simple::Checker' => '3.16',
5468 'Pod::Simple::Debug' => '3.16',
5469 'Pod::Simple::DumpAsText'=> '3.16',
5470 'Pod::Simple::DumpAsXML'=> '3.16',
5471 'Pod::Simple::HTML' => '3.16',
5472 'Pod::Simple::HTMLBatch'=> '3.16',
5473 'Pod::Simple::LinkSection'=> '3.16',
5474 'Pod::Simple::Methody' => '3.16',
5475 'Pod::Simple::Progress' => '3.16',
5476 'Pod::Simple::PullParser'=> '3.16',
5477 'Pod::Simple::PullParserEndToken'=> '3.16',
5478 'Pod::Simple::PullParserStartToken'=> '3.16',
5479 'Pod::Simple::PullParserTextToken'=> '3.16',
5480 'Pod::Simple::PullParserToken'=> '3.16',
5481 'Pod::Simple::RTF' => '3.16',
5482 'Pod::Simple::Search' => '3.16',
5483 'Pod::Simple::SimpleTree'=> '3.16',
5484 'Pod::Simple::Text' => '3.16',
5485 'Pod::Simple::TextContent'=> '3.16',
5486 'Pod::Simple::TiedOutFH'=> '3.16',
5487 'Pod::Simple::Transcode'=> '3.16',
5488 'Pod::Simple::TranscodeDumb'=> '3.16',
5489 'Pod::Simple::TranscodeSmart'=> '3.16',
5490 'Pod::Simple::XHTML' => '3.16',
5491 'Pod::Simple::XMLOutStream'=> '3.16',
5492 'Storable' => '2.27',
5493 'Sys::Hostname' => '1.16',
5494 'TAP::Base' => '3.23',
5495 'TAP::Formatter::Base' => '3.23',
5496 'TAP::Formatter::Color' => '3.23',
5497 'TAP::Formatter::Console'=> '3.23',
5498 'TAP::Formatter::Console::ParallelSession'=> '3.23',
5499 'TAP::Formatter::Console::Session'=> '3.23',
5500 'TAP::Formatter::File' => '3.23',
5501 'TAP::Formatter::File::Session'=> '3.23',
5502 'TAP::Formatter::Session'=> '3.23',
5503 'TAP::Harness' => '3.23',
5504 'TAP::Object' => '3.23',
5505 'TAP::Parser' => '3.23',
5506 'TAP::Parser::Aggregator'=> '3.23',
5507 'TAP::Parser::Grammar' => '3.23',
5508 'TAP::Parser::Iterator' => '3.23',
5509 'TAP::Parser::Iterator::Array'=> '3.23',
5510 'TAP::Parser::Iterator::Process'=> '3.23',
5511 'TAP::Parser::Iterator::Stream'=> '3.23',
5512 'TAP::Parser::IteratorFactory'=> '3.23',
5513 'TAP::Parser::Multiplexer'=> '3.23',
5514 'TAP::Parser::Result' => '3.23',
5515 'TAP::Parser::Result::Bailout'=> '3.23',
5516 'TAP::Parser::Result::Comment'=> '3.23',
5517 'TAP::Parser::Result::Plan'=> '3.23',
5518 'TAP::Parser::Result::Pragma'=> '3.23',
5519 'TAP::Parser::Result::Test'=> '3.23',
5520 'TAP::Parser::Result::Unknown'=> '3.23',
5521 'TAP::Parser::Result::Version'=> '3.23',
5522 'TAP::Parser::Result::YAML'=> '3.23',
5523 'TAP::Parser::ResultFactory'=> '3.23',
5524 'TAP::Parser::Scheduler'=> '3.23',
5525 'TAP::Parser::Scheduler::Job'=> '3.23',
5526 'TAP::Parser::Scheduler::Spinner'=> '3.23',
5527 'TAP::Parser::Source' => '3.23',
5528 'TAP::Parser::SourceHandler'=> '3.23',
5529 'TAP::Parser::SourceHandler::Executable'=> '3.23',
5530 'TAP::Parser::SourceHandler::File'=> '3.23',
5531 'TAP::Parser::SourceHandler::Handle'=> '3.23',
5532 'TAP::Parser::SourceHandler::Perl'=> '3.23',
5533 'TAP::Parser::SourceHandler::RawTAP'=> '3.23',
5534 'TAP::Parser::Utils' => '3.23',
5535 'TAP::Parser::YAMLish::Reader'=> '3.23',
5536 'TAP::Parser::YAMLish::Writer'=> '3.23',
5537 'Test::Builder' => '0.98',
5538 'Test::Builder::Module' => '0.98',
5539 'Test::Builder::Tester' => '1.22',
5540 'Test::Builder::Tester::Color'=> '1.22',
5541 'Test::Harness' => '3.23',
5542 'Test::More' => '0.98',
5543 'Test::Simple' => '0.98',
5544 'Tie::Hash::NamedCapture'=> '0.08',
5545 'Tie::RefHash' => '1.39',
5546 'Unicode::Collate' => '0.73',
5547 'Unicode::Collate::Locale'=> '0.73',
5548 'Unicode::UCD' => '0.32',
5549 'XS::Typemap' => '0.05',
5550 'attributes' => '0.14',
5551 'base' => '2.16',
5552 'inc::latest' => '0.3800',
5553 'mro' => '1.07',
5554 'parent' => '0.225',
5555 },
5556 removed => {
5557 }
f3fd521e 5558 },
a272bf38
DL
5559 5.014 => {
5560 delta_from => 5.013011,
5561 changed => {
5562 'ExtUtils::CBuilder' => '0.280203',
5563 'ExtUtils::CBuilder::Base'=> '0.280203',
5564 'ExtUtils::CBuilder::Platform::Unix'=> '0.280203',
5565 'ExtUtils::CBuilder::Platform::VMS'=> '0.280203',
5566 'ExtUtils::CBuilder::Platform::Windows'=> '0.280203',
5567 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203',
5568 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203',
5569 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203',
5570 'ExtUtils::CBuilder::Platform::aix'=> '0.280203',
5571 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203',
5572 'ExtUtils::CBuilder::Platform::darwin'=> '0.280203',
5573 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203',
5574 'ExtUtils::CBuilder::Platform::os2'=> '0.280203',
5575 'ExtUtils::ParseXS' => '2.2210',
5576 'File::Basename' => '2.82',
5577 'HTTP::Tiny' => '0.012',
5578 'IO::Handle' => '1.31',
5579 'Module::CoreList' => '2.49',
5580 'PerlIO' => '1.07',
5581 'Pod::Html' => '1.11',
5582 'XS::APItest' => '0.28',
5583 'bigint' => '0.27',
5584 'bignum' => '0.27',
5585 'bigrat' => '0.28',
5586 'constant' => '1.21',
5587 'feature' => '1.20',
5588 're' => '0.18',
5589 'threads::shared' => '1.37',
5590 },
5591 removed => {
5592 }
0b3bdea4 5593 },
3d108019 5594 5.014001 => {
a272bf38
DL
5595 delta_from => 5.014,
5596 changed => {
5597 'B::Deparse' => '1.04',
5598 'Module::CoreList' => '2.49_01',
5599 'Pod::Perldoc' => '3.15_04',
5600 },
5601 removed => {
5602 }
3d108019 5603 },
a272bf38
DL
5604 5.014002 => {
5605 delta_from => 5.014001,
5606 changed => {
5607 'CPAN' => '1.9600_01',
5608 'CPAN::Distribution' => '1.9602_01',
5609 'Devel::DProf::dprof::V'=> undef,
5610 'Encode' => '2.42_01',
5611 'File::Glob' => '1.13',
5612 'Module::CoreList' => '2.49_02',
5613 'PerlIO::scalar' => '0.11_01',
5614 'Time::Piece::Seconds' => undef,
5615 'XSLoader::XSLoader' => '0.13',
5616 },
5617 removed => {
5618 }
5619 },
f7a5efeb
CBW
5620 5.014003 => {
5621 delta_from => 5.014002,
5622 changed => {
5623 'Digest' => '1.16_01',
5624 'IPC::Open3' => '1.09_01',
5625 'Module::CoreList' => '2.49_04',
5626 },
5627 removed => {
5628 }
5629 },
6ee607eb
CBW
5630 5.014004 => {
5631 delta_from => 5.014003,
5632 changed => {
5633 'Encode' => '2.42_02',
5634 'IPC::Open3' => '1.0901',
5635 'Module::CoreList' => '2.49_06',
5636 },
5637 removed => {
5638 }
5639 },
a272bf38
DL
5640 5.015 => {
5641 delta_from => 5.014001,
5642 changed => {
5643 'Archive::Extract' => '0.52',
5644 'Attribute::Handlers' => '0.91',
5645 'B' => '1.30',
5646 'B::Concise' => '0.84',
5647 'B::Deparse' => '1.05',
5648 'Benchmark' => '1.13',
5649 'CGI' => '3.54',
5650 'CGI::Util' => '3.53',
5651 'CPAN::Meta' => '2.110930',
5652 'CPAN::Meta::Converter' => '2.110930',
5653 'CPAN::Meta::Feature' => '2.110930',
5654 'CPAN::Meta::History' => '2.110930',
5655 'CPAN::Meta::Prereqs' => '2.110930',
5656 'CPAN::Meta::Spec' => '2.110930',
5657 'CPAN::Meta::Validator' => '2.110930',
5658 'CPANPLUS' => '0.9105',
5659 'CPANPLUS::Dist::Build' => '0.56',
5660 'CPANPLUS::Dist::Build::Constants'=> '0.56',
5661 'CPANPLUS::Internals' => '0.9105',
5662 'CPANPLUS::Shell::Default'=> '0.9105',
5663 'Compress::Raw::Bzip2' => '2.035',
5664 'Compress::Raw::Zlib' => '2.035',
5665 'Compress::Zlib' => '2.035',
5666 'DB_File' => '1.822',
5667 'Data::Dumper' => '2.131',
5668 'Devel::Peek' => '1.08',
5669 'Digest::SHA' => '5.62',
5670 'Encode' => '2.43',
5671 'Encode::Alias' => '2.14',
5672 'ExtUtils::CBuilder' => '0.280204',
5673 'ExtUtils::CBuilder::Base'=> '0.280204',
5674 'Fatal' => '2.10',
5675 'File::Spec::Win32' => '3.34',
5676 'Filter::Simple' => '0.87',
5677 'Filter::Util::Call' => '1.39',
5678 'FindBin' => '1.51',
5679 'Hash::Util::FieldHash' => '1.10',
5680 'I18N::LangTags' => '0.36',
5681 'IO::Compress::Adapter::Bzip2'=> '2.035',
5682 'IO::Compress::Adapter::Deflate'=> '2.035',
5683 'IO::Compress::Adapter::Identity'=> '2.035',
5684 'IO::Compress::Base' => '2.035',
5685 'IO::Compress::Base::Common'=> '2.035',
5686 'IO::Compress::Bzip2' => '2.035',
5687 'IO::Compress::Deflate' => '2.035',
5688 'IO::Compress::Gzip' => '2.035',
5689 'IO::Compress::Gzip::Constants'=> '2.035',
5690 'IO::Compress::RawDeflate'=> '2.035',
5691 'IO::Compress::Zip' => '2.035',
5692 'IO::Compress::Zip::Constants'=> '2.035',
5693 'IO::Compress::Zlib::Constants'=> '2.035',
5694 'IO::Compress::Zlib::Extra'=> '2.035',
5695 'IO::Uncompress::Adapter::Bunzip2'=> '2.035',
5696 'IO::Uncompress::Adapter::Identity'=> '2.035',
5697 'IO::Uncompress::Adapter::Inflate'=> '2.035',
5698 'IO::Uncompress::AnyInflate'=> '2.035',
5699 'IO::Uncompress::AnyUncompress'=> '2.035',
5700 'IO::Uncompress::Base' => '2.035',
5701 'IO::Uncompress::Bunzip2'=> '2.035',
5702 'IO::Uncompress::Gunzip'=> '2.035',
5703 'IO::Uncompress::Inflate'=> '2.035',
5704 'IO::Uncompress::RawInflate'=> '2.035',
5705 'IO::Uncompress::Unzip' => '2.035',
5706 'IPC::Open2' => '1.04',
5707 'IPC::Open3' => '1.11',
5708 'JSON::PP' => '2.27200',
5709 'Math::BigFloat' => '1.994',
5710 'Math::BigInt' => '1.995',
5711 'Math::Complex' => '1.57',
5712 'Math::Trig' => '1.21',
5713 'Module::CoreList' => '2.51',
5714 'ODBM_File' => '1.11',
5715 'Object::Accessor' => '0.42',
5716 'Opcode' => '1.19',
5717 'PerlIO::encoding' => '0.15',
5718 'PerlIO::scalar' => '0.12',
5719 'Pod::Perldoc' => '3.15_05',
5720 'Storable' => '2.28',
5721 'Sys::Syslog' => '0.29',
5722 'Time::HiRes' => '1.9722',
5723 'Unicode::Collate' => '0.76',
5724 'Unicode::Collate::CJK::Pinyin'=> '0.76',
5725 'Unicode::Collate::CJK::Stroke'=> '0.76',
5726 'Unicode::Collate::Locale'=> '0.76',
5727 'Unicode::Normalize' => '1.12',
5728 'XS::APItest' => '0.29',
5729 'XSLoader' => '0.15',
5730 'autodie' => '2.10',
5731 'autodie::exception' => '2.10',
5732 'autodie::exception::system'=> '2.10',
5733 'autodie::hints' => '2.10',
5734 'base' => '2.17',
5735 'charnames' => '1.22',
5736 'constant' => '1.22',
5737 'feature' => '1.21',
5738 'mro' => '1.08',
5739 'overload' => '1.14',
5740 'threads::shared' => '1.38',
5741 'vmsish' => '1.03',
5742 },
5743 removed => {
5744 'Devel::DProf' => 1,
5745 'Shell' => 1,
5746 }
1f1f08f5 5747 },
48b66e80 5748 5.015001 => {
a272bf38
DL
5749 delta_from => 5.015,
5750 changed => {
5751 'B::Deparse' => '1.06',
5752 'CGI' => '3.55',
5753 'CPAN::Meta' => '2.110930001',
5754 'CPAN::Meta::Converter' => '2.110930001',
5755 'CPANPLUS' => '0.9108',
5756 'CPANPLUS::Internals' => '0.9108',
5757 'CPANPLUS::Shell::Default'=> '0.9108',
5758 'Carp' => '1.21',
5759 'Carp::Heavy' => '1.21',
5760 'Compress::Raw::Bzip2' => '2.037',
5761 'Compress::Raw::Zlib' => '2.037',
5762 'Compress::Zlib' => '2.037',
5763 'Cwd' => '3.37',
5764 'Env' => '1.03',
5765 'ExtUtils::Command::MM' => '6.58',
5766 'ExtUtils::Liblist' => '6.58',
5767 'ExtUtils::Liblist::Kid'=> '6.58',
5768 'ExtUtils::MM' => '6.58',
5769 'ExtUtils::MM_AIX' => '6.58',
5770 'ExtUtils::MM_Any' => '6.58',
5771 'ExtUtils::MM_BeOS' => '6.58',
5772 'ExtUtils::MM_Cygwin' => '6.58',
5773 'ExtUtils::MM_DOS' => '6.58',
5774 'ExtUtils::MM_Darwin' => '6.58',
5775 'ExtUtils::MM_MacOS' => '6.58',
5776 'ExtUtils::MM_NW5' => '6.58',
5777 'ExtUtils::MM_OS2' => '6.58',
5778 'ExtUtils::MM_QNX' => '6.58',
5779 'ExtUtils::MM_UWIN' => '6.58',
5780 'ExtUtils::MM_Unix' => '6.58',
5781 'ExtUtils::MM_VMS' => '6.58',
5782 'ExtUtils::MM_VOS' => '6.58',
5783 'ExtUtils::MM_Win32' => '6.58',
5784 'ExtUtils::MM_Win95' => '6.58',
5785 'ExtUtils::MY' => '6.58',
5786 'ExtUtils::MakeMaker' => '6.58',
5787 'ExtUtils::MakeMaker::Config'=> '6.58',
5788 'ExtUtils::Mkbootstrap' => '6.58',
5789 'ExtUtils::Mksymlists' => '6.58',
5790 'ExtUtils::ParseXS' => '3.00_01',
5791 'ExtUtils::ParseXS::Constants'=> undef,
5792 'ExtUtils::ParseXS::CountLines'=> undef,
5793 'ExtUtils::ParseXS::Utilities'=> undef,
5794 'ExtUtils::Typemaps' => '1.00',
5795 'ExtUtils::Typemaps::InputMap'=> undef,
5796 'ExtUtils::Typemaps::OutputMap'=> undef,
5797 'ExtUtils::Typemaps::Type'=> '0.05',
5798 'ExtUtils::testlib' => '6.58',
5799 'File::Basename' => '2.83',
5800 'File::Find' => '1.20',
5801 'HTTP::Tiny' => '0.013',
5802 'I18N::Langinfo' => '0.08_02',
5803 'IO::Compress::Adapter::Bzip2'=> '2.037',
5804 'IO::Compress::Adapter::Deflate'=> '2.037',
5805 'IO::Compress::Adapter::Identity'=> '2.037',
5806 'IO::Compress::Base' => '2.037',
5807 'IO::Compress::Base::Common'=> '2.037',
5808 'IO::Compress::Bzip2' => '2.037',
5809 'IO::Compress::Deflate' => '2.037',
5810 'IO::Compress::Gzip' => '2.037',
5811 'IO::Compress::Gzip::Constants'=> '2.037',
5812 'IO::Compress::RawDeflate'=> '2.037',
5813 'IO::Compress::Zip' => '2.037',
5814 'IO::Compress::Zip::Constants'=> '2.037',
5815 'IO::Compress::Zlib::Constants'=> '2.037',
5816 'IO::Compress::Zlib::Extra'=> '2.037',
5817 'IO::Uncompress::Adapter::Bunzip2'=> '2.037',
5818 'IO::Uncompress::Adapter::Identity'=> '2.037',
5819 'IO::Uncompress::Adapter::Inflate'=> '2.037',
5820 'IO::Uncompress::AnyInflate'=> '2.037',
5821 'IO::Uncompress::AnyUncompress'=> '2.037',
5822 'IO::Uncompress::Base' => '2.037',
5823 'IO::Uncompress::Bunzip2'=> '2.037',
5824 'IO::Uncompress::Gunzip'=> '2.037',
5825 'IO::Uncompress::Inflate'=> '2.037',
5826 'IO::Uncompress::RawInflate'=> '2.037',
5827 'IO::Uncompress::Unzip' => '2.037',
5828 'IPC::Cmd' => '0.72',
5829 'Locale::Codes' => '3.17',
5830 'Locale::Codes::Constants'=> '3.17',
5831 'Locale::Codes::Country'=> '3.17',
5832 'Locale::Codes::Country_Codes'=> '3.17',
5833 'Locale::Codes::Currency'=> '3.17',
5834 'Locale::Codes::Currency_Codes'=> '3.17',
5835 'Locale::Codes::LangExt'=> '3.17',
5836 'Locale::Codes::LangExt_Codes'=> '3.17',
5837 'Locale::Codes::LangVar'=> '3.17',
5838 'Locale::Codes::LangVar_Codes'=> '3.17',
5839 'Locale::Codes::Language'=> '3.17',
5840 'Locale::Codes::Language_Codes'=> '3.17',
5841 'Locale::Codes::Script' => '3.17',
5842 'Locale::Codes::Script_Codes'=> '3.17',
5843 'Locale::Country' => '3.17',
5844 'Locale::Currency' => '3.17',
5845 'Locale::Language' => '3.17',
5846 'Locale::Script' => '3.17',
5847 'Math::BigFloat::Trace' => '0.28',
5848 'Math::BigInt::FastCalc'=> '0.29',
5849 'Math::BigInt::Trace' => '0.28',
5850 'Math::BigRat' => '0.2602',
5851 'Math::Complex' => '1.58',
5852 'Math::Trig' => '1.22',
5853 'Module::CoreList' => '2.54',
5854 'Pod::Perldoc' => '3.15_06',
5855 'Pod::Simple' => '3.18',
5856 'Pod::Simple::BlackBox' => '3.18',
5857 'Pod::Simple::Checker' => '3.18',
5858 'Pod::Simple::Debug' => '3.18',
5859 'Pod::Simple::DumpAsText'=> '3.18',
5860 'Pod::Simple::DumpAsXML'=> '3.18',
5861 'Pod::Simple::HTML' => '3.18',
5862 'Pod::Simple::HTMLBatch'=> '3.18',
5863 'Pod::Simple::LinkSection'=> '3.18',
5864 'Pod::Simple::Methody' => '3.18',
5865 'Pod::Simple::Progress' => '3.18',
5866 'Pod::Simple::PullParser'=> '3.18',
5867 'Pod::Simple::PullParserEndToken'=> '3.18',
5868 'Pod::Simple::PullParserStartToken'=> '3.18',
5869 'Pod::Simple::PullParserTextToken'=> '3.18',
5870 'Pod::Simple::PullParserToken'=> '3.18',
5871 'Pod::Simple::RTF' => '3.18',
5872 'Pod::Simple::Search' => '3.18',
5873 'Pod::Simple::SimpleTree'=> '3.18',
5874 'Pod::Simple::Text' => '3.18',
5875 'Pod::Simple::TextContent'=> '3.18',
5876 'Pod::Simple::TiedOutFH'=> '3.18',
5877 'Pod::Simple::Transcode'=> '3.18',
5878 'Pod::Simple::TranscodeDumb'=> '3.18',
5879 'Pod::Simple::TranscodeSmart'=> '3.18',
5880 'Pod::Simple::XHTML' => '3.18',
5881 'Pod::Simple::XMLOutStream'=> '3.18',
5882 'Storable' => '2.31',
5883 'Sys::Syslog::Win32' => undef,
5884 'Time::HiRes' => '1.9724',
5885 'Unicode::Collate' => '0.77',
5886 'Unicode::UCD' => '0.33',
5887 'Win32API::File' => '0.1200',
5888 'XS::APItest' => '0.30',
5889 'attributes' => '0.15',
5890 'bigint' => '0.28',
5891 'bignum' => '0.28',
5892 'charnames' => '1.23',
5893 'diagnostics' => '1.23',
5894 'feature' => '1.22',
5895 'overload' => '1.15',
5896 'perlfaq' => '5.015000',
5897 'threads' => '1.84',
5898 'version' => '0.93',
5899 },
5900 removed => {
5901 'ExtUtils::MakeMaker::YAML'=> 1,
5902 'Locale::Constants' => 1,
5903 'Sys::Syslog::win32::Win32'=> 1,
5904 }
48b66e80 5905 },
2f183b41 5906 5.015002 => {
a272bf38
DL
5907 delta_from => 5.015001,
5908 changed => {
5909 'Attribute::Handlers' => '0.92',
5910 'B' => '1.31',
5911 'B::Concise' => '0.85',
5912 'B::Deparse' => '1.07',
5913 'B::Terse' => '1.06',
5914 'B::Xref' => '1.03',
5915 'CPAN' => '1.9800',
5916 'CPAN::Exception::yaml_process_error'=> '5.5',
5917 'CPAN::Meta' => '2.112150',
5918 'CPAN::Meta::Converter' => '2.112150',
5919 'CPAN::Meta::Feature' => '2.112150',
5920 'CPAN::Meta::History' => '2.112150',
5921 'CPAN::Meta::Prereqs' => '2.112150',
5922 'CPAN::Meta::Spec' => '2.112150',
5923 'CPAN::Meta::Validator' => '2.112150',
5924 'CPANPLUS' => '0.9109',
5925 'CPANPLUS::Internals' => '0.9109',
5926 'CPANPLUS::Shell::Default'=> '0.9109',
5927 'DB_File' => '1.824',
5928 'Data::Dumper' => '2.132',
5929 'Encode' => '2.44',
5930 'Encode::Alias' => '2.15',
5931 'Encode::Encoder' => '2.02',
5932 'Encode::Guess' => '2.05',
5933 'ExtUtils::Command::MM' => '6.59',
5934 'ExtUtils::Install' => '1.57',
5935 'ExtUtils::Installed' => '1.999002',
5936 'ExtUtils::Liblist' => '6.59',
5937 'ExtUtils::Liblist::Kid'=> '6.59',
5938 'ExtUtils::MM' => '6.59',
5939 'ExtUtils::MM_AIX' => '6.59',
5940 'ExtUtils::MM_Any' => '6.59',
5941 'ExtUtils::MM_BeOS' => '6.59',
5942 'ExtUtils::MM_Cygwin' => '6.59',
5943 'ExtUtils::MM_DOS' => '6.59',
5944 'ExtUtils::MM_Darwin' => '6.59',
5945 'ExtUtils::MM_MacOS' => '6.59',
5946 'ExtUtils::MM_NW5' => '6.59',
5947 'ExtUtils::MM_OS2' => '6.59',
5948 'ExtUtils::MM_QNX' => '6.59',
5949 'ExtUtils::MM_UWIN' => '6.59',
5950 'ExtUtils::MM_Unix' => '6.59',
5951 'ExtUtils::MM_VMS' => '6.59',
5952 'ExtUtils::MM_VOS' => '6.59',
5953 'ExtUtils::MM_Win32' => '6.59',
5954 'ExtUtils::MM_Win95' => '6.59',
5955 'ExtUtils::MY' => '6.59',
5956 'ExtUtils::MakeMaker' => '6.59',
5957 'ExtUtils::MakeMaker::Config'=> '6.59',
5958 'ExtUtils::Manifest' => '1.60',
5959 'ExtUtils::Mkbootstrap' => '6.59',
5960 'ExtUtils::Mksymlists' => '6.59',
5961 'ExtUtils::ParseXS' => '3.03_01',
5962 'ExtUtils::Typemaps' => '1.01',
5963 'ExtUtils::testlib' => '6.59',
5964 'File::Spec' => '3.34',
5965 'File::Spec::Mac' => '3.35',
5966 'File::Spec::Unix' => '3.34',
5967 'File::Spec::VMS' => '3.35',
5968 'File::Spec::Win32' => '3.35',
5969 'I18N::LangTags' => '0.37',
5970 'IO' => '1.25_05',
5971 'IO::Handle' => '1.32',
5972 'IO::Socket' => '1.33',
5973 'IO::Socket::INET' => '1.32',
5974 'IPC::Open3' => '1.12',
5975 'Math::BigFloat' => '1.995',
5976 'Math::BigFloat::Trace' => '0.29',
5977 'Math::BigInt' => '1.996',
5978 'Math::BigInt::Trace' => '0.29',
5979 'Module::Build' => '0.39_01',
5980 'Module::Build::Base' => '0.39_01',
5981 'Module::Build::Compat' => '0.39_01',
5982 'Module::Build::Config' => '0.39_01',
5983 'Module::Build::Cookbook'=> '0.39_01',
5984 'Module::Build::Dumper' => '0.39_01',
5985 'Module::Build::ModuleInfo'=> '0.39_01',
5986 'Module::Build::Notes' => '0.39_01',
5987 'Module::Build::PPMMaker'=> '0.39_01',
5988 'Module::Build::Platform::Amiga'=> '0.39_01',
5989 'Module::Build::Platform::Default'=> '0.39_01',
5990 'Module::Build::Platform::EBCDIC'=> '0.39_01',
5991 'Module::Build::Platform::MPEiX'=> '0.39_01',
5992 'Module::Build::Platform::MacOS'=> '0.39_01',
5993 'Module::Build::Platform::RiscOS'=> '0.39_01',
5994 'Module::Build::Platform::Unix'=> '0.39_01',
5995 'Module::Build::Platform::VMS'=> '0.39_01',
5996 'Module::Build::Platform::VOS'=> '0.39_01',
5997 'Module::Build::Platform::Windows'=> '0.39_01',
5998 'Module::Build::Platform::aix'=> '0.39_01',
5999 'Module::Build::Platform::cygwin'=> '0.39_01',
6000 'Module::Build::Platform::darwin'=> '0.39_01',
6001 'Module::Build::Platform::os2'=> '0.39_01',
6002 'Module::Build::PodParser'=> '0.39_01',
6003 'Module::CoreList' => '2.55',
6004 'Module::Load' => '0.20',
6005 'Module::Metadata' => '1.000005_01',
6006 'Opcode' => '1.20',
6007 'Params::Check' => '0.32',
6008 'PerlIO::via' => '0.12',
6009 'Term::ANSIColor' => '3.01',
6010 'Unicode::Collate' => '0.78',
6011 'Unicode::Normalize' => '1.13',
6012 'Unicode::UCD' => '0.34',
6013 'bigint' => '0.29',
6014 'bignum' => '0.29',
6015 'bigrat' => '0.29',
6016 'diagnostics' => '1.24',
6017 'fields' => '2.16',
6018 'inc::latest' => '0.39_01',
6019 },
6020 removed => {
6021 }
33f96037 6022 },
e46b3c7d 6023 5.015003 => {
a272bf38
DL
6024 delta_from => 5.015002,
6025 changed => {
6026 'AnyDBM_File' => '1.01',
6027 'Archive::Extract' => '0.56',
6028 'Archive::Tar' => '1.78',
6029 'Archive::Tar::Constant'=> '1.78',
6030 'Archive::Tar::File' => '1.78',
6031 'Attribute::Handlers' => '0.93',
6032 'B' => '1.32',
6033 'B::Concise' => '0.86',
6034 'B::Deparse' => '1.08',
6035 'CPAN::Meta' => '2.112621',
6036 'CPAN::Meta::Converter' => '2.112621',
6037 'CPAN::Meta::Feature' => '2.112621',
6038 'CPAN::Meta::History' => '2.112621',
6039 'CPAN::Meta::Prereqs' => '2.112621',
6040 'CPAN::Meta::Spec' => '2.112621',
6041 'CPAN::Meta::Validator' => '2.112621',
6042 'CPAN::Meta::YAML' => '0.004',
6043 'CPANPLUS' => '0.9111',
6044 'CPANPLUS::Dist::Build' => '0.58',
6045 'CPANPLUS::Dist::Build::Constants'=> '0.58',
6046 'CPANPLUS::Internals' => '0.9111',
6047 'CPANPLUS::Shell::Default'=> '0.9111',
6048 'Carp' => '1.23',
6049 'Carp::Heavy' => '1.23',
6050 'Data::Dumper' => '2.134',
6051 'Devel::PPPort' => '3.20',
6052 'Errno' => '1.14',
6053 'Exporter' => '5.65',
6054 'Exporter::Heavy' => '5.65',
6055 'ExtUtils::ParseXS' => '3.04_04',
6056 'ExtUtils::ParseXS::Constants'=> '3.04_04',
6057 'ExtUtils::ParseXS::CountLines'=> '3.04_04',
6058 'ExtUtils::ParseXS::Utilities'=> '3.04_04',
6059 'ExtUtils::Typemaps' => '1.02',
6060 'File::Glob' => '1.13',
6061 'Filter::Simple' => '0.88',
6062 'IO' => '1.25_06',
6063 'IO::Handle' => '1.33',
6064 'Locale::Codes' => '3.18',
6065 'Locale::Codes::Constants'=> '3.18',
6066 'Locale::Codes::Country'=> '3.18',
6067 'Locale::Codes::Country_Codes'=> '3.18',
6068 'Locale::Codes::Currency'=> '3.18',
6069 'Locale::Codes::Currency_Codes'=> '3.18',
6070 'Locale::Codes::LangExt'=> '3.18',
6071 'Locale::Codes::LangExt_Codes'=> '3.18',
6072 'Locale::Codes::LangVar'=> '3.18',
6073 'Locale::Codes::LangVar_Codes'=> '3.18',
6074 'Locale::Codes::Language'=> '3.18',
6075 'Locale::Codes::Language_Codes'=> '3.18',
6076 'Locale::Codes::Script' => '3.18',
6077 'Locale::Codes::Script_Codes'=> '3.18',
6078 'Locale::Country' => '3.18',
6079 'Locale::Currency' => '3.18',
6080 'Locale::Language' => '3.18',
6081 'Locale::Script' => '3.18',
6082 'Math::BigFloat' => '1.997',
6083 'Math::BigInt' => '1.997',
6084 'Math::BigInt::Calc' => '1.997',
6085 'Math::BigInt::CalcEmu' => '1.997',
6086 'Math::BigInt::FastCalc'=> '0.30',
6087 'Math::BigRat' => '0.2603',
6088 'Module::CoreList' => '2.56',
6089 'Module::Load::Conditional'=> '0.46',
6090 'Module::Metadata' => '1.000007',
6091 'ODBM_File' => '1.12',
6092 'POSIX' => '1.26',
6093 'Pod::Perldoc' => '3.15_07',
6094 'Pod::Simple' => '3.19',
6095 'Pod::Simple::BlackBox' => '3.19',
6096 'Pod::Simple::Checker' => '3.19',
6097 'Pod::Simple::Debug' => '3.19',
6098 'Pod::Simple::DumpAsText'=> '3.19',
6099 'Pod::Simple::DumpAsXML'=> '3.19',
6100 'Pod::Simple::HTML' => '3.19',
6101 'Pod::Simple::HTMLBatch'=> '3.19',
6102 'Pod::Simple::LinkSection'=> '3.19',
6103 'Pod::Simple::Methody' => '3.19',
6104 'Pod::Simple::Progress' => '3.19',
6105 'Pod::Simple::PullParser'=> '3.19',
6106 'Pod::Simple::PullParserEndToken'=> '3.19',
6107 'Pod::Simple::PullParserStartToken'=> '3.19',
6108 'Pod::Simple::PullParserTextToken'=> '3.19',
6109 'Pod::Simple::PullParserToken'=> '3.19',
6110 'Pod::Simple::RTF' => '3.19',
6111 'Pod::Simple::Search' => '3.19',
6112 'Pod::Simple::SimpleTree'=> '3.19',
6113 'Pod::Simple::Text' => '3.19',
6114 'Pod::Simple::TextContent'=> '3.19',
6115 'Pod::Simple::TiedOutFH'=> '3.19',
6116 'Pod::Simple::Transcode'=> '3.19',
6117 'Pod::Simple::TranscodeDumb'=> '3.19',
6118 'Pod::Simple::TranscodeSmart'=> '3.19',
6119 'Pod::Simple::XHTML' => '3.19',
6120 'Pod::Simple::XMLOutStream'=> '3.19',
6121 'Search::Dict' => '1.04',
6122 'Socket' => '1.94_01',
6123 'Storable' => '2.32',
6124 'Text::Abbrev' => '1.02',
6125 'Tie::Array' => '1.05',
6126 'UNIVERSAL' => '1.09',
6127 'Unicode::UCD' => '0.35',
6128 'XS::APItest' => '0.31',
6129 'XSLoader' => '0.16',
6130 'attributes' => '0.16',
6131 'diagnostics' => '1.25',
6132 'open' => '1.09',
6133 'perlfaq' => '5.0150034',
6134 'threads' => '1.85',
6135 'threads::shared' => '1.40',
6136 },
6137 removed => {
6138 }
e46b3c7d 6139 },
f0381222 6140 5.015004 => {
a272bf38
DL
6141 delta_from => 5.015003,
6142 changed => {
6143 'Archive::Tar' => '1.80',
6144 'Archive::Tar::Constant'=> '1.80',
6145 'Archive::Tar::File' => '1.80',
6146 'Digest' => '1.17',
6147 'DynaLoader' => '1.14',
6148 'ExtUtils::Command::MM' => '6.61_01',
6149 'ExtUtils::Liblist' => '6.61_01',
6150 'ExtUtils::Liblist::Kid'=> '6.61_01',
6151 'ExtUtils::MM' => '6.61_01',
6152 'ExtUtils::MM_AIX' => '6.61_01',
6153 'ExtUtils::MM_Any' => '6.61_01',
6154 'ExtUtils::MM_BeOS' => '6.61_01',
6155 'ExtUtils::MM_Cygwin' => '6.61_01',
6156 'ExtUtils::MM_DOS' => '6.61_01',
6157 'ExtUtils::MM_Darwin' => '6.61_01',
6158 'ExtUtils::MM_MacOS' => '6.61_01',
6159 'ExtUtils::MM_NW5' => '6.61_01',
6160 'ExtUtils::MM_OS2' => '6.61_01',
6161 'ExtUtils::MM_QNX' => '6.61_01',
6162 'ExtUtils::MM_UWIN' => '6.61_01',
6163 'ExtUtils::MM_Unix' => '6.61_01',
6164 'ExtUtils::MM_VMS' => '6.61_01',
6165 'ExtUtils::MM_VOS' => '6.61_01',
6166 'ExtUtils::MM_Win32' => '6.61_01',
6167 'ExtUtils::MM_Win95' => '6.61_01',
6168 'ExtUtils::MY' => '6.61_01',
6169 'ExtUtils::MakeMaker' => '6.61_01',
6170 'ExtUtils::MakeMaker::Config'=> '6.61_01',
6171 'ExtUtils::Mkbootstrap' => '6.61_01',
6172 'ExtUtils::Mksymlists' => '6.61_01',
6173 'ExtUtils::ParseXS' => '3.05',
6174 'ExtUtils::ParseXS::Constants'=> '3.05',
6175 'ExtUtils::ParseXS::CountLines'=> '3.05',
6176 'ExtUtils::ParseXS::Utilities'=> '3.05',
6177 'ExtUtils::testlib' => '6.61_01',
6178 'File::DosGlob' => '1.05',
6179 'Module::CoreList' => '2.57',
6180 'Module::Load' => '0.22',
6181 'Unicode::Collate' => '0.80',
6182 'Unicode::Collate::Locale'=> '0.80',
6183 'Unicode::UCD' => '0.36',
6184 'XS::APItest' => '0.32',
6185 'XS::Typemap' => '0.07',
6186 'attributes' => '0.17',
6187 'base' => '2.18',
6188 'constant' => '1.23',
6189 'mro' => '1.09',
6190 'open' => '1.10',
6191 'perlfaq' => '5.0150035',
6192 },
6193 removed => {
6194 }
f0381222 6195 },
40f3bdee 6196 5.015005 => {
a272bf38
DL
6197 delta_from => 5.015004,
6198 changed => {
6199 'Archive::Extract' => '0.58',
6200 'B::Concise' => '0.87',
6201 'B::Deparse' => '1.09',
6202 'CGI' => '3.58',
6203 'CGI::Fast' => '1.09',
6204 'CPANPLUS' => '0.9112',
6205 'CPANPLUS::Dist::Build' => '0.60',
6206 'CPANPLUS::Dist::Build::Constants'=> '0.60',
6207 'CPANPLUS::Internals' => '0.9112',
6208 'CPANPLUS::Shell::Default'=> '0.9112',
6209 'Compress::Raw::Bzip2' => '2.042',
6210 'Compress::Raw::Zlib' => '2.042',
6211 'Compress::Zlib' => '2.042',
6212 'Digest::SHA' => '5.63',
6213 'Errno' => '1.15',
6214 'ExtUtils::Command::MM' => '6.63_02',
6215 'ExtUtils::Liblist' => '6.63_02',
6216 'ExtUtils::Liblist::Kid'=> '6.63_02',
6217 'ExtUtils::MM' => '6.63_02',
6218 'ExtUtils::MM_AIX' => '6.63_02',
6219 'ExtUtils::MM_Any' => '6.63_02',
6220 'ExtUtils::MM_BeOS' => '6.63_02',
6221 'ExtUtils::MM_Cygwin' => '6.63_02',
6222 'ExtUtils::MM_DOS' => '6.63_02',
6223 'ExtUtils::MM_Darwin' => '6.63_02',
6224 'ExtUtils::MM_MacOS' => '6.63_02',
6225 'ExtUtils::MM_NW5' => '6.63_02',
6226 'ExtUtils::MM_OS2' => '6.63_02',
6227 'ExtUtils::MM_QNX' => '6.63_02',
6228 'ExtUtils::MM_UWIN' => '6.63_02',
6229 'ExtUtils::MM_Unix' => '6.63_02',
6230 'ExtUtils::MM_VMS' => '6.63_02',
6231 'ExtUtils::MM_VOS' => '6.63_02',
6232 'ExtUtils::MM_Win32' => '6.63_02',
6233 'ExtUtils::MM_Win95' => '6.63_02',
6234 'ExtUtils::MY' => '6.63_02',
6235 'ExtUtils::MakeMaker' => '6.63_02',
6236 'ExtUtils::MakeMaker::Config'=> '6.63_02',
6237 'ExtUtils::Mkbootstrap' => '6.63_02',
6238 'ExtUtils::Mksymlists' => '6.63_02',
6239 'ExtUtils::testlib' => '6.63_02',
6240 'File::DosGlob' => '1.06',
6241 'File::Glob' => '1.14',
6242 'HTTP::Tiny' => '0.016',
6243 'IO::Compress::Adapter::Bzip2'=> '2.042',
6244 'IO::Compress::Adapter::Deflate'=> '2.042',
6245 'IO::Compress::Adapter::Identity'=> '2.042',
6246 'IO::Compress::Base' => '2.042',
6247 'IO::Compress::Base::Common'=> '2.042',
6248 'IO::Compress::Bzip2' => '2.042',
6249 'IO::Compress::Deflate' => '2.042',
6250 'IO::Compress::Gzip' => '2.042',
6251 'IO::Compress::Gzip::Constants'=> '2.042',
6252 'IO::Compress::RawDeflate'=> '2.042',
6253 'IO::Compress::Zip' => '2.042',
6254 'IO::Compress::Zip::Constants'=> '2.042',
6255 'IO::Compress::Zlib::Constants'=> '2.042',
6256 'IO::Compress::Zlib::Extra'=> '2.042',
6257 'IO::Uncompress::Adapter::Bunzip2'=> '2.042',
6258 'IO::Uncompress::Adapter::Identity'=> '2.042',
6259 'IO::Uncompress::Adapter::Inflate'=> '2.042',
6260 'IO::Uncompress::AnyInflate'=> '2.042',
6261 'IO::Uncompress::AnyUncompress'=> '2.042',
6262 'IO::Uncompress::Base' => '2.042',
6263 'IO::Uncompress::Bunzip2'=> '2.042',
6264 'IO::Uncompress::Gunzip'=> '2.042',
6265 'IO::Uncompress::Inflate'=> '2.042',
6266 'IO::Uncompress::RawInflate'=> '2.042',
6267 'IO::Uncompress::Unzip' => '2.042',
6268 'Locale::Maketext' => '1.20',
6269 'Locale::Maketext::Guts'=> '1.20',
6270 'Locale::Maketext::GutsLoader'=> '1.20',
6271 'Module::CoreList' => '2.58',
6272 'Opcode' => '1.21',
6273 'Socket' => '1.94_02',
6274 'Storable' => '2.33',
6275 'UNIVERSAL' => '1.10',
6276 'Unicode::Collate' => '0.85',
6277 'Unicode::Collate::CJK::Pinyin'=> '0.85',
6278 'Unicode::Collate::CJK::Stroke'=> '0.85',
6279 'Unicode::Collate::Locale'=> '0.85',
6280 'Unicode::UCD' => '0.37',
6281 'XS::APItest' => '0.33',
6282 'arybase' => '0.01',
6283 'charnames' => '1.24',
6284 'feature' => '1.23',
6285 'perlfaq' => '5.0150036',
6286 'strict' => '1.05',
6287 'unicore::Name' => undef,
6288 },
6289 removed => {
6290 }
40f3bdee 6291 },
9cdfa110 6292 5.015006 => {
a272bf38
DL
6293 delta_from => 5.015005,
6294 changed => {
6295 'Archive::Tar' => '1.82',
6296 'Archive::Tar::Constant'=> '1.82',
6297 'Archive::Tar::File' => '1.82',
6298 'AutoLoader' => '5.72',
6299 'B::Concise' => '0.88',
6300 'B::Debug' => '1.17',
6301 'B::Deparse' => '1.10',
6302 'CPAN::Meta::YAML' => '0.005',
6303 'CPANPLUS' => '0.9113',
6304 'CPANPLUS::Internals' => '0.9113',
6305 'CPANPLUS::Shell::Default'=> '0.9113',
6306 'Carp' => '1.24',
6307 'Compress::Raw::Bzip2' => '2.045',
6308 'Compress::Raw::Zlib' => '2.045',
6309 'Compress::Zlib' => '2.045',
6310 'Cwd' => '3.38',
6311 'DB' => '1.04',
6312 'Data::Dumper' => '2.135_01',
6313 'Digest::SHA' => '5.70',
6314 'Dumpvalue' => '1.17',
6315 'Exporter' => '5.66',
6316 'Exporter::Heavy' => '5.66',
6317 'ExtUtils::CBuilder' => '0.280205',
6318 'ExtUtils::CBuilder::Platform::os2'=> '0.280204',
6319 'ExtUtils::Packlist' => '1.45',
6320 'ExtUtils::ParseXS' => '3.08',
6321 'ExtUtils::ParseXS::Constants'=> '3.08',
6322 'ExtUtils::ParseXS::CountLines'=> '3.08',
6323 'ExtUtils::ParseXS::Utilities'=> '3.08',
6324 'File::Basename' => '2.84',
6325 'File::Glob' => '1.15',
6326 'File::Spec::Unix' => '3.35',
6327 'Getopt::Std' => '1.07',
6328 'I18N::LangTags' => '0.38',
6329 'IO::Compress::Adapter::Bzip2'=> '2.045',
6330 'IO::Compress::Adapter::Deflate'=> '2.045',
6331 'IO::Compress::Adapter::Identity'=> '2.045',
6332 'IO::Compress::Base' => '2.046',
6333 'IO::Compress::Base::Common'=> '2.045',
6334 'IO::Compress::Bzip2' => '2.045',
6335 'IO::Compress::Deflate' => '2.045',
6336 'IO::Compress::Gzip' => '2.045',
6337 'IO::Compress::Gzip::Constants'=> '2.045',
6338 'IO::Compress::RawDeflate'=> '2.045',
6339 'IO::Compress::Zip' => '2.046',
6340 'IO::Compress::Zip::Constants'=> '2.045',
6341 'IO::Compress::Zlib::Constants'=> '2.045',
6342 'IO::Compress::Zlib::Extra'=> '2.045',
6343 'IO::Dir' => '1.09',
6344 'IO::File' => '1.16',
6345 'IO::Uncompress::Adapter::Bunzip2'=> '2.045',
6346 'IO::Uncompress::Adapter::Identity'=> '2.045',
6347 'IO::Uncompress::Adapter::Inflate'=> '2.045',
6348 'IO::Uncompress::AnyInflate'=> '2.045',
6349 'IO::Uncompress::AnyUncompress'=> '2.045',
6350 'IO::Uncompress::Base' => '2.046',
6351 'IO::Uncompress::Bunzip2'=> '2.045',
6352 'IO::Uncompress::Gunzip'=> '2.045',
6353 'IO::Uncompress::Inflate'=> '2.045',
6354 'IO::Uncompress::RawInflate'=> '2.045',
6355 'IO::Uncompress::Unzip' => '2.046',
6356 'Locale::Codes' => '3.20',
6357 'Locale::Codes::Constants'=> '3.20',
6358 'Locale::Codes::Country'=> '3.20',
6359 'Locale::Codes::Country_Codes'=> '3.20',
6360 'Locale::Codes::Country_Retired'=> '3.20',
6361 'Locale::Codes::Currency'=> '3.20',
6362 'Locale::Codes::Currency_Codes'=> '3.20',
6363 'Locale::Codes::Currency_Retired'=> '3.20',
6364 'Locale::Codes::LangExt'=> '3.20',
6365 'Locale::Codes::LangExt_Codes'=> '3.20',
6366 'Locale::Codes::LangExt_Retired'=> '3.20',
6367 'Locale::Codes::LangFam'=> '3.20',
6368 'Locale::Codes::LangFam_Codes'=> '3.20',
6369 'Locale::Codes::LangFam_Retired'=> '3.20',
6370 'Locale::Codes::LangVar'=> '3.20',
6371 'Locale::Codes::LangVar_Codes'=> '3.20',
6372 'Locale::Codes::LangVar_Retired'=> '3.20',
6373 'Locale::Codes::Language'=> '3.20',
6374 'Locale::Codes::Language_Codes'=> '3.20',
6375 'Locale::Codes::Language_Retired'=> '3.20',
6376 'Locale::Codes::Script' => '3.20',
6377 'Locale::Codes::Script_Codes'=> '3.20',
6378 'Locale::Codes::Script_Retired'=> '3.20',
6379 'Locale::Country' => '3.20',
6380 'Locale::Currency' => '3.20',
6381 'Locale::Language' => '3.20',
6382 'Locale::Maketext' => '1.21',
6383 'Locale::Script' => '3.20',
6384 'Module::CoreList' => '2.59',
6385 'Module::Loaded' => '0.08',
6386 'Opcode' => '1.22',
6387 'POSIX' => '1.27',
6388 'Pod::Html' => '1.12',
6389 'Pod::LaTeX' => '0.60',
6390 'Pod::Perldoc' => '3.15_08',
6391 'Safe' => '2.30',
6392 'SelfLoader' => '1.20',
6393 'Socket' => '1.97',
6394 'Storable' => '2.34',
6395 'UNIVERSAL' => '1.11',
6396 'Unicode::Collate' => '0.87',
6397 'Unicode::Collate::Locale'=> '0.87',
6398 'XS::APItest' => '0.34',
6399 'arybase' => '0.02',
6400 'charnames' => '1.27',
6401 'diagnostics' => '1.26',
6402 'feature' => '1.24',
6403 'if' => '0.0602',
6404 'overload' => '1.16',
6405 'sigtrap' => '1.06',
6406 'strict' => '1.06',
6407 'threads' => '1.86',
6408 'version' => '0.96',
6409 },
6410 removed => {
6411 }
d10490f6
RS
6412 },
6413 5.015007 => {
a272bf38
DL
6414 delta_from => 5.015006,
6415 changed => {
6416 'B' => '1.33',
6417 'B::Deparse' => '1.11',
6418 'CGI' => '3.59',
6419 'CPAN::Meta' => '2.113640',
6420 'CPAN::Meta::Converter' => '2.113640',
6421 'CPAN::Meta::Feature' => '2.113640',
6422 'CPAN::Meta::History' => '2.113640',
6423 'CPAN::Meta::Prereqs' => '2.113640',
6424 'CPAN::Meta::Requirements'=> '2.113640',
6425 'CPAN::Meta::Spec' => '2.113640',
6426 'CPAN::Meta::Validator' => '2.113640',
6427 'CPANPLUS' => '0.9116',
6428 'CPANPLUS::Internals' => '0.9116',
6429 'CPANPLUS::Shell::Default'=> '0.9116',
6430 'Cwd' => '3.39_01',
6431 'Data::Dumper' => '2.135_03',
6432 'Devel::InnerPackage' => '0.4',
6433 'ExtUtils::CBuilder::Base'=> '0.280205',
6434 'ExtUtils::CBuilder::Platform::Unix'=> '0.280205',
6435 'ExtUtils::CBuilder::Platform::VMS'=> '0.280205',
6436 'ExtUtils::CBuilder::Platform::Windows'=> '0.280205',
6437 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205',
6438 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205',
6439 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205',
6440 'ExtUtils::CBuilder::Platform::aix'=> '0.280205',
6441 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205',
6442 'ExtUtils::CBuilder::Platform::darwin'=> '0.280205',
6443 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205',
6444 'ExtUtils::CBuilder::Platform::os2'=> '0.280205',
6445 'ExtUtils::Manifest' => '1.61',
6446 'ExtUtils::Packlist' => '1.46',
6447 'ExtUtils::ParseXS' => '3.12',
6448 'ExtUtils::ParseXS::Constants'=> '3.12',
6449 'ExtUtils::ParseXS::CountLines'=> '3.12',
6450 'ExtUtils::ParseXS::Utilities'=> '3.12',
6451 'ExtUtils::Typemaps' => '1.03',
6452 'ExtUtils::Typemaps::Cmd'=> undef,
6453 'ExtUtils::Typemaps::Type'=> '0.06',
6454 'File::Glob' => '1.16',
6455 'File::Spec' => '3.39_01',
6456 'File::Spec::Cygwin' => '3.39_01',
6457 'File::Spec::Epoc' => '3.39_01',
6458 'File::Spec::Functions' => '3.39_01',
6459 'File::Spec::Mac' => '3.39_01',
6460 'File::Spec::OS2' => '3.39_01',
6461 'File::Spec::Unix' => '3.39_01',
6462 'File::Spec::VMS' => '3.39_01',
6463 'File::Spec::Win32' => '3.39_01',
6464 'IO::Dir' => '1.10',
6465 'IO::Pipe' => '1.15',
6466 'IO::Poll' => '0.09',
6467 'IO::Select' => '1.21',
6468 'IO::Socket' => '1.34',
6469 'IO::Socket::INET' => '1.33',
6470 'IO::Socket::UNIX' => '1.24',
6471 'Locale::Maketext' => '1.22',
6472 'Math::BigInt' => '1.998',
6473 'Module::CoreList' => '2.60',
6474 'Module::Pluggable' => '4.0',
6475 'POSIX' => '1.28',
6476 'PerlIO::scalar' => '0.13',
6477 'Pod::Html' => '1.13',
6478 'Pod::Perldoc' => '3.15_15',
6479 'Pod::Perldoc::BaseTo' => '3.15_15',
6480 'Pod::Perldoc::GetOptsOO'=> '3.15_15',
6481 'Pod::Perldoc::ToANSI' => '3.15_15',
6482 'Pod::Perldoc::ToChecker'=> '3.15_15',
6483 'Pod::Perldoc::ToMan' => '3.15_15',
6484 'Pod::Perldoc::ToNroff' => '3.15_15',
6485 'Pod::Perldoc::ToPod' => '3.15_15',
6486 'Pod::Perldoc::ToRtf' => '3.15_15',
6487 'Pod::Perldoc::ToTerm' => '3.15_15',
6488 'Pod::Perldoc::ToText' => '3.15_15',
6489 'Pod::Perldoc::ToTk' => '3.15_15',
6490 'Pod::Perldoc::ToXml' => '3.15_15',
6491 'Term::UI' => '0.30',
6492 'Tie::File' => '0.98',
6493 'Unicode::UCD' => '0.39',
6494 'Version::Requirements' => '0.101021',
6495 'XS::APItest' => '0.35',
6496 '_charnames' => '1.28',
6497 'arybase' => '0.03',
6498 'autouse' => '1.07',
6499 'charnames' => '1.28',
6500 'diagnostics' => '1.27',
6501 'feature' => '1.25',
6502 'overload' => '1.17',
6503 'overloading' => '0.02',
6504 'perlfaq' => '5.0150038',
6505 },
6506 removed => {
6507 }
9cdfa110 6508 },
d10490f6 6509 5.015008 => {
a272bf38
DL
6510 delta_from => 5.015007,
6511 changed => {
6512 'B' => '1.34',
6513 'B::Deparse' => '1.12',
6514 'CPAN::Meta' => '2.120351',
6515 'CPAN::Meta::Converter' => '2.120351',
6516 'CPAN::Meta::Feature' => '2.120351',
6517 'CPAN::Meta::History' => '2.120351',
6518 'CPAN::Meta::Prereqs' => '2.120351',
6519 'CPAN::Meta::Requirements'=> '2.120351',
6520 'CPAN::Meta::Spec' => '2.120351',
6521 'CPAN::Meta::Validator' => '2.120351',
6522 'CPAN::Meta::YAML' => '0.007',
6523 'CPANPLUS' => '0.9118',
6524 'CPANPLUS::Dist::Build' => '0.62',
6525 'CPANPLUS::Dist::Build::Constants'=> '0.62',
6526 'CPANPLUS::Internals' => '0.9118',
6527 'CPANPLUS::Shell::Default'=> '0.9118',
6528 'Carp' => '1.25',
6529 'Carp::Heavy' => '1.25',
6530 'Compress::Raw::Bzip2' => '2.048',
6531 'Compress::Raw::Zlib' => '2.048',
6532 'Compress::Zlib' => '2.048',
6533 'Cwd' => '3.39_02',
6534 'DB_File' => '1.826',
6535 'Data::Dumper' => '2.135_05',
6536 'English' => '1.05',
6537 'ExtUtils::Install' => '1.58',
6538 'ExtUtils::ParseXS' => '3.16',
6539 'ExtUtils::ParseXS::Constants'=> '3.16',
6540 'ExtUtils::ParseXS::CountLines'=> '3.16',
6541 'ExtUtils::ParseXS::Utilities'=> '3.16',
6542 'ExtUtils::Typemaps' => '3.16',
6543 'ExtUtils::Typemaps::Cmd'=> '3.16',
6544 'ExtUtils::Typemaps::InputMap'=> '3.16',
6545 'ExtUtils::Typemaps::OutputMap'=> '3.16',
6546 'ExtUtils::Typemaps::Type'=> '3.16',
6547 'File::Copy' => '2.23',
6548 'File::Glob' => '1.17',
6549 'File::Spec' => '3.39_02',
6550 'File::Spec::Cygwin' => '3.39_02',
6551 'File::Spec::Epoc' => '3.39_02',
6552 'File::Spec::Functions' => '3.39_02',
6553 'File::Spec::Mac' => '3.39_02',
6554 'File::Spec::OS2' => '3.39_02',
6555 'File::Spec::Unix' => '3.39_02',
6556 'File::Spec::VMS' => '3.39_02',
6557 'File::Spec::Win32' => '3.39_02',
6558 'Filter::Util::Call' => '1.40',
6559 'IO::Compress::Adapter::Bzip2'=> '2.048',
6560 'IO::Compress::Adapter::Deflate'=> '2.048',
6561 'IO::Compress::Adapter::Identity'=> '2.048',
6562 'IO::Compress::Base' => '2.048',
6563 'IO::Compress::Base::Common'=> '2.048',
6564 'IO::Compress::Bzip2' => '2.048',
6565 'IO::Compress::Deflate' => '2.048',
6566 'IO::Compress::Gzip' => '2.048',
6567 'IO::Compress::Gzip::Constants'=> '2.048',
6568 'IO::Compress::RawDeflate'=> '2.048',
6569 'IO::Compress::Zip' => '2.048',
6570 'IO::Compress::Zip::Constants'=> '2.048',
6571 'IO::Compress::Zlib::Constants'=> '2.048',
6572 'IO::Compress::Zlib::Extra'=> '2.048',
6573 'IO::Uncompress::Adapter::Bunzip2'=> '2.048',
6574 'IO::Uncompress::Adapter::Identity'=> '2.048',
6575 'IO::Uncompress::Adapter::Inflate'=> '2.048',
6576 'IO::Uncompress::AnyInflate'=> '2.048',
6577 'IO::Uncompress::AnyUncompress'=> '2.048',
6578 'IO::Uncompress::Base' => '2.048',
6579 'IO::Uncompress::Bunzip2'=> '2.048',
6580 'IO::Uncompress::Gunzip'=> '2.048',
6581 'IO::Uncompress::Inflate'=> '2.048',
6582 'IO::Uncompress::RawInflate'=> '2.048',
6583 'IO::Uncompress::Unzip' => '2.048',
6584 'IPC::Cmd' => '0.76',
6585 'Math::Complex' => '1.59',
6586 'Math::Trig' => '1.23',
6587 'Module::Metadata' => '1.000009',
6588 'Opcode' => '1.23',
6589 'POSIX' => '1.30',
6590 'Parse::CPAN::Meta' => '1.4402',
6591 'PerlIO::mmap' => '0.010',
6592 'Pod::Checker' => '1.51',
6593 'Pod::Find' => '1.51',
6594 'Pod::Functions' => '1.05',
6595 'Pod::Functions::Functions'=> '1.05',
6596 'Pod::Html' => '1.14',
6597 'Pod::InputObjects' => '1.51',
6598 'Pod::ParseUtils' => '1.51',
6599 'Pod::Parser' => '1.51',
6600 'Pod::PlainText' => '2.05',
6601 'Pod::Select' => '1.51',
6602 'Pod::Usage' => '1.51',
6603 'Safe' => '2.31',
6604 'Socket' => '1.98',
6605 'Term::Cap' => '1.13',
6606 'Term::ReadLine' => '1.08',
6607 'Time::HiRes' => '1.9725',
6608 'Unicode' => '6.1.0',
6609 'Unicode::UCD' => '0.41',
6610 'Version::Requirements' => '0.101022',
6611 'XS::APItest' => '0.36',
6612 'XS::Typemap' => '0.08',
6613 '_charnames' => '1.29',
6614 'arybase' => '0.04',
6615 'charnames' => '1.29',
6616 'diagnostics' => '1.28',
6617 'feature' => '1.26',
6618 'locale' => '1.01',
6619 'overload' => '1.18',
6620 'perlfaq' => '5.0150039',
6621 're' => '0.19',
6622 'subs' => '1.01',
6623 'warnings' => '1.13',
6624 },
6625 removed => {
6626 }
b240fc0f 6627 },
d10490f6 6628 5.015009 => {
a272bf38
DL
6629 delta_from => 5.015008,
6630 changed => {
6631 'B::Deparse' => '1.13',
6632 'B::Lint' => '1.14',
6633 'B::Lint::Debug' => '1.14',
6634 'CPAN::Meta' => '2.120630',
6635 'CPAN::Meta::Converter' => '2.120630',
6636 'CPAN::Meta::Feature' => '2.120630',
6637 'CPAN::Meta::History' => '2.120630',
6638 'CPAN::Meta::Prereqs' => '2.120630',
6639 'CPAN::Meta::Requirements'=> '2.120630',
6640 'CPAN::Meta::Spec' => '2.120630',
6641 'CPAN::Meta::Validator' => '2.120630',
6642 'CPANPLUS' => '0.9121',
6643 'CPANPLUS::Internals' => '0.9121',
6644 'CPANPLUS::Shell::Default'=> '0.9121',
6645 'Data::Dumper' => '2.135_06',
6646 'Digest::SHA' => '5.71',
6647 'ExtUtils::CBuilder' => '0.280206',
6648 'ExtUtils::CBuilder::Base'=> '0.280206',
6649 'ExtUtils::CBuilder::Platform::Unix'=> '0.280206',
6650 'ExtUtils::CBuilder::Platform::VMS'=> '0.280206',
6651 'ExtUtils::CBuilder::Platform::Windows'=> '0.280206',
6652 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206',
6653 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206',
6654 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206',
6655 'ExtUtils::CBuilder::Platform::aix'=> '0.280206',
6656 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206',
6657 'ExtUtils::CBuilder::Platform::darwin'=> '0.280206',
6658 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206',
6659 'ExtUtils::CBuilder::Platform::os2'=> '0.280206',
6660 'HTTP::Tiny' => '0.017',
6661 'Locale::Codes' => '3.21',
6662 'Locale::Codes::Constants'=> '3.21',
6663 'Locale::Codes::Country'=> '3.21',
6664 'Locale::Codes::Country_Codes'=> '3.21',
6665 'Locale::Codes::Country_Retired'=> '3.21',
6666 'Locale::Codes::Currency'=> '3.21',
6667 'Locale::Codes::Currency_Codes'=> '3.21',
6668 'Locale::Codes::Currency_Retired'=> '3.21',
6669 'Locale::Codes::LangExt'=> '3.21',
6670 'Locale::Codes::LangExt_Codes'=> '3.21',
6671 'Locale::Codes::LangExt_Retired'=> '3.21',
6672 'Locale::Codes::LangFam'=> '3.21',
6673 'Locale::Codes::LangFam_Codes'=> '3.21',
6674 'Locale::Codes::LangFam_Retired'=> '3.21',
6675 'Locale::Codes::LangVar'=> '3.21',
6676 'Locale::Codes::LangVar_Codes'=> '3.21',
6677 'Locale::Codes::LangVar_Retired'=> '3.21',
6678 'Locale::Codes::Language'=> '3.21',
6679 'Locale::Codes::Language_Codes'=> '3.21',
6680 'Locale::Codes::Language_Retired'=> '3.21',
6681 'Locale::Codes::Script' => '3.21',
6682 'Locale::Codes::Script_Codes'=> '3.21',
6683 'Locale::Codes::Script_Retired'=> '3.21',
6684 'Locale::Country' => '3.21',
6685 'Locale::Currency' => '3.21',
6686 'Locale::Language' => '3.21',
6687 'Locale::Script' => '3.21',
6688 'Module::CoreList' => '2.65',
6689 'Pod::Html' => '1.1501',
6690 'Pod::Perldoc' => '3.17',
6691 'Pod::Perldoc::BaseTo' => '3.17',
6692 'Pod::Perldoc::GetOptsOO'=> '3.17',
6693 'Pod::Perldoc::ToANSI' => '3.17',
6694 'Pod::Perldoc::ToChecker'=> '3.17',
6695 'Pod::Perldoc::ToMan' => '3.17',
6696 'Pod::Perldoc::ToNroff' => '3.17',
6697 'Pod::Perldoc::ToPod' => '3.17',
6698 'Pod::Perldoc::ToRtf' => '3.17',
6699 'Pod::Perldoc::ToTerm' => '3.17',
6700 'Pod::Perldoc::ToText' => '3.17',
6701 'Pod::Perldoc::ToTk' => '3.17',
6702 'Pod::Perldoc::ToXml' => '3.17',
6703 'Pod::Simple' => '3.20',
6704 'Pod::Simple::BlackBox' => '3.20',
6705 'Pod::Simple::Checker' => '3.20',
6706 'Pod::Simple::Debug' => '3.20',
6707 'Pod::Simple::DumpAsText'=> '3.20',
6708 'Pod::Simple::DumpAsXML'=> '3.20',
6709 'Pod::Simple::HTML' => '3.20',
6710 'Pod::Simple::HTMLBatch'=> '3.20',
6711 'Pod::Simple::LinkSection'=> '3.20',
6712 'Pod::Simple::Methody' => '3.20',
6713 'Pod::Simple::Progress' => '3.20',
6714 'Pod::Simple::PullParser'=> '3.20',
6715 'Pod::Simple::PullParserEndToken'=> '3.20',
6716 'Pod::Simple::PullParserStartToken'=> '3.20',
6717 'Pod::Simple::PullParserTextToken'=> '3.20',
6718 'Pod::Simple::PullParserToken'=> '3.20',
6719 'Pod::Simple::RTF' => '3.20',
6720 'Pod::Simple::Search' => '3.20',
6721 'Pod::Simple::SimpleTree'=> '3.20',
6722 'Pod::Simple::Text' => '3.20',
6723 'Pod::Simple::TextContent'=> '3.20',
6724 'Pod::Simple::TiedOutFH'=> '3.20',
6725 'Pod::Simple::Transcode'=> '3.20',
6726 'Pod::Simple::TranscodeDumb'=> '3.20',
6727 'Pod::Simple::TranscodeSmart'=> '3.20',
6728 'Pod::Simple::XHTML' => '3.20',
6729 'Pod::Simple::XMLOutStream'=> '3.20',
6730 'Socket' => '2.000',
6731 'Term::ReadLine' => '1.09',
6732 'Unicode::Collate' => '0.89',
6733 'Unicode::Collate::CJK::Korean'=> '0.88',
6734 'Unicode::Collate::Locale'=> '0.89',
6735 'Unicode::Normalize' => '1.14',
6736 'Unicode::UCD' => '0.42',
6737 'XS::APItest' => '0.37',
6738 'arybase' => '0.05',
6739 'attributes' => '0.18',
6740 'charnames' => '1.30',
6741 'feature' => '1.27',
6742 },
6743 removed => {
6744 }
f50587e0 6745 },
a272bf38
DL
6746 5.016 => {
6747 delta_from => 5.015009,
6748 changed => {
6749 'B::Concise' => '0.89',
6750 'B::Deparse' => '1.14',
6751 'Carp' => '1.26',
6752 'Carp::Heavy' => '1.26',
6753 'IO::Socket' => '1.35',
6754 'Module::CoreList' => '2.66',
6755 'PerlIO::scalar' => '0.14',
6756 'Pod::Html' => '1.1502',
6757 'Safe' => '2.31_01',
6758 'Socket' => '2.001',
6759 'Unicode::UCD' => '0.43',
6760 'XS::APItest' => '0.38',
6761 '_charnames' => '1.31',
6762 'attributes' => '0.19',
6763 'strict' => '1.07',
6764 'version' => '0.99',
6765 },
6766 removed => {
6767 }
68a91acb 6768 },
990b8741
RS
6769 5.016001 => {
6770 delta_from => 5.016,
6771 changed => {
6772 'B' => '1.35',
6773 'B::Deparse' => '1.14_01',
6774 'List::Util' => '1.25',
6775 'List::Util::PP' => '1.25',
6776 'List::Util::XS' => '1.25',
6777 'Module::CoreList' => '2.70',
6778 'PerlIO::scalar' => '0.14_01',
6779 'Scalar::Util' => '1.25',
6780 'Scalar::Util::PP' => '1.25',
6781 're' => '0.19_01',
6782 },
6783 removed => {
6784 }
6785 },
e0a7ebbc
CBW
6786 5.016002 => {
6787 delta_from => 5.016001,
6788 changed => {
c078d967 6789 'Module::CoreList' => '2.76',
e0a7ebbc
CBW
6790 },
6791 removed => {
6792 }
6793 },
cd98b2f5
CBW
6794 5.016003 => {
6795 delta_from => 5.016002,
6796 changed => {
6797 'Encode' => '2.44_01',
6798 'Module::CoreList' => '2.76_02',
6799 'XS::APItest' => '0.39',
6800 },
6801 removed => {
6802 }
6803 },
a272bf38
DL
6804 5.017 => {
6805 delta_from => 5.016,
6806 changed => {
6807 'B' => '1.35',
6808 'B::Concise' => '0.90',
6809 'ExtUtils::ParseXS' => '3.17',
6810 'ExtUtils::ParseXS::Utilities'=> '3.17',
6811 'File::DosGlob' => '1.07',
6812 'File::Find' => '1.21',
6813 'File::stat' => '1.06',
6814 'Hash::Util' => '0.12',
6815 'IO::Socket' => '1.34',
6816 'Module::CoreList' => '2.67',
6817 'Pod::Functions' => '1.06',
6818 'Pod::Functions::Functions'=> '1.06',
6819 'Storable' => '2.35',
6820 'XS::APItest' => '0.39',
6821 'diagnostics' => '1.29',
6822 'feature' => '1.28',
6823 'overload' => '1.19',
6824 'utf8' => '1.10',
6825 },
6826 removed => {
6827 'Version::Requirements' => 1,
6828 }
f558db2f 6829 },
71014848 6830 5.017001 => {
a272bf38
DL
6831 delta_from => 5.017,
6832 changed => {
6833 'App::Prove' => '3.25',
6834 'App::Prove::State' => '3.25',
6835 'App::Prove::State::Result'=> '3.25',
6836 'App::Prove::State::Result::Test'=> '3.25',
6837 'Archive::Extract' => '0.60',
6838 'Archive::Tar' => '1.88',
6839 'Archive::Tar::Constant'=> '1.88',
6840 'Archive::Tar::File' => '1.88',
6841 'B' => '1.36',
6842 'B::Deparse' => '1.15',
6843 'CPAN::Meta' => '2.120921',
6844 'CPAN::Meta::Converter' => '2.120921',
6845 'CPAN::Meta::Feature' => '2.120921',
6846 'CPAN::Meta::History' => '2.120921',
6847 'CPAN::Meta::Prereqs' => '2.120921',
6848 'CPAN::Meta::Requirements'=> '2.122',
6849 'CPAN::Meta::Spec' => '2.120921',
6850 'CPAN::Meta::Validator' => '2.120921',
6851 'CPAN::Meta::YAML' => '0.008',
6852 'CPANPLUS' => '0.9130',
6853 'CPANPLUS::Config::HomeEnv'=> '0.04',
6854 'CPANPLUS::Internals' => '0.9130',
6855 'CPANPLUS::Shell::Default'=> '0.9130',
6856 'Class::Struct' => '0.64',
6857 'Compress::Raw::Bzip2' => '2.052',
6858 'Compress::Raw::Zlib' => '2.054',
6859 'Compress::Zlib' => '2.052',
6860 'Digest::MD5' => '2.52',
6861 'DynaLoader' => '1.15',
6862 'ExtUtils::CBuilder' => '0.280208',
6863 'ExtUtils::CBuilder::Base'=> '0.280208',
6864 'ExtUtils::CBuilder::Platform::Unix'=> '0.280208',
6865 'ExtUtils::CBuilder::Platform::VMS'=> '0.280208',
6866 'ExtUtils::CBuilder::Platform::Windows'=> '0.280208',
6867 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208',
6868 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208',
6869 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208',
6870 'ExtUtils::CBuilder::Platform::aix'=> '0.280208',
6871 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208',
6872 'ExtUtils::CBuilder::Platform::darwin'=> '0.280208',
6873 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208',
6874 'ExtUtils::CBuilder::Platform::os2'=> '0.280208',
6875 'Fatal' => '2.11',
6876 'File::DosGlob' => '1.08',
6877 'File::Fetch' => '0.34',
6878 'File::Spec::Unix' => '3.39_03',
6879 'Filter::Util::Call' => '1.45',
6880 'HTTP::Tiny' => '0.022',
6881 'IO' => '1.25_07',
6882 'IO::Compress::Adapter::Bzip2'=> '2.052',
6883 'IO::Compress::Adapter::Deflate'=> '2.052',
6884 'IO::Compress::Adapter::Identity'=> '2.052',
6885 'IO::Compress::Base' => '2.052',
6886 'IO::Compress::Base::Common'=> '2.052',
6887 'IO::Compress::Bzip2' => '2.052',
6888 'IO::Compress::Deflate' => '2.052',
6889 'IO::Compress::Gzip' => '2.052',
6890 'IO::Compress::Gzip::Constants'=> '2.052',
6891 'IO::Compress::RawDeflate'=> '2.052',
6892 'IO::Compress::Zip' => '2.052',
6893 'IO::Compress::Zip::Constants'=> '2.052',
6894 'IO::Compress::Zlib::Constants'=> '2.052',
6895 'IO::Compress::Zlib::Extra'=> '2.052',
6896 'IO::Uncompress::Adapter::Bunzip2'=> '2.052',
6897 'IO::Uncompress::Adapter::Identity'=> '2.052',
6898 'IO::Uncompress::Adapter::Inflate'=> '2.052',
6899 'IO::Uncompress::AnyInflate'=> '2.052',
6900 'IO::Uncompress::AnyUncompress'=> '2.052',
6901 'IO::Uncompress::Base' => '2.052',
6902 'IO::Uncompress::Bunzip2'=> '2.052',
6903 'IO::Uncompress::Gunzip'=> '2.052',
6904 'IO::Uncompress::Inflate'=> '2.052',
6905 'IO::Uncompress::RawInflate'=> '2.052',
6906 'IO::Uncompress::Unzip' => '2.052',
6907 'IPC::Cmd' => '0.78',
6908 'List::Util' => '1.25',
6909 'List::Util::XS' => '1.25',
6910 'Locale::Codes' => '3.22',
6911 'Locale::Codes::Constants'=> '3.22',
6912 'Locale::Codes::Country'=> '3.22',
6913 'Locale::Codes::Country_Codes'=> '3.22',
6914 'Locale::Codes::Country_Retired'=> '3.22',
6915 'Locale::Codes::Currency'=> '3.22',
6916 'Locale::Codes::Currency_Codes'=> '3.22',
6917 'Locale::Codes::Currency_Retired'=> '3.22',
6918 'Locale::Codes::LangExt'=> '3.22',
6919 'Locale::Codes::LangExt_Codes'=> '3.22',
6920 'Locale::Codes::LangExt_Retired'=> '3.22',
6921 'Locale::Codes::LangFam'=> '3.22',
6922 'Locale::Codes::LangFam_Codes'=> '3.22',
6923 'Locale::Codes::LangFam_Retired'=> '3.22',
6924 'Locale::Codes::LangVar'=> '3.22',
6925 'Locale::Codes::LangVar_Codes'=> '3.22',
6926 'Locale::Codes::LangVar_Retired'=> '3.22',
6927 'Locale::Codes::Language'=> '3.22',
6928 'Locale::Codes::Language_Codes'=> '3.22',
6929 'Locale::Codes::Language_Retired'=> '3.22',
6930 'Locale::Codes::Script' => '3.22',
6931 'Locale::Codes::Script_Codes'=> '3.22',
6932 'Locale::Codes::Script_Retired'=> '3.22',
6933 'Locale::Country' => '3.22',
6934 'Locale::Currency' => '3.22',
6935 'Locale::Language' => '3.22',
6936 'Locale::Script' => '3.22',
6937 'Memoize' => '1.03',
6938 'Memoize::AnyDBM_File' => '1.03',
6939 'Memoize::Expire' => '1.03',
6940 'Memoize::ExpireFile' => '1.03',
6941 'Memoize::ExpireTest' => '1.03',
6942 'Memoize::NDBM_File' => '1.03',
6943 'Memoize::SDBM_File' => '1.03',
6944 'Memoize::Storable' => '1.03',
6945 'Module::Build' => '0.40',
6946 'Module::Build::Base' => '0.40',
6947 'Module::Build::Compat' => '0.40',
6948 'Module::Build::Config' => '0.40',
6949 'Module::Build::Cookbook'=> '0.40',
6950 'Module::Build::Dumper' => '0.40',
6951 'Module::Build::ModuleInfo'=> '0.40',
6952 'Module::Build::Notes' => '0.40',
6953 'Module::Build::PPMMaker'=> '0.40',
6954 'Module::Build::Platform::Amiga'=> '0.40',
6955 'Module::Build::Platform::Default'=> '0.40',
6956 'Module::Build::Platform::EBCDIC'=> '0.40',
6957 'Module::Build::Platform::MPEiX'=> '0.40',
6958 'Module::Build::Platform::MacOS'=> '0.40',
6959 'Module::Build::Platform::RiscOS'=> '0.40',
6960 'Module::Build::Platform::Unix'=> '0.40',
6961 'Module::Build::Platform::VMS'=> '0.40',
6962 'Module::Build::Platform::VOS'=> '0.40',
6963 'Module::Build::Platform::Windows'=> '0.40',
6964 'Module::Build::Platform::aix'=> '0.40',
6965 'Module::Build::Platform::cygwin'=> '0.40',
6966 'Module::Build::Platform::darwin'=> '0.40',
6967 'Module::Build::Platform::os2'=> '0.40',
6968 'Module::Build::PodParser'=> '0.40',
6969 'Module::CoreList' => '2.68',
6970 'Module::Load::Conditional'=> '0.50',
6971 'Object::Accessor' => '0.44',
6972 'POSIX' => '1.31',
6973 'Params::Check' => '0.36',
6974 'Parse::CPAN::Meta' => '1.4404',
6975 'PerlIO::mmap' => '0.011',
6976 'PerlIO::via::QuotedPrint'=> '0.07',
6977 'Pod::Html' => '1.16',
6978 'Pod::Man' => '2.26',
6979 'Pod::Text' => '3.16',
6980 'Safe' => '2.33_01',
6981 'Scalar::Util' => '1.25',
6982 'Search::Dict' => '1.07',
6983 'Storable' => '2.36',
6984 'TAP::Base' => '3.25',
6985 'TAP::Formatter::Base' => '3.25',
6986 'TAP::Formatter::Color' => '3.25',
6987 'TAP::Formatter::Console'=> '3.25',
6988 'TAP::Formatter::Console::ParallelSession'=> '3.25',
6989 'TAP::Formatter::Console::Session'=> '3.25',
6990 'TAP::Formatter::File' => '3.25',
6991 'TAP::Formatter::File::Session'=> '3.25',
6992 'TAP::Formatter::Session'=> '3.25',
6993 'TAP::Harness' => '3.25',
6994 'TAP::Object' => '3.25',
6995 'TAP::Parser' => '3.25',
6996 'TAP::Parser::Aggregator'=> '3.25',
6997 'TAP::Parser::Grammar' => '3.25',
6998 'TAP::Parser::Iterator' => '3.25',
6999 'TAP::Parser::Iterator::Array'=> '3.25',
7000 'TAP::Parser::Iterator::Process'=> '3.25',
7001 'TAP::Parser::Iterator::Stream'=> '3.25',
7002 'TAP::Parser::IteratorFactory'=> '3.25',
7003 'TAP::Parser::Multiplexer'=> '3.25',
7004 'TAP::Parser::Result' => '3.25',
7005 'TAP::Parser::Result::Bailout'=> '3.25',
7006 'TAP::Parser::Result::Comment'=> '3.25',
7007 'TAP::Parser::Result::Plan'=> '3.25',
7008 'TAP::Parser::Result::Pragma'=> '3.25',
7009 'TAP::Parser::Result::Test'=> '3.25',
7010 'TAP::Parser::Result::Unknown'=> '3.25',
7011 'TAP::Parser::Result::Version'=> '3.25',
7012 'TAP::Parser::Result::YAML'=> '3.25',
7013 'TAP::Parser::ResultFactory'=> '3.25',
7014 'TAP::Parser::Scheduler'=> '3.25',
7015 'TAP::Parser::Scheduler::Job'=> '3.25',
7016 'TAP::Parser::Scheduler::Spinner'=> '3.25',
7017 'TAP::Parser::Source' => '3.25',
7018 'TAP::Parser::SourceHandler'=> '3.25',
7019 'TAP::Parser::SourceHandler::Executable'=> '3.25',
7020 'TAP::Parser::SourceHandler::File'=> '3.25',
7021 'TAP::Parser::SourceHandler::Handle'=> '3.25',
7022 'TAP::Parser::SourceHandler::Perl'=> '3.25',
7023 'TAP::Parser::SourceHandler::RawTAP'=> '3.25',
7024 'TAP::Parser::Utils' => '3.25',
7025 'TAP::Parser::YAMLish::Reader'=> '3.25',
7026 'TAP::Parser::YAMLish::Writer'=> '3.25',
7027 'Term::ANSIColor' => '3.02',
7028 'Test::Harness' => '3.25',
7029 'Unicode' => '6.2.0',
7030 'Unicode::UCD' => '0.44',
7031 'XS::APItest' => '0.40',
7032 '_charnames' => '1.32',
7033 'attributes' => '0.2',
7034 'autodie' => '2.11',
7035 'autodie::exception' => '2.11',
7036 'autodie::exception::system'=> '2.11',
7037 'autodie::hints' => '2.11',
7038 'bigint' => '0.30',
7039 'charnames' => '1.32',
7040 'feature' => '1.29',
7041 'inc::latest' => '0.40',
7042 'perlfaq' => '5.0150040',
7043 're' => '0.20',
7044 },
7045 removed => {
7046 'List::Util::PP' => 1,
7047 'Scalar::Util::PP' => 1,
7048 }
71014848 7049 },
7ca04d94 7050 5.017002 => {
a272bf38
DL
7051 delta_from => 5.017001,
7052 changed => {
7053 'App::Prove' => '3.25_01',
7054 'App::Prove::State' => '3.25_01',
7055 'App::Prove::State::Result'=> '3.25_01',
7056 'App::Prove::State::Result::Test'=> '3.25_01',
7057 'B::Concise' => '0.91',
7058 'Compress::Raw::Bzip2' => '2.05201',
7059 'Compress::Raw::Zlib' => '2.05401',
7060 'Exporter' => '5.67',
7061 'Exporter::Heavy' => '5.67',
7062 'Fatal' => '2.12',
7063 'File::Fetch' => '0.36',
7064 'File::stat' => '1.07',
7065 'IO' => '1.25_08',
7066 'IO::Socket' => '1.35',
7067 'Module::CoreList' => '2.69',
7068 'PerlIO::scalar' => '0.15',
7069 'Socket' => '2.002',
7070 'Storable' => '2.37',
7071 'TAP::Base' => '3.25_01',
7072 'TAP::Formatter::Base' => '3.25_01',
7073 'TAP::Formatter::Color' => '3.25_01',
7074 'TAP::Formatter::Console'=> '3.25_01',
7075 'TAP::Formatter::Console::ParallelSession'=> '3.25_01',
7076 'TAP::Formatter::Console::Session'=> '3.25_01',
7077 'TAP::Formatter::File' => '3.25_01',
7078 'TAP::Formatter::File::Session'=> '3.25_01',
7079 'TAP::Formatter::Session'=> '3.25_01',
7080 'TAP::Harness' => '3.25_01',
7081 'TAP::Object' => '3.25_01',
7082 'TAP::Parser' => '3.25_01',
7083 'TAP::Parser::Aggregator'=> '3.25_01',
7084 'TAP::Parser::Grammar' => '3.25_01',
7085 'TAP::Parser::Iterator' => '3.25_01',
7086 'TAP::Parser::Iterator::Array'=> '3.25_01',
7087 'TAP::Parser::Iterator::Process'=> '3.25_01',
7088 'TAP::Parser::Iterator::Stream'=> '3.25_01',
7089 'TAP::Parser::IteratorFactory'=> '3.25_01',
7090 'TAP::Parser::Multiplexer'=> '3.25_01',
7091 'TAP::Parser::Result' => '3.25_01',
7092 'TAP::Parser::Result::Bailout'=> '3.25_01',
7093 'TAP::Parser::Result::Comment'=> '3.25_01',
7094 'TAP::Parser::Result::Plan'=> '3.25_01',
7095 'TAP::Parser::Result::Pragma'=> '3.25_01',
7096 'TAP::Parser::Result::Test'=> '3.25_01',
7097 'TAP::Parser::Result::Unknown'=> '3.25_01',
7098 'TAP::Parser::Result::Version'=> '3.25_01',
7099 'TAP::Parser::Result::YAML'=> '3.25_01',
7100 'TAP::Parser::ResultFactory'=> '3.25_01',
7101 'TAP::Parser::Scheduler'=> '3.25_01',
7102 'TAP::Parser::Scheduler::Job'=> '3.25_01',
7103 'TAP::Parser::Scheduler::Spinner'=> '3.25_01',
7104 'TAP::Parser::Source' => '3.25_01',
7105 'TAP::Parser::SourceHandler'=> '3.25_01',
7106 'TAP::Parser::SourceHandler::Executable'=> '3.25_01',
7107 'TAP::Parser::SourceHandler::File'=> '3.25_01',
7108 'TAP::Parser::SourceHandler::Handle'=> '3.25_01',
7109 'TAP::Parser::SourceHandler::Perl'=> '3.25_01',
7110 'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01',
7111 'TAP::Parser::Utils' => '3.25_01',
7112 'TAP::Parser::YAMLish::Reader'=> '3.25_01',
7113 'TAP::Parser::YAMLish::Writer'=> '3.25_01',
7114 'Test::Harness' => '3.25_01',
7115 'Tie::StdHandle' => '4.3',
7116 'XS::APItest' => '0.41',
7117 'autodie' => '2.12',
7118 'autodie::exception' => '2.12',
7119 'autodie::exception::system'=> '2.12',
7120 'autodie::hints' => '2.12',
7121 'diagnostics' => '1.30',
7122 'overload' => '1.20',
7123 're' => '0.21',
7124 'vars' => '1.03',
7125 },
7126 removed => {
7127 }
7ca04d94 7128 },
752b5616
SH
7129 5.017003 => {
7130 delta_from => 5.017002,
7131 changed => {
7132 'B' => '1.37',
7133 'B::Concise' => '0.92',
7134 'B::Debug' => '1.18',
7135 'B::Deparse' => '1.16',
7136 'CGI' => '3.60',
7137 'Compress::Raw::Bzip2' => '2.055',
7138 'Compress::Raw::Zlib' => '2.056',
7139 'Compress::Zlib' => '2.055',
7140 'Data::Dumper' => '2.135_07',
7141 'Devel::Peek' => '1.09',
7142 'Encode' => '2.47',
7143 'Encode::Alias' => '2.16',
7144 'Encode::GSM0338' => '2.02',
7145 'Encode::Unicode::UTF7' => '2.06',
7146 'IO::Compress::Adapter::Bzip2'=> '2.055',
7147 'IO::Compress::Adapter::Deflate'=> '2.055',
7148 'IO::Compress::Adapter::Identity'=> '2.055',
7149 'IO::Compress::Base' => '2.055',
7150 'IO::Compress::Base::Common'=> '2.055',
7151 'IO::Compress::Bzip2' => '2.055',
7152 'IO::Compress::Deflate' => '2.055',
7153 'IO::Compress::Gzip' => '2.055',
7154 'IO::Compress::Gzip::Constants'=> '2.055',
7155 'IO::Compress::RawDeflate'=> '2.055',
7156 'IO::Compress::Zip' => '2.055',
7157 'IO::Compress::Zip::Constants'=> '2.055',
7158 'IO::Compress::Zlib::Constants'=> '2.055',
7159 'IO::Compress::Zlib::Extra'=> '2.055',
7160 'IO::Uncompress::Adapter::Bunzip2'=> '2.055',
7161 'IO::Uncompress::Adapter::Identity'=> '2.055',
7162 'IO::Uncompress::Adapter::Inflate'=> '2.055',
7163 'IO::Uncompress::AnyInflate'=> '2.055',
7164 'IO::Uncompress::AnyUncompress'=> '2.055',
7165 'IO::Uncompress::Base' => '2.055',
7166 'IO::Uncompress::Bunzip2'=> '2.055',
7167 'IO::Uncompress::Gunzip'=> '2.055',
7168 'IO::Uncompress::Inflate'=> '2.055',
7169 'IO::Uncompress::RawInflate'=> '2.055',
7170 'IO::Uncompress::Unzip' => '2.055',
7171 'Module::Build' => '0.4003',
7172 'Module::Build::Base' => '0.4003',
7173 'Module::Build::Compat' => '0.4003',
7174 'Module::Build::Config' => '0.4003',
7175 'Module::Build::Cookbook'=> '0.4003',
7176 'Module::Build::Dumper' => '0.4003',
7177 'Module::Build::ModuleInfo'=> '0.4003',
7178 'Module::Build::Notes' => '0.4003',
7179 'Module::Build::PPMMaker'=> '0.4003',
7180 'Module::Build::Platform::Amiga'=> '0.4003',
7181 'Module::Build::Platform::Default'=> '0.4003',
7182 'Module::Build::Platform::EBCDIC'=> '0.4003',
7183 'Module::Build::Platform::MPEiX'=> '0.4003',
7184 'Module::Build::Platform::MacOS'=> '0.4003',
7185 'Module::Build::Platform::RiscOS'=> '0.4003',
7186 'Module::Build::Platform::Unix'=> '0.4003',
7187 'Module::Build::Platform::VMS'=> '0.4003',
7188 'Module::Build::Platform::VOS'=> '0.4003',
7189 'Module::Build::Platform::Windows'=> '0.4003',
7190 'Module::Build::Platform::aix'=> '0.4003',
7191 'Module::Build::Platform::cygwin'=> '0.4003',
7192 'Module::Build::Platform::darwin'=> '0.4003',
7193 'Module::Build::Platform::os2'=> '0.4003',
7194 'Module::Build::PodParser'=> '0.4003',
7195 'Module::CoreList' => '2.71',
7196 'Module::CoreList::TieHashDelta'=> '2.71',
7197 'Module::Load::Conditional'=> '0.54',
7198 'Module::Metadata' => '1.000011',
7199 'Module::Pluggable' => '4.3',
7200 'Module::Pluggable::Object'=> '4.3',
7201 'Pod::Simple' => '3.23',
7202 'Pod::Simple::BlackBox' => '3.23',
7203 'Pod::Simple::Checker' => '3.23',
7204 'Pod::Simple::Debug' => '3.23',
7205 'Pod::Simple::DumpAsText'=> '3.23',
7206 'Pod::Simple::DumpAsXML'=> '3.23',
7207 'Pod::Simple::HTML' => '3.23',
7208 'Pod::Simple::HTMLBatch'=> '3.23',
7209 'Pod::Simple::LinkSection'=> '3.23',
7210 'Pod::Simple::Methody' => '3.23',
7211 'Pod::Simple::Progress' => '3.23',
7212 'Pod::Simple::PullParser'=> '3.23',
7213 'Pod::Simple::PullParserEndToken'=> '3.23',
7214 'Pod::Simple::PullParserStartToken'=> '3.23',
7215 'Pod::Simple::PullParserTextToken'=> '3.23',
7216 'Pod::Simple::PullParserToken'=> '3.23',
7217 'Pod::Simple::RTF' => '3.23',
7218 'Pod::Simple::Search' => '3.23',
7219 'Pod::Simple::SimpleTree'=> '3.23',
7220 'Pod::Simple::Text' => '3.23',
7221 'Pod::Simple::TextContent'=> '3.23',
7222 'Pod::Simple::TiedOutFH'=> '3.23',
7223 'Pod::Simple::Transcode'=> '3.23',
7224 'Pod::Simple::TranscodeDumb'=> '3.23',
7225 'Pod::Simple::TranscodeSmart'=> '3.23',
7226 'Pod::Simple::XHTML' => '3.23',
7227 'Pod::Simple::XMLOutStream'=> '3.23',
7228 'Socket' => '2.004',
7229 'Storable' => '2.38',
7230 'Sys::Syslog' => '0.31',
7231 'Term::ReadLine' => '1.10',
7232 'Text::Tabs' => '2012.0818',
7233 'Text::Wrap' => '2012.0818',
7234 'Time::Local' => '1.2300',
7235 'Unicode::UCD' => '0.45',
7236 'Win32' => '0.45',
7237 'Win32CORE' => '0.03',
7238 'XS::APItest' => '0.42',
7239 'inc::latest' => '0.4003',
7240 'perlfaq' => '5.0150041',
7241 're' => '0.22',
7242 },
7243 removed => {
7244 }
7245 },
a1484e43
FR
7246 5.017004 => {
7247 delta_from => 5.017003,
7248 changed => {
7249 'Archive::Tar' => '1.90',
7250 'Archive::Tar::Constant'=> '1.90',
7251 'Archive::Tar::File' => '1.90',
7252 'B' => '1.38',
7253 'B::Concise' => '0.93',
7254 'B::Deparse' => '1.17',
7255 'B::Xref' => '1.04',
7256 'CPANPLUS' => '0.9131',
7257 'CPANPLUS::Internals' => '0.9131',
7258 'CPANPLUS::Shell::Default'=> '0.9131',
7259 'DB_File' => '1.827',
7260 'Devel::Peek' => '1.10',
7261 'DynaLoader' => '1.16',
7262 'Errno' => '1.16',
7263 'ExtUtils::ParseXS' => '3.18',
7264 'ExtUtils::ParseXS::Constants'=> '3.18',
7265 'ExtUtils::ParseXS::CountLines'=> '3.18',
7266 'ExtUtils::ParseXS::Utilities'=> '3.18',
7267 'File::Copy' => '2.24',
7268 'File::Find' => '1.22',
7269 'IPC::Open3' => '1.13',
7270 'Locale::Codes' => '3.23',
7271 'Locale::Codes::Constants'=> '3.23',
7272 'Locale::Codes::Country'=> '3.23',
7273 'Locale::Codes::Country_Codes'=> '3.23',
7274 'Locale::Codes::Country_Retired'=> '3.23',
7275 'Locale::Codes::Currency'=> '3.23',
7276 'Locale::Codes::Currency_Codes'=> '3.23',
7277 'Locale::Codes::Currency_Retired'=> '3.23',
7278 'Locale::Codes::LangExt'=> '3.23',
7279 'Locale::Codes::LangExt_Codes'=> '3.23',
7280 'Locale::Codes::LangExt_Retired'=> '3.23',
7281 'Locale::Codes::LangFam'=> '3.23',
7282 'Locale::Codes::LangFam_Codes'=> '3.23',
7283 'Locale::Codes::LangFam_Retired'=> '3.23',
7284 'Locale::Codes::LangVar'=> '3.23',
7285 'Locale::Codes::LangVar_Codes'=> '3.23',
7286 'Locale::Codes::LangVar_Retired'=> '3.23',
7287 'Locale::Codes::Language'=> '3.23',
7288 'Locale::Codes::Language_Codes'=> '3.23',
7289 'Locale::Codes::Language_Retired'=> '3.23',
7290 'Locale::Codes::Script' => '3.23',
7291 'Locale::Codes::Script_Codes'=> '3.23',
7292 'Locale::Codes::Script_Retired'=> '3.23',
7293 'Locale::Country' => '3.23',
7294 'Locale::Currency' => '3.23',
7295 'Locale::Language' => '3.23',
7296 'Locale::Script' => '3.23',
7297 'Math::BigFloat::Trace' => '0.30',
7298 'Math::BigInt::Trace' => '0.30',
7299 'Module::CoreList' => '2.73',
7300 'Module::CoreList::TieHashDelta'=> '2.73',
7301 'Opcode' => '1.24',
7302 'Socket' => '2.006',
7303 'Storable' => '2.39',
7304 'Sys::Syslog' => '0.32',
7305 'Unicode::UCD' => '0.46',
7306 'XS::APItest' => '0.43',
7307 'bignum' => '0.30',
7308 'bigrat' => '0.30',
7309 'constant' => '1.24',
7310 'feature' => '1.30',
7311 'threads::shared' => '1.41',
7312 'version' => '0.9901',
7313 'warnings' => '1.14',
7314 },
7315 removed => {
7316 }
7317 },
03708946
FR
7318 5.017005 => {
7319 delta_from => 5.017004,
7320 changed => {
7321 'AutoLoader' => '5.73',
7322 'B' => '1.39',
7323 'B::Deparse' => '1.18',
7324 'CPANPLUS' => '0.9133',
7325 'CPANPLUS::Internals' => '0.9133',
7326 'CPANPLUS::Shell::Default'=> '0.9133',
7327 'Carp' => '1.27',
7328 'Carp::Heavy' => '1.27',
7329 'Data::Dumper' => '2.136',
7330 'Digest::SHA' => '5.72',
7331 'ExtUtils::CBuilder' => '0.280209',
7332 'ExtUtils::CBuilder::Base'=> '0.280209',
7333 'ExtUtils::CBuilder::Platform::Unix'=> '0.280209',
7334 'ExtUtils::CBuilder::Platform::VMS'=> '0.280209',
7335 'ExtUtils::CBuilder::Platform::Windows'=> '0.280209',
7336 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209',
7337 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209',
7338 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209',
7339 'ExtUtils::CBuilder::Platform::aix'=> '0.280209',
7340 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209',
7341 'ExtUtils::CBuilder::Platform::darwin'=> '0.280209',
7342 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209',
7343 'ExtUtils::CBuilder::Platform::os2'=> '0.280209',
7344 'File::Copy' => '2.25',
7345 'File::Glob' => '1.18',
7346 'HTTP::Tiny' => '0.024',
7347 'Module::CoreList' => '2.75',
7348 'Module::CoreList::TieHashDelta'=> '2.75',
7349 'PerlIO::encoding' => '0.16',
7350 'Unicode::Collate' => '0.90',
7351 'Unicode::Collate::Locale'=> '0.90',
7352 'Unicode::Normalize' => '1.15',
7353 'Win32CORE' => '0.04',
7354 'XS::APItest' => '0.44',
7355 'attributes' => '0.21',
7356 'bigint' => '0.31',
7357 'bignum' => '0.31',
7358 'bigrat' => '0.31',
7359 'feature' => '1.31',
7360 'threads::shared' => '1.42',
7361 'warnings' => '1.15',
7362 },
7363 removed => {
7364 }
7365 },
e498bd59
RS
7366 5.017006 => {
7367 delta_from => 5.017005,
7368 changed => {
7369 'B' => '1.40',
7370 'B::Concise' => '0.94',
7371 'B::Deparse' => '1.19',
7372 'B::Xref' => '1.05',
7373 'CGI' => '3.63',
7374 'CGI::Util' => '3.62',
7375 'CPAN' => '1.99_51',
7376 'CPANPLUS::Dist::Build' => '0.64',
7377 'CPANPLUS::Dist::Build::Constants'=> '0.64',
7378 'Carp' => '1.28',
7379 'Carp::Heavy' => '1.28',
7380 'Compress::Raw::Bzip2' => '2.058',
7381 'Compress::Raw::Zlib' => '2.058',
7382 'Compress::Zlib' => '2.058',
7383 'Data::Dumper' => '2.137',
7384 'Digest::SHA' => '5.73',
7385 'DynaLoader' => '1.17',
7386 'Env' => '1.04',
7387 'Errno' => '1.17',
7388 'ExtUtils::Manifest' => '1.62',
7389 'ExtUtils::Typemaps' => '3.18',
7390 'ExtUtils::Typemaps::Cmd'=> '3.18',
7391 'ExtUtils::Typemaps::InputMap'=> '3.18',
7392 'ExtUtils::Typemaps::OutputMap'=> '3.18',
7393 'ExtUtils::Typemaps::Type'=> '3.18',
7394 'Fatal' => '2.13',
7395 'File::Find' => '1.23',
7396 'Hash::Util' => '0.13',
7397 'IO::Compress::Adapter::Bzip2'=> '2.058',
7398 'IO::Compress::Adapter::Deflate'=> '2.058',
7399 'IO::Compress::Adapter::Identity'=> '2.058',
7400 'IO::Compress::Base' => '2.058',
7401 'IO::Compress::Base::Common'=> '2.058',
7402 'IO::Compress::Bzip2' => '2.058',
7403 'IO::Compress::Deflate' => '2.058',
7404 'IO::Compress::Gzip' => '2.058',
7405 'IO::Compress::Gzip::Constants'=> '2.058',
7406 'IO::Compress::RawDeflate'=> '2.058',
7407 'IO::Compress::Zip' => '2.058',
7408 'IO::Compress::Zip::Constants'=> '2.058',
7409 'IO::Compress::Zlib::Constants'=> '2.058',
7410 'IO::Compress::Zlib::Extra'=> '2.058',
7411 'IO::Uncompress::Adapter::Bunzip2'=> '2.058',
7412 'IO::Uncompress::Adapter::Identity'=> '2.058',
7413 'IO::Uncompress::Adapter::Inflate'=> '2.058',
7414 'IO::Uncompress::AnyInflate'=> '2.058',
7415 'IO::Uncompress::AnyUncompress'=> '2.058',
7416 'IO::Uncompress::Base' => '2.058',
7417 'IO::Uncompress::Bunzip2'=> '2.058',
7418 'IO::Uncompress::Gunzip'=> '2.058',
7419 'IO::Uncompress::Inflate'=> '2.058',
7420 'IO::Uncompress::RawInflate'=> '2.058',
7421 'IO::Uncompress::Unzip' => '2.058',
7422 'Module::CoreList' => '2.78',
7423 'Module::CoreList::TieHashDelta'=> '2.77',
7424 'Module::Pluggable' => '4.5',
7425 'Module::Pluggable::Object'=> '4.5',
7426 'Opcode' => '1.25',
7427 'Sys::Hostname' => '1.17',
7428 'Term::UI' => '0.32',
7429 'Thread::Queue' => '3.01',
7430 'Tie::Hash::NamedCapture'=> '0.09',
7431 'Unicode::Collate' => '0.93',
7432 'Unicode::Collate::CJK::Korean'=> '0.93',
7433 'Unicode::Collate::Locale'=> '0.93',
7434 'Unicode::Normalize' => '1.16',
7435 'Unicode::UCD' => '0.47',
7436 'XS::APItest' => '0.46',
7437 '_charnames' => '1.33',
7438 'autodie' => '2.13',
7439 'autodie::exception' => '2.13',
7440 'autodie::exception::system'=> '2.13',
7441 'autodie::hints' => '2.13',
7442 'charnames' => '1.33',
7443 're' => '0.23',
7444 },
7445 removed => {
7446 }
7447 },
fe03d33b
DR
7448 5.017007 => {
7449 delta_from => 5.017006,
7450 changed => {
7451 'B' => '1.41',
7452 'CPANPLUS::Dist::Build' => '0.68',
7453 'CPANPLUS::Dist::Build::Constants'=> '0.68',
7454 'Compress::Raw::Bzip2' => '2.059',
7455 'Compress::Raw::Zlib' => '2.059',
7456 'Compress::Zlib' => '2.059',
7457 'Cwd' => '3.39_03',
7458 'Data::Dumper' => '2.139',
7459 'Devel::Peek' => '1.11',
7460 'Digest::SHA' => '5.80',
7461 'DynaLoader' => '1.18',
7462 'English' => '1.06',
7463 'Errno' => '1.18',
7464 'ExtUtils::Command::MM' => '6.64',
7465 'ExtUtils::Liblist' => '6.64',
7466 'ExtUtils::Liblist::Kid'=> '6.64',
7467 'ExtUtils::MM' => '6.64',
7468 'ExtUtils::MM_AIX' => '6.64',
7469 'ExtUtils::MM_Any' => '6.64',
7470 'ExtUtils::MM_BeOS' => '6.64',
7471 'ExtUtils::MM_Cygwin' => '6.64',
7472 'ExtUtils::MM_DOS' => '6.64',
7473 'ExtUtils::MM_Darwin' => '6.64',
7474 'ExtUtils::MM_MacOS' => '6.64',
7475 'ExtUtils::MM_NW5' => '6.64',
7476 'ExtUtils::MM_OS2' => '6.64',
7477 'ExtUtils::MM_QNX' => '6.64',
7478 'ExtUtils::MM_UWIN' => '6.64',
7479 'ExtUtils::MM_Unix' => '6.64',
7480 'ExtUtils::MM_VMS' => '6.64',
7481 'ExtUtils::MM_VOS' => '6.64',
7482 'ExtUtils::MM_Win32' => '6.64',
7483 'ExtUtils::MM_Win95' => '6.64',
7484 'ExtUtils::MY' => '6.64',
7485 'ExtUtils::MakeMaker' => '6.64',
7486 'ExtUtils::MakeMaker::Config'=> '6.64',
7487 'ExtUtils::Mkbootstrap' => '6.64',
7488 'ExtUtils::Mksymlists' => '6.64',
7489 'ExtUtils::testlib' => '6.64',
7490 'File::DosGlob' => '1.09',
7491 'File::Glob' => '1.19',
7492 'GDBM_File' => '1.15',
7493 'IO::Compress::Adapter::Bzip2'=> '2.059',
7494 'IO::Compress::Adapter::Deflate'=> '2.059',
7495 'IO::Compress::Adapter::Identity'=> '2.059',
7496 'IO::Compress::Base' => '2.059',
7497 'IO::Compress::Base::Common'=> '2.059',
7498 'IO::Compress::Bzip2' => '2.059',
7499 'IO::Compress::Deflate' => '2.059',
7500 'IO::Compress::Gzip' => '2.059',
7501 'IO::Compress::Gzip::Constants'=> '2.059',
7502 'IO::Compress::RawDeflate'=> '2.059',
7503 'IO::Compress::Zip' => '2.059',
7504 'IO::Compress::Zip::Constants'=> '2.059',
7505 'IO::Compress::Zlib::Constants'=> '2.059',
7506 'IO::Compress::Zlib::Extra'=> '2.059',
7507 'IO::Uncompress::Adapter::Bunzip2'=> '2.059',
7508 'IO::Uncompress::Adapter::Identity'=> '2.059',
7509 'IO::Uncompress::Adapter::Inflate'=> '2.059',
7510 'IO::Uncompress::AnyInflate'=> '2.059',
7511 'IO::Uncompress::AnyUncompress'=> '2.059',
7512 'IO::Uncompress::Base' => '2.059',
7513 'IO::Uncompress::Bunzip2'=> '2.059',
7514 'IO::Uncompress::Gunzip'=> '2.059',
7515 'IO::Uncompress::Inflate'=> '2.059',
7516 'IO::Uncompress::RawInflate'=> '2.059',
7517 'IO::Uncompress::Unzip' => '2.059',
7518 'List::Util' => '1.26',
7519 'List::Util::XS' => '1.26',
7520 'Locale::Codes' => '3.24',
7521 'Locale::Codes::Constants'=> '3.24',
7522 'Locale::Codes::Country'=> '3.24',
7523 'Locale::Codes::Country_Codes'=> '3.24',
7524 'Locale::Codes::Country_Retired'=> '3.24',
7525 'Locale::Codes::Currency'=> '3.24',
7526 'Locale::Codes::Currency_Codes'=> '3.24',
7527 'Locale::Codes::Currency_Retired'=> '3.24',
7528 'Locale::Codes::LangExt'=> '3.24',
7529 'Locale::Codes::LangExt_Codes'=> '3.24',
7530 'Locale::Codes::LangExt_Retired'=> '3.24',
7531 'Locale::Codes::LangFam'=> '3.24',
7532 'Locale::Codes::LangFam_Codes'=> '3.24',
7533 'Locale::Codes::LangFam_Retired'=> '3.24',
7534 'Locale::Codes::LangVar'=> '3.24',
7535 'Locale::Codes::LangVar_Codes'=> '3.24',
7536 'Locale::Codes::LangVar_Retired'=> '3.24',
7537 'Locale::Codes::Language'=> '3.24',
7538 'Locale::Codes::Language_Codes'=> '3.24',
7539 'Locale::Codes::Language_Retired'=> '3.24',
7540 'Locale::Codes::Script' => '3.24',
7541 'Locale::Codes::Script_Codes'=> '3.24',
7542 'Locale::Codes::Script_Retired'=> '3.24',
7543 'Locale::Country' => '3.24',
7544 'Locale::Currency' => '3.24',
7545 'Locale::Language' => '3.24',
7546 'Locale::Maketext' => '1.23',
7547 'Locale::Script' => '3.24',
7548 'Module::CoreList' => '2.79',
dd4b1c75 7549 'Module::CoreList::TieHashDelta'=> '2.79',
fe03d33b
DR
7550 'POSIX' => '1.32',
7551 'Scalar::Util' => '1.26',
7552 'Socket' => '2.006_001',
7553 'Storable' => '2.40',
7554 'Term::ReadLine' => '1.11',
7555 'Unicode::Collate' => '0.96',
7556 'Unicode::Collate::CJK::Stroke'=> '0.94',
7557 'Unicode::Collate::CJK::Zhuyin'=> '0.94',
7558 'Unicode::Collate::Locale'=> '0.96',
7559 'XS::APItest' => '0.48',
7560 'XS::Typemap' => '0.09',
7561 '_charnames' => '1.34',
7562 'charnames' => '1.34',
7563 'feature' => '1.32',
7564 'mro' => '1.10',
7565 'sigtrap' => '1.07',
7566 'sort' => '2.02',
7567 },
7568 removed => {
7569 }
7570 },
dd4b1c75
AC
7571 5.017008 => {
7572 delta_from => 5.017007,
7573 changed => {
7574 'Archive::Extract' => '0.62',
7575 'B' => '1.42',
7576 'B::Concise' => '0.95',
7577 'Compress::Raw::Bzip2' => '2.060',
7578 'Compress::Raw::Zlib' => '2.060',
7579 'Compress::Zlib' => '2.060',
7580 'Cwd' => '3.40',
7581 'Data::Dumper' => '2.141',
7582 'Digest::SHA' => '5.81',
7583 'ExtUtils::Install' => '1.59',
7584 'File::Fetch' => '0.38',
7585 'File::Path' => '2.09',
7586 'File::Spec' => '3.40',
7587 'File::Spec::Cygwin' => '3.40',
7588 'File::Spec::Epoc' => '3.40',
7589 'File::Spec::Functions' => '3.40',
7590 'File::Spec::Mac' => '3.40',
7591 'File::Spec::OS2' => '3.40',
7592 'File::Spec::Unix' => '3.40',
7593 'File::Spec::VMS' => '3.40',
7594 'File::Spec::Win32' => '3.40',
7595 'HTTP::Tiny' => '0.025',
7596 'Hash::Util' => '0.14',
7597 'I18N::LangTags' => '0.39',
7598 'I18N::LangTags::List' => '0.39',
7599 'I18N::Langinfo' => '0.09',
7600 'IO' => '1.26',
7601 'IO::Compress::Adapter::Bzip2'=> '2.060',
7602 'IO::Compress::Adapter::Deflate'=> '2.060',
7603 'IO::Compress::Adapter::Identity'=> '2.060',
7604 'IO::Compress::Base' => '2.060',
7605 'IO::Compress::Base::Common'=> '2.060',
7606 'IO::Compress::Bzip2' => '2.060',
7607 'IO::Compress::Deflate' => '2.060',
7608 'IO::Compress::Gzip' => '2.060',
7609 'IO::Compress::Gzip::Constants'=> '2.060',
7610 'IO::Compress::RawDeflate'=> '2.060',
7611 'IO::Compress::Zip' => '2.060',
7612 'IO::Compress::Zip::Constants'=> '2.060',
7613 'IO::Compress::Zlib::Constants'=> '2.060',
7614 'IO::Compress::Zlib::Extra'=> '2.060',
7615 'IO::Uncompress::Adapter::Bunzip2'=> '2.060',
7616 'IO::Uncompress::Adapter::Identity'=> '2.060',
7617 'IO::Uncompress::Adapter::Inflate'=> '2.060',
7618 'IO::Uncompress::AnyInflate'=> '2.060',
7619 'IO::Uncompress::AnyUncompress'=> '2.060',
7620 'IO::Uncompress::Base' => '2.060',
7621 'IO::Uncompress::Bunzip2'=> '2.060',
7622 'IO::Uncompress::Gunzip'=> '2.060',
7623 'IO::Uncompress::Inflate'=> '2.060',
7624 'IO::Uncompress::RawInflate'=> '2.060',
7625 'IO::Uncompress::Unzip' => '2.060',
7626 'List::Util' => '1.27',
7627 'List::Util::XS' => '1.27',
7628 'Module::CoreList' => '2.80',
7629 'Module::CoreList::TieHashDelta'=> '2.80',
7630 'Pod::Html' => '1.17',
7631 'Pod::LaTeX' => '0.61',
7632 'Pod::Man' => '2.27',
7633 'Pod::Text' => '3.17',
7634 'Pod::Text::Color' => '2.07',
7635 'Pod::Text::Overstrike' => '2.05',
7636 'Pod::Text::Termcap' => '2.07',
7637 'Safe' => '2.34',
7638 'Scalar::Util' => '1.27',
7639 'Socket' => '2.009',
7640 'Term::ANSIColor' => '4.02',
7641 'Test' => '1.26',
7642 'Unicode::Collate' => '0.97',
7643 'XS::APItest' => '0.51',
7644 'XS::Typemap' => '0.10',
7645 '_charnames' => '1.35',
7646 'charnames' => '1.35',
7647 'constant' => '1.25',
7648 'diagnostics' => '1.31',
7649 'threads::shared' => '1.43',
7650 'warnings' => '1.16',
7651 },
7652 removed => {
7653 }
7654 },
52f6865c
CBW
7655 5.017009 => {
7656 delta_from => 5.017008,
7657 changed => {
7658 'App::Cpan' => '1.60_02',
7659 'App::Prove' => '3.26',
7660 'App::Prove::State' => '3.26',
7661 'App::Prove::State::Result'=> '3.26',
7662 'App::Prove::State::Result::Test'=> '3.26',
7663 'Archive::Extract' => '0.68',
7664 'Attribute::Handlers' => '0.94',
7665 'B::Lint' => '1.17',
7666 'B::Lint::Debug' => '1.17',
7667 'Benchmark' => '1.14',
7668 'CPAN' => '2.00',
7669 'CPAN::Distribution' => '2.00',
7670 'CPAN::FirstTime' => '5.5304',
7671 'CPAN::Nox' => '5.5001',
7672 'CPANPLUS' => '0.9135',
7673 'CPANPLUS::Backend' => '0.9135',
7674 'CPANPLUS::Backend::RV' => '0.9135',
7675 'CPANPLUS::Config' => '0.9135',
7676 'CPANPLUS::Config::HomeEnv'=> '0.9135',
7677 'CPANPLUS::Configure' => '0.9135',
7678 'CPANPLUS::Configure::Setup'=> '0.9135',
7679 'CPANPLUS::Dist' => '0.9135',
7680 'CPANPLUS::Dist::Autobundle'=> '0.9135',
7681 'CPANPLUS::Dist::Base' => '0.9135',
7682 'CPANPLUS::Dist::Build' => '0.70',
7683 'CPANPLUS::Dist::Build::Constants'=> '0.70',
7684 'CPANPLUS::Dist::MM' => '0.9135',
7685 'CPANPLUS::Dist::Sample'=> '0.9135',
7686 'CPANPLUS::Error' => '0.9135',
7687 'CPANPLUS::Internals' => '0.9135',
7688 'CPANPLUS::Internals::Constants'=> '0.9135',
7689 'CPANPLUS::Internals::Constants::Report'=> '0.9135',
7690 'CPANPLUS::Internals::Extract'=> '0.9135',
7691 'CPANPLUS::Internals::Fetch'=> '0.9135',
7692 'CPANPLUS::Internals::Report'=> '0.9135',
7693 'CPANPLUS::Internals::Search'=> '0.9135',
7694 'CPANPLUS::Internals::Source'=> '0.9135',
7695 'CPANPLUS::Internals::Source::Memory'=> '0.9135',
7696 'CPANPLUS::Internals::Source::SQLite'=> '0.9135',
7697 'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135',
7698 'CPANPLUS::Internals::Utils'=> '0.9135',
7699 'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135',
7700 'CPANPLUS::Module' => '0.9135',
7701 'CPANPLUS::Module::Author'=> '0.9135',
7702 'CPANPLUS::Module::Author::Fake'=> '0.9135',
7703 'CPANPLUS::Module::Checksums'=> '0.9135',
7704 'CPANPLUS::Module::Fake'=> '0.9135',
7705 'CPANPLUS::Module::Signature'=> '0.9135',
7706 'CPANPLUS::Selfupdate' => '0.9135',
7707 'CPANPLUS::Shell' => '0.9135',
7708 'CPANPLUS::Shell::Classic'=> '0.9135',
7709 'CPANPLUS::Shell::Default'=> '0.9135',
7710 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135',
7711 'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135',
7712 'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135',
cc423833 7713 'Config' => '5.017009',
52f6865c
CBW
7714 'Config::Perl::V' => '0.17',
7715 'DBM_Filter' => '0.05',
7716 'Data::Dumper' => '2.142',
7717 'Digest::SHA' => '5.82',
7718 'Encode' => '2.48',
7719 'ExtUtils::Installed' => '1.999003',
7720 'ExtUtils::Manifest' => '1.63',
7721 'ExtUtils::ParseXS::Utilities'=> '3.19',
7722 'ExtUtils::Typemaps' => '3.19',
7723 'File::CheckTree' => '4.42',
7724 'File::DosGlob' => '1.10',
7725 'File::Temp' => '0.22_90',
7726 'Filter::Simple' => '0.89',
7727 'IO' => '1.27',
7728 'Log::Message' => '0.06',
7729 'Log::Message::Config' => '0.06',
7730 'Log::Message::Handlers'=> '0.06',
7731 'Log::Message::Item' => '0.06',
7732 'Log::Message::Simple' => '0.10',
7733 'Math::BigInt' => '1.999',
7734 'Module::CoreList' => '2.82',
7735 'Module::CoreList::TieHashDelta'=> '2.82',
7736 'Module::Load' => '0.24',
7737 'Module::Pluggable' => '4.6',
7738 'Module::Pluggable::Object'=> '4.6',
7739 'Object::Accessor' => '0.46',
7740 'PerlIO::scalar' => '0.16',
7741 'Pod::Checker' => '1.60',
7742 'Pod::Find' => '1.60',
7743 'Pod::Html' => '1.18',
7744 'Pod::InputObjects' => '1.60',
7745 'Pod::ParseUtils' => '1.60',
7746 'Pod::Parser' => '1.60',
7747 'Pod::Perldoc' => '3.19',
7748 'Pod::Perldoc::BaseTo' => '3.19',
7749 'Pod::Perldoc::GetOptsOO'=> '3.19',
7750 'Pod::Perldoc::ToANSI' => '3.19',
7751 'Pod::Perldoc::ToChecker'=> '3.19',
7752 'Pod::Perldoc::ToMan' => '3.19',
7753 'Pod::Perldoc::ToNroff' => '3.19',
7754 'Pod::Perldoc::ToPod' => '3.19',
7755 'Pod::Perldoc::ToRtf' => '3.19',
7756 'Pod::Perldoc::ToTerm' => '3.19',
7757 'Pod::Perldoc::ToText' => '3.19',
7758 'Pod::Perldoc::ToTk' => '3.19',
7759 'Pod::Perldoc::ToXml' => '3.19',
7760 'Pod::PlainText' => '2.06',
7761 'Pod::Select' => '1.60',
7762 'Pod::Usage' => '1.61',
7763 'SelfLoader' => '1.21',
7764 'TAP::Base' => '3.26',
7765 'TAP::Formatter::Base' => '3.26',
7766 'TAP::Formatter::Color' => '3.26',
7767 'TAP::Formatter::Console'=> '3.26',
7768 'TAP::Formatter::Console::ParallelSession'=> '3.26',
7769 'TAP::Formatter::Console::Session'=> '3.26',
7770 'TAP::Formatter::File' => '3.26',
7771 'TAP::Formatter::File::Session'=> '3.26',
7772 'TAP::Formatter::Session'=> '3.26',
7773 'TAP::Harness' => '3.26',
7774 'TAP::Object' => '3.26',
7775 'TAP::Parser' => '3.26',
7776 'TAP::Parser::Aggregator'=> '3.26',
7777 'TAP::Parser::Grammar' => '3.26',
7778 'TAP::Parser::Iterator' => '3.26',
7779 'TAP::Parser::Iterator::Array'=> '3.26',
7780 'TAP::Parser::Iterator::Process'=> '3.26',
7781 'TAP::Parser::Iterator::Stream'=> '3.26',
7782 'TAP::Parser::IteratorFactory'=> '3.26',
7783 'TAP::Parser::Multiplexer'=> '3.26',
7784 'TAP::Parser::Result' => '3.26',
7785 'TAP::Parser::Result::Bailout'=> '3.26',
7786 'TAP::Parser::Result::Comment'=> '3.26',
7787 'TAP::Parser::Result::Plan'=> '3.26',
7788 'TAP::Parser::Result::Pragma'=> '3.26',
7789 'TAP::Parser::Result::Test'=> '3.26',
7790 'TAP::Parser::Result::Unknown'=> '3.26',
7791 'TAP::Parser::Result::Version'=> '3.26',
7792 'TAP::Parser::Result::YAML'=> '3.26',
7793 'TAP::Parser::ResultFactory'=> '3.26',
7794 'TAP::Parser::Scheduler'=> '3.26',
7795 'TAP::Parser::Scheduler::Job'=> '3.26',
7796 'TAP::Parser::Scheduler::Spinner'=> '3.26',
7797 'TAP::Parser::Source' => '3.26',
7798 'TAP::Parser::SourceHandler'=> '3.26',
7799 'TAP::Parser::SourceHandler::Executable'=> '3.26',
7800 'TAP::Parser::SourceHandler::File'=> '3.26',
7801 'TAP::Parser::SourceHandler::Handle'=> '3.26',
7802 'TAP::Parser::SourceHandler::Perl'=> '3.26',
7803 'TAP::Parser::SourceHandler::RawTAP'=> '3.26',
7804 'TAP::Parser::Utils' => '3.26',
7805 'TAP::Parser::YAMLish::Reader'=> '3.26',
7806 'TAP::Parser::YAMLish::Writer'=> '3.26',
7807 'Term::UI' => '0.34',
7808 'Test::Harness' => '3.26',
7809 'Text::Soundex' => '3.04',
7810 'Thread::Queue' => '3.02',
7811 'Unicode::UCD' => '0.50',
7812 'Win32' => '0.46',
7813 'Win32API::File' => '0.1201',
7814 '_charnames' => '1.36',
7815 'arybase' => '0.06',
7816 'bigint' => '0.32',
7817 'bignum' => '0.32',
7818 'charnames' => '1.36',
7819 'filetest' => '1.03',
7820 'locale' => '1.02',
7821 'overload' => '1.21',
7822 'warnings' => '1.17',
7823 },
7824 removed => {
7825 }
7826 },
fd3b4111
MM
7827 5.017010 => {
7828 delta_from => 5.017009,
7829 changed => {
7830 'Benchmark' => '1.15',
cc423833 7831 'Config' => '5.017009',
fd3b4111
MM
7832 'Data::Dumper' => '2.145',
7833 'Digest::SHA' => '5.84',
7834 'Encode' => '2.49',
7835 'ExtUtils::Command::MM' => '6.65_01',
7836 'ExtUtils::Liblist' => '6.65_01',
7837 'ExtUtils::Liblist::Kid'=> '6.65_01',
7838 'ExtUtils::MM' => '6.65_01',
7839 'ExtUtils::MM_AIX' => '6.65_01',
7840 'ExtUtils::MM_Any' => '6.65_01',
7841 'ExtUtils::MM_BeOS' => '6.65_01',
7842 'ExtUtils::MM_Cygwin' => '6.65_01',
7843 'ExtUtils::MM_DOS' => '6.65_01',
7844 'ExtUtils::MM_Darwin' => '6.65_01',
7845 'ExtUtils::MM_MacOS' => '6.65_01',
7846 'ExtUtils::MM_NW5' => '6.65_01',
7847 'ExtUtils::MM_OS2' => '6.65_01',
7848 'ExtUtils::MM_QNX' => '6.65_01',
7849 'ExtUtils::MM_UWIN' => '6.65_01',
7850 'ExtUtils::MM_Unix' => '6.65_01',
7851 'ExtUtils::MM_VMS' => '6.65_01',
7852 'ExtUtils::MM_VOS' => '6.65_01',
7853 'ExtUtils::MM_Win32' => '6.65_01',
7854 'ExtUtils::MM_Win95' => '6.65_01',
7855 'ExtUtils::MY' => '6.65_01',
7856 'ExtUtils::MakeMaker' => '6.65_01',
7857 'ExtUtils::MakeMaker::Config'=> '6.65_01',
7858 'ExtUtils::Mkbootstrap' => '6.65_01',
7859 'ExtUtils::Mksymlists' => '6.65_01',
7860 'ExtUtils::testlib' => '6.65_01',
7861 'File::Copy' => '2.26',
7862 'File::Temp' => '0.23',
7863 'Getopt::Long' => '2.39',
7864 'Hash::Util' => '0.15',
7865 'I18N::Langinfo' => '0.10',
7866 'IPC::Cmd' => '0.80',
7867 'JSON::PP' => '2.27202',
7868 'Locale::Codes' => '3.25',
7869 'Locale::Codes::Constants'=> '3.25',
7870 'Locale::Codes::Country'=> '3.25',
7871 'Locale::Codes::Country_Codes'=> '3.25',
7872 'Locale::Codes::Country_Retired'=> '3.25',
7873 'Locale::Codes::Currency'=> '3.25',
7874 'Locale::Codes::Currency_Codes'=> '3.25',
7875 'Locale::Codes::Currency_Retired'=> '3.25',
7876 'Locale::Codes::LangExt'=> '3.25',
7877 'Locale::Codes::LangExt_Codes'=> '3.25',
7878 'Locale::Codes::LangExt_Retired'=> '3.25',
7879 'Locale::Codes::LangFam'=> '3.25',
7880 'Locale::Codes::LangFam_Codes'=> '3.25',
7881 'Locale::Codes::LangFam_Retired'=> '3.25',
7882 'Locale::Codes::LangVar'=> '3.25',
7883 'Locale::Codes::LangVar_Codes'=> '3.25',
7884 'Locale::Codes::LangVar_Retired'=> '3.25',
7885 'Locale::Codes::Language'=> '3.25',
7886 'Locale::Codes::Language_Codes'=> '3.25',
7887 'Locale::Codes::Language_Retired'=> '3.25',
7888 'Locale::Codes::Script' => '3.25',
7889 'Locale::Codes::Script_Codes'=> '3.25',
7890 'Locale::Codes::Script_Retired'=> '3.25',
7891 'Locale::Country' => '3.25',
7892 'Locale::Currency' => '3.25',
7893 'Locale::Language' => '3.25',
7894 'Locale::Script' => '3.25',
7895 'Math::BigFloat' => '1.998',
7896 'Math::BigFloat::Trace' => '0.32',
7897 'Math::BigInt' => '1.9991',
7898 'Math::BigInt::CalcEmu' => '1.998',
7899 'Math::BigInt::Trace' => '0.32',
7900 'Math::BigRat' => '0.2604',
7901 'Module::CoreList' => '2.84',
7902 'Module::CoreList::TieHashDelta'=> '2.84',
7903 'Module::Pluggable' => '4.7',
7904 'Net::Ping' => '2.41',
7905 'Perl::OSType' => '1.003',
7906 'Pod::Simple' => '3.26',
7907 'Pod::Simple::BlackBox' => '3.26',
7908 'Pod::Simple::Checker' => '3.26',
7909 'Pod::Simple::Debug' => '3.26',
7910 'Pod::Simple::DumpAsText'=> '3.26',
7911 'Pod::Simple::DumpAsXML'=> '3.26',
7912 'Pod::Simple::HTML' => '3.26',
7913 'Pod::Simple::HTMLBatch'=> '3.26',
7914 'Pod::Simple::LinkSection'=> '3.26',
7915 'Pod::Simple::Methody' => '3.26',
7916 'Pod::Simple::Progress' => '3.26',
7917 'Pod::Simple::PullParser'=> '3.26',
7918 'Pod::Simple::PullParserEndToken'=> '3.26',
7919 'Pod::Simple::PullParserStartToken'=> '3.26',
7920 'Pod::Simple::PullParserTextToken'=> '3.26',
7921 'Pod::Simple::PullParserToken'=> '3.26',
7922 'Pod::Simple::RTF' => '3.26',
7923 'Pod::Simple::Search' => '3.26',
7924 'Pod::Simple::SimpleTree'=> '3.26',
7925 'Pod::Simple::Text' => '3.26',
7926 'Pod::Simple::TextContent'=> '3.26',
7927 'Pod::Simple::TiedOutFH'=> '3.26',
7928 'Pod::Simple::Transcode'=> '3.26',
7929 'Pod::Simple::TranscodeDumb'=> '3.26',
7930 'Pod::Simple::TranscodeSmart'=> '3.26',
7931 'Pod::Simple::XHTML' => '3.26',
7932 'Pod::Simple::XMLOutStream'=> '3.26',
7933 'Safe' => '2.35',
7934 'Term::ReadLine' => '1.12',
7935 'Text::ParseWords' => '3.28',
7936 'Tie::File' => '0.99',
7937 'Unicode::UCD' => '0.51',
7938 'Win32' => '0.47',
7939 'bigint' => '0.33',
7940 'bignum' => '0.33',
7941 'bigrat' => '0.33',
7942 'constant' => '1.27',
7943 'perlfaq' => '5.0150042',
7944 'version' => '0.9902',
7945 },
7946 removed => {
7947 }
7948 },
e55f48ec
RS
7949 5.017011 => {
7950 delta_from => 5.017010,
7951 changed => {
7952 'App::Cpan' => '1.61',
7953 'B::Deparse' => '1.20',
cc423833 7954 'Config' => '5.017009',
e55f48ec
RS
7955 'Exporter' => '5.68',
7956 'Exporter::Heavy' => '5.68',
7957 'ExtUtils::CBuilder' => '0.280210',
7958 'ExtUtils::Command::MM' => '6.66',
7959 'ExtUtils::Liblist' => '6.66',
7960 'ExtUtils::Liblist::Kid'=> '6.66',
7961 'ExtUtils::MM' => '6.66',
7962 'ExtUtils::MM_AIX' => '6.66',
7963 'ExtUtils::MM_Any' => '6.66',
7964 'ExtUtils::MM_BeOS' => '6.66',
7965 'ExtUtils::MM_Cygwin' => '6.66',
7966 'ExtUtils::MM_DOS' => '6.66',
7967 'ExtUtils::MM_Darwin' => '6.66',
7968 'ExtUtils::MM_MacOS' => '6.66',
7969 'ExtUtils::MM_NW5' => '6.66',
7970 'ExtUtils::MM_OS2' => '6.66',
7971 'ExtUtils::MM_QNX' => '6.66',
7972 'ExtUtils::MM_UWIN' => '6.66',
7973 'ExtUtils::MM_Unix' => '6.66',
7974 'ExtUtils::MM_VMS' => '6.66',
7975 'ExtUtils::MM_VOS' => '6.66',
7976 'ExtUtils::MM_Win32' => '6.66',
7977 'ExtUtils::MM_Win95' => '6.66',
7978 'ExtUtils::MY' => '6.66',
7979 'ExtUtils::MakeMaker' => '6.66',
7980 'ExtUtils::MakeMaker::Config'=> '6.66',
7981 'ExtUtils::Mkbootstrap' => '6.66',
7982 'ExtUtils::Mksymlists' => '6.66',
7983 'ExtUtils::testlib' => '6.66',
7984 'File::Glob' => '1.20',
7985 'IO' => '1.28',
7986 'Module::CoreList' => '2.87',
7987 'Module::CoreList::TieHashDelta'=> '2.87',
7988 'Storable' => '2.41',
7989 'bigint' => '0.34',
7990 'mro' => '1.11',
7991 'overload' => '1.22',
7992 'warnings' => '1.18',
7993 },
7994 removed => {
7995 }
7996 },
d4d6c558
RS
7997 5.018000 => {
7998 delta_from => 5.017011,
7999 changed => {
8000 'Carp' => '1.29',
8001 'Carp::Heavy' => '1.29',
cc423833 8002 'Config' => '5.018000',
d4d6c558
RS
8003 'Hash::Util' => '0.16',
8004 'IO::Handle' => '1.34',
8005 'IO::Socket' => '1.36',
058ce27e
RS
8006 'Module::CoreList' => '2.89',
8007 'Module::CoreList::TieHashDelta'=> '2.89',
3b95efe6
RS
8008 'Pod::Simple' => '3.28',
8009 'Pod::Simple::BlackBox' => '3.28',
8010 'Pod::Simple::Checker' => '3.28',
8011 'Pod::Simple::Debug' => '3.28',
8012 'Pod::Simple::DumpAsText'=> '3.28',
8013 'Pod::Simple::DumpAsXML'=> '3.28',
8014 'Pod::Simple::HTML' => '3.28',
8015 'Pod::Simple::HTMLBatch'=> '3.28',
8016 'Pod::Simple::LinkSection'=> '3.28',
8017 'Pod::Simple::Methody' => '3.28',
8018 'Pod::Simple::Progress' => '3.28',
8019 'Pod::Simple::PullParser'=> '3.28',
8020 'Pod::Simple::PullParserEndToken'=> '3.28',
8021 'Pod::Simple::PullParserStartToken'=> '3.28',
8022 'Pod::Simple::PullParserTextToken'=> '3.28',
8023 'Pod::Simple::PullParserToken'=> '3.28',
8024 'Pod::Simple::RTF' => '3.28',
8025 'Pod::Simple::Search' => '3.28',
8026 'Pod::Simple::SimpleTree'=> '3.28',
8027 'Pod::Simple::Text' => '3.28',
8028 'Pod::Simple::TextContent'=> '3.28',
8029 'Pod::Simple::TiedOutFH'=> '3.28',
8030 'Pod::Simple::Transcode'=> '3.28',
8031 'Pod::Simple::TranscodeDumb'=> '3.28',
8032 'Pod::Simple::TranscodeSmart'=> '3.28',
8033 'Pod::Simple::XHTML' => '3.28',
8034 'Pod::Simple::XMLOutStream'=> '3.28',
d4d6c558
RS
8035 },
8036 removed => {
8037 }
8038 },
ba4dd7ef
RS
8039 5.018001 => {
8040 delta_from => 5.018000,
8041 changed => {
8042 'B' => '1.42_01',
8043 'Config' => '5.018001',
8044 'Digest::SHA' => '5.84_01',
8045 'Module::CoreList' => '2.96',
8046 'Module::CoreList::TieHashDelta'=> '2.96',
8047 'Module::CoreList::Utils'=> '2.96',
8048 },
8049 removed => {
8050 'VMS::Filespec' => 1,
8051 }
8052 },
6c2a7b42
CBW
8053 5.018002 => {
8054 delta_from => 5.018001,
8055 changed => {
8056 'B' => '1.42_02',
8057 'B::Concise' => '0.95_01',
8058 'Config' => '5.018002',
8059 'File::Glob' => '1.20_01',
8060 'Module::CoreList' => '3.03',
8061 'Module::CoreList::TieHashDelta'=> '3.03',
8062 'Module::CoreList::Utils'=> '3.03',
8063 },
8064 },
38a400f2
RS
8065 5.019000 => {
8066 delta_from => 5.018000,
8067 changed => {
cc423833 8068 'Config' => '5.019000',
e68d5354 8069 'Getopt::Std' => '1.08',
38a400f2
RS
8070 'Module::CoreList' => '2.91',
8071 'Module::CoreList::TieHashDelta'=> '2.91',
8072 'Storable' => '2.42',
8073 'feature' => '1.33',
e68d5354 8074 'utf8' => '1.11',
38a400f2
RS
8075 },
8076 removed => {
8077 'Archive::Extract' => 1,
8078 'B::Lint' => 1,
8079 'B::Lint::Debug' => 1,
8080 'CPANPLUS' => 1,
8081 'CPANPLUS::Backend' => 1,
8082 'CPANPLUS::Backend::RV' => 1,
8083 'CPANPLUS::Config' => 1,
8084 'CPANPLUS::Config::HomeEnv'=> 1,
8085 'CPANPLUS::Configure' => 1,
8086 'CPANPLUS::Configure::Setup'=> 1,
8087 'CPANPLUS::Dist' => 1,
8088 'CPANPLUS::Dist::Autobundle'=> 1,
8089 'CPANPLUS::Dist::Base' => 1,
8090 'CPANPLUS::Dist::Build' => 1,
8091 'CPANPLUS::Dist::Build::Constants'=> 1,
8092 'CPANPLUS::Dist::MM' => 1,
8093 'CPANPLUS::Dist::Sample'=> 1,
8094 'CPANPLUS::Error' => 1,
8095 'CPANPLUS::Internals' => 1,
8096 'CPANPLUS::Internals::Constants'=> 1,
8097 'CPANPLUS::Internals::Constants::Report'=> 1,
8098 'CPANPLUS::Internals::Extract'=> 1,
8099 'CPANPLUS::Internals::Fetch'=> 1,
8100 'CPANPLUS::Internals::Report'=> 1,
8101 'CPANPLUS::Internals::Search'=> 1,
8102 'CPANPLUS::Internals::Source'=> 1,
8103 'CPANPLUS::Internals::Source::Memory'=> 1,
8104 'CPANPLUS::Internals::Source::SQLite'=> 1,
8105 'CPANPLUS::Internals::Source::SQLite::Tie'=> 1,
8106 'CPANPLUS::Internals::Utils'=> 1,
8107 'CPANPLUS::Internals::Utils::Autoflush'=> 1,
8108 'CPANPLUS::Module' => 1,
8109 'CPANPLUS::Module::Author'=> 1,
8110 'CPANPLUS::Module::Author::Fake'=> 1,
8111 'CPANPLUS::Module::Checksums'=> 1,
8112 'CPANPLUS::Module::Fake'=> 1,
8113 'CPANPLUS::Module::Signature'=> 1,
8114 'CPANPLUS::Selfupdate' => 1,
8115 'CPANPLUS::Shell' => 1,
8116 'CPANPLUS::Shell::Classic'=> 1,
8117 'CPANPLUS::Shell::Default'=> 1,
8118 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1,
8119 'CPANPLUS::Shell::Default::Plugins::Remote'=> 1,
8120 'CPANPLUS::Shell::Default::Plugins::Source'=> 1,
8121 'Devel::InnerPackage' => 1,
8122 'File::CheckTree' => 1,
8123 'Log::Message' => 1,
8124 'Log::Message::Config' => 1,
8125 'Log::Message::Handlers'=> 1,
8126 'Log::Message::Item' => 1,
8127 'Log::Message::Simple' => 1,
8128 'Module::Pluggable' => 1,
8129 'Module::Pluggable::Object'=> 1,
8130 'Object::Accessor' => 1,
8131 'Pod::LaTeX' => 1,
8132 'Term::UI' => 1,
8133 'Term::UI::History' => 1,
8134 'Text::Soundex' => 1,
8135 }
8136 },
2f4a2205
DG
8137 5.019001 => {
8138 delta_from => 5.019000,
8139 changed => {
8140 'App::Prove' => '3.28',
8141 'App::Prove::State' => '3.28',
8142 'App::Prove::State::Result'=> '3.28',
8143 'App::Prove::State::Result::Test'=> '3.28',
8144 'Archive::Tar' => '1.92',
8145 'Archive::Tar::Constant'=> '1.92',
8146 'Archive::Tar::File' => '1.92',
8147 'Attribute::Handlers' => '0.95',
8148 'B' => '1.43',
8149 'B::Concise' => '0.96',
8150 'B::Deparse' => '1.21',
8151 'B::Showlex' => '1.04',
8152 'Benchmark' => '1.16',
8153 'CPAN::Meta' => '2.131560',
8154 'CPAN::Meta::Converter' => '2.131560',
8155 'CPAN::Meta::Feature' => '2.131560',
8156 'CPAN::Meta::History' => '2.131560',
8157 'CPAN::Meta::Prereqs' => '2.131560',
8158 'CPAN::Meta::Spec' => '2.131560',
8159 'CPAN::Meta::Validator' => '2.131560',
8160 'Carp' => '1.30',
8161 'Carp::Heavy' => '1.30',
8162 'Compress::Raw::Bzip2' => '2.061',
8163 'Compress::Raw::Zlib' => '2.061',
8164 'Compress::Zlib' => '2.061',
cc423833 8165 'Config' => '5.019001',
2f4a2205
DG
8166 'Config::Perl::V' => '0.18',
8167 'Cwd' => '3.41',
8168 'DB' => '1.06',
8169 'DB_File' => '1.828',
8170 'Data::Dumper' => '2.146',
8171 'Encode' => '2.51',
8172 'Encode::CN::HZ' => '2.06',
8173 'Encode::GSM0338' => '2.03',
8174 'Encode::Unicode::UTF7' => '2.07',
8175 'ExtUtils::CBuilder::Base'=> '0.280210',
8176 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210',
8177 'ExtUtils::Command::MM' => '6.68',
8178 'ExtUtils::Install' => '1.60',
8179 'ExtUtils::Liblist' => '6.68',
8180 'ExtUtils::Liblist::Kid'=> '6.68',
8181 'ExtUtils::MM' => '6.68',
8182 'ExtUtils::MM_AIX' => '6.68',
8183 'ExtUtils::MM_Any' => '6.68',
8184 'ExtUtils::MM_BeOS' => '6.68',
8185 'ExtUtils::MM_Cygwin' => '6.68',
8186 'ExtUtils::MM_DOS' => '6.68',
8187 'ExtUtils::MM_Darwin' => '6.68',
8188 'ExtUtils::MM_MacOS' => '6.68',
8189 'ExtUtils::MM_NW5' => '6.68',
8190 'ExtUtils::MM_OS2' => '6.68',
8191 'ExtUtils::MM_QNX' => '6.68',
8192 'ExtUtils::MM_UWIN' => '6.68',
8193 'ExtUtils::MM_Unix' => '6.68',
8194 'ExtUtils::MM_VMS' => '6.68',
8195 'ExtUtils::MM_VOS' => '6.68',
8196 'ExtUtils::MM_Win32' => '6.68',
8197 'ExtUtils::MM_Win95' => '6.68',
8198 'ExtUtils::MY' => '6.68',
8199 'ExtUtils::MakeMaker' => '6.68',
8200 'ExtUtils::MakeMaker::Config'=> '6.68',
8201 'ExtUtils::Mkbootstrap' => '6.68',
8202 'ExtUtils::Mksymlists' => '6.68',
8203 'ExtUtils::ParseXS' => '3.19',
8204 'ExtUtils::testlib' => '6.68',
8205 'Fatal' => '2.19',
8206 'File::Copy' => '2.27',
8207 'File::DosGlob' => '1.11',
8208 'File::Fetch' => '0.42',
8209 'File::Find' => '1.24',
8210 'File::Spec' => '3.41',
8211 'File::Spec::Cygwin' => '3.41',
8212 'File::Spec::Epoc' => '3.41',
8213 'File::Spec::Mac' => '3.41',
8214 'File::Spec::OS2' => '3.41',
8215 'File::Spec::Unix' => '3.41',
8216 'File::Spec::VMS' => '3.41',
8217 'File::Spec::Win32' => '3.41',
8218 'File::Temp' => '0.2301',
8219 'Filter::Simple' => '0.90',
8220 'Filter::Util::Call' => '1.49',
8221 'Getopt::Long' => '2.4',
8222 'HTTP::Tiny' => '0.031',
8223 'Hash::Util::FieldHash' => '1.11',
8224 'IO::Compress::Adapter::Bzip2'=> '2.061',
8225 'IO::Compress::Adapter::Deflate'=> '2.061',
8226 'IO::Compress::Adapter::Identity'=> '2.061',
8227 'IO::Compress::Base' => '2.061',
8228 'IO::Compress::Base::Common'=> '2.061',
8229 'IO::Compress::Bzip2' => '2.061',
8230 'IO::Compress::Deflate' => '2.061',
8231 'IO::Compress::Gzip' => '2.061',
8232 'IO::Compress::Gzip::Constants'=> '2.061',
8233 'IO::Compress::RawDeflate'=> '2.061',
8234 'IO::Compress::Zip' => '2.061',
8235 'IO::Compress::Zip::Constants'=> '2.061',
8236 'IO::Compress::Zlib::Constants'=> '2.061',
8237 'IO::Compress::Zlib::Extra'=> '2.061',
8238 'IO::Handle' => '1.35',
8239 'IO::Uncompress::Adapter::Bunzip2'=> '2.061',
8240 'IO::Uncompress::Adapter::Identity'=> '2.061',
8241 'IO::Uncompress::Adapter::Inflate'=> '2.061',
8242 'IO::Uncompress::AnyInflate'=> '2.061',
8243 'IO::Uncompress::AnyUncompress'=> '2.061',
8244 'IO::Uncompress::Base' => '2.061',
8245 'IO::Uncompress::Bunzip2'=> '2.061',
8246 'IO::Uncompress::Gunzip'=> '2.061',
8247 'IO::Uncompress::Inflate'=> '2.061',
8248 'IO::Uncompress::RawInflate'=> '2.061',
8249 'IO::Uncompress::Unzip' => '2.061',
8250 'IPC::Open3' => '1.14',
8251 'Locale::Codes' => '3.26',
8252 'Locale::Codes::Constants'=> '3.26',
8253 'Locale::Codes::Country'=> '3.26',
8254 'Locale::Codes::Country_Codes'=> '3.26',
8255 'Locale::Codes::Country_Retired'=> '3.26',
8256 'Locale::Codes::Currency'=> '3.26',
8257 'Locale::Codes::Currency_Codes'=> '3.26',
8258 'Locale::Codes::Currency_Retired'=> '3.26',
8259 'Locale::Codes::LangExt'=> '3.26',
8260 'Locale::Codes::LangExt_Codes'=> '3.26',
8261 'Locale::Codes::LangExt_Retired'=> '3.26',
8262 'Locale::Codes::LangFam'=> '3.26',
8263 'Locale::Codes::LangFam_Codes'=> '3.26',
8264 'Locale::Codes::LangFam_Retired'=> '3.26',
8265 'Locale::Codes::LangVar'=> '3.26',
8266 'Locale::Codes::LangVar_Codes'=> '3.26',
8267 'Locale::Codes::LangVar_Retired'=> '3.26',
8268 'Locale::Codes::Language'=> '3.26',
8269 'Locale::Codes::Language_Codes'=> '3.26',
8270 'Locale::Codes::Language_Retired'=> '3.26',
8271 'Locale::Codes::Script' => '3.26',
8272 'Locale::Codes::Script_Codes'=> '3.26',
8273 'Locale::Codes::Script_Retired'=> '3.26',
8274 'Locale::Country' => '3.26',
8275 'Locale::Currency' => '3.26',
8276 'Locale::Language' => '3.26',
8277 'Locale::Maketext' => '1.24',
8278 'Locale::Script' => '3.26',
8279 'Math::BigFloat' => '1.999',
8280 'Math::BigInt' => '1.9992',
8281 'Math::BigInt::Calc' => '1.998',
8282 'Math::BigInt::CalcEmu' => '1.9991',
8283 'Math::BigRat' => '0.2606',
8284 'Module::Build' => '0.4005',
8285 'Module::Build::Base' => '0.4005',
8286 'Module::Build::Compat' => '0.4005',
8287 'Module::Build::Config' => '0.4005',
8288 'Module::Build::Cookbook'=> '0.4005',
8289 'Module::Build::Dumper' => '0.4005',
8290 'Module::Build::ModuleInfo'=> '0.4005',
8291 'Module::Build::Notes' => '0.4005',
8292 'Module::Build::PPMMaker'=> '0.4005',
8293 'Module::Build::Platform::Amiga'=> '0.4005',
8294 'Module::Build::Platform::Default'=> '0.4005',
8295 'Module::Build::Platform::EBCDIC'=> '0.4005',
8296 'Module::Build::Platform::MPEiX'=> '0.4005',
8297 'Module::Build::Platform::MacOS'=> '0.4005',
8298 'Module::Build::Platform::RiscOS'=> '0.4005',
8299 'Module::Build::Platform::Unix'=> '0.4005',
8300 'Module::Build::Platform::VMS'=> '0.4005',
8301 'Module::Build::Platform::VOS'=> '0.4005',
8302 'Module::Build::Platform::Windows'=> '0.4005',
8303 'Module::Build::Platform::aix'=> '0.4005',
8304 'Module::Build::Platform::cygwin'=> '0.4005',
8305 'Module::Build::Platform::darwin'=> '0.4005',
8306 'Module::Build::Platform::os2'=> '0.4005',
8307 'Module::Build::PodParser'=> '0.4005',
8308 'Module::CoreList' => '2.92',
8309 'Module::CoreList::TieHashDelta'=> '2.92',
8310 'Module::CoreList::Utils'=> '2.92',
8311 'Module::Metadata' => '1.000014',
8312 'Net::Ping' => '2.42',
8313 'POSIX' => '1.33',
8314 'Pod::Find' => '1.61',
8315 'Pod::Html' => '1.19',
8316 'Pod::InputObjects' => '1.61',
8317 'Pod::ParseUtils' => '1.61',
8318 'Pod::Parser' => '1.61',
8319 'Pod::Perldoc' => '3.20',
8320 'Pod::Perldoc::BaseTo' => '3.20',
8321 'Pod::Perldoc::GetOptsOO'=> '3.20',
8322 'Pod::Perldoc::ToANSI' => '3.20',
8323 'Pod::Perldoc::ToChecker'=> '3.20',
8324 'Pod::Perldoc::ToMan' => '3.20',
8325 'Pod::Perldoc::ToNroff' => '3.20',
8326 'Pod::Perldoc::ToPod' => '3.20',
8327 'Pod::Perldoc::ToRtf' => '3.20',
8328 'Pod::Perldoc::ToTerm' => '3.20',
8329 'Pod::Perldoc::ToText' => '3.20',
8330 'Pod::Perldoc::ToTk' => '3.20',
8331 'Pod::Perldoc::ToXml' => '3.20',
8332 'Pod::Select' => '1.61',
8333 'Pod::Usage' => '1.63',
8334 'Safe' => '2.36',
8335 'Storable' => '2.43',
8336 'Sys::Hostname' => '1.18',
8337 'Sys::Syslog' => '0.33',
8338 'TAP::Base' => '3.28',
8339 'TAP::Formatter::Base' => '3.28',
8340 'TAP::Formatter::Color' => '3.28',
8341 'TAP::Formatter::Console'=> '3.28',
8342 'TAP::Formatter::Console::ParallelSession'=> '3.28',
8343 'TAP::Formatter::Console::Session'=> '3.28',
8344 'TAP::Formatter::File' => '3.28',
8345 'TAP::Formatter::File::Session'=> '3.28',
8346 'TAP::Formatter::Session'=> '3.28',
8347 'TAP::Harness' => '3.28',
8348 'TAP::Object' => '3.28',
8349 'TAP::Parser' => '3.28',
8350 'TAP::Parser::Aggregator'=> '3.28',
8351 'TAP::Parser::Grammar' => '3.28',
8352 'TAP::Parser::Iterator' => '3.28',
8353 'TAP::Parser::Iterator::Array'=> '3.28',
8354 'TAP::Parser::Iterator::Process'=> '3.28',
8355 'TAP::Parser::Iterator::Stream'=> '3.28',
8356 'TAP::Parser::IteratorFactory'=> '3.28',
8357 'TAP::Parser::Multiplexer'=> '3.28',
8358 'TAP::Parser::Result' => '3.28',
8359 'TAP::Parser::Result::Bailout'=> '3.28',
8360 'TAP::Parser::Result::Comment'=> '3.28',
8361 'TAP::Parser::Result::Plan'=> '3.28',
8362 'TAP::Parser::Result::Pragma'=> '3.28',
8363 'TAP::Parser::Result::Test'=> '3.28',
8364 'TAP::Parser::Result::Unknown'=> '3.28',
8365 'TAP::Parser::Result::Version'=> '3.28',
8366 'TAP::Parser::Result::YAML'=> '3.28',
8367 'TAP::Parser::ResultFactory'=> '3.28',
8368 'TAP::Parser::Scheduler'=> '3.28',
8369 'TAP::Parser::Scheduler::Job'=> '3.28',
8370 'TAP::Parser::Scheduler::Spinner'=> '3.28',
8371 'TAP::Parser::Source' => '3.28',
8372 'TAP::Parser::SourceHandler'=> '3.28',
8373 'TAP::Parser::SourceHandler::Executable'=> '3.28',
8374 'TAP::Parser::SourceHandler::File'=> '3.28',
8375 'TAP::Parser::SourceHandler::Handle'=> '3.28',
8376 'TAP::Parser::SourceHandler::Perl'=> '3.28',
8377 'TAP::Parser::SourceHandler::RawTAP'=> '3.28',
8378 'TAP::Parser::Utils' => '3.28',
8379 'TAP::Parser::YAMLish::Reader'=> '3.28',
8380 'TAP::Parser::YAMLish::Writer'=> '3.28',
8381 'Term::ReadLine' => '1.13',
8382 'Test::Harness' => '3.28',
8383 'Text::Tabs' => '2013.0523',
8384 'Text::Wrap' => '2013.0523',
8385 'Thread' => '3.04',
8386 'Tie::File' => '1.00',
8387 'Time::Piece' => '1.2002',
8388 'Unicode::Collate' => '0.98',
8389 'Unicode::UCD' => '0.53',
8390 'XS::APItest' => '0.53',
8391 '_charnames' => '1.37',
8392 'autodie' => '2.19',
8393 'autodie::exception' => '2.19',
8394 'autodie::exception::system'=> '2.19',
8395 'autodie::hints' => '2.19',
8396 'autodie::skip' => '2.19',
8397 'bigint' => '0.35',
8398 'charnames' => '1.38',
8399 'encoding' => '2.12',
8400 'inc::latest' => '0.4005',
8401 'mro' => '1.12',
8402 'perlfaq' => '5.0150043',
8403 're' => '0.25',
8404 'threads' => '1.87',
8405 'threads::shared' => '1.44',
8406 'utf8' => '1.12',
8407 },
8408 removed => {
8409 }
8410 },
d04adc20
DG
8411 5.019002 => {
8412 delta_from => 5.019001,
8413 changed => {
1f0ad552
AP
8414 'B' => '1.44',
8415 'B::Concise' => '0.98',
8416 'B::Deparse' => '1.22',
8417 'Benchmark' => '1.17',
8418 'Class::Struct' => '0.65',
cc423833 8419 'Config' => '5.019002',
1f0ad552
AP
8420 'DB' => '1.07',
8421 'DBM_Filter' => '0.06',
8422 'DBM_Filter::compress' => '0.03',
8423 'DBM_Filter::encode' => '0.03',
8424 'DBM_Filter::int32' => '0.03',
8425 'DBM_Filter::null' => '0.03',
8426 'DBM_Filter::utf8' => '0.03',
8427 'DB_File' => '1.829',
8428 'Data::Dumper' => '2.147',
8429 'Devel::Peek' => '1.12',
8430 'Digest::MD5' => '2.53',
8431 'Digest::SHA' => '5.85',
8432 'English' => '1.07',
8433 'Errno' => '1.19',
8434 'ExtUtils::Embed' => '1.31',
8435 'ExtUtils::Miniperl' => '1',
8436 'ExtUtils::ParseXS' => '3.21',
8437 'ExtUtils::ParseXS::Constants'=> '3.21',
8438 'ExtUtils::ParseXS::CountLines'=> '3.21',
8439 'ExtUtils::ParseXS::Eval'=> '3.19',
8440 'ExtUtils::ParseXS::Utilities'=> '3.21',
8441 'ExtUtils::Typemaps' => '3.21',
8442 'ExtUtils::Typemaps::Cmd'=> '3.21',
8443 'ExtUtils::Typemaps::InputMap'=> '3.21',
8444 'ExtUtils::Typemaps::OutputMap'=> '3.21',
8445 'ExtUtils::Typemaps::Type'=> '3.21',
8446 'ExtUtils::XSSymSet' => '1.3',
8447 'Fatal' => '2.20',
8448 'File::Basename' => '2.85',
8449 'File::Spec::VMS' => '3.43',
8450 'File::Spec::Win32' => '3.42',
8451 'Getopt::Long' => '2.41',
8452 'Getopt::Std' => '1.09',
8453 'HTTP::Tiny' => '0.034',
8454 'Hash::Util::FieldHash' => '1.12',
8455 'I18N::Langinfo' => '0.11',
8456 'IO::Socket::INET' => '1.34',
8457 'IO::Socket::UNIX' => '1.25',
8458 'IPC::Cmd' => '0.82',
8459 'MIME::Base64' => '3.14',
8460 'Module::CoreList' => '2.94',
8461 'Module::CoreList::TieHashDelta'=> '2.94',
8462 'Module::CoreList::Utils'=> '2.94',
8463 'POSIX' => '1.34',
8464 'Params::Check' => '0.38',
8465 'Parse::CPAN::Meta' => '1.4405',
8466 'Pod::Functions' => '1.07',
8467 'Pod::Functions::Functions'=> '1.07',
8468 'Pod::Html' => '1.2',
8469 'Safe' => '2.37',
8470 'Socket' => '2.010',
8471 'Storable' => '2.45',
8472 'Text::ParseWords' => '3.29',
8473 'Tie::Array' => '1.06',
8474 'Tie::Hash' => '1.05',
8475 'Tie::Scalar' => '1.03',
8476 'Time::Piece' => '1.21',
8477 'Time::Seconds' => '1.21',
8478 'XS::APItest' => '0.54',
8479 'autodie' => '2.20',
8480 'autodie::exception' => '2.20',
8481 'autodie::exception::system'=> '2.20',
8482 'autodie::hints' => '2.20',
8483 'autodie::skip' => '2.20',
8484 'base' => '2.19',
8485 'deprecate' => '0.03',
8486 'if' => '0.0603',
8487 'integer' => '1.01',
8488 'strict' => '1.08',
8489 'subs' => '1.02',
8490 'vmsish' => '1.04',
d04adc20
DG
8491 },
8492 removed => {
8493 }
8494 },
a7e68be8
AP
8495 5.019003 => {
8496 delta_from => 5.019002,
8497 changed => {
91c842ce
SH
8498 'B' => '1.45',
8499 'CPAN::Meta' => '2.132140',
8500 'CPAN::Meta::Converter' => '2.132140',
8501 'CPAN::Meta::Feature' => '2.132140',
8502 'CPAN::Meta::History' => '2.132140',
8503 'CPAN::Meta::Prereqs' => '2.132140',
8504 'CPAN::Meta::Spec' => '2.132140',
8505 'CPAN::Meta::Validator' => '2.132140',
8506 'Carp' => '1.31',
8507 'Carp::Heavy' => '1.31',
8508 'Compress::Raw::Bzip2' => '2.062',
8509 'Compress::Raw::Zlib' => '2.062',
8510 'Compress::Zlib' => '2.062',
8511 'Config' => '5.019003',
8512 'Config::Perl::V' => '0.19',
8513 'Cwd' => '3.44',
8514 'Data::Dumper' => '2.148',
8515 'Devel::PPPort' => '3.21',
8516 'Devel::Peek' => '1.13',
8517 'DynaLoader' => '1.19',
8518 'Encode' => '2.52',
8519 'Encode::Alias' => '2.17',
8520 'Encode::Encoding' => '2.06',
8521 'Encode::GSM0338' => '2.04',
8522 'Encode::MIME::Header' => '2.14',
8523 'Encode::Unicode' => '2.08',
8524 'English' => '1.08',
8525 'Exporter' => '5.69',
8526 'Exporter::Heavy' => '5.69',
8527 'ExtUtils::Command::MM' => '6.72',
8528 'ExtUtils::Liblist' => '6.72',
8529 'ExtUtils::Liblist::Kid'=> '6.72',
8530 'ExtUtils::MM' => '6.72',
8531 'ExtUtils::MM_AIX' => '6.72',
8532 'ExtUtils::MM_Any' => '6.72',
8533 'ExtUtils::MM_BeOS' => '6.72',
8534 'ExtUtils::MM_Cygwin' => '6.72',
8535 'ExtUtils::MM_DOS' => '6.72',
8536 'ExtUtils::MM_Darwin' => '6.72',
8537 'ExtUtils::MM_MacOS' => '6.72',
8538 'ExtUtils::MM_NW5' => '6.72',
8539 'ExtUtils::MM_OS2' => '6.72',
8540 'ExtUtils::MM_QNX' => '6.72',
8541 'ExtUtils::MM_UWIN' => '6.72',
8542 'ExtUtils::MM_Unix' => '6.72',
8543 'ExtUtils::MM_VMS' => '6.72',
8544 'ExtUtils::MM_VOS' => '6.72',
8545 'ExtUtils::MM_Win32' => '6.72',
8546 'ExtUtils::MM_Win95' => '6.72',
8547 'ExtUtils::MY' => '6.72',
8548 'ExtUtils::MakeMaker' => '6.72',
8549 'ExtUtils::MakeMaker::Config'=> '6.72',
8550 'ExtUtils::Mkbootstrap' => '6.72',
8551 'ExtUtils::Mksymlists' => '6.72',
8552 'ExtUtils::ParseXS::Eval'=> '3.21',
8553 'ExtUtils::testlib' => '6.72',
8554 'File::Spec' => '3.44',
8555 'File::Spec::Cygwin' => '3.44',
8556 'File::Spec::Epoc' => '3.44',
8557 'File::Spec::Functions' => '3.44',
8558 'File::Spec::Mac' => '3.44',
8559 'File::Spec::OS2' => '3.44',
8560 'File::Spec::Unix' => '3.44',
8561 'File::Spec::VMS' => '3.44',
8562 'File::Spec::Win32' => '3.44',
8563 'Getopt::Std' => '1.10',
8564 'IO::Compress::Adapter::Bzip2'=> '2.062',
8565 'IO::Compress::Adapter::Deflate'=> '2.062',
8566 'IO::Compress::Adapter::Identity'=> '2.062',
8567 'IO::Compress::Base' => '2.062',
8568 'IO::Compress::Base::Common'=> '2.062',
8569 'IO::Compress::Bzip2' => '2.062',
8570 'IO::Compress::Deflate' => '2.062',
8571 'IO::Compress::Gzip' => '2.062',
8572 'IO::Compress::Gzip::Constants'=> '2.062',
8573 'IO::Compress::RawDeflate'=> '2.062',
8574 'IO::Compress::Zip' => '2.062',
8575 'IO::Compress::Zip::Constants'=> '2.062',
8576 'IO::Compress::Zlib::Constants'=> '2.062',
8577 'IO::Compress::Zlib::Extra'=> '2.062',
8578 'IO::Uncompress::Adapter::Bunzip2'=> '2.062',
8579 'IO::Uncompress::Adapter::Identity'=> '2.062',
8580 'IO::Uncompress::Adapter::Inflate'=> '2.062',
8581 'IO::Uncompress::AnyInflate'=> '2.062',
8582 'IO::Uncompress::AnyUncompress'=> '2.062',
8583 'IO::Uncompress::Base' => '2.062',
8584 'IO::Uncompress::Bunzip2'=> '2.062',
8585 'IO::Uncompress::Gunzip'=> '2.062',
8586 'IO::Uncompress::Inflate'=> '2.062',
8587 'IO::Uncompress::RawInflate'=> '2.062',
8588 'IO::Uncompress::Unzip' => '2.062',
8589 'IPC::Cmd' => '0.84',
8590 'IPC::Msg' => '2.04',
8591 'IPC::Open3' => '1.15',
8592 'IPC::Semaphore' => '2.04',
8593 'IPC::SharedMem' => '2.04',
8594 'IPC::SysV' => '2.04',
8595 'List::Util' => '1.31',
8596 'List::Util::XS' => '1.31',
8597 'Math::BigFloat::Trace' => '0.36',
8598 'Math::BigInt::Trace' => '0.36',
8599 'Module::Build' => '0.4007',
8600 'Module::Build::Base' => '0.4007',
8601 'Module::Build::Compat' => '0.4007',
8602 'Module::Build::Config' => '0.4007',
8603 'Module::Build::Cookbook'=> '0.4007',
8604 'Module::Build::Dumper' => '0.4007',
8605 'Module::Build::ModuleInfo'=> '0.4007',
8606 'Module::Build::Notes' => '0.4007',
8607 'Module::Build::PPMMaker'=> '0.4007',
8608 'Module::Build::Platform::Default'=> '0.4007',
8609 'Module::Build::Platform::MacOS'=> '0.4007',
8610 'Module::Build::Platform::Unix'=> '0.4007',
8611 'Module::Build::Platform::VMS'=> '0.4007',
8612 'Module::Build::Platform::VOS'=> '0.4007',
8613 'Module::Build::Platform::Windows'=> '0.4007',
8614 'Module::Build::Platform::aix'=> '0.4007',
8615 'Module::Build::Platform::cygwin'=> '0.4007',
8616 'Module::Build::Platform::darwin'=> '0.4007',
8617 'Module::Build::Platform::os2'=> '0.4007',
8618 'Module::Build::PodParser'=> '0.4007',
8619 'Module::CoreList' => '2.97',
8620 'Module::CoreList::TieHashDelta'=> '2.97',
8621 'Module::CoreList::Utils'=> '2.97',
8622 'Net::Cmd' => '2.30',
8623 'Net::Config' => '1.12',
8624 'Net::Domain' => '2.22',
8625 'Net::FTP' => '2.78',
8626 'Net::FTP::dataconn' => '0.12',
8627 'Net::NNTP' => '2.25',
8628 'Net::Netrc' => '2.14',
8629 'Net::POP3' => '2.30',
8630 'Net::SMTP' => '2.32',
8631 'PerlIO' => '1.08',
8632 'Pod::Functions' => '1.08',
8633 'Pod::Functions::Functions'=> '1.08',
8634 'Scalar::Util' => '1.31',
8635 'Socket' => '2.011',
8636 'Storable' => '2.46',
8637 'Time::HiRes' => '1.9726',
8638 'Time::Piece' => '1.22',
8639 'Time::Seconds' => '1.22',
8640 'XS::APItest' => '0.55',
8641 'bigint' => '0.36',
8642 'bignum' => '0.36',
8643 'bigrat' => '0.36',
8644 'constant' => '1.28',
8645 'diagnostics' => '1.32',
8646 'inc::latest' => '0.4007',
8647 'mro' => '1.13',
8648 'parent' => '0.226',
8649 'utf8' => '1.13',
8650 'version' => '0.9903',
a7e68be8
AP
8651 },
8652 removed => {
91c842ce
SH
8653 'Module::Build::Platform::Amiga'=> 1,
8654 'Module::Build::Platform::EBCDIC'=> 1,
8655 'Module::Build::Platform::MPEiX'=> 1,
8656 'Module::Build::Platform::RiscOS'=> 1,
a7e68be8
AP
8657 }
8658 },
37287258
SH
8659 5.019004 => {
8660 delta_from => 5.019003,
8661 changed => {
62de23d1
SH
8662 'B' => '1.46',
8663 'B::Concise' => '0.99',
8664 'B::Deparse' => '1.23',
8665 'CPAN' => '2.03',
8666 'CPAN::Meta' => '2.132620',
8667 'CPAN::Meta::Converter' => '2.132620',
8668 'CPAN::Meta::Feature' => '2.132620',
8669 'CPAN::Meta::History' => '2.132620',
8670 'CPAN::Meta::Prereqs' => '2.132620',
8671 'CPAN::Meta::Requirements'=> '2.123',
8672 'CPAN::Meta::Spec' => '2.132620',
8673 'CPAN::Meta::Validator' => '2.132620',
8674 'Carp' => '1.32',
8675 'Carp::Heavy' => '1.32',
37287258 8676 'Config' => '5.019004',
62de23d1
SH
8677 'Data::Dumper' => '2.149',
8678 'Devel::Peek' => '1.14',
8679 'DynaLoader' => '1.20',
8680 'Encode' => '2.55',
8681 'Encode::Alias' => '2.18',
8682 'Encode::CN::HZ' => '2.07',
8683 'Encode::Encoder' => '2.03',
8684 'Encode::Encoding' => '2.07',
8685 'Encode::GSM0338' => '2.05',
8686 'Encode::Guess' => '2.06',
8687 'Encode::JP::JIS7' => '2.05',
8688 'Encode::KR::2022_KR' => '2.03',
8689 'Encode::MIME::Header' => '2.15',
8690 'Encode::MIME::Header::ISO_2022_JP'=> '1.04',
8691 'Encode::Unicode' => '2.09',
8692 'Encode::Unicode::UTF7' => '2.08',
8693 'Errno' => '1.20',
8694 'Exporter' => '5.70',
8695 'Exporter::Heavy' => '5.70',
8696 'ExtUtils::CBuilder' => '0.280212',
8697 'ExtUtils::CBuilder::Base'=> '0.280212',
8698 'ExtUtils::CBuilder::Platform::Unix'=> '0.280212',
8699 'ExtUtils::CBuilder::Platform::VMS'=> '0.280212',
8700 'ExtUtils::CBuilder::Platform::Windows'=> '0.280212',
8701 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212',
8702 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212',
8703 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212',
8704 'ExtUtils::CBuilder::Platform::aix'=> '0.280212',
8705 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212',
8706 'ExtUtils::CBuilder::Platform::darwin'=> '0.280212',
8707 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212',
8708 'ExtUtils::CBuilder::Platform::os2'=> '0.280212',
8709 'ExtUtils::Command' => '1.18',
8710 'ExtUtils::Command::MM' => '6.76',
8711 'ExtUtils::Liblist' => '6.76',
8712 'ExtUtils::Liblist::Kid'=> '6.76',
8713 'ExtUtils::MM' => '6.76',
8714 'ExtUtils::MM_AIX' => '6.76',
8715 'ExtUtils::MM_Any' => '6.76',
8716 'ExtUtils::MM_BeOS' => '6.76',
8717 'ExtUtils::MM_Cygwin' => '6.76',
8718 'ExtUtils::MM_DOS' => '6.76',
8719 'ExtUtils::MM_Darwin' => '6.76',
8720 'ExtUtils::MM_MacOS' => '6.76',
8721 'ExtUtils::MM_NW5' => '6.76',
8722 'ExtUtils::MM_OS2' => '6.76',
8723 'ExtUtils::MM_QNX' => '6.76',
8724 'ExtUtils::MM_UWIN' => '6.76',
8725 'ExtUtils::MM_Unix' => '6.76',
8726 'ExtUtils::MM_VMS' => '6.76',
8727 'ExtUtils::MM_VOS' => '6.76',
8728 'ExtUtils::MM_Win32' => '6.76',
8729 'ExtUtils::MM_Win95' => '6.76',
8730 'ExtUtils::MY' => '6.76',
8731 'ExtUtils::MakeMaker' => '6.76',
8732 'ExtUtils::MakeMaker::Config'=> '6.76',
8733 'ExtUtils::Mkbootstrap' => '6.76',
8734 'ExtUtils::Mksymlists' => '6.76',
8735 'ExtUtils::ParseXS' => '3.23',
8736 'ExtUtils::ParseXS::Constants'=> '3.23',
8737 'ExtUtils::ParseXS::CountLines'=> '3.23',
8738 'ExtUtils::ParseXS::Eval'=> '3.23',
8739 'ExtUtils::ParseXS::Utilities'=> '3.23',
8740 'ExtUtils::Typemaps' => '3.23',
8741 'ExtUtils::Typemaps::Cmd'=> '3.23',
8742 'ExtUtils::Typemaps::InputMap'=> '3.23',
8743 'ExtUtils::Typemaps::OutputMap'=> '3.23',
8744 'ExtUtils::Typemaps::Type'=> '3.23',
8745 'ExtUtils::testlib' => '6.76',
8746 'Fatal' => '2.21',
8747 'File::Copy' => '2.28',
8748 'File::Find' => '1.25',
8749 'File::Glob' => '1.21',
8750 'FileCache' => '1.09',
8751 'HTTP::Tiny' => '0.035',
8752 'Hash::Util::FieldHash' => '1.13',
8753 'I18N::LangTags' => '0.40',
8754 'IO' => '1.29',
8755 'IO::Socket' => '1.37',
8756 'IPC::Open3' => '1.16',
8757 'JSON::PP' => '2.27202_01',
8758 'List::Util' => '1.32',
8759 'List::Util::XS' => '1.32',
8760 'Locale::Codes' => '3.27',
8761 'Locale::Codes::Constants'=> '3.27',
8762 'Locale::Codes::Country'=> '3.27',
8763 'Locale::Codes::Country_Codes'=> '3.27',
8764 'Locale::Codes::Country_Retired'=> '3.27',
8765 'Locale::Codes::Currency'=> '3.27',
8766 'Locale::Codes::Currency_Codes'=> '3.27',
8767 'Locale::Codes::Currency_Retired'=> '3.27',
8768 'Locale::Codes::LangExt'=> '3.27',
8769 'Locale::Codes::LangExt_Codes'=> '3.27',
8770 'Locale::Codes::LangExt_Retired'=> '3.27',
8771 'Locale::Codes::LangFam'=> '3.27',
8772 'Locale::Codes::LangFam_Codes'=> '3.27',
8773 'Locale::Codes::LangFam_Retired'=> '3.27',
8774 'Locale::Codes::LangVar'=> '3.27',
8775 'Locale::Codes::LangVar_Codes'=> '3.27',
8776 'Locale::Codes::LangVar_Retired'=> '3.27',
8777 'Locale::Codes::Language'=> '3.27',
8778 'Locale::Codes::Language_Codes'=> '3.27',
8779 'Locale::Codes::Language_Retired'=> '3.27',
8780 'Locale::Codes::Script' => '3.27',
8781 'Locale::Codes::Script_Codes'=> '3.27',
8782 'Locale::Codes::Script_Retired'=> '3.27',
8783 'Locale::Country' => '3.27',
8784 'Locale::Currency' => '3.27',
8785 'Locale::Language' => '3.27',
8786 'Locale::Script' => '3.27',
8787 'Math::BigFloat' => '1.9991',
8788 'Math::BigInt' => '1.9993',
8789 'Math::BigInt::FastCalc'=> '0.31',
8790 'Module::CoreList' => '2.99',
8791 'Module::CoreList::TieHashDelta'=> '2.99',
8792 'Module::CoreList::Utils'=> '2.99',
8793 'Module::Load::Conditional'=> '0.58',
8794 'Module::Metadata' => '1.000018',
8795 'Opcode' => '1.26',
8796 'POSIX' => '1.35',
8797 'Parse::CPAN::Meta' => '1.4407',
8798 'Perl::OSType' => '1.005',
8799 'Pod::Html' => '1.21',
8800 'Scalar::Util' => '1.32',
8801 'Socket' => '2.012',
8802 'Storable' => '2.47',
8803 'Term::ReadLine' => '1.14',
8804 'Test::Builder' => '0.98_06',
8805 'Test::Builder::Module' => '0.98_06',
8806 'Test::More' => '0.98_06',
8807 'Test::Simple' => '0.98_06',
8808 'Time::Piece' => '1.23',
8809 'Time::Seconds' => '1.23',
8810 'Unicode::Collate' => '0.99',
8811 'Unicode::UCD' => '0.54',
8812 'XS::APItest' => '0.56',
37287258 8813 'XS::Typemap' => '0.11',
62de23d1
SH
8814 '_charnames' => '1.39',
8815 'autodie' => '2.21',
8816 'autodie::exception' => '2.21',
8817 'autodie::exception::system'=> '2.21',
8818 'autodie::hints' => '2.21',
8819 'autodie::skip' => '2.21',
8820 'charnames' => '1.39',
8821 'diagnostics' => '1.33',
8822 'mro' => '1.14',
8823 'parent' => '0.228',
8824 'perlfaq' => '5.0150044',
8825 're' => '0.26',
8826 'version' => '0.9904',
8827 'warnings' => '1.19',
37287258
SH
8828 },
8829 removed => {
8830 }
8831 },
fa5fbb39
SH
8832 5.019005 => {
8833 delta_from => 5.019004,
8834 changed => {
19c1ec11
SH
8835 'App::Prove' => '3.29',
8836 'App::Prove::State' => '3.29',
8837 'App::Prove::State::Result'=> '3.29',
8838 'App::Prove::State::Result::Test'=> '3.29',
8839 'CPAN::Meta' => '2.132830',
8840 'CPAN::Meta::Converter' => '2.132830',
8841 'CPAN::Meta::Feature' => '2.132830',
8842 'CPAN::Meta::History' => '2.132830',
8843 'CPAN::Meta::Prereqs' => '2.132830',
8844 'CPAN::Meta::Requirements'=> '2.125',
8845 'CPAN::Meta::Spec' => '2.132830',
8846 'CPAN::Meta::Validator' => '2.132830',
8847 'CPAN::Meta::YAML' => '0.010',
fa5fbb39 8848 'Config' => '5.019005',
19c1ec11
SH
8849 'Cwd' => '3.45',
8850 'ExtUtils::Command::MM' => '6.80',
8851 'ExtUtils::Install' => '1.61',
8852 'ExtUtils::Liblist' => '6.80',
8853 'ExtUtils::Liblist::Kid'=> '6.80',
8854 'ExtUtils::MM' => '6.80',
8855 'ExtUtils::MM_AIX' => '6.80',
8856 'ExtUtils::MM_Any' => '6.80',
8857 'ExtUtils::MM_BeOS' => '6.80',
8858 'ExtUtils::MM_Cygwin' => '6.80',
8859 'ExtUtils::MM_DOS' => '6.80',
8860 'ExtUtils::MM_Darwin' => '6.80',
8861 'ExtUtils::MM_MacOS' => '6.80',
8862 'ExtUtils::MM_NW5' => '6.80',
8863 'ExtUtils::MM_OS2' => '6.80',
8864 'ExtUtils::MM_QNX' => '6.80',
8865 'ExtUtils::MM_UWIN' => '6.80',
8866 'ExtUtils::MM_Unix' => '6.80',
8867 'ExtUtils::MM_VMS' => '6.80',
8868 'ExtUtils::MM_VOS' => '6.80',
8869 'ExtUtils::MM_Win32' => '6.80',
8870 'ExtUtils::MM_Win95' => '6.80',
8871 'ExtUtils::MY' => '6.80',
8872 'ExtUtils::MakeMaker' => '6.80',
8873 'ExtUtils::MakeMaker::Config'=> '6.80',
8874 'ExtUtils::Mkbootstrap' => '6.80',
8875 'ExtUtils::Mksymlists' => '6.80',
8876 'ExtUtils::testlib' => '6.80',
8877 'Fatal' => '2.22',
8878 'File::Fetch' => '0.44',
8879 'File::Glob' => '1.22',
8880 'File::Spec' => '3.45',
8881 'File::Spec::Cygwin' => '3.45',
8882 'File::Spec::Epoc' => '3.45',
8883 'File::Spec::Functions' => '3.45',
8884 'File::Spec::Mac' => '3.45',
8885 'File::Spec::OS2' => '3.45',
8886 'File::Spec::Unix' => '3.45',
8887 'File::Spec::VMS' => '3.45',
8888 'File::Spec::Win32' => '3.45',
8889 'File::Temp' => '0.2304',
8890 'Getopt::Long' => '2.42',
8891 'HTTP::Tiny' => '0.036',
8892 'IPC::Cmd' => '0.84_01',
8893 'JSON::PP' => '2.27203',
8894 'List::Util' => '1.35',
8895 'List::Util::XS' => '1.35',
fa5fbb39
SH
8896 'Module::CoreList' => '3.00',
8897 'Module::CoreList::TieHashDelta'=> '3.00',
8898 'Module::CoreList::Utils'=> '3.00',
19c1ec11
SH
8899 'Module::Metadata' => '1.000019',
8900 'Parse::CPAN::Meta' => '1.4409',
8901 'Perl::OSType' => '1.006',
8902 'PerlIO::scalar' => '0.17',
8903 'Pod::Man' => '2.28',
8904 'Pod::Text' => '3.18',
8905 'Pod::Text::Termcap' => '2.08',
8906 'Scalar::Util' => '1.35',
8907 'TAP::Base' => '3.29',
8908 'TAP::Formatter::Base' => '3.29',
8909 'TAP::Formatter::Color' => '3.29',
8910 'TAP::Formatter::Console'=> '3.29',
8911 'TAP::Formatter::Console::ParallelSession'=> '3.29',
8912 'TAP::Formatter::Console::Session'=> '3.29',
8913 'TAP::Formatter::File' => '3.29',
8914 'TAP::Formatter::File::Session'=> '3.29',
8915 'TAP::Formatter::Session'=> '3.29',
8916 'TAP::Harness' => '3.29',
8917 'TAP::Harness::Env' => '3.29',
8918 'TAP::Object' => '3.29',
8919 'TAP::Parser' => '3.29',
8920 'TAP::Parser::Aggregator'=> '3.29',
8921 'TAP::Parser::Grammar' => '3.29',
8922 'TAP::Parser::Iterator' => '3.29',
8923 'TAP::Parser::Iterator::Array'=> '3.29',
8924 'TAP::Parser::Iterator::Process'=> '3.29',
8925 'TAP::Parser::Iterator::Stream'=> '3.29',
8926 'TAP::Parser::IteratorFactory'=> '3.29',
8927 'TAP::Parser::Multiplexer'=> '3.29',
8928 'TAP::Parser::Result' => '3.29',
8929 'TAP::Parser::Result::Bailout'=> '3.29',
8930 'TAP::Parser::Result::Comment'=> '3.29',
8931 'TAP::Parser::Result::Plan'=> '3.29',
8932 'TAP::Parser::Result::Pragma'=> '3.29',
8933 'TAP::Parser::Result::Test'=> '3.29',
8934 'TAP::Parser::Result::Unknown'=> '3.29',
8935 'TAP::Parser::Result::Version'=> '3.29',
8936 'TAP::Parser::Result::YAML'=> '3.29',
8937 'TAP::Parser::ResultFactory'=> '3.29',
8938 'TAP::Parser::Scheduler'=> '3.29',
8939 'TAP::Parser::Scheduler::Job'=> '3.29',
8940 'TAP::Parser::Scheduler::Spinner'=> '3.29',
8941 'TAP::Parser::Source' => '3.29',
8942 'TAP::Parser::SourceHandler'=> '3.29',
8943 'TAP::Parser::SourceHandler::Executable'=> '3.29',
8944 'TAP::Parser::SourceHandler::File'=> '3.29',
8945 'TAP::Parser::SourceHandler::Handle'=> '3.29',
8946 'TAP::Parser::SourceHandler::Perl'=> '3.29',
8947 'TAP::Parser::SourceHandler::RawTAP'=> '3.29',
8948 'TAP::Parser::YAMLish::Reader'=> '3.29',
8949 'TAP::Parser::YAMLish::Writer'=> '3.29',
8950 'Test::Builder' => '0.99',
8951 'Test::Builder::Module' => '0.99',
8952 'Test::Builder::Tester' => '1.23_002',
8953 'Test::Builder::Tester::Color'=> '1.23_002',
8954 'Test::Harness' => '3.29',
8955 'Test::More' => '0.99',
8956 'Test::Simple' => '0.99',
8957 'Unicode' => '6.3.0',
8958 'Unicode::Normalize' => '1.17',
8959 'Unicode::UCD' => '0.55',
8960 'attributes' => '0.22',
8961 'autodie' => '2.22',
8962 'autodie::exception' => '2.22',
8963 'autodie::exception::system'=> '2.22',
8964 'autodie::hints' => '2.22',
8965 'autodie::skip' => '2.22',
8966 'feature' => '1.34',
8967 'threads' => '1.89',
8968 'warnings' => '1.20',
fa5fbb39
SH
8969 },
8970 removed => {
19c1ec11 8971 'TAP::Parser::Utils' => 1,
fa5fbb39
SH
8972 }
8973 },
494bd897
SH
8974 5.019006 => {
8975 delta_from => 5.019005,
8976 changed => {
1f2fd626
CBW
8977 'App::Prove' => '3.30',
8978 'App::Prove::State' => '3.30',
8979 'App::Prove::State::Result'=> '3.30',
8980 'App::Prove::State::Result::Test'=> '3.30',
8981 'Archive::Tar' => '1.96',
8982 'Archive::Tar::Constant'=> '1.96',
8983 'Archive::Tar::File' => '1.96',
8984 'AutoLoader' => '5.74',
8985 'B' => '1.47',
8986 'B::Concise' => '0.991',
8987 'B::Debug' => '1.19',
8988 'B::Deparse' => '1.24',
8989 'Benchmark' => '1.18',
8990 'Compress::Raw::Bzip2' => '2.063',
8991 'Compress::Raw::Zlib' => '2.063',
8992 'Compress::Zlib' => '2.063',
494bd897 8993 'Config' => '5.019006',
1f2fd626
CBW
8994 'DB_File' => '1.831',
8995 'Devel::Peek' => '1.15',
8996 'DynaLoader' => '1.21',
8997 'Errno' => '1.20_01',
8998 'ExtUtils::Command::MM' => '6.82',
8999 'ExtUtils::Liblist' => '6.82',
9000 'ExtUtils::Liblist::Kid'=> '6.82',
9001 'ExtUtils::MM' => '6.82',
9002 'ExtUtils::MM_AIX' => '6.82',
9003 'ExtUtils::MM_Any' => '6.82',
9004 'ExtUtils::MM_BeOS' => '6.82',
9005 'ExtUtils::MM_Cygwin' => '6.82',
9006 'ExtUtils::MM_DOS' => '6.82',
9007 'ExtUtils::MM_Darwin' => '6.82',
9008 'ExtUtils::MM_MacOS' => '6.82',
9009 'ExtUtils::MM_NW5' => '6.82',
9010 'ExtUtils::MM_OS2' => '6.82',
9011 'ExtUtils::MM_QNX' => '6.82',
9012 'ExtUtils::MM_UWIN' => '6.82',
9013 'ExtUtils::MM_Unix' => '6.82',
9014 'ExtUtils::MM_VMS' => '6.82',
9015 'ExtUtils::MM_VOS' => '6.82',
9016 'ExtUtils::MM_Win32' => '6.82',
9017 'ExtUtils::MM_Win95' => '6.82',
9018 'ExtUtils::MY' => '6.82',
9019 'ExtUtils::MakeMaker' => '6.82',
9020 'ExtUtils::MakeMaker::Config'=> '6.82',
9021 'ExtUtils::Mkbootstrap' => '6.82',
9022 'ExtUtils::Mksymlists' => '6.82',
9023 'ExtUtils::testlib' => '6.82',
9024 'File::DosGlob' => '1.12',
9025 'File::Find' => '1.26',
9026 'File::Glob' => '1.23',
9027 'HTTP::Tiny' => '0.038',
9028 'IO' => '1.30',
9029 'IO::Compress::Adapter::Bzip2'=> '2.063',
9030 'IO::Compress::Adapter::Deflate'=> '2.063',
9031 'IO::Compress::Adapter::Identity'=> '2.063',
9032 'IO::Compress::Base' => '2.063',
9033 'IO::Compress::Base::Common'=> '2.063',
9034 'IO::Compress::Bzip2' => '2.063',
9035 'IO::Compress::Deflate' => '2.063',
9036 'IO::Compress::Gzip' => '2.063',
9037 'IO::Compress::Gzip::Constants'=> '2.063',
9038 'IO::Compress::RawDeflate'=> '2.063',
9039 'IO::Compress::Zip' => '2.063',
9040 'IO::Compress::Zip::Constants'=> '2.063',
9041 'IO::Compress::Zlib::Constants'=> '2.063',
9042 'IO::Compress::Zlib::Extra'=> '2.063',
9043 'IO::Select' => '1.22',
9044 'IO::Uncompress::Adapter::Bunzip2'=> '2.063',
9045 'IO::Uncompress::Adapter::Identity'=> '2.063',
9046 'IO::Uncompress::Adapter::Inflate'=> '2.063',
9047 'IO::Uncompress::AnyInflate'=> '2.063',
9048 'IO::Uncompress::AnyUncompress'=> '2.063',
9049 'IO::Uncompress::Base' => '2.063',
9050 'IO::Uncompress::Bunzip2'=> '2.063',
9051 'IO::Uncompress::Gunzip'=> '2.063',
9052 'IO::Uncompress::Inflate'=> '2.063',
9053 'IO::Uncompress::RawInflate'=> '2.063',
9054 'IO::Uncompress::Unzip' => '2.063',
9055 'IPC::Cmd' => '0.90',
9056 'Locale::Maketext' => '1.25',
9057 'Module::Build' => '0.4202',
9058 'Module::Build::Base' => '0.4202',
9059 'Module::Build::Compat' => '0.4202',
9060 'Module::Build::Config' => '0.4202',
9061 'Module::Build::Cookbook'=> '0.4202',
9062 'Module::Build::Dumper' => '0.4202',
9063 'Module::Build::ModuleInfo'=> '0.4202',
9064 'Module::Build::Notes' => '0.4202',
9065 'Module::Build::PPMMaker'=> '0.4202',
9066 'Module::Build::Platform::Default'=> '0.4202',
9067 'Module::Build::Platform::MacOS'=> '0.4202',
9068 'Module::Build::Platform::Unix'=> '0.4202',
9069 'Module::Build::Platform::VMS'=> '0.4202',
9070 'Module::Build::Platform::VOS'=> '0.4202',
9071 'Module::Build::Platform::Windows'=> '0.4202',
9072 'Module::Build::Platform::aix'=> '0.4202',
9073 'Module::Build::Platform::cygwin'=> '0.4202',
9074 'Module::Build::Platform::darwin'=> '0.4202',
9075 'Module::Build::Platform::os2'=> '0.4202',
9076 'Module::Build::PodParser'=> '0.4202',
494bd897
SH
9077 'Module::CoreList' => '3.01',
9078 'Module::CoreList::TieHashDelta'=> '3.01',
9079 'Module::CoreList::Utils'=> '3.01',
1f2fd626
CBW
9080 'Opcode' => '1.27',
9081 'POSIX' => '1.36',
9082 'Package::Constants' => '0.04',
9083 'PerlIO::scalar' => '0.18',
9084 'PerlIO::via' => '0.13',
9085 'SDBM_File' => '1.10',
9086 'Socket' => '2.013',
9087 'TAP::Base' => '3.30',
9088 'TAP::Formatter::Base' => '3.30',
9089 'TAP::Formatter::Color' => '3.30',
9090 'TAP::Formatter::Console'=> '3.30',
9091 'TAP::Formatter::Console::ParallelSession'=> '3.30',
9092 'TAP::Formatter::Console::Session'=> '3.30',
9093 'TAP::Formatter::File' => '3.30',
9094 'TAP::Formatter::File::Session'=> '3.30',
9095 'TAP::Formatter::Session'=> '3.30',
9096 'TAP::Harness' => '3.30',
9097 'TAP::Harness::Env' => '3.30',
9098 'TAP::Object' => '3.30',
9099 'TAP::Parser' => '3.30',
9100 'TAP::Parser::Aggregator'=> '3.30',
9101 'TAP::Parser::Grammar' => '3.30',
9102 'TAP::Parser::Iterator' => '3.30',
9103 'TAP::Parser::Iterator::Array'=> '3.30',
9104 'TAP::Parser::Iterator::Process'=> '3.30',
9105 'TAP::Parser::Iterator::Stream'=> '3.30',
9106 'TAP::Parser::IteratorFactory'=> '3.30',
9107 'TAP::Parser::Multiplexer'=> '3.30',
9108 'TAP::Parser::Result' => '3.30',
9109 'TAP::Parser::Result::Bailout'=> '3.30',
9110 'TAP::Parser::Result::Comment'=> '3.30',
9111 'TAP::Parser::Result::Plan'=> '3.30',
9112 'TAP::Parser::Result::Pragma'=> '3.30',
9113 'TAP::Parser::Result::Test'=> '3.30',
9114 'TAP::Parser::Result::Unknown'=> '3.30',
9115 'TAP::Parser::Result::Version'=> '3.30',
9116 'TAP::Parser::Result::YAML'=> '3.30',
9117 'TAP::Parser::ResultFactory'=> '3.30',
9118 'TAP::Parser::Scheduler'=> '3.30',
9119 'TAP::Parser::Scheduler::Job'=> '3.30',
9120 'TAP::Parser::Scheduler::Spinner'=> '3.30',
9121 'TAP::Parser::Source' => '3.30',
9122 'TAP::Parser::SourceHandler'=> '3.30',
9123 'TAP::Parser::SourceHandler::Executable'=> '3.30',
9124 'TAP::Parser::SourceHandler::File'=> '3.30',
9125 'TAP::Parser::SourceHandler::Handle'=> '3.30',
9126 'TAP::Parser::SourceHandler::Perl'=> '3.30',
9127 'TAP::Parser::SourceHandler::RawTAP'=> '3.30',
9128 'TAP::Parser::YAMLish::Reader'=> '3.30',
9129 'TAP::Parser::YAMLish::Writer'=> '3.30',
9130 'Term::Cap' => '1.15',
9131 'Test::Builder' => '1.001002',
9132 'Test::Builder::Module' => '1.001002',
9133 'Test::Harness' => '3.30',
9134 'Test::More' => '1.001002',
9135 'Test::Simple' => '1.001002',
9136 'Tie::StdHandle' => '4.4',
9137 'Unicode::Collate' => '1.02',
9138 'Unicode::Collate::CJK::Korean'=> '1.02',
9139 'Unicode::Collate::Locale'=> '1.02',
9140 'XS::APItest' => '0.57',
9141 'XS::Typemap' => '0.12',
9142 'arybase' => '0.07',
9143 'bignum' => '0.37',
9144 'constant' => '1.29',
9145 'fields' => '2.17',
9146 'inc::latest' => '0.4202',
9147 'threads' => '1.90',
9148 'threads::shared' => '1.45',
494bd897
SH
9149 },
9150 removed => {
9151 }
9152 },
b3f76264
CBW
9153 5.019007 => {
9154 delta_from => 5.019006,
9155 changed => {
95eb96f3
A
9156 'CGI' => '3.64',
9157 'CGI::Apache' => '1.02',
9158 'CGI::Carp' => '3.64',
9159 'CGI::Cookie' => '1.31',
9160 'CGI::Fast' => '1.10',
9161 'CGI::Pretty' => '3.64',
9162 'CGI::Push' => '1.06',
9163 'CGI::Switch' => '1.02',
9164 'CGI::Util' => '3.64',
9165 'CPAN::Meta' => '2.133380',
9166 'CPAN::Meta::Converter' => '2.133380',
9167 'CPAN::Meta::Feature' => '2.133380',
9168 'CPAN::Meta::History' => '2.133380',
9169 'CPAN::Meta::Prereqs' => '2.133380',
9170 'CPAN::Meta::Spec' => '2.133380',
9171 'CPAN::Meta::Validator' => '2.133380',
b3f76264 9172 'Config' => '5.019007',
95eb96f3
A
9173 'Data::Dumper' => '2.150',
9174 'DynaLoader' => '1.22',
9175 'ExtUtils::Command::MM' => '6.84',
9176 'ExtUtils::Liblist' => '6.84',
9177 'ExtUtils::Liblist::Kid'=> '6.84',
9178 'ExtUtils::MM' => '6.84',
9179 'ExtUtils::MM_AIX' => '6.84',
9180 'ExtUtils::MM_Any' => '6.84',
9181 'ExtUtils::MM_BeOS' => '6.84',
9182 'ExtUtils::MM_Cygwin' => '6.84',
9183 'ExtUtils::MM_DOS' => '6.84',
9184 'ExtUtils::MM_Darwin' => '6.84',
9185 'ExtUtils::MM_MacOS' => '6.84',
9186 'ExtUtils::MM_NW5' => '6.84',
9187 'ExtUtils::MM_OS2' => '6.84',
9188 'ExtUtils::MM_QNX' => '6.84',
9189 'ExtUtils::MM_UWIN' => '6.84',
9190 'ExtUtils::MM_Unix' => '6.84',
9191 'ExtUtils::MM_VMS' => '6.84',
9192 'ExtUtils::MM_VOS' => '6.84',
9193 'ExtUtils::MM_Win32' => '6.84',
9194 'ExtUtils::MM_Win95' => '6.84',
9195 'ExtUtils::MY' => '6.84',
9196 'ExtUtils::MakeMaker' => '6.84',
9197 'ExtUtils::MakeMaker::Config'=> '6.84',
9198 'ExtUtils::Mkbootstrap' => '6.84',
9199 'ExtUtils::Mksymlists' => '6.84',
9200 'ExtUtils::testlib' => '6.84',
9201 'File::Fetch' => '0.46',
9202 'HTTP::Tiny' => '0.039',
9203 'Locale::Codes' => '3.28',
9204 'Locale::Codes::Constants'=> '3.28',
9205 'Locale::Codes::Country'=> '3.28',
9206 'Locale::Codes::Country_Codes'=> '3.28',
9207 'Locale::Codes::Country_Retired'=> '3.28',
9208 'Locale::Codes::Currency'=> '3.28',
9209 'Locale::Codes::Currency_Codes'=> '3.28',
9210 'Locale::Codes::Currency_Retired'=> '3.28',
9211 'Locale::Codes::LangExt'=> '3.28',
9212 'Locale::Codes::LangExt_Codes'=> '3.28',
9213 'Locale::Codes::LangExt_Retired'=> '3.28',
9214 'Locale::Codes::LangFam'=> '3.28',
9215 'Locale::Codes::LangFam_Codes'=> '3.28',
9216 'Locale::Codes::LangFam_Retired'=> '3.28',
9217 'Locale::Codes::LangVar'=> '3.28',
9218 'Locale::Codes::LangVar_Codes'=> '3.28',
9219 'Locale::Codes::LangVar_Retired'=> '3.28',
9220 'Locale::Codes::Language'=> '3.28',
9221 'Locale::Codes::Language_Codes'=> '3.28',
9222 'Locale::Codes::Language_Retired'=> '3.28',
9223 'Locale::Codes::Script' => '3.28',
9224 'Locale::Codes::Script_Codes'=> '3.28',
9225 'Locale::Codes::Script_Retired'=> '3.28',
9226 'Locale::Country' => '3.28',
9227 'Locale::Currency' => '3.28',
9228 'Locale::Language' => '3.28',
9229 'Locale::Script' => '3.28',
9230 'Module::Build' => '0.4203',
9231 'Module::Build::Base' => '0.4203',
9232 'Module::Build::Compat' => '0.4203',
9233 'Module::Build::Config' => '0.4203',
9234 'Module::Build::Cookbook'=> '0.4203',
9235 'Module::Build::Dumper' => '0.4203',
9236 'Module::Build::ModuleInfo'=> '0.4203',
9237 'Module::Build::Notes' => '0.4203',
9238 'Module::Build::PPMMaker'=> '0.4203',
9239 'Module::Build::Platform::Default'=> '0.4203',
9240 'Module::Build::Platform::MacOS'=> '0.4203',
9241 'Module::Build::Platform::Unix'=> '0.4203',
9242 'Module::Build::Platform::VMS'=> '0.4203',
9243 'Module::Build::Platform::VOS'=> '0.4203',
9244 'Module::Build::Platform::Windows'=> '0.4203',
9245 'Module::Build::Platform::aix'=> '0.4203',
9246 'Module::Build::Platform::cygwin'=> '0.4203',
9247 'Module::Build::Platform::darwin'=> '0.4203',
9248 'Module::Build::Platform::os2'=> '0.4203',
9249 'Module::Build::PodParser'=> '0.4203',
b3f76264
CBW
9250 'Module::CoreList' => '3.02',
9251 'Module::CoreList::TieHashDelta'=> '3.02',
9252 'Module::CoreList::Utils'=> '3.02',
95eb96f3
A
9253 'POSIX' => '1.37',
9254 'PathTools::Cwd' => '3.45',
9255 'PerlIO::encoding' => '0.17',
9256 'PerlIO::via' => '0.14',
9257 'SDBM_File' => '1.11',
9258 'Storable' => '2.48',
9259 'Time::Piece' => '1.24',
9260 'Time::Seconds' => '1.24',
9261 'Unicode::Collate' => '1.04',
9262 'Win32' => '0.48',
9263 'XS::APItest' => '0.58',
9264 'base' => '2.20',
9265 'constant' => '1.30',
9266 'inc::latest' => '0.4203',
9267 'threads' => '1.91',
b3f76264
CBW
9268 },
9269 removed => {
9270 }
9271 },
365f8c3e
CBW
9272 5.019008 => {
9273 delta_from => 5.019007,
9274 changed => {
9275 'Config' => '5.019008',
d0ff74ad
RS
9276 'DynaLoader' => '1.24',
9277 'Encode' => '2.57',
9278 'Errno' => '1.20_02',
9279 'ExtUtils::CBuilder' => '0.280213',
9280 'ExtUtils::CBuilder::Base'=> '0.280213',
9281 'ExtUtils::CBuilder::Platform::Unix'=> '0.280213',
9282 'ExtUtils::CBuilder::Platform::VMS'=> '0.280213',
9283 'ExtUtils::CBuilder::Platform::Windows'=> '0.280213',
9284 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213',
9285 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213',
9286 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213',
9287 'ExtUtils::CBuilder::Platform::aix'=> '0.280213',
9288 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213',
9289 'ExtUtils::CBuilder::Platform::darwin'=> '0.280213',
9290 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213',
9291 'ExtUtils::CBuilder::Platform::os2'=> '0.280213',
9292 'ExtUtils::Command::MM' => '6.86',
9293 'ExtUtils::Liblist' => '6.86',
9294 'ExtUtils::Liblist::Kid'=> '6.86',
9295 'ExtUtils::MM' => '6.86',
9296 'ExtUtils::MM_AIX' => '6.86',
9297 'ExtUtils::MM_Any' => '6.86',
9298 'ExtUtils::MM_BeOS' => '6.86',
9299 'ExtUtils::MM_Cygwin' => '6.86',
9300 'ExtUtils::MM_DOS' => '6.86',
9301 'ExtUtils::MM_Darwin' => '6.86',
9302 'ExtUtils::MM_MacOS' => '6.86',
9303 'ExtUtils::MM_NW5' => '6.86',
9304 'ExtUtils::MM_OS2' => '6.86',
9305 'ExtUtils::MM_QNX' => '6.86',
9306 'ExtUtils::MM_UWIN' => '6.86',
9307 'ExtUtils::MM_Unix' => '6.86',
9308 'ExtUtils::MM_VMS' => '6.86',
9309 'ExtUtils::MM_VOS' => '6.86',
9310 'ExtUtils::MM_Win32' => '6.86',
9311 'ExtUtils::MM_Win95' => '6.86',
9312 'ExtUtils::MY' => '6.86',
9313 'ExtUtils::MakeMaker' => '6.86',
9314 'ExtUtils::MakeMaker::Config'=> '6.86',
9315 'ExtUtils::Mkbootstrap' => '6.86',
9316 'ExtUtils::Mksymlists' => '6.86',
9317 'ExtUtils::testlib' => '6.86',
9318 'File::Copy' => '2.29',
9319 'Hash::Util::FieldHash' => '1.14',
9320 'IO::Socket::IP' => '0.26',
9321 'IO::Socket::UNIX' => '1.26',
9322 'List::Util' => '1.36',
9323 'List::Util::XS' => '1.36',
9324 'Module::Build' => '0.4204',
9325 'Module::Build::Base' => '0.4204',
9326 'Module::Build::Compat' => '0.4204',
9327 'Module::Build::Config' => '0.4204',
9328 'Module::Build::Cookbook'=> '0.4204',
9329 'Module::Build::Dumper' => '0.4204',
9330 'Module::Build::ModuleInfo'=> '0.4204',
9331 'Module::Build::Notes' => '0.4204',
9332 'Module::Build::PPMMaker'=> '0.4204',
9333 'Module::Build::Platform::Default'=> '0.4204',
9334 'Module::Build::Platform::MacOS'=> '0.4204',
9335 'Module::Build::Platform::Unix'=> '0.4204',
9336 'Module::Build::Platform::VMS'=> '0.4204',
9337 'Module::Build::Platform::VOS'=> '0.4204',
9338 'Module::Build::Platform::Windows'=> '0.4204',
9339 'Module::Build::Platform::aix'=> '0.4204',
9340 'Module::Build::Platform::cygwin'=> '0.4204',
9341 'Module::Build::Platform::darwin'=> '0.4204',
9342 'Module::Build::Platform::os2'=> '0.4204',
9343 'Module::Build::PodParser'=> '0.4204',
365f8c3e
CBW
9344 'Module::CoreList' => '3.04',
9345 'Module::CoreList::TieHashDelta'=> '3.04',
9346 'Module::CoreList::Utils'=> '3.04',
d0ff74ad
RS
9347 'Module::Load' => '0.28',
9348 'Module::Load::Conditional'=> '0.60',
9349 'Net::Config' => '1.13',
9350 'Net::FTP::A' => '1.19',
9351 'POSIX' => '1.38_01',
9352 'Perl::OSType' => '1.007',
9353 'PerlIO::encoding' => '0.18',
9354 'Pod::Perldoc' => '3.21',
9355 'Pod::Perldoc::BaseTo' => '3.21',
9356 'Pod::Perldoc::GetOptsOO'=> '3.21',
9357 'Pod::Perldoc::ToANSI' => '3.21',
9358 'Pod::Perldoc::ToChecker'=> '3.21',
9359 'Pod::Perldoc::ToMan' => '3.21',
9360 'Pod::Perldoc::ToNroff' => '3.21',
9361 'Pod::Perldoc::ToPod' => '3.21',
9362 'Pod::Perldoc::ToRtf' => '3.21',
9363 'Pod::Perldoc::ToTerm' => '3.21',
9364 'Pod::Perldoc::ToText' => '3.21',
9365 'Pod::Perldoc::ToTk' => '3.21',
9366 'Pod::Perldoc::ToXml' => '3.21',
9367 'Scalar::Util' => '1.36',
9368 'Time::Piece' => '1.27',
9369 'Time::Seconds' => '1.27',
9370 'Unicode::UCD' => '0.57',
9371 'XS::APItest' => '0.59',
9372 'XSLoader' => '0.17',
9373 'base' => '2.21',
9374 'constant' => '1.31',
9375 'inc::latest' => '0.4204',
9376 'threads::shared' => '1.46',
9377 'version' => '0.9907',
9378 'version::regex' => '0.9907',
9379 'version::vpp' => '0.9907',
9380 'warnings' => '1.21',
365f8c3e
CBW
9381 },
9382 removed => {
9383 }
9384 },
a27b5f52
CBW
9385 5.019009 => {
9386 delta_from => 5.019008,
9387 changed => {
5a39b45b
TC
9388 'B' => '1.48',
9389 'B::Concise' => '0.992',
9390 'B::Deparse' => '1.25',
9391 'CGI' => '3.65',
9392 'CPAN::Meta::YAML' => '0.011',
9393 'Compress::Raw::Bzip2' => '2.064',
9394 'Compress::Raw::Zlib' => '2.065',
9395 'Compress::Zlib' => '2.064',
a27b5f52 9396 'Config' => '5.019009',
5a39b45b
TC
9397 'Config::Perl::V' => '0.20',
9398 'Cwd' => '3.47',
9399 'Devel::Peek' => '1.16',
9400 'Digest::SHA' => '5.87',
9401 'DynaLoader' => '1.25',
9402 'English' => '1.09',
9403 'ExtUtils::CBuilder' => '0.280216',
9404 'ExtUtils::CBuilder::Base'=> '0.280216',
9405 'ExtUtils::CBuilder::Platform::Unix'=> '0.280216',
9406 'ExtUtils::CBuilder::Platform::VMS'=> '0.280216',
9407 'ExtUtils::CBuilder::Platform::Windows'=> '0.280216',
9408 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216',
9409 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216',
9410 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216',
9411 'ExtUtils::CBuilder::Platform::aix'=> '0.280216',
9412 'ExtUtils::CBuilder::Platform::android'=> '0.280216',
9413 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216',
9414 'ExtUtils::CBuilder::Platform::darwin'=> '0.280216',
9415 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216',
9416 'ExtUtils::CBuilder::Platform::os2'=> '0.280216',
9417 'ExtUtils::Command::MM' => '6.88',
9418 'ExtUtils::Embed' => '1.32',
9419 'ExtUtils::Install' => '1.62',
9420 'ExtUtils::Installed' => '1.999004',
9421 'ExtUtils::Liblist' => '6.88',
9422 'ExtUtils::Liblist::Kid'=> '6.88',
9423 'ExtUtils::MM' => '6.88',
9424 'ExtUtils::MM_AIX' => '6.88',
9425 'ExtUtils::MM_Any' => '6.88',
9426 'ExtUtils::MM_BeOS' => '6.88',
9427 'ExtUtils::MM_Cygwin' => '6.88',
9428 'ExtUtils::MM_DOS' => '6.88',
9429 'ExtUtils::MM_Darwin' => '6.88',
9430 'ExtUtils::MM_MacOS' => '6.88',
9431 'ExtUtils::MM_NW5' => '6.88',
9432 'ExtUtils::MM_OS2' => '6.88',
9433 'ExtUtils::MM_QNX' => '6.88',
9434 'ExtUtils::MM_UWIN' => '6.88',
9435 'ExtUtils::MM_Unix' => '6.88',
9436 'ExtUtils::MM_VMS' => '6.88',
9437 'ExtUtils::MM_VOS' => '6.88',
9438 'ExtUtils::MM_Win32' => '6.88',
9439 'ExtUtils::MM_Win95' => '6.88',
9440 'ExtUtils::MY' => '6.88',
9441 'ExtUtils::MakeMaker' => '6.88',
9442 'ExtUtils::MakeMaker::Config'=> '6.88',
9443 'ExtUtils::Mkbootstrap' => '6.88',
9444 'ExtUtils::Mksymlists' => '6.88',
9445 'ExtUtils::Packlist' => '1.47',
9446 'ExtUtils::testlib' => '6.88',
9447 'Fatal' => '2.23',
9448 'File::Fetch' => '0.48',
9449 'File::Spec' => '3.47',
9450 'File::Spec::Cygwin' => '3.47',
9451 'File::Spec::Epoc' => '3.47',
9452 'File::Spec::Functions' => '3.47',
9453 'File::Spec::Mac' => '3.47',
9454 'File::Spec::OS2' => '3.47',
9455 'File::Spec::Unix' => '3.47',
9456 'File::Spec::VMS' => '3.47',
9457 'File::Spec::Win32' => '3.47',
9458 'HTTP::Tiny' => '0.042',
9459 'IO::Compress::Adapter::Bzip2'=> '2.064',
9460 'IO::Compress::Adapter::Deflate'=> '2.064',
9461 'IO::Compress::Adapter::Identity'=> '2.064',
9462 'IO::Compress::Base' => '2.064',
9463 'IO::Compress::Base::Common'=> '2.064',
9464 'IO::Compress::Bzip2' => '2.064',
9465 'IO::Compress::Deflate' => '2.064',
9466 'IO::Compress::Gzip' => '2.064',
9467 'IO::Compress::Gzip::Constants'=> '2.064',
9468 'IO::Compress::RawDeflate'=> '2.064',
9469 'IO::Compress::Zip' => '2.064',
9470 'IO::Compress::Zip::Constants'=> '2.064',
9471 'IO::Compress::Zlib::Constants'=> '2.064',
9472 'IO::Compress::Zlib::Extra'=> '2.064',
9473 'IO::Socket::INET' => '1.35',
9474 'IO::Socket::IP' => '0.28',
9475 'IO::Uncompress::Adapter::Bunzip2'=> '2.064',
9476 'IO::Uncompress::Adapter::Identity'=> '2.064',
9477 'IO::Uncompress::Adapter::Inflate'=> '2.064',
9478 'IO::Uncompress::AnyInflate'=> '2.064',
9479 'IO::Uncompress::AnyUncompress'=> '2.064',
9480 'IO::Uncompress::Base' => '2.064',
9481 'IO::Uncompress::Bunzip2'=> '2.064',
9482 'IO::Uncompress::Gunzip'=> '2.064',
9483 'IO::Uncompress::Inflate'=> '2.064',
9484 'IO::Uncompress::RawInflate'=> '2.064',
9485 'IO::Uncompress::Unzip' => '2.064',
9486 'IPC::Cmd' => '0.92',
9487 'List::Util' => '1.38',
9488 'List::Util::XS' => '1.38',
9489 'Locale::Codes' => '3.29',
9490 'Locale::Codes::Constants'=> '3.29',
9491 'Locale::Codes::Country'=> '3.29',
9492 'Locale::Codes::Country_Codes'=> '3.29',
9493 'Locale::Codes::Country_Retired'=> '3.29',
9494 'Locale::Codes::Currency'=> '3.29',
9495 'Locale::Codes::Currency_Codes'=> '3.29',
9496 'Locale::Codes::Currency_Retired'=> '3.29',
9497 'Locale::Codes::LangExt'=> '3.29',
9498 'Locale::Codes::LangExt_Codes'=> '3.29',
9499 'Locale::Codes::LangExt_Retired'=> '3.29',
9500 'Locale::Codes::LangFam'=> '3.29',
9501 'Locale::Codes::LangFam_Codes'=> '3.29',
9502 'Locale::Codes::LangFam_Retired'=> '3.29',
9503 'Locale::Codes::LangVar'=> '3.29',
9504 'Locale::Codes::LangVar_Codes'=> '3.29',
9505 'Locale::Codes::LangVar_Retired'=> '3.29',
9506 'Locale::Codes::Language'=> '3.29',
9507 'Locale::Codes::Language_Codes'=> '3.29',
9508 'Locale::Codes::Language_Retired'=> '3.29',
9509 'Locale::Codes::Script' => '3.29',
9510 'Locale::Codes::Script_Codes'=> '3.29',
9511 'Locale::Codes::Script_Retired'=> '3.29',
9512 'Locale::Country' => '3.29',
9513 'Locale::Currency' => '3.29',
9514 'Locale::Language' => '3.29',
9515 'Locale::Script' => '3.29',
9516 'Module::Build' => '0.4205',
9517 'Module::Build::Base' => '0.4205',
9518 'Module::Build::Compat' => '0.4205',
9519 'Module::Build::Config' => '0.4205',
9520 'Module::Build::Cookbook'=> '0.4205',
9521 'Module::Build::Dumper' => '0.4205',
9522 'Module::Build::ModuleInfo'=> '0.4205',
9523 'Module::Build::Notes' => '0.4205',
9524 'Module::Build::PPMMaker'=> '0.4205',
9525 'Module::Build::Platform::Default'=> '0.4205',
9526 'Module::Build::Platform::MacOS'=> '0.4205',
9527 'Module::Build::Platform::Unix'=> '0.4205',
9528 'Module::Build::Platform::VMS'=> '0.4205',
9529 'Module::Build::Platform::VOS'=> '0.4205',
9530 'Module::Build::Platform::Windows'=> '0.4205',
9531 'Module::Build::Platform::aix'=> '0.4205',
9532 'Module::Build::Platform::cygwin'=> '0.4205',
9533 'Module::Build::Platform::darwin'=> '0.4205',
9534 'Module::Build::Platform::os2'=> '0.4205',
9535 'Module::Build::PodParser'=> '0.4205',
9536 'Module::CoreList' => '3.06',
9537 'Module::CoreList::TieHashDelta'=> '3.06',
9538 'Module::CoreList::Utils'=> '3.06',
9539 'Module::Load' => '0.30',
9540 'Module::Load::Conditional'=> '0.62',
9541 'Net::Domain' => '2.23',
9542 'Net::FTP' => '2.79',
9543 'Net::NNTP' => '2.26',
9544 'Net::POP3' => '2.31',
9545 'Net::Ping' => '2.43',
9546 'Net::SMTP' => '2.33',
9547 'POSIX' => '1.38_02',
9548 'Parse::CPAN::Meta' => '1.4413',
9549 'PathTools::Cwd' => '3.47',
9550 'Pod::Escapes' => '1.06',
9551 'Pod::Find' => '1.62',
9552 'Pod::InputObjects' => '1.62',
9553 'Pod::ParseUtils' => '1.62',
9554 'Pod::Parser' => '1.62',
9555 'Pod::Select' => '1.62',
9556 'Scalar::Util' => '1.38',
9557 'autodie' => '2.23',
9558 'autodie::exception' => '2.23',
9559 'autodie::exception::system'=> '2.23',
9560 'autodie::hints' => '2.23',
9561 'autodie::skip' => '2.23',
9562 'diagnostics' => '1.34',
9563 'feature' => '1.35',
9564 'inc::latest' => '0.4205',
9565 'locale' => '1.03',
9566 'mro' => '1.15',
9567 'threads' => '1.92',
9568 'version' => '0.9908',
9569 'version::regex' => '0.9908',
9570 'version::vpp' => '0.9908',
9571 'warnings' => '1.22',
a27b5f52
CBW
9572 },
9573 removed => {
9574 }
9575 },
cda59a31 9576);
8f2fd531 9577
2a21e867
NB
9578sub is_core
9579{
9580 my $module = shift;
9581 $module = shift if eval { $module->isa(__PACKAGE__) } && @_ > 0 && defined($_[0]) && $_[0] =~ /^\w/;
9582 my ($module_version, $perl_version);
9583
9584 $module_version = shift if @_ > 0;
b90b52e0 9585 $perl_version = @_ > 0 ? shift : $];
2a21e867
NB
9586
9587 my $first_release = first_release($module);
9588
9589 return 0 if !defined($first_release) || $first_release > $perl_version;
9590
9591 my $final_release = removed_from($module);
9592
9593 return 0 if defined($final_release) && $perl_version > $final_release;
9594
9595 # If a minimum version of the module was specified:
717ace6e
NB
9596 # Step through all perl releases ($prn)
9597 # so we can find what version of the module
2a21e867
NB
9598 # was included in the specified version of perl.
9599 # On the way if we pass the required module version, we can
9600 # short-circuit and return true
9601 if (defined($module_version)) {
717ace6e
NB
9602 # The Perl releases aren't a linear sequence, but a tree. We need to build the path
9603 # of releases from 5 to the specified release, and follow the module's version(s)
9604 # along that path.
9605 my @releases = ($perl_version);
9606 my $rel = $perl_version;
9607 while (defined($rel)) {
9608 $rel = $delta{$rel}->{delta_from};
9609 unshift(@releases, $rel) if defined($rel);
9610 }
2a21e867 9611 RELEASE:
717ace6e 9612 foreach my $prn (@releases) {
2a21e867
NB
9613 next RELEASE if $prn <= $first_release;
9614 last RELEASE if $prn > $perl_version;
9615 next unless defined(my $next_module_version
9616 = $delta{$prn}->{changed}->{$module});
74921e08 9617 return 1 if version->parse($next_module_version) >= version->parse($module_version);
2a21e867
NB
9618 }
9619 return 0;
9620 }
9621
9622 return 1 if !defined($final_release);
9623
9624 return $perl_version <= $final_release;
9625}
9626
a272bf38
DL
9627for my $version (sort { $a <=> $b } keys %delta) {
9628 my $data = $delta{$version};
9629
9630 tie %{$version{$version}}, 'Module::CoreList::TieHashDelta',
9631 $data->{changed}, $data->{removed},
9632 $data->{delta_from} ? $version{$data->{delta_from}} : undef;
9633}
9634
a762e054 9635%deprecated = (
5ff416ff
MD
9636 5.011 => {
9637 changed => { map { $_ => 1 } qw/
9638 Class::ISA
9639 Pod::Plainer
9640 Shell
9641 Switch
9642 /},
9643 },
9644 5.011001 => { delta_from => 5.011 },
9645 5.011002 => { delta_from => 5.011001 },
9646 5.011003 => { delta_from => 5.011002 },
9647 5.011004 => { delta_from => 5.011003 },
9648 5.011005 => { delta_from => 5.011004 },
9649
9650 5.012 => { delta_from => 5.011005 },
9651 5.012001 => { delta_from => 5.012 },
9652 5.012002 => { delta_from => 5.012001 },
9653 5.012003 => { delta_from => 5.012002 },
9654 5.012004 => { delta_from => 5.012003 },
9655 5.012005 => { delta_from => 5.012004 },
9656
9657 5.013 => { delta_from => 5.012005 },
30570232 9658 5.013001 => {
5ff416ff
MD
9659 delta_from => 5.013,
9660 removed => { map { $_ => 1 } qw/
9661 Class::ISA
9662 Pod::Plainer
9663 Switch
9664 /},
9665 },
9666 5.013002 => { delta_from => 5.013001 },
9667 5.013003 => { delta_from => 5.013002 },
9668 5.013004 => { delta_from => 5.013003 },
9669 5.013005 => { delta_from => 5.013004 },
9670 5.013006 => { delta_from => 5.013005 },
9671 5.013007 => { delta_from => 5.013006 },
9672 5.013008 => { delta_from => 5.013007 },
9673 5.013009 => { delta_from => 5.013008 },
9674 5.01301 => { delta_from => 5.013009 },
9675 5.013011 => { delta_from => 5.01301 },
9676
9677 5.014 => { delta_from => 5.013011 },
9678 5.014001 => { delta_from => 5.014 },
9679 5.014002 => { delta_from => 5.014001 },
9680 5.014003 => { delta_from => 5.014002 },
9681 5.014004 => { delta_from => 5.014003 },
9682
9683 5.015 => {
9684 delta_from => 5.014004,
9685 removed => { Shell => 1 },
9686 },
9687 5.015001 => { delta_from => 5.015 },
9688 5.015002 => { delta_from => 5.015001 },
9689 5.015003 => { delta_from => 5.015002 },
9690 5.015004 => { delta_from => 5.015003 },
9691 5.015005 => { delta_from => 5.015004 },
9692 5.015006 => { delta_from => 5.015005 },
9693 5.015007 => { delta_from => 5.015006 },
9694 5.015008 => { delta_from => 5.015007 },
9695 5.015009 => { delta_from => 5.015008 },
9696
9697 5.016 => { delta_from => 5.015009 },
9698 5.016001 => { delta_from => 5.016 },
9699 5.016002 => { delta_from => 5.016001 },
9700 5.016003 => { delta_from => 5.016002 },
9701
9702 5.017 => { delta_from => 5.016003 },
9703 5.017001 => { delta_from => 5.017 },
9704 5.017002 => { delta_from => 5.017001 },
9705 5.017003 => { delta_from => 5.017002 },
9706 5.017004 => { delta_from => 5.017003 },
9707 5.017005 => { delta_from => 5.017004 },
9708 5.017006 => { delta_from => 5.017005 },
9709 5.017007 => { delta_from => 5.017006 },
dd4b1c75 9710 5.017008 => {
5ff416ff
MD
9711 delta_from => 5.017007,
9712 changed => { 'Pod::LaTeX' => 1 },
299c740c
CBW
9713 },
9714 5.017009 => {
5ff416ff
MD
9715 delta_from => 5.017008,
9716 changed => { map { $_ => 1 } qw/
9717 Archive::Extract
9718 B::Lint
9719 B::Lint::Debug
9720 CPANPLUS
9721 CPANPLUS::Backend
9722 CPANPLUS::Backend::RV
9723 CPANPLUS::Config
9724 CPANPLUS::Config::HomeEnv
9725 CPANPLUS::Configure
9726 CPANPLUS::Configure::Setup
9727 CPANPLUS::Dist
9728 CPANPLUS::Dist::Autobundle
9729 CPANPLUS::Dist::Base
9730 CPANPLUS::Dist::Build
9731 CPANPLUS::Dist::Build::Constants
9732 CPANPLUS::Dist::MM
9733 CPANPLUS::Dist::Sample
9734 CPANPLUS::Error
9735 CPANPLUS::Internals
9736 CPANPLUS::Internals::Constants
9737 CPANPLUS::Internals::Constants::Report
9738 CPANPLUS::Internals::Extract
9739 CPANPLUS::Internals::Fetch
9740 CPANPLUS::Internals::Report
9741 CPANPLUS::Internals::Search
9742 CPANPLUS::Internals::Source
9743 CPANPLUS::Internals::Source::Memory
9744 CPANPLUS::Internals::Source::SQLite
9745 CPANPLUS::Internals::Source::SQLite::Tie
9746 CPANPLUS::Internals::Utils
9747 CPANPLUS::Internals::Utils::Autoflush
9748 CPANPLUS::Module
9749 CPANPLUS::Module::Author
9750 CPANPLUS::Module::Author::Fake
9751 CPANPLUS::Module::Checksums
9752 CPANPLUS::Module::Fake
9753 CPANPLUS::Module::Signature
9754 CPANPLUS::Selfupdate
9755 CPANPLUS::Shell
9756 CPANPLUS::Shell::Classic
9757 CPANPLUS::Shell::Default
9758 CPANPLUS::Shell::Default::Plugins::CustomSource
9759 CPANPLUS::Shell::Default::Plugins::Remote
9760 CPANPLUS::Shell::Default::Plugins::Source
9761 Devel::InnerPackage
230125ea 9762 File::CheckTree
5ff416ff
MD
9763 Log::Message
9764 Log::Message::Config
9765 Log::Message::Handlers
9766 Log::Message::Item
9767 Log::Message::Simple
9768 Module::Pluggable
9769 Module::Pluggable::Object
9770 Object::Accessor
9771 Term::UI
9772 Term::UI::History
230125ea 9773 Text::Soundex
5ff416ff
MD
9774 /},
9775 },
9776 5.01701 => { delta_from => 5.017009 },
9777 5.017011 => { delta_from => 5.01701 },
9778 5.017012 => { delta_from => 5.017011 },
9779
9780 5.018 => { delta_from => 5.017012 },
ba4dd7ef
RS
9781 5.018001 => {
9782 delta_from => 5.018,
9783 changed => {
9784 },
9785 removed => {
9786 }
9787 },
6c2a7b42
CBW
9788 5.018002 => {
9789 delta_from => 5.018001,
9790 changed => {
9791 },
9792 removed => {
9793 }
9794 },
5ff416ff
MD
9795
9796 5.019 => {
9797 delta_from => 5.018,
93980676 9798 changed => { 'Module::Build' => 1 },
5ff416ff
MD
9799 removed => { map { $_ => 1 } qw/
9800 Archive::Extract
9801 B::Lint
9802 B::Lint::Debug
9803 CPANPLUS
9804 CPANPLUS::Backend
9805 CPANPLUS::Backend::RV
9806 CPANPLUS::Config
9807 CPANPLUS::Config::HomeEnv
9808 CPANPLUS::Configure
9809 CPANPLUS::Configure::Setup
9810 CPANPLUS::Dist
9811 CPANPLUS::Dist::Autobundle
9812 CPANPLUS::Dist::Base
9813 CPANPLUS::Dist::Build
9814 CPANPLUS::Dist::Build::Constants
9815 CPANPLUS::Dist::MM
9816 CPANPLUS::Dist::Sample
9817 CPANPLUS::Error
9818 CPANPLUS::Internals
9819 CPANPLUS::Internals::Constants
9820 CPANPLUS::Internals::Constants::Report
9821 CPANPLUS::Internals::Extract
9822 CPANPLUS::Internals::Fetch
9823 CPANPLUS::Internals::Report
9824 CPANPLUS::Internals::Search
9825 CPANPLUS::Internals::Source
9826 CPANPLUS::Internals::Source::Memory
9827 CPANPLUS::Internals::Source::SQLite
9828 CPANPLUS::Internals::Source::SQLite::Tie
9829 CPANPLUS::Internals::Utils
9830 CPANPLUS::Internals::Utils::Autoflush
9831 CPANPLUS::Module
9832 CPANPLUS::Module::Author
9833 CPANPLUS::Module::Author::Fake
9834 CPANPLUS::Module::Checksums
9835 CPANPLUS::Module::Fake
9836 CPANPLUS::Module::Signature
9837 CPANPLUS::Selfupdate
9838 CPANPLUS::Shell
9839 CPANPLUS::Shell::Classic
9840 CPANPLUS::Shell::Default
9841 CPANPLUS::Shell::Default::Plugins::CustomSource
9842 CPANPLUS::Shell::Default::Plugins::Remote
9843 CPANPLUS::Shell::Default::Plugins::Source
9844 Devel::InnerPackage
230125ea 9845 File::CheckTree
5ff416ff
MD
9846 Log::Message
9847 Log::Message::Config
9848 Log::Message::Handlers
9849 Log::Message::Item
9850 Log::Message::Simple
9851 Module::Pluggable
9852 Module::Pluggable::Object
9853 Object::Accessor
9854 Pod::LaTeX
9855 Term::UI
9856 Term::UI::History
230125ea 9857 Text::Soundex
5ff416ff 9858 /}
38a400f2 9859 },
2f4a2205
DG
9860 5.019001 => {
9861 delta_from => 5.019,
9862 changed => {
9863 },
9864 removed => {
9865 }
9866 },
d04adc20 9867 5.019002 => {
1f0ad552 9868 delta_from => 5.019001,
d04adc20 9869 changed => {
a7e68be8
AP
9870 },
9871 removed => {
9872 }
9873 },
9874 5.019003 => {
9875 delta_from => 5.019002,
9876 changed => {
d04adc20
DG
9877 },
9878 removed => {
9879 }
9880 },
37287258
SH
9881 5.019004 => {
9882 delta_from => 5.019003,
9883 changed => {
62de23d1
SH
9884 'Module::Build::Base' => '1',
9885 'Module::Build::Compat' => '1',
9886 'Module::Build::Config' => '1',
9887 'Module::Build::ConfigData'=> '1',
9888 'Module::Build::Cookbook'=> '1',
9889 'Module::Build::Dumper' => '1',
9890 'Module::Build::ModuleInfo'=> '1',
9891 'Module::Build::Notes' => '1',
9892 'Module::Build::PPMMaker'=> '1',
9893 'Module::Build::Platform::Default'=> '1',
9894 'Module::Build::Platform::MacOS'=> '1',
9895 'Module::Build::Platform::Unix'=> '1',
9896 'Module::Build::Platform::VMS'=> '1',
9897 'Module::Build::Platform::VOS'=> '1',
9898 'Module::Build::Platform::Windows'=> '1',
9899 'Module::Build::Platform::aix'=> '1',
9900 'Module::Build::Platform::cygwin'=> '1',
9901 'Module::Build::Platform::darwin'=> '1',
9902 'Module::Build::Platform::os2'=> '1',
9903 'Module::Build::PodParser'=> '1',
9904 'Module::Build::Version'=> '1',
9905 'Module::Build::YAML' => '1',
9906 'inc::latest' => '1',
37287258
SH
9907 },
9908 removed => {
9909 }
9910 },
fa5fbb39
SH
9911 5.019005 => {
9912 delta_from => 5.019004,
9913 changed => {
9914 },
9915 removed => {
9916 }
9917 },
494bd897
SH
9918 5.019006 => {
9919 delta_from => 5.019005,
9920 changed => {
1f2fd626 9921 'Package::Constants' => '1',
494bd897
SH
9922 },
9923 removed => {
9924 }
9925 },
b3f76264
CBW
9926 5.019007 => {
9927 delta_from => 5.019006,
9928 changed => {
95eb96f3
A
9929 'CGI' => '1',
9930 'CGI::Apache' => '1',
9931 'CGI::Carp' => '1',
9932 'CGI::Cookie' => '1',
9933 'CGI::Fast' => '1',
9934 'CGI::Pretty' => '1',
9935 'CGI::Push' => '1',
9936 'CGI::Switch' => '1',
9937 'CGI::Util' => '1',
b3f76264
CBW
9938 },
9939 removed => {
9940 }
9941 },
365f8c3e
CBW
9942 5.019008 => {
9943 delta_from => 5.019007,
9944 changed => {
9945 },
9946 removed => {
9947 }
9948 },
a27b5f52
CBW
9949 5.019009 => {
9950 delta_from => 5.019008,
9951 changed => {
9952 },
9953 removed => {
9954 }
9955 },
a762e054
DG
9956);
9957
5ff416ff
MD
9958for my $version (sort { $a <=> $b } keys %deprecated) {
9959 my $data = $deprecated{$version};
9960
9961 tie %{ $deprecated{$version} }, 'Module::CoreList::TieHashDelta',
9962 $data->{changed}, $data->{removed},
9963 $data->{delta_from} ? $deprecated{ $data->{delta_from} } : undef;
9964}
9965
29cab1c7 9966%upstream = (
65f8b4e7 9967 'App::Cpan' => 'cpan',
a4729c0f
DG
9968 'App::Prove' => 'cpan',
9969 'App::Prove::State' => 'cpan',
9970 'App::Prove::State::Result'=> 'cpan',
9971 'App::Prove::State::Result::Test'=> 'cpan',
29cab1c7
NC
9972 'Archive::Tar' => 'cpan',
9973 'Archive::Tar::Constant'=> 'cpan',
9974 'Archive::Tar::File' => 'cpan',
29cab1c7
NC
9975 'AutoLoader' => 'cpan',
9976 'AutoSplit' => 'cpan',
0530d763 9977 'B::Debug' => 'cpan',
979b9961
JV
9978 'CGI' => 'cpan',
9979 'CGI::Apache' => 'cpan',
9980 'CGI::Carp' => 'cpan',
9981 'CGI::Cookie' => 'cpan',
9982 'CGI::Fast' => 'cpan',
9983 'CGI::Pretty' => 'cpan',
9984 'CGI::Push' => 'cpan',
9985 'CGI::Switch' => 'cpan',
9986 'CGI::Util' => 'cpan',
24081a3a
JV
9987 'CPAN' => 'cpan',
9988 'CPAN::Author' => 'cpan',
9989 'CPAN::Bundle' => 'cpan',
9990 'CPAN::CacheMgr' => 'cpan',
9991 'CPAN::Complete' => 'cpan',
9992 'CPAN::Debug' => 'cpan',
9993 'CPAN::DeferredCode' => 'cpan',
9994 'CPAN::Distribution' => 'cpan',
9995 'CPAN::Distroprefs' => 'cpan',
9996 'CPAN::Distrostatus' => 'cpan',
9997 'CPAN::Exception::RecursiveDependency'=> 'cpan',
9998 'CPAN::Exception::blocked_urllist'=> 'cpan',
9999 'CPAN::Exception::yaml_not_installed'=> 'cpan',
2f183b41 10000 'CPAN::Exception::yaml_process_error'=> 'cpan',
24081a3a
JV
10001 'CPAN::FTP' => 'cpan',
10002 'CPAN::FTP::netrc' => 'cpan',
10003 'CPAN::FirstTime' => 'cpan',
e0698539
JV
10004 'CPAN::HTTP::Client' => 'cpan',
10005 'CPAN::HTTP::Credentials'=> 'cpan',
24081a3a
JV
10006 'CPAN::HandleConfig' => 'cpan',
10007 'CPAN::Index' => 'cpan',
10008 'CPAN::InfoObj' => 'cpan',
10009 'CPAN::Kwalify' => 'cpan',
10010 'CPAN::LWP::UserAgent' => 'cpan',
c552c5b5
AB
10011 'CPAN::Meta' => 'cpan',
10012 'CPAN::Meta::Converter' => 'cpan',
10013 'CPAN::Meta::Feature' => 'cpan',
10014 'CPAN::Meta::History' => 'cpan',
10015 'CPAN::Meta::Prereqs' => 'cpan',
b240fc0f 10016 'CPAN::Meta::Requirements'=> 'cpan',
c552c5b5
AB
10017 'CPAN::Meta::Spec' => 'cpan',
10018 'CPAN::Meta::Validator' => 'cpan',
e0698539 10019 'CPAN::Meta::YAML' => 'cpan',
65f8b4e7 10020 'CPAN::Mirrors' => 'cpan',
24081a3a
JV
10021 'CPAN::Module' => 'cpan',
10022 'CPAN::Nox' => 'cpan',
10023 'CPAN::Prompt' => 'cpan',
10024 'CPAN::Queue' => 'cpan',
10025 'CPAN::Shell' => 'cpan',
10026 'CPAN::Tarzip' => 'cpan',
10027 'CPAN::URL' => 'cpan',
10028 'CPAN::Version' => 'cpan',
7529c15c
FR
10029 'Compress::Raw::Bzip2' => 'cpan',
10030 'Compress::Raw::Zlib' => 'cpan',
979b9961 10031 'Compress::Zlib' => 'cpan',
52f6865c 10032 'Config::Perl::V' => 'cpan',
f50587e0 10033 'DB_File' => 'cpan',
19c1ec11 10034 'Devel::PPPort' => 'cpan',
0530d763
SH
10035 'Digest' => 'cpan',
10036 'Digest::MD5' => 'cpan',
a4729c0f 10037 'Digest::SHA' => 'cpan',
0530d763
SH
10038 'Digest::base' => 'cpan',
10039 'Digest::file' => 'cpan',
67dbc274
Z
10040 'Encode' => 'cpan',
10041 'Encode::Alias' => 'cpan',
10042 'Encode::Byte' => 'cpan',
10043 'Encode::CJKConstants' => 'cpan',
10044 'Encode::CN' => 'cpan',
10045 'Encode::CN::HZ' => 'cpan',
10046 'Encode::Config' => 'cpan',
10047 'Encode::EBCDIC' => 'cpan',
10048 'Encode::Encoder' => 'cpan',
10049 'Encode::Encoding' => 'cpan',
10050 'Encode::GSM0338' => 'cpan',
10051 'Encode::Guess' => 'cpan',
10052 'Encode::JP' => 'cpan',
10053 'Encode::JP::H2Z' => 'cpan',
10054 'Encode::JP::JIS7' => 'cpan',
10055 'Encode::KR' => 'cpan',
10056 'Encode::KR::2022_KR' => 'cpan',
10057 'Encode::MIME::Header' => 'cpan',
10058 'Encode::MIME::Header::ISO_2022_JP'=> 'cpan',
10059 'Encode::MIME::Name' => 'cpan',
10060 'Encode::Symbol' => 'cpan',
10061 'Encode::TW' => 'cpan',
10062 'Encode::Unicode' => 'cpan',
10063 'Encode::Unicode::UTF7' => 'cpan',
62de23d1 10064 'ExtUtils::Command::MM' => 'cpan',
19c1ec11
SH
10065 'ExtUtils::Constant' => 'cpan',
10066 'ExtUtils::Constant::Base'=> 'cpan',
10067 'ExtUtils::Constant::ProxySubs'=> 'cpan',
10068 'ExtUtils::Constant::Utils'=> 'cpan',
10069 'ExtUtils::Constant::XS'=> 'cpan',
62de23d1
SH
10070 'ExtUtils::Liblist' => 'cpan',
10071 'ExtUtils::Liblist::Kid'=> 'cpan',
10072 'ExtUtils::MM' => 'cpan',
10073 'ExtUtils::MM_AIX' => 'cpan',
10074 'ExtUtils::MM_Any' => 'cpan',
10075 'ExtUtils::MM_BeOS' => 'cpan',
10076 'ExtUtils::MM_Cygwin' => 'cpan',
10077 'ExtUtils::MM_DOS' => 'cpan',
10078 'ExtUtils::MM_Darwin' => 'cpan',
10079 'ExtUtils::MM_MacOS' => 'cpan',
10080 'ExtUtils::MM_NW5' => 'cpan',
10081 'ExtUtils::MM_OS2' => 'cpan',
10082 'ExtUtils::MM_QNX' => 'cpan',
10083 'ExtUtils::MM_UWIN' => 'cpan',
10084 'ExtUtils::MM_Unix' => 'cpan',
10085 'ExtUtils::MM_VMS' => 'cpan',
10086 'ExtUtils::MM_VOS' => 'cpan',
10087 'ExtUtils::MM_Win32' => 'cpan',
10088 'ExtUtils::MM_Win95' => 'cpan',
10089 'ExtUtils::MY' => 'cpan',
10090 'ExtUtils::MakeMaker' => 'cpan',
10091 'ExtUtils::MakeMaker::Config'=> 'cpan',
10092 'ExtUtils::Mkbootstrap' => 'cpan',
10093 'ExtUtils::Mksymlists' => 'cpan',
62de23d1 10094 'ExtUtils::testlib' => 'cpan',
29cab1c7
NC
10095 'Fatal' => 'cpan',
10096 'File::Fetch' => 'cpan',
979b9961 10097 'File::GlobMapper' => 'cpan',
19c1ec11 10098 'File::Path' => 'cpan',
68a91acb 10099 'File::Temp' => 'cpan',
f50587e0 10100 'Filter::Util::Call' => 'cpan',
29cab1c7 10101 'Getopt::Long' => 'cpan',
e0698539 10102 'HTTP::Tiny' => 'cpan',
979b9961
JV
10103 'IO::Compress::Adapter::Bzip2'=> 'cpan',
10104 'IO::Compress::Adapter::Deflate'=> 'cpan',
10105 'IO::Compress::Adapter::Identity'=> 'cpan',
10106 'IO::Compress::Base' => 'cpan',
10107 'IO::Compress::Base::Common'=> 'cpan',
10108 'IO::Compress::Bzip2' => 'cpan',
10109 'IO::Compress::Deflate' => 'cpan',
10110 'IO::Compress::Gzip' => 'cpan',
10111 'IO::Compress::Gzip::Constants'=> 'cpan',
10112 'IO::Compress::RawDeflate'=> 'cpan',
10113 'IO::Compress::Zip' => 'cpan',
10114 'IO::Compress::Zip::Constants'=> 'cpan',
10115 'IO::Compress::Zlib::Constants'=> 'cpan',
10116 'IO::Compress::Zlib::Extra'=> 'cpan',
5a39b45b 10117 'IO::Socket::IP' => 'cpan',
979b9961
JV
10118 'IO::Uncompress::Adapter::Bunzip2'=> 'cpan',
10119 'IO::Uncompress::Adapter::Identity'=> 'cpan',
10120 'IO::Uncompress::Adapter::Inflate'=> 'cpan',
10121 'IO::Uncompress::AnyInflate'=> 'cpan',
10122 'IO::Uncompress::AnyUncompress'=> 'cpan',
10123 'IO::Uncompress::Base' => 'cpan',
10124 'IO::Uncompress::Bunzip2'=> 'cpan',
10125 'IO::Uncompress::Gunzip'=> 'cpan',
10126 'IO::Uncompress::Inflate'=> 'cpan',
10127 'IO::Uncompress::RawInflate'=> 'cpan',
10128 'IO::Uncompress::Unzip' => 'cpan',
19c1ec11 10129 'IO::Zlib' => 'cpan',
29cab1c7
NC
10130 'IPC::Cmd' => 'cpan',
10131 'IPC::Msg' => 'cpan',
10132 'IPC::Semaphore' => 'cpan',
10133 'IPC::SharedMem' => 'cpan',
10134 'IPC::SysV' => 'cpan',
e0698539
JV
10135 'JSON::PP' => 'cpan',
10136 'JSON::PP::Boolean' => 'cpan',
45492fbf 10137 'List::Util' => 'cpan',
45492fbf 10138 'List::Util::XS' => 'cpan',
2db8ee47 10139 'Locale::Codes' => 'cpan',
48b66e80 10140 'Locale::Codes::Constants'=> 'cpan',
2db8ee47 10141 'Locale::Codes::Country'=> 'cpan',
48b66e80 10142 'Locale::Codes::Country_Codes'=> 'cpan',
9cdfa110 10143 'Locale::Codes::Country_Retired'=> 'cpan',
2db8ee47 10144 'Locale::Codes::Currency'=> 'cpan',
48b66e80 10145 'Locale::Codes::Currency_Codes'=> 'cpan',
9cdfa110 10146 'Locale::Codes::Currency_Retired'=> 'cpan',
48b66e80
Z
10147 'Locale::Codes::LangExt'=> 'cpan',
10148 'Locale::Codes::LangExt_Codes'=> 'cpan',
9cdfa110
DR
10149 'Locale::Codes::LangExt_Retired'=> 'cpan',
10150 'Locale::Codes::LangFam'=> 'cpan',
10151 'Locale::Codes::LangFam_Codes'=> 'cpan',
10152 'Locale::Codes::LangFam_Retired'=> 'cpan',
48b66e80
Z
10153 'Locale::Codes::LangVar'=> 'cpan',
10154 'Locale::Codes::LangVar_Codes'=> 'cpan',
9cdfa110 10155 'Locale::Codes::LangVar_Retired'=> 'cpan',
2db8ee47 10156 'Locale::Codes::Language'=> 'cpan',
48b66e80 10157 'Locale::Codes::Language_Codes'=> 'cpan',
9cdfa110 10158 'Locale::Codes::Language_Retired'=> 'cpan',
2db8ee47 10159 'Locale::Codes::Script' => 'cpan',
48b66e80 10160 'Locale::Codes::Script_Codes'=> 'cpan',
9cdfa110 10161 'Locale::Codes::Script_Retired'=> 'cpan',
2db8ee47
RS
10162 'Locale::Country' => 'cpan',
10163 'Locale::Currency' => 'cpan',
10164 'Locale::Language' => 'cpan',
a6abef0d 10165 'Locale::Maketext::Simple'=> 'cpan',
2db8ee47 10166 'Locale::Script' => 'cpan',
3ec75686
LB
10167 'MIME::Base64' => 'cpan',
10168 'MIME::QuotedPrint' => 'cpan',
29cab1c7
NC
10169 'Math::Complex' => 'cpan',
10170 'Math::Trig' => 'cpan',
7de25fd5
TM
10171 'Memoize' => 'cpan',
10172 'Memoize::AnyDBM_File' => 'cpan',
10173 'Memoize::Expire' => 'cpan',
10174 'Memoize::ExpireFile' => 'cpan',
10175 'Memoize::ExpireTest' => 'cpan',
10176 'Memoize::NDBM_File' => 'cpan',
10177 'Memoize::SDBM_File' => 'cpan',
10178 'Memoize::Storable' => 'cpan',
781ea95a
DM
10179 'Module::Build' => 'cpan',
10180 'Module::Build::Base' => 'cpan',
10181 'Module::Build::Compat' => 'cpan',
10182 'Module::Build::Config' => 'cpan',
65f8b4e7 10183 'Module::Build::ConfigData'=> 'cpan',
781ea95a
DM
10184 'Module::Build::Cookbook'=> 'cpan',
10185 'Module::Build::Dumper' => 'cpan',
10186 'Module::Build::ModuleInfo'=> 'cpan',
10187 'Module::Build::Notes' => 'cpan',
10188 'Module::Build::PPMMaker'=> 'cpan',
781ea95a 10189 'Module::Build::Platform::Default'=> 'cpan',
781ea95a 10190 'Module::Build::Platform::MacOS'=> 'cpan',
781ea95a
DM
10191 'Module::Build::Platform::Unix'=> 'cpan',
10192 'Module::Build::Platform::VMS'=> 'cpan',
10193 'Module::Build::Platform::VOS'=> 'cpan',
10194 'Module::Build::Platform::Windows'=> 'cpan',
10195 'Module::Build::Platform::aix'=> 'cpan',
10196 'Module::Build::Platform::cygwin'=> 'cpan',
10197 'Module::Build::Platform::darwin'=> 'cpan',
10198 'Module::Build::Platform::os2'=> 'cpan',
10199 'Module::Build::PodParser'=> 'cpan',
10200 'Module::Build::Version'=> 'cpan',
10201 'Module::Build::YAML' => 'cpan',
29cab1c7
NC
10202 'Module::Load' => 'cpan',
10203 'Module::Load::Conditional'=> 'cpan',
10204 'Module::Loaded' => 'cpan',
e0698539 10205 'Module::Metadata' => 'cpan',
29cab1c7 10206 'NEXT' => 'cpan',
91c842ce
SH
10207 'Net::Cmd' => 'cpan',
10208 'Net::Config' => 'cpan',
10209 'Net::Domain' => 'cpan',
10210 'Net::FTP' => 'cpan',
10211 'Net::FTP::A' => 'cpan',
10212 'Net::FTP::E' => 'cpan',
10213 'Net::FTP::I' => 'cpan',
10214 'Net::FTP::L' => 'cpan',
10215 'Net::FTP::dataconn' => 'cpan',
10216 'Net::NNTP' => 'cpan',
10217 'Net::Netrc' => 'cpan',
10218 'Net::POP3' => 'cpan',
91c842ce
SH
10219 'Net::SMTP' => 'cpan',
10220 'Net::Time' => 'cpan',
29cab1c7
NC
10221 'Package::Constants' => 'cpan',
10222 'Params::Check' => 'cpan',
10223 'Parse::CPAN::Meta' => 'cpan',
e0698539 10224 'Perl::OSType' => 'cpan',
19c1ec11 10225 'PerlIO::via::QuotedPrint'=> 'cpan',
f50587e0 10226 'Pod::Checker' => 'cpan',
19c1ec11 10227 'Pod::Escapes' => 'cpan',
f50587e0
MM
10228 'Pod::Find' => 'cpan',
10229 'Pod::InputObjects' => 'cpan',
29cab1c7
NC
10230 'Pod::Man' => 'cpan',
10231 'Pod::ParseLink' => 'cpan',
f50587e0
MM
10232 'Pod::ParseUtils' => 'cpan',
10233 'Pod::Parser' => 'cpan',
10234 'Pod::Perldoc' => 'cpan',
10235 'Pod::Perldoc::BaseTo' => 'cpan',
10236 'Pod::Perldoc::GetOptsOO'=> 'cpan',
10237 'Pod::Perldoc::ToANSI' => 'cpan',
10238 'Pod::Perldoc::ToChecker'=> 'cpan',
10239 'Pod::Perldoc::ToMan' => 'cpan',
10240 'Pod::Perldoc::ToNroff' => 'cpan',
10241 'Pod::Perldoc::ToPod' => 'cpan',
10242 'Pod::Perldoc::ToRtf' => 'cpan',
10243 'Pod::Perldoc::ToTerm' => 'cpan',
10244 'Pod::Perldoc::ToText' => 'cpan',
10245 'Pod::Perldoc::ToTk' => 'cpan',
10246 'Pod::Perldoc::ToXml' => 'cpan',
10247 'Pod::PlainText' => 'cpan',
10248 'Pod::Select' => 'cpan',
979b9961
JV
10249 'Pod::Simple' => 'cpan',
10250 'Pod::Simple::BlackBox' => 'cpan',
10251 'Pod::Simple::Checker' => 'cpan',
10252 'Pod::Simple::Debug' => 'cpan',
10253 'Pod::Simple::DumpAsText'=> 'cpan',
10254 'Pod::Simple::DumpAsXML'=> 'cpan',
10255 'Pod::Simple::HTML' => 'cpan',
10256 'Pod::Simple::HTMLBatch'=> 'cpan',
10257 'Pod::Simple::HTMLLegacy'=> 'cpan',
10258 'Pod::Simple::LinkSection'=> 'cpan',
10259 'Pod::Simple::Methody' => 'cpan',
10260 'Pod::Simple::Progress' => 'cpan',
10261 'Pod::Simple::PullParser'=> 'cpan',
10262 'Pod::Simple::PullParserEndToken'=> 'cpan',
10263 'Pod::Simple::PullParserStartToken'=> 'cpan',
10264 'Pod::Simple::PullParserTextToken'=> 'cpan',
10265 'Pod::Simple::PullParserToken'=> 'cpan',
10266 'Pod::Simple::RTF' => 'cpan',
10267 'Pod::Simple::Search' => 'cpan',
10268 'Pod::Simple::SimpleTree'=> 'cpan',
10269 'Pod::Simple::Text' => 'cpan',
10270 'Pod::Simple::TextContent'=> 'cpan',
10271 'Pod::Simple::TiedOutFH'=> 'cpan',
10272 'Pod::Simple::Transcode'=> 'cpan',
10273 'Pod::Simple::TranscodeDumb'=> 'cpan',
10274 'Pod::Simple::TranscodeSmart'=> 'cpan',
10275 'Pod::Simple::XHTML' => 'cpan',
10276 'Pod::Simple::XMLOutStream'=> 'cpan',
29cab1c7
NC
10277 'Pod::Text' => 'cpan',
10278 'Pod::Text::Color' => 'cpan',
10279 'Pod::Text::Overstrike' => 'cpan',
10280 'Pod::Text::Termcap' => 'cpan',
f50587e0 10281 'Pod::Usage' => 'cpan',
45492fbf 10282 'Scalar::Util' => 'cpan',
9cdfa110 10283 'Socket' => 'cpan',
a47a8f3c 10284 'Sys::Syslog' => 'cpan',
48b66e80 10285 'Sys::Syslog::Win32' => 'cpan',
a4729c0f
DG
10286 'TAP::Base' => 'cpan',
10287 'TAP::Formatter::Base' => 'cpan',
10288 'TAP::Formatter::Color' => 'cpan',
10289 'TAP::Formatter::Console'=> 'cpan',
10290 'TAP::Formatter::Console::ParallelSession'=> 'cpan',
10291 'TAP::Formatter::Console::Session'=> 'cpan',
10292 'TAP::Formatter::File' => 'cpan',
10293 'TAP::Formatter::File::Session'=> 'cpan',
10294 'TAP::Formatter::Session'=> 'cpan',
10295 'TAP::Harness' => 'cpan',
19c1ec11 10296 'TAP::Harness::Env' => 'cpan',
a4729c0f
DG
10297 'TAP::Object' => 'cpan',
10298 'TAP::Parser' => 'cpan',
10299 'TAP::Parser::Aggregator'=> 'cpan',
10300 'TAP::Parser::Grammar' => 'cpan',
10301 'TAP::Parser::Iterator' => 'cpan',
10302 'TAP::Parser::Iterator::Array'=> 'cpan',
10303 'TAP::Parser::Iterator::Process'=> 'cpan',
10304 'TAP::Parser::Iterator::Stream'=> 'cpan',
10305 'TAP::Parser::IteratorFactory'=> 'cpan',
10306 'TAP::Parser::Multiplexer'=> 'cpan',
10307 'TAP::Parser::Result' => 'cpan',
10308 'TAP::Parser::Result::Bailout'=> 'cpan',
10309 'TAP::Parser::Result::Comment'=> 'cpan',
10310 'TAP::Parser::Result::Plan'=> 'cpan',
10311 'TAP::Parser::Result::Pragma'=> 'cpan',
10312 'TAP::Parser::Result::Test'=> 'cpan',
10313 'TAP::Parser::Result::Unknown'=> 'cpan',
10314 'TAP::Parser::Result::Version'=> 'cpan',
10315 'TAP::Parser::Result::YAML'=> 'cpan',
10316 'TAP::Parser::ResultFactory'=> 'cpan',
10317 'TAP::Parser::Scheduler'=> 'cpan',
10318 'TAP::Parser::Scheduler::Job'=> 'cpan',
10319 'TAP::Parser::Scheduler::Spinner'=> 'cpan',
10320 'TAP::Parser::Source' => 'cpan',
10321 'TAP::Parser::SourceHandler'=> 'cpan',
10322 'TAP::Parser::SourceHandler::Executable'=> 'cpan',
10323 'TAP::Parser::SourceHandler::File'=> 'cpan',
10324 'TAP::Parser::SourceHandler::Handle'=> 'cpan',
10325 'TAP::Parser::SourceHandler::Perl'=> 'cpan',
10326 'TAP::Parser::SourceHandler::RawTAP'=> 'cpan',
a4729c0f
DG
10327 'TAP::Parser::YAMLish::Reader'=> 'cpan',
10328 'TAP::Parser::YAMLish::Writer'=> 'cpan',
29cab1c7 10329 'Term::ANSIColor' => 'cpan',
19c1ec11 10330 'Term::Cap' => 'cpan',
781ea95a 10331 'Test' => 'cpan',
979b9961
JV
10332 'Test::Builder' => 'cpan',
10333 'Test::Builder::Module' => 'cpan',
10334 'Test::Builder::Tester' => 'cpan',
10335 'Test::Builder::Tester::Color'=> 'cpan',
a4729c0f 10336 'Test::Harness' => 'cpan',
979b9961
JV
10337 'Test::More' => 'cpan',
10338 'Test::Simple' => 'cpan',
e46b3c7d 10339 'Text::Balanced' => 'cpan',
19c1ec11 10340 'Text::ParseWords' => 'cpan',
29cab1c7
NC
10341 'Text::Tabs' => 'cpan',
10342 'Text::Wrap' => 'cpan',
29cab1c7 10343 'Tie::RefHash' => 'cpan',
1f1f08f5 10344 'Time::HiRes' => 'cpan',
e0698539 10345 'Time::Local' => 'cpan',
19c1ec11
SH
10346 'Time::Piece' => 'cpan',
10347 'Time::Seconds' => 'cpan',
62de23d1
SH
10348 'Unicode::Collate' => 'cpan',
10349 'Unicode::Collate::CJK::Big5'=> 'cpan',
10350 'Unicode::Collate::CJK::GB2312'=> 'cpan',
10351 'Unicode::Collate::CJK::JISX0208'=> 'cpan',
10352 'Unicode::Collate::CJK::Korean'=> 'cpan',
10353 'Unicode::Collate::CJK::Pinyin'=> 'cpan',
10354 'Unicode::Collate::CJK::Stroke'=> 'cpan',
10355 'Unicode::Collate::CJK::Zhuyin'=> 'cpan',
10356 'Unicode::Collate::Locale'=> 'cpan',
10357 'Unicode::Normalize' => 'cpan',
a6abef0d 10358 'Win32' => 'cpan',
979b9961
JV
10359 'Win32API::File' => 'cpan',
10360 'Win32API::File::ExtUtils::Myconst2perl'=> 'cpan',
29cab1c7
NC
10361 'autodie' => 'cpan',
10362 'autodie::exception' => 'cpan',
10363 'autodie::exception::system'=> 'cpan',
781ea95a 10364 'autodie::hints' => 'cpan',
2f4a2205 10365 'autodie::skip' => 'cpan',
67dbc274 10366 'encoding' => 'cpan',
19c1ec11 10367 'encoding::warnings' => 'cpan',
a68163ea 10368 'inc::latest' => 'cpan',
19c1ec11 10369 'parent' => 'cpan',
e46b3c7d 10370 'perlfaq' => 'cpan',
a27b5f52
CBW
10371 'version' => 'cpan',
10372 'version::regex' => 'cpan',
10373 'version::vpp' => 'cpan',
29cab1c7
NC
10374);
10375
10376%bug_tracker = (
65f8b4e7 10377 'App::Cpan' => undef,
29cab1c7
NC
10378 'App::Prove' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10379 'App::Prove::State' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10380 'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10381 'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
29cab1c7
NC
10382 'Archive::Tar' => undef,
10383 'Archive::Tar::Constant'=> undef,
10384 'Archive::Tar::File' => undef,
29cab1c7 10385 'B::Debug' => undef,
5a39b45b
TC
10386 'CGI' => 'https://github.com/markstos/CGI.pm/issues',
10387 'CGI::Apache' => 'https://github.com/markstos/CGI.pm/issues',
10388 'CGI::Carp' => 'https://github.com/markstos/CGI.pm/issues',
10389 'CGI::Cookie' => 'https://github.com/markstos/CGI.pm/issues',
10390 'CGI::Fast' => 'https://github.com/markstos/CGI.pm/issues',
10391 'CGI::Pretty' => 'https://github.com/markstos/CGI.pm/issues',
10392 'CGI::Push' => 'https://github.com/markstos/CGI.pm/issues',
10393 'CGI::Switch' => 'https://github.com/markstos/CGI.pm/issues',
10394 'CGI::Util' => 'https://github.com/markstos/CGI.pm/issues',
29cab1c7
NC
10395 'CPAN' => undef,
10396 'CPAN::Author' => undef,
10397 'CPAN::Bundle' => undef,
10398 'CPAN::CacheMgr' => undef,
10399 'CPAN::Complete' => undef,
10400 'CPAN::Debug' => undef,
10401 'CPAN::DeferredCode' => undef,
10402 'CPAN::Distribution' => undef,
10403 'CPAN::Distroprefs' => undef,
10404 'CPAN::Distrostatus' => undef,
10405 'CPAN::Exception::RecursiveDependency'=> undef,
10406 'CPAN::Exception::blocked_urllist'=> undef,
10407 'CPAN::Exception::yaml_not_installed'=> undef,
2f183b41 10408 'CPAN::Exception::yaml_process_error'=> undef,
29cab1c7
NC
10409 'CPAN::FTP' => undef,
10410 'CPAN::FTP::netrc' => undef,
10411 'CPAN::FirstTime' => undef,
e0698539
JV
10412 'CPAN::HTTP::Client' => undef,
10413 'CPAN::HTTP::Credentials'=> undef,
29cab1c7
NC
10414 'CPAN::HandleConfig' => undef,
10415 'CPAN::Index' => undef,
10416 'CPAN::InfoObj' => undef,
10417 'CPAN::Kwalify' => undef,
10418 'CPAN::LWP::UserAgent' => undef,
62de23d1
SH
10419 'CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
10420 'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
10421 'CPAN::Meta::Feature' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
10422 'CPAN::Meta::History' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
10423 'CPAN::Meta::Prereqs' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
19c1ec11 10424 'CPAN::Meta::Requirements'=> 'https://github.com/dagolden/CPAN-Meta-Requirements/issues',
62de23d1
SH
10425 'CPAN::Meta::Spec' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
10426 'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
19c1ec11 10427 'CPAN::Meta::YAML' => 'https://github.com/dagolden/CPAN-Meta-YAML/issues',
65f8b4e7 10428 'CPAN::Mirrors' => undef,
29cab1c7
NC
10429 'CPAN::Module' => undef,
10430 'CPAN::Nox' => undef,
10431 'CPAN::Prompt' => undef,
10432 'CPAN::Queue' => undef,
10433 'CPAN::Shell' => undef,
10434 'CPAN::Tarzip' => undef,
10435 'CPAN::URL' => undef,
10436 'CPAN::Version' => undef,
29cab1c7
NC
10437 'Compress::Raw::Bzip2' => undef,
10438 'Compress::Raw::Zlib' => undef,
979b9961 10439 'Compress::Zlib' => undef,
52f6865c 10440 'Config::Perl::V' => undef,
29cab1c7 10441 'DB_File' => undef,
29cab1c7
NC
10442 'Devel::PPPort' => undef,
10443 'Digest' => undef,
10444 'Digest::MD5' => undef,
10445 'Digest::SHA' => undef,
10446 'Digest::base' => undef,
10447 'Digest::file' => undef,
10448 'Encode' => undef,
10449 'Encode::Alias' => undef,
10450 'Encode::Byte' => undef,
10451 'Encode::CJKConstants' => undef,
10452 'Encode::CN' => undef,
10453 'Encode::CN::HZ' => undef,
10454 'Encode::Config' => undef,
10455 'Encode::EBCDIC' => undef,
10456 'Encode::Encoder' => undef,
10457 'Encode::Encoding' => undef,
10458 'Encode::GSM0338' => undef,
10459 'Encode::Guess' => undef,
10460 'Encode::JP' => undef,
10461 'Encode::JP::H2Z' => undef,
10462 'Encode::JP::JIS7' => undef,
10463 'Encode::KR' => undef,
10464 'Encode::KR::2022_KR' => undef,
10465 'Encode::MIME::Header' => undef,
10466 'Encode::MIME::Header::ISO_2022_JP'=> undef,
10467 'Encode::MIME::Name' => undef,
10468 'Encode::Symbol' => undef,
10469 'Encode::TW' => undef,
10470 'Encode::Unicode' => undef,
10471 'Encode::Unicode::UTF7' => undef,
62de23d1 10472 'ExtUtils::Command::MM' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
29cab1c7
NC
10473 'ExtUtils::Constant' => undef,
10474 'ExtUtils::Constant::Base'=> undef,
10475 'ExtUtils::Constant::ProxySubs'=> undef,
10476 'ExtUtils::Constant::Utils'=> undef,
10477 'ExtUtils::Constant::XS'=> undef,
62de23d1
SH
10478 'ExtUtils::Liblist' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10479 'ExtUtils::Liblist::Kid'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10480 'ExtUtils::MM' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10481 'ExtUtils::MM_AIX' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10482 'ExtUtils::MM_Any' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10483 'ExtUtils::MM_BeOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10484 'ExtUtils::MM_Cygwin' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10485 'ExtUtils::MM_DOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10486 'ExtUtils::MM_Darwin' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10487 'ExtUtils::MM_MacOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10488 'ExtUtils::MM_NW5' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10489 'ExtUtils::MM_OS2' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10490 'ExtUtils::MM_QNX' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10491 'ExtUtils::MM_UWIN' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10492 'ExtUtils::MM_Unix' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10493 'ExtUtils::MM_VMS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10494 'ExtUtils::MM_VOS' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10495 'ExtUtils::MM_Win32' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10496 'ExtUtils::MM_Win95' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10497 'ExtUtils::MY' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10498 'ExtUtils::MakeMaker' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10499 'ExtUtils::MakeMaker::Config'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10500 'ExtUtils::Mkbootstrap' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
10501 'ExtUtils::Mksymlists' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
62de23d1 10502 'ExtUtils::testlib' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
29cab1c7
NC
10503 'Fatal' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
10504 'File::Fetch' => undef,
979b9961 10505 'File::GlobMapper' => undef,
29cab1c7 10506 'File::Path' => undef,
1f2fd626 10507 'File::Temp' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
29cab1c7
NC
10508 'Filter::Util::Call' => undef,
10509 'Getopt::Long' => undef,
fd3b4111 10510 'HTTP::Tiny' => 'https://github.com/chansen/p5-http-tiny/issues',
979b9961
JV
10511 'IO::Compress::Adapter::Bzip2'=> undef,
10512 'IO::Compress::Adapter::Deflate'=> undef,
10513 'IO::Compress::Adapter::Identity'=> undef,
10514 'IO::Compress::Base' => undef,
10515 'IO::Compress::Base::Common'=> undef,
10516 'IO::Compress::Bzip2' => undef,
10517 'IO::Compress::Deflate' => undef,
10518 'IO::Compress::Gzip' => undef,
10519 'IO::Compress::Gzip::Constants'=> undef,
10520 'IO::Compress::RawDeflate'=> undef,
10521 'IO::Compress::Zip' => undef,
10522 'IO::Compress::Zip::Constants'=> undef,
10523 'IO::Compress::Zlib::Constants'=> undef,
10524 'IO::Compress::Zlib::Extra'=> undef,
5a39b45b 10525 'IO::Socket::IP' => undef,
979b9961
JV
10526 'IO::Uncompress::Adapter::Bunzip2'=> undef,
10527 'IO::Uncompress::Adapter::Identity'=> undef,
10528 'IO::Uncompress::Adapter::Inflate'=> undef,
10529 'IO::Uncompress::AnyInflate'=> undef,
10530 'IO::Uncompress::AnyUncompress'=> undef,
10531 'IO::Uncompress::Base' => undef,
10532 'IO::Uncompress::Bunzip2'=> undef,
10533 'IO::Uncompress::Gunzip'=> undef,
10534 'IO::Uncompress::Inflate'=> undef,
10535 'IO::Uncompress::RawInflate'=> undef,
10536 'IO::Uncompress::Unzip' => undef,
29cab1c7
NC
10537 'IO::Zlib' => undef,
10538 'IPC::Cmd' => undef,
10539 'IPC::Msg' => undef,
10540 'IPC::Semaphore' => undef,
10541 'IPC::SharedMem' => undef,
10542 'IPC::SysV' => undef,
e0698539
JV
10543 'JSON::PP' => undef,
10544 'JSON::PP::Boolean' => undef,
29cab1c7 10545 'List::Util' => undef,
781ea95a 10546 'List::Util::XS' => undef,
2db8ee47 10547 'Locale::Codes' => undef,
48b66e80 10548 'Locale::Codes::Constants'=> undef,
2db8ee47 10549 'Locale::Codes::Country'=> undef,
48b66e80 10550 'Locale::Codes::Country_Codes'=> undef,
9cdfa110 10551 'Locale::Codes::Country_Retired'=> undef,
2db8ee47 10552 'Locale::Codes::Currency'=> undef,
48b66e80 10553 'Locale::Codes::Currency_Codes'=> undef,
9cdfa110 10554 'Locale::Codes::Currency_Retired'=> undef,
48b66e80
Z
10555 'Locale::Codes::LangExt'=> undef,
10556 'Locale::Codes::LangExt_Codes'=> undef,
9cdfa110
DR
10557 'Locale::Codes::LangExt_Retired'=> undef,
10558 'Locale::Codes::LangFam'=> undef,
10559 'Locale::Codes::LangFam_Codes'=> undef,
10560 'Locale::Codes::LangFam_Retired'=> undef,
48b66e80
Z
10561 'Locale::Codes::LangVar'=> undef,
10562 'Locale::Codes::LangVar_Codes'=> undef,
9cdfa110 10563 'Locale::Codes::LangVar_Retired'=> undef,
2db8ee47 10564 'Locale::Codes::Language'=> undef,
48b66e80 10565 'Locale::Codes::Language_Codes'=> undef,
9cdfa110 10566 'Locale::Codes::Language_Retired'=> undef,
2db8ee47 10567 'Locale::Codes::Script' => undef,
48b66e80 10568 'Locale::Codes::Script_Codes'=> undef,
9cdfa110 10569 'Locale::Codes::Script_Retired'=> undef,
29cab1c7
NC
10570 'Locale::Country' => undef,
10571 'Locale::Currency' => undef,
10572 'Locale::Language' => undef,
29cab1c7
NC
10573 'Locale::Maketext::Simple'=> undef,
10574 'Locale::Script' => undef,
29cab1c7
NC
10575 'MIME::Base64' => undef,
10576 'MIME::QuotedPrint' => undef,
29cab1c7
NC
10577 'Math::Complex' => undef,
10578 'Math::Trig' => undef,
10579 'Memoize' => undef,
10580 'Memoize::AnyDBM_File' => undef,
10581 'Memoize::Expire' => undef,
10582 'Memoize::ExpireFile' => undef,
10583 'Memoize::ExpireTest' => undef,
10584 'Memoize::NDBM_File' => undef,
10585 'Memoize::SDBM_File' => undef,
10586 'Memoize::Storable' => undef,
3ec75686
LB
10587 'Module::Build' => undef,
10588 'Module::Build::Base' => undef,
10589 'Module::Build::Compat' => undef,
10590 'Module::Build::Config' => undef,
2f4a2205 10591 'Module::Build::ConfigData'=> undef,
3ec75686
LB
10592 'Module::Build::Cookbook'=> undef,
10593 'Module::Build::Dumper' => undef,
10594 'Module::Build::ModuleInfo'=> undef,
10595 'Module::Build::Notes' => undef,
10596 'Module::Build::PPMMaker'=> undef,
3ec75686 10597 'Module::Build::Platform::Default'=> undef,
3ec75686 10598 'Module::Build::Platform::MacOS'=> undef,
3ec75686
LB
10599 'Module::Build::Platform::Unix'=> undef,
10600 'Module::Build::Platform::VMS'=> undef,
10601 'Module::Build::Platform::VOS'=> undef,
10602 'Module::Build::Platform::Windows'=> undef,
10603 'Module::Build::Platform::aix'=> undef,
10604 'Module::Build::Platform::cygwin'=> undef,
10605 'Module::Build::Platform::darwin'=> undef,
10606 'Module::Build::Platform::os2'=> undef,
10607 'Module::Build::PodParser'=> undef,
10608 'Module::Build::Version'=> undef,
10609 'Module::Build::YAML' => undef,
29cab1c7
NC
10610 'Module::Load' => undef,
10611 'Module::Load::Conditional'=> undef,
10612 'Module::Loaded' => undef,
62de23d1 10613 'Module::Metadata' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata',
29cab1c7
NC
10614 'NEXT' => undef,
10615 'Net::Cmd' => undef,
10616 'Net::Config' => undef,
10617 'Net::Domain' => undef,
10618 'Net::FTP' => undef,
10619 'Net::FTP::A' => undef,
10620 'Net::FTP::E' => undef,
10621 'Net::FTP::I' => undef,
10622 'Net::FTP::L' => undef,
10623 'Net::FTP::dataconn' => undef,
10624 'Net::NNTP' => undef,
10625 'Net::Netrc' => undef,
10626 'Net::POP3' => undef,
29cab1c7
NC
10627 'Net::SMTP' => undef,
10628 'Net::Time' => undef,
29cab1c7
NC
10629 'Package::Constants' => undef,
10630 'Params::Check' => undef,
62de23d1
SH
10631 'Parse::CPAN::Meta' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Parse-CPAN-Meta',
10632 'Perl::OSType' => 'https://github.com/dagolden/Perl-OSType/issues',
29cab1c7
NC
10633 'PerlIO::via::QuotedPrint'=> undef,
10634 'Pod::Checker' => undef,
10635 'Pod::Escapes' => undef,
10636 'Pod::Find' => undef,
10637 'Pod::InputObjects' => undef,
29cab1c7
NC
10638 'Pod::Man' => undef,
10639 'Pod::ParseLink' => undef,
10640 'Pod::ParseUtils' => undef,
10641 'Pod::Parser' => undef,
10642 'Pod::Perldoc' => undef,
10643 'Pod::Perldoc::BaseTo' => undef,
10644 'Pod::Perldoc::GetOptsOO'=> undef,
b240fc0f 10645 'Pod::Perldoc::ToANSI' => undef,
29cab1c7
NC
10646 'Pod::Perldoc::ToChecker'=> undef,
10647 'Pod::Perldoc::ToMan' => undef,
10648 'Pod::Perldoc::ToNroff' => undef,
10649 'Pod::Perldoc::ToPod' => undef,
10650 'Pod::Perldoc::ToRtf' => undef,
b240fc0f 10651 'Pod::Perldoc::ToTerm' => undef,
29cab1c7
NC
10652 'Pod::Perldoc::ToText' => undef,
10653 'Pod::Perldoc::ToTk' => undef,
10654 'Pod::Perldoc::ToXml' => undef,
10655 'Pod::PlainText' => undef,
29cab1c7 10656 'Pod::Select' => undef,
48b66e80
Z
10657 'Pod::Simple' => undef,
10658 'Pod::Simple::BlackBox' => undef,
10659 'Pod::Simple::Checker' => undef,
10660 'Pod::Simple::Debug' => undef,
10661 'Pod::Simple::DumpAsText'=> undef,
10662 'Pod::Simple::DumpAsXML'=> undef,
10663 'Pod::Simple::HTML' => undef,
10664 'Pod::Simple::HTMLBatch'=> undef,
10665 'Pod::Simple::HTMLLegacy'=> undef,
10666 'Pod::Simple::LinkSection'=> undef,
10667 'Pod::Simple::Methody' => undef,
10668 'Pod::Simple::Progress' => undef,
10669 'Pod::Simple::PullParser'=> undef,
10670 'Pod::Simple::PullParserEndToken'=> undef,
10671 'Pod::Simple::PullParserStartToken'=> undef,
10672 'Pod::Simple::PullParserTextToken'=> undef,
10673 'Pod::Simple::PullParserToken'=> undef,
10674 'Pod::Simple::RTF' => undef,
10675 'Pod::Simple::Search' => undef,
10676 'Pod::Simple::SimpleTree'=> undef,
10677 'Pod::Simple::Text' => undef,
10678 'Pod::Simple::TextContent'=> undef,
10679 'Pod::Simple::TiedOutFH'=> undef,
10680 'Pod::Simple::Transcode'=> undef,
10681 'Pod::Simple::TranscodeDumb'=> undef,
10682 'Pod::Simple::TranscodeSmart'=> undef,
10683 'Pod::Simple::XHTML' => undef,
10684 'Pod::Simple::XMLOutStream'=> undef,
29cab1c7
NC
10685 'Pod::Text' => undef,
10686 'Pod::Text::Color' => undef,
10687 'Pod::Text::Overstrike' => undef,
10688 'Pod::Text::Termcap' => undef,
10689 'Pod::Usage' => undef,
29cab1c7 10690 'Scalar::Util' => undef,
9cdfa110 10691 'Socket' => undef,
29cab1c7 10692 'Sys::Syslog' => undef,
48b66e80 10693 'Sys::Syslog::Win32' => undef,
29cab1c7
NC
10694 'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10695 'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10696 'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10697 'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10698 'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10699 'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10700 'TAP::Formatter::File' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10701 'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10702 'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10703 'TAP::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
1f2fd626 10704 'TAP::Harness::Env' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
29cab1c7
NC
10705 'TAP::Object' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10706 'TAP::Parser' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10707 'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10708 'TAP::Parser::Grammar' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10709 'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10710 'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10711 'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10712 'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10713 'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10714 'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10715 'TAP::Parser::Result' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10716 'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10717 'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10718 'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10719 'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10720 'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10721 'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10722 'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10723 'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10724 'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10725 'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10726 'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10727 'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10728 'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
a4729c0f
DG
10729 'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10730 'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10731 'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10732 'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10733 'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10734 'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
29cab1c7
NC
10735 'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10736 'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
10737 'Term::ANSIColor' => undef,
10738 'Term::Cap' => undef,
29cab1c7 10739 'Test' => undef,
1f2fd626
CBW
10740 'Test::Builder' => 'http://github.com/schwern/test-more/issues/',
10741 'Test::Builder::Module' => 'http://github.com/schwern/test-more/issues/',
7529c15c
FR
10742 'Test::Builder::Tester' => 'http://github.com/schwern/test-more/issues',
10743 'Test::Builder::Tester::Color'=> 'http://github.com/schwern/test-more/issues',
29cab1c7 10744 'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
1f2fd626
CBW
10745 'Test::More' => 'http://github.com/schwern/test-more/issues/',
10746 'Test::Simple' => 'http://github.com/schwern/test-more/issues/',
29cab1c7
NC
10747 'Text::Balanced' => undef,
10748 'Text::ParseWords' => undef,
29cab1c7
NC
10749 'Text::Tabs' => undef,
10750 'Text::Wrap' => undef,
29cab1c7
NC
10751 'Tie::RefHash' => undef,
10752 'Time::HiRes' => undef,
752b5616 10753 'Time::Local' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Time-Local',
29cab1c7 10754 'Time::Piece' => undef,
48b66e80 10755 'Time::Seconds' => undef,
29cab1c7 10756 'Unicode::Collate' => undef,
d24e0a99
CBW
10757 'Unicode::Collate::CJK::Big5'=> undef,
10758 'Unicode::Collate::CJK::GB2312'=> undef,
10759 'Unicode::Collate::CJK::JISX0208'=> undef,
10760 'Unicode::Collate::CJK::Korean'=> undef,
10761 'Unicode::Collate::CJK::Pinyin'=> undef,
10762 'Unicode::Collate::CJK::Stroke'=> undef,
fe03d33b 10763 'Unicode::Collate::CJK::Zhuyin'=> undef,
7529c15c 10764 'Unicode::Collate::Locale'=> undef,
29cab1c7
NC
10765 'Unicode::Normalize' => undef,
10766 'Win32' => undef,
10767 'Win32API::File' => undef,
10768 'Win32API::File::ExtUtils::Myconst2perl'=> undef,
29cab1c7
NC
10769 'autodie' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
10770 'autodie::exception' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
10771 'autodie::exception::system'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
781ea95a 10772 'autodie::hints' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
2f4a2205 10773 'autodie::skip' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
29cab1c7
NC
10774 'encoding' => undef,
10775 'encoding::warnings' => undef,
3ec75686 10776 'inc::latest' => undef,
29cab1c7 10777 'parent' => undef,
e46b3c7d 10778 'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues',
a27b5f52
CBW
10779 'version' => undef,
10780 'version::regex' => undef,
10781 'version::vpp' => undef,
29cab1c7
NC
10782);
10783
8f83a467
JP
10784# Create aliases with trailing zeros for $] use
10785
10786$released{'5.000'} = $released{5};
8f83a467 10787$version{'5.000'} = $version{5};
8f83a467 10788
4ffbb0c4
DL
10789_create_aliases(\%released);
10790_create_aliases(\%version);
10791_create_aliases(\%deprecated);
10792
10793sub _create_aliases {
10794 my ($hash) = @_;
10795
10796 for my $version (keys %$hash) {
10797 next unless $version >= 5.010;
10798
10799 my $padded = sprintf "%0.6f", $version;
10800
10801 # If the version in string form isn't the same as the numeric version,
10802 # alias it.
10803 if ($padded ne $version && $version == $padded) {
10804 $hash->{$padded} = $hash->{$version};
10805 }
10806 }
10807}
a762e054 10808
8f2fd531
JB
108091;
10810__END__