Commit | Line | Data |
---|---|---|
8f2fd531 JB |
1 | package Module::CoreList; |
2 | use strict; | |
f4fe2a30 | 3 | use vars qw/$VERSION %released %version %families %upstream |
c676c838 | 4 | %bug_tracker %deprecated %delta/; |
a272bf38 | 5 | use Module::CoreList::TieHashDelta; |
74921e08 | 6 | use version; |
7792a6f5 | 7 | $VERSION = '5.20151120'; |
8f2fd531 | 8 | |
02b4438c KW |
9 | sub _released_order { # Sort helper, to make '?' sort after everything else |
10 | (substr($released{$a}, 0, 1) eq "?") | |
11 | ? ((substr($released{$b}, 0, 1) eq "?") | |
12 | ? 0 | |
13 | : 1) | |
14 | : ((substr($released{$b}, 0, 1) eq "?") | |
15 | ? -1 | |
16 | : $released{$a} cmp $released{$b} ) | |
17 | } | |
18 | ||
8f2fd531 JB |
19 | my $dumpinc = 0; |
20 | sub import { | |
21 | my $self = shift; | |
22 | my $what = shift || ''; | |
23 | if ($what eq 'dumpinc') { | |
24 | $dumpinc = 1; | |
25 | } | |
26 | } | |
27 | ||
28 | END { | |
29 | print "---INC---\n", join "\n" => keys %INC | |
30 | if $dumpinc; | |
31 | } | |
32 | ||
33 | ||
79be940f | 34 | sub first_release_raw { |
6d7c3a12 | 35 | my $module = shift; |
95effdf1 | 36 | $module = shift if eval { $module->isa(__PACKAGE__) } |
044d64a8 | 37 | and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#; |
6d7c3a12 | 38 | my $version = shift; |
8f2fd531 JB |
39 | |
40 | my @perls = $version | |
41b9d3e4 | 41 | ? grep { defined $version{$_}{ $module } && |
482096f1 | 42 | $version{$_}{ $module } ge $version } keys %version |
8f2fd531 JB |
43 | : grep { exists $version{$_}{ $module } } keys %version; |
44 | ||
79be940f RGS |
45 | return @perls; |
46 | } | |
47 | ||
48 | sub first_release_by_date { | |
49 | my @perls = &first_release_raw; | |
8f2fd531 | 50 | return unless @perls; |
02b4438c | 51 | return (sort _released_order @perls)[0]; |
8f2fd531 JB |
52 | } |
53 | ||
79be940f RGS |
54 | sub first_release { |
55 | my @perls = &first_release_raw; | |
56 | return unless @perls; | |
57 | return (sort { $a cmp $b } @perls)[0]; | |
58 | } | |
59 | ||
18b19aec | 60 | sub find_modules { |
18b19aec | 61 | my $regex = shift; |
95effdf1 | 62 | $regex = shift if eval { $regex->isa(__PACKAGE__) }; |
18b19aec RGS |
63 | my @perls = @_; |
64 | @perls = keys %version unless @perls; | |
65 | ||
66 | my %mods; | |
67 | foreach (@perls) { | |
68 | while (my ($k, $v) = each %{$version{$_}}) { | |
69 | $mods{$k}++ if $k =~ $regex; | |
70 | } | |
71 | } | |
72 | return sort keys %mods | |
73 | } | |
74 | ||
6127f3cd | 75 | sub find_version { |
6d7c3a12 | 76 | my $v = shift; |
ba4fc2b4 JK |
77 | if ($v->isa(__PACKAGE__)) { |
78 | $v = shift; | |
79 | return if not defined $v; | |
80 | } | |
6127f3cd | 81 | return $version{$v} if defined $version{$v}; |
ba4fc2b4 | 82 | return; |
6127f3cd | 83 | } |
8f2fd531 | 84 | |
c77945c3 | 85 | sub is_deprecated { |
6d7c3a12 | 86 | my $module = shift; |
95effdf1 | 87 | $module = shift if eval { $module->isa(__PACKAGE__) } |
044d64a8 | 88 | and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#; |
6d7c3a12 | 89 | my $perl_version = shift; |
0dee1c27 DG |
90 | $perl_version ||= $]; |
91 | return unless $module && exists $deprecated{$perl_version}{$module}; | |
92 | return $deprecated{$perl_version}{$module}; | |
c77945c3 CBW |
93 | } |
94 | ||
10526356 AC |
95 | sub deprecated_in { |
96 | my $module = shift; | |
97 | $module = shift if eval { $module->isa(__PACKAGE__) } | |
98 | and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#; | |
99 | return unless $module; | |
100 | my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated; | |
101 | return unless @perls; | |
102 | require List::Util; | |
94691b80 | 103 | return List::Util::minstr(@perls); |
10526356 AC |
104 | } |
105 | ||
044d64a8 CBW |
106 | sub removed_from { |
107 | my @perls = &removed_raw; | |
108 | return shift @perls; | |
109 | } | |
110 | ||
111 | sub removed_from_by_date { | |
02b4438c | 112 | my @perls = sort _released_order &removed_raw; |
044d64a8 CBW |
113 | return shift @perls; |
114 | } | |
115 | ||
116 | sub removed_raw { | |
117 | my $mod = shift; | |
95effdf1 | 118 | $mod = shift if eval { $mod->isa(__PACKAGE__) } |
044d64a8 CBW |
119 | and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#; |
120 | return unless my @perls = sort { $a cmp $b } first_release_raw($mod); | |
121 | my $last = pop @perls; | |
122 | my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version; | |
123 | return @removed; | |
124 | } | |
125 | ||
797ced94 | 126 | sub changes_between { |
5622f451 CBW |
127 | my $left_ver = shift; |
128 | $left_ver = shift if eval { $left_ver->isa(__PACKAGE__) }; | |
129 | my $right_ver = shift; | |
797ced94 RS |
130 | |
131 | my $left = $version{ $left_ver }; | |
132 | my $right = $version{ $right_ver }; | |
133 | ||
134 | my %uniq = (%$left, %$right); | |
135 | ||
136 | my %changes; | |
137 | for my $lib (keys %uniq) { | |
138 | my $lhs = exists $left->{ $lib } | |
139 | ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)') | |
140 | : '(absent)'; | |
141 | my $rhs = exists $right->{ $lib } | |
142 | ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)') | |
143 | : '(absent)'; | |
144 | ||
145 | next if $lhs eq $rhs; | |
146 | ||
147 | my $change = { | |
148 | (exists $left->{$lib} ? (left => $left->{$lib}) : ()), | |
149 | (exists $right->{$lib} ? (right => $right->{$lib}) : ()), | |
150 | }; | |
151 | ||
152 | $changes{$lib} = $change; | |
153 | } | |
154 | ||
155 | return %changes; | |
156 | } | |
157 | ||
2a61b338 RGS |
158 | # When things escaped. |
159 | # NB. If you put version numbers with trailing zeroes here, you | |
160 | # should also add an alias for the numerical ($]) version; see | |
161 | # just before the __END__ of this module. | |
8f2fd531 | 162 | %released = ( |
51daab35 RGS |
163 | 5.000 => '1994-10-17', |
164 | 5.001 => '1995-03-14', | |
e1371c03 | 165 | 5.002 => '1996-02-29', |
8f2fd531 JB |
166 | 5.00307 => '1996-10-10', |
167 | 5.004 => '1997-05-15', | |
168 | 5.005 => '1998-07-22', | |
169 | 5.00503 => '1999-03-28', | |
170 | 5.00405 => '1999-04-29', | |
171 | 5.006 => '2000-03-22', | |
172 | 5.006001 => '2001-04-08', | |
8f2fd531 JB |
173 | 5.007003 => '2002-03-05', |
174 | 5.008 => '2002-07-19', | |
175 | 5.008001 => '2003-09-25', | |
8f2fd531 | 176 | 5.009 => '2003-10-27', |
9f602dc7 MB |
177 | 5.008002 => '2003-11-05', |
178 | 5.006002 => '2003-11-15', | |
8f2fd531 JB |
179 | 5.008003 => '2004-01-14', |
180 | 5.00504 => '2004-02-23', | |
181 | 5.009001 => '2004-03-16', | |
182 | 5.008004 => '2004-04-21', | |
183 | 5.008005 => '2004-07-19', | |
184 | 5.008006 => '2004-11-27', | |
c9600ef6 | 185 | 5.009002 => '2005-04-01', |
cda59a31 | 186 | 5.008007 => '2005-05-30', |
f372d768 RGS |
187 | 5.009003 => '2006-01-28', |
188 | 5.008008 => '2006-01-31', | |
16531488 | 189 | 5.009004 => '2006-08-15', |
201a0ee1 | 190 | 5.009005 => '2007-07-07', |
a3240fe5 | 191 | 5.010000 => '2007-12-18', |
5b5f44f3 | 192 | 5.008009 => '2008-12-14', |
6c1a81b0 | 193 | 5.010001 => '2009-08-22', |
a6abef0d | 194 | 5.011000 => '2009-10-02', |
979b9961 | 195 | 5.011001 => '2009-10-20', |
a68163ea | 196 | 5.011002 => '2009-11-20', |
65f8b4e7 | 197 | 5.011003 => '2009-12-20', |
d3cba0fe | 198 | 5.011004 => '2010-01-20', |
2a3ea5b5 | 199 | 5.011005 => '2010-02-20', |
431be7b3 | 200 | 5.012000 => '2010-04-12', |
3ec75686 | 201 | 5.013000 => '2010-04-20', |
2cbeaf93 | 202 | 5.012001 => '2010-05-16', |
2db8ee47 | 203 | 5.013001 => '2010-05-20', |
37e1f6c7 | 204 | 5.013002 => '2010-06-22', |
a4729c0f | 205 | 5.013003 => '2010-07-20', |
7529c15c | 206 | 5.013004 => '2010-08-20', |
cf6d0998 | 207 | 5.012002 => '2010-09-06', |
0530d763 | 208 | 5.013005 => '2010-09-19', |
7de25fd5 | 209 | 5.013006 => '2010-10-20', |
d24e0a99 | 210 | 5.013007 => '2010-11-20', |
67dbc274 | 211 | 5.013008 => '2010-12-20', |
96e4e4a0 | 212 | 5.012003 => '2011-01-21', |
e0698539 | 213 | 5.013009 => '2011-01-20', |
c552c5b5 | 214 | 5.013010 => '2011-02-20', |
45492fbf | 215 | 5.013011 => '2011-03-20', |
ee2a35ba | 216 | 5.014000 => '2011-05-14', |
3f07daad | 217 | 5.012004 => '2011-06-20', |
3df1c36a | 218 | 5.012005 => '2012-11-10', |
3d108019 | 219 | 5.014001 => '2011-06-16', |
1f1f08f5 | 220 | 5.015000 => '2011-06-20', |
48b66e80 | 221 | 5.015001 => '2011-07-20', |
2f183b41 | 222 | 5.015002 => '2011-08-20', |
33f96037 | 223 | 5.014002 => '2011-09-26', |
e46b3c7d | 224 | 5.015003 => '2011-09-20', |
f0381222 | 225 | 5.015004 => '2011-10-20', |
40f3bdee | 226 | 5.015005 => '2011-11-20', |
9cdfa110 | 227 | 5.015006 => '2011-12-20', |
b240fc0f | 228 | 5.015007 => '2012-01-20', |
f50587e0 | 229 | 5.015008 => '2012-02-20', |
68a91acb | 230 | 5.015009 => '2012-03-20', |
d10490f6 | 231 | 5.016000 => '2012-05-20', |
990b8741 | 232 | 5.016001 => '2012-08-08', |
e0a7ebbc | 233 | 5.016002 => '2012-11-01', |
f558db2f | 234 | 5.017000 => '2012-05-26', |
71014848 | 235 | 5.017001 => '2012-06-20', |
7ca04d94 | 236 | 5.017002 => '2012-07-20', |
752b5616 | 237 | 5.017003 => '2012-08-20', |
a1484e43 | 238 | 5.017004 => '2012-09-20', |
f7a5efeb | 239 | 5.014003 => '2012-10-12', |
03708946 | 240 | 5.017005 => '2012-10-20', |
e498bd59 | 241 | 5.017006 => '2012-11-20', |
fe03d33b | 242 | 5.017007 => '2012-12-18', |
dd4b1c75 | 243 | 5.017008 => '2013-01-20', |
52f6865c | 244 | 5.017009 => '2013-02-20', |
11d2dbf3 | 245 | 5.014004 => '2013-03-10', |
cd98b2f5 | 246 | 5.016003 => '2013-03-11', |
fd3b4111 | 247 | 5.017010 => '2013-03-21', |
e55f48ec | 248 | 5.017011 => '2013-04-20', |
058ce27e | 249 | 5.018000 => '2013-05-18', |
38a400f2 | 250 | 5.019000 => '2013-05-20', |
2f4a2205 | 251 | 5.019001 => '2013-06-21', |
1f0ad552 | 252 | 5.019002 => '2013-07-22', |
ba4dd7ef | 253 | 5.018001 => '2013-08-12', |
91c842ce | 254 | 5.019003 => '2013-08-20', |
62de23d1 | 255 | 5.019004 => '2013-09-20', |
19c1ec11 | 256 | 5.019005 => '2013-10-20', |
1f2fd626 | 257 | 5.019006 => '2013-11-20', |
95eb96f3 | 258 | 5.019007 => '2013-12-20', |
6c2a7b42 | 259 | 5.018002 => '2014-01-06', |
b616d4df RS |
260 | 5.018003 => '2014-10-01', |
261 | 5.018004 => '2014-10-01', | |
d0ff74ad | 262 | 5.019008 => '2014-01-20', |
5a39b45b | 263 | 5.019009 => '2014-02-20', |
ce42a9e6 | 264 | 5.01901 => '2014-03-20', |
70152776 | 265 | 5.019011 => '2014-04-20', |
4224d62f | 266 | 5.020000 => '2014-05-27', |
4f2cd4f7 | 267 | 5.021000 => '2014-05-27', |
2901561d | 268 | 5.021001 => '2014-06-20', |
6488e103 | 269 | 5.021002 => '2014-07-20', |
46e58890 | 270 | 5.021003 => '2014-08-20', |
096a768b | 271 | 5.020001 => '2014-09-14', |
50e7b15e | 272 | 5.021004 => '2014-09-20', |
54457154 | 273 | 5.021005 => '2014-10-20', |
20f5d8f8 | 274 | 5.021006 => '2014-11-20', |
e544daaa | 275 | 5.021007 => '2014-12-20', |
50ab518c | 276 | 5.021008 => '2015-01-20', |
be3ff683 | 277 | 5.020002 => '2015-02-14', |
c02a3722 | 278 | 5.021009 => '2015-02-21', |
77dc754d | 279 | 5.021010 => '2015-03-20', |
6432c40a | 280 | 5.021011 => '2015-04-20', |
5b0ac1aa | 281 | 5.022000 => '2015-06-01', |
b9e156a2 | 282 | 5.023000 => '2015-06-20', |
8656412d | 283 | 5.023001 => '2015-07-20', |
7d12bc6a | 284 | 5.023002 => '2015-08-20', |
b55fc902 | 285 | 5.020003 => '2015-09-12', |
52513e61 | 286 | 5.023003 => '2015-09-20', |
210f4ae1 | 287 | 5.023004 => '2015-10-20', |
7792a6f5 | 288 | 5.023005 => '????-??-??', |
a47a8f3c | 289 | ); |
8f2fd531 JB |
290 | |
291 | for my $version ( sort { $a <=> $b } keys %released ) { | |
292 | my $family = int ($version * 1000) / 1000; | |
293 | push @{ $families{ $family }} , $version; | |
294 | } | |
295 | ||
c676c838 | 296 | %delta = ( |
a272bf38 DL |
297 | 5 => { |
298 | changed => { | |
299 | 'AnyDBM_File' => undef, | |
300 | 'AutoLoader' => undef, | |
301 | 'AutoSplit' => undef, | |
302 | 'Benchmark' => undef, | |
303 | 'Carp' => undef, | |
304 | 'Cwd' => undef, | |
305 | 'DB_File' => undef, | |
306 | 'DynaLoader' => undef, | |
307 | 'English' => undef, | |
308 | 'Env' => undef, | |
309 | 'Exporter' => undef, | |
310 | 'ExtUtils::MakeMaker' => undef, | |
311 | 'Fcntl' => undef, | |
312 | 'File::Basename' => undef, | |
313 | 'File::CheckTree' => undef, | |
314 | 'File::Find' => undef, | |
315 | 'FileHandle' => undef, | |
316 | 'GDBM_File' => undef, | |
317 | 'Getopt::Long' => undef, | |
318 | 'Getopt::Std' => undef, | |
319 | 'I18N::Collate' => undef, | |
320 | 'IPC::Open2' => undef, | |
321 | 'IPC::Open3' => undef, | |
322 | 'Math::BigFloat' => undef, | |
323 | 'Math::BigInt' => undef, | |
324 | 'Math::Complex' => undef, | |
325 | 'NDBM_File' => undef, | |
326 | 'Net::Ping' => undef, | |
327 | 'ODBM_File' => undef, | |
328 | 'POSIX' => undef, | |
329 | 'SDBM_File' => undef, | |
330 | 'Search::Dict' => undef, | |
331 | 'Shell' => undef, | |
332 | 'Socket' => undef, | |
333 | 'Sys::Hostname' => undef, | |
334 | 'Sys::Syslog' => undef, | |
335 | 'Term::Cap' => undef, | |
336 | 'Term::Complete' => undef, | |
337 | 'Test::Harness' => undef, | |
338 | 'Text::Abbrev' => undef, | |
339 | 'Text::ParseWords' => undef, | |
340 | 'Text::Soundex' => undef, | |
341 | 'Text::Tabs' => undef, | |
342 | 'TieHash' => undef, | |
343 | 'Time::Local' => undef, | |
344 | 'integer' => undef, | |
345 | 'less' => undef, | |
346 | 'sigtrap' => undef, | |
347 | 'strict' => undef, | |
348 | 'subs' => undef, | |
349 | }, | |
350 | removed => { | |
351 | } | |
51daab35 RGS |
352 | }, |
353 | 5.001 => { | |
a272bf38 DL |
354 | delta_from => 5, |
355 | changed => { | |
356 | 'ExtUtils::Liblist' => undef, | |
357 | 'ExtUtils::Manifest' => undef, | |
358 | 'ExtUtils::Mkbootstrap' => undef, | |
359 | 'File::Path' => undef, | |
360 | 'SubstrHash' => undef, | |
361 | 'lib' => undef, | |
362 | }, | |
363 | removed => { | |
364 | } | |
51daab35 RGS |
365 | }, |
366 | 5.002 => { | |
a272bf38 DL |
367 | delta_from => 5.001, |
368 | changed => { | |
369 | 'DB_File' => '1.01', | |
370 | 'Devel::SelfStubber' => '1.01', | |
371 | 'DirHandle' => undef, | |
372 | 'DynaLoader' => '1.00', | |
373 | 'ExtUtils::Install' => undef, | |
374 | 'ExtUtils::MM_OS2' => undef, | |
375 | 'ExtUtils::MM_Unix' => undef, | |
376 | 'ExtUtils::MM_VMS' => undef, | |
377 | 'ExtUtils::MakeMaker' => '5.21', | |
378 | 'ExtUtils::Manifest' => '1.22', | |
379 | 'ExtUtils::Mksymlists' => '1.00', | |
380 | 'Fcntl' => '1.00', | |
381 | 'File::Copy' => '1.5', | |
382 | 'File::Path' => '1.01', | |
383 | 'FileCache' => undef, | |
384 | 'FileHandle' => '1.00', | |
385 | 'GDBM_File' => '1.00', | |
386 | 'Getopt::Long' => '2.01', | |
387 | 'NDBM_File' => '1.00', | |
388 | 'Net::Ping' => '1', | |
389 | 'ODBM_File' => '1.00', | |
390 | 'POSIX' => '1.00', | |
391 | 'Pod::Functions' => undef, | |
392 | 'Pod::Text' => undef, | |
393 | 'SDBM_File' => '1.00', | |
394 | 'Safe' => '1.00', | |
395 | 'SelectSaver' => undef, | |
396 | 'SelfLoader' => '1.06', | |
397 | 'Socket' => '1.5', | |
398 | 'Symbol' => undef, | |
399 | 'Term::ReadLine' => undef, | |
400 | 'Test::Harness' => '1.07', | |
401 | 'Text::Wrap' => undef, | |
402 | 'Tie::Hash' => undef, | |
403 | 'Tie::Scalar' => undef, | |
404 | 'Tie::SubstrHash' => undef, | |
405 | 'diagnostics' => undef, | |
406 | 'overload' => undef, | |
407 | 'vars' => undef, | |
408 | }, | |
409 | removed => { | |
410 | 'SubstrHash' => 1, | |
411 | 'TieHash' => 1, | |
412 | } | |
51daab35 | 413 | }, |
8f2fd531 | 414 | 5.00307 => { |
a272bf38 DL |
415 | delta_from => 5.002, |
416 | changed => { | |
417 | 'Config' => undef, | |
418 | 'DB_File' => '1.03', | |
419 | 'ExtUtils::Embed' => '1.18', | |
b7c1f088 RS |
420 | 'ExtUtils::Install' => '1.15', |
421 | 'ExtUtils::Liblist' => '1.20', | |
422 | 'ExtUtils::MM_Unix' => '1.107', | |
a272bf38 DL |
423 | 'ExtUtils::MakeMaker' => '5.38', |
424 | 'ExtUtils::Manifest' => '1.27', | |
b7c1f088 RS |
425 | 'ExtUtils::Mkbootstrap' => '1.13', |
426 | 'ExtUtils::Mksymlists' => '1.12', | |
427 | 'ExtUtils::testlib' => '1.11', | |
a272bf38 DL |
428 | 'Fatal' => undef, |
429 | 'File::Basename' => '2.4', | |
430 | 'FindBin' => '1.04', | |
431 | 'Getopt::Long' => '2.04', | |
432 | 'IO' => undef, | |
433 | 'IO::File' => '1.05', | |
434 | 'IO::Handle' => '1.12', | |
435 | 'IO::Pipe' => '1.07', | |
436 | 'IO::Seekable' => '1.05', | |
437 | 'IO::Select' => '1.09', | |
438 | 'IO::Socket' => '1.13', | |
439 | 'Net::Ping' => '1.01', | |
440 | 'OS2::ExtAttr' => '0.01', | |
441 | 'OS2::PrfDB' => '0.02', | |
442 | 'OS2::Process' => undef, | |
443 | 'OS2::REXX' => undef, | |
444 | 'Opcode' => '1.01', | |
445 | 'Safe' => '2.06', | |
446 | 'Test::Harness' => '1.13', | |
447 | 'Text::Tabs' => '96.051501', | |
448 | 'Text::Wrap' => '96.041801', | |
449 | 'UNIVERSAL' => undef, | |
450 | 'VMS::Filespec' => undef, | |
451 | 'VMS::Stdio' => '2.0', | |
452 | 'ops' => undef, | |
453 | 'sigtrap' => '1.01', | |
454 | }, | |
455 | removed => { | |
456 | } | |
8f2fd531 | 457 | }, |
a272bf38 DL |
458 | 5.004 => { |
459 | delta_from => 5.00307, | |
460 | changed => { | |
461 | 'Bundle::CPAN' => '0.02', | |
462 | 'CGI' => '2.36', | |
463 | 'CGI::Apache' => '1.01', | |
464 | 'CGI::Carp' => '1.06', | |
465 | 'CGI::Fast' => '1.00a', | |
466 | 'CGI::Push' => '1.00', | |
467 | 'CGI::Switch' => '0.05', | |
468 | 'CPAN' => '1.2401', | |
b7c1f088 | 469 | 'CPAN::FirstTime' => '1.18', |
a272bf38 DL |
470 | 'CPAN::Nox' => undef, |
471 | 'Class::Struct' => undef, | |
472 | 'Cwd' => '2.00', | |
473 | 'DB_File' => '1.14', | |
474 | 'DynaLoader' => '1.02', | |
475 | 'ExtUtils::Command' => '1.00', | |
476 | 'ExtUtils::Embed' => '1.2501', | |
b7c1f088 RS |
477 | 'ExtUtils::Install' => '1.16', |
478 | 'ExtUtils::Liblist' => '1.2201', | |
479 | 'ExtUtils::MM_Unix' => '1.114', | |
a272bf38 DL |
480 | 'ExtUtils::MM_Win32' => undef, |
481 | 'ExtUtils::MakeMaker' => '5.4002', | |
b7c1f088 RS |
482 | 'ExtUtils::Manifest' => '1.33', |
483 | 'ExtUtils::Mksymlists' => '1.13', | |
a272bf38 DL |
484 | 'ExtUtils::XSSymSet' => '1.0', |
485 | 'Fcntl' => '1.03', | |
486 | 'File::Basename' => '2.5', | |
487 | 'File::Compare' => '1.1001', | |
488 | 'File::Copy' => '2.02', | |
489 | 'File::Path' => '1.04', | |
490 | 'File::stat' => undef, | |
491 | 'FileHandle' => '2.00', | |
492 | 'Getopt::Long' => '2.10', | |
493 | 'IO::File' => '1.0602', | |
494 | 'IO::Handle' => '1.1504', | |
495 | 'IO::Pipe' => '1.0901', | |
496 | 'IO::Seekable' => '1.06', | |
497 | 'IO::Select' => '1.10', | |
498 | 'IO::Socket' => '1.1602', | |
499 | 'IPC::Open2' => '1.01', | |
500 | 'IPC::Open3' => '1.0101', | |
501 | 'Math::Complex' => '1.01', | |
502 | 'Math::Trig' => '1', | |
503 | 'Net::Ping' => '2.02', | |
504 | 'Net::hostent' => undef, | |
505 | 'Net::netent' => undef, | |
506 | 'Net::protoent' => undef, | |
507 | 'Net::servent' => undef, | |
508 | 'Opcode' => '1.04', | |
509 | 'POSIX' => '1.02', | |
510 | 'Pod::Html' => undef, | |
511 | 'Pod::Text' => '1.0203', | |
512 | 'SelfLoader' => '1.07', | |
513 | 'Socket' => '1.6', | |
514 | 'Symbol' => '1.02', | |
515 | 'Test::Harness' => '1.1502', | |
516 | 'Text::Tabs' => '96.121201', | |
517 | 'Text::Wrap' => '97.011701', | |
518 | 'Tie::RefHash' => undef, | |
519 | 'Time::gmtime' => '1.01', | |
520 | 'Time::localtime' => '1.01', | |
521 | 'Time::tm' => undef, | |
522 | 'User::grent' => undef, | |
523 | 'User::pwent' => undef, | |
524 | 'VMS::DCLsym' => '1.01', | |
525 | 'VMS::Stdio' => '2.02', | |
526 | 'autouse' => '1.01', | |
527 | 'blib' => undef, | |
528 | 'constant' => '1.00', | |
529 | 'locale' => undef, | |
530 | 'sigtrap' => '1.02', | |
531 | 'vmsish' => undef, | |
532 | }, | |
533 | removed => { | |
534 | 'Fatal' => 1, | |
535 | } | |
8f2fd531 | 536 | }, |
a272bf38 DL |
537 | 5.00405 => { |
538 | delta_from => 5.004, | |
539 | changed => { | |
540 | 'AutoLoader' => '5.56', | |
541 | 'AutoSplit' => '1.0303', | |
542 | 'Bundle::CPAN' => '0.03', | |
543 | 'CGI' => '2.42', | |
544 | 'CGI::Apache' => '1.1', | |
545 | 'CGI::Carp' => '1.10', | |
546 | 'CGI::Cookie' => '1.06', | |
547 | 'CGI::Push' => '1.01', | |
548 | 'CGI::Switch' => '0.06', | |
549 | 'CPAN' => '1.40', | |
b7c1f088 | 550 | 'CPAN::FirstTime' => '1.30', |
a272bf38 DL |
551 | 'Cwd' => '2.01', |
552 | 'DB_File' => '1.15', | |
553 | 'DynaLoader' => '1.03', | |
554 | 'ExtUtils::Command' => '1.01', | |
555 | 'ExtUtils::Embed' => '1.2505', | |
b7c1f088 RS |
556 | 'ExtUtils::Install' => '1.28', |
557 | 'ExtUtils::Liblist' => '1.25', | |
558 | 'ExtUtils::MM_Unix' => '1.118', | |
a272bf38 | 559 | 'ExtUtils::MakeMaker' => '5.42', |
b7c1f088 RS |
560 | 'ExtUtils::Mkbootstrap' => '1.14', |
561 | 'ExtUtils::Mksymlists' => '1.16', | |
a272bf38 DL |
562 | 'File::Basename' => '2.6', |
563 | 'File::DosGlob' => undef, | |
564 | 'File::Path' => '1.0402', | |
565 | 'File::Spec' => '0.6', | |
566 | 'File::Spec::Mac' => '1.0', | |
567 | 'File::Spec::OS2' => undef, | |
568 | 'File::Spec::Unix' => undef, | |
569 | 'File::Spec::VMS' => undef, | |
570 | 'File::Spec::Win32' => undef, | |
571 | 'FindBin' => '1.41', | |
572 | 'Getopt::Long' => '2.19', | |
573 | 'IO::File' => '1.06021', | |
574 | 'IO::Socket' => '1.1603', | |
575 | 'IPC::Open3' => '1.0103', | |
576 | 'Math::Complex' => '1.25', | |
577 | 'NDBM_File' => '1.01', | |
578 | 'Pod::Html' => '1.0101', | |
579 | 'Pod::Text' => '1.0204', | |
580 | 'SelfLoader' => '1.08', | |
581 | 'Socket' => '1.7', | |
582 | 'Test' => '1.04', | |
583 | 'Test::Harness' => '1.1602', | |
584 | 'Text::ParseWords' => '3.1001', | |
585 | 'Text::Wrap' => '98.112902', | |
586 | 'Tie::Handle' => undef, | |
587 | 'attrs' => '0.1', | |
588 | 'base' => undef, | |
589 | 'blib' => '1.00', | |
590 | 're' => undef, | |
591 | 'strict' => '1.01', | |
592 | }, | |
593 | removed => { | |
594 | } | |
8f2fd531 | 595 | }, |
a272bf38 DL |
596 | 5.005 => { |
597 | delta_from => 5.00405, | |
598 | changed => { | |
599 | 'AutoLoader' => undef, | |
600 | 'AutoSplit' => '1.0302', | |
601 | 'B' => undef, | |
602 | 'B::Asmdata' => undef, | |
603 | 'B::Assembler' => undef, | |
604 | 'B::Bblock' => undef, | |
605 | 'B::Bytecode' => undef, | |
606 | 'B::C' => undef, | |
607 | 'B::CC' => undef, | |
608 | 'B::Debug' => undef, | |
609 | 'B::Deparse' => '0.56', | |
610 | 'B::Disassembler' => undef, | |
611 | 'B::Lint' => undef, | |
612 | 'B::Showlex' => undef, | |
613 | 'B::Stackobj' => undef, | |
614 | 'B::Terse' => undef, | |
615 | 'B::Xref' => undef, | |
616 | 'CGI::Carp' => '1.101', | |
617 | 'CPAN' => '1.3901', | |
b7c1f088 | 618 | 'CPAN::FirstTime' => '1.29', |
a272bf38 DL |
619 | 'DB_File' => '1.60', |
620 | 'Data::Dumper' => '2.09', | |
1549d03d | 621 | 'Errno' => '1.09', |
a272bf38 | 622 | 'ExtUtils::Installed' => '0.02', |
b7c1f088 | 623 | 'ExtUtils::MM_Unix' => '1.12601', |
a272bf38 | 624 | 'ExtUtils::MakeMaker' => '5.4301', |
b7c1f088 RS |
625 | 'ExtUtils::Mkbootstrap' => '1.13', |
626 | 'ExtUtils::Mksymlists' => '1.17', | |
a272bf38 DL |
627 | 'ExtUtils::Packlist' => '0.03', |
628 | 'Fatal' => '1.02', | |
629 | 'File::Path' => '1.0401', | |
630 | 'Getopt::Long' => '2.17', | |
631 | 'IO::Handle' => '1.1505', | |
632 | 'IPC::Msg' => '1.00', | |
633 | 'IPC::Open3' => '1.0102', | |
634 | 'IPC::Semaphore' => '1.00', | |
635 | 'IPC::SysV' => '1.03', | |
636 | 'O' => undef, | |
637 | 'OS2::Process' => '0.2', | |
638 | 'Pod::Html' => '1.01', | |
639 | 'Pod::Text' => '1.0203', | |
640 | 'Text::ParseWords' => '3.1', | |
641 | 'Text::Wrap' => '97.02', | |
642 | 'Thread' => '1.0', | |
643 | 'Thread::Queue' => undef, | |
644 | 'Thread::Semaphore' => undef, | |
645 | 'Thread::Signal' => undef, | |
646 | 'Thread::Specific' => undef, | |
647 | 'Tie::Array' => '1.00', | |
648 | 'VMS::Stdio' => '2.1', | |
649 | 'attrs' => '1.0', | |
650 | 'fields' => '0.02', | |
651 | 're' => '0.02', | |
652 | }, | |
653 | removed => { | |
654 | 'Bundle::CPAN' => 1, | |
655 | } | |
8f2fd531 | 656 | }, |
a272bf38 DL |
657 | 5.00503 => { |
658 | delta_from => 5.005, | |
659 | changed => { | |
660 | 'AutoSplit' => '1.0303', | |
661 | 'CGI' => '2.46', | |
662 | 'CGI::Carp' => '1.13', | |
663 | 'CGI::Fast' => '1.01', | |
664 | 'CPAN' => '1.48', | |
665 | 'CPAN::FirstTime' => '1.36', | |
666 | 'CPAN::Nox' => '1.00', | |
667 | 'DB_File' => '1.65', | |
668 | 'Data::Dumper' => '2.101', | |
669 | 'Dumpvalue' => undef, | |
1549d03d | 670 | 'Errno' => '1.111', |
a272bf38 DL |
671 | 'ExtUtils::Install' => '1.28', |
672 | 'ExtUtils::Liblist' => '1.25', | |
673 | 'ExtUtils::MM_Unix' => '1.12602', | |
674 | 'ExtUtils::MakeMaker' => '5.4302', | |
675 | 'ExtUtils::Manifest' => '1.33', | |
676 | 'ExtUtils::Mkbootstrap' => '1.14', | |
677 | 'ExtUtils::Mksymlists' => '1.17', | |
678 | 'ExtUtils::testlib' => '1.11', | |
679 | 'FindBin' => '1.42', | |
680 | 'Getopt::Long' => '2.19', | |
681 | 'Getopt::Std' => '1.01', | |
682 | 'IO::Pipe' => '1.0902', | |
683 | 'IPC::Open3' => '1.0103', | |
684 | 'Math::Complex' => '1.26', | |
685 | 'Test' => '1.122', | |
686 | 'Text::Wrap' => '98.112902', | |
687 | }, | |
688 | removed => { | |
689 | } | |
8f2fd531 | 690 | }, |
ad91da88 | 691 | 5.00504 => { |
a272bf38 DL |
692 | delta_from => 5.00503, |
693 | changed => { | |
b7c1f088 | 694 | 'CPAN::FirstTime' => '1.36', |
a272bf38 | 695 | 'DB_File' => '1.807', |
b7c1f088 RS |
696 | 'ExtUtils::Install' => '1.28', |
697 | 'ExtUtils::Liblist' => '1.25', | |
698 | 'ExtUtils::MM_Unix' => '1.12602', | |
699 | 'ExtUtils::Manifest' => '1.33', | |
a272bf38 | 700 | 'ExtUtils::Miniperl' => undef, |
b7c1f088 RS |
701 | 'ExtUtils::Mkbootstrap' => '1.14', |
702 | 'ExtUtils::Mksymlists' => '1.17', | |
703 | 'ExtUtils::testlib' => '1.11', | |
a272bf38 DL |
704 | 'File::Compare' => '1.1002', |
705 | 'File::Spec' => '0.8', | |
706 | 'File::Spec::Functions' => undef, | |
707 | 'File::Spec::Mac' => undef, | |
708 | 'Getopt::Long' => '2.20', | |
709 | 'Pod::Html' => '1.02', | |
710 | }, | |
711 | removed => { | |
712 | } | |
ad91da88 | 713 | }, |
a272bf38 DL |
714 | 5.006 => { |
715 | delta_from => 5.00504, | |
716 | changed => { | |
717 | 'AutoLoader' => '5.57', | |
718 | 'AutoSplit' => '1.0305', | |
719 | 'B::Deparse' => '0.59', | |
720 | 'B::Stash' => undef, | |
721 | 'Benchmark' => '1', | |
722 | 'ByteLoader' => '0.03', | |
723 | 'CGI' => '2.56', | |
724 | 'CGI::Apache' => undef, | |
725 | 'CGI::Carp' => '1.14', | |
726 | 'CGI::Cookie' => '1.12', | |
727 | 'CGI::Fast' => '1.02', | |
728 | 'CGI::Pretty' => '1.03', | |
729 | 'CGI::Switch' => undef, | |
730 | 'CPAN' => '1.52', | |
b7c1f088 | 731 | 'CPAN::FirstTime' => '1.38', |
a272bf38 DL |
732 | 'Carp::Heavy' => undef, |
733 | 'Class::Struct' => '0.58', | |
734 | 'Cwd' => '2.02', | |
735 | 'DB' => '1.0', | |
736 | 'DB_File' => '1.72', | |
737 | 'Devel::DProf' => '20000000.00_00', | |
738 | 'Devel::Peek' => '1.00_01', | |
739 | 'DynaLoader' => '1.04', | |
740 | 'Exporter' => '5.562', | |
741 | 'Exporter::Heavy' => undef, | |
742 | 'ExtUtils::MM_Cygwin' => undef, | |
b7c1f088 | 743 | 'ExtUtils::MM_Unix' => '1.12603', |
a272bf38 DL |
744 | 'ExtUtils::MakeMaker' => '5.45', |
745 | 'File::Copy' => '2.03', | |
746 | 'File::Glob' => '0.991', | |
747 | 'File::Path' => '1.0403', | |
748 | 'GDBM_File' => '1.03', | |
749 | 'Getopt::Long' => '2.23', | |
750 | 'Getopt::Std' => '1.02', | |
751 | 'IO' => '1.20', | |
752 | 'IO::Dir' => '1.03', | |
753 | 'IO::File' => '1.08', | |
754 | 'IO::Handle' => '1.21', | |
755 | 'IO::Pipe' => '1.121', | |
756 | 'IO::Poll' => '0.01', | |
757 | 'IO::Seekable' => '1.08', | |
758 | 'IO::Select' => '1.14', | |
759 | 'IO::Socket' => '1.26', | |
760 | 'IO::Socket::INET' => '1.25', | |
761 | 'IO::Socket::UNIX' => '1.20', | |
762 | 'JNI' => '0.01', | |
763 | 'JPL::AutoLoader' => undef, | |
764 | 'JPL::Class' => undef, | |
765 | 'JPL::Compile' => undef, | |
766 | 'NDBM_File' => '1.03', | |
767 | 'ODBM_File' => '1.02', | |
768 | 'OS2::DLL' => undef, | |
769 | 'POSIX' => '1.03', | |
770 | 'Pod::Checker' => '1.098', | |
771 | 'Pod::Find' => '0.12', | |
772 | 'Pod::Html' => '1.03', | |
773 | 'Pod::InputObjects' => '1.12', | |
774 | 'Pod::Man' => '1.02', | |
775 | 'Pod::ParseUtils' => '0.2', | |
776 | 'Pod::Parser' => '1.12', | |
777 | 'Pod::Plainer' => '0.01', | |
778 | 'Pod::Select' => '1.12', | |
779 | 'Pod::Text' => '2.03', | |
780 | 'Pod::Text::Color' => '0.05', | |
781 | 'Pod::Text::Termcap' => '0.04', | |
782 | 'Pod::Usage' => '1.12', | |
783 | 'SDBM_File' => '1.02', | |
784 | 'SelfLoader' => '1.0901', | |
785 | 'Shell' => '0.2', | |
786 | 'Socket' => '1.72', | |
787 | 'Sys::Hostname' => '1.1', | |
788 | 'Sys::Syslog' => '0.01', | |
789 | 'Term::ANSIColor' => '1.01', | |
790 | 'Test' => '1.13', | |
791 | 'Test::Harness' => '1.1604', | |
792 | 'Text::ParseWords' => '3.2', | |
793 | 'Text::Soundex' => '1.0', | |
794 | 'Text::Tabs' => '98.112801', | |
795 | 'Tie::Array' => '1.01', | |
796 | 'Tie::Handle' => '1.0', | |
797 | 'VMS::Stdio' => '2.2', | |
798 | 'XSLoader' => '0.01', | |
799 | 'attributes' => '0.03', | |
800 | 'autouse' => '1.02', | |
801 | 'base' => '1.01', | |
802 | 'bytes' => undef, | |
803 | 'charnames' => undef, | |
804 | 'constant' => '1.02', | |
805 | 'diagnostics' => '1.0', | |
806 | 'fields' => '1.01', | |
807 | 'filetest' => undef, | |
808 | 'lib' => '0.5564', | |
809 | 'open' => undef, | |
810 | 'utf8' => undef, | |
811 | 'warnings' => undef, | |
812 | 'warnings::register' => undef, | |
813 | }, | |
814 | removed => { | |
815 | } | |
8f2fd531 | 816 | }, |
a272bf38 DL |
817 | 5.006001 => { |
818 | delta_from => 5.006, | |
819 | changed => { | |
820 | 'AutoLoader' => '5.58', | |
821 | 'B::Assembler' => '0.02', | |
822 | 'B::Concise' => '0.51', | |
823 | 'B::Deparse' => '0.6', | |
824 | 'ByteLoader' => '0.04', | |
825 | 'CGI' => '2.752', | |
826 | 'CGI::Carp' => '1.20', | |
827 | 'CGI::Cookie' => '1.18', | |
828 | 'CGI::Pretty' => '1.05', | |
829 | 'CGI::Push' => '1.04', | |
830 | 'CGI::Util' => '1.1', | |
831 | 'CPAN' => '1.59_54', | |
832 | 'CPAN::FirstTime' => '1.53', | |
833 | 'Class::Struct' => '0.59', | |
834 | 'Cwd' => '2.04', | |
835 | 'DB_File' => '1.75', | |
836 | 'Data::Dumper' => '2.102', | |
837 | 'ExtUtils::Install' => '1.28', | |
838 | 'ExtUtils::Liblist' => '1.26', | |
839 | 'ExtUtils::MM_Unix' => '1.12603', | |
840 | 'ExtUtils::Manifest' => '1.33', | |
841 | 'ExtUtils::Mkbootstrap' => '1.14', | |
842 | 'ExtUtils::Mksymlists' => '1.17', | |
843 | 'ExtUtils::testlib' => '1.11', | |
844 | 'File::Path' => '1.0404', | |
845 | 'File::Spec' => '0.82', | |
846 | 'File::Spec::Epoc' => undef, | |
847 | 'File::Spec::Functions' => '1.1', | |
848 | 'File::Spec::Mac' => '1.2', | |
849 | 'File::Spec::OS2' => '1.1', | |
850 | 'File::Spec::Unix' => '1.2', | |
851 | 'File::Spec::VMS' => '1.1', | |
852 | 'File::Spec::Win32' => '1.2', | |
853 | 'File::Temp' => '0.12', | |
854 | 'GDBM_File' => '1.05', | |
855 | 'Getopt::Long' => '2.25', | |
856 | 'IO::Poll' => '0.05', | |
857 | 'JNI' => '0.1', | |
858 | 'Math::BigFloat' => '0.02', | |
859 | 'Math::BigInt' => '0.01', | |
860 | 'Math::Complex' => '1.31', | |
861 | 'NDBM_File' => '1.04', | |
862 | 'ODBM_File' => '1.03', | |
863 | 'OS2::REXX' => '1.00', | |
864 | 'Pod::Checker' => '1.2', | |
865 | 'Pod::Find' => '0.21', | |
866 | 'Pod::InputObjects' => '1.13', | |
867 | 'Pod::LaTeX' => '0.53', | |
868 | 'Pod::Man' => '1.15', | |
869 | 'Pod::ParseUtils' => '0.22', | |
870 | 'Pod::Parser' => '1.13', | |
871 | 'Pod::Select' => '1.13', | |
872 | 'Pod::Text' => '2.08', | |
873 | 'Pod::Text::Color' => '0.06', | |
874 | 'Pod::Text::Overstrike' => '1.01', | |
875 | 'Pod::Text::Termcap' => '1', | |
876 | 'Pod::Usage' => '1.14', | |
877 | 'SDBM_File' => '1.03', | |
878 | 'SelfLoader' => '1.0902', | |
879 | 'Shell' => '0.3', | |
880 | 'Term::ANSIColor' => '1.03', | |
881 | 'Test' => '1.15', | |
882 | 'Text::Wrap' => '2001.0131', | |
883 | 'Tie::Handle' => '4.0', | |
884 | 'Tie::RefHash' => '1.3', | |
885 | }, | |
886 | removed => { | |
887 | } | |
8f2fd531 JB |
888 | }, |
889 | 5.006002 => { | |
a272bf38 DL |
890 | delta_from => 5.006001, |
891 | changed => { | |
b7c1f088 | 892 | 'CPAN::FirstTime' => '1.53', |
a272bf38 DL |
893 | 'DB_File' => '1.806', |
894 | 'Data::Dumper' => '2.121', | |
895 | 'ExtUtils::Command' => '1.05', | |
896 | 'ExtUtils::Command::MM' => '0.03', | |
897 | 'ExtUtils::Install' => '1.32', | |
898 | 'ExtUtils::Installed' => '0.08', | |
899 | 'ExtUtils::Liblist' => '1.01', | |
900 | 'ExtUtils::Liblist::Kid'=> '1.3', | |
901 | 'ExtUtils::MM' => '0.04', | |
902 | 'ExtUtils::MM_Any' => '0.07', | |
903 | 'ExtUtils::MM_BeOS' => '1.04', | |
904 | 'ExtUtils::MM_Cygwin' => '1.06', | |
905 | 'ExtUtils::MM_DOS' => '0.02', | |
906 | 'ExtUtils::MM_MacOS' => '1.07', | |
907 | 'ExtUtils::MM_NW5' => '2.06', | |
908 | 'ExtUtils::MM_OS2' => '1.04', | |
909 | 'ExtUtils::MM_UWIN' => '0.02', | |
910 | 'ExtUtils::MM_Unix' => '1.42', | |
911 | 'ExtUtils::MM_VMS' => '5.70', | |
912 | 'ExtUtils::MM_Win32' => '1.09', | |
913 | 'ExtUtils::MM_Win95' => '0.03', | |
914 | 'ExtUtils::MY' => '0.01', | |
915 | 'ExtUtils::MakeMaker' => '6.17', | |
916 | 'ExtUtils::MakeMaker::bytes'=> '0.01', | |
917 | 'ExtUtils::MakeMaker::vmsish'=> '0.01', | |
918 | 'ExtUtils::Manifest' => '1.42', | |
919 | 'ExtUtils::Mkbootstrap' => '1.15', | |
920 | 'ExtUtils::Mksymlists' => '1.19', | |
921 | 'ExtUtils::Packlist' => '0.04', | |
922 | 'ExtUtils::testlib' => '1.15', | |
923 | 'File::Spec' => '0.86', | |
924 | 'File::Spec::Cygwin' => '1.1', | |
925 | 'File::Spec::Epoc' => '1.1', | |
926 | 'File::Spec::Functions' => '1.3', | |
927 | 'File::Spec::Mac' => '1.4', | |
928 | 'File::Spec::OS2' => '1.2', | |
929 | 'File::Spec::Unix' => '1.5', | |
930 | 'File::Spec::VMS' => '1.4', | |
931 | 'File::Spec::Win32' => '1.4', | |
932 | 'File::Temp' => '0.14', | |
933 | 'Safe' => '2.10', | |
934 | 'Test' => '1.24', | |
935 | 'Test::Builder' => '0.17', | |
936 | 'Test::Harness' => '2.30', | |
937 | 'Test::Harness::Assert' => '0.01', | |
938 | 'Test::Harness::Iterator'=> '0.01', | |
939 | 'Test::Harness::Straps' => '0.15', | |
940 | 'Test::More' => '0.47', | |
941 | 'Test::Simple' => '0.47', | |
942 | 'Unicode' => '3.0.1', | |
943 | 'if' => '0.03', | |
944 | 'ops' => '1.00', | |
945 | }, | |
946 | removed => { | |
947 | } | |
c595d054 | 948 | }, |
a272bf38 DL |
949 | 5.007003 => { |
950 | delta_from => 5.006001, | |
951 | changed => { | |
952 | 'AnyDBM_File' => '1.00', | |
953 | 'Attribute::Handlers' => '0.76', | |
954 | 'AutoLoader' => '5.59', | |
955 | 'AutoSplit' => '1.0307', | |
956 | 'B' => '1.00', | |
957 | 'B::Asmdata' => '1.00', | |
958 | 'B::Assembler' => '0.04', | |
959 | 'B::Bblock' => '1.00', | |
960 | 'B::Bytecode' => '1.00', | |
961 | 'B::C' => '1.01', | |
962 | 'B::CC' => '1.00', | |
963 | 'B::Concise' => '0.52', | |
964 | 'B::Debug' => '1.00', | |
965 | 'B::Deparse' => '0.63', | |
966 | 'B::Disassembler' => '1.01', | |
967 | 'B::Lint' => '1.00', | |
968 | 'B::Showlex' => '1.00', | |
969 | 'B::Stackobj' => '1.00', | |
970 | 'B::Stash' => '1.00', | |
971 | 'B::Terse' => '1.00', | |
972 | 'B::Xref' => '1.00', | |
973 | 'Benchmark' => '1.04', | |
974 | 'CGI' => '2.80', | |
975 | 'CGI::Apache' => '1.00', | |
976 | 'CGI::Carp' => '1.22', | |
977 | 'CGI::Cookie' => '1.20', | |
978 | 'CGI::Fast' => '1.04', | |
979 | 'CGI::Pretty' => '1.05_00', | |
980 | 'CGI::Switch' => '1.00', | |
981 | 'CGI::Util' => '1.3', | |
982 | 'CPAN' => '1.59_56', | |
b7c1f088 | 983 | 'CPAN::FirstTime' => '1.54', |
a272bf38 DL |
984 | 'CPAN::Nox' => '1.00_01', |
985 | 'Carp' => '1.01', | |
e1f9e915 | 986 | 'Carp::Heavy' => '1.01', |
a272bf38 DL |
987 | 'Class::ISA' => '0.32', |
988 | 'Class::Struct' => '0.61', | |
989 | 'Cwd' => '2.06', | |
990 | 'DB_File' => '1.804', | |
991 | 'Data::Dumper' => '2.12', | |
992 | 'Devel::DProf' => '20000000.00_01', | |
993 | 'Devel::PPPort' => '2.0002', | |
994 | 'Devel::Peek' => '1.00_03', | |
995 | 'Devel::SelfStubber' => '1.03', | |
996 | 'Digest' => '1.00', | |
997 | 'Digest::MD5' => '2.16', | |
998 | 'DirHandle' => '1.00', | |
999 | 'Dumpvalue' => '1.10', | |
1000 | 'Encode' => '0.40', | |
1001 | 'Encode::CN' => '0.02', | |
1002 | 'Encode::CN::HZ' => undef, | |
1003 | 'Encode::Encoding' => '0.02', | |
1004 | 'Encode::Internal' => '0.30', | |
1005 | 'Encode::JP' => '0.02', | |
1006 | 'Encode::JP::Constants' => '1.02', | |
1007 | 'Encode::JP::H2Z' => '0.77', | |
1008 | 'Encode::JP::ISO_2022_JP'=> undef, | |
1009 | 'Encode::JP::JIS' => undef, | |
1010 | 'Encode::JP::Tr' => '0.77', | |
1011 | 'Encode::KR' => '0.02', | |
1012 | 'Encode::TW' => '0.02', | |
1013 | 'Encode::Tcl' => '1.01', | |
1014 | 'Encode::Tcl::Escape' => '1.01', | |
1015 | 'Encode::Tcl::Extended' => '1.01', | |
1016 | 'Encode::Tcl::HanZi' => '1.01', | |
1017 | 'Encode::Tcl::Table' => '1.01', | |
1018 | 'Encode::Unicode' => '0.30', | |
1019 | 'Encode::XS' => '0.40', | |
1020 | 'Encode::iso10646_1' => '0.30', | |
1021 | 'Encode::usc2_le' => '0.30', | |
1022 | 'Encode::utf8' => '0.30', | |
1023 | 'English' => '1.00', | |
1024 | 'Env' => '1.00', | |
1025 | 'Exporter' => '5.566', | |
1026 | 'Exporter::Heavy' => '5.562', | |
1027 | 'ExtUtils::Command' => '1.02', | |
1028 | 'ExtUtils::Constant' => '0.11', | |
1029 | 'ExtUtils::Embed' => '1.250601', | |
1030 | 'ExtUtils::Install' => '1.29', | |
1031 | 'ExtUtils::Installed' => '0.04', | |
1032 | 'ExtUtils::Liblist' => '1.2701', | |
1033 | 'ExtUtils::MM_BeOS' => '1.00', | |
1034 | 'ExtUtils::MM_Cygwin' => '1.00', | |
1035 | 'ExtUtils::MM_OS2' => '1.00', | |
1036 | 'ExtUtils::MM_Unix' => '1.12607', | |
1037 | 'ExtUtils::MM_VMS' => '5.56', | |
1038 | 'ExtUtils::MM_Win32' => '1.00_02', | |
1039 | 'ExtUtils::MakeMaker' => '5.48_03', | |
1040 | 'ExtUtils::Manifest' => '1.35', | |
1041 | 'ExtUtils::Mkbootstrap' => '1.1401', | |
1042 | 'ExtUtils::Mksymlists' => '1.18', | |
1043 | 'ExtUtils::Packlist' => '0.04', | |
1044 | 'ExtUtils::testlib' => '1.1201', | |
1045 | 'Fatal' => '1.03', | |
1046 | 'Fcntl' => '1.04', | |
1047 | 'File::Basename' => '2.71', | |
1048 | 'File::CheckTree' => '4.1', | |
1049 | 'File::Compare' => '1.1003', | |
1050 | 'File::Copy' => '2.05', | |
1051 | 'File::DosGlob' => '1.00', | |
1052 | 'File::Find' => '1.04', | |
1053 | 'File::Glob' => '1.01', | |
1054 | 'File::Path' => '1.05', | |
1055 | 'File::Spec' => '0.83', | |
1056 | 'File::Spec::Cygwin' => '1.0', | |
1057 | 'File::Spec::Epoc' => '1.00', | |
1058 | 'File::Spec::Functions' => '1.2', | |
1059 | 'File::Spec::Mac' => '1.3', | |
1060 | 'File::Spec::Unix' => '1.4', | |
1061 | 'File::Spec::VMS' => '1.2', | |
1062 | 'File::Spec::Win32' => '1.3', | |
1063 | 'File::Temp' => '0.13', | |
1064 | 'File::stat' => '1.00', | |
1065 | 'FileCache' => '1.00', | |
1066 | 'FileHandle' => '2.01', | |
1067 | 'Filter::Simple' => '0.77', | |
1068 | 'Filter::Util::Call' => '1.06', | |
1069 | 'FindBin' => '1.43', | |
1070 | 'GDBM_File' => '1.06', | |
1071 | 'Getopt::Long' => '2.28', | |
1072 | 'Getopt::Std' => '1.03', | |
1073 | 'I18N::Collate' => '1.00', | |
1074 | 'I18N::LangTags' => '0.27', | |
1075 | 'I18N::LangTags::List' => '0.25', | |
1076 | 'I18N::Langinfo' => '0.01', | |
1077 | 'IO::Dir' => '1.03_00', | |
1078 | 'IO::File' => '1.09', | |
1079 | 'IO::Handle' => '1.21_00', | |
1080 | 'IO::Pipe' => '1.122', | |
1081 | 'IO::Poll' => '0.06', | |
1082 | 'IO::Seekable' => '1.08_00', | |
1083 | 'IO::Select' => '1.15', | |
1084 | 'IO::Socket' => '1.27', | |
1085 | 'IO::Socket::INET' => '1.26', | |
1086 | 'IO::Socket::UNIX' => '1.20_00', | |
1087 | 'IPC::Msg' => '1.00_00', | |
1088 | 'IPC::Open3' => '1.0104', | |
1089 | 'IPC::Semaphore' => '1.00_00', | |
1090 | 'IPC::SysV' => '1.03_00', | |
1091 | 'List::Util' => '1.06_00', | |
1092 | 'Locale::Constants' => '2.01', | |
1093 | 'Locale::Country' => '2.01', | |
1094 | 'Locale::Currency' => '2.01', | |
1095 | 'Locale::Language' => '2.01', | |
1096 | 'Locale::Maketext' => '1.03', | |
1097 | 'Locale::Script' => '2.01', | |
1098 | 'MIME::Base64' => '2.12', | |
1099 | 'MIME::QuotedPrint' => '2.03', | |
1100 | 'Math::BigFloat' => '1.30', | |
1101 | 'Math::BigInt' => '1.54', | |
1102 | 'Math::BigInt::Calc' => '0.25', | |
1103 | 'Math::Complex' => '1.34', | |
1104 | 'Math::Trig' => '1.01', | |
1105 | 'Memoize' => '0.66', | |
1106 | 'Memoize::AnyDBM_File' => '0.65', | |
1107 | 'Memoize::Expire' => '0.66', | |
1108 | 'Memoize::ExpireFile' => '0.65', | |
1109 | 'Memoize::ExpireTest' => '0.65', | |
1110 | 'Memoize::NDBM_File' => '0.65', | |
1111 | 'Memoize::SDBM_File' => '0.65', | |
1112 | 'Memoize::Storable' => '0.65', | |
1113 | 'NEXT' => '0.50', | |
1114 | 'Net::Cmd' => '2.21', | |
1115 | 'Net::Config' => '1.10', | |
1116 | 'Net::Domain' => '2.17', | |
1117 | 'Net::FTP' => '2.64', | |
1118 | 'Net::FTP::A' => '1.15', | |
1119 | 'Net::FTP::E' => '0.01', | |
1120 | 'Net::FTP::I' => '1.12', | |
1121 | 'Net::FTP::L' => '0.01', | |
1122 | 'Net::FTP::dataconn' => '0.10', | |
1123 | 'Net::NNTP' => '2.21', | |
1124 | 'Net::Netrc' => '2.12', | |
1125 | 'Net::POP3' => '2.23', | |
1126 | 'Net::Ping' => '2.12', | |
1127 | 'Net::SMTP' => '2.21', | |
1128 | 'Net::Time' => '2.09', | |
1129 | 'Net::hostent' => '1.00', | |
1130 | 'Net::netent' => '1.00', | |
1131 | 'Net::protoent' => '1.00', | |
1132 | 'Net::servent' => '1.00', | |
1133 | 'O' => '1.00', | |
1134 | 'OS2::DLL' => '1.00', | |
1135 | 'OS2::Process' => '1.0', | |
1136 | 'OS2::REXX' => '1.01', | |
1137 | 'Opcode' => '1.05', | |
1138 | 'POSIX' => '1.05', | |
1139 | 'PerlIO' => '1.00', | |
1140 | 'PerlIO::Scalar' => '0.01', | |
1141 | 'PerlIO::Via' => '0.01', | |
1142 | 'Pod::Checker' => '1.3', | |
1143 | 'Pod::Find' => '0.22', | |
1144 | 'Pod::Functions' => '1.01', | |
1145 | 'Pod::Html' => '1.04', | |
1146 | 'Pod::LaTeX' => '0.54', | |
1147 | 'Pod::Man' => '1.32', | |
1148 | 'Pod::ParseLink' => '1.05', | |
1149 | 'Pod::Text' => '2.18', | |
1150 | 'Pod::Text::Color' => '1.03', | |
1151 | 'Pod::Text::Overstrike' => '1.08', | |
1152 | 'Pod::Text::Termcap' => '1.09', | |
1153 | 'Safe' => '2.07', | |
6b27384d | 1154 | 'Scalar::Util' => '1.06_00', |
a272bf38 DL |
1155 | 'Search::Dict' => '1.02', |
1156 | 'SelectSaver' => '1.00', | |
1157 | 'SelfLoader' => '1.0903', | |
1158 | 'Shell' => '0.4', | |
1159 | 'Socket' => '1.75', | |
1160 | 'Storable' => '1.015', | |
1161 | 'Switch' => '2.06', | |
1162 | 'Symbol' => '1.04', | |
1163 | 'Sys::Syslog' => '0.02', | |
1164 | 'Term::ANSIColor' => '1.04', | |
1165 | 'Term::Cap' => '1.07', | |
1166 | 'Term::Complete' => '1.4', | |
1167 | 'Term::ReadLine' => '1.00', | |
1168 | 'Test' => '1.18', | |
1169 | 'Test::Builder' => '0.11', | |
1170 | 'Test::Harness' => '2.01', | |
1171 | 'Test::Harness::Assert' => '0.01', | |
1172 | 'Test::Harness::Iterator'=> '0.01', | |
1173 | 'Test::Harness::Straps' => '0.08', | |
1174 | 'Test::More' => '0.41', | |
1175 | 'Test::Simple' => '0.41', | |
1176 | 'Text::Abbrev' => '1.00', | |
1177 | 'Text::Balanced' => '1.89', | |
1178 | 'Text::ParseWords' => '3.21', | |
1179 | 'Text::Soundex' => '1.01', | |
1180 | 'Text::Wrap' => '2001.0929', | |
1181 | 'Thread' => '2.00', | |
1182 | 'Thread::Queue' => '1.00', | |
1183 | 'Thread::Semaphore' => '1.00', | |
1184 | 'Thread::Signal' => '1.00', | |
1185 | 'Thread::Specific' => '1.00', | |
1186 | 'Tie::Array' => '1.02', | |
1187 | 'Tie::File' => '0.17', | |
1188 | 'Tie::Handle' => '4.1', | |
1189 | 'Tie::Hash' => '1.00', | |
1190 | 'Tie::Memoize' => '1.0', | |
1191 | 'Tie::RefHash' => '1.3_00', | |
1192 | 'Tie::Scalar' => '1.00', | |
1193 | 'Tie::SubstrHash' => '1.00', | |
1194 | 'Time::HiRes' => '1.20_00', | |
1195 | 'Time::Local' => '1.04', | |
1196 | 'Time::gmtime' => '1.02', | |
1197 | 'Time::localtime' => '1.02', | |
1198 | 'Time::tm' => '1.00', | |
1199 | 'UNIVERSAL' => '1.00', | |
1200 | 'Unicode::Collate' => '0.10', | |
1201 | 'Unicode::Normalize' => '0.14', | |
1202 | 'Unicode::UCD' => '0.2', | |
1203 | 'User::grent' => '1.00', | |
1204 | 'User::pwent' => '1.00', | |
1205 | 'VMS::DCLsym' => '1.02', | |
1206 | 'VMS::Filespec' => '1.1', | |
1207 | 'VMS::Stdio' => '2.3', | |
1208 | 'XS::Typemap' => '0.01', | |
1209 | 'attributes' => '0.04_01', | |
1210 | 'attrs' => '1.01', | |
1211 | 'autouse' => '1.03', | |
1212 | 'base' => '1.02', | |
1213 | 'blib' => '1.01', | |
1214 | 'bytes' => '1.00', | |
1215 | 'charnames' => '1.01', | |
1216 | 'constant' => '1.04', | |
1217 | 'diagnostics' => '1.1', | |
1218 | 'encoding' => '1.00', | |
1219 | 'fields' => '1.02', | |
1220 | 'filetest' => '1.00', | |
1221 | 'if' => '0.01', | |
1222 | 'integer' => '1.00', | |
1223 | 'less' => '0.01', | |
1224 | 'locale' => '1.00', | |
1225 | 'open' => '1.01', | |
1226 | 'ops' => '1.00', | |
1227 | 'overload' => '1.00', | |
1228 | 're' => '0.03', | |
1229 | 'sort' => '1.00', | |
1230 | 'strict' => '1.02', | |
1231 | 'subs' => '1.00', | |
1232 | 'threads' => '0.05', | |
1233 | 'threads::shared' => '0.90', | |
1234 | 'utf8' => '1.00', | |
1235 | 'vars' => '1.01', | |
1236 | 'vmsish' => '1.00', | |
1237 | 'warnings' => '1.00', | |
1238 | 'warnings::register' => '1.00', | |
1239 | }, | |
1240 | removed => { | |
a272bf38 | 1241 | } |
8f2fd531 | 1242 | }, |
a272bf38 DL |
1243 | 5.008 => { |
1244 | delta_from => 5.007003, | |
1245 | changed => { | |
1246 | 'Attribute::Handlers' => '0.77', | |
1247 | 'B' => '1.01', | |
1248 | 'B::Lint' => '1.01', | |
1249 | 'B::Xref' => '1.01', | |
1250 | 'CGI' => '2.81', | |
1251 | 'CGI::Carp' => '1.23', | |
1252 | 'CPAN' => '1.61', | |
b7c1f088 | 1253 | 'CPAN::FirstTime' => '1.56', |
a272bf38 | 1254 | 'CPAN::Nox' => '1.02', |
a272bf38 DL |
1255 | 'Digest::MD5' => '2.20', |
1256 | 'Dumpvalue' => '1.11', | |
1257 | 'Encode' => '1.75', | |
1258 | 'Encode::Alias' => '1.32', | |
1259 | 'Encode::Byte' => '1.22', | |
1260 | 'Encode::CJKConstants' => '1.00', | |
1261 | 'Encode::CN' => '1.24', | |
1262 | 'Encode::CN::HZ' => '1.04', | |
1263 | 'Encode::Config' => '1.06', | |
1264 | 'Encode::EBCDIC' => '1.21', | |
1265 | 'Encode::Encoder' => '0.05', | |
1266 | 'Encode::Encoding' => '1.30', | |
1267 | 'Encode::Guess' => '1.06', | |
1268 | 'Encode::JP' => '1.25', | |
1269 | 'Encode::JP::H2Z' => '1.02', | |
1270 | 'Encode::JP::JIS7' => '1.08', | |
1271 | 'Encode::KR' => '1.22', | |
1272 | 'Encode::KR::2022_KR' => '1.05', | |
1273 | 'Encode::MIME::Header' => '1.05', | |
1274 | 'Encode::Symbol' => '1.22', | |
1275 | 'Encode::TW' => '1.26', | |
1276 | 'Encode::Unicode' => '1.37', | |
1277 | 'Exporter::Heavy' => '5.566', | |
1278 | 'ExtUtils::Command' => '1.04', | |
1279 | 'ExtUtils::Command::MM' => '0.01', | |
1280 | 'ExtUtils::Constant' => '0.12', | |
1281 | 'ExtUtils::Installed' => '0.06', | |
1282 | 'ExtUtils::Liblist' => '1.00', | |
1283 | 'ExtUtils::Liblist::Kid'=> '1.29', | |
1284 | 'ExtUtils::MM' => '0.04', | |
1285 | 'ExtUtils::MM_Any' => '0.04', | |
1286 | 'ExtUtils::MM_BeOS' => '1.03', | |
1287 | 'ExtUtils::MM_Cygwin' => '1.04', | |
1288 | 'ExtUtils::MM_DOS' => '0.01', | |
1289 | 'ExtUtils::MM_MacOS' => '1.03', | |
1290 | 'ExtUtils::MM_NW5' => '2.05', | |
1291 | 'ExtUtils::MM_OS2' => '1.03', | |
1292 | 'ExtUtils::MM_UWIN' => '0.01', | |
1293 | 'ExtUtils::MM_Unix' => '1.33', | |
1294 | 'ExtUtils::MM_VMS' => '5.65', | |
1295 | 'ExtUtils::MM_Win32' => '1.05', | |
1296 | 'ExtUtils::MM_Win95' => '0.02', | |
1297 | 'ExtUtils::MY' => '0.01', | |
1298 | 'ExtUtils::MakeMaker' => '6.03', | |
1299 | 'ExtUtils::Manifest' => '1.38', | |
1300 | 'ExtUtils::Mkbootstrap' => '1.15', | |
1301 | 'ExtUtils::Mksymlists' => '1.19', | |
1302 | 'ExtUtils::testlib' => '1.15', | |
1303 | 'File::CheckTree' => '4.2', | |
1304 | 'FileCache' => '1.021', | |
1305 | 'Filter::Simple' => '0.78', | |
1306 | 'Getopt::Long' => '2.32', | |
1307 | 'Hash::Util' => '0.04', | |
1308 | 'List::Util' => '1.07_00', | |
1309 | 'Locale::Country' => '2.04', | |
1310 | 'Math::BigFloat' => '1.35', | |
1311 | 'Math::BigFloat::Trace' => '0.01', | |
1312 | 'Math::BigInt' => '1.60', | |
1313 | 'Math::BigInt::Calc' => '0.30', | |
1314 | 'Math::BigInt::Trace' => '0.01', | |
1315 | 'Math::BigRat' => '0.07', | |
1316 | 'Memoize' => '1.01', | |
1317 | 'Memoize::Expire' => '1.00', | |
1318 | 'Memoize::ExpireFile' => '1.01', | |
1319 | 'Net::FTP' => '2.65', | |
1320 | 'Net::FTP::dataconn' => '0.11', | |
1321 | 'Net::Ping' => '2.19', | |
1322 | 'Net::SMTP' => '2.24', | |
1323 | 'PerlIO' => '1.01', | |
1324 | 'PerlIO::encoding' => '0.06', | |
1325 | 'PerlIO::scalar' => '0.01', | |
1326 | 'PerlIO::via' => '0.01', | |
1327 | 'PerlIO::via::QuotedPrint'=> '0.04', | |
1328 | 'Pod::Man' => '1.33', | |
1329 | 'Pod::Text' => '2.19', | |
6b27384d | 1330 | 'Scalar::Util' => '1.07_00', |
a272bf38 DL |
1331 | 'Storable' => '2.04', |
1332 | 'Switch' => '2.09', | |
1333 | 'Sys::Syslog' => '0.03', | |
1334 | 'Test' => '1.20', | |
1335 | 'Test::Builder' => '0.15', | |
1336 | 'Test::Harness' => '2.26', | |
1337 | 'Test::Harness::Straps' => '0.14', | |
1338 | 'Test::More' => '0.45', | |
1339 | 'Test::Simple' => '0.45', | |
1340 | 'Thread::Queue' => '2.00', | |
1341 | 'Thread::Semaphore' => '2.00', | |
1342 | 'Tie::File' => '0.93', | |
1343 | 'Tie::RefHash' => '1.30', | |
1344 | 'Unicode' => '3.2.0', | |
1345 | 'Unicode::Collate' => '0.12', | |
1346 | 'Unicode::Normalize' => '0.17', | |
1347 | 'XS::APItest' => '0.01', | |
1348 | 'attributes' => '0.05', | |
1349 | 'base' => '1.03', | |
1350 | 'bigint' => '0.02', | |
1351 | 'bignum' => '0.11', | |
1352 | 'bigrat' => '0.04', | |
1353 | 'blib' => '1.02', | |
1354 | 'encoding' => '1.35', | |
1355 | 'sort' => '1.01', | |
1356 | 'threads' => '0.99', | |
1357 | }, | |
1358 | removed => { | |
1359 | 'Encode::Internal' => 1, | |
1360 | 'Encode::JP::Constants' => 1, | |
1361 | 'Encode::JP::ISO_2022_JP'=> 1, | |
1362 | 'Encode::JP::JIS' => 1, | |
1363 | 'Encode::JP::Tr' => 1, | |
1364 | 'Encode::Tcl' => 1, | |
1365 | 'Encode::Tcl::Escape' => 1, | |
1366 | 'Encode::Tcl::Extended' => 1, | |
1367 | 'Encode::Tcl::HanZi' => 1, | |
1368 | 'Encode::Tcl::Table' => 1, | |
1369 | 'Encode::XS' => 1, | |
1370 | 'Encode::iso10646_1' => 1, | |
1371 | 'Encode::usc2_le' => 1, | |
1372 | 'Encode::utf8' => 1, | |
1373 | 'PerlIO::Scalar' => 1, | |
1374 | 'PerlIO::Via' => 1, | |
1375 | } | |
8f2fd531 | 1376 | }, |
8f2fd531 | 1377 | 5.008001 => { |
a272bf38 DL |
1378 | delta_from => 5.008, |
1379 | changed => { | |
1380 | 'Attribute::Handlers' => '0.78', | |
1381 | 'AutoLoader' => '5.60', | |
1382 | 'AutoSplit' => '1.04', | |
1383 | 'B' => '1.02', | |
1384 | 'B::Asmdata' => '1.01', | |
1385 | 'B::Assembler' => '0.06', | |
1386 | 'B::Bblock' => '1.02', | |
1387 | 'B::Bytecode' => '1.01', | |
1388 | 'B::C' => '1.02', | |
1389 | 'B::Concise' => '0.56', | |
1390 | 'B::Debug' => '1.01', | |
1391 | 'B::Deparse' => '0.64', | |
1392 | 'B::Disassembler' => '1.03', | |
1393 | 'B::Lint' => '1.02', | |
1394 | 'B::Terse' => '1.02', | |
1395 | 'Benchmark' => '1.051', | |
1396 | 'ByteLoader' => '0.05', | |
1397 | 'CGI' => '3.00', | |
1398 | 'CGI::Carp' => '1.26', | |
1399 | 'CGI::Cookie' => '1.24', | |
1400 | 'CGI::Fast' => '1.041', | |
1401 | 'CGI::Pretty' => '1.07_00', | |
1402 | 'CGI::Util' => '1.31', | |
1403 | 'CPAN' => '1.76_01', | |
b7c1f088 | 1404 | 'CPAN::FirstTime' => '1.60', |
a272bf38 | 1405 | 'CPAN::Nox' => '1.03', |
a272bf38 DL |
1406 | 'Class::Struct' => '0.63', |
1407 | 'Cwd' => '2.08', | |
1408 | 'DB_File' => '1.806', | |
1409 | 'Data::Dumper' => '2.121', | |
1410 | 'Devel::DProf' => '20030813.00', | |
1411 | 'Devel::PPPort' => '2.007', | |
1412 | 'Devel::Peek' => '1.01', | |
1413 | 'Digest' => '1.02', | |
1414 | 'Digest::MD5' => '2.27', | |
1415 | 'Encode' => '1.9801', | |
1416 | 'Encode::Alias' => '1.38', | |
1417 | 'Encode::Byte' => '1.23', | |
1418 | 'Encode::CJKConstants' => '1.02', | |
1419 | 'Encode::CN::HZ' => '1.05', | |
1420 | 'Encode::Config' => '1.07', | |
1421 | 'Encode::Encoder' => '0.07', | |
1422 | 'Encode::Encoding' => '1.33', | |
1423 | 'Encode::Guess' => '1.09', | |
1424 | 'Encode::JP::JIS7' => '1.12', | |
1425 | 'Encode::KR' => '1.23', | |
1426 | 'Encode::KR::2022_KR' => '1.06', | |
1427 | 'Encode::MIME::Header' => '1.09', | |
1428 | 'Encode::Unicode' => '1.40', | |
1429 | 'Encode::Unicode::UTF7' => '0.02', | |
1430 | 'English' => '1.01', | |
1431 | 'Errno' => '1.09_00', | |
1432 | 'Exporter' => '5.567', | |
1433 | 'Exporter::Heavy' => '5.567', | |
1434 | 'ExtUtils::Command' => '1.05', | |
1435 | 'ExtUtils::Command::MM' => '0.03', | |
1436 | 'ExtUtils::Constant' => '0.14', | |
1437 | 'ExtUtils::Install' => '1.32', | |
1438 | 'ExtUtils::Installed' => '0.08', | |
1439 | 'ExtUtils::Liblist' => '1.01', | |
1440 | 'ExtUtils::Liblist::Kid'=> '1.3', | |
1441 | 'ExtUtils::MM_Any' => '0.07', | |
1442 | 'ExtUtils::MM_BeOS' => '1.04', | |
1443 | 'ExtUtils::MM_Cygwin' => '1.06', | |
1444 | 'ExtUtils::MM_DOS' => '0.02', | |
1445 | 'ExtUtils::MM_MacOS' => '1.07', | |
1446 | 'ExtUtils::MM_NW5' => '2.06', | |
1447 | 'ExtUtils::MM_OS2' => '1.04', | |
1448 | 'ExtUtils::MM_UWIN' => '0.02', | |
1449 | 'ExtUtils::MM_Unix' => '1.42', | |
1450 | 'ExtUtils::MM_VMS' => '5.70', | |
1451 | 'ExtUtils::MM_Win32' => '1.09', | |
1452 | 'ExtUtils::MM_Win95' => '0.03', | |
1453 | 'ExtUtils::MakeMaker' => '6.17', | |
1454 | 'ExtUtils::MakeMaker::bytes'=> '0.01', | |
1455 | 'ExtUtils::MakeMaker::vmsish'=> '0.01', | |
1456 | 'ExtUtils::Manifest' => '1.42', | |
1457 | 'Fcntl' => '1.05', | |
1458 | 'File::Basename' => '2.72', | |
1459 | 'File::Copy' => '2.06', | |
1460 | 'File::Find' => '1.05', | |
1461 | 'File::Glob' => '1.02', | |
1462 | 'File::Path' => '1.06', | |
1463 | 'File::Spec' => '0.86', | |
1464 | 'File::Spec::Cygwin' => '1.1', | |
1465 | 'File::Spec::Epoc' => '1.1', | |
1466 | 'File::Spec::Functions' => '1.3', | |
1467 | 'File::Spec::Mac' => '1.4', | |
1468 | 'File::Spec::OS2' => '1.2', | |
1469 | 'File::Spec::Unix' => '1.5', | |
1470 | 'File::Spec::VMS' => '1.4', | |
1471 | 'File::Spec::Win32' => '1.4', | |
1472 | 'File::Temp' => '0.14', | |
1473 | 'FileCache' => '1.03', | |
1474 | 'Filter::Util::Call' => '1.0601', | |
1475 | 'GDBM_File' => '1.07', | |
1476 | 'Getopt::Long' => '2.34', | |
1477 | 'Getopt::Std' => '1.04', | |
1478 | 'Hash::Util' => '0.05', | |
1479 | 'I18N::LangTags' => '0.28', | |
1480 | 'I18N::LangTags::List' => '0.26', | |
1481 | 'I18N::Langinfo' => '0.02', | |
1482 | 'IO' => '1.21', | |
1483 | 'IO::Dir' => '1.04', | |
1484 | 'IO::File' => '1.10', | |
1485 | 'IO::Handle' => '1.23', | |
1486 | 'IO::Seekable' => '1.09', | |
1487 | 'IO::Select' => '1.16', | |
1488 | 'IO::Socket' => '1.28', | |
1489 | 'IO::Socket::INET' => '1.27', | |
1490 | 'IO::Socket::UNIX' => '1.21', | |
1491 | 'IPC::Msg' => '1.02', | |
1492 | 'IPC::Open3' => '1.0105', | |
1493 | 'IPC::Semaphore' => '1.02', | |
1494 | 'IPC::SysV' => '1.04', | |
1495 | 'JNI' => '0.2', | |
1496 | 'List::Util' => '1.13', | |
1497 | 'Locale::Country' => '2.61', | |
1498 | 'Locale::Currency' => '2.21', | |
1499 | 'Locale::Language' => '2.21', | |
1500 | 'Locale::Maketext' => '1.06', | |
1501 | 'Locale::Maketext::Guts'=> undef, | |
1502 | 'Locale::Maketext::GutsLoader'=> undef, | |
1503 | 'Locale::Script' => '2.21', | |
1504 | 'MIME::Base64' => '2.20', | |
1505 | 'MIME::QuotedPrint' => '2.20', | |
1506 | 'Math::BigFloat' => '1.40', | |
1507 | 'Math::BigInt' => '1.66', | |
1508 | 'Math::BigInt::Calc' => '0.36', | |
1509 | 'Math::BigInt::Scalar' => '0.11', | |
1510 | 'Math::BigRat' => '0.10', | |
1511 | 'Math::Trig' => '1.02', | |
1512 | 'NDBM_File' => '1.05', | |
1513 | 'NEXT' => '0.60', | |
1514 | 'Net::Cmd' => '2.24', | |
1515 | 'Net::Domain' => '2.18', | |
1516 | 'Net::FTP' => '2.71', | |
1517 | 'Net::FTP::A' => '1.16', | |
1518 | 'Net::NNTP' => '2.22', | |
1519 | 'Net::POP3' => '2.24', | |
1520 | 'Net::Ping' => '2.31', | |
1521 | 'Net::SMTP' => '2.26', | |
1522 | 'Net::hostent' => '1.01', | |
1523 | 'Net::servent' => '1.01', | |
1524 | 'ODBM_File' => '1.04', | |
1525 | 'OS2::DLL' => '1.01', | |
1526 | 'OS2::ExtAttr' => '0.02', | |
1527 | 'OS2::PrfDB' => '0.03', | |
1528 | 'OS2::Process' => '1.01', | |
1529 | 'OS2::REXX' => '1.02', | |
1530 | 'POSIX' => '1.06', | |
1531 | 'PerlIO' => '1.02', | |
1532 | 'PerlIO::encoding' => '0.07', | |
1533 | 'PerlIO::scalar' => '0.02', | |
1534 | 'PerlIO::via' => '0.02', | |
1535 | 'PerlIO::via::QuotedPrint'=> '0.05', | |
1536 | 'Pod::Checker' => '1.41', | |
1537 | 'Pod::Find' => '0.24', | |
1538 | 'Pod::Functions' => '1.02', | |
1539 | 'Pod::Html' => '1.0501', | |
1540 | 'Pod::InputObjects' => '1.14', | |
1541 | 'Pod::LaTeX' => '0.55', | |
1542 | 'Pod::Man' => '1.37', | |
1543 | 'Pod::ParseLink' => '1.06', | |
1544 | 'Pod::ParseUtils' => '0.3', | |
1545 | 'Pod::Perldoc' => '3.10', | |
1546 | 'Pod::Perldoc::BaseTo' => undef, | |
1547 | 'Pod::Perldoc::GetOptsOO'=> undef, | |
1548 | 'Pod::Perldoc::ToChecker'=> undef, | |
1549 | 'Pod::Perldoc::ToMan' => undef, | |
1550 | 'Pod::Perldoc::ToNroff' => undef, | |
1551 | 'Pod::Perldoc::ToPod' => undef, | |
1552 | 'Pod::Perldoc::ToRtf' => undef, | |
1553 | 'Pod::Perldoc::ToText' => undef, | |
4121f36a | 1554 | 'Pod::Perldoc::ToTk' => undef, |
a272bf38 DL |
1555 | 'Pod::Perldoc::ToXml' => undef, |
1556 | 'Pod::PlainText' => '2.01', | |
1557 | 'Pod::Text' => '2.21', | |
1558 | 'Pod::Text::Color' => '1.04', | |
1559 | 'Pod::Text::Overstrike' => '1.1', | |
1560 | 'Pod::Text::Termcap' => '1.11', | |
1561 | 'Pod::Usage' => '1.16', | |
1562 | 'SDBM_File' => '1.04', | |
1563 | 'Safe' => '2.10', | |
1564 | 'Scalar::Util' => '1.13', | |
1565 | 'SelfLoader' => '1.0904', | |
1566 | 'Shell' => '0.5', | |
1567 | 'Socket' => '1.76', | |
1568 | 'Storable' => '2.08', | |
1569 | 'Switch' => '2.10', | |
1570 | 'Symbol' => '1.05', | |
1571 | 'Sys::Hostname' => '1.11', | |
1572 | 'Sys::Syslog' => '0.04', | |
1573 | 'Term::ANSIColor' => '1.07', | |
1574 | 'Term::Cap' => '1.08', | |
1575 | 'Term::Complete' => '1.401', | |
1576 | 'Term::ReadLine' => '1.01', | |
1577 | 'Test' => '1.24', | |
1578 | 'Test::Builder' => '0.17', | |
1579 | 'Test::Harness' => '2.30', | |
1580 | 'Test::Harness::Straps' => '0.15', | |
1581 | 'Test::More' => '0.47', | |
1582 | 'Test::Simple' => '0.47', | |
1583 | 'Text::Abbrev' => '1.01', | |
1584 | 'Text::Balanced' => '1.95', | |
1585 | 'Text::Wrap' => '2001.09291', | |
1586 | 'Thread::Semaphore' => '2.01', | |
1587 | 'Tie::Array' => '1.03', | |
1588 | 'Tie::File' => '0.97', | |
1589 | 'Tie::RefHash' => '1.31', | |
1590 | 'Time::HiRes' => '1.51', | |
1591 | 'Time::Local' => '1.07', | |
1592 | 'UNIVERSAL' => '1.01', | |
1593 | 'Unicode' => '4.0.0', | |
1594 | 'Unicode::Collate' => '0.28', | |
1595 | 'Unicode::Normalize' => '0.23', | |
1596 | 'Unicode::UCD' => '0.21', | |
1597 | 'VMS::Filespec' => '1.11', | |
1598 | 'XS::APItest' => '0.02', | |
1599 | 'XSLoader' => '0.02', | |
1600 | 'attributes' => '0.06', | |
1601 | 'base' => '2.03', | |
1602 | 'bigint' => '0.04', | |
1603 | 'bignum' => '0.14', | |
1604 | 'bigrat' => '0.06', | |
1605 | 'bytes' => '1.01', | |
1606 | 'charnames' => '1.02', | |
1607 | 'diagnostics' => '1.11', | |
1608 | 'encoding' => '1.47', | |
1609 | 'fields' => '2.03', | |
1610 | 'filetest' => '1.01', | |
1611 | 'if' => '0.03', | |
1612 | 'lib' => '0.5565', | |
1613 | 'open' => '1.02', | |
1614 | 'overload' => '1.01', | |
1615 | 're' => '0.04', | |
1616 | 'sort' => '1.02', | |
1617 | 'strict' => '1.03', | |
1618 | 'threads' => '1.00', | |
1619 | 'threads::shared' => '0.91', | |
1620 | 'utf8' => '1.02', | |
1621 | 'vmsish' => '1.01', | |
1622 | 'warnings' => '1.03', | |
1623 | }, | |
1624 | removed => { | |
1625 | } | |
8f2fd531 | 1626 | }, |
8f2fd531 | 1627 | 5.008002 => { |
a272bf38 DL |
1628 | delta_from => 5.008001, |
1629 | changed => { | |
1630 | 'DB_File' => '1.807', | |
1631 | 'Devel::PPPort' => '2.009', | |
1632 | 'Digest::MD5' => '2.30', | |
1633 | 'I18N::LangTags' => '0.29', | |
1634 | 'I18N::LangTags::List' => '0.29', | |
1635 | 'MIME::Base64' => '2.21', | |
1636 | 'MIME::QuotedPrint' => '2.21', | |
1637 | 'Net::Domain' => '2.19', | |
1638 | 'Net::FTP' => '2.72', | |
1639 | 'Pod::Perldoc' => '3.11', | |
a272bf38 DL |
1640 | 'Time::HiRes' => '1.52', |
1641 | 'Unicode::Collate' => '0.30', | |
1642 | 'Unicode::Normalize' => '0.25', | |
1643 | }, | |
1644 | removed => { | |
1645 | } | |
8f2fd531 | 1646 | }, |
ad91da88 | 1647 | 5.008003 => { |
a272bf38 DL |
1648 | delta_from => 5.008002, |
1649 | changed => { | |
1650 | 'Benchmark' => '1.052', | |
1651 | 'CGI' => '3.01', | |
1652 | 'CGI::Carp' => '1.27', | |
1653 | 'CGI::Fast' => '1.05', | |
1654 | 'CGI::Pretty' => '1.08', | |
1655 | 'CGI::Util' => '1.4', | |
1656 | 'Cwd' => '2.12', | |
1657 | 'DB_File' => '1.808', | |
1658 | 'Devel::PPPort' => '2.011', | |
1659 | 'Digest' => '1.05', | |
1660 | 'Digest::MD5' => '2.33', | |
1661 | 'Digest::base' => '1.00', | |
1662 | 'Encode' => '1.99', | |
1663 | 'Exporter' => '5.57', | |
1664 | 'File::CheckTree' => '4.3', | |
1665 | 'File::Copy' => '2.07', | |
1666 | 'File::Find' => '1.06', | |
1667 | 'File::Spec' => '0.87', | |
1668 | 'FindBin' => '1.44', | |
1669 | 'Getopt::Std' => '1.05', | |
1670 | 'Math::BigFloat' => '1.42', | |
1671 | 'Math::BigInt' => '1.68', | |
1672 | 'Math::BigInt::Calc' => '0.38', | |
1673 | 'Math::BigInt::CalcEmu' => '0.02', | |
1674 | 'OS2::DLL' => '1.02', | |
1675 | 'POSIX' => '1.07', | |
1676 | 'PerlIO' => '1.03', | |
1677 | 'PerlIO::via::QuotedPrint'=> '0.06', | |
1678 | 'Pod::Html' => '1.0502', | |
1679 | 'Pod::Parser' => '1.14', | |
1680 | 'Pod::Perldoc' => '3.12', | |
a272bf38 DL |
1681 | 'Pod::PlainText' => '2.02', |
1682 | 'Storable' => '2.09', | |
1683 | 'Test::Harness' => '2.40', | |
1684 | 'Test::Harness::Assert' => '0.02', | |
1685 | 'Test::Harness::Iterator'=> '0.02', | |
1686 | 'Test::Harness::Straps' => '0.19', | |
1687 | 'Tie::Hash' => '1.01', | |
1688 | 'Unicode::Collate' => '0.33', | |
1689 | 'Unicode::Normalize' => '0.28', | |
1690 | 'XS::APItest' => '0.03', | |
1691 | 'base' => '2.04', | |
1692 | 'diagnostics' => '1.12', | |
1693 | 'encoding' => '1.48', | |
1694 | 'threads' => '1.01', | |
1695 | 'threads::shared' => '0.92', | |
1696 | }, | |
1697 | removed => { | |
1698 | 'Math::BigInt::Scalar' => 1, | |
1699 | } | |
8f2fd531 JB |
1700 | }, |
1701 | 5.008004 => { | |
a272bf38 DL |
1702 | delta_from => 5.008003, |
1703 | changed => { | |
1704 | 'Attribute::Handlers' => '0.78_01', | |
1705 | 'B::Assembler' => '0.07', | |
1706 | 'B::Concise' => '0.60', | |
1707 | 'B::Deparse' => '0.66', | |
1708 | 'Benchmark' => '1.06', | |
1709 | 'CGI' => '3.04', | |
1710 | 'Carp' => '1.02', | |
1711 | 'Cwd' => '2.17', | |
1712 | 'DBM_Filter' => '0.01', | |
1713 | 'DBM_Filter::compress' => '0.01', | |
1714 | 'DBM_Filter::encode' => '0.01', | |
1715 | 'DBM_Filter::int32' => '0.01', | |
1716 | 'DBM_Filter::null' => '0.01', | |
1717 | 'DBM_Filter::utf8' => '0.01', | |
1718 | 'Digest' => '1.06', | |
1719 | 'DynaLoader' => '1.05', | |
1720 | 'Encode' => '1.99_01', | |
1721 | 'Encode::CN::HZ' => '1.0501', | |
1722 | 'Exporter' => '5.58', | |
1723 | 'Exporter::Heavy' => '5.57', | |
1724 | 'ExtUtils::Liblist::Kid'=> '1.3001', | |
1725 | 'ExtUtils::MM_NW5' => '2.07_02', | |
1726 | 'ExtUtils::MM_Win95' => '0.0301', | |
1727 | 'File::Find' => '1.07', | |
1728 | 'IO::Handle' => '1.24', | |
1729 | 'IO::Pipe' => '1.123', | |
1730 | 'IPC::Open3' => '1.0106', | |
1731 | 'Locale::Maketext' => '1.08', | |
1732 | 'MIME::Base64' => '3.01', | |
1733 | 'MIME::QuotedPrint' => '3.01', | |
1734 | 'Math::BigFloat' => '1.44', | |
1735 | 'Math::BigInt' => '1.70', | |
1736 | 'Math::BigInt::Calc' => '0.40', | |
1737 | 'Math::BigInt::CalcEmu' => '0.04', | |
1738 | 'Math::BigRat' => '0.12', | |
1739 | 'ODBM_File' => '1.05', | |
1740 | 'POSIX' => '1.08', | |
1741 | 'Shell' => '0.5.2', | |
1742 | 'Socket' => '1.77', | |
1743 | 'Storable' => '2.12', | |
1744 | 'Sys::Syslog' => '0.05', | |
1745 | 'Term::ANSIColor' => '1.08', | |
1746 | 'Time::HiRes' => '1.59', | |
1747 | 'Unicode' => '4.0.1', | |
1748 | 'Unicode::UCD' => '0.22', | |
70c5bd90 | 1749 | 'Win32' => '0.23', |
a272bf38 DL |
1750 | 'base' => '2.05', |
1751 | 'bigint' => '0.05', | |
1752 | 'bignum' => '0.15', | |
1753 | 'charnames' => '1.03', | |
1754 | 'open' => '1.03', | |
1755 | 'threads' => '1.03', | |
1756 | 'utf8' => '1.03', | |
1757 | }, | |
1758 | removed => { | |
1759 | } | |
8f2fd531 | 1760 | }, |
ad91da88 | 1761 | 5.008005 => { |
a272bf38 DL |
1762 | delta_from => 5.008004, |
1763 | changed => { | |
1764 | 'B::Concise' => '0.61', | |
1765 | 'B::Deparse' => '0.67', | |
1766 | 'CGI' => '3.05', | |
1767 | 'CGI::Carp' => '1.28', | |
1768 | 'CGI::Util' => '1.5', | |
1769 | 'Carp' => '1.03', | |
e1f9e915 | 1770 | 'Carp::Heavy' => '1.03', |
a272bf38 DL |
1771 | 'Cwd' => '2.19', |
1772 | 'DB_File' => '1.809', | |
1773 | 'Digest' => '1.08', | |
1774 | 'Encode' => '2.01', | |
1775 | 'Encode::Alias' => '2.00', | |
1776 | 'Encode::Byte' => '2.00', | |
1777 | 'Encode::CJKConstants' => '2.00', | |
1778 | 'Encode::CN' => '2.00', | |
1779 | 'Encode::CN::HZ' => '2.01', | |
1780 | 'Encode::Config' => '2.00', | |
1781 | 'Encode::EBCDIC' => '2.00', | |
1782 | 'Encode::Encoder' => '2.00', | |
1783 | 'Encode::Encoding' => '2.00', | |
1784 | 'Encode::Guess' => '2.00', | |
1785 | 'Encode::JP' => '2.00', | |
1786 | 'Encode::JP::H2Z' => '2.00', | |
1787 | 'Encode::JP::JIS7' => '2.00', | |
1788 | 'Encode::KR' => '2.00', | |
1789 | 'Encode::KR::2022_KR' => '2.00', | |
1790 | 'Encode::MIME::Header' => '2.00', | |
1791 | 'Encode::Symbol' => '2.00', | |
1792 | 'Encode::TW' => '2.00', | |
1793 | 'Encode::Unicode' => '2.00', | |
1794 | 'Encode::Unicode::UTF7' => '2.01', | |
1795 | 'File::Basename' => '2.73', | |
1796 | 'File::Copy' => '2.08', | |
1797 | 'File::Glob' => '1.03', | |
1798 | 'FileCache' => '1.04_01', | |
1799 | 'I18N::LangTags' => '0.33', | |
1800 | 'I18N::LangTags::Detect'=> '1.03', | |
1801 | 'List::Util' => '1.14', | |
1802 | 'Locale::Constants' => '2.07', | |
1803 | 'Locale::Country' => '2.07', | |
1804 | 'Locale::Currency' => '2.07', | |
1805 | 'Locale::Language' => '2.07', | |
1806 | 'Locale::Maketext' => '1.09', | |
1807 | 'Locale::Script' => '2.07', | |
1808 | 'Net::Cmd' => '2.26', | |
1809 | 'Net::FTP' => '2.75', | |
1810 | 'Net::NNTP' => '2.23', | |
1811 | 'Net::POP3' => '2.28', | |
1812 | 'Net::SMTP' => '2.29', | |
1813 | 'Net::Time' => '2.10', | |
1814 | 'Pod::Checker' => '1.42', | |
1815 | 'Pod::Find' => '0.2401', | |
1816 | 'Pod::LaTeX' => '0.56', | |
1817 | 'Pod::ParseUtils' => '1.2', | |
1818 | 'Pod::Perldoc' => '3.13', | |
1819 | 'Safe' => '2.11', | |
1820 | 'Scalar::Util' => '1.14', | |
1821 | 'Shell' => '0.6', | |
1822 | 'Storable' => '2.13', | |
1823 | 'Term::Cap' => '1.09', | |
1824 | 'Test' => '1.25', | |
1825 | 'Test::Harness' => '2.42', | |
1826 | 'Text::ParseWords' => '3.22', | |
1827 | 'Text::Wrap' => '2001.09292', | |
1828 | 'Time::Local' => '1.10', | |
1829 | 'Unicode::Collate' => '0.40', | |
1830 | 'Unicode::Normalize' => '0.30', | |
1831 | 'XS::APItest' => '0.04', | |
1832 | 'autouse' => '1.04', | |
1833 | 'base' => '2.06', | |
1834 | 'charnames' => '1.04', | |
1835 | 'diagnostics' => '1.13', | |
1836 | 'encoding' => '2.00', | |
1837 | 'threads' => '1.05', | |
1838 | 'utf8' => '1.04', | |
1839 | }, | |
1840 | removed => { | |
1841 | } | |
8f2fd531 JB |
1842 | }, |
1843 | 5.008006 => { | |
a272bf38 DL |
1844 | delta_from => 5.008005, |
1845 | changed => { | |
1846 | 'B' => '1.07', | |
1847 | 'B::C' => '1.04', | |
1848 | 'B::Concise' => '0.64', | |
1849 | 'B::Debug' => '1.02', | |
1850 | 'B::Deparse' => '0.69', | |
1851 | 'B::Lint' => '1.03', | |
1852 | 'B::Showlex' => '1.02', | |
a272bf38 DL |
1853 | 'Cwd' => '3.01', |
1854 | 'DB_File' => '1.810', | |
1855 | 'Data::Dumper' => '2.121_02', | |
1856 | 'Devel::PPPort' => '3.03', | |
1857 | 'Devel::Peek' => '1.02', | |
1858 | 'Encode' => '2.08', | |
1859 | 'Encode::Alias' => '2.02', | |
1860 | 'Encode::Encoding' => '2.02', | |
1861 | 'Encode::JP' => '2.01', | |
1862 | 'Encode::Unicode' => '2.02', | |
1863 | 'Exporter::Heavy' => '5.58', | |
1864 | 'ExtUtils::Constant' => '0.1401', | |
1865 | 'File::Spec' => '3.01', | |
1866 | 'File::Spec::Win32' => '1.5', | |
1867 | 'I18N::LangTags' => '0.35', | |
1868 | 'I18N::LangTags::List' => '0.35', | |
1869 | 'MIME::Base64' => '3.05', | |
1870 | 'MIME::QuotedPrint' => '3.03', | |
1871 | 'Math::BigFloat' => '1.47', | |
1872 | 'Math::BigInt' => '1.73', | |
1873 | 'Math::BigInt::Calc' => '0.43', | |
1874 | 'Math::BigRat' => '0.13', | |
1875 | 'Text::ParseWords' => '3.23', | |
1876 | 'Time::HiRes' => '1.65', | |
1877 | 'XS::APItest' => '0.05', | |
1878 | 'diagnostics' => '1.14', | |
1879 | 'encoding' => '2.01', | |
1880 | 'open' => '1.04', | |
1881 | 'overload' => '1.02', | |
1882 | }, | |
1883 | removed => { | |
1884 | } | |
c9600ef6 | 1885 | }, |
cda59a31 | 1886 | 5.008007 => { |
a272bf38 DL |
1887 | delta_from => 5.008006, |
1888 | changed => { | |
1889 | 'B' => '1.09', | |
1890 | 'B::Concise' => '0.65', | |
1891 | 'B::Deparse' => '0.7', | |
1892 | 'B::Disassembler' => '1.04', | |
1893 | 'B::Terse' => '1.03', | |
1894 | 'Benchmark' => '1.07', | |
1895 | 'CGI' => '3.10', | |
1896 | 'CGI::Carp' => '1.29', | |
1897 | 'CGI::Cookie' => '1.25', | |
1898 | 'Carp' => '1.04', | |
1899 | 'Carp::Heavy' => '1.04', | |
1900 | 'Class::ISA' => '0.33', | |
1901 | 'Cwd' => '3.05', | |
1902 | 'DB_File' => '1.811', | |
1903 | 'Data::Dumper' => '2.121_04', | |
1904 | 'Devel::DProf' => '20050310.00', | |
1905 | 'Devel::PPPort' => '3.06', | |
1906 | 'Digest' => '1.10', | |
1907 | 'Digest::file' => '0.01', | |
1908 | 'Encode' => '2.10', | |
1909 | 'Encode::Alias' => '2.03', | |
1910 | 'Errno' => '1.09_01', | |
1911 | 'ExtUtils::Constant' => '0.16', | |
1912 | 'ExtUtils::Constant::Base'=> '0.01', | |
1913 | 'ExtUtils::Constant::Utils'=> '0.01', | |
1914 | 'ExtUtils::Constant::XS'=> '0.01', | |
1915 | 'File::Find' => '1.09', | |
1916 | 'File::Glob' => '1.04', | |
1917 | 'File::Path' => '1.07', | |
1918 | 'File::Spec' => '3.05', | |
1919 | 'File::Temp' => '0.16', | |
1920 | 'FileCache' => '1.05', | |
1921 | 'IO::File' => '1.11', | |
1922 | 'IO::Socket::INET' => '1.28', | |
1923 | 'Math::BigFloat' => '1.51', | |
1924 | 'Math::BigInt' => '1.77', | |
1925 | 'Math::BigInt::Calc' => '0.47', | |
1926 | 'Math::BigInt::CalcEmu' => '0.05', | |
1927 | 'Math::BigRat' => '0.15', | |
1928 | 'Pod::Find' => '1.3', | |
1929 | 'Pod::Html' => '1.0503', | |
1930 | 'Pod::InputObjects' => '1.3', | |
1931 | 'Pod::LaTeX' => '0.58', | |
1932 | 'Pod::ParseUtils' => '1.3', | |
1933 | 'Pod::Parser' => '1.3', | |
1934 | 'Pod::Perldoc' => '3.14', | |
a272bf38 DL |
1935 | 'Pod::Select' => '1.3', |
1936 | 'Pod::Usage' => '1.3', | |
1937 | 'SelectSaver' => '1.01', | |
1938 | 'Symbol' => '1.06', | |
1939 | 'Sys::Syslog' => '0.06', | |
1940 | 'Term::ANSIColor' => '1.09', | |
1941 | 'Term::Complete' => '1.402', | |
1942 | 'Test::Builder' => '0.22', | |
1943 | 'Test::Harness' => '2.48', | |
1944 | 'Test::Harness::Point' => '0.01', | |
1945 | 'Test::Harness::Straps' => '0.23', | |
1946 | 'Test::More' => '0.54', | |
1947 | 'Test::Simple' => '0.54', | |
1948 | 'Text::ParseWords' => '3.24', | |
1949 | 'Text::Wrap' => '2001.09293', | |
1950 | 'Tie::RefHash' => '1.32', | |
1951 | 'Time::HiRes' => '1.66', | |
1952 | 'Time::Local' => '1.11', | |
1953 | 'Unicode' => '4.1.0', | |
1954 | 'Unicode::Normalize' => '0.32', | |
1955 | 'Unicode::UCD' => '0.23', | |
1956 | 'Win32' => '0.24', | |
1957 | 'XS::APItest' => '0.06', | |
1958 | 'base' => '2.07', | |
1959 | 'bigint' => '0.07', | |
1960 | 'bignum' => '0.17', | |
1961 | 'bigrat' => '0.08', | |
1962 | 'bytes' => '1.02', | |
1963 | 'constant' => '1.05', | |
1964 | 'overload' => '1.03', | |
1965 | 'threads::shared' => '0.93', | |
1966 | 'utf8' => '1.05', | |
1967 | }, | |
1968 | removed => { | |
1969 | 'JNI' => 1, | |
1970 | 'JPL::AutoLoader' => 1, | |
1971 | 'JPL::Class' => 1, | |
1972 | 'JPL::Compile' => 1, | |
a272bf38 | 1973 | } |
f372d768 RGS |
1974 | }, |
1975 | 5.008008 => { | |
a272bf38 DL |
1976 | delta_from => 5.008007, |
1977 | changed => { | |
1978 | 'Attribute::Handlers' => '0.78_02', | |
1979 | 'B' => '1.09_01', | |
1980 | 'B::Bblock' => '1.02_01', | |
1981 | 'B::Bytecode' => '1.01_01', | |
1982 | 'B::C' => '1.04_01', | |
1983 | 'B::CC' => '1.00_01', | |
1984 | 'B::Concise' => '0.66', | |
1985 | 'B::Debug' => '1.02_01', | |
1986 | 'B::Deparse' => '0.71', | |
1987 | 'B::Disassembler' => '1.05', | |
1988 | 'B::Terse' => '1.03_01', | |
1989 | 'ByteLoader' => '0.06', | |
1990 | 'CGI' => '3.15', | |
1991 | 'CGI::Cookie' => '1.26', | |
1992 | 'CPAN' => '1.76_02', | |
1993 | 'Cwd' => '3.12', | |
1994 | 'DB' => '1.01', | |
1995 | 'DB_File' => '1.814', | |
1996 | 'Data::Dumper' => '2.121_08', | |
1997 | 'Devel::DProf' => '20050603.00', | |
1998 | 'Devel::PPPort' => '3.06_01', | |
1999 | 'Devel::Peek' => '1.03', | |
2000 | 'Digest' => '1.14', | |
2001 | 'Digest::MD5' => '2.36', | |
2002 | 'Digest::file' => '1.00', | |
2003 | 'Dumpvalue' => '1.12', | |
2004 | 'Encode' => '2.12', | |
2005 | 'Encode::Alias' => '2.04', | |
2006 | 'Encode::Config' => '2.01', | |
2007 | 'Encode::MIME::Header' => '2.01', | |
2008 | 'Encode::MIME::Header::ISO_2022_JP'=> '1.01', | |
2009 | 'English' => '1.02', | |
2010 | 'ExtUtils::Command' => '1.09', | |
2011 | 'ExtUtils::Command::MM' => '0.05', | |
2012 | 'ExtUtils::Constant' => '0.17', | |
2013 | 'ExtUtils::Embed' => '1.26', | |
2014 | 'ExtUtils::Install' => '1.33', | |
2015 | 'ExtUtils::Liblist::Kid'=> '1.3', | |
2016 | 'ExtUtils::MM' => '0.05', | |
2017 | 'ExtUtils::MM_AIX' => '0.03', | |
2018 | 'ExtUtils::MM_Any' => '0.13', | |
2019 | 'ExtUtils::MM_BeOS' => '1.05', | |
2020 | 'ExtUtils::MM_Cygwin' => '1.08', | |
2021 | 'ExtUtils::MM_MacOS' => '1.08', | |
2022 | 'ExtUtils::MM_NW5' => '2.08', | |
2023 | 'ExtUtils::MM_OS2' => '1.05', | |
2024 | 'ExtUtils::MM_QNX' => '0.02', | |
2025 | 'ExtUtils::MM_Unix' => '1.50', | |
2026 | 'ExtUtils::MM_VMS' => '5.73', | |
2027 | 'ExtUtils::MM_VOS' => '0.02', | |
2028 | 'ExtUtils::MM_Win32' => '1.12', | |
2029 | 'ExtUtils::MM_Win95' => '0.04', | |
2030 | 'ExtUtils::MakeMaker' => '6.30', | |
2031 | 'ExtUtils::MakeMaker::Config'=> '0.02', | |
2032 | 'ExtUtils::Manifest' => '1.46', | |
2033 | 'File::Basename' => '2.74', | |
2034 | 'File::Copy' => '2.09', | |
2035 | 'File::Find' => '1.10', | |
2036 | 'File::Glob' => '1.05', | |
2037 | 'File::Path' => '1.08', | |
2038 | 'File::Spec' => '3.12', | |
2039 | 'File::Spec::Win32' => '1.6', | |
2040 | 'FileCache' => '1.06', | |
2041 | 'Filter::Simple' => '0.82', | |
2042 | 'FindBin' => '1.47', | |
2043 | 'GDBM_File' => '1.08', | |
2044 | 'Getopt::Long' => '2.35', | |
2045 | 'IO' => '1.22', | |
2046 | 'IO::Dir' => '1.05', | |
2047 | 'IO::File' => '1.13', | |
2048 | 'IO::Handle' => '1.25', | |
2049 | 'IO::Pipe' => '1.13', | |
2050 | 'IO::Poll' => '0.07', | |
2051 | 'IO::Seekable' => '1.10', | |
2052 | 'IO::Select' => '1.17', | |
2053 | 'IO::Socket' => '1.29', | |
2054 | 'IO::Socket::INET' => '1.29', | |
2055 | 'IO::Socket::UNIX' => '1.22', | |
2056 | 'IPC::Open2' => '1.02', | |
2057 | 'IPC::Open3' => '1.02', | |
2058 | 'List::Util' => '1.18', | |
2059 | 'MIME::Base64' => '3.07', | |
2060 | 'MIME::QuotedPrint' => '3.07', | |
2061 | 'Math::Complex' => '1.35', | |
2062 | 'Math::Trig' => '1.03', | |
2063 | 'NDBM_File' => '1.06', | |
2064 | 'ODBM_File' => '1.06', | |
78da2da6 CBW |
2065 | 'OS2::PrfDB' => '0.04', |
2066 | 'OS2::Process' => '1.02', | |
2067 | 'OS2::REXX' => '1.03', | |
a272bf38 DL |
2068 | 'Opcode' => '1.06', |
2069 | 'POSIX' => '1.09', | |
2070 | 'PerlIO' => '1.04', | |
2071 | 'PerlIO::encoding' => '0.09', | |
2072 | 'PerlIO::scalar' => '0.04', | |
2073 | 'PerlIO::via' => '0.03', | |
2074 | 'Pod::Checker' => '1.43', | |
2075 | 'Pod::Find' => '1.34', | |
2076 | 'Pod::Functions' => '1.03', | |
2077 | 'Pod::Html' => '1.0504', | |
2078 | 'Pod::ParseUtils' => '1.33', | |
2079 | 'Pod::Parser' => '1.32', | |
2080 | 'Pod::Usage' => '1.33', | |
2081 | 'SDBM_File' => '1.05', | |
2082 | 'Safe' => '2.12', | |
2083 | 'Scalar::Util' => '1.18', | |
2084 | 'Socket' => '1.78', | |
2085 | 'Storable' => '2.15', | |
2086 | 'Switch' => '2.10_01', | |
2087 | 'Sys::Syslog' => '0.13', | |
2088 | 'Term::ANSIColor' => '1.10', | |
2089 | 'Term::ReadLine' => '1.02', | |
2090 | 'Test::Builder' => '0.32', | |
2091 | 'Test::Builder::Module' => '0.02', | |
2092 | 'Test::Builder::Tester' => '1.02', | |
2093 | 'Test::Builder::Tester::Color'=> undef, | |
2094 | 'Test::Harness' => '2.56', | |
2095 | 'Test::Harness::Straps' => '0.26', | |
2096 | 'Test::More' => '0.62', | |
2097 | 'Test::Simple' => '0.62', | |
2098 | 'Text::Tabs' => '2005.0824', | |
2099 | 'Text::Wrap' => '2005.082401', | |
2100 | 'Tie::Hash' => '1.02', | |
2101 | 'Time::HiRes' => '1.86', | |
2102 | 'Unicode::Collate' => '0.52', | |
2103 | 'Unicode::UCD' => '0.24', | |
2104 | 'User::grent' => '1.01', | |
2105 | 'Win32' => '0.2601', | |
2106 | 'XS::APItest' => '0.08', | |
2107 | 'XS::Typemap' => '0.02', | |
2108 | 'XSLoader' => '0.06', | |
2109 | 'attrs' => '1.02', | |
2110 | 'autouse' => '1.05', | |
2111 | 'blib' => '1.03', | |
2112 | 'charnames' => '1.05', | |
2113 | 'diagnostics' => '1.15', | |
2114 | 'encoding' => '2.02', | |
2115 | 'if' => '0.05', | |
2116 | 'open' => '1.05', | |
2117 | 'ops' => '1.01', | |
2118 | 'overload' => '1.04', | |
2119 | 're' => '0.05', | |
2120 | 'threads' => '1.07', | |
2121 | 'threads::shared' => '0.94', | |
2122 | 'utf8' => '1.06', | |
2123 | 'vmsish' => '1.02', | |
2124 | 'warnings' => '1.05', | |
2125 | 'warnings::register' => '1.01', | |
2126 | }, | |
2127 | removed => { | |
2128 | } | |
2129 | }, | |
2130 | 5.008009 => { | |
2131 | delta_from => 5.008008, | |
2132 | changed => { | |
2133 | 'Attribute::Handlers' => '0.78_03', | |
2134 | 'AutoLoader' => '5.67', | |
2135 | 'AutoSplit' => '1.06', | |
2136 | 'B' => '1.19', | |
2137 | 'B::Asmdata' => '1.02', | |
2138 | 'B::Assembler' => '0.08', | |
2139 | 'B::C' => '1.05', | |
2140 | 'B::Concise' => '0.76', | |
2141 | 'B::Debug' => '1.05', | |
2142 | 'B::Deparse' => '0.87', | |
2143 | 'B::Lint' => '1.11', | |
2144 | 'B::Lint::Debug' => undef, | |
2145 | 'B::Terse' => '1.05', | |
2146 | 'Benchmark' => '1.1', | |
2147 | 'CGI' => '3.42', | |
2148 | 'CGI::Carp' => '1.30_01', | |
2149 | 'CGI::Cookie' => '1.29', | |
2150 | 'CGI::Fast' => '1.07', | |
2151 | 'CGI::Util' => '1.5_01', | |
2152 | 'CPAN' => '1.9301', | |
2153 | 'CPAN::Debug' => '5.5', | |
2154 | 'CPAN::DeferedCode' => '5.50', | |
2155 | 'CPAN::Distroprefs' => '6', | |
2156 | 'CPAN::FirstTime' => '5.5_01', | |
2157 | 'CPAN::HandleConfig' => '5.5', | |
2158 | 'CPAN::Kwalify' => '5.50', | |
2159 | 'CPAN::Nox' => '5.50', | |
2160 | 'CPAN::Queue' => '5.5', | |
2161 | 'CPAN::Tarzip' => '5.5', | |
2162 | 'CPAN::Version' => '5.5', | |
2163 | 'Carp' => '1.10', | |
2164 | 'Carp::Heavy' => '1.10', | |
2165 | 'Cwd' => '3.29', | |
2166 | 'DBM_Filter' => '0.02', | |
2167 | 'DBM_Filter::compress' => '0.02', | |
2168 | 'DBM_Filter::encode' => '0.02', | |
2169 | 'DBM_Filter::int32' => '0.02', | |
2170 | 'DBM_Filter::null' => '0.02', | |
2171 | 'DBM_Filter::utf8' => '0.02', | |
2172 | 'DB_File' => '1.817', | |
2173 | 'Data::Dumper' => '2.121_17', | |
2174 | 'Devel::DProf' => '20080331.00', | |
2175 | 'Devel::InnerPackage' => '0.3', | |
2176 | 'Devel::PPPort' => '3.14', | |
2177 | 'Devel::Peek' => '1.04', | |
2178 | 'Digest' => '1.15', | |
2179 | 'Digest::MD5' => '2.37', | |
2180 | 'DirHandle' => '1.02', | |
2181 | 'DynaLoader' => '1.09', | |
2182 | 'Encode' => '2.26', | |
2183 | 'Encode::Alias' => '2.10', | |
2184 | 'Encode::Byte' => '2.03', | |
2185 | 'Encode::CJKConstants' => '2.02', | |
2186 | 'Encode::CN' => '2.02', | |
2187 | 'Encode::CN::HZ' => '2.05', | |
2188 | 'Encode::Config' => '2.05', | |
2189 | 'Encode::EBCDIC' => '2.02', | |
2190 | 'Encode::Encoder' => '2.01', | |
2191 | 'Encode::Encoding' => '2.05', | |
2192 | 'Encode::GSM0338' => '2.01', | |
2193 | 'Encode::Guess' => '2.02', | |
2194 | 'Encode::JP' => '2.03', | |
2195 | 'Encode::JP::H2Z' => '2.02', | |
2196 | 'Encode::JP::JIS7' => '2.04', | |
2197 | 'Encode::KR' => '2.02', | |
2198 | 'Encode::KR::2022_KR' => '2.02', | |
2199 | 'Encode::MIME::Header' => '2.05', | |
2200 | 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', | |
2201 | 'Encode::MIME::Name' => '1.01', | |
2202 | 'Encode::Symbol' => '2.02', | |
2203 | 'Encode::TW' => '2.02', | |
2204 | 'Encode::Unicode' => '2.05', | |
2205 | 'Encode::Unicode::UTF7' => '2.04', | |
2206 | 'English' => '1.03', | |
2207 | 'Errno' => '1.10', | |
2208 | 'Exporter' => '5.63', | |
2209 | 'Exporter::Heavy' => '5.63', | |
2210 | 'ExtUtils::Command' => '1.15', | |
2211 | 'ExtUtils::Command::MM' => '6.48', | |
2212 | 'ExtUtils::Constant' => '0.21', | |
2213 | 'ExtUtils::Constant::Base'=> '0.04', | |
2214 | 'ExtUtils::Constant::ProxySubs'=> '0.06', | |
2215 | 'ExtUtils::Constant::Utils'=> '0.02', | |
2216 | 'ExtUtils::Constant::XS'=> '0.02', | |
2217 | 'ExtUtils::Embed' => '1.28', | |
2218 | 'ExtUtils::Install' => '1.50_01', | |
2219 | 'ExtUtils::Installed' => '1.43', | |
2220 | 'ExtUtils::Liblist' => '6.48', | |
2221 | 'ExtUtils::Liblist::Kid'=> '6.48', | |
2222 | 'ExtUtils::MM' => '6.48', | |
2223 | 'ExtUtils::MM_AIX' => '6.48', | |
2224 | 'ExtUtils::MM_Any' => '6.48', | |
2225 | 'ExtUtils::MM_BeOS' => '6.48', | |
2226 | 'ExtUtils::MM_Cygwin' => '6.48', | |
2227 | 'ExtUtils::MM_DOS' => '6.48', | |
2228 | 'ExtUtils::MM_Darwin' => '6.48', | |
2229 | 'ExtUtils::MM_MacOS' => '6.48', | |
2230 | 'ExtUtils::MM_NW5' => '6.48', | |
2231 | 'ExtUtils::MM_OS2' => '6.48', | |
2232 | 'ExtUtils::MM_QNX' => '6.48', | |
2233 | 'ExtUtils::MM_UWIN' => '6.48', | |
2234 | 'ExtUtils::MM_Unix' => '6.48', | |
2235 | 'ExtUtils::MM_VMS' => '6.48', | |
2236 | 'ExtUtils::MM_VOS' => '6.48', | |
2237 | 'ExtUtils::MM_Win32' => '6.48', | |
2238 | 'ExtUtils::MM_Win95' => '6.48', | |
2239 | 'ExtUtils::MY' => '6.48', | |
2240 | 'ExtUtils::MakeMaker' => '6.48', | |
2241 | 'ExtUtils::MakeMaker::Config'=> '6.48', | |
2242 | 'ExtUtils::MakeMaker::bytes'=> '6.48', | |
2243 | 'ExtUtils::MakeMaker::vmsish'=> '6.48', | |
2244 | 'ExtUtils::Manifest' => '1.55', | |
2245 | 'ExtUtils::Mkbootstrap' => '6.48', | |
2246 | 'ExtUtils::Mksymlists' => '6.48', | |
2247 | 'ExtUtils::Packlist' => '1.43', | |
2248 | 'ExtUtils::ParseXS' => '2.19', | |
2249 | 'ExtUtils::XSSymSet' => '1.1', | |
2250 | 'ExtUtils::testlib' => '6.48', | |
2251 | 'Fatal' => '1.06', | |
2252 | 'Fcntl' => '1.06', | |
2253 | 'File::Basename' => '2.77', | |
2254 | 'File::CheckTree' => '4.4', | |
2255 | 'File::Compare' => '1.1005', | |
2256 | 'File::Copy' => '2.13', | |
2257 | 'File::DosGlob' => '1.01', | |
2258 | 'File::Find' => '1.13', | |
2259 | 'File::Glob' => '1.06', | |
2260 | 'File::Path' => '2.07_02', | |
2261 | 'File::Spec' => '3.29', | |
2262 | 'File::Spec::Cygwin' => '3.29', | |
2263 | 'File::Spec::Epoc' => '3.29', | |
2264 | 'File::Spec::Functions' => '3.29', | |
2265 | 'File::Spec::Mac' => '3.29', | |
2266 | 'File::Spec::OS2' => '3.29', | |
2267 | 'File::Spec::Unix' => '3.29', | |
2268 | 'File::Spec::VMS' => '3.29', | |
2269 | 'File::Spec::Win32' => '3.29', | |
2270 | 'File::Temp' => '0.20', | |
2271 | 'File::stat' => '1.01', | |
2272 | 'FileCache' => '1.07', | |
2273 | 'Filter::Simple' => '0.83', | |
2274 | 'Filter::Util::Call' => '1.07', | |
2275 | 'FindBin' => '1.49', | |
2276 | 'GDBM_File' => '1.09', | |
2277 | 'Getopt::Long' => '2.37', | |
2278 | 'Getopt::Std' => '1.06', | |
2279 | 'Hash::Util' => '0.06', | |
2280 | 'IO' => '1.23', | |
2281 | 'IO::Dir' => '1.06', | |
2282 | 'IO::File' => '1.14', | |
2283 | 'IO::Handle' => '1.27', | |
2284 | 'IO::Socket' => '1.30', | |
2285 | 'IO::Socket::INET' => '1.31', | |
2286 | 'IO::Socket::UNIX' => '1.23', | |
2287 | 'IPC::Msg' => '2.00', | |
2288 | 'IPC::Open2' => '1.03', | |
2289 | 'IPC::Open3' => '1.03', | |
2290 | 'IPC::Semaphore' => '2.00', | |
2291 | 'IPC::SharedMem' => '2.00', | |
2292 | 'IPC::SysV' => '2.00', | |
2293 | 'List::Util' => '1.19', | |
2294 | 'Locale::Maketext' => '1.13', | |
2295 | 'Locale::Maketext::Guts'=> '1.13', | |
2296 | 'Locale::Maketext::GutsLoader'=> '1.13', | |
2297 | 'Math::BigFloat' => '1.60', | |
2298 | 'Math::BigInt' => '1.89', | |
2299 | 'Math::BigInt::Calc' => '0.52', | |
2300 | 'Math::BigRat' => '0.22', | |
2301 | 'Math::Complex' => '1.54', | |
2302 | 'Math::Trig' => '1.18', | |
2303 | 'Module::CoreList' => '2.17', | |
2304 | 'Module::Pluggable' => '3.8', | |
2305 | 'Module::Pluggable::Object'=> '3.6', | |
2306 | 'NDBM_File' => '1.07', | |
2307 | 'NEXT' => '0.61', | |
2308 | 'Net::Cmd' => '2.29', | |
2309 | 'Net::Config' => '1.11', | |
2310 | 'Net::Domain' => '2.20', | |
2311 | 'Net::FTP' => '2.77', | |
2312 | 'Net::FTP::A' => '1.18', | |
2313 | 'Net::NNTP' => '2.24', | |
2314 | 'Net::POP3' => '2.29', | |
2315 | 'Net::Ping' => '2.35', | |
2316 | 'Net::SMTP' => '2.31', | |
2317 | 'O' => '1.01', | |
2318 | 'ODBM_File' => '1.07', | |
78da2da6 CBW |
2319 | 'OS2::DLL' => '1.03', |
2320 | 'OS2::Process' => '1.03', | |
a272bf38 DL |
2321 | 'Opcode' => '1.0601', |
2322 | 'POSIX' => '1.15', | |
2323 | 'PerlIO' => '1.05', | |
2324 | 'PerlIO::encoding' => '0.11', | |
2325 | 'PerlIO::scalar' => '0.06', | |
2326 | 'PerlIO::via' => '0.05', | |
2327 | 'Pod::Html' => '1.09', | |
2328 | 'Pod::ParseUtils' => '1.35', | |
2329 | 'Pod::Parser' => '1.35', | |
2330 | 'Pod::Select' => '1.35', | |
2331 | 'Pod::Usage' => '1.35', | |
2332 | 'SDBM_File' => '1.06', | |
2333 | 'Safe' => '2.16', | |
2334 | 'Scalar::Util' => '1.19', | |
2335 | 'SelfLoader' => '1.17', | |
2336 | 'Shell' => '0.72', | |
2337 | 'Socket' => '1.81', | |
2338 | 'Storable' => '2.19', | |
2339 | 'Switch' => '2.13', | |
2340 | 'Sys::Syslog' => '0.27', | |
2341 | 'Sys::Syslog::win32::Win32'=> undef, | |
2342 | 'Term::ANSIColor' => '1.12', | |
2343 | 'Term::Cap' => '1.12', | |
2344 | 'Term::ReadLine' => '1.03', | |
2345 | 'Test::Builder' => '0.80', | |
2346 | 'Test::Builder::Module' => '0.80', | |
2347 | 'Test::Builder::Tester' => '1.13', | |
2348 | 'Test::Harness' => '2.64', | |
2349 | 'Test::Harness::Results'=> '0.01_01', | |
2350 | 'Test::Harness::Straps' => '0.26_01', | |
2351 | 'Test::Harness::Util' => '0.01', | |
2352 | 'Test::More' => '0.80', | |
2353 | 'Test::Simple' => '0.80', | |
2354 | 'Text::Balanced' => '1.98', | |
2355 | 'Text::ParseWords' => '3.27', | |
2356 | 'Text::Soundex' => '3.03', | |
2357 | 'Text::Tabs' => '2007.1117', | |
2358 | 'Text::Wrap' => '2006.1117', | |
2359 | 'Thread' => '2.01', | |
2360 | 'Thread::Queue' => '2.11', | |
2361 | 'Thread::Semaphore' => '2.09', | |
2362 | 'Tie::Handle' => '4.2', | |
2363 | 'Tie::Hash' => '1.03', | |
2364 | 'Tie::Memoize' => '1.1', | |
2365 | 'Tie::RefHash' => '1.38', | |
2366 | 'Tie::Scalar' => '1.01', | |
2367 | 'Tie::StdHandle' => '4.2', | |
2368 | 'Time::HiRes' => '1.9715', | |
2369 | 'Time::Local' => '1.1901', | |
2370 | 'Time::gmtime' => '1.03', | |
2371 | 'Unicode' => '5.1.0', | |
2372 | 'Unicode::Normalize' => '1.02', | |
2373 | 'Unicode::UCD' => '0.25', | |
2374 | 'VMS::DCLsym' => '1.03', | |
2375 | 'VMS::Stdio' => '2.4', | |
2376 | 'Win32' => '0.38', | |
2377 | 'Win32API::File' => '0.1001_01', | |
2378 | 'Win32API::File::ExtUtils::Myconst2perl'=> '1', | |
2379 | 'Win32CORE' => '0.02', | |
2380 | 'XS::APItest' => '0.15', | |
2381 | 'XS::Typemap' => '0.03', | |
2382 | 'XSLoader' => '0.10', | |
2383 | 'attributes' => '0.09', | |
2384 | 'autouse' => '1.06', | |
2385 | 'base' => '2.13', | |
2386 | 'bigint' => '0.23', | |
2387 | 'bignum' => '0.23', | |
2388 | 'bigrat' => '0.23', | |
2389 | 'blib' => '1.04', | |
2390 | 'charnames' => '1.06', | |
2391 | 'constant' => '1.17', | |
2392 | 'diagnostics' => '1.16', | |
2393 | 'encoding' => '2.6_01', | |
2394 | 'fields' => '2.12', | |
2395 | 'filetest' => '1.02', | |
2396 | 'lib' => '0.61', | |
2397 | 'open' => '1.06', | |
2398 | 'ops' => '1.02', | |
2399 | 'overload' => '1.06', | |
2400 | 're' => '0.0601', | |
2401 | 'sigtrap' => '1.04', | |
2402 | 'threads' => '1.71', | |
2403 | 'threads::shared' => '1.27', | |
2404 | 'utf8' => '1.07', | |
2405 | 'warnings' => '1.05_01', | |
2406 | }, | |
2407 | removed => { | |
2408 | } | |
2409 | }, | |
2410 | 5.009 => { | |
2411 | delta_from => 5.008002, | |
2412 | changed => { | |
2413 | 'B' => '1.03', | |
2414 | 'B::C' => '1.03', | |
2415 | 'B::Concise' => '0.57', | |
2416 | 'B::Deparse' => '0.65', | |
2417 | 'DB_File' => '1.806', | |
2418 | 'Devel::PPPort' => '2.008', | |
2419 | 'English' => '1.02', | |
2420 | 'Fatal' => '1.04', | |
2421 | 'OS2::DLL' => '1.02', | |
2422 | 'Opcode' => '1.06', | |
a272bf38 DL |
2423 | 'Time::HiRes' => '1.51', |
2424 | 'Unicode::Collate' => '0.28', | |
2425 | 'Unicode::Normalize' => '0.23', | |
2426 | 'XSLoader' => '0.03', | |
2427 | 'assertions' => '0.01', | |
2428 | 'assertions::activate' => '0.01', | |
2429 | 'overload' => '1.02', | |
2430 | 'version' => '0.29', | |
2431 | }, | |
2432 | removed => { | |
2433 | } | |
2434 | }, | |
2435 | 5.009001 => { | |
2436 | delta_from => 5.008004, | |
2437 | changed => { | |
2438 | 'B' => '1.05', | |
2439 | 'B::Assembler' => '0.06', | |
2440 | 'B::C' => '1.04', | |
2441 | 'B::Concise' => '0.59', | |
2442 | 'B::Debug' => '1.02', | |
2443 | 'B::Deparse' => '0.65', | |
2444 | 'DB_File' => '1.808_01', | |
2445 | 'Devel::PPPort' => '2.011_01', | |
2446 | 'Digest' => '1.05', | |
2447 | 'DynaLoader' => '1.04', | |
2448 | 'English' => '1.02', | |
2449 | 'Exporter::Heavy' => '5.567', | |
2450 | 'ExtUtils::Command' => '1.07', | |
2451 | 'ExtUtils::Liblist::Kid'=> '1.3', | |
2452 | 'ExtUtils::MM_Any' => '0.0901', | |
2453 | 'ExtUtils::MM_Cygwin' => '1.07', | |
2454 | 'ExtUtils::MM_NW5' => '2.07_01', | |
2455 | 'ExtUtils::MM_Unix' => '1.45_01', | |
2456 | 'ExtUtils::MM_VMS' => '5.71_01', | |
2457 | 'ExtUtils::MM_Win32' => '1.10_01', | |
2458 | 'ExtUtils::MM_Win95' => '0.03', | |
2459 | 'ExtUtils::MakeMaker' => '6.21_02', | |
2460 | 'ExtUtils::Manifest' => '1.43', | |
2461 | 'Fatal' => '1.04', | |
2462 | 'Getopt::Long' => '2.3401', | |
2463 | 'IO::Handle' => '1.23', | |
2464 | 'IO::Pipe' => '1.122', | |
2465 | 'IPC::Open3' => '1.0105', | |
2466 | 'MIME::Base64' => '3.00_01', | |
2467 | 'MIME::QuotedPrint' => '3.00', | |
2468 | 'Memoize' => '1.01_01', | |
2469 | 'ODBM_File' => '1.04', | |
2470 | 'Opcode' => '1.06', | |
2471 | 'POSIX' => '1.07', | |
2472 | 'Storable' => '2.11', | |
2473 | 'Time::HiRes' => '1.56', | |
2474 | 'Time::Local' => '1.07_94', | |
2475 | 'UNIVERSAL' => '1.02', | |
2476 | 'Unicode' => '4.0.0', | |
2477 | 'Unicode::UCD' => '0.21', | |
2478 | 'XSLoader' => '0.03', | |
2479 | 'assertions' => '0.01', | |
2480 | 'assertions::activate' => '0.01', | |
2481 | 'base' => '2.04', | |
2482 | 'if' => '0.0401', | |
2483 | 'open' => '1.02', | |
2484 | 'overload' => '1.02', | |
2485 | 'threads' => '1.02', | |
2486 | 'utf8' => '1.02', | |
2487 | 'version' => '0.36', | |
2488 | }, | |
2489 | removed => { | |
2490 | } | |
2491 | }, | |
2492 | 5.009002 => { | |
2493 | delta_from => 5.008007, | |
2494 | changed => { | |
2495 | 'B' => '1.07', | |
2496 | 'B::Concise' => '0.64', | |
2497 | 'B::Deparse' => '0.69', | |
2498 | 'B::Disassembler' => '1.03', | |
2499 | 'B::Terse' => '1.02', | |
2500 | 'CGI' => '3.07', | |
2501 | 'Config::Extensions' => '0.01', | |
2502 | 'Devel::DProf' => '20030813.00', | |
2503 | 'DynaLoader' => '1.07', | |
2504 | 'Encode' => '2.09', | |
2505 | 'Encode::Alias' => '2.02', | |
2506 | 'English' => '1.03', | |
2507 | 'Exporter' => '5.59', | |
2508 | 'Exporter::Heavy' => '5.59', | |
2509 | 'ExtUtils::Command' => '1.07', | |
2510 | 'ExtUtils::Command::MM' => '0.03_01', | |
2511 | 'ExtUtils::Embed' => '1.26', | |
2512 | 'ExtUtils::Liblist::Kid'=> '1.3', | |
2513 | 'ExtUtils::MM_Any' => '0.10', | |
2514 | 'ExtUtils::MM_Cygwin' => '1.07', | |
2515 | 'ExtUtils::MM_MacOS' => '1.08', | |
2516 | 'ExtUtils::MM_NW5' => '2.07', | |
2517 | 'ExtUtils::MM_Unix' => '1.46_01', | |
2518 | 'ExtUtils::MM_VMS' => '5.71', | |
2519 | 'ExtUtils::MM_Win32' => '1.10', | |
2520 | 'ExtUtils::MM_Win95' => '0.03', | |
2521 | 'ExtUtils::MakeMaker' => '6.25', | |
2522 | 'ExtUtils::Manifest' => '1.44', | |
2523 | 'Fatal' => '1.04', | |
2524 | 'File::Path' => '1.06', | |
2525 | 'FileCache' => '1.04_01', | |
2526 | 'Getopt::Long' => '2.3401', | |
2527 | 'IO::File' => '1.10', | |
2528 | 'IO::Socket::INET' => '1.27', | |
2529 | 'Math::BigFloat' => '1.49', | |
2530 | 'Math::BigInt' => '1.75', | |
2531 | 'Math::BigInt::Calc' => '0.45', | |
2532 | 'Math::BigRat' => '0.14', | |
2533 | 'Memoize' => '1.01_01', | |
2534 | 'Module::CoreList' => '1.99', | |
2535 | 'NEXT' => '0.60_01', | |
2536 | 'Opcode' => '1.06', | |
2537 | 'Pod::Html' => '1.0502', | |
2538 | 'Scalar::Util' => '1.14_1', | |
2539 | 'Storable' => '2.14', | |
2540 | 'Symbol' => '1.05', | |
2541 | 'Test::Harness' => '2.46', | |
2542 | 'Test::Harness::Straps' => '0.20_01', | |
2543 | 'Text::Balanced' => '1.95_01', | |
2544 | 'Text::Wrap' => '2001.09292', | |
2545 | 'UNIVERSAL' => '1.02', | |
2546 | 'Unicode' => '4.0.1', | |
2547 | 'Unicode::Normalize' => '0.30', | |
2548 | 'Unicode::UCD' => '0.22', | |
2549 | 'Win32' => '0.23', | |
2550 | 'XS::APItest' => '0.05', | |
2551 | 'XSLoader' => '0.03', | |
2552 | 'assertions' => '0.01', | |
2553 | 'assertions::activate' => '0.01', | |
2554 | 'base' => '2.06', | |
2555 | 'bigint' => '0.06', | |
2556 | 'bignum' => '0.16', | |
2557 | 'bigrat' => '0.07', | |
2558 | 'bytes' => '1.01', | |
2559 | 'encoding::warnings' => '0.05', | |
2560 | 'if' => '0.0401', | |
2561 | 're' => '0.05', | |
2562 | 'threads::shared' => '0.92', | |
2563 | 'utf8' => '1.04', | |
2564 | 'version' => '0.42', | |
2565 | 'warnings' => '1.04', | |
2566 | }, | |
2567 | removed => { | |
2568 | 'Test::Harness::Point' => 1, | |
2569 | } | |
2570 | }, | |
2571 | 5.009003 => { | |
2572 | delta_from => 5.008008, | |
2573 | changed => { | |
2574 | 'Archive::Tar' => '1.26_01', | |
2575 | 'Archive::Tar::Constant'=> '0.02', | |
2576 | 'Archive::Tar::File' => '0.02', | |
2577 | 'AutoSplit' => '1.04_01', | |
2578 | 'B' => '1.10', | |
2579 | 'B::Bblock' => '1.02', | |
2580 | 'B::Bytecode' => '1.01', | |
2581 | 'B::C' => '1.04', | |
2582 | 'B::CC' => '1.00', | |
2583 | 'B::Concise' => '0.67', | |
2584 | 'B::Debug' => '1.02', | |
2585 | 'B::Deparse' => '0.73', | |
2586 | 'B::Lint' => '1.04', | |
2587 | 'B::Terse' => '1.03', | |
2588 | 'CGI' => '3.15_01', | |
2589 | 'CPAN' => '1.83_58', | |
2590 | 'CPAN::Debug' => '4.44', | |
2591 | 'CPAN::FirstTime' => '4.50', | |
2592 | 'CPAN::HandleConfig' => '4.31', | |
2593 | 'CPAN::Nox' => '2.31', | |
2594 | 'CPAN::Tarzip' => '3.36', | |
2595 | 'CPAN::Version' => '2.55', | |
2596 | 'Carp' => '1.05', | |
2597 | 'Carp::Heavy' => '1.05', | |
2598 | 'Compress::Zlib' => '2.000_07', | |
2599 | 'Compress::Zlib::Common'=> '2.000_07', | |
2600 | 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07', | |
2601 | 'Compress::Zlib::Compress::Zip::Constants'=> '1.00', | |
2602 | 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05', | |
2603 | 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05', | |
2604 | 'Compress::Zlib::File::GlobMapper'=> '0.000_02', | |
2605 | 'Compress::Zlib::FileConstants'=> '2.000_07', | |
2606 | 'Compress::Zlib::IO::Compress::Base'=> '2.000_05', | |
2607 | 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07', | |
2608 | 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07', | |
2609 | 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07', | |
2610 | 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04', | |
2611 | 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07', | |
2612 | 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05', | |
2613 | 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05', | |
2614 | 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07', | |
2615 | 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07', | |
2616 | 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07', | |
2617 | 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05', | |
2618 | 'Compress::Zlib::ParseParameters'=> '2.000_07', | |
2619 | 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05', | |
2620 | 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05', | |
2621 | 'Config::Extensions' => '0.01', | |
2622 | 'Cwd' => '3.15', | |
2623 | 'Devel::PPPort' => '3.08', | |
2624 | 'Digest::SHA' => '5.32', | |
2625 | 'DirHandle' => '1.01', | |
2626 | 'DynaLoader' => '1.07', | |
2627 | 'Encode' => '2.14', | |
2628 | 'Encode::CN::HZ' => '2.02', | |
2629 | 'Encode::MIME::Header' => '2.02', | |
2630 | 'English' => '1.04', | |
2631 | 'Exporter' => '5.59', | |
2632 | 'Exporter::Heavy' => '5.59', | |
2633 | 'ExtUtils::CBuilder' => '0.15', | |
2634 | 'ExtUtils::CBuilder::Base'=> '0.12', | |
2635 | 'ExtUtils::CBuilder::Platform::Unix'=> '0.12', | |
2636 | 'ExtUtils::CBuilder::Platform::VMS'=> '0.12', | |
2637 | 'ExtUtils::CBuilder::Platform::Windows'=> '0.12', | |
2638 | 'ExtUtils::CBuilder::Platform::aix'=> '0.12', | |
2639 | 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12', | |
2640 | 'ExtUtils::CBuilder::Platform::darwin'=> '0.12', | |
2641 | 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01', | |
2642 | 'ExtUtils::CBuilder::Platform::os2'=> '0.13', | |
2643 | 'ExtUtils::Command::MM' => '0.05_01', | |
2644 | 'ExtUtils::Constant' => '0.2', | |
2645 | 'ExtUtils::Constant::Base'=> '0.02', | |
2646 | 'ExtUtils::Constant::ProxySubs'=> '0.01', | |
2647 | 'ExtUtils::Constant::XS'=> '0.02', | |
2648 | 'ExtUtils::MM_Any' => '0.13_01', | |
2649 | 'ExtUtils::MM_Unix' => '1.50_01', | |
2650 | 'ExtUtils::MakeMaker' => '6.30_01', | |
2651 | 'ExtUtils::ParseXS' => '2.15_02', | |
2652 | 'Fatal' => '1.04', | |
2653 | 'File::Compare' => '1.1005', | |
2654 | 'File::Spec' => '3.15', | |
2655 | 'File::Temp' => '0.16_01', | |
2656 | 'IO::File' => '1.13_01', | |
2657 | 'IO::Handle' => '1.26', | |
2658 | 'IO::Socket' => '1.29_01', | |
2659 | 'IO::Socket::INET' => '1.29_02', | |
2660 | 'IO::Socket::UNIX' => '1.22_01', | |
2661 | 'IO::Zlib' => '1.04_02', | |
2662 | 'Locale::Maketext' => '1.10_01', | |
2663 | 'Math::BigInt::FastCalc'=> '0.10', | |
2664 | 'Memoize' => '1.01_01', | |
2665 | 'Module::CoreList' => '2.02', | |
2666 | 'Moped::Msg' => '0.01', | |
2667 | 'NEXT' => '0.60_01', | |
2668 | 'Net::Cmd' => '2.26_01', | |
2669 | 'Net::Domain' => '2.19_01', | |
2670 | 'Net::Ping' => '2.31_04', | |
2671 | 'Opcode' => '1.08', | |
2672 | 'POSIX' => '1.10', | |
2673 | 'Pod::Escapes' => '1.04', | |
2674 | 'Pod::Man' => '2.04', | |
2675 | 'Pod::Perldoc' => '3.14_01', | |
2676 | 'Pod::Simple' => '3.04', | |
2677 | 'Pod::Simple::BlackBox' => undef, | |
2678 | 'Pod::Simple::Checker' => '2.02', | |
2679 | 'Pod::Simple::Debug' => undef, | |
2680 | 'Pod::Simple::DumpAsText'=> '2.02', | |
2681 | 'Pod::Simple::DumpAsXML'=> '2.02', | |
2682 | 'Pod::Simple::HTML' => '3.03', | |
2683 | 'Pod::Simple::HTMLBatch'=> '3.02', | |
2684 | 'Pod::Simple::HTMLLegacy'=> '5.01', | |
2685 | 'Pod::Simple::LinkSection'=> undef, | |
2686 | 'Pod::Simple::Methody' => '2.02', | |
2687 | 'Pod::Simple::Progress' => '1.01', | |
2688 | 'Pod::Simple::PullParser'=> '2.02', | |
2689 | 'Pod::Simple::PullParserEndToken'=> undef, | |
2690 | 'Pod::Simple::PullParserStartToken'=> undef, | |
2691 | 'Pod::Simple::PullParserTextToken'=> undef, | |
2692 | 'Pod::Simple::PullParserToken'=> '2.02', | |
2693 | 'Pod::Simple::RTF' => '2.02', | |
2694 | 'Pod::Simple::Search' => '3.04', | |
2695 | 'Pod::Simple::SimpleTree'=> '2.02', | |
2696 | 'Pod::Simple::Text' => '2.02', | |
2697 | 'Pod::Simple::TextContent'=> '2.02', | |
2698 | 'Pod::Simple::TiedOutFH'=> undef, | |
2699 | 'Pod::Simple::Transcode'=> undef, | |
2700 | 'Pod::Simple::TranscodeDumb'=> '2.02', | |
2701 | 'Pod::Simple::TranscodeSmart'=> undef, | |
2702 | 'Pod::Simple::XMLOutStream'=> '2.02', | |
2703 | 'Pod::Text' => '3.01', | |
2704 | 'Pod::Text::Color' => '2.01', | |
2705 | 'Pod::Text::Overstrike' => '2', | |
2706 | 'Pod::Text::Termcap' => '2.01', | |
2707 | 'Pod::Usage' => '1.33_01', | |
2708 | 'SelfLoader' => '1.0905', | |
2709 | 'Storable' => '2.15_02', | |
2710 | 'Test::Builder::Module' => '0.03', | |
2711 | 'Text::Balanced' => '1.95_01', | |
2712 | 'Tie::File' => '0.97_01', | |
2713 | 'UNIVERSAL' => '1.03', | |
2714 | 'XS::APItest' => '0.09', | |
2715 | 'assertions' => '0.02', | |
2716 | 'assertions::activate' => '0.02', | |
2717 | 'assertions::compat' => undef, | |
2718 | 'constant' => '1.07', | |
2719 | 'encoding::warnings' => '0.05', | |
2720 | 'feature' => '1.00', | |
2721 | 're' => '0.06', | |
2722 | 'sort' => '2.00', | |
2723 | 'version' => '0.53', | |
2724 | }, | |
2725 | removed => { | |
2726 | } | |
f372d768 | 2727 | }, |
16531488 | 2728 | 5.009004 => { |
a272bf38 DL |
2729 | delta_from => 5.009003, |
2730 | changed => { | |
2731 | 'Archive::Tar' => '1.30_01', | |
2732 | 'AutoLoader' => '5.61', | |
2733 | 'B' => '1.11', | |
2734 | 'B::Bytecode' => '1.02', | |
2735 | 'B::C' => '1.05', | |
2736 | 'B::Concise' => '0.69', | |
2737 | 'B::Deparse' => '0.76', | |
2738 | 'B::Lint' => '1.08', | |
2739 | 'Benchmark' => '1.08', | |
2740 | 'CGI' => '3.20', | |
2741 | 'CGI::Cookie' => '1.27', | |
2742 | 'CGI::Fast' => '1.07', | |
2743 | 'CPAN' => '1.87_55', | |
2744 | 'CPAN::Debug' => '5.400561', | |
2745 | 'CPAN::FirstTime' => '5.400742', | |
2746 | 'CPAN::HandleConfig' => '5.400740', | |
2747 | 'CPAN::Nox' => '5.400561', | |
2748 | 'CPAN::Tarzip' => '5.400714', | |
2749 | 'CPAN::Version' => '5.400561', | |
2750 | 'Compress::Raw::Zlib' => '2.000_13', | |
2751 | 'Compress::Zlib' => '2.000_13', | |
2752 | 'Cwd' => '3.19', | |
2753 | 'Devel::PPPort' => '3.10', | |
2754 | 'Digest' => '1.15', | |
2755 | 'Digest::SHA' => '5.43', | |
2756 | 'Encode' => '2.18_01', | |
2757 | 'Encode::Alias' => '2.06', | |
2758 | 'Encode::Byte' => '2.02', | |
2759 | 'Encode::CJKConstants' => '2.02', | |
2760 | 'Encode::CN' => '2.02', | |
2761 | 'Encode::CN::HZ' => '2.04', | |
2762 | 'Encode::Config' => '2.03', | |
2763 | 'Encode::EBCDIC' => '2.02', | |
2764 | 'Encode::Encoder' => '2.01', | |
2765 | 'Encode::Encoding' => '2.04', | |
2766 | 'Encode::Guess' => '2.02', | |
2767 | 'Encode::JP' => '2.03', | |
2768 | 'Encode::JP::H2Z' => '2.02', | |
2769 | 'Encode::JP::JIS7' => '2.02', | |
2770 | 'Encode::KR' => '2.02', | |
2771 | 'Encode::KR::2022_KR' => '2.02', | |
2772 | 'Encode::MIME::Header' => '2.04', | |
2773 | 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', | |
2774 | 'Encode::Symbol' => '2.02', | |
2775 | 'Encode::TW' => '2.02', | |
2776 | 'Encode::Unicode' => '2.03', | |
2777 | 'Encode::Unicode::UTF7' => '2.04', | |
2778 | 'ExtUtils::CBuilder' => '0.18', | |
2779 | 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01', | |
2780 | 'ExtUtils::Constant::Base'=> '0.03', | |
2781 | 'ExtUtils::Constant::ProxySubs'=> '0.03', | |
2782 | 'ExtUtils::Install' => '1.41', | |
2783 | 'ExtUtils::Installed' => '1.41', | |
2784 | 'ExtUtils::MM_Any' => '0.13_02', | |
2785 | 'ExtUtils::MM_NW5' => '2.08_01', | |
2786 | 'ExtUtils::MM_Unix' => '1.5003', | |
2787 | 'ExtUtils::MM_VMS' => '5.73_03', | |
2788 | 'ExtUtils::MM_Win32' => '1.12_02', | |
2789 | 'ExtUtils::MM_Win95' => '0.04_01', | |
2790 | 'ExtUtils::MakeMaker' => '6.30_02', | |
2791 | 'ExtUtils::Manifest' => '1.46_01', | |
2792 | 'ExtUtils::Mkbootstrap' => '1.15_01', | |
2793 | 'ExtUtils::Mksymlists' => '1.19_01', | |
2794 | 'ExtUtils::Packlist' => '1.41', | |
2795 | 'File::Basename' => '2.75', | |
2796 | 'File::Find' => '1.11', | |
2797 | 'File::GlobMapper' => '0.000_02', | |
2798 | 'File::Spec' => '3.19', | |
2799 | 'FileCache' => '1.07', | |
2800 | 'Getopt::Long' => '2.3501', | |
2801 | 'Hash::Util' => '0.07', | |
2802 | 'Hash::Util::FieldHash' => '0.01', | |
2803 | 'IO' => '1.23_01', | |
2804 | 'IO::Compress::Adapter::Deflate'=> '2.000_13', | |
2805 | 'IO::Compress::Adapter::Identity'=> '2.000_13', | |
2806 | 'IO::Compress::Base' => '2.000_13', | |
2807 | 'IO::Compress::Base::Common'=> '2.000_13', | |
2808 | 'IO::Compress::Deflate' => '2.000_13', | |
2809 | 'IO::Compress::Gzip' => '2.000_13', | |
2810 | 'IO::Compress::Gzip::Constants'=> '2.000_13', | |
2811 | 'IO::Compress::RawDeflate'=> '2.000_13', | |
2812 | 'IO::Compress::Zip' => '2.000_13', | |
2813 | 'IO::Compress::Zip::Constants'=> '2.000_13', | |
2814 | 'IO::Compress::Zlib::Constants'=> '2.000_13', | |
2815 | 'IO::Compress::Zlib::Extra'=> '2.000_13', | |
2816 | 'IO::Dir' => '1.06', | |
2817 | 'IO::File' => '1.14', | |
2818 | 'IO::Handle' => '1.27', | |
2819 | 'IO::Socket' => '1.30_01', | |
2820 | 'IO::Socket::INET' => '1.31', | |
2821 | 'IO::Socket::UNIX' => '1.23', | |
2822 | 'IO::Uncompress::Adapter::Identity'=> '2.000_13', | |
2823 | 'IO::Uncompress::Adapter::Inflate'=> '2.000_13', | |
2824 | 'IO::Uncompress::AnyInflate'=> '2.000_13', | |
2825 | 'IO::Uncompress::AnyUncompress'=> '2.000_13', | |
2826 | 'IO::Uncompress::Base' => '2.000_13', | |
2827 | 'IO::Uncompress::Gunzip'=> '2.000_13', | |
2828 | 'IO::Uncompress::Inflate'=> '2.000_13', | |
2829 | 'IO::Uncompress::RawInflate'=> '2.000_13', | |
2830 | 'IO::Uncompress::Unzip' => '2.000_13', | |
2831 | 'MIME::Base64' => '3.07_01', | |
2832 | 'Math::Complex' => '1.36', | |
2833 | 'Math::Trig' => '1.04', | |
2834 | 'Module::Build' => '0.2805', | |
2835 | 'Module::Build::Base' => undef, | |
2836 | 'Module::Build::Compat' => '0.03', | |
2837 | 'Module::Build::ConfigData'=> undef, | |
2838 | 'Module::Build::Cookbook'=> undef, | |
2839 | 'Module::Build::ModuleInfo'=> undef, | |
2840 | 'Module::Build::Notes' => undef, | |
2841 | 'Module::Build::PPMMaker'=> undef, | |
2842 | 'Module::Build::Platform::Amiga'=> undef, | |
2843 | 'Module::Build::Platform::Default'=> undef, | |
2844 | 'Module::Build::Platform::EBCDIC'=> undef, | |
2845 | 'Module::Build::Platform::MPEiX'=> undef, | |
2846 | 'Module::Build::Platform::MacOS'=> undef, | |
2847 | 'Module::Build::Platform::RiscOS'=> undef, | |
2848 | 'Module::Build::Platform::Unix'=> undef, | |
2849 | 'Module::Build::Platform::VMS'=> undef, | |
2850 | 'Module::Build::Platform::VOS'=> undef, | |
2851 | 'Module::Build::Platform::Windows'=> undef, | |
2852 | 'Module::Build::Platform::aix'=> undef, | |
2853 | 'Module::Build::Platform::cygwin'=> undef, | |
2854 | 'Module::Build::Platform::darwin'=> undef, | |
2855 | 'Module::Build::Platform::os2'=> undef, | |
2856 | 'Module::Build::PodParser'=> undef, | |
2857 | 'Module::Build::Version'=> '0', | |
2858 | 'Module::Build::YAML' => '0.50', | |
2859 | 'Module::CoreList' => '2.08', | |
2860 | 'Module::Load' => '0.10', | |
2861 | 'Module::Loaded' => '0.01', | |
2862 | 'Package::Constants' => '0.01', | |
2863 | 'Pod::Html' => '1.07', | |
2864 | 'Pod::Man' => '2.09', | |
2865 | 'Pod::Text' => '3.07', | |
2866 | 'Pod::Text::Color' => '2.03', | |
2867 | 'Pod::Text::Termcap' => '2.03', | |
2868 | 'SDBM_File' => '1.06', | |
2869 | 'Shell' => '0.7', | |
2870 | 'Sys::Syslog' => '0.17', | |
2871 | 'Term::ANSIColor' => '1.11', | |
2872 | 'Test::Builder' => '0.33', | |
2873 | 'Test::Builder::Tester' => '1.04', | |
2874 | 'Test::Harness' => '2.62', | |
2875 | 'Test::Harness::Util' => '0.01', | |
2876 | 'Test::More' => '0.64', | |
2877 | 'Test::Simple' => '0.64', | |
2878 | 'Text::Balanced' => '1.98_01', | |
2879 | 'Text::ParseWords' => '3.25', | |
2880 | 'Text::Tabs' => '2007.071101', | |
2881 | 'Text::Wrap' => '2006.0711', | |
2882 | 'Tie::RefHash' => '1.34_01', | |
2883 | 'Time::HiRes' => '1.87', | |
2884 | 'Time::Local' => '1.13', | |
2885 | 'Time::gmtime' => '1.03', | |
2886 | 'UNIVERSAL' => '1.04', | |
2887 | 'Unicode::Normalize' => '1.01', | |
2888 | 'Win32API::File' => '0.1001', | |
2889 | 'Win32API::File::ExtUtils::Myconst2perl'=> '1', | |
2890 | 'assertions' => '0.03', | |
2891 | 'assertions::compat' => '0.02', | |
2892 | 'autouse' => '1.06', | |
2893 | 'diagnostics' => '1.16', | |
2894 | 'encoding' => '2.04', | |
2895 | 'encoding::warnings' => '0.10', | |
2896 | 'feature' => '1.01', | |
2897 | 're' => '0.0601', | |
2898 | 'threads' => '1.38', | |
2899 | 'threads::shared' => '0.94_01', | |
2900 | 'version' => '0.67', | |
2901 | }, | |
2902 | removed => { | |
2903 | 'Compress::Zlib::Common'=> 1, | |
2904 | 'Compress::Zlib::Compress::Gzip::Constants'=> 1, | |
2905 | 'Compress::Zlib::Compress::Zip::Constants'=> 1, | |
2906 | 'Compress::Zlib::CompressPlugin::Deflate'=> 1, | |
2907 | 'Compress::Zlib::CompressPlugin::Identity'=> 1, | |
2908 | 'Compress::Zlib::File::GlobMapper'=> 1, | |
2909 | 'Compress::Zlib::FileConstants'=> 1, | |
2910 | 'Compress::Zlib::IO::Compress::Base'=> 1, | |
2911 | 'Compress::Zlib::IO::Compress::Deflate'=> 1, | |
2912 | 'Compress::Zlib::IO::Compress::Gzip'=> 1, | |
2913 | 'Compress::Zlib::IO::Compress::RawDeflate'=> 1, | |
2914 | 'Compress::Zlib::IO::Compress::Zip'=> 1, | |
2915 | 'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1, | |
2916 | 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1, | |
2917 | 'Compress::Zlib::IO::Uncompress::Base'=> 1, | |
2918 | 'Compress::Zlib::IO::Uncompress::Gunzip'=> 1, | |
2919 | 'Compress::Zlib::IO::Uncompress::Inflate'=> 1, | |
2920 | 'Compress::Zlib::IO::Uncompress::RawInflate'=> 1, | |
2921 | 'Compress::Zlib::IO::Uncompress::Unzip'=> 1, | |
2922 | 'Compress::Zlib::ParseParameters'=> 1, | |
2923 | 'Compress::Zlib::UncompressPlugin::Identity'=> 1, | |
2924 | 'Compress::Zlib::UncompressPlugin::Inflate'=> 1, | |
2925 | } | |
16531488 | 2926 | }, |
201a0ee1 | 2927 | 5.009005 => { |
a272bf38 DL |
2928 | delta_from => 5.009004, |
2929 | changed => { | |
2930 | 'Archive::Extract' => '0.22_01', | |
2931 | 'Archive::Tar' => '1.32', | |
2932 | 'Attribute::Handlers' => '0.78_06', | |
2933 | 'AutoLoader' => '5.63', | |
2934 | 'AutoSplit' => '1.05', | |
2935 | 'B' => '1.16', | |
2936 | 'B::Concise' => '0.72', | |
2937 | 'B::Debug' => '1.05', | |
2938 | 'B::Deparse' => '0.82', | |
2939 | 'B::Lint' => '1.09', | |
2940 | 'B::Terse' => '1.05', | |
2941 | 'Benchmark' => '1.1', | |
2942 | 'CGI' => '3.29', | |
2943 | 'CGI::Cookie' => '1.28', | |
2944 | 'CGI::Util' => '1.5_01', | |
2945 | 'CPAN' => '1.9102', | |
2946 | 'CPAN::Debug' => '5.400955', | |
2947 | 'CPAN::FirstTime' => '5.401669', | |
2948 | 'CPAN::HandleConfig' => '5.401744', | |
2949 | 'CPAN::Kwalify' => '5.401418', | |
2950 | 'CPAN::Nox' => '5.400844', | |
2951 | 'CPAN::Queue' => '5.401704', | |
2952 | 'CPAN::Tarzip' => '5.401717', | |
2953 | 'CPAN::Version' => '5.401387', | |
2954 | 'CPANPLUS' => '0.81_01', | |
2955 | 'CPANPLUS::Backend' => undef, | |
2956 | 'CPANPLUS::Backend::RV' => undef, | |
2957 | 'CPANPLUS::Config' => undef, | |
2958 | 'CPANPLUS::Configure' => undef, | |
2959 | 'CPANPLUS::Configure::Setup'=> undef, | |
2960 | 'CPANPLUS::Dist' => undef, | |
2961 | 'CPANPLUS::Dist::Base' => '0.01', | |
2962 | 'CPANPLUS::Dist::Build' => '0.06_01', | |
2963 | 'CPANPLUS::Dist::Build::Constants'=> '0.01', | |
2964 | 'CPANPLUS::Dist::MM' => undef, | |
2965 | 'CPANPLUS::Dist::Sample'=> undef, | |
2966 | 'CPANPLUS::Error' => undef, | |
2967 | 'CPANPLUS::Internals' => '0.81_01', | |
2968 | 'CPANPLUS::Internals::Constants'=> '0.01', | |
2969 | 'CPANPLUS::Internals::Constants::Report'=> '0.01', | |
2970 | 'CPANPLUS::Internals::Extract'=> undef, | |
2971 | 'CPANPLUS::Internals::Fetch'=> undef, | |
2972 | 'CPANPLUS::Internals::Report'=> undef, | |
2973 | 'CPANPLUS::Internals::Search'=> undef, | |
2974 | 'CPANPLUS::Internals::Source'=> undef, | |
2975 | 'CPANPLUS::Internals::Utils'=> undef, | |
2976 | 'CPANPLUS::Internals::Utils::Autoflush'=> undef, | |
2977 | 'CPANPLUS::Module' => undef, | |
2978 | 'CPANPLUS::Module::Author'=> undef, | |
2979 | 'CPANPLUS::Module::Author::Fake'=> undef, | |
2980 | 'CPANPLUS::Module::Checksums'=> undef, | |
2981 | 'CPANPLUS::Module::Fake'=> undef, | |
2982 | 'CPANPLUS::Module::Signature'=> undef, | |
2983 | 'CPANPLUS::Selfupdate' => undef, | |
2984 | 'CPANPLUS::Shell' => undef, | |
2985 | 'CPANPLUS::Shell::Classic'=> '0.0562', | |
2986 | 'CPANPLUS::Shell::Default'=> '0.81_01', | |
2987 | 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, | |
2988 | 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, | |
2989 | 'CPANPLUS::inc' => undef, | |
2990 | 'Carp' => '1.07', | |
2991 | 'Carp::Heavy' => '1.07', | |
2992 | 'Compress::Raw::Zlib' => '2.005', | |
2993 | 'Compress::Zlib' => '2.005', | |
2994 | 'Cwd' => '3.25', | |
2995 | 'DBM_Filter' => '0.02', | |
2996 | 'DB_File' => '1.815', | |
2997 | 'Data::Dumper' => '2.121_13', | |
2998 | 'Devel::InnerPackage' => '0.3', | |
2999 | 'Devel::PPPort' => '3.11_01', | |
3000 | 'Digest::MD5' => '2.36_01', | |
3001 | 'Digest::SHA' => '5.44', | |
3002 | 'DynaLoader' => '1.08', | |
3003 | 'Encode' => '2.23', | |
3004 | 'Encode::Alias' => '2.07', | |
3005 | 'Encode::Byte' => '2.03', | |
3006 | 'Encode::Config' => '2.04', | |
3007 | 'Encode::Encoding' => '2.05', | |
3008 | 'Encode::GSM0338' => '2.00', | |
3009 | 'Encode::JP::JIS7' => '2.03', | |
3010 | 'Encode::MIME::Header' => '2.05', | |
3011 | 'Encode::MIME::Name' => '1.01', | |
3012 | 'Encode::Unicode' => '2.05', | |
3013 | 'Errno' => '1.10', | |
3014 | 'Exporter' => '5.60', | |
3015 | 'Exporter::Heavy' => '5.60', | |
3016 | 'ExtUtils::CBuilder' => '0.19', | |
3017 | 'ExtUtils::CBuilder::Platform::Windows'=> '0.13', | |
3018 | 'ExtUtils::Command' => '1.13', | |
3019 | 'ExtUtils::Command::MM' => '0.07', | |
3020 | 'ExtUtils::Constant::Base'=> '0.04', | |
3021 | 'ExtUtils::Install' => '1.41_01', | |
3022 | 'ExtUtils::Liblist' => '1.03', | |
3023 | 'ExtUtils::Liblist::Kid'=> '1.33', | |
3024 | 'ExtUtils::MM' => '0.07', | |
3025 | 'ExtUtils::MM_AIX' => '0.05', | |
3026 | 'ExtUtils::MM_Any' => '0.15', | |
3027 | 'ExtUtils::MM_BeOS' => '1.07', | |
3028 | 'ExtUtils::MM_Cygwin' => '1.1', | |
3029 | 'ExtUtils::MM_DOS' => '0.04', | |
3030 | 'ExtUtils::MM_MacOS' => '1.1', | |
3031 | 'ExtUtils::MM_NW5' => '2.1', | |
3032 | 'ExtUtils::MM_OS2' => '1.07', | |
3033 | 'ExtUtils::MM_QNX' => '0.04', | |
3034 | 'ExtUtils::MM_UWIN' => '0.04', | |
3035 | 'ExtUtils::MM_Unix' => '1.54_01', | |
3036 | 'ExtUtils::MM_VMS' => '5.76', | |
3037 | 'ExtUtils::MM_VOS' => '0.04', | |
3038 | 'ExtUtils::MM_Win32' => '1.15', | |
3039 | 'ExtUtils::MM_Win95' => '0.06', | |
3040 | 'ExtUtils::MY' => '0.03', | |
3041 | 'ExtUtils::MakeMaker' => '6.36', | |
3042 | 'ExtUtils::MakeMaker::Config'=> '0.04', | |
3043 | 'ExtUtils::MakeMaker::bytes'=> '0.03', | |
3044 | 'ExtUtils::MakeMaker::vmsish'=> '0.03', | |
3045 | 'ExtUtils::Manifest' => '1.51_01', | |
3046 | 'ExtUtils::Mkbootstrap' => '1.17', | |
3047 | 'ExtUtils::Mksymlists' => '1.21', | |
3048 | 'ExtUtils::ParseXS' => '2.18', | |
3049 | 'ExtUtils::XSSymSet' => '1.1', | |
3050 | 'ExtUtils::testlib' => '1.17', | |
3051 | 'Fatal' => '1.05', | |
3052 | 'Fcntl' => '1.06', | |
3053 | 'File::Basename' => '2.76', | |
3054 | 'File::Copy' => '2.10', | |
3055 | 'File::Fetch' => '0.10', | |
3056 | 'File::Glob' => '1.06', | |
3057 | 'File::Path' => '2.01', | |
3058 | 'File::Spec' => '3.25', | |
3059 | 'File::Spec::Cygwin' => '1.1_01', | |
3060 | 'File::Spec::VMS' => '1.4_01', | |
3061 | 'File::Temp' => '0.18', | |
3062 | 'Filter::Util::Call' => '1.0602', | |
3063 | 'FindBin' => '1.49', | |
3064 | 'Getopt::Long' => '2.36', | |
3065 | 'Hash::Util::FieldHash' => '1.01', | |
3066 | 'IO::Compress::Adapter::Deflate'=> '2.005', | |
3067 | 'IO::Compress::Adapter::Identity'=> '2.005', | |
3068 | 'IO::Compress::Base' => '2.005', | |
3069 | 'IO::Compress::Base::Common'=> '2.005', | |
3070 | 'IO::Compress::Deflate' => '2.005', | |
3071 | 'IO::Compress::Gzip' => '2.005', | |
3072 | 'IO::Compress::Gzip::Constants'=> '2.005', | |
3073 | 'IO::Compress::RawDeflate'=> '2.005', | |
3074 | 'IO::Compress::Zip' => '2.005', | |
3075 | 'IO::Compress::Zip::Constants'=> '2.005', | |
3076 | 'IO::Compress::Zlib::Constants'=> '2.005', | |
3077 | 'IO::Compress::Zlib::Extra'=> '2.005', | |
3078 | 'IO::Uncompress::Adapter::Identity'=> '2.005', | |
3079 | 'IO::Uncompress::Adapter::Inflate'=> '2.005', | |
3080 | 'IO::Uncompress::AnyInflate'=> '2.005', | |
3081 | 'IO::Uncompress::AnyUncompress'=> '2.005', | |
3082 | 'IO::Uncompress::Base' => '2.005', | |
3083 | 'IO::Uncompress::Gunzip'=> '2.005', | |
3084 | 'IO::Uncompress::Inflate'=> '2.005', | |
3085 | 'IO::Uncompress::RawInflate'=> '2.005', | |
3086 | 'IO::Uncompress::Unzip' => '2.005', | |
3087 | 'IO::Zlib' => '1.05_01', | |
3088 | 'IPC::Cmd' => '0.36_01', | |
3089 | 'List::Util' => '1.19', | |
3090 | 'Locale::Maketext::Simple'=> '0.18', | |
3091 | 'Log::Message' => '0.01', | |
3092 | 'Log::Message::Config' => '0.01', | |
3093 | 'Log::Message::Handlers'=> undef, | |
3094 | 'Log::Message::Item' => undef, | |
3095 | 'Log::Message::Simple' => '0.0201', | |
3096 | 'Math::BigFloat' => '1.58', | |
3097 | 'Math::BigInt' => '1.87', | |
3098 | 'Math::BigInt::Calc' => '0.51', | |
3099 | 'Math::BigInt::FastCalc'=> '0.15_01', | |
3100 | 'Math::BigRat' => '0.19', | |
3101 | 'Math::Complex' => '1.37', | |
3102 | 'Memoize' => '1.01_02', | |
3103 | 'Module::Build' => '0.2808', | |
3104 | 'Module::Build::Config' => undef, | |
3105 | 'Module::Build::Version'=> '0.7203', | |
3106 | 'Module::CoreList' => '2.12', | |
3107 | 'Module::Load::Conditional'=> '0.16', | |
3108 | 'Module::Pluggable' => '3.6', | |
3109 | 'Module::Pluggable::Object'=> '3.6', | |
3110 | 'NDBM_File' => '1.07', | |
3111 | 'Net::Cmd' => '2.28', | |
3112 | 'Net::Config' => '1.11', | |
3113 | 'Net::Domain' => '2.20', | |
3114 | 'Net::FTP' => '2.77', | |
3115 | 'Net::FTP::A' => '1.18', | |
3116 | 'Net::NNTP' => '2.24', | |
3117 | 'Net::POP3' => '2.29', | |
3118 | 'Net::SMTP' => '2.31', | |
3119 | 'ODBM_File' => '1.07', | |
78da2da6 | 3120 | 'OS2::DLL' => '1.03', |
a272bf38 DL |
3121 | 'Object::Accessor' => '0.32', |
3122 | 'Opcode' => '1.09', | |
3123 | 'POSIX' => '1.13', | |
3124 | 'Params::Check' => '0.26', | |
3125 | 'PerlIO::encoding' => '0.10', | |
3126 | 'PerlIO::scalar' => '0.05', | |
3127 | 'PerlIO::via' => '0.04', | |
3128 | 'Pod::Html' => '1.08', | |
3129 | 'Pod::Man' => '2.12', | |
3130 | 'Pod::ParseUtils' => '1.35', | |
3131 | 'Pod::Parser' => '1.35', | |
3132 | 'Pod::Select' => '1.35', | |
3133 | 'Pod::Simple' => '3.05', | |
3134 | 'Pod::Text' => '3.08', | |
3135 | 'Pod::Usage' => '1.35', | |
3136 | 'Scalar::Util' => '1.19', | |
3137 | 'SelfLoader' => '1.11', | |
3138 | 'Shell' => '0.72_01', | |
3139 | 'Socket' => '1.79', | |
3140 | 'Storable' => '2.16', | |
3141 | 'Switch' => '2.13', | |
3142 | 'Sys::Syslog' => '0.18_01', | |
3143 | 'Term::ANSIColor' => '1.12', | |
3144 | 'Term::UI' => '0.14_01', | |
3145 | 'Term::UI::History' => undef, | |
3146 | 'Test::Builder' => '0.70', | |
3147 | 'Test::Builder::Module' => '0.68', | |
3148 | 'Test::Builder::Tester' => '1.07', | |
3149 | 'Test::Harness' => '2.64', | |
3150 | 'Test::Harness::Results'=> '0.01', | |
3151 | 'Test::More' => '0.70', | |
3152 | 'Test::Simple' => '0.70', | |
3153 | 'Text::Balanced' => '2.0.0', | |
3154 | 'Text::Soundex' => '3.02', | |
3155 | 'Text::Tabs' => '2007.1117', | |
3156 | 'Text::Wrap' => '2006.1117', | |
3157 | 'Thread' => '3.02', | |
3158 | 'Tie::File' => '0.97_02', | |
3159 | 'Tie::Hash::NamedCapture'=> '0.06', | |
3160 | 'Tie::Memoize' => '1.1', | |
3161 | 'Tie::RefHash' => '1.37', | |
3162 | 'Time::HiRes' => '1.9707', | |
3163 | 'Time::Local' => '1.17', | |
3164 | 'Time::Piece' => '1.11_02', | |
3165 | 'Time::Seconds' => undef, | |
3166 | 'Unicode' => '5.0.0', | |
3167 | 'Unicode::Normalize' => '1.02', | |
3168 | 'Unicode::UCD' => '0.25', | |
3169 | 'VMS::DCLsym' => '1.03', | |
3170 | 'Win32' => '0.30', | |
3171 | 'Win32API::File' => '0.1001_01', | |
3172 | 'Win32CORE' => '0.02', | |
3173 | 'XS::APItest' => '0.12', | |
3174 | 'XSLoader' => '0.08', | |
3175 | 'attributes' => '0.08', | |
3176 | 'base' => '2.12', | |
3177 | 'bigint' => '0.22', | |
3178 | 'bignum' => '0.22', | |
3179 | 'bigrat' => '0.22', | |
3180 | 'bytes' => '1.03', | |
3181 | 'charnames' => '1.06', | |
3182 | 'constant' => '1.10', | |
3183 | 'diagnostics' => '1.17', | |
3184 | 'encoding' => '2.06', | |
3185 | 'encoding::warnings' => '0.11', | |
3186 | 'feature' => '1.10', | |
3187 | 'fields' => '2.12', | |
3188 | 'less' => '0.02', | |
3189 | 'mro' => '1.00', | |
3190 | 'overload' => '1.06', | |
3191 | 're' => '0.08', | |
3192 | 'sigtrap' => '1.04', | |
3193 | 'sort' => '2.01', | |
3194 | 'strict' => '1.04', | |
3195 | 'threads' => '1.63', | |
3196 | 'threads::shared' => '1.12', | |
3197 | 'utf8' => '1.07', | |
3198 | 'version' => '0.7203', | |
3199 | 'warnings' => '1.06', | |
3200 | }, | |
3201 | removed => { | |
3202 | 'B::Asmdata' => 1, | |
3203 | 'B::Assembler' => 1, | |
3204 | 'B::Bblock' => 1, | |
3205 | 'B::Bytecode' => 1, | |
3206 | 'B::C' => 1, | |
3207 | 'B::CC' => 1, | |
3208 | 'B::Disassembler' => 1, | |
3209 | 'B::Stackobj' => 1, | |
3210 | 'B::Stash' => 1, | |
3211 | 'ByteLoader' => 1, | |
3212 | 'Thread::Signal' => 1, | |
3213 | 'Thread::Specific' => 1, | |
3214 | 'assertions' => 1, | |
3215 | 'assertions::activate' => 1, | |
3216 | 'assertions::compat' => 1, | |
3217 | } | |
a3240fe5 | 3218 | }, |
a272bf38 DL |
3219 | 5.01 => { |
3220 | delta_from => 5.009005, | |
3221 | changed => { | |
3222 | 'Archive::Extract' => '0.24', | |
3223 | 'Archive::Tar' => '1.38', | |
3224 | 'Attribute::Handlers' => '0.79', | |
3225 | 'B' => '1.17', | |
3226 | 'B::Concise' => '0.74', | |
3227 | 'B::Deparse' => '0.83', | |
3228 | 'CPAN' => '1.9205', | |
3229 | 'CPAN::API::HOWTO' => undef, | |
3230 | 'CPAN::Debug' => '5.402212', | |
3231 | 'CPAN::DeferedCode' => '5.50', | |
3232 | 'CPAN::FirstTime' => '5.402229', | |
3233 | 'CPAN::HandleConfig' => '5.402212', | |
3234 | 'CPAN::Nox' => '5.402411', | |
3235 | 'CPAN::Queue' => '5.402212', | |
3236 | 'CPAN::Tarzip' => '5.402213', | |
3237 | 'CPAN::Version' => '5.5', | |
3238 | 'CPANPLUS' => '0.84', | |
3239 | 'CPANPLUS::Dist::Build' => '0.06_02', | |
3240 | 'CPANPLUS::Internals' => '0.84', | |
3241 | 'CPANPLUS::Shell::Default'=> '0.84', | |
3242 | 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, | |
3243 | 'Carp' => '1.08', | |
3244 | 'Carp::Heavy' => '1.08', | |
3245 | 'Compress::Raw::Zlib' => '2.008', | |
3246 | 'Compress::Zlib' => '2.008', | |
3247 | 'Cwd' => '3.2501', | |
3248 | 'DB_File' => '1.816_1', | |
3249 | 'Data::Dumper' => '2.121_14', | |
3250 | 'Devel::PPPort' => '3.13', | |
3251 | 'Digest::SHA' => '5.45', | |
3252 | 'Exporter' => '5.62', | |
3253 | 'Exporter::Heavy' => '5.62', | |
3254 | 'ExtUtils::CBuilder' => '0.21', | |
3255 | 'ExtUtils::CBuilder::Base'=> '0.21', | |
3256 | 'ExtUtils::CBuilder::Platform::Unix'=> '0.21', | |
3257 | 'ExtUtils::CBuilder::Platform::VMS'=> '0.22', | |
3258 | 'ExtUtils::CBuilder::Platform::Windows'=> '0.21', | |
3259 | 'ExtUtils::CBuilder::Platform::aix'=> '0.21', | |
3260 | 'ExtUtils::CBuilder::Platform::cygwin'=> '0.21', | |
3261 | 'ExtUtils::CBuilder::Platform::darwin'=> '0.21', | |
3262 | 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21', | |
3263 | 'ExtUtils::CBuilder::Platform::os2'=> '0.21', | |
3264 | 'ExtUtils::Command::MM' => '6.42', | |
3265 | 'ExtUtils::Constant::ProxySubs'=> '0.05', | |
3266 | 'ExtUtils::Embed' => '1.27', | |
3267 | 'ExtUtils::Install' => '1.44', | |
3268 | 'ExtUtils::Installed' => '1.43', | |
3269 | 'ExtUtils::Liblist' => '6.42', | |
3270 | 'ExtUtils::Liblist::Kid'=> '6.42', | |
3271 | 'ExtUtils::MM' => '6.42', | |
3272 | 'ExtUtils::MM_AIX' => '6.42', | |
3273 | 'ExtUtils::MM_Any' => '6.42', | |
3274 | 'ExtUtils::MM_BeOS' => '6.42', | |
3275 | 'ExtUtils::MM_Cygwin' => '6.42', | |
3276 | 'ExtUtils::MM_DOS' => '6.42', | |
3277 | 'ExtUtils::MM_MacOS' => '6.42', | |
3278 | 'ExtUtils::MM_NW5' => '6.42', | |
3279 | 'ExtUtils::MM_OS2' => '6.42', | |
3280 | 'ExtUtils::MM_QNX' => '6.42', | |
3281 | 'ExtUtils::MM_UWIN' => '6.42', | |
3282 | 'ExtUtils::MM_Unix' => '6.42', | |
3283 | 'ExtUtils::MM_VMS' => '6.42', | |
3284 | 'ExtUtils::MM_VOS' => '6.42', | |
3285 | 'ExtUtils::MM_Win32' => '6.42', | |
3286 | 'ExtUtils::MM_Win95' => '6.42', | |
3287 | 'ExtUtils::MY' => '6.42', | |
3288 | 'ExtUtils::MakeMaker' => '6.42', | |
3289 | 'ExtUtils::MakeMaker::Config'=> '6.42', | |
3290 | 'ExtUtils::MakeMaker::bytes'=> '6.42', | |
3291 | 'ExtUtils::MakeMaker::vmsish'=> '6.42', | |
3292 | 'ExtUtils::Mkbootstrap' => '6.42', | |
3293 | 'ExtUtils::Mksymlists' => '6.42', | |
3294 | 'ExtUtils::Packlist' => '1.43', | |
3295 | 'ExtUtils::ParseXS' => '2.18_02', | |
3296 | 'ExtUtils::testlib' => '6.42', | |
3297 | 'File::Copy' => '2.11', | |
3298 | 'File::Fetch' => '0.14', | |
3299 | 'File::Find' => '1.12', | |
3300 | 'File::Path' => '2.04', | |
3301 | 'File::Spec' => '3.2501', | |
3302 | 'File::Spec::Cygwin' => '3.2501', | |
3303 | 'File::Spec::Epoc' => '3.2501', | |
3304 | 'File::Spec::Functions' => '3.2501', | |
3305 | 'File::Spec::Mac' => '3.2501', | |
3306 | 'File::Spec::OS2' => '3.2501', | |
3307 | 'File::Spec::Unix' => '3.2501', | |
3308 | 'File::Spec::VMS' => '3.2501', | |
3309 | 'File::Spec::Win32' => '3.2501', | |
3310 | 'Filter::Util::Call' => '1.07', | |
3311 | 'Getopt::Long' => '2.37', | |
3312 | 'Hash::Util::FieldHash' => '1.03', | |
3313 | 'IO::Compress::Adapter::Deflate'=> '2.008', | |
3314 | 'IO::Compress::Adapter::Identity'=> '2.008', | |
3315 | 'IO::Compress::Base' => '2.008', | |
3316 | 'IO::Compress::Base::Common'=> '2.008', | |
3317 | 'IO::Compress::Deflate' => '2.008', | |
3318 | 'IO::Compress::Gzip' => '2.008', | |
3319 | 'IO::Compress::Gzip::Constants'=> '2.008', | |
3320 | 'IO::Compress::RawDeflate'=> '2.008', | |
3321 | 'IO::Compress::Zip' => '2.008', | |
3322 | 'IO::Compress::Zip::Constants'=> '2.008', | |
3323 | 'IO::Compress::Zlib::Constants'=> '2.008', | |
3324 | 'IO::Compress::Zlib::Extra'=> '2.008', | |
3325 | 'IO::Uncompress::Adapter::Identity'=> '2.008', | |
3326 | 'IO::Uncompress::Adapter::Inflate'=> '2.008', | |
3327 | 'IO::Uncompress::AnyInflate'=> '2.008', | |
3328 | 'IO::Uncompress::AnyUncompress'=> '2.008', | |
3329 | 'IO::Uncompress::Base' => '2.008', | |
3330 | 'IO::Uncompress::Gunzip'=> '2.008', | |
3331 | 'IO::Uncompress::Inflate'=> '2.008', | |
3332 | 'IO::Uncompress::RawInflate'=> '2.008', | |
3333 | 'IO::Uncompress::Unzip' => '2.008', | |
3334 | 'IO::Zlib' => '1.07', | |
3335 | 'IPC::Cmd' => '0.40_1', | |
3336 | 'IPC::SysV' => '1.05', | |
3337 | 'Locale::Maketext' => '1.12', | |
3338 | 'Log::Message::Simple' => '0.04', | |
3339 | 'Math::BigFloat' => '1.59', | |
3340 | 'Math::BigInt' => '1.88', | |
3341 | 'Math::BigInt::Calc' => '0.52', | |
3342 | 'Math::BigInt::FastCalc'=> '0.16', | |
3343 | 'Math::BigRat' => '0.21', | |
3344 | 'Module::Build' => '0.2808_01', | |
3345 | 'Module::Build::Base' => '0.2808_01', | |
3346 | 'Module::Build::Compat' => '0.2808_01', | |
3347 | 'Module::Build::Config' => '0.2808_01', | |
3348 | 'Module::Build::Dumper' => undef, | |
3349 | 'Module::Build::ModuleInfo'=> '0.2808_01', | |
3350 | 'Module::Build::Notes' => '0.2808_01', | |
3351 | 'Module::Build::PPMMaker'=> '0.2808_01', | |
3352 | 'Module::Build::Platform::Amiga'=> '0.2808_01', | |
3353 | 'Module::Build::Platform::Default'=> '0.2808_01', | |
3354 | 'Module::Build::Platform::EBCDIC'=> '0.2808_01', | |
3355 | 'Module::Build::Platform::MPEiX'=> '0.2808_01', | |
3356 | 'Module::Build::Platform::MacOS'=> '0.2808_01', | |
3357 | 'Module::Build::Platform::RiscOS'=> '0.2808_01', | |
3358 | 'Module::Build::Platform::Unix'=> '0.2808_01', | |
3359 | 'Module::Build::Platform::VMS'=> '0.2808_01', | |
3360 | 'Module::Build::Platform::VOS'=> '0.2808_01', | |
3361 | 'Module::Build::Platform::Windows'=> '0.2808_01', | |
3362 | 'Module::Build::Platform::aix'=> '0.2808_01', | |
3363 | 'Module::Build::Platform::cygwin'=> '0.2808_01', | |
3364 | 'Module::Build::Platform::darwin'=> '0.2808_01', | |
3365 | 'Module::Build::Platform::os2'=> '0.2808_01', | |
3366 | 'Module::Build::PodParser'=> '0.2808_01', | |
3367 | 'Module::CoreList' => '2.13', | |
3368 | 'Module::Load' => '0.12', | |
3369 | 'Module::Load::Conditional'=> '0.22', | |
3370 | 'Net::Cmd' => '2.29', | |
3371 | 'Net::Ping' => '2.33', | |
3372 | 'Opcode' => '1.11', | |
3373 | 'Pod::Checker' => '1.43_01', | |
3374 | 'Pod::Man' => '2.16', | |
3375 | 'Pod::Perldoc' => '3.14_02', | |
3376 | 'Socket' => '1.80', | |
3377 | 'Storable' => '2.18', | |
3378 | 'Sys::Syslog' => '0.22', | |
3379 | 'Sys::Syslog::win32::Win32'=> undef, | |
3380 | 'Term::Cap' => '1.12', | |
3381 | 'Term::ReadLine' => '1.03', | |
3382 | 'Term::UI' => '0.18', | |
3383 | 'Test::Builder' => '0.72', | |
3384 | 'Test::Builder::Module' => '0.72', | |
3385 | 'Test::Builder::Tester' => '1.09', | |
3386 | 'Test::Harness::Straps' => '0.26_01', | |
3387 | 'Test::More' => '0.72', | |
3388 | 'Test::Simple' => '0.72', | |
3389 | 'Text::ParseWords' => '3.26', | |
3390 | 'Text::Soundex' => '3.03', | |
3391 | 'Tie::StdHandle' => undef, | |
3392 | 'Time::HiRes' => '1.9711', | |
3393 | 'Time::Local' => '1.18', | |
3394 | 'Time::Piece' => '1.12', | |
3395 | 'VMS::Filespec' => '1.12', | |
3396 | 'Win32' => '0.34', | |
3397 | 'base' => '2.13', | |
3398 | 'constant' => '1.13', | |
3399 | 'feature' => '1.11', | |
3400 | 'fields' => '2.13', | |
3401 | 'filetest' => '1.02', | |
3402 | 'open' => '1.06', | |
3403 | 'threads' => '1.67', | |
3404 | 'threads::shared' => '1.14', | |
3405 | 'version' => '0.74', | |
3406 | }, | |
3407 | removed => { | |
3408 | } | |
5b5f44f3 | 3409 | }, |
781ea95a | 3410 | 5.010001 => { |
a272bf38 DL |
3411 | delta_from => 5.01, |
3412 | changed => { | |
3413 | 'App::Prove' => '3.17', | |
3414 | 'App::Prove::State' => '3.17', | |
3415 | 'App::Prove::State::Result'=> '3.17', | |
3416 | 'App::Prove::State::Result::Test'=> '3.17', | |
3417 | 'Archive::Extract' => '0.34', | |
3418 | 'Archive::Tar' => '1.52', | |
3419 | 'Attribute::Handlers' => '0.85', | |
3420 | 'AutoLoader' => '5.68', | |
3421 | 'AutoSplit' => '1.06', | |
3422 | 'B' => '1.22', | |
3423 | 'B::Concise' => '0.76', | |
3424 | 'B::Debug' => '1.11', | |
3425 | 'B::Deparse' => '0.89', | |
3426 | 'B::Lint' => '1.11', | |
3427 | 'B::Lint::Debug' => undef, | |
3428 | 'B::Xref' => '1.02', | |
3429 | 'Benchmark' => '1.11', | |
3430 | 'CGI' => '3.43', | |
3431 | 'CGI::Carp' => '1.30_01', | |
3432 | 'CGI::Cookie' => '1.29', | |
3433 | 'CPAN' => '1.9402', | |
3434 | 'CPAN::Author' => '5.5', | |
3435 | 'CPAN::Bundle' => '5.5', | |
3436 | 'CPAN::CacheMgr' => '5.5', | |
3437 | 'CPAN::Complete' => '5.5', | |
3438 | 'CPAN::Debug' => '5.5', | |
3439 | 'CPAN::DeferredCode' => '5.50', | |
3440 | 'CPAN::Distribution' => '1.93', | |
3441 | 'CPAN::Distroprefs' => '6', | |
3442 | 'CPAN::Distrostatus' => '5.5', | |
3443 | 'CPAN::Exception::RecursiveDependency'=> '5.5', | |
3444 | 'CPAN::Exception::blocked_urllist'=> '1.0', | |
3445 | 'CPAN::Exception::yaml_not_installed'=> '5.5', | |
3446 | 'CPAN::FTP' => '5.5001', | |
3447 | 'CPAN::FTP::netrc' => '1.00', | |
3448 | 'CPAN::FirstTime' => '5.53', | |
3449 | 'CPAN::HandleConfig' => '5.5', | |
3450 | 'CPAN::Index' => '1.93', | |
3451 | 'CPAN::InfoObj' => '5.5', | |
3452 | 'CPAN::Kwalify' => '5.50', | |
3453 | 'CPAN::LWP::UserAgent' => '1.00', | |
3454 | 'CPAN::Module' => '5.5', | |
3455 | 'CPAN::Nox' => '5.50', | |
3456 | 'CPAN::Prompt' => '5.5', | |
3457 | 'CPAN::Queue' => '5.5', | |
3458 | 'CPAN::Shell' => '5.5', | |
3459 | 'CPAN::Tarzip' => '5.501', | |
3460 | 'CPAN::URL' => '5.5', | |
3461 | 'CPANPLUS' => '0.88', | |
3462 | 'CPANPLUS::Dist::Autobundle'=> undef, | |
3463 | 'CPANPLUS::Dist::Base' => undef, | |
3464 | 'CPANPLUS::Dist::Build' => '0.36', | |
3465 | 'CPANPLUS::Dist::Build::Constants'=> '0.36', | |
3466 | 'CPANPLUS::Internals' => '0.88', | |
3467 | 'CPANPLUS::Internals::Constants'=> undef, | |
3468 | 'CPANPLUS::Internals::Constants::Report'=> undef, | |
3469 | 'CPANPLUS::Internals::Source::Memory'=> undef, | |
3470 | 'CPANPLUS::Internals::Source::SQLite'=> undef, | |
3471 | 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef, | |
3472 | 'CPANPLUS::Shell::Default'=> '0.88', | |
3473 | 'Carp' => '1.11', | |
3474 | 'Carp::Heavy' => '1.11', | |
3475 | 'Compress::Raw::Bzip2' => '2.020', | |
3476 | 'Compress::Raw::Zlib' => '2.020', | |
3477 | 'Compress::Zlib' => '2.020', | |
3478 | 'Cwd' => '3.30', | |
3479 | 'DB' => '1.02', | |
3480 | 'DBM_Filter::compress' => '0.02', | |
3481 | 'DBM_Filter::encode' => '0.02', | |
3482 | 'DBM_Filter::int32' => '0.02', | |
3483 | 'DBM_Filter::null' => '0.02', | |
3484 | 'DBM_Filter::utf8' => '0.02', | |
3485 | 'DB_File' => '1.820', | |
3486 | 'Data::Dumper' => '2.124', | |
3487 | 'Devel::DProf' => '20080331.00', | |
3488 | 'Devel::PPPort' => '3.19', | |
3489 | 'Devel::Peek' => '1.04', | |
3490 | 'Digest' => '1.16', | |
3491 | 'Digest::MD5' => '2.39', | |
3492 | 'Digest::SHA' => '5.47', | |
3493 | 'Digest::base' => '1.16', | |
3494 | 'Digest::file' => '1.16', | |
3495 | 'DirHandle' => '1.03', | |
3496 | 'Dumpvalue' => '1.13', | |
3497 | 'DynaLoader' => '1.10', | |
3498 | 'Encode' => '2.35', | |
3499 | 'Encode::Alias' => '2.12', | |
3500 | 'Encode::CN::HZ' => '2.05', | |
3501 | 'Encode::Config' => '2.05', | |
3502 | 'Encode::GSM0338' => '2.01', | |
3503 | 'Encode::Guess' => '2.03', | |
3504 | 'Encode::JP::JIS7' => '2.04', | |
3505 | 'Encode::MIME::Header' => '2.11', | |
3506 | 'Encode::Unicode' => '2.06', | |
3507 | 'Errno' => '1.11', | |
3508 | 'Exporter' => '5.63', | |
3509 | 'Exporter::Heavy' => '5.63', | |
3510 | 'ExtUtils::CBuilder' => '0.2602', | |
3511 | 'ExtUtils::CBuilder::Base'=> '0.2602', | |
3512 | 'ExtUtils::CBuilder::Platform::Unix'=> '0.2602', | |
3513 | 'ExtUtils::CBuilder::Platform::VMS'=> '0.2602', | |
3514 | 'ExtUtils::CBuilder::Platform::Windows'=> '0.2602', | |
3515 | 'ExtUtils::CBuilder::Platform::aix'=> '0.2602', | |
3516 | 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602', | |
3517 | 'ExtUtils::CBuilder::Platform::darwin'=> '0.2602', | |
3518 | 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602', | |
3519 | 'ExtUtils::CBuilder::Platform::os2'=> '0.2602', | |
3520 | 'ExtUtils::Command' => '1.16', | |
3521 | 'ExtUtils::Command::MM' => '6.55_02', | |
3522 | 'ExtUtils::Constant' => '0.22', | |
3523 | 'ExtUtils::Constant::ProxySubs'=> '0.06', | |
3524 | 'ExtUtils::Constant::Utils'=> '0.02', | |
3525 | 'ExtUtils::Constant::XS'=> '0.03', | |
3526 | 'ExtUtils::Embed' => '1.28', | |
3527 | 'ExtUtils::Install' => '1.54', | |
3528 | 'ExtUtils::Installed' => '1.999_001', | |
3529 | 'ExtUtils::Liblist' => '6.55_02', | |
3530 | 'ExtUtils::Liblist::Kid'=> '6.5502', | |
3531 | 'ExtUtils::MM' => '6.55_02', | |
3532 | 'ExtUtils::MM_AIX' => '6.55_02', | |
3533 | 'ExtUtils::MM_Any' => '6.55_02', | |
3534 | 'ExtUtils::MM_BeOS' => '6.55_02', | |
3535 | 'ExtUtils::MM_Cygwin' => '6.55_02', | |
3536 | 'ExtUtils::MM_DOS' => '6.5502', | |
3537 | 'ExtUtils::MM_Darwin' => '6.55_02', | |
3538 | 'ExtUtils::MM_MacOS' => '6.5502', | |
3539 | 'ExtUtils::MM_NW5' => '6.55_02', | |
3540 | 'ExtUtils::MM_OS2' => '6.55_02', | |
3541 | 'ExtUtils::MM_QNX' => '6.55_02', | |
3542 | 'ExtUtils::MM_UWIN' => '6.5502', | |
3543 | 'ExtUtils::MM_Unix' => '6.55_02', | |
3544 | 'ExtUtils::MM_VMS' => '6.55_02', | |
3545 | 'ExtUtils::MM_VOS' => '6.55_02', | |
3546 | 'ExtUtils::MM_Win32' => '6.55_02', | |
3547 | 'ExtUtils::MM_Win95' => '6.55_02', | |
3548 | 'ExtUtils::MY' => '6.5502', | |
3549 | 'ExtUtils::MakeMaker' => '6.55_02', | |
3550 | 'ExtUtils::MakeMaker::Config'=> '6.55_02', | |
3551 | 'ExtUtils::Manifest' => '1.56', | |
3552 | 'ExtUtils::Mkbootstrap' => '6.55_02', | |
3553 | 'ExtUtils::Mksymlists' => '6.55_02', | |
3554 | 'ExtUtils::ParseXS' => '2.2002', | |
3555 | 'ExtUtils::testlib' => '6.5502', | |
3556 | 'Fatal' => '2.06_01', | |
3557 | 'File::Basename' => '2.77', | |
3558 | 'File::CheckTree' => '4.4', | |
3559 | 'File::Compare' => '1.1006', | |
3560 | 'File::Copy' => '2.14', | |
3561 | 'File::DosGlob' => '1.01', | |
3562 | 'File::Fetch' => '0.20', | |
3563 | 'File::Find' => '1.14', | |
3564 | 'File::GlobMapper' => '1.000', | |
3565 | 'File::Path' => '2.07_03', | |
3566 | 'File::Spec' => '3.30', | |
3567 | 'File::Spec::Cygwin' => '3.30', | |
3568 | 'File::Spec::Epoc' => '3.30', | |
3569 | 'File::Spec::Functions' => '3.30', | |
3570 | 'File::Spec::Mac' => '3.30', | |
3571 | 'File::Spec::OS2' => '3.30', | |
3572 | 'File::Spec::Unix' => '3.30', | |
3573 | 'File::Spec::VMS' => '3.30', | |
3574 | 'File::Spec::Win32' => '3.30', | |
3575 | 'File::Temp' => '0.22', | |
3576 | 'File::stat' => '1.01', | |
3577 | 'FileCache' => '1.08', | |
3578 | 'FileHandle' => '2.02', | |
3579 | 'Filter::Simple' => '0.84', | |
3580 | 'Filter::Util::Call' => '1.08', | |
3581 | 'FindBin' => '1.50', | |
3582 | 'GDBM_File' => '1.09', | |
3583 | 'Getopt::Long' => '2.38', | |
3584 | 'Getopt::Std' => '1.06', | |
3585 | 'Hash::Util::FieldHash' => '1.04', | |
3586 | 'I18N::Collate' => '1.01', | |
3587 | 'IO' => '1.25', | |
3588 | 'IO::Compress::Adapter::Bzip2'=> '2.020', | |
3589 | 'IO::Compress::Adapter::Deflate'=> '2.020', | |
3590 | 'IO::Compress::Adapter::Identity'=> '2.020', | |
3591 | 'IO::Compress::Base' => '2.020', | |
3592 | 'IO::Compress::Base::Common'=> '2.020', | |
3593 | 'IO::Compress::Bzip2' => '2.020', | |
3594 | 'IO::Compress::Deflate' => '2.020', | |
3595 | 'IO::Compress::Gzip' => '2.020', | |
3596 | 'IO::Compress::Gzip::Constants'=> '2.020', | |
3597 | 'IO::Compress::RawDeflate'=> '2.020', | |
3598 | 'IO::Compress::Zip' => '2.020', | |
3599 | 'IO::Compress::Zip::Constants'=> '2.020', | |
3600 | 'IO::Compress::Zlib::Constants'=> '2.020', | |
3601 | 'IO::Compress::Zlib::Extra'=> '2.020', | |
3602 | 'IO::Dir' => '1.07', | |
3603 | 'IO::Handle' => '1.28', | |
3604 | 'IO::Socket' => '1.31', | |
3605 | 'IO::Uncompress::Adapter::Bunzip2'=> '2.020', | |
3606 | 'IO::Uncompress::Adapter::Identity'=> '2.020', | |
3607 | 'IO::Uncompress::Adapter::Inflate'=> '2.020', | |
3608 | 'IO::Uncompress::AnyInflate'=> '2.020', | |
3609 | 'IO::Uncompress::AnyUncompress'=> '2.020', | |
3610 | 'IO::Uncompress::Base' => '2.020', | |
3611 | 'IO::Uncompress::Bunzip2'=> '2.020', | |
3612 | 'IO::Uncompress::Gunzip'=> '2.020', | |
3613 | 'IO::Uncompress::Inflate'=> '2.020', | |
3614 | 'IO::Uncompress::RawInflate'=> '2.020', | |
3615 | 'IO::Uncompress::Unzip' => '2.020', | |
3616 | 'IO::Zlib' => '1.09', | |
3617 | 'IPC::Cmd' => '0.46', | |
3618 | 'IPC::Msg' => '2.01', | |
3619 | 'IPC::Open2' => '1.03', | |
3620 | 'IPC::Open3' => '1.04', | |
3621 | 'IPC::Semaphore' => '2.01', | |
3622 | 'IPC::SharedMem' => '2.01', | |
3623 | 'IPC::SysV' => '2.01', | |
3624 | 'List::Util' => '1.21', | |
3625 | 'List::Util::PP' => '1.21', | |
3626 | 'List::Util::XS' => '1.21', | |
3627 | 'Locale::Maketext' => '1.13', | |
3628 | 'Locale::Maketext::Guts'=> '1.13', | |
3629 | 'Locale::Maketext::GutsLoader'=> '1.13', | |
3630 | 'Log::Message' => '0.02', | |
3631 | 'MIME::Base64' => '3.08', | |
3632 | 'MIME::QuotedPrint' => '3.08', | |
3633 | 'Math::BigFloat' => '1.60', | |
3634 | 'Math::BigInt' => '1.89', | |
3635 | 'Math::BigInt::FastCalc'=> '0.19', | |
3636 | 'Math::BigRat' => '0.22', | |
3637 | 'Math::Complex' => '1.56', | |
3638 | 'Math::Trig' => '1.2', | |
3639 | 'Memoize' => '1.01_03', | |
3640 | 'Module::Build' => '0.340201', | |
3641 | 'Module::Build::Base' => '0.340201', | |
3642 | 'Module::Build::Compat' => '0.340201', | |
3643 | 'Module::Build::Config' => '0.340201', | |
3644 | 'Module::Build::Cookbook'=> '0.340201', | |
3645 | 'Module::Build::Dumper' => '0.340201', | |
3646 | 'Module::Build::ModuleInfo'=> '0.340201', | |
3647 | 'Module::Build::Notes' => '0.340201', | |
3648 | 'Module::Build::PPMMaker'=> '0.340201', | |
3649 | 'Module::Build::Platform::Amiga'=> '0.340201', | |
3650 | 'Module::Build::Platform::Default'=> '0.340201', | |
3651 | 'Module::Build::Platform::EBCDIC'=> '0.340201', | |
3652 | 'Module::Build::Platform::MPEiX'=> '0.340201', | |
3653 | 'Module::Build::Platform::MacOS'=> '0.340201', | |
3654 | 'Module::Build::Platform::RiscOS'=> '0.340201', | |
3655 | 'Module::Build::Platform::Unix'=> '0.340201', | |
3656 | 'Module::Build::Platform::VMS'=> '0.340201', | |
3657 | 'Module::Build::Platform::VOS'=> '0.340201', | |