1package Module::CoreList; 2use strict; 3 4our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta ); 5 6use version; 7our $VERSION = '5.20250118_40'; 8 9sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# } 10sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } } 11 12sub _undelta { 13 my ($delta) = @_; 14 my (%expanded, $delta_from, $base, $changed, $removed); 15 for my $v (sort keys %$delta) { 16 ($delta_from, $changed, $removed) = @{$delta->{$v}}{qw( delta_from changed removed )}; 17 $base = $delta_from ? $expanded{$delta_from} : {}; 18 my %full = ( %$base, %{$changed || {}} ); 19 delete @full{ keys %$removed }; 20 $expanded{$v} = \%full; 21 } 22 return %expanded; 23} 24 25sub _released_order { # Sort helper, to make '?' sort after everything else 26 (substr($released{$a}, 0, 1) eq "?") 27 ? ((substr($released{$b}, 0, 1) eq "?") 28 ? 0 29 : 1) 30 : ((substr($released{$b}, 0, 1) eq "?") 31 ? -1 32 : $released{$a} cmp $released{$b} ) 33} 34 35my $dumpinc = 0; 36sub import { 37 my $self = shift; 38 my $what = shift || ''; 39 if ($what eq 'dumpinc') { 40 $dumpinc = 1; 41 } 42} 43 44END { 45 print "---INC---\n", join "\n" => keys %INC 46 if $dumpinc; 47} 48 49 50sub first_release_raw { 51 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0]; 52 my $module = shift; 53 my $version = shift; 54 55 my @perls = $version 56 ? grep { defined $version{$_}{ $module } && 57 $version{$_}{ $module } ge $version } keys %version 58 : grep { exists $version{$_}{ $module } } keys %version; 59 60 return @perls; 61} 62 63sub first_release_by_date { 64 my @perls = &first_release_raw; 65 return unless @perls; 66 return (sort _released_order @perls)[0]; 67} 68 69sub first_release { 70 my @perls = &first_release_raw; 71 return unless @perls; 72 return (sort { $a cmp $b } @perls)[0]; 73} 74 75sub find_modules { 76 shift if _looks_like_invocant $_[0]; 77 my $regex = shift; 78 my @perls = @_ ? @_ : keys %version; 79 80 my %mods; 81 foreach (@perls) { 82 while (my ($k, $v) = each %{$version{$_}}) { 83 $mods{$k}++ if $k =~ $regex; 84 } 85 } 86 return sort keys %mods 87} 88 89sub find_version { 90 shift if _looks_like_invocant $_[0]; 91 my $v = shift; 92 return $version{$v} if defined $v and defined $version{$v}; 93 return; 94} 95 96sub is_deprecated { 97 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0]; 98 my $module = shift; 99 my $perl_version = shift || $]; 100 return unless $module && exists $deprecated{$perl_version}{$module}; 101 return $deprecated{$perl_version}{$module}; 102} 103 104sub deprecated_in { 105 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0]; 106 my $module = shift or return; 107 my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated; 108 return unless @perls; 109 require List::Util; 110 return List::Util::minstr(@perls); 111} 112 113sub removed_from { 114 my @perls = &removed_raw; 115 return shift @perls; 116} 117 118sub removed_from_by_date { 119 my @perls = sort _released_order &removed_raw; 120 return shift @perls; 121} 122 123sub removed_raw { 124 shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0]; 125 my $mod = shift; 126 return unless my @perls = sort { $a cmp $b } first_release_raw($mod); 127 my $last = pop @perls; 128 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version; 129 return @removed; 130} 131 132sub changes_between { 133 shift if _looks_like_invocant $_[0]; 134 my $left_ver = shift; 135 my $right_ver = shift; 136 137 my $left = $version{ $left_ver } || {}; 138 my $right = $version{ $right_ver } || {}; 139 140 my %uniq = (%$left, %$right); 141 142 my %changes; 143 for my $lib (keys %uniq) { 144 my $lhs = exists $left->{ $lib } 145 ? (defined $left->{ $lib } ? $left->{ $lib } : '(undef)') 146 : '(absent)'; 147 my $rhs = exists $right->{ $lib } 148 ? (defined $right->{ $lib } ? $right->{ $lib } : '(undef)') 149 : '(absent)'; 150 151 next if $lhs eq $rhs; 152 153 my $change = { 154 (exists $left->{$lib} ? (left => $left->{$lib}) : ()), 155 (exists $right->{$lib} ? (right => $right->{$lib}) : ()), 156 }; 157 158 $changes{$lib} = $change; 159 } 160 161 return %changes; 162} 163 164# When things escaped. 165# NB. If you put version numbers with trailing zeroes here, you 166# should also add an alias for the numerical ($]) version; see 167# just before the __END__ of this module. 168%released = ( 169 5.000 => '1994-10-17', 170 5.001 => '1995-03-14', 171 5.002 => '1996-02-29', 172 5.00307 => '1996-10-10', 173 5.004 => '1997-05-15', 174 5.005 => '1998-07-22', 175 5.00503 => '1999-03-28', 176 5.00405 => '1999-04-29', 177 5.006 => '2000-03-22', 178 5.006001 => '2001-04-08', 179 5.007003 => '2002-03-05', 180 5.008 => '2002-07-19', 181 5.008001 => '2003-09-25', 182 5.009 => '2003-10-27', 183 5.008002 => '2003-11-05', 184 5.006002 => '2003-11-15', 185 5.008003 => '2004-01-14', 186 5.00504 => '2004-02-23', 187 5.009001 => '2004-03-16', 188 5.008004 => '2004-04-21', 189 5.008005 => '2004-07-19', 190 5.008006 => '2004-11-27', 191 5.009002 => '2005-04-01', 192 5.008007 => '2005-05-30', 193 5.009003 => '2006-01-28', 194 5.008008 => '2006-01-31', 195 5.009004 => '2006-08-15', 196 5.009005 => '2007-07-07', 197 5.010000 => '2007-12-18', 198 5.008009 => '2008-12-14', 199 5.010001 => '2009-08-22', 200 5.011000 => '2009-10-02', 201 5.011001 => '2009-10-20', 202 5.011002 => '2009-11-20', 203 5.011003 => '2009-12-20', 204 5.011004 => '2010-01-20', 205 5.011005 => '2010-02-20', 206 5.012000 => '2010-04-12', 207 5.013000 => '2010-04-20', 208 5.012001 => '2010-05-16', 209 5.013001 => '2010-05-20', 210 5.013002 => '2010-06-22', 211 5.013003 => '2010-07-20', 212 5.013004 => '2010-08-20', 213 5.012002 => '2010-09-06', 214 5.013005 => '2010-09-19', 215 5.013006 => '2010-10-20', 216 5.013007 => '2010-11-20', 217 5.013008 => '2010-12-20', 218 5.012003 => '2011-01-21', 219 5.013009 => '2011-01-20', 220 5.013010 => '2011-02-20', 221 5.013011 => '2011-03-20', 222 5.014000 => '2011-05-14', 223 5.012004 => '2011-06-20', 224 5.012005 => '2012-11-10', 225 5.014001 => '2011-06-16', 226 5.015000 => '2011-06-20', 227 5.015001 => '2011-07-20', 228 5.015002 => '2011-08-20', 229 5.014002 => '2011-09-26', 230 5.015003 => '2011-09-20', 231 5.015004 => '2011-10-20', 232 5.015005 => '2011-11-20', 233 5.015006 => '2011-12-20', 234 5.015007 => '2012-01-20', 235 5.015008 => '2012-02-20', 236 5.015009 => '2012-03-20', 237 5.016000 => '2012-05-20', 238 5.016001 => '2012-08-08', 239 5.016002 => '2012-11-01', 240 5.017000 => '2012-05-26', 241 5.017001 => '2012-06-20', 242 5.017002 => '2012-07-20', 243 5.017003 => '2012-08-20', 244 5.017004 => '2012-09-20', 245 5.014003 => '2012-10-12', 246 5.017005 => '2012-10-20', 247 5.017006 => '2012-11-20', 248 5.017007 => '2012-12-18', 249 5.017008 => '2013-01-20', 250 5.017009 => '2013-02-20', 251 5.014004 => '2013-03-10', 252 5.016003 => '2013-03-11', 253 5.017010 => '2013-03-21', 254 5.017011 => '2013-04-20', 255 5.018000 => '2013-05-18', 256 5.019000 => '2013-05-20', 257 5.019001 => '2013-06-21', 258 5.019002 => '2013-07-22', 259 5.018001 => '2013-08-12', 260 5.019003 => '2013-08-20', 261 5.019004 => '2013-09-20', 262 5.019005 => '2013-10-20', 263 5.019006 => '2013-11-20', 264 5.019007 => '2013-12-20', 265 5.018002 => '2014-01-06', 266 5.018003 => '2014-10-01', 267 5.018004 => '2014-10-01', 268 5.019008 => '2014-01-20', 269 5.019009 => '2014-02-20', 270 5.01901 => '2014-03-20', 271 5.019011 => '2014-04-20', 272 5.020000 => '2014-05-27', 273 5.021000 => '2014-05-27', 274 5.021001 => '2014-06-20', 275 5.021002 => '2014-07-20', 276 5.021003 => '2014-08-20', 277 5.020001 => '2014-09-14', 278 5.021004 => '2014-09-20', 279 5.021005 => '2014-10-20', 280 5.021006 => '2014-11-20', 281 5.021007 => '2014-12-20', 282 5.021008 => '2015-01-20', 283 5.020002 => '2015-02-14', 284 5.021009 => '2015-02-21', 285 5.021010 => '2015-03-20', 286 5.021011 => '2015-04-20', 287 5.022000 => '2015-06-01', 288 5.023000 => '2015-06-20', 289 5.023001 => '2015-07-20', 290 5.023002 => '2015-08-20', 291 5.020003 => '2015-09-12', 292 5.023003 => '2015-09-20', 293 5.023004 => '2015-10-20', 294 5.023005 => '2015-11-20', 295 5.022001 => '2015-12-13', 296 5.023006 => '2015-12-21', 297 5.023007 => '2016-01-20', 298 5.023008 => '2016-02-20', 299 5.023009 => '2016-03-20', 300 5.022002 => '2016-04-29', 301 5.024000 => '2016-05-09', 302 5.025000 => '2016-05-09', 303 5.025001 => '2016-05-20', 304 5.025002 => '2016-06-20', 305 5.025003 => '2016-07-20', 306 5.025004 => '2016-08-20', 307 5.025005 => '2016-09-20', 308 5.025006 => '2016-10-20', 309 5.025007 => '2016-11-20', 310 5.025008 => '2016-12-20', 311 5.022003 => '2017-01-14', 312 5.024001 => '2017-01-14', 313 5.025009 => '2017-01-20', 314 5.025010 => '2017-02-20', 315 5.025011 => '2017-03-20', 316 5.025012 => '2017-04-20', 317 5.026000 => '2017-05-30', 318 5.027000 => '2017-05-31', 319 5.027001 => '2017-06-20', 320 5.022004 => '2017-07-15', 321 5.024002 => '2017-07-15', 322 5.027002 => '2017-07-20', 323 5.027003 => '2017-08-21', 324 5.027004 => '2017-09-20', 325 5.024003 => '2017-09-22', 326 5.026001 => '2017-09-22', 327 5.027005 => '2017-10-20', 328 5.027006 => '2017-11-20', 329 5.027007 => '2017-12-20', 330 5.027008 => '2018-01-20', 331 5.027009 => '2018-02-20', 332 5.027010 => '2018-03-20', 333 5.024004 => '2018-04-14', 334 5.026002 => '2018-04-14', 335 5.027011 => '2018-04-20', 336 5.028000 => '2018-06-22', 337 5.029000 => '2018-06-26', 338 5.029001 => '2018-07-20', 339 5.029002 => '2018-08-20', 340 5.029003 => '2018-09-20', 341 5.029004 => '2018-10-20', 342 5.029005 => '2018-11-20', 343 5.026003 => '2018-11-29', 344 5.028001 => '2018-11-29', 345 5.029006 => '2018-12-18', 346 5.029007 => '2019-01-20', 347 5.029008 => '2019-02-20', 348 5.029009 => '2019-03-20', 349 5.028002 => '2019-04-19', 350 5.029010 => '2019-04-20', 351 5.030000 => '2019-05-22', 352 5.031000 => '2019-05-24', 353 5.031001 => '2019-06-20', 354 5.031002 => '2019-07-20', 355 5.031003 => '2019-08-20', 356 5.031004 => '2019-09-20', 357 5.031005 => '2019-10-20', 358 5.030001 => '2019-11-10', 359 5.031006 => '2019-11-20', 360 5.031007 => '2019-12-20', 361 5.031008 => '2020-01-20', 362 5.031009 => '2020-02-20', 363 5.030002 => '2020-03-14', 364 5.031010 => '2020-03-20', 365 5.031011 => '2020-04-28', 366 5.028003 => '2020-06-01', 367 5.030003 => '2020-06-01', 368 5.032000 => '2020-06-20', 369 5.033000 => '2020-07-17', 370 5.033001 => '2020-08-20', 371 5.033002 => '2020-09-20', 372 5.033003 => '2020-10-20', 373 5.033004 => '2020-11-20', 374 5.033005 => '2020-12-20', 375 5.033006 => '2021-01-20', 376 5.032001 => '2021-01-23', 377 5.033007 => '2021-02-20', 378 5.033008 => '2021-03-20', 379 5.033009 => '2021-04-20', 380 5.034000 => '2021-05-20', 381 5.035000 => '2021-05-21', 382 5.035001 => '2021-06-20', 383 5.035002 => '2021-07-23', 384 5.035003 => '2021-08-20', 385 5.035004 => '2021-09-20', 386 5.035005 => '2021-10-21', 387 5.035006 => '2021-11-20', 388 5.035007 => '2021-12-20', 389 5.035008 => '2022-01-20', 390 5.035009 => '2022-02-20', 391 5.034001 => '2022-03-13', 392 5.035010 => '2022-03-20', 393 5.035011 => '2022-04-20', 394 5.036000 => '2022-05-27', 395 5.037000 => '2022-05-27', 396 5.037001 => '2022-06-20', 397 5.037002 => '2022-07-20', 398 5.037003 => '2022-08-20', 399 5.037004 => '2022-09-20', 400 5.037005 => '2022-10-20', 401 5.037006 => '2022-11-20', 402 5.037007 => '2022-12-20', 403 5.037008 => '2023-01-20', 404 5.037009 => '2023-02-20', 405 5.037010 => '2023-03-20', 406 5.037011 => '2023-04-20', 407 5.036001 => '2023-04-23', 408 5.038000 => '2023-07-02', 409 5.039001 => '2023-07-20', 410 5.039002 => '2023-08-20', 411 5.039003 => '2023-09-20', 412 5.039004 => '2023-10-25', 413 5.039005 => '2023-11-20', 414 5.034002 => '2023-11-25', 415 5.036002 => '2023-11-25', 416 5.038001 => '2023-11-25', 417 5.034003 => '2023-11-29', 418 5.036003 => '2023-11-29', 419 5.038002 => '2023-11-29', 420 5.039006 => '2023-12-30', 421 5.039007 => '2024-01-20', 422 5.039008 => '2024-02-23', 423 5.039009 => '2024-03-20', 424 5.039010 => '2024-04-27', 425 5.040000 => '2024-06-09', 426 5.041000 => '2024-06-10', 427 5.041001 => '2024-07-02', 428 5.041002 => '2024-07-20', 429 5.041003 => '2024-08-29', 430 5.041004 => '2024-09-20', 431 5.041005 => '2024-10-20', 432 5.041006 => '2024-11-20', 433 5.041007 => '2024-12-20', 434 5.040001 => '2025-01-18', 435 ); 436 437for my $version ( sort { $a <=> $b } keys %released ) { 438 my $family = int ($version * 1000) / 1000; 439 push @{ $families{ $family }} , $version; 440} 441 442%delta = ( 443 5 => { 444 changed => { 445 'AnyDBM_File' => undef, 446 'AutoLoader' => undef, 447 'AutoSplit' => undef, 448 'Benchmark' => undef, 449 'Carp' => undef, 450 'Cwd' => undef, 451 'DB_File' => undef, 452 'DynaLoader' => undef, 453 'English' => undef, 454 'Env' => undef, 455 'Exporter' => undef, 456 'ExtUtils::MakeMaker' => undef, 457 'Fcntl' => undef, 458 'File::Basename' => undef, 459 'File::CheckTree' => undef, 460 'File::Find' => undef, 461 'FileHandle' => undef, 462 'GDBM_File' => undef, 463 'Getopt::Long' => undef, 464 'Getopt::Std' => undef, 465 'I18N::Collate' => undef, 466 'IPC::Open2' => undef, 467 'IPC::Open3' => undef, 468 'Math::BigFloat' => undef, 469 'Math::BigInt' => undef, 470 'Math::Complex' => undef, 471 'NDBM_File' => undef, 472 'Net::Ping' => undef, 473 'ODBM_File' => undef, 474 'POSIX' => undef, 475 'SDBM_File' => undef, 476 'Search::Dict' => undef, 477 'Shell' => undef, 478 'Socket' => undef, 479 'Sys::Hostname' => undef, 480 'Sys::Syslog' => undef, 481 'Term::Cap' => undef, 482 'Term::Complete' => undef, 483 'Test::Harness' => undef, 484 'Text::Abbrev' => undef, 485 'Text::ParseWords' => undef, 486 'Text::Soundex' => undef, 487 'Text::Tabs' => undef, 488 'TieHash' => undef, 489 'Time::Local' => undef, 490 'integer' => undef, 491 'less' => undef, 492 'sigtrap' => undef, 493 'strict' => undef, 494 'subs' => undef, 495 }, 496 removed => { 497 } 498 }, 499 5.001 => { 500 delta_from => 5, 501 changed => { 502 'ExtUtils::Liblist' => undef, 503 'ExtUtils::Manifest' => undef, 504 'ExtUtils::Mkbootstrap' => undef, 505 'File::Path' => undef, 506 'SubstrHash' => undef, 507 'lib' => undef, 508 }, 509 removed => { 510 } 511 }, 512 5.002 => { 513 delta_from => 5.001, 514 changed => { 515 'DB_File' => '1.01', 516 'Devel::SelfStubber' => '1.01', 517 'DirHandle' => undef, 518 'DynaLoader' => '1.00', 519 'ExtUtils::Install' => undef, 520 'ExtUtils::MM_OS2' => undef, 521 'ExtUtils::MM_Unix' => undef, 522 'ExtUtils::MM_VMS' => undef, 523 'ExtUtils::MakeMaker' => '5.21', 524 'ExtUtils::Manifest' => '1.22', 525 'ExtUtils::Mksymlists' => '1.00', 526 'Fcntl' => '1.00', 527 'File::Copy' => '1.5', 528 'File::Path' => '1.01', 529 'FileCache' => undef, 530 'FileHandle' => '1.00', 531 'GDBM_File' => '1.00', 532 'Getopt::Long' => '2.01', 533 'NDBM_File' => '1.00', 534 'Net::Ping' => '1', 535 'ODBM_File' => '1.00', 536 'POSIX' => '1.00', 537 'Pod::Functions' => undef, 538 'Pod::Text' => undef, 539 'SDBM_File' => '1.00', 540 'Safe' => '1.00', 541 'SelectSaver' => undef, 542 'SelfLoader' => '1.06', 543 'Socket' => '1.5', 544 'Symbol' => undef, 545 'Term::ReadLine' => undef, 546 'Test::Harness' => '1.07', 547 'Text::Wrap' => undef, 548 'Tie::Hash' => undef, 549 'Tie::Scalar' => undef, 550 'Tie::SubstrHash' => undef, 551 'diagnostics' => undef, 552 'overload' => undef, 553 'vars' => undef, 554 }, 555 removed => { 556 'SubstrHash' => 1, 557 'TieHash' => 1, 558 } 559 }, 560 5.00307 => { 561 delta_from => 5.002, 562 changed => { 563 'Config' => undef, 564 'DB_File' => '1.03', 565 'ExtUtils::Embed' => '1.18', 566 'ExtUtils::Install' => '1.15', 567 'ExtUtils::Liblist' => '1.20', 568 'ExtUtils::MM_Unix' => '1.107', 569 'ExtUtils::MakeMaker' => '5.38', 570 'ExtUtils::Manifest' => '1.27', 571 'ExtUtils::Mkbootstrap' => '1.13', 572 'ExtUtils::Mksymlists' => '1.12', 573 'ExtUtils::testlib' => '1.11', 574 'Fatal' => undef, 575 'File::Basename' => '2.4', 576 'FindBin' => '1.04', 577 'Getopt::Long' => '2.04', 578 'IO' => undef, 579 'IO::File' => '1.05', 580 'IO::Handle' => '1.12', 581 'IO::Pipe' => '1.07', 582 'IO::Seekable' => '1.05', 583 'IO::Select' => '1.09', 584 'IO::Socket' => '1.13', 585 'Net::Ping' => '1.01', 586 'OS2::ExtAttr' => '0.01', 587 'OS2::PrfDB' => '0.02', 588 'OS2::Process' => undef, 589 'OS2::REXX' => undef, 590 'Opcode' => '1.01', 591 'Safe' => '2.06', 592 'Test::Harness' => '1.13', 593 'Text::Tabs' => '96.051501', 594 'Text::Wrap' => '96.041801', 595 'UNIVERSAL' => undef, 596 'VMS::Filespec' => undef, 597 'VMS::Stdio' => '2.0', 598 'ops' => undef, 599 'sigtrap' => '1.01', 600 }, 601 removed => { 602 } 603 }, 604 5.004 => { 605 delta_from => 5.00307, 606 changed => { 607 'Bundle::CPAN' => '0.02', 608 'CGI' => '2.36', 609 'CGI::Apache' => '1.01', 610 'CGI::Carp' => '1.06', 611 'CGI::Fast' => '1.00a', 612 'CGI::Push' => '1.00', 613 'CGI::Switch' => '0.05', 614 'CPAN' => '1.2401', 615 'CPAN::FirstTime' => '1.18', 616 'CPAN::Nox' => undef, 617 'Class::Struct' => undef, 618 'Cwd' => '2.00', 619 'DB_File' => '1.14', 620 'DynaLoader' => '1.02', 621 'ExtUtils::Command' => '1.00', 622 'ExtUtils::Embed' => '1.2501', 623 'ExtUtils::Install' => '1.16', 624 'ExtUtils::Liblist' => '1.2201', 625 'ExtUtils::MM_Unix' => '1.114', 626 'ExtUtils::MM_Win32' => undef, 627 'ExtUtils::MakeMaker' => '5.4002', 628 'ExtUtils::Manifest' => '1.33', 629 'ExtUtils::Mksymlists' => '1.13', 630 'ExtUtils::XSSymSet' => '1.0', 631 'Fcntl' => '1.03', 632 'File::Basename' => '2.5', 633 'File::Compare' => '1.1001', 634 'File::Copy' => '2.02', 635 'File::Path' => '1.04', 636 'File::stat' => undef, 637 'FileHandle' => '2.00', 638 'Getopt::Long' => '2.10', 639 'IO::File' => '1.0602', 640 'IO::Handle' => '1.1504', 641 'IO::Pipe' => '1.0901', 642 'IO::Seekable' => '1.06', 643 'IO::Select' => '1.10', 644 'IO::Socket' => '1.1602', 645 'IPC::Open2' => '1.01', 646 'IPC::Open3' => '1.0101', 647 'Math::Complex' => '1.01', 648 'Math::Trig' => '1', 649 'Net::Ping' => '2.02', 650 'Net::hostent' => undef, 651 'Net::netent' => undef, 652 'Net::protoent' => undef, 653 'Net::servent' => undef, 654 'Opcode' => '1.04', 655 'POSIX' => '1.02', 656 'Pod::Html' => undef, 657 'Pod::Text' => '1.0203', 658 'SelfLoader' => '1.07', 659 'Socket' => '1.6', 660 'Symbol' => '1.02', 661 'Test::Harness' => '1.1502', 662 'Text::Tabs' => '96.121201', 663 'Text::Wrap' => '97.011701', 664 'Tie::RefHash' => undef, 665 'Time::gmtime' => '1.01', 666 'Time::localtime' => '1.01', 667 'Time::tm' => undef, 668 'User::grent' => undef, 669 'User::pwent' => undef, 670 'VMS::DCLsym' => '1.01', 671 'VMS::Stdio' => '2.02', 672 'autouse' => '1.01', 673 'blib' => undef, 674 'constant' => '1.00', 675 'locale' => undef, 676 'sigtrap' => '1.02', 677 'vmsish' => undef, 678 }, 679 removed => { 680 'Fatal' => 1, 681 } 682 }, 683 5.00405 => { 684 delta_from => 5.004, 685 changed => { 686 'AutoLoader' => '5.56', 687 'AutoSplit' => '1.0303', 688 'Bundle::CPAN' => '0.03', 689 'CGI' => '2.42', 690 'CGI::Apache' => '1.1', 691 'CGI::Carp' => '1.10', 692 'CGI::Cookie' => '1.06', 693 'CGI::Push' => '1.01', 694 'CGI::Switch' => '0.06', 695 'CPAN' => '1.40', 696 'CPAN::FirstTime' => '1.30', 697 'Cwd' => '2.01', 698 'DB_File' => '1.15', 699 'DynaLoader' => '1.03', 700 'ExtUtils::Command' => '1.01', 701 'ExtUtils::Embed' => '1.2505', 702 'ExtUtils::Install' => '1.28', 703 'ExtUtils::Liblist' => '1.25', 704 'ExtUtils::MM_Unix' => '1.118', 705 'ExtUtils::MakeMaker' => '5.42', 706 'ExtUtils::Mkbootstrap' => '1.14', 707 'ExtUtils::Mksymlists' => '1.16', 708 'File::Basename' => '2.6', 709 'File::DosGlob' => undef, 710 'File::Path' => '1.0402', 711 'File::Spec' => '0.6', 712 'File::Spec::Mac' => '1.0', 713 'File::Spec::OS2' => undef, 714 'File::Spec::Unix' => undef, 715 'File::Spec::VMS' => undef, 716 'File::Spec::Win32' => undef, 717 'FindBin' => '1.41', 718 'Getopt::Long' => '2.19', 719 'IO::File' => '1.06021', 720 'IO::Socket' => '1.1603', 721 'IPC::Open3' => '1.0103', 722 'Math::Complex' => '1.25', 723 'NDBM_File' => '1.01', 724 'Pod::Html' => '1.0101', 725 'Pod::Text' => '1.0204', 726 'SelfLoader' => '1.08', 727 'Socket' => '1.7', 728 'Test' => '1.04', 729 'Test::Harness' => '1.1602', 730 'Text::ParseWords' => '3.1001', 731 'Text::Wrap' => '98.112902', 732 'Tie::Handle' => undef, 733 'attrs' => '0.1', 734 'base' => undef, 735 'blib' => '1.00', 736 're' => undef, 737 'strict' => '1.01', 738 }, 739 removed => { 740 } 741 }, 742 5.005 => { 743 delta_from => 5.00405, 744 changed => { 745 'AutoLoader' => undef, 746 'AutoSplit' => '1.0302', 747 'B' => undef, 748 'B::Asmdata' => undef, 749 'B::Assembler' => undef, 750 'B::Bblock' => undef, 751 'B::Bytecode' => undef, 752 'B::C' => undef, 753 'B::CC' => undef, 754 'B::Debug' => undef, 755 'B::Deparse' => '0.56', 756 'B::Disassembler' => undef, 757 'B::Lint' => undef, 758 'B::Showlex' => undef, 759 'B::Stackobj' => undef, 760 'B::Terse' => undef, 761 'B::Xref' => undef, 762 'CGI::Carp' => '1.101', 763 'CPAN' => '1.3901', 764 'CPAN::FirstTime' => '1.29', 765 'DB_File' => '1.60', 766 'Data::Dumper' => '2.09', 767 'Errno' => '1.09', 768 'ExtUtils::Installed' => '0.02', 769 'ExtUtils::MM_Unix' => '1.12601', 770 'ExtUtils::MakeMaker' => '5.4301', 771 'ExtUtils::Mkbootstrap' => '1.13', 772 'ExtUtils::Mksymlists' => '1.17', 773 'ExtUtils::Packlist' => '0.03', 774 'Fatal' => '1.02', 775 'File::Path' => '1.0401', 776 'Getopt::Long' => '2.17', 777 'IO::Handle' => '1.1505', 778 'IPC::Msg' => '1.00', 779 'IPC::Open3' => '1.0102', 780 'IPC::Semaphore' => '1.00', 781 'IPC::SysV' => '1.03', 782 'O' => undef, 783 'OS2::Process' => '0.2', 784 'Pod::Html' => '1.01', 785 'Pod::Text' => '1.0203', 786 'Text::ParseWords' => '3.1', 787 'Text::Wrap' => '97.02', 788 'Thread' => '1.0', 789 'Thread::Queue' => undef, 790 'Thread::Semaphore' => undef, 791 'Thread::Signal' => undef, 792 'Thread::Specific' => undef, 793 'Tie::Array' => '1.00', 794 'VMS::Stdio' => '2.1', 795 'attrs' => '1.0', 796 'fields' => '0.02', 797 're' => '0.02', 798 }, 799 removed => { 800 'Bundle::CPAN' => 1, 801 } 802 }, 803 5.00503 => { 804 delta_from => 5.005, 805 changed => { 806 'AutoSplit' => '1.0303', 807 'CGI' => '2.46', 808 'CGI::Carp' => '1.13', 809 'CGI::Fast' => '1.01', 810 'CPAN' => '1.48', 811 'CPAN::FirstTime' => '1.36', 812 'CPAN::Nox' => '1.00', 813 'DB_File' => '1.65', 814 'Data::Dumper' => '2.101', 815 'Dumpvalue' => undef, 816 'Errno' => '1.111', 817 'ExtUtils::Install' => '1.28', 818 'ExtUtils::Liblist' => '1.25', 819 'ExtUtils::MM_Unix' => '1.12602', 820 'ExtUtils::MakeMaker' => '5.4302', 821 'ExtUtils::Manifest' => '1.33', 822 'ExtUtils::Mkbootstrap' => '1.14', 823 'ExtUtils::Mksymlists' => '1.17', 824 'ExtUtils::testlib' => '1.11', 825 'FindBin' => '1.42', 826 'Getopt::Long' => '2.19', 827 'Getopt::Std' => '1.01', 828 'IO::Pipe' => '1.0902', 829 'IPC::Open3' => '1.0103', 830 'Math::Complex' => '1.26', 831 'Test' => '1.122', 832 'Text::Wrap' => '98.112902', 833 }, 834 removed => { 835 } 836 }, 837 5.00504 => { 838 delta_from => 5.00503, 839 changed => { 840 'CPAN::FirstTime' => '1.36', 841 'DB_File' => '1.807', 842 'ExtUtils::Install' => '1.28', 843 'ExtUtils::Liblist' => '1.25', 844 'ExtUtils::MM_Unix' => '1.12602', 845 'ExtUtils::Manifest' => '1.33', 846 'ExtUtils::Miniperl' => undef, 847 'ExtUtils::Mkbootstrap' => '1.14', 848 'ExtUtils::Mksymlists' => '1.17', 849 'ExtUtils::testlib' => '1.11', 850 'File::Compare' => '1.1002', 851 'File::Spec' => '0.8', 852 'File::Spec::Functions' => undef, 853 'File::Spec::Mac' => undef, 854 'Getopt::Long' => '2.20', 855 'Pod::Html' => '1.02', 856 }, 857 removed => { 858 } 859 }, 860 5.006 => { 861 delta_from => 5.00504, 862 changed => { 863 'AutoLoader' => '5.57', 864 'AutoSplit' => '1.0305', 865 'B::Deparse' => '0.59', 866 'B::Stash' => undef, 867 'Benchmark' => '1', 868 'ByteLoader' => '0.03', 869 'CGI' => '2.56', 870 'CGI::Apache' => undef, 871 'CGI::Carp' => '1.14', 872 'CGI::Cookie' => '1.12', 873 'CGI::Fast' => '1.02', 874 'CGI::Pretty' => '1.03', 875 'CGI::Switch' => undef, 876 'CPAN' => '1.52', 877 'CPAN::FirstTime' => '1.38', 878 'Carp::Heavy' => undef, 879 'Class::Struct' => '0.58', 880 'Cwd' => '2.02', 881 'DB' => '1.0', 882 'DB_File' => '1.72', 883 'Devel::DProf' => '20000000.00_00', 884 'Devel::Peek' => '1.00_01', 885 'DynaLoader' => '1.04', 886 'Exporter' => '5.562', 887 'Exporter::Heavy' => undef, 888 'ExtUtils::MM_Cygwin' => undef, 889 'ExtUtils::MM_Unix' => '1.12603', 890 'ExtUtils::MakeMaker' => '5.45', 891 'File::Copy' => '2.03', 892 'File::Glob' => '0.991', 893 'File::Path' => '1.0403', 894 'GDBM_File' => '1.03', 895 'Getopt::Long' => '2.23', 896 'Getopt::Std' => '1.02', 897 'IO' => '1.20', 898 'IO::Dir' => '1.03', 899 'IO::File' => '1.08', 900 'IO::Handle' => '1.21', 901 'IO::Pipe' => '1.121', 902 'IO::Poll' => '0.01', 903 'IO::Seekable' => '1.08', 904 'IO::Select' => '1.14', 905 'IO::Socket' => '1.26', 906 'IO::Socket::INET' => '1.25', 907 'IO::Socket::UNIX' => '1.20', 908 'JNI' => '0.01', 909 'JPL::AutoLoader' => undef, 910 'JPL::Class' => undef, 911 'JPL::Compile' => undef, 912 'NDBM_File' => '1.03', 913 'ODBM_File' => '1.02', 914 'OS2::DLL' => undef, 915 'POSIX' => '1.03', 916 'Pod::Checker' => '1.098', 917 'Pod::Find' => '0.12', 918 'Pod::Html' => '1.03', 919 'Pod::InputObjects' => '1.12', 920 'Pod::Man' => '1.02', 921 'Pod::ParseUtils' => '0.2', 922 'Pod::Parser' => '1.12', 923 'Pod::Plainer' => '0.01', 924 'Pod::Select' => '1.12', 925 'Pod::Text' => '2.03', 926 'Pod::Text::Color' => '0.05', 927 'Pod::Text::Termcap' => '0.04', 928 'Pod::Usage' => '1.12', 929 'SDBM_File' => '1.02', 930 'SelfLoader' => '1.0901', 931 'Shell' => '0.2', 932 'Socket' => '1.72', 933 'Sys::Hostname' => '1.1', 934 'Sys::Syslog' => '0.01', 935 'Term::ANSIColor' => '1.01', 936 'Test' => '1.13', 937 'Test::Harness' => '1.1604', 938 'Text::ParseWords' => '3.2', 939 'Text::Soundex' => '1.0', 940 'Text::Tabs' => '98.112801', 941 'Tie::Array' => '1.01', 942 'Tie::Handle' => '1.0', 943 'VMS::Stdio' => '2.2', 944 'XSLoader' => '0.01', 945 'attributes' => '0.03', 946 'autouse' => '1.02', 947 'base' => '1.01', 948 'bytes' => undef, 949 'charnames' => undef, 950 'constant' => '1.02', 951 'diagnostics' => '1.0', 952 'fields' => '1.01', 953 'filetest' => undef, 954 'lib' => '0.5564', 955 'open' => undef, 956 'utf8' => undef, 957 'warnings' => undef, 958 'warnings::register' => undef, 959 }, 960 removed => { 961 } 962 }, 963 5.006001 => { 964 delta_from => 5.006, 965 changed => { 966 'AutoLoader' => '5.58', 967 'B::Assembler' => '0.02', 968 'B::Concise' => '0.51', 969 'B::Deparse' => '0.6', 970 'ByteLoader' => '0.04', 971 'CGI' => '2.752', 972 'CGI::Carp' => '1.20', 973 'CGI::Cookie' => '1.18', 974 'CGI::Pretty' => '1.05', 975 'CGI::Push' => '1.04', 976 'CGI::Util' => '1.1', 977 'CPAN' => '1.59_54', 978 'CPAN::FirstTime' => '1.53', 979 'Class::Struct' => '0.59', 980 'Cwd' => '2.04', 981 'DB_File' => '1.75', 982 'Data::Dumper' => '2.102', 983 'ExtUtils::Install' => '1.28', 984 'ExtUtils::Liblist' => '1.26', 985 'ExtUtils::MM_Unix' => '1.12603', 986 'ExtUtils::Manifest' => '1.33', 987 'ExtUtils::Mkbootstrap' => '1.14', 988 'ExtUtils::Mksymlists' => '1.17', 989 'ExtUtils::testlib' => '1.11', 990 'File::Path' => '1.0404', 991 'File::Spec' => '0.82', 992 'File::Spec::Epoc' => undef, 993 'File::Spec::Functions' => '1.1', 994 'File::Spec::Mac' => '1.2', 995 'File::Spec::OS2' => '1.1', 996 'File::Spec::Unix' => '1.2', 997 'File::Spec::VMS' => '1.1', 998 'File::Spec::Win32' => '1.2', 999 'File::Temp' => '0.12', 1000 'GDBM_File' => '1.05', 1001 'Getopt::Long' => '2.25', 1002 'IO::Poll' => '0.05', 1003 'JNI' => '0.1', 1004 'Math::BigFloat' => '0.02', 1005 'Math::BigInt' => '0.01', 1006 'Math::Complex' => '1.31', 1007 'NDBM_File' => '1.04', 1008 'ODBM_File' => '1.03', 1009 'OS2::REXX' => '1.00', 1010 'Pod::Checker' => '1.2', 1011 'Pod::Find' => '0.21', 1012 'Pod::InputObjects' => '1.13', 1013 'Pod::LaTeX' => '0.53', 1014 'Pod::Man' => '1.15', 1015 'Pod::ParseUtils' => '0.22', 1016 'Pod::Parser' => '1.13', 1017 'Pod::Select' => '1.13', 1018 'Pod::Text' => '2.08', 1019 'Pod::Text::Color' => '0.06', 1020 'Pod::Text::Overstrike' => '1.01', 1021 'Pod::Text::Termcap' => '1', 1022 'Pod::Usage' => '1.14', 1023 'SDBM_File' => '1.03', 1024 'SelfLoader' => '1.0902', 1025 'Shell' => '0.3', 1026 'Term::ANSIColor' => '1.03', 1027 'Test' => '1.15', 1028 'Text::Wrap' => '2001.0131', 1029 'Tie::Handle' => '4.0', 1030 'Tie::RefHash' => '1.3', 1031 }, 1032 removed => { 1033 } 1034 }, 1035 5.006002 => { 1036 delta_from => 5.006001, 1037 changed => { 1038 'CPAN::FirstTime' => '1.53', 1039 'DB_File' => '1.806', 1040 'Data::Dumper' => '2.121', 1041 'ExtUtils::Command' => '1.05', 1042 'ExtUtils::Command::MM' => '0.03', 1043 'ExtUtils::Install' => '1.32', 1044 'ExtUtils::Installed' => '0.08', 1045 'ExtUtils::Liblist' => '1.01', 1046 'ExtUtils::Liblist::Kid'=> '1.3', 1047 'ExtUtils::MM' => '0.04', 1048 'ExtUtils::MM_Any' => '0.07', 1049 'ExtUtils::MM_BeOS' => '1.04', 1050 'ExtUtils::MM_Cygwin' => '1.06', 1051 'ExtUtils::MM_DOS' => '0.02', 1052 'ExtUtils::MM_MacOS' => '1.07', 1053 'ExtUtils::MM_NW5' => '2.06', 1054 'ExtUtils::MM_OS2' => '1.04', 1055 'ExtUtils::MM_UWIN' => '0.02', 1056 'ExtUtils::MM_Unix' => '1.42', 1057 'ExtUtils::MM_VMS' => '5.70', 1058 'ExtUtils::MM_Win32' => '1.09', 1059 'ExtUtils::MM_Win95' => '0.03', 1060 'ExtUtils::MY' => '0.01', 1061 'ExtUtils::MakeMaker' => '6.17', 1062 'ExtUtils::MakeMaker::bytes'=> '0.01', 1063 'ExtUtils::MakeMaker::vmsish'=> '0.01', 1064 'ExtUtils::Manifest' => '1.42', 1065 'ExtUtils::Mkbootstrap' => '1.15', 1066 'ExtUtils::Mksymlists' => '1.19', 1067 'ExtUtils::Packlist' => '0.04', 1068 'ExtUtils::testlib' => '1.15', 1069 'File::Spec' => '0.86', 1070 'File::Spec::Cygwin' => '1.1', 1071 'File::Spec::Epoc' => '1.1', 1072 'File::Spec::Functions' => '1.3', 1073 'File::Spec::Mac' => '1.4', 1074 'File::Spec::OS2' => '1.2', 1075 'File::Spec::Unix' => '1.5', 1076 'File::Spec::VMS' => '1.4', 1077 'File::Spec::Win32' => '1.4', 1078 'File::Temp' => '0.14', 1079 'Safe' => '2.10', 1080 'Test' => '1.24', 1081 'Test::Builder' => '0.17', 1082 'Test::Harness' => '2.30', 1083 'Test::Harness::Assert' => '0.01', 1084 'Test::Harness::Iterator'=> '0.01', 1085 'Test::Harness::Straps' => '0.15', 1086 'Test::More' => '0.47', 1087 'Test::Simple' => '0.47', 1088 'Unicode' => '3.0.1', 1089 'if' => '0.03', 1090 'ops' => '1.00', 1091 }, 1092 removed => { 1093 } 1094 }, 1095 5.007003 => { 1096 delta_from => 5.006001, 1097 changed => { 1098 'AnyDBM_File' => '1.00', 1099 'Attribute::Handlers' => '0.76', 1100 'AutoLoader' => '5.59', 1101 'AutoSplit' => '1.0307', 1102 'B' => '1.00', 1103 'B::Asmdata' => '1.00', 1104 'B::Assembler' => '0.04', 1105 'B::Bblock' => '1.00', 1106 'B::Bytecode' => '1.00', 1107 'B::C' => '1.01', 1108 'B::CC' => '1.00', 1109 'B::Concise' => '0.52', 1110 'B::Debug' => '1.00', 1111 'B::Deparse' => '0.63', 1112 'B::Disassembler' => '1.01', 1113 'B::Lint' => '1.00', 1114 'B::Showlex' => '1.00', 1115 'B::Stackobj' => '1.00', 1116 'B::Stash' => '1.00', 1117 'B::Terse' => '1.00', 1118 'B::Xref' => '1.00', 1119 'Benchmark' => '1.04', 1120 'CGI' => '2.80', 1121 'CGI::Apache' => '1.00', 1122 'CGI::Carp' => '1.22', 1123 'CGI::Cookie' => '1.20', 1124 'CGI::Fast' => '1.04', 1125 'CGI::Pretty' => '1.05_00', 1126 'CGI::Switch' => '1.00', 1127 'CGI::Util' => '1.3', 1128 'CPAN' => '1.59_56', 1129 'CPAN::FirstTime' => '1.54', 1130 'CPAN::Nox' => '1.00_01', 1131 'Carp' => '1.01', 1132 'Carp::Heavy' => '1.01', 1133 'Class::ISA' => '0.32', 1134 'Class::Struct' => '0.61', 1135 'Cwd' => '2.06', 1136 'DB_File' => '1.804', 1137 'Data::Dumper' => '2.12', 1138 'Devel::DProf' => '20000000.00_01', 1139 'Devel::PPPort' => '2.0002', 1140 'Devel::Peek' => '1.00_03', 1141 'Devel::SelfStubber' => '1.03', 1142 'Digest' => '1.00', 1143 'Digest::MD5' => '2.16', 1144 'DirHandle' => '1.00', 1145 'Dumpvalue' => '1.10', 1146 'Encode' => '0.40', 1147 'Encode::CN' => '0.02', 1148 'Encode::CN::HZ' => undef, 1149 'Encode::Encoding' => '0.02', 1150 'Encode::Internal' => '0.30', 1151 'Encode::JP' => '0.02', 1152 'Encode::JP::Constants' => '1.02', 1153 'Encode::JP::H2Z' => '0.77', 1154 'Encode::JP::ISO_2022_JP'=> undef, 1155 'Encode::JP::JIS' => undef, 1156 'Encode::JP::Tr' => '0.77', 1157 'Encode::KR' => '0.02', 1158 'Encode::TW' => '0.02', 1159 'Encode::Tcl' => '1.01', 1160 'Encode::Tcl::Escape' => '1.01', 1161 'Encode::Tcl::Extended' => '1.01', 1162 'Encode::Tcl::HanZi' => '1.01', 1163 'Encode::Tcl::Table' => '1.01', 1164 'Encode::Unicode' => '0.30', 1165 'Encode::XS' => '0.40', 1166 'Encode::iso10646_1' => '0.30', 1167 'Encode::usc2_le' => '0.30', 1168 'Encode::utf8' => '0.30', 1169 'English' => '1.00', 1170 'Env' => '1.00', 1171 'Exporter' => '5.566', 1172 'Exporter::Heavy' => '5.562', 1173 'ExtUtils::Command' => '1.02', 1174 'ExtUtils::Constant' => '0.11', 1175 'ExtUtils::Embed' => '1.250601', 1176 'ExtUtils::Install' => '1.29', 1177 'ExtUtils::Installed' => '0.04', 1178 'ExtUtils::Liblist' => '1.2701', 1179 'ExtUtils::MM_BeOS' => '1.00', 1180 'ExtUtils::MM_Cygwin' => '1.00', 1181 'ExtUtils::MM_OS2' => '1.00', 1182 'ExtUtils::MM_Unix' => '1.12607', 1183 'ExtUtils::MM_VMS' => '5.56', 1184 'ExtUtils::MM_Win32' => '1.00_02', 1185 'ExtUtils::MakeMaker' => '5.48_03', 1186 'ExtUtils::Manifest' => '1.35', 1187 'ExtUtils::Mkbootstrap' => '1.1401', 1188 'ExtUtils::Mksymlists' => '1.18', 1189 'ExtUtils::Packlist' => '0.04', 1190 'ExtUtils::testlib' => '1.1201', 1191 'Fatal' => '1.03', 1192 'Fcntl' => '1.04', 1193 'File::Basename' => '2.71', 1194 'File::CheckTree' => '4.1', 1195 'File::Compare' => '1.1003', 1196 'File::Copy' => '2.05', 1197 'File::DosGlob' => '1.00', 1198 'File::Find' => '1.04', 1199 'File::Glob' => '1.01', 1200 'File::Path' => '1.05', 1201 'File::Spec' => '0.83', 1202 'File::Spec::Cygwin' => '1.0', 1203 'File::Spec::Epoc' => '1.00', 1204 'File::Spec::Functions' => '1.2', 1205 'File::Spec::Mac' => '1.3', 1206 'File::Spec::Unix' => '1.4', 1207 'File::Spec::VMS' => '1.2', 1208 'File::Spec::Win32' => '1.3', 1209 'File::Temp' => '0.13', 1210 'File::stat' => '1.00', 1211 'FileCache' => '1.00', 1212 'FileHandle' => '2.01', 1213 'Filter::Simple' => '0.77', 1214 'Filter::Util::Call' => '1.06', 1215 'FindBin' => '1.43', 1216 'GDBM_File' => '1.06', 1217 'Getopt::Long' => '2.28', 1218 'Getopt::Std' => '1.03', 1219 'I18N::Collate' => '1.00', 1220 'I18N::LangTags' => '0.27', 1221 'I18N::LangTags::List' => '0.25', 1222 'I18N::Langinfo' => '0.01', 1223 'IO::Dir' => '1.03_00', 1224 'IO::File' => '1.09', 1225 'IO::Handle' => '1.21_00', 1226 'IO::Pipe' => '1.122', 1227 'IO::Poll' => '0.06', 1228 'IO::Seekable' => '1.08_00', 1229 'IO::Select' => '1.15', 1230 'IO::Socket' => '1.27', 1231 'IO::Socket::INET' => '1.26', 1232 'IO::Socket::UNIX' => '1.20_00', 1233 'IPC::Msg' => '1.00_00', 1234 'IPC::Open3' => '1.0104', 1235 'IPC::Semaphore' => '1.00_00', 1236 'IPC::SysV' => '1.03_00', 1237 'List::Util' => '1.06_00', 1238 'Locale::Constants' => '2.01', 1239 'Locale::Country' => '2.01', 1240 'Locale::Currency' => '2.01', 1241 'Locale::Language' => '2.01', 1242 'Locale::Maketext' => '1.03', 1243 'Locale::Script' => '2.01', 1244 'MIME::Base64' => '2.12', 1245 'MIME::QuotedPrint' => '2.03', 1246 'Math::BigFloat' => '1.30', 1247 'Math::BigInt' => '1.54', 1248 'Math::BigInt::Calc' => '0.25', 1249 'Math::Complex' => '1.34', 1250 'Math::Trig' => '1.01', 1251 'Memoize' => '0.66', 1252 'Memoize::AnyDBM_File' => '0.65', 1253 'Memoize::Expire' => '0.66', 1254 'Memoize::ExpireFile' => '0.65', 1255 'Memoize::ExpireTest' => '0.65', 1256 'Memoize::NDBM_File' => '0.65', 1257 'Memoize::SDBM_File' => '0.65', 1258 'Memoize::Storable' => '0.65', 1259 'NEXT' => '0.50', 1260 'Net::Cmd' => '2.21', 1261 'Net::Config' => '1.10', 1262 'Net::Domain' => '2.17', 1263 'Net::FTP' => '2.64', 1264 'Net::FTP::A' => '1.15', 1265 'Net::FTP::E' => '0.01', 1266 'Net::FTP::I' => '1.12', 1267 'Net::FTP::L' => '0.01', 1268 'Net::FTP::dataconn' => '0.10', 1269 'Net::NNTP' => '2.21', 1270 'Net::Netrc' => '2.12', 1271 'Net::POP3' => '2.23', 1272 'Net::Ping' => '2.12', 1273 'Net::SMTP' => '2.21', 1274 'Net::Time' => '2.09', 1275 'Net::hostent' => '1.00', 1276 'Net::netent' => '1.00', 1277 'Net::protoent' => '1.00', 1278 'Net::servent' => '1.00', 1279 'O' => '1.00', 1280 'OS2::DLL' => '1.00', 1281 'OS2::Process' => '1.0', 1282 'OS2::REXX' => '1.01', 1283 'Opcode' => '1.05', 1284 'POSIX' => '1.05', 1285 'PerlIO' => '1.00', 1286 'PerlIO::Scalar' => '0.01', 1287 'PerlIO::Via' => '0.01', 1288 'Pod::Checker' => '1.3', 1289 'Pod::Find' => '0.22', 1290 'Pod::Functions' => '1.01', 1291 'Pod::Html' => '1.04', 1292 'Pod::LaTeX' => '0.54', 1293 'Pod::Man' => '1.32', 1294 'Pod::ParseLink' => '1.05', 1295 'Pod::Text' => '2.18', 1296 'Pod::Text::Color' => '1.03', 1297 'Pod::Text::Overstrike' => '1.08', 1298 'Pod::Text::Termcap' => '1.09', 1299 'Safe' => '2.07', 1300 'Scalar::Util' => '1.06_00', 1301 'Search::Dict' => '1.02', 1302 'SelectSaver' => '1.00', 1303 'SelfLoader' => '1.0903', 1304 'Shell' => '0.4', 1305 'Socket' => '1.75', 1306 'Storable' => '1.015', 1307 'Switch' => '2.06', 1308 'Symbol' => '1.04', 1309 'Sys::Syslog' => '0.02', 1310 'Term::ANSIColor' => '1.04', 1311 'Term::Cap' => '1.07', 1312 'Term::Complete' => '1.4', 1313 'Term::ReadLine' => '1.00', 1314 'Test' => '1.18', 1315 'Test::Builder' => '0.11', 1316 'Test::Harness' => '2.01', 1317 'Test::Harness::Assert' => '0.01', 1318 'Test::Harness::Iterator'=> '0.01', 1319 'Test::Harness::Straps' => '0.08', 1320 'Test::More' => '0.41', 1321 'Test::Simple' => '0.41', 1322 'Text::Abbrev' => '1.00', 1323 'Text::Balanced' => '1.89', 1324 'Text::ParseWords' => '3.21', 1325 'Text::Soundex' => '1.01', 1326 'Text::Wrap' => '2001.0929', 1327 'Thread' => '2.00', 1328 'Thread::Queue' => '1.00', 1329 'Thread::Semaphore' => '1.00', 1330 'Thread::Signal' => '1.00', 1331 'Thread::Specific' => '1.00', 1332 'Tie::Array' => '1.02', 1333 'Tie::File' => '0.17', 1334 'Tie::Handle' => '4.1', 1335 'Tie::Hash' => '1.00', 1336 'Tie::Memoize' => '1.0', 1337 'Tie::RefHash' => '1.3_00', 1338 'Tie::Scalar' => '1.00', 1339 'Tie::SubstrHash' => '1.00', 1340 'Time::HiRes' => '1.20_00', 1341 'Time::Local' => '1.04', 1342 'Time::gmtime' => '1.02', 1343 'Time::localtime' => '1.02', 1344 'Time::tm' => '1.00', 1345 'UNIVERSAL' => '1.00', 1346 'Unicode::Collate' => '0.10', 1347 'Unicode::Normalize' => '0.14', 1348 'Unicode::UCD' => '0.2', 1349 'User::grent' => '1.00', 1350 'User::pwent' => '1.00', 1351 'VMS::DCLsym' => '1.02', 1352 'VMS::Filespec' => '1.1', 1353 'VMS::Stdio' => '2.3', 1354 'XS::Typemap' => '0.01', 1355 'attributes' => '0.04_01', 1356 'attrs' => '1.01', 1357 'autouse' => '1.03', 1358 'base' => '1.02', 1359 'blib' => '1.01', 1360 'bytes' => '1.00', 1361 'charnames' => '1.01', 1362 'constant' => '1.04', 1363 'diagnostics' => '1.1', 1364 'encoding' => '1.00', 1365 'fields' => '1.02', 1366 'filetest' => '1.00', 1367 'if' => '0.01', 1368 'integer' => '1.00', 1369 'less' => '0.01', 1370 'locale' => '1.00', 1371 'open' => '1.01', 1372 'ops' => '1.00', 1373 'overload' => '1.00', 1374 're' => '0.03', 1375 'sort' => '1.00', 1376 'strict' => '1.02', 1377 'subs' => '1.00', 1378 'threads' => '0.05', 1379 'threads::shared' => '0.90', 1380 'utf8' => '1.00', 1381 'vars' => '1.01', 1382 'vmsish' => '1.00', 1383 'warnings' => '1.00', 1384 'warnings::register' => '1.00', 1385 }, 1386 removed => { 1387 } 1388 }, 1389 5.008 => { 1390 delta_from => 5.007003, 1391 changed => { 1392 'Attribute::Handlers' => '0.77', 1393 'B' => '1.01', 1394 'B::Lint' => '1.01', 1395 'B::Xref' => '1.01', 1396 'CGI' => '2.81', 1397 'CGI::Carp' => '1.23', 1398 'CPAN' => '1.61', 1399 'CPAN::FirstTime' => '1.56', 1400 'CPAN::Nox' => '1.02', 1401 'Digest::MD5' => '2.20', 1402 'Dumpvalue' => '1.11', 1403 'Encode' => '1.75', 1404 'Encode::Alias' => '1.32', 1405 'Encode::Byte' => '1.22', 1406 'Encode::CJKConstants' => '1.00', 1407 'Encode::CN' => '1.24', 1408 'Encode::CN::HZ' => '1.04', 1409 'Encode::Config' => '1.06', 1410 'Encode::EBCDIC' => '1.21', 1411 'Encode::Encoder' => '0.05', 1412 'Encode::Encoding' => '1.30', 1413 'Encode::Guess' => '1.06', 1414 'Encode::JP' => '1.25', 1415 'Encode::JP::H2Z' => '1.02', 1416 'Encode::JP::JIS7' => '1.08', 1417 'Encode::KR' => '1.22', 1418 'Encode::KR::2022_KR' => '1.05', 1419 'Encode::MIME::Header' => '1.05', 1420 'Encode::Symbol' => '1.22', 1421 'Encode::TW' => '1.26', 1422 'Encode::Unicode' => '1.37', 1423 'Exporter::Heavy' => '5.566', 1424 'ExtUtils::Command' => '1.04', 1425 'ExtUtils::Command::MM' => '0.01', 1426 'ExtUtils::Constant' => '0.12', 1427 'ExtUtils::Installed' => '0.06', 1428 'ExtUtils::Liblist' => '1.00', 1429 'ExtUtils::Liblist::Kid'=> '1.29', 1430 'ExtUtils::MM' => '0.04', 1431 'ExtUtils::MM_Any' => '0.04', 1432 'ExtUtils::MM_BeOS' => '1.03', 1433 'ExtUtils::MM_Cygwin' => '1.04', 1434 'ExtUtils::MM_DOS' => '0.01', 1435 'ExtUtils::MM_MacOS' => '1.03', 1436 'ExtUtils::MM_NW5' => '2.05', 1437 'ExtUtils::MM_OS2' => '1.03', 1438 'ExtUtils::MM_UWIN' => '0.01', 1439 'ExtUtils::MM_Unix' => '1.33', 1440 'ExtUtils::MM_VMS' => '5.65', 1441 'ExtUtils::MM_Win32' => '1.05', 1442 'ExtUtils::MM_Win95' => '0.02', 1443 'ExtUtils::MY' => '0.01', 1444 'ExtUtils::MakeMaker' => '6.03', 1445 'ExtUtils::Manifest' => '1.38', 1446 'ExtUtils::Mkbootstrap' => '1.15', 1447 'ExtUtils::Mksymlists' => '1.19', 1448 'ExtUtils::testlib' => '1.15', 1449 'File::CheckTree' => '4.2', 1450 'FileCache' => '1.021', 1451 'Filter::Simple' => '0.78', 1452 'Getopt::Long' => '2.32', 1453 'Hash::Util' => '0.04', 1454 'List::Util' => '1.07_00', 1455 'Locale::Country' => '2.04', 1456 'Math::BigFloat' => '1.35', 1457 'Math::BigFloat::Trace' => '0.01', 1458 'Math::BigInt' => '1.60', 1459 'Math::BigInt::Calc' => '0.30', 1460 'Math::BigInt::Trace' => '0.01', 1461 'Math::BigRat' => '0.07', 1462 'Memoize' => '1.01', 1463 'Memoize::Expire' => '1.00', 1464 'Memoize::ExpireFile' => '1.01', 1465 'Net::FTP' => '2.65', 1466 'Net::FTP::dataconn' => '0.11', 1467 'Net::Ping' => '2.19', 1468 'Net::SMTP' => '2.24', 1469 'PerlIO' => '1.01', 1470 'PerlIO::encoding' => '0.06', 1471 'PerlIO::scalar' => '0.01', 1472 'PerlIO::via' => '0.01', 1473 'PerlIO::via::QuotedPrint'=> '0.04', 1474 'Pod::Man' => '1.33', 1475 'Pod::Text' => '2.19', 1476 'Scalar::Util' => '1.07_00', 1477 'Storable' => '2.04', 1478 'Switch' => '2.09', 1479 'Sys::Syslog' => '0.03', 1480 'Test' => '1.20', 1481 'Test::Builder' => '0.15', 1482 'Test::Harness' => '2.26', 1483 'Test::Harness::Straps' => '0.14', 1484 'Test::More' => '0.45', 1485 'Test::Simple' => '0.45', 1486 'Thread::Queue' => '2.00', 1487 'Thread::Semaphore' => '2.00', 1488 'Tie::File' => '0.93', 1489 'Tie::RefHash' => '1.30', 1490 'Unicode' => '3.2.0', 1491 'Unicode::Collate' => '0.12', 1492 'Unicode::Normalize' => '0.17', 1493 'XS::APItest' => '0.01', 1494 'attributes' => '0.05', 1495 'base' => '1.03', 1496 'bigint' => '0.02', 1497 'bignum' => '0.11', 1498 'bigrat' => '0.04', 1499 'blib' => '1.02', 1500 'encoding' => '1.35', 1501 'sort' => '1.01', 1502 'threads' => '0.99', 1503 }, 1504 removed => { 1505 'Encode::Internal' => 1, 1506 'Encode::JP::Constants' => 1, 1507 'Encode::JP::ISO_2022_JP'=> 1, 1508 'Encode::JP::JIS' => 1, 1509 'Encode::JP::Tr' => 1, 1510 'Encode::Tcl' => 1, 1511 'Encode::Tcl::Escape' => 1, 1512 'Encode::Tcl::Extended' => 1, 1513 'Encode::Tcl::HanZi' => 1, 1514 'Encode::Tcl::Table' => 1, 1515 'Encode::XS' => 1, 1516 'Encode::iso10646_1' => 1, 1517 'Encode::usc2_le' => 1, 1518 'Encode::utf8' => 1, 1519 'PerlIO::Scalar' => 1, 1520 'PerlIO::Via' => 1, 1521 } 1522 }, 1523 5.008001 => { 1524 delta_from => 5.008, 1525 changed => { 1526 'Attribute::Handlers' => '0.78', 1527 'AutoLoader' => '5.60', 1528 'AutoSplit' => '1.04', 1529 'B' => '1.02', 1530 'B::Asmdata' => '1.01', 1531 'B::Assembler' => '0.06', 1532 'B::Bblock' => '1.02', 1533 'B::Bytecode' => '1.01', 1534 'B::C' => '1.02', 1535 'B::Concise' => '0.56', 1536 'B::Debug' => '1.01', 1537 'B::Deparse' => '0.64', 1538 'B::Disassembler' => '1.03', 1539 'B::Lint' => '1.02', 1540 'B::Terse' => '1.02', 1541 'Benchmark' => '1.051', 1542 'ByteLoader' => '0.05', 1543 'CGI' => '3.00', 1544 'CGI::Carp' => '1.26', 1545 'CGI::Cookie' => '1.24', 1546 'CGI::Fast' => '1.041', 1547 'CGI::Pretty' => '1.07_00', 1548 'CGI::Util' => '1.31', 1549 'CPAN' => '1.76_01', 1550 'CPAN::FirstTime' => '1.60', 1551 'CPAN::Nox' => '1.03', 1552 'Class::Struct' => '0.63', 1553 'Cwd' => '2.08', 1554 'DB_File' => '1.806', 1555 'Data::Dumper' => '2.121', 1556 'Devel::DProf' => '20030813.00', 1557 'Devel::PPPort' => '2.007', 1558 'Devel::Peek' => '1.01', 1559 'Digest' => '1.02', 1560 'Digest::MD5' => '2.27', 1561 'Encode' => '1.9801', 1562 'Encode::Alias' => '1.38', 1563 'Encode::Byte' => '1.23', 1564 'Encode::CJKConstants' => '1.02', 1565 'Encode::CN::HZ' => '1.05', 1566 'Encode::Config' => '1.07', 1567 'Encode::Encoder' => '0.07', 1568 'Encode::Encoding' => '1.33', 1569 'Encode::Guess' => '1.09', 1570 'Encode::JP::JIS7' => '1.12', 1571 'Encode::KR' => '1.23', 1572 'Encode::KR::2022_KR' => '1.06', 1573 'Encode::MIME::Header' => '1.09', 1574 'Encode::Unicode' => '1.40', 1575 'Encode::Unicode::UTF7' => '0.02', 1576 'English' => '1.01', 1577 'Errno' => '1.09_00', 1578 'Exporter' => '5.567', 1579 'Exporter::Heavy' => '5.567', 1580 'ExtUtils::Command' => '1.05', 1581 'ExtUtils::Command::MM' => '0.03', 1582 'ExtUtils::Constant' => '0.14', 1583 'ExtUtils::Install' => '1.32', 1584 'ExtUtils::Installed' => '0.08', 1585 'ExtUtils::Liblist' => '1.01', 1586 'ExtUtils::Liblist::Kid'=> '1.3', 1587 'ExtUtils::MM_Any' => '0.07', 1588 'ExtUtils::MM_BeOS' => '1.04', 1589 'ExtUtils::MM_Cygwin' => '1.06', 1590 'ExtUtils::MM_DOS' => '0.02', 1591 'ExtUtils::MM_MacOS' => '1.07', 1592 'ExtUtils::MM_NW5' => '2.06', 1593 'ExtUtils::MM_OS2' => '1.04', 1594 'ExtUtils::MM_UWIN' => '0.02', 1595 'ExtUtils::MM_Unix' => '1.42', 1596 'ExtUtils::MM_VMS' => '5.70', 1597 'ExtUtils::MM_Win32' => '1.09', 1598 'ExtUtils::MM_Win95' => '0.03', 1599 'ExtUtils::MakeMaker' => '6.17', 1600 'ExtUtils::MakeMaker::bytes'=> '0.01', 1601 'ExtUtils::MakeMaker::vmsish'=> '0.01', 1602 'ExtUtils::Manifest' => '1.42', 1603 'Fcntl' => '1.05', 1604 'File::Basename' => '2.72', 1605 'File::Copy' => '2.06', 1606 'File::Find' => '1.05', 1607 'File::Glob' => '1.02', 1608 'File::Path' => '1.06', 1609 'File::Spec' => '0.86', 1610 'File::Spec::Cygwin' => '1.1', 1611 'File::Spec::Epoc' => '1.1', 1612 'File::Spec::Functions' => '1.3', 1613 'File::Spec::Mac' => '1.4', 1614 'File::Spec::OS2' => '1.2', 1615 'File::Spec::Unix' => '1.5', 1616 'File::Spec::VMS' => '1.4', 1617 'File::Spec::Win32' => '1.4', 1618 'File::Temp' => '0.14', 1619 'FileCache' => '1.03', 1620 'Filter::Util::Call' => '1.0601', 1621 'GDBM_File' => '1.07', 1622 'Getopt::Long' => '2.34', 1623 'Getopt::Std' => '1.04', 1624 'Hash::Util' => '0.05', 1625 'I18N::LangTags' => '0.28', 1626 'I18N::LangTags::List' => '0.26', 1627 'I18N::Langinfo' => '0.02', 1628 'IO' => '1.21', 1629 'IO::Dir' => '1.04', 1630 'IO::File' => '1.10', 1631 'IO::Handle' => '1.23', 1632 'IO::Seekable' => '1.09', 1633 'IO::Select' => '1.16', 1634 'IO::Socket' => '1.28', 1635 'IO::Socket::INET' => '1.27', 1636 'IO::Socket::UNIX' => '1.21', 1637 'IPC::Msg' => '1.02', 1638 'IPC::Open3' => '1.0105', 1639 'IPC::Semaphore' => '1.02', 1640 'IPC::SysV' => '1.04', 1641 'JNI' => '0.2', 1642 'List::Util' => '1.13', 1643 'Locale::Country' => '2.61', 1644 'Locale::Currency' => '2.21', 1645 'Locale::Language' => '2.21', 1646 'Locale::Maketext' => '1.06', 1647 'Locale::Maketext::Guts'=> undef, 1648 'Locale::Maketext::GutsLoader'=> undef, 1649 'Locale::Script' => '2.21', 1650 'MIME::Base64' => '2.20', 1651 'MIME::QuotedPrint' => '2.20', 1652 'Math::BigFloat' => '1.40', 1653 'Math::BigInt' => '1.66', 1654 'Math::BigInt::Calc' => '0.36', 1655 'Math::BigInt::Scalar' => '0.11', 1656 'Math::BigRat' => '0.10', 1657 'Math::Trig' => '1.02', 1658 'NDBM_File' => '1.05', 1659 'NEXT' => '0.60', 1660 'Net::Cmd' => '2.24', 1661 'Net::Domain' => '2.18', 1662 'Net::FTP' => '2.71', 1663 'Net::FTP::A' => '1.16', 1664 'Net::NNTP' => '2.22', 1665 'Net::POP3' => '2.24', 1666 'Net::Ping' => '2.31', 1667 'Net::SMTP' => '2.26', 1668 'Net::hostent' => '1.01', 1669 'Net::servent' => '1.01', 1670 'ODBM_File' => '1.04', 1671 'OS2::DLL' => '1.01', 1672 'OS2::ExtAttr' => '0.02', 1673 'OS2::PrfDB' => '0.03', 1674 'OS2::Process' => '1.01', 1675 'OS2::REXX' => '1.02', 1676 'POSIX' => '1.06', 1677 'PerlIO' => '1.02', 1678 'PerlIO::encoding' => '0.07', 1679 'PerlIO::scalar' => '0.02', 1680 'PerlIO::via' => '0.02', 1681 'PerlIO::via::QuotedPrint'=> '0.05', 1682 'Pod::Checker' => '1.41', 1683 'Pod::Find' => '0.24', 1684 'Pod::Functions' => '1.02', 1685 'Pod::Html' => '1.0501', 1686 'Pod::InputObjects' => '1.14', 1687 'Pod::LaTeX' => '0.55', 1688 'Pod::Man' => '1.37', 1689 'Pod::ParseLink' => '1.06', 1690 'Pod::ParseUtils' => '0.3', 1691 'Pod::Perldoc' => '3.10', 1692 'Pod::Perldoc::BaseTo' => undef, 1693 'Pod::Perldoc::GetOptsOO'=> undef, 1694 'Pod::Perldoc::ToChecker'=> undef, 1695 'Pod::Perldoc::ToMan' => undef, 1696 'Pod::Perldoc::ToNroff' => undef, 1697 'Pod::Perldoc::ToPod' => undef, 1698 'Pod::Perldoc::ToRtf' => undef, 1699 'Pod::Perldoc::ToText' => undef, 1700 'Pod::Perldoc::ToTk' => undef, 1701 'Pod::Perldoc::ToXml' => undef, 1702 'Pod::PlainText' => '2.01', 1703 'Pod::Text' => '2.21', 1704 'Pod::Text::Color' => '1.04', 1705 'Pod::Text::Overstrike' => '1.1', 1706 'Pod::Text::Termcap' => '1.11', 1707 'Pod::Usage' => '1.16', 1708 'SDBM_File' => '1.04', 1709 'Safe' => '2.10', 1710 'Scalar::Util' => '1.13', 1711 'SelfLoader' => '1.0904', 1712 'Shell' => '0.5', 1713 'Socket' => '1.76', 1714 'Storable' => '2.08', 1715 'Switch' => '2.10', 1716 'Symbol' => '1.05', 1717 'Sys::Hostname' => '1.11', 1718 'Sys::Syslog' => '0.04', 1719 'Term::ANSIColor' => '1.07', 1720 'Term::Cap' => '1.08', 1721 'Term::Complete' => '1.401', 1722 'Term::ReadLine' => '1.01', 1723 'Test' => '1.24', 1724 'Test::Builder' => '0.17', 1725 'Test::Harness' => '2.30', 1726 'Test::Harness::Straps' => '0.15', 1727 'Test::More' => '0.47', 1728 'Test::Simple' => '0.47', 1729 'Text::Abbrev' => '1.01', 1730 'Text::Balanced' => '1.95', 1731 'Text::Wrap' => '2001.09291', 1732 'Thread::Semaphore' => '2.01', 1733 'Tie::Array' => '1.03', 1734 'Tie::File' => '0.97', 1735 'Tie::RefHash' => '1.31', 1736 'Time::HiRes' => '1.51', 1737 'Time::Local' => '1.07', 1738 'UNIVERSAL' => '1.01', 1739 'Unicode' => '4.0.0', 1740 'Unicode::Collate' => '0.28', 1741 'Unicode::Normalize' => '0.23', 1742 'Unicode::UCD' => '0.21', 1743 'VMS::Filespec' => '1.11', 1744 'XS::APItest' => '0.02', 1745 'XSLoader' => '0.02', 1746 'attributes' => '0.06', 1747 'base' => '2.03', 1748 'bigint' => '0.04', 1749 'bignum' => '0.14', 1750 'bigrat' => '0.06', 1751 'bytes' => '1.01', 1752 'charnames' => '1.02', 1753 'diagnostics' => '1.11', 1754 'encoding' => '1.47', 1755 'fields' => '2.03', 1756 'filetest' => '1.01', 1757 'if' => '0.03', 1758 'lib' => '0.5565', 1759 'open' => '1.02', 1760 'overload' => '1.01', 1761 're' => '0.04', 1762 'sort' => '1.02', 1763 'strict' => '1.03', 1764 'threads' => '1.00', 1765 'threads::shared' => '0.91', 1766 'utf8' => '1.02', 1767 'vmsish' => '1.01', 1768 'warnings' => '1.03', 1769 }, 1770 removed => { 1771 } 1772 }, 1773 5.008002 => { 1774 delta_from => 5.008001, 1775 changed => { 1776 'DB_File' => '1.807', 1777 'Devel::PPPort' => '2.009', 1778 'Digest::MD5' => '2.30', 1779 'I18N::LangTags' => '0.29', 1780 'I18N::LangTags::List' => '0.29', 1781 'MIME::Base64' => '2.21', 1782 'MIME::QuotedPrint' => '2.21', 1783 'Net::Domain' => '2.19', 1784 'Net::FTP' => '2.72', 1785 'Pod::Perldoc' => '3.11', 1786 'Time::HiRes' => '1.52', 1787 'Unicode::Collate' => '0.30', 1788 'Unicode::Normalize' => '0.25', 1789 }, 1790 removed => { 1791 } 1792 }, 1793 5.008003 => { 1794 delta_from => 5.008002, 1795 changed => { 1796 'Benchmark' => '1.052', 1797 'CGI' => '3.01', 1798 'CGI::Carp' => '1.27', 1799 'CGI::Fast' => '1.05', 1800 'CGI::Pretty' => '1.08', 1801 'CGI::Util' => '1.4', 1802 'Cwd' => '2.12', 1803 'DB_File' => '1.808', 1804 'Devel::PPPort' => '2.011', 1805 'Digest' => '1.05', 1806 'Digest::MD5' => '2.33', 1807 'Digest::base' => '1.00', 1808 'Encode' => '1.99', 1809 'Exporter' => '5.57', 1810 'File::CheckTree' => '4.3', 1811 'File::Copy' => '2.07', 1812 'File::Find' => '1.06', 1813 'File::Spec' => '0.87', 1814 'FindBin' => '1.44', 1815 'Getopt::Std' => '1.05', 1816 'Math::BigFloat' => '1.42', 1817 'Math::BigInt' => '1.68', 1818 'Math::BigInt::Calc' => '0.38', 1819 'Math::BigInt::CalcEmu' => '0.02', 1820 'OS2::DLL' => '1.02', 1821 'POSIX' => '1.07', 1822 'PerlIO' => '1.03', 1823 'PerlIO::via::QuotedPrint'=> '0.06', 1824 'Pod::Html' => '1.0502', 1825 'Pod::Parser' => '1.14', 1826 'Pod::Perldoc' => '3.12', 1827 'Pod::PlainText' => '2.02', 1828 'Storable' => '2.09', 1829 'Test::Harness' => '2.40', 1830 'Test::Harness::Assert' => '0.02', 1831 'Test::Harness::Iterator'=> '0.02', 1832 'Test::Harness::Straps' => '0.19', 1833 'Tie::Hash' => '1.01', 1834 'Unicode::Collate' => '0.33', 1835 'Unicode::Normalize' => '0.28', 1836 'XS::APItest' => '0.03', 1837 'base' => '2.04', 1838 'diagnostics' => '1.12', 1839 'encoding' => '1.48', 1840 'threads' => '1.01', 1841 'threads::shared' => '0.92', 1842 }, 1843 removed => { 1844 'Math::BigInt::Scalar' => 1, 1845 } 1846 }, 1847 5.008004 => { 1848 delta_from => 5.008003, 1849 changed => { 1850 'Attribute::Handlers' => '0.78_01', 1851 'B::Assembler' => '0.07', 1852 'B::Concise' => '0.60', 1853 'B::Deparse' => '0.66', 1854 'Benchmark' => '1.06', 1855 'CGI' => '3.04', 1856 'Carp' => '1.02', 1857 'Cwd' => '2.17', 1858 'DBM_Filter' => '0.01', 1859 'DBM_Filter::compress' => '0.01', 1860 'DBM_Filter::encode' => '0.01', 1861 'DBM_Filter::int32' => '0.01', 1862 'DBM_Filter::null' => '0.01', 1863 'DBM_Filter::utf8' => '0.01', 1864 'Digest' => '1.06', 1865 'DynaLoader' => '1.05', 1866 'Encode' => '1.99_01', 1867 'Encode::CN::HZ' => '1.0501', 1868 'Exporter' => '5.58', 1869 'Exporter::Heavy' => '5.57', 1870 'ExtUtils::Liblist::Kid'=> '1.3001', 1871 'ExtUtils::MM_NW5' => '2.07_02', 1872 'ExtUtils::MM_Win95' => '0.0301', 1873 'File::Find' => '1.07', 1874 'IO::Handle' => '1.24', 1875 'IO::Pipe' => '1.123', 1876 'IPC::Open3' => '1.0106', 1877 'Locale::Maketext' => '1.08', 1878 'MIME::Base64' => '3.01', 1879 'MIME::QuotedPrint' => '3.01', 1880 'Math::BigFloat' => '1.44', 1881 'Math::BigInt' => '1.70', 1882 'Math::BigInt::Calc' => '0.40', 1883 'Math::BigInt::CalcEmu' => '0.04', 1884 'Math::BigRat' => '0.12', 1885 'ODBM_File' => '1.05', 1886 'POSIX' => '1.08', 1887 'Shell' => '0.5.2', 1888 'Socket' => '1.77', 1889 'Storable' => '2.12', 1890 'Sys::Syslog' => '0.05', 1891 'Term::ANSIColor' => '1.08', 1892 'Time::HiRes' => '1.59', 1893 'Unicode' => '4.0.1', 1894 'Unicode::UCD' => '0.22', 1895 'Win32' => '0.23', 1896 'base' => '2.05', 1897 'bigint' => '0.05', 1898 'bignum' => '0.15', 1899 'charnames' => '1.03', 1900 'open' => '1.03', 1901 'threads' => '1.03', 1902 'utf8' => '1.03', 1903 }, 1904 removed => { 1905 } 1906 }, 1907 5.008005 => { 1908 delta_from => 5.008004, 1909 changed => { 1910 'B::Concise' => '0.61', 1911 'B::Deparse' => '0.67', 1912 'CGI' => '3.05', 1913 'CGI::Carp' => '1.28', 1914 'CGI::Util' => '1.5', 1915 'Carp' => '1.03', 1916 'Carp::Heavy' => '1.03', 1917 'Cwd' => '2.19', 1918 'DB_File' => '1.809', 1919 'Digest' => '1.08', 1920 'Encode' => '2.01', 1921 'Encode::Alias' => '2.00', 1922 'Encode::Byte' => '2.00', 1923 'Encode::CJKConstants' => '2.00', 1924 'Encode::CN' => '2.00', 1925 'Encode::CN::HZ' => '2.01', 1926 'Encode::Config' => '2.00', 1927 'Encode::EBCDIC' => '2.00', 1928 'Encode::Encoder' => '2.00', 1929 'Encode::Encoding' => '2.00', 1930 'Encode::Guess' => '2.00', 1931 'Encode::JP' => '2.00', 1932 'Encode::JP::H2Z' => '2.00', 1933 'Encode::JP::JIS7' => '2.00', 1934 'Encode::KR' => '2.00', 1935 'Encode::KR::2022_KR' => '2.00', 1936 'Encode::MIME::Header' => '2.00', 1937 'Encode::Symbol' => '2.00', 1938 'Encode::TW' => '2.00', 1939 'Encode::Unicode' => '2.00', 1940 'Encode::Unicode::UTF7' => '2.01', 1941 'File::Basename' => '2.73', 1942 'File::Copy' => '2.08', 1943 'File::Glob' => '1.03', 1944 'FileCache' => '1.04_01', 1945 'I18N::LangTags' => '0.33', 1946 'I18N::LangTags::Detect'=> '1.03', 1947 'List::Util' => '1.14', 1948 'Locale::Constants' => '2.07', 1949 'Locale::Country' => '2.07', 1950 'Locale::Currency' => '2.07', 1951 'Locale::Language' => '2.07', 1952 'Locale::Maketext' => '1.09', 1953 'Locale::Script' => '2.07', 1954 'Net::Cmd' => '2.26', 1955 'Net::FTP' => '2.75', 1956 'Net::NNTP' => '2.23', 1957 'Net::POP3' => '2.28', 1958 'Net::SMTP' => '2.29', 1959 'Net::Time' => '2.10', 1960 'Pod::Checker' => '1.42', 1961 'Pod::Find' => '0.2401', 1962 'Pod::LaTeX' => '0.56', 1963 'Pod::ParseUtils' => '1.2', 1964 'Pod::Perldoc' => '3.13', 1965 'Safe' => '2.11', 1966 'Scalar::Util' => '1.14', 1967 'Shell' => '0.6', 1968 'Storable' => '2.13', 1969 'Term::Cap' => '1.09', 1970 'Test' => '1.25', 1971 'Test::Harness' => '2.42', 1972 'Text::ParseWords' => '3.22', 1973 'Text::Wrap' => '2001.09292', 1974 'Time::Local' => '1.10', 1975 'Unicode::Collate' => '0.40', 1976 'Unicode::Normalize' => '0.30', 1977 'XS::APItest' => '0.04', 1978 'autouse' => '1.04', 1979 'base' => '2.06', 1980 'charnames' => '1.04', 1981 'diagnostics' => '1.13', 1982 'encoding' => '2.00', 1983 'threads' => '1.05', 1984 'utf8' => '1.04', 1985 }, 1986 removed => { 1987 } 1988 }, 1989 5.008006 => { 1990 delta_from => 5.008005, 1991 changed => { 1992 'B' => '1.07', 1993 'B::C' => '1.04', 1994 'B::Concise' => '0.64', 1995 'B::Debug' => '1.02', 1996 'B::Deparse' => '0.69', 1997 'B::Lint' => '1.03', 1998 'B::Showlex' => '1.02', 1999 'Cwd' => '3.01', 2000 'DB_File' => '1.810', 2001 'Data::Dumper' => '2.121_02', 2002 'Devel::PPPort' => '3.03', 2003 'Devel::Peek' => '1.02', 2004 'Encode' => '2.08', 2005 'Encode::Alias' => '2.02', 2006 'Encode::Encoding' => '2.02', 2007 'Encode::JP' => '2.01', 2008 'Encode::Unicode' => '2.02', 2009 'Exporter::Heavy' => '5.58', 2010 'ExtUtils::Constant' => '0.1401', 2011 'File::Spec' => '3.01', 2012 'File::Spec::Win32' => '1.5', 2013 'I18N::LangTags' => '0.35', 2014 'I18N::LangTags::List' => '0.35', 2015 'MIME::Base64' => '3.05', 2016 'MIME::QuotedPrint' => '3.03', 2017 'Math::BigFloat' => '1.47', 2018 'Math::BigInt' => '1.73', 2019 'Math::BigInt::Calc' => '0.43', 2020 'Math::BigRat' => '0.13', 2021 'Text::ParseWords' => '3.23', 2022 'Time::HiRes' => '1.65', 2023 'XS::APItest' => '0.05', 2024 'diagnostics' => '1.14', 2025 'encoding' => '2.01', 2026 'open' => '1.04', 2027 'overload' => '1.02', 2028 }, 2029 removed => { 2030 } 2031 }, 2032 5.008007 => { 2033 delta_from => 5.008006, 2034 changed => { 2035 'B' => '1.09', 2036 'B::Concise' => '0.65', 2037 'B::Deparse' => '0.7', 2038 'B::Disassembler' => '1.04', 2039 'B::Terse' => '1.03', 2040 'Benchmark' => '1.07', 2041 'CGI' => '3.10', 2042 'CGI::Carp' => '1.29', 2043 'CGI::Cookie' => '1.25', 2044 'Carp' => '1.04', 2045 'Carp::Heavy' => '1.04', 2046 'Class::ISA' => '0.33', 2047 'Cwd' => '3.05', 2048 'DB_File' => '1.811', 2049 'Data::Dumper' => '2.121_04', 2050 'Devel::DProf' => '20050310.00', 2051 'Devel::PPPort' => '3.06', 2052 'Digest' => '1.10', 2053 'Digest::file' => '0.01', 2054 'Encode' => '2.10', 2055 'Encode::Alias' => '2.03', 2056 'Errno' => '1.09_01', 2057 'ExtUtils::Constant' => '0.16', 2058 'ExtUtils::Constant::Base'=> '0.01', 2059 'ExtUtils::Constant::Utils'=> '0.01', 2060 'ExtUtils::Constant::XS'=> '0.01', 2061 'File::Find' => '1.09', 2062 'File::Glob' => '1.04', 2063 'File::Path' => '1.07', 2064 'File::Spec' => '3.05', 2065 'File::Temp' => '0.16', 2066 'FileCache' => '1.05', 2067 'IO::File' => '1.11', 2068 'IO::Socket::INET' => '1.28', 2069 'Math::BigFloat' => '1.51', 2070 'Math::BigInt' => '1.77', 2071 'Math::BigInt::Calc' => '0.47', 2072 'Math::BigInt::CalcEmu' => '0.05', 2073 'Math::BigRat' => '0.15', 2074 'Pod::Find' => '1.3', 2075 'Pod::Html' => '1.0503', 2076 'Pod::InputObjects' => '1.3', 2077 'Pod::LaTeX' => '0.58', 2078 'Pod::ParseUtils' => '1.3', 2079 'Pod::Parser' => '1.3', 2080 'Pod::Perldoc' => '3.14', 2081 'Pod::Select' => '1.3', 2082 'Pod::Usage' => '1.3', 2083 'SelectSaver' => '1.01', 2084 'Symbol' => '1.06', 2085 'Sys::Syslog' => '0.06', 2086 'Term::ANSIColor' => '1.09', 2087 'Term::Complete' => '1.402', 2088 'Test::Builder' => '0.22', 2089 'Test::Harness' => '2.48', 2090 'Test::Harness::Point' => '0.01', 2091 'Test::Harness::Straps' => '0.23', 2092 'Test::More' => '0.54', 2093 'Test::Simple' => '0.54', 2094 'Text::ParseWords' => '3.24', 2095 'Text::Wrap' => '2001.09293', 2096 'Tie::RefHash' => '1.32', 2097 'Time::HiRes' => '1.66', 2098 'Time::Local' => '1.11', 2099 'Unicode' => '4.1.0', 2100 'Unicode::Normalize' => '0.32', 2101 'Unicode::UCD' => '0.23', 2102 'Win32' => '0.24', 2103 'XS::APItest' => '0.06', 2104 'base' => '2.07', 2105 'bigint' => '0.07', 2106 'bignum' => '0.17', 2107 'bigrat' => '0.08', 2108 'bytes' => '1.02', 2109 'constant' => '1.05', 2110 'overload' => '1.03', 2111 'threads::shared' => '0.93', 2112 'utf8' => '1.05', 2113 }, 2114 removed => { 2115 'JNI' => 1, 2116 'JPL::AutoLoader' => 1, 2117 'JPL::Class' => 1, 2118 'JPL::Compile' => 1, 2119 } 2120 }, 2121 5.008008 => { 2122 delta_from => 5.008007, 2123 changed => { 2124 'Attribute::Handlers' => '0.78_02', 2125 'B' => '1.09_01', 2126 'B::Bblock' => '1.02_01', 2127 'B::Bytecode' => '1.01_01', 2128 'B::C' => '1.04_01', 2129 'B::CC' => '1.00_01', 2130 'B::Concise' => '0.66', 2131 'B::Debug' => '1.02_01', 2132 'B::Deparse' => '0.71', 2133 'B::Disassembler' => '1.05', 2134 'B::Terse' => '1.03_01', 2135 'ByteLoader' => '0.06', 2136 'CGI' => '3.15', 2137 'CGI::Cookie' => '1.26', 2138 'CPAN' => '1.76_02', 2139 'Cwd' => '3.12', 2140 'DB' => '1.01', 2141 'DB_File' => '1.814', 2142 'Data::Dumper' => '2.121_08', 2143 'Devel::DProf' => '20050603.00', 2144 'Devel::PPPort' => '3.06_01', 2145 'Devel::Peek' => '1.03', 2146 'Digest' => '1.14', 2147 'Digest::MD5' => '2.36', 2148 'Digest::file' => '1.00', 2149 'Dumpvalue' => '1.12', 2150 'Encode' => '2.12', 2151 'Encode::Alias' => '2.04', 2152 'Encode::Config' => '2.01', 2153 'Encode::MIME::Header' => '2.01', 2154 'Encode::MIME::Header::ISO_2022_JP'=> '1.01', 2155 'English' => '1.02', 2156 'ExtUtils::Command' => '1.09', 2157 'ExtUtils::Command::MM' => '0.05', 2158 'ExtUtils::Constant' => '0.17', 2159 'ExtUtils::Embed' => '1.26', 2160 'ExtUtils::Install' => '1.33', 2161 'ExtUtils::Liblist::Kid'=> '1.3', 2162 'ExtUtils::MM' => '0.05', 2163 'ExtUtils::MM_AIX' => '0.03', 2164 'ExtUtils::MM_Any' => '0.13', 2165 'ExtUtils::MM_BeOS' => '1.05', 2166 'ExtUtils::MM_Cygwin' => '1.08', 2167 'ExtUtils::MM_MacOS' => '1.08', 2168 'ExtUtils::MM_NW5' => '2.08', 2169 'ExtUtils::MM_OS2' => '1.05', 2170 'ExtUtils::MM_QNX' => '0.02', 2171 'ExtUtils::MM_Unix' => '1.50', 2172 'ExtUtils::MM_VMS' => '5.73', 2173 'ExtUtils::MM_VOS' => '0.02', 2174 'ExtUtils::MM_Win32' => '1.12', 2175 'ExtUtils::MM_Win95' => '0.04', 2176 'ExtUtils::MakeMaker' => '6.30', 2177 'ExtUtils::MakeMaker::Config'=> '0.02', 2178 'ExtUtils::Manifest' => '1.46', 2179 'File::Basename' => '2.74', 2180 'File::Copy' => '2.09', 2181 'File::Find' => '1.10', 2182 'File::Glob' => '1.05', 2183 'File::Path' => '1.08', 2184 'File::Spec' => '3.12', 2185 'File::Spec::Win32' => '1.6', 2186 'FileCache' => '1.06', 2187 'Filter::Simple' => '0.82', 2188 'FindBin' => '1.47', 2189 'GDBM_File' => '1.08', 2190 'Getopt::Long' => '2.35', 2191 'IO' => '1.22', 2192 'IO::Dir' => '1.05', 2193 'IO::File' => '1.13', 2194 'IO::Handle' => '1.25', 2195 'IO::Pipe' => '1.13', 2196 'IO::Poll' => '0.07', 2197 'IO::Seekable' => '1.10', 2198 'IO::Select' => '1.17', 2199 'IO::Socket' => '1.29', 2200 'IO::Socket::INET' => '1.29', 2201 'IO::Socket::UNIX' => '1.22', 2202 'IPC::Open2' => '1.02', 2203 'IPC::Open3' => '1.02', 2204 'List::Util' => '1.18', 2205 'MIME::Base64' => '3.07', 2206 'MIME::QuotedPrint' => '3.07', 2207 'Math::Complex' => '1.35', 2208 'Math::Trig' => '1.03', 2209 'NDBM_File' => '1.06', 2210 'ODBM_File' => '1.06', 2211 'OS2::PrfDB' => '0.04', 2212 'OS2::Process' => '1.02', 2213 'OS2::REXX' => '1.03', 2214 'Opcode' => '1.06', 2215 'POSIX' => '1.09', 2216 'PerlIO' => '1.04', 2217 'PerlIO::encoding' => '0.09', 2218 'PerlIO::scalar' => '0.04', 2219 'PerlIO::via' => '0.03', 2220 'Pod::Checker' => '1.43', 2221 'Pod::Find' => '1.34', 2222 'Pod::Functions' => '1.03', 2223 'Pod::Html' => '1.0504', 2224 'Pod::ParseUtils' => '1.33', 2225 'Pod::Parser' => '1.32', 2226 'Pod::Usage' => '1.33', 2227 'SDBM_File' => '1.05', 2228 'Safe' => '2.12', 2229 'Scalar::Util' => '1.18', 2230 'Socket' => '1.78', 2231 'Storable' => '2.15', 2232 'Switch' => '2.10_01', 2233 'Sys::Syslog' => '0.13', 2234 'Term::ANSIColor' => '1.10', 2235 'Term::ReadLine' => '1.02', 2236 'Test::Builder' => '0.32', 2237 'Test::Builder::Module' => '0.02', 2238 'Test::Builder::Tester' => '1.02', 2239 'Test::Builder::Tester::Color'=> undef, 2240 'Test::Harness' => '2.56', 2241 'Test::Harness::Straps' => '0.26', 2242 'Test::More' => '0.62', 2243 'Test::Simple' => '0.62', 2244 'Text::Tabs' => '2005.0824', 2245 'Text::Wrap' => '2005.082401', 2246 'Tie::Hash' => '1.02', 2247 'Time::HiRes' => '1.86', 2248 'Unicode::Collate' => '0.52', 2249 'Unicode::UCD' => '0.24', 2250 'User::grent' => '1.01', 2251 'Win32' => '0.2601', 2252 'XS::APItest' => '0.08', 2253 'XS::Typemap' => '0.02', 2254 'XSLoader' => '0.06', 2255 'attrs' => '1.02', 2256 'autouse' => '1.05', 2257 'blib' => '1.03', 2258 'charnames' => '1.05', 2259 'diagnostics' => '1.15', 2260 'encoding' => '2.02', 2261 'if' => '0.05', 2262 'open' => '1.05', 2263 'ops' => '1.01', 2264 'overload' => '1.04', 2265 're' => '0.05', 2266 'threads' => '1.07', 2267 'threads::shared' => '0.94', 2268 'utf8' => '1.06', 2269 'vmsish' => '1.02', 2270 'warnings' => '1.05', 2271 'warnings::register' => '1.01', 2272 }, 2273 removed => { 2274 } 2275 }, 2276 5.008009 => { 2277 delta_from => 5.008008, 2278 changed => { 2279 'Attribute::Handlers' => '0.78_03', 2280 'AutoLoader' => '5.67', 2281 'AutoSplit' => '1.06', 2282 'B' => '1.19', 2283 'B::Asmdata' => '1.02', 2284 'B::Assembler' => '0.08', 2285 'B::C' => '1.05', 2286 'B::Concise' => '0.76', 2287 'B::Debug' => '1.05', 2288 'B::Deparse' => '0.87', 2289 'B::Lint' => '1.11', 2290 'B::Lint::Debug' => undef, 2291 'B::Terse' => '1.05', 2292 'Benchmark' => '1.1', 2293 'CGI' => '3.42', 2294 'CGI::Carp' => '1.30_01', 2295 'CGI::Cookie' => '1.29', 2296 'CGI::Fast' => '1.07', 2297 'CGI::Util' => '1.5_01', 2298 'CPAN' => '1.9301', 2299 'CPAN::Debug' => '5.5', 2300 'CPAN::DeferedCode' => '5.50', 2301 'CPAN::Distroprefs' => '6', 2302 'CPAN::FirstTime' => '5.5_01', 2303 'CPAN::HandleConfig' => '5.5', 2304 'CPAN::Kwalify' => '5.50', 2305 'CPAN::Nox' => '5.50', 2306 'CPAN::Queue' => '5.5', 2307 'CPAN::Tarzip' => '5.5', 2308 'CPAN::Version' => '5.5', 2309 'Carp' => '1.10', 2310 'Carp::Heavy' => '1.10', 2311 'Cwd' => '3.29', 2312 'DBM_Filter' => '0.02', 2313 'DBM_Filter::compress' => '0.02', 2314 'DBM_Filter::encode' => '0.02', 2315 'DBM_Filter::int32' => '0.02', 2316 'DBM_Filter::null' => '0.02', 2317 'DBM_Filter::utf8' => '0.02', 2318 'DB_File' => '1.817', 2319 'Data::Dumper' => '2.121_17', 2320 'Devel::DProf' => '20080331.00', 2321 'Devel::InnerPackage' => '0.3', 2322 'Devel::PPPort' => '3.14', 2323 'Devel::Peek' => '1.04', 2324 'Digest' => '1.15', 2325 'Digest::MD5' => '2.37', 2326 'DirHandle' => '1.02', 2327 'DynaLoader' => '1.09', 2328 'Encode' => '2.26', 2329 'Encode::Alias' => '2.10', 2330 'Encode::Byte' => '2.03', 2331 'Encode::CJKConstants' => '2.02', 2332 'Encode::CN' => '2.02', 2333 'Encode::CN::HZ' => '2.05', 2334 'Encode::Config' => '2.05', 2335 'Encode::EBCDIC' => '2.02', 2336 'Encode::Encoder' => '2.01', 2337 'Encode::Encoding' => '2.05', 2338 'Encode::GSM0338' => '2.01', 2339 'Encode::Guess' => '2.02', 2340 'Encode::JP' => '2.03', 2341 'Encode::JP::H2Z' => '2.02', 2342 'Encode::JP::JIS7' => '2.04', 2343 'Encode::KR' => '2.02', 2344 'Encode::KR::2022_KR' => '2.02', 2345 'Encode::MIME::Header' => '2.05', 2346 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', 2347 'Encode::MIME::Name' => '1.01', 2348 'Encode::Symbol' => '2.02', 2349 'Encode::TW' => '2.02', 2350 'Encode::Unicode' => '2.05', 2351 'Encode::Unicode::UTF7' => '2.04', 2352 'English' => '1.03', 2353 'Errno' => '1.10', 2354 'Exporter' => '5.63', 2355 'Exporter::Heavy' => '5.63', 2356 'ExtUtils::Command' => '1.15', 2357 'ExtUtils::Command::MM' => '6.48', 2358 'ExtUtils::Constant' => '0.21', 2359 'ExtUtils::Constant::Base'=> '0.04', 2360 'ExtUtils::Constant::ProxySubs'=> '0.06', 2361 'ExtUtils::Constant::Utils'=> '0.02', 2362 'ExtUtils::Constant::XS'=> '0.02', 2363 'ExtUtils::Embed' => '1.28', 2364 'ExtUtils::Install' => '1.50_01', 2365 'ExtUtils::Installed' => '1.43', 2366 'ExtUtils::Liblist' => '6.48', 2367 'ExtUtils::Liblist::Kid'=> '6.48', 2368 'ExtUtils::MM' => '6.48', 2369 'ExtUtils::MM_AIX' => '6.48', 2370 'ExtUtils::MM_Any' => '6.48', 2371 'ExtUtils::MM_BeOS' => '6.48', 2372 'ExtUtils::MM_Cygwin' => '6.48', 2373 'ExtUtils::MM_DOS' => '6.48', 2374 'ExtUtils::MM_Darwin' => '6.48', 2375 'ExtUtils::MM_MacOS' => '6.48', 2376 'ExtUtils::MM_NW5' => '6.48', 2377 'ExtUtils::MM_OS2' => '6.48', 2378 'ExtUtils::MM_QNX' => '6.48', 2379 'ExtUtils::MM_UWIN' => '6.48', 2380 'ExtUtils::MM_Unix' => '6.48', 2381 'ExtUtils::MM_VMS' => '6.48', 2382 'ExtUtils::MM_VOS' => '6.48', 2383 'ExtUtils::MM_Win32' => '6.48', 2384 'ExtUtils::MM_Win95' => '6.48', 2385 'ExtUtils::MY' => '6.48', 2386 'ExtUtils::MakeMaker' => '6.48', 2387 'ExtUtils::MakeMaker::Config'=> '6.48', 2388 'ExtUtils::MakeMaker::bytes'=> '6.48', 2389 'ExtUtils::MakeMaker::vmsish'=> '6.48', 2390 'ExtUtils::Manifest' => '1.55', 2391 'ExtUtils::Mkbootstrap' => '6.48', 2392 'ExtUtils::Mksymlists' => '6.48', 2393 'ExtUtils::Packlist' => '1.43', 2394 'ExtUtils::ParseXS' => '2.19', 2395 'ExtUtils::XSSymSet' => '1.1', 2396 'ExtUtils::testlib' => '6.48', 2397 'Fatal' => '1.06', 2398 'Fcntl' => '1.06', 2399 'File::Basename' => '2.77', 2400 'File::CheckTree' => '4.4', 2401 'File::Compare' => '1.1005', 2402 'File::Copy' => '2.13', 2403 'File::DosGlob' => '1.01', 2404 'File::Find' => '1.13', 2405 'File::Glob' => '1.06', 2406 'File::Path' => '2.07_02', 2407 'File::Spec' => '3.29', 2408 'File::Spec::Cygwin' => '3.29', 2409 'File::Spec::Epoc' => '3.29', 2410 'File::Spec::Functions' => '3.29', 2411 'File::Spec::Mac' => '3.29', 2412 'File::Spec::OS2' => '3.29', 2413 'File::Spec::Unix' => '3.29', 2414 'File::Spec::VMS' => '3.29', 2415 'File::Spec::Win32' => '3.29', 2416 'File::Temp' => '0.20', 2417 'File::stat' => '1.01', 2418 'FileCache' => '1.07', 2419 'Filter::Simple' => '0.83', 2420 'Filter::Util::Call' => '1.07', 2421 'FindBin' => '1.49', 2422 'GDBM_File' => '1.09', 2423 'Getopt::Long' => '2.37', 2424 'Getopt::Std' => '1.06', 2425 'Hash::Util' => '0.06', 2426 'IO' => '1.23', 2427 'IO::Dir' => '1.06', 2428 'IO::File' => '1.14', 2429 'IO::Handle' => '1.27', 2430 'IO::Socket' => '1.30', 2431 'IO::Socket::INET' => '1.31', 2432 'IO::Socket::UNIX' => '1.23', 2433 'IPC::Msg' => '2.00', 2434 'IPC::Open2' => '1.03', 2435 'IPC::Open3' => '1.03', 2436 'IPC::Semaphore' => '2.00', 2437 'IPC::SharedMem' => '2.00', 2438 'IPC::SysV' => '2.00', 2439 'List::Util' => '1.19', 2440 'Locale::Maketext' => '1.13', 2441 'Locale::Maketext::Guts'=> '1.13', 2442 'Locale::Maketext::GutsLoader'=> '1.13', 2443 'Math::BigFloat' => '1.60', 2444 'Math::BigInt' => '1.89', 2445 'Math::BigInt::Calc' => '0.52', 2446 'Math::BigRat' => '0.22', 2447 'Math::Complex' => '1.54', 2448 'Math::Trig' => '1.18', 2449 'Module::CoreList' => '2.17', 2450 'Module::Pluggable' => '3.8', 2451 'Module::Pluggable::Object'=> '3.6', 2452 'NDBM_File' => '1.07', 2453 'NEXT' => '0.61', 2454 'Net::Cmd' => '2.29', 2455 'Net::Config' => '1.11', 2456 'Net::Domain' => '2.20', 2457 'Net::FTP' => '2.77', 2458 'Net::FTP::A' => '1.18', 2459 'Net::NNTP' => '2.24', 2460 'Net::POP3' => '2.29', 2461 'Net::Ping' => '2.35', 2462 'Net::SMTP' => '2.31', 2463 'O' => '1.01', 2464 'ODBM_File' => '1.07', 2465 'OS2::DLL' => '1.03', 2466 'OS2::Process' => '1.03', 2467 'Opcode' => '1.0601', 2468 'POSIX' => '1.15', 2469 'PerlIO' => '1.05', 2470 'PerlIO::encoding' => '0.11', 2471 'PerlIO::scalar' => '0.06', 2472 'PerlIO::via' => '0.05', 2473 'Pod::Html' => '1.09', 2474 'Pod::ParseUtils' => '1.35', 2475 'Pod::Parser' => '1.35', 2476 'Pod::Select' => '1.35', 2477 'Pod::Usage' => '1.35', 2478 'SDBM_File' => '1.06', 2479 'Safe' => '2.16', 2480 'Scalar::Util' => '1.19', 2481 'SelfLoader' => '1.17', 2482 'Shell' => '0.72', 2483 'Socket' => '1.81', 2484 'Storable' => '2.19', 2485 'Switch' => '2.13', 2486 'Sys::Syslog' => '0.27', 2487 'Sys::Syslog::win32::Win32'=> undef, 2488 'Term::ANSIColor' => '1.12', 2489 'Term::Cap' => '1.12', 2490 'Term::ReadLine' => '1.03', 2491 'Test::Builder' => '0.80', 2492 'Test::Builder::Module' => '0.80', 2493 'Test::Builder::Tester' => '1.13', 2494 'Test::Harness' => '2.64', 2495 'Test::Harness::Results'=> '0.01_01', 2496 'Test::Harness::Straps' => '0.26_01', 2497 'Test::Harness::Util' => '0.01', 2498 'Test::More' => '0.80', 2499 'Test::Simple' => '0.80', 2500 'Text::Balanced' => '1.98', 2501 'Text::ParseWords' => '3.27', 2502 'Text::Soundex' => '3.03', 2503 'Text::Tabs' => '2007.1117', 2504 'Text::Wrap' => '2006.1117', 2505 'Thread' => '2.01', 2506 'Thread::Queue' => '2.11', 2507 'Thread::Semaphore' => '2.09', 2508 'Tie::Handle' => '4.2', 2509 'Tie::Hash' => '1.03', 2510 'Tie::Memoize' => '1.1', 2511 'Tie::RefHash' => '1.38', 2512 'Tie::Scalar' => '1.01', 2513 'Tie::StdHandle' => '4.2', 2514 'Time::HiRes' => '1.9715', 2515 'Time::Local' => '1.1901', 2516 'Time::gmtime' => '1.03', 2517 'Unicode' => '5.1.0', 2518 'Unicode::Normalize' => '1.02', 2519 'Unicode::UCD' => '0.25', 2520 'VMS::DCLsym' => '1.03', 2521 'VMS::Stdio' => '2.4', 2522 'Win32' => '0.38', 2523 'Win32API::File' => '0.1001_01', 2524 'Win32API::File::ExtUtils::Myconst2perl'=> '1', 2525 'Win32CORE' => '0.02', 2526 'XS::APItest' => '0.15', 2527 'XS::Typemap' => '0.03', 2528 'XSLoader' => '0.10', 2529 'attributes' => '0.09', 2530 'autouse' => '1.06', 2531 'base' => '2.13', 2532 'bigint' => '0.23', 2533 'bignum' => '0.23', 2534 'bigrat' => '0.23', 2535 'blib' => '1.04', 2536 'charnames' => '1.06', 2537 'constant' => '1.17', 2538 'diagnostics' => '1.16', 2539 'encoding' => '2.6_01', 2540 'fields' => '2.12', 2541 'filetest' => '1.02', 2542 'lib' => '0.61', 2543 'open' => '1.06', 2544 'ops' => '1.02', 2545 'overload' => '1.06', 2546 're' => '0.0601', 2547 'sigtrap' => '1.04', 2548 'threads' => '1.71', 2549 'threads::shared' => '1.27', 2550 'utf8' => '1.07', 2551 'warnings' => '1.05_01', 2552 }, 2553 removed => { 2554 } 2555 }, 2556 5.009 => { 2557 delta_from => 5.008002, 2558 changed => { 2559 'B' => '1.03', 2560 'B::C' => '1.03', 2561 'B::Concise' => '0.57', 2562 'B::Deparse' => '0.65', 2563 'DB_File' => '1.806', 2564 'Devel::PPPort' => '2.008', 2565 'English' => '1.02', 2566 'Fatal' => '1.04', 2567 'OS2::DLL' => '1.02', 2568 'Opcode' => '1.06', 2569 'Time::HiRes' => '1.51', 2570 'Unicode::Collate' => '0.28', 2571 'Unicode::Normalize' => '0.23', 2572 'XSLoader' => '0.03', 2573 'assertions' => '0.01', 2574 'assertions::activate' => '0.01', 2575 'overload' => '1.02', 2576 'version' => '0.29', 2577 }, 2578 removed => { 2579 } 2580 }, 2581 5.009001 => { 2582 delta_from => 5.008004, 2583 changed => { 2584 'B' => '1.05', 2585 'B::Assembler' => '0.06', 2586 'B::C' => '1.04', 2587 'B::Concise' => '0.59', 2588 'B::Debug' => '1.02', 2589 'B::Deparse' => '0.65', 2590 'DB_File' => '1.808_01', 2591 'Devel::PPPort' => '2.011_01', 2592 'Digest' => '1.05', 2593 'DynaLoader' => '1.04', 2594 'English' => '1.02', 2595 'Exporter::Heavy' => '5.567', 2596 'ExtUtils::Command' => '1.07', 2597 'ExtUtils::Liblist::Kid'=> '1.3', 2598 'ExtUtils::MM_Any' => '0.0901', 2599 'ExtUtils::MM_Cygwin' => '1.07', 2600 'ExtUtils::MM_NW5' => '2.07_01', 2601 'ExtUtils::MM_Unix' => '1.45_01', 2602 'ExtUtils::MM_VMS' => '5.71_01', 2603 'ExtUtils::MM_Win32' => '1.10_01', 2604 'ExtUtils::MM_Win95' => '0.03', 2605 'ExtUtils::MakeMaker' => '6.21_02', 2606 'ExtUtils::Manifest' => '1.43', 2607 'Fatal' => '1.04', 2608 'Getopt::Long' => '2.3401', 2609 'IO::Handle' => '1.23', 2610 'IO::Pipe' => '1.122', 2611 'IPC::Open3' => '1.0105', 2612 'MIME::Base64' => '3.00_01', 2613 'MIME::QuotedPrint' => '3.00', 2614 'Memoize' => '1.01_01', 2615 'ODBM_File' => '1.04', 2616 'Opcode' => '1.06', 2617 'POSIX' => '1.07', 2618 'Storable' => '2.11', 2619 'Time::HiRes' => '1.56', 2620 'Time::Local' => '1.07_94', 2621 'UNIVERSAL' => '1.02', 2622 'Unicode' => '4.0.0', 2623 'Unicode::UCD' => '0.21', 2624 'XSLoader' => '0.03', 2625 'assertions' => '0.01', 2626 'assertions::activate' => '0.01', 2627 'base' => '2.04', 2628 'if' => '0.0401', 2629 'open' => '1.02', 2630 'overload' => '1.02', 2631 'threads' => '1.02', 2632 'utf8' => '1.02', 2633 'version' => '0.36', 2634 }, 2635 removed => { 2636 } 2637 }, 2638 5.009002 => { 2639 delta_from => 5.008007, 2640 changed => { 2641 'B' => '1.07', 2642 'B::Concise' => '0.64', 2643 'B::Deparse' => '0.69', 2644 'B::Disassembler' => '1.03', 2645 'B::Terse' => '1.02', 2646 'CGI' => '3.07', 2647 'Config::Extensions' => '0.01', 2648 'Devel::DProf' => '20030813.00', 2649 'DynaLoader' => '1.07', 2650 'Encode' => '2.09', 2651 'Encode::Alias' => '2.02', 2652 'English' => '1.03', 2653 'Exporter' => '5.59', 2654 'Exporter::Heavy' => '5.59', 2655 'ExtUtils::Command' => '1.07', 2656 'ExtUtils::Command::MM' => '0.03_01', 2657 'ExtUtils::Embed' => '1.26', 2658 'ExtUtils::Liblist::Kid'=> '1.3', 2659 'ExtUtils::MM_Any' => '0.10', 2660 'ExtUtils::MM_Cygwin' => '1.07', 2661 'ExtUtils::MM_MacOS' => '1.08', 2662 'ExtUtils::MM_NW5' => '2.07', 2663 'ExtUtils::MM_Unix' => '1.46_01', 2664 'ExtUtils::MM_VMS' => '5.71', 2665 'ExtUtils::MM_Win32' => '1.10', 2666 'ExtUtils::MM_Win95' => '0.03', 2667 'ExtUtils::MakeMaker' => '6.25', 2668 'ExtUtils::Manifest' => '1.44', 2669 'Fatal' => '1.04', 2670 'File::Path' => '1.06', 2671 'FileCache' => '1.04_01', 2672 'Getopt::Long' => '2.3401', 2673 'IO::File' => '1.10', 2674 'IO::Socket::INET' => '1.27', 2675 'Math::BigFloat' => '1.49', 2676 'Math::BigInt' => '1.75', 2677 'Math::BigInt::Calc' => '0.45', 2678 'Math::BigRat' => '0.14', 2679 'Memoize' => '1.01_01', 2680 'Module::CoreList' => '1.99', 2681 'NEXT' => '0.60_01', 2682 'Opcode' => '1.06', 2683 'Pod::Html' => '1.0502', 2684 'Scalar::Util' => '1.14_1', 2685 'Storable' => '2.14', 2686 'Symbol' => '1.05', 2687 'Test::Harness' => '2.46', 2688 'Test::Harness::Straps' => '0.20_01', 2689 'Text::Balanced' => '1.95_01', 2690 'Text::Wrap' => '2001.09292', 2691 'UNIVERSAL' => '1.02', 2692 'Unicode' => '4.0.1', 2693 'Unicode::Normalize' => '0.30', 2694 'Unicode::UCD' => '0.22', 2695 'Win32' => '0.23', 2696 'XS::APItest' => '0.05', 2697 'XSLoader' => '0.03', 2698 'assertions' => '0.01', 2699 'assertions::activate' => '0.01', 2700 'base' => '2.06', 2701 'bigint' => '0.06', 2702 'bignum' => '0.16', 2703 'bigrat' => '0.07', 2704 'bytes' => '1.01', 2705 'encoding::warnings' => '0.05', 2706 'if' => '0.0401', 2707 're' => '0.05', 2708 'threads::shared' => '0.92', 2709 'utf8' => '1.04', 2710 'version' => '0.42', 2711 'warnings' => '1.04', 2712 }, 2713 removed => { 2714 'Test::Harness::Point' => 1, 2715 } 2716 }, 2717 5.009003 => { 2718 delta_from => 5.008008, 2719 changed => { 2720 'Archive::Tar' => '1.26_01', 2721 'Archive::Tar::Constant'=> '0.02', 2722 'Archive::Tar::File' => '0.02', 2723 'AutoSplit' => '1.04_01', 2724 'B' => '1.10', 2725 'B::Bblock' => '1.02', 2726 'B::Bytecode' => '1.01', 2727 'B::C' => '1.04', 2728 'B::CC' => '1.00', 2729 'B::Concise' => '0.67', 2730 'B::Debug' => '1.02', 2731 'B::Deparse' => '0.73', 2732 'B::Lint' => '1.04', 2733 'B::Terse' => '1.03', 2734 'CGI' => '3.15_01', 2735 'CPAN' => '1.83_58', 2736 'CPAN::Debug' => '4.44', 2737 'CPAN::FirstTime' => '4.50', 2738 'CPAN::HandleConfig' => '4.31', 2739 'CPAN::Nox' => '2.31', 2740 'CPAN::Tarzip' => '3.36', 2741 'CPAN::Version' => '2.55', 2742 'Carp' => '1.05', 2743 'Carp::Heavy' => '1.05', 2744 'Compress::Zlib' => '2.000_07', 2745 'Compress::Zlib::Common'=> '2.000_07', 2746 'Compress::Zlib::Compress::Gzip::Constants'=> '2.000_07', 2747 'Compress::Zlib::Compress::Zip::Constants'=> '1.00', 2748 'Compress::Zlib::CompressPlugin::Deflate'=> '2.000_05', 2749 'Compress::Zlib::CompressPlugin::Identity'=> '2.000_05', 2750 'Compress::Zlib::File::GlobMapper'=> '0.000_02', 2751 'Compress::Zlib::FileConstants'=> '2.000_07', 2752 'Compress::Zlib::IO::Compress::Base'=> '2.000_05', 2753 'Compress::Zlib::IO::Compress::Deflate'=> '2.000_07', 2754 'Compress::Zlib::IO::Compress::Gzip'=> '2.000_07', 2755 'Compress::Zlib::IO::Compress::RawDeflate'=> '2.000_07', 2756 'Compress::Zlib::IO::Compress::Zip'=> '2.000_04', 2757 'Compress::Zlib::IO::Uncompress::AnyInflate'=> '2.000_07', 2758 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> '2.000_05', 2759 'Compress::Zlib::IO::Uncompress::Base'=> '2.000_05', 2760 'Compress::Zlib::IO::Uncompress::Gunzip'=> '2.000_07', 2761 'Compress::Zlib::IO::Uncompress::Inflate'=> '2.000_07', 2762 'Compress::Zlib::IO::Uncompress::RawInflate'=> '2.000_07', 2763 'Compress::Zlib::IO::Uncompress::Unzip'=> '2.000_05', 2764 'Compress::Zlib::ParseParameters'=> '2.000_07', 2765 'Compress::Zlib::UncompressPlugin::Identity'=> '2.000_05', 2766 'Compress::Zlib::UncompressPlugin::Inflate'=> '2.000_05', 2767 'Config::Extensions' => '0.01', 2768 'Cwd' => '3.15', 2769 'Devel::PPPort' => '3.08', 2770 'Digest::SHA' => '5.32', 2771 'DirHandle' => '1.01', 2772 'DynaLoader' => '1.07', 2773 'Encode' => '2.14', 2774 'Encode::CN::HZ' => '2.02', 2775 'Encode::MIME::Header' => '2.02', 2776 'English' => '1.04', 2777 'Exporter' => '5.59', 2778 'Exporter::Heavy' => '5.59', 2779 'ExtUtils::CBuilder' => '0.15', 2780 'ExtUtils::CBuilder::Base'=> '0.12', 2781 'ExtUtils::CBuilder::Platform::Unix'=> '0.12', 2782 'ExtUtils::CBuilder::Platform::VMS'=> '0.12', 2783 'ExtUtils::CBuilder::Platform::Windows'=> '0.12', 2784 'ExtUtils::CBuilder::Platform::aix'=> '0.12', 2785 'ExtUtils::CBuilder::Platform::cygwin'=> '0.12', 2786 'ExtUtils::CBuilder::Platform::darwin'=> '0.12', 2787 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.01', 2788 'ExtUtils::CBuilder::Platform::os2'=> '0.13', 2789 'ExtUtils::Command::MM' => '0.05_01', 2790 'ExtUtils::Constant' => '0.2', 2791 'ExtUtils::Constant::Base'=> '0.02', 2792 'ExtUtils::Constant::ProxySubs'=> '0.01', 2793 'ExtUtils::Constant::XS'=> '0.02', 2794 'ExtUtils::MM_Any' => '0.13_01', 2795 'ExtUtils::MM_Unix' => '1.50_01', 2796 'ExtUtils::MakeMaker' => '6.30_01', 2797 'ExtUtils::ParseXS' => '2.15_02', 2798 'Fatal' => '1.04', 2799 'File::Compare' => '1.1005', 2800 'File::Spec' => '3.15', 2801 'File::Temp' => '0.16_01', 2802 'IO::File' => '1.13_01', 2803 'IO::Handle' => '1.26', 2804 'IO::Socket' => '1.29_01', 2805 'IO::Socket::INET' => '1.29_02', 2806 'IO::Socket::UNIX' => '1.22_01', 2807 'IO::Zlib' => '1.04_02', 2808 'Locale::Maketext' => '1.10_01', 2809 'Math::BigInt::FastCalc'=> '0.10', 2810 'Memoize' => '1.01_01', 2811 'Module::CoreList' => '2.02', 2812 'Moped::Msg' => '0.01', 2813 'NEXT' => '0.60_01', 2814 'Net::Cmd' => '2.26_01', 2815 'Net::Domain' => '2.19_01', 2816 'Net::Ping' => '2.31_04', 2817 'Opcode' => '1.08', 2818 'POSIX' => '1.10', 2819 'Pod::Escapes' => '1.04', 2820 'Pod::Man' => '2.04', 2821 'Pod::Perldoc' => '3.14_01', 2822 'Pod::Simple' => '3.04', 2823 'Pod::Simple::BlackBox' => undef, 2824 'Pod::Simple::Checker' => '2.02', 2825 'Pod::Simple::Debug' => undef, 2826 'Pod::Simple::DumpAsText'=> '2.02', 2827 'Pod::Simple::DumpAsXML'=> '2.02', 2828 'Pod::Simple::HTML' => '3.03', 2829 'Pod::Simple::HTMLBatch'=> '3.02', 2830 'Pod::Simple::HTMLLegacy'=> '5.01', 2831 'Pod::Simple::LinkSection'=> undef, 2832 'Pod::Simple::Methody' => '2.02', 2833 'Pod::Simple::Progress' => '1.01', 2834 'Pod::Simple::PullParser'=> '2.02', 2835 'Pod::Simple::PullParserEndToken'=> undef, 2836 'Pod::Simple::PullParserStartToken'=> undef, 2837 'Pod::Simple::PullParserTextToken'=> undef, 2838 'Pod::Simple::PullParserToken'=> '2.02', 2839 'Pod::Simple::RTF' => '2.02', 2840 'Pod::Simple::Search' => '3.04', 2841 'Pod::Simple::SimpleTree'=> '2.02', 2842 'Pod::Simple::Text' => '2.02', 2843 'Pod::Simple::TextContent'=> '2.02', 2844 'Pod::Simple::TiedOutFH'=> undef, 2845 'Pod::Simple::Transcode'=> undef, 2846 'Pod::Simple::TranscodeDumb'=> '2.02', 2847 'Pod::Simple::TranscodeSmart'=> undef, 2848 'Pod::Simple::XMLOutStream'=> '2.02', 2849 'Pod::Text' => '3.01', 2850 'Pod::Text::Color' => '2.01', 2851 'Pod::Text::Overstrike' => '2', 2852 'Pod::Text::Termcap' => '2.01', 2853 'Pod::Usage' => '1.33_01', 2854 'SelfLoader' => '1.0905', 2855 'Storable' => '2.15_02', 2856 'Test::Builder::Module' => '0.03', 2857 'Text::Balanced' => '1.95_01', 2858 'Tie::File' => '0.97_01', 2859 'UNIVERSAL' => '1.03', 2860 'XS::APItest' => '0.09', 2861 'assertions' => '0.02', 2862 'assertions::activate' => '0.02', 2863 'assertions::compat' => undef, 2864 'constant' => '1.07', 2865 'encoding::warnings' => '0.05', 2866 'feature' => '1.00', 2867 're' => '0.06', 2868 'sort' => '2.00', 2869 'version' => '0.53', 2870 }, 2871 removed => { 2872 } 2873 }, 2874 5.009004 => { 2875 delta_from => 5.009003, 2876 changed => { 2877 'Archive::Tar' => '1.30_01', 2878 'AutoLoader' => '5.61', 2879 'B' => '1.11', 2880 'B::Bytecode' => '1.02', 2881 'B::C' => '1.05', 2882 'B::Concise' => '0.69', 2883 'B::Deparse' => '0.76', 2884 'B::Lint' => '1.08', 2885 'Benchmark' => '1.08', 2886 'CGI' => '3.20', 2887 'CGI::Cookie' => '1.27', 2888 'CGI::Fast' => '1.07', 2889 'CPAN' => '1.87_55', 2890 'CPAN::Debug' => '5.400561', 2891 'CPAN::FirstTime' => '5.400742', 2892 'CPAN::HandleConfig' => '5.400740', 2893 'CPAN::Nox' => '5.400561', 2894 'CPAN::Tarzip' => '5.400714', 2895 'CPAN::Version' => '5.400561', 2896 'Compress::Raw::Zlib' => '2.000_13', 2897 'Compress::Zlib' => '2.000_13', 2898 'Cwd' => '3.19', 2899 'Devel::PPPort' => '3.10', 2900 'Digest' => '1.15', 2901 'Digest::SHA' => '5.43', 2902 'Encode' => '2.18_01', 2903 'Encode::Alias' => '2.06', 2904 'Encode::Byte' => '2.02', 2905 'Encode::CJKConstants' => '2.02', 2906 'Encode::CN' => '2.02', 2907 'Encode::CN::HZ' => '2.04', 2908 'Encode::Config' => '2.03', 2909 'Encode::EBCDIC' => '2.02', 2910 'Encode::Encoder' => '2.01', 2911 'Encode::Encoding' => '2.04', 2912 'Encode::Guess' => '2.02', 2913 'Encode::JP' => '2.03', 2914 'Encode::JP::H2Z' => '2.02', 2915 'Encode::JP::JIS7' => '2.02', 2916 'Encode::KR' => '2.02', 2917 'Encode::KR::2022_KR' => '2.02', 2918 'Encode::MIME::Header' => '2.04', 2919 'Encode::MIME::Header::ISO_2022_JP'=> '1.03', 2920 'Encode::Symbol' => '2.02', 2921 'Encode::TW' => '2.02', 2922 'Encode::Unicode' => '2.03', 2923 'Encode::Unicode::UTF7' => '2.04', 2924 'ExtUtils::CBuilder' => '0.18', 2925 'ExtUtils::CBuilder::Platform::Windows'=> '0.12_01', 2926 'ExtUtils::Constant::Base'=> '0.03', 2927 'ExtUtils::Constant::ProxySubs'=> '0.03', 2928 'ExtUtils::Install' => '1.41', 2929 'ExtUtils::Installed' => '1.41', 2930 'ExtUtils::MM_Any' => '0.13_02', 2931 'ExtUtils::MM_NW5' => '2.08_01', 2932 'ExtUtils::MM_Unix' => '1.5003', 2933 'ExtUtils::MM_VMS' => '5.73_03', 2934 'ExtUtils::MM_Win32' => '1.12_02', 2935 'ExtUtils::MM_Win95' => '0.04_01', 2936 'ExtUtils::MakeMaker' => '6.30_02', 2937 'ExtUtils::Manifest' => '1.46_01', 2938 'ExtUtils::Mkbootstrap' => '1.15_01', 2939 'ExtUtils::Mksymlists' => '1.19_01', 2940 'ExtUtils::Packlist' => '1.41', 2941 'File::Basename' => '2.75', 2942 'File::Find' => '1.11', 2943 'File::GlobMapper' => '0.000_02', 2944 'File::Spec' => '3.19', 2945 'FileCache' => '1.07', 2946 'Getopt::Long' => '2.3501', 2947 'Hash::Util' => '0.07', 2948 'Hash::Util::FieldHash' => '0.01', 2949 'IO' => '1.23_01', 2950 'IO::Compress::Adapter::Deflate'=> '2.000_13', 2951 'IO::Compress::Adapter::Identity'=> '2.000_13', 2952 'IO::Compress::Base' => '2.000_13', 2953 'IO::Compress::Base::Common'=> '2.000_13', 2954 'IO::Compress::Deflate' => '2.000_13', 2955 'IO::Compress::Gzip' => '2.000_13', 2956 'IO::Compress::Gzip::Constants'=> '2.000_13', 2957 'IO::Compress::RawDeflate'=> '2.000_13', 2958 'IO::Compress::Zip' => '2.000_13', 2959 'IO::Compress::Zip::Constants'=> '2.000_13', 2960 'IO::Compress::Zlib::Constants'=> '2.000_13', 2961 'IO::Compress::Zlib::Extra'=> '2.000_13', 2962 'IO::Dir' => '1.06', 2963 'IO::File' => '1.14', 2964 'IO::Handle' => '1.27', 2965 'IO::Socket' => '1.30_01', 2966 'IO::Socket::INET' => '1.31', 2967 'IO::Socket::UNIX' => '1.23', 2968 'IO::Uncompress::Adapter::Identity'=> '2.000_13', 2969 'IO::Uncompress::Adapter::Inflate'=> '2.000_13', 2970 'IO::Uncompress::AnyInflate'=> '2.000_13', 2971 'IO::Uncompress::AnyUncompress'=> '2.000_13', 2972 'IO::Uncompress::Base' => '2.000_13', 2973 'IO::Uncompress::Gunzip'=> '2.000_13', 2974 'IO::Uncompress::Inflate'=> '2.000_13', 2975 'IO::Uncompress::RawInflate'=> '2.000_13', 2976 'IO::Uncompress::Unzip' => '2.000_13', 2977 'MIME::Base64' => '3.07_01', 2978 'Math::Complex' => '1.36', 2979 'Math::Trig' => '1.04', 2980 'Module::Build' => '0.2805', 2981 'Module::Build::Base' => undef, 2982 'Module::Build::Compat' => '0.03', 2983 'Module::Build::ConfigData'=> undef, 2984 'Module::Build::Cookbook'=> undef, 2985 'Module::Build::ModuleInfo'=> undef, 2986 'Module::Build::Notes' => undef, 2987 'Module::Build::PPMMaker'=> undef, 2988 'Module::Build::Platform::Amiga'=> undef, 2989 'Module::Build::Platform::Default'=> undef, 2990 'Module::Build::Platform::EBCDIC'=> undef, 2991 'Module::Build::Platform::MPEiX'=> undef, 2992 'Module::Build::Platform::MacOS'=> undef, 2993 'Module::Build::Platform::RiscOS'=> undef, 2994 'Module::Build::Platform::Unix'=> undef, 2995 'Module::Build::Platform::VMS'=> undef, 2996 'Module::Build::Platform::VOS'=> undef, 2997 'Module::Build::Platform::Windows'=> undef, 2998 'Module::Build::Platform::aix'=> undef, 2999 'Module::Build::Platform::cygwin'=> undef, 3000 'Module::Build::Platform::darwin'=> undef, 3001 'Module::Build::Platform::os2'=> undef, 3002 'Module::Build::PodParser'=> undef, 3003 'Module::Build::Version'=> '0', 3004 'Module::Build::YAML' => '0.50', 3005 'Module::CoreList' => '2.08', 3006 'Module::Load' => '0.10', 3007 'Module::Loaded' => '0.01', 3008 'Package::Constants' => '0.01', 3009 'Pod::Html' => '1.07', 3010 'Pod::Man' => '2.09', 3011 'Pod::Text' => '3.07', 3012 'Pod::Text::Color' => '2.03', 3013 'Pod::Text::Termcap' => '2.03', 3014 'SDBM_File' => '1.06', 3015 'Shell' => '0.7', 3016 'Sys::Syslog' => '0.17', 3017 'Term::ANSIColor' => '1.11', 3018 'Test::Builder' => '0.33', 3019 'Test::Builder::Tester' => '1.04', 3020 'Test::Harness' => '2.62', 3021 'Test::Harness::Util' => '0.01', 3022 'Test::More' => '0.64', 3023 'Test::Simple' => '0.64', 3024 'Text::Balanced' => '1.98_01', 3025 'Text::ParseWords' => '3.25', 3026 'Text::Tabs' => '2007.071101', 3027 'Text::Wrap' => '2006.0711', 3028 'Tie::RefHash' => '1.34_01', 3029 'Time::HiRes' => '1.87', 3030 'Time::Local' => '1.13', 3031 'Time::gmtime' => '1.03', 3032 'UNIVERSAL' => '1.04', 3033 'Unicode::Normalize' => '1.01', 3034 'Win32API::File' => '0.1001', 3035 'Win32API::File::ExtUtils::Myconst2perl'=> '1', 3036 'assertions' => '0.03', 3037 'assertions::compat' => '0.02', 3038 'autouse' => '1.06', 3039 'diagnostics' => '1.16', 3040 'encoding' => '2.04', 3041 'encoding::warnings' => '0.10', 3042 'feature' => '1.01', 3043 're' => '0.0601', 3044 'threads' => '1.38', 3045 'threads::shared' => '0.94_01', 3046 'version' => '0.67', 3047 }, 3048 removed => { 3049 'Compress::Zlib::Common'=> 1, 3050 'Compress::Zlib::Compress::Gzip::Constants'=> 1, 3051 'Compress::Zlib::Compress::Zip::Constants'=> 1, 3052 'Compress::Zlib::CompressPlugin::Deflate'=> 1, 3053 'Compress::Zlib::CompressPlugin::Identity'=> 1, 3054 'Compress::Zlib::File::GlobMapper'=> 1, 3055 'Compress::Zlib::FileConstants'=> 1, 3056 'Compress::Zlib::IO::Compress::Base'=> 1, 3057 'Compress::Zlib::IO::Compress::Deflate'=> 1, 3058 'Compress::Zlib::IO::Compress::Gzip'=> 1, 3059 'Compress::Zlib::IO::Compress::RawDeflate'=> 1, 3060 'Compress::Zlib::IO::Compress::Zip'=> 1, 3061 'Compress::Zlib::IO::Uncompress::AnyInflate'=> 1, 3062 'Compress::Zlib::IO::Uncompress::AnyUncompress'=> 1, 3063 'Compress::Zlib::IO::Uncompress::Base'=> 1, 3064 'Compress::Zlib::IO::Uncompress::Gunzip'=> 1, 3065 'Compress::Zlib::IO::Uncompress::Inflate'=> 1, 3066 'Compress::Zlib::IO::Uncompress::RawInflate'=> 1, 3067 'Compress::Zlib::IO::Uncompress::Unzip'=> 1, 3068 'Compress::Zlib::ParseParameters'=> 1, 3069 'Compress::Zlib::UncompressPlugin::Identity'=> 1, 3070 'Compress::Zlib::UncompressPlugin::Inflate'=> 1, 3071 } 3072 }, 3073 5.009005 => { 3074 delta_from => 5.009004, 3075 changed => { 3076 'Archive::Extract' => '0.22_01', 3077 'Archive::Tar' => '1.32', 3078 'Attribute::Handlers' => '0.78_06', 3079 'AutoLoader' => '5.63', 3080 'AutoSplit' => '1.05', 3081 'B' => '1.16', 3082 'B::Concise' => '0.72', 3083 'B::Debug' => '1.05', 3084 'B::Deparse' => '0.82', 3085 'B::Lint' => '1.09', 3086 'B::Terse' => '1.05', 3087 'Benchmark' => '1.1', 3088 'CGI' => '3.29', 3089 'CGI::Cookie' => '1.28', 3090 'CGI::Util' => '1.5_01', 3091 'CPAN' => '1.9102', 3092 'CPAN::Debug' => '5.400955', 3093 'CPAN::FirstTime' => '5.401669', 3094 'CPAN::HandleConfig' => '5.401744', 3095 'CPAN::Kwalify' => '5.401418', 3096 'CPAN::Nox' => '5.400844', 3097 'CPAN::Queue' => '5.401704', 3098 'CPAN::Tarzip' => '5.401717', 3099 'CPAN::Version' => '5.401387', 3100 'CPANPLUS' => '0.81_01', 3101 'CPANPLUS::Backend' => undef, 3102 'CPANPLUS::Backend::RV' => undef, 3103 'CPANPLUS::Config' => undef, 3104 'CPANPLUS::Configure' => undef, 3105 'CPANPLUS::Configure::Setup'=> undef, 3106 'CPANPLUS::Dist' => undef, 3107 'CPANPLUS::Dist::Base' => '0.01', 3108 'CPANPLUS::Dist::Build' => '0.06_01', 3109 'CPANPLUS::Dist::Build::Constants'=> '0.01', 3110 'CPANPLUS::Dist::MM' => undef, 3111 'CPANPLUS::Dist::Sample'=> undef, 3112 'CPANPLUS::Error' => undef, 3113 'CPANPLUS::Internals' => '0.81_01', 3114 'CPANPLUS::Internals::Constants'=> '0.01', 3115 'CPANPLUS::Internals::Constants::Report'=> '0.01', 3116 'CPANPLUS::Internals::Extract'=> undef, 3117 'CPANPLUS::Internals::Fetch'=> undef, 3118 'CPANPLUS::Internals::Report'=> undef, 3119 'CPANPLUS::Internals::Search'=> undef, 3120 'CPANPLUS::Internals::Source'=> undef, 3121 'CPANPLUS::Internals::Utils'=> undef, 3122 'CPANPLUS::Internals::Utils::Autoflush'=> undef, 3123 'CPANPLUS::Module' => undef, 3124 'CPANPLUS::Module::Author'=> undef, 3125 'CPANPLUS::Module::Author::Fake'=> undef, 3126 'CPANPLUS::Module::Checksums'=> undef, 3127 'CPANPLUS::Module::Fake'=> undef, 3128 'CPANPLUS::Module::Signature'=> undef, 3129 'CPANPLUS::Selfupdate' => undef, 3130 'CPANPLUS::Shell' => undef, 3131 'CPANPLUS::Shell::Classic'=> '0.0562', 3132 'CPANPLUS::Shell::Default'=> '0.81_01', 3133 'CPANPLUS::Shell::Default::Plugins::Remote'=> undef, 3134 'CPANPLUS::Shell::Default::Plugins::Source'=> undef, 3135 'CPANPLUS::inc' => undef, 3136 'Carp' => '1.07', 3137 'Carp::Heavy' => '1.07', 3138 'Compress::Raw::Zlib' => '2.005', 3139 'Compress::Zlib' => '2.005', 3140 'Cwd' => '3.25', 3141 'DBM_Filter' => '0.02', 3142 'DB_File' => '1.815', 3143 'Data::Dumper' => '2.121_13', 3144 'Devel::InnerPackage' => '0.3', 3145 'Devel::PPPort' => '3.11_01', 3146 'Digest::MD5' => '2.36_01', 3147 'Digest::SHA' => '5.44', 3148 'DynaLoader' => '1.08', 3149 'Encode' => '2.23', 3150 'Encode::Alias' => '2.07', 3151 'Encode::Byte' => '2.03', 3152 'Encode::Config' => '2.04', 3153 'Encode::Encoding' => '2.05', 3154 'Encode::GSM0338' => '2.00', 3155 'Encode::JP::JIS7' => '2.03', 3156 'Encode::MIME::Header' => '2.05', 3157 'Encode::MIME::Name' => '1.01', 3158 'Encode::Unicode' => '2.05', 3159 'Errno' => '1.10', 3160 'Exporter' => '5.60', 3161 'Exporter::Heavy' => '5.60', 3162 'ExtUtils::CBuilder' => '0.19', 3163 'ExtUtils::CBuilder::Platform::Windows'=> '0.13', 3164 'ExtUtils::Command' => '1.13', 3165 'ExtUtils::Command::MM' => '0.07', 3166 'ExtUtils::Constant::Base'=> '0.04', 3167 'ExtUtils::Install' => '1.41_01', 3168 'ExtUtils::Liblist' => '1.03', 3169 'ExtUtils::Liblist::Kid'=> '1.33', 3170 'ExtUtils::MM' => '0.07', 3171 'ExtUtils::MM_AIX' => '0.05', 3172 'ExtUtils::MM_Any' => '0.15', 3173 'ExtUtils::MM_BeOS' => '1.07', 3174 'ExtUtils::MM_Cygwin' => '1.1', 3175 'ExtUtils::MM_DOS' => '0.04', 3176 'ExtUtils::MM_MacOS' => '1.1', 3177 'ExtUtils::MM_NW5' => '2.1', 3178 'ExtUtils::MM_OS2' => '1.07', 3179 'ExtUtils::MM_QNX' => '0.04', 3180 'ExtUtils::MM_UWIN' => '0.04', 3181 'ExtUtils::MM_Unix' => '1.54_01', 3182 'ExtUtils::MM_VMS' => '5.76', 3183 'ExtUtils::MM_VOS' => '0.04', 3184 'ExtUtils::MM_Win32' => '1.15', 3185 'ExtUtils::MM_Win95' => '0.06', 3186 'ExtUtils::MY' => '0.03', 3187 'ExtUtils::MakeMaker' => '6.36', 3188 'ExtUtils::MakeMaker::Config'=> '0.04', 3189 'ExtUtils::MakeMaker::bytes'=> '0.03', 3190 'ExtUtils::MakeMaker::vmsish'=> '0.03', 3191 'ExtUtils::Manifest' => '1.51_01', 3192 'ExtUtils::Mkbootstrap' => '1.17', 3193 'ExtUtils::Mksymlists' => '1.21', 3194 'ExtUtils::ParseXS' => '2.18', 3195 'ExtUtils::XSSymSet' => '1.1', 3196 'ExtUtils::testlib' => '1.17', 3197 'Fatal' => '1.05', 3198 'Fcntl' => '1.06', 3199 'File::Basename' => '2.76', 3200 'File::Copy' => '2.10', 3201 'File::Fetch' => '0.10', 3202 'File::Glob' => '1.06', 3203 'File::Path' => '2.01', 3204 'File::Spec' => '3.25', 3205 'File::Spec::Cygwin' => '1.1_01', 3206 'File::Spec::VMS' => '1.4_01', 3207 'File::Temp' => '0.18', 3208 'Filter::Util::Call' => '1.0602', 3209 'FindBin' => '1.49', 3210 'Getopt::Long' => '2.36', 3211 'Hash::Util::FieldHash' => '1.01', 3212 'IO::Compress::Adapter::Deflate'=> '2.005', 3213 'IO::Compress::Adapter::Identity'=> '2.005', 3214 'IO::Compress::Base' => '2.005', 3215 'IO::Compress::Base::Common'=> '2.005', 3216 'IO::Compress::Deflate' => '2.005', 3217 'IO::Compress::Gzip' => '2.005', 3218 'IO::Compress::Gzip::Constants'=> '2.005', 3219 'IO::Compress::RawDeflate'=> '2.005', 3220 'IO::Compress::Zip' => '2.005', 3221 'IO::Compress::Zip::Constants'=> '2.005', 3222 'IO::Compress::Zlib::Constants'=> '2.005', 3223 'IO::Compress::Zlib::Extra'=> '2.005', 3224 'IO::Uncompress::Adapter::Identity'=> '2.005', 3225 'IO::Uncompress::Adapter::Inflate'=> '2.005', 3226 'IO::Uncompress::AnyInflate'=> '2.005', 3227 'IO::Uncompress::AnyUncompress'=> '2.005', 3228 'IO::Uncompress::Base' => '2.005', 3229 'IO::Uncompress::Gunzip'=> '2.005', 3230 'IO::Uncompress::Inflate'=> '2.005', 3231 'IO::Uncompress::RawInflate'=> '2.005', 3232 'IO::Uncompress::Unzip' => '2.005', 3233 'IO::Zlib' => '1.05_01', 3234 'IPC::Cmd' => '0.36_01', 3235 'List::Util' => '1.19', 3236 'Locale::Maketext::Simple'=> '0.18', 3237 'Log::Message' => '0.01', 3238 'Log::Message::Config' => '0.01', 3239 'Log::Message::Handlers'=> undef, 3240 'Log::Message::Item' => undef, 3241 'Log::Message::Simple' => '0.0201', 3242 'Math::BigFloat' => '1.58', 3243 'Math::BigInt' => '1.87', 3244 'Math::BigInt::Calc' => '0.51', 3245 'Math::BigInt::FastCalc'=> '0.15_01', 3246 'Math::BigRat' => '0.19', 3247 'Math::Complex' => '1.37', 3248 'Memoize' => '1.01_02', 3249 'Module::Build' => '0.2808', 3250 'Module::Build::Config' => undef, 3251 'Module::Build::Version'=> '0.7203', 3252 'Module::CoreList' => '2.12', 3253 'Module::Load::Conditional'=> '0.16', 3254 'Module::Pluggable' => '3.6', 3255 'Module::Pluggable::Object'=> '3.6', 3256 'NDBM_File' => '1.07', 3257 'Net::Cmd' => '2.28', 3258 'Net::Config' => '1.11', 3259 'Net::Domain' => '2.20', 3260 'Net::FTP' => '2.77', 3261 'Net::FTP::A' => '1.18', 3262 'Net::NNTP' => '2.24', 3263 'Net::POP3' => '2.29', 3264 'Net::SMTP' => '2.31', 3265 'ODBM_File' => '1.07', 3266 'OS2::DLL' => '1.03', 3267 'Object::Accessor' => '0.32', 3268 'Opcode' => '1.09', 3269 'POSIX' => '1.13', 3270 'Params::Check' => '0.26', 3271 'PerlIO::encoding' => '0.10', 3272 'PerlIO::scalar' => '0.05', 3273 'PerlIO::via' => '0.04', 3274 'Pod::Html' => '1.08', 3275 'Pod::Man' => '2.12', 3276 'Pod::ParseUtils' => '1.35', 3277 'Pod::Parser' => '1.35', 3278 'Pod::Select' => '1.35', 3279 'Pod::Simple' => '3.05', 3280 'Pod::Text' => '3.08', 3281 'Pod::Usage' => '1.35', 3282 'Scalar::Util' => '1.19', 3283 'SelfLoader' => '1.11', 3284 'Shell' => '0.72_01', 3285 'Socket' => '1.79', 3286 'Storable' => '2.16', 3287 'Switch' => '2.13', 3288 'Sys::Syslog' => '0.18_01', 3289 'Term::ANSIColor' => '1.12', 3290 'Term::UI' => '0.14_01', 3291 'Term::UI::History' => undef, 3292 'Test::Builder' => '0.70', 3293 'Test::Builder::Module' => '0.68', 3294 'Test::Builder::Tester' => '1.07', 3295 'Test::Harness' => '2.64', 3296 'Test::Harness::Results'=> '0.01', 3297 'Test::More' => '0.70', 3298 'Test::Simple' => '0.70', 3299 'Text::Balanced' => '2.0.0', 3300 'Text::Soundex' => '3.02', 3301 'Text::Tabs' => '2007.1117', 3302 'Text::Wrap' => '2006.1117', 3303 'Thread' => '3.02', 3304 'Tie::File' => '0.97_02', 3305 'Tie::Hash::NamedCapture'=> '0.06', 3306 'Tie::Memoize' => '1.1', 3307 'Tie::RefHash' => '1.37', 3308 'Time::HiRes' => '1.9707', 3309 'Time::Local' => '1.17', 3310 'Time::Piece' => '1.11_02', 3311 'Time::Seconds' => undef, 3312 'Unicode' => '5.0.0', 3313 'Unicode::Normalize' => '1.02', 3314 'Unicode::UCD' => '0.25', 3315 'VMS::DCLsym' => '1.03', 3316 'Win32' => '0.30', 3317 'Win32API::File' => '0.1001_01', 3318 'Win32CORE' => '0.02', 3319 'XS::APItest' => '0.12', 3320 'XSLoader' => '0.08', 3321 'attributes' => '0.08', 3322 'base' => '2.12', 3323 'bigint' => '0.22', 3324 'bignum' => '0.22', 3325 'bigrat' => '0.22', 3326 'bytes' => '1.03', 3327 'charnames' => '1.06', 3328 'constant' => '1.10', 3329 'diagnostics' => '1.17', 3330 'encoding' => '2.06', 3331 'encoding::warnings' => '0.11', 3332 'feature' => '1.10', 3333 'fields' => '2.12', 3334 'less' => '0.02', 3335 'mro' => '1.00', 3336 'overload' => '1.06', 3337 're' => '0.08', 3338 'sigtrap' => '1.04', 3339 'sort' => '2.01', 3340 'strict' => '1.04', 3341 'threads' => '1.63', 3342 'threads::shared' => '1.12', 3343 'utf8' => '1.07', 3344 'version' => '0.7203', 3345 'warnings' => '1.06', 3346 }, 3347 removed => { 3348 'B::Asmdata' => 1, 3349 'B::Assembler' => 1, 3350 'B::Bblock' => 1, 3351 'B::Bytecode' => 1, 3352 'B::C' => 1, 3353 'B::CC' => 1, 3354 'B::Disassembler' => 1, 3355 'B::Stackobj' => 1, 3356 'B::Stash' => 1, 3357 'ByteLoader' => 1, 3358 'Thread::Signal' => 1, 3359 'Thread::Specific' => 1, 3360 'assertions' => 1, 3361 'assertions::activate' => 1, 3362 'assertions::compat' => 1, 3363 } 3364 }, 3365 5.01 => { 3366 delta_from => 5.009005, 3367 changed => { 3368 'Archive::Extract' => '0.24', 3369 'Archive::Tar' => '1.38', 3370 'Attribute::Handlers' => '0.79', 3371 'B' => '1.17', 3372 'B::Concise' => '0.74', 3373 'B::Deparse' => '0.83', 3374 'CPAN' => '1.9205', 3375 'CPAN::API::HOWTO' => undef, 3376 'CPAN::Debug' => '5.402212', 3377 'CPAN::DeferedCode' => '5.50', 3378 'CPAN::FirstTime' => '5.402229', 3379 'CPAN::HandleConfig' => '5.402212', 3380 'CPAN::Nox' => '5.402411', 3381 'CPAN::Queue' => '5.402212', 3382 'CPAN::Tarzip' => '5.402213', 3383 'CPAN::Version' => '5.5', 3384 'CPANPLUS' => '0.84', 3385 'CPANPLUS::Dist::Build' => '0.06_02', 3386 'CPANPLUS::Internals' => '0.84', 3387 'CPANPLUS::Shell::Default'=> '0.84', 3388 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> undef, 3389 'Carp' => '1.08', 3390 'Carp::Heavy' => '1.08', 3391 'Compress::Raw::Zlib' => '2.008', 3392 'Compress::Zlib' => '2.008', 3393 'Cwd' => '3.2501', 3394 'DB_File' => '1.816_1', 3395 'Data::Dumper' => '2.121_14', 3396 'Devel::PPPort' => '3.13', 3397 'Digest::SHA' => '5.45', 3398 'Exporter' => '5.62', 3399 'Exporter::Heavy' => '5.62', 3400 'ExtUtils::CBuilder' => '0.21', 3401 'ExtUtils::CBuilder::Base'=> '0.21', 3402 'ExtUtils::CBuilder::Platform::Unix'=> '0.21', 3403 'ExtUtils::CBuilder::Platform::VMS'=> '0.22', 3404 'ExtUtils::CBuilder::Platform::Windows'=> '0.21', 3405 'ExtUtils::CBuilder::Platform::aix'=> '0.21', 3406 'ExtUtils::CBuilder::Platform::cygwin'=> '0.21', 3407 'ExtUtils::CBuilder::Platform::darwin'=> '0.21', 3408 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.21', 3409 'ExtUtils::CBuilder::Platform::os2'=> '0.21', 3410 'ExtUtils::Command::MM' => '6.42', 3411 'ExtUtils::Constant::ProxySubs'=> '0.05', 3412 'ExtUtils::Embed' => '1.27', 3413 'ExtUtils::Install' => '1.44', 3414 'ExtUtils::Installed' => '1.43', 3415 'ExtUtils::Liblist' => '6.42', 3416 'ExtUtils::Liblist::Kid'=> '6.42', 3417 'ExtUtils::MM' => '6.42', 3418 'ExtUtils::MM_AIX' => '6.42', 3419 'ExtUtils::MM_Any' => '6.42', 3420 'ExtUtils::MM_BeOS' => '6.42', 3421 'ExtUtils::MM_Cygwin' => '6.42', 3422 'ExtUtils::MM_DOS' => '6.42', 3423 'ExtUtils::MM_MacOS' => '6.42', 3424 'ExtUtils::MM_NW5' => '6.42', 3425 'ExtUtils::MM_OS2' => '6.42', 3426 'ExtUtils::MM_QNX' => '6.42', 3427 'ExtUtils::MM_UWIN' => '6.42', 3428 'ExtUtils::MM_Unix' => '6.42', 3429 'ExtUtils::MM_VMS' => '6.42', 3430 'ExtUtils::MM_VOS' => '6.42', 3431 'ExtUtils::MM_Win32' => '6.42', 3432 'ExtUtils::MM_Win95' => '6.42', 3433 'ExtUtils::MY' => '6.42', 3434 'ExtUtils::MakeMaker' => '6.42', 3435 'ExtUtils::MakeMaker::Config'=> '6.42', 3436 'ExtUtils::MakeMaker::bytes'=> '6.42', 3437 'ExtUtils::MakeMaker::vmsish'=> '6.42', 3438 'ExtUtils::Mkbootstrap' => '6.42', 3439 'ExtUtils::Mksymlists' => '6.42', 3440 'ExtUtils::Packlist' => '1.43', 3441 'ExtUtils::ParseXS' => '2.18_02', 3442 'ExtUtils::testlib' => '6.42', 3443 'File::Copy' => '2.11', 3444 'File::Fetch' => '0.14', 3445 'File::Find' => '1.12', 3446 'File::Path' => '2.04', 3447 'File::Spec' => '3.2501', 3448 'File::Spec::Cygwin' => '3.2501', 3449 'File::Spec::Epoc' => '3.2501', 3450 'File::Spec::Functions' => '3.2501', 3451 'File::Spec::Mac' => '3.2501', 3452 'File::Spec::OS2' => '3.2501', 3453 'File::Spec::Unix' => '3.2501', 3454 'File::Spec::VMS' => '3.2501', 3455 'File::Spec::Win32' => '3.2501', 3456 'Filter::Util::Call' => '1.07', 3457 'Getopt::Long' => '2.37', 3458 'Hash::Util::FieldHash' => '1.03', 3459 'IO::Compress::Adapter::Deflate'=> '2.008', 3460 'IO::Compress::Adapter::Identity'=> '2.008', 3461 'IO::Compress::Base' => '2.008', 3462 'IO::Compress::Base::Common'=> '2.008', 3463 'IO::Compress::Deflate' => '2.008', 3464 'IO::Compress::Gzip' => '2.008', 3465 'IO::Compress::Gzip::Constants'=> '2.008', 3466 'IO::Compress::RawDeflate'=> '2.008', 3467 'IO::Compress::Zip' => '2.008', 3468 'IO::Compress::Zip::Constants'=> '2.008', 3469 'IO::Compress::Zlib::Constants'=> '2.008', 3470 'IO::Compress::Zlib::Extra'=> '2.008', 3471 'IO::Uncompress::Adapter::Identity'=> '2.008', 3472 'IO::Uncompress::Adapter::Inflate'=> '2.008', 3473 'IO::Uncompress::AnyInflate'=> '2.008', 3474 'IO::Uncompress::AnyUncompress'=> '2.008', 3475 'IO::Uncompress::Base' => '2.008', 3476 'IO::Uncompress::Gunzip'=> '2.008', 3477 'IO::Uncompress::Inflate'=> '2.008', 3478 'IO::Uncompress::RawInflate'=> '2.008', 3479 'IO::Uncompress::Unzip' => '2.008', 3480 'IO::Zlib' => '1.07', 3481 'IPC::Cmd' => '0.40_1', 3482 'IPC::SysV' => '1.05', 3483 'Locale::Maketext' => '1.12', 3484 'Log::Message::Simple' => '0.04', 3485 'Math::BigFloat' => '1.59', 3486 'Math::BigInt' => '1.88', 3487 'Math::BigInt::Calc' => '0.52', 3488 'Math::BigInt::FastCalc'=> '0.16', 3489 'Math::BigRat' => '0.21', 3490 'Module::Build' => '0.2808_01', 3491 'Module::Build::Base' => '0.2808_01', 3492 'Module::Build::Compat' => '0.2808_01', 3493 'Module::Build::Config' => '0.2808_01', 3494 'Module::Build::Dumper' => undef, 3495 'Module::Build::ModuleInfo'=> '0.2808_01', 3496 'Module::Build::Notes' => '0.2808_01', 3497 'Module::Build::PPMMaker'=> '0.2808_01', 3498 'Module::Build::Platform::Amiga'=> '0.2808_01', 3499 'Module::Build::Platform::Default'=> '0.2808_01', 3500 'Module::Build::Platform::EBCDIC'=> '0.2808_01', 3501 'Module::Build::Platform::MPEiX'=> '0.2808_01', 3502 'Module::Build::Platform::MacOS'=> '0.2808_01', 3503 'Module::Build::Platform::RiscOS'=> '0.2808_01', 3504 'Module::Build::Platform::Unix'=> '0.2808_01', 3505 'Module::Build::Platform::VMS'=> '0.2808_01', 3506 'Module::Build::Platform::VOS'=> '0.2808_01', 3507 'Module::Build::Platform::Windows'=> '0.2808_01', 3508 'Module::Build::Platform::aix'=> '0.2808_01', 3509 'Module::Build::Platform::cygwin'=> '0.2808_01', 3510 'Module::Build::Platform::darwin'=> '0.2808_01', 3511 'Module::Build::Platform::os2'=> '0.2808_01', 3512 'Module::Build::PodParser'=> '0.2808_01', 3513 'Module::CoreList' => '2.13', 3514 'Module::Load' => '0.12', 3515 'Module::Load::Conditional'=> '0.22', 3516 'Net::Cmd' => '2.29', 3517 'Net::Ping' => '2.33', 3518 'Opcode' => '1.11', 3519 'Pod::Checker' => '1.43_01', 3520 'Pod::Man' => '2.16', 3521 'Pod::Perldoc' => '3.14_02', 3522 'Socket' => '1.80', 3523 'Storable' => '2.18', 3524 'Sys::Syslog' => '0.22', 3525 'Sys::Syslog::win32::Win32'=> undef, 3526 'Term::Cap' => '1.12', 3527 'Term::ReadLine' => '1.03', 3528 'Term::UI' => '0.18', 3529 'Test::Builder' => '0.72', 3530 'Test::Builder::Module' => '0.72', 3531 'Test::Builder::Tester' => '1.09', 3532 'Test::Harness::Straps' => '0.26_01', 3533 'Test::More' => '0.72', 3534 'Test::Simple' => '0.72', 3535 'Text::ParseWords' => '3.26', 3536 'Text::Soundex' => '3.03', 3537 'Tie::StdHandle' => undef, 3538 'Time::HiRes' => '1.9711', 3539 'Time::Local' => '1.18', 3540 'Time::Piece' => '1.12', 3541 'VMS::Filespec' => '1.12', 3542 'Win32' => '0.34', 3543 'base' => '2.13', 3544 'constant' => '1.13', 3545 'feature' => '1.11', 3546 'fields' => '2.13', 3547 'filetest' => '1.02', 3548 'open' => '1.06', 3549 'threads' => '1.67', 3550 'threads::shared' => '1.14', 3551 'version' => '0.74', 3552 }, 3553 removed => { 3554 } 3555 }, 3556 5.010001 => { 3557 delta_from => 5.01, 3558 changed => { 3559 'App::Prove' => '3.17', 3560 'App::Prove::State' => '3.17', 3561 'App::Prove::State::Result'=> '3.17', 3562 'App::Prove::State::Result::Test'=> '3.17', 3563 'Archive::Extract' => '0.34', 3564 'Archive::Tar' => '1.52', 3565 'Attribute::Handlers' => '0.85', 3566 'AutoLoader' => '5.68', 3567 'AutoSplit' => '1.06', 3568 'B' => '1.22', 3569 'B::Concise' => '0.76', 3570 'B::Debug' => '1.11', 3571 'B::Deparse' => '0.89', 3572 'B::Lint' => '1.11', 3573 'B::Lint::Debug' => undef, 3574 'B::Xref' => '1.02', 3575 'Benchmark' => '1.11', 3576 'CGI' => '3.43', 3577 'CGI::Carp' => '1.30_01', 3578 'CGI::Cookie' => '1.29', 3579 'CPAN' => '1.9402', 3580 'CPAN::Author' => '5.5', 3581 'CPAN::Bundle' => '5.5', 3582 'CPAN::CacheMgr' => '5.5', 3583 'CPAN::Complete' => '5.5', 3584 'CPAN::Debug' => '5.5', 3585 'CPAN::DeferredCode' => '5.50', 3586 'CPAN::Distribution' => '1.93', 3587 'CPAN::Distroprefs' => '6', 3588 'CPAN::Distrostatus' => '5.5', 3589 'CPAN::Exception::RecursiveDependency'=> '5.5', 3590 'CPAN::Exception::blocked_urllist'=> '1.0', 3591 'CPAN::Exception::yaml_not_installed'=> '5.5', 3592 'CPAN::FTP' => '5.5001', 3593 'CPAN::FTP::netrc' => '1.00', 3594 'CPAN::FirstTime' => '5.53', 3595 'CPAN::HandleConfig' => '5.5', 3596 'CPAN::Index' => '1.93', 3597 'CPAN::InfoObj' => '5.5', 3598 'CPAN::Kwalify' => '5.50', 3599 'CPAN::LWP::UserAgent' => '1.00', 3600 'CPAN::Module' => '5.5', 3601 'CPAN::Nox' => '5.50', 3602 'CPAN::Prompt' => '5.5', 3603 'CPAN::Queue' => '5.5', 3604 'CPAN::Shell' => '5.5', 3605 'CPAN::Tarzip' => '5.501', 3606 'CPAN::URL' => '5.5', 3607 'CPANPLUS' => '0.88', 3608 'CPANPLUS::Dist::Autobundle'=> undef, 3609 'CPANPLUS::Dist::Base' => undef, 3610 'CPANPLUS::Dist::Build' => '0.36', 3611 'CPANPLUS::Dist::Build::Constants'=> '0.36', 3612 'CPANPLUS::Internals' => '0.88', 3613 'CPANPLUS::Internals::Constants'=> undef, 3614 'CPANPLUS::Internals::Constants::Report'=> undef, 3615 'CPANPLUS::Internals::Source::Memory'=> undef, 3616 'CPANPLUS::Internals::Source::SQLite'=> undef, 3617 'CPANPLUS::Internals::Source::SQLite::Tie'=> undef, 3618 'CPANPLUS::Shell::Default'=> '0.88', 3619 'Carp' => '1.11', 3620 'Carp::Heavy' => '1.11', 3621 'Compress::Raw::Bzip2' => '2.020', 3622 'Compress::Raw::Zlib' => '2.020', 3623 'Compress::Zlib' => '2.020', 3624 'Cwd' => '3.30', 3625 'DB' => '1.02', 3626 'DBM_Filter::compress' => '0.02', 3627 'DBM_Filter::encode' => '0.02', 3628 'DBM_Filter::int32' => '0.02', 3629 'DBM_Filter::null' => '0.02', 3630 'DBM_Filter::utf8' => '0.02', 3631 'DB_File' => '1.820', 3632 'Data::Dumper' => '2.124', 3633 'Devel::DProf' => '20080331.00', 3634 'Devel::PPPort' => '3.19', 3635 'Devel::Peek' => '1.04', 3636 'Digest' => '1.16', 3637 'Digest::MD5' => '2.39', 3638 'Digest::SHA' => '5.47', 3639 'Digest::base' => '1.16', 3640 'Digest::file' => '1.16', 3641 'DirHandle' => '1.03', 3642 'Dumpvalue' => '1.13', 3643 'DynaLoader' => '1.10', 3644 'Encode' => '2.35', 3645 'Encode::Alias' => '2.12', 3646 'Encode::CN::HZ' => '2.05', 3647 'Encode::Config' => '2.05', 3648 'Encode::GSM0338' => '2.01', 3649 'Encode::Guess' => '2.03', 3650 'Encode::JP::JIS7' => '2.04', 3651 'Encode::MIME::Header' => '2.11', 3652 'Encode::Unicode' => '2.06', 3653 'Errno' => '1.11', 3654 'Exporter' => '5.63', 3655 'Exporter::Heavy' => '5.63', 3656 'ExtUtils::CBuilder' => '0.2602', 3657 'ExtUtils::CBuilder::Base'=> '0.2602', 3658 'ExtUtils::CBuilder::Platform::Unix'=> '0.2602', 3659 'ExtUtils::CBuilder::Platform::VMS'=> '0.2602', 3660 'ExtUtils::CBuilder::Platform::Windows'=> '0.2602', 3661 'ExtUtils::CBuilder::Platform::aix'=> '0.2602', 3662 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2602', 3663 'ExtUtils::CBuilder::Platform::darwin'=> '0.2602', 3664 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2602', 3665 'ExtUtils::CBuilder::Platform::os2'=> '0.2602', 3666 'ExtUtils::Command' => '1.16', 3667 'ExtUtils::Command::MM' => '6.55_02', 3668 'ExtUtils::Constant' => '0.22', 3669 'ExtUtils::Constant::ProxySubs'=> '0.06', 3670 'ExtUtils::Constant::Utils'=> '0.02', 3671 'ExtUtils::Constant::XS'=> '0.03', 3672 'ExtUtils::Embed' => '1.28', 3673 'ExtUtils::Install' => '1.54', 3674 'ExtUtils::Installed' => '1.999_001', 3675 'ExtUtils::Liblist' => '6.55_02', 3676 'ExtUtils::Liblist::Kid'=> '6.5502', 3677 'ExtUtils::MM' => '6.55_02', 3678 'ExtUtils::MM_AIX' => '6.55_02', 3679 'ExtUtils::MM_Any' => '6.55_02', 3680 'ExtUtils::MM_BeOS' => '6.55_02', 3681 'ExtUtils::MM_Cygwin' => '6.55_02', 3682 'ExtUtils::MM_DOS' => '6.5502', 3683 'ExtUtils::MM_Darwin' => '6.55_02', 3684 'ExtUtils::MM_MacOS' => '6.5502', 3685 'ExtUtils::MM_NW5' => '6.55_02', 3686 'ExtUtils::MM_OS2' => '6.55_02', 3687 'ExtUtils::MM_QNX' => '6.55_02', 3688 'ExtUtils::MM_UWIN' => '6.5502', 3689 'ExtUtils::MM_Unix' => '6.55_02', 3690 'ExtUtils::MM_VMS' => '6.55_02', 3691 'ExtUtils::MM_VOS' => '6.55_02', 3692 'ExtUtils::MM_Win32' => '6.55_02', 3693 'ExtUtils::MM_Win95' => '6.55_02', 3694 'ExtUtils::MY' => '6.5502', 3695 'ExtUtils::MakeMaker' => '6.55_02', 3696 'ExtUtils::MakeMaker::Config'=> '6.55_02', 3697 'ExtUtils::Manifest' => '1.56', 3698 'ExtUtils::Mkbootstrap' => '6.55_02', 3699 'ExtUtils::Mksymlists' => '6.55_02', 3700 'ExtUtils::ParseXS' => '2.2002', 3701 'ExtUtils::testlib' => '6.5502', 3702 'Fatal' => '2.06_01', 3703 'File::Basename' => '2.77', 3704 'File::CheckTree' => '4.4', 3705 'File::Compare' => '1.1006', 3706 'File::Copy' => '2.14', 3707 'File::DosGlob' => '1.01', 3708 'File::Fetch' => '0.20', 3709 'File::Find' => '1.14', 3710 'File::GlobMapper' => '1.000', 3711 'File::Path' => '2.07_03', 3712 'File::Spec' => '3.30', 3713 'File::Spec::Cygwin' => '3.30', 3714 'File::Spec::Epoc' => '3.30', 3715 'File::Spec::Functions' => '3.30', 3716 'File::Spec::Mac' => '3.30', 3717 'File::Spec::OS2' => '3.30', 3718 'File::Spec::Unix' => '3.30', 3719 'File::Spec::VMS' => '3.30', 3720 'File::Spec::Win32' => '3.30', 3721 'File::Temp' => '0.22', 3722 'File::stat' => '1.01', 3723 'FileCache' => '1.08', 3724 'FileHandle' => '2.02', 3725 'Filter::Simple' => '0.84', 3726 'Filter::Util::Call' => '1.08', 3727 'FindBin' => '1.50', 3728 'GDBM_File' => '1.09', 3729 'Getopt::Long' => '2.38', 3730 'Getopt::Std' => '1.06', 3731 'Hash::Util::FieldHash' => '1.04', 3732 'I18N::Collate' => '1.01', 3733 'IO' => '1.25', 3734 'IO::Compress::Adapter::Bzip2'=> '2.020', 3735 'IO::Compress::Adapter::Deflate'=> '2.020', 3736 'IO::Compress::Adapter::Identity'=> '2.020', 3737 'IO::Compress::Base' => '2.020', 3738 'IO::Compress::Base::Common'=> '2.020', 3739 'IO::Compress::Bzip2' => '2.020', 3740 'IO::Compress::Deflate' => '2.020', 3741 'IO::Compress::Gzip' => '2.020', 3742 'IO::Compress::Gzip::Constants'=> '2.020', 3743 'IO::Compress::RawDeflate'=> '2.020', 3744 'IO::Compress::Zip' => '2.020', 3745 'IO::Compress::Zip::Constants'=> '2.020', 3746 'IO::Compress::Zlib::Constants'=> '2.020', 3747 'IO::Compress::Zlib::Extra'=> '2.020', 3748 'IO::Dir' => '1.07', 3749 'IO::Handle' => '1.28', 3750 'IO::Socket' => '1.31', 3751 'IO::Uncompress::Adapter::Bunzip2'=> '2.020', 3752 'IO::Uncompress::Adapter::Identity'=> '2.020', 3753 'IO::Uncompress::Adapter::Inflate'=> '2.020', 3754 'IO::Uncompress::AnyInflate'=> '2.020', 3755 'IO::Uncompress::AnyUncompress'=> '2.020', 3756 'IO::Uncompress::Base' => '2.020', 3757 'IO::Uncompress::Bunzip2'=> '2.020', 3758 'IO::Uncompress::Gunzip'=> '2.020', 3759 'IO::Uncompress::Inflate'=> '2.020', 3760 'IO::Uncompress::RawInflate'=> '2.020', 3761 'IO::Uncompress::Unzip' => '2.020', 3762 'IO::Zlib' => '1.09', 3763 'IPC::Cmd' => '0.46', 3764 'IPC::Msg' => '2.01', 3765 'IPC::Open2' => '1.03', 3766 'IPC::Open3' => '1.04', 3767 'IPC::Semaphore' => '2.01', 3768 'IPC::SharedMem' => '2.01', 3769 'IPC::SysV' => '2.01', 3770 'List::Util' => '1.21', 3771 'List::Util::PP' => '1.21', 3772 'List::Util::XS' => '1.21', 3773 'Locale::Maketext' => '1.13', 3774 'Locale::Maketext::Guts'=> '1.13', 3775 'Locale::Maketext::GutsLoader'=> '1.13', 3776 'Log::Message' => '0.02', 3777 'MIME::Base64' => '3.08', 3778 'MIME::QuotedPrint' => '3.08', 3779 'Math::BigFloat' => '1.60', 3780 'Math::BigInt' => '1.89', 3781 'Math::BigInt::FastCalc'=> '0.19', 3782 'Math::BigRat' => '0.22', 3783 'Math::Complex' => '1.56', 3784 'Math::Trig' => '1.2', 3785 'Memoize' => '1.01_03', 3786 'Module::Build' => '0.340201', 3787 'Module::Build::Base' => '0.340201', 3788 'Module::Build::Compat' => '0.340201', 3789 'Module::Build::Config' => '0.340201', 3790 'Module::Build::Cookbook'=> '0.340201', 3791 'Module::Build::Dumper' => '0.340201', 3792 'Module::Build::ModuleInfo'=> '0.340201', 3793 'Module::Build::Notes' => '0.340201', 3794 'Module::Build::PPMMaker'=> '0.340201', 3795 'Module::Build::Platform::Amiga'=> '0.340201', 3796 'Module::Build::Platform::Default'=> '0.340201', 3797 'Module::Build::Platform::EBCDIC'=> '0.340201', 3798 'Module::Build::Platform::MPEiX'=> '0.340201', 3799 'Module::Build::Platform::MacOS'=> '0.340201', 3800 'Module::Build::Platform::RiscOS'=> '0.340201', 3801 'Module::Build::Platform::Unix'=> '0.340201', 3802 'Module::Build::Platform::VMS'=> '0.340201', 3803 'Module::Build::Platform::VOS'=> '0.340201', 3804 'Module::Build::Platform::Windows'=> '0.340201', 3805 'Module::Build::Platform::aix'=> '0.340201', 3806 'Module::Build::Platform::cygwin'=> '0.340201', 3807 'Module::Build::Platform::darwin'=> '0.340201', 3808 'Module::Build::Platform::os2'=> '0.340201', 3809 'Module::Build::PodParser'=> '0.340201', 3810 'Module::Build::Version'=> '0.77', 3811 'Module::CoreList' => '2.18', 3812 'Module::Load' => '0.16', 3813 'Module::Load::Conditional'=> '0.30', 3814 'Module::Loaded' => '0.02', 3815 'Module::Pluggable' => '3.9', 3816 'Module::Pluggable::Object'=> '3.9', 3817 'NDBM_File' => '1.08', 3818 'NEXT' => '0.64', 3819 'Net::Ping' => '2.36', 3820 'O' => '1.01', 3821 'OS2::Process' => '1.03', 3822 'OS2::REXX' => '1.04', 3823 'Object::Accessor' => '0.34', 3824 'POSIX' => '1.17', 3825 'Package::Constants' => '0.02', 3826 'Parse::CPAN::Meta' => '1.39', 3827 'PerlIO' => '1.06', 3828 'PerlIO::encoding' => '0.11', 3829 'PerlIO::scalar' => '0.07', 3830 'PerlIO::via' => '0.07', 3831 'Pod::Checker' => '1.45', 3832 'Pod::Find' => '1.35', 3833 'Pod::Html' => '1.09', 3834 'Pod::InputObjects' => '1.31', 3835 'Pod::Man' => '2.22', 3836 'Pod::ParseLink' => '1.09', 3837 'Pod::ParseUtils' => '1.36', 3838 'Pod::Parser' => '1.37', 3839 'Pod::Perldoc' => '3.14_04', 3840 'Pod::PlainText' => '2.04', 3841 'Pod::Select' => '1.36', 3842 'Pod::Simple' => '3.07', 3843 'Pod::Simple::XHTML' => '3.04', 3844 'Pod::Text' => '3.13', 3845 'Pod::Text::Color' => '2.05', 3846 'Pod::Text::Overstrike' => '2.03', 3847 'Pod::Text::Termcap' => '2.05', 3848 'Pod::Usage' => '1.36', 3849 'Safe' => '2.18', 3850 'Scalar::Util' => '1.21', 3851 'Scalar::Util::PP' => '1.21', 3852 'SelectSaver' => '1.02', 3853 'SelfLoader' => '1.17', 3854 'Socket' => '1.82', 3855 'Storable' => '2.20', 3856 'Switch' => '2.14', 3857 'Symbol' => '1.07', 3858 'Sys::Syslog' => '0.27', 3859 'TAP::Base' => '3.17', 3860 'TAP::Formatter::Base' => '3.17', 3861 'TAP::Formatter::Color' => '3.17', 3862 'TAP::Formatter::Console'=> '3.17', 3863 'TAP::Formatter::Console::ParallelSession'=> '3.17', 3864 'TAP::Formatter::Console::Session'=> '3.17', 3865 'TAP::Formatter::File' => '3.17', 3866 'TAP::Formatter::File::Session'=> '3.17', 3867 'TAP::Formatter::Session'=> '3.17', 3868 'TAP::Harness' => '3.17', 3869 'TAP::Object' => '3.17', 3870 'TAP::Parser' => '3.17', 3871 'TAP::Parser::Aggregator'=> '3.17', 3872 'TAP::Parser::Grammar' => '3.17', 3873 'TAP::Parser::Iterator' => '3.17', 3874 'TAP::Parser::Iterator::Array'=> '3.17', 3875 'TAP::Parser::Iterator::Process'=> '3.17', 3876 'TAP::Parser::Iterator::Stream'=> '3.17', 3877 'TAP::Parser::IteratorFactory'=> '3.17', 3878 'TAP::Parser::Multiplexer'=> '3.17', 3879 'TAP::Parser::Result' => '3.17', 3880 'TAP::Parser::Result::Bailout'=> '3.17', 3881 'TAP::Parser::Result::Comment'=> '3.17', 3882 'TAP::Parser::Result::Plan'=> '3.17', 3883 'TAP::Parser::Result::Pragma'=> '3.17', 3884 'TAP::Parser::Result::Test'=> '3.17', 3885 'TAP::Parser::Result::Unknown'=> '3.17', 3886 'TAP::Parser::Result::Version'=> '3.17', 3887 'TAP::Parser::Result::YAML'=> '3.17', 3888 'TAP::Parser::ResultFactory'=> '3.17', 3889 'TAP::Parser::Scheduler'=> '3.17', 3890 'TAP::Parser::Scheduler::Job'=> '3.17', 3891 'TAP::Parser::Scheduler::Spinner'=> '3.17', 3892 'TAP::Parser::Source' => '3.17', 3893 'TAP::Parser::Source::Perl'=> '3.17', 3894 'TAP::Parser::Utils' => '3.17', 3895 'TAP::Parser::YAMLish::Reader'=> '3.17', 3896 'TAP::Parser::YAMLish::Writer'=> '3.17', 3897 'Term::ANSIColor' => '2.00', 3898 'Term::ReadLine' => '1.04', 3899 'Term::UI' => '0.20', 3900 'Test' => '1.25_02', 3901 'Test::Builder' => '0.92', 3902 'Test::Builder::Module' => '0.92', 3903 'Test::Builder::Tester' => '1.18', 3904 'Test::Builder::Tester::Color'=> '1.18', 3905 'Test::Harness' => '3.17', 3906 'Test::More' => '0.92', 3907 'Test::Simple' => '0.92', 3908 'Text::ParseWords' => '3.27', 3909 'Text::Tabs' => '2009.0305', 3910 'Text::Wrap' => '2009.0305', 3911 'Thread::Queue' => '2.11', 3912 'Thread::Semaphore' => '2.09', 3913 'Tie::Handle' => '4.2', 3914 'Tie::Hash' => '1.03', 3915 'Tie::RefHash' => '1.38', 3916 'Tie::Scalar' => '1.01', 3917 'Tie::StdHandle' => '4.2', 3918 'Time::HiRes' => '1.9719', 3919 'Time::Local' => '1.1901', 3920 'Time::Piece' => '1.15', 3921 'UNIVERSAL' => '1.05', 3922 'Unicode' => '5.1.0', 3923 'Unicode::Normalize' => '1.03', 3924 'Unicode::UCD' => '0.27', 3925 'VMS::Stdio' => '2.4', 3926 'Win32' => '0.39', 3927 'Win32API::File' => '0.1101', 3928 'XS::APItest' => '0.15', 3929 'XS::Typemap' => '0.03', 3930 'XSLoader' => '0.10', 3931 'attributes' => '0.09', 3932 'attrs' => '1.03', 3933 'autodie' => '2.06_01', 3934 'autodie::exception' => '2.06_01', 3935 'autodie::exception::system'=> '2.06_01', 3936 'autodie::hints' => '2.06_01', 3937 'base' => '2.14', 3938 'bigint' => '0.23', 3939 'bignum' => '0.23', 3940 'bigrat' => '0.23', 3941 'blib' => '1.04', 3942 'charnames' => '1.07', 3943 'constant' => '1.17', 3944 'encoding' => '2.6_01', 3945 'feature' => '1.13', 3946 'fields' => '2.14', 3947 'lib' => '0.62', 3948 'mro' => '1.01', 3949 'open' => '1.07', 3950 'ops' => '1.02', 3951 'overload' => '1.07', 3952 'overload::numbers' => undef, 3953 'overloading' => '0.01', 3954 'parent' => '0.221', 3955 're' => '0.09', 3956 'threads' => '1.72', 3957 'threads::shared' => '1.29', 3958 'version' => '0.77', 3959 }, 3960 removed => { 3961 'CPAN::API::HOWTO' => 1, 3962 'CPAN::DeferedCode' => 1, 3963 'CPANPLUS::inc' => 1, 3964 'ExtUtils::MakeMaker::bytes'=> 1, 3965 'ExtUtils::MakeMaker::vmsish'=> 1, 3966 'Test::Harness::Assert' => 1, 3967 'Test::Harness::Iterator'=> 1, 3968 'Test::Harness::Point' => 1, 3969 'Test::Harness::Results'=> 1, 3970 'Test::Harness::Straps' => 1, 3971 'Test::Harness::Util' => 1, 3972 } 3973 }, 3974 5.011 => { 3975 delta_from => 5.010001, 3976 changed => { 3977 'Archive::Tar' => '1.54', 3978 'Attribute::Handlers' => '0.87', 3979 'AutoLoader' => '5.70', 3980 'B::Deparse' => '0.91', 3981 'B::Lint' => '1.11_01', 3982 'B::Lint::Debug' => '0.01', 3983 'CGI' => '3.45', 3984 'CGI::Apache' => '1.01', 3985 'CGI::Carp' => '3.45', 3986 'CGI::Pretty' => '3.44', 3987 'CGI::Switch' => '1.01', 3988 'CGI::Util' => '3.45', 3989 'CPAN' => '1.94_51', 3990 'CPAN::Distribution' => '1.94', 3991 'CPAN::FTP' => '5.5002', 3992 'CPAN::Index' => '1.94', 3993 'CPAN::LWP::UserAgent' => '1.94', 3994 'CPANPLUS::Dist::Build' => '0.40', 3995 'CPANPLUS::Dist::Build::Constants'=> '0.40', 3996 'Carp' => '1.12', 3997 'Carp::Heavy' => '1.12', 3998 'Class::ISA' => '0.36', 3999 'Compress::Raw::Bzip2' => '2.021', 4000 'Compress::Raw::Zlib' => '2.021', 4001 'Compress::Zlib' => '2.021', 4002 'Cwd' => '3.3002', 4003 'Data::Dumper' => '2.125', 4004 'Encode' => '2.37', 4005 'Exporter' => '5.64', 4006 'Exporter::Heavy' => '5.64', 4007 'ExtUtils::ParseXS' => '2.200403', 4008 'File::Basename' => '2.78', 4009 'File::Copy' => '2.16', 4010 'File::stat' => '1.02', 4011 'IO' => '1.25_01', 4012 'IO::Compress::Adapter::Bzip2'=> '2.021', 4013 'IO::Compress::Adapter::Deflate'=> '2.021', 4014 'IO::Compress::Adapter::Identity'=> '2.021', 4015 'IO::Compress::Base' => '2.021', 4016 'IO::Compress::Base::Common'=> '2.021', 4017 'IO::Compress::Bzip2' => '2.021', 4018 'IO::Compress::Deflate' => '2.021', 4019 'IO::Compress::Gzip' => '2.021', 4020 'IO::Compress::Gzip::Constants'=> '2.021', 4021 'IO::Compress::RawDeflate'=> '2.021', 4022 'IO::Compress::Zip' => '2.021', 4023 'IO::Compress::Zip::Constants'=> '2.021', 4024 'IO::Compress::Zlib::Constants'=> '2.021', 4025 'IO::Compress::Zlib::Extra'=> '2.021', 4026 'IO::Uncompress::Adapter::Bunzip2'=> '2.021', 4027 'IO::Uncompress::Adapter::Identity'=> '2.021', 4028 'IO::Uncompress::Adapter::Inflate'=> '2.021', 4029 'IO::Uncompress::AnyInflate'=> '2.021', 4030 'IO::Uncompress::AnyUncompress'=> '2.021', 4031 'IO::Uncompress::Base' => '2.021', 4032 'IO::Uncompress::Bunzip2'=> '2.021', 4033 'IO::Uncompress::Gunzip'=> '2.021', 4034 'IO::Uncompress::Inflate'=> '2.021', 4035 'IO::Uncompress::RawInflate'=> '2.021', 4036 'IO::Uncompress::Unzip' => '2.021', 4037 'IO::Zlib' => '1.10', 4038 'IPC::Cmd' => '0.50', 4039 'IPC::Open3' => '1.05', 4040 'Locale::Maketext::Simple'=> '0.21', 4041 'Log::Message::Simple' => '0.06', 4042 'Math::BigInt' => '1.89_01', 4043 'Math::BigRat' => '0.24', 4044 'Module::Build' => '0.35', 4045 'Module::Build::Base' => '0.35', 4046 'Module::Build::Compat' => '0.35', 4047 'Module::Build::Config' => '0.35', 4048 'Module::Build::Cookbook'=> '0.35', 4049 'Module::Build::Dumper' => '0.35', 4050 'Module::Build::ModuleInfo'=> '0.35', 4051 'Module::Build::Notes' => '0.35', 4052 'Module::Build::PPMMaker'=> '0.35', 4053 'Module::Build::Platform::Amiga'=> '0.35', 4054 'Module::Build::Platform::Default'=> '0.35', 4055 'Module::Build::Platform::EBCDIC'=> '0.35', 4056 'Module::Build::Platform::MPEiX'=> '0.35', 4057 'Module::Build::Platform::MacOS'=> '0.35', 4058 'Module::Build::Platform::RiscOS'=> '0.35', 4059 'Module::Build::Platform::Unix'=> '0.35', 4060 'Module::Build::Platform::VMS'=> '0.35', 4061 'Module::Build::Platform::VOS'=> '0.35', 4062 'Module::Build::Platform::Windows'=> '0.35', 4063 'Module::Build::Platform::aix'=> '0.35', 4064 'Module::Build::Platform::cygwin'=> '0.35', 4065 'Module::Build::Platform::darwin'=> '0.35', 4066 'Module::Build::Platform::os2'=> '0.35', 4067 'Module::Build::PodParser'=> '0.35', 4068 'Module::CoreList' => '2.19', 4069 'Module::Loaded' => '0.06', 4070 'Opcode' => '1.13', 4071 'PerlIO::via' => '0.08', 4072 'Pod::Perldoc' => '3.15_01', 4073 'Pod::Plainer' => '1.01', 4074 'Safe' => '2.19', 4075 'Socket' => '1.84', 4076 'Switch' => '2.14_01', 4077 'Term::ANSIColor' => '2.02', 4078 'Term::ReadLine' => '1.05', 4079 'Text::Balanced' => '2.02', 4080 'Text::Soundex' => '3.03_01', 4081 'Time::Local' => '1.1901_01', 4082 'Unicode::Collate' => '0.52_01', 4083 'attributes' => '0.12', 4084 'constant' => '1.19', 4085 'deprecate' => '0.01', 4086 'overload' => '1.08', 4087 'parent' => '0.223', 4088 're' => '0.10', 4089 'threads' => '1.74', 4090 'threads::shared' => '1.31', 4091 'warnings' => '1.07', 4092 }, 4093 removed => { 4094 'attrs' => 1, 4095 } 4096 }, 4097 5.011001 => { 4098 delta_from => 5.011, 4099 changed => { 4100 'B' => '1.23', 4101 'B::Concise' => '0.77', 4102 'B::Deparse' => '0.92', 4103 'CGI' => '3.48', 4104 'CGI::Pretty' => '3.46', 4105 'CGI::Util' => '3.48', 4106 'CPANPLUS' => '0.89_03', 4107 'CPANPLUS::Internals' => '0.89_03', 4108 'CPANPLUS::Shell::Default'=> '0.89_03', 4109 'Carp' => '1.13', 4110 'Carp::Heavy' => '1.13', 4111 'ExtUtils::CBuilder' => '0.260301', 4112 'ExtUtils::CBuilder::Base'=> '0.260301', 4113 'ExtUtils::CBuilder::Platform::Unix'=> '0.260301', 4114 'ExtUtils::CBuilder::Platform::VMS'=> '0.260301', 4115 'ExtUtils::CBuilder::Platform::Windows'=> '0.260301', 4116 'ExtUtils::CBuilder::Platform::aix'=> '0.260301', 4117 'ExtUtils::CBuilder::Platform::cygwin'=> '0.260301', 4118 'ExtUtils::CBuilder::Platform::darwin'=> '0.260301', 4119 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.260301', 4120 'ExtUtils::CBuilder::Platform::os2'=> '0.260301', 4121 'ExtUtils::Install' => '1.55', 4122 'ExtUtils::Manifest' => '1.57', 4123 'ExtUtils::Packlist' => '1.44', 4124 'ExtUtils::ParseXS' => '2.21', 4125 'File::Glob' => '1.07', 4126 'File::Path' => '2.08', 4127 'IO' => '1.25_02', 4128 'Module::CoreList' => '2.21', 4129 'OS2::DLL' => '1.04', 4130 'OS2::Process' => '1.04', 4131 'Object::Accessor' => '0.36', 4132 'Opcode' => '1.15', 4133 'POSIX' => '1.18', 4134 'Parse::CPAN::Meta' => '1.40', 4135 'PerlIO::via' => '0.09', 4136 'Pod::Simple' => '3.08', 4137 'Socket' => '1.85', 4138 'Storable' => '2.22', 4139 'Switch' => '2.15', 4140 'Test::Builder' => '0.94', 4141 'Test::Builder::Module' => '0.94', 4142 'Test::More' => '0.94', 4143 'Test::Simple' => '0.94', 4144 'XS::APItest' => '0.16', 4145 'mro' => '1.02', 4146 'overload' => '1.09', 4147 'threads::shared' => '1.32', 4148 }, 4149 removed => { 4150 } 4151 }, 4152 5.011002 => { 4153 delta_from => 5.011001, 4154 changed => { 4155 'B::Concise' => '0.78', 4156 'B::Deparse' => '0.93', 4157 'CPANPLUS' => '0.89_09', 4158 'CPANPLUS::Dist::Build' => '0.44', 4159 'CPANPLUS::Dist::Build::Constants'=> '0.44', 4160 'CPANPLUS::Internals' => '0.89_09', 4161 'CPANPLUS::Shell::Default'=> '0.89_09', 4162 'Carp' => '1.14', 4163 'Carp::Heavy' => '1.14', 4164 'Compress::Zlib' => '2.022', 4165 'DBM_Filter' => '0.03', 4166 'Encode' => '2.38', 4167 'Encode::Byte' => '2.04', 4168 'Encode::CN' => '2.03', 4169 'Encode::JP' => '2.04', 4170 'Encode::KR' => '2.03', 4171 'Encode::TW' => '2.03', 4172 'Encode::Unicode' => '2.07', 4173 'Env' => '1.01', 4174 'Exporter' => '5.64_01', 4175 'Exporter::Heavy' => '5.64_01', 4176 'ExtUtils::CBuilder' => '0.27', 4177 'ExtUtils::CBuilder::Base'=> '0.27', 4178 'ExtUtils::CBuilder::Platform::Unix'=> '0.27', 4179 'ExtUtils::CBuilder::Platform::VMS'=> '0.27', 4180 'ExtUtils::CBuilder::Platform::Windows'=> '0.27', 4181 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.27', 4182 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.27', 4183 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.27', 4184 'ExtUtils::CBuilder::Platform::aix'=> '0.27', 4185 'ExtUtils::CBuilder::Platform::cygwin'=> '0.27', 4186 'ExtUtils::CBuilder::Platform::darwin'=> '0.27', 4187 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.27', 4188 'ExtUtils::CBuilder::Platform::os2'=> '0.27', 4189 'File::Fetch' => '0.22', 4190 'I18N::LangTags::Detect'=> '1.04', 4191 'I18N::Langinfo' => '0.03', 4192 'IO::Compress::Adapter::Bzip2'=> '2.022', 4193 'IO::Compress::Adapter::Deflate'=> '2.022', 4194 'IO::Compress::Adapter::Identity'=> '2.022', 4195 'IO::Compress::Base' => '2.022', 4196 'IO::Compress::Base::Common'=> '2.022', 4197 'IO::Compress::Bzip2' => '2.022', 4198 'IO::Compress::Deflate' => '2.022', 4199 'IO::Compress::Gzip' => '2.022', 4200 'IO::Compress::Gzip::Constants'=> '2.022', 4201 'IO::Compress::RawDeflate'=> '2.022', 4202 'IO::Compress::Zip' => '2.022', 4203 'IO::Compress::Zip::Constants'=> '2.022', 4204 'IO::Compress::Zlib::Constants'=> '2.022', 4205 'IO::Compress::Zlib::Extra'=> '2.022', 4206 'IO::Uncompress::Adapter::Bunzip2'=> '2.022', 4207 'IO::Uncompress::Adapter::Identity'=> '2.022', 4208 'IO::Uncompress::Adapter::Inflate'=> '2.022', 4209 'IO::Uncompress::AnyInflate'=> '2.022', 4210 'IO::Uncompress::AnyUncompress'=> '2.022', 4211 'IO::Uncompress::Base' => '2.022', 4212 'IO::Uncompress::Bunzip2'=> '2.022', 4213 'IO::Uncompress::Gunzip'=> '2.022', 4214 'IO::Uncompress::Inflate'=> '2.022', 4215 'IO::Uncompress::RawInflate'=> '2.022', 4216 'IO::Uncompress::Unzip' => '2.022', 4217 'IPC::Cmd' => '0.54', 4218 'List::Util' => '1.22', 4219 'List::Util::PP' => '1.22', 4220 'List::Util::XS' => '1.22', 4221 'Locale::Maketext' => '1.14', 4222 'Module::Build' => '0.35_09', 4223 'Module::Build::Base' => '0.35_09', 4224 'Module::Build::Compat' => '0.35_09', 4225 'Module::Build::Config' => '0.35_09', 4226 'Module::Build::Cookbook'=> '0.35_09', 4227 'Module::Build::Dumper' => '0.35_09', 4228 'Module::Build::ModuleInfo'=> '0.35_09', 4229 'Module::Build::Notes' => '0.35_09', 4230 'Module::Build::PPMMaker'=> '0.35_09', 4231 'Module::Build::Platform::Amiga'=> '0.35_09', 4232 'Module::Build::Platform::Default'=> '0.35_09', 4233 'Module::Build::Platform::EBCDIC'=> '0.35_09', 4234 'Module::Build::Platform::MPEiX'=> '0.35_09', 4235 'Module::Build::Platform::MacOS'=> '0.35_09', 4236 'Module::Build::Platform::RiscOS'=> '0.35_09', 4237 'Module::Build::Platform::Unix'=> '0.35_09', 4238 'Module::Build::Platform::VMS'=> '0.35_09', 4239 'Module::Build::Platform::VOS'=> '0.35_09', 4240 'Module::Build::Platform::Windows'=> '0.35_09', 4241 'Module::Build::Platform::aix'=> '0.35_09', 4242 'Module::Build::Platform::cygwin'=> '0.35_09', 4243 'Module::Build::Platform::darwin'=> '0.35_09', 4244 'Module::Build::Platform::os2'=> '0.35_09', 4245 'Module::Build::PodParser'=> '0.35_09', 4246 'Module::Build::YAML' => '1.40', 4247 'Module::CoreList' => '2.23', 4248 'Module::Load::Conditional'=> '0.34', 4249 'Pod::Simple' => '3.10', 4250 'Pod::Simple::XHTML' => '3.10', 4251 'Scalar::Util' => '1.22', 4252 'Scalar::Util::PP' => '1.22', 4253 'Switch' => '2.16', 4254 'XS::APItest' => '0.17', 4255 'XS::APItest::KeywordRPN'=> '0.003', 4256 'base' => '2.15', 4257 'diagnostics' => '1.18', 4258 'fields' => '2.15', 4259 'inc::latest' => '0.35_09', 4260 'legacy' => '1.00', 4261 'overload' => '1.10', 4262 }, 4263 removed => { 4264 } 4265 }, 4266 5.011003 => { 4267 delta_from => 5.011002, 4268 changed => { 4269 'App::Cpan' => '1.570001', 4270 'Archive::Extract' => '0.36', 4271 'CPAN' => '1.94_5301', 4272 'CPAN::FTP' => '5.5004', 4273 'CPAN::FirstTime' => '5.530001', 4274 'CPAN::Mirrors' => '1.770001', 4275 'CPANPLUS' => '0.90', 4276 'CPANPLUS::Internals' => '0.90', 4277 'CPANPLUS::Shell::Default'=> '0.90', 4278 'Cwd' => '3.31', 4279 'Encode' => '2.39', 4280 'ExtUtils::Command::MM' => '6.56', 4281 'ExtUtils::Liblist' => '6.56', 4282 'ExtUtils::Liblist::Kid'=> '6.56', 4283 'ExtUtils::MM' => '6.56', 4284 'ExtUtils::MM_AIX' => '6.56', 4285 'ExtUtils::MM_Any' => '6.56', 4286 'ExtUtils::MM_BeOS' => '6.56', 4287 'ExtUtils::MM_Cygwin' => '6.56', 4288 'ExtUtils::MM_DOS' => '6.56', 4289 'ExtUtils::MM_Darwin' => '6.56', 4290 'ExtUtils::MM_MacOS' => '6.56', 4291 'ExtUtils::MM_NW5' => '6.56', 4292 'ExtUtils::MM_OS2' => '6.56', 4293 'ExtUtils::MM_QNX' => '6.56', 4294 'ExtUtils::MM_UWIN' => '6.56', 4295 'ExtUtils::MM_Unix' => '6.56', 4296 'ExtUtils::MM_VMS' => '6.56', 4297 'ExtUtils::MM_VOS' => '6.56', 4298 'ExtUtils::MM_Win32' => '6.56', 4299 'ExtUtils::MM_Win95' => '6.56', 4300 'ExtUtils::MY' => '6.56', 4301 'ExtUtils::MakeMaker' => '6.56', 4302 'ExtUtils::MakeMaker::Config'=> '6.56', 4303 'ExtUtils::Mkbootstrap' => '6.56', 4304 'ExtUtils::Mksymlists' => '6.56', 4305 'ExtUtils::testlib' => '6.56', 4306 'File::Find' => '1.15', 4307 'File::Path' => '2.08_01', 4308 'File::Spec' => '3.31', 4309 'Module::Build' => '0.36', 4310 'Module::Build::Base' => '0.36', 4311 'Module::Build::Compat' => '0.36', 4312 'Module::Build::Config' => '0.36', 4313 'Module::Build::Cookbook'=> '0.36', 4314 'Module::Build::Dumper' => '0.36', 4315 'Module::Build::ModuleInfo'=> '0.36', 4316 'Module::Build::Notes' => '0.36', 4317 'Module::Build::PPMMaker'=> '0.36', 4318 'Module::Build::Platform::Amiga'=> '0.36', 4319 'Module::Build::Platform::Default'=> '0.36', 4320 'Module::Build::Platform::EBCDIC'=> '0.36', 4321 'Module::Build::Platform::MPEiX'=> '0.36', 4322 'Module::Build::Platform::MacOS'=> '0.36', 4323 'Module::Build::Platform::RiscOS'=> '0.36', 4324 'Module::Build::Platform::Unix'=> '0.36', 4325 'Module::Build::Platform::VMS'=> '0.36', 4326 'Module::Build::Platform::VOS'=> '0.36', 4327 'Module::Build::Platform::Windows'=> '0.36', 4328 'Module::Build::Platform::aix'=> '0.36', 4329 'Module::Build::Platform::cygwin'=> '0.36', 4330 'Module::Build::Platform::darwin'=> '0.36', 4331 'Module::Build::Platform::os2'=> '0.36', 4332 'Module::Build::PodParser'=> '0.36', 4333 'Module::CoreList' => '2.24', 4334 'POSIX' => '1.19', 4335 'Pod::Simple' => '3.13', 4336 'Pod::Simple::BlackBox' => '3.13', 4337 'Pod::Simple::Checker' => '3.13', 4338 'Pod::Simple::Debug' => '3.13', 4339 'Pod::Simple::DumpAsText'=> '3.13', 4340 'Pod::Simple::DumpAsXML'=> '3.13', 4341 'Pod::Simple::HTML' => '3.13', 4342 'Pod::Simple::HTMLBatch'=> '3.13', 4343 'Pod::Simple::LinkSection'=> '3.13', 4344 'Pod::Simple::Methody' => '3.13', 4345 'Pod::Simple::Progress' => '3.13', 4346 'Pod::Simple::PullParser'=> '3.13', 4347 'Pod::Simple::PullParserEndToken'=> '3.13', 4348 'Pod::Simple::PullParserStartToken'=> '3.13', 4349 'Pod::Simple::PullParserTextToken'=> '3.13', 4350 'Pod::Simple::PullParserToken'=> '3.13', 4351 'Pod::Simple::RTF' => '3.13', 4352 'Pod::Simple::Search' => '3.13', 4353 'Pod::Simple::SimpleTree'=> '3.13', 4354 'Pod::Simple::Text' => '3.13', 4355 'Pod::Simple::TextContent'=> '3.13', 4356 'Pod::Simple::TiedOutFH'=> '3.13', 4357 'Pod::Simple::Transcode'=> '3.13', 4358 'Pod::Simple::TranscodeDumb'=> '3.13', 4359 'Pod::Simple::TranscodeSmart'=> '3.13', 4360 'Pod::Simple::XHTML' => '3.13', 4361 'Pod::Simple::XMLOutStream'=> '3.13', 4362 'Safe' => '2.20', 4363 'Unicode' => '5.2.0', 4364 'constant' => '1.20', 4365 'diagnostics' => '1.19', 4366 'feature' => '1.14', 4367 'inc::latest' => '0.36', 4368 'threads' => '1.75', 4369 'warnings' => '1.08', 4370 }, 4371 removed => { 4372 'legacy' => 1, 4373 } 4374 }, 4375 5.011004 => { 4376 delta_from => 5.011003, 4377 changed => { 4378 'App::Cpan' => '1.5701', 4379 'Archive::Extract' => '0.38', 4380 'B::Deparse' => '0.94', 4381 'CPAN' => '1.94_54', 4382 'CPAN::FirstTime' => '5.53', 4383 'CPAN::Mirrors' => '1.77', 4384 'Carp' => '1.15', 4385 'Carp::Heavy' => '1.15', 4386 'Compress::Raw::Bzip2' => '2.024', 4387 'Compress::Raw::Zlib' => '2.024', 4388 'Compress::Zlib' => '2.024', 4389 'File::Copy' => '2.17', 4390 'File::Fetch' => '0.24', 4391 'GDBM_File' => '1.10', 4392 'IO::Compress::Adapter::Bzip2'=> '2.024', 4393 'IO::Compress::Adapter::Deflate'=> '2.024', 4394 'IO::Compress::Adapter::Identity'=> '2.024', 4395 'IO::Compress::Base' => '2.024', 4396 'IO::Compress::Base::Common'=> '2.024', 4397 'IO::Compress::Bzip2' => '2.024', 4398 'IO::Compress::Deflate' => '2.024', 4399 'IO::Compress::Gzip' => '2.024', 4400 'IO::Compress::Gzip::Constants'=> '2.024', 4401 'IO::Compress::RawDeflate'=> '2.024', 4402 'IO::Compress::Zip' => '2.024', 4403 'IO::Compress::Zip::Constants'=> '2.024', 4404 'IO::Compress::Zlib::Constants'=> '2.024', 4405 'IO::Compress::Zlib::Extra'=> '2.024', 4406 'IO::Uncompress::Adapter::Bunzip2'=> '2.024', 4407 'IO::Uncompress::Adapter::Identity'=> '2.024', 4408 'IO::Uncompress::Adapter::Inflate'=> '2.024', 4409 'IO::Uncompress::AnyInflate'=> '2.024', 4410 'IO::Uncompress::AnyUncompress'=> '2.024', 4411 'IO::Uncompress::Base' => '2.024', 4412 'IO::Uncompress::Bunzip2'=> '2.024', 4413 'IO::Uncompress::Gunzip'=> '2.024', 4414 'IO::Uncompress::Inflate'=> '2.024', 4415 'IO::Uncompress::RawInflate'=> '2.024', 4416 'IO::Uncompress::Unzip' => '2.024', 4417 'Module::Build' => '0.3603', 4418 'Module::Build::Base' => '0.3603', 4419 'Module::Build::Compat' => '0.3603', 4420 'Module::Build::Config' => '0.3603', 4421 'Module::Build::Cookbook'=> '0.3603', 4422 'Module::Build::Dumper' => '0.3603', 4423 'Module::Build::ModuleInfo'=> '0.3603', 4424 'Module::Build::Notes' => '0.3603', 4425 'Module::Build::PPMMaker'=> '0.3603', 4426 'Module::Build::Platform::Amiga'=> '0.3603', 4427 'Module::Build::Platform::Default'=> '0.3603', 4428 'Module::Build::Platform::EBCDIC'=> '0.3603', 4429 'Module::Build::Platform::MPEiX'=> '0.3603', 4430 'Module::Build::Platform::MacOS'=> '0.3603', 4431 'Module::Build::Platform::RiscOS'=> '0.3603', 4432 'Module::Build::Platform::Unix'=> '0.3603', 4433 'Module::Build::Platform::VMS'=> '0.3603', 4434 'Module::Build::Platform::VOS'=> '0.3603', 4435 'Module::Build::Platform::Windows'=> '0.3603', 4436 'Module::Build::Platform::aix'=> '0.3603', 4437 'Module::Build::Platform::cygwin'=> '0.3603', 4438 'Module::Build::Platform::darwin'=> '0.3603', 4439 'Module::Build::Platform::os2'=> '0.3603', 4440 'Module::Build::PodParser'=> '0.3603', 4441 'Module::CoreList' => '2.25', 4442 'PerlIO::encoding' => '0.12', 4443 'Safe' => '2.21', 4444 'UNIVERSAL' => '1.06', 4445 'feature' => '1.15', 4446 'inc::latest' => '0.3603', 4447 'less' => '0.03', 4448 're' => '0.11', 4449 'version' => '0.81', 4450 'warnings' => '1.09', 4451 }, 4452 removed => { 4453 } 4454 }, 4455 5.011005 => { 4456 delta_from => 5.011004, 4457 changed => { 4458 'B::Debug' => '1.12', 4459 'CPAN' => '1.94_56', 4460 'CPAN::Debug' => '5.5001', 4461 'CPAN::Distribution' => '1.9456', 4462 'CPAN::FirstTime' => '5.5301', 4463 'CPAN::HandleConfig' => '5.5001', 4464 'CPAN::Shell' => '5.5001', 4465 'CPAN::Tarzip' => '5.5011', 4466 'CPANPLUS::Dist::Build' => '0.46', 4467 'CPANPLUS::Dist::Build::Constants'=> '0.46', 4468 'Module::CoreList' => '2.26', 4469 'Pod::Man' => '2.23', 4470 'Pod::ParseLink' => '1.10', 4471 'Pod::Perldoc' => '3.15_02', 4472 'Pod::Plainer' => '1.02', 4473 'Pod::Text' => '3.14', 4474 'Pod::Text::Color' => '2.06', 4475 'Pod::Text::Overstrike' => '2.04', 4476 'Pod::Text::Termcap' => '2.06', 4477 'Safe' => '2.22', 4478 'Socket' => '1.86', 4479 'version' => '0.82', 4480 }, 4481 removed => { 4482 } 4483 }, 4484 5.012 => { 4485 delta_from => 5.011005, 4486 changed => { 4487 'B::Deparse' => '0.96', 4488 'CPAN::Distribution' => '1.9456_01', 4489 'Module::CoreList' => '2.29', 4490 'Safe' => '2.25', 4491 'Socket' => '1.87', 4492 'Tie::Scalar' => '1.02', 4493 'Time::Piece' => '1.15_01', 4494 'bytes' => '1.04', 4495 'feature' => '1.16', 4496 'utf8' => '1.08', 4497 }, 4498 removed => { 4499 } 4500 }, 4501 5.012001 => { 4502 delta_from => 5.012, 4503 changed => { 4504 'B::Deparse' => '0.97', 4505 'CGI' => '3.49', 4506 'CGI::Fast' => '1.08', 4507 'Carp' => '1.16', 4508 'Carp::Heavy' => '1.16', 4509 'File::Copy' => '2.18', 4510 'Module::CoreList' => '2.32', 4511 'Pod::Functions' => '1.04', 4512 'Pod::Simple' => '3.14', 4513 'Pod::Simple::BlackBox' => '3.14', 4514 'Pod::Simple::Checker' => '3.14', 4515 'Pod::Simple::Debug' => '3.14', 4516 'Pod::Simple::DumpAsText'=> '3.14', 4517 'Pod::Simple::DumpAsXML'=> '3.14', 4518 'Pod::Simple::HTML' => '3.14', 4519 'Pod::Simple::HTMLBatch'=> '3.14', 4520 'Pod::Simple::LinkSection'=> '3.14', 4521 'Pod::Simple::Methody' => '3.14', 4522 'Pod::Simple::Progress' => '3.14', 4523 'Pod::Simple::PullParser'=> '3.14', 4524 'Pod::Simple::PullParserEndToken'=> '3.14', 4525 'Pod::Simple::PullParserStartToken'=> '3.14', 4526 'Pod::Simple::PullParserTextToken'=> '3.14', 4527 'Pod::Simple::PullParserToken'=> '3.14', 4528 'Pod::Simple::RTF' => '3.14', 4529 'Pod::Simple::Search' => '3.14', 4530 'Pod::Simple::SimpleTree'=> '3.14', 4531 'Pod::Simple::Text' => '3.14', 4532 'Pod::Simple::TextContent'=> '3.14', 4533 'Pod::Simple::TiedOutFH'=> '3.14', 4534 'Pod::Simple::Transcode'=> '3.14', 4535 'Pod::Simple::TranscodeDumb'=> '3.14', 4536 'Pod::Simple::TranscodeSmart'=> '3.14', 4537 'Pod::Simple::XHTML' => '3.14', 4538 'Pod::Simple::XMLOutStream'=> '3.14', 4539 'Safe' => '2.27', 4540 }, 4541 removed => { 4542 } 4543 }, 4544 5.012002 => { 4545 delta_from => 5.012001, 4546 changed => { 4547 'Carp' => '1.17', 4548 'Carp::Heavy' => '1.17', 4549 'File::Spec' => '3.31_01', 4550 'Module::CoreList' => '2.38', 4551 'Module::Load::Conditional'=> '0.38', 4552 'PerlIO::scalar' => '0.08', 4553 }, 4554 removed => { 4555 } 4556 }, 4557 5.012003 => { 4558 delta_from => 5.012002, 4559 changed => { 4560 'B::Deparse' => '0.9701', 4561 'Module::Build::Platform::cygwin'=> '0.360301', 4562 'Module::CoreList' => '2.43', 4563 'Socket' => '1.87_01', 4564 }, 4565 removed => { 4566 } 4567 }, 4568 5.012004 => { 4569 delta_from => 5.012003, 4570 changed => { 4571 'Module::CoreList' => '2.50', 4572 }, 4573 removed => { 4574 } 4575 }, 4576 5.012005 => { 4577 delta_from => 5.012004, 4578 changed => { 4579 'B::Concise' => '0.78_01', 4580 'Encode' => '2.39_01', 4581 'File::Glob' => '1.07_01', 4582 'Module::CoreList' => '2.50_02', 4583 'Unicode::UCD' => '0.29', 4584 'charnames' => '1.07_01', 4585 }, 4586 removed => { 4587 } 4588 }, 4589 5.013 => { 4590 delta_from => 5.012, 4591 changed => { 4592 'CGI' => '3.49', 4593 'CGI::Fast' => '1.08', 4594 'Data::Dumper' => '2.126', 4595 'ExtUtils::MM_Unix' => '6.5601', 4596 'ExtUtils::MakeMaker' => '6.5601', 4597 'File::Copy' => '2.18', 4598 'IPC::Open3' => '1.06', 4599 'MIME::Base64' => '3.09', 4600 'MIME::QuotedPrint' => '3.09', 4601 'Module::CoreList' => '2.31', 4602 'Pod::Functions' => '1.04', 4603 'XS::APItest' => '0.18', 4604 'XS::APItest::KeywordRPN'=> '0.004', 4605 'feature' => '1.17', 4606 'threads' => '1.77_01', 4607 'threads::shared' => '1.33', 4608 }, 4609 removed => { 4610 } 4611 }, 4612 5.013001 => { 4613 delta_from => 5.012001, 4614 changed => { 4615 'Data::Dumper' => '2.126', 4616 'Dumpvalue' => '1.14', 4617 'Errno' => '1.12', 4618 'ExtUtils::MM_Unix' => '6.5601', 4619 'ExtUtils::MakeMaker' => '6.5601', 4620 'ExtUtils::ParseXS' => '2.2205', 4621 'File::Find' => '1.16', 4622 'IPC::Cmd' => '0.58', 4623 'IPC::Open3' => '1.06', 4624 'List::Util' => '1.23', 4625 'List::Util::PP' => '1.23', 4626 'List::Util::XS' => '1.23', 4627 'Locale::Codes' => '3.12', 4628 'Locale::Codes::Country'=> '3.12', 4629 'Locale::Codes::Currency'=> '3.12', 4630 'Locale::Codes::Language'=> '3.12', 4631 'Locale::Codes::Script' => '3.12', 4632 'Locale::Constants' => '3.12', 4633 'Locale::Country' => '3.12', 4634 'Locale::Currency' => '3.12', 4635 'Locale::Language' => '3.12', 4636 'Locale::Script' => '3.12', 4637 'MIME::Base64' => '3.09', 4638 'MIME::QuotedPrint' => '3.09', 4639 'Module::Build::Platform::cygwin'=> '0.360301', 4640 'Module::CoreList' => '2.34', 4641 'Module::Load::Conditional'=> '0.38', 4642 'PerlIO::scalar' => '0.08', 4643 'Scalar::Util' => '1.23', 4644 'Scalar::Util::PP' => '1.23', 4645 'Socket' => '1.88', 4646 'Term::ReadLine' => '1.06', 4647 'Unicode::UCD' => '0.28', 4648 'XS::APItest' => '0.19', 4649 'XS::APItest::KeywordRPN'=> '0.004', 4650 'charnames' => '1.08', 4651 'feature' => '1.17', 4652 'threads' => '1.77_01', 4653 'threads::shared' => '1.33', 4654 }, 4655 removed => { 4656 'Class::ISA' => 1, 4657 'Pod::Plainer' => 1, 4658 'Switch' => 1, 4659 } 4660 }, 4661 5.013002 => { 4662 delta_from => 5.013001, 4663 changed => { 4664 'B::Concise' => '0.79', 4665 'B::Deparse' => '0.98', 4666 'CPAN' => '1.94_57', 4667 'CPAN::Distribution' => '1.9600', 4668 'Exporter' => '5.64_02', 4669 'Exporter::Heavy' => '5.64_02', 4670 'File::Copy' => '2.19', 4671 'Hash::Util' => '0.08', 4672 'IO::Socket' => '1.32', 4673 'Locale::Codes' => '3.13', 4674 'Locale::Codes::Country'=> '3.13', 4675 'Locale::Codes::Currency'=> '3.13', 4676 'Locale::Codes::Language'=> '3.13', 4677 'Locale::Codes::Script' => '3.13', 4678 'Locale::Constants' => '3.13', 4679 'Locale::Country' => '3.13', 4680 'Locale::Currency' => '3.13', 4681 'Locale::Language' => '3.13', 4682 'Locale::Script' => '3.13', 4683 'Search::Dict' => '1.03', 4684 'Socket' => '1.89', 4685 'Thread::Semaphore' => '2.11', 4686 'UNIVERSAL' => '1.07', 4687 'VMS::DCLsym' => '1.04', 4688 'mro' => '1.03', 4689 'threads' => '1.77_02', 4690 'threads::shared' => '1.33_01', 4691 }, 4692 removed => { 4693 } 4694 }, 4695 5.013003 => { 4696 delta_from => 5.013002, 4697 changed => { 4698 'App::Prove' => '3.21', 4699 'App::Prove::State' => '3.21', 4700 'App::Prove::State::Result'=> '3.21', 4701 'App::Prove::State::Result::Test'=> '3.21', 4702 'Archive::Extract' => '0.42', 4703 'Archive::Tar' => '1.64', 4704 'Archive::Tar::Constant'=> '1.64', 4705 'Archive::Tar::File' => '1.64', 4706 'Attribute::Handlers' => '0.88', 4707 'CPANPLUS' => '0.9007', 4708 'CPANPLUS::Internals' => '0.9007', 4709 'CPANPLUS::Shell::Default'=> '0.9007', 4710 'Compress::Raw::Bzip2' => '2.027', 4711 'Compress::Raw::Zlib' => '2.027_01', 4712 'Compress::Zlib' => '2.027', 4713 'DB' => '1.03', 4714 'Digest::MD5' => '2.40', 4715 'Digest::SHA' => '5.48', 4716 'Exporter' => '5.64_03', 4717 'Exporter::Heavy' => '5.64_03', 4718 'ExtUtils::CBuilder' => '0.2703', 4719 'ExtUtils::CBuilder::Base'=> '0.2703_01', 4720 'ExtUtils::CBuilder::Platform::Unix'=> '0.2703', 4721 'ExtUtils::CBuilder::Platform::VMS'=> '0.2703', 4722 'ExtUtils::CBuilder::Platform::Windows'=> '0.2703', 4723 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.2703', 4724 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.2703', 4725 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.2703', 4726 'ExtUtils::CBuilder::Platform::aix'=> '0.2703', 4727 'ExtUtils::CBuilder::Platform::cygwin'=> '0.2703', 4728 'ExtUtils::CBuilder::Platform::darwin'=> '0.2703', 4729 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.2703', 4730 'ExtUtils::CBuilder::Platform::os2'=> '0.2703', 4731 'ExtUtils::Manifest' => '1.58', 4732 'ExtUtils::ParseXS' => '2.2206', 4733 'Fatal' => '2.10', 4734 'File::Basename' => '2.79', 4735 'File::Copy' => '2.20', 4736 'File::DosGlob' => '1.02', 4737 'File::Find' => '1.17', 4738 'File::Glob' => '1.08', 4739 'File::stat' => '1.03', 4740 'I18N::LangTags' => '0.35_01', 4741 'I18N::LangTags::List' => '0.35_01', 4742 'IO::Compress::Adapter::Bzip2'=> '2.027', 4743 'IO::Compress::Adapter::Deflate'=> '2.027', 4744 'IO::Compress::Adapter::Identity'=> '2.027', 4745 'IO::Compress::Base' => '2.027', 4746 'IO::Compress::Base::Common'=> '2.027', 4747 'IO::Compress::Bzip2' => '2.027', 4748 'IO::Compress::Deflate' => '2.027', 4749 'IO::Compress::Gzip' => '2.027', 4750 'IO::Compress::Gzip::Constants'=> '2.027', 4751 'IO::Compress::RawDeflate'=> '2.027', 4752 'IO::Compress::Zip' => '2.027', 4753 'IO::Compress::Zip::Constants'=> '2.027', 4754 'IO::Compress::Zlib::Constants'=> '2.027', 4755 'IO::Compress::Zlib::Extra'=> '2.027', 4756 'IO::Uncompress::Adapter::Bunzip2'=> '2.027', 4757 'IO::Uncompress::Adapter::Identity'=> '2.027', 4758 'IO::Uncompress::Adapter::Inflate'=> '2.027', 4759 'IO::Uncompress::AnyInflate'=> '2.027', 4760 'IO::Uncompress::AnyUncompress'=> '2.027', 4761 'IO::Uncompress::Base' => '2.027', 4762 'IO::Uncompress::Bunzip2'=> '2.027', 4763 'IO::Uncompress::Gunzip'=> '2.027', 4764 'IO::Uncompress::Inflate'=> '2.027', 4765 'IO::Uncompress::RawInflate'=> '2.027', 4766 'IO::Uncompress::Unzip' => '2.027', 4767 'IPC::Cmd' => '0.60', 4768 'IPC::Msg' => '2.03', 4769 'IPC::Semaphore' => '2.03', 4770 'IPC::SharedMem' => '2.03', 4771 'IPC::SysV' => '2.03', 4772 'Locale::Maketext' => '1.15', 4773 'Locale::Maketext::Guts'=> undef, 4774 'Locale::Maketext::GutsLoader'=> undef, 4775 'Module::Build' => '0.3607', 4776 'Module::Build::Base' => '0.3607', 4777 'Module::Build::Compat' => '0.3607', 4778 'Module::Build::Config' => '0.3607', 4779 'Module::Build::Cookbook'=> '0.3607', 4780 'Module::Build::Dumper' => '0.3607', 4781 'Module::Build::ModuleInfo'=> '0.3607', 4782 'Module::Build::Notes' => '0.3607', 4783 'Module::Build::PPMMaker'=> '0.3607', 4784 'Module::Build::Platform::Amiga'=> '0.3607', 4785 'Module::Build::Platform::Default'=> '0.3607', 4786 'Module::Build::Platform::EBCDIC'=> '0.3607', 4787 'Module::Build::Platform::MPEiX'=> '0.3607', 4788 'Module::Build::Platform::MacOS'=> '0.3607', 4789 'Module::Build::Platform::RiscOS'=> '0.3607', 4790 'Module::Build::Platform::Unix'=> '0.3607', 4791 'Module::Build::Platform::VMS'=> '0.3607', 4792 'Module::Build::Platform::VOS'=> '0.3607', 4793 'Module::Build::Platform::Windows'=> '0.3607', 4794 'Module::Build::Platform::aix'=> '0.3607', 4795 'Module::Build::Platform::cygwin'=> '0.3607', 4796 'Module::Build::Platform::darwin'=> '0.3607', 4797 'Module::Build::Platform::os2'=> '0.3607', 4798 'Module::Build::PodParser'=> '0.3607', 4799 'Module::CoreList' => '2.36', 4800 'Module::Load' => '0.18', 4801 'TAP::Base' => '3.21', 4802 'TAP::Formatter::Base' => '3.21', 4803 'TAP::Formatter::Color' => '3.21', 4804 'TAP::Formatter::Console'=> '3.21', 4805 'TAP::Formatter::Console::ParallelSession'=> '3.21', 4806 'TAP::Formatter::Console::Session'=> '3.21', 4807 'TAP::Formatter::File' => '3.21', 4808 'TAP::Formatter::File::Session'=> '3.21', 4809 'TAP::Formatter::Session'=> '3.21', 4810 'TAP::Harness' => '3.21', 4811 'TAP::Object' => '3.21', 4812 'TAP::Parser' => '3.21', 4813 'TAP::Parser::Aggregator'=> '3.21', 4814 'TAP::Parser::Grammar' => '3.21', 4815 'TAP::Parser::Iterator' => '3.21', 4816 'TAP::Parser::Iterator::Array'=> '3.21', 4817 'TAP::Parser::Iterator::Process'=> '3.21', 4818 'TAP::Parser::Iterator::Stream'=> '3.21', 4819 'TAP::Parser::IteratorFactory'=> '3.21', 4820 'TAP::Parser::Multiplexer'=> '3.21', 4821 'TAP::Parser::Result' => '3.21', 4822 'TAP::Parser::Result::Bailout'=> '3.21', 4823 'TAP::Parser::Result::Comment'=> '3.21', 4824 'TAP::Parser::Result::Plan'=> '3.21', 4825 'TAP::Parser::Result::Pragma'=> '3.21', 4826 'TAP::Parser::Result::Test'=> '3.21', 4827 'TAP::Parser::Result::Unknown'=> '3.21', 4828 'TAP::Parser::Result::Version'=> '3.21', 4829 'TAP::Parser::Result::YAML'=> '3.21', 4830 'TAP::Parser::ResultFactory'=> '3.21', 4831 'TAP::Parser::Scheduler'=> '3.21', 4832 'TAP::Parser::Scheduler::Job'=> '3.21', 4833 'TAP::Parser::Scheduler::Spinner'=> '3.21', 4834 'TAP::Parser::Source' => '3.21', 4835 'TAP::Parser::SourceHandler'=> '3.21', 4836 'TAP::Parser::SourceHandler::Executable'=> '3.21', 4837 'TAP::Parser::SourceHandler::File'=> '3.21', 4838 'TAP::Parser::SourceHandler::Handle'=> '3.21', 4839 'TAP::Parser::SourceHandler::Perl'=> '3.21', 4840 'TAP::Parser::SourceHandler::RawTAP'=> '3.21', 4841 'TAP::Parser::SourceHandler::pgTAP'=> '3.21', 4842 'TAP::Parser::Utils' => '3.21', 4843 'TAP::Parser::YAMLish::Reader'=> '3.21', 4844 'TAP::Parser::YAMLish::Writer'=> '3.21', 4845 'Term::ANSIColor' => '3.00', 4846 'Term::ReadLine' => '1.07', 4847 'Test::Harness' => '3.21', 4848 'Tie::Array' => '1.04', 4849 'Time::HiRes' => '1.9721', 4850 'Time::Piece' => '1.20_01', 4851 'Unicode::Collate' => '0.53', 4852 'Unicode::Normalize' => '1.06', 4853 'Unicode::UCD' => '0.29', 4854 'autodie' => '2.10', 4855 'autodie::exception' => '2.10', 4856 'autodie::exception::system'=> '2.10', 4857 'autodie::hints' => '2.10', 4858 'blib' => '1.05', 4859 'charnames' => '1.11', 4860 'diagnostics' => '1.20', 4861 'inc::latest' => '0.3607', 4862 'lib' => '0.63', 4863 're' => '0.12', 4864 'threads' => '1.77_03', 4865 'threads::shared' => '1.33_02', 4866 'vars' => '1.02', 4867 'warnings' => '1.10', 4868 }, 4869 removed => { 4870 'TAP::Parser::Source::Perl'=> 1, 4871 } 4872 }, 4873 5.013004 => { 4874 delta_from => 5.013003, 4875 changed => { 4876 'App::Prove' => '3.22', 4877 'App::Prove::State' => '3.22', 4878 'App::Prove::State::Result'=> '3.22', 4879 'App::Prove::State::Result::Test'=> '3.22', 4880 'Archive::Tar' => '1.68', 4881 'Archive::Tar::Constant'=> '1.68', 4882 'Archive::Tar::File' => '1.68', 4883 'B::Lint' => '1.12', 4884 'B::Lint::Debug' => '1.12', 4885 'Carp' => '1.18', 4886 'Carp::Heavy' => '1.18', 4887 'Compress::Raw::Bzip2' => '2.030', 4888 'Compress::Raw::Zlib' => '2.030', 4889 'Compress::Zlib' => '2.030', 4890 'ExtUtils::ParseXS' => '2.2207', 4891 'File::Spec' => '3.31_01', 4892 'I18N::Langinfo' => '0.04', 4893 'IO::Compress::Adapter::Bzip2'=> '2.030', 4894 'IO::Compress::Adapter::Deflate'=> '2.030', 4895 'IO::Compress::Adapter::Identity'=> '2.030', 4896 'IO::Compress::Base' => '2.030', 4897 'IO::Compress::Base::Common'=> '2.030', 4898 'IO::Compress::Bzip2' => '2.030', 4899 'IO::Compress::Deflate' => '2.030', 4900 'IO::Compress::Gzip' => '2.030', 4901 'IO::Compress::Gzip::Constants'=> '2.030', 4902 'IO::Compress::RawDeflate'=> '2.030', 4903 'IO::Compress::Zip' => '2.030', 4904 'IO::Compress::Zip::Constants'=> '2.030', 4905 'IO::Compress::Zlib::Constants'=> '2.030', 4906 'IO::Compress::Zlib::Extra'=> '2.030', 4907 'IO::Uncompress::Adapter::Bunzip2'=> '2.030', 4908 'IO::Uncompress::Adapter::Identity'=> '2.030', 4909 'IO::Uncompress::Adapter::Inflate'=> '2.030', 4910 'IO::Uncompress::AnyInflate'=> '2.030', 4911 'IO::Uncompress::AnyUncompress'=> '2.030', 4912 'IO::Uncompress::Base' => '2.030', 4913 'IO::Uncompress::Bunzip2'=> '2.030', 4914 'IO::Uncompress::Gunzip'=> '2.030', 4915 'IO::Uncompress::Inflate'=> '2.030', 4916 'IO::Uncompress::RawInflate'=> '2.030', 4917 'IO::Uncompress::Unzip' => '2.030', 4918 'Module::CoreList' => '2.37', 4919 'TAP::Base' => '3.22', 4920 'TAP::Formatter::Base' => '3.22', 4921 'TAP::Formatter::Color' => '3.22', 4922 'TAP::Formatter::Console'=> '3.22', 4923 'TAP::Formatter::Console::ParallelSession'=> '3.22', 4924 'TAP::Formatter::Console::Session'=> '3.22', 4925 'TAP::Formatter::File' => '3.22', 4926 'TAP::Formatter::File::Session'=> '3.22', 4927 'TAP::Formatter::Session'=> '3.22', 4928 'TAP::Harness' => '3.22', 4929 'TAP::Object' => '3.22', 4930 'TAP::Parser' => '3.22', 4931 'TAP::Parser::Aggregator'=> '3.22', 4932 'TAP::Parser::Grammar' => '3.22', 4933 'TAP::Parser::Iterator' => '3.22', 4934 'TAP::Parser::Iterator::Array'=> '3.22', 4935 'TAP::Parser::Iterator::Process'=> '3.22', 4936 'TAP::Parser::Iterator::Stream'=> '3.22', 4937 'TAP::Parser::IteratorFactory'=> '3.22', 4938 'TAP::Parser::Multiplexer'=> '3.22', 4939 'TAP::Parser::Result' => '3.22', 4940 'TAP::Parser::Result::Bailout'=> '3.22', 4941 'TAP::Parser::Result::Comment'=> '3.22', 4942 'TAP::Parser::Result::Plan'=> '3.22', 4943 'TAP::Parser::Result::Pragma'=> '3.22', 4944 'TAP::Parser::Result::Test'=> '3.22', 4945 'TAP::Parser::Result::Unknown'=> '3.22', 4946 'TAP::Parser::Result::Version'=> '3.22', 4947 'TAP::Parser::Result::YAML'=> '3.22', 4948 'TAP::Parser::ResultFactory'=> '3.22', 4949 'TAP::Parser::Scheduler'=> '3.22', 4950 'TAP::Parser::Scheduler::Job'=> '3.22', 4951 'TAP::Parser::Scheduler::Spinner'=> '3.22', 4952 'TAP::Parser::Source' => '3.22', 4953 'TAP::Parser::SourceHandler'=> '3.22', 4954 'TAP::Parser::SourceHandler::Executable'=> '3.22', 4955 'TAP::Parser::SourceHandler::File'=> '3.22', 4956 'TAP::Parser::SourceHandler::Handle'=> '3.22', 4957 'TAP::Parser::SourceHandler::Perl'=> '3.22', 4958 'TAP::Parser::SourceHandler::RawTAP'=> '3.22', 4959 'TAP::Parser::Utils' => '3.22', 4960 'TAP::Parser::YAMLish::Reader'=> '3.22', 4961 'TAP::Parser::YAMLish::Writer'=> '3.22', 4962 'Test::Builder' => '0.96', 4963 'Test::Builder::Module' => '0.96', 4964 'Test::Builder::Tester' => '1.20', 4965 'Test::Builder::Tester::Color'=> '1.20', 4966 'Test::Harness' => '3.22', 4967 'Test::More' => '0.96', 4968 'Test::Simple' => '0.96', 4969 'Unicode::Collate' => '0.56', 4970 'Unicode::Collate::Locale'=> '0.56', 4971 'XS::APItest' => '0.20', 4972 'charnames' => '1.15', 4973 'feature' => '1.18', 4974 }, 4975 removed => { 4976 'TAP::Parser::SourceHandler::pgTAP'=> 1, 4977 } 4978 }, 4979 5.013005 => { 4980 delta_from => 5.013004, 4981 changed => { 4982 'B::Debug' => '1.16', 4983 'CPANPLUS::Dist::Build' => '0.48', 4984 'CPANPLUS::Dist::Build::Constants'=> '0.48', 4985 'Data::Dumper' => '2.128', 4986 'Encode' => '2.40', 4987 'Encode::Guess' => '2.04', 4988 'Encode::MIME::Header' => '2.12', 4989 'Encode::Unicode::UTF7' => '2.05', 4990 'Errno' => '1.13', 4991 'ExtUtils::Command::MM' => '6.57_05', 4992 'ExtUtils::Liblist' => '6.57_05', 4993 'ExtUtils::Liblist::Kid'=> '6.5705', 4994 'ExtUtils::MM' => '6.57_05', 4995 'ExtUtils::MM_AIX' => '6.57_05', 4996 'ExtUtils::MM_Any' => '6.57_05', 4997 'ExtUtils::MM_BeOS' => '6.57_05', 4998 'ExtUtils::MM_Cygwin' => '6.57_05', 4999 'ExtUtils::MM_DOS' => '6.5705', 5000 'ExtUtils::MM_Darwin' => '6.57_05', 5001 'ExtUtils::MM_MacOS' => '6.5705', 5002 'ExtUtils::MM_NW5' => '6.57_05', 5003 'ExtUtils::MM_OS2' => '6.57_05', 5004 'ExtUtils::MM_QNX' => '6.57_05', 5005 'ExtUtils::MM_UWIN' => '6.5705', 5006 'ExtUtils::MM_Unix' => '6.57_05', 5007 'ExtUtils::MM_VMS' => '6.57_05', 5008 'ExtUtils::MM_VOS' => '6.57_05', 5009 'ExtUtils::MM_Win32' => '6.57_05', 5010 'ExtUtils::MM_Win95' => '6.57_05', 5011 'ExtUtils::MY' => '6.5705', 5012 'ExtUtils::MakeMaker' => '6.57_05', 5013 'ExtUtils::MakeMaker::Config'=> '6.57_05', 5014 'ExtUtils::MakeMaker::YAML'=> '1.44', 5015 'ExtUtils::Mkbootstrap' => '6.57_05', 5016 'ExtUtils::Mksymlists' => '6.57_05', 5017 'ExtUtils::testlib' => '6.5705', 5018 'Filter::Simple' => '0.85', 5019 'Hash::Util' => '0.09', 5020 'Math::BigFloat' => '1.62', 5021 'Math::BigInt' => '1.95', 5022 'Math::BigInt::Calc' => '0.54', 5023 'Math::BigInt::CalcEmu' => '0.06', 5024 'Math::BigInt::FastCalc'=> '0.22', 5025 'Math::BigRat' => '0.26', 5026 'Module::CoreList' => '2.39', 5027 'POSIX' => '1.20', 5028 'PerlIO::scalar' => '0.09', 5029 'Safe' => '2.28', 5030 'Test::Builder' => '0.97_01', 5031 'Test::Builder::Module' => '0.97_01', 5032 'Test::Builder::Tester' => '1.21_01', 5033 'Test::Builder::Tester::Color'=> '1.21_01', 5034 'Test::More' => '0.97_01', 5035 'Test::Simple' => '0.97_01', 5036 'Tie::Hash' => '1.04', 5037 'Unicode::Collate' => '0.59', 5038 'Unicode::Collate::Locale'=> '0.59', 5039 'XS::APItest' => '0.21', 5040 'XS::APItest::KeywordRPN'=> '0.005', 5041 'XSLoader' => '0.11', 5042 'bigint' => '0.25', 5043 'bignum' => '0.25', 5044 'bigrat' => '0.25', 5045 'blib' => '1.06', 5046 'open' => '1.08', 5047 'threads::shared' => '1.33_03', 5048 'warnings' => '1.11', 5049 'warnings::register' => '1.02', 5050 }, 5051 removed => { 5052 } 5053 }, 5054 5.013006 => { 5055 delta_from => 5.013005, 5056 changed => { 5057 'Archive::Extract' => '0.44', 5058 'B' => '1.24', 5059 'B::Deparse' => '0.99', 5060 'CPAN' => '1.94_61', 5061 'CPAN::FTP' => '5.5005', 5062 'CPAN::Queue' => '5.5001', 5063 'CPAN::Version' => '5.5001', 5064 'Carp' => '1.19', 5065 'Carp::Heavy' => '1.19', 5066 'Compress::Raw::Bzip2' => '2.031', 5067 'Cwd' => '3.34', 5068 'Data::Dumper' => '2.129', 5069 'Devel::Peek' => '1.05', 5070 'Digest::MD5' => '2.51', 5071 'ExtUtils::Constant::Base'=> '0.05', 5072 'ExtUtils::Constant::ProxySubs'=> '0.07', 5073 'ExtUtils::Embed' => '1.29', 5074 'ExtUtils::XSSymSet' => '1.2', 5075 'Fcntl' => '1.09', 5076 'File::DosGlob' => '1.03', 5077 'File::Find' => '1.18', 5078 'File::Glob' => '1.09', 5079 'File::Spec' => '3.33', 5080 'File::Spec::Cygwin' => '3.33', 5081 'File::Spec::Epoc' => '3.33', 5082 'File::Spec::Functions' => '3.33', 5083 'File::Spec::Mac' => '3.33', 5084 'File::Spec::OS2' => '3.33', 5085 'File::Spec::Unix' => '3.33', 5086 'File::Spec::VMS' => '3.33', 5087 'File::Spec::Win32' => '3.33', 5088 'GDBM_File' => '1.11', 5089 'Hash::Util::FieldHash' => '1.05', 5090 'I18N::Langinfo' => '0.06', 5091 'IPC::Cmd' => '0.64', 5092 'IPC::Open3' => '1.07', 5093 'Locale::Codes' => '3.14', 5094 'Locale::Codes::Country'=> '3.14', 5095 'Locale::Codes::Currency'=> '3.14', 5096 'Locale::Codes::Language'=> '3.14', 5097 'Locale::Codes::Script' => '3.14', 5098 'Locale::Constants' => '3.14', 5099 'Locale::Country' => '3.14', 5100 'Locale::Currency' => '3.14', 5101 'Locale::Language' => '3.14', 5102 'Locale::Maketext' => '1.16', 5103 'Locale::Script' => '3.14', 5104 'Math::BigFloat' => '1.63', 5105 'Math::BigInt' => '1.97', 5106 'Math::BigInt::Calc' => '0.55', 5107 'Math::BigInt::CalcEmu' => '0.07', 5108 'Module::CoreList' => '2.40', 5109 'NDBM_File' => '1.09', 5110 'NEXT' => '0.65', 5111 'ODBM_File' => '1.08', 5112 'Opcode' => '1.16', 5113 'POSIX' => '1.21', 5114 'PerlIO::encoding' => '0.13', 5115 'PerlIO::scalar' => '0.10', 5116 'PerlIO::via' => '0.10', 5117 'Pod::Man' => '2.25', 5118 'Pod::Text' => '3.15', 5119 'SDBM_File' => '1.07', 5120 'Socket' => '1.90', 5121 'Sys::Hostname' => '1.13', 5122 'Tie::Hash::NamedCapture'=> '0.07', 5123 'Unicode::Collate' => '0.63', 5124 'Unicode::Collate::Locale'=> '0.63', 5125 'Unicode::Normalize' => '1.07', 5126 'XS::APItest' => '0.23', 5127 'XSLoader' => '0.13', 5128 'attributes' => '0.13', 5129 'charnames' => '1.16', 5130 'if' => '0.06', 5131 'mro' => '1.04', 5132 'overload' => '1.11', 5133 're' => '0.13', 5134 'sigtrap' => '1.05', 5135 'threads' => '1.81_01', 5136 'threads::shared' => '1.34', 5137 }, 5138 removed => { 5139 'XS::APItest::KeywordRPN'=> 1, 5140 } 5141 }, 5142 5.013007 => { 5143 delta_from => 5.013006, 5144 changed => { 5145 'Archive::Extract' => '0.46', 5146 'Archive::Tar' => '1.72', 5147 'Archive::Tar::Constant'=> '1.72', 5148 'Archive::Tar::File' => '1.72', 5149 'AutoLoader' => '5.71', 5150 'B' => '1.26', 5151 'B::Concise' => '0.81', 5152 'B::Deparse' => '1.01', 5153 'CGI' => '3.50', 5154 'CPAN' => '1.94_62', 5155 'CPANPLUS' => '0.9010', 5156 'CPANPLUS::Dist::Build' => '0.50', 5157 'CPANPLUS::Dist::Build::Constants'=> '0.50', 5158 'CPANPLUS::Internals' => '0.9010', 5159 'CPANPLUS::Shell::Default'=> '0.9010', 5160 'Data::Dumper' => '2.130_01', 5161 'DynaLoader' => '1.11', 5162 'ExtUtils::Constant' => '0.23', 5163 'ExtUtils::Constant::ProxySubs'=> '0.08', 5164 'Fcntl' => '1.10', 5165 'File::Fetch' => '0.28', 5166 'File::Glob' => '1.10', 5167 'File::stat' => '1.04', 5168 'GDBM_File' => '1.12', 5169 'Hash::Util' => '0.10', 5170 'Hash::Util::FieldHash' => '1.06', 5171 'I18N::Langinfo' => '0.07', 5172 'Locale::Maketext' => '1.17', 5173 'Locale::Maketext::Guts'=> '1.17', 5174 'Locale::Maketext::GutsLoader'=> '1.17', 5175 'MIME::Base64' => '3.10', 5176 'MIME::QuotedPrint' => '3.10', 5177 'Math::BigFloat' => '1.99_01', 5178 'Math::BigInt' => '1.99_01', 5179 'Math::BigInt::Calc' => '1.99_01', 5180 'Math::BigInt::CalcEmu' => '1.99_01', 5181 'Math::BigInt::FastCalc'=> '0.24_01', 5182 'Math::BigRat' => '0.26_01', 5183 'Module::CoreList' => '2.41', 5184 'NDBM_File' => '1.10', 5185 'ODBM_File' => '1.09', 5186 'Opcode' => '1.17', 5187 'POSIX' => '1.22', 5188 'Pod::Simple' => '3.15', 5189 'Pod::Simple::BlackBox' => '3.15', 5190 'Pod::Simple::Checker' => '3.15', 5191 'Pod::Simple::Debug' => '3.15', 5192 'Pod::Simple::DumpAsText'=> '3.15', 5193 'Pod::Simple::DumpAsXML'=> '3.15', 5194 'Pod::Simple::HTML' => '3.15', 5195 'Pod::Simple::HTMLBatch'=> '3.15', 5196 'Pod::Simple::LinkSection'=> '3.15', 5197 'Pod::Simple::Methody' => '3.15', 5198 'Pod::Simple::Progress' => '3.15', 5199 'Pod::Simple::PullParser'=> '3.15', 5200 'Pod::Simple::PullParserEndToken'=> '3.15', 5201 'Pod::Simple::PullParserStartToken'=> '3.15', 5202 'Pod::Simple::PullParserTextToken'=> '3.15', 5203 'Pod::Simple::PullParserToken'=> '3.15', 5204 'Pod::Simple::RTF' => '3.15', 5205 'Pod::Simple::Search' => '3.15', 5206 'Pod::Simple::SimpleTree'=> '3.15', 5207 'Pod::Simple::Text' => '3.15', 5208 'Pod::Simple::TextContent'=> '3.15', 5209 'Pod::Simple::TiedOutFH'=> '3.15', 5210 'Pod::Simple::Transcode'=> '3.15', 5211 'Pod::Simple::TranscodeDumb'=> '3.15', 5212 'Pod::Simple::TranscodeSmart'=> '3.15', 5213 'Pod::Simple::XHTML' => '3.15', 5214 'Pod::Simple::XMLOutStream'=> '3.15', 5215 'SDBM_File' => '1.08', 5216 'Safe' => '2.29', 5217 'SelfLoader' => '1.18', 5218 'Socket' => '1.91', 5219 'Storable' => '2.24', 5220 'Sys::Hostname' => '1.14', 5221 'Unicode' => '6.0.0', 5222 'Unicode::Collate' => '0.67', 5223 'Unicode::Collate::CJK::Big5'=> '0.65', 5224 'Unicode::Collate::CJK::GB2312'=> '0.65', 5225 'Unicode::Collate::CJK::JISX0208'=> '0.64', 5226 'Unicode::Collate::CJK::Korean'=> '0.66', 5227 'Unicode::Collate::CJK::Pinyin'=> '0.65', 5228 'Unicode::Collate::CJK::Stroke'=> '0.65', 5229 'Unicode::Collate::Locale'=> '0.67', 5230 'XS::APItest' => '0.26', 5231 'XS::Typemap' => '0.04', 5232 'charnames' => '1.17', 5233 'mro' => '1.05', 5234 'parent' => '0.224', 5235 're' => '0.14', 5236 'threads' => '1.81_02', 5237 }, 5238 removed => { 5239 } 5240 }, 5241 5.013008 => { 5242 delta_from => 5.013007, 5243 changed => { 5244 'Archive::Tar' => '1.74', 5245 'Archive::Tar::Constant'=> '1.74', 5246 'Archive::Tar::File' => '1.74', 5247 'B' => '1.27', 5248 'B::Concise' => '0.82', 5249 'B::Deparse' => '1.02', 5250 'Carp::Heavy' => '1.17', 5251 'Cwd' => '3.35', 5252 'Data::Dumper' => '2.130_02', 5253 'Devel::Peek' => '1.06', 5254 'Devel::SelfStubber' => '1.05', 5255 'Digest::SHA' => '5.50', 5256 'Dumpvalue' => '1.15', 5257 'DynaLoader' => '1.12', 5258 'Env' => '1.02', 5259 'Exporter::Heavy' => '5.64_01', 5260 'ExtUtils::CBuilder' => '0.280201', 5261 'ExtUtils::CBuilder::Base'=> '0.280201', 5262 'ExtUtils::CBuilder::Platform::Unix'=> '0.280201', 5263 'ExtUtils::CBuilder::Platform::VMS'=> '0.280201', 5264 'ExtUtils::CBuilder::Platform::Windows'=> '0.280201', 5265 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280201', 5266 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280201', 5267 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280201', 5268 'ExtUtils::CBuilder::Platform::aix'=> '0.280201', 5269 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280201', 5270 'ExtUtils::CBuilder::Platform::darwin'=> '0.280201', 5271 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280201', 5272 'ExtUtils::CBuilder::Platform::os2'=> '0.280201', 5273 'ExtUtils::Constant::Utils'=> '0.03', 5274 'ExtUtils::Embed' => '1.30', 5275 'ExtUtils::ParseXS' => '2.2208', 5276 'Fatal' => '2.1001', 5277 'Fcntl' => '1.11', 5278 'File::CheckTree' => '4.41', 5279 'File::Glob' => '1.11', 5280 'GDBM_File' => '1.13', 5281 'Hash::Util::FieldHash' => '1.07', 5282 'I18N::Collate' => '1.02', 5283 'IO' => '1.25_03', 5284 'IPC::Cmd' => '0.66', 5285 'IPC::Open3' => '1.08', 5286 'Locale::Codes' => '3.15', 5287 'Locale::Codes::Country'=> '3.15', 5288 'Locale::Codes::Currency'=> '3.15', 5289 'Locale::Codes::Language'=> '3.15', 5290 'Locale::Codes::Script' => '3.15', 5291 'Locale::Constants' => '3.15', 5292 'Locale::Country' => '3.15', 5293 'Locale::Currency' => '3.15', 5294 'Locale::Language' => '3.15', 5295 'Locale::Script' => '3.15', 5296 'MIME::Base64' => '3.13', 5297 'MIME::QuotedPrint' => '3.13', 5298 'Math::BigFloat' => '1.99_02', 5299 'Math::BigInt' => '1.99_02', 5300 'Math::BigInt::Calc' => '1.99_02', 5301 'Math::BigInt::CalcEmu' => '1.99_02', 5302 'Memoize' => '1.02', 5303 'Memoize::AnyDBM_File' => '1.02', 5304 'Memoize::Expire' => '1.02', 5305 'Memoize::ExpireFile' => '1.02', 5306 'Memoize::ExpireTest' => '1.02', 5307 'Memoize::NDBM_File' => '1.02', 5308 'Memoize::SDBM_File' => '1.02', 5309 'Memoize::Storable' => '1.02', 5310 'Module::CoreList' => '2.43', 5311 'NDBM_File' => '1.11', 5312 'Net::Ping' => '2.37', 5313 'ODBM_File' => '1.10', 5314 'Opcode' => '1.18', 5315 'POSIX' => '1.23', 5316 'PerlIO::encoding' => '0.14', 5317 'PerlIO::scalar' => '0.11', 5318 'PerlIO::via' => '0.11', 5319 'SDBM_File' => '1.09', 5320 'Socket' => '1.92', 5321 'Storable' => '2.25', 5322 'Time::HiRes' => '1.9721_01', 5323 'Unicode::Collate' => '0.6801', 5324 'Unicode::Collate::Locale'=> '0.68', 5325 'Unicode::Normalize' => '1.08', 5326 'Unicode::UCD' => '0.30', 5327 'Win32' => '0.41', 5328 'XS::APItest' => '0.27', 5329 'autodie' => '2.1001', 5330 'autodie::exception' => '2.1001', 5331 'autodie::exception::system'=> '2.1001', 5332 'autodie::hints' => '2.1001', 5333 'feature' => '1.19', 5334 'if' => '0.0601', 5335 'mro' => '1.06', 5336 'overload' => '1.12', 5337 're' => '0.15', 5338 'threads' => '1.81_03', 5339 'threads::shared' => '1.35', 5340 'version' => '0.86', 5341 }, 5342 removed => { 5343 } 5344 }, 5345 5.013009 => { 5346 delta_from => 5.013008, 5347 changed => { 5348 'Archive::Extract' => '0.48', 5349 'Archive::Tar' => '1.76', 5350 'Archive::Tar::Constant'=> '1.76', 5351 'Archive::Tar::File' => '1.76', 5352 'B::Concise' => '0.83', 5353 'B::Deparse' => '1.03', 5354 'B::Lint' => '1.13', 5355 'Benchmark' => '1.12', 5356 'CGI' => '3.51', 5357 'CGI::Carp' => '3.51', 5358 'CGI::Cookie' => '1.30', 5359 'CGI::Push' => '1.05', 5360 'CGI::Util' => '3.51', 5361 'CPAN' => '1.94_63', 5362 'CPAN::HTTP::Client' => '1.94', 5363 'CPAN::HTTP::Credentials'=> '1.94', 5364 'CPAN::Meta::YAML' => '0.003', 5365 'CPANPLUS' => '0.9011', 5366 'CPANPLUS::Dist::Build' => '0.52', 5367 'CPANPLUS::Dist::Build::Constants'=> '0.52', 5368 'CPANPLUS::Internals' => '0.9011', 5369 'CPANPLUS::Shell::Default'=> '0.9011', 5370 'Carp::Heavy' => '1.19', 5371 'Compress::Raw::Bzip2' => '2.033', 5372 'Compress::Raw::Zlib' => '2.033', 5373 'Compress::Zlib' => '2.033', 5374 'Cwd' => '3.36', 5375 'DBM_Filter' => '0.04', 5376 'DB_File' => '1.821', 5377 'Devel::Peek' => '1.07', 5378 'DirHandle' => '1.04', 5379 'Dumpvalue' => '1.16', 5380 'Encode' => '2.42', 5381 'Encode::Alias' => '2.13', 5382 'Encode::MIME::Header' => '2.13', 5383 'Exporter::Heavy' => '5.64_03', 5384 'ExtUtils::Install' => '1.56', 5385 'ExtUtils::ParseXS' => '2.2209', 5386 'File::Basename' => '2.80', 5387 'File::Copy' => '2.21', 5388 'File::DosGlob' => '1.04', 5389 'File::Fetch' => '0.32', 5390 'File::Find' => '1.19', 5391 'File::Spec::Mac' => '3.34', 5392 'File::Spec::VMS' => '3.34', 5393 'File::stat' => '1.05', 5394 'HTTP::Tiny' => '0.009', 5395 'Hash::Util::FieldHash' => '1.08', 5396 'IO::Compress::Adapter::Bzip2'=> '2.033', 5397 'IO::Compress::Adapter::Deflate'=> '2.033', 5398 'IO::Compress::Adapter::Identity'=> '2.033', 5399 'IO::Compress::Base' => '2.033', 5400 'IO::Compress::Base::Common'=> '2.033', 5401 'IO::Compress::Bzip2' => '2.033', 5402 'IO::Compress::Deflate' => '2.033', 5403 'IO::Compress::Gzip' => '2.033', 5404 'IO::Compress::Gzip::Constants'=> '2.033', 5405 'IO::Compress::RawDeflate'=> '2.033', 5406 'IO::Compress::Zip' => '2.033', 5407 'IO::Compress::Zip::Constants'=> '2.033', 5408 'IO::Compress::Zlib::Constants'=> '2.033', 5409 'IO::Compress::Zlib::Extra'=> '2.033', 5410 'IO::Handle' => '1.29', 5411 'IO::Uncompress::Adapter::Bunzip2'=> '2.033', 5412 'IO::Uncompress::Adapter::Identity'=> '2.033', 5413 'IO::Uncompress::Adapter::Inflate'=> '2.033', 5414 'IO::Uncompress::AnyInflate'=> '2.033', 5415 'IO::Uncompress::AnyUncompress'=> '2.033', 5416 'IO::Uncompress::Base' => '2.033', 5417 'IO::Uncompress::Bunzip2'=> '2.033', 5418 'IO::Uncompress::Gunzip'=> '2.033', 5419 'IO::Uncompress::Inflate'=> '2.033', 5420 'IO::Uncompress::RawInflate'=> '2.033', 5421 'IO::Uncompress::Unzip' => '2.033', 5422 'IPC::Cmd' => '0.68', 5423 'IPC::Open3' => '1.09', 5424 'JSON::PP' => '2.27103', 5425 'JSON::PP::Boolean' => undef, 5426 'Locale::Maketext' => '1.18', 5427 'Log::Message' => '0.04', 5428 'Log::Message::Config' => '0.04', 5429 'Log::Message::Handlers'=> '0.04', 5430 'Log::Message::Item' => '0.04', 5431 'Log::Message::Simple' => '0.08', 5432 'Math::BigFloat' => '1.99_03', 5433 'Math::BigInt' => '1.99_03', 5434 'Math::BigInt::Calc' => '1.99_03', 5435 'Math::BigInt::FastCalc'=> '0.24_02', 5436 'Math::BigRat' => '0.26_02', 5437 'Module::CoreList' => '2.42_01', 5438 'Module::Load::Conditional'=> '0.40', 5439 'Module::Metadata' => '1.000003', 5440 'Net::Ping' => '2.38', 5441 'OS2::Process' => '1.05', 5442 'Object::Accessor' => '0.38', 5443 'POSIX' => '1.24', 5444 'Params::Check' => '0.28', 5445 'Perl::OSType' => '1.002', 5446 'Pod::LaTeX' => '0.59', 5447 'Pod::Perldoc' => '3.15_03', 5448 'Socket' => '1.93', 5449 'Storable' => '2.26', 5450 'Sys::Hostname' => '1.15', 5451 'Term::UI' => '0.24', 5452 'Thread::Queue' => '2.12', 5453 'Thread::Semaphore' => '2.12', 5454 'Time::Local' => '1.2000', 5455 'UNIVERSAL' => '1.08', 5456 'Unicode::Normalize' => '1.10', 5457 'Win32' => '0.44', 5458 'bigint' => '0.26', 5459 'bignum' => '0.26', 5460 'bigrat' => '0.26', 5461 'charnames' => '1.18', 5462 'diagnostics' => '1.21', 5463 're' => '0.16', 5464 'threads' => '1.83', 5465 'threads::shared' => '1.36', 5466 'version' => '0.88', 5467 }, 5468 removed => { 5469 } 5470 }, 5471 5.01301 => { 5472 delta_from => 5.013009, 5473 changed => { 5474 'Attribute::Handlers' => '0.89', 5475 'B' => '1.28', 5476 'B::Showlex' => '1.03', 5477 'CGI' => '3.52', 5478 'CPAN' => '1.94_65', 5479 'CPAN::Distribution' => '1.9601', 5480 'CPAN::FTP::netrc' => '1.01', 5481 'CPAN::FirstTime' => '5.5303', 5482 'CPAN::HandleConfig' => '5.5003', 5483 'CPAN::Meta' => '2.110440', 5484 'CPAN::Meta::Converter' => '2.110440', 5485 'CPAN::Meta::Feature' => '2.110440', 5486 'CPAN::Meta::History' => '2.110440', 5487 'CPAN::Meta::Prereqs' => '2.110440', 5488 'CPAN::Meta::Spec' => '2.110440', 5489 'CPAN::Meta::Validator' => '2.110440', 5490 'CPAN::Shell' => '5.5002', 5491 'CPANPLUS' => '0.9101', 5492 'CPANPLUS::Internals' => '0.9101', 5493 'CPANPLUS::Shell::Default'=> '0.9101', 5494 'Carp' => '1.20', 5495 'Carp::Heavy' => '1.20', 5496 'Cwd' => '3.37', 5497 'Devel::DProf' => '20110217.00', 5498 'DynaLoader' => '1.13', 5499 'ExtUtils::CBuilder' => '0.280202', 5500 'ExtUtils::CBuilder::Base'=> '0.280202', 5501 'ExtUtils::CBuilder::Platform::Unix'=> '0.280202', 5502 'ExtUtils::CBuilder::Platform::VMS'=> '0.280202', 5503 'ExtUtils::CBuilder::Platform::Windows'=> '0.280202', 5504 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280202', 5505 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280202', 5506 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280202', 5507 'ExtUtils::CBuilder::Platform::aix'=> '0.280202', 5508 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280202', 5509 'ExtUtils::CBuilder::Platform::darwin'=> '0.280202', 5510 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280202', 5511 'ExtUtils::CBuilder::Platform::os2'=> '0.280202', 5512 'File::Copy' => '2.22', 5513 'Filter::Simple' => '0.86', 5514 'HTTP::Tiny' => '0.010', 5515 'I18N::LangTags::Detect'=> '1.05', 5516 'IO::Select' => '1.18', 5517 'IPC::Cmd' => '0.70', 5518 'Locale::Maketext' => '1.19', 5519 'Math::BigFloat' => '1.992', 5520 'Math::BigInt' => '1.992', 5521 'Math::BigInt::Calc' => '1.992', 5522 'Math::BigInt::CalcEmu' => '1.992', 5523 'Module::Build' => '0.37_05', 5524 'Module::Build::Base' => '0.37_05', 5525 'Module::Build::Compat' => '0.37_05', 5526 'Module::Build::Config' => '0.37_05', 5527 'Module::Build::Cookbook'=> '0.37_05', 5528 'Module::Build::Dumper' => '0.37_05', 5529 'Module::Build::ModuleInfo'=> '0.37_05', 5530 'Module::Build::Notes' => '0.37_05', 5531 'Module::Build::PPMMaker'=> '0.37_05', 5532 'Module::Build::Platform::Amiga'=> '0.37_05', 5533 'Module::Build::Platform::Default'=> '0.37_05', 5534 'Module::Build::Platform::EBCDIC'=> '0.37_05', 5535 'Module::Build::Platform::MPEiX'=> '0.37_05', 5536 'Module::Build::Platform::MacOS'=> '0.37_05', 5537 'Module::Build::Platform::RiscOS'=> '0.37_05', 5538 'Module::Build::Platform::Unix'=> '0.37_05', 5539 'Module::Build::Platform::VMS'=> '0.37_05', 5540 'Module::Build::Platform::VOS'=> '0.37_05', 5541 'Module::Build::Platform::Windows'=> '0.37_05', 5542 'Module::Build::Platform::aix'=> '0.37_05', 5543 'Module::Build::Platform::cygwin'=> '0.37_05', 5544 'Module::Build::Platform::darwin'=> '0.37_05', 5545 'Module::Build::Platform::os2'=> '0.37_05', 5546 'Module::Build::PodParser'=> '0.37_05', 5547 'Module::Build::Version'=> '0.87', 5548 'Module::Build::YAML' => '1.41', 5549 'Module::CoreList' => '2.45', 5550 'Module::Load::Conditional'=> '0.44', 5551 'Module::Metadata' => '1.000004', 5552 'OS2::Process' => '1.06', 5553 'Parse::CPAN::Meta' => '1.4401', 5554 'Pod::Html' => '1.1', 5555 'Socket' => '1.94', 5556 'Term::UI' => '0.26', 5557 'Unicode::Collate' => '0.72', 5558 'Unicode::Collate::Locale'=> '0.71', 5559 'Unicode::UCD' => '0.31', 5560 'VMS::DCLsym' => '1.05', 5561 'Version::Requirements' => '0.101020', 5562 'bigrat' => '0.27', 5563 'deprecate' => '0.02', 5564 'diagnostics' => '1.22', 5565 'inc::latest' => '0.37_05', 5566 'overload' => '1.13', 5567 're' => '0.17', 5568 'utf8' => '1.09', 5569 'warnings' => '1.12', 5570 }, 5571 removed => { 5572 } 5573 }, 5574 5.013011 => { 5575 delta_from => 5.01301, 5576 changed => { 5577 'App::Prove' => '3.23', 5578 'App::Prove::State' => '3.23', 5579 'App::Prove::State::Result'=> '3.23', 5580 'App::Prove::State::Result::Test'=> '3.23', 5581 'B' => '1.29', 5582 'CPAN' => '1.9600', 5583 'CPAN::Author' => '5.5001', 5584 'CPAN::CacheMgr' => '5.5001', 5585 'CPAN::Distribution' => '1.9602', 5586 'CPAN::Exception::blocked_urllist'=> '1.001', 5587 'CPAN::HTTP::Client' => '1.9600', 5588 'CPAN::HTTP::Credentials'=> '1.9600', 5589 'CPAN::Index' => '1.9600', 5590 'CPAN::LWP::UserAgent' => '1.9600', 5591 'CPAN::Mirrors' => '1.9600', 5592 'CPAN::Module' => '5.5001', 5593 'CPANPLUS' => '0.9103', 5594 'CPANPLUS::Dist::Build' => '0.54', 5595 'CPANPLUS::Dist::Build::Constants'=> '0.54', 5596 'CPANPLUS::Internals' => '0.9103', 5597 'CPANPLUS::Shell::Default'=> '0.9103', 5598 'Cwd' => '3.36', 5599 'Devel::DProf' => '20110228.00', 5600 'Digest::SHA' => '5.61', 5601 'ExtUtils::Command' => '1.17', 5602 'File::Basename' => '2.81', 5603 'File::Copy' => '2.21', 5604 'File::Glob' => '1.12', 5605 'GDBM_File' => '1.14', 5606 'HTTP::Tiny' => '0.011', 5607 'Hash::Util' => '0.11', 5608 'Hash::Util::FieldHash' => '1.09', 5609 'I18N::Langinfo' => '0.08', 5610 'IO' => '1.25_04', 5611 'IO::Dir' => '1.08', 5612 'IO::File' => '1.15', 5613 'IO::Handle' => '1.30', 5614 'IO::Pipe' => '1.14', 5615 'IO::Poll' => '0.08', 5616 'IO::Select' => '1.20', 5617 'JSON::PP' => '2.27105', 5618 'Locale::Codes' => '3.16', 5619 'Locale::Codes::Country'=> '3.16', 5620 'Locale::Codes::Currency'=> '3.16', 5621 'Locale::Codes::Language'=> '3.16', 5622 'Locale::Codes::Script' => '3.16', 5623 'Locale::Constants' => '3.16', 5624 'Locale::Country' => '3.16', 5625 'Locale::Currency' => '3.16', 5626 'Locale::Language' => '3.16', 5627 'Locale::Script' => '3.16', 5628 'Math::BigFloat' => '1.993', 5629 'Math::BigInt' => '1.994', 5630 'Math::BigInt::Calc' => '1.993', 5631 'Math::BigInt::CalcEmu' => '1.993', 5632 'Math::BigInt::FastCalc'=> '0.28', 5633 'Module::Build' => '0.3800', 5634 'Module::Build::Base' => '0.3800', 5635 'Module::Build::Compat' => '0.3800', 5636 'Module::Build::Config' => '0.3800', 5637 'Module::Build::Cookbook'=> '0.3800', 5638 'Module::Build::Dumper' => '0.3800', 5639 'Module::Build::ModuleInfo'=> '0.3800', 5640 'Module::Build::Notes' => '0.3800', 5641 'Module::Build::PPMMaker'=> '0.3800', 5642 'Module::Build::Platform::Amiga'=> '0.3800', 5643 'Module::Build::Platform::Default'=> '0.3800', 5644 'Module::Build::Platform::EBCDIC'=> '0.3800', 5645 'Module::Build::Platform::MPEiX'=> '0.3800', 5646 'Module::Build::Platform::MacOS'=> '0.3800', 5647 'Module::Build::Platform::RiscOS'=> '0.3800', 5648 'Module::Build::Platform::Unix'=> '0.3800', 5649 'Module::Build::Platform::VMS'=> '0.3800', 5650 'Module::Build::Platform::VOS'=> '0.3800', 5651 'Module::Build::Platform::Windows'=> '0.3800', 5652 'Module::Build::Platform::aix'=> '0.3800', 5653 'Module::Build::Platform::cygwin'=> '0.3800', 5654 'Module::Build::Platform::darwin'=> '0.3800', 5655 'Module::Build::Platform::os2'=> '0.3800', 5656 'Module::Build::PodParser'=> '0.3800', 5657 'Module::CoreList' => '2.46', 5658 'NDBM_File' => '1.12', 5659 'Pod::Simple' => '3.16', 5660 'Pod::Simple::BlackBox' => '3.16', 5661 'Pod::Simple::Checker' => '3.16', 5662 'Pod::Simple::Debug' => '3.16', 5663 'Pod::Simple::DumpAsText'=> '3.16', 5664 'Pod::Simple::DumpAsXML'=> '3.16', 5665 'Pod::Simple::HTML' => '3.16', 5666 'Pod::Simple::HTMLBatch'=> '3.16', 5667 'Pod::Simple::LinkSection'=> '3.16', 5668 'Pod::Simple::Methody' => '3.16', 5669 'Pod::Simple::Progress' => '3.16', 5670 'Pod::Simple::PullParser'=> '3.16', 5671 'Pod::Simple::PullParserEndToken'=> '3.16', 5672 'Pod::Simple::PullParserStartToken'=> '3.16', 5673 'Pod::Simple::PullParserTextToken'=> '3.16', 5674 'Pod::Simple::PullParserToken'=> '3.16', 5675 'Pod::Simple::RTF' => '3.16', 5676 'Pod::Simple::Search' => '3.16', 5677 'Pod::Simple::SimpleTree'=> '3.16', 5678 'Pod::Simple::Text' => '3.16', 5679 'Pod::Simple::TextContent'=> '3.16', 5680 'Pod::Simple::TiedOutFH'=> '3.16', 5681 'Pod::Simple::Transcode'=> '3.16', 5682 'Pod::Simple::TranscodeDumb'=> '3.16', 5683 'Pod::Simple::TranscodeSmart'=> '3.16', 5684 'Pod::Simple::XHTML' => '3.16', 5685 'Pod::Simple::XMLOutStream'=> '3.16', 5686 'Storable' => '2.27', 5687 'Sys::Hostname' => '1.16', 5688 'TAP::Base' => '3.23', 5689 'TAP::Formatter::Base' => '3.23', 5690 'TAP::Formatter::Color' => '3.23', 5691 'TAP::Formatter::Console'=> '3.23', 5692 'TAP::Formatter::Console::ParallelSession'=> '3.23', 5693 'TAP::Formatter::Console::Session'=> '3.23', 5694 'TAP::Formatter::File' => '3.23', 5695 'TAP::Formatter::File::Session'=> '3.23', 5696 'TAP::Formatter::Session'=> '3.23', 5697 'TAP::Harness' => '3.23', 5698 'TAP::Object' => '3.23', 5699 'TAP::Parser' => '3.23', 5700 'TAP::Parser::Aggregator'=> '3.23', 5701 'TAP::Parser::Grammar' => '3.23', 5702 'TAP::Parser::Iterator' => '3.23', 5703 'TAP::Parser::Iterator::Array'=> '3.23', 5704 'TAP::Parser::Iterator::Process'=> '3.23', 5705 'TAP::Parser::Iterator::Stream'=> '3.23', 5706 'TAP::Parser::IteratorFactory'=> '3.23', 5707 'TAP::Parser::Multiplexer'=> '3.23', 5708 'TAP::Parser::Result' => '3.23', 5709 'TAP::Parser::Result::Bailout'=> '3.23', 5710 'TAP::Parser::Result::Comment'=> '3.23', 5711 'TAP::Parser::Result::Plan'=> '3.23', 5712 'TAP::Parser::Result::Pragma'=> '3.23', 5713 'TAP::Parser::Result::Test'=> '3.23', 5714 'TAP::Parser::Result::Unknown'=> '3.23', 5715 'TAP::Parser::Result::Version'=> '3.23', 5716 'TAP::Parser::Result::YAML'=> '3.23', 5717 'TAP::Parser::ResultFactory'=> '3.23', 5718 'TAP::Parser::Scheduler'=> '3.23', 5719 'TAP::Parser::Scheduler::Job'=> '3.23', 5720 'TAP::Parser::Scheduler::Spinner'=> '3.23', 5721 'TAP::Parser::Source' => '3.23', 5722 'TAP::Parser::SourceHandler'=> '3.23', 5723 'TAP::Parser::SourceHandler::Executable'=> '3.23', 5724 'TAP::Parser::SourceHandler::File'=> '3.23', 5725 'TAP::Parser::SourceHandler::Handle'=> '3.23', 5726 'TAP::Parser::SourceHandler::Perl'=> '3.23', 5727 'TAP::Parser::SourceHandler::RawTAP'=> '3.23', 5728 'TAP::Parser::Utils' => '3.23', 5729 'TAP::Parser::YAMLish::Reader'=> '3.23', 5730 'TAP::Parser::YAMLish::Writer'=> '3.23', 5731 'Test::Builder' => '0.98', 5732 'Test::Builder::Module' => '0.98', 5733 'Test::Builder::Tester' => '1.22', 5734 'Test::Builder::Tester::Color'=> '1.22', 5735 'Test::Harness' => '3.23', 5736 'Test::More' => '0.98', 5737 'Test::Simple' => '0.98', 5738 'Tie::Hash::NamedCapture'=> '0.08', 5739 'Tie::RefHash' => '1.39', 5740 'Unicode::Collate' => '0.73', 5741 'Unicode::Collate::Locale'=> '0.73', 5742 'Unicode::UCD' => '0.32', 5743 'XS::Typemap' => '0.05', 5744 'attributes' => '0.14', 5745 'base' => '2.16', 5746 'inc::latest' => '0.3800', 5747 'mro' => '1.07', 5748 'parent' => '0.225', 5749 }, 5750 removed => { 5751 } 5752 }, 5753 5.014 => { 5754 delta_from => 5.013011, 5755 changed => { 5756 'ExtUtils::CBuilder' => '0.280203', 5757 'ExtUtils::CBuilder::Base'=> '0.280203', 5758 'ExtUtils::CBuilder::Platform::Unix'=> '0.280203', 5759 'ExtUtils::CBuilder::Platform::VMS'=> '0.280203', 5760 'ExtUtils::CBuilder::Platform::Windows'=> '0.280203', 5761 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280203', 5762 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280203', 5763 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280203', 5764 'ExtUtils::CBuilder::Platform::aix'=> '0.280203', 5765 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280203', 5766 'ExtUtils::CBuilder::Platform::darwin'=> '0.280203', 5767 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280203', 5768 'ExtUtils::CBuilder::Platform::os2'=> '0.280203', 5769 'ExtUtils::ParseXS' => '2.2210', 5770 'File::Basename' => '2.82', 5771 'HTTP::Tiny' => '0.012', 5772 'IO::Handle' => '1.31', 5773 'Module::CoreList' => '2.49', 5774 'PerlIO' => '1.07', 5775 'Pod::Html' => '1.11', 5776 'XS::APItest' => '0.28', 5777 'bigint' => '0.27', 5778 'bignum' => '0.27', 5779 'bigrat' => '0.28', 5780 'constant' => '1.21', 5781 'feature' => '1.20', 5782 're' => '0.18', 5783 'threads::shared' => '1.37', 5784 }, 5785 removed => { 5786 } 5787 }, 5788 5.014001 => { 5789 delta_from => 5.014, 5790 changed => { 5791 'B::Deparse' => '1.04', 5792 'Module::CoreList' => '2.49_01', 5793 'Pod::Perldoc' => '3.15_04', 5794 }, 5795 removed => { 5796 } 5797 }, 5798 5.014002 => { 5799 delta_from => 5.014001, 5800 changed => { 5801 'CPAN' => '1.9600_01', 5802 'CPAN::Distribution' => '1.9602_01', 5803 'Devel::DProf::dprof::V'=> undef, 5804 'Encode' => '2.42_01', 5805 'File::Glob' => '1.13', 5806 'Module::CoreList' => '2.49_02', 5807 'PerlIO::scalar' => '0.11_01', 5808 'Time::Piece::Seconds' => undef, 5809 }, 5810 removed => { 5811 } 5812 }, 5813 5.014003 => { 5814 delta_from => 5.014002, 5815 changed => { 5816 'Digest' => '1.16_01', 5817 'IPC::Open3' => '1.09_01', 5818 'Module::CoreList' => '2.49_04', 5819 }, 5820 removed => { 5821 } 5822 }, 5823 5.014004 => { 5824 delta_from => 5.014003, 5825 changed => { 5826 'Encode' => '2.42_02', 5827 'IPC::Open3' => '1.0901', 5828 'Module::CoreList' => '2.49_06', 5829 }, 5830 removed => { 5831 } 5832 }, 5833 5.015 => { 5834 delta_from => 5.014001, 5835 changed => { 5836 'Archive::Extract' => '0.52', 5837 'Attribute::Handlers' => '0.91', 5838 'B' => '1.30', 5839 'B::Concise' => '0.84', 5840 'B::Deparse' => '1.05', 5841 'Benchmark' => '1.13', 5842 'CGI' => '3.54', 5843 'CGI::Util' => '3.53', 5844 'CPAN::Meta' => '2.110930', 5845 'CPAN::Meta::Converter' => '2.110930', 5846 'CPAN::Meta::Feature' => '2.110930', 5847 'CPAN::Meta::History' => '2.110930', 5848 'CPAN::Meta::Prereqs' => '2.110930', 5849 'CPAN::Meta::Spec' => '2.110930', 5850 'CPAN::Meta::Validator' => '2.110930', 5851 'CPANPLUS' => '0.9105', 5852 'CPANPLUS::Dist::Build' => '0.56', 5853 'CPANPLUS::Dist::Build::Constants'=> '0.56', 5854 'CPANPLUS::Internals' => '0.9105', 5855 'CPANPLUS::Shell::Default'=> '0.9105', 5856 'Compress::Raw::Bzip2' => '2.035', 5857 'Compress::Raw::Zlib' => '2.035', 5858 'Compress::Zlib' => '2.035', 5859 'DB_File' => '1.822', 5860 'Data::Dumper' => '2.131', 5861 'Devel::Peek' => '1.08', 5862 'Digest::SHA' => '5.62', 5863 'Encode' => '2.43', 5864 'Encode::Alias' => '2.14', 5865 'ExtUtils::CBuilder' => '0.280204', 5866 'ExtUtils::CBuilder::Base'=> '0.280204', 5867 'Fatal' => '2.10', 5868 'File::Spec::Win32' => '3.34', 5869 'Filter::Simple' => '0.87', 5870 'Filter::Util::Call' => '1.39', 5871 'FindBin' => '1.51', 5872 'Hash::Util::FieldHash' => '1.10', 5873 'I18N::LangTags' => '0.36', 5874 'IO::Compress::Adapter::Bzip2'=> '2.035', 5875 'IO::Compress::Adapter::Deflate'=> '2.035', 5876 'IO::Compress::Adapter::Identity'=> '2.035', 5877 'IO::Compress::Base' => '2.035', 5878 'IO::Compress::Base::Common'=> '2.035', 5879 'IO::Compress::Bzip2' => '2.035', 5880 'IO::Compress::Deflate' => '2.035', 5881 'IO::Compress::Gzip' => '2.035', 5882 'IO::Compress::Gzip::Constants'=> '2.035', 5883 'IO::Compress::RawDeflate'=> '2.035', 5884 'IO::Compress::Zip' => '2.035', 5885 'IO::Compress::Zip::Constants'=> '2.035', 5886 'IO::Compress::Zlib::Constants'=> '2.035', 5887 'IO::Compress::Zlib::Extra'=> '2.035', 5888 'IO::Uncompress::Adapter::Bunzip2'=> '2.035', 5889 'IO::Uncompress::Adapter::Identity'=> '2.035', 5890 'IO::Uncompress::Adapter::Inflate'=> '2.035', 5891 'IO::Uncompress::AnyInflate'=> '2.035', 5892 'IO::Uncompress::AnyUncompress'=> '2.035', 5893 'IO::Uncompress::Base' => '2.035', 5894 'IO::Uncompress::Bunzip2'=> '2.035', 5895 'IO::Uncompress::Gunzip'=> '2.035', 5896 'IO::Uncompress::Inflate'=> '2.035', 5897 'IO::Uncompress::RawInflate'=> '2.035', 5898 'IO::Uncompress::Unzip' => '2.035', 5899 'IPC::Open2' => '1.04', 5900 'IPC::Open3' => '1.11', 5901 'JSON::PP' => '2.27200', 5902 'Math::BigFloat' => '1.994', 5903 'Math::BigInt' => '1.995', 5904 'Math::Complex' => '1.57', 5905 'Math::Trig' => '1.21', 5906 'Module::CoreList' => '2.51', 5907 'ODBM_File' => '1.11', 5908 'Object::Accessor' => '0.42', 5909 'Opcode' => '1.19', 5910 'PerlIO::encoding' => '0.15', 5911 'PerlIO::scalar' => '0.12', 5912 'Pod::Perldoc' => '3.15_05', 5913 'Storable' => '2.28', 5914 'Sys::Syslog' => '0.29', 5915 'Time::HiRes' => '1.9722', 5916 'Unicode::Collate' => '0.76', 5917 'Unicode::Collate::CJK::Pinyin'=> '0.76', 5918 'Unicode::Collate::CJK::Stroke'=> '0.76', 5919 'Unicode::Collate::Locale'=> '0.76', 5920 'Unicode::Normalize' => '1.12', 5921 'XS::APItest' => '0.29', 5922 'XSLoader' => '0.15', 5923 'autodie' => '2.10', 5924 'autodie::exception' => '2.10', 5925 'autodie::exception::system'=> '2.10', 5926 'autodie::hints' => '2.10', 5927 'base' => '2.17', 5928 'charnames' => '1.22', 5929 'constant' => '1.22', 5930 'feature' => '1.21', 5931 'mro' => '1.08', 5932 'overload' => '1.14', 5933 'threads::shared' => '1.38', 5934 'vmsish' => '1.03', 5935 }, 5936 removed => { 5937 'Devel::DProf' => 1, 5938 'Shell' => 1, 5939 } 5940 }, 5941 5.015001 => { 5942 delta_from => 5.015, 5943 changed => { 5944 'B::Deparse' => '1.06', 5945 'CGI' => '3.55', 5946 'CPAN::Meta' => '2.110930001', 5947 'CPAN::Meta::Converter' => '2.110930001', 5948 'CPANPLUS' => '0.9108', 5949 'CPANPLUS::Internals' => '0.9108', 5950 'CPANPLUS::Shell::Default'=> '0.9108', 5951 'Carp' => '1.21', 5952 'Carp::Heavy' => '1.21', 5953 'Compress::Raw::Bzip2' => '2.037', 5954 'Compress::Raw::Zlib' => '2.037', 5955 'Compress::Zlib' => '2.037', 5956 'Cwd' => '3.37', 5957 'Env' => '1.03', 5958 'ExtUtils::Command::MM' => '6.58', 5959 'ExtUtils::Liblist' => '6.58', 5960 'ExtUtils::Liblist::Kid'=> '6.58', 5961 'ExtUtils::MM' => '6.58', 5962 'ExtUtils::MM_AIX' => '6.58', 5963 'ExtUtils::MM_Any' => '6.58', 5964 'ExtUtils::MM_BeOS' => '6.58', 5965 'ExtUtils::MM_Cygwin' => '6.58', 5966 'ExtUtils::MM_DOS' => '6.58', 5967 'ExtUtils::MM_Darwin' => '6.58', 5968 'ExtUtils::MM_MacOS' => '6.58', 5969 'ExtUtils::MM_NW5' => '6.58', 5970 'ExtUtils::MM_OS2' => '6.58', 5971 'ExtUtils::MM_QNX' => '6.58', 5972 'ExtUtils::MM_UWIN' => '6.58', 5973 'ExtUtils::MM_Unix' => '6.58', 5974 'ExtUtils::MM_VMS' => '6.58', 5975 'ExtUtils::MM_VOS' => '6.58', 5976 'ExtUtils::MM_Win32' => '6.58', 5977 'ExtUtils::MM_Win95' => '6.58', 5978 'ExtUtils::MY' => '6.58', 5979 'ExtUtils::MakeMaker' => '6.58', 5980 'ExtUtils::MakeMaker::Config'=> '6.58', 5981 'ExtUtils::Mkbootstrap' => '6.58', 5982 'ExtUtils::Mksymlists' => '6.58', 5983 'ExtUtils::ParseXS' => '3.00_01', 5984 'ExtUtils::ParseXS::Constants'=> undef, 5985 'ExtUtils::ParseXS::CountLines'=> undef, 5986 'ExtUtils::ParseXS::Utilities'=> undef, 5987 'ExtUtils::Typemaps' => '1.00', 5988 'ExtUtils::Typemaps::InputMap'=> undef, 5989 'ExtUtils::Typemaps::OutputMap'=> undef, 5990 'ExtUtils::Typemaps::Type'=> '0.05', 5991 'ExtUtils::testlib' => '6.58', 5992 'File::Basename' => '2.83', 5993 'File::Find' => '1.20', 5994 'HTTP::Tiny' => '0.013', 5995 'I18N::Langinfo' => '0.08_02', 5996 'IO::Compress::Adapter::Bzip2'=> '2.037', 5997 'IO::Compress::Adapter::Deflate'=> '2.037', 5998 'IO::Compress::Adapter::Identity'=> '2.037', 5999 'IO::Compress::Base' => '2.037', 6000 'IO::Compress::Base::Common'=> '2.037', 6001 'IO::Compress::Bzip2' => '2.037', 6002 'IO::Compress::Deflate' => '2.037', 6003 'IO::Compress::Gzip' => '2.037', 6004 'IO::Compress::Gzip::Constants'=> '2.037', 6005 'IO::Compress::RawDeflate'=> '2.037', 6006 'IO::Compress::Zip' => '2.037', 6007 'IO::Compress::Zip::Constants'=> '2.037', 6008 'IO::Compress::Zlib::Constants'=> '2.037', 6009 'IO::Compress::Zlib::Extra'=> '2.037', 6010 'IO::Uncompress::Adapter::Bunzip2'=> '2.037', 6011 'IO::Uncompress::Adapter::Identity'=> '2.037', 6012 'IO::Uncompress::Adapter::Inflate'=> '2.037', 6013 'IO::Uncompress::AnyInflate'=> '2.037', 6014 'IO::Uncompress::AnyUncompress'=> '2.037', 6015 'IO::Uncompress::Base' => '2.037', 6016 'IO::Uncompress::Bunzip2'=> '2.037', 6017 'IO::Uncompress::Gunzip'=> '2.037', 6018 'IO::Uncompress::Inflate'=> '2.037', 6019 'IO::Uncompress::RawInflate'=> '2.037', 6020 'IO::Uncompress::Unzip' => '2.037', 6021 'IPC::Cmd' => '0.72', 6022 'Locale::Codes' => '3.17', 6023 'Locale::Codes::Constants'=> '3.17', 6024 'Locale::Codes::Country'=> '3.17', 6025 'Locale::Codes::Country_Codes'=> '3.17', 6026 'Locale::Codes::Currency'=> '3.17', 6027 'Locale::Codes::Currency_Codes'=> '3.17', 6028 'Locale::Codes::LangExt'=> '3.17', 6029 'Locale::Codes::LangExt_Codes'=> '3.17', 6030 'Locale::Codes::LangVar'=> '3.17', 6031 'Locale::Codes::LangVar_Codes'=> '3.17', 6032 'Locale::Codes::Language'=> '3.17', 6033 'Locale::Codes::Language_Codes'=> '3.17', 6034 'Locale::Codes::Script' => '3.17', 6035 'Locale::Codes::Script_Codes'=> '3.17', 6036 'Locale::Country' => '3.17', 6037 'Locale::Currency' => '3.17', 6038 'Locale::Language' => '3.17', 6039 'Locale::Script' => '3.17', 6040 'Math::BigFloat::Trace' => '0.28', 6041 'Math::BigInt::FastCalc'=> '0.29', 6042 'Math::BigInt::Trace' => '0.28', 6043 'Math::BigRat' => '0.2602', 6044 'Math::Complex' => '1.58', 6045 'Math::Trig' => '1.22', 6046 'Module::CoreList' => '2.54', 6047 'OS2::Process' => '1.07', 6048 'Pod::Perldoc' => '3.15_06', 6049 'Pod::Simple' => '3.18', 6050 'Pod::Simple::BlackBox' => '3.18', 6051 'Pod::Simple::Checker' => '3.18', 6052 'Pod::Simple::Debug' => '3.18', 6053 'Pod::Simple::DumpAsText'=> '3.18', 6054 'Pod::Simple::DumpAsXML'=> '3.18', 6055 'Pod::Simple::HTML' => '3.18', 6056 'Pod::Simple::HTMLBatch'=> '3.18', 6057 'Pod::Simple::LinkSection'=> '3.18', 6058 'Pod::Simple::Methody' => '3.18', 6059 'Pod::Simple::Progress' => '3.18', 6060 'Pod::Simple::PullParser'=> '3.18', 6061 'Pod::Simple::PullParserEndToken'=> '3.18', 6062 'Pod::Simple::PullParserStartToken'=> '3.18', 6063 'Pod::Simple::PullParserTextToken'=> '3.18', 6064 'Pod::Simple::PullParserToken'=> '3.18', 6065 'Pod::Simple::RTF' => '3.18', 6066 'Pod::Simple::Search' => '3.18', 6067 'Pod::Simple::SimpleTree'=> '3.18', 6068 'Pod::Simple::Text' => '3.18', 6069 'Pod::Simple::TextContent'=> '3.18', 6070 'Pod::Simple::TiedOutFH'=> '3.18', 6071 'Pod::Simple::Transcode'=> '3.18', 6072 'Pod::Simple::TranscodeDumb'=> '3.18', 6073 'Pod::Simple::TranscodeSmart'=> '3.18', 6074 'Pod::Simple::XHTML' => '3.18', 6075 'Pod::Simple::XMLOutStream'=> '3.18', 6076 'Storable' => '2.31', 6077 'Sys::Syslog::Win32' => undef, 6078 'Time::HiRes' => '1.9724', 6079 'Unicode::Collate' => '0.77', 6080 'Unicode::UCD' => '0.33', 6081 'Win32API::File' => '0.1200', 6082 'XS::APItest' => '0.30', 6083 'attributes' => '0.15', 6084 'bigint' => '0.28', 6085 'bignum' => '0.28', 6086 'charnames' => '1.23', 6087 'diagnostics' => '1.23', 6088 'feature' => '1.22', 6089 'overload' => '1.15', 6090 'perlfaq' => '5.015000', 6091 'threads' => '1.84', 6092 'version' => '0.93', 6093 }, 6094 removed => { 6095 'ExtUtils::MakeMaker::YAML'=> 1, 6096 'Locale::Constants' => 1, 6097 'Sys::Syslog::win32::Win32'=> 1, 6098 } 6099 }, 6100 5.015002 => { 6101 delta_from => 5.015001, 6102 changed => { 6103 'Attribute::Handlers' => '0.92', 6104 'B' => '1.31', 6105 'B::Concise' => '0.85', 6106 'B::Deparse' => '1.07', 6107 'B::Terse' => '1.06', 6108 'B::Xref' => '1.03', 6109 'CPAN' => '1.9800', 6110 'CPAN::Exception::yaml_process_error'=> '5.5', 6111 'CPAN::Meta' => '2.112150', 6112 'CPAN::Meta::Converter' => '2.112150', 6113 'CPAN::Meta::Feature' => '2.112150', 6114 'CPAN::Meta::History' => '2.112150', 6115 'CPAN::Meta::Prereqs' => '2.112150', 6116 'CPAN::Meta::Spec' => '2.112150', 6117 'CPAN::Meta::Validator' => '2.112150', 6118 'CPANPLUS' => '0.9109', 6119 'CPANPLUS::Internals' => '0.9109', 6120 'CPANPLUS::Shell::Default'=> '0.9109', 6121 'DB_File' => '1.824', 6122 'Data::Dumper' => '2.132', 6123 'Encode' => '2.44', 6124 'Encode::Alias' => '2.15', 6125 'Encode::Encoder' => '2.02', 6126 'Encode::Guess' => '2.05', 6127 'ExtUtils::Command::MM' => '6.59', 6128 'ExtUtils::Install' => '1.57', 6129 'ExtUtils::Installed' => '1.999002', 6130 'ExtUtils::Liblist' => '6.59', 6131 'ExtUtils::Liblist::Kid'=> '6.59', 6132 'ExtUtils::MM' => '6.59', 6133 'ExtUtils::MM_AIX' => '6.59', 6134 'ExtUtils::MM_Any' => '6.59', 6135 'ExtUtils::MM_BeOS' => '6.59', 6136 'ExtUtils::MM_Cygwin' => '6.59', 6137 'ExtUtils::MM_DOS' => '6.59', 6138 'ExtUtils::MM_Darwin' => '6.59', 6139 'ExtUtils::MM_MacOS' => '6.59', 6140 'ExtUtils::MM_NW5' => '6.59', 6141 'ExtUtils::MM_OS2' => '6.59', 6142 'ExtUtils::MM_QNX' => '6.59', 6143 'ExtUtils::MM_UWIN' => '6.59', 6144 'ExtUtils::MM_Unix' => '6.59', 6145 'ExtUtils::MM_VMS' => '6.59', 6146 'ExtUtils::MM_VOS' => '6.59', 6147 'ExtUtils::MM_Win32' => '6.59', 6148 'ExtUtils::MM_Win95' => '6.59', 6149 'ExtUtils::MY' => '6.59', 6150 'ExtUtils::MakeMaker' => '6.59', 6151 'ExtUtils::MakeMaker::Config'=> '6.59', 6152 'ExtUtils::Manifest' => '1.60', 6153 'ExtUtils::Mkbootstrap' => '6.59', 6154 'ExtUtils::Mksymlists' => '6.59', 6155 'ExtUtils::ParseXS' => '3.03_01', 6156 'ExtUtils::Typemaps' => '1.01', 6157 'ExtUtils::testlib' => '6.59', 6158 'File::Spec' => '3.34', 6159 'File::Spec::Mac' => '3.35', 6160 'File::Spec::Unix' => '3.34', 6161 'File::Spec::VMS' => '3.35', 6162 'File::Spec::Win32' => '3.35', 6163 'I18N::LangTags' => '0.37', 6164 'IO' => '1.25_05', 6165 'IO::Handle' => '1.32', 6166 'IO::Socket' => '1.33', 6167 'IO::Socket::INET' => '1.32', 6168 'IPC::Open3' => '1.12', 6169 'Math::BigFloat' => '1.995', 6170 'Math::BigFloat::Trace' => '0.29', 6171 'Math::BigInt' => '1.996', 6172 'Math::BigInt::Trace' => '0.29', 6173 'Module::Build' => '0.39_01', 6174 'Module::Build::Base' => '0.39_01', 6175 'Module::Build::Compat' => '0.39_01', 6176 'Module::Build::Config' => '0.39_01', 6177 'Module::Build::Cookbook'=> '0.39_01', 6178 'Module::Build::Dumper' => '0.39_01', 6179 'Module::Build::ModuleInfo'=> '0.39_01', 6180 'Module::Build::Notes' => '0.39_01', 6181 'Module::Build::PPMMaker'=> '0.39_01', 6182 'Module::Build::Platform::Amiga'=> '0.39_01', 6183 'Module::Build::Platform::Default'=> '0.39_01', 6184 'Module::Build::Platform::EBCDIC'=> '0.39_01', 6185 'Module::Build::Platform::MPEiX'=> '0.39_01', 6186 'Module::Build::Platform::MacOS'=> '0.39_01', 6187 'Module::Build::Platform::RiscOS'=> '0.39_01', 6188 'Module::Build::Platform::Unix'=> '0.39_01', 6189 'Module::Build::Platform::VMS'=> '0.39_01', 6190 'Module::Build::Platform::VOS'=> '0.39_01', 6191 'Module::Build::Platform::Windows'=> '0.39_01', 6192 'Module::Build::Platform::aix'=> '0.39_01', 6193 'Module::Build::Platform::cygwin'=> '0.39_01', 6194 'Module::Build::Platform::darwin'=> '0.39_01', 6195 'Module::Build::Platform::os2'=> '0.39_01', 6196 'Module::Build::PodParser'=> '0.39_01', 6197 'Module::CoreList' => '2.55', 6198 'Module::Load' => '0.20', 6199 'Module::Metadata' => '1.000005_01', 6200 'Opcode' => '1.20', 6201 'Params::Check' => '0.32', 6202 'PerlIO::via' => '0.12', 6203 'Term::ANSIColor' => '3.01', 6204 'Unicode::Collate' => '0.78', 6205 'Unicode::Normalize' => '1.13', 6206 'Unicode::UCD' => '0.34', 6207 'bigint' => '0.29', 6208 'bignum' => '0.29', 6209 'bigrat' => '0.29', 6210 'diagnostics' => '1.24', 6211 'fields' => '2.16', 6212 'inc::latest' => '0.39_01', 6213 }, 6214 removed => { 6215 } 6216 }, 6217 5.015003 => { 6218 delta_from => 5.015002, 6219 changed => { 6220 'AnyDBM_File' => '1.01', 6221 'Archive::Extract' => '0.56', 6222 'Archive::Tar' => '1.78', 6223 'Archive::Tar::Constant'=> '1.78', 6224 'Archive::Tar::File' => '1.78', 6225 'Attribute::Handlers' => '0.93', 6226 'B' => '1.32', 6227 'B::Concise' => '0.86', 6228 'B::Deparse' => '1.08', 6229 'CPAN::Meta' => '2.112621', 6230 'CPAN::Meta::Converter' => '2.112621', 6231 'CPAN::Meta::Feature' => '2.112621', 6232 'CPAN::Meta::History' => '2.112621', 6233 'CPAN::Meta::Prereqs' => '2.112621', 6234 'CPAN::Meta::Spec' => '2.112621', 6235 'CPAN::Meta::Validator' => '2.112621', 6236 'CPAN::Meta::YAML' => '0.004', 6237 'CPANPLUS' => '0.9111', 6238 'CPANPLUS::Dist::Build' => '0.58', 6239 'CPANPLUS::Dist::Build::Constants'=> '0.58', 6240 'CPANPLUS::Internals' => '0.9111', 6241 'CPANPLUS::Shell::Default'=> '0.9111', 6242 'Carp' => '1.23', 6243 'Carp::Heavy' => '1.23', 6244 'Data::Dumper' => '2.134', 6245 'Devel::PPPort' => '3.20', 6246 'Errno' => '1.14', 6247 'Exporter' => '5.65', 6248 'Exporter::Heavy' => '5.65', 6249 'ExtUtils::ParseXS' => '3.04_04', 6250 'ExtUtils::ParseXS::Constants'=> '3.04_04', 6251 'ExtUtils::ParseXS::CountLines'=> '3.04_04', 6252 'ExtUtils::ParseXS::Utilities'=> '3.04_04', 6253 'ExtUtils::Typemaps' => '1.02', 6254 'File::Glob' => '1.13', 6255 'Filter::Simple' => '0.88', 6256 'IO' => '1.25_06', 6257 'IO::Handle' => '1.33', 6258 'Locale::Codes' => '3.18', 6259 'Locale::Codes::Constants'=> '3.18', 6260 'Locale::Codes::Country'=> '3.18', 6261 'Locale::Codes::Country_Codes'=> '3.18', 6262 'Locale::Codes::Currency'=> '3.18', 6263 'Locale::Codes::Currency_Codes'=> '3.18', 6264 'Locale::Codes::LangExt'=> '3.18', 6265 'Locale::Codes::LangExt_Codes'=> '3.18', 6266 'Locale::Codes::LangVar'=> '3.18', 6267 'Locale::Codes::LangVar_Codes'=> '3.18', 6268 'Locale::Codes::Language'=> '3.18', 6269 'Locale::Codes::Language_Codes'=> '3.18', 6270 'Locale::Codes::Script' => '3.18', 6271 'Locale::Codes::Script_Codes'=> '3.18', 6272 'Locale::Country' => '3.18', 6273 'Locale::Currency' => '3.18', 6274 'Locale::Language' => '3.18', 6275 'Locale::Script' => '3.18', 6276 'Math::BigFloat' => '1.997', 6277 'Math::BigInt' => '1.997', 6278 'Math::BigInt::Calc' => '1.997', 6279 'Math::BigInt::CalcEmu' => '1.997', 6280 'Math::BigInt::FastCalc'=> '0.30', 6281 'Math::BigRat' => '0.2603', 6282 'Module::CoreList' => '2.56', 6283 'Module::Load::Conditional'=> '0.46', 6284 'Module::Metadata' => '1.000007', 6285 'ODBM_File' => '1.12', 6286 'POSIX' => '1.26', 6287 'Pod::Perldoc' => '3.15_07', 6288 'Pod::Simple' => '3.19', 6289 'Pod::Simple::BlackBox' => '3.19', 6290 'Pod::Simple::Checker' => '3.19', 6291 'Pod::Simple::Debug' => '3.19', 6292 'Pod::Simple::DumpAsText'=> '3.19', 6293 'Pod::Simple::DumpAsXML'=> '3.19', 6294 'Pod::Simple::HTML' => '3.19', 6295 'Pod::Simple::HTMLBatch'=> '3.19', 6296 'Pod::Simple::LinkSection'=> '3.19', 6297 'Pod::Simple::Methody' => '3.19', 6298 'Pod::Simple::Progress' => '3.19', 6299 'Pod::Simple::PullParser'=> '3.19', 6300 'Pod::Simple::PullParserEndToken'=> '3.19', 6301 'Pod::Simple::PullParserStartToken'=> '3.19', 6302 'Pod::Simple::PullParserTextToken'=> '3.19', 6303 'Pod::Simple::PullParserToken'=> '3.19', 6304 'Pod::Simple::RTF' => '3.19', 6305 'Pod::Simple::Search' => '3.19', 6306 'Pod::Simple::SimpleTree'=> '3.19', 6307 'Pod::Simple::Text' => '3.19', 6308 'Pod::Simple::TextContent'=> '3.19', 6309 'Pod::Simple::TiedOutFH'=> '3.19', 6310 'Pod::Simple::Transcode'=> '3.19', 6311 'Pod::Simple::TranscodeDumb'=> '3.19', 6312 'Pod::Simple::TranscodeSmart'=> '3.19', 6313 'Pod::Simple::XHTML' => '3.19', 6314 'Pod::Simple::XMLOutStream'=> '3.19', 6315 'Search::Dict' => '1.04', 6316 'Socket' => '1.94_01', 6317 'Storable' => '2.32', 6318 'Text::Abbrev' => '1.02', 6319 'Tie::Array' => '1.05', 6320 'UNIVERSAL' => '1.09', 6321 'Unicode::UCD' => '0.35', 6322 'XS::APItest' => '0.31', 6323 'XSLoader' => '0.16', 6324 'attributes' => '0.16', 6325 'diagnostics' => '1.25', 6326 'open' => '1.09', 6327 'perlfaq' => '5.0150034', 6328 'threads' => '1.85', 6329 'threads::shared' => '1.40', 6330 }, 6331 removed => { 6332 } 6333 }, 6334 5.015004 => { 6335 delta_from => 5.015003, 6336 changed => { 6337 'Archive::Tar' => '1.80', 6338 'Archive::Tar::Constant'=> '1.80', 6339 'Archive::Tar::File' => '1.80', 6340 'Digest' => '1.17', 6341 'DynaLoader' => '1.14', 6342 'ExtUtils::Command::MM' => '6.61_01', 6343 'ExtUtils::Liblist' => '6.61_01', 6344 'ExtUtils::Liblist::Kid'=> '6.61_01', 6345 'ExtUtils::MM' => '6.61_01', 6346 'ExtUtils::MM_AIX' => '6.61_01', 6347 'ExtUtils::MM_Any' => '6.61_01', 6348 'ExtUtils::MM_BeOS' => '6.61_01', 6349 'ExtUtils::MM_Cygwin' => '6.61_01', 6350 'ExtUtils::MM_DOS' => '6.61_01', 6351 'ExtUtils::MM_Darwin' => '6.61_01', 6352 'ExtUtils::MM_MacOS' => '6.61_01', 6353 'ExtUtils::MM_NW5' => '6.61_01', 6354 'ExtUtils::MM_OS2' => '6.61_01', 6355 'ExtUtils::MM_QNX' => '6.61_01', 6356 'ExtUtils::MM_UWIN' => '6.61_01', 6357 'ExtUtils::MM_Unix' => '6.61_01', 6358 'ExtUtils::MM_VMS' => '6.61_01', 6359 'ExtUtils::MM_VOS' => '6.61_01', 6360 'ExtUtils::MM_Win32' => '6.61_01', 6361 'ExtUtils::MM_Win95' => '6.61_01', 6362 'ExtUtils::MY' => '6.61_01', 6363 'ExtUtils::MakeMaker' => '6.61_01', 6364 'ExtUtils::MakeMaker::Config'=> '6.61_01', 6365 'ExtUtils::Mkbootstrap' => '6.61_01', 6366 'ExtUtils::Mksymlists' => '6.61_01', 6367 'ExtUtils::ParseXS' => '3.05', 6368 'ExtUtils::ParseXS::Constants'=> '3.05', 6369 'ExtUtils::ParseXS::CountLines'=> '3.05', 6370 'ExtUtils::ParseXS::Utilities'=> '3.05', 6371 'ExtUtils::testlib' => '6.61_01', 6372 'File::DosGlob' => '1.05', 6373 'Module::CoreList' => '2.57', 6374 'Module::Load' => '0.22', 6375 'Unicode::Collate' => '0.80', 6376 'Unicode::Collate::Locale'=> '0.80', 6377 'Unicode::UCD' => '0.36', 6378 'XS::APItest' => '0.32', 6379 'XS::Typemap' => '0.07', 6380 'attributes' => '0.17', 6381 'base' => '2.18', 6382 'constant' => '1.23', 6383 'mro' => '1.09', 6384 'open' => '1.10', 6385 'perlfaq' => '5.0150035', 6386 }, 6387 removed => { 6388 } 6389 }, 6390 5.015005 => { 6391 delta_from => 5.015004, 6392 changed => { 6393 'Archive::Extract' => '0.58', 6394 'B::Concise' => '0.87', 6395 'B::Deparse' => '1.09', 6396 'CGI' => '3.58', 6397 'CGI::Fast' => '1.09', 6398 'CPANPLUS' => '0.9112', 6399 'CPANPLUS::Dist::Build' => '0.60', 6400 'CPANPLUS::Dist::Build::Constants'=> '0.60', 6401 'CPANPLUS::Internals' => '0.9112', 6402 'CPANPLUS::Shell::Default'=> '0.9112', 6403 'Compress::Raw::Bzip2' => '2.042', 6404 'Compress::Raw::Zlib' => '2.042', 6405 'Compress::Zlib' => '2.042', 6406 'Digest::SHA' => '5.63', 6407 'Errno' => '1.15', 6408 'ExtUtils::Command::MM' => '6.63_02', 6409 'ExtUtils::Liblist' => '6.63_02', 6410 'ExtUtils::Liblist::Kid'=> '6.63_02', 6411 'ExtUtils::MM' => '6.63_02', 6412 'ExtUtils::MM_AIX' => '6.63_02', 6413 'ExtUtils::MM_Any' => '6.63_02', 6414 'ExtUtils::MM_BeOS' => '6.63_02', 6415 'ExtUtils::MM_Cygwin' => '6.63_02', 6416 'ExtUtils::MM_DOS' => '6.63_02', 6417 'ExtUtils::MM_Darwin' => '6.63_02', 6418 'ExtUtils::MM_MacOS' => '6.63_02', 6419 'ExtUtils::MM_NW5' => '6.63_02', 6420 'ExtUtils::MM_OS2' => '6.63_02', 6421 'ExtUtils::MM_QNX' => '6.63_02', 6422 'ExtUtils::MM_UWIN' => '6.63_02', 6423 'ExtUtils::MM_Unix' => '6.63_02', 6424 'ExtUtils::MM_VMS' => '6.63_02', 6425 'ExtUtils::MM_VOS' => '6.63_02', 6426 'ExtUtils::MM_Win32' => '6.63_02', 6427 'ExtUtils::MM_Win95' => '6.63_02', 6428 'ExtUtils::MY' => '6.63_02', 6429 'ExtUtils::MakeMaker' => '6.63_02', 6430 'ExtUtils::MakeMaker::Config'=> '6.63_02', 6431 'ExtUtils::Mkbootstrap' => '6.63_02', 6432 'ExtUtils::Mksymlists' => '6.63_02', 6433 'ExtUtils::testlib' => '6.63_02', 6434 'File::DosGlob' => '1.06', 6435 'File::Glob' => '1.14', 6436 'HTTP::Tiny' => '0.016', 6437 'IO::Compress::Adapter::Bzip2'=> '2.042', 6438 'IO::Compress::Adapter::Deflate'=> '2.042', 6439 'IO::Compress::Adapter::Identity'=> '2.042', 6440 'IO::Compress::Base' => '2.042', 6441 'IO::Compress::Base::Common'=> '2.042', 6442 'IO::Compress::Bzip2' => '2.042', 6443 'IO::Compress::Deflate' => '2.042', 6444 'IO::Compress::Gzip' => '2.042', 6445 'IO::Compress::Gzip::Constants'=> '2.042', 6446 'IO::Compress::RawDeflate'=> '2.042', 6447 'IO::Compress::Zip' => '2.042', 6448 'IO::Compress::Zip::Constants'=> '2.042', 6449 'IO::Compress::Zlib::Constants'=> '2.042', 6450 'IO::Compress::Zlib::Extra'=> '2.042', 6451 'IO::Uncompress::Adapter::Bunzip2'=> '2.042', 6452 'IO::Uncompress::Adapter::Identity'=> '2.042', 6453 'IO::Uncompress::Adapter::Inflate'=> '2.042', 6454 'IO::Uncompress::AnyInflate'=> '2.042', 6455 'IO::Uncompress::AnyUncompress'=> '2.042', 6456 'IO::Uncompress::Base' => '2.042', 6457 'IO::Uncompress::Bunzip2'=> '2.042', 6458 'IO::Uncompress::Gunzip'=> '2.042', 6459 'IO::Uncompress::Inflate'=> '2.042', 6460 'IO::Uncompress::RawInflate'=> '2.042', 6461 'IO::Uncompress::Unzip' => '2.042', 6462 'Locale::Maketext' => '1.20', 6463 'Locale::Maketext::Guts'=> '1.20', 6464 'Locale::Maketext::GutsLoader'=> '1.20', 6465 'Module::CoreList' => '2.58', 6466 'Opcode' => '1.21', 6467 'Socket' => '1.94_02', 6468 'Storable' => '2.33', 6469 'UNIVERSAL' => '1.10', 6470 'Unicode::Collate' => '0.85', 6471 'Unicode::Collate::CJK::Pinyin'=> '0.85', 6472 'Unicode::Collate::CJK::Stroke'=> '0.85', 6473 'Unicode::Collate::Locale'=> '0.85', 6474 'Unicode::UCD' => '0.37', 6475 'XS::APItest' => '0.33', 6476 'arybase' => '0.01', 6477 'charnames' => '1.24', 6478 'feature' => '1.23', 6479 'perlfaq' => '5.0150036', 6480 'strict' => '1.05', 6481 'unicore::Name' => undef, 6482 }, 6483 removed => { 6484 } 6485 }, 6486 5.015006 => { 6487 delta_from => 5.015005, 6488 changed => { 6489 'Archive::Tar' => '1.82', 6490 'Archive::Tar::Constant'=> '1.82', 6491 'Archive::Tar::File' => '1.82', 6492 'AutoLoader' => '5.72', 6493 'B::Concise' => '0.88', 6494 'B::Debug' => '1.17', 6495 'B::Deparse' => '1.10', 6496 'CPAN::Meta::YAML' => '0.005', 6497 'CPANPLUS' => '0.9113', 6498 'CPANPLUS::Internals' => '0.9113', 6499 'CPANPLUS::Shell::Default'=> '0.9113', 6500 'Carp' => '1.24', 6501 'Compress::Raw::Bzip2' => '2.045', 6502 'Compress::Raw::Zlib' => '2.045', 6503 'Compress::Zlib' => '2.045', 6504 'Cwd' => '3.38', 6505 'DB' => '1.04', 6506 'Data::Dumper' => '2.135_01', 6507 'Digest::SHA' => '5.70', 6508 'Dumpvalue' => '1.17', 6509 'Exporter' => '5.66', 6510 'Exporter::Heavy' => '5.66', 6511 'ExtUtils::CBuilder' => '0.280205', 6512 'ExtUtils::CBuilder::Platform::os2'=> '0.280204', 6513 'ExtUtils::Packlist' => '1.45', 6514 'ExtUtils::ParseXS' => '3.08', 6515 'ExtUtils::ParseXS::Constants'=> '3.08', 6516 'ExtUtils::ParseXS::CountLines'=> '3.08', 6517 'ExtUtils::ParseXS::Utilities'=> '3.08', 6518 'File::Basename' => '2.84', 6519 'File::Glob' => '1.15', 6520 'File::Spec::Unix' => '3.35', 6521 'Getopt::Std' => '1.07', 6522 'I18N::LangTags' => '0.38', 6523 'IO::Compress::Adapter::Bzip2'=> '2.045', 6524 'IO::Compress::Adapter::Deflate'=> '2.045', 6525 'IO::Compress::Adapter::Identity'=> '2.045', 6526 'IO::Compress::Base' => '2.046', 6527 'IO::Compress::Base::Common'=> '2.045', 6528 'IO::Compress::Bzip2' => '2.045', 6529 'IO::Compress::Deflate' => '2.045', 6530 'IO::Compress::Gzip' => '2.045', 6531 'IO::Compress::Gzip::Constants'=> '2.045', 6532 'IO::Compress::RawDeflate'=> '2.045', 6533 'IO::Compress::Zip' => '2.046', 6534 'IO::Compress::Zip::Constants'=> '2.045', 6535 'IO::Compress::Zlib::Constants'=> '2.045', 6536 'IO::Compress::Zlib::Extra'=> '2.045', 6537 'IO::Dir' => '1.09', 6538 'IO::File' => '1.16', 6539 'IO::Uncompress::Adapter::Bunzip2'=> '2.045', 6540 'IO::Uncompress::Adapter::Identity'=> '2.045', 6541 'IO::Uncompress::Adapter::Inflate'=> '2.045', 6542 'IO::Uncompress::AnyInflate'=> '2.045', 6543 'IO::Uncompress::AnyUncompress'=> '2.045', 6544 'IO::Uncompress::Base' => '2.046', 6545 'IO::Uncompress::Bunzip2'=> '2.045', 6546 'IO::Uncompress::Gunzip'=> '2.045', 6547 'IO::Uncompress::Inflate'=> '2.045', 6548 'IO::Uncompress::RawInflate'=> '2.045', 6549 'IO::Uncompress::Unzip' => '2.046', 6550 'Locale::Codes' => '3.20', 6551 'Locale::Codes::Constants'=> '3.20', 6552 'Locale::Codes::Country'=> '3.20', 6553 'Locale::Codes::Country_Codes'=> '3.20', 6554 'Locale::Codes::Country_Retired'=> '3.20', 6555 'Locale::Codes::Currency'=> '3.20', 6556 'Locale::Codes::Currency_Codes'=> '3.20', 6557 'Locale::Codes::Currency_Retired'=> '3.20', 6558 'Locale::Codes::LangExt'=> '3.20', 6559 'Locale::Codes::LangExt_Codes'=> '3.20', 6560 'Locale::Codes::LangExt_Retired'=> '3.20', 6561 'Locale::Codes::LangFam'=> '3.20', 6562 'Locale::Codes::LangFam_Codes'=> '3.20', 6563 'Locale::Codes::LangFam_Retired'=> '3.20', 6564 'Locale::Codes::LangVar'=> '3.20', 6565 'Locale::Codes::LangVar_Codes'=> '3.20', 6566 'Locale::Codes::LangVar_Retired'=> '3.20', 6567 'Locale::Codes::Language'=> '3.20', 6568 'Locale::Codes::Language_Codes'=> '3.20', 6569 'Locale::Codes::Language_Retired'=> '3.20', 6570 'Locale::Codes::Script' => '3.20', 6571 'Locale::Codes::Script_Codes'=> '3.20', 6572 'Locale::Codes::Script_Retired'=> '3.20', 6573 'Locale::Country' => '3.20', 6574 'Locale::Currency' => '3.20', 6575 'Locale::Language' => '3.20', 6576 'Locale::Maketext' => '1.21', 6577 'Locale::Script' => '3.20', 6578 'Module::CoreList' => '2.59', 6579 'Module::Loaded' => '0.08', 6580 'Opcode' => '1.22', 6581 'POSIX' => '1.27', 6582 'Pod::Html' => '1.12', 6583 'Pod::LaTeX' => '0.60', 6584 'Pod::Perldoc' => '3.15_08', 6585 'Safe' => '2.30', 6586 'SelfLoader' => '1.20', 6587 'Socket' => '1.97', 6588 'Storable' => '2.34', 6589 'UNIVERSAL' => '1.11', 6590 'Unicode::Collate' => '0.87', 6591 'Unicode::Collate::Locale'=> '0.87', 6592 'XS::APItest' => '0.34', 6593 'arybase' => '0.02', 6594 'charnames' => '1.27', 6595 'diagnostics' => '1.26', 6596 'feature' => '1.24', 6597 'if' => '0.0602', 6598 'overload' => '1.16', 6599 'sigtrap' => '1.06', 6600 'strict' => '1.06', 6601 'threads' => '1.86', 6602 'version' => '0.96', 6603 }, 6604 removed => { 6605 } 6606 }, 6607 5.015007 => { 6608 delta_from => 5.015006, 6609 changed => { 6610 'B' => '1.33', 6611 'B::Deparse' => '1.11', 6612 'CGI' => '3.59', 6613 'CPAN::Meta' => '2.113640', 6614 'CPAN::Meta::Converter' => '2.113640', 6615 'CPAN::Meta::Feature' => '2.113640', 6616 'CPAN::Meta::History' => '2.113640', 6617 'CPAN::Meta::Prereqs' => '2.113640', 6618 'CPAN::Meta::Requirements'=> '2.113640', 6619 'CPAN::Meta::Spec' => '2.113640', 6620 'CPAN::Meta::Validator' => '2.113640', 6621 'CPANPLUS' => '0.9116', 6622 'CPANPLUS::Internals' => '0.9116', 6623 'CPANPLUS::Shell::Default'=> '0.9116', 6624 'Cwd' => '3.39_01', 6625 'Data::Dumper' => '2.135_03', 6626 'Devel::InnerPackage' => '0.4', 6627 'ExtUtils::CBuilder::Base'=> '0.280205', 6628 'ExtUtils::CBuilder::Platform::Unix'=> '0.280205', 6629 'ExtUtils::CBuilder::Platform::VMS'=> '0.280205', 6630 'ExtUtils::CBuilder::Platform::Windows'=> '0.280205', 6631 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280205', 6632 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280205', 6633 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280205', 6634 'ExtUtils::CBuilder::Platform::aix'=> '0.280205', 6635 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280205', 6636 'ExtUtils::CBuilder::Platform::darwin'=> '0.280205', 6637 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280205', 6638 'ExtUtils::CBuilder::Platform::os2'=> '0.280205', 6639 'ExtUtils::Manifest' => '1.61', 6640 'ExtUtils::Packlist' => '1.46', 6641 'ExtUtils::ParseXS' => '3.12', 6642 'ExtUtils::ParseXS::Constants'=> '3.12', 6643 'ExtUtils::ParseXS::CountLines'=> '3.12', 6644 'ExtUtils::ParseXS::Utilities'=> '3.12', 6645 'ExtUtils::Typemaps' => '1.03', 6646 'ExtUtils::Typemaps::Cmd'=> undef, 6647 'ExtUtils::Typemaps::Type'=> '0.06', 6648 'File::Glob' => '1.16', 6649 'File::Spec' => '3.39_01', 6650 'File::Spec::Cygwin' => '3.39_01', 6651 'File::Spec::Epoc' => '3.39_01', 6652 'File::Spec::Functions' => '3.39_01', 6653 'File::Spec::Mac' => '3.39_01', 6654 'File::Spec::OS2' => '3.39_01', 6655 'File::Spec::Unix' => '3.39_01', 6656 'File::Spec::VMS' => '3.39_01', 6657 'File::Spec::Win32' => '3.39_01', 6658 'IO::Dir' => '1.10', 6659 'IO::Pipe' => '1.15', 6660 'IO::Poll' => '0.09', 6661 'IO::Select' => '1.21', 6662 'IO::Socket' => '1.34', 6663 'IO::Socket::INET' => '1.33', 6664 'IO::Socket::UNIX' => '1.24', 6665 'Locale::Maketext' => '1.22', 6666 'Math::BigInt' => '1.998', 6667 'Module::CoreList' => '2.60', 6668 'Module::Pluggable' => '4.0', 6669 'POSIX' => '1.28', 6670 'PerlIO::scalar' => '0.13', 6671 'Pod::Html' => '1.13', 6672 'Pod::Perldoc' => '3.15_15', 6673 'Pod::Perldoc::BaseTo' => '3.15_15', 6674 'Pod::Perldoc::GetOptsOO'=> '3.15_15', 6675 'Pod::Perldoc::ToANSI' => '3.15_15', 6676 'Pod::Perldoc::ToChecker'=> '3.15_15', 6677 'Pod::Perldoc::ToMan' => '3.15_15', 6678 'Pod::Perldoc::ToNroff' => '3.15_15', 6679 'Pod::Perldoc::ToPod' => '3.15_15', 6680 'Pod::Perldoc::ToRtf' => '3.15_15', 6681 'Pod::Perldoc::ToTerm' => '3.15_15', 6682 'Pod::Perldoc::ToText' => '3.15_15', 6683 'Pod::Perldoc::ToTk' => '3.15_15', 6684 'Pod::Perldoc::ToXml' => '3.15_15', 6685 'Term::UI' => '0.30', 6686 'Tie::File' => '0.98', 6687 'Unicode::UCD' => '0.39', 6688 'Version::Requirements' => '0.101021', 6689 'XS::APItest' => '0.35', 6690 '_charnames' => '1.28', 6691 'arybase' => '0.03', 6692 'autouse' => '1.07', 6693 'charnames' => '1.28', 6694 'diagnostics' => '1.27', 6695 'feature' => '1.25', 6696 'overload' => '1.17', 6697 'overloading' => '0.02', 6698 'perlfaq' => '5.0150038', 6699 }, 6700 removed => { 6701 } 6702 }, 6703 5.015008 => { 6704 delta_from => 5.015007, 6705 changed => { 6706 'B' => '1.34', 6707 'B::Deparse' => '1.12', 6708 'CPAN::Meta' => '2.120351', 6709 'CPAN::Meta::Converter' => '2.120351', 6710 'CPAN::Meta::Feature' => '2.120351', 6711 'CPAN::Meta::History' => '2.120351', 6712 'CPAN::Meta::Prereqs' => '2.120351', 6713 'CPAN::Meta::Requirements'=> '2.120351', 6714 'CPAN::Meta::Spec' => '2.120351', 6715 'CPAN::Meta::Validator' => '2.120351', 6716 'CPAN::Meta::YAML' => '0.007', 6717 'CPANPLUS' => '0.9118', 6718 'CPANPLUS::Dist::Build' => '0.62', 6719 'CPANPLUS::Dist::Build::Constants'=> '0.62', 6720 'CPANPLUS::Internals' => '0.9118', 6721 'CPANPLUS::Shell::Default'=> '0.9118', 6722 'Carp' => '1.25', 6723 'Carp::Heavy' => '1.25', 6724 'Compress::Raw::Bzip2' => '2.048', 6725 'Compress::Raw::Zlib' => '2.048', 6726 'Compress::Zlib' => '2.048', 6727 'Cwd' => '3.39_02', 6728 'DB_File' => '1.826', 6729 'Data::Dumper' => '2.135_05', 6730 'English' => '1.05', 6731 'ExtUtils::Install' => '1.58', 6732 'ExtUtils::ParseXS' => '3.16', 6733 'ExtUtils::ParseXS::Constants'=> '3.16', 6734 'ExtUtils::ParseXS::CountLines'=> '3.16', 6735 'ExtUtils::ParseXS::Utilities'=> '3.16', 6736 'ExtUtils::Typemaps' => '3.16', 6737 'ExtUtils::Typemaps::Cmd'=> '3.16', 6738 'ExtUtils::Typemaps::InputMap'=> '3.16', 6739 'ExtUtils::Typemaps::OutputMap'=> '3.16', 6740 'ExtUtils::Typemaps::Type'=> '3.16', 6741 'File::Copy' => '2.23', 6742 'File::Glob' => '1.17', 6743 'File::Spec' => '3.39_02', 6744 'File::Spec::Cygwin' => '3.39_02', 6745 'File::Spec::Epoc' => '3.39_02', 6746 'File::Spec::Functions' => '3.39_02', 6747 'File::Spec::Mac' => '3.39_02', 6748 'File::Spec::OS2' => '3.39_02', 6749 'File::Spec::Unix' => '3.39_02', 6750 'File::Spec::VMS' => '3.39_02', 6751 'File::Spec::Win32' => '3.39_02', 6752 'Filter::Util::Call' => '1.40', 6753 'IO::Compress::Adapter::Bzip2'=> '2.048', 6754 'IO::Compress::Adapter::Deflate'=> '2.048', 6755 'IO::Compress::Adapter::Identity'=> '2.048', 6756 'IO::Compress::Base' => '2.048', 6757 'IO::Compress::Base::Common'=> '2.048', 6758 'IO::Compress::Bzip2' => '2.048', 6759 'IO::Compress::Deflate' => '2.048', 6760 'IO::Compress::Gzip' => '2.048', 6761 'IO::Compress::Gzip::Constants'=> '2.048', 6762 'IO::Compress::RawDeflate'=> '2.048', 6763 'IO::Compress::Zip' => '2.048', 6764 'IO::Compress::Zip::Constants'=> '2.048', 6765 'IO::Compress::Zlib::Constants'=> '2.048', 6766 'IO::Compress::Zlib::Extra'=> '2.048', 6767 'IO::Uncompress::Adapter::Bunzip2'=> '2.048', 6768 'IO::Uncompress::Adapter::Identity'=> '2.048', 6769 'IO::Uncompress::Adapter::Inflate'=> '2.048', 6770 'IO::Uncompress::AnyInflate'=> '2.048', 6771 'IO::Uncompress::AnyUncompress'=> '2.048', 6772 'IO::Uncompress::Base' => '2.048', 6773 'IO::Uncompress::Bunzip2'=> '2.048', 6774 'IO::Uncompress::Gunzip'=> '2.048', 6775 'IO::Uncompress::Inflate'=> '2.048', 6776 'IO::Uncompress::RawInflate'=> '2.048', 6777 'IO::Uncompress::Unzip' => '2.048', 6778 'IPC::Cmd' => '0.76', 6779 'Math::Complex' => '1.59', 6780 'Math::Trig' => '1.23', 6781 'Module::Metadata' => '1.000009', 6782 'Opcode' => '1.23', 6783 'POSIX' => '1.30', 6784 'Parse::CPAN::Meta' => '1.4402', 6785 'PerlIO::mmap' => '0.010', 6786 'Pod::Checker' => '1.51', 6787 'Pod::Find' => '1.51', 6788 'Pod::Functions' => '1.05', 6789 'Pod::Html' => '1.14', 6790 'Pod::InputObjects' => '1.51', 6791 'Pod::ParseUtils' => '1.51', 6792 'Pod::Parser' => '1.51', 6793 'Pod::PlainText' => '2.05', 6794 'Pod::Select' => '1.51', 6795 'Pod::Usage' => '1.51', 6796 'Safe' => '2.31', 6797 'Socket' => '1.98', 6798 'Term::Cap' => '1.13', 6799 'Term::ReadLine' => '1.08', 6800 'Time::HiRes' => '1.9725', 6801 'Unicode' => '6.1.0', 6802 'Unicode::UCD' => '0.41', 6803 'Version::Requirements' => '0.101022', 6804 'XS::APItest' => '0.36', 6805 'XS::Typemap' => '0.08', 6806 '_charnames' => '1.29', 6807 'arybase' => '0.04', 6808 'charnames' => '1.29', 6809 'diagnostics' => '1.28', 6810 'feature' => '1.26', 6811 'locale' => '1.01', 6812 'overload' => '1.18', 6813 'perlfaq' => '5.0150039', 6814 're' => '0.19', 6815 'subs' => '1.01', 6816 'warnings' => '1.13', 6817 }, 6818 removed => { 6819 } 6820 }, 6821 5.015009 => { 6822 delta_from => 5.015008, 6823 changed => { 6824 'B::Deparse' => '1.13', 6825 'B::Lint' => '1.14', 6826 'B::Lint::Debug' => '1.14', 6827 'CPAN::Meta' => '2.120630', 6828 'CPAN::Meta::Converter' => '2.120630', 6829 'CPAN::Meta::Feature' => '2.120630', 6830 'CPAN::Meta::History' => '2.120630', 6831 'CPAN::Meta::Prereqs' => '2.120630', 6832 'CPAN::Meta::Requirements'=> '2.120630', 6833 'CPAN::Meta::Spec' => '2.120630', 6834 'CPAN::Meta::Validator' => '2.120630', 6835 'CPANPLUS' => '0.9121', 6836 'CPANPLUS::Internals' => '0.9121', 6837 'CPANPLUS::Shell::Default'=> '0.9121', 6838 'Data::Dumper' => '2.135_06', 6839 'Digest::SHA' => '5.71', 6840 'ExtUtils::CBuilder' => '0.280206', 6841 'ExtUtils::CBuilder::Base'=> '0.280206', 6842 'ExtUtils::CBuilder::Platform::Unix'=> '0.280206', 6843 'ExtUtils::CBuilder::Platform::VMS'=> '0.280206', 6844 'ExtUtils::CBuilder::Platform::Windows'=> '0.280206', 6845 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280206', 6846 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280206', 6847 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280206', 6848 'ExtUtils::CBuilder::Platform::aix'=> '0.280206', 6849 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280206', 6850 'ExtUtils::CBuilder::Platform::darwin'=> '0.280206', 6851 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280206', 6852 'ExtUtils::CBuilder::Platform::os2'=> '0.280206', 6853 'HTTP::Tiny' => '0.017', 6854 'Locale::Codes' => '3.21', 6855 'Locale::Codes::Constants'=> '3.21', 6856 'Locale::Codes::Country'=> '3.21', 6857 'Locale::Codes::Country_Codes'=> '3.21', 6858 'Locale::Codes::Country_Retired'=> '3.21', 6859 'Locale::Codes::Currency'=> '3.21', 6860 'Locale::Codes::Currency_Codes'=> '3.21', 6861 'Locale::Codes::Currency_Retired'=> '3.21', 6862 'Locale::Codes::LangExt'=> '3.21', 6863 'Locale::Codes::LangExt_Codes'=> '3.21', 6864 'Locale::Codes::LangExt_Retired'=> '3.21', 6865 'Locale::Codes::LangFam'=> '3.21', 6866 'Locale::Codes::LangFam_Codes'=> '3.21', 6867 'Locale::Codes::LangFam_Retired'=> '3.21', 6868 'Locale::Codes::LangVar'=> '3.21', 6869 'Locale::Codes::LangVar_Codes'=> '3.21', 6870 'Locale::Codes::LangVar_Retired'=> '3.21', 6871 'Locale::Codes::Language'=> '3.21', 6872 'Locale::Codes::Language_Codes'=> '3.21', 6873 'Locale::Codes::Language_Retired'=> '3.21', 6874 'Locale::Codes::Script' => '3.21', 6875 'Locale::Codes::Script_Codes'=> '3.21', 6876 'Locale::Codes::Script_Retired'=> '3.21', 6877 'Locale::Country' => '3.21', 6878 'Locale::Currency' => '3.21', 6879 'Locale::Language' => '3.21', 6880 'Locale::Script' => '3.21', 6881 'Module::CoreList' => '2.65', 6882 'Pod::Html' => '1.1501', 6883 'Pod::Perldoc' => '3.17', 6884 'Pod::Perldoc::BaseTo' => '3.17', 6885 'Pod::Perldoc::GetOptsOO'=> '3.17', 6886 'Pod::Perldoc::ToANSI' => '3.17', 6887 'Pod::Perldoc::ToChecker'=> '3.17', 6888 'Pod::Perldoc::ToMan' => '3.17', 6889 'Pod::Perldoc::ToNroff' => '3.17', 6890 'Pod::Perldoc::ToPod' => '3.17', 6891 'Pod::Perldoc::ToRtf' => '3.17', 6892 'Pod::Perldoc::ToTerm' => '3.17', 6893 'Pod::Perldoc::ToText' => '3.17', 6894 'Pod::Perldoc::ToTk' => '3.17', 6895 'Pod::Perldoc::ToXml' => '3.17', 6896 'Pod::Simple' => '3.20', 6897 'Pod::Simple::BlackBox' => '3.20', 6898 'Pod::Simple::Checker' => '3.20', 6899 'Pod::Simple::Debug' => '3.20', 6900 'Pod::Simple::DumpAsText'=> '3.20', 6901 'Pod::Simple::DumpAsXML'=> '3.20', 6902 'Pod::Simple::HTML' => '3.20', 6903 'Pod::Simple::HTMLBatch'=> '3.20', 6904 'Pod::Simple::LinkSection'=> '3.20', 6905 'Pod::Simple::Methody' => '3.20', 6906 'Pod::Simple::Progress' => '3.20', 6907 'Pod::Simple::PullParser'=> '3.20', 6908 'Pod::Simple::PullParserEndToken'=> '3.20', 6909 'Pod::Simple::PullParserStartToken'=> '3.20', 6910 'Pod::Simple::PullParserTextToken'=> '3.20', 6911 'Pod::Simple::PullParserToken'=> '3.20', 6912 'Pod::Simple::RTF' => '3.20', 6913 'Pod::Simple::Search' => '3.20', 6914 'Pod::Simple::SimpleTree'=> '3.20', 6915 'Pod::Simple::Text' => '3.20', 6916 'Pod::Simple::TextContent'=> '3.20', 6917 'Pod::Simple::TiedOutFH'=> '3.20', 6918 'Pod::Simple::Transcode'=> '3.20', 6919 'Pod::Simple::TranscodeDumb'=> '3.20', 6920 'Pod::Simple::TranscodeSmart'=> '3.20', 6921 'Pod::Simple::XHTML' => '3.20', 6922 'Pod::Simple::XMLOutStream'=> '3.20', 6923 'Socket' => '2.000', 6924 'Term::ReadLine' => '1.09', 6925 'Unicode::Collate' => '0.89', 6926 'Unicode::Collate::CJK::Korean'=> '0.88', 6927 'Unicode::Collate::Locale'=> '0.89', 6928 'Unicode::Normalize' => '1.14', 6929 'Unicode::UCD' => '0.42', 6930 'XS::APItest' => '0.37', 6931 'arybase' => '0.05', 6932 'attributes' => '0.18', 6933 'charnames' => '1.30', 6934 'feature' => '1.27', 6935 }, 6936 removed => { 6937 } 6938 }, 6939 5.016 => { 6940 delta_from => 5.015009, 6941 changed => { 6942 'B::Concise' => '0.89', 6943 'B::Deparse' => '1.14', 6944 'Carp' => '1.26', 6945 'Carp::Heavy' => '1.26', 6946 'IO::Socket' => '1.35', 6947 'Module::CoreList' => '2.66', 6948 'PerlIO::scalar' => '0.14', 6949 'Pod::Html' => '1.1502', 6950 'Safe' => '2.31_01', 6951 'Socket' => '2.001', 6952 'Unicode::UCD' => '0.43', 6953 'XS::APItest' => '0.38', 6954 '_charnames' => '1.31', 6955 'attributes' => '0.19', 6956 'strict' => '1.07', 6957 'version' => '0.99', 6958 }, 6959 removed => { 6960 } 6961 }, 6962 5.016001 => { 6963 delta_from => 5.016, 6964 changed => { 6965 'B' => '1.35', 6966 'B::Deparse' => '1.14_01', 6967 'List::Util' => '1.25', 6968 'List::Util::PP' => '1.25', 6969 'List::Util::XS' => '1.25', 6970 'Module::CoreList' => '2.70', 6971 'PerlIO::scalar' => '0.14_01', 6972 'Scalar::Util' => '1.25', 6973 'Scalar::Util::PP' => '1.25', 6974 're' => '0.19_01', 6975 }, 6976 removed => { 6977 } 6978 }, 6979 5.016002 => { 6980 delta_from => 5.016001, 6981 changed => { 6982 'Module::CoreList' => '2.76', 6983 }, 6984 removed => { 6985 } 6986 }, 6987 5.016003 => { 6988 delta_from => 5.016002, 6989 changed => { 6990 'Encode' => '2.44_01', 6991 'Module::CoreList' => '2.76_02', 6992 'XS::APItest' => '0.39', 6993 }, 6994 removed => { 6995 } 6996 }, 6997 5.017 => { 6998 delta_from => 5.016, 6999 changed => { 7000 'B' => '1.35', 7001 'B::Concise' => '0.90', 7002 'ExtUtils::ParseXS' => '3.17', 7003 'ExtUtils::ParseXS::Utilities'=> '3.17', 7004 'File::DosGlob' => '1.07', 7005 'File::Find' => '1.21', 7006 'File::stat' => '1.06', 7007 'Hash::Util' => '0.12', 7008 'IO::Socket' => '1.34', 7009 'Module::CoreList' => '2.67', 7010 'Pod::Functions' => '1.06', 7011 'Storable' => '2.35', 7012 'XS::APItest' => '0.39', 7013 'diagnostics' => '1.29', 7014 'feature' => '1.28', 7015 'overload' => '1.19', 7016 'utf8' => '1.10', 7017 }, 7018 removed => { 7019 'Version::Requirements' => 1, 7020 } 7021 }, 7022 5.017001 => { 7023 delta_from => 5.017, 7024 changed => { 7025 'App::Prove' => '3.25', 7026 'App::Prove::State' => '3.25', 7027 'App::Prove::State::Result'=> '3.25', 7028 'App::Prove::State::Result::Test'=> '3.25', 7029 'Archive::Extract' => '0.60', 7030 'Archive::Tar' => '1.88', 7031 'Archive::Tar::Constant'=> '1.88', 7032 'Archive::Tar::File' => '1.88', 7033 'B' => '1.36', 7034 'B::Deparse' => '1.15', 7035 'CPAN::Meta' => '2.120921', 7036 'CPAN::Meta::Converter' => '2.120921', 7037 'CPAN::Meta::Feature' => '2.120921', 7038 'CPAN::Meta::History' => '2.120921', 7039 'CPAN::Meta::Prereqs' => '2.120921', 7040 'CPAN::Meta::Requirements'=> '2.122', 7041 'CPAN::Meta::Spec' => '2.120921', 7042 'CPAN::Meta::Validator' => '2.120921', 7043 'CPAN::Meta::YAML' => '0.008', 7044 'CPANPLUS' => '0.9130', 7045 'CPANPLUS::Config::HomeEnv'=> '0.04', 7046 'CPANPLUS::Internals' => '0.9130', 7047 'CPANPLUS::Shell::Default'=> '0.9130', 7048 'Class::Struct' => '0.64', 7049 'Compress::Raw::Bzip2' => '2.052', 7050 'Compress::Raw::Zlib' => '2.054', 7051 'Compress::Zlib' => '2.052', 7052 'Digest::MD5' => '2.52', 7053 'DynaLoader' => '1.15', 7054 'ExtUtils::CBuilder' => '0.280208', 7055 'ExtUtils::CBuilder::Base'=> '0.280208', 7056 'ExtUtils::CBuilder::Platform::Unix'=> '0.280208', 7057 'ExtUtils::CBuilder::Platform::VMS'=> '0.280208', 7058 'ExtUtils::CBuilder::Platform::Windows'=> '0.280208', 7059 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280208', 7060 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280208', 7061 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280208', 7062 'ExtUtils::CBuilder::Platform::aix'=> '0.280208', 7063 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280208', 7064 'ExtUtils::CBuilder::Platform::darwin'=> '0.280208', 7065 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280208', 7066 'ExtUtils::CBuilder::Platform::os2'=> '0.280208', 7067 'Fatal' => '2.11', 7068 'File::DosGlob' => '1.08', 7069 'File::Fetch' => '0.34', 7070 'File::Spec::Unix' => '3.39_03', 7071 'Filter::Util::Call' => '1.45', 7072 'HTTP::Tiny' => '0.022', 7073 'IO' => '1.25_07', 7074 'IO::Compress::Adapter::Bzip2'=> '2.052', 7075 'IO::Compress::Adapter::Deflate'=> '2.052', 7076 'IO::Compress::Adapter::Identity'=> '2.052', 7077 'IO::Compress::Base' => '2.052', 7078 'IO::Compress::Base::Common'=> '2.052', 7079 'IO::Compress::Bzip2' => '2.052', 7080 'IO::Compress::Deflate' => '2.052', 7081 'IO::Compress::Gzip' => '2.052', 7082 'IO::Compress::Gzip::Constants'=> '2.052', 7083 'IO::Compress::RawDeflate'=> '2.052', 7084 'IO::Compress::Zip' => '2.052', 7085 'IO::Compress::Zip::Constants'=> '2.052', 7086 'IO::Compress::Zlib::Constants'=> '2.052', 7087 'IO::Compress::Zlib::Extra'=> '2.052', 7088 'IO::Uncompress::Adapter::Bunzip2'=> '2.052', 7089 'IO::Uncompress::Adapter::Identity'=> '2.052', 7090 'IO::Uncompress::Adapter::Inflate'=> '2.052', 7091 'IO::Uncompress::AnyInflate'=> '2.052', 7092 'IO::Uncompress::AnyUncompress'=> '2.052', 7093 'IO::Uncompress::Base' => '2.052', 7094 'IO::Uncompress::Bunzip2'=> '2.052', 7095 'IO::Uncompress::Gunzip'=> '2.052', 7096 'IO::Uncompress::Inflate'=> '2.052', 7097 'IO::Uncompress::RawInflate'=> '2.052', 7098 'IO::Uncompress::Unzip' => '2.052', 7099 'IPC::Cmd' => '0.78', 7100 'List::Util' => '1.25', 7101 'List::Util::XS' => '1.25', 7102 'Locale::Codes' => '3.22', 7103 'Locale::Codes::Constants'=> '3.22', 7104 'Locale::Codes::Country'=> '3.22', 7105 'Locale::Codes::Country_Codes'=> '3.22', 7106 'Locale::Codes::Country_Retired'=> '3.22', 7107 'Locale::Codes::Currency'=> '3.22', 7108 'Locale::Codes::Currency_Codes'=> '3.22', 7109 'Locale::Codes::Currency_Retired'=> '3.22', 7110 'Locale::Codes::LangExt'=> '3.22', 7111 'Locale::Codes::LangExt_Codes'=> '3.22', 7112 'Locale::Codes::LangExt_Retired'=> '3.22', 7113 'Locale::Codes::LangFam'=> '3.22', 7114 'Locale::Codes::LangFam_Codes'=> '3.22', 7115 'Locale::Codes::LangFam_Retired'=> '3.22', 7116 'Locale::Codes::LangVar'=> '3.22', 7117 'Locale::Codes::LangVar_Codes'=> '3.22', 7118 'Locale::Codes::LangVar_Retired'=> '3.22', 7119 'Locale::Codes::Language'=> '3.22', 7120 'Locale::Codes::Language_Codes'=> '3.22', 7121 'Locale::Codes::Language_Retired'=> '3.22', 7122 'Locale::Codes::Script' => '3.22', 7123 'Locale::Codes::Script_Codes'=> '3.22', 7124 'Locale::Codes::Script_Retired'=> '3.22', 7125 'Locale::Country' => '3.22', 7126 'Locale::Currency' => '3.22', 7127 'Locale::Language' => '3.22', 7128 'Locale::Script' => '3.22', 7129 'Memoize' => '1.03', 7130 'Memoize::AnyDBM_File' => '1.03', 7131 'Memoize::Expire' => '1.03', 7132 'Memoize::ExpireFile' => '1.03', 7133 'Memoize::ExpireTest' => '1.03', 7134 'Memoize::NDBM_File' => '1.03', 7135 'Memoize::SDBM_File' => '1.03', 7136 'Memoize::Storable' => '1.03', 7137 'Module::Build' => '0.40', 7138 'Module::Build::Base' => '0.40', 7139 'Module::Build::Compat' => '0.40', 7140 'Module::Build::Config' => '0.40', 7141 'Module::Build::Cookbook'=> '0.40', 7142 'Module::Build::Dumper' => '0.40', 7143 'Module::Build::ModuleInfo'=> '0.40', 7144 'Module::Build::Notes' => '0.40', 7145 'Module::Build::PPMMaker'=> '0.40', 7146 'Module::Build::Platform::Amiga'=> '0.40', 7147 'Module::Build::Platform::Default'=> '0.40', 7148 'Module::Build::Platform::EBCDIC'=> '0.40', 7149 'Module::Build::Platform::MPEiX'=> '0.40', 7150 'Module::Build::Platform::MacOS'=> '0.40', 7151 'Module::Build::Platform::RiscOS'=> '0.40', 7152 'Module::Build::Platform::Unix'=> '0.40', 7153 'Module::Build::Platform::VMS'=> '0.40', 7154 'Module::Build::Platform::VOS'=> '0.40', 7155 'Module::Build::Platform::Windows'=> '0.40', 7156 'Module::Build::Platform::aix'=> '0.40', 7157 'Module::Build::Platform::cygwin'=> '0.40', 7158 'Module::Build::Platform::darwin'=> '0.40', 7159 'Module::Build::Platform::os2'=> '0.40', 7160 'Module::Build::PodParser'=> '0.40', 7161 'Module::CoreList' => '2.68', 7162 'Module::Load::Conditional'=> '0.50', 7163 'Object::Accessor' => '0.44', 7164 'POSIX' => '1.31', 7165 'Params::Check' => '0.36', 7166 'Parse::CPAN::Meta' => '1.4404', 7167 'PerlIO::mmap' => '0.011', 7168 'PerlIO::via::QuotedPrint'=> '0.07', 7169 'Pod::Html' => '1.16', 7170 'Pod::Man' => '2.26', 7171 'Pod::Text' => '3.16', 7172 'Safe' => '2.33_01', 7173 'Scalar::Util' => '1.25', 7174 'Search::Dict' => '1.07', 7175 'Storable' => '2.36', 7176 'TAP::Base' => '3.25', 7177 'TAP::Formatter::Base' => '3.25', 7178 'TAP::Formatter::Color' => '3.25', 7179 'TAP::Formatter::Console'=> '3.25', 7180 'TAP::Formatter::Console::ParallelSession'=> '3.25', 7181 'TAP::Formatter::Console::Session'=> '3.25', 7182 'TAP::Formatter::File' => '3.25', 7183 'TAP::Formatter::File::Session'=> '3.25', 7184 'TAP::Formatter::Session'=> '3.25', 7185 'TAP::Harness' => '3.25', 7186 'TAP::Object' => '3.25', 7187 'TAP::Parser' => '3.25', 7188 'TAP::Parser::Aggregator'=> '3.25', 7189 'TAP::Parser::Grammar' => '3.25', 7190 'TAP::Parser::Iterator' => '3.25', 7191 'TAP::Parser::Iterator::Array'=> '3.25', 7192 'TAP::Parser::Iterator::Process'=> '3.25', 7193 'TAP::Parser::Iterator::Stream'=> '3.25', 7194 'TAP::Parser::IteratorFactory'=> '3.25', 7195 'TAP::Parser::Multiplexer'=> '3.25', 7196 'TAP::Parser::Result' => '3.25', 7197 'TAP::Parser::Result::Bailout'=> '3.25', 7198 'TAP::Parser::Result::Comment'=> '3.25', 7199 'TAP::Parser::Result::Plan'=> '3.25', 7200 'TAP::Parser::Result::Pragma'=> '3.25', 7201 'TAP::Parser::Result::Test'=> '3.25', 7202 'TAP::Parser::Result::Unknown'=> '3.25', 7203 'TAP::Parser::Result::Version'=> '3.25', 7204 'TAP::Parser::Result::YAML'=> '3.25', 7205 'TAP::Parser::ResultFactory'=> '3.25', 7206 'TAP::Parser::Scheduler'=> '3.25', 7207 'TAP::Parser::Scheduler::Job'=> '3.25', 7208 'TAP::Parser::Scheduler::Spinner'=> '3.25', 7209 'TAP::Parser::Source' => '3.25', 7210 'TAP::Parser::SourceHandler'=> '3.25', 7211 'TAP::Parser::SourceHandler::Executable'=> '3.25', 7212 'TAP::Parser::SourceHandler::File'=> '3.25', 7213 'TAP::Parser::SourceHandler::Handle'=> '3.25', 7214 'TAP::Parser::SourceHandler::Perl'=> '3.25', 7215 'TAP::Parser::SourceHandler::RawTAP'=> '3.25', 7216 'TAP::Parser::Utils' => '3.25', 7217 'TAP::Parser::YAMLish::Reader'=> '3.25', 7218 'TAP::Parser::YAMLish::Writer'=> '3.25', 7219 'Term::ANSIColor' => '3.02', 7220 'Test::Harness' => '3.25', 7221 'Unicode' => '6.2.0', 7222 'Unicode::UCD' => '0.44', 7223 'XS::APItest' => '0.40', 7224 '_charnames' => '1.32', 7225 'attributes' => '0.2', 7226 'autodie' => '2.11', 7227 'autodie::exception' => '2.11', 7228 'autodie::exception::system'=> '2.11', 7229 'autodie::hints' => '2.11', 7230 'bigint' => '0.30', 7231 'charnames' => '1.32', 7232 'feature' => '1.29', 7233 'inc::latest' => '0.40', 7234 'perlfaq' => '5.0150040', 7235 're' => '0.20', 7236 }, 7237 removed => { 7238 'List::Util::PP' => 1, 7239 'Scalar::Util::PP' => 1, 7240 } 7241 }, 7242 5.017002 => { 7243 delta_from => 5.017001, 7244 changed => { 7245 'App::Prove' => '3.25_01', 7246 'App::Prove::State' => '3.25_01', 7247 'App::Prove::State::Result'=> '3.25_01', 7248 'App::Prove::State::Result::Test'=> '3.25_01', 7249 'B::Concise' => '0.91', 7250 'Compress::Raw::Bzip2' => '2.05201', 7251 'Compress::Raw::Zlib' => '2.05401', 7252 'Exporter' => '5.67', 7253 'Exporter::Heavy' => '5.67', 7254 'Fatal' => '2.12', 7255 'File::Fetch' => '0.36', 7256 'File::stat' => '1.07', 7257 'IO' => '1.25_08', 7258 'IO::Socket' => '1.35', 7259 'Module::CoreList' => '2.69', 7260 'PerlIO::scalar' => '0.15', 7261 'Socket' => '2.002', 7262 'Storable' => '2.37', 7263 'TAP::Base' => '3.25_01', 7264 'TAP::Formatter::Base' => '3.25_01', 7265 'TAP::Formatter::Color' => '3.25_01', 7266 'TAP::Formatter::Console'=> '3.25_01', 7267 'TAP::Formatter::Console::ParallelSession'=> '3.25_01', 7268 'TAP::Formatter::Console::Session'=> '3.25_01', 7269 'TAP::Formatter::File' => '3.25_01', 7270 'TAP::Formatter::File::Session'=> '3.25_01', 7271 'TAP::Formatter::Session'=> '3.25_01', 7272 'TAP::Harness' => '3.25_01', 7273 'TAP::Object' => '3.25_01', 7274 'TAP::Parser' => '3.25_01', 7275 'TAP::Parser::Aggregator'=> '3.25_01', 7276 'TAP::Parser::Grammar' => '3.25_01', 7277 'TAP::Parser::Iterator' => '3.25_01', 7278 'TAP::Parser::Iterator::Array'=> '3.25_01', 7279 'TAP::Parser::Iterator::Process'=> '3.25_01', 7280 'TAP::Parser::Iterator::Stream'=> '3.25_01', 7281 'TAP::Parser::IteratorFactory'=> '3.25_01', 7282 'TAP::Parser::Multiplexer'=> '3.25_01', 7283 'TAP::Parser::Result' => '3.25_01', 7284 'TAP::Parser::Result::Bailout'=> '3.25_01', 7285 'TAP::Parser::Result::Comment'=> '3.25_01', 7286 'TAP::Parser::Result::Plan'=> '3.25_01', 7287 'TAP::Parser::Result::Pragma'=> '3.25_01', 7288 'TAP::Parser::Result::Test'=> '3.25_01', 7289 'TAP::Parser::Result::Unknown'=> '3.25_01', 7290 'TAP::Parser::Result::Version'=> '3.25_01', 7291 'TAP::Parser::Result::YAML'=> '3.25_01', 7292 'TAP::Parser::ResultFactory'=> '3.25_01', 7293 'TAP::Parser::Scheduler'=> '3.25_01', 7294 'TAP::Parser::Scheduler::Job'=> '3.25_01', 7295 'TAP::Parser::Scheduler::Spinner'=> '3.25_01', 7296 'TAP::Parser::Source' => '3.25_01', 7297 'TAP::Parser::SourceHandler'=> '3.25_01', 7298 'TAP::Parser::SourceHandler::Executable'=> '3.25_01', 7299 'TAP::Parser::SourceHandler::File'=> '3.25_01', 7300 'TAP::Parser::SourceHandler::Handle'=> '3.25_01', 7301 'TAP::Parser::SourceHandler::Perl'=> '3.25_01', 7302 'TAP::Parser::SourceHandler::RawTAP'=> '3.25_01', 7303 'TAP::Parser::Utils' => '3.25_01', 7304 'TAP::Parser::YAMLish::Reader'=> '3.25_01', 7305 'TAP::Parser::YAMLish::Writer'=> '3.25_01', 7306 'Test::Harness' => '3.25_01', 7307 'Tie::StdHandle' => '4.3', 7308 'XS::APItest' => '0.41', 7309 'autodie' => '2.12', 7310 'autodie::exception' => '2.12', 7311 'autodie::exception::system'=> '2.12', 7312 'autodie::hints' => '2.12', 7313 'diagnostics' => '1.30', 7314 'overload' => '1.20', 7315 're' => '0.21', 7316 'vars' => '1.03', 7317 }, 7318 removed => { 7319 } 7320 }, 7321 5.017003 => { 7322 delta_from => 5.017002, 7323 changed => { 7324 'B' => '1.37', 7325 'B::Concise' => '0.92', 7326 'B::Debug' => '1.18', 7327 'B::Deparse' => '1.16', 7328 'CGI' => '3.60', 7329 'Compress::Raw::Bzip2' => '2.055', 7330 'Compress::Raw::Zlib' => '2.056', 7331 'Compress::Zlib' => '2.055', 7332 'Data::Dumper' => '2.135_07', 7333 'Devel::Peek' => '1.09', 7334 'Encode' => '2.47', 7335 'Encode::Alias' => '2.16', 7336 'Encode::GSM0338' => '2.02', 7337 'Encode::Unicode::UTF7' => '2.06', 7338 'IO::Compress::Adapter::Bzip2'=> '2.055', 7339 'IO::Compress::Adapter::Deflate'=> '2.055', 7340 'IO::Compress::Adapter::Identity'=> '2.055', 7341 'IO::Compress::Base' => '2.055', 7342 'IO::Compress::Base::Common'=> '2.055', 7343 'IO::Compress::Bzip2' => '2.055', 7344 'IO::Compress::Deflate' => '2.055', 7345 'IO::Compress::Gzip' => '2.055', 7346 'IO::Compress::Gzip::Constants'=> '2.055', 7347 'IO::Compress::RawDeflate'=> '2.055', 7348 'IO::Compress::Zip' => '2.055', 7349 'IO::Compress::Zip::Constants'=> '2.055', 7350 'IO::Compress::Zlib::Constants'=> '2.055', 7351 'IO::Compress::Zlib::Extra'=> '2.055', 7352 'IO::Uncompress::Adapter::Bunzip2'=> '2.055', 7353 'IO::Uncompress::Adapter::Identity'=> '2.055', 7354 'IO::Uncompress::Adapter::Inflate'=> '2.055', 7355 'IO::Uncompress::AnyInflate'=> '2.055', 7356 'IO::Uncompress::AnyUncompress'=> '2.055', 7357 'IO::Uncompress::Base' => '2.055', 7358 'IO::Uncompress::Bunzip2'=> '2.055', 7359 'IO::Uncompress::Gunzip'=> '2.055', 7360 'IO::Uncompress::Inflate'=> '2.055', 7361 'IO::Uncompress::RawInflate'=> '2.055', 7362 'IO::Uncompress::Unzip' => '2.055', 7363 'Module::Build' => '0.4003', 7364 'Module::Build::Base' => '0.4003', 7365 'Module::Build::Compat' => '0.4003', 7366 'Module::Build::Config' => '0.4003', 7367 'Module::Build::Cookbook'=> '0.4003', 7368 'Module::Build::Dumper' => '0.4003', 7369 'Module::Build::ModuleInfo'=> '0.4003', 7370 'Module::Build::Notes' => '0.4003', 7371 'Module::Build::PPMMaker'=> '0.4003', 7372 'Module::Build::Platform::Amiga'=> '0.4003', 7373 'Module::Build::Platform::Default'=> '0.4003', 7374 'Module::Build::Platform::EBCDIC'=> '0.4003', 7375 'Module::Build::Platform::MPEiX'=> '0.4003', 7376 'Module::Build::Platform::MacOS'=> '0.4003', 7377 'Module::Build::Platform::RiscOS'=> '0.4003', 7378 'Module::Build::Platform::Unix'=> '0.4003', 7379 'Module::Build::Platform::VMS'=> '0.4003', 7380 'Module::Build::Platform::VOS'=> '0.4003', 7381 'Module::Build::Platform::Windows'=> '0.4003', 7382 'Module::Build::Platform::aix'=> '0.4003', 7383 'Module::Build::Platform::cygwin'=> '0.4003', 7384 'Module::Build::Platform::darwin'=> '0.4003', 7385 'Module::Build::Platform::os2'=> '0.4003', 7386 'Module::Build::PodParser'=> '0.4003', 7387 'Module::CoreList' => '2.71', 7388 'Module::CoreList::TieHashDelta'=> '2.71', 7389 'Module::Load::Conditional'=> '0.54', 7390 'Module::Metadata' => '1.000011', 7391 'Module::Pluggable' => '4.3', 7392 'Module::Pluggable::Object'=> '4.3', 7393 'Pod::Simple' => '3.23', 7394 'Pod::Simple::BlackBox' => '3.23', 7395 'Pod::Simple::Checker' => '3.23', 7396 'Pod::Simple::Debug' => '3.23', 7397 'Pod::Simple::DumpAsText'=> '3.23', 7398 'Pod::Simple::DumpAsXML'=> '3.23', 7399 'Pod::Simple::HTML' => '3.23', 7400 'Pod::Simple::HTMLBatch'=> '3.23', 7401 'Pod::Simple::LinkSection'=> '3.23', 7402 'Pod::Simple::Methody' => '3.23', 7403 'Pod::Simple::Progress' => '3.23', 7404 'Pod::Simple::PullParser'=> '3.23', 7405 'Pod::Simple::PullParserEndToken'=> '3.23', 7406 'Pod::Simple::PullParserStartToken'=> '3.23', 7407 'Pod::Simple::PullParserTextToken'=> '3.23', 7408 'Pod::Simple::PullParserToken'=> '3.23', 7409 'Pod::Simple::RTF' => '3.23', 7410 'Pod::Simple::Search' => '3.23', 7411 'Pod::Simple::SimpleTree'=> '3.23', 7412 'Pod::Simple::Text' => '3.23', 7413 'Pod::Simple::TextContent'=> '3.23', 7414 'Pod::Simple::TiedOutFH'=> '3.23', 7415 'Pod::Simple::Transcode'=> '3.23', 7416 'Pod::Simple::TranscodeDumb'=> '3.23', 7417 'Pod::Simple::TranscodeSmart'=> '3.23', 7418 'Pod::Simple::XHTML' => '3.23', 7419 'Pod::Simple::XMLOutStream'=> '3.23', 7420 'Socket' => '2.004', 7421 'Storable' => '2.38', 7422 'Sys::Syslog' => '0.31', 7423 'Term::ReadLine' => '1.10', 7424 'Text::Tabs' => '2012.0818', 7425 'Text::Wrap' => '2012.0818', 7426 'Time::Local' => '1.2300', 7427 'Unicode::UCD' => '0.45', 7428 'Win32' => '0.45', 7429 'Win32CORE' => '0.03', 7430 'XS::APItest' => '0.42', 7431 'inc::latest' => '0.4003', 7432 'perlfaq' => '5.0150041', 7433 're' => '0.22', 7434 }, 7435 removed => { 7436 } 7437 }, 7438 5.017004 => { 7439 delta_from => 5.017003, 7440 changed => { 7441 'Archive::Tar' => '1.90', 7442 'Archive::Tar::Constant'=> '1.90', 7443 'Archive::Tar::File' => '1.90', 7444 'B' => '1.38', 7445 'B::Concise' => '0.93', 7446 'B::Deparse' => '1.17', 7447 'B::Xref' => '1.04', 7448 'CPANPLUS' => '0.9131', 7449 'CPANPLUS::Internals' => '0.9131', 7450 'CPANPLUS::Shell::Default'=> '0.9131', 7451 'DB_File' => '1.827', 7452 'Devel::Peek' => '1.10', 7453 'DynaLoader' => '1.16', 7454 'Errno' => '1.16', 7455 'ExtUtils::ParseXS' => '3.18', 7456 'ExtUtils::ParseXS::Constants'=> '3.18', 7457 'ExtUtils::ParseXS::CountLines'=> '3.18', 7458 'ExtUtils::ParseXS::Utilities'=> '3.18', 7459 'File::Copy' => '2.24', 7460 'File::Find' => '1.22', 7461 'IPC::Open3' => '1.13', 7462 'Locale::Codes' => '3.23', 7463 'Locale::Codes::Constants'=> '3.23', 7464 'Locale::Codes::Country'=> '3.23', 7465 'Locale::Codes::Country_Codes'=> '3.23', 7466 'Locale::Codes::Country_Retired'=> '3.23', 7467 'Locale::Codes::Currency'=> '3.23', 7468 'Locale::Codes::Currency_Codes'=> '3.23', 7469 'Locale::Codes::Currency_Retired'=> '3.23', 7470 'Locale::Codes::LangExt'=> '3.23', 7471 'Locale::Codes::LangExt_Codes'=> '3.23', 7472 'Locale::Codes::LangExt_Retired'=> '3.23', 7473 'Locale::Codes::LangFam'=> '3.23', 7474 'Locale::Codes::LangFam_Codes'=> '3.23', 7475 'Locale::Codes::LangFam_Retired'=> '3.23', 7476 'Locale::Codes::LangVar'=> '3.23', 7477 'Locale::Codes::LangVar_Codes'=> '3.23', 7478 'Locale::Codes::LangVar_Retired'=> '3.23', 7479 'Locale::Codes::Language'=> '3.23', 7480 'Locale::Codes::Language_Codes'=> '3.23', 7481 'Locale::Codes::Language_Retired'=> '3.23', 7482 'Locale::Codes::Script' => '3.23', 7483 'Locale::Codes::Script_Codes'=> '3.23', 7484 'Locale::Codes::Script_Retired'=> '3.23', 7485 'Locale::Country' => '3.23', 7486 'Locale::Currency' => '3.23', 7487 'Locale::Language' => '3.23', 7488 'Locale::Script' => '3.23', 7489 'Math::BigFloat::Trace' => '0.30', 7490 'Math::BigInt::Trace' => '0.30', 7491 'Module::CoreList' => '2.73', 7492 'Module::CoreList::TieHashDelta'=> '2.73', 7493 'Opcode' => '1.24', 7494 'Socket' => '2.006', 7495 'Storable' => '2.39', 7496 'Sys::Syslog' => '0.32', 7497 'Unicode::UCD' => '0.46', 7498 'XS::APItest' => '0.43', 7499 'bignum' => '0.30', 7500 'bigrat' => '0.30', 7501 'constant' => '1.24', 7502 'feature' => '1.30', 7503 'threads::shared' => '1.41', 7504 'version' => '0.9901', 7505 'warnings' => '1.14', 7506 }, 7507 removed => { 7508 } 7509 }, 7510 5.017005 => { 7511 delta_from => 5.017004, 7512 changed => { 7513 'AutoLoader' => '5.73', 7514 'B' => '1.39', 7515 'B::Deparse' => '1.18', 7516 'CPANPLUS' => '0.9133', 7517 'CPANPLUS::Internals' => '0.9133', 7518 'CPANPLUS::Shell::Default'=> '0.9133', 7519 'Carp' => '1.27', 7520 'Carp::Heavy' => '1.27', 7521 'Data::Dumper' => '2.136', 7522 'Digest::SHA' => '5.72', 7523 'ExtUtils::CBuilder' => '0.280209', 7524 'ExtUtils::CBuilder::Base'=> '0.280209', 7525 'ExtUtils::CBuilder::Platform::Unix'=> '0.280209', 7526 'ExtUtils::CBuilder::Platform::VMS'=> '0.280209', 7527 'ExtUtils::CBuilder::Platform::Windows'=> '0.280209', 7528 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280209', 7529 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280209', 7530 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280209', 7531 'ExtUtils::CBuilder::Platform::aix'=> '0.280209', 7532 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280209', 7533 'ExtUtils::CBuilder::Platform::darwin'=> '0.280209', 7534 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280209', 7535 'ExtUtils::CBuilder::Platform::os2'=> '0.280209', 7536 'File::Copy' => '2.25', 7537 'File::Glob' => '1.18', 7538 'HTTP::Tiny' => '0.024', 7539 'Module::CoreList' => '2.75', 7540 'Module::CoreList::TieHashDelta'=> '2.75', 7541 'PerlIO::encoding' => '0.16', 7542 'Unicode::Collate' => '0.90', 7543 'Unicode::Collate::Locale'=> '0.90', 7544 'Unicode::Normalize' => '1.15', 7545 'Win32CORE' => '0.04', 7546 'XS::APItest' => '0.44', 7547 'attributes' => '0.21', 7548 'bigint' => '0.31', 7549 'bignum' => '0.31', 7550 'bigrat' => '0.31', 7551 'feature' => '1.31', 7552 'threads::shared' => '1.42', 7553 'warnings' => '1.15', 7554 }, 7555 removed => { 7556 } 7557 }, 7558 5.017006 => { 7559 delta_from => 5.017005, 7560 changed => { 7561 'B' => '1.40', 7562 'B::Concise' => '0.94', 7563 'B::Deparse' => '1.19', 7564 'B::Xref' => '1.05', 7565 'CGI' => '3.63', 7566 'CGI::Util' => '3.62', 7567 'CPAN' => '1.99_51', 7568 'CPANPLUS::Dist::Build' => '0.64', 7569 'CPANPLUS::Dist::Build::Constants'=> '0.64', 7570 'Carp' => '1.28', 7571 'Carp::Heavy' => '1.28', 7572 'Compress::Raw::Bzip2' => '2.058', 7573 'Compress::Raw::Zlib' => '2.058', 7574 'Compress::Zlib' => '2.058', 7575 'Data::Dumper' => '2.137', 7576 'Digest::SHA' => '5.73', 7577 'DynaLoader' => '1.17', 7578 'Env' => '1.04', 7579 'Errno' => '1.17', 7580 'ExtUtils::Manifest' => '1.62', 7581 'ExtUtils::Typemaps' => '3.18', 7582 'ExtUtils::Typemaps::Cmd'=> '3.18', 7583 'ExtUtils::Typemaps::InputMap'=> '3.18', 7584 'ExtUtils::Typemaps::OutputMap'=> '3.18', 7585 'ExtUtils::Typemaps::Type'=> '3.18', 7586 'Fatal' => '2.13', 7587 'File::Find' => '1.23', 7588 'Hash::Util' => '0.13', 7589 'IO::Compress::Adapter::Bzip2'=> '2.058', 7590 'IO::Compress::Adapter::Deflate'=> '2.058', 7591 'IO::Compress::Adapter::Identity'=> '2.058', 7592 'IO::Compress::Base' => '2.058', 7593 'IO::Compress::Base::Common'=> '2.058', 7594 'IO::Compress::Bzip2' => '2.058', 7595 'IO::Compress::Deflate' => '2.058', 7596 'IO::Compress::Gzip' => '2.058', 7597 'IO::Compress::Gzip::Constants'=> '2.058', 7598 'IO::Compress::RawDeflate'=> '2.058', 7599 'IO::Compress::Zip' => '2.058', 7600 'IO::Compress::Zip::Constants'=> '2.058', 7601 'IO::Compress::Zlib::Constants'=> '2.058', 7602 'IO::Compress::Zlib::Extra'=> '2.058', 7603 'IO::Uncompress::Adapter::Bunzip2'=> '2.058', 7604 'IO::Uncompress::Adapter::Identity'=> '2.058', 7605 'IO::Uncompress::Adapter::Inflate'=> '2.058', 7606 'IO::Uncompress::AnyInflate'=> '2.058', 7607 'IO::Uncompress::AnyUncompress'=> '2.058', 7608 'IO::Uncompress::Base' => '2.058', 7609 'IO::Uncompress::Bunzip2'=> '2.058', 7610 'IO::Uncompress::Gunzip'=> '2.058', 7611 'IO::Uncompress::Inflate'=> '2.058', 7612 'IO::Uncompress::RawInflate'=> '2.058', 7613 'IO::Uncompress::Unzip' => '2.058', 7614 'Module::CoreList' => '2.78', 7615 'Module::CoreList::TieHashDelta'=> '2.77', 7616 'Module::Pluggable' => '4.5', 7617 'Module::Pluggable::Object'=> '4.5', 7618 'Opcode' => '1.25', 7619 'Sys::Hostname' => '1.17', 7620 'Term::UI' => '0.32', 7621 'Thread::Queue' => '3.01', 7622 'Tie::Hash::NamedCapture'=> '0.09', 7623 'Unicode::Collate' => '0.93', 7624 'Unicode::Collate::CJK::Korean'=> '0.93', 7625 'Unicode::Collate::Locale'=> '0.93', 7626 'Unicode::Normalize' => '1.16', 7627 'Unicode::UCD' => '0.47', 7628 'XS::APItest' => '0.46', 7629 '_charnames' => '1.33', 7630 'autodie' => '2.13', 7631 'autodie::exception' => '2.13', 7632 'autodie::exception::system'=> '2.13', 7633 'autodie::hints' => '2.13', 7634 'charnames' => '1.33', 7635 're' => '0.23', 7636 }, 7637 removed => { 7638 } 7639 }, 7640 5.017007 => { 7641 delta_from => 5.017006, 7642 changed => { 7643 'B' => '1.41', 7644 'CPANPLUS::Dist::Build' => '0.68', 7645 'CPANPLUS::Dist::Build::Constants'=> '0.68', 7646 'Compress::Raw::Bzip2' => '2.059', 7647 'Compress::Raw::Zlib' => '2.059', 7648 'Compress::Zlib' => '2.059', 7649 'Cwd' => '3.39_03', 7650 'Data::Dumper' => '2.139', 7651 'Devel::Peek' => '1.11', 7652 'Digest::SHA' => '5.80', 7653 'DynaLoader' => '1.18', 7654 'English' => '1.06', 7655 'Errno' => '1.18', 7656 'ExtUtils::Command::MM' => '6.64', 7657 'ExtUtils::Liblist' => '6.64', 7658 'ExtUtils::Liblist::Kid'=> '6.64', 7659 'ExtUtils::MM' => '6.64', 7660 'ExtUtils::MM_AIX' => '6.64', 7661 'ExtUtils::MM_Any' => '6.64', 7662 'ExtUtils::MM_BeOS' => '6.64', 7663 'ExtUtils::MM_Cygwin' => '6.64', 7664 'ExtUtils::MM_DOS' => '6.64', 7665 'ExtUtils::MM_Darwin' => '6.64', 7666 'ExtUtils::MM_MacOS' => '6.64', 7667 'ExtUtils::MM_NW5' => '6.64', 7668 'ExtUtils::MM_OS2' => '6.64', 7669 'ExtUtils::MM_QNX' => '6.64', 7670 'ExtUtils::MM_UWIN' => '6.64', 7671 'ExtUtils::MM_Unix' => '6.64', 7672 'ExtUtils::MM_VMS' => '6.64', 7673 'ExtUtils::MM_VOS' => '6.64', 7674 'ExtUtils::MM_Win32' => '6.64', 7675 'ExtUtils::MM_Win95' => '6.64', 7676 'ExtUtils::MY' => '6.64', 7677 'ExtUtils::MakeMaker' => '6.64', 7678 'ExtUtils::MakeMaker::Config'=> '6.64', 7679 'ExtUtils::Mkbootstrap' => '6.64', 7680 'ExtUtils::Mksymlists' => '6.64', 7681 'ExtUtils::testlib' => '6.64', 7682 'File::DosGlob' => '1.09', 7683 'File::Glob' => '1.19', 7684 'GDBM_File' => '1.15', 7685 'IO::Compress::Adapter::Bzip2'=> '2.059', 7686 'IO::Compress::Adapter::Deflate'=> '2.059', 7687 'IO::Compress::Adapter::Identity'=> '2.059', 7688 'IO::Compress::Base' => '2.059', 7689 'IO::Compress::Base::Common'=> '2.059', 7690 'IO::Compress::Bzip2' => '2.059', 7691 'IO::Compress::Deflate' => '2.059', 7692 'IO::Compress::Gzip' => '2.059', 7693 'IO::Compress::Gzip::Constants'=> '2.059', 7694 'IO::Compress::RawDeflate'=> '2.059', 7695 'IO::Compress::Zip' => '2.059', 7696 'IO::Compress::Zip::Constants'=> '2.059', 7697 'IO::Compress::Zlib::Constants'=> '2.059', 7698 'IO::Compress::Zlib::Extra'=> '2.059', 7699 'IO::Uncompress::Adapter::Bunzip2'=> '2.059', 7700 'IO::Uncompress::Adapter::Identity'=> '2.059', 7701 'IO::Uncompress::Adapter::Inflate'=> '2.059', 7702 'IO::Uncompress::AnyInflate'=> '2.059', 7703 'IO::Uncompress::AnyUncompress'=> '2.059', 7704 'IO::Uncompress::Base' => '2.059', 7705 'IO::Uncompress::Bunzip2'=> '2.059', 7706 'IO::Uncompress::Gunzip'=> '2.059', 7707 'IO::Uncompress::Inflate'=> '2.059', 7708 'IO::Uncompress::RawInflate'=> '2.059', 7709 'IO::Uncompress::Unzip' => '2.059', 7710 'List::Util' => '1.26', 7711 'List::Util::XS' => '1.26', 7712 'Locale::Codes' => '3.24', 7713 'Locale::Codes::Constants'=> '3.24', 7714 'Locale::Codes::Country'=> '3.24', 7715 'Locale::Codes::Country_Codes'=> '3.24', 7716 'Locale::Codes::Country_Retired'=> '3.24', 7717 'Locale::Codes::Currency'=> '3.24', 7718 'Locale::Codes::Currency_Codes'=> '3.24', 7719 'Locale::Codes::Currency_Retired'=> '3.24', 7720 'Locale::Codes::LangExt'=> '3.24', 7721 'Locale::Codes::LangExt_Codes'=> '3.24', 7722 'Locale::Codes::LangExt_Retired'=> '3.24', 7723 'Locale::Codes::LangFam'=> '3.24', 7724 'Locale::Codes::LangFam_Codes'=> '3.24', 7725 'Locale::Codes::LangFam_Retired'=> '3.24', 7726 'Locale::Codes::LangVar'=> '3.24', 7727 'Locale::Codes::LangVar_Codes'=> '3.24', 7728 'Locale::Codes::LangVar_Retired'=> '3.24', 7729 'Locale::Codes::Language'=> '3.24', 7730 'Locale::Codes::Language_Codes'=> '3.24', 7731 'Locale::Codes::Language_Retired'=> '3.24', 7732 'Locale::Codes::Script' => '3.24', 7733 'Locale::Codes::Script_Codes'=> '3.24', 7734 'Locale::Codes::Script_Retired'=> '3.24', 7735 'Locale::Country' => '3.24', 7736 'Locale::Currency' => '3.24', 7737 'Locale::Language' => '3.24', 7738 'Locale::Maketext' => '1.23', 7739 'Locale::Script' => '3.24', 7740 'Module::CoreList' => '2.79', 7741 'Module::CoreList::TieHashDelta'=> '2.79', 7742 'POSIX' => '1.32', 7743 'Scalar::Util' => '1.26', 7744 'Socket' => '2.006_001', 7745 'Storable' => '2.40', 7746 'Term::ReadLine' => '1.11', 7747 'Unicode::Collate' => '0.96', 7748 'Unicode::Collate::CJK::Stroke'=> '0.94', 7749 'Unicode::Collate::CJK::Zhuyin'=> '0.94', 7750 'Unicode::Collate::Locale'=> '0.96', 7751 'XS::APItest' => '0.48', 7752 'XS::Typemap' => '0.09', 7753 '_charnames' => '1.34', 7754 'charnames' => '1.34', 7755 'feature' => '1.32', 7756 'mro' => '1.10', 7757 'sigtrap' => '1.07', 7758 'sort' => '2.02', 7759 }, 7760 removed => { 7761 } 7762 }, 7763 5.017008 => { 7764 delta_from => 5.017007, 7765 changed => { 7766 'Archive::Extract' => '0.62', 7767 'B' => '1.42', 7768 'B::Concise' => '0.95', 7769 'Compress::Raw::Bzip2' => '2.060', 7770 'Compress::Raw::Zlib' => '2.060', 7771 'Compress::Zlib' => '2.060', 7772 'Cwd' => '3.40', 7773 'Data::Dumper' => '2.141', 7774 'Digest::SHA' => '5.81', 7775 'ExtUtils::Install' => '1.59', 7776 'File::Fetch' => '0.38', 7777 'File::Path' => '2.09', 7778 'File::Spec' => '3.40', 7779 'File::Spec::Cygwin' => '3.40', 7780 'File::Spec::Epoc' => '3.40', 7781 'File::Spec::Functions' => '3.40', 7782 'File::Spec::Mac' => '3.40', 7783 'File::Spec::OS2' => '3.40', 7784 'File::Spec::Unix' => '3.40', 7785 'File::Spec::VMS' => '3.40', 7786 'File::Spec::Win32' => '3.40', 7787 'HTTP::Tiny' => '0.025', 7788 'Hash::Util' => '0.14', 7789 'I18N::LangTags' => '0.39', 7790 'I18N::LangTags::List' => '0.39', 7791 'I18N::Langinfo' => '0.09', 7792 'IO' => '1.26', 7793 'IO::Compress::Adapter::Bzip2'=> '2.060', 7794 'IO::Compress::Adapter::Deflate'=> '2.060', 7795 'IO::Compress::Adapter::Identity'=> '2.060', 7796 'IO::Compress::Base' => '2.060', 7797 'IO::Compress::Base::Common'=> '2.060', 7798 'IO::Compress::Bzip2' => '2.060', 7799 'IO::Compress::Deflate' => '2.060', 7800 'IO::Compress::Gzip' => '2.060', 7801 'IO::Compress::Gzip::Constants'=> '2.060', 7802 'IO::Compress::RawDeflate'=> '2.060', 7803 'IO::Compress::Zip' => '2.060', 7804 'IO::Compress::Zip::Constants'=> '2.060', 7805 'IO::Compress::Zlib::Constants'=> '2.060', 7806 'IO::Compress::Zlib::Extra'=> '2.060', 7807 'IO::Uncompress::Adapter::Bunzip2'=> '2.060', 7808 'IO::Uncompress::Adapter::Identity'=> '2.060', 7809 'IO::Uncompress::Adapter::Inflate'=> '2.060', 7810 'IO::Uncompress::AnyInflate'=> '2.060', 7811 'IO::Uncompress::AnyUncompress'=> '2.060', 7812 'IO::Uncompress::Base' => '2.060', 7813 'IO::Uncompress::Bunzip2'=> '2.060', 7814 'IO::Uncompress::Gunzip'=> '2.060', 7815 'IO::Uncompress::Inflate'=> '2.060', 7816 'IO::Uncompress::RawInflate'=> '2.060', 7817 'IO::Uncompress::Unzip' => '2.060', 7818 'List::Util' => '1.27', 7819 'List::Util::XS' => '1.27', 7820 'Module::CoreList' => '2.80', 7821 'Module::CoreList::TieHashDelta'=> '2.80', 7822 'Pod::Html' => '1.17', 7823 'Pod::LaTeX' => '0.61', 7824 'Pod::Man' => '2.27', 7825 'Pod::Text' => '3.17', 7826 'Pod::Text::Color' => '2.07', 7827 'Pod::Text::Overstrike' => '2.05', 7828 'Pod::Text::Termcap' => '2.07', 7829 'Safe' => '2.34', 7830 'Scalar::Util' => '1.27', 7831 'Socket' => '2.009', 7832 'Term::ANSIColor' => '4.02', 7833 'Test' => '1.26', 7834 'Unicode::Collate' => '0.97', 7835 'XS::APItest' => '0.51', 7836 'XS::Typemap' => '0.10', 7837 '_charnames' => '1.35', 7838 'charnames' => '1.35', 7839 'constant' => '1.25', 7840 'diagnostics' => '1.31', 7841 'threads::shared' => '1.43', 7842 'warnings' => '1.16', 7843 }, 7844 removed => { 7845 } 7846 }, 7847 5.017009 => { 7848 delta_from => 5.017008, 7849 changed => { 7850 'App::Cpan' => '1.60_02', 7851 'App::Prove' => '3.26', 7852 'App::Prove::State' => '3.26', 7853 'App::Prove::State::Result'=> '3.26', 7854 'App::Prove::State::Result::Test'=> '3.26', 7855 'Archive::Extract' => '0.68', 7856 'Attribute::Handlers' => '0.94', 7857 'B::Lint' => '1.17', 7858 'B::Lint::Debug' => '1.17', 7859 'Benchmark' => '1.14', 7860 'CPAN' => '2.00', 7861 'CPAN::Distribution' => '2.00', 7862 'CPAN::FirstTime' => '5.5304', 7863 'CPAN::Nox' => '5.5001', 7864 'CPANPLUS' => '0.9135', 7865 'CPANPLUS::Backend' => '0.9135', 7866 'CPANPLUS::Backend::RV' => '0.9135', 7867 'CPANPLUS::Config' => '0.9135', 7868 'CPANPLUS::Config::HomeEnv'=> '0.9135', 7869 'CPANPLUS::Configure' => '0.9135', 7870 'CPANPLUS::Configure::Setup'=> '0.9135', 7871 'CPANPLUS::Dist' => '0.9135', 7872 'CPANPLUS::Dist::Autobundle'=> '0.9135', 7873 'CPANPLUS::Dist::Base' => '0.9135', 7874 'CPANPLUS::Dist::Build' => '0.70', 7875 'CPANPLUS::Dist::Build::Constants'=> '0.70', 7876 'CPANPLUS::Dist::MM' => '0.9135', 7877 'CPANPLUS::Dist::Sample'=> '0.9135', 7878 'CPANPLUS::Error' => '0.9135', 7879 'CPANPLUS::Internals' => '0.9135', 7880 'CPANPLUS::Internals::Constants'=> '0.9135', 7881 'CPANPLUS::Internals::Constants::Report'=> '0.9135', 7882 'CPANPLUS::Internals::Extract'=> '0.9135', 7883 'CPANPLUS::Internals::Fetch'=> '0.9135', 7884 'CPANPLUS::Internals::Report'=> '0.9135', 7885 'CPANPLUS::Internals::Search'=> '0.9135', 7886 'CPANPLUS::Internals::Source'=> '0.9135', 7887 'CPANPLUS::Internals::Source::Memory'=> '0.9135', 7888 'CPANPLUS::Internals::Source::SQLite'=> '0.9135', 7889 'CPANPLUS::Internals::Source::SQLite::Tie'=> '0.9135', 7890 'CPANPLUS::Internals::Utils'=> '0.9135', 7891 'CPANPLUS::Internals::Utils::Autoflush'=> '0.9135', 7892 'CPANPLUS::Module' => '0.9135', 7893 'CPANPLUS::Module::Author'=> '0.9135', 7894 'CPANPLUS::Module::Author::Fake'=> '0.9135', 7895 'CPANPLUS::Module::Checksums'=> '0.9135', 7896 'CPANPLUS::Module::Fake'=> '0.9135', 7897 'CPANPLUS::Module::Signature'=> '0.9135', 7898 'CPANPLUS::Selfupdate' => '0.9135', 7899 'CPANPLUS::Shell' => '0.9135', 7900 'CPANPLUS::Shell::Classic'=> '0.9135', 7901 'CPANPLUS::Shell::Default'=> '0.9135', 7902 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> '0.9135', 7903 'CPANPLUS::Shell::Default::Plugins::Remote'=> '0.9135', 7904 'CPANPLUS::Shell::Default::Plugins::Source'=> '0.9135', 7905 'Config' => '5.017009', 7906 'Config::Perl::V' => '0.17', 7907 'DBM_Filter' => '0.05', 7908 'Data::Dumper' => '2.142', 7909 'Digest::SHA' => '5.82', 7910 'Encode' => '2.48', 7911 'ExtUtils::Installed' => '1.999003', 7912 'ExtUtils::Manifest' => '1.63', 7913 'ExtUtils::ParseXS::Utilities'=> '3.19', 7914 'ExtUtils::Typemaps' => '3.19', 7915 'File::CheckTree' => '4.42', 7916 'File::DosGlob' => '1.10', 7917 'File::Temp' => '0.22_90', 7918 'Filter::Simple' => '0.89', 7919 'IO' => '1.27', 7920 'Log::Message' => '0.06', 7921 'Log::Message::Config' => '0.06', 7922 'Log::Message::Handlers'=> '0.06', 7923 'Log::Message::Item' => '0.06', 7924 'Log::Message::Simple' => '0.10', 7925 'Math::BigInt' => '1.999', 7926 'Module::CoreList' => '2.82', 7927 'Module::CoreList::TieHashDelta'=> '2.82', 7928 'Module::Load' => '0.24', 7929 'Module::Pluggable' => '4.6', 7930 'Module::Pluggable::Object'=> '4.6', 7931 'OS2::DLL' => '1.05', 7932 'OS2::ExtAttr' => '0.03', 7933 'OS2::Process' => '1.08', 7934 'Object::Accessor' => '0.46', 7935 'PerlIO::scalar' => '0.16', 7936 'Pod::Checker' => '1.60', 7937 'Pod::Find' => '1.60', 7938 'Pod::Html' => '1.18', 7939 'Pod::InputObjects' => '1.60', 7940 'Pod::ParseUtils' => '1.60', 7941 'Pod::Parser' => '1.60', 7942 'Pod::Perldoc' => '3.19', 7943 'Pod::Perldoc::BaseTo' => '3.19', 7944 'Pod::Perldoc::GetOptsOO'=> '3.19', 7945 'Pod::Perldoc::ToANSI' => '3.19', 7946 'Pod::Perldoc::ToChecker'=> '3.19', 7947 'Pod::Perldoc::ToMan' => '3.19', 7948 'Pod::Perldoc::ToNroff' => '3.19', 7949 'Pod::Perldoc::ToPod' => '3.19', 7950 'Pod::Perldoc::ToRtf' => '3.19', 7951 'Pod::Perldoc::ToTerm' => '3.19', 7952 'Pod::Perldoc::ToText' => '3.19', 7953 'Pod::Perldoc::ToTk' => '3.19', 7954 'Pod::Perldoc::ToXml' => '3.19', 7955 'Pod::PlainText' => '2.06', 7956 'Pod::Select' => '1.60', 7957 'Pod::Usage' => '1.61', 7958 'SelfLoader' => '1.21', 7959 'TAP::Base' => '3.26', 7960 'TAP::Formatter::Base' => '3.26', 7961 'TAP::Formatter::Color' => '3.26', 7962 'TAP::Formatter::Console'=> '3.26', 7963 'TAP::Formatter::Console::ParallelSession'=> '3.26', 7964 'TAP::Formatter::Console::Session'=> '3.26', 7965 'TAP::Formatter::File' => '3.26', 7966 'TAP::Formatter::File::Session'=> '3.26', 7967 'TAP::Formatter::Session'=> '3.26', 7968 'TAP::Harness' => '3.26', 7969 'TAP::Object' => '3.26', 7970 'TAP::Parser' => '3.26', 7971 'TAP::Parser::Aggregator'=> '3.26', 7972 'TAP::Parser::Grammar' => '3.26', 7973 'TAP::Parser::Iterator' => '3.26', 7974 'TAP::Parser::Iterator::Array'=> '3.26', 7975 'TAP::Parser::Iterator::Process'=> '3.26', 7976 'TAP::Parser::Iterator::Stream'=> '3.26', 7977 'TAP::Parser::IteratorFactory'=> '3.26', 7978 'TAP::Parser::Multiplexer'=> '3.26', 7979 'TAP::Parser::Result' => '3.26', 7980 'TAP::Parser::Result::Bailout'=> '3.26', 7981 'TAP::Parser::Result::Comment'=> '3.26', 7982 'TAP::Parser::Result::Plan'=> '3.26', 7983 'TAP::Parser::Result::Pragma'=> '3.26', 7984 'TAP::Parser::Result::Test'=> '3.26', 7985 'TAP::Parser::Result::Unknown'=> '3.26', 7986 'TAP::Parser::Result::Version'=> '3.26', 7987 'TAP::Parser::Result::YAML'=> '3.26', 7988 'TAP::Parser::ResultFactory'=> '3.26', 7989 'TAP::Parser::Scheduler'=> '3.26', 7990 'TAP::Parser::Scheduler::Job'=> '3.26', 7991 'TAP::Parser::Scheduler::Spinner'=> '3.26', 7992 'TAP::Parser::Source' => '3.26', 7993 'TAP::Parser::SourceHandler'=> '3.26', 7994 'TAP::Parser::SourceHandler::Executable'=> '3.26', 7995 'TAP::Parser::SourceHandler::File'=> '3.26', 7996 'TAP::Parser::SourceHandler::Handle'=> '3.26', 7997 'TAP::Parser::SourceHandler::Perl'=> '3.26', 7998 'TAP::Parser::SourceHandler::RawTAP'=> '3.26', 7999 'TAP::Parser::Utils' => '3.26', 8000 'TAP::Parser::YAMLish::Reader'=> '3.26', 8001 'TAP::Parser::YAMLish::Writer'=> '3.26', 8002 'Term::UI' => '0.34', 8003 'Test::Harness' => '3.26', 8004 'Text::Soundex' => '3.04', 8005 'Thread::Queue' => '3.02', 8006 'Unicode::UCD' => '0.50', 8007 'Win32' => '0.46', 8008 'Win32API::File' => '0.1201', 8009 '_charnames' => '1.36', 8010 'arybase' => '0.06', 8011 'bigint' => '0.32', 8012 'bignum' => '0.32', 8013 'charnames' => '1.36', 8014 'filetest' => '1.03', 8015 'locale' => '1.02', 8016 'overload' => '1.21', 8017 'warnings' => '1.17', 8018 }, 8019 removed => { 8020 } 8021 }, 8022 5.017010 => { 8023 delta_from => 5.017009, 8024 changed => { 8025 'Benchmark' => '1.15', 8026 'Config' => '5.017009', 8027 'Data::Dumper' => '2.145', 8028 'Digest::SHA' => '5.84', 8029 'Encode' => '2.49', 8030 'ExtUtils::Command::MM' => '6.65_01', 8031 'ExtUtils::Liblist' => '6.65_01', 8032 'ExtUtils::Liblist::Kid'=> '6.65_01', 8033 'ExtUtils::MM' => '6.65_01', 8034 'ExtUtils::MM_AIX' => '6.65_01', 8035 'ExtUtils::MM_Any' => '6.65_01', 8036 'ExtUtils::MM_BeOS' => '6.65_01', 8037 'ExtUtils::MM_Cygwin' => '6.65_01', 8038 'ExtUtils::MM_DOS' => '6.65_01', 8039 'ExtUtils::MM_Darwin' => '6.65_01', 8040 'ExtUtils::MM_MacOS' => '6.65_01', 8041 'ExtUtils::MM_NW5' => '6.65_01', 8042 'ExtUtils::MM_OS2' => '6.65_01', 8043 'ExtUtils::MM_QNX' => '6.65_01', 8044 'ExtUtils::MM_UWIN' => '6.65_01', 8045 'ExtUtils::MM_Unix' => '6.65_01', 8046 'ExtUtils::MM_VMS' => '6.65_01', 8047 'ExtUtils::MM_VOS' => '6.65_01', 8048 'ExtUtils::MM_Win32' => '6.65_01', 8049 'ExtUtils::MM_Win95' => '6.65_01', 8050 'ExtUtils::MY' => '6.65_01', 8051 'ExtUtils::MakeMaker' => '6.65_01', 8052 'ExtUtils::MakeMaker::Config'=> '6.65_01', 8053 'ExtUtils::Mkbootstrap' => '6.65_01', 8054 'ExtUtils::Mksymlists' => '6.65_01', 8055 'ExtUtils::testlib' => '6.65_01', 8056 'File::Copy' => '2.26', 8057 'File::Temp' => '0.23', 8058 'Getopt::Long' => '2.39', 8059 'Hash::Util' => '0.15', 8060 'I18N::Langinfo' => '0.10', 8061 'IPC::Cmd' => '0.80', 8062 'JSON::PP' => '2.27202', 8063 'Locale::Codes' => '3.25', 8064 'Locale::Codes::Constants'=> '3.25', 8065 'Locale::Codes::Country'=> '3.25', 8066 'Locale::Codes::Country_Codes'=> '3.25', 8067 'Locale::Codes::Country_Retired'=> '3.25', 8068 'Locale::Codes::Currency'=> '3.25', 8069 'Locale::Codes::Currency_Codes'=> '3.25', 8070 'Locale::Codes::Currency_Retired'=> '3.25', 8071 'Locale::Codes::LangExt'=> '3.25', 8072 'Locale::Codes::LangExt_Codes'=> '3.25', 8073 'Locale::Codes::LangExt_Retired'=> '3.25', 8074 'Locale::Codes::LangFam'=> '3.25', 8075 'Locale::Codes::LangFam_Codes'=> '3.25', 8076 'Locale::Codes::LangFam_Retired'=> '3.25', 8077 'Locale::Codes::LangVar'=> '3.25', 8078 'Locale::Codes::LangVar_Codes'=> '3.25', 8079 'Locale::Codes::LangVar_Retired'=> '3.25', 8080 'Locale::Codes::Language'=> '3.25', 8081 'Locale::Codes::Language_Codes'=> '3.25', 8082 'Locale::Codes::Language_Retired'=> '3.25', 8083 'Locale::Codes::Script' => '3.25', 8084 'Locale::Codes::Script_Codes'=> '3.25', 8085 'Locale::Codes::Script_Retired'=> '3.25', 8086 'Locale::Country' => '3.25', 8087 'Locale::Currency' => '3.25', 8088 'Locale::Language' => '3.25', 8089 'Locale::Script' => '3.25', 8090 'Math::BigFloat' => '1.998', 8091 'Math::BigFloat::Trace' => '0.32', 8092 'Math::BigInt' => '1.9991', 8093 'Math::BigInt::CalcEmu' => '1.998', 8094 'Math::BigInt::Trace' => '0.32', 8095 'Math::BigRat' => '0.2604', 8096 'Module::CoreList' => '2.84', 8097 'Module::CoreList::TieHashDelta'=> '2.84', 8098 'Module::Pluggable' => '4.7', 8099 'Net::Ping' => '2.41', 8100 'Perl::OSType' => '1.003', 8101 'Pod::Simple' => '3.26', 8102 'Pod::Simple::BlackBox' => '3.26', 8103 'Pod::Simple::Checker' => '3.26', 8104 'Pod::Simple::Debug' => '3.26', 8105 'Pod::Simple::DumpAsText'=> '3.26', 8106 'Pod::Simple::DumpAsXML'=> '3.26', 8107 'Pod::Simple::HTML' => '3.26', 8108 'Pod::Simple::HTMLBatch'=> '3.26', 8109 'Pod::Simple::LinkSection'=> '3.26', 8110 'Pod::Simple::Methody' => '3.26', 8111 'Pod::Simple::Progress' => '3.26', 8112 'Pod::Simple::PullParser'=> '3.26', 8113 'Pod::Simple::PullParserEndToken'=> '3.26', 8114 'Pod::Simple::PullParserStartToken'=> '3.26', 8115 'Pod::Simple::PullParserTextToken'=> '3.26', 8116 'Pod::Simple::PullParserToken'=> '3.26', 8117 'Pod::Simple::RTF' => '3.26', 8118 'Pod::Simple::Search' => '3.26', 8119 'Pod::Simple::SimpleTree'=> '3.26', 8120 'Pod::Simple::Text' => '3.26', 8121 'Pod::Simple::TextContent'=> '3.26', 8122 'Pod::Simple::TiedOutFH'=> '3.26', 8123 'Pod::Simple::Transcode'=> '3.26', 8124 'Pod::Simple::TranscodeDumb'=> '3.26', 8125 'Pod::Simple::TranscodeSmart'=> '3.26', 8126 'Pod::Simple::XHTML' => '3.26', 8127 'Pod::Simple::XMLOutStream'=> '3.26', 8128 'Safe' => '2.35', 8129 'Term::ReadLine' => '1.12', 8130 'Text::ParseWords' => '3.28', 8131 'Tie::File' => '0.99', 8132 'Unicode::UCD' => '0.51', 8133 'Win32' => '0.47', 8134 'bigint' => '0.33', 8135 'bignum' => '0.33', 8136 'bigrat' => '0.33', 8137 'constant' => '1.27', 8138 'perlfaq' => '5.0150042', 8139 'version' => '0.9902', 8140 }, 8141 removed => { 8142 } 8143 }, 8144 5.017011 => { 8145 delta_from => 5.017010, 8146 changed => { 8147 'App::Cpan' => '1.61', 8148 'B::Deparse' => '1.20', 8149 'Config' => '5.017009', 8150 'Exporter' => '5.68', 8151 'Exporter::Heavy' => '5.68', 8152 'ExtUtils::CBuilder' => '0.280210', 8153 'ExtUtils::Command::MM' => '6.66', 8154 'ExtUtils::Liblist' => '6.66', 8155 'ExtUtils::Liblist::Kid'=> '6.66', 8156 'ExtUtils::MM' => '6.66', 8157 'ExtUtils::MM_AIX' => '6.66', 8158 'ExtUtils::MM_Any' => '6.66', 8159 'ExtUtils::MM_BeOS' => '6.66', 8160 'ExtUtils::MM_Cygwin' => '6.66', 8161 'ExtUtils::MM_DOS' => '6.66', 8162 'ExtUtils::MM_Darwin' => '6.66', 8163 'ExtUtils::MM_MacOS' => '6.66', 8164 'ExtUtils::MM_NW5' => '6.66', 8165 'ExtUtils::MM_OS2' => '6.66', 8166 'ExtUtils::MM_QNX' => '6.66', 8167 'ExtUtils::MM_UWIN' => '6.66', 8168 'ExtUtils::MM_Unix' => '6.66', 8169 'ExtUtils::MM_VMS' => '6.66', 8170 'ExtUtils::MM_VOS' => '6.66', 8171 'ExtUtils::MM_Win32' => '6.66', 8172 'ExtUtils::MM_Win95' => '6.66', 8173 'ExtUtils::MY' => '6.66', 8174 'ExtUtils::MakeMaker' => '6.66', 8175 'ExtUtils::MakeMaker::Config'=> '6.66', 8176 'ExtUtils::Mkbootstrap' => '6.66', 8177 'ExtUtils::Mksymlists' => '6.66', 8178 'ExtUtils::testlib' => '6.66', 8179 'File::Glob' => '1.20', 8180 'IO' => '1.28', 8181 'Module::CoreList' => '2.87', 8182 'Module::CoreList::TieHashDelta'=> '2.87', 8183 'Storable' => '2.41', 8184 'bigint' => '0.34', 8185 'mro' => '1.11', 8186 'overload' => '1.22', 8187 'warnings' => '1.18', 8188 }, 8189 removed => { 8190 } 8191 }, 8192 5.018000 => { 8193 delta_from => 5.017011, 8194 changed => { 8195 'Carp' => '1.29', 8196 'Carp::Heavy' => '1.29', 8197 'Config' => '5.018000', 8198 'Hash::Util' => '0.16', 8199 'IO::Handle' => '1.34', 8200 'IO::Socket' => '1.36', 8201 'Module::CoreList' => '2.89', 8202 'Module::CoreList::TieHashDelta'=> '2.89', 8203 'Pod::Simple' => '3.28', 8204 'Pod::Simple::BlackBox' => '3.28', 8205 'Pod::Simple::Checker' => '3.28', 8206 'Pod::Simple::Debug' => '3.28', 8207 'Pod::Simple::DumpAsText'=> '3.28', 8208 'Pod::Simple::DumpAsXML'=> '3.28', 8209 'Pod::Simple::HTML' => '3.28', 8210 'Pod::Simple::HTMLBatch'=> '3.28', 8211 'Pod::Simple::LinkSection'=> '3.28', 8212 'Pod::Simple::Methody' => '3.28', 8213 'Pod::Simple::Progress' => '3.28', 8214 'Pod::Simple::PullParser'=> '3.28', 8215 'Pod::Simple::PullParserEndToken'=> '3.28', 8216 'Pod::Simple::PullParserStartToken'=> '3.28', 8217 'Pod::Simple::PullParserTextToken'=> '3.28', 8218 'Pod::Simple::PullParserToken'=> '3.28', 8219 'Pod::Simple::RTF' => '3.28', 8220 'Pod::Simple::Search' => '3.28', 8221 'Pod::Simple::SimpleTree'=> '3.28', 8222 'Pod::Simple::Text' => '3.28', 8223 'Pod::Simple::TextContent'=> '3.28', 8224 'Pod::Simple::TiedOutFH'=> '3.28', 8225 'Pod::Simple::Transcode'=> '3.28', 8226 'Pod::Simple::TranscodeDumb'=> '3.28', 8227 'Pod::Simple::TranscodeSmart'=> '3.28', 8228 'Pod::Simple::XHTML' => '3.28', 8229 'Pod::Simple::XMLOutStream'=> '3.28', 8230 }, 8231 removed => { 8232 } 8233 }, 8234 5.018001 => { 8235 delta_from => 5.018000, 8236 changed => { 8237 'B' => '1.42_01', 8238 'Config' => '5.018001', 8239 'Digest::SHA' => '5.84_01', 8240 'Module::CoreList' => '2.96', 8241 'Module::CoreList::TieHashDelta'=> '2.96', 8242 'Module::CoreList::Utils'=> '2.96', 8243 }, 8244 removed => { 8245 'VMS::Filespec' => 1, 8246 } 8247 }, 8248 5.018002 => { 8249 delta_from => 5.018001, 8250 changed => { 8251 'B' => '1.42_02', 8252 'B::Concise' => '0.95_01', 8253 'Config' => '5.018002', 8254 'File::Glob' => '1.20_01', 8255 'Module::CoreList' => '3.03', 8256 'Module::CoreList::TieHashDelta'=> '3.03', 8257 'Module::CoreList::Utils'=> '3.03', 8258 }, 8259 }, 8260 5.018003 => { 8261 delta_from => 5.018002, 8262 changed => { 8263 'Config' => '5.018003', 8264 'Digest::SHA' => '5.84_02', 8265 'Module::CoreList' => '3.12', 8266 'Module::CoreList::TieHashDelta'=> '3.12', 8267 'Module::CoreList::Utils'=> '3.12', 8268 }, 8269 }, 8270 5.018004 => { 8271 delta_from => 5.018003, 8272 changed => { 8273 'Config' => '5.018004', 8274 'Module::CoreList' => '3.13', 8275 'Module::CoreList::TieHashDelta'=> '3.13', 8276 'Module::CoreList::Utils'=> '3.13', 8277 }, 8278 }, 8279 5.019000 => { 8280 delta_from => 5.018000, 8281 changed => { 8282 'Config' => '5.019000', 8283 'Getopt::Std' => '1.08', 8284 'Module::CoreList' => '2.91', 8285 'Module::CoreList::TieHashDelta'=> '2.91', 8286 'Storable' => '2.42', 8287 'feature' => '1.33', 8288 'utf8' => '1.11', 8289 }, 8290 removed => { 8291 'Archive::Extract' => 1, 8292 'B::Lint' => 1, 8293 'B::Lint::Debug' => 1, 8294 'CPANPLUS' => 1, 8295 'CPANPLUS::Backend' => 1, 8296 'CPANPLUS::Backend::RV' => 1, 8297 'CPANPLUS::Config' => 1, 8298 'CPANPLUS::Config::HomeEnv'=> 1, 8299 'CPANPLUS::Configure' => 1, 8300 'CPANPLUS::Configure::Setup'=> 1, 8301 'CPANPLUS::Dist' => 1, 8302 'CPANPLUS::Dist::Autobundle'=> 1, 8303 'CPANPLUS::Dist::Base' => 1, 8304 'CPANPLUS::Dist::Build' => 1, 8305 'CPANPLUS::Dist::Build::Constants'=> 1, 8306 'CPANPLUS::Dist::MM' => 1, 8307 'CPANPLUS::Dist::Sample'=> 1, 8308 'CPANPLUS::Error' => 1, 8309 'CPANPLUS::Internals' => 1, 8310 'CPANPLUS::Internals::Constants'=> 1, 8311 'CPANPLUS::Internals::Constants::Report'=> 1, 8312 'CPANPLUS::Internals::Extract'=> 1, 8313 'CPANPLUS::Internals::Fetch'=> 1, 8314 'CPANPLUS::Internals::Report'=> 1, 8315 'CPANPLUS::Internals::Search'=> 1, 8316 'CPANPLUS::Internals::Source'=> 1, 8317 'CPANPLUS::Internals::Source::Memory'=> 1, 8318 'CPANPLUS::Internals::Source::SQLite'=> 1, 8319 'CPANPLUS::Internals::Source::SQLite::Tie'=> 1, 8320 'CPANPLUS::Internals::Utils'=> 1, 8321 'CPANPLUS::Internals::Utils::Autoflush'=> 1, 8322 'CPANPLUS::Module' => 1, 8323 'CPANPLUS::Module::Author'=> 1, 8324 'CPANPLUS::Module::Author::Fake'=> 1, 8325 'CPANPLUS::Module::Checksums'=> 1, 8326 'CPANPLUS::Module::Fake'=> 1, 8327 'CPANPLUS::Module::Signature'=> 1, 8328 'CPANPLUS::Selfupdate' => 1, 8329 'CPANPLUS::Shell' => 1, 8330 'CPANPLUS::Shell::Classic'=> 1, 8331 'CPANPLUS::Shell::Default'=> 1, 8332 'CPANPLUS::Shell::Default::Plugins::CustomSource'=> 1, 8333 'CPANPLUS::Shell::Default::Plugins::Remote'=> 1, 8334 'CPANPLUS::Shell::Default::Plugins::Source'=> 1, 8335 'Devel::InnerPackage' => 1, 8336 'File::CheckTree' => 1, 8337 'Log::Message' => 1, 8338 'Log::Message::Config' => 1, 8339 'Log::Message::Handlers'=> 1, 8340 'Log::Message::Item' => 1, 8341 'Log::Message::Simple' => 1, 8342 'Module::Pluggable' => 1, 8343 'Module::Pluggable::Object'=> 1, 8344 'Object::Accessor' => 1, 8345 'Pod::LaTeX' => 1, 8346 'Term::UI' => 1, 8347 'Term::UI::History' => 1, 8348 'Text::Soundex' => 1, 8349 } 8350 }, 8351 5.019001 => { 8352 delta_from => 5.019000, 8353 changed => { 8354 'App::Prove' => '3.28', 8355 'App::Prove::State' => '3.28', 8356 'App::Prove::State::Result'=> '3.28', 8357 'App::Prove::State::Result::Test'=> '3.28', 8358 'Archive::Tar' => '1.92', 8359 'Archive::Tar::Constant'=> '1.92', 8360 'Archive::Tar::File' => '1.92', 8361 'Attribute::Handlers' => '0.95', 8362 'B' => '1.43', 8363 'B::Concise' => '0.96', 8364 'B::Deparse' => '1.21', 8365 'B::Showlex' => '1.04', 8366 'Benchmark' => '1.16', 8367 'CPAN::Meta' => '2.131560', 8368 'CPAN::Meta::Converter' => '2.131560', 8369 'CPAN::Meta::Feature' => '2.131560', 8370 'CPAN::Meta::History' => '2.131560', 8371 'CPAN::Meta::Prereqs' => '2.131560', 8372 'CPAN::Meta::Spec' => '2.131560', 8373 'CPAN::Meta::Validator' => '2.131560', 8374 'Carp' => '1.30', 8375 'Carp::Heavy' => '1.30', 8376 'Compress::Raw::Bzip2' => '2.061', 8377 'Compress::Raw::Zlib' => '2.061', 8378 'Compress::Zlib' => '2.061', 8379 'Config' => '5.019001', 8380 'Config::Perl::V' => '0.18', 8381 'Cwd' => '3.41', 8382 'DB' => '1.06', 8383 'DB_File' => '1.828', 8384 'Data::Dumper' => '2.146', 8385 'Encode' => '2.51', 8386 'Encode::CN::HZ' => '2.06', 8387 'Encode::GSM0338' => '2.03', 8388 'Encode::Unicode::UTF7' => '2.07', 8389 'ExtUtils::CBuilder::Base'=> '0.280210', 8390 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280210', 8391 'ExtUtils::Command::MM' => '6.68', 8392 'ExtUtils::Install' => '1.60', 8393 'ExtUtils::Liblist' => '6.68', 8394 'ExtUtils::Liblist::Kid'=> '6.68', 8395 'ExtUtils::MM' => '6.68', 8396 'ExtUtils::MM_AIX' => '6.68', 8397 'ExtUtils::MM_Any' => '6.68', 8398 'ExtUtils::MM_BeOS' => '6.68', 8399 'ExtUtils::MM_Cygwin' => '6.68', 8400 'ExtUtils::MM_DOS' => '6.68', 8401 'ExtUtils::MM_Darwin' => '6.68', 8402 'ExtUtils::MM_MacOS' => '6.68', 8403 'ExtUtils::MM_NW5' => '6.68', 8404 'ExtUtils::MM_OS2' => '6.68', 8405 'ExtUtils::MM_QNX' => '6.68', 8406 'ExtUtils::MM_UWIN' => '6.68', 8407 'ExtUtils::MM_Unix' => '6.68', 8408 'ExtUtils::MM_VMS' => '6.68', 8409 'ExtUtils::MM_VOS' => '6.68', 8410 'ExtUtils::MM_Win32' => '6.68', 8411 'ExtUtils::MM_Win95' => '6.68', 8412 'ExtUtils::MY' => '6.68', 8413 'ExtUtils::MakeMaker' => '6.68', 8414 'ExtUtils::MakeMaker::Config'=> '6.68', 8415 'ExtUtils::Mkbootstrap' => '6.68', 8416 'ExtUtils::Mksymlists' => '6.68', 8417 'ExtUtils::ParseXS' => '3.19', 8418 'ExtUtils::testlib' => '6.68', 8419 'Fatal' => '2.19', 8420 'File::Copy' => '2.27', 8421 'File::DosGlob' => '1.11', 8422 'File::Fetch' => '0.42', 8423 'File::Find' => '1.24', 8424 'File::Spec' => '3.41', 8425 'File::Spec::Cygwin' => '3.41', 8426 'File::Spec::Epoc' => '3.41', 8427 'File::Spec::Mac' => '3.41', 8428 'File::Spec::OS2' => '3.41', 8429 'File::Spec::Unix' => '3.41', 8430 'File::Spec::VMS' => '3.41', 8431 'File::Spec::Win32' => '3.41', 8432 'File::Temp' => '0.2301', 8433 'Filter::Simple' => '0.90', 8434 'Filter::Util::Call' => '1.49', 8435 'Getopt::Long' => '2.4', 8436 'HTTP::Tiny' => '0.031', 8437 'Hash::Util::FieldHash' => '1.11', 8438 'IO::Compress::Adapter::Bzip2'=> '2.061', 8439 'IO::Compress::Adapter::Deflate'=> '2.061', 8440 'IO::Compress::Adapter::Identity'=> '2.061', 8441 'IO::Compress::Base' => '2.061', 8442 'IO::Compress::Base::Common'=> '2.061', 8443 'IO::Compress::Bzip2' => '2.061', 8444 'IO::Compress::Deflate' => '2.061', 8445 'IO::Compress::Gzip' => '2.061', 8446 'IO::Compress::Gzip::Constants'=> '2.061', 8447 'IO::Compress::RawDeflate'=> '2.061', 8448 'IO::Compress::Zip' => '2.061', 8449 'IO::Compress::Zip::Constants'=> '2.061', 8450 'IO::Compress::Zlib::Constants'=> '2.061', 8451 'IO::Compress::Zlib::Extra'=> '2.061', 8452 'IO::Handle' => '1.35', 8453 'IO::Uncompress::Adapter::Bunzip2'=> '2.061', 8454 'IO::Uncompress::Adapter::Identity'=> '2.061', 8455 'IO::Uncompress::Adapter::Inflate'=> '2.061', 8456 'IO::Uncompress::AnyInflate'=> '2.061', 8457 'IO::Uncompress::AnyUncompress'=> '2.061', 8458 'IO::Uncompress::Base' => '2.061', 8459 'IO::Uncompress::Bunzip2'=> '2.061', 8460 'IO::Uncompress::Gunzip'=> '2.061', 8461 'IO::Uncompress::Inflate'=> '2.061', 8462 'IO::Uncompress::RawInflate'=> '2.061', 8463 'IO::Uncompress::Unzip' => '2.061', 8464 'IPC::Open3' => '1.14', 8465 'Locale::Codes' => '3.26', 8466 'Locale::Codes::Constants'=> '3.26', 8467 'Locale::Codes::Country'=> '3.26', 8468 'Locale::Codes::Country_Codes'=> '3.26', 8469 'Locale::Codes::Country_Retired'=> '3.26', 8470 'Locale::Codes::Currency'=> '3.26', 8471 'Locale::Codes::Currency_Codes'=> '3.26', 8472 'Locale::Codes::Currency_Retired'=> '3.26', 8473 'Locale::Codes::LangExt'=> '3.26', 8474 'Locale::Codes::LangExt_Codes'=> '3.26', 8475 'Locale::Codes::LangExt_Retired'=> '3.26', 8476 'Locale::Codes::LangFam'=> '3.26', 8477 'Locale::Codes::LangFam_Codes'=> '3.26', 8478 'Locale::Codes::LangFam_Retired'=> '3.26', 8479 'Locale::Codes::LangVar'=> '3.26', 8480 'Locale::Codes::LangVar_Codes'=> '3.26', 8481 'Locale::Codes::LangVar_Retired'=> '3.26', 8482 'Locale::Codes::Language'=> '3.26', 8483 'Locale::Codes::Language_Codes'=> '3.26', 8484 'Locale::Codes::Language_Retired'=> '3.26', 8485 'Locale::Codes::Script' => '3.26', 8486 'Locale::Codes::Script_Codes'=> '3.26', 8487 'Locale::Codes::Script_Retired'=> '3.26', 8488 'Locale::Country' => '3.26', 8489 'Locale::Currency' => '3.26', 8490 'Locale::Language' => '3.26', 8491 'Locale::Maketext' => '1.24', 8492 'Locale::Script' => '3.26', 8493 'Math::BigFloat' => '1.999', 8494 'Math::BigInt' => '1.9992', 8495 'Math::BigInt::Calc' => '1.998', 8496 'Math::BigInt::CalcEmu' => '1.9991', 8497 'Math::BigRat' => '0.2606', 8498 'Module::Build' => '0.4005', 8499 'Module::Build::Base' => '0.4005', 8500 'Module::Build::Compat' => '0.4005', 8501 'Module::Build::Config' => '0.4005', 8502 'Module::Build::Cookbook'=> '0.4005', 8503 'Module::Build::Dumper' => '0.4005', 8504 'Module::Build::ModuleInfo'=> '0.4005', 8505 'Module::Build::Notes' => '0.4005', 8506 'Module::Build::PPMMaker'=> '0.4005', 8507 'Module::Build::Platform::Amiga'=> '0.4005', 8508 'Module::Build::Platform::Default'=> '0.4005', 8509 'Module::Build::Platform::EBCDIC'=> '0.4005', 8510 'Module::Build::Platform::MPEiX'=> '0.4005', 8511 'Module::Build::Platform::MacOS'=> '0.4005', 8512 'Module::Build::Platform::RiscOS'=> '0.4005', 8513 'Module::Build::Platform::Unix'=> '0.4005', 8514 'Module::Build::Platform::VMS'=> '0.4005', 8515 'Module::Build::Platform::VOS'=> '0.4005', 8516 'Module::Build::Platform::Windows'=> '0.4005', 8517 'Module::Build::Platform::aix'=> '0.4005', 8518 'Module::Build::Platform::cygwin'=> '0.4005', 8519 'Module::Build::Platform::darwin'=> '0.4005', 8520 'Module::Build::Platform::os2'=> '0.4005', 8521 'Module::Build::PodParser'=> '0.4005', 8522 'Module::CoreList' => '2.92', 8523 'Module::CoreList::TieHashDelta'=> '2.92', 8524 'Module::CoreList::Utils'=> '2.92', 8525 'Module::Metadata' => '1.000014', 8526 'Net::Ping' => '2.42', 8527 'OS2::Process' => '1.09', 8528 'POSIX' => '1.33', 8529 'Pod::Find' => '1.61', 8530 'Pod::Html' => '1.19', 8531 'Pod::InputObjects' => '1.61', 8532 'Pod::ParseUtils' => '1.61', 8533 'Pod::Parser' => '1.61', 8534 'Pod::Perldoc' => '3.20', 8535 'Pod::Perldoc::BaseTo' => '3.20', 8536 'Pod::Perldoc::GetOptsOO'=> '3.20', 8537 'Pod::Perldoc::ToANSI' => '3.20', 8538 'Pod::Perldoc::ToChecker'=> '3.20', 8539 'Pod::Perldoc::ToMan' => '3.20', 8540 'Pod::Perldoc::ToNroff' => '3.20', 8541 'Pod::Perldoc::ToPod' => '3.20', 8542 'Pod::Perldoc::ToRtf' => '3.20', 8543 'Pod::Perldoc::ToTerm' => '3.20', 8544 'Pod::Perldoc::ToText' => '3.20', 8545 'Pod::Perldoc::ToTk' => '3.20', 8546 'Pod::Perldoc::ToXml' => '3.20', 8547 'Pod::Select' => '1.61', 8548 'Pod::Usage' => '1.63', 8549 'Safe' => '2.36', 8550 'Storable' => '2.43', 8551 'Sys::Hostname' => '1.18', 8552 'Sys::Syslog' => '0.33', 8553 'TAP::Base' => '3.28', 8554 'TAP::Formatter::Base' => '3.28', 8555 'TAP::Formatter::Color' => '3.28', 8556 'TAP::Formatter::Console'=> '3.28', 8557 'TAP::Formatter::Console::ParallelSession'=> '3.28', 8558 'TAP::Formatter::Console::Session'=> '3.28', 8559 'TAP::Formatter::File' => '3.28', 8560 'TAP::Formatter::File::Session'=> '3.28', 8561 'TAP::Formatter::Session'=> '3.28', 8562 'TAP::Harness' => '3.28', 8563 'TAP::Object' => '3.28', 8564 'TAP::Parser' => '3.28', 8565 'TAP::Parser::Aggregator'=> '3.28', 8566 'TAP::Parser::Grammar' => '3.28', 8567 'TAP::Parser::Iterator' => '3.28', 8568 'TAP::Parser::Iterator::Array'=> '3.28', 8569 'TAP::Parser::Iterator::Process'=> '3.28', 8570 'TAP::Parser::Iterator::Stream'=> '3.28', 8571 'TAP::Parser::IteratorFactory'=> '3.28', 8572 'TAP::Parser::Multiplexer'=> '3.28', 8573 'TAP::Parser::Result' => '3.28', 8574 'TAP::Parser::Result::Bailout'=> '3.28', 8575 'TAP::Parser::Result::Comment'=> '3.28', 8576 'TAP::Parser::Result::Plan'=> '3.28', 8577 'TAP::Parser::Result::Pragma'=> '3.28', 8578 'TAP::Parser::Result::Test'=> '3.28', 8579 'TAP::Parser::Result::Unknown'=> '3.28', 8580 'TAP::Parser::Result::Version'=> '3.28', 8581 'TAP::Parser::Result::YAML'=> '3.28', 8582 'TAP::Parser::ResultFactory'=> '3.28', 8583 'TAP::Parser::Scheduler'=> '3.28', 8584 'TAP::Parser::Scheduler::Job'=> '3.28', 8585 'TAP::Parser::Scheduler::Spinner'=> '3.28', 8586 'TAP::Parser::Source' => '3.28', 8587 'TAP::Parser::SourceHandler'=> '3.28', 8588 'TAP::Parser::SourceHandler::Executable'=> '3.28', 8589 'TAP::Parser::SourceHandler::File'=> '3.28', 8590 'TAP::Parser::SourceHandler::Handle'=> '3.28', 8591 'TAP::Parser::SourceHandler::Perl'=> '3.28', 8592 'TAP::Parser::SourceHandler::RawTAP'=> '3.28', 8593 'TAP::Parser::Utils' => '3.28', 8594 'TAP::Parser::YAMLish::Reader'=> '3.28', 8595 'TAP::Parser::YAMLish::Writer'=> '3.28', 8596 'Term::ReadLine' => '1.13', 8597 'Test::Harness' => '3.28', 8598 'Text::Tabs' => '2013.0523', 8599 'Text::Wrap' => '2013.0523', 8600 'Thread' => '3.04', 8601 'Tie::File' => '1.00', 8602 'Time::Piece' => '1.2002', 8603 'Unicode::Collate' => '0.98', 8604 'Unicode::UCD' => '0.53', 8605 'XS::APItest' => '0.53', 8606 '_charnames' => '1.37', 8607 'autodie' => '2.19', 8608 'autodie::exception' => '2.19', 8609 'autodie::exception::system'=> '2.19', 8610 'autodie::hints' => '2.19', 8611 'autodie::skip' => '2.19', 8612 'bigint' => '0.35', 8613 'charnames' => '1.38', 8614 'encoding' => '2.12', 8615 'inc::latest' => '0.4005', 8616 'mro' => '1.12', 8617 'perlfaq' => '5.0150043', 8618 're' => '0.25', 8619 'threads' => '1.87', 8620 'threads::shared' => '1.44', 8621 'utf8' => '1.12', 8622 }, 8623 removed => { 8624 } 8625 }, 8626 5.019002 => { 8627 delta_from => 5.019001, 8628 changed => { 8629 'B' => '1.44', 8630 'B::Concise' => '0.98', 8631 'B::Deparse' => '1.22', 8632 'Benchmark' => '1.17', 8633 'Class::Struct' => '0.65', 8634 'Config' => '5.019002', 8635 'DB' => '1.07', 8636 'DBM_Filter' => '0.06', 8637 'DBM_Filter::compress' => '0.03', 8638 'DBM_Filter::encode' => '0.03', 8639 'DBM_Filter::int32' => '0.03', 8640 'DBM_Filter::null' => '0.03', 8641 'DBM_Filter::utf8' => '0.03', 8642 'DB_File' => '1.829', 8643 'Data::Dumper' => '2.147', 8644 'Devel::Peek' => '1.12', 8645 'Digest::MD5' => '2.53', 8646 'Digest::SHA' => '5.85', 8647 'English' => '1.07', 8648 'Errno' => '1.19', 8649 'ExtUtils::Embed' => '1.31', 8650 'ExtUtils::Miniperl' => '1', 8651 'ExtUtils::ParseXS' => '3.21', 8652 'ExtUtils::ParseXS::Constants'=> '3.21', 8653 'ExtUtils::ParseXS::CountLines'=> '3.21', 8654 'ExtUtils::ParseXS::Eval'=> '3.19', 8655 'ExtUtils::ParseXS::Utilities'=> '3.21', 8656 'ExtUtils::Typemaps' => '3.21', 8657 'ExtUtils::Typemaps::Cmd'=> '3.21', 8658 'ExtUtils::Typemaps::InputMap'=> '3.21', 8659 'ExtUtils::Typemaps::OutputMap'=> '3.21', 8660 'ExtUtils::Typemaps::Type'=> '3.21', 8661 'ExtUtils::XSSymSet' => '1.3', 8662 'Fatal' => '2.20', 8663 'File::Basename' => '2.85', 8664 'File::Spec::VMS' => '3.43', 8665 'File::Spec::Win32' => '3.42', 8666 'Getopt::Long' => '2.41', 8667 'Getopt::Std' => '1.09', 8668 'HTTP::Tiny' => '0.034', 8669 'Hash::Util::FieldHash' => '1.12', 8670 'I18N::Langinfo' => '0.11', 8671 'IO::Socket::INET' => '1.34', 8672 'IO::Socket::UNIX' => '1.25', 8673 'IPC::Cmd' => '0.82', 8674 'MIME::Base64' => '3.14', 8675 'Module::CoreList' => '2.94', 8676 'Module::CoreList::TieHashDelta'=> '2.94', 8677 'Module::CoreList::Utils'=> '2.94', 8678 'POSIX' => '1.34', 8679 'Params::Check' => '0.38', 8680 'Parse::CPAN::Meta' => '1.4405', 8681 'Pod::Functions' => '1.07', 8682 'Pod::Html' => '1.2', 8683 'Safe' => '2.37', 8684 'Socket' => '2.010', 8685 'Storable' => '2.45', 8686 'Text::ParseWords' => '3.29', 8687 'Tie::Array' => '1.06', 8688 'Tie::Hash' => '1.05', 8689 'Tie::Scalar' => '1.03', 8690 'Time::Piece' => '1.21', 8691 'Time::Seconds' => '1.21', 8692 'XS::APItest' => '0.54', 8693 'autodie' => '2.20', 8694 'autodie::exception' => '2.20', 8695 'autodie::exception::system'=> '2.20', 8696 'autodie::hints' => '2.20', 8697 'autodie::skip' => '2.20', 8698 'base' => '2.19', 8699 'deprecate' => '0.03', 8700 'if' => '0.0603', 8701 'integer' => '1.01', 8702 'strict' => '1.08', 8703 'subs' => '1.02', 8704 'vmsish' => '1.04', 8705 }, 8706 removed => { 8707 } 8708 }, 8709 5.019003 => { 8710 delta_from => 5.019002, 8711 changed => { 8712 'B' => '1.45', 8713 'CPAN::Meta' => '2.132140', 8714 'CPAN::Meta::Converter' => '2.132140', 8715 'CPAN::Meta::Feature' => '2.132140', 8716 'CPAN::Meta::History' => '2.132140', 8717 'CPAN::Meta::Prereqs' => '2.132140', 8718 'CPAN::Meta::Spec' => '2.132140', 8719 'CPAN::Meta::Validator' => '2.132140', 8720 'Carp' => '1.31', 8721 'Carp::Heavy' => '1.31', 8722 'Compress::Raw::Bzip2' => '2.062', 8723 'Compress::Raw::Zlib' => '2.062', 8724 'Compress::Zlib' => '2.062', 8725 'Config' => '5.019003', 8726 'Config::Perl::V' => '0.19', 8727 'Cwd' => '3.44', 8728 'Data::Dumper' => '2.148', 8729 'Devel::PPPort' => '3.21', 8730 'Devel::Peek' => '1.13', 8731 'DynaLoader' => '1.19', 8732 'Encode' => '2.52', 8733 'Encode::Alias' => '2.17', 8734 'Encode::Encoding' => '2.06', 8735 'Encode::GSM0338' => '2.04', 8736 'Encode::MIME::Header' => '2.14', 8737 'Encode::Unicode' => '2.08', 8738 'English' => '1.08', 8739 'Exporter' => '5.69', 8740 'Exporter::Heavy' => '5.69', 8741 'ExtUtils::Command::MM' => '6.72', 8742 'ExtUtils::Liblist' => '6.72', 8743 'ExtUtils::Liblist::Kid'=> '6.72', 8744 'ExtUtils::MM' => '6.72', 8745 'ExtUtils::MM_AIX' => '6.72', 8746 'ExtUtils::MM_Any' => '6.72', 8747 'ExtUtils::MM_BeOS' => '6.72', 8748 'ExtUtils::MM_Cygwin' => '6.72', 8749 'ExtUtils::MM_DOS' => '6.72', 8750 'ExtUtils::MM_Darwin' => '6.72', 8751 'ExtUtils::MM_MacOS' => '6.72', 8752 'ExtUtils::MM_NW5' => '6.72', 8753 'ExtUtils::MM_OS2' => '6.72', 8754 'ExtUtils::MM_QNX' => '6.72', 8755 'ExtUtils::MM_UWIN' => '6.72', 8756 'ExtUtils::MM_Unix' => '6.72', 8757 'ExtUtils::MM_VMS' => '6.72', 8758 'ExtUtils::MM_VOS' => '6.72', 8759 'ExtUtils::MM_Win32' => '6.72', 8760 'ExtUtils::MM_Win95' => '6.72', 8761 'ExtUtils::MY' => '6.72', 8762 'ExtUtils::MakeMaker' => '6.72', 8763 'ExtUtils::MakeMaker::Config'=> '6.72', 8764 'ExtUtils::Mkbootstrap' => '6.72', 8765 'ExtUtils::Mksymlists' => '6.72', 8766 'ExtUtils::ParseXS::Eval'=> '3.21', 8767 'ExtUtils::testlib' => '6.72', 8768 'File::Spec' => '3.44', 8769 'File::Spec::Cygwin' => '3.44', 8770 'File::Spec::Epoc' => '3.44', 8771 'File::Spec::Functions' => '3.44', 8772 'File::Spec::Mac' => '3.44', 8773 'File::Spec::OS2' => '3.44', 8774 'File::Spec::Unix' => '3.44', 8775 'File::Spec::VMS' => '3.44', 8776 'File::Spec::Win32' => '3.44', 8777 'Getopt::Std' => '1.10', 8778 'IO::Compress::Adapter::Bzip2'=> '2.062', 8779 'IO::Compress::Adapter::Deflate'=> '2.062', 8780 'IO::Compress::Adapter::Identity'=> '2.062', 8781 'IO::Compress::Base' => '2.062', 8782 'IO::Compress::Base::Common'=> '2.062', 8783 'IO::Compress::Bzip2' => '2.062', 8784 'IO::Compress::Deflate' => '2.062', 8785 'IO::Compress::Gzip' => '2.062', 8786 'IO::Compress::Gzip::Constants'=> '2.062', 8787 'IO::Compress::RawDeflate'=> '2.062', 8788 'IO::Compress::Zip' => '2.062', 8789 'IO::Compress::Zip::Constants'=> '2.062', 8790 'IO::Compress::Zlib::Constants'=> '2.062', 8791 'IO::Compress::Zlib::Extra'=> '2.062', 8792 'IO::Uncompress::Adapter::Bunzip2'=> '2.062', 8793 'IO::Uncompress::Adapter::Identity'=> '2.062', 8794 'IO::Uncompress::Adapter::Inflate'=> '2.062', 8795 'IO::Uncompress::AnyInflate'=> '2.062', 8796 'IO::Uncompress::AnyUncompress'=> '2.062', 8797 'IO::Uncompress::Base' => '2.062', 8798 'IO::Uncompress::Bunzip2'=> '2.062', 8799 'IO::Uncompress::Gunzip'=> '2.062', 8800 'IO::Uncompress::Inflate'=> '2.062', 8801 'IO::Uncompress::RawInflate'=> '2.062', 8802 'IO::Uncompress::Unzip' => '2.062', 8803 'IPC::Cmd' => '0.84', 8804 'IPC::Msg' => '2.04', 8805 'IPC::Open3' => '1.15', 8806 'IPC::Semaphore' => '2.04', 8807 'IPC::SharedMem' => '2.04', 8808 'IPC::SysV' => '2.04', 8809 'List::Util' => '1.31', 8810 'List::Util::XS' => '1.31', 8811 'Math::BigFloat::Trace' => '0.36', 8812 'Math::BigInt::Trace' => '0.36', 8813 'Module::Build' => '0.4007', 8814 'Module::Build::Base' => '0.4007', 8815 'Module::Build::Compat' => '0.4007', 8816 'Module::Build::Config' => '0.4007', 8817 'Module::Build::Cookbook'=> '0.4007', 8818 'Module::Build::Dumper' => '0.4007', 8819 'Module::Build::ModuleInfo'=> '0.4007', 8820 'Module::Build::Notes' => '0.4007', 8821 'Module::Build::PPMMaker'=> '0.4007', 8822 'Module::Build::Platform::Default'=> '0.4007', 8823 'Module::Build::Platform::MacOS'=> '0.4007', 8824 'Module::Build::Platform::Unix'=> '0.4007', 8825 'Module::Build::Platform::VMS'=> '0.4007', 8826 'Module::Build::Platform::VOS'=> '0.4007', 8827 'Module::Build::Platform::Windows'=> '0.4007', 8828 'Module::Build::Platform::aix'=> '0.4007', 8829 'Module::Build::Platform::cygwin'=> '0.4007', 8830 'Module::Build::Platform::darwin'=> '0.4007', 8831 'Module::Build::Platform::os2'=> '0.4007', 8832 'Module::Build::PodParser'=> '0.4007', 8833 'Module::CoreList' => '2.97', 8834 'Module::CoreList::TieHashDelta'=> '2.97', 8835 'Module::CoreList::Utils'=> '2.97', 8836 'Net::Cmd' => '2.30', 8837 'Net::Config' => '1.12', 8838 'Net::Domain' => '2.22', 8839 'Net::FTP' => '2.78', 8840 'Net::FTP::dataconn' => '0.12', 8841 'Net::NNTP' => '2.25', 8842 'Net::Netrc' => '2.14', 8843 'Net::POP3' => '2.30', 8844 'Net::SMTP' => '2.32', 8845 'PerlIO' => '1.08', 8846 'Pod::Functions' => '1.08', 8847 'Scalar::Util' => '1.31', 8848 'Socket' => '2.011', 8849 'Storable' => '2.46', 8850 'Time::HiRes' => '1.9726', 8851 'Time::Piece' => '1.22', 8852 'Time::Seconds' => '1.22', 8853 'XS::APItest' => '0.55', 8854 'bigint' => '0.36', 8855 'bignum' => '0.36', 8856 'bigrat' => '0.36', 8857 'constant' => '1.28', 8858 'diagnostics' => '1.32', 8859 'inc::latest' => '0.4007', 8860 'mro' => '1.13', 8861 'parent' => '0.226', 8862 'utf8' => '1.13', 8863 'version' => '0.9903', 8864 }, 8865 removed => { 8866 'Module::Build::Platform::Amiga'=> 1, 8867 'Module::Build::Platform::EBCDIC'=> 1, 8868 'Module::Build::Platform::MPEiX'=> 1, 8869 'Module::Build::Platform::RiscOS'=> 1, 8870 } 8871 }, 8872 5.019004 => { 8873 delta_from => 5.019003, 8874 changed => { 8875 'B' => '1.46', 8876 'B::Concise' => '0.99', 8877 'B::Deparse' => '1.23', 8878 'CPAN' => '2.03', 8879 'CPAN::Meta' => '2.132620', 8880 'CPAN::Meta::Converter' => '2.132620', 8881 'CPAN::Meta::Feature' => '2.132620', 8882 'CPAN::Meta::History' => '2.132620', 8883 'CPAN::Meta::Prereqs' => '2.132620', 8884 'CPAN::Meta::Requirements'=> '2.123', 8885 'CPAN::Meta::Spec' => '2.132620', 8886 'CPAN::Meta::Validator' => '2.132620', 8887 'Carp' => '1.32', 8888 'Carp::Heavy' => '1.32', 8889 'Config' => '5.019004', 8890 'Data::Dumper' => '2.149', 8891 'Devel::Peek' => '1.14', 8892 'DynaLoader' => '1.20', 8893 'Encode' => '2.55', 8894 'Encode::Alias' => '2.18', 8895 'Encode::CN::HZ' => '2.07', 8896 'Encode::Encoder' => '2.03', 8897 'Encode::Encoding' => '2.07', 8898 'Encode::GSM0338' => '2.05', 8899 'Encode::Guess' => '2.06', 8900 'Encode::JP::JIS7' => '2.05', 8901 'Encode::KR::2022_KR' => '2.03', 8902 'Encode::MIME::Header' => '2.15', 8903 'Encode::MIME::Header::ISO_2022_JP'=> '1.04', 8904 'Encode::Unicode' => '2.09', 8905 'Encode::Unicode::UTF7' => '2.08', 8906 'Errno' => '1.20', 8907 'Exporter' => '5.70', 8908 'Exporter::Heavy' => '5.70', 8909 'ExtUtils::CBuilder' => '0.280212', 8910 'ExtUtils::CBuilder::Base'=> '0.280212', 8911 'ExtUtils::CBuilder::Platform::Unix'=> '0.280212', 8912 'ExtUtils::CBuilder::Platform::VMS'=> '0.280212', 8913 'ExtUtils::CBuilder::Platform::Windows'=> '0.280212', 8914 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280212', 8915 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280212', 8916 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280212', 8917 'ExtUtils::CBuilder::Platform::aix'=> '0.280212', 8918 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280212', 8919 'ExtUtils::CBuilder::Platform::darwin'=> '0.280212', 8920 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280212', 8921 'ExtUtils::CBuilder::Platform::os2'=> '0.280212', 8922 'ExtUtils::Command' => '1.18', 8923 'ExtUtils::Command::MM' => '6.76', 8924 'ExtUtils::Liblist' => '6.76', 8925 'ExtUtils::Liblist::Kid'=> '6.76', 8926 'ExtUtils::MM' => '6.76', 8927 'ExtUtils::MM_AIX' => '6.76', 8928 'ExtUtils::MM_Any' => '6.76', 8929 'ExtUtils::MM_BeOS' => '6.76', 8930 'ExtUtils::MM_Cygwin' => '6.76', 8931 'ExtUtils::MM_DOS' => '6.76', 8932 'ExtUtils::MM_Darwin' => '6.76', 8933 'ExtUtils::MM_MacOS' => '6.76', 8934 'ExtUtils::MM_NW5' => '6.76', 8935 'ExtUtils::MM_OS2' => '6.76', 8936 'ExtUtils::MM_QNX' => '6.76', 8937 'ExtUtils::MM_UWIN' => '6.76', 8938 'ExtUtils::MM_Unix' => '6.76', 8939 'ExtUtils::MM_VMS' => '6.76', 8940 'ExtUtils::MM_VOS' => '6.76', 8941 'ExtUtils::MM_Win32' => '6.76', 8942 'ExtUtils::MM_Win95' => '6.76', 8943 'ExtUtils::MY' => '6.76', 8944 'ExtUtils::MakeMaker' => '6.76', 8945 'ExtUtils::MakeMaker::Config'=> '6.76', 8946 'ExtUtils::Mkbootstrap' => '6.76', 8947 'ExtUtils::Mksymlists' => '6.76', 8948 'ExtUtils::ParseXS' => '3.23', 8949 'ExtUtils::ParseXS::Constants'=> '3.23', 8950 'ExtUtils::ParseXS::CountLines'=> '3.23', 8951 'ExtUtils::ParseXS::Eval'=> '3.23', 8952 'ExtUtils::ParseXS::Utilities'=> '3.23', 8953 'ExtUtils::Typemaps' => '3.23', 8954 'ExtUtils::Typemaps::Cmd'=> '3.23', 8955 'ExtUtils::Typemaps::InputMap'=> '3.23', 8956 'ExtUtils::Typemaps::OutputMap'=> '3.23', 8957 'ExtUtils::Typemaps::Type'=> '3.23', 8958 'ExtUtils::testlib' => '6.76', 8959 'Fatal' => '2.21', 8960 'File::Copy' => '2.28', 8961 'File::Find' => '1.25', 8962 'File::Glob' => '1.21', 8963 'FileCache' => '1.09', 8964 'HTTP::Tiny' => '0.035', 8965 'Hash::Util::FieldHash' => '1.13', 8966 'I18N::LangTags' => '0.40', 8967 'IO' => '1.29', 8968 'IO::Socket' => '1.37', 8969 'IPC::Open3' => '1.16', 8970 'JSON::PP' => '2.27202_01', 8971 'List::Util' => '1.32', 8972 'List::Util::XS' => '1.32', 8973 'Locale::Codes' => '3.27', 8974 'Locale::Codes::Constants'=> '3.27', 8975 'Locale::Codes::Country'=> '3.27', 8976 'Locale::Codes::Country_Codes'=> '3.27', 8977 'Locale::Codes::Country_Retired'=> '3.27', 8978 'Locale::Codes::Currency'=> '3.27', 8979 'Locale::Codes::Currency_Codes'=> '3.27', 8980 'Locale::Codes::Currency_Retired'=> '3.27', 8981 'Locale::Codes::LangExt'=> '3.27', 8982 'Locale::Codes::LangExt_Codes'=> '3.27', 8983 'Locale::Codes::LangExt_Retired'=> '3.27', 8984 'Locale::Codes::LangFam'=> '3.27', 8985 'Locale::Codes::LangFam_Codes'=> '3.27', 8986 'Locale::Codes::LangFam_Retired'=> '3.27', 8987 'Locale::Codes::LangVar'=> '3.27', 8988 'Locale::Codes::LangVar_Codes'=> '3.27', 8989 'Locale::Codes::LangVar_Retired'=> '3.27', 8990 'Locale::Codes::Language'=> '3.27', 8991 'Locale::Codes::Language_Codes'=> '3.27', 8992 'Locale::Codes::Language_Retired'=> '3.27', 8993 'Locale::Codes::Script' => '3.27', 8994 'Locale::Codes::Script_Codes'=> '3.27', 8995 'Locale::Codes::Script_Retired'=> '3.27', 8996 'Locale::Country' => '3.27', 8997 'Locale::Currency' => '3.27', 8998 'Locale::Language' => '3.27', 8999 'Locale::Script' => '3.27', 9000 'Math::BigFloat' => '1.9991', 9001 'Math::BigInt' => '1.9993', 9002 'Math::BigInt::FastCalc'=> '0.31', 9003 'Module::CoreList' => '2.99', 9004 'Module::CoreList::TieHashDelta'=> '2.99', 9005 'Module::CoreList::Utils'=> '2.99', 9006 'Module::Load::Conditional'=> '0.58', 9007 'Module::Metadata' => '1.000018', 9008 'Opcode' => '1.26', 9009 'POSIX' => '1.35', 9010 'Parse::CPAN::Meta' => '1.4407', 9011 'Perl::OSType' => '1.005', 9012 'Pod::Html' => '1.21', 9013 'Scalar::Util' => '1.32', 9014 'Socket' => '2.012', 9015 'Storable' => '2.47', 9016 'Term::ReadLine' => '1.14', 9017 'Test::Builder' => '0.98_06', 9018 'Test::Builder::Module' => '0.98_06', 9019 'Test::More' => '0.98_06', 9020 'Test::Simple' => '0.98_06', 9021 'Time::Piece' => '1.23', 9022 'Time::Seconds' => '1.23', 9023 'Unicode::Collate' => '0.99', 9024 'Unicode::UCD' => '0.54', 9025 'XS::APItest' => '0.56', 9026 'XS::Typemap' => '0.11', 9027 '_charnames' => '1.39', 9028 'autodie' => '2.21', 9029 'autodie::exception' => '2.21', 9030 'autodie::exception::system'=> '2.21', 9031 'autodie::hints' => '2.21', 9032 'autodie::skip' => '2.21', 9033 'charnames' => '1.39', 9034 'diagnostics' => '1.33', 9035 'mro' => '1.14', 9036 'parent' => '0.228', 9037 'perlfaq' => '5.0150044', 9038 're' => '0.26', 9039 'version' => '0.9904', 9040 'warnings' => '1.19', 9041 }, 9042 removed => { 9043 } 9044 }, 9045 5.019005 => { 9046 delta_from => 5.019004, 9047 changed => { 9048 'App::Prove' => '3.29', 9049 'App::Prove::State' => '3.29', 9050 'App::Prove::State::Result'=> '3.29', 9051 'App::Prove::State::Result::Test'=> '3.29', 9052 'CPAN::Meta' => '2.132830', 9053 'CPAN::Meta::Converter' => '2.132830', 9054 'CPAN::Meta::Feature' => '2.132830', 9055 'CPAN::Meta::History' => '2.132830', 9056 'CPAN::Meta::Prereqs' => '2.132830', 9057 'CPAN::Meta::Requirements'=> '2.125', 9058 'CPAN::Meta::Spec' => '2.132830', 9059 'CPAN::Meta::Validator' => '2.132830', 9060 'CPAN::Meta::YAML' => '0.010', 9061 'Config' => '5.019005', 9062 'Cwd' => '3.45', 9063 'ExtUtils::Command::MM' => '6.80', 9064 'ExtUtils::Install' => '1.61', 9065 'ExtUtils::Liblist' => '6.80', 9066 'ExtUtils::Liblist::Kid'=> '6.80', 9067 'ExtUtils::MM' => '6.80', 9068 'ExtUtils::MM_AIX' => '6.80', 9069 'ExtUtils::MM_Any' => '6.80', 9070 'ExtUtils::MM_BeOS' => '6.80', 9071 'ExtUtils::MM_Cygwin' => '6.80', 9072 'ExtUtils::MM_DOS' => '6.80', 9073 'ExtUtils::MM_Darwin' => '6.80', 9074 'ExtUtils::MM_MacOS' => '6.80', 9075 'ExtUtils::MM_NW5' => '6.80', 9076 'ExtUtils::MM_OS2' => '6.80', 9077 'ExtUtils::MM_QNX' => '6.80', 9078 'ExtUtils::MM_UWIN' => '6.80', 9079 'ExtUtils::MM_Unix' => '6.80', 9080 'ExtUtils::MM_VMS' => '6.80', 9081 'ExtUtils::MM_VOS' => '6.80', 9082 'ExtUtils::MM_Win32' => '6.80', 9083 'ExtUtils::MM_Win95' => '6.80', 9084 'ExtUtils::MY' => '6.80', 9085 'ExtUtils::MakeMaker' => '6.80', 9086 'ExtUtils::MakeMaker::Config'=> '6.80', 9087 'ExtUtils::Mkbootstrap' => '6.80', 9088 'ExtUtils::Mksymlists' => '6.80', 9089 'ExtUtils::testlib' => '6.80', 9090 'Fatal' => '2.22', 9091 'File::Fetch' => '0.44', 9092 'File::Glob' => '1.22', 9093 'File::Spec' => '3.45', 9094 'File::Spec::Cygwin' => '3.45', 9095 'File::Spec::Epoc' => '3.45', 9096 'File::Spec::Functions' => '3.45', 9097 'File::Spec::Mac' => '3.45', 9098 'File::Spec::OS2' => '3.45', 9099 'File::Spec::Unix' => '3.45', 9100 'File::Spec::VMS' => '3.45', 9101 'File::Spec::Win32' => '3.45', 9102 'File::Temp' => '0.2304', 9103 'Getopt::Long' => '2.42', 9104 'HTTP::Tiny' => '0.036', 9105 'IPC::Cmd' => '0.84_01', 9106 'JSON::PP' => '2.27203', 9107 'List::Util' => '1.35', 9108 'List::Util::XS' => '1.35', 9109 'Module::CoreList' => '3.00', 9110 'Module::CoreList::TieHashDelta'=> '3.00', 9111 'Module::CoreList::Utils'=> '3.00', 9112 'Module::Metadata' => '1.000019', 9113 'Parse::CPAN::Meta' => '1.4409', 9114 'Perl::OSType' => '1.006', 9115 'PerlIO::scalar' => '0.17', 9116 'Pod::Man' => '2.28', 9117 'Pod::Text' => '3.18', 9118 'Pod::Text::Termcap' => '2.08', 9119 'Scalar::Util' => '1.35', 9120 'TAP::Base' => '3.29', 9121 'TAP::Formatter::Base' => '3.29', 9122 'TAP::Formatter::Color' => '3.29', 9123 'TAP::Formatter::Console'=> '3.29', 9124 'TAP::Formatter::Console::ParallelSession'=> '3.29', 9125 'TAP::Formatter::Console::Session'=> '3.29', 9126 'TAP::Formatter::File' => '3.29', 9127 'TAP::Formatter::File::Session'=> '3.29', 9128 'TAP::Formatter::Session'=> '3.29', 9129 'TAP::Harness' => '3.29', 9130 'TAP::Harness::Env' => '3.29', 9131 'TAP::Object' => '3.29', 9132 'TAP::Parser' => '3.29', 9133 'TAP::Parser::Aggregator'=> '3.29', 9134 'TAP::Parser::Grammar' => '3.29', 9135 'TAP::Parser::Iterator' => '3.29', 9136 'TAP::Parser::Iterator::Array'=> '3.29', 9137 'TAP::Parser::Iterator::Process'=> '3.29', 9138 'TAP::Parser::Iterator::Stream'=> '3.29', 9139 'TAP::Parser::IteratorFactory'=> '3.29', 9140 'TAP::Parser::Multiplexer'=> '3.29', 9141 'TAP::Parser::Result' => '3.29', 9142 'TAP::Parser::Result::Bailout'=> '3.29', 9143 'TAP::Parser::Result::Comment'=> '3.29', 9144 'TAP::Parser::Result::Plan'=> '3.29', 9145 'TAP::Parser::Result::Pragma'=> '3.29', 9146 'TAP::Parser::Result::Test'=> '3.29', 9147 'TAP::Parser::Result::Unknown'=> '3.29', 9148 'TAP::Parser::Result::Version'=> '3.29', 9149 'TAP::Parser::Result::YAML'=> '3.29', 9150 'TAP::Parser::ResultFactory'=> '3.29', 9151 'TAP::Parser::Scheduler'=> '3.29', 9152 'TAP::Parser::Scheduler::Job'=> '3.29', 9153 'TAP::Parser::Scheduler::Spinner'=> '3.29', 9154 'TAP::Parser::Source' => '3.29', 9155 'TAP::Parser::SourceHandler'=> '3.29', 9156 'TAP::Parser::SourceHandler::Executable'=> '3.29', 9157 'TAP::Parser::SourceHandler::File'=> '3.29', 9158 'TAP::Parser::SourceHandler::Handle'=> '3.29', 9159 'TAP::Parser::SourceHandler::Perl'=> '3.29', 9160 'TAP::Parser::SourceHandler::RawTAP'=> '3.29', 9161 'TAP::Parser::YAMLish::Reader'=> '3.29', 9162 'TAP::Parser::YAMLish::Writer'=> '3.29', 9163 'Test::Builder' => '0.99', 9164 'Test::Builder::Module' => '0.99', 9165 'Test::Builder::Tester' => '1.23_002', 9166 'Test::Builder::Tester::Color'=> '1.23_002', 9167 'Test::Harness' => '3.29', 9168 'Test::More' => '0.99', 9169 'Test::Simple' => '0.99', 9170 'Unicode' => '6.3.0', 9171 'Unicode::Normalize' => '1.17', 9172 'Unicode::UCD' => '0.55', 9173 'attributes' => '0.22', 9174 'autodie' => '2.22', 9175 'autodie::exception' => '2.22', 9176 'autodie::exception::system'=> '2.22', 9177 'autodie::hints' => '2.22', 9178 'autodie::skip' => '2.22', 9179 'feature' => '1.34', 9180 'threads' => '1.89', 9181 'warnings' => '1.20', 9182 }, 9183 removed => { 9184 'TAP::Parser::Utils' => 1, 9185 } 9186 }, 9187 5.019006 => { 9188 delta_from => 5.019005, 9189 changed => { 9190 'App::Prove' => '3.30', 9191 'App::Prove::State' => '3.30', 9192 'App::Prove::State::Result'=> '3.30', 9193 'App::Prove::State::Result::Test'=> '3.30', 9194 'Archive::Tar' => '1.96', 9195 'Archive::Tar::Constant'=> '1.96', 9196 'Archive::Tar::File' => '1.96', 9197 'AutoLoader' => '5.74', 9198 'B' => '1.47', 9199 'B::Concise' => '0.991', 9200 'B::Debug' => '1.19', 9201 'B::Deparse' => '1.24', 9202 'Benchmark' => '1.18', 9203 'Compress::Raw::Bzip2' => '2.063', 9204 'Compress::Raw::Zlib' => '2.063', 9205 'Compress::Zlib' => '2.063', 9206 'Config' => '5.019006', 9207 'DB_File' => '1.831', 9208 'Devel::Peek' => '1.15', 9209 'DynaLoader' => '1.21', 9210 'Errno' => '1.20_01', 9211 'ExtUtils::Command::MM' => '6.82', 9212 'ExtUtils::Liblist' => '6.82', 9213 'ExtUtils::Liblist::Kid'=> '6.82', 9214 'ExtUtils::MM' => '6.82', 9215 'ExtUtils::MM_AIX' => '6.82', 9216 'ExtUtils::MM_Any' => '6.82', 9217 'ExtUtils::MM_BeOS' => '6.82', 9218 'ExtUtils::MM_Cygwin' => '6.82', 9219 'ExtUtils::MM_DOS' => '6.82', 9220 'ExtUtils::MM_Darwin' => '6.82', 9221 'ExtUtils::MM_MacOS' => '6.82', 9222 'ExtUtils::MM_NW5' => '6.82', 9223 'ExtUtils::MM_OS2' => '6.82', 9224 'ExtUtils::MM_QNX' => '6.82', 9225 'ExtUtils::MM_UWIN' => '6.82', 9226 'ExtUtils::MM_Unix' => '6.82', 9227 'ExtUtils::MM_VMS' => '6.82', 9228 'ExtUtils::MM_VOS' => '6.82', 9229 'ExtUtils::MM_Win32' => '6.82', 9230 'ExtUtils::MM_Win95' => '6.82', 9231 'ExtUtils::MY' => '6.82', 9232 'ExtUtils::MakeMaker' => '6.82', 9233 'ExtUtils::MakeMaker::Config'=> '6.82', 9234 'ExtUtils::Mkbootstrap' => '6.82', 9235 'ExtUtils::Mksymlists' => '6.82', 9236 'ExtUtils::testlib' => '6.82', 9237 'File::DosGlob' => '1.12', 9238 'File::Find' => '1.26', 9239 'File::Glob' => '1.23', 9240 'HTTP::Tiny' => '0.038', 9241 'IO' => '1.30', 9242 'IO::Compress::Adapter::Bzip2'=> '2.063', 9243 'IO::Compress::Adapter::Deflate'=> '2.063', 9244 'IO::Compress::Adapter::Identity'=> '2.063', 9245 'IO::Compress::Base' => '2.063', 9246 'IO::Compress::Base::Common'=> '2.063', 9247 'IO::Compress::Bzip2' => '2.063', 9248 'IO::Compress::Deflate' => '2.063', 9249 'IO::Compress::Gzip' => '2.063', 9250 'IO::Compress::Gzip::Constants'=> '2.063', 9251 'IO::Compress::RawDeflate'=> '2.063', 9252 'IO::Compress::Zip' => '2.063', 9253 'IO::Compress::Zip::Constants'=> '2.063', 9254 'IO::Compress::Zlib::Constants'=> '2.063', 9255 'IO::Compress::Zlib::Extra'=> '2.063', 9256 'IO::Select' => '1.22', 9257 'IO::Uncompress::Adapter::Bunzip2'=> '2.063', 9258 'IO::Uncompress::Adapter::Identity'=> '2.063', 9259 'IO::Uncompress::Adapter::Inflate'=> '2.063', 9260 'IO::Uncompress::AnyInflate'=> '2.063', 9261 'IO::Uncompress::AnyUncompress'=> '2.063', 9262 'IO::Uncompress::Base' => '2.063', 9263 'IO::Uncompress::Bunzip2'=> '2.063', 9264 'IO::Uncompress::Gunzip'=> '2.063', 9265 'IO::Uncompress::Inflate'=> '2.063', 9266 'IO::Uncompress::RawInflate'=> '2.063', 9267 'IO::Uncompress::Unzip' => '2.063', 9268 'IPC::Cmd' => '0.90', 9269 'Locale::Maketext' => '1.25', 9270 'Module::Build' => '0.4202', 9271 'Module::Build::Base' => '0.4202', 9272 'Module::Build::Compat' => '0.4202', 9273 'Module::Build::Config' => '0.4202', 9274 'Module::Build::Cookbook'=> '0.4202', 9275 'Module::Build::Dumper' => '0.4202', 9276 'Module::Build::ModuleInfo'=> '0.4202', 9277 'Module::Build::Notes' => '0.4202', 9278 'Module::Build::PPMMaker'=> '0.4202', 9279 'Module::Build::Platform::Default'=> '0.4202', 9280 'Module::Build::Platform::MacOS'=> '0.4202', 9281 'Module::Build::Platform::Unix'=> '0.4202', 9282 'Module::Build::Platform::VMS'=> '0.4202', 9283 'Module::Build::Platform::VOS'=> '0.4202', 9284 'Module::Build::Platform::Windows'=> '0.4202', 9285 'Module::Build::Platform::aix'=> '0.4202', 9286 'Module::Build::Platform::cygwin'=> '0.4202', 9287 'Module::Build::Platform::darwin'=> '0.4202', 9288 'Module::Build::Platform::os2'=> '0.4202', 9289 'Module::Build::PodParser'=> '0.4202', 9290 'Module::CoreList' => '3.01', 9291 'Module::CoreList::TieHashDelta'=> '3.01', 9292 'Module::CoreList::Utils'=> '3.01', 9293 'Opcode' => '1.27', 9294 'POSIX' => '1.36', 9295 'Package::Constants' => '0.04', 9296 'PerlIO::scalar' => '0.18', 9297 'PerlIO::via' => '0.13', 9298 'SDBM_File' => '1.10', 9299 'Socket' => '2.013', 9300 'TAP::Base' => '3.30', 9301 'TAP::Formatter::Base' => '3.30', 9302 'TAP::Formatter::Color' => '3.30', 9303 'TAP::Formatter::Console'=> '3.30', 9304 'TAP::Formatter::Console::ParallelSession'=> '3.30', 9305 'TAP::Formatter::Console::Session'=> '3.30', 9306 'TAP::Formatter::File' => '3.30', 9307 'TAP::Formatter::File::Session'=> '3.30', 9308 'TAP::Formatter::Session'=> '3.30', 9309 'TAP::Harness' => '3.30', 9310 'TAP::Harness::Env' => '3.30', 9311 'TAP::Object' => '3.30', 9312 'TAP::Parser' => '3.30', 9313 'TAP::Parser::Aggregator'=> '3.30', 9314 'TAP::Parser::Grammar' => '3.30', 9315 'TAP::Parser::Iterator' => '3.30', 9316 'TAP::Parser::Iterator::Array'=> '3.30', 9317 'TAP::Parser::Iterator::Process'=> '3.30', 9318 'TAP::Parser::Iterator::Stream'=> '3.30', 9319 'TAP::Parser::IteratorFactory'=> '3.30', 9320 'TAP::Parser::Multiplexer'=> '3.30', 9321 'TAP::Parser::Result' => '3.30', 9322 'TAP::Parser::Result::Bailout'=> '3.30', 9323 'TAP::Parser::Result::Comment'=> '3.30', 9324 'TAP::Parser::Result::Plan'=> '3.30', 9325 'TAP::Parser::Result::Pragma'=> '3.30', 9326 'TAP::Parser::Result::Test'=> '3.30', 9327 'TAP::Parser::Result::Unknown'=> '3.30', 9328 'TAP::Parser::Result::Version'=> '3.30', 9329 'TAP::Parser::Result::YAML'=> '3.30', 9330 'TAP::Parser::ResultFactory'=> '3.30', 9331 'TAP::Parser::Scheduler'=> '3.30', 9332 'TAP::Parser::Scheduler::Job'=> '3.30', 9333 'TAP::Parser::Scheduler::Spinner'=> '3.30', 9334 'TAP::Parser::Source' => '3.30', 9335 'TAP::Parser::SourceHandler'=> '3.30', 9336 'TAP::Parser::SourceHandler::Executable'=> '3.30', 9337 'TAP::Parser::SourceHandler::File'=> '3.30', 9338 'TAP::Parser::SourceHandler::Handle'=> '3.30', 9339 'TAP::Parser::SourceHandler::Perl'=> '3.30', 9340 'TAP::Parser::SourceHandler::RawTAP'=> '3.30', 9341 'TAP::Parser::YAMLish::Reader'=> '3.30', 9342 'TAP::Parser::YAMLish::Writer'=> '3.30', 9343 'Term::Cap' => '1.15', 9344 'Test::Builder' => '1.001002', 9345 'Test::Builder::Module' => '1.001002', 9346 'Test::Harness' => '3.30', 9347 'Test::More' => '1.001002', 9348 'Test::Simple' => '1.001002', 9349 'Tie::StdHandle' => '4.4', 9350 'Unicode::Collate' => '1.02', 9351 'Unicode::Collate::CJK::Korean'=> '1.02', 9352 'Unicode::Collate::Locale'=> '1.02', 9353 'XS::APItest' => '0.57', 9354 'XS::Typemap' => '0.12', 9355 'arybase' => '0.07', 9356 'bignum' => '0.37', 9357 'constant' => '1.29', 9358 'fields' => '2.17', 9359 'inc::latest' => '0.4202', 9360 'threads' => '1.90', 9361 'threads::shared' => '1.45', 9362 }, 9363 removed => { 9364 } 9365 }, 9366 5.019007 => { 9367 delta_from => 5.019006, 9368 changed => { 9369 'CGI' => '3.64', 9370 'CGI::Apache' => '1.02', 9371 'CGI::Carp' => '3.64', 9372 'CGI::Cookie' => '1.31', 9373 'CGI::Fast' => '1.10', 9374 'CGI::Pretty' => '3.64', 9375 'CGI::Push' => '1.06', 9376 'CGI::Switch' => '1.02', 9377 'CGI::Util' => '3.64', 9378 'CPAN::Meta' => '2.133380', 9379 'CPAN::Meta::Converter' => '2.133380', 9380 'CPAN::Meta::Feature' => '2.133380', 9381 'CPAN::Meta::History' => '2.133380', 9382 'CPAN::Meta::Prereqs' => '2.133380', 9383 'CPAN::Meta::Spec' => '2.133380', 9384 'CPAN::Meta::Validator' => '2.133380', 9385 'Config' => '5.019007', 9386 'Data::Dumper' => '2.150', 9387 'DynaLoader' => '1.22', 9388 'ExtUtils::Command::MM' => '6.84', 9389 'ExtUtils::Liblist' => '6.84', 9390 'ExtUtils::Liblist::Kid'=> '6.84', 9391 'ExtUtils::MM' => '6.84', 9392 'ExtUtils::MM_AIX' => '6.84', 9393 'ExtUtils::MM_Any' => '6.84', 9394 'ExtUtils::MM_BeOS' => '6.84', 9395 'ExtUtils::MM_Cygwin' => '6.84', 9396 'ExtUtils::MM_DOS' => '6.84', 9397 'ExtUtils::MM_Darwin' => '6.84', 9398 'ExtUtils::MM_MacOS' => '6.84', 9399 'ExtUtils::MM_NW5' => '6.84', 9400 'ExtUtils::MM_OS2' => '6.84', 9401 'ExtUtils::MM_QNX' => '6.84', 9402 'ExtUtils::MM_UWIN' => '6.84', 9403 'ExtUtils::MM_Unix' => '6.84', 9404 'ExtUtils::MM_VMS' => '6.84', 9405 'ExtUtils::MM_VOS' => '6.84', 9406 'ExtUtils::MM_Win32' => '6.84', 9407 'ExtUtils::MM_Win95' => '6.84', 9408 'ExtUtils::MY' => '6.84', 9409 'ExtUtils::MakeMaker' => '6.84', 9410 'ExtUtils::MakeMaker::Config'=> '6.84', 9411 'ExtUtils::Mkbootstrap' => '6.84', 9412 'ExtUtils::Mksymlists' => '6.84', 9413 'ExtUtils::testlib' => '6.84', 9414 'File::Fetch' => '0.46', 9415 'HTTP::Tiny' => '0.039', 9416 'Locale::Codes' => '3.28', 9417 'Locale::Codes::Constants'=> '3.28', 9418 'Locale::Codes::Country'=> '3.28', 9419 'Locale::Codes::Country_Codes'=> '3.28', 9420 'Locale::Codes::Country_Retired'=> '3.28', 9421 'Locale::Codes::Currency'=> '3.28', 9422 'Locale::Codes::Currency_Codes'=> '3.28', 9423 'Locale::Codes::Currency_Retired'=> '3.28', 9424 'Locale::Codes::LangExt'=> '3.28', 9425 'Locale::Codes::LangExt_Codes'=> '3.28', 9426 'Locale::Codes::LangExt_Retired'=> '3.28', 9427 'Locale::Codes::LangFam'=> '3.28', 9428 'Locale::Codes::LangFam_Codes'=> '3.28', 9429 'Locale::Codes::LangFam_Retired'=> '3.28', 9430 'Locale::Codes::LangVar'=> '3.28', 9431 'Locale::Codes::LangVar_Codes'=> '3.28', 9432 'Locale::Codes::LangVar_Retired'=> '3.28', 9433 'Locale::Codes::Language'=> '3.28', 9434 'Locale::Codes::Language_Codes'=> '3.28', 9435 'Locale::Codes::Language_Retired'=> '3.28', 9436 'Locale::Codes::Script' => '3.28', 9437 'Locale::Codes::Script_Codes'=> '3.28', 9438 'Locale::Codes::Script_Retired'=> '3.28', 9439 'Locale::Country' => '3.28', 9440 'Locale::Currency' => '3.28', 9441 'Locale::Language' => '3.28', 9442 'Locale::Script' => '3.28', 9443 'Module::Build' => '0.4203', 9444 'Module::Build::Base' => '0.4203', 9445 'Module::Build::Compat' => '0.4203', 9446 'Module::Build::Config' => '0.4203', 9447 'Module::Build::Cookbook'=> '0.4203', 9448 'Module::Build::Dumper' => '0.4203', 9449 'Module::Build::ModuleInfo'=> '0.4203', 9450 'Module::Build::Notes' => '0.4203', 9451 'Module::Build::PPMMaker'=> '0.4203', 9452 'Module::Build::Platform::Default'=> '0.4203', 9453 'Module::Build::Platform::MacOS'=> '0.4203', 9454 'Module::Build::Platform::Unix'=> '0.4203', 9455 'Module::Build::Platform::VMS'=> '0.4203', 9456 'Module::Build::Platform::VOS'=> '0.4203', 9457 'Module::Build::Platform::Windows'=> '0.4203', 9458 'Module::Build::Platform::aix'=> '0.4203', 9459 'Module::Build::Platform::cygwin'=> '0.4203', 9460 'Module::Build::Platform::darwin'=> '0.4203', 9461 'Module::Build::Platform::os2'=> '0.4203', 9462 'Module::Build::PodParser'=> '0.4203', 9463 'Module::CoreList' => '3.02', 9464 'Module::CoreList::TieHashDelta'=> '3.02', 9465 'Module::CoreList::Utils'=> '3.02', 9466 'POSIX' => '1.37', 9467 'PerlIO::encoding' => '0.17', 9468 'PerlIO::via' => '0.14', 9469 'SDBM_File' => '1.11', 9470 'Storable' => '2.48', 9471 'Time::Piece' => '1.24', 9472 'Time::Seconds' => '1.24', 9473 'Unicode::Collate' => '1.04', 9474 'Win32' => '0.48', 9475 'XS::APItest' => '0.58', 9476 'base' => '2.20', 9477 'constant' => '1.30', 9478 'inc::latest' => '0.4203', 9479 'threads' => '1.91', 9480 }, 9481 removed => { 9482 } 9483 }, 9484 5.019008 => { 9485 delta_from => 5.019007, 9486 changed => { 9487 'Config' => '5.019008', 9488 'DynaLoader' => '1.24', 9489 'Encode' => '2.57', 9490 'Errno' => '1.20_02', 9491 'ExtUtils::CBuilder' => '0.280213', 9492 'ExtUtils::CBuilder::Base'=> '0.280213', 9493 'ExtUtils::CBuilder::Platform::Unix'=> '0.280213', 9494 'ExtUtils::CBuilder::Platform::VMS'=> '0.280213', 9495 'ExtUtils::CBuilder::Platform::Windows'=> '0.280213', 9496 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280213', 9497 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280213', 9498 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280213', 9499 'ExtUtils::CBuilder::Platform::aix'=> '0.280213', 9500 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280213', 9501 'ExtUtils::CBuilder::Platform::darwin'=> '0.280213', 9502 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280213', 9503 'ExtUtils::CBuilder::Platform::os2'=> '0.280213', 9504 'ExtUtils::Command::MM' => '6.86', 9505 'ExtUtils::Liblist' => '6.86', 9506 'ExtUtils::Liblist::Kid'=> '6.86', 9507 'ExtUtils::MM' => '6.86', 9508 'ExtUtils::MM_AIX' => '6.86', 9509 'ExtUtils::MM_Any' => '6.86', 9510 'ExtUtils::MM_BeOS' => '6.86', 9511 'ExtUtils::MM_Cygwin' => '6.86', 9512 'ExtUtils::MM_DOS' => '6.86', 9513 'ExtUtils::MM_Darwin' => '6.86', 9514 'ExtUtils::MM_MacOS' => '6.86', 9515 'ExtUtils::MM_NW5' => '6.86', 9516 'ExtUtils::MM_OS2' => '6.86', 9517 'ExtUtils::MM_QNX' => '6.86', 9518 'ExtUtils::MM_UWIN' => '6.86', 9519 'ExtUtils::MM_Unix' => '6.86', 9520 'ExtUtils::MM_VMS' => '6.86', 9521 'ExtUtils::MM_VOS' => '6.86', 9522 'ExtUtils::MM_Win32' => '6.86', 9523 'ExtUtils::MM_Win95' => '6.86', 9524 'ExtUtils::MY' => '6.86', 9525 'ExtUtils::MakeMaker' => '6.86', 9526 'ExtUtils::MakeMaker::Config'=> '6.86', 9527 'ExtUtils::Mkbootstrap' => '6.86', 9528 'ExtUtils::Mksymlists' => '6.86', 9529 'ExtUtils::testlib' => '6.86', 9530 'File::Copy' => '2.29', 9531 'Hash::Util::FieldHash' => '1.14', 9532 'IO::Socket::IP' => '0.26', 9533 'IO::Socket::UNIX' => '1.26', 9534 'List::Util' => '1.36', 9535 'List::Util::XS' => '1.36', 9536 'Module::Build' => '0.4204', 9537 'Module::Build::Base' => '0.4204', 9538 'Module::Build::Compat' => '0.4204', 9539 'Module::Build::Config' => '0.4204', 9540 'Module::Build::Cookbook'=> '0.4204', 9541 'Module::Build::Dumper' => '0.4204', 9542 'Module::Build::ModuleInfo'=> '0.4204', 9543 'Module::Build::Notes' => '0.4204', 9544 'Module::Build::PPMMaker'=> '0.4204', 9545 'Module::Build::Platform::Default'=> '0.4204', 9546 'Module::Build::Platform::MacOS'=> '0.4204', 9547 'Module::Build::Platform::Unix'=> '0.4204', 9548 'Module::Build::Platform::VMS'=> '0.4204', 9549 'Module::Build::Platform::VOS'=> '0.4204', 9550 'Module::Build::Platform::Windows'=> '0.4204', 9551 'Module::Build::Platform::aix'=> '0.4204', 9552 'Module::Build::Platform::cygwin'=> '0.4204', 9553 'Module::Build::Platform::darwin'=> '0.4204', 9554 'Module::Build::Platform::os2'=> '0.4204', 9555 'Module::Build::PodParser'=> '0.4204', 9556 'Module::CoreList' => '3.04', 9557 'Module::CoreList::TieHashDelta'=> '3.04', 9558 'Module::CoreList::Utils'=> '3.04', 9559 'Module::Load' => '0.28', 9560 'Module::Load::Conditional'=> '0.60', 9561 'Net::Config' => '1.13', 9562 'Net::FTP::A' => '1.19', 9563 'POSIX' => '1.38_01', 9564 'Perl::OSType' => '1.007', 9565 'PerlIO::encoding' => '0.18', 9566 'Pod::Perldoc' => '3.21', 9567 'Pod::Perldoc::BaseTo' => '3.21', 9568 'Pod::Perldoc::GetOptsOO'=> '3.21', 9569 'Pod::Perldoc::ToANSI' => '3.21', 9570 'Pod::Perldoc::ToChecker'=> '3.21', 9571 'Pod::Perldoc::ToMan' => '3.21', 9572 'Pod::Perldoc::ToNroff' => '3.21', 9573 'Pod::Perldoc::ToPod' => '3.21', 9574 'Pod::Perldoc::ToRtf' => '3.21', 9575 'Pod::Perldoc::ToTerm' => '3.21', 9576 'Pod::Perldoc::ToText' => '3.21', 9577 'Pod::Perldoc::ToTk' => '3.21', 9578 'Pod::Perldoc::ToXml' => '3.21', 9579 'Scalar::Util' => '1.36', 9580 'Time::Piece' => '1.27', 9581 'Time::Seconds' => '1.27', 9582 'Unicode::UCD' => '0.57', 9583 'XS::APItest' => '0.59', 9584 'XSLoader' => '0.17', 9585 'base' => '2.21', 9586 'constant' => '1.31', 9587 'inc::latest' => '0.4204', 9588 'threads::shared' => '1.46', 9589 'version' => '0.9907', 9590 'version::regex' => '0.9907', 9591 'version::vpp' => '0.9907', 9592 'warnings' => '1.21', 9593 }, 9594 removed => { 9595 } 9596 }, 9597 5.019009 => { 9598 delta_from => 5.019008, 9599 changed => { 9600 'B' => '1.48', 9601 'B::Concise' => '0.992', 9602 'B::Deparse' => '1.25', 9603 'CGI' => '3.65', 9604 'CPAN::Meta::YAML' => '0.011', 9605 'Compress::Raw::Bzip2' => '2.064', 9606 'Compress::Raw::Zlib' => '2.065', 9607 'Compress::Zlib' => '2.064', 9608 'Config' => '5.019009', 9609 'Config::Perl::V' => '0.20', 9610 'Cwd' => '3.47', 9611 'Devel::Peek' => '1.16', 9612 'Digest::SHA' => '5.87', 9613 'DynaLoader' => '1.25', 9614 'English' => '1.09', 9615 'ExtUtils::CBuilder' => '0.280216', 9616 'ExtUtils::CBuilder::Base'=> '0.280216', 9617 'ExtUtils::CBuilder::Platform::Unix'=> '0.280216', 9618 'ExtUtils::CBuilder::Platform::VMS'=> '0.280216', 9619 'ExtUtils::CBuilder::Platform::Windows'=> '0.280216', 9620 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280216', 9621 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280216', 9622 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280216', 9623 'ExtUtils::CBuilder::Platform::aix'=> '0.280216', 9624 'ExtUtils::CBuilder::Platform::android'=> '0.280216', 9625 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280216', 9626 'ExtUtils::CBuilder::Platform::darwin'=> '0.280216', 9627 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280216', 9628 'ExtUtils::CBuilder::Platform::os2'=> '0.280216', 9629 'ExtUtils::Command::MM' => '6.88', 9630 'ExtUtils::Embed' => '1.32', 9631 'ExtUtils::Install' => '1.62', 9632 'ExtUtils::Installed' => '1.999004', 9633 'ExtUtils::Liblist' => '6.88', 9634 'ExtUtils::Liblist::Kid'=> '6.88', 9635 'ExtUtils::MM' => '6.88', 9636 'ExtUtils::MM_AIX' => '6.88', 9637 'ExtUtils::MM_Any' => '6.88', 9638 'ExtUtils::MM_BeOS' => '6.88', 9639 'ExtUtils::MM_Cygwin' => '6.88', 9640 'ExtUtils::MM_DOS' => '6.88', 9641 'ExtUtils::MM_Darwin' => '6.88', 9642 'ExtUtils::MM_MacOS' => '6.88', 9643 'ExtUtils::MM_NW5' => '6.88', 9644 'ExtUtils::MM_OS2' => '6.88', 9645 'ExtUtils::MM_QNX' => '6.88', 9646 'ExtUtils::MM_UWIN' => '6.88', 9647 'ExtUtils::MM_Unix' => '6.88', 9648 'ExtUtils::MM_VMS' => '6.88', 9649 'ExtUtils::MM_VOS' => '6.88', 9650 'ExtUtils::MM_Win32' => '6.88', 9651 'ExtUtils::MM_Win95' => '6.88', 9652 'ExtUtils::MY' => '6.88', 9653 'ExtUtils::MakeMaker' => '6.88', 9654 'ExtUtils::MakeMaker::Config'=> '6.88', 9655 'ExtUtils::Mkbootstrap' => '6.88', 9656 'ExtUtils::Mksymlists' => '6.88', 9657 'ExtUtils::Packlist' => '1.47', 9658 'ExtUtils::testlib' => '6.88', 9659 'Fatal' => '2.23', 9660 'File::Fetch' => '0.48', 9661 'File::Spec' => '3.47', 9662 'File::Spec::Cygwin' => '3.47', 9663 'File::Spec::Epoc' => '3.47', 9664 'File::Spec::Functions' => '3.47', 9665 'File::Spec::Mac' => '3.47', 9666 'File::Spec::OS2' => '3.47', 9667 'File::Spec::Unix' => '3.47', 9668 'File::Spec::VMS' => '3.47', 9669 'File::Spec::Win32' => '3.47', 9670 'HTTP::Tiny' => '0.042', 9671 'IO::Compress::Adapter::Bzip2'=> '2.064', 9672 'IO::Compress::Adapter::Deflate'=> '2.064', 9673 'IO::Compress::Adapter::Identity'=> '2.064', 9674 'IO::Compress::Base' => '2.064', 9675 'IO::Compress::Base::Common'=> '2.064', 9676 'IO::Compress::Bzip2' => '2.064', 9677 'IO::Compress::Deflate' => '2.064', 9678 'IO::Compress::Gzip' => '2.064', 9679 'IO::Compress::Gzip::Constants'=> '2.064', 9680 'IO::Compress::RawDeflate'=> '2.064', 9681 'IO::Compress::Zip' => '2.064', 9682 'IO::Compress::Zip::Constants'=> '2.064', 9683 'IO::Compress::Zlib::Constants'=> '2.064', 9684 'IO::Compress::Zlib::Extra'=> '2.064', 9685 'IO::Socket::INET' => '1.35', 9686 'IO::Socket::IP' => '0.28', 9687 'IO::Uncompress::Adapter::Bunzip2'=> '2.064', 9688 'IO::Uncompress::Adapter::Identity'=> '2.064', 9689 'IO::Uncompress::Adapter::Inflate'=> '2.064', 9690 'IO::Uncompress::AnyInflate'=> '2.064', 9691 'IO::Uncompress::AnyUncompress'=> '2.064', 9692 'IO::Uncompress::Base' => '2.064', 9693 'IO::Uncompress::Bunzip2'=> '2.064', 9694 'IO::Uncompress::Gunzip'=> '2.064', 9695 'IO::Uncompress::Inflate'=> '2.064', 9696 'IO::Uncompress::RawInflate'=> '2.064', 9697 'IO::Uncompress::Unzip' => '2.064', 9698 'IPC::Cmd' => '0.92', 9699 'List::Util' => '1.38', 9700 'List::Util::XS' => '1.38', 9701 'Locale::Codes' => '3.29', 9702 'Locale::Codes::Constants'=> '3.29', 9703 'Locale::Codes::Country'=> '3.29', 9704 'Locale::Codes::Country_Codes'=> '3.29', 9705 'Locale::Codes::Country_Retired'=> '3.29', 9706 'Locale::Codes::Currency'=> '3.29', 9707 'Locale::Codes::Currency_Codes'=> '3.29', 9708 'Locale::Codes::Currency_Retired'=> '3.29', 9709 'Locale::Codes::LangExt'=> '3.29', 9710 'Locale::Codes::LangExt_Codes'=> '3.29', 9711 'Locale::Codes::LangExt_Retired'=> '3.29', 9712 'Locale::Codes::LangFam'=> '3.29', 9713 'Locale::Codes::LangFam_Codes'=> '3.29', 9714 'Locale::Codes::LangFam_Retired'=> '3.29', 9715 'Locale::Codes::LangVar'=> '3.29', 9716 'Locale::Codes::LangVar_Codes'=> '3.29', 9717 'Locale::Codes::LangVar_Retired'=> '3.29', 9718 'Locale::Codes::Language'=> '3.29', 9719 'Locale::Codes::Language_Codes'=> '3.29', 9720 'Locale::Codes::Language_Retired'=> '3.29', 9721 'Locale::Codes::Script' => '3.29', 9722 'Locale::Codes::Script_Codes'=> '3.29', 9723 'Locale::Codes::Script_Retired'=> '3.29', 9724 'Locale::Country' => '3.29', 9725 'Locale::Currency' => '3.29', 9726 'Locale::Language' => '3.29', 9727 'Locale::Script' => '3.29', 9728 'Module::Build' => '0.4205', 9729 'Module::Build::Base' => '0.4205', 9730 'Module::Build::Compat' => '0.4205', 9731 'Module::Build::Config' => '0.4205', 9732 'Module::Build::Cookbook'=> '0.4205', 9733 'Module::Build::Dumper' => '0.4205', 9734 'Module::Build::ModuleInfo'=> '0.4205', 9735 'Module::Build::Notes' => '0.4205', 9736 'Module::Build::PPMMaker'=> '0.4205', 9737 'Module::Build::Platform::Default'=> '0.4205', 9738 'Module::Build::Platform::MacOS'=> '0.4205', 9739 'Module::Build::Platform::Unix'=> '0.4205', 9740 'Module::Build::Platform::VMS'=> '0.4205', 9741 'Module::Build::Platform::VOS'=> '0.4205', 9742 'Module::Build::Platform::Windows'=> '0.4205', 9743 'Module::Build::Platform::aix'=> '0.4205', 9744 'Module::Build::Platform::cygwin'=> '0.4205', 9745 'Module::Build::Platform::darwin'=> '0.4205', 9746 'Module::Build::Platform::os2'=> '0.4205', 9747 'Module::Build::PodParser'=> '0.4205', 9748 'Module::CoreList' => '3.06', 9749 'Module::CoreList::TieHashDelta'=> '3.06', 9750 'Module::CoreList::Utils'=> '3.06', 9751 'Module::Load' => '0.30', 9752 'Module::Load::Conditional'=> '0.62', 9753 'Net::Domain' => '2.23', 9754 'Net::FTP' => '2.79', 9755 'Net::NNTP' => '2.26', 9756 'Net::POP3' => '2.31', 9757 'Net::Ping' => '2.43', 9758 'Net::SMTP' => '2.33', 9759 'POSIX' => '1.38_02', 9760 'Parse::CPAN::Meta' => '1.4413', 9761 'Pod::Escapes' => '1.06', 9762 'Pod::Find' => '1.62', 9763 'Pod::InputObjects' => '1.62', 9764 'Pod::ParseUtils' => '1.62', 9765 'Pod::Parser' => '1.62', 9766 'Pod::Select' => '1.62', 9767 'Scalar::Util' => '1.38', 9768 'autodie' => '2.23', 9769 'autodie::exception' => '2.23', 9770 'autodie::exception::system'=> '2.23', 9771 'autodie::hints' => '2.23', 9772 'autodie::skip' => '2.23', 9773 'diagnostics' => '1.34', 9774 'feature' => '1.35', 9775 'inc::latest' => '0.4205', 9776 'locale' => '1.03', 9777 'mro' => '1.15', 9778 'threads' => '1.92', 9779 'version' => '0.9908', 9780 'version::regex' => '0.9908', 9781 'version::vpp' => '0.9908', 9782 'warnings' => '1.22', 9783 }, 9784 removed => { 9785 } 9786 }, 9787 5.01901 => { 9788 delta_from => 5.019009, 9789 changed => { 9790 'App::Cpan' => '1.62', 9791 'Attribute::Handlers' => '0.96', 9792 'B::Deparse' => '1.26', 9793 'CPAN' => '2.04', 9794 'CPAN::Bundle' => '5.5001', 9795 'CPAN::Complete' => '5.5001', 9796 'CPAN::Distribution' => '2.01', 9797 'CPAN::Distroprefs' => '6.0001', 9798 'CPAN::FirstTime' => '5.5305', 9799 'CPAN::Meta' => '2.140640', 9800 'CPAN::Meta::Converter' => '2.140640', 9801 'CPAN::Meta::Feature' => '2.140640', 9802 'CPAN::Meta::History' => '2.140640', 9803 'CPAN::Meta::Prereqs' => '2.140640', 9804 'CPAN::Meta::Spec' => '2.140640', 9805 'CPAN::Meta::Validator' => '2.140640', 9806 'CPAN::Meta::YAML' => '0.012', 9807 'CPAN::Queue' => '5.5002', 9808 'CPAN::Shell' => '5.5003', 9809 'CPAN::Tarzip' => '5.5012', 9810 'CPAN::Version' => '5.5003', 9811 'Carp' => '1.33', 9812 'Carp::Heavy' => '1.33', 9813 'Config' => '5.019010', 9814 'Data::Dumper' => '2.151', 9815 'Devel::PPPort' => '3.22', 9816 'Digest::SHA' => '5.88', 9817 'ExtUtils::Command::MM' => '6.92', 9818 'ExtUtils::Install' => '1.63', 9819 'ExtUtils::Installed' => '1.999005', 9820 'ExtUtils::Liblist' => '6.92', 9821 'ExtUtils::Liblist::Kid'=> '6.92', 9822 'ExtUtils::MM' => '6.92', 9823 'ExtUtils::MM_AIX' => '6.92', 9824 'ExtUtils::MM_Any' => '6.92', 9825 'ExtUtils::MM_BeOS' => '6.92', 9826 'ExtUtils::MM_Cygwin' => '6.92', 9827 'ExtUtils::MM_DOS' => '6.92', 9828 'ExtUtils::MM_Darwin' => '6.92', 9829 'ExtUtils::MM_MacOS' => '6.92', 9830 'ExtUtils::MM_NW5' => '6.92', 9831 'ExtUtils::MM_OS2' => '6.92', 9832 'ExtUtils::MM_QNX' => '6.92', 9833 'ExtUtils::MM_UWIN' => '6.92', 9834 'ExtUtils::MM_Unix' => '6.92', 9835 'ExtUtils::MM_VMS' => '6.92', 9836 'ExtUtils::MM_VOS' => '6.92', 9837 'ExtUtils::MM_Win32' => '6.92', 9838 'ExtUtils::MM_Win95' => '6.92', 9839 'ExtUtils::MY' => '6.92', 9840 'ExtUtils::MakeMaker' => '6.92', 9841 'ExtUtils::MakeMaker::Config'=> '6.92', 9842 'ExtUtils::Mkbootstrap' => '6.92', 9843 'ExtUtils::Mksymlists' => '6.92', 9844 'ExtUtils::Packlist' => '1.48', 9845 'ExtUtils::ParseXS' => '3.24', 9846 'ExtUtils::ParseXS::Constants'=> '3.24', 9847 'ExtUtils::ParseXS::CountLines'=> '3.24', 9848 'ExtUtils::ParseXS::Eval'=> '3.24', 9849 'ExtUtils::ParseXS::Utilities'=> '3.24', 9850 'ExtUtils::Typemaps' => '3.24', 9851 'ExtUtils::Typemaps::Cmd'=> '3.24', 9852 'ExtUtils::Typemaps::InputMap'=> '3.24', 9853 'ExtUtils::Typemaps::OutputMap'=> '3.24', 9854 'ExtUtils::Typemaps::Type'=> '3.24', 9855 'ExtUtils::testlib' => '6.92', 9856 'File::Find' => '1.27', 9857 'Filter::Simple' => '0.91', 9858 'HTTP::Tiny' => '0.043', 9859 'Hash::Util::FieldHash' => '1.15', 9860 'IO' => '1.31', 9861 'IO::Socket::IP' => '0.29', 9862 'Locale::Codes' => '3.30', 9863 'Locale::Codes::Constants'=> '3.30', 9864 'Locale::Codes::Country'=> '3.30', 9865 'Locale::Codes::Country_Codes'=> '3.30', 9866 'Locale::Codes::Country_Retired'=> '3.30', 9867 'Locale::Codes::Currency'=> '3.30', 9868 'Locale::Codes::Currency_Codes'=> '3.30', 9869 'Locale::Codes::Currency_Retired'=> '3.30', 9870 'Locale::Codes::LangExt'=> '3.30', 9871 'Locale::Codes::LangExt_Codes'=> '3.30', 9872 'Locale::Codes::LangExt_Retired'=> '3.30', 9873 'Locale::Codes::LangFam'=> '3.30', 9874 'Locale::Codes::LangFam_Codes'=> '3.30', 9875 'Locale::Codes::LangFam_Retired'=> '3.30', 9876 'Locale::Codes::LangVar'=> '3.30', 9877 'Locale::Codes::LangVar_Codes'=> '3.30', 9878 'Locale::Codes::LangVar_Retired'=> '3.30', 9879 'Locale::Codes::Language'=> '3.30', 9880 'Locale::Codes::Language_Codes'=> '3.30', 9881 'Locale::Codes::Language_Retired'=> '3.30', 9882 'Locale::Codes::Script' => '3.30', 9883 'Locale::Codes::Script_Codes'=> '3.30', 9884 'Locale::Codes::Script_Retired'=> '3.30', 9885 'Locale::Country' => '3.30', 9886 'Locale::Currency' => '3.30', 9887 'Locale::Language' => '3.30', 9888 'Locale::Script' => '3.30', 9889 'Module::CoreList' => '3.09', 9890 'Module::CoreList::TieHashDelta'=> '3.09', 9891 'Module::CoreList::Utils'=> '3.09', 9892 'Module::Load' => '0.32', 9893 'POSIX' => '1.38_03', 9894 'Parse::CPAN::Meta' => '1.4414', 9895 'Pod::Perldoc' => '3.23', 9896 'Pod::Perldoc::BaseTo' => '3.23', 9897 'Pod::Perldoc::GetOptsOO'=> '3.23', 9898 'Pod::Perldoc::ToANSI' => '3.23', 9899 'Pod::Perldoc::ToChecker'=> '3.23', 9900 'Pod::Perldoc::ToMan' => '3.23', 9901 'Pod::Perldoc::ToNroff' => '3.23', 9902 'Pod::Perldoc::ToPod' => '3.23', 9903 'Pod::Perldoc::ToRtf' => '3.23', 9904 'Pod::Perldoc::ToTerm' => '3.23', 9905 'Pod::Perldoc::ToText' => '3.23', 9906 'Pod::Perldoc::ToTk' => '3.23', 9907 'Pod::Perldoc::ToXml' => '3.23', 9908 'Thread::Queue' => '3.05', 9909 'XS::APItest' => '0.60', 9910 'XS::Typemap' => '0.13', 9911 'autouse' => '1.08', 9912 'base' => '2.22', 9913 'charnames' => '1.40', 9914 'feature' => '1.36', 9915 'mro' => '1.16', 9916 'threads' => '1.93', 9917 'warnings' => '1.23', 9918 'warnings::register' => '1.03', 9919 }, 9920 removed => { 9921 } 9922 }, 9923 5.019011 => { 9924 delta_from => 5.01901, 9925 changed => { 9926 'CPAN' => '2.05', 9927 'CPAN::Distribution' => '2.02', 9928 'CPAN::FirstTime' => '5.5306', 9929 'CPAN::Shell' => '5.5004', 9930 'Carp' => '1.3301', 9931 'Carp::Heavy' => '1.3301', 9932 'Config' => '5.019011', 9933 'ExtUtils::Command::MM' => '6.94', 9934 'ExtUtils::Install' => '1.67', 9935 'ExtUtils::Liblist' => '6.94', 9936 'ExtUtils::Liblist::Kid'=> '6.94', 9937 'ExtUtils::MM' => '6.94', 9938 'ExtUtils::MM_AIX' => '6.94', 9939 'ExtUtils::MM_Any' => '6.94', 9940 'ExtUtils::MM_BeOS' => '6.94', 9941 'ExtUtils::MM_Cygwin' => '6.94', 9942 'ExtUtils::MM_DOS' => '6.94', 9943 'ExtUtils::MM_Darwin' => '6.94', 9944 'ExtUtils::MM_MacOS' => '6.94', 9945 'ExtUtils::MM_NW5' => '6.94', 9946 'ExtUtils::MM_OS2' => '6.94', 9947 'ExtUtils::MM_QNX' => '6.94', 9948 'ExtUtils::MM_UWIN' => '6.94', 9949 'ExtUtils::MM_Unix' => '6.94', 9950 'ExtUtils::MM_VMS' => '6.94', 9951 'ExtUtils::MM_VOS' => '6.94', 9952 'ExtUtils::MM_Win32' => '6.94', 9953 'ExtUtils::MM_Win95' => '6.94', 9954 'ExtUtils::MY' => '6.94', 9955 'ExtUtils::MakeMaker' => '6.94', 9956 'ExtUtils::MakeMaker::Config'=> '6.94', 9957 'ExtUtils::Mkbootstrap' => '6.94', 9958 'ExtUtils::Mksymlists' => '6.94', 9959 'ExtUtils::testlib' => '6.94', 9960 'Module::CoreList' => '3.10', 9961 'Module::CoreList::TieHashDelta'=> '3.10', 9962 'Module::CoreList::Utils'=> '3.10', 9963 'PerlIO' => '1.09', 9964 'Storable' => '2.49', 9965 'Win32' => '0.49', 9966 'experimental' => '0.007', 9967 }, 9968 removed => { 9969 } 9970 }, 9971 5.020000 => { 9972 delta_from => 5.019011, 9973 changed => { 9974 'Config' => '5.02', 9975 'Devel::PPPort' => '3.21', 9976 'Encode' => '2.60', 9977 'Errno' => '1.20_03', 9978 'ExtUtils::Command::MM' => '6.98', 9979 'ExtUtils::Liblist' => '6.98', 9980 'ExtUtils::Liblist::Kid'=> '6.98', 9981 'ExtUtils::MM' => '6.98', 9982 'ExtUtils::MM_AIX' => '6.98', 9983 'ExtUtils::MM_Any' => '6.98', 9984 'ExtUtils::MM_BeOS' => '6.98', 9985 'ExtUtils::MM_Cygwin' => '6.98', 9986 'ExtUtils::MM_DOS' => '6.98', 9987 'ExtUtils::MM_Darwin' => '6.98', 9988 'ExtUtils::MM_MacOS' => '6.98', 9989 'ExtUtils::MM_NW5' => '6.98', 9990 'ExtUtils::MM_OS2' => '6.98', 9991 'ExtUtils::MM_QNX' => '6.98', 9992 'ExtUtils::MM_UWIN' => '6.98', 9993 'ExtUtils::MM_Unix' => '6.98', 9994 'ExtUtils::MM_VMS' => '6.98', 9995 'ExtUtils::MM_VOS' => '6.98', 9996 'ExtUtils::MM_Win32' => '6.98', 9997 'ExtUtils::MM_Win95' => '6.98', 9998 'ExtUtils::MY' => '6.98', 9999 'ExtUtils::MakeMaker' => '6.98', 10000 'ExtUtils::MakeMaker::Config'=> '6.98', 10001 'ExtUtils::Miniperl' => '1.01', 10002 'ExtUtils::Mkbootstrap' => '6.98', 10003 'ExtUtils::Mksymlists' => '6.98', 10004 'ExtUtils::testlib' => '6.98', 10005 }, 10006 removed => { 10007 } 10008 }, 10009 5.021000 => { 10010 delta_from => 5.020000, 10011 changed => { 10012 'Module::CoreList' => '5.021001', 10013 'Module::CoreList::TieHashDelta'=> '5.021001', 10014 'Module::CoreList::Utils'=> '5.021001', 10015 'feature' => '1.37', 10016 }, 10017 removed => { 10018 'CGI' => 1, 10019 'CGI::Apache' => 1, 10020 'CGI::Carp' => 1, 10021 'CGI::Cookie' => 1, 10022 'CGI::Fast' => 1, 10023 'CGI::Pretty' => 1, 10024 'CGI::Push' => 1, 10025 'CGI::Switch' => 1, 10026 'CGI::Util' => 1, 10027 'Module::Build' => 1, 10028 'Module::Build::Base' => 1, 10029 'Module::Build::Compat' => 1, 10030 'Module::Build::Config' => 1, 10031 'Module::Build::ConfigData'=> 1, 10032 'Module::Build::Cookbook'=> 1, 10033 'Module::Build::Dumper' => 1, 10034 'Module::Build::ModuleInfo'=> 1, 10035 'Module::Build::Notes' => 1, 10036 'Module::Build::PPMMaker'=> 1, 10037 'Module::Build::Platform::Default'=> 1, 10038 'Module::Build::Platform::MacOS'=> 1, 10039 'Module::Build::Platform::Unix'=> 1, 10040 'Module::Build::Platform::VMS'=> 1, 10041 'Module::Build::Platform::VOS'=> 1, 10042 'Module::Build::Platform::Windows'=> 1, 10043 'Module::Build::Platform::aix'=> 1, 10044 'Module::Build::Platform::cygwin'=> 1, 10045 'Module::Build::Platform::darwin'=> 1, 10046 'Module::Build::Platform::os2'=> 1, 10047 'Module::Build::PodParser'=> 1, 10048 'Module::Build::Version'=> 1, 10049 'Module::Build::YAML' => 1, 10050 'Package::Constants' => 1, 10051 'inc::latest' => 1, 10052 } 10053 }, 10054 5.021001 => { 10055 delta_from => 5.021000, 10056 changed => { 10057 'App::Prove' => '3.32', 10058 'App::Prove::State' => '3.32', 10059 'App::Prove::State::Result'=> '3.32', 10060 'App::Prove::State::Result::Test'=> '3.32', 10061 'Archive::Tar' => '2.00', 10062 'Archive::Tar::Constant'=> '2.00', 10063 'Archive::Tar::File' => '2.00', 10064 'B' => '1.49', 10065 'B::Deparse' => '1.27', 10066 'Benchmark' => '1.19', 10067 'CPAN::Meta' => '2.141520', 10068 'CPAN::Meta::Converter' => '2.141520', 10069 'CPAN::Meta::Feature' => '2.141520', 10070 'CPAN::Meta::History' => '2.141520', 10071 'CPAN::Meta::Prereqs' => '2.141520', 10072 'CPAN::Meta::Spec' => '2.141520', 10073 'CPAN::Meta::Validator' => '2.141520', 10074 'Carp' => '1.34', 10075 'Carp::Heavy' => '1.34', 10076 'Config' => '5.021001', 10077 'Cwd' => '3.48', 10078 'Data::Dumper' => '2.152', 10079 'Devel::PPPort' => '3.24', 10080 'Devel::Peek' => '1.17', 10081 'Digest::SHA' => '5.92', 10082 'DynaLoader' => '1.26', 10083 'Encode' => '2.62', 10084 'Errno' => '1.20_04', 10085 'Exporter' => '5.71', 10086 'Exporter::Heavy' => '5.71', 10087 'ExtUtils::Install' => '1.68', 10088 'ExtUtils::Miniperl' => '1.02', 10089 'ExtUtils::ParseXS' => '3.25', 10090 'ExtUtils::ParseXS::Constants'=> '3.25', 10091 'ExtUtils::ParseXS::CountLines'=> '3.25', 10092 'ExtUtils::ParseXS::Eval'=> '3.25', 10093 'ExtUtils::ParseXS::Utilities'=> '3.25', 10094 'ExtUtils::Typemaps' => '3.25', 10095 'ExtUtils::Typemaps::Cmd'=> '3.25', 10096 'ExtUtils::Typemaps::InputMap'=> '3.25', 10097 'ExtUtils::Typemaps::OutputMap'=> '3.25', 10098 'ExtUtils::Typemaps::Type'=> '3.25', 10099 'Fatal' => '2.25', 10100 'File::Spec' => '3.48', 10101 'File::Spec::Cygwin' => '3.48', 10102 'File::Spec::Epoc' => '3.48', 10103 'File::Spec::Functions' => '3.48', 10104 'File::Spec::Mac' => '3.48', 10105 'File::Spec::OS2' => '3.48', 10106 'File::Spec::Unix' => '3.48', 10107 'File::Spec::VMS' => '3.48', 10108 'File::Spec::Win32' => '3.48', 10109 'Hash::Util' => '0.17', 10110 'IO' => '1.32', 10111 'List::Util' => '1.39', 10112 'List::Util::XS' => '1.39', 10113 'Locale::Codes' => '3.31', 10114 'Locale::Codes::Constants'=> '3.31', 10115 'Locale::Codes::Country'=> '3.31', 10116 'Locale::Codes::Country_Codes'=> '3.31', 10117 'Locale::Codes::Country_Retired'=> '3.31', 10118 'Locale::Codes::Currency'=> '3.31', 10119 'Locale::Codes::Currency_Codes'=> '3.31', 10120 'Locale::Codes::Currency_Retired'=> '3.31', 10121 'Locale::Codes::LangExt'=> '3.31', 10122 'Locale::Codes::LangExt_Codes'=> '3.31', 10123 'Locale::Codes::LangExt_Retired'=> '3.31', 10124 'Locale::Codes::LangFam'=> '3.31', 10125 'Locale::Codes::LangFam_Codes'=> '3.31', 10126 'Locale::Codes::LangFam_Retired'=> '3.31', 10127 'Locale::Codes::LangVar'=> '3.31', 10128 'Locale::Codes::LangVar_Codes'=> '3.31', 10129 'Locale::Codes::LangVar_Retired'=> '3.31', 10130 'Locale::Codes::Language'=> '3.31', 10131 'Locale::Codes::Language_Codes'=> '3.31', 10132 'Locale::Codes::Language_Retired'=> '3.31', 10133 'Locale::Codes::Script' => '3.31', 10134 'Locale::Codes::Script_Codes'=> '3.31', 10135 'Locale::Codes::Script_Retired'=> '3.31', 10136 'Locale::Country' => '3.31', 10137 'Locale::Currency' => '3.31', 10138 'Locale::Language' => '3.31', 10139 'Locale::Script' => '3.31', 10140 'Math::BigFloat' => '1.9994', 10141 'Math::BigInt' => '1.9995', 10142 'Math::BigInt::Calc' => '1.9994', 10143 'Math::BigInt::CalcEmu' => '1.9994', 10144 'Math::BigRat' => '0.2608', 10145 'Module::CoreList' => '5.021001_01', 10146 'Module::CoreList::TieHashDelta'=> '5.021001_01', 10147 'Module::CoreList::Utils'=> '5.021001_01', 10148 'Module::Metadata' => '1.000024', 10149 'NDBM_File' => '1.13', 10150 'Net::Config' => '1.14', 10151 'Net::SMTP' => '2.34', 10152 'Net::Time' => '2.11', 10153 'OS2::Process' => '1.10', 10154 'POSIX' => '1.40', 10155 'PerlIO::encoding' => '0.19', 10156 'PerlIO::mmap' => '0.013', 10157 'PerlIO::scalar' => '0.19', 10158 'PerlIO::via' => '0.15', 10159 'Pod::Html' => '1.22', 10160 'Scalar::Util' => '1.39', 10161 'SelfLoader' => '1.22', 10162 'Socket' => '2.014', 10163 'Storable' => '2.51', 10164 'TAP::Base' => '3.32', 10165 'TAP::Formatter::Base' => '3.32', 10166 'TAP::Formatter::Color' => '3.32', 10167 'TAP::Formatter::Console'=> '3.32', 10168 'TAP::Formatter::Console::ParallelSession'=> '3.32', 10169 'TAP::Formatter::Console::Session'=> '3.32', 10170 'TAP::Formatter::File' => '3.32', 10171 'TAP::Formatter::File::Session'=> '3.32', 10172 'TAP::Formatter::Session'=> '3.32', 10173 'TAP::Harness' => '3.32', 10174 'TAP::Harness::Env' => '3.32', 10175 'TAP::Object' => '3.32', 10176 'TAP::Parser' => '3.32', 10177 'TAP::Parser::Aggregator'=> '3.32', 10178 'TAP::Parser::Grammar' => '3.32', 10179 'TAP::Parser::Iterator' => '3.32', 10180 'TAP::Parser::Iterator::Array'=> '3.32', 10181 'TAP::Parser::Iterator::Process'=> '3.32', 10182 'TAP::Parser::Iterator::Stream'=> '3.32', 10183 'TAP::Parser::IteratorFactory'=> '3.32', 10184 'TAP::Parser::Multiplexer'=> '3.32', 10185 'TAP::Parser::Result' => '3.32', 10186 'TAP::Parser::Result::Bailout'=> '3.32', 10187 'TAP::Parser::Result::Comment'=> '3.32', 10188 'TAP::Parser::Result::Plan'=> '3.32', 10189 'TAP::Parser::Result::Pragma'=> '3.32', 10190 'TAP::Parser::Result::Test'=> '3.32', 10191 'TAP::Parser::Result::Unknown'=> '3.32', 10192 'TAP::Parser::Result::Version'=> '3.32', 10193 'TAP::Parser::Result::YAML'=> '3.32', 10194 'TAP::Parser::ResultFactory'=> '3.32', 10195 'TAP::Parser::Scheduler'=> '3.32', 10196 'TAP::Parser::Scheduler::Job'=> '3.32', 10197 'TAP::Parser::Scheduler::Spinner'=> '3.32', 10198 'TAP::Parser::Source' => '3.32', 10199 'TAP::Parser::SourceHandler'=> '3.32', 10200 'TAP::Parser::SourceHandler::Executable'=> '3.32', 10201 'TAP::Parser::SourceHandler::File'=> '3.32', 10202 'TAP::Parser::SourceHandler::Handle'=> '3.32', 10203 'TAP::Parser::SourceHandler::Perl'=> '3.32', 10204 'TAP::Parser::SourceHandler::RawTAP'=> '3.32', 10205 'TAP::Parser::YAMLish::Reader'=> '3.32', 10206 'TAP::Parser::YAMLish::Writer'=> '3.32', 10207 'Term::ANSIColor' => '4.03', 10208 'Test::Builder' => '1.001003', 10209 'Test::Builder::Module' => '1.001003', 10210 'Test::Builder::Tester' => '1.23_003', 10211 'Test::Harness' => '3.32', 10212 'Test::More' => '1.001003', 10213 'Test::Simple' => '1.001003', 10214 'Tie::File' => '1.01', 10215 'Unicode' => '7.0.0', 10216 'Unicode::Collate' => '1.07', 10217 'Unicode::Normalize' => '1.18', 10218 'Unicode::UCD' => '0.58', 10219 'XS::APItest' => '0.61', 10220 '_charnames' => '1.41', 10221 'autodie' => '2.25', 10222 'autodie::Scope::Guard' => '2.25', 10223 'autodie::Scope::GuardStack'=> '2.25', 10224 'autodie::ScopeUtil' => '2.25', 10225 'autodie::exception' => '2.25', 10226 'autodie::exception::system'=> '2.25', 10227 'autodie::hints' => '2.25', 10228 'autodie::skip' => '2.25', 10229 'charnames' => '1.41', 10230 'locale' => '1.04', 10231 'threads' => '1.94', 10232 'utf8' => '1.14', 10233 'warnings' => '1.24', 10234 }, 10235 removed => { 10236 } 10237 }, 10238 5.021002 => { 10239 delta_from => 5.021001, 10240 changed => { 10241 'B' => '1.50', 10242 'Config' => '5.021002', 10243 'Cwd' => '3.49', 10244 'Devel::Peek' => '1.18', 10245 'ExtUtils::Manifest' => '1.64', 10246 'File::Copy' => '2.30', 10247 'File::Spec' => '3.49', 10248 'File::Spec::Cygwin' => '3.49', 10249 'File::Spec::Epoc' => '3.49', 10250 'File::Spec::Functions' => '3.49', 10251 'File::Spec::Mac' => '3.49', 10252 'File::Spec::OS2' => '3.49', 10253 'File::Spec::Unix' => '3.49', 10254 'File::Spec::VMS' => '3.49', 10255 'File::Spec::Win32' => '3.49', 10256 'Filter::Simple' => '0.92', 10257 'Hash::Util' => '0.18', 10258 'IO' => '1.33', 10259 'IO::Socket::IP' => '0.31', 10260 'IPC::Open3' => '1.17', 10261 'Math::BigFloat' => '1.9996', 10262 'Math::BigInt' => '1.9996', 10263 'Math::BigInt::Calc' => '1.9996', 10264 'Math::BigInt::CalcEmu' => '1.9996', 10265 'Module::CoreList' => '5.021002', 10266 'Module::CoreList::TieHashDelta'=> '5.021002', 10267 'Module::CoreList::Utils'=> '5.021002', 10268 'POSIX' => '1.41', 10269 'Pod::Usage' => '1.64', 10270 'XS::APItest' => '0.62', 10271 'arybase' => '0.08', 10272 'experimental' => '0.008', 10273 'threads' => '1.95', 10274 'warnings' => '1.26', 10275 }, 10276 removed => { 10277 } 10278 }, 10279 5.021003 => { 10280 delta_from => 5.021002, 10281 changed => { 10282 'B::Debug' => '1.21', 10283 'CPAN::Meta' => '2.142060', 10284 'CPAN::Meta::Converter' => '2.142060', 10285 'CPAN::Meta::Feature' => '2.142060', 10286 'CPAN::Meta::History' => '2.142060', 10287 'CPAN::Meta::Merge' => '2.142060', 10288 'CPAN::Meta::Prereqs' => '2.142060', 10289 'CPAN::Meta::Requirements'=> '2.126', 10290 'CPAN::Meta::Spec' => '2.142060', 10291 'CPAN::Meta::Validator' => '2.142060', 10292 'Config' => '5.021003', 10293 'Config::Perl::V' => '0.22', 10294 'ExtUtils::CBuilder' => '0.280217', 10295 'ExtUtils::CBuilder::Base'=> '0.280217', 10296 'ExtUtils::CBuilder::Platform::Unix'=> '0.280217', 10297 'ExtUtils::CBuilder::Platform::VMS'=> '0.280217', 10298 'ExtUtils::CBuilder::Platform::Windows'=> '0.280217', 10299 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217', 10300 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217', 10301 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217', 10302 'ExtUtils::CBuilder::Platform::aix'=> '0.280217', 10303 'ExtUtils::CBuilder::Platform::android'=> '0.280217', 10304 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217', 10305 'ExtUtils::CBuilder::Platform::darwin'=> '0.280217', 10306 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217', 10307 'ExtUtils::CBuilder::Platform::os2'=> '0.280217', 10308 'ExtUtils::Manifest' => '1.65', 10309 'HTTP::Tiny' => '0.047', 10310 'IPC::Open3' => '1.18', 10311 'Module::CoreList' => '5.021003', 10312 'Module::CoreList::TieHashDelta'=> '5.021003', 10313 'Module::CoreList::Utils'=> '5.021003', 10314 'Opcode' => '1.28', 10315 'POSIX' => '1.42', 10316 'Safe' => '2.38', 10317 'Socket' => '2.015', 10318 'Sys::Hostname' => '1.19', 10319 'UNIVERSAL' => '1.12', 10320 'XS::APItest' => '0.63', 10321 'perlfaq' => '5.0150045', 10322 }, 10323 removed => { 10324 } 10325 }, 10326 5.020001 => { 10327 delta_from => 5.020000, 10328 changed => { 10329 'Config' => '5.020001', 10330 'Config::Perl::V' => '0.22', 10331 'Cwd' => '3.48', 10332 'Exporter' => '5.71', 10333 'Exporter::Heavy' => '5.71', 10334 'ExtUtils::CBuilder' => '0.280217', 10335 'ExtUtils::CBuilder::Base'=> '0.280217', 10336 'ExtUtils::CBuilder::Platform::Unix'=> '0.280217', 10337 'ExtUtils::CBuilder::Platform::VMS'=> '0.280217', 10338 'ExtUtils::CBuilder::Platform::Windows'=> '0.280217', 10339 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280217', 10340 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280217', 10341 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280217', 10342 'ExtUtils::CBuilder::Platform::aix'=> '0.280217', 10343 'ExtUtils::CBuilder::Platform::android'=> '0.280217', 10344 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280217', 10345 'ExtUtils::CBuilder::Platform::darwin'=> '0.280217', 10346 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280217', 10347 'ExtUtils::CBuilder::Platform::os2'=> '0.280217', 10348 'File::Copy' => '2.30', 10349 'File::Spec' => '3.48', 10350 'File::Spec::Cygwin' => '3.48', 10351 'File::Spec::Epoc' => '3.48', 10352 'File::Spec::Functions' => '3.48', 10353 'File::Spec::Mac' => '3.48', 10354 'File::Spec::OS2' => '3.48', 10355 'File::Spec::Unix' => '3.48', 10356 'File::Spec::VMS' => '3.48', 10357 'File::Spec::Win32' => '3.48', 10358 'Module::CoreList' => '5.020001', 10359 'Module::CoreList::TieHashDelta'=> '5.020001', 10360 'Module::CoreList::Utils'=> '5.020001', 10361 'PerlIO::via' => '0.15', 10362 'Unicode::UCD' => '0.58', 10363 'XS::APItest' => '0.60_01', 10364 'utf8' => '1.13_01', 10365 'version' => '0.9909', 10366 'version::regex' => '0.9909', 10367 'version::vpp' => '0.9909', 10368 }, 10369 removed => { 10370 } 10371 }, 10372 5.021004 => { 10373 delta_from => 5.021003, 10374 changed => { 10375 'App::Prove' => '3.33', 10376 'App::Prove::State' => '3.33', 10377 'App::Prove::State::Result'=> '3.33', 10378 'App::Prove::State::Result::Test'=> '3.33', 10379 'Archive::Tar' => '2.02', 10380 'Archive::Tar::Constant'=> '2.02', 10381 'Archive::Tar::File' => '2.02', 10382 'Attribute::Handlers' => '0.97', 10383 'B' => '1.51', 10384 'B::Concise' => '0.993', 10385 'B::Deparse' => '1.28', 10386 'B::Op_private' => '5.021004', 10387 'CPAN::Meta::Requirements'=> '2.128', 10388 'Config' => '5.021004', 10389 'Cwd' => '3.50', 10390 'Data::Dumper' => '2.154', 10391 'ExtUtils::CBuilder' => '0.280219', 10392 'ExtUtils::CBuilder::Base'=> '0.280219', 10393 'ExtUtils::CBuilder::Platform::Unix'=> '0.280219', 10394 'ExtUtils::CBuilder::Platform::VMS'=> '0.280219', 10395 'ExtUtils::CBuilder::Platform::Windows'=> '0.280219', 10396 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280219', 10397 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280219', 10398 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280219', 10399 'ExtUtils::CBuilder::Platform::aix'=> '0.280219', 10400 'ExtUtils::CBuilder::Platform::android'=> '0.280219', 10401 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280219', 10402 'ExtUtils::CBuilder::Platform::darwin'=> '0.280219', 10403 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280219', 10404 'ExtUtils::CBuilder::Platform::os2'=> '0.280219', 10405 'ExtUtils::Install' => '2.04', 10406 'ExtUtils::Installed' => '2.04', 10407 'ExtUtils::Liblist::Kid'=> '6.98_01', 10408 'ExtUtils::Manifest' => '1.68', 10409 'ExtUtils::Packlist' => '2.04', 10410 'File::Find' => '1.28', 10411 'File::Spec' => '3.50', 10412 'File::Spec::Cygwin' => '3.50', 10413 'File::Spec::Epoc' => '3.50', 10414 'File::Spec::Functions' => '3.50', 10415 'File::Spec::Mac' => '3.50', 10416 'File::Spec::OS2' => '3.50', 10417 'File::Spec::Unix' => '3.50', 10418 'File::Spec::VMS' => '3.50', 10419 'File::Spec::Win32' => '3.50', 10420 'Getopt::Std' => '1.11', 10421 'HTTP::Tiny' => '0.049', 10422 'IO' => '1.34', 10423 'IO::Socket::IP' => '0.32', 10424 'List::Util' => '1.41', 10425 'List::Util::XS' => '1.41', 10426 'Locale::Codes' => '3.32', 10427 'Locale::Codes::Constants'=> '3.32', 10428 'Locale::Codes::Country'=> '3.32', 10429 'Locale::Codes::Country_Codes'=> '3.32', 10430 'Locale::Codes::Country_Retired'=> '3.32', 10431 'Locale::Codes::Currency'=> '3.32', 10432 'Locale::Codes::Currency_Codes'=> '3.32', 10433 'Locale::Codes::Currency_Retired'=> '3.32', 10434 'Locale::Codes::LangExt'=> '3.32', 10435 'Locale::Codes::LangExt_Codes'=> '3.32', 10436 'Locale::Codes::LangExt_Retired'=> '3.32', 10437 'Locale::Codes::LangFam'=> '3.32', 10438 'Locale::Codes::LangFam_Codes'=> '3.32', 10439 'Locale::Codes::LangFam_Retired'=> '3.32', 10440 'Locale::Codes::LangVar'=> '3.32', 10441 'Locale::Codes::LangVar_Codes'=> '3.32', 10442 'Locale::Codes::LangVar_Retired'=> '3.32', 10443 'Locale::Codes::Language'=> '3.32', 10444 'Locale::Codes::Language_Codes'=> '3.32', 10445 'Locale::Codes::Language_Retired'=> '3.32', 10446 'Locale::Codes::Script' => '3.32', 10447 'Locale::Codes::Script_Codes'=> '3.32', 10448 'Locale::Codes::Script_Retired'=> '3.32', 10449 'Locale::Country' => '3.32', 10450 'Locale::Currency' => '3.32', 10451 'Locale::Language' => '3.32', 10452 'Locale::Script' => '3.32', 10453 'Math::BigFloat' => '1.9997', 10454 'Math::BigInt' => '1.9997', 10455 'Math::BigInt::Calc' => '1.9997', 10456 'Math::BigInt::CalcEmu' => '1.9997', 10457 'Module::CoreList' => '5.20140920', 10458 'Module::CoreList::TieHashDelta'=> '5.20140920', 10459 'Module::CoreList::Utils'=> '5.20140920', 10460 'POSIX' => '1.43', 10461 'Pod::Perldoc' => '3.24', 10462 'Pod::Perldoc::BaseTo' => '3.24', 10463 'Pod::Perldoc::GetOptsOO'=> '3.24', 10464 'Pod::Perldoc::ToANSI' => '3.24', 10465 'Pod::Perldoc::ToChecker'=> '3.24', 10466 'Pod::Perldoc::ToMan' => '3.24', 10467 'Pod::Perldoc::ToNroff' => '3.24', 10468 'Pod::Perldoc::ToPod' => '3.24', 10469 'Pod::Perldoc::ToRtf' => '3.24', 10470 'Pod::Perldoc::ToTerm' => '3.24', 10471 'Pod::Perldoc::ToText' => '3.24', 10472 'Pod::Perldoc::ToTk' => '3.24', 10473 'Pod::Perldoc::ToXml' => '3.24', 10474 'Scalar::Util' => '1.41', 10475 'Sub::Util' => '1.41', 10476 'TAP::Base' => '3.33', 10477 'TAP::Formatter::Base' => '3.33', 10478 'TAP::Formatter::Color' => '3.33', 10479 'TAP::Formatter::Console'=> '3.33', 10480 'TAP::Formatter::Console::ParallelSession'=> '3.33', 10481 'TAP::Formatter::Console::Session'=> '3.33', 10482 'TAP::Formatter::File' => '3.33', 10483 'TAP::Formatter::File::Session'=> '3.33', 10484 'TAP::Formatter::Session'=> '3.33', 10485 'TAP::Harness' => '3.33', 10486 'TAP::Harness::Env' => '3.33', 10487 'TAP::Object' => '3.33', 10488 'TAP::Parser' => '3.33', 10489 'TAP::Parser::Aggregator'=> '3.33', 10490 'TAP::Parser::Grammar' => '3.33', 10491 'TAP::Parser::Iterator' => '3.33', 10492 'TAP::Parser::Iterator::Array'=> '3.33', 10493 'TAP::Parser::Iterator::Process'=> '3.33', 10494 'TAP::Parser::Iterator::Stream'=> '3.33', 10495 'TAP::Parser::IteratorFactory'=> '3.33', 10496 'TAP::Parser::Multiplexer'=> '3.33', 10497 'TAP::Parser::Result' => '3.33', 10498 'TAP::Parser::Result::Bailout'=> '3.33', 10499 'TAP::Parser::Result::Comment'=> '3.33', 10500 'TAP::Parser::Result::Plan'=> '3.33', 10501 'TAP::Parser::Result::Pragma'=> '3.33', 10502 'TAP::Parser::Result::Test'=> '3.33', 10503 'TAP::Parser::Result::Unknown'=> '3.33', 10504 'TAP::Parser::Result::Version'=> '3.33', 10505 'TAP::Parser::Result::YAML'=> '3.33', 10506 'TAP::Parser::ResultFactory'=> '3.33', 10507 'TAP::Parser::Scheduler'=> '3.33', 10508 'TAP::Parser::Scheduler::Job'=> '3.33', 10509 'TAP::Parser::Scheduler::Spinner'=> '3.33', 10510 'TAP::Parser::Source' => '3.33', 10511 'TAP::Parser::SourceHandler'=> '3.33', 10512 'TAP::Parser::SourceHandler::Executable'=> '3.33', 10513 'TAP::Parser::SourceHandler::File'=> '3.33', 10514 'TAP::Parser::SourceHandler::Handle'=> '3.33', 10515 'TAP::Parser::SourceHandler::Perl'=> '3.33', 10516 'TAP::Parser::SourceHandler::RawTAP'=> '3.33', 10517 'TAP::Parser::YAMLish::Reader'=> '3.33', 10518 'TAP::Parser::YAMLish::Writer'=> '3.33', 10519 'Term::ReadLine' => '1.15', 10520 'Test::Builder' => '1.001006', 10521 'Test::Builder::Module' => '1.001006', 10522 'Test::Builder::Tester' => '1.24', 10523 'Test::Builder::Tester::Color'=> '1.24', 10524 'Test::Harness' => '3.33', 10525 'Test::More' => '1.001006', 10526 'Test::Simple' => '1.001006', 10527 'Time::Piece' => '1.29', 10528 'Time::Seconds' => '1.29', 10529 'XS::APItest' => '0.64', 10530 '_charnames' => '1.42', 10531 'attributes' => '0.23', 10532 'bigint' => '0.37', 10533 'bignum' => '0.38', 10534 'bigrat' => '0.37', 10535 'constant' => '1.32', 10536 'experimental' => '0.010', 10537 'overload' => '1.23', 10538 'threads' => '1.96', 10539 'version' => '0.9909', 10540 'version::regex' => '0.9909', 10541 'version::vpp' => '0.9909', 10542 }, 10543 removed => { 10544 } 10545 }, 10546 5.021005 => { 10547 delta_from => 5.021004, 10548 changed => { 10549 'B' => '1.52', 10550 'B::Concise' => '0.994', 10551 'B::Debug' => '1.22', 10552 'B::Deparse' => '1.29', 10553 'B::Op_private' => '5.021005', 10554 'CPAN::Meta' => '2.142690', 10555 'CPAN::Meta::Converter' => '2.142690', 10556 'CPAN::Meta::Feature' => '2.142690', 10557 'CPAN::Meta::History' => '2.142690', 10558 'CPAN::Meta::Merge' => '2.142690', 10559 'CPAN::Meta::Prereqs' => '2.142690', 10560 'CPAN::Meta::Spec' => '2.142690', 10561 'CPAN::Meta::Validator' => '2.142690', 10562 'Compress::Raw::Bzip2' => '2.066', 10563 'Compress::Raw::Zlib' => '2.066', 10564 'Compress::Zlib' => '2.066', 10565 'Config' => '5.021005', 10566 'Cwd' => '3.51', 10567 'DynaLoader' => '1.27', 10568 'Errno' => '1.21', 10569 'ExtUtils::CBuilder' => '0.280220', 10570 'ExtUtils::CBuilder::Base'=> '0.280220', 10571 'ExtUtils::CBuilder::Platform::Unix'=> '0.280220', 10572 'ExtUtils::CBuilder::Platform::VMS'=> '0.280220', 10573 'ExtUtils::CBuilder::Platform::Windows'=> '0.280220', 10574 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280220', 10575 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280220', 10576 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280220', 10577 'ExtUtils::CBuilder::Platform::aix'=> '0.280220', 10578 'ExtUtils::CBuilder::Platform::android'=> '0.280220', 10579 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280220', 10580 'ExtUtils::CBuilder::Platform::darwin'=> '0.280220', 10581 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280220', 10582 'ExtUtils::CBuilder::Platform::os2'=> '0.280220', 10583 'ExtUtils::Miniperl' => '1.03', 10584 'Fcntl' => '1.13', 10585 'File::Find' => '1.29', 10586 'File::Spec' => '3.51', 10587 'File::Spec::Cygwin' => '3.51', 10588 'File::Spec::Epoc' => '3.51', 10589 'File::Spec::Functions' => '3.51', 10590 'File::Spec::Mac' => '3.51', 10591 'File::Spec::OS2' => '3.51', 10592 'File::Spec::Unix' => '3.51', 10593 'File::Spec::VMS' => '3.51', 10594 'File::Spec::Win32' => '3.51', 10595 'HTTP::Tiny' => '0.050', 10596 'IO::Compress::Adapter::Bzip2'=> '2.066', 10597 'IO::Compress::Adapter::Deflate'=> '2.066', 10598 'IO::Compress::Adapter::Identity'=> '2.066', 10599 'IO::Compress::Base' => '2.066', 10600 'IO::Compress::Base::Common'=> '2.066', 10601 'IO::Compress::Bzip2' => '2.066', 10602 'IO::Compress::Deflate' => '2.066', 10603 'IO::Compress::Gzip' => '2.066', 10604 'IO::Compress::Gzip::Constants'=> '2.066', 10605 'IO::Compress::RawDeflate'=> '2.066', 10606 'IO::Compress::Zip' => '2.066', 10607 'IO::Compress::Zip::Constants'=> '2.066', 10608 'IO::Compress::Zlib::Constants'=> '2.066', 10609 'IO::Compress::Zlib::Extra'=> '2.066', 10610 'IO::Uncompress::Adapter::Bunzip2'=> '2.066', 10611 'IO::Uncompress::Adapter::Identity'=> '2.066', 10612 'IO::Uncompress::Adapter::Inflate'=> '2.066', 10613 'IO::Uncompress::AnyInflate'=> '2.066', 10614 'IO::Uncompress::AnyUncompress'=> '2.066', 10615 'IO::Uncompress::Base' => '2.066', 10616 'IO::Uncompress::Bunzip2'=> '2.066', 10617 'IO::Uncompress::Gunzip'=> '2.066', 10618 'IO::Uncompress::Inflate'=> '2.066', 10619 'IO::Uncompress::RawInflate'=> '2.066', 10620 'IO::Uncompress::Unzip' => '2.066', 10621 'JSON::PP' => '2.27300', 10622 'Module::CoreList' => '5.20141020', 10623 'Module::CoreList::TieHashDelta'=> '5.20141020', 10624 'Module::CoreList::Utils'=> '5.20141020', 10625 'Net::Cmd' => '3.02', 10626 'Net::Config' => '3.02', 10627 'Net::Domain' => '3.02', 10628 'Net::FTP' => '3.02', 10629 'Net::FTP::A' => '3.02', 10630 'Net::FTP::E' => '3.02', 10631 'Net::FTP::I' => '3.02', 10632 'Net::FTP::L' => '3.02', 10633 'Net::FTP::dataconn' => '3.02', 10634 'Net::NNTP' => '3.02', 10635 'Net::Netrc' => '3.02', 10636 'Net::POP3' => '3.02', 10637 'Net::SMTP' => '3.02', 10638 'Net::Time' => '3.02', 10639 'Opcode' => '1.29', 10640 'POSIX' => '1.45', 10641 'Socket' => '2.016', 10642 'Test::Builder' => '1.001008', 10643 'Test::Builder::Module' => '1.001008', 10644 'Test::More' => '1.001008', 10645 'Test::Simple' => '1.001008', 10646 'XS::APItest' => '0.65', 10647 'XSLoader' => '0.18', 10648 'attributes' => '0.24', 10649 'experimental' => '0.012', 10650 'feature' => '1.38', 10651 'perlfaq' => '5.0150046', 10652 're' => '0.27', 10653 'threads::shared' => '1.47', 10654 'warnings' => '1.28', 10655 'warnings::register' => '1.04', 10656 }, 10657 removed => { 10658 } 10659 }, 10660 5.021006 => { 10661 delta_from => 5.021005, 10662 changed => { 10663 'App::Prove' => '3.34', 10664 'App::Prove::State' => '3.34', 10665 'App::Prove::State::Result'=> '3.34', 10666 'App::Prove::State::Result::Test'=> '3.34', 10667 'B' => '1.53', 10668 'B::Concise' => '0.995', 10669 'B::Deparse' => '1.30', 10670 'B::Op_private' => '5.021006', 10671 'CPAN::Meta' => '2.143240', 10672 'CPAN::Meta::Converter' => '2.143240', 10673 'CPAN::Meta::Feature' => '2.143240', 10674 'CPAN::Meta::History' => '2.143240', 10675 'CPAN::Meta::Merge' => '2.143240', 10676 'CPAN::Meta::Prereqs' => '2.143240', 10677 'CPAN::Meta::Requirements'=> '2.130', 10678 'CPAN::Meta::Spec' => '2.143240', 10679 'CPAN::Meta::Validator' => '2.143240', 10680 'Config' => '5.021006', 10681 'Devel::Peek' => '1.19', 10682 'Digest::SHA' => '5.93', 10683 'DynaLoader' => '1.28', 10684 'Encode' => '2.64', 10685 'Exporter' => '5.72', 10686 'Exporter::Heavy' => '5.72', 10687 'ExtUtils::Command::MM' => '7.02', 10688 'ExtUtils::Liblist' => '7.02', 10689 'ExtUtils::Liblist::Kid'=> '7.02', 10690 'ExtUtils::MM' => '7.02', 10691 'ExtUtils::MM_AIX' => '7.02', 10692 'ExtUtils::MM_Any' => '7.02', 10693 'ExtUtils::MM_BeOS' => '7.02', 10694 'ExtUtils::MM_Cygwin' => '7.02', 10695 'ExtUtils::MM_DOS' => '7.02', 10696 'ExtUtils::MM_Darwin' => '7.02', 10697 'ExtUtils::MM_MacOS' => '7.02', 10698 'ExtUtils::MM_NW5' => '7.02', 10699 'ExtUtils::MM_OS2' => '7.02', 10700 'ExtUtils::MM_QNX' => '7.02', 10701 'ExtUtils::MM_UWIN' => '7.02', 10702 'ExtUtils::MM_Unix' => '7.02', 10703 'ExtUtils::MM_VMS' => '7.02', 10704 'ExtUtils::MM_VOS' => '7.02', 10705 'ExtUtils::MM_Win32' => '7.02', 10706 'ExtUtils::MM_Win95' => '7.02', 10707 'ExtUtils::MY' => '7.02', 10708 'ExtUtils::MakeMaker' => '7.02', 10709 'ExtUtils::MakeMaker::Config'=> '7.02', 10710 'ExtUtils::MakeMaker::Locale'=> '7.02', 10711 'ExtUtils::MakeMaker::version'=> '7.02', 10712 'ExtUtils::MakeMaker::version::regex'=> '7.02', 10713 'ExtUtils::MakeMaker::version::vpp'=> '7.02', 10714 'ExtUtils::Manifest' => '1.69', 10715 'ExtUtils::Mkbootstrap' => '7.02', 10716 'ExtUtils::Mksymlists' => '7.02', 10717 'ExtUtils::ParseXS' => '3.26', 10718 'ExtUtils::ParseXS::Constants'=> '3.26', 10719 'ExtUtils::ParseXS::CountLines'=> '3.26', 10720 'ExtUtils::ParseXS::Eval'=> '3.26', 10721 'ExtUtils::ParseXS::Utilities'=> '3.26', 10722 'ExtUtils::testlib' => '7.02', 10723 'File::Spec::VMS' => '3.52', 10724 'HTTP::Tiny' => '0.051', 10725 'I18N::Langinfo' => '0.12', 10726 'IO::Socket' => '1.38', 10727 'Module::CoreList' => '5.20141120', 10728 'Module::CoreList::TieHashDelta'=> '5.20141120', 10729 'Module::CoreList::Utils'=> '5.20141120', 10730 'POSIX' => '1.46', 10731 'PerlIO::encoding' => '0.20', 10732 'PerlIO::scalar' => '0.20', 10733 'TAP::Base' => '3.34', 10734 'TAP::Formatter::Base' => '3.34', 10735 'TAP::Formatter::Color' => '3.34', 10736 'TAP::Formatter::Console'=> '3.34', 10737 'TAP::Formatter::Console::ParallelSession'=> '3.34', 10738 'TAP::Formatter::Console::Session'=> '3.34', 10739 'TAP::Formatter::File' => '3.34', 10740 'TAP::Formatter::File::Session'=> '3.34', 10741 'TAP::Formatter::Session'=> '3.34', 10742 'TAP::Harness' => '3.34', 10743 'TAP::Harness::Env' => '3.34', 10744 'TAP::Object' => '3.34', 10745 'TAP::Parser' => '3.34', 10746 'TAP::Parser::Aggregator'=> '3.34', 10747 'TAP::Parser::Grammar' => '3.34', 10748 'TAP::Parser::Iterator' => '3.34', 10749 'TAP::Parser::Iterator::Array'=> '3.34', 10750 'TAP::Parser::Iterator::Process'=> '3.34', 10751 'TAP::Parser::Iterator::Stream'=> '3.34', 10752 'TAP::Parser::IteratorFactory'=> '3.34', 10753 'TAP::Parser::Multiplexer'=> '3.34', 10754 'TAP::Parser::Result' => '3.34', 10755 'TAP::Parser::Result::Bailout'=> '3.34', 10756 'TAP::Parser::Result::Comment'=> '3.34', 10757 'TAP::Parser::Result::Plan'=> '3.34', 10758 'TAP::Parser::Result::Pragma'=> '3.34', 10759 'TAP::Parser::Result::Test'=> '3.34', 10760 'TAP::Parser::Result::Unknown'=> '3.34', 10761 'TAP::Parser::Result::Version'=> '3.34', 10762 'TAP::Parser::Result::YAML'=> '3.34', 10763 'TAP::Parser::ResultFactory'=> '3.34', 10764 'TAP::Parser::Scheduler'=> '3.34', 10765 'TAP::Parser::Scheduler::Job'=> '3.34', 10766 'TAP::Parser::Scheduler::Spinner'=> '3.34', 10767 'TAP::Parser::Source' => '3.34', 10768 'TAP::Parser::SourceHandler'=> '3.34', 10769 'TAP::Parser::SourceHandler::Executable'=> '3.34', 10770 'TAP::Parser::SourceHandler::File'=> '3.34', 10771 'TAP::Parser::SourceHandler::Handle'=> '3.34', 10772 'TAP::Parser::SourceHandler::Perl'=> '3.34', 10773 'TAP::Parser::SourceHandler::RawTAP'=> '3.34', 10774 'TAP::Parser::YAMLish::Reader'=> '3.34', 10775 'TAP::Parser::YAMLish::Writer'=> '3.34', 10776 'Test::Builder' => '1.301001_075', 10777 'Test::Builder::Module' => '1.301001_075', 10778 'Test::Builder::Tester' => '1.301001_075', 10779 'Test::Builder::Tester::Color'=> '1.301001_075', 10780 'Test::Harness' => '3.34', 10781 'Test::More' => '1.301001_075', 10782 'Test::More::DeepCheck' => undef, 10783 'Test::More::DeepCheck::Strict'=> undef, 10784 'Test::More::DeepCheck::Tolerant'=> undef, 10785 'Test::More::Tools' => undef, 10786 'Test::MostlyLike' => undef, 10787 'Test::Simple' => '1.301001_075', 10788 'Test::Stream' => '1.301001_075', 10789 'Test::Stream::ArrayBase'=> undef, 10790 'Test::Stream::ArrayBase::Meta'=> undef, 10791 'Test::Stream::Carp' => undef, 10792 'Test::Stream::Context' => undef, 10793 'Test::Stream::Event' => undef, 10794 'Test::Stream::Event::Bail'=> undef, 10795 'Test::Stream::Event::Child'=> undef, 10796 'Test::Stream::Event::Diag'=> undef, 10797 'Test::Stream::Event::Finish'=> undef, 10798 'Test::Stream::Event::Note'=> undef, 10799 'Test::Stream::Event::Ok'=> undef, 10800 'Test::Stream::Event::Plan'=> undef, 10801 'Test::Stream::Event::Subtest'=> undef, 10802 'Test::Stream::ExitMagic'=> undef, 10803 'Test::Stream::ExitMagic::Context'=> undef, 10804 'Test::Stream::Exporter'=> undef, 10805 'Test::Stream::Exporter::Meta'=> undef, 10806 'Test::Stream::IOSets' => undef, 10807 'Test::Stream::Meta' => undef, 10808 'Test::Stream::PackageUtil'=> undef, 10809 'Test::Stream::Tester' => undef, 10810 'Test::Stream::Tester::Checks'=> undef, 10811 'Test::Stream::Tester::Checks::Event'=> undef, 10812 'Test::Stream::Tester::Events'=> undef, 10813 'Test::Stream::Tester::Events::Event'=> undef, 10814 'Test::Stream::Tester::Grab'=> undef, 10815 'Test::Stream::Threads' => undef, 10816 'Test::Stream::Toolset' => undef, 10817 'Test::Stream::Util' => undef, 10818 'Test::Tester' => '1.301001_075', 10819 'Test::Tester::Capture' => undef, 10820 'Test::use::ok' => '1.301001_075', 10821 'Unicode::UCD' => '0.59', 10822 'XS::APItest' => '0.68', 10823 'XSLoader' => '0.19', 10824 'experimental' => '0.013', 10825 'locale' => '1.05', 10826 'ok' => '1.301001_075', 10827 'overload' => '1.24', 10828 're' => '0.28', 10829 'warnings' => '1.29', 10830 }, 10831 removed => { 10832 } 10833 }, 10834 5.021007 => { 10835 delta_from => 5.021006, 10836 changed => { 10837 'Archive::Tar' => '2.04', 10838 'Archive::Tar::Constant'=> '2.04', 10839 'Archive::Tar::File' => '2.04', 10840 'B' => '1.54', 10841 'B::Concise' => '0.996', 10842 'B::Deparse' => '1.31', 10843 'B::Op_private' => '5.021007', 10844 'B::Showlex' => '1.05', 10845 'Compress::Raw::Bzip2' => '2.067', 10846 'Compress::Raw::Zlib' => '2.067', 10847 'Compress::Zlib' => '2.067', 10848 'Config' => '5.021007', 10849 'Cwd' => '3.54', 10850 'DB_File' => '1.834', 10851 'Data::Dumper' => '2.155', 10852 'Devel::PPPort' => '3.25', 10853 'Devel::Peek' => '1.20', 10854 'DynaLoader' => '1.29', 10855 'Encode' => '2.67', 10856 'Errno' => '1.22', 10857 'ExtUtils::CBuilder' => '0.280221', 10858 'ExtUtils::CBuilder::Base'=> '0.280221', 10859 'ExtUtils::CBuilder::Platform::Unix'=> '0.280221', 10860 'ExtUtils::CBuilder::Platform::VMS'=> '0.280221', 10861 'ExtUtils::CBuilder::Platform::Windows'=> '0.280221', 10862 'ExtUtils::CBuilder::Platform::aix'=> '0.280221', 10863 'ExtUtils::CBuilder::Platform::android'=> '0.280221', 10864 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221', 10865 'ExtUtils::CBuilder::Platform::darwin'=> '0.280221', 10866 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221', 10867 'ExtUtils::CBuilder::Platform::os2'=> '0.280221', 10868 'ExtUtils::Command::MM' => '7.04', 10869 'ExtUtils::Liblist' => '7.04', 10870 'ExtUtils::Liblist::Kid'=> '7.04', 10871 'ExtUtils::MM' => '7.04', 10872 'ExtUtils::MM_AIX' => '7.04', 10873 'ExtUtils::MM_Any' => '7.04', 10874 'ExtUtils::MM_BeOS' => '7.04', 10875 'ExtUtils::MM_Cygwin' => '7.04', 10876 'ExtUtils::MM_DOS' => '7.04', 10877 'ExtUtils::MM_Darwin' => '7.04', 10878 'ExtUtils::MM_MacOS' => '7.04', 10879 'ExtUtils::MM_NW5' => '7.04', 10880 'ExtUtils::MM_OS2' => '7.04', 10881 'ExtUtils::MM_QNX' => '7.04', 10882 'ExtUtils::MM_UWIN' => '7.04', 10883 'ExtUtils::MM_Unix' => '7.04', 10884 'ExtUtils::MM_VMS' => '7.04', 10885 'ExtUtils::MM_VOS' => '7.04', 10886 'ExtUtils::MM_Win32' => '7.04', 10887 'ExtUtils::MM_Win95' => '7.04', 10888 'ExtUtils::MY' => '7.04', 10889 'ExtUtils::MakeMaker' => '7.04', 10890 'ExtUtils::MakeMaker::Config'=> '7.04', 10891 'ExtUtils::MakeMaker::Locale'=> '7.04', 10892 'ExtUtils::MakeMaker::version'=> '7.04', 10893 'ExtUtils::MakeMaker::version::regex'=> '7.04', 10894 'ExtUtils::MakeMaker::version::vpp'=> '7.04', 10895 'ExtUtils::Mkbootstrap' => '7.04', 10896 'ExtUtils::Mksymlists' => '7.04', 10897 'ExtUtils::ParseXS' => '3.27', 10898 'ExtUtils::ParseXS::Constants'=> '3.27', 10899 'ExtUtils::ParseXS::CountLines'=> '3.27', 10900 'ExtUtils::ParseXS::Eval'=> '3.27', 10901 'ExtUtils::ParseXS::Utilities'=> '3.27', 10902 'ExtUtils::testlib' => '7.04', 10903 'File::Spec' => '3.53', 10904 'File::Spec::Cygwin' => '3.54', 10905 'File::Spec::Epoc' => '3.54', 10906 'File::Spec::Functions' => '3.54', 10907 'File::Spec::Mac' => '3.54', 10908 'File::Spec::OS2' => '3.54', 10909 'File::Spec::Unix' => '3.54', 10910 'File::Spec::VMS' => '3.54', 10911 'File::Spec::Win32' => '3.54', 10912 'Filter::Util::Call' => '1.51', 10913 'HTTP::Tiny' => '0.053', 10914 'IO' => '1.35', 10915 'IO::Compress::Adapter::Bzip2'=> '2.067', 10916 'IO::Compress::Adapter::Deflate'=> '2.067', 10917 'IO::Compress::Adapter::Identity'=> '2.067', 10918 'IO::Compress::Base' => '2.067', 10919 'IO::Compress::Base::Common'=> '2.067', 10920 'IO::Compress::Bzip2' => '2.067', 10921 'IO::Compress::Deflate' => '2.067', 10922 'IO::Compress::Gzip' => '2.067', 10923 'IO::Compress::Gzip::Constants'=> '2.067', 10924 'IO::Compress::RawDeflate'=> '2.067', 10925 'IO::Compress::Zip' => '2.067', 10926 'IO::Compress::Zip::Constants'=> '2.067', 10927 'IO::Compress::Zlib::Constants'=> '2.067', 10928 'IO::Compress::Zlib::Extra'=> '2.067', 10929 'IO::Socket::IP' => '0.34', 10930 'IO::Uncompress::Adapter::Bunzip2'=> '2.067', 10931 'IO::Uncompress::Adapter::Identity'=> '2.067', 10932 'IO::Uncompress::Adapter::Inflate'=> '2.067', 10933 'IO::Uncompress::AnyInflate'=> '2.067', 10934 'IO::Uncompress::AnyUncompress'=> '2.067', 10935 'IO::Uncompress::Base' => '2.067', 10936 'IO::Uncompress::Bunzip2'=> '2.067', 10937 'IO::Uncompress::Gunzip'=> '2.067', 10938 'IO::Uncompress::Inflate'=> '2.067', 10939 'IO::Uncompress::RawInflate'=> '2.067', 10940 'IO::Uncompress::Unzip' => '2.067', 10941 'Locale::Codes' => '3.33', 10942 'Locale::Codes::Constants'=> '3.33', 10943 'Locale::Codes::Country'=> '3.33', 10944 'Locale::Codes::Country_Codes'=> '3.33', 10945 'Locale::Codes::Country_Retired'=> '3.33', 10946 'Locale::Codes::Currency'=> '3.33', 10947 'Locale::Codes::Currency_Codes'=> '3.33', 10948 'Locale::Codes::Currency_Retired'=> '3.33', 10949 'Locale::Codes::LangExt'=> '3.33', 10950 'Locale::Codes::LangExt_Codes'=> '3.33', 10951 'Locale::Codes::LangExt_Retired'=> '3.33', 10952 'Locale::Codes::LangFam'=> '3.33', 10953 'Locale::Codes::LangFam_Codes'=> '3.33', 10954 'Locale::Codes::LangFam_Retired'=> '3.33', 10955 'Locale::Codes::LangVar'=> '3.33', 10956 'Locale::Codes::LangVar_Codes'=> '3.33', 10957 'Locale::Codes::LangVar_Retired'=> '3.33', 10958 'Locale::Codes::Language'=> '3.33', 10959 'Locale::Codes::Language_Codes'=> '3.33', 10960 'Locale::Codes::Language_Retired'=> '3.33', 10961 'Locale::Codes::Script' => '3.33', 10962 'Locale::Codes::Script_Codes'=> '3.33', 10963 'Locale::Codes::Script_Retired'=> '3.33', 10964 'Locale::Country' => '3.33', 10965 'Locale::Currency' => '3.33', 10966 'Locale::Language' => '3.33', 10967 'Locale::Maketext' => '1.26', 10968 'Locale::Script' => '3.33', 10969 'Module::CoreList' => '5.20141220', 10970 'Module::CoreList::TieHashDelta'=> '5.20141220', 10971 'Module::CoreList::Utils'=> '5.20141220', 10972 'NDBM_File' => '1.14', 10973 'Net::Cmd' => '3.04', 10974 'Net::Config' => '3.04', 10975 'Net::Domain' => '3.04', 10976 'Net::FTP' => '3.04', 10977 'Net::FTP::A' => '3.04', 10978 'Net::FTP::E' => '3.04', 10979 'Net::FTP::I' => '3.04', 10980 'Net::FTP::L' => '3.04', 10981 'Net::FTP::dataconn' => '3.04', 10982 'Net::NNTP' => '3.04', 10983 'Net::Netrc' => '3.04', 10984 'Net::POP3' => '3.04', 10985 'Net::SMTP' => '3.04', 10986 'Net::Time' => '3.04', 10987 'Opcode' => '1.30', 10988 'POSIX' => '1.48', 10989 'PerlIO::scalar' => '0.21', 10990 'Pod::Escapes' => '1.07', 10991 'SDBM_File' => '1.12', 10992 'Storable' => '2.52', 10993 'Sys::Hostname' => '1.20', 10994 'Test::Builder' => '1.301001_090', 10995 'Test::Builder::Module' => '1.301001_090', 10996 'Test::Builder::Tester' => '1.301001_090', 10997 'Test::Builder::Tester::Color'=> '1.301001_090', 10998 'Test::CanFork' => undef, 10999 'Test::CanThread' => undef, 11000 'Test::More' => '1.301001_090', 11001 'Test::Simple' => '1.301001_090', 11002 'Test::Stream' => '1.301001_090', 11003 'Test::Stream::API' => undef, 11004 'Test::Stream::ForceExit'=> undef, 11005 'Test::Stream::Subtest' => undef, 11006 'Test::Tester' => '1.301001_090', 11007 'Test::use::ok' => '1.301001_090', 11008 'Unicode::Collate' => '1.09', 11009 'Unicode::Collate::CJK::Big5'=> '1.09', 11010 'Unicode::Collate::CJK::GB2312'=> '1.09', 11011 'Unicode::Collate::CJK::JISX0208'=> '1.09', 11012 'Unicode::Collate::CJK::Korean'=> '1.09', 11013 'Unicode::Collate::CJK::Pinyin'=> '1.09', 11014 'Unicode::Collate::CJK::Stroke'=> '1.09', 11015 'Unicode::Collate::CJK::Zhuyin'=> '1.09', 11016 'Unicode::Collate::Locale'=> '1.09', 11017 'XS::APItest' => '0.69', 11018 'XSLoader' => '0.20', 11019 '_charnames' => '1.43', 11020 'arybase' => '0.09', 11021 'charnames' => '1.43', 11022 'feature' => '1.39', 11023 'mro' => '1.17', 11024 'ok' => '1.301001_090', 11025 'strict' => '1.09', 11026 'threads' => '1.96_001', 11027 }, 11028 removed => { 11029 } 11030 }, 11031 5.021008 => { 11032 delta_from => 5.021007, 11033 changed => { 11034 'App::Prove' => '3.35', 11035 'App::Prove::State' => '3.35', 11036 'App::Prove::State::Result'=> '3.35', 11037 'App::Prove::State::Result::Test'=> '3.35', 11038 'B' => '1.55', 11039 'B::Deparse' => '1.32', 11040 'B::Op_private' => '5.021008', 11041 'CPAN::Meta::Requirements'=> '2.131', 11042 'Compress::Raw::Bzip2' => '2.068', 11043 'Compress::Raw::Zlib' => '2.068', 11044 'Compress::Zlib' => '2.068', 11045 'Config' => '5.021008', 11046 'DB_File' => '1.835', 11047 'Data::Dumper' => '2.156', 11048 'Devel::PPPort' => '3.28', 11049 'Devel::Peek' => '1.21', 11050 'Digest::MD5' => '2.54', 11051 'Digest::SHA' => '5.95', 11052 'DynaLoader' => '1.30', 11053 'ExtUtils::Command' => '1.20', 11054 'ExtUtils::Manifest' => '1.70', 11055 'Fatal' => '2.26', 11056 'File::Glob' => '1.24', 11057 'Filter::Util::Call' => '1.54', 11058 'Getopt::Long' => '2.43', 11059 'IO::Compress::Adapter::Bzip2'=> '2.068', 11060 'IO::Compress::Adapter::Deflate'=> '2.068', 11061 'IO::Compress::Adapter::Identity'=> '2.068', 11062 'IO::Compress::Base' => '2.068', 11063 'IO::Compress::Base::Common'=> '2.068', 11064 'IO::Compress::Bzip2' => '2.068', 11065 'IO::Compress::Deflate' => '2.068', 11066 'IO::Compress::Gzip' => '2.068', 11067 'IO::Compress::Gzip::Constants'=> '2.068', 11068 'IO::Compress::RawDeflate'=> '2.068', 11069 'IO::Compress::Zip' => '2.068', 11070 'IO::Compress::Zip::Constants'=> '2.068', 11071 'IO::Compress::Zlib::Constants'=> '2.068', 11072 'IO::Compress::Zlib::Extra'=> '2.068', 11073 'IO::Socket::IP' => '0.36', 11074 'IO::Uncompress::Adapter::Bunzip2'=> '2.068', 11075 'IO::Uncompress::Adapter::Identity'=> '2.068', 11076 'IO::Uncompress::Adapter::Inflate'=> '2.068', 11077 'IO::Uncompress::AnyInflate'=> '2.068', 11078 'IO::Uncompress::AnyUncompress'=> '2.068', 11079 'IO::Uncompress::Base' => '2.068', 11080 'IO::Uncompress::Bunzip2'=> '2.068', 11081 'IO::Uncompress::Gunzip'=> '2.068', 11082 'IO::Uncompress::Inflate'=> '2.068', 11083 'IO::Uncompress::RawInflate'=> '2.068', 11084 'IO::Uncompress::Unzip' => '2.068', 11085 'MIME::Base64' => '3.15', 11086 'Module::CoreList' => '5.20150220', 11087 'Module::CoreList::TieHashDelta'=> '5.20150220', 11088 'Module::CoreList::Utils'=> '5.20150220', 11089 'Module::Load::Conditional'=> '0.64', 11090 'Module::Metadata' => '1.000026', 11091 'Net::Cmd' => '3.05', 11092 'Net::Config' => '3.05', 11093 'Net::Domain' => '3.05', 11094 'Net::FTP' => '3.05', 11095 'Net::FTP::A' => '3.05', 11096 'Net::FTP::E' => '3.05', 11097 'Net::FTP::I' => '3.05', 11098 'Net::FTP::L' => '3.05', 11099 'Net::FTP::dataconn' => '3.05', 11100 'Net::NNTP' => '3.05', 11101 'Net::Netrc' => '3.05', 11102 'Net::POP3' => '3.05', 11103 'Net::SMTP' => '3.05', 11104 'Net::Time' => '3.05', 11105 'Opcode' => '1.31', 11106 'POSIX' => '1.49', 11107 'PerlIO::encoding' => '0.21', 11108 'Pod::Simple' => '3.29', 11109 'Pod::Simple::BlackBox' => '3.29', 11110 'Pod::Simple::Checker' => '3.29', 11111 'Pod::Simple::Debug' => '3.29', 11112 'Pod::Simple::DumpAsText'=> '3.29', 11113 'Pod::Simple::DumpAsXML'=> '3.29', 11114 'Pod::Simple::HTML' => '3.29', 11115 'Pod::Simple::HTMLBatch'=> '3.29', 11116 'Pod::Simple::LinkSection'=> '3.29', 11117 'Pod::Simple::Methody' => '3.29', 11118 'Pod::Simple::Progress' => '3.29', 11119 'Pod::Simple::PullParser'=> '3.29', 11120 'Pod::Simple::PullParserEndToken'=> '3.29', 11121 'Pod::Simple::PullParserStartToken'=> '3.29', 11122 'Pod::Simple::PullParserTextToken'=> '3.29', 11123 'Pod::Simple::PullParserToken'=> '3.29', 11124 'Pod::Simple::RTF' => '3.29', 11125 'Pod::Simple::Search' => '3.29', 11126 'Pod::Simple::SimpleTree'=> '3.29', 11127 'Pod::Simple::Text' => '3.29', 11128 'Pod::Simple::TextContent'=> '3.29', 11129 'Pod::Simple::TiedOutFH'=> '3.29', 11130 'Pod::Simple::Transcode'=> '3.29', 11131 'Pod::Simple::TranscodeDumb'=> '3.29', 11132 'Pod::Simple::TranscodeSmart'=> '3.29', 11133 'Pod::Simple::XHTML' => '3.29', 11134 'Pod::Simple::XMLOutStream'=> '3.29', 11135 'SDBM_File' => '1.13', 11136 'Safe' => '2.39', 11137 'TAP::Base' => '3.35', 11138 'TAP::Formatter::Base' => '3.35', 11139 'TAP::Formatter::Color' => '3.35', 11140 'TAP::Formatter::Console'=> '3.35', 11141 'TAP::Formatter::Console::ParallelSession'=> '3.35', 11142 'TAP::Formatter::Console::Session'=> '3.35', 11143 'TAP::Formatter::File' => '3.35', 11144 'TAP::Formatter::File::Session'=> '3.35', 11145 'TAP::Formatter::Session'=> '3.35', 11146 'TAP::Harness' => '3.35', 11147 'TAP::Harness::Env' => '3.35', 11148 'TAP::Object' => '3.35', 11149 'TAP::Parser' => '3.35', 11150 'TAP::Parser::Aggregator'=> '3.35', 11151 'TAP::Parser::Grammar' => '3.35', 11152 'TAP::Parser::Iterator' => '3.35', 11153 'TAP::Parser::Iterator::Array'=> '3.35', 11154 'TAP::Parser::Iterator::Process'=> '3.35', 11155 'TAP::Parser::Iterator::Stream'=> '3.35', 11156 'TAP::Parser::IteratorFactory'=> '3.35', 11157 'TAP::Parser::Multiplexer'=> '3.35', 11158 'TAP::Parser::Result' => '3.35', 11159 'TAP::Parser::Result::Bailout'=> '3.35', 11160 'TAP::Parser::Result::Comment'=> '3.35', 11161 'TAP::Parser::Result::Plan'=> '3.35', 11162 'TAP::Parser::Result::Pragma'=> '3.35', 11163 'TAP::Parser::Result::Test'=> '3.35', 11164 'TAP::Parser::Result::Unknown'=> '3.35', 11165 'TAP::Parser::Result::Version'=> '3.35', 11166 'TAP::Parser::Result::YAML'=> '3.35', 11167 'TAP::Parser::ResultFactory'=> '3.35', 11168 'TAP::Parser::Scheduler'=> '3.35', 11169 'TAP::Parser::Scheduler::Job'=> '3.35', 11170 'TAP::Parser::Scheduler::Spinner'=> '3.35', 11171 'TAP::Parser::Source' => '3.35', 11172 'TAP::Parser::SourceHandler'=> '3.35', 11173 'TAP::Parser::SourceHandler::Executable'=> '3.35', 11174 'TAP::Parser::SourceHandler::File'=> '3.35', 11175 'TAP::Parser::SourceHandler::Handle'=> '3.35', 11176 'TAP::Parser::SourceHandler::Perl'=> '3.35', 11177 'TAP::Parser::SourceHandler::RawTAP'=> '3.35', 11178 'TAP::Parser::YAMLish::Reader'=> '3.35', 11179 'TAP::Parser::YAMLish::Writer'=> '3.35', 11180 'Test::Builder' => '1.301001_097', 11181 'Test::Builder::Module' => '1.301001_097', 11182 'Test::Builder::Tester' => '1.301001_097', 11183 'Test::Builder::Tester::Color'=> '1.301001_097', 11184 'Test::Harness' => '3.35', 11185 'Test::More' => '1.301001_097', 11186 'Test::Simple' => '1.301001_097', 11187 'Test::Stream' => '1.301001_097', 11188 'Test::Stream::Block' => undef, 11189 'Test::Tester' => '1.301001_097', 11190 'Test::Tester::CaptureRunner'=> undef, 11191 'Test::Tester::Delegate'=> undef, 11192 'Test::use::ok' => '1.301001_097', 11193 'Unicode::Collate' => '1.10', 11194 'Unicode::Collate::CJK::Big5'=> '1.10', 11195 'Unicode::Collate::CJK::GB2312'=> '1.10', 11196 'Unicode::Collate::CJK::JISX0208'=> '1.10', 11197 'Unicode::Collate::CJK::Korean'=> '1.10', 11198 'Unicode::Collate::CJK::Pinyin'=> '1.10', 11199 'Unicode::Collate::CJK::Stroke'=> '1.10', 11200 'Unicode::Collate::CJK::Zhuyin'=> '1.10', 11201 'Unicode::Collate::Locale'=> '1.10', 11202 'VMS::DCLsym' => '1.06', 11203 'XS::APItest' => '0.70', 11204 'arybase' => '0.10', 11205 'attributes' => '0.25', 11206 'autodie' => '2.26', 11207 'autodie::Scope::Guard' => '2.26', 11208 'autodie::Scope::GuardStack'=> '2.26', 11209 'autodie::ScopeUtil' => '2.26', 11210 'autodie::exception' => '2.26', 11211 'autodie::exception::system'=> '2.26', 11212 'autodie::hints' => '2.26', 11213 'autodie::skip' => '2.26', 11214 'ok' => '1.301001_097', 11215 're' => '0.30', 11216 'warnings' => '1.30', 11217 }, 11218 removed => { 11219 } 11220 }, 11221 5.020002 => { 11222 delta_from => 5.020001, 11223 changed => { 11224 'CPAN::Author' => '5.5002', 11225 'CPAN::CacheMgr' => '5.5002', 11226 'CPAN::FTP' => '5.5006', 11227 'CPAN::HTTP::Client' => '1.9601', 11228 'CPAN::HandleConfig' => '5.5005', 11229 'CPAN::Index' => '1.9601', 11230 'CPAN::LWP::UserAgent' => '1.9601', 11231 'CPAN::Mirrors' => '1.9601', 11232 'Config' => '5.020002', 11233 'Cwd' => '3.48_01', 11234 'Data::Dumper' => '2.151_01', 11235 'Errno' => '1.20_05', 11236 'File::Spec' => '3.48_01', 11237 'File::Spec::Cygwin' => '3.48_01', 11238 'File::Spec::Epoc' => '3.48_01', 11239 'File::Spec::Functions' => '3.48_01', 11240 'File::Spec::Mac' => '3.48_01', 11241 'File::Spec::OS2' => '3.48_01', 11242 'File::Spec::Unix' => '3.48_01', 11243 'File::Spec::VMS' => '3.48_01', 11244 'File::Spec::Win32' => '3.48_01', 11245 'IO::Socket' => '1.38', 11246 'Module::CoreList' => '5.20150214', 11247 'Module::CoreList::TieHashDelta'=> '5.20150214', 11248 'Module::CoreList::Utils'=> '5.20150214', 11249 'PerlIO::scalar' => '0.18_01', 11250 'Pod::PlainText' => '2.07', 11251 'Storable' => '2.49_01', 11252 'VMS::DCLsym' => '1.05_01', 11253 'VMS::Stdio' => '2.41', 11254 'attributes' => '0.23', 11255 'feature' => '1.36_01', 11256 }, 11257 removed => { 11258 } 11259 }, 11260 5.021009 => { 11261 delta_from => 5.021008, 11262 changed => { 11263 'B' => '1.56', 11264 'B::Debug' => '1.23', 11265 'B::Deparse' => '1.33', 11266 'B::Op_private' => '5.021009', 11267 'Benchmark' => '1.20', 11268 'CPAN::Author' => '5.5002', 11269 'CPAN::CacheMgr' => '5.5002', 11270 'CPAN::FTP' => '5.5006', 11271 'CPAN::HTTP::Client' => '1.9601', 11272 'CPAN::HandleConfig' => '5.5005', 11273 'CPAN::Index' => '1.9601', 11274 'CPAN::LWP::UserAgent' => '1.9601', 11275 'CPAN::Meta::Requirements'=> '2.132', 11276 'CPAN::Mirrors' => '1.9601', 11277 'Carp' => '1.35', 11278 'Carp::Heavy' => '1.35', 11279 'Config' => '5.021009', 11280 'Config::Perl::V' => '0.23', 11281 'Data::Dumper' => '2.157', 11282 'Devel::Peek' => '1.22', 11283 'DynaLoader' => '1.31', 11284 'Encode' => '2.70', 11285 'Encode::MIME::Header' => '2.16', 11286 'Errno' => '1.23', 11287 'ExtUtils::Miniperl' => '1.04', 11288 'HTTP::Tiny' => '0.054', 11289 'Module::CoreList' => '5.20150220', 11290 'Module::CoreList::TieHashDelta'=> '5.20150220', 11291 'Module::CoreList::Utils'=> '5.20150220', 11292 'Opcode' => '1.32', 11293 'POSIX' => '1.51', 11294 'Perl::OSType' => '1.008', 11295 'PerlIO::scalar' => '0.22', 11296 'Pod::Find' => '1.63', 11297 'Pod::InputObjects' => '1.63', 11298 'Pod::ParseUtils' => '1.63', 11299 'Pod::Parser' => '1.63', 11300 'Pod::Perldoc' => '3.25', 11301 'Pod::Perldoc::BaseTo' => '3.25', 11302 'Pod::Perldoc::GetOptsOO'=> '3.25', 11303 'Pod::Perldoc::ToANSI' => '3.25', 11304 'Pod::Perldoc::ToChecker'=> '3.25', 11305 'Pod::Perldoc::ToMan' => '3.25', 11306 'Pod::Perldoc::ToNroff' => '3.25', 11307 'Pod::Perldoc::ToPod' => '3.25', 11308 'Pod::Perldoc::ToRtf' => '3.25', 11309 'Pod::Perldoc::ToTerm' => '3.25', 11310 'Pod::Perldoc::ToText' => '3.25', 11311 'Pod::Perldoc::ToTk' => '3.25', 11312 'Pod::Perldoc::ToXml' => '3.25', 11313 'Pod::PlainText' => '2.07', 11314 'Pod::Select' => '1.63', 11315 'Socket' => '2.018', 11316 'Storable' => '2.53', 11317 'Test::Builder' => '1.301001_098', 11318 'Test::Builder::Module' => '1.301001_098', 11319 'Test::Builder::Tester' => '1.301001_098', 11320 'Test::Builder::Tester::Color'=> '1.301001_098', 11321 'Test::More' => '1.301001_098', 11322 'Test::Simple' => '1.301001_098', 11323 'Test::Stream' => '1.301001_098', 11324 'Test::Tester' => '1.301001_098', 11325 'Test::use::ok' => '1.301001_098', 11326 'Unicode::Collate' => '1.11', 11327 'Unicode::Collate::CJK::Big5'=> '1.11', 11328 'Unicode::Collate::CJK::GB2312'=> '1.11', 11329 'Unicode::Collate::CJK::JISX0208'=> '1.11', 11330 'Unicode::Collate::CJK::Korean'=> '1.11', 11331 'Unicode::Collate::CJK::Pinyin'=> '1.11', 11332 'Unicode::Collate::CJK::Stroke'=> '1.11', 11333 'Unicode::Collate::CJK::Zhuyin'=> '1.11', 11334 'Unicode::Collate::Locale'=> '1.11', 11335 'Unicode::UCD' => '0.61', 11336 'VMS::Stdio' => '2.41', 11337 'Win32' => '0.51', 11338 'Win32API::File' => '0.1202', 11339 'attributes' => '0.26', 11340 'bigint' => '0.39', 11341 'bignum' => '0.39', 11342 'bigrat' => '0.39', 11343 'constant' => '1.33', 11344 'encoding' => '2.13', 11345 'feature' => '1.40', 11346 'ok' => '1.301001_098', 11347 'overload' => '1.25', 11348 'perlfaq' => '5.021009', 11349 're' => '0.31', 11350 'threads::shared' => '1.48', 11351 'warnings' => '1.31', 11352 }, 11353 removed => { 11354 } 11355 }, 11356 5.021010 => { 11357 delta_from => 5.021009, 11358 changed => { 11359 'App::Cpan' => '1.63', 11360 'B' => '1.57', 11361 'B::Deparse' => '1.34', 11362 'B::Op_private' => '5.021010', 11363 'Benchmark' => '1.2', 11364 'CPAN' => '2.10', 11365 'CPAN::Distribution' => '2.04', 11366 'CPAN::FirstTime' => '5.5307', 11367 'CPAN::HTTP::Credentials'=> '1.9601', 11368 'CPAN::HandleConfig' => '5.5006', 11369 'CPAN::Meta' => '2.150001', 11370 'CPAN::Meta::Converter' => '2.150001', 11371 'CPAN::Meta::Feature' => '2.150001', 11372 'CPAN::Meta::History' => '2.150001', 11373 'CPAN::Meta::Merge' => '2.150001', 11374 'CPAN::Meta::Prereqs' => '2.150001', 11375 'CPAN::Meta::Spec' => '2.150001', 11376 'CPAN::Meta::Validator' => '2.150001', 11377 'CPAN::Module' => '5.5002', 11378 'CPAN::Plugin' => '0.95', 11379 'CPAN::Plugin::Specfile'=> '0.01', 11380 'CPAN::Shell' => '5.5005', 11381 'Carp' => '1.36', 11382 'Carp::Heavy' => '1.36', 11383 'Config' => '5.02101', 11384 'Cwd' => '3.55', 11385 'DB' => '1.08', 11386 'Data::Dumper' => '2.158', 11387 'Devel::PPPort' => '3.31', 11388 'DynaLoader' => '1.32', 11389 'Encode' => '2.72', 11390 'Encode::Alias' => '2.19', 11391 'File::Spec' => '3.55', 11392 'File::Spec::Cygwin' => '3.55', 11393 'File::Spec::Epoc' => '3.55', 11394 'File::Spec::Functions' => '3.55', 11395 'File::Spec::Mac' => '3.55', 11396 'File::Spec::OS2' => '3.55', 11397 'File::Spec::Unix' => '3.55', 11398 'File::Spec::VMS' => '3.55', 11399 'File::Spec::Win32' => '3.55', 11400 'Getopt::Long' => '2.45', 11401 'Locale::Codes' => '3.34', 11402 'Locale::Codes::Constants'=> '3.34', 11403 'Locale::Codes::Country'=> '3.34', 11404 'Locale::Codes::Country_Codes'=> '3.34', 11405 'Locale::Codes::Country_Retired'=> '3.34', 11406 'Locale::Codes::Currency'=> '3.34', 11407 'Locale::Codes::Currency_Codes'=> '3.34', 11408 'Locale::Codes::Currency_Retired'=> '3.34', 11409 'Locale::Codes::LangExt'=> '3.34', 11410 'Locale::Codes::LangExt_Codes'=> '3.34', 11411 'Locale::Codes::LangExt_Retired'=> '3.34', 11412 'Locale::Codes::LangFam'=> '3.34', 11413 'Locale::Codes::LangFam_Codes'=> '3.34', 11414 'Locale::Codes::LangFam_Retired'=> '3.34', 11415 'Locale::Codes::LangVar'=> '3.34', 11416 'Locale::Codes::LangVar_Codes'=> '3.34', 11417 'Locale::Codes::LangVar_Retired'=> '3.34', 11418 'Locale::Codes::Language'=> '3.34', 11419 'Locale::Codes::Language_Codes'=> '3.34', 11420 'Locale::Codes::Language_Retired'=> '3.34', 11421 'Locale::Codes::Script' => '3.34', 11422 'Locale::Codes::Script_Codes'=> '3.34', 11423 'Locale::Codes::Script_Retired'=> '3.34', 11424 'Locale::Country' => '3.34', 11425 'Locale::Currency' => '3.34', 11426 'Locale::Language' => '3.34', 11427 'Locale::Script' => '3.34', 11428 'Module::CoreList' => '5.20150320', 11429 'Module::CoreList::TieHashDelta'=> '5.20150320', 11430 'Module::CoreList::Utils'=> '5.20150320', 11431 'POSIX' => '1.52', 11432 'Pod::Functions' => '1.09', 11433 'Term::Complete' => '1.403', 11434 'Test::Builder' => '1.001014', 11435 'Test::Builder::IO::Scalar'=> '2.113', 11436 'Test::Builder::Module' => '1.001014', 11437 'Test::Builder::Tester' => '1.28', 11438 'Test::Builder::Tester::Color'=> '1.290001', 11439 'Test::More' => '1.001014', 11440 'Test::Simple' => '1.001014', 11441 'Test::Tester' => '0.114', 11442 'Test::use::ok' => '0.16', 11443 'Text::Balanced' => '2.03', 11444 'Text::ParseWords' => '3.30', 11445 'Unicode::Collate' => '1.12', 11446 'Unicode::Collate::CJK::Big5'=> '1.12', 11447 'Unicode::Collate::CJK::GB2312'=> '1.12', 11448 'Unicode::Collate::CJK::JISX0208'=> '1.12', 11449 'Unicode::Collate::CJK::Korean'=> '1.12', 11450 'Unicode::Collate::CJK::Pinyin'=> '1.12', 11451 'Unicode::Collate::CJK::Stroke'=> '1.12', 11452 'Unicode::Collate::CJK::Zhuyin'=> '1.12', 11453 'Unicode::Collate::Locale'=> '1.12', 11454 'XS::APItest' => '0.71', 11455 'encoding' => '2.14', 11456 'locale' => '1.06', 11457 'meta_notation' => undef, 11458 'ok' => '0.16', 11459 'parent' => '0.232', 11460 're' => '0.32', 11461 'sigtrap' => '1.08', 11462 'threads' => '2.01', 11463 'utf8' => '1.15', 11464 }, 11465 removed => { 11466 'Test::CanFork' => 1, 11467 'Test::CanThread' => 1, 11468 'Test::More::DeepCheck' => 1, 11469 'Test::More::DeepCheck::Strict'=> 1, 11470 'Test::More::DeepCheck::Tolerant'=> 1, 11471 'Test::More::Tools' => 1, 11472 'Test::MostlyLike' => 1, 11473 'Test::Stream' => 1, 11474 'Test::Stream::API' => 1, 11475 'Test::Stream::ArrayBase'=> 1, 11476 'Test::Stream::ArrayBase::Meta'=> 1, 11477 'Test::Stream::Block' => 1, 11478 'Test::Stream::Carp' => 1, 11479 'Test::Stream::Context' => 1, 11480 'Test::Stream::Event' => 1, 11481 'Test::Stream::Event::Bail'=> 1, 11482 'Test::Stream::Event::Child'=> 1, 11483 'Test::Stream::Event::Diag'=> 1, 11484 'Test::Stream::Event::Finish'=> 1, 11485 'Test::Stream::Event::Note'=> 1, 11486 'Test::Stream::Event::Ok'=> 1, 11487 'Test::Stream::Event::Plan'=> 1, 11488 'Test::Stream::Event::Subtest'=> 1, 11489 'Test::Stream::ExitMagic'=> 1, 11490 'Test::Stream::ExitMagic::Context'=> 1, 11491 'Test::Stream::Exporter'=> 1, 11492 'Test::Stream::Exporter::Meta'=> 1, 11493 'Test::Stream::ForceExit'=> 1, 11494 'Test::Stream::IOSets' => 1, 11495 'Test::Stream::Meta' => 1, 11496 'Test::Stream::PackageUtil'=> 1, 11497 'Test::Stream::Subtest' => 1, 11498 'Test::Stream::Tester' => 1, 11499 'Test::Stream::Tester::Checks'=> 1, 11500 'Test::Stream::Tester::Checks::Event'=> 1, 11501 'Test::Stream::Tester::Events'=> 1, 11502 'Test::Stream::Tester::Events::Event'=> 1, 11503 'Test::Stream::Tester::Grab'=> 1, 11504 'Test::Stream::Threads' => 1, 11505 'Test::Stream::Toolset' => 1, 11506 'Test::Stream::Util' => 1, 11507 } 11508 }, 11509 5.021011 => { 11510 delta_from => 5.021010, 11511 changed => { 11512 'B' => '1.58', 11513 'B::Deparse' => '1.35', 11514 'B::Op_private' => '5.021011', 11515 'CPAN' => '2.11', 11516 'Config' => '5.021011', 11517 'Config::Perl::V' => '0.24', 11518 'Cwd' => '3.56', 11519 'ExtUtils::Miniperl' => '1.05', 11520 'ExtUtils::ParseXS' => '3.28', 11521 'ExtUtils::ParseXS::Constants'=> '3.28', 11522 'ExtUtils::ParseXS::CountLines'=> '3.28', 11523 'ExtUtils::ParseXS::Eval'=> '3.28', 11524 'ExtUtils::ParseXS::Utilities'=> '3.28', 11525 'ExtUtils::Typemaps' => '3.28', 11526 'ExtUtils::Typemaps::Cmd'=> '3.28', 11527 'ExtUtils::Typemaps::InputMap'=> '3.28', 11528 'ExtUtils::Typemaps::OutputMap'=> '3.28', 11529 'ExtUtils::Typemaps::Type'=> '3.28', 11530 'File::Spec' => '3.56', 11531 'File::Spec::Cygwin' => '3.56', 11532 'File::Spec::Epoc' => '3.56', 11533 'File::Spec::Functions' => '3.56', 11534 'File::Spec::Mac' => '3.56', 11535 'File::Spec::OS2' => '3.56', 11536 'File::Spec::Unix' => '3.56', 11537 'File::Spec::VMS' => '3.56', 11538 'File::Spec::Win32' => '3.56', 11539 'IO::Socket::IP' => '0.37', 11540 'Module::CoreList' => '5.20150420', 11541 'Module::CoreList::TieHashDelta'=> '5.20150420', 11542 'Module::CoreList::Utils'=> '5.20150420', 11543 'PerlIO::mmap' => '0.014', 11544 'XS::APItest' => '0.72', 11545 'attributes' => '0.27', 11546 'if' => '0.0604', 11547 'utf8' => '1.16', 11548 'warnings' => '1.32', 11549 }, 11550 removed => { 11551 } 11552 }, 11553 5.022000 => { 11554 delta_from => 5.021011, 11555 changed => { 11556 'B::Op_private' => '5.022000', 11557 'Config' => '5.022', 11558 'ExtUtils::Command::MM' => '7.04_01', 11559 'ExtUtils::Liblist' => '7.04_01', 11560 'ExtUtils::Liblist::Kid'=> '7.04_01', 11561 'ExtUtils::MM' => '7.04_01', 11562 'ExtUtils::MM_AIX' => '7.04_01', 11563 'ExtUtils::MM_Any' => '7.04_01', 11564 'ExtUtils::MM_BeOS' => '7.04_01', 11565 'ExtUtils::MM_Cygwin' => '7.04_01', 11566 'ExtUtils::MM_DOS' => '7.04_01', 11567 'ExtUtils::MM_Darwin' => '7.04_01', 11568 'ExtUtils::MM_MacOS' => '7.04_01', 11569 'ExtUtils::MM_NW5' => '7.04_01', 11570 'ExtUtils::MM_OS2' => '7.04_01', 11571 'ExtUtils::MM_QNX' => '7.04_01', 11572 'ExtUtils::MM_UWIN' => '7.04_01', 11573 'ExtUtils::MM_Unix' => '7.04_01', 11574 'ExtUtils::MM_VMS' => '7.04_01', 11575 'ExtUtils::MM_VOS' => '7.04_01', 11576 'ExtUtils::MM_Win32' => '7.04_01', 11577 'ExtUtils::MM_Win95' => '7.04_01', 11578 'ExtUtils::MY' => '7.04_01', 11579 'ExtUtils::MakeMaker' => '7.04_01', 11580 'ExtUtils::MakeMaker::Config'=> '7.04_01', 11581 'ExtUtils::MakeMaker::Locale'=> '7.04_01', 11582 'ExtUtils::MakeMaker::version'=> '7.04_01', 11583 'ExtUtils::MakeMaker::version::regex'=> '7.04_01', 11584 'ExtUtils::MakeMaker::version::vpp'=> '7.04_01', 11585 'ExtUtils::Mkbootstrap' => '7.04_01', 11586 'ExtUtils::Mksymlists' => '7.04_01', 11587 'ExtUtils::testlib' => '7.04_01', 11588 'Module::CoreList' => '5.20150520', 11589 'Module::CoreList::TieHashDelta'=> '5.20150520', 11590 'Module::CoreList::Utils'=> '5.20150520', 11591 'POSIX' => '1.53', 11592 'PerlIO::via::QuotedPrint'=> '0.08', 11593 'overload' => '1.26', 11594 'utf8' => '1.17', 11595 }, 11596 removed => { 11597 } 11598 }, 11599 5.023000 => { 11600 delta_from => 5.022000, 11601 changed => { 11602 'B::Op_private' => '5.023000', 11603 'CPAN::Meta' => '2.150005', 11604 'CPAN::Meta::Converter' => '2.150005', 11605 'CPAN::Meta::Feature' => '2.150005', 11606 'CPAN::Meta::History' => '2.150005', 11607 'CPAN::Meta::Merge' => '2.150005', 11608 'CPAN::Meta::Prereqs' => '2.150005', 11609 'CPAN::Meta::Requirements'=> '2.133', 11610 'CPAN::Meta::Spec' => '2.150005', 11611 'CPAN::Meta::Validator' => '2.150005', 11612 'CPAN::Meta::YAML' => '0.016', 11613 'Config' => '5.023', 11614 'Encode' => '2.73', 11615 'ExtUtils::CBuilder' => '0.280223', 11616 'ExtUtils::CBuilder::Base'=> '0.280223', 11617 'ExtUtils::CBuilder::Platform::Unix'=> '0.280223', 11618 'ExtUtils::CBuilder::Platform::VMS'=> '0.280223', 11619 'ExtUtils::CBuilder::Platform::Windows'=> '0.280223', 11620 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223', 11621 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223', 11622 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223', 11623 'ExtUtils::CBuilder::Platform::aix'=> '0.280223', 11624 'ExtUtils::CBuilder::Platform::android'=> '0.280223', 11625 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223', 11626 'ExtUtils::CBuilder::Platform::darwin'=> '0.280223', 11627 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223', 11628 'ExtUtils::CBuilder::Platform::os2'=> '0.280223', 11629 'Fatal' => '2.27', 11630 'Getopt::Long' => '2.46', 11631 'HTTP::Tiny' => '0.056', 11632 'List::Util' => '1.42_01', 11633 'List::Util::XS' => '1.42_01', 11634 'Locale::Codes' => '3.35', 11635 'Locale::Codes::Constants'=> '3.35', 11636 'Locale::Codes::Country'=> '3.35', 11637 'Locale::Codes::Country_Codes'=> '3.35', 11638 'Locale::Codes::Country_Retired'=> '3.35', 11639 'Locale::Codes::Currency'=> '3.35', 11640 'Locale::Codes::Currency_Codes'=> '3.35', 11641 'Locale::Codes::Currency_Retired'=> '3.35', 11642 'Locale::Codes::LangExt'=> '3.35', 11643 'Locale::Codes::LangExt_Codes'=> '3.35', 11644 'Locale::Codes::LangExt_Retired'=> '3.35', 11645 'Locale::Codes::LangFam'=> '3.35', 11646 'Locale::Codes::LangFam_Codes'=> '3.35', 11647 'Locale::Codes::LangFam_Retired'=> '3.35', 11648 'Locale::Codes::LangVar'=> '3.35', 11649 'Locale::Codes::LangVar_Codes'=> '3.35', 11650 'Locale::Codes::LangVar_Retired'=> '3.35', 11651 'Locale::Codes::Language'=> '3.35', 11652 'Locale::Codes::Language_Codes'=> '3.35', 11653 'Locale::Codes::Language_Retired'=> '3.35', 11654 'Locale::Codes::Script' => '3.35', 11655 'Locale::Codes::Script_Codes'=> '3.35', 11656 'Locale::Codes::Script_Retired'=> '3.35', 11657 'Locale::Country' => '3.35', 11658 'Locale::Currency' => '3.35', 11659 'Locale::Language' => '3.35', 11660 'Locale::Script' => '3.35', 11661 'Math::BigFloat' => '1.999701', 11662 'Math::BigInt' => '1.999701', 11663 'Math::BigInt::Calc' => '1.999701', 11664 'Math::BigInt::CalcEmu' => '1.999701', 11665 'Math::BigRat' => '0.260801', 11666 'Module::CoreList' => '5.20150620', 11667 'Module::CoreList::TieHashDelta'=> '5.20150620', 11668 'Module::CoreList::Utils'=> '5.20150620', 11669 'Module::Metadata' => '1.000027', 11670 'Net::Cmd' => '3.06', 11671 'Net::Config' => '3.06', 11672 'Net::Domain' => '3.06', 11673 'Net::FTP' => '3.06', 11674 'Net::FTP::A' => '3.06', 11675 'Net::FTP::E' => '3.06', 11676 'Net::FTP::I' => '3.06', 11677 'Net::FTP::L' => '3.06', 11678 'Net::FTP::dataconn' => '3.06', 11679 'Net::NNTP' => '3.06', 11680 'Net::Netrc' => '3.06', 11681 'Net::POP3' => '3.06', 11682 'Net::SMTP' => '3.06', 11683 'Net::Time' => '3.06', 11684 'POSIX' => '1.54', 11685 'Parse::CPAN::Meta' => '1.4417', 11686 'Pod::Simple' => '3.30', 11687 'Pod::Simple::BlackBox' => '3.30', 11688 'Pod::Simple::Checker' => '3.30', 11689 'Pod::Simple::Debug' => '3.30', 11690 'Pod::Simple::DumpAsText'=> '3.30', 11691 'Pod::Simple::DumpAsXML'=> '3.30', 11692 'Pod::Simple::HTML' => '3.30', 11693 'Pod::Simple::HTMLBatch'=> '3.30', 11694 'Pod::Simple::LinkSection'=> '3.30', 11695 'Pod::Simple::Methody' => '3.30', 11696 'Pod::Simple::Progress' => '3.30', 11697 'Pod::Simple::PullParser'=> '3.30', 11698 'Pod::Simple::PullParserEndToken'=> '3.30', 11699 'Pod::Simple::PullParserStartToken'=> '3.30', 11700 'Pod::Simple::PullParserTextToken'=> '3.30', 11701 'Pod::Simple::PullParserToken'=> '3.30', 11702 'Pod::Simple::RTF' => '3.30', 11703 'Pod::Simple::Search' => '3.30', 11704 'Pod::Simple::SimpleTree'=> '3.30', 11705 'Pod::Simple::Text' => '3.30', 11706 'Pod::Simple::TextContent'=> '3.30', 11707 'Pod::Simple::TiedOutFH'=> '3.30', 11708 'Pod::Simple::Transcode'=> '3.30', 11709 'Pod::Simple::TranscodeDumb'=> '3.30', 11710 'Pod::Simple::TranscodeSmart'=> '3.30', 11711 'Pod::Simple::XHTML' => '3.30', 11712 'Pod::Simple::XMLOutStream'=> '3.30', 11713 'Pod::Usage' => '1.67', 11714 'Scalar::Util' => '1.42_01', 11715 'Socket' => '2.019', 11716 'Sub::Util' => '1.42_01', 11717 'Time::Piece' => '1.30', 11718 'Time::Seconds' => '1.30', 11719 'UNIVERSAL' => '1.13', 11720 'Unicode' => '8.0.0', 11721 'XS::APItest' => '0.73', 11722 'autodie' => '2.27', 11723 'autodie::Scope::Guard' => '2.27', 11724 'autodie::Scope::GuardStack'=> '2.27', 11725 'autodie::Util' => '2.27', 11726 'autodie::exception' => '2.27', 11727 'autodie::exception::system'=> '2.27', 11728 'autodie::hints' => '2.27', 11729 'autodie::skip' => '2.27', 11730 'encoding' => '2.15', 11731 'feature' => '1.41', 11732 'parent' => '0.234', 11733 'threads' => '2.02', 11734 }, 11735 removed => { 11736 } 11737 }, 11738 5.023001 => { 11739 delta_from => 5.023000, 11740 changed => { 11741 'B::Op_private' => '5.023001', 11742 'Config' => '5.023001', 11743 'DynaLoader' => '1.33', 11744 'Encode' => '2.75', 11745 'Encode::MIME::Header' => '2.17', 11746 'Encode::Unicode' => '2.13', 11747 'Fatal' => '2.29', 11748 'File::Path' => '2.11', 11749 'Getopt::Long' => '2.47', 11750 'I18N::Langinfo' => '0.13', 11751 'IPC::Open3' => '1.19', 11752 'Module::CoreList' => '5.20150720', 11753 'Module::CoreList::TieHashDelta'=> '5.20150720', 11754 'Module::CoreList::Utils'=> '5.20150720', 11755 'Net::Cmd' => '3.07', 11756 'Net::Config' => '3.07', 11757 'Net::Domain' => '3.07', 11758 'Net::FTP' => '3.07', 11759 'Net::FTP::A' => '3.07', 11760 'Net::FTP::E' => '3.07', 11761 'Net::FTP::I' => '3.07', 11762 'Net::FTP::L' => '3.07', 11763 'Net::FTP::dataconn' => '3.07', 11764 'Net::NNTP' => '3.07', 11765 'Net::Netrc' => '3.07', 11766 'Net::POP3' => '3.07', 11767 'Net::SMTP' => '3.07', 11768 'Net::Time' => '3.07', 11769 'Opcode' => '1.33', 11770 'POSIX' => '1.55', 11771 'PerlIO::scalar' => '0.23', 11772 'Socket' => '2.020', 11773 'Storable' => '2.54', 11774 'Unicode::Collate' => '1.14', 11775 'Unicode::Collate::CJK::Big5'=> '1.14', 11776 'Unicode::Collate::CJK::GB2312'=> '1.14', 11777 'Unicode::Collate::CJK::JISX0208'=> '1.14', 11778 'Unicode::Collate::CJK::Korean'=> '1.14', 11779 'Unicode::Collate::CJK::Pinyin'=> '1.14', 11780 'Unicode::Collate::CJK::Stroke'=> '1.14', 11781 'Unicode::Collate::CJK::Zhuyin'=> '1.14', 11782 'Unicode::Collate::Locale'=> '1.14', 11783 'Unicode::Normalize' => '1.19', 11784 'XS::APItest' => '0.74', 11785 'XS::Typemap' => '0.14', 11786 'autodie' => '2.29', 11787 'autodie::Scope::Guard' => '2.29', 11788 'autodie::Scope::GuardStack'=> '2.29', 11789 'autodie::Util' => '2.29', 11790 'autodie::exception' => '2.29', 11791 'autodie::exception::system'=> '2.29', 11792 'autodie::hints' => '2.29', 11793 'autodie::skip' => '2.29', 11794 'encoding' => '2.16', 11795 'feature' => '1.42', 11796 'warnings' => '1.33', 11797 }, 11798 removed => { 11799 'autodie::ScopeUtil' => 1, 11800 } 11801 }, 11802 5.023002 => { 11803 delta_from => 5.023001, 11804 changed => { 11805 'Attribute::Handlers' => '0.99', 11806 'B::Op_private' => '5.023002', 11807 'CPAN::Meta::YAML' => '0.017', 11808 'Config' => '5.023002', 11809 'Cwd' => '3.57', 11810 'Encode' => '2.76', 11811 'ExtUtils::ParseXS' => '3.29', 11812 'ExtUtils::ParseXS::Constants'=> '3.29', 11813 'ExtUtils::ParseXS::CountLines'=> '3.29', 11814 'ExtUtils::ParseXS::Eval'=> '3.29', 11815 'ExtUtils::ParseXS::Utilities'=> '3.29', 11816 'ExtUtils::Typemaps' => '3.29', 11817 'File::Find' => '1.30', 11818 'File::Spec' => '3.57', 11819 'File::Spec::Cygwin' => '3.57', 11820 'File::Spec::Epoc' => '3.57', 11821 'File::Spec::Functions' => '3.57', 11822 'File::Spec::Mac' => '3.57', 11823 'File::Spec::OS2' => '3.57', 11824 'File::Spec::Unix' => '3.57', 11825 'File::Spec::VMS' => '3.57', 11826 'File::Spec::Win32' => '3.57', 11827 'Filter::Util::Call' => '1.55', 11828 'Hash::Util' => '0.19', 11829 'Module::CoreList' => '5.20150820', 11830 'Module::CoreList::TieHashDelta'=> '5.20150820', 11831 'Module::CoreList::Utils'=> '5.20150820', 11832 'POSIX' => '1.56', 11833 'Term::Cap' => '1.17', 11834 'Unicode::UCD' => '0.62', 11835 'perlfaq' => '5.021010', 11836 }, 11837 removed => { 11838 } 11839 }, 11840 5.020003 => { 11841 delta_from => 5.020002, 11842 changed => { 11843 'Config' => '5.020003', 11844 'Errno' => '1.20_06', 11845 'Module::CoreList' => '5.20150912', 11846 'Module::CoreList::TieHashDelta'=> '5.20150912', 11847 'Module::CoreList::Utils'=> '5.20150912', 11848 }, 11849 removed => { 11850 } 11851 }, 11852 5.023003 => { 11853 delta_from => 5.023002, 11854 changed => { 11855 'Amiga::ARexx' => '0.02', 11856 'Amiga::Exec' => '0.01', 11857 'B' => '1.59', 11858 'B::Op_private' => '5.023003', 11859 'Carp' => '1.37', 11860 'Carp::Heavy' => '1.37', 11861 'Compress::Raw::Zlib' => '2.068_01', 11862 'Config' => '5.023003', 11863 'Cwd' => '3.58', 11864 'DynaLoader' => '1.34', 11865 'Encode' => '2.77', 11866 'Encode::Unicode' => '2.14', 11867 'English' => '1.10', 11868 'Errno' => '1.24', 11869 'ExtUtils::Command' => '7.10', 11870 'ExtUtils::Command::MM' => '7.10', 11871 'ExtUtils::Liblist' => '7.10', 11872 'ExtUtils::Liblist::Kid'=> '7.10', 11873 'ExtUtils::MM' => '7.10', 11874 'ExtUtils::MM_AIX' => '7.10', 11875 'ExtUtils::MM_Any' => '7.10', 11876 'ExtUtils::MM_BeOS' => '7.10', 11877 'ExtUtils::MM_Cygwin' => '7.10', 11878 'ExtUtils::MM_DOS' => '7.10', 11879 'ExtUtils::MM_Darwin' => '7.10', 11880 'ExtUtils::MM_MacOS' => '7.10', 11881 'ExtUtils::MM_NW5' => '7.10', 11882 'ExtUtils::MM_OS2' => '7.10', 11883 'ExtUtils::MM_QNX' => '7.10', 11884 'ExtUtils::MM_UWIN' => '7.10', 11885 'ExtUtils::MM_Unix' => '7.10', 11886 'ExtUtils::MM_VMS' => '7.10', 11887 'ExtUtils::MM_VOS' => '7.10', 11888 'ExtUtils::MM_Win32' => '7.10', 11889 'ExtUtils::MM_Win95' => '7.10', 11890 'ExtUtils::MY' => '7.10', 11891 'ExtUtils::MakeMaker' => '7.10', 11892 'ExtUtils::MakeMaker::Config'=> '7.10', 11893 'ExtUtils::MakeMaker::Locale'=> '7.10', 11894 'ExtUtils::MakeMaker::version'=> '7.10', 11895 'ExtUtils::MakeMaker::version::regex'=> '7.10', 11896 'ExtUtils::MakeMaker::version::vpp'=> '7.10', 11897 'ExtUtils::Mkbootstrap' => '7.10', 11898 'ExtUtils::Mksymlists' => '7.10', 11899 'ExtUtils::ParseXS' => '3.30', 11900 'ExtUtils::ParseXS::Constants'=> '3.30', 11901 'ExtUtils::ParseXS::CountLines'=> '3.30', 11902 'ExtUtils::ParseXS::Eval'=> '3.30', 11903 'ExtUtils::ParseXS::Utilities'=> '3.30', 11904 'ExtUtils::Typemaps' => '3.30', 11905 'ExtUtils::Typemaps::Cmd'=> '3.30', 11906 'ExtUtils::Typemaps::InputMap'=> '3.30', 11907 'ExtUtils::Typemaps::OutputMap'=> '3.30', 11908 'ExtUtils::Typemaps::Type'=> '3.30', 11909 'ExtUtils::testlib' => '7.10', 11910 'File::Find' => '1.31', 11911 'File::Glob' => '1.25', 11912 'File::Spec' => '3.58', 11913 'File::Spec::AmigaOS' => '3.58', 11914 'File::Spec::Cygwin' => '3.58', 11915 'File::Spec::Epoc' => '3.58', 11916 'File::Spec::Functions' => '3.58', 11917 'File::Spec::Mac' => '3.58', 11918 'File::Spec::OS2' => '3.58', 11919 'File::Spec::Unix' => '3.58', 11920 'File::Spec::VMS' => '3.58', 11921 'File::Spec::Win32' => '3.58', 11922 'Hash::Util::FieldHash' => '1.17', 11923 'Locale::Codes' => '3.36', 11924 'Locale::Codes::Constants'=> '3.36', 11925 'Locale::Codes::Country'=> '3.36', 11926 'Locale::Codes::Country_Codes'=> '3.36', 11927 'Locale::Codes::Country_Retired'=> '3.36', 11928 'Locale::Codes::Currency'=> '3.36', 11929 'Locale::Codes::Currency_Codes'=> '3.36', 11930 'Locale::Codes::Currency_Retired'=> '3.36', 11931 'Locale::Codes::LangExt'=> '3.36', 11932 'Locale::Codes::LangExt_Codes'=> '3.36', 11933 'Locale::Codes::LangExt_Retired'=> '3.36', 11934 'Locale::Codes::LangFam'=> '3.36', 11935 'Locale::Codes::LangFam_Codes'=> '3.36', 11936 'Locale::Codes::LangFam_Retired'=> '3.36', 11937 'Locale::Codes::LangVar'=> '3.36', 11938 'Locale::Codes::LangVar_Codes'=> '3.36', 11939 'Locale::Codes::LangVar_Retired'=> '3.36', 11940 'Locale::Codes::Language'=> '3.36', 11941 'Locale::Codes::Language_Codes'=> '3.36', 11942 'Locale::Codes::Language_Retired'=> '3.36', 11943 'Locale::Codes::Script' => '3.36', 11944 'Locale::Codes::Script_Codes'=> '3.36', 11945 'Locale::Codes::Script_Retired'=> '3.36', 11946 'Locale::Country' => '3.36', 11947 'Locale::Currency' => '3.36', 11948 'Locale::Language' => '3.36', 11949 'Locale::Script' => '3.36', 11950 'Math::BigFloat::Trace' => '0.40', 11951 'Math::BigInt::Trace' => '0.40', 11952 'Module::CoreList' => '5.20150920', 11953 'Module::CoreList::TieHashDelta'=> '5.20150920', 11954 'Module::CoreList::Utils'=> '5.20150920', 11955 'OS2::DLL' => '1.06', 11956 'OS2::ExtAttr' => '0.04', 11957 'OS2::Process' => '1.11', 11958 'OS2::REXX' => '1.05', 11959 'POSIX' => '1.57', 11960 'Pod::Perldoc' => '3.25_01', 11961 'Socket' => '2.020_01', 11962 'Test' => '1.27', 11963 'Thread::Queue' => '3.06', 11964 'Time::HiRes' => '1.9727_02', 11965 'Unicode::UCD' => '0.63', 11966 'Win32' => '0.52', 11967 'XS::APItest' => '0.75', 11968 'bigint' => '0.40', 11969 'bignum' => '0.40', 11970 'bigrat' => '0.40', 11971 'encoding' => '2.17', 11972 'experimental' => '0.014', 11973 'if' => '0.0605', 11974 'locale' => '1.07', 11975 'mro' => '1.18', 11976 'threads' => '2.03', 11977 }, 11978 removed => { 11979 } 11980 }, 11981 5.023004 => { 11982 delta_from => 5.023003, 11983 changed => { 11984 'B' => '1.60', 11985 'B::Op_private' => '5.023004', 11986 'Compress::Raw::Bzip2' => '2.069', 11987 'Compress::Raw::Zlib' => '2.069', 11988 'Compress::Zlib' => '2.069', 11989 'Config' => '5.023004', 11990 'Devel::PPPort' => '3.32', 11991 'DynaLoader' => '1.35', 11992 'Encode' => '2.78', 11993 'ExtUtils::CBuilder' => '0.280224', 11994 'ExtUtils::CBuilder::Base'=> '0.280224', 11995 'ExtUtils::CBuilder::Platform::Unix'=> '0.280224', 11996 'ExtUtils::CBuilder::Platform::VMS'=> '0.280224', 11997 'ExtUtils::CBuilder::Platform::Windows'=> '0.280224', 11998 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224', 11999 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224', 12000 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224', 12001 'ExtUtils::CBuilder::Platform::aix'=> '0.280224', 12002 'ExtUtils::CBuilder::Platform::android'=> '0.280224', 12003 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224', 12004 'ExtUtils::CBuilder::Platform::darwin'=> '0.280224', 12005 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224', 12006 'ExtUtils::CBuilder::Platform::os2'=> '0.280224', 12007 'File::Path' => '2.12', 12008 'IO' => '1.36', 12009 'IO::Compress::Adapter::Bzip2'=> '2.069', 12010 'IO::Compress::Adapter::Deflate'=> '2.069', 12011 'IO::Compress::Adapter::Identity'=> '2.069', 12012 'IO::Compress::Base' => '2.069', 12013 'IO::Compress::Base::Common'=> '2.069', 12014 'IO::Compress::Bzip2' => '2.069', 12015 'IO::Compress::Deflate' => '2.069', 12016 'IO::Compress::Gzip' => '2.069', 12017 'IO::Compress::Gzip::Constants'=> '2.069', 12018 'IO::Compress::RawDeflate'=> '2.069', 12019 'IO::Compress::Zip' => '2.069', 12020 'IO::Compress::Zip::Constants'=> '2.069', 12021 'IO::Compress::Zlib::Constants'=> '2.069', 12022 'IO::Compress::Zlib::Extra'=> '2.069', 12023 'IO::Poll' => '0.10', 12024 'IO::Uncompress::Adapter::Bunzip2'=> '2.069', 12025 'IO::Uncompress::Adapter::Identity'=> '2.069', 12026 'IO::Uncompress::Adapter::Inflate'=> '2.069', 12027 'IO::Uncompress::AnyInflate'=> '2.069', 12028 'IO::Uncompress::AnyUncompress'=> '2.069', 12029 'IO::Uncompress::Base' => '2.069', 12030 'IO::Uncompress::Bunzip2'=> '2.069', 12031 'IO::Uncompress::Gunzip'=> '2.069', 12032 'IO::Uncompress::Inflate'=> '2.069', 12033 'IO::Uncompress::RawInflate'=> '2.069', 12034 'IO::Uncompress::Unzip' => '2.069', 12035 'Math::BigFloat' => '1.999704', 12036 'Math::BigFloat::Trace' => '0.41', 12037 'Math::BigInt' => '1.999704', 12038 'Math::BigInt::Calc' => '1.999704', 12039 'Math::BigInt::CalcEmu' => '1.999704', 12040 'Math::BigInt::FastCalc'=> '0.34', 12041 'Math::BigInt::Trace' => '0.41', 12042 'Module::CoreList' => '5.20151020', 12043 'Module::CoreList::TieHashDelta'=> '5.20151020', 12044 'Module::CoreList::Utils'=> '5.20151020', 12045 'Module::Metadata' => '1.000029', 12046 'POSIX' => '1.58', 12047 'Perl::OSType' => '1.009', 12048 'PerlIO::encoding' => '0.22', 12049 'Socket' => '2.020_02', 12050 'Unicode::Normalize' => '1.21', 12051 'XS::APItest' => '0.76', 12052 'bigint' => '0.41', 12053 'bignum' => '0.41', 12054 'bigrat' => '0.41', 12055 'experimental' => '0.016', 12056 'if' => '0.0606', 12057 'warnings' => '1.35', 12058 }, 12059 removed => { 12060 } 12061 }, 12062 5.023005 => { 12063 delta_from => 5.023004, 12064 changed => { 12065 'B' => '1.61', 12066 'B::Op_private' => '5.023005', 12067 'Carp' => '1.38', 12068 'Carp::Heavy' => '1.38', 12069 'Config' => '5.023005', 12070 'Config::Perl::V' => '0.25', 12071 'Cwd' => '3.59', 12072 'Devel::Peek' => '1.23', 12073 'Dumpvalue' => '1.18', 12074 'DynaLoader' => '1.36', 12075 'File::Find' => '1.32', 12076 'File::Spec' => '3.59', 12077 'File::Spec::AmigaOS' => '3.59', 12078 'File::Spec::Cygwin' => '3.59', 12079 'File::Spec::Epoc' => '3.59', 12080 'File::Spec::Functions' => '3.59', 12081 'File::Spec::Mac' => '3.59', 12082 'File::Spec::OS2' => '3.59', 12083 'File::Spec::Unix' => '3.59', 12084 'File::Spec::VMS' => '3.59', 12085 'File::Spec::Win32' => '3.59', 12086 'Getopt::Long' => '2.48', 12087 'Hash::Util::FieldHash' => '1.18', 12088 'IPC::Open3' => '1.20', 12089 'Math::BigFloat' => '1.999710', 12090 'Math::BigInt' => '1.999710', 12091 'Math::BigInt::Calc' => '1.999710', 12092 'Math::BigInt::CalcEmu' => '1.999710', 12093 'Math::BigInt::FastCalc'=> '0.37', 12094 'Module::CoreList' => '5.20151120', 12095 'Module::CoreList::TieHashDelta'=> '5.20151120', 12096 'Module::CoreList::Utils'=> '5.20151120', 12097 'Module::Metadata' => '1.000030', 12098 'POSIX' => '1.59', 12099 'PerlIO::encoding' => '0.23', 12100 'PerlIO::mmap' => '0.015', 12101 'PerlIO::scalar' => '0.24', 12102 'PerlIO::via' => '0.16', 12103 'Pod::Simple' => '3.32', 12104 'Pod::Simple::BlackBox' => '3.32', 12105 'Pod::Simple::Checker' => '3.32', 12106 'Pod::Simple::Debug' => '3.32', 12107 'Pod::Simple::DumpAsText'=> '3.32', 12108 'Pod::Simple::DumpAsXML'=> '3.32', 12109 'Pod::Simple::HTML' => '3.32', 12110 'Pod::Simple::HTMLBatch'=> '3.32', 12111 'Pod::Simple::LinkSection'=> '3.32', 12112 'Pod::Simple::Methody' => '3.32', 12113 'Pod::Simple::Progress' => '3.32', 12114 'Pod::Simple::PullParser'=> '3.32', 12115 'Pod::Simple::PullParserEndToken'=> '3.32', 12116 'Pod::Simple::PullParserStartToken'=> '3.32', 12117 'Pod::Simple::PullParserTextToken'=> '3.32', 12118 'Pod::Simple::PullParserToken'=> '3.32', 12119 'Pod::Simple::RTF' => '3.32', 12120 'Pod::Simple::Search' => '3.32', 12121 'Pod::Simple::SimpleTree'=> '3.32', 12122 'Pod::Simple::Text' => '3.32', 12123 'Pod::Simple::TextContent'=> '3.32', 12124 'Pod::Simple::TiedOutFH'=> '3.32', 12125 'Pod::Simple::Transcode'=> '3.32', 12126 'Pod::Simple::TranscodeDumb'=> '3.32', 12127 'Pod::Simple::TranscodeSmart'=> '3.32', 12128 'Pod::Simple::XHTML' => '3.32', 12129 'Pod::Simple::XMLOutStream'=> '3.32', 12130 'Thread::Queue' => '3.07', 12131 'Tie::Scalar' => '1.04', 12132 'Time::HiRes' => '1.9728', 12133 'Time::Piece' => '1.31', 12134 'Time::Seconds' => '1.31', 12135 'Unicode::Normalize' => '1.23', 12136 'XSLoader' => '0.21', 12137 'arybase' => '0.11', 12138 'base' => '2.22_01', 12139 'fields' => '2.22_01', 12140 'threads' => '2.04', 12141 'threads::shared' => '1.49', 12142 }, 12143 removed => { 12144 'ExtUtils::MakeMaker::version::vpp'=> 1, 12145 'version::vpp' => 1, 12146 } 12147 }, 12148 5.022001 => { 12149 delta_from => 5.022, 12150 changed => { 12151 'B::Op_private' => '5.022001', 12152 'Config' => '5.022001', 12153 'Module::CoreList' => '5.20151213', 12154 'Module::CoreList::TieHashDelta'=> '5.20151213', 12155 'Module::CoreList::Utils'=> '5.20151213', 12156 'POSIX' => '1.53_01', 12157 'PerlIO::scalar' => '0.23', 12158 'Storable' => '2.53_01', 12159 'Win32' => '0.52', 12160 'warnings' => '1.34', 12161 }, 12162 removed => { 12163 } 12164 }, 12165 5.023006 => { 12166 delta_from => 5.023005, 12167 changed => { 12168 'B::Deparse' => '1.36', 12169 'B::Op_private' => '5.023006', 12170 'Benchmark' => '1.21', 12171 'CPAN::Meta::Requirements'=> '2.140', 12172 'CPAN::Meta::YAML' => '0.018', 12173 'Config' => '5.023006', 12174 'Cwd' => '3.60', 12175 'Data::Dumper' => '2.159', 12176 'DynaLoader' => '1.37', 12177 'File::Spec' => '3.60', 12178 'File::Spec::AmigaOS' => '3.60', 12179 'File::Spec::Cygwin' => '3.60', 12180 'File::Spec::Epoc' => '3.60', 12181 'File::Spec::Functions' => '3.60', 12182 'File::Spec::Mac' => '3.60', 12183 'File::Spec::OS2' => '3.60', 12184 'File::Spec::Unix' => '3.60', 12185 'File::Spec::VMS' => '3.60', 12186 'File::Spec::Win32' => '3.60', 12187 'Hash::Util::FieldHash' => '1.19', 12188 'Locale::Codes' => '3.37', 12189 'Locale::Codes::Constants'=> '3.37', 12190 'Locale::Codes::Country'=> '3.37', 12191 'Locale::Codes::Country_Codes'=> '3.37', 12192 'Locale::Codes::Country_Retired'=> '3.37', 12193 'Locale::Codes::Currency'=> '3.37', 12194 'Locale::Codes::Currency_Codes'=> '3.37', 12195 'Locale::Codes::Currency_Retired'=> '3.37', 12196 'Locale::Codes::LangExt'=> '3.37', 12197 'Locale::Codes::LangExt_Codes'=> '3.37', 12198 'Locale::Codes::LangExt_Retired'=> '3.37', 12199 'Locale::Codes::LangFam'=> '3.37', 12200 'Locale::Codes::LangFam_Codes'=> '3.37', 12201 'Locale::Codes::LangFam_Retired'=> '3.37', 12202 'Locale::Codes::LangVar'=> '3.37', 12203 'Locale::Codes::LangVar_Codes'=> '3.37', 12204 'Locale::Codes::LangVar_Retired'=> '3.37', 12205 'Locale::Codes::Language'=> '3.37', 12206 'Locale::Codes::Language_Codes'=> '3.37', 12207 'Locale::Codes::Language_Retired'=> '3.37', 12208 'Locale::Codes::Script' => '3.37', 12209 'Locale::Codes::Script_Codes'=> '3.37', 12210 'Locale::Codes::Script_Retired'=> '3.37', 12211 'Locale::Country' => '3.37', 12212 'Locale::Currency' => '3.37', 12213 'Locale::Language' => '3.37', 12214 'Locale::Script' => '3.37', 12215 'Math::BigInt::FastCalc'=> '0.38', 12216 'Module::CoreList' => '5.20151220', 12217 'Module::CoreList::TieHashDelta'=> '5.20151220', 12218 'Module::CoreList::Utils'=> '5.20151220', 12219 'Module::Metadata' => '1.000031', 12220 'Opcode' => '1.34', 12221 'PerlIO::mmap' => '0.016', 12222 'Pod::Perldoc' => '3.25_02', 12223 'SDBM_File' => '1.14', 12224 'Term::ANSIColor' => '4.04', 12225 'Test' => '1.28', 12226 'Unicode::Normalize' => '1.24', 12227 'XS::APItest' => '0.77', 12228 'base' => '2.23', 12229 'encoding::warnings' => '0.12', 12230 'fields' => '2.23', 12231 'locale' => '1.08', 12232 'strict' => '1.10', 12233 'threads' => '2.05', 12234 'threads::shared' => '1.50', 12235 'utf8' => '1.18', 12236 }, 12237 removed => { 12238 } 12239 }, 12240 5.023007 => { 12241 delta_from => 5.023006, 12242 changed => { 12243 'App::Prove' => '3.36', 12244 'App::Prove::State' => '3.36', 12245 'App::Prove::State::Result'=> '3.36', 12246 'App::Prove::State::Result::Test'=> '3.36', 12247 'B' => '1.62', 12248 'B::Deparse' => '1.37', 12249 'B::Op_private' => '5.023007', 12250 'Benchmark' => '1.22', 12251 'Config' => '5.023007', 12252 'Cwd' => '3.62', 12253 'Data::Dumper' => '2.160', 12254 'ExtUtils::ParseXS' => '3.31', 12255 'ExtUtils::ParseXS::Constants'=> '3.31', 12256 'ExtUtils::ParseXS::CountLines'=> '3.31', 12257 'ExtUtils::ParseXS::Eval'=> '3.31', 12258 'ExtUtils::ParseXS::Utilities'=> '3.31', 12259 'ExtUtils::Typemaps' => '3.31', 12260 'ExtUtils::Typemaps::Cmd'=> '3.31', 12261 'ExtUtils::Typemaps::InputMap'=> '3.31', 12262 'ExtUtils::Typemaps::OutputMap'=> '3.31', 12263 'ExtUtils::Typemaps::Type'=> '3.31', 12264 'File::Find' => '1.33', 12265 'File::Spec' => '3.62', 12266 'File::Spec::AmigaOS' => '3.62', 12267 'File::Spec::Cygwin' => '3.62', 12268 'File::Spec::Epoc' => '3.62', 12269 'File::Spec::Functions' => '3.62', 12270 'File::Spec::Mac' => '3.62', 12271 'File::Spec::OS2' => '3.62', 12272 'File::Spec::Unix' => '3.62', 12273 'File::Spec::VMS' => '3.62', 12274 'File::Spec::Win32' => '3.62', 12275 'Math::BigFloat' => '1.999715', 12276 'Math::BigFloat::Trace' => '0.42', 12277 'Math::BigInt' => '1.999715', 12278 'Math::BigInt::Calc' => '1.999715', 12279 'Math::BigInt::CalcEmu' => '1.999715', 12280 'Math::BigInt::FastCalc'=> '0.40', 12281 'Math::BigInt::Trace' => '0.42', 12282 'Math::BigRat' => '0.260802', 12283 'Module::CoreList' => '5.20160120', 12284 'Module::CoreList::TieHashDelta'=> '5.20160120', 12285 'Module::CoreList::Utils'=> '5.20160120', 12286 'Net::Cmd' => '3.08', 12287 'Net::Config' => '3.08', 12288 'Net::Domain' => '3.08', 12289 'Net::FTP' => '3.08', 12290 'Net::FTP::A' => '3.08', 12291 'Net::FTP::E' => '3.08', 12292 'Net::FTP::I' => '3.08', 12293 'Net::FTP::L' => '3.08', 12294 'Net::FTP::dataconn' => '3.08', 12295 'Net::NNTP' => '3.08', 12296 'Net::Netrc' => '3.08', 12297 'Net::POP3' => '3.08', 12298 'Net::SMTP' => '3.08', 12299 'Net::Time' => '3.08', 12300 'Pod::Man' => '4.04', 12301 'Pod::ParseLink' => '4.04', 12302 'Pod::Text' => '4.04', 12303 'Pod::Text::Color' => '4.04', 12304 'Pod::Text::Overstrike' => '4.04', 12305 'Pod::Text::Termcap' => '4.04', 12306 'Pod::Usage' => '1.68', 12307 'TAP::Base' => '3.36', 12308 'TAP::Formatter::Base' => '3.36', 12309 'TAP::Formatter::Color' => '3.36', 12310 'TAP::Formatter::Console'=> '3.36', 12311 'TAP::Formatter::Console::ParallelSession'=> '3.36', 12312 'TAP::Formatter::Console::Session'=> '3.36', 12313 'TAP::Formatter::File' => '3.36', 12314 'TAP::Formatter::File::Session'=> '3.36', 12315 'TAP::Formatter::Session'=> '3.36', 12316 'TAP::Harness' => '3.36', 12317 'TAP::Harness::Env' => '3.36', 12318 'TAP::Object' => '3.36', 12319 'TAP::Parser' => '3.36', 12320 'TAP::Parser::Aggregator'=> '3.36', 12321 'TAP::Parser::Grammar' => '3.36', 12322 'TAP::Parser::Iterator' => '3.36', 12323 'TAP::Parser::Iterator::Array'=> '3.36', 12324 'TAP::Parser::Iterator::Process'=> '3.36', 12325 'TAP::Parser::Iterator::Stream'=> '3.36', 12326 'TAP::Parser::IteratorFactory'=> '3.36', 12327 'TAP::Parser::Multiplexer'=> '3.36', 12328 'TAP::Parser::Result' => '3.36', 12329 'TAP::Parser::Result::Bailout'=> '3.36', 12330 'TAP::Parser::Result::Comment'=> '3.36', 12331 'TAP::Parser::Result::Plan'=> '3.36', 12332 'TAP::Parser::Result::Pragma'=> '3.36', 12333 'TAP::Parser::Result::Test'=> '3.36', 12334 'TAP::Parser::Result::Unknown'=> '3.36', 12335 'TAP::Parser::Result::Version'=> '3.36', 12336 'TAP::Parser::Result::YAML'=> '3.36', 12337 'TAP::Parser::ResultFactory'=> '3.36', 12338 'TAP::Parser::Scheduler'=> '3.36', 12339 'TAP::Parser::Scheduler::Job'=> '3.36', 12340 'TAP::Parser::Scheduler::Spinner'=> '3.36', 12341 'TAP::Parser::Source' => '3.36', 12342 'TAP::Parser::SourceHandler'=> '3.36', 12343 'TAP::Parser::SourceHandler::Executable'=> '3.36', 12344 'TAP::Parser::SourceHandler::File'=> '3.36', 12345 'TAP::Parser::SourceHandler::Handle'=> '3.36', 12346 'TAP::Parser::SourceHandler::Perl'=> '3.36', 12347 'TAP::Parser::SourceHandler::RawTAP'=> '3.36', 12348 'TAP::Parser::YAMLish::Reader'=> '3.36', 12349 'TAP::Parser::YAMLish::Writer'=> '3.36', 12350 'Test::Harness' => '3.36', 12351 'Unicode::Normalize' => '1.25', 12352 'Unicode::UCD' => '0.64', 12353 'XS::APItest' => '0.78', 12354 'bigint' => '0.42', 12355 'bignum' => '0.42', 12356 'bigrat' => '0.42', 12357 'utf8' => '1.19', 12358 }, 12359 removed => { 12360 } 12361 }, 12362 5.023008 => { 12363 delta_from => 5.023007, 12364 changed => { 12365 'B::Op_private' => '5.023008', 12366 'Config' => '5.023008', 12367 'Cwd' => '3.63', 12368 'DynaLoader' => '1.38', 12369 'Encode' => '2.80', 12370 'Encode::Alias' => '2.20', 12371 'Encode::MIME::Header' => '2.19', 12372 'Encode::Unicode' => '2.15', 12373 'ExtUtils::CBuilder' => '0.280225', 12374 'ExtUtils::CBuilder::Base'=> '0.280225', 12375 'ExtUtils::CBuilder::Platform::Unix'=> '0.280225', 12376 'ExtUtils::CBuilder::Platform::VMS'=> '0.280225', 12377 'ExtUtils::CBuilder::Platform::Windows'=> '0.280225', 12378 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225', 12379 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225', 12380 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225', 12381 'ExtUtils::CBuilder::Platform::aix'=> '0.280225', 12382 'ExtUtils::CBuilder::Platform::android'=> '0.280225', 12383 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225', 12384 'ExtUtils::CBuilder::Platform::darwin'=> '0.280225', 12385 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225', 12386 'ExtUtils::CBuilder::Platform::os2'=> '0.280225', 12387 'ExtUtils::Command::MM' => '7.10_01', 12388 'ExtUtils::Liblist' => '7.10_01', 12389 'ExtUtils::Liblist::Kid'=> '7.10_01', 12390 'ExtUtils::MM' => '7.10_01', 12391 'ExtUtils::MM_AIX' => '7.10_01', 12392 'ExtUtils::MM_Any' => '7.10_01', 12393 'ExtUtils::MM_BeOS' => '7.10_01', 12394 'ExtUtils::MM_Cygwin' => '7.10_01', 12395 'ExtUtils::MM_DOS' => '7.10_01', 12396 'ExtUtils::MM_Darwin' => '7.10_01', 12397 'ExtUtils::MM_MacOS' => '7.10_01', 12398 'ExtUtils::MM_NW5' => '7.10_01', 12399 'ExtUtils::MM_OS2' => '7.10_01', 12400 'ExtUtils::MM_QNX' => '7.10_01', 12401 'ExtUtils::MM_UWIN' => '7.10_01', 12402 'ExtUtils::MM_Unix' => '7.10_01', 12403 'ExtUtils::MM_VMS' => '7.10_01', 12404 'ExtUtils::MM_VOS' => '7.10_01', 12405 'ExtUtils::MM_Win32' => '7.10_01', 12406 'ExtUtils::MM_Win95' => '7.10_01', 12407 'ExtUtils::MY' => '7.10_01', 12408 'ExtUtils::MakeMaker' => '7.10_01', 12409 'ExtUtils::MakeMaker::Config'=> '7.10_01', 12410 'ExtUtils::MakeMaker::version'=> '7.10_01', 12411 'ExtUtils::MakeMaker::version::regex'=> '7.10_01', 12412 'ExtUtils::Mkbootstrap' => '7.10_01', 12413 'ExtUtils::Mksymlists' => '7.10_01', 12414 'ExtUtils::testlib' => '7.10_01', 12415 'File::Spec' => '3.63', 12416 'File::Spec::AmigaOS' => '3.63', 12417 'File::Spec::Cygwin' => '3.63', 12418 'File::Spec::Epoc' => '3.63', 12419 'File::Spec::Functions' => '3.63', 12420 'File::Spec::Mac' => '3.63', 12421 'File::Spec::OS2' => '3.63', 12422 'File::Spec::Unix' => '3.63', 12423 'File::Spec::VMS' => '3.63', 12424 'File::Spec::Win32' => '3.63', 12425 'IPC::Msg' => '2.05', 12426 'IPC::Semaphore' => '2.05', 12427 'IPC::SharedMem' => '2.05', 12428 'IPC::SysV' => '2.05', 12429 'Module::CoreList' => '5.20160121', 12430 'Module::CoreList::TieHashDelta'=> '5.20160121', 12431 'Module::CoreList::Utils'=> '5.20160121', 12432 'ODBM_File' => '1.13', 12433 'POSIX' => '1.63', 12434 'PerlIO::encoding' => '0.24', 12435 'Pod::Man' => '4.06', 12436 'Pod::ParseLink' => '4.06', 12437 'Pod::Text' => '4.06', 12438 'Pod::Text::Color' => '4.06', 12439 'Pod::Text::Overstrike' => '4.06', 12440 'Pod::Text::Termcap' => '4.06', 12441 'Storable' => '2.55', 12442 'Time::HiRes' => '1.9730', 12443 'XS::APItest' => '0.79', 12444 }, 12445 removed => { 12446 } 12447 }, 12448 5.023009 => { 12449 delta_from => 5.023008, 12450 changed => { 12451 'Amiga::ARexx' => '0.04', 12452 'Amiga::Exec' => '0.02', 12453 'B::Op_private' => '5.023009', 12454 'Carp' => '1.40', 12455 'Carp::Heavy' => '1.40', 12456 'Config' => '5.023009', 12457 'Errno' => '1.25', 12458 'ExtUtils::Embed' => '1.33', 12459 'File::Find' => '1.34', 12460 'File::Glob' => '1.26', 12461 'File::Spec::AmigaOS' => ';.64', 12462 'IPC::Msg' => '2.06_01', 12463 'IPC::Semaphore' => '2.06_01', 12464 'IPC::SharedMem' => '2.06_01', 12465 'IPC::SysV' => '2.06_01', 12466 'List::Util' => '1.42_02', 12467 'List::Util::XS' => '1.42_02', 12468 'Module::CoreList' => '5.20160320', 12469 'Module::CoreList::TieHashDelta'=> '5.20160320', 12470 'Module::CoreList::Utils'=> '5.20160320', 12471 'POSIX' => '1.64', 12472 'Pod::Functions' => '1.10', 12473 'Scalar::Util' => '1.42_02', 12474 'SelfLoader' => '1.23', 12475 'Socket' => '2.020_03', 12476 'Storable' => '2.56', 12477 'Sub::Util' => '1.42_02', 12478 'Thread::Queue' => '3.08', 12479 'Tie::File' => '1.02', 12480 'Time::HiRes' => '1.9732', 12481 'Win32API::File' => '0.1203', 12482 'XS::APItest' => '0.80', 12483 'autouse' => '1.11', 12484 'bytes' => '1.05', 12485 'strict' => '1.11', 12486 'threads' => '2.06', 12487 'version' => '0.9916', 12488 'version::regex' => '0.9916', 12489 'warnings' => '1.36', 12490 }, 12491 removed => { 12492 'Win32API::File::ExtUtils::Myconst2perl'=> 1, 12493 } 12494 }, 12495 5.022002 => { 12496 delta_from => 5.022001, 12497 changed => { 12498 'B::Op_private' => '5.022002', 12499 'Config' => '5.022002', 12500 'Cwd' => '3.56_01', 12501 'File::Spec' => '3.56_01', 12502 'File::Spec::Cygwin' => '3.56_01', 12503 'File::Spec::Epoc' => '3.56_01', 12504 'File::Spec::Functions' => '3.56_01', 12505 'File::Spec::Mac' => '3.56_01', 12506 'File::Spec::OS2' => '3.56_01', 12507 'File::Spec::Unix' => '3.56_01', 12508 'File::Spec::VMS' => '3.56_01', 12509 'File::Spec::Win32' => '3.56_01', 12510 'Module::CoreList' => '5.20160429', 12511 'Module::CoreList::TieHashDelta'=> '5.20160429', 12512 'Module::CoreList::Utils'=> '5.20160429', 12513 'XS::APItest' => '0.72_01', 12514 }, 12515 removed => { 12516 } 12517 }, 12518 5.024000 => { 12519 delta_from => 5.023009, 12520 changed => { 12521 'B::Op_private' => '5.024000', 12522 'Config' => '5.024', 12523 'File::Copy' => '2.31', 12524 'File::Path' => '2.12_01', 12525 'File::Spec::AmigaOS' => '3.64', 12526 'IO::Handle' => '1.36', 12527 'Module::CoreList' => '5.20160506', 12528 'Module::CoreList::TieHashDelta'=> '5.20160506', 12529 'Module::CoreList::Utils'=> '5.20160506', 12530 'ODBM_File' => '1.14', 12531 'POSIX' => '1.65', 12532 'Pod::Man' => '4.07', 12533 'Pod::ParseLink' => '4.07', 12534 'Pod::Text' => '4.07', 12535 'Pod::Text::Color' => '4.07', 12536 'Pod::Text::Overstrike' => '4.07', 12537 'Pod::Text::Termcap' => '4.07', 12538 'Thread::Queue' => '3.09', 12539 'Time::HiRes' => '1.9733', 12540 'threads' => '2.07', 12541 'threads::shared' => '1.51', 12542 'locale' => '1.09', 12543 }, 12544 removed => { 12545 } 12546 }, 12547 5.025000 => { 12548 delta_from => 5.024, 12549 changed => { 12550 'B::Op_private' => '5.025000', 12551 'Config' => '5.025', 12552 'Module::CoreList' => '5.20160507', 12553 'Module::CoreList::TieHashDelta'=> '5.20160507', 12554 'Module::CoreList::Utils'=> '5.20160507', 12555 'feature' => '1.43', 12556 }, 12557 removed => { 12558 } 12559 }, 12560 5.025001 => { 12561 delta_from => 5.025, 12562 changed => { 12563 'Archive::Tar' => '2.08', 12564 'Archive::Tar::Constant'=> '2.08', 12565 'Archive::Tar::File' => '2.08', 12566 'B::Op_private' => '5.025001', 12567 'Carp' => '1.41', 12568 'Carp::Heavy' => '1.41', 12569 'Config' => '5.025001', 12570 'Config::Perl::V' => '0.26', 12571 'DB_File' => '1.838', 12572 'Digest::MD5' => '2.55', 12573 'IPC::Cmd' => '0.94', 12574 'IPC::Msg' => '2.07', 12575 'IPC::Semaphore' => '2.07', 12576 'IPC::SharedMem' => '2.07', 12577 'IPC::SysV' => '2.07', 12578 'List::Util' => '1.45_01', 12579 'List::Util::XS' => '1.45_01', 12580 'Locale::Codes' => '3.38', 12581 'Locale::Codes::Constants'=> '3.38', 12582 'Locale::Codes::Country'=> '3.38', 12583 'Locale::Codes::Country_Codes'=> '3.38', 12584 'Locale::Codes::Country_Retired'=> '3.38', 12585 'Locale::Codes::Currency'=> '3.38', 12586 'Locale::Codes::Currency_Codes'=> '3.38', 12587 'Locale::Codes::Currency_Retired'=> '3.38', 12588 'Locale::Codes::LangExt'=> '3.38', 12589 'Locale::Codes::LangExt_Codes'=> '3.38', 12590 'Locale::Codes::LangExt_Retired'=> '3.38', 12591 'Locale::Codes::LangFam'=> '3.38', 12592 'Locale::Codes::LangFam_Codes'=> '3.38', 12593 'Locale::Codes::LangFam_Retired'=> '3.38', 12594 'Locale::Codes::LangVar'=> '3.38', 12595 'Locale::Codes::LangVar_Codes'=> '3.38', 12596 'Locale::Codes::LangVar_Retired'=> '3.38', 12597 'Locale::Codes::Language'=> '3.38', 12598 'Locale::Codes::Language_Codes'=> '3.38', 12599 'Locale::Codes::Language_Retired'=> '3.38', 12600 'Locale::Codes::Script' => '3.38', 12601 'Locale::Codes::Script_Codes'=> '3.38', 12602 'Locale::Codes::Script_Retired'=> '3.38', 12603 'Locale::Country' => '3.38', 12604 'Locale::Currency' => '3.38', 12605 'Locale::Language' => '3.38', 12606 'Locale::Maketext' => '1.27', 12607 'Locale::Script' => '3.38', 12608 'Module::CoreList' => '5.20160520', 12609 'Module::CoreList::TieHashDelta'=> '5.20160520', 12610 'Module::CoreList::Utils'=> '5.20160520', 12611 'Module::Metadata' => '1.000032', 12612 'POSIX' => '1.69', 12613 'Scalar::Util' => '1.45_01', 12614 'Sub::Util' => '1.45_01', 12615 'Sys::Syslog' => '0.34', 12616 'Term::ANSIColor' => '4.05', 12617 'Test2' => '1.302015', 12618 'Test2::API' => '1.302015', 12619 'Test2::API::Breakage' => '1.302015', 12620 'Test2::API::Context' => '1.302015', 12621 'Test2::API::Instance' => '1.302015', 12622 'Test2::API::Stack' => '1.302015', 12623 'Test2::Event' => '1.302015', 12624 'Test2::Event::Bail' => '1.302015', 12625 'Test2::Event::Diag' => '1.302015', 12626 'Test2::Event::Exception'=> '1.302015', 12627 'Test2::Event::Note' => '1.302015', 12628 'Test2::Event::Ok' => '1.302015', 12629 'Test2::Event::Plan' => '1.302015', 12630 'Test2::Event::Skip' => '1.302015', 12631 'Test2::Event::Subtest' => '1.302015', 12632 'Test2::Event::Waiting' => '1.302015', 12633 'Test2::Formatter' => '1.302015', 12634 'Test2::Formatter::TAP' => '1.302015', 12635 'Test2::Hub' => '1.302015', 12636 'Test2::Hub::Interceptor'=> '1.302015', 12637 'Test2::Hub::Interceptor::Terminator'=> '1.302015', 12638 'Test2::Hub::Subtest' => '1.302015', 12639 'Test2::IPC' => '1.302015', 12640 'Test2::IPC::Driver' => '1.302015', 12641 'Test2::IPC::Driver::Files'=> '1.302015', 12642 'Test2::Util' => '1.302015', 12643 'Test2::Util::ExternalMeta'=> '1.302015', 12644 'Test2::Util::HashBase' => '1.302015', 12645 'Test2::Util::Trace' => '1.302015', 12646 'Test::Builder' => '1.302015', 12647 'Test::Builder::Formatter'=> '1.302015', 12648 'Test::Builder::Module' => '1.302015', 12649 'Test::Builder::Tester' => '1.302015', 12650 'Test::Builder::Tester::Color'=> '1.302015', 12651 'Test::Builder::TodoDiag'=> '1.302015', 12652 'Test::More' => '1.302015', 12653 'Test::Simple' => '1.302015', 12654 'Test::Tester' => '1.302015', 12655 'Test::Tester::Capture' => '1.302015', 12656 'Test::Tester::CaptureRunner'=> '1.302015', 12657 'Test::Tester::Delegate'=> '1.302015', 12658 'Test::use::ok' => '1.302015', 12659 'XS::APItest' => '0.81', 12660 '_charnames' => '1.44', 12661 'charnames' => '1.44', 12662 'ok' => '1.302015', 12663 'perlfaq' => '5.021011', 12664 're' => '0.33', 12665 'threads' => '2.08', 12666 'threads::shared' => '1.52', 12667 }, 12668 removed => { 12669 } 12670 }, 12671 5.025002 => { 12672 delta_from => 5.025001, 12673 changed => { 12674 'App::Cpan' => '1.64', 12675 'B::Op_private' => '5.025002', 12676 'CPAN' => '2.14', 12677 'CPAN::Distribution' => '2.12', 12678 'CPAN::FTP' => '5.5007', 12679 'CPAN::FirstTime' => '5.5309', 12680 'CPAN::HandleConfig' => '5.5007', 12681 'CPAN::Index' => '2.12', 12682 'CPAN::Mirrors' => '2.12', 12683 'CPAN::Plugin' => '0.96', 12684 'CPAN::Shell' => '5.5006', 12685 'Config' => '5.025002', 12686 'Cwd' => '3.64', 12687 'Devel::Peek' => '1.24', 12688 'DynaLoader' => '1.39', 12689 'ExtUtils::Command' => '7.18', 12690 'ExtUtils::Command::MM' => '7.18', 12691 'ExtUtils::Liblist' => '7.18', 12692 'ExtUtils::Liblist::Kid'=> '7.18', 12693 'ExtUtils::MM' => '7.18', 12694 'ExtUtils::MM_AIX' => '7.18', 12695 'ExtUtils::MM_Any' => '7.18', 12696 'ExtUtils::MM_BeOS' => '7.18', 12697 'ExtUtils::MM_Cygwin' => '7.18', 12698 'ExtUtils::MM_DOS' => '7.18', 12699 'ExtUtils::MM_Darwin' => '7.18', 12700 'ExtUtils::MM_MacOS' => '7.18', 12701 'ExtUtils::MM_NW5' => '7.18', 12702 'ExtUtils::MM_OS2' => '7.18', 12703 'ExtUtils::MM_QNX' => '7.18', 12704 'ExtUtils::MM_UWIN' => '7.18', 12705 'ExtUtils::MM_Unix' => '7.18', 12706 'ExtUtils::MM_VMS' => '7.18', 12707 'ExtUtils::MM_VOS' => '7.18', 12708 'ExtUtils::MM_Win32' => '7.18', 12709 'ExtUtils::MM_Win95' => '7.18', 12710 'ExtUtils::MY' => '7.18', 12711 'ExtUtils::MakeMaker' => '7.18', 12712 'ExtUtils::MakeMaker::Config'=> '7.18', 12713 'ExtUtils::MakeMaker::Locale'=> '7.18', 12714 'ExtUtils::MakeMaker::version'=> '7.18', 12715 'ExtUtils::MakeMaker::version::regex'=> '7.18', 12716 'ExtUtils::Miniperl' => '1.06', 12717 'ExtUtils::Mkbootstrap' => '7.18', 12718 'ExtUtils::Mksymlists' => '7.18', 12719 'ExtUtils::ParseXS' => '3.32', 12720 'ExtUtils::ParseXS::Constants'=> '3.32', 12721 'ExtUtils::ParseXS::CountLines'=> '3.32', 12722 'ExtUtils::ParseXS::Eval'=> '3.32', 12723 'ExtUtils::ParseXS::Utilities'=> '3.32', 12724 'ExtUtils::Typemaps' => '3.32', 12725 'ExtUtils::Typemaps::Cmd'=> '3.32', 12726 'ExtUtils::Typemaps::InputMap'=> '3.32', 12727 'ExtUtils::Typemaps::OutputMap'=> '3.32', 12728 'ExtUtils::Typemaps::Type'=> '3.32', 12729 'ExtUtils::testlib' => '7.18', 12730 'File::Copy' => '2.32', 12731 'File::Glob' => '1.27', 12732 'File::Spec' => '3.64', 12733 'File::Spec::Cygwin' => '3.64', 12734 'File::Spec::Epoc' => '3.64', 12735 'File::Spec::Functions' => '3.64', 12736 'File::Spec::Mac' => '3.64', 12737 'File::Spec::OS2' => '3.64', 12738 'File::Spec::Unix' => '3.64', 12739 'File::Spec::VMS' => '3.64', 12740 'File::Spec::Win32' => '3.64', 12741 'FileHandle' => '2.03', 12742 'Getopt::Long' => '2.49', 12743 'HTTP::Tiny' => '0.058', 12744 'JSON::PP' => '2.27400', 12745 'Locale::Codes' => '3.39', 12746 'Locale::Codes::Constants'=> '3.39', 12747 'Locale::Codes::Country'=> '3.39', 12748 'Locale::Codes::Country_Codes'=> '3.39', 12749 'Locale::Codes::Country_Retired'=> '3.39', 12750 'Locale::Codes::Currency'=> '3.39', 12751 'Locale::Codes::Currency_Codes'=> '3.39', 12752 'Locale::Codes::Currency_Retired'=> '3.39', 12753 'Locale::Codes::LangExt'=> '3.39', 12754 'Locale::Codes::LangExt_Codes'=> '3.39', 12755 'Locale::Codes::LangExt_Retired'=> '3.39', 12756 'Locale::Codes::LangFam'=> '3.39', 12757 'Locale::Codes::LangFam_Codes'=> '3.39', 12758 'Locale::Codes::LangFam_Retired'=> '3.39', 12759 'Locale::Codes::LangVar'=> '3.39', 12760 'Locale::Codes::LangVar_Codes'=> '3.39', 12761 'Locale::Codes::LangVar_Retired'=> '3.39', 12762 'Locale::Codes::Language'=> '3.39', 12763 'Locale::Codes::Language_Codes'=> '3.39', 12764 'Locale::Codes::Language_Retired'=> '3.39', 12765 'Locale::Codes::Script' => '3.39', 12766 'Locale::Codes::Script_Codes'=> '3.39', 12767 'Locale::Codes::Script_Retired'=> '3.39', 12768 'Locale::Country' => '3.39', 12769 'Locale::Currency' => '3.39', 12770 'Locale::Language' => '3.39', 12771 'Locale::Script' => '3.39', 12772 'Module::CoreList' => '5.20160620', 12773 'Module::CoreList::TieHashDelta'=> '5.20160620', 12774 'Module::CoreList::Utils'=> '5.20160620', 12775 'Opcode' => '1.35', 12776 'POSIX' => '1.70', 12777 'Pod::Checker' => '1.73', 12778 'Pod::Functions' => '1.11', 12779 'Pod::Usage' => '1.69', 12780 'Test2' => '1.302026', 12781 'Test2::API' => '1.302026', 12782 'Test2::API::Breakage' => '1.302026', 12783 'Test2::API::Context' => '1.302026', 12784 'Test2::API::Instance' => '1.302026', 12785 'Test2::API::Stack' => '1.302026', 12786 'Test2::Event' => '1.302026', 12787 'Test2::Event::Bail' => '1.302026', 12788 'Test2::Event::Diag' => '1.302026', 12789 'Test2::Event::Exception'=> '1.302026', 12790 'Test2::Event::Generic' => '1.302026', 12791 'Test2::Event::Note' => '1.302026', 12792 'Test2::Event::Ok' => '1.302026', 12793 'Test2::Event::Plan' => '1.302026', 12794 'Test2::Event::Skip' => '1.302026', 12795 'Test2::Event::Subtest' => '1.302026', 12796 'Test2::Event::Waiting' => '1.302026', 12797 'Test2::Formatter' => '1.302026', 12798 'Test2::Formatter::TAP' => '1.302026', 12799 'Test2::Hub' => '1.302026', 12800 'Test2::Hub::Interceptor'=> '1.302026', 12801 'Test2::Hub::Interceptor::Terminator'=> '1.302026', 12802 'Test2::Hub::Subtest' => '1.302026', 12803 'Test2::IPC' => '1.302026', 12804 'Test2::IPC::Driver' => '1.302026', 12805 'Test2::IPC::Driver::Files'=> '1.302026', 12806 'Test2::Util' => '1.302026', 12807 'Test2::Util::ExternalMeta'=> '1.302026', 12808 'Test2::Util::HashBase' => '1.302026', 12809 'Test2::Util::Trace' => '1.302026', 12810 'Test::Builder' => '1.302026', 12811 'Test::Builder::Formatter'=> '1.302026', 12812 'Test::Builder::Module' => '1.302026', 12813 'Test::Builder::Tester' => '1.302026', 12814 'Test::Builder::Tester::Color'=> '1.302026', 12815 'Test::Builder::TodoDiag'=> '1.302026', 12816 'Test::More' => '1.302026', 12817 'Test::Simple' => '1.302026', 12818 'Test::Tester' => '1.302026', 12819 'Test::Tester::Capture' => '1.302026', 12820 'Test::Tester::CaptureRunner'=> '1.302026', 12821 'Test::Tester::Delegate'=> '1.302026', 12822 'Test::use::ok' => '1.302026', 12823 'Thread::Queue' => '3.11', 12824 'Time::HiRes' => '1.9734', 12825 'Unicode::UCD' => '0.65', 12826 'VMS::DCLsym' => '1.07', 12827 'XS::APItest' => '0.82', 12828 'diagnostics' => '1.35', 12829 'feature' => '1.44', 12830 'ok' => '1.302026', 12831 'threads' => '2.09', 12832 }, 12833 removed => { 12834 } 12835 }, 12836 5.025003 => { 12837 delta_from => 5.025002, 12838 changed => { 12839 'B::Op_private' => '5.025003', 12840 'Config' => '5.025003', 12841 'Data::Dumper' => '2.161', 12842 'Devel::PPPort' => '3.35', 12843 'Encode' => '2.84', 12844 'Encode::MIME::Header' => '2.23', 12845 'Encode::MIME::Header::ISO_2022_JP'=> '1.07', 12846 'ExtUtils::ParseXS' => '3.33', 12847 'ExtUtils::ParseXS::Constants'=> '3.33', 12848 'ExtUtils::ParseXS::CountLines'=> '3.33', 12849 'ExtUtils::ParseXS::Eval'=> '3.33', 12850 'ExtUtils::ParseXS::Utilities'=> '3.33', 12851 'ExtUtils::Typemaps' => '3.33', 12852 'ExtUtils::Typemaps::Cmd'=> '3.33', 12853 'ExtUtils::Typemaps::InputMap'=> '3.33', 12854 'ExtUtils::Typemaps::OutputMap'=> '3.33', 12855 'ExtUtils::Typemaps::Type'=> '3.33', 12856 'Hash::Util' => '0.20', 12857 'Math::BigFloat' => '1.999726', 12858 'Math::BigFloat::Trace' => '0.43', 12859 'Math::BigInt' => '1.999726', 12860 'Math::BigInt::Calc' => '1.999726', 12861 'Math::BigInt::CalcEmu' => '1.999726', 12862 'Math::BigInt::FastCalc'=> '0.42', 12863 'Math::BigInt::Trace' => '0.43', 12864 'Math::BigRat' => '0.260804', 12865 'Module::CoreList' => '5.20160720', 12866 'Module::CoreList::TieHashDelta'=> '5.20160720', 12867 'Module::CoreList::Utils'=> '5.20160720', 12868 'Net::Cmd' => '3.09', 12869 'Net::Config' => '3.09', 12870 'Net::Domain' => '3.09', 12871 'Net::FTP' => '3.09', 12872 'Net::FTP::A' => '3.09', 12873 'Net::FTP::E' => '3.09', 12874 'Net::FTP::I' => '3.09', 12875 'Net::FTP::L' => '3.09', 12876 'Net::FTP::dataconn' => '3.09', 12877 'Net::NNTP' => '3.09', 12878 'Net::Netrc' => '3.09', 12879 'Net::POP3' => '3.09', 12880 'Net::SMTP' => '3.09', 12881 'Net::Time' => '3.09', 12882 'Parse::CPAN::Meta' => '1.4422', 12883 'Perl::OSType' => '1.010', 12884 'Test2' => '1.302045', 12885 'Test2::API' => '1.302045', 12886 'Test2::API::Breakage' => '1.302045', 12887 'Test2::API::Context' => '1.302045', 12888 'Test2::API::Instance' => '1.302045', 12889 'Test2::API::Stack' => '1.302045', 12890 'Test2::Event' => '1.302045', 12891 'Test2::Event::Bail' => '1.302045', 12892 'Test2::Event::Diag' => '1.302045', 12893 'Test2::Event::Exception'=> '1.302045', 12894 'Test2::Event::Generic' => '1.302045', 12895 'Test2::Event::Info' => '1.302045', 12896 'Test2::Event::Note' => '1.302045', 12897 'Test2::Event::Ok' => '1.302045', 12898 'Test2::Event::Plan' => '1.302045', 12899 'Test2::Event::Skip' => '1.302045', 12900 'Test2::Event::Subtest' => '1.302045', 12901 'Test2::Event::Waiting' => '1.302045', 12902 'Test2::Formatter' => '1.302045', 12903 'Test2::Formatter::TAP' => '1.302045', 12904 'Test2::Hub' => '1.302045', 12905 'Test2::Hub::Interceptor'=> '1.302045', 12906 'Test2::Hub::Interceptor::Terminator'=> '1.302045', 12907 'Test2::Hub::Subtest' => '1.302045', 12908 'Test2::IPC' => '1.302045', 12909 'Test2::IPC::Driver' => '1.302045', 12910 'Test2::IPC::Driver::Files'=> '1.302045', 12911 'Test2::Util' => '1.302045', 12912 'Test2::Util::ExternalMeta'=> '1.302045', 12913 'Test2::Util::HashBase' => '1.302045', 12914 'Test2::Util::Trace' => '1.302045', 12915 'Test::Builder' => '1.302045', 12916 'Test::Builder::Formatter'=> '1.302045', 12917 'Test::Builder::Module' => '1.302045', 12918 'Test::Builder::Tester' => '1.302045', 12919 'Test::Builder::Tester::Color'=> '1.302045', 12920 'Test::Builder::TodoDiag'=> '1.302045', 12921 'Test::More' => '1.302045', 12922 'Test::Simple' => '1.302045', 12923 'Test::Tester' => '1.302045', 12924 'Test::Tester::Capture' => '1.302045', 12925 'Test::Tester::CaptureRunner'=> '1.302045', 12926 'Test::Tester::Delegate'=> '1.302045', 12927 'Test::use::ok' => '1.302045', 12928 'Time::HiRes' => '1.9739', 12929 'Unicode' => '9.0.0', 12930 'Unicode::UCD' => '0.66', 12931 'XSLoader' => '0.22', 12932 'bigint' => '0.43', 12933 'bignum' => '0.43', 12934 'bigrat' => '0.43', 12935 'encoding' => '2.17_01', 12936 'encoding::warnings' => '0.13', 12937 'feature' => '1.45', 12938 'ok' => '1.302045', 12939 'version' => '0.9917', 12940 'version::regex' => '0.9917', 12941 'warnings' => '1.37', 12942 }, 12943 removed => { 12944 } 12945 }, 12946 5.025004 => { 12947 delta_from => 5.025003, 12948 changed => { 12949 'App::Cpan' => '1.64_01', 12950 'App::Prove' => '3.36_01', 12951 'App::Prove::State' => '3.36_01', 12952 'App::Prove::State::Result'=> '3.36_01', 12953 'App::Prove::State::Result::Test'=> '3.36_01', 12954 'Archive::Tar' => '2.10', 12955 'Archive::Tar::Constant'=> '2.10', 12956 'Archive::Tar::File' => '2.10', 12957 'B' => '1.63', 12958 'B::Concise' => '0.998', 12959 'B::Deparse' => '1.38', 12960 'B::Op_private' => '5.025004', 12961 'CPAN' => '2.14_01', 12962 'CPAN::Meta' => '2.150010', 12963 'CPAN::Meta::Converter' => '2.150010', 12964 'CPAN::Meta::Feature' => '2.150010', 12965 'CPAN::Meta::History' => '2.150010', 12966 'CPAN::Meta::Merge' => '2.150010', 12967 'CPAN::Meta::Prereqs' => '2.150010', 12968 'CPAN::Meta::Spec' => '2.150010', 12969 'CPAN::Meta::Validator' => '2.150010', 12970 'Carp' => '1.42', 12971 'Carp::Heavy' => '1.42', 12972 'Compress::Zlib' => '2.069_01', 12973 'Config' => '5.025004', 12974 'Config::Perl::V' => '0.27', 12975 'Cwd' => '3.65', 12976 'Digest' => '1.17_01', 12977 'Digest::SHA' => '5.96', 12978 'Encode' => '2.86', 12979 'Errno' => '1.26', 12980 'ExtUtils::Command' => '7.24', 12981 'ExtUtils::Command::MM' => '7.24', 12982 'ExtUtils::Liblist' => '7.24', 12983 'ExtUtils::Liblist::Kid'=> '7.24', 12984 'ExtUtils::MM' => '7.24', 12985 'ExtUtils::MM_AIX' => '7.24', 12986 'ExtUtils::MM_Any' => '7.24', 12987 'ExtUtils::MM_BeOS' => '7.24', 12988 'ExtUtils::MM_Cygwin' => '7.24', 12989 'ExtUtils::MM_DOS' => '7.24', 12990 'ExtUtils::MM_Darwin' => '7.24', 12991 'ExtUtils::MM_MacOS' => '7.24', 12992 'ExtUtils::MM_NW5' => '7.24', 12993 'ExtUtils::MM_OS2' => '7.24', 12994 'ExtUtils::MM_QNX' => '7.24', 12995 'ExtUtils::MM_UWIN' => '7.24', 12996 'ExtUtils::MM_Unix' => '7.24', 12997 'ExtUtils::MM_VMS' => '7.24', 12998 'ExtUtils::MM_VOS' => '7.24', 12999 'ExtUtils::MM_Win32' => '7.24', 13000 'ExtUtils::MM_Win95' => '7.24', 13001 'ExtUtils::MY' => '7.24', 13002 'ExtUtils::MakeMaker' => '7.24', 13003 'ExtUtils::MakeMaker::Config'=> '7.24', 13004 'ExtUtils::MakeMaker::Locale'=> '7.24', 13005 'ExtUtils::MakeMaker::version'=> '7.24', 13006 'ExtUtils::MakeMaker::version::regex'=> '7.24', 13007 'ExtUtils::Mkbootstrap' => '7.24', 13008 'ExtUtils::Mksymlists' => '7.24', 13009 'ExtUtils::testlib' => '7.24', 13010 'File::Fetch' => '0.52', 13011 'File::Spec' => '3.65', 13012 'File::Spec::AmigaOS' => '3.65', 13013 'File::Spec::Cygwin' => '3.65', 13014 'File::Spec::Epoc' => '3.65', 13015 'File::Spec::Functions' => '3.65', 13016 'File::Spec::Mac' => '3.65', 13017 'File::Spec::OS2' => '3.65', 13018 'File::Spec::Unix' => '3.65', 13019 'File::Spec::VMS' => '3.65', 13020 'File::Spec::Win32' => '3.65', 13021 'HTTP::Tiny' => '0.064', 13022 'Hash::Util' => '0.21', 13023 'I18N::LangTags' => '0.41', 13024 'I18N::LangTags::Detect'=> '1.06', 13025 'IO' => '1.37', 13026 'IO::Compress::Adapter::Bzip2'=> '2.069_01', 13027 'IO::Compress::Adapter::Deflate'=> '2.069_01', 13028 'IO::Compress::Adapter::Identity'=> '2.069_01', 13029 'IO::Compress::Base' => '2.069_01', 13030 'IO::Compress::Base::Common'=> '2.069_01', 13031 'IO::Compress::Bzip2' => '2.069_01', 13032 'IO::Compress::Deflate' => '2.069_01', 13033 'IO::Compress::Gzip' => '2.069_01', 13034 'IO::Compress::Gzip::Constants'=> '2.069_01', 13035 'IO::Compress::RawDeflate'=> '2.069_01', 13036 'IO::Compress::Zip' => '2.069_01', 13037 'IO::Compress::Zip::Constants'=> '2.069_01', 13038 'IO::Compress::Zlib::Constants'=> '2.069_01', 13039 'IO::Compress::Zlib::Extra'=> '2.069_01', 13040 'IO::Socket::IP' => '0.38', 13041 'IO::Uncompress::Adapter::Bunzip2'=> '2.069_01', 13042 'IO::Uncompress::Adapter::Identity'=> '2.069_01', 13043 'IO::Uncompress::Adapter::Inflate'=> '2.069_01', 13044 'IO::Uncompress::AnyInflate'=> '2.069_01', 13045 'IO::Uncompress::AnyUncompress'=> '2.069_01', 13046 'IO::Uncompress::Base' => '2.069_01', 13047 'IO::Uncompress::Bunzip2'=> '2.069_01', 13048 'IO::Uncompress::Gunzip'=> '2.069_01', 13049 'IO::Uncompress::Inflate'=> '2.069_01', 13050 'IO::Uncompress::RawInflate'=> '2.069_01', 13051 'IO::Uncompress::Unzip' => '2.069_01', 13052 'IPC::Cmd' => '0.96', 13053 'JSON::PP' => '2.27400_01', 13054 'Locale::Maketext' => '1.28', 13055 'Locale::Maketext::Simple'=> '0.21_01', 13056 'Math::BigFloat::Trace' => '0.43_01', 13057 'Math::BigInt::Trace' => '0.43_01', 13058 'Memoize' => '1.03_01', 13059 'Module::CoreList' => '5.20160820', 13060 'Module::CoreList::TieHashDelta'=> '5.20160820', 13061 'Module::CoreList::Utils'=> '5.20160820', 13062 'Module::Load::Conditional'=> '0.68', 13063 'Module::Metadata' => '1.000033', 13064 'NEXT' => '0.67', 13065 'Net::Cmd' => '3.10', 13066 'Net::Config' => '3.10', 13067 'Net::Domain' => '3.10', 13068 'Net::FTP' => '3.10', 13069 'Net::FTP::A' => '3.10', 13070 'Net::FTP::E' => '3.10', 13071 'Net::FTP::I' => '3.10', 13072 'Net::FTP::L' => '3.10', 13073 'Net::FTP::dataconn' => '3.10', 13074 'Net::NNTP' => '3.10', 13075 'Net::Netrc' => '3.10', 13076 'Net::POP3' => '3.10', 13077 'Net::Ping' => '2.44', 13078 'Net::SMTP' => '3.10', 13079 'Net::Time' => '3.10', 13080 'Opcode' => '1.37', 13081 'POSIX' => '1.71', 13082 'Parse::CPAN::Meta' => '2.150010', 13083 'Pod::Html' => '1.2201', 13084 'Pod::Perldoc' => '3.27', 13085 'Pod::Perldoc::BaseTo' => '3.27', 13086 'Pod::Perldoc::GetOptsOO'=> '3.27', 13087 'Pod::Perldoc::ToANSI' => '3.27', 13088 'Pod::Perldoc::ToChecker'=> '3.27', 13089 'Pod::Perldoc::ToMan' => '3.27', 13090 'Pod::Perldoc::ToNroff' => '3.27', 13091 'Pod::Perldoc::ToPod' => '3.27', 13092 'Pod::Perldoc::ToRtf' => '3.27', 13093 'Pod::Perldoc::ToTerm' => '3.27', 13094 'Pod::Perldoc::ToText' => '3.27', 13095 'Pod::Perldoc::ToTk' => '3.27', 13096 'Pod::Perldoc::ToXml' => '3.27', 13097 'Storable' => '2.57', 13098 'Sys::Syslog' => '0.34_01', 13099 'TAP::Base' => '3.36_01', 13100 'TAP::Formatter::Base' => '3.36_01', 13101 'TAP::Formatter::Color' => '3.36_01', 13102 'TAP::Formatter::Console'=> '3.36_01', 13103 'TAP::Formatter::Console::ParallelSession'=> '3.36_01', 13104 'TAP::Formatter::Console::Session'=> '3.36_01', 13105 'TAP::Formatter::File' => '3.36_01', 13106 'TAP::Formatter::File::Session'=> '3.36_01', 13107 'TAP::Formatter::Session'=> '3.36_01', 13108 'TAP::Harness' => '3.36_01', 13109 'TAP::Harness::Env' => '3.36_01', 13110 'TAP::Object' => '3.36_01', 13111 'TAP::Parser' => '3.36_01', 13112 'TAP::Parser::Aggregator'=> '3.36_01', 13113 'TAP::Parser::Grammar' => '3.36_01', 13114 'TAP::Parser::Iterator' => '3.36_01', 13115 'TAP::Parser::Iterator::Array'=> '3.36_01', 13116 'TAP::Parser::Iterator::Process'=> '3.36_01', 13117 'TAP::Parser::Iterator::Stream'=> '3.36_01', 13118 'TAP::Parser::IteratorFactory'=> '3.36_01', 13119 'TAP::Parser::Multiplexer'=> '3.36_01', 13120 'TAP::Parser::Result' => '3.36_01', 13121 'TAP::Parser::Result::Bailout'=> '3.36_01', 13122 'TAP::Parser::Result::Comment'=> '3.36_01', 13123 'TAP::Parser::Result::Plan'=> '3.36_01', 13124 'TAP::Parser::Result::Pragma'=> '3.36_01', 13125 'TAP::Parser::Result::Test'=> '3.36_01', 13126 'TAP::Parser::Result::Unknown'=> '3.36_01', 13127 'TAP::Parser::Result::Version'=> '3.36_01', 13128 'TAP::Parser::Result::YAML'=> '3.36_01', 13129 'TAP::Parser::ResultFactory'=> '3.36_01', 13130 'TAP::Parser::Scheduler'=> '3.36_01', 13131 'TAP::Parser::Scheduler::Job'=> '3.36_01', 13132 'TAP::Parser::Scheduler::Spinner'=> '3.36_01', 13133 'TAP::Parser::Source' => '3.36_01', 13134 'TAP::Parser::SourceHandler'=> '3.36_01', 13135 'TAP::Parser::SourceHandler::Executable'=> '3.36_01', 13136 'TAP::Parser::SourceHandler::File'=> '3.36_01', 13137 'TAP::Parser::SourceHandler::Handle'=> '3.36_01', 13138 'TAP::Parser::SourceHandler::Perl'=> '3.36_01', 13139 'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01', 13140 'TAP::Parser::YAMLish::Reader'=> '3.36_01', 13141 'TAP::Parser::YAMLish::Writer'=> '3.36_01', 13142 'Test' => '1.29', 13143 'Test2' => '1.302052', 13144 'Test2::API' => '1.302052', 13145 'Test2::API::Breakage' => '1.302052', 13146 'Test2::API::Context' => '1.302052', 13147 'Test2::API::Instance' => '1.302052', 13148 'Test2::API::Stack' => '1.302052', 13149 'Test2::Event' => '1.302052', 13150 'Test2::Event::Bail' => '1.302052', 13151 'Test2::Event::Diag' => '1.302052', 13152 'Test2::Event::Exception'=> '1.302052', 13153 'Test2::Event::Generic' => '1.302052', 13154 'Test2::Event::Info' => '1.302052', 13155 'Test2::Event::Note' => '1.302052', 13156 'Test2::Event::Ok' => '1.302052', 13157 'Test2::Event::Plan' => '1.302052', 13158 'Test2::Event::Skip' => '1.302052', 13159 'Test2::Event::Subtest' => '1.302052', 13160 'Test2::Event::Waiting' => '1.302052', 13161 'Test2::Formatter' => '1.302052', 13162 'Test2::Formatter::TAP' => '1.302052', 13163 'Test2::Hub' => '1.302052', 13164 'Test2::Hub::Interceptor'=> '1.302052', 13165 'Test2::Hub::Interceptor::Terminator'=> '1.302052', 13166 'Test2::Hub::Subtest' => '1.302052', 13167 'Test2::IPC' => '1.302052', 13168 'Test2::IPC::Driver' => '1.302052', 13169 'Test2::IPC::Driver::Files'=> '1.302052', 13170 'Test2::Util' => '1.302052', 13171 'Test2::Util::ExternalMeta'=> '1.302052', 13172 'Test2::Util::HashBase' => '1.302052', 13173 'Test2::Util::Trace' => '1.302052', 13174 'Test::Builder' => '1.302052', 13175 'Test::Builder::Formatter'=> '1.302052', 13176 'Test::Builder::Module' => '1.302052', 13177 'Test::Builder::Tester' => '1.302052', 13178 'Test::Builder::Tester::Color'=> '1.302052', 13179 'Test::Builder::TodoDiag'=> '1.302052', 13180 'Test::Harness' => '3.36_01', 13181 'Test::More' => '1.302052', 13182 'Test::Simple' => '1.302052', 13183 'Test::Tester' => '1.302052', 13184 'Test::Tester::Capture' => '1.302052', 13185 'Test::Tester::CaptureRunner'=> '1.302052', 13186 'Test::Tester::Delegate'=> '1.302052', 13187 'Test::use::ok' => '1.302052', 13188 'Tie::Hash::NamedCapture'=> '0.10', 13189 'Time::Local' => '1.24', 13190 'XS::APItest' => '0.83', 13191 'arybase' => '0.12', 13192 'base' => '2.24', 13193 'bigint' => '0.43_01', 13194 'bignum' => '0.43_01', 13195 'bigrat' => '0.43_01', 13196 'encoding' => '2.18', 13197 'ok' => '1.302052', 13198 }, 13199 removed => { 13200 } 13201 }, 13202 5.025005 => { 13203 delta_from => 5.025004, 13204 changed => { 13205 'B::Op_private' => '5.025005', 13206 'Config' => '5.025005', 13207 'Filter::Simple' => '0.93', 13208 'Locale::Codes' => '3.40', 13209 'Locale::Codes::Constants'=> '3.40', 13210 'Locale::Codes::Country'=> '3.40', 13211 'Locale::Codes::Country_Codes'=> '3.40', 13212 'Locale::Codes::Country_Retired'=> '3.40', 13213 'Locale::Codes::Currency'=> '3.40', 13214 'Locale::Codes::Currency_Codes'=> '3.40', 13215 'Locale::Codes::Currency_Retired'=> '3.40', 13216 'Locale::Codes::LangExt'=> '3.40', 13217 'Locale::Codes::LangExt_Codes'=> '3.40', 13218 'Locale::Codes::LangExt_Retired'=> '3.40', 13219 'Locale::Codes::LangFam'=> '3.40', 13220 'Locale::Codes::LangFam_Codes'=> '3.40', 13221 'Locale::Codes::LangFam_Retired'=> '3.40', 13222 'Locale::Codes::LangVar'=> '3.40', 13223 'Locale::Codes::LangVar_Codes'=> '3.40', 13224 'Locale::Codes::LangVar_Retired'=> '3.40', 13225 'Locale::Codes::Language'=> '3.40', 13226 'Locale::Codes::Language_Codes'=> '3.40', 13227 'Locale::Codes::Language_Retired'=> '3.40', 13228 'Locale::Codes::Script' => '3.40', 13229 'Locale::Codes::Script_Codes'=> '3.40', 13230 'Locale::Codes::Script_Retired'=> '3.40', 13231 'Locale::Country' => '3.40', 13232 'Locale::Currency' => '3.40', 13233 'Locale::Language' => '3.40', 13234 'Locale::Script' => '3.40', 13235 'Module::CoreList' => '5.20160920', 13236 'Module::CoreList::TieHashDelta'=> '5.20160920', 13237 'Module::CoreList::Utils'=> '5.20160920', 13238 'POSIX' => '1.72', 13239 'Sys::Syslog' => '0.35', 13240 'Test2' => '1.302056', 13241 'Test2::API' => '1.302056', 13242 'Test2::API::Breakage' => '1.302056', 13243 'Test2::API::Context' => '1.302056', 13244 'Test2::API::Instance' => '1.302056', 13245 'Test2::API::Stack' => '1.302056', 13246 'Test2::Event' => '1.302056', 13247 'Test2::Event::Bail' => '1.302056', 13248 'Test2::Event::Diag' => '1.302056', 13249 'Test2::Event::Exception'=> '1.302056', 13250 'Test2::Event::Generic' => '1.302056', 13251 'Test2::Event::Info' => '1.302056', 13252 'Test2::Event::Note' => '1.302056', 13253 'Test2::Event::Ok' => '1.302056', 13254 'Test2::Event::Plan' => '1.302056', 13255 'Test2::Event::Skip' => '1.302056', 13256 'Test2::Event::Subtest' => '1.302056', 13257 'Test2::Event::Waiting' => '1.302056', 13258 'Test2::Formatter' => '1.302056', 13259 'Test2::Formatter::TAP' => '1.302056', 13260 'Test2::Hub' => '1.302056', 13261 'Test2::Hub::Interceptor'=> '1.302056', 13262 'Test2::Hub::Interceptor::Terminator'=> '1.302056', 13263 'Test2::Hub::Subtest' => '1.302056', 13264 'Test2::IPC' => '1.302056', 13265 'Test2::IPC::Driver' => '1.302056', 13266 'Test2::IPC::Driver::Files'=> '1.302056', 13267 'Test2::Util' => '1.302056', 13268 'Test2::Util::ExternalMeta'=> '1.302056', 13269 'Test2::Util::HashBase' => '1.302056', 13270 'Test2::Util::Trace' => '1.302056', 13271 'Test::Builder' => '1.302056', 13272 'Test::Builder::Formatter'=> '1.302056', 13273 'Test::Builder::Module' => '1.302056', 13274 'Test::Builder::Tester' => '1.302056', 13275 'Test::Builder::Tester::Color'=> '1.302056', 13276 'Test::Builder::TodoDiag'=> '1.302056', 13277 'Test::More' => '1.302056', 13278 'Test::Simple' => '1.302056', 13279 'Test::Tester' => '1.302056', 13280 'Test::Tester::Capture' => '1.302056', 13281 'Test::Tester::CaptureRunner'=> '1.302056', 13282 'Test::Tester::Delegate'=> '1.302056', 13283 'Test::use::ok' => '1.302056', 13284 'Thread::Semaphore' => '2.13', 13285 'XS::APItest' => '0.84', 13286 'XSLoader' => '0.24', 13287 'ok' => '1.302056', 13288 }, 13289 removed => { 13290 } 13291 }, 13292 5.025006 => { 13293 delta_from => 5.025005, 13294 changed => { 13295 'Archive::Tar' => '2.14', 13296 'Archive::Tar::Constant'=> '2.14', 13297 'Archive::Tar::File' => '2.14', 13298 'B' => '1.64', 13299 'B::Concise' => '0.999', 13300 'B::Deparse' => '1.39', 13301 'B::Op_private' => '5.025006', 13302 'Config' => '5.025006', 13303 'Data::Dumper' => '2.162', 13304 'Devel::Peek' => '1.25', 13305 'HTTP::Tiny' => '0.070', 13306 'List::Util' => '1.46', 13307 'List::Util::XS' => '1.46', 13308 'Module::CoreList' => '5.20161020', 13309 'Module::CoreList::TieHashDelta'=> '5.20161020', 13310 'Module::CoreList::Utils'=> '5.20161020', 13311 'Net::Ping' => '2.51', 13312 'OS2::DLL' => '1.07', 13313 'Opcode' => '1.38', 13314 'POSIX' => '1.73', 13315 'PerlIO::encoding' => '0.25', 13316 'Pod::Man' => '4.08', 13317 'Pod::ParseLink' => '4.08', 13318 'Pod::Text' => '4.08', 13319 'Pod::Text::Color' => '4.08', 13320 'Pod::Text::Overstrike' => '4.08', 13321 'Pod::Text::Termcap' => '4.08', 13322 'Scalar::Util' => '1.46', 13323 'Storable' => '2.58', 13324 'Sub::Util' => '1.46', 13325 'Test2' => '1.302059', 13326 'Test2::API' => '1.302059', 13327 'Test2::API::Breakage' => '1.302059', 13328 'Test2::API::Context' => '1.302059', 13329 'Test2::API::Instance' => '1.302059', 13330 'Test2::API::Stack' => '1.302059', 13331 'Test2::Event' => '1.302059', 13332 'Test2::Event::Bail' => '1.302059', 13333 'Test2::Event::Diag' => '1.302059', 13334 'Test2::Event::Exception'=> '1.302059', 13335 'Test2::Event::Generic' => '1.302059', 13336 'Test2::Event::Info' => '1.302059', 13337 'Test2::Event::Note' => '1.302059', 13338 'Test2::Event::Ok' => '1.302059', 13339 'Test2::Event::Plan' => '1.302059', 13340 'Test2::Event::Skip' => '1.302059', 13341 'Test2::Event::Subtest' => '1.302059', 13342 'Test2::Event::Waiting' => '1.302059', 13343 'Test2::Formatter' => '1.302059', 13344 'Test2::Formatter::TAP' => '1.302059', 13345 'Test2::Hub' => '1.302059', 13346 'Test2::Hub::Interceptor'=> '1.302059', 13347 'Test2::Hub::Interceptor::Terminator'=> '1.302059', 13348 'Test2::Hub::Subtest' => '1.302059', 13349 'Test2::IPC' => '1.302059', 13350 'Test2::IPC::Driver' => '1.302059', 13351 'Test2::IPC::Driver::Files'=> '1.302059', 13352 'Test2::Util' => '1.302059', 13353 'Test2::Util::ExternalMeta'=> '1.302059', 13354 'Test2::Util::HashBase' => '1.302059', 13355 'Test2::Util::Trace' => '1.302059', 13356 'Test::Builder' => '1.302059', 13357 'Test::Builder::Formatter'=> '1.302059', 13358 'Test::Builder::Module' => '1.302059', 13359 'Test::Builder::Tester' => '1.302059', 13360 'Test::Builder::Tester::Color'=> '1.302059', 13361 'Test::Builder::TodoDiag'=> '1.302059', 13362 'Test::More' => '1.302059', 13363 'Test::Simple' => '1.302059', 13364 'Test::Tester' => '1.302059', 13365 'Test::Tester::Capture' => '1.302059', 13366 'Test::Tester::CaptureRunner'=> '1.302059', 13367 'Test::Tester::Delegate'=> '1.302059', 13368 'Test::use::ok' => '1.302059', 13369 'Time::HiRes' => '1.9740_01', 13370 'VMS::Stdio' => '2.42', 13371 'XS::APItest' => '0.86', 13372 'attributes' => '0.28', 13373 'mro' => '1.19', 13374 'ok' => '1.302059', 13375 'overload' => '1.27', 13376 'parent' => '0.236', 13377 }, 13378 removed => { 13379 } 13380 }, 13381 5.025007 => { 13382 delta_from => 5.025006, 13383 changed => { 13384 'Archive::Tar' => '2.18', 13385 'Archive::Tar::Constant'=> '2.18', 13386 'Archive::Tar::File' => '2.18', 13387 'B' => '1.65', 13388 'B::Op_private' => '5.025007', 13389 'Config' => '5.025007', 13390 'Cwd' => '3.66', 13391 'Data::Dumper' => '2.165', 13392 'Devel::Peek' => '1.26', 13393 'DynaLoader' => '1.40', 13394 'Errno' => '1.27', 13395 'ExtUtils::ParseXS::Utilities'=> '3.34', 13396 'File::Spec' => '3.66', 13397 'File::Spec::AmigaOS' => '3.66', 13398 'File::Spec::Cygwin' => '3.66', 13399 'File::Spec::Epoc' => '3.66', 13400 'File::Spec::Functions' => '3.66', 13401 'File::Spec::Mac' => '3.66', 13402 'File::Spec::OS2' => '3.66', 13403 'File::Spec::Unix' => '3.66', 13404 'File::Spec::VMS' => '3.66', 13405 'File::Spec::Win32' => '3.66', 13406 'Hash::Util' => '0.22', 13407 'JSON::PP' => '2.27400_02', 13408 'List::Util' => '1.46_02', 13409 'List::Util::XS' => '1.46_02', 13410 'Math::BigFloat' => '1.999727', 13411 'Math::BigInt' => '1.999727', 13412 'Math::BigInt::Calc' => '1.999727', 13413 'Math::BigInt::CalcEmu' => '1.999727', 13414 'Math::Complex' => '1.5901', 13415 'Module::CoreList' => '5.20161120', 13416 'Module::CoreList::TieHashDelta'=> '5.20161120', 13417 'Module::CoreList::Utils'=> '5.20161120', 13418 'Net::Ping' => '2.55', 13419 'Opcode' => '1.39', 13420 'POSIX' => '1.75', 13421 'Pod::Man' => '4.09', 13422 'Pod::ParseLink' => '4.09', 13423 'Pod::Text' => '4.09', 13424 'Pod::Text::Color' => '4.09', 13425 'Pod::Text::Overstrike' => '4.09', 13426 'Pod::Text::Termcap' => '4.09', 13427 'Scalar::Util' => '1.46_02', 13428 'Storable' => '2.59', 13429 'Sub::Util' => '1.46_02', 13430 'Term::ANSIColor' => '4.06', 13431 'Test2' => '1.302062', 13432 'Test2::API' => '1.302062', 13433 'Test2::API::Breakage' => '1.302062', 13434 'Test2::API::Context' => '1.302062', 13435 'Test2::API::Instance' => '1.302062', 13436 'Test2::API::Stack' => '1.302062', 13437 'Test2::Event' => '1.302062', 13438 'Test2::Event::Bail' => '1.302062', 13439 'Test2::Event::Diag' => '1.302062', 13440 'Test2::Event::Exception'=> '1.302062', 13441 'Test2::Event::Generic' => '1.302062', 13442 'Test2::Event::Info' => '1.302062', 13443 'Test2::Event::Note' => '1.302062', 13444 'Test2::Event::Ok' => '1.302062', 13445 'Test2::Event::Plan' => '1.302062', 13446 'Test2::Event::Skip' => '1.302062', 13447 'Test2::Event::Subtest' => '1.302062', 13448 'Test2::Event::Waiting' => '1.302062', 13449 'Test2::Formatter' => '1.302062', 13450 'Test2::Formatter::TAP' => '1.302062', 13451 'Test2::Hub' => '1.302062', 13452 'Test2::Hub::Interceptor'=> '1.302062', 13453 'Test2::Hub::Interceptor::Terminator'=> '1.302062', 13454 'Test2::Hub::Subtest' => '1.302062', 13455 'Test2::IPC' => '1.302062', 13456 'Test2::IPC::Driver' => '1.302062', 13457 'Test2::IPC::Driver::Files'=> '1.302062', 13458 'Test2::Util' => '1.302062', 13459 'Test2::Util::ExternalMeta'=> '1.302062', 13460 'Test2::Util::HashBase' => '1.302062', 13461 'Test2::Util::Trace' => '1.302062', 13462 'Test::Builder' => '1.302062', 13463 'Test::Builder::Formatter'=> '1.302062', 13464 'Test::Builder::Module' => '1.302062', 13465 'Test::Builder::Tester' => '1.302062', 13466 'Test::Builder::Tester::Color'=> '1.302062', 13467 'Test::Builder::TodoDiag'=> '1.302062', 13468 'Test::More' => '1.302062', 13469 'Test::Simple' => '1.302062', 13470 'Test::Tester' => '1.302062', 13471 'Test::Tester::Capture' => '1.302062', 13472 'Test::Tester::CaptureRunner'=> '1.302062', 13473 'Test::Tester::Delegate'=> '1.302062', 13474 'Test::use::ok' => '1.302062', 13475 'Time::HiRes' => '1.9740_03', 13476 'Unicode::Collate' => '1.18', 13477 'Unicode::Collate::CJK::Big5'=> '1.18', 13478 'Unicode::Collate::CJK::GB2312'=> '1.18', 13479 'Unicode::Collate::CJK::JISX0208'=> '1.18', 13480 'Unicode::Collate::CJK::Korean'=> '1.18', 13481 'Unicode::Collate::CJK::Pinyin'=> '1.18', 13482 'Unicode::Collate::CJK::Stroke'=> '1.18', 13483 'Unicode::Collate::CJK::Zhuyin'=> '1.18', 13484 'Unicode::Collate::Locale'=> '1.18', 13485 'Unicode::UCD' => '0.67', 13486 'XS::APItest' => '0.87', 13487 'XS::Typemap' => '0.15', 13488 'mro' => '1.20', 13489 'ok' => '1.302062', 13490 'threads' => '2.10', 13491 }, 13492 removed => { 13493 } 13494 }, 13495 5.025008 => { 13496 delta_from => 5.025007, 13497 changed => { 13498 'Archive::Tar' => '2.24', 13499 'Archive::Tar::Constant'=> '2.24', 13500 'Archive::Tar::File' => '2.24', 13501 'B::Debug' => '1.24', 13502 'B::Op_private' => '5.025008', 13503 'Config' => '5.025008', 13504 'Data::Dumper' => '2.166', 13505 'Encode' => '2.88', 13506 'Encode::Alias' => '2.21', 13507 'Encode::CN::HZ' => '2.08', 13508 'Encode::MIME::Header' => '2.24', 13509 'Encode::MIME::Name' => '1.02', 13510 'Encode::Unicode' => '2.1501', 13511 'IO' => '1.38', 13512 'Locale::Codes' => '3.42', 13513 'Locale::Codes::Constants'=> '3.42', 13514 'Locale::Codes::Country'=> '3.42', 13515 'Locale::Codes::Country_Codes'=> '3.42', 13516 'Locale::Codes::Country_Retired'=> '3.42', 13517 'Locale::Codes::Currency'=> '3.42', 13518 'Locale::Codes::Currency_Codes'=> '3.42', 13519 'Locale::Codes::Currency_Retired'=> '3.42', 13520 'Locale::Codes::LangExt'=> '3.42', 13521 'Locale::Codes::LangExt_Codes'=> '3.42', 13522 'Locale::Codes::LangExt_Retired'=> '3.42', 13523 'Locale::Codes::LangFam'=> '3.42', 13524 'Locale::Codes::LangFam_Codes'=> '3.42', 13525 'Locale::Codes::LangFam_Retired'=> '3.42', 13526 'Locale::Codes::LangVar'=> '3.42', 13527 'Locale::Codes::LangVar_Codes'=> '3.42', 13528 'Locale::Codes::LangVar_Retired'=> '3.42', 13529 'Locale::Codes::Language'=> '3.42', 13530 'Locale::Codes::Language_Codes'=> '3.42', 13531 'Locale::Codes::Language_Retired'=> '3.42', 13532 'Locale::Codes::Script' => '3.42', 13533 'Locale::Codes::Script_Codes'=> '3.42', 13534 'Locale::Codes::Script_Retired'=> '3.42', 13535 'Locale::Country' => '3.42', 13536 'Locale::Currency' => '3.42', 13537 'Locale::Language' => '3.42', 13538 'Locale::Script' => '3.42', 13539 'Math::BigFloat' => '1.999806', 13540 'Math::BigFloat::Trace' => '0.47', 13541 'Math::BigInt' => '1.999806', 13542 'Math::BigInt::Calc' => '1.999806', 13543 'Math::BigInt::CalcEmu' => '1.999806', 13544 'Math::BigInt::FastCalc'=> '0.5005', 13545 'Math::BigInt::Lib' => '1.999806', 13546 'Math::BigInt::Trace' => '0.47', 13547 'Math::BigRat' => '0.2611', 13548 'Module::CoreList' => '5.20161220', 13549 'Module::CoreList::TieHashDelta'=> '5.20161220', 13550 'Module::CoreList::Utils'=> '5.20161220', 13551 'POSIX' => '1.76', 13552 'PerlIO::scalar' => '0.25', 13553 'Pod::Simple' => '3.35', 13554 'Pod::Simple::BlackBox' => '3.35', 13555 'Pod::Simple::Checker' => '3.35', 13556 'Pod::Simple::Debug' => '3.35', 13557 'Pod::Simple::DumpAsText'=> '3.35', 13558 'Pod::Simple::DumpAsXML'=> '3.35', 13559 'Pod::Simple::HTML' => '3.35', 13560 'Pod::Simple::HTMLBatch'=> '3.35', 13561 'Pod::Simple::LinkSection'=> '3.35', 13562 'Pod::Simple::Methody' => '3.35', 13563 'Pod::Simple::Progress' => '3.35', 13564 'Pod::Simple::PullParser'=> '3.35', 13565 'Pod::Simple::PullParserEndToken'=> '3.35', 13566 'Pod::Simple::PullParserStartToken'=> '3.35', 13567 'Pod::Simple::PullParserTextToken'=> '3.35', 13568 'Pod::Simple::PullParserToken'=> '3.35', 13569 'Pod::Simple::RTF' => '3.35', 13570 'Pod::Simple::Search' => '3.35', 13571 'Pod::Simple::SimpleTree'=> '3.35', 13572 'Pod::Simple::Text' => '3.35', 13573 'Pod::Simple::TextContent'=> '3.35', 13574 'Pod::Simple::TiedOutFH'=> '3.35', 13575 'Pod::Simple::Transcode'=> '3.35', 13576 'Pod::Simple::TranscodeDumb'=> '3.35', 13577 'Pod::Simple::TranscodeSmart'=> '3.35', 13578 'Pod::Simple::XHTML' => '3.35', 13579 'Pod::Simple::XMLOutStream'=> '3.35', 13580 'Test2' => '1.302073', 13581 'Test2::API' => '1.302073', 13582 'Test2::API::Breakage' => '1.302073', 13583 'Test2::API::Context' => '1.302073', 13584 'Test2::API::Instance' => '1.302073', 13585 'Test2::API::Stack' => '1.302073', 13586 'Test2::Event' => '1.302073', 13587 'Test2::Event::Bail' => '1.302073', 13588 'Test2::Event::Diag' => '1.302073', 13589 'Test2::Event::Encoding'=> '1.302073', 13590 'Test2::Event::Exception'=> '1.302073', 13591 'Test2::Event::Generic' => '1.302073', 13592 'Test2::Event::Info' => '1.302073', 13593 'Test2::Event::Note' => '1.302073', 13594 'Test2::Event::Ok' => '1.302073', 13595 'Test2::Event::Plan' => '1.302073', 13596 'Test2::Event::Skip' => '1.302073', 13597 'Test2::Event::Subtest' => '1.302073', 13598 'Test2::Event::TAP::Version'=> '1.302073', 13599 'Test2::Event::Waiting' => '1.302073', 13600 'Test2::Formatter' => '1.302073', 13601 'Test2::Formatter::TAP' => '1.302073', 13602 'Test2::Hub' => '1.302073', 13603 'Test2::Hub::Interceptor'=> '1.302073', 13604 'Test2::Hub::Interceptor::Terminator'=> '1.302073', 13605 'Test2::Hub::Subtest' => '1.302073', 13606 'Test2::IPC' => '1.302073', 13607 'Test2::IPC::Driver' => '1.302073', 13608 'Test2::IPC::Driver::Files'=> '1.302073', 13609 'Test2::Tools::Tiny' => '1.302073', 13610 'Test2::Util' => '1.302073', 13611 'Test2::Util::ExternalMeta'=> '1.302073', 13612 'Test2::Util::HashBase' => '0.002', 13613 'Test2::Util::Trace' => '1.302073', 13614 'Test::Builder' => '1.302073', 13615 'Test::Builder::Formatter'=> '1.302073', 13616 'Test::Builder::Module' => '1.302073', 13617 'Test::Builder::Tester' => '1.302073', 13618 'Test::Builder::Tester::Color'=> '1.302073', 13619 'Test::Builder::TodoDiag'=> '1.302073', 13620 'Test::More' => '1.302073', 13621 'Test::Simple' => '1.302073', 13622 'Test::Tester' => '1.302073', 13623 'Test::Tester::Capture' => '1.302073', 13624 'Test::Tester::CaptureRunner'=> '1.302073', 13625 'Test::Tester::Delegate'=> '1.302073', 13626 'Test::use::ok' => '1.302073', 13627 'Time::HiRes' => '1.9741', 13628 'Time::Local' => '1.25', 13629 'Unicode::Collate' => '1.19', 13630 'Unicode::Collate::CJK::Big5'=> '1.19', 13631 'Unicode::Collate::CJK::GB2312'=> '1.19', 13632 'Unicode::Collate::CJK::JISX0208'=> '1.19', 13633 'Unicode::Collate::CJK::Korean'=> '1.19', 13634 'Unicode::Collate::CJK::Pinyin'=> '1.19', 13635 'Unicode::Collate::CJK::Stroke'=> '1.19', 13636 'Unicode::Collate::CJK::Zhuyin'=> '1.19', 13637 'Unicode::Collate::Locale'=> '1.19', 13638 'bigint' => '0.47', 13639 'bignum' => '0.47', 13640 'bigrat' => '0.47', 13641 'encoding' => '2.19', 13642 'ok' => '1.302073', 13643 }, 13644 removed => { 13645 } 13646 }, 13647 5.022003 => { 13648 delta_from => 5.022002, 13649 changed => { 13650 'App::Cpan' => '1.63_01', 13651 'App::Prove' => '3.35_01', 13652 'App::Prove::State' => '3.35_01', 13653 'App::Prove::State::Result'=> '3.35_01', 13654 'App::Prove::State::Result::Test'=> '3.35_01', 13655 'Archive::Tar' => '2.04_01', 13656 'Archive::Tar::Constant'=> '2.04_01', 13657 'Archive::Tar::File' => '2.04_01', 13658 'B::Op_private' => '5.022003', 13659 'CPAN' => '2.11_01', 13660 'Compress::Zlib' => '2.068_001', 13661 'Config' => '5.022003', 13662 'Cwd' => '3.56_02', 13663 'Digest' => '1.17_01', 13664 'Digest::SHA' => '5.95_01', 13665 'Encode' => '2.72_01', 13666 'ExtUtils::Command' => '1.20_01', 13667 'ExtUtils::Command::MM' => '7.04_02', 13668 'ExtUtils::Liblist' => '7.04_02', 13669 'ExtUtils::Liblist::Kid'=> '7.04_02', 13670 'ExtUtils::MM' => '7.04_02', 13671 'ExtUtils::MM_AIX' => '7.04_02', 13672 'ExtUtils::MM_Any' => '7.04_02', 13673 'ExtUtils::MM_BeOS' => '7.04_02', 13674 'ExtUtils::MM_Cygwin' => '7.04_02', 13675 'ExtUtils::MM_DOS' => '7.04_02', 13676 'ExtUtils::MM_Darwin' => '7.04_02', 13677 'ExtUtils::MM_MacOS' => '7.04_02', 13678 'ExtUtils::MM_NW5' => '7.04_02', 13679 'ExtUtils::MM_OS2' => '7.04_02', 13680 'ExtUtils::MM_QNX' => '7.04_02', 13681 'ExtUtils::MM_UWIN' => '7.04_02', 13682 'ExtUtils::MM_Unix' => '7.04_02', 13683 'ExtUtils::MM_VMS' => '7.04_02', 13684 'ExtUtils::MM_VOS' => '7.04_02', 13685 'ExtUtils::MM_Win32' => '7.04_02', 13686 'ExtUtils::MM_Win95' => '7.04_02', 13687 'ExtUtils::MY' => '7.04_02', 13688 'ExtUtils::MakeMaker' => '7.04_02', 13689 'ExtUtils::MakeMaker::Config'=> '7.04_02', 13690 'ExtUtils::Mkbootstrap' => '7.04_02', 13691 'ExtUtils::Mksymlists' => '7.04_02', 13692 'ExtUtils::testlib' => '7.04_02', 13693 'File::Fetch' => '0.48_01', 13694 'File::Spec' => '3.56_02', 13695 'File::Spec::Cygwin' => '3.56_02', 13696 'File::Spec::Epoc' => '3.56_02', 13697 'File::Spec::Functions' => '3.56_02', 13698 'File::Spec::Mac' => '3.56_02', 13699 'File::Spec::OS2' => '3.56_02', 13700 'File::Spec::Unix' => '3.56_02', 13701 'File::Spec::VMS' => '3.56_02', 13702 'File::Spec::Win32' => '3.56_02', 13703 'HTTP::Tiny' => '0.054_01', 13704 'I18N::LangTags::Detect'=> '1.05_01', 13705 'IO' => '1.35_01', 13706 'IO::Compress::Adapter::Bzip2'=> '2.068_001', 13707 'IO::Compress::Adapter::Deflate'=> '2.068_001', 13708 'IO::Compress::Adapter::Identity'=> '2.068_001', 13709 'IO::Compress::Base' => '2.068_001', 13710 'IO::Compress::Base::Common'=> '2.068_001', 13711 'IO::Compress::Bzip2' => '2.068_001', 13712 'IO::Compress::Deflate' => '2.068_001', 13713 'IO::Compress::Gzip' => '2.068_001', 13714 'IO::Compress::Gzip::Constants'=> '2.068_001', 13715 'IO::Compress::RawDeflate'=> '2.068_001', 13716 'IO::Compress::Zip' => '2.068_001', 13717 'IO::Compress::Zip::Constants'=> '2.068_001', 13718 'IO::Compress::Zlib::Constants'=> '2.068_001', 13719 'IO::Compress::Zlib::Extra'=> '2.068_001', 13720 'IO::Uncompress::Adapter::Bunzip2'=> '2.068_001', 13721 'IO::Uncompress::Adapter::Identity'=> '2.068_001', 13722 'IO::Uncompress::Adapter::Inflate'=> '2.068_001', 13723 'IO::Uncompress::AnyInflate'=> '2.068_001', 13724 'IO::Uncompress::AnyUncompress'=> '2.068_001', 13725 'IO::Uncompress::Base' => '2.068_001', 13726 'IO::Uncompress::Bunzip2'=> '2.068_001', 13727 'IO::Uncompress::Gunzip'=> '2.068_001', 13728 'IO::Uncompress::Inflate'=> '2.068_001', 13729 'IO::Uncompress::RawInflate'=> '2.068_001', 13730 'IO::Uncompress::Unzip' => '2.068_001', 13731 'IPC::Cmd' => '0.92_01', 13732 'JSON::PP' => '2.27300_01', 13733 'Locale::Maketext' => '1.26_01', 13734 'Locale::Maketext::Simple'=> '0.21_01', 13735 'Memoize' => '1.03_01', 13736 'Module::CoreList' => '5.20170114_22', 13737 'Module::CoreList::TieHashDelta'=> '5.20170114_22', 13738 'Module::CoreList::Utils'=> '5.20170114_22', 13739 'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef, 13740 'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef, 13741 'Module::Metadata::corpus::BOMTest::UTF8'=> '1', 13742 'Net::Cmd' => '3.05_01', 13743 'Net::Config' => '3.05_01', 13744 'Net::Domain' => '3.05_01', 13745 'Net::FTP' => '3.05_01', 13746 'Net::FTP::A' => '3.05_01', 13747 'Net::FTP::E' => '3.05_01', 13748 'Net::FTP::I' => '3.05_01', 13749 'Net::FTP::L' => '3.05_01', 13750 'Net::FTP::dataconn' => '3.05_01', 13751 'Net::NNTP' => '3.05_01', 13752 'Net::Netrc' => '3.05_01', 13753 'Net::POP3' => '3.05_01', 13754 'Net::Ping' => '2.43_01', 13755 'Net::SMTP' => '3.05_01', 13756 'Net::Time' => '3.05_01', 13757 'Parse::CPAN::Meta' => '1.4414_001', 13758 'Pod::Html' => '1.2201', 13759 'Pod::Perldoc' => '3.25_01', 13760 'Storable' => '2.53_02', 13761 'Sys::Syslog' => '0.33_01', 13762 'TAP::Base' => '3.35_01', 13763 'TAP::Formatter::Base' => '3.35_01', 13764 'TAP::Formatter::Color' => '3.35_01', 13765 'TAP::Formatter::Console'=> '3.35_01', 13766 'TAP::Formatter::Console::ParallelSession'=> '3.35_01', 13767 'TAP::Formatter::Console::Session'=> '3.35_01', 13768 'TAP::Formatter::File' => '3.35_01', 13769 'TAP::Formatter::File::Session'=> '3.35_01', 13770 'TAP::Formatter::Session'=> '3.35_01', 13771 'TAP::Harness' => '3.35_01', 13772 'TAP::Harness::Env' => '3.35_01', 13773 'TAP::Object' => '3.35_01', 13774 'TAP::Parser' => '3.35_01', 13775 'TAP::Parser::Aggregator'=> '3.35_01', 13776 'TAP::Parser::Grammar' => '3.35_01', 13777 'TAP::Parser::Iterator' => '3.35_01', 13778 'TAP::Parser::Iterator::Array'=> '3.35_01', 13779 'TAP::Parser::Iterator::Process'=> '3.35_01', 13780 'TAP::Parser::Iterator::Stream'=> '3.35_01', 13781 'TAP::Parser::IteratorFactory'=> '3.35_01', 13782 'TAP::Parser::Multiplexer'=> '3.35_01', 13783 'TAP::Parser::Result' => '3.35_01', 13784 'TAP::Parser::Result::Bailout'=> '3.35_01', 13785 'TAP::Parser::Result::Comment'=> '3.35_01', 13786 'TAP::Parser::Result::Plan'=> '3.35_01', 13787 'TAP::Parser::Result::Pragma'=> '3.35_01', 13788 'TAP::Parser::Result::Test'=> '3.35_01', 13789 'TAP::Parser::Result::Unknown'=> '3.35_01', 13790 'TAP::Parser::Result::Version'=> '3.35_01', 13791 'TAP::Parser::Result::YAML'=> '3.35_01', 13792 'TAP::Parser::ResultFactory'=> '3.35_01', 13793 'TAP::Parser::Scheduler'=> '3.35_01', 13794 'TAP::Parser::Scheduler::Job'=> '3.35_01', 13795 'TAP::Parser::Scheduler::Spinner'=> '3.35_01', 13796 'TAP::Parser::Source' => '3.35_01', 13797 'TAP::Parser::SourceHandler'=> '3.35_01', 13798 'TAP::Parser::SourceHandler::Executable'=> '3.35_01', 13799 'TAP::Parser::SourceHandler::File'=> '3.35_01', 13800 'TAP::Parser::SourceHandler::Handle'=> '3.35_01', 13801 'TAP::Parser::SourceHandler::Perl'=> '3.35_01', 13802 'TAP::Parser::SourceHandler::RawTAP'=> '3.35_01', 13803 'TAP::Parser::YAMLish::Reader'=> '3.35_01', 13804 'TAP::Parser::YAMLish::Writer'=> '3.35_01', 13805 'Test' => '1.26_01', 13806 'Test::Harness' => '3.35_01', 13807 'XSLoader' => '0.20_01', 13808 'bigint' => '0.39_01', 13809 'bignum' => '0.39_01', 13810 'bigrat' => '0.39_01', 13811 }, 13812 removed => { 13813 } 13814 }, 13815 5.024001 => { 13816 delta_from => 5.024000, 13817 changed => { 13818 'App::Cpan' => '1.63_01', 13819 'App::Prove' => '3.36_01', 13820 'App::Prove::State' => '3.36_01', 13821 'App::Prove::State::Result'=> '3.36_01', 13822 'App::Prove::State::Result::Test'=> '3.36_01', 13823 'Archive::Tar' => '2.04_01', 13824 'Archive::Tar::Constant'=> '2.04_01', 13825 'Archive::Tar::File' => '2.04_01', 13826 'B::Op_private' => '5.024001', 13827 'CPAN' => '2.11_01', 13828 'Compress::Zlib' => '2.069_001', 13829 'Config' => '5.024001', 13830 'Cwd' => '3.63_01', 13831 'Digest' => '1.17_01', 13832 'Digest::SHA' => '5.95_01', 13833 'Encode' => '2.80_01', 13834 'ExtUtils::Command' => '7.10_02', 13835 'ExtUtils::Command::MM' => '7.10_02', 13836 'ExtUtils::Liblist' => '7.10_02', 13837 'ExtUtils::Liblist::Kid'=> '7.10_02', 13838 'ExtUtils::MM' => '7.10_02', 13839 'ExtUtils::MM_AIX' => '7.10_02', 13840 'ExtUtils::MM_Any' => '7.10_02', 13841 'ExtUtils::MM_BeOS' => '7.10_02', 13842 'ExtUtils::MM_Cygwin' => '7.10_02', 13843 'ExtUtils::MM_DOS' => '7.10_02', 13844 'ExtUtils::MM_Darwin' => '7.10_02', 13845 'ExtUtils::MM_MacOS' => '7.10_02', 13846 'ExtUtils::MM_NW5' => '7.10_02', 13847 'ExtUtils::MM_OS2' => '7.10_02', 13848 'ExtUtils::MM_QNX' => '7.10_02', 13849 'ExtUtils::MM_UWIN' => '7.10_02', 13850 'ExtUtils::MM_Unix' => '7.10_02', 13851 'ExtUtils::MM_VMS' => '7.10_02', 13852 'ExtUtils::MM_VOS' => '7.10_02', 13853 'ExtUtils::MM_Win32' => '7.10_02', 13854 'ExtUtils::MM_Win95' => '7.10_02', 13855 'ExtUtils::MY' => '7.10_02', 13856 'ExtUtils::MakeMaker' => '7.10_02', 13857 'ExtUtils::MakeMaker::Config'=> '7.10_02', 13858 'ExtUtils::Mkbootstrap' => '7.10_02', 13859 'ExtUtils::Mksymlists' => '7.10_02', 13860 'ExtUtils::testlib' => '7.10_02', 13861 'File::Fetch' => '0.48_01', 13862 'File::Spec' => '3.63_01', 13863 'File::Spec::Cygwin' => '3.63_01', 13864 'File::Spec::Epoc' => '3.63_01', 13865 'File::Spec::Functions' => '3.63_01', 13866 'File::Spec::Mac' => '3.63_01', 13867 'File::Spec::OS2' => '3.63_01', 13868 'File::Spec::Unix' => '3.63_01', 13869 'File::Spec::VMS' => '3.63_01', 13870 'File::Spec::Win32' => '3.63_01', 13871 'HTTP::Tiny' => '0.056_001', 13872 'I18N::LangTags::Detect'=> '1.05_01', 13873 'IO' => '1.36_01', 13874 'IO::Compress::Adapter::Bzip2'=> '2.069_001', 13875 'IO::Compress::Adapter::Deflate'=> '2.069_001', 13876 'IO::Compress::Adapter::Identity'=> '2.069_001', 13877 'IO::Compress::Base' => '2.069_001', 13878 'IO::Compress::Base::Common'=> '2.069_001', 13879 'IO::Compress::Bzip2' => '2.069_001', 13880 'IO::Compress::Deflate' => '2.069_001', 13881 'IO::Compress::Gzip' => '2.069_001', 13882 'IO::Compress::Gzip::Constants'=> '2.069_001', 13883 'IO::Compress::RawDeflate'=> '2.069_001', 13884 'IO::Compress::Zip' => '2.069_001', 13885 'IO::Compress::Zip::Constants'=> '2.069_001', 13886 'IO::Compress::Zlib::Constants'=> '2.069_001', 13887 'IO::Compress::Zlib::Extra'=> '2.069_001', 13888 'IO::Uncompress::Adapter::Bunzip2'=> '2.069_001', 13889 'IO::Uncompress::Adapter::Identity'=> '2.069_001', 13890 'IO::Uncompress::Adapter::Inflate'=> '2.069_001', 13891 'IO::Uncompress::AnyInflate'=> '2.069_001', 13892 'IO::Uncompress::AnyUncompress'=> '2.069_001', 13893 'IO::Uncompress::Base' => '2.069_001', 13894 'IO::Uncompress::Bunzip2'=> '2.069_001', 13895 'IO::Uncompress::Gunzip'=> '2.069_001', 13896 'IO::Uncompress::Inflate'=> '2.069_001', 13897 'IO::Uncompress::RawInflate'=> '2.069_001', 13898 'IO::Uncompress::Unzip' => '2.069_001', 13899 'IPC::Cmd' => '0.92_01', 13900 'JSON::PP' => '2.27300_01', 13901 'Locale::Maketext' => '1.26_01', 13902 'Locale::Maketext::Simple'=> '0.21_01', 13903 'Math::BigFloat::Trace' => '0.42_01', 13904 'Math::BigInt::Trace' => '0.42_01', 13905 'Memoize' => '1.03_01', 13906 'Module::CoreList' => '5.20170114_24', 13907 'Module::CoreList::TieHashDelta'=> '5.20170114_24', 13908 'Module::CoreList::Utils'=> '5.20170114_24', 13909 'Module::Metadata::corpus::BOMTest::UTF16BE'=> undef, 13910 'Module::Metadata::corpus::BOMTest::UTF16LE'=> undef, 13911 'Module::Metadata::corpus::BOMTest::UTF8'=> '1', 13912 'Net::Cmd' => '3.08_01', 13913 'Net::Config' => '3.08_01', 13914 'Net::Domain' => '3.08_01', 13915 'Net::FTP' => '3.08_01', 13916 'Net::FTP::A' => '3.08_01', 13917 'Net::FTP::E' => '3.08_01', 13918 'Net::FTP::I' => '3.08_01', 13919 'Net::FTP::L' => '3.08_01', 13920 'Net::FTP::dataconn' => '3.08_01', 13921 'Net::NNTP' => '3.08_01', 13922 'Net::Netrc' => '3.08_01', 13923 'Net::POP3' => '3.08_01', 13924 'Net::Ping' => '2.43_01', 13925 'Net::SMTP' => '3.08_01', 13926 'Net::Time' => '3.08_01', 13927 'Parse::CPAN::Meta' => '1.4417_001', 13928 'Pod::Html' => '1.2201', 13929 'Pod::Perldoc' => '3.25_03', 13930 'Storable' => '2.56_01', 13931 'Sys::Syslog' => '0.33_01', 13932 'TAP::Base' => '3.36_01', 13933 'TAP::Formatter::Base' => '3.36_01', 13934 'TAP::Formatter::Color' => '3.36_01', 13935 'TAP::Formatter::Console'=> '3.36_01', 13936 'TAP::Formatter::Console::ParallelSession'=> '3.36_01', 13937 'TAP::Formatter::Console::Session'=> '3.36_01', 13938 'TAP::Formatter::File' => '3.36_01', 13939 'TAP::Formatter::File::Session'=> '3.36_01', 13940 'TAP::Formatter::Session'=> '3.36_01', 13941 'TAP::Harness' => '3.36_01', 13942 'TAP::Harness::Env' => '3.36_01', 13943 'TAP::Object' => '3.36_01', 13944 'TAP::Parser' => '3.36_01', 13945 'TAP::Parser::Aggregator'=> '3.36_01', 13946 'TAP::Parser::Grammar' => '3.36_01', 13947 'TAP::Parser::Iterator' => '3.36_01', 13948 'TAP::Parser::Iterator::Array'=> '3.36_01', 13949 'TAP::Parser::Iterator::Process'=> '3.36_01', 13950 'TAP::Parser::Iterator::Stream'=> '3.36_01', 13951 'TAP::Parser::IteratorFactory'=> '3.36_01', 13952 'TAP::Parser::Multiplexer'=> '3.36_01', 13953 'TAP::Parser::Result' => '3.36_01', 13954 'TAP::Parser::Result::Bailout'=> '3.36_01', 13955 'TAP::Parser::Result::Comment'=> '3.36_01', 13956 'TAP::Parser::Result::Plan'=> '3.36_01', 13957 'TAP::Parser::Result::Pragma'=> '3.36_01', 13958 'TAP::Parser::Result::Test'=> '3.36_01', 13959 'TAP::Parser::Result::Unknown'=> '3.36_01', 13960 'TAP::Parser::Result::Version'=> '3.36_01', 13961 'TAP::Parser::Result::YAML'=> '3.36_01', 13962 'TAP::Parser::ResultFactory'=> '3.36_01', 13963 'TAP::Parser::Scheduler'=> '3.36_01', 13964 'TAP::Parser::Scheduler::Job'=> '3.36_01', 13965 'TAP::Parser::Scheduler::Spinner'=> '3.36_01', 13966 'TAP::Parser::Source' => '3.36_01', 13967 'TAP::Parser::SourceHandler'=> '3.36_01', 13968 'TAP::Parser::SourceHandler::Executable'=> '3.36_01', 13969 'TAP::Parser::SourceHandler::File'=> '3.36_01', 13970 'TAP::Parser::SourceHandler::Handle'=> '3.36_01', 13971 'TAP::Parser::SourceHandler::Perl'=> '3.36_01', 13972 'TAP::Parser::SourceHandler::RawTAP'=> '3.36_01', 13973 'TAP::Parser::YAMLish::Reader'=> '3.36_01', 13974 'TAP::Parser::YAMLish::Writer'=> '3.36_01', 13975 'Test' => '1.28_01', 13976 'Test::Harness' => '3.36_01', 13977 'XSLoader' => '0.22', 13978 'bigint' => '0.42_01', 13979 'bignum' => '0.42_01', 13980 'bigrat' => '0.42_01', 13981 }, 13982 removed => { 13983 } 13984 }, 13985 5.025009 => { 13986 delta_from => 5.025008, 13987 changed => { 13988 'App::Cpan' => '1.66', 13989 'B::Deparse' => '1.40', 13990 'B::Op_private' => '5.025009', 13991 'B::Terse' => '1.07', 13992 'B::Xref' => '1.06', 13993 'CPAN' => '2.16', 13994 'CPAN::Bundle' => '5.5002', 13995 'CPAN::Distribution' => '2.16', 13996 'CPAN::Exception::RecursiveDependency'=> '5.5001', 13997 'CPAN::FTP' => '5.5008', 13998 'CPAN::FirstTime' => '5.5310', 13999 'CPAN::HandleConfig' => '5.5008', 14000 'CPAN::Module' => '5.5003', 14001 'Compress::Raw::Bzip2' => '2.070', 14002 'Compress::Raw::Zlib' => '2.070', 14003 'Config' => '5.025009', 14004 'DB_File' => '1.840', 14005 'Data::Dumper' => '2.167', 14006 'Devel::SelfStubber' => '1.06', 14007 'DynaLoader' => '1.41', 14008 'Errno' => '1.28', 14009 'ExtUtils::Embed' => '1.34', 14010 'File::Glob' => '1.28', 14011 'I18N::LangTags' => '0.42', 14012 'Module::CoreList' => '5.20170120', 14013 'Module::CoreList::TieHashDelta'=> '5.20170120', 14014 'Module::CoreList::Utils'=> '5.20170120', 14015 'OS2::Process' => '1.12', 14016 'PerlIO::scalar' => '0.26', 14017 'Pod::Html' => '1.2202', 14018 'Storable' => '2.61', 14019 'Symbol' => '1.08', 14020 'Term::ReadLine' => '1.16', 14021 'Test' => '1.30', 14022 'Unicode::UCD' => '0.68', 14023 'VMS::DCLsym' => '1.08', 14024 'XS::APItest' => '0.88', 14025 'XSLoader' => '0.26', 14026 'attributes' => '0.29', 14027 'diagnostics' => '1.36', 14028 'feature' => '1.46', 14029 'lib' => '0.64', 14030 'overload' => '1.28', 14031 're' => '0.34', 14032 'threads' => '2.12', 14033 'threads::shared' => '1.54', 14034 }, 14035 removed => { 14036 } 14037 }, 14038 5.025010 => { 14039 delta_from => 5.025009, 14040 changed => { 14041 'B' => '1.68', 14042 'B::Op_private' => '5.025010', 14043 'CPAN' => '2.17', 14044 'CPAN::Distribution' => '2.17', 14045 'Config' => '5.02501', 14046 'Getopt::Std' => '1.12', 14047 'Module::CoreList' => '5.20170220', 14048 'Module::CoreList::TieHashDelta'=> '5.20170220', 14049 'Module::CoreList::Utils'=> '5.20170220', 14050 'PerlIO' => '1.10', 14051 'Storable' => '2.62', 14052 'Thread::Queue' => '3.12', 14053 'feature' => '1.47', 14054 'open' => '1.11', 14055 'threads' => '2.13', 14056 }, 14057 removed => { 14058 } 14059 }, 14060 5.025011 => { 14061 delta_from => 5.025010, 14062 changed => { 14063 'App::Prove' => '3.38', 14064 'App::Prove::State' => '3.38', 14065 'App::Prove::State::Result'=> '3.38', 14066 'App::Prove::State::Result::Test'=> '3.38', 14067 'B::Op_private' => '5.025011', 14068 'Compress::Raw::Bzip2' => '2.074', 14069 'Compress::Raw::Zlib' => '2.074', 14070 'Compress::Zlib' => '2.074', 14071 'Config' => '5.025011', 14072 'Config::Perl::V' => '0.28', 14073 'Cwd' => '3.67', 14074 'ExtUtils::ParseXS' => '3.34', 14075 'ExtUtils::ParseXS::Constants'=> '3.34', 14076 'ExtUtils::ParseXS::CountLines'=> '3.34', 14077 'ExtUtils::ParseXS::Eval'=> '3.34', 14078 'ExtUtils::Typemaps' => '3.34', 14079 'ExtUtils::Typemaps::Cmd'=> '3.34', 14080 'ExtUtils::Typemaps::InputMap'=> '3.34', 14081 'ExtUtils::Typemaps::OutputMap'=> '3.34', 14082 'ExtUtils::Typemaps::Type'=> '3.34', 14083 'File::Spec' => '3.67', 14084 'File::Spec::AmigaOS' => '3.67', 14085 'File::Spec::Cygwin' => '3.67', 14086 'File::Spec::Epoc' => '3.67', 14087 'File::Spec::Functions' => '3.67', 14088 'File::Spec::Mac' => '3.67', 14089 'File::Spec::OS2' => '3.67', 14090 'File::Spec::Unix' => '3.67', 14091 'File::Spec::VMS' => '3.67', 14092 'File::Spec::Win32' => '3.67', 14093 'IO::Compress::Adapter::Bzip2'=> '2.074', 14094 'IO::Compress::Adapter::Deflate'=> '2.074', 14095 'IO::Compress::Adapter::Identity'=> '2.074', 14096 'IO::Compress::Base' => '2.074', 14097 'IO::Compress::Base::Common'=> '2.074', 14098 'IO::Compress::Bzip2' => '2.074', 14099 'IO::Compress::Deflate' => '2.074', 14100 'IO::Compress::Gzip' => '2.074', 14101 'IO::Compress::Gzip::Constants'=> '2.074', 14102 'IO::Compress::RawDeflate'=> '2.074', 14103 'IO::Compress::Zip' => '2.074', 14104 'IO::Compress::Zip::Constants'=> '2.074', 14105 'IO::Compress::Zlib::Constants'=> '2.074', 14106 'IO::Compress::Zlib::Extra'=> '2.074', 14107 'IO::Uncompress::Adapter::Bunzip2'=> '2.074', 14108 'IO::Uncompress::Adapter::Identity'=> '2.074', 14109 'IO::Uncompress::Adapter::Inflate'=> '2.074', 14110 'IO::Uncompress::AnyInflate'=> '2.074', 14111 'IO::Uncompress::AnyUncompress'=> '2.074', 14112 'IO::Uncompress::Base' => '2.074', 14113 'IO::Uncompress::Bunzip2'=> '2.074', 14114 'IO::Uncompress::Gunzip'=> '2.074', 14115 'IO::Uncompress::Inflate'=> '2.074', 14116 'IO::Uncompress::RawInflate'=> '2.074', 14117 'IO::Uncompress::Unzip' => '2.074', 14118 'Module::CoreList' => '5.20170320', 14119 'Module::CoreList::TieHashDelta'=> '5.20170230', 14120 'Module::CoreList::Utils'=> '5.20170320', 14121 'Pod::Perldoc' => '3.28', 14122 'Pod::Perldoc::BaseTo' => '3.28', 14123 'Pod::Perldoc::GetOptsOO'=> '3.28', 14124 'Pod::Perldoc::ToANSI' => '3.28', 14125 'Pod::Perldoc::ToChecker'=> '3.28', 14126 'Pod::Perldoc::ToMan' => '3.28', 14127 'Pod::Perldoc::ToNroff' => '3.28', 14128 'Pod::Perldoc::ToPod' => '3.28', 14129 'Pod::Perldoc::ToRtf' => '3.28', 14130 'Pod::Perldoc::ToTerm' => '3.28', 14131 'Pod::Perldoc::ToText' => '3.28', 14132 'Pod::Perldoc::ToTk' => '3.28', 14133 'Pod::Perldoc::ToXml' => '3.28', 14134 'TAP::Base' => '3.38', 14135 'TAP::Formatter::Base' => '3.38', 14136 'TAP::Formatter::Color' => '3.38', 14137 'TAP::Formatter::Console'=> '3.38', 14138 'TAP::Formatter::Console::ParallelSession'=> '3.38', 14139 'TAP::Formatter::Console::Session'=> '3.38', 14140 'TAP::Formatter::File' => '3.38', 14141 'TAP::Formatter::File::Session'=> '3.38', 14142 'TAP::Formatter::Session'=> '3.38', 14143 'TAP::Harness' => '3.38', 14144 'TAP::Harness::Env' => '3.38', 14145 'TAP::Object' => '3.38', 14146 'TAP::Parser' => '3.38', 14147 'TAP::Parser::Aggregator'=> '3.38', 14148 'TAP::Parser::Grammar' => '3.38', 14149 'TAP::Parser::Iterator' => '3.38', 14150 'TAP::Parser::Iterator::Array'=> '3.38', 14151 'TAP::Parser::Iterator::Process'=> '3.38', 14152 'TAP::Parser::Iterator::Stream'=> '3.38', 14153 'TAP::Parser::IteratorFactory'=> '3.38', 14154 'TAP::Parser::Multiplexer'=> '3.38', 14155 'TAP::Parser::Result' => '3.38', 14156 'TAP::Parser::Result::Bailout'=> '3.38', 14157 'TAP::Parser::Result::Comment'=> '3.38', 14158 'TAP::Parser::Result::Plan'=> '3.38', 14159 'TAP::Parser::Result::Pragma'=> '3.38', 14160 'TAP::Parser::Result::Test'=> '3.38', 14161 'TAP::Parser::Result::Unknown'=> '3.38', 14162 'TAP::Parser::Result::Version'=> '3.38', 14163 'TAP::Parser::Result::YAML'=> '3.38', 14164 'TAP::Parser::ResultFactory'=> '3.38', 14165 'TAP::Parser::Scheduler'=> '3.38', 14166 'TAP::Parser::Scheduler::Job'=> '3.38', 14167 'TAP::Parser::Scheduler::Spinner'=> '3.38', 14168 'TAP::Parser::Source' => '3.38', 14169 'TAP::Parser::SourceHandler'=> '3.38', 14170 'TAP::Parser::SourceHandler::Executable'=> '3.38', 14171 'TAP::Parser::SourceHandler::File'=> '3.38', 14172 'TAP::Parser::SourceHandler::Handle'=> '3.38', 14173 'TAP::Parser::SourceHandler::Perl'=> '3.38', 14174 'TAP::Parser::SourceHandler::RawTAP'=> '3.38', 14175 'TAP::Parser::YAMLish::Reader'=> '3.38', 14176 'TAP::Parser::YAMLish::Writer'=> '3.38', 14177 'Test::Harness' => '3.38', 14178 'VMS::Stdio' => '2.41', 14179 'threads' => '2.15', 14180 'threads::shared' => '1.55', 14181 }, 14182 removed => { 14183 } 14184 }, 14185 5.025012 => { 14186 delta_from => 5.025011, 14187 changed => { 14188 'B::Op_private' => '5.025012', 14189 'CPAN' => '2.18', 14190 'CPAN::Bundle' => '5.5003', 14191 'CPAN::Distribution' => '2.18', 14192 'Config' => '5.025012', 14193 'DynaLoader' => '1.42', 14194 'Module::CoreList' => '5.20170420', 14195 'Module::CoreList::TieHashDelta'=> '5.20170420', 14196 'Module::CoreList::Utils'=> '5.20170420', 14197 'Safe' => '2.40', 14198 'XSLoader' => '0.27', 14199 'base' => '2.25', 14200 'threads::shared' => '1.56', 14201 }, 14202 removed => { 14203 } 14204 }, 14205 5.026000 => { 14206 delta_from => 5.025012, 14207 changed => { 14208 'B::Op_private' => '5.026000', 14209 'Config' => '5.026', 14210 'Module::CoreList' => '5.20170530', 14211 'Module::CoreList::TieHashDelta'=> '5.20170530', 14212 'Module::CoreList::Utils'=> '5.20170530', 14213 }, 14214 removed => { 14215 } 14216 }, 14217 5.027000 => { 14218 delta_from => 5.026000, 14219 changed => { 14220 'Attribute::Handlers' => '1.00', 14221 'B::Concise' => '1.000', 14222 'B::Deparse' => '1.41', 14223 'B::Op_private' => '5.027000', 14224 'Config' => '5.027', 14225 'Module::CoreList' => '5.20170531', 14226 'Module::CoreList::TieHashDelta'=> '5.20170531', 14227 'Module::CoreList::Utils'=> '5.20170531', 14228 'O' => '1.02', 14229 'attributes' => '0.3', 14230 'feature' => '1.48', 14231 }, 14232 removed => { 14233 } 14234 }, 14235 5.027001 => { 14236 delta_from => 5.027, 14237 changed => { 14238 'App::Prove' => '3.39', 14239 'App::Prove::State' => '3.39', 14240 'App::Prove::State::Result'=> '3.39', 14241 'App::Prove::State::Result::Test'=> '3.39', 14242 'Archive::Tar' => '2.26', 14243 'Archive::Tar::Constant'=> '2.26', 14244 'Archive::Tar::File' => '2.26', 14245 'B::Op_private' => '5.027001', 14246 'B::Terse' => '1.08', 14247 'Config' => '5.027001', 14248 'Devel::PPPort' => '3.36', 14249 'DirHandle' => '1.05', 14250 'ExtUtils::Command' => '7.30', 14251 'ExtUtils::Command::MM' => '7.30', 14252 'ExtUtils::Install' => '2.14', 14253 'ExtUtils::Installed' => '2.14', 14254 'ExtUtils::Liblist' => '7.30', 14255 'ExtUtils::Liblist::Kid'=> '7.30', 14256 'ExtUtils::MM' => '7.30', 14257 'ExtUtils::MM_AIX' => '7.30', 14258 'ExtUtils::MM_Any' => '7.30', 14259 'ExtUtils::MM_BeOS' => '7.30', 14260 'ExtUtils::MM_Cygwin' => '7.30', 14261 'ExtUtils::MM_DOS' => '7.30', 14262 'ExtUtils::MM_Darwin' => '7.30', 14263 'ExtUtils::MM_MacOS' => '7.30', 14264 'ExtUtils::MM_NW5' => '7.30', 14265 'ExtUtils::MM_OS2' => '7.30', 14266 'ExtUtils::MM_QNX' => '7.30', 14267 'ExtUtils::MM_UWIN' => '7.30', 14268 'ExtUtils::MM_Unix' => '7.30', 14269 'ExtUtils::MM_VMS' => '7.30', 14270 'ExtUtils::MM_VOS' => '7.30', 14271 'ExtUtils::MM_Win32' => '7.30', 14272 'ExtUtils::MM_Win95' => '7.30', 14273 'ExtUtils::MY' => '7.30', 14274 'ExtUtils::MakeMaker' => '7.30', 14275 'ExtUtils::MakeMaker::Config'=> '7.30', 14276 'ExtUtils::MakeMaker::Locale'=> '7.30', 14277 'ExtUtils::MakeMaker::version'=> '7.30', 14278 'ExtUtils::MakeMaker::version::regex'=> '7.30', 14279 'ExtUtils::Mkbootstrap' => '7.30', 14280 'ExtUtils::Mksymlists' => '7.30', 14281 'ExtUtils::Packlist' => '2.14', 14282 'ExtUtils::testlib' => '7.30', 14283 'File::Path' => '2.14', 14284 'Filter::Util::Call' => '1.57', 14285 'GDBM_File' => '1.16', 14286 'Getopt::Long' => '2.5', 14287 'IO::Socket::IP' => '0.39', 14288 'IPC::Cmd' => '0.98', 14289 'JSON::PP' => '2.94', 14290 'JSON::PP::Boolean' => '2.94', 14291 'Locale::Codes' => '3.52', 14292 'Locale::Codes::Constants'=> '3.52', 14293 'Locale::Codes::Country'=> '3.52', 14294 'Locale::Codes::Country_Codes'=> '3.52', 14295 'Locale::Codes::Country_Retired'=> '3.52', 14296 'Locale::Codes::Currency'=> '3.52', 14297 'Locale::Codes::Currency_Codes'=> '3.52', 14298 'Locale::Codes::Currency_Retired'=> '3.52', 14299 'Locale::Codes::LangExt'=> '3.52', 14300 'Locale::Codes::LangExt_Codes'=> '3.52', 14301 'Locale::Codes::LangExt_Retired'=> '3.52', 14302 'Locale::Codes::LangFam'=> '3.52', 14303 'Locale::Codes::LangFam_Codes'=> '3.52', 14304 'Locale::Codes::LangFam_Retired'=> '3.52', 14305 'Locale::Codes::LangVar'=> '3.52', 14306 'Locale::Codes::LangVar_Codes'=> '3.52', 14307 'Locale::Codes::LangVar_Retired'=> '3.52', 14308 'Locale::Codes::Language'=> '3.52', 14309 'Locale::Codes::Language_Codes'=> '3.52', 14310 'Locale::Codes::Language_Retired'=> '3.52', 14311 'Locale::Codes::Script' => '3.52', 14312 'Locale::Codes::Script_Codes'=> '3.52', 14313 'Locale::Codes::Script_Retired'=> '3.52', 14314 'Locale::Country' => '3.52', 14315 'Locale::Currency' => '3.52', 14316 'Locale::Language' => '3.52', 14317 'Locale::Script' => '3.52', 14318 'Module::CoreList' => '5.20170621', 14319 'Module::CoreList::TieHashDelta'=> '5.20170621', 14320 'Module::CoreList::Utils'=> '5.20170621', 14321 'PerlIO::scalar' => '0.27', 14322 'PerlIO::via' => '0.17', 14323 'Storable' => '2.63', 14324 'TAP::Base' => '3.39', 14325 'TAP::Formatter::Base' => '3.39', 14326 'TAP::Formatter::Color' => '3.39', 14327 'TAP::Formatter::Console'=> '3.39', 14328 'TAP::Formatter::Console::ParallelSession'=> '3.39', 14329 'TAP::Formatter::Console::Session'=> '3.39', 14330 'TAP::Formatter::File' => '3.39', 14331 'TAP::Formatter::File::Session'=> '3.39', 14332 'TAP::Formatter::Session'=> '3.39', 14333 'TAP::Harness' => '3.39', 14334 'TAP::Harness::Env' => '3.39', 14335 'TAP::Object' => '3.39', 14336 'TAP::Parser' => '3.39', 14337 'TAP::Parser::Aggregator'=> '3.39', 14338 'TAP::Parser::Grammar' => '3.39', 14339 'TAP::Parser::Iterator' => '3.39', 14340 'TAP::Parser::Iterator::Array'=> '3.39', 14341 'TAP::Parser::Iterator::Process'=> '3.39', 14342 'TAP::Parser::Iterator::Stream'=> '3.39', 14343 'TAP::Parser::IteratorFactory'=> '3.39', 14344 'TAP::Parser::Multiplexer'=> '3.39', 14345 'TAP::Parser::Result' => '3.39', 14346 'TAP::Parser::Result::Bailout'=> '3.39', 14347 'TAP::Parser::Result::Comment'=> '3.39', 14348 'TAP::Parser::Result::Plan'=> '3.39', 14349 'TAP::Parser::Result::Pragma'=> '3.39', 14350 'TAP::Parser::Result::Test'=> '3.39', 14351 'TAP::Parser::Result::Unknown'=> '3.39', 14352 'TAP::Parser::Result::Version'=> '3.39', 14353 'TAP::Parser::Result::YAML'=> '3.39', 14354 'TAP::Parser::ResultFactory'=> '3.39', 14355 'TAP::Parser::Scheduler'=> '3.39', 14356 'TAP::Parser::Scheduler::Job'=> '3.39', 14357 'TAP::Parser::Scheduler::Spinner'=> '3.39', 14358 'TAP::Parser::Source' => '3.39', 14359 'TAP::Parser::SourceHandler'=> '3.39', 14360 'TAP::Parser::SourceHandler::Executable'=> '3.39', 14361 'TAP::Parser::SourceHandler::File'=> '3.39', 14362 'TAP::Parser::SourceHandler::Handle'=> '3.39', 14363 'TAP::Parser::SourceHandler::Perl'=> '3.39', 14364 'TAP::Parser::SourceHandler::RawTAP'=> '3.39', 14365 'TAP::Parser::YAMLish::Reader'=> '3.39', 14366 'TAP::Parser::YAMLish::Writer'=> '3.39', 14367 'Test::Harness' => '3.39', 14368 'XS::APItest' => '0.89', 14369 '_charnames' => '1.45', 14370 'charnames' => '1.45', 14371 'if' => '0.0607', 14372 'mro' => '1.21', 14373 'threads' => '2.16', 14374 'threads::shared' => '1.57', 14375 'version' => '0.9918', 14376 'version::regex' => '0.9918', 14377 }, 14378 removed => { 14379 } 14380 }, 14381 5.022004 => { 14382 delta_from => 5.022003, 14383 changed => { 14384 'B::Op_private' => '5.022004', 14385 'Config' => '5.022004', 14386 'Module::CoreList' => '5.20170715_22', 14387 'Module::CoreList::TieHashDelta'=> '5.20170715_22', 14388 'Module::CoreList::Utils'=> '5.20170715_22', 14389 'base' => '2.22_01', 14390 }, 14391 removed => { 14392 } 14393 }, 14394 5.024002 => { 14395 delta_from => 5.024001, 14396 changed => { 14397 'B::Op_private' => '5.024002', 14398 'Config' => '5.024002', 14399 'Module::CoreList' => '5.20170715_24', 14400 'Module::CoreList::TieHashDelta'=> '5.20170715_24', 14401 'Module::CoreList::Utils'=> '5.20170715_24', 14402 'base' => '2.23_01', 14403 }, 14404 removed => { 14405 } 14406 }, 14407 5.027002 => { 14408 delta_from => 5.027001, 14409 changed => { 14410 'B::Op_private' => '5.027002', 14411 'Carp' => '1.43', 14412 'Carp::Heavy' => '1.43', 14413 'Config' => '5.027002', 14414 'Cwd' => '3.68', 14415 'Encode' => '2.92', 14416 'Encode::Alias' => '2.23', 14417 'Encode::CN::HZ' => '2.09', 14418 'Encode::Encoding' => '2.08', 14419 'Encode::GSM0338' => '2.07', 14420 'Encode::Guess' => '2.07', 14421 'Encode::JP::JIS7' => '2.07', 14422 'Encode::KR::2022_KR' => '2.04', 14423 'Encode::MIME::Header' => '2.27', 14424 'Encode::MIME::Header::ISO_2022_JP'=> '1.09', 14425 'Encode::Unicode' => '2.16', 14426 'Encode::Unicode::UTF7' => '2.10', 14427 'ExtUtils::CBuilder' => '0.280228', 14428 'ExtUtils::CBuilder::Base'=> '0.280228', 14429 'ExtUtils::CBuilder::Platform::Unix'=> '0.280228', 14430 'ExtUtils::CBuilder::Platform::VMS'=> '0.280228', 14431 'ExtUtils::CBuilder::Platform::Windows'=> '0.280228', 14432 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228', 14433 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228', 14434 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228', 14435 'ExtUtils::CBuilder::Platform::aix'=> '0.280228', 14436 'ExtUtils::CBuilder::Platform::android'=> '0.280228', 14437 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228', 14438 'ExtUtils::CBuilder::Platform::darwin'=> '0.280228', 14439 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228', 14440 'ExtUtils::CBuilder::Platform::os2'=> '0.280228', 14441 'File::Glob' => '1.29', 14442 'File::Spec' => '3.68', 14443 'File::Spec::AmigaOS' => '3.68', 14444 'File::Spec::Cygwin' => '3.68', 14445 'File::Spec::Epoc' => '3.68', 14446 'File::Spec::Functions' => '3.68', 14447 'File::Spec::Mac' => '3.68', 14448 'File::Spec::OS2' => '3.68', 14449 'File::Spec::Unix' => '3.68', 14450 'File::Spec::VMS' => '3.68', 14451 'File::Spec::Win32' => '3.68', 14452 'List::Util' => '1.48', 14453 'List::Util::XS' => '1.48', 14454 'Math::BigRat' => '0.2613', 14455 'Module::CoreList' => '5.20170720', 14456 'Module::CoreList::TieHashDelta'=> '5.20170720', 14457 'Module::CoreList::Utils'=> '5.20170720', 14458 'Opcode' => '1.40', 14459 'POSIX' => '1.77', 14460 'PerlIO::scalar' => '0.29', 14461 'Scalar::Util' => '1.48', 14462 'Sub::Util' => '1.48', 14463 'Time::HiRes' => '1.9743', 14464 'Time::Piece' => '1.3201', 14465 'Time::Seconds' => '1.3201', 14466 'Unicode' => '10.0.0', 14467 'XS::APItest' => '0.90', 14468 'arybase' => '0.13', 14469 'encoding' => '2.20', 14470 'feature' => '1.49', 14471 're' => '0.35', 14472 }, 14473 removed => { 14474 } 14475 }, 14476 5.027003 => { 14477 delta_from => 5.027002, 14478 changed => { 14479 'B' => '1.69', 14480 'B::Concise' => '1.001', 14481 'B::Debug' => '1.25', 14482 'B::Deparse' => '1.42', 14483 'B::Op_private' => '5.027003', 14484 'Config' => '5.027003', 14485 'Data::Dumper' => '2.167_02', 14486 'Devel::Peek' => '1.27', 14487 'ExtUtils::Constant' => '0.24', 14488 'ExtUtils::Constant::Base'=> '0.06', 14489 'ExtUtils::Constant::ProxySubs'=> '0.09', 14490 'ExtUtils::Constant::Utils'=> '0.04', 14491 'ExtUtils::ParseXS' => '3.35', 14492 'ExtUtils::ParseXS::Constants'=> '3.35', 14493 'ExtUtils::ParseXS::CountLines'=> '3.35', 14494 'ExtUtils::ParseXS::Eval'=> '3.35', 14495 'ExtUtils::ParseXS::Utilities'=> '3.35', 14496 'ExtUtils::Typemaps' => '3.35', 14497 'ExtUtils::Typemaps::Cmd'=> '3.35', 14498 'ExtUtils::Typemaps::InputMap'=> '3.35', 14499 'ExtUtils::Typemaps::OutputMap'=> '3.35', 14500 'ExtUtils::Typemaps::Type'=> '3.35', 14501 'Filter::Simple' => '0.94', 14502 'Module::CoreList' => '5.20170821', 14503 'Module::CoreList::TieHashDelta'=> '5.20170821', 14504 'Module::CoreList::Utils'=> '5.20170821', 14505 'SelfLoader' => '1.24', 14506 'Storable' => '2.64', 14507 'XS::APItest' => '0.91', 14508 'base' => '2.26', 14509 'threads' => '2.17', 14510 'utf8' => '1.20', 14511 }, 14512 removed => { 14513 } 14514 }, 14515 5.027004 => { 14516 delta_from => 5.027003, 14517 changed => { 14518 'B::Op_private' => '5.027004', 14519 'Config' => '5.027004', 14520 'File::Glob' => '1.30', 14521 'I18N::Langinfo' => '0.14', 14522 'Module::CoreList' => '5.20170920', 14523 'Module::CoreList::TieHashDelta'=> '5.20170920', 14524 'Module::CoreList::Utils'=> '5.20170920', 14525 'Term::ReadLine' => '1.17', 14526 'VMS::Stdio' => '2.42', 14527 'XS::APItest' => '0.92', 14528 'attributes' => '0.31', 14529 'sort' => '2.03', 14530 'threads' => '2.18', 14531 }, 14532 removed => { 14533 } 14534 }, 14535 5.024003 => { 14536 delta_from => 5.024002, 14537 changed => { 14538 'B::Op_private' => '5.024003', 14539 'Config' => '5.024003', 14540 'Module::CoreList' => '5.20170922_24', 14541 'Module::CoreList::TieHashDelta'=> '5.20170922_24', 14542 'Module::CoreList::Utils'=> '5.20170922_24', 14543 'POSIX' => '1.65_01', 14544 'Time::HiRes' => '1.9741', 14545 }, 14546 removed => { 14547 } 14548 }, 14549 5.026001 => { 14550 delta_from => 5.026000, 14551 changed => { 14552 'B::Op_private' => '5.026001', 14553 'Config' => '5.026001', 14554 'Module::CoreList' => '5.20170922_26', 14555 'Module::CoreList::TieHashDelta'=> '5.20170922_26', 14556 'Module::CoreList::Utils'=> '5.20170922_26', 14557 '_charnames' => '1.45', 14558 'base' => '2.26', 14559 'charnames' => '1.45', 14560 }, 14561 removed => { 14562 } 14563 }, 14564 5.027005 => { 14565 delta_from => 5.027004, 14566 changed => { 14567 'B' => '1.70', 14568 'B::Concise' => '1.002', 14569 'B::Deparse' => '1.43', 14570 'B::Op_private' => '5.027005', 14571 'B::Xref' => '1.07', 14572 'Config' => '5.027005', 14573 'Config::Perl::V' => '0.29', 14574 'Digest::SHA' => '5.98', 14575 'Encode' => '2.93', 14576 'Encode::CN::HZ' => '2.10', 14577 'Encode::JP::JIS7' => '2.08', 14578 'Encode::MIME::Header' => '2.28', 14579 'Encode::MIME::Name' => '1.03', 14580 'File::Fetch' => '0.54', 14581 'File::Path' => '2.15', 14582 'List::Util' => '1.49', 14583 'List::Util::XS' => '1.49', 14584 'Locale::Codes' => '3.54', 14585 'Locale::Codes::Constants'=> '3.54', 14586 'Locale::Codes::Country'=> '3.54', 14587 'Locale::Codes::Country_Codes'=> '3.54', 14588 'Locale::Codes::Country_Retired'=> '3.54', 14589 'Locale::Codes::Currency'=> '3.54', 14590 'Locale::Codes::Currency_Codes'=> '3.54', 14591 'Locale::Codes::Currency_Retired'=> '3.54', 14592 'Locale::Codes::LangExt'=> '3.54', 14593 'Locale::Codes::LangExt_Codes'=> '3.54', 14594 'Locale::Codes::LangExt_Retired'=> '3.54', 14595 'Locale::Codes::LangFam'=> '3.54', 14596 'Locale::Codes::LangFam_Codes'=> '3.54', 14597 'Locale::Codes::LangFam_Retired'=> '3.54', 14598 'Locale::Codes::LangVar'=> '3.54', 14599 'Locale::Codes::LangVar_Codes'=> '3.54', 14600 'Locale::Codes::LangVar_Retired'=> '3.54', 14601 'Locale::Codes::Language'=> '3.54', 14602 'Locale::Codes::Language_Codes'=> '3.54', 14603 'Locale::Codes::Language_Retired'=> '3.54', 14604 'Locale::Codes::Script' => '3.54', 14605 'Locale::Codes::Script_Codes'=> '3.54', 14606 'Locale::Codes::Script_Retired'=> '3.54', 14607 'Locale::Country' => '3.54', 14608 'Locale::Currency' => '3.54', 14609 'Locale::Language' => '3.54', 14610 'Locale::Script' => '3.54', 14611 'Math::BigFloat' => '1.999811', 14612 'Math::BigInt' => '1.999811', 14613 'Math::BigInt::Calc' => '1.999811', 14614 'Math::BigInt::CalcEmu' => '1.999811', 14615 'Math::BigInt::FastCalc'=> '0.5006', 14616 'Math::BigInt::Lib' => '1.999811', 14617 'Module::CoreList' => '5.20171020', 14618 'Module::CoreList::TieHashDelta'=> '5.20171020', 14619 'Module::CoreList::Utils'=> '5.20171020', 14620 'NEXT' => '0.67_01', 14621 'POSIX' => '1.78', 14622 'Pod::Perldoc' => '3.2801', 14623 'Scalar::Util' => '1.49', 14624 'Sub::Util' => '1.49', 14625 'Sys::Hostname' => '1.21', 14626 'Test2' => '1.302103', 14627 'Test2::API' => '1.302103', 14628 'Test2::API::Breakage' => '1.302103', 14629 'Test2::API::Context' => '1.302103', 14630 'Test2::API::Instance' => '1.302103', 14631 'Test2::API::Stack' => '1.302103', 14632 'Test2::Event' => '1.302103', 14633 'Test2::Event::Bail' => '1.302103', 14634 'Test2::Event::Diag' => '1.302103', 14635 'Test2::Event::Encoding'=> '1.302103', 14636 'Test2::Event::Exception'=> '1.302103', 14637 'Test2::Event::Fail' => '1.302103', 14638 'Test2::Event::Generic' => '1.302103', 14639 'Test2::Event::Note' => '1.302103', 14640 'Test2::Event::Ok' => '1.302103', 14641 'Test2::Event::Pass' => '1.302103', 14642 'Test2::Event::Plan' => '1.302103', 14643 'Test2::Event::Skip' => '1.302103', 14644 'Test2::Event::Subtest' => '1.302103', 14645 'Test2::Event::TAP::Version'=> '1.302103', 14646 'Test2::Event::Waiting' => '1.302103', 14647 'Test2::EventFacet' => '1.302103', 14648 'Test2::EventFacet::About'=> '1.302103', 14649 'Test2::EventFacet::Amnesty'=> '1.302103', 14650 'Test2::EventFacet::Assert'=> '1.302103', 14651 'Test2::EventFacet::Control'=> '1.302103', 14652 'Test2::EventFacet::Error'=> '1.302103', 14653 'Test2::EventFacet::Info'=> '1.302103', 14654 'Test2::EventFacet::Meta'=> '1.302103', 14655 'Test2::EventFacet::Parent'=> '1.302103', 14656 'Test2::EventFacet::Plan'=> '1.302103', 14657 'Test2::EventFacet::Trace'=> '1.302103', 14658 'Test2::Formatter' => '1.302103', 14659 'Test2::Formatter::TAP' => '1.302103', 14660 'Test2::Hub' => '1.302103', 14661 'Test2::Hub::Interceptor'=> '1.302103', 14662 'Test2::Hub::Interceptor::Terminator'=> '1.302103', 14663 'Test2::Hub::Subtest' => '1.302103', 14664 'Test2::IPC' => '1.302103', 14665 'Test2::IPC::Driver' => '1.302103', 14666 'Test2::IPC::Driver::Files'=> '1.302103', 14667 'Test2::Tools::Tiny' => '1.302103', 14668 'Test2::Util' => '1.302103', 14669 'Test2::Util::ExternalMeta'=> '1.302103', 14670 'Test2::Util::Facets2Legacy'=> '1.302103', 14671 'Test2::Util::HashBase' => '0.005', 14672 'Test2::Util::Trace' => '1.302103', 14673 'Test::Builder' => '1.302103', 14674 'Test::Builder::Formatter'=> '1.302103', 14675 'Test::Builder::IO::Scalar'=> '2.114', 14676 'Test::Builder::Module' => '1.302103', 14677 'Test::Builder::Tester' => '1.302103', 14678 'Test::Builder::Tester::Color'=> '1.302103', 14679 'Test::Builder::TodoDiag'=> '1.302103', 14680 'Test::More' => '1.302103', 14681 'Test::Simple' => '1.302103', 14682 'Test::Tester' => '1.302103', 14683 'Test::Tester::Capture' => '1.302103', 14684 'Test::Tester::CaptureRunner'=> '1.302103', 14685 'Test::Tester::Delegate'=> '1.302103', 14686 'Test::use::ok' => '1.302103', 14687 'Time::HiRes' => '1.9746', 14688 'Time::Piece' => '1.3202', 14689 'Time::Seconds' => '1.3202', 14690 'arybase' => '0.14', 14691 'encoding' => '2.21', 14692 'ok' => '1.302103', 14693 }, 14694 removed => { 14695 'Test2::Event::Info' => 1, 14696 } 14697 }, 14698 5.027006 => { 14699 delta_from => 5.027005, 14700 changed => { 14701 'Attribute::Handlers' => '1.01', 14702 'B' => '1.72', 14703 'B::Concise' => '1.003', 14704 'B::Deparse' => '1.45', 14705 'B::Op_private' => '5.027006', 14706 'Carp' => '1.44', 14707 'Carp::Heavy' => '1.44', 14708 'Compress::Raw::Zlib' => '2.075', 14709 'Config' => '5.027006', 14710 'Config::Extensions' => '0.02', 14711 'Cwd' => '3.70', 14712 'DynaLoader' => '1.44', 14713 'ExtUtils::CBuilder' => '0.280229', 14714 'ExtUtils::CBuilder::Platform::Unix'=> '0.280229', 14715 'ExtUtils::CBuilder::Platform::VMS'=> '0.280229', 14716 'ExtUtils::CBuilder::Platform::Windows'=> '0.280229', 14717 'ExtUtils::CBuilder::Platform::aix'=> '0.280229', 14718 'ExtUtils::CBuilder::Platform::android'=> '0.280229', 14719 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229', 14720 'ExtUtils::CBuilder::Platform::darwin'=> '0.280229', 14721 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229', 14722 'ExtUtils::CBuilder::Platform::os2'=> '0.280229', 14723 'ExtUtils::Embed' => '1.35', 14724 'ExtUtils::Miniperl' => '1.07', 14725 'ExtUtils::ParseXS' => '3.36', 14726 'ExtUtils::ParseXS::Constants'=> '3.36', 14727 'ExtUtils::ParseXS::CountLines'=> '3.36', 14728 'ExtUtils::ParseXS::Eval'=> '3.36', 14729 'ExtUtils::ParseXS::Utilities'=> '3.36', 14730 'ExtUtils::Typemaps' => '3.36', 14731 'ExtUtils::Typemaps::Cmd'=> '3.36', 14732 'ExtUtils::Typemaps::InputMap'=> '3.36', 14733 'ExtUtils::Typemaps::OutputMap'=> '3.36', 14734 'ExtUtils::Typemaps::Type'=> '3.36', 14735 'ExtUtils::XSSymSet' => '1.4', 14736 'File::Copy' => '2.33', 14737 'File::Spec' => '3.69', 14738 'File::Spec::AmigaOS' => '3.69', 14739 'File::Spec::Cygwin' => '3.69', 14740 'File::Spec::Epoc' => '3.69', 14741 'File::Spec::Functions' => '3.69', 14742 'File::Spec::Mac' => '3.69', 14743 'File::Spec::OS2' => '3.69', 14744 'File::Spec::Unix' => '3.69', 14745 'File::Spec::VMS' => '3.69', 14746 'File::Spec::Win32' => '3.69', 14747 'File::stat' => '1.08', 14748 'FileCache' => '1.10', 14749 'Filter::Simple' => '0.95', 14750 'Hash::Util::FieldHash' => '1.20', 14751 'I18N::LangTags' => '0.43', 14752 'I18N::LangTags::Detect'=> '1.07', 14753 'I18N::LangTags::List' => '0.40', 14754 'I18N::Langinfo' => '0.15', 14755 'IO::Handle' => '1.37', 14756 'IO::Select' => '1.23', 14757 'Locale::Maketext' => '1.29', 14758 'Module::CoreList' => '5.20171120', 14759 'Module::CoreList::TieHashDelta'=> '5.20171120', 14760 'Module::CoreList::Utils'=> '5.20171120', 14761 'Net::Cmd' => '3.11', 14762 'Net::Config' => '3.11', 14763 'Net::Domain' => '3.11', 14764 'Net::FTP' => '3.11', 14765 'Net::FTP::A' => '3.11', 14766 'Net::FTP::E' => '3.11', 14767 'Net::FTP::I' => '3.11', 14768 'Net::FTP::L' => '3.11', 14769 'Net::FTP::dataconn' => '3.11', 14770 'Net::NNTP' => '3.11', 14771 'Net::Netrc' => '3.11', 14772 'Net::POP3' => '3.11', 14773 'Net::Ping' => '2.62', 14774 'Net::SMTP' => '3.11', 14775 'Net::Time' => '3.11', 14776 'Net::hostent' => '1.02', 14777 'Net::netent' => '1.01', 14778 'Net::protoent' => '1.01', 14779 'Net::servent' => '1.02', 14780 'O' => '1.03', 14781 'ODBM_File' => '1.15', 14782 'Opcode' => '1.41', 14783 'POSIX' => '1.80', 14784 'Pod::Html' => '1.2203', 14785 'SelfLoader' => '1.25', 14786 'Socket' => '2.020_04', 14787 'Storable' => '2.65', 14788 'Test' => '1.31', 14789 'Test2' => '1.302111', 14790 'Test2::API' => '1.302111', 14791 'Test2::API::Breakage' => '1.302111', 14792 'Test2::API::Context' => '1.302111', 14793 'Test2::API::Instance' => '1.302111', 14794 'Test2::API::Stack' => '1.302111', 14795 'Test2::Event' => '1.302111', 14796 'Test2::Event::Bail' => '1.302111', 14797 'Test2::Event::Diag' => '1.302111', 14798 'Test2::Event::Encoding'=> '1.302111', 14799 'Test2::Event::Exception'=> '1.302111', 14800 'Test2::Event::Fail' => '1.302111', 14801 'Test2::Event::Generic' => '1.302111', 14802 'Test2::Event::Note' => '1.302111', 14803 'Test2::Event::Ok' => '1.302111', 14804 'Test2::Event::Pass' => '1.302111', 14805 'Test2::Event::Plan' => '1.302111', 14806 'Test2::Event::Skip' => '1.302111', 14807 'Test2::Event::Subtest' => '1.302111', 14808 'Test2::Event::TAP::Version'=> '1.302111', 14809 'Test2::Event::Waiting' => '1.302111', 14810 'Test2::EventFacet' => '1.302111', 14811 'Test2::EventFacet::About'=> '1.302111', 14812 'Test2::EventFacet::Amnesty'=> '1.302111', 14813 'Test2::EventFacet::Assert'=> '1.302111', 14814 'Test2::EventFacet::Control'=> '1.302111', 14815 'Test2::EventFacet::Error'=> '1.302111', 14816 'Test2::EventFacet::Info'=> '1.302111', 14817 'Test2::EventFacet::Meta'=> '1.302111', 14818 'Test2::EventFacet::Parent'=> '1.302111', 14819 'Test2::EventFacet::Plan'=> '1.302111', 14820 'Test2::EventFacet::Trace'=> '1.302111', 14821 'Test2::Formatter' => '1.302111', 14822 'Test2::Formatter::TAP' => '1.302111', 14823 'Test2::Hub' => '1.302111', 14824 'Test2::Hub::Interceptor'=> '1.302111', 14825 'Test2::Hub::Interceptor::Terminator'=> '1.302111', 14826 'Test2::Hub::Subtest' => '1.302111', 14827 'Test2::IPC' => '1.302111', 14828 'Test2::IPC::Driver' => '1.302111', 14829 'Test2::IPC::Driver::Files'=> '1.302111', 14830 'Test2::Tools::Tiny' => '1.302111', 14831 'Test2::Util' => '1.302111', 14832 'Test2::Util::ExternalMeta'=> '1.302111', 14833 'Test2::Util::Facets2Legacy'=> '1.302111', 14834 'Test2::Util::HashBase' => '1.302111', 14835 'Test2::Util::Trace' => '1.302111', 14836 'Test::Builder' => '1.302111', 14837 'Test::Builder::Formatter'=> '1.302111', 14838 'Test::Builder::Module' => '1.302111', 14839 'Test::Builder::Tester' => '1.302111', 14840 'Test::Builder::Tester::Color'=> '1.302111', 14841 'Test::Builder::TodoDiag'=> '1.302111', 14842 'Test::More' => '1.302111', 14843 'Test::Simple' => '1.302111', 14844 'Test::Tester' => '1.302111', 14845 'Test::Tester::Capture' => '1.302111', 14846 'Test::Tester::CaptureRunner'=> '1.302111', 14847 'Test::Tester::Delegate'=> '1.302111', 14848 'Test::use::ok' => '1.302111', 14849 'Tie::Array' => '1.07', 14850 'Tie::StdHandle' => '4.5', 14851 'Time::HiRes' => '1.9747', 14852 'Time::gmtime' => '1.04', 14853 'Time::localtime' => '1.03', 14854 'Unicode::Collate' => '1.23', 14855 'Unicode::Collate::CJK::Big5'=> '1.23', 14856 'Unicode::Collate::CJK::GB2312'=> '1.23', 14857 'Unicode::Collate::CJK::JISX0208'=> '1.23', 14858 'Unicode::Collate::CJK::Korean'=> '1.23', 14859 'Unicode::Collate::CJK::Pinyin'=> '1.23', 14860 'Unicode::Collate::CJK::Stroke'=> '1.23', 14861 'Unicode::Collate::CJK::Zhuyin'=> '1.23', 14862 'Unicode::Collate::Locale'=> '1.23', 14863 'Unicode::Normalize' => '1.26', 14864 'User::grent' => '1.02', 14865 'User::pwent' => '1.01', 14866 'VMS::DCLsym' => '1.09', 14867 'VMS::Stdio' => '2.44', 14868 'XS::APItest' => '0.93', 14869 'XS::Typemap' => '0.16', 14870 'XSLoader' => '0.28', 14871 'attributes' => '0.32', 14872 'base' => '2.27', 14873 'blib' => '1.07', 14874 'experimental' => '0.017', 14875 'fields' => '2.24', 14876 'ok' => '1.302111', 14877 're' => '0.36', 14878 'sort' => '2.04', 14879 'threads' => '2.19', 14880 'warnings' => '1.38', 14881 }, 14882 removed => { 14883 } 14884 }, 14885 5.027007 => { 14886 delta_from => 5.027006, 14887 changed => { 14888 'App::Cpan' => '1.67', 14889 'B' => '1.73', 14890 'B::Debug' => '1.26', 14891 'B::Deparse' => '1.46', 14892 'B::Op_private' => '5.027007', 14893 'CPAN' => '2.20', 14894 'CPAN::Distribution' => '2.19', 14895 'CPAN::FTP' => '5.5011', 14896 'CPAN::FirstTime' => '5.5311', 14897 'CPAN::Shell' => '5.5007', 14898 'Carp' => '1.45', 14899 'Carp::Heavy' => '1.45', 14900 'Compress::Raw::Zlib' => '2.076', 14901 'Config' => '5.027007', 14902 'Cwd' => '3.71', 14903 'Data::Dumper' => '2.169', 14904 'Devel::PPPort' => '3.37', 14905 'Digest::SHA' => '6.00', 14906 'DynaLoader' => '1.45', 14907 'ExtUtils::CBuilder' => '0.280230', 14908 'ExtUtils::CBuilder::Base'=> '0.280230', 14909 'ExtUtils::CBuilder::Platform::Unix'=> '0.280230', 14910 'ExtUtils::CBuilder::Platform::VMS'=> '0.280230', 14911 'ExtUtils::CBuilder::Platform::Windows'=> '0.280230', 14912 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230', 14913 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230', 14914 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230', 14915 'ExtUtils::CBuilder::Platform::aix'=> '0.280230', 14916 'ExtUtils::CBuilder::Platform::android'=> '0.280230', 14917 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230', 14918 'ExtUtils::CBuilder::Platform::darwin'=> '0.280230', 14919 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230', 14920 'ExtUtils::CBuilder::Platform::os2'=> '0.280230', 14921 'ExtUtils::Typemaps' => '3.37', 14922 'File::Fetch' => '0.56', 14923 'File::Spec' => '3.71', 14924 'File::Spec::AmigaOS' => '3.71', 14925 'File::Spec::Cygwin' => '3.71', 14926 'File::Spec::Epoc' => '3.71', 14927 'File::Spec::Functions' => '3.71', 14928 'File::Spec::Mac' => '3.71', 14929 'File::Spec::OS2' => '3.71', 14930 'File::Spec::Unix' => '3.71', 14931 'File::Spec::VMS' => '3.71', 14932 'File::Spec::Win32' => '3.71', 14933 'Filter::Util::Call' => '1.58', 14934 'GDBM_File' => '1.17', 14935 'JSON::PP' => '2.97000', 14936 'JSON::PP::Boolean' => '2.97000', 14937 'Locale::Codes' => '3.55', 14938 'Locale::Codes::Constants'=> '3.55', 14939 'Locale::Codes::Country'=> '3.55', 14940 'Locale::Codes::Country_Codes'=> '3.55', 14941 'Locale::Codes::Country_Retired'=> '3.55', 14942 'Locale::Codes::Currency'=> '3.55', 14943 'Locale::Codes::Currency_Codes'=> '3.55', 14944 'Locale::Codes::Currency_Retired'=> '3.55', 14945 'Locale::Codes::LangExt'=> '3.55', 14946 'Locale::Codes::LangExt_Codes'=> '3.55', 14947 'Locale::Codes::LangExt_Retired'=> '3.55', 14948 'Locale::Codes::LangFam'=> '3.55', 14949 'Locale::Codes::LangFam_Codes'=> '3.55', 14950 'Locale::Codes::LangFam_Retired'=> '3.55', 14951 'Locale::Codes::LangVar'=> '3.55', 14952 'Locale::Codes::LangVar_Codes'=> '3.55', 14953 'Locale::Codes::LangVar_Retired'=> '3.55', 14954 'Locale::Codes::Language'=> '3.55', 14955 'Locale::Codes::Language_Codes'=> '3.55', 14956 'Locale::Codes::Language_Retired'=> '3.55', 14957 'Locale::Codes::Script' => '3.55', 14958 'Locale::Codes::Script_Codes'=> '3.55', 14959 'Locale::Codes::Script_Retired'=> '3.55', 14960 'Locale::Country' => '3.55', 14961 'Locale::Currency' => '3.55', 14962 'Locale::Language' => '3.55', 14963 'Locale::Script' => '3.55', 14964 'Module::CoreList' => '5.20171220', 14965 'Module::CoreList::TieHashDelta'=> '5.20171220', 14966 'Module::CoreList::Utils'=> '5.20171220', 14967 'Opcode' => '1.42', 14968 'POSIX' => '1.81', 14969 'Pod::Functions' => '1.12', 14970 'Pod::Html' => '1.23', 14971 'Sys::Hostname' => '1.22', 14972 'Test2' => '1.302120', 14973 'Test2::API' => '1.302120', 14974 'Test2::API::Breakage' => '1.302120', 14975 'Test2::API::Context' => '1.302120', 14976 'Test2::API::Instance' => '1.302120', 14977 'Test2::API::Stack' => '1.302120', 14978 'Test2::Event' => '1.302120', 14979 'Test2::Event::Bail' => '1.302120', 14980 'Test2::Event::Diag' => '1.302120', 14981 'Test2::Event::Encoding'=> '1.302120', 14982 'Test2::Event::Exception'=> '1.302120', 14983 'Test2::Event::Fail' => '1.302120', 14984 'Test2::Event::Generic' => '1.302120', 14985 'Test2::Event::Note' => '1.302120', 14986 'Test2::Event::Ok' => '1.302120', 14987 'Test2::Event::Pass' => '1.302120', 14988 'Test2::Event::Plan' => '1.302120', 14989 'Test2::Event::Skip' => '1.302120', 14990 'Test2::Event::Subtest' => '1.302120', 14991 'Test2::Event::TAP::Version'=> '1.302120', 14992 'Test2::Event::Waiting' => '1.302120', 14993 'Test2::EventFacet' => '1.302120', 14994 'Test2::EventFacet::About'=> '1.302120', 14995 'Test2::EventFacet::Amnesty'=> '1.302120', 14996 'Test2::EventFacet::Assert'=> '1.302120', 14997 'Test2::EventFacet::Control'=> '1.302120', 14998 'Test2::EventFacet::Error'=> '1.302120', 14999 'Test2::EventFacet::Info'=> '1.302120', 15000 'Test2::EventFacet::Meta'=> '1.302120', 15001 'Test2::EventFacet::Parent'=> '1.302120', 15002 'Test2::EventFacet::Plan'=> '1.302120', 15003 'Test2::EventFacet::Trace'=> '1.302120', 15004 'Test2::Formatter' => '1.302120', 15005 'Test2::Formatter::TAP' => '1.302120', 15006 'Test2::Hub' => '1.302120', 15007 'Test2::Hub::Interceptor'=> '1.302120', 15008 'Test2::Hub::Interceptor::Terminator'=> '1.302120', 15009 'Test2::Hub::Subtest' => '1.302120', 15010 'Test2::IPC' => '1.302120', 15011 'Test2::IPC::Driver' => '1.302120', 15012 'Test2::IPC::Driver::Files'=> '1.302120', 15013 'Test2::Tools::Tiny' => '1.302120', 15014 'Test2::Util' => '1.302120', 15015 'Test2::Util::ExternalMeta'=> '1.302120', 15016 'Test2::Util::Facets2Legacy'=> '1.302120', 15017 'Test2::Util::HashBase' => '1.302120', 15018 'Test2::Util::Trace' => '1.302120', 15019 'Test::Builder' => '1.302120', 15020 'Test::Builder::Formatter'=> '1.302120', 15021 'Test::Builder::Module' => '1.302120', 15022 'Test::Builder::Tester' => '1.302120', 15023 'Test::Builder::Tester::Color'=> '1.302120', 15024 'Test::Builder::TodoDiag'=> '1.302120', 15025 'Test::More' => '1.302120', 15026 'Test::Simple' => '1.302120', 15027 'Test::Tester' => '1.302120', 15028 'Test::Tester::Capture' => '1.302120', 15029 'Test::Tester::CaptureRunner'=> '1.302120', 15030 'Test::Tester::Delegate'=> '1.302120', 15031 'Test::use::ok' => '1.302120', 15032 'Time::HiRes' => '1.9748', 15033 'Time::Piece' => '1.3203', 15034 'Time::Seconds' => '1.3203', 15035 'Unicode::Collate' => '1.25', 15036 'Unicode::Collate::CJK::Big5'=> '1.25', 15037 'Unicode::Collate::CJK::GB2312'=> '1.25', 15038 'Unicode::Collate::CJK::JISX0208'=> '1.25', 15039 'Unicode::Collate::CJK::Korean'=> '1.25', 15040 'Unicode::Collate::CJK::Pinyin'=> '1.25', 15041 'Unicode::Collate::CJK::Stroke'=> '1.25', 15042 'Unicode::Collate::CJK::Zhuyin'=> '1.25', 15043 'Unicode::Collate::Locale'=> '1.25', 15044 'Unicode::UCD' => '0.69', 15045 'XS::APItest' => '0.94', 15046 'XSLoader' => '0.29', 15047 'arybase' => '0.15', 15048 'autodie::exception' => '2.29001', 15049 'autodie::hints' => '2.29001', 15050 'experimental' => '0.019', 15051 'feature' => '1.50', 15052 'ok' => '1.302120', 15053 'overload' => '1.29', 15054 'threads' => '2.21', 15055 'threads::shared' => '1.58', 15056 'warnings' => '1.39', 15057 }, 15058 removed => { 15059 } 15060 }, 15061 5.027008 => { 15062 delta_from => 5.027007, 15063 changed => { 15064 'B' => '1.74', 15065 'B::Deparse' => '1.47', 15066 'B::Op_private' => '5.027008', 15067 'Config' => '5.027008', 15068 'Cwd' => '3.72', 15069 'Data::Dumper' => '2.170', 15070 'Devel::PPPort' => '3.38', 15071 'Digest::SHA' => '6.01', 15072 'Encode' => '2.94', 15073 'Encode::Alias' => '2.24', 15074 'ExtUtils::Miniperl' => '1.08', 15075 'File::Spec' => '3.72', 15076 'File::Spec::AmigaOS' => '3.72', 15077 'File::Spec::Cygwin' => '3.72', 15078 'File::Spec::Epoc' => '3.72', 15079 'File::Spec::Functions' => '3.72', 15080 'File::Spec::Mac' => '3.72', 15081 'File::Spec::OS2' => '3.72', 15082 'File::Spec::Unix' => '3.72', 15083 'File::Spec::VMS' => '3.72', 15084 'File::Spec::Win32' => '3.72', 15085 'JSON::PP' => '2.97001', 15086 'JSON::PP::Boolean' => '2.97001', 15087 'Module::CoreList' => '5.20180120', 15088 'Module::CoreList::TieHashDelta'=> '5.20180120', 15089 'Module::CoreList::Utils'=> '5.20180120', 15090 'Opcode' => '1.43', 15091 'Pod::Functions' => '1.13', 15092 'Pod::Html' => '1.24', 15093 'Pod::Man' => '4.10', 15094 'Pod::ParseLink' => '4.10', 15095 'Pod::Text' => '4.10', 15096 'Pod::Text::Color' => '4.10', 15097 'Pod::Text::Overstrike' => '4.10', 15098 'Pod::Text::Termcap' => '4.10', 15099 'Socket' => '2.027', 15100 'Time::HiRes' => '1.9752', 15101 'Unicode::UCD' => '0.70', 15102 'XS::APItest' => '0.95', 15103 'XSLoader' => '0.30', 15104 'autodie::exception' => '2.29002', 15105 'feature' => '1.51', 15106 'overload' => '1.30', 15107 'utf8' => '1.21', 15108 'warnings' => '1.40', 15109 }, 15110 removed => { 15111 } 15112 }, 15113 5.027009 => { 15114 delta_from => 5.027008, 15115 changed => { 15116 'B::Op_private' => '5.027009', 15117 'Carp' => '1.46', 15118 'Carp::Heavy' => '1.46', 15119 'Config' => '5.027009', 15120 'Cwd' => '3.74', 15121 'Devel::PPPort' => '3.39', 15122 'Encode' => '2.96', 15123 'Encode::Unicode' => '2.17', 15124 'Errno' => '1.29', 15125 'ExtUtils::Command' => '7.32', 15126 'ExtUtils::Command::MM' => '7.32', 15127 'ExtUtils::Liblist' => '7.32', 15128 'ExtUtils::Liblist::Kid'=> '7.32', 15129 'ExtUtils::MM' => '7.32', 15130 'ExtUtils::MM_AIX' => '7.32', 15131 'ExtUtils::MM_Any' => '7.32', 15132 'ExtUtils::MM_BeOS' => '7.32', 15133 'ExtUtils::MM_Cygwin' => '7.32', 15134 'ExtUtils::MM_DOS' => '7.32', 15135 'ExtUtils::MM_Darwin' => '7.32', 15136 'ExtUtils::MM_MacOS' => '7.32', 15137 'ExtUtils::MM_NW5' => '7.32', 15138 'ExtUtils::MM_OS2' => '7.32', 15139 'ExtUtils::MM_QNX' => '7.32', 15140 'ExtUtils::MM_UWIN' => '7.32', 15141 'ExtUtils::MM_Unix' => '7.32', 15142 'ExtUtils::MM_VMS' => '7.32', 15143 'ExtUtils::MM_VOS' => '7.32', 15144 'ExtUtils::MM_Win32' => '7.32', 15145 'ExtUtils::MM_Win95' => '7.32', 15146 'ExtUtils::MY' => '7.32', 15147 'ExtUtils::MakeMaker' => '7.32', 15148 'ExtUtils::MakeMaker::Config'=> '7.32', 15149 'ExtUtils::MakeMaker::Locale'=> '7.32', 15150 'ExtUtils::MakeMaker::version'=> '7.32', 15151 'ExtUtils::MakeMaker::version::regex'=> '7.32', 15152 'ExtUtils::Mkbootstrap' => '7.32', 15153 'ExtUtils::Mksymlists' => '7.32', 15154 'ExtUtils::ParseXS' => '3.38', 15155 'ExtUtils::ParseXS::Constants'=> '3.38', 15156 'ExtUtils::ParseXS::CountLines'=> '3.38', 15157 'ExtUtils::ParseXS::Eval'=> '3.38', 15158 'ExtUtils::ParseXS::Utilities'=> '3.38', 15159 'ExtUtils::Typemaps' => '3.38', 15160 'ExtUtils::Typemaps::Cmd'=> '3.38', 15161 'ExtUtils::Typemaps::InputMap'=> '3.38', 15162 'ExtUtils::Typemaps::OutputMap'=> '3.38', 15163 'ExtUtils::Typemaps::Type'=> '3.38', 15164 'ExtUtils::testlib' => '7.32', 15165 'File::Spec' => '3.74', 15166 'File::Spec::AmigaOS' => '3.74', 15167 'File::Spec::Cygwin' => '3.74', 15168 'File::Spec::Epoc' => '3.74', 15169 'File::Spec::Functions' => '3.74', 15170 'File::Spec::Mac' => '3.74', 15171 'File::Spec::OS2' => '3.74', 15172 'File::Spec::Unix' => '3.74', 15173 'File::Spec::VMS' => '3.74', 15174 'File::Spec::Win32' => '3.74', 15175 'IPC::Cmd' => '1.00', 15176 'Math::BigFloat::Trace' => '0.49', 15177 'Math::BigInt::Trace' => '0.49', 15178 'Module::CoreList' => '5.20180220', 15179 'Module::CoreList::Utils'=> '5.20180220', 15180 'POSIX' => '1.82', 15181 'PerlIO::encoding' => '0.26', 15182 'Storable' => '3.06', 15183 'Storable::Limit' => undef, 15184 'Test2' => '1.302122', 15185 'Test2::API' => '1.302122', 15186 'Test2::API::Breakage' => '1.302122', 15187 'Test2::API::Context' => '1.302122', 15188 'Test2::API::Instance' => '1.302122', 15189 'Test2::API::Stack' => '1.302122', 15190 'Test2::Event' => '1.302122', 15191 'Test2::Event::Bail' => '1.302122', 15192 'Test2::Event::Diag' => '1.302122', 15193 'Test2::Event::Encoding'=> '1.302122', 15194 'Test2::Event::Exception'=> '1.302122', 15195 'Test2::Event::Fail' => '1.302122', 15196 'Test2::Event::Generic' => '1.302122', 15197 'Test2::Event::Note' => '1.302122', 15198 'Test2::Event::Ok' => '1.302122', 15199 'Test2::Event::Pass' => '1.302122', 15200 'Test2::Event::Plan' => '1.302122', 15201 'Test2::Event::Skip' => '1.302122', 15202 'Test2::Event::Subtest' => '1.302122', 15203 'Test2::Event::TAP::Version'=> '1.302122', 15204 'Test2::Event::Waiting' => '1.302122', 15205 'Test2::EventFacet' => '1.302122', 15206 'Test2::EventFacet::About'=> '1.302122', 15207 'Test2::EventFacet::Amnesty'=> '1.302122', 15208 'Test2::EventFacet::Assert'=> '1.302122', 15209 'Test2::EventFacet::Control'=> '1.302122', 15210 'Test2::EventFacet::Error'=> '1.302122', 15211 'Test2::EventFacet::Info'=> '1.302122', 15212 'Test2::EventFacet::Meta'=> '1.302122', 15213 'Test2::EventFacet::Parent'=> '1.302122', 15214 'Test2::EventFacet::Plan'=> '1.302122', 15215 'Test2::EventFacet::Render'=> '1.302122', 15216 'Test2::EventFacet::Trace'=> '1.302122', 15217 'Test2::Formatter' => '1.302122', 15218 'Test2::Formatter::TAP' => '1.302122', 15219 'Test2::Hub' => '1.302122', 15220 'Test2::Hub::Interceptor'=> '1.302122', 15221 'Test2::Hub::Interceptor::Terminator'=> '1.302122', 15222 'Test2::Hub::Subtest' => '1.302122', 15223 'Test2::IPC' => '1.302122', 15224 'Test2::IPC::Driver' => '1.302122', 15225 'Test2::IPC::Driver::Files'=> '1.302122', 15226 'Test2::Tools::Tiny' => '1.302122', 15227 'Test2::Util' => '1.302122', 15228 'Test2::Util::ExternalMeta'=> '1.302122', 15229 'Test2::Util::Facets2Legacy'=> '1.302122', 15230 'Test2::Util::HashBase' => '1.302122', 15231 'Test2::Util::Trace' => '1.302122', 15232 'Test::Builder' => '1.302122', 15233 'Test::Builder::Formatter'=> '1.302122', 15234 'Test::Builder::Module' => '1.302122', 15235 'Test::Builder::Tester' => '1.302122', 15236 'Test::Builder::Tester::Color'=> '1.302122', 15237 'Test::Builder::TodoDiag'=> '1.302122', 15238 'Test::More' => '1.302122', 15239 'Test::Simple' => '1.302122', 15240 'Test::Tester' => '1.302122', 15241 'Test::Tester::Capture' => '1.302122', 15242 'Test::Tester::CaptureRunner'=> '1.302122', 15243 'Test::Tester::Delegate'=> '1.302122', 15244 'Test::use::ok' => '1.302122', 15245 'Time::HiRes' => '1.9753', 15246 'XS::APItest' => '0.96', 15247 'bigint' => '0.49', 15248 'bignum' => '0.49', 15249 'bigrat' => '0.49', 15250 'encoding' => '2.22', 15251 'if' => '0.0608', 15252 'mro' => '1.22', 15253 'ok' => '1.302122', 15254 'threads' => '2.22', 15255 'warnings' => '1.41', 15256 }, 15257 removed => { 15258 'Module::CoreList::TieHashDelta'=> 1, 15259 } 15260 }, 15261 5.027010 => { 15262 delta_from => 5.027009, 15263 changed => { 15264 'App::Prove' => '3.42', 15265 'App::Prove::State' => '3.42', 15266 'App::Prove::State::Result'=> '3.42', 15267 'App::Prove::State::Result::Test'=> '3.42', 15268 'B::Deparse' => '1.48', 15269 'B::Op_private' => '5.027010', 15270 'Carp' => '1.49', 15271 'Carp::Heavy' => '1.49', 15272 'Config' => '5.02701', 15273 'Encode' => '2.97', 15274 'ExtUtils::Command' => '7.34', 15275 'ExtUtils::Command::MM' => '7.34', 15276 'ExtUtils::Liblist' => '7.34', 15277 'ExtUtils::Liblist::Kid'=> '7.34', 15278 'ExtUtils::MM' => '7.34', 15279 'ExtUtils::MM_AIX' => '7.34', 15280 'ExtUtils::MM_Any' => '7.34', 15281 'ExtUtils::MM_BeOS' => '7.34', 15282 'ExtUtils::MM_Cygwin' => '7.34', 15283 'ExtUtils::MM_DOS' => '7.34', 15284 'ExtUtils::MM_Darwin' => '7.34', 15285 'ExtUtils::MM_MacOS' => '7.34', 15286 'ExtUtils::MM_NW5' => '7.34', 15287 'ExtUtils::MM_OS2' => '7.34', 15288 'ExtUtils::MM_QNX' => '7.34', 15289 'ExtUtils::MM_UWIN' => '7.34', 15290 'ExtUtils::MM_Unix' => '7.34', 15291 'ExtUtils::MM_VMS' => '7.34', 15292 'ExtUtils::MM_VOS' => '7.34', 15293 'ExtUtils::MM_Win32' => '7.34', 15294 'ExtUtils::MM_Win95' => '7.34', 15295 'ExtUtils::MY' => '7.34', 15296 'ExtUtils::MakeMaker' => '7.34', 15297 'ExtUtils::MakeMaker::Config'=> '7.34', 15298 'ExtUtils::MakeMaker::Locale'=> '7.34', 15299 'ExtUtils::MakeMaker::version'=> '7.34', 15300 'ExtUtils::MakeMaker::version::regex'=> '7.34', 15301 'ExtUtils::Mkbootstrap' => '7.34', 15302 'ExtUtils::Mksymlists' => '7.34', 15303 'ExtUtils::ParseXS' => '3.39', 15304 'ExtUtils::ParseXS::Constants'=> '3.39', 15305 'ExtUtils::ParseXS::CountLines'=> '3.39', 15306 'ExtUtils::ParseXS::Eval'=> '3.39', 15307 'ExtUtils::ParseXS::Utilities'=> '3.39', 15308 'ExtUtils::testlib' => '7.34', 15309 'File::Glob' => '1.31', 15310 'I18N::Langinfo' => '0.16', 15311 'List::Util' => '1.50', 15312 'List::Util::XS' => '1.50', 15313 'Locale::Codes' => '3.56', 15314 'Locale::Codes::Constants'=> '3.56', 15315 'Locale::Codes::Country'=> '3.56', 15316 'Locale::Codes::Country_Codes'=> '3.56', 15317 'Locale::Codes::Country_Retired'=> '3.56', 15318 'Locale::Codes::Currency'=> '3.56', 15319 'Locale::Codes::Currency_Codes'=> '3.56', 15320 'Locale::Codes::Currency_Retired'=> '3.56', 15321 'Locale::Codes::LangExt'=> '3.56', 15322 'Locale::Codes::LangExt_Codes'=> '3.56', 15323 'Locale::Codes::LangExt_Retired'=> '3.56', 15324 'Locale::Codes::LangFam'=> '3.56', 15325 'Locale::Codes::LangFam_Codes'=> '3.56', 15326 'Locale::Codes::LangFam_Retired'=> '3.56', 15327 'Locale::Codes::LangVar'=> '3.56', 15328 'Locale::Codes::LangVar_Codes'=> '3.56', 15329 'Locale::Codes::LangVar_Retired'=> '3.56', 15330 'Locale::Codes::Language'=> '3.56', 15331 'Locale::Codes::Language_Codes'=> '3.56', 15332 'Locale::Codes::Language_Retired'=> '3.56', 15333 'Locale::Codes::Script' => '3.56', 15334 'Locale::Codes::Script_Codes'=> '3.56', 15335 'Locale::Codes::Script_Retired'=> '3.56', 15336 'Locale::Country' => '3.56', 15337 'Locale::Currency' => '3.56', 15338 'Locale::Language' => '3.56', 15339 'Locale::Script' => '3.56', 15340 'Module::CoreList' => '5.20180221', 15341 'Module::CoreList::Utils'=> '5.20180221', 15342 'POSIX' => '1.83', 15343 'Scalar::Util' => '1.50', 15344 'Sub::Util' => '1.50', 15345 'TAP::Base' => '3.42', 15346 'TAP::Formatter::Base' => '3.42', 15347 'TAP::Formatter::Color' => '3.42', 15348 'TAP::Formatter::Console'=> '3.42', 15349 'TAP::Formatter::Console::ParallelSession'=> '3.42', 15350 'TAP::Formatter::Console::Session'=> '3.42', 15351 'TAP::Formatter::File' => '3.42', 15352 'TAP::Formatter::File::Session'=> '3.42', 15353 'TAP::Formatter::Session'=> '3.42', 15354 'TAP::Harness' => '3.42', 15355 'TAP::Harness::Env' => '3.42', 15356 'TAP::Object' => '3.42', 15357 'TAP::Parser' => '3.42', 15358 'TAP::Parser::Aggregator'=> '3.42', 15359 'TAP::Parser::Grammar' => '3.42', 15360 'TAP::Parser::Iterator' => '3.42', 15361 'TAP::Parser::Iterator::Array'=> '3.42', 15362 'TAP::Parser::Iterator::Process'=> '3.42', 15363 'TAP::Parser::Iterator::Stream'=> '3.42', 15364 'TAP::Parser::IteratorFactory'=> '3.42', 15365 'TAP::Parser::Multiplexer'=> '3.42', 15366 'TAP::Parser::Result' => '3.42', 15367 'TAP::Parser::Result::Bailout'=> '3.42', 15368 'TAP::Parser::Result::Comment'=> '3.42', 15369 'TAP::Parser::Result::Plan'=> '3.42', 15370 'TAP::Parser::Result::Pragma'=> '3.42', 15371 'TAP::Parser::Result::Test'=> '3.42', 15372 'TAP::Parser::Result::Unknown'=> '3.42', 15373 'TAP::Parser::Result::Version'=> '3.42', 15374 'TAP::Parser::Result::YAML'=> '3.42', 15375 'TAP::Parser::ResultFactory'=> '3.42', 15376 'TAP::Parser::Scheduler'=> '3.42', 15377 'TAP::Parser::Scheduler::Job'=> '3.42', 15378 'TAP::Parser::Scheduler::Spinner'=> '3.42', 15379 'TAP::Parser::Source' => '3.42', 15380 'TAP::Parser::SourceHandler'=> '3.42', 15381 'TAP::Parser::SourceHandler::Executable'=> '3.42', 15382 'TAP::Parser::SourceHandler::File'=> '3.42', 15383 'TAP::Parser::SourceHandler::Handle'=> '3.42', 15384 'TAP::Parser::SourceHandler::Perl'=> '3.42', 15385 'TAP::Parser::SourceHandler::RawTAP'=> '3.42', 15386 'TAP::Parser::YAMLish::Reader'=> '3.42', 15387 'TAP::Parser::YAMLish::Writer'=> '3.42', 15388 'Test2' => '1.302133', 15389 'Test2::API' => '1.302133', 15390 'Test2::API::Breakage' => '1.302133', 15391 'Test2::API::Context' => '1.302133', 15392 'Test2::API::Instance' => '1.302133', 15393 'Test2::API::Stack' => '1.302133', 15394 'Test2::Event' => '1.302133', 15395 'Test2::Event::Bail' => '1.302133', 15396 'Test2::Event::Diag' => '1.302133', 15397 'Test2::Event::Encoding'=> '1.302133', 15398 'Test2::Event::Exception'=> '1.302133', 15399 'Test2::Event::Fail' => '1.302133', 15400 'Test2::Event::Generic' => '1.302133', 15401 'Test2::Event::Note' => '1.302133', 15402 'Test2::Event::Ok' => '1.302133', 15403 'Test2::Event::Pass' => '1.302133', 15404 'Test2::Event::Plan' => '1.302133', 15405 'Test2::Event::Skip' => '1.302133', 15406 'Test2::Event::Subtest' => '1.302133', 15407 'Test2::Event::TAP::Version'=> '1.302133', 15408 'Test2::Event::V2' => '1.302133', 15409 'Test2::Event::Waiting' => '1.302133', 15410 'Test2::EventFacet' => '1.302133', 15411 'Test2::EventFacet::About'=> '1.302133', 15412 'Test2::EventFacet::Amnesty'=> '1.302133', 15413 'Test2::EventFacet::Assert'=> '1.302133', 15414 'Test2::EventFacet::Control'=> '1.302133', 15415 'Test2::EventFacet::Error'=> '1.302133', 15416 'Test2::EventFacet::Hub'=> '1.302133', 15417 'Test2::EventFacet::Info'=> '1.302133', 15418 'Test2::EventFacet::Meta'=> '1.302133', 15419 'Test2::EventFacet::Parent'=> '1.302133', 15420 'Test2::EventFacet::Plan'=> '1.302133', 15421 'Test2::EventFacet::Render'=> '1.302133', 15422 'Test2::EventFacet::Trace'=> '1.302133', 15423 'Test2::Formatter' => '1.302133', 15424 'Test2::Formatter::TAP' => '1.302133', 15425 'Test2::Hub' => '1.302133', 15426 'Test2::Hub::Interceptor'=> '1.302133', 15427 'Test2::Hub::Interceptor::Terminator'=> '1.302133', 15428 'Test2::Hub::Subtest' => '1.302133', 15429 'Test2::IPC' => '1.302133', 15430 'Test2::IPC::Driver' => '1.302133', 15431 'Test2::IPC::Driver::Files'=> '1.302133', 15432 'Test2::Tools::Tiny' => '1.302133', 15433 'Test2::Util' => '1.302133', 15434 'Test2::Util::ExternalMeta'=> '1.302133', 15435 'Test2::Util::Facets2Legacy'=> '1.302133', 15436 'Test2::Util::HashBase' => '1.302133', 15437 'Test2::Util::Trace' => '1.302133', 15438 'Test::Builder' => '1.302133', 15439 'Test::Builder::Formatter'=> '1.302133', 15440 'Test::Builder::Module' => '1.302133', 15441 'Test::Builder::Tester' => '1.302133', 15442 'Test::Builder::Tester::Color'=> '1.302133', 15443 'Test::Builder::TodoDiag'=> '1.302133', 15444 'Test::Harness' => '3.42', 15445 'Test::More' => '1.302133', 15446 'Test::Simple' => '1.302133', 15447 'Test::Tester' => '1.302133', 15448 'Test::Tester::Capture' => '1.302133', 15449 'Test::Tester::CaptureRunner'=> '1.302133', 15450 'Test::Tester::Delegate'=> '1.302133', 15451 'Test::use::ok' => '1.302133', 15452 'Time::HiRes' => '1.9757', 15453 'Time::Piece' => '1.3204', 15454 'Time::Seconds' => '1.3204', 15455 'attributes' => '0.33', 15456 'ok' => '1.302133', 15457 'warnings' => '1.42', 15458 }, 15459 removed => { 15460 } 15461 }, 15462 5.024004 => { 15463 delta_from => 5.024003, 15464 changed => { 15465 'B::Op_private' => '5.024004', 15466 'Config' => '5.024004', 15467 'Module::CoreList' => '5.20180414_24', 15468 'Module::CoreList::TieHashDelta'=> '5.20180414_24', 15469 'Module::CoreList::Utils'=> '5.20180414_24', 15470 }, 15471 removed => { 15472 } 15473 }, 15474 5.026002 => { 15475 delta_from => 5.026001, 15476 changed => { 15477 'B::Op_private' => '5.026002', 15478 'Config' => '5.026002', 15479 'Module::CoreList' => '5.20180414_26', 15480 'Module::CoreList::TieHashDelta'=> '5.20180414_26', 15481 'Module::CoreList::Utils'=> '5.20180414_26', 15482 'PerlIO::via' => '0.17', 15483 'Term::ReadLine' => '1.17', 15484 'Unicode::UCD' => '0.69', 15485 }, 15486 removed => { 15487 } 15488 }, 15489 5.027011 => { 15490 delta_from => 5.027010, 15491 changed => { 15492 'B::Op_private' => '5.027011', 15493 'Carp' => '1.50', 15494 'Carp::Heavy' => '1.50', 15495 'Config' => '5.027011', 15496 'Devel::PPPort' => '3.40', 15497 'Exporter' => '5.73', 15498 'Exporter::Heavy' => '5.73', 15499 'ExtUtils::Constant' => '0.25', 15500 'I18N::Langinfo' => '0.17', 15501 'IO' => '1.39', 15502 'IO::Dir' => '1.39', 15503 'IO::File' => '1.39', 15504 'IO::Handle' => '1.39', 15505 'IO::Pipe' => '1.39', 15506 'IO::Poll' => '1.39', 15507 'IO::Seekable' => '1.39', 15508 'IO::Select' => '1.39', 15509 'IO::Socket' => '1.39', 15510 'IO::Socket::INET' => '1.39', 15511 'IO::Socket::UNIX' => '1.39', 15512 'Module::CoreList' => '5.20180420', 15513 'Module::CoreList::Utils'=> '5.20180420', 15514 'POSIX' => '1.84', 15515 'Time::HiRes' => '1.9759', 15516 'XS::APItest' => '0.97', 15517 'bytes' => '1.06', 15518 'subs' => '1.03', 15519 'vars' => '1.04', 15520 'version' => '0.9923', 15521 'version::regex' => '0.9923', 15522 }, 15523 removed => { 15524 } 15525 }, 15526 5.028000 => { 15527 delta_from => 5.027011, 15528 changed => { 15529 'Archive::Tar' => '2.30', 15530 'Archive::Tar::Constant'=> '2.30', 15531 'Archive::Tar::File' => '2.30', 15532 'B::Op_private' => '5.028000', 15533 'Config' => '5.028', 15534 'Module::CoreList' => '5.20180622', 15535 'Module::CoreList::Utils'=> '5.20180622', 15536 'Storable' => '3.08', 15537 'XS::APItest' => '0.98', 15538 'feature' => '1.52', 15539 }, 15540 removed => { 15541 } 15542 }, 15543 5.029000 => { 15544 delta_from => 5.028, 15545 changed => { 15546 'B::Op_private' => '5.029000', 15547 'Config' => '5.029', 15548 'Module::CoreList' => '5.20180626', 15549 'Module::CoreList::Utils'=> '5.20180626', 15550 'Unicode::UCD' => '0.71', 15551 'XS::APItest' => '0.99', 15552 'feature' => '1.53', 15553 }, 15554 removed => { 15555 } 15556 }, 15557 5.029001 => { 15558 delta_from => 5.029000, 15559 changed => { 15560 'B::Op_private' => '5.029001', 15561 'Compress::Raw::Bzip2' => '2.081', 15562 'Compress::Raw::Zlib' => '2.081', 15563 'Compress::Zlib' => '2.081', 15564 'Config' => '5.029001', 15565 'Config::Perl::V' => '0.30', 15566 'DB_File' => '1.842', 15567 'Devel::PPPort' => '3.42', 15568 'Digest::SHA' => '6.02', 15569 'ExtUtils::Manifest' => '1.71', 15570 'File::GlobMapper' => '1.001', 15571 'File::Temp' => '0.2308', 15572 'IO::Compress::Adapter::Bzip2'=> '2.081', 15573 'IO::Compress::Adapter::Deflate'=> '2.081', 15574 'IO::Compress::Adapter::Identity'=> '2.081', 15575 'IO::Compress::Base' => '2.081', 15576 'IO::Compress::Base::Common'=> '2.081', 15577 'IO::Compress::Bzip2' => '2.081', 15578 'IO::Compress::Deflate' => '2.081', 15579 'IO::Compress::Gzip' => '2.081', 15580 'IO::Compress::Gzip::Constants'=> '2.081', 15581 'IO::Compress::RawDeflate'=> '2.081', 15582 'IO::Compress::Zip' => '2.081', 15583 'IO::Compress::Zip::Constants'=> '2.081', 15584 'IO::Compress::Zlib::Constants'=> '2.081', 15585 'IO::Compress::Zlib::Extra'=> '2.081', 15586 'IO::Uncompress::Adapter::Bunzip2'=> '2.081', 15587 'IO::Uncompress::Adapter::Identity'=> '2.081', 15588 'IO::Uncompress::Adapter::Inflate'=> '2.081', 15589 'IO::Uncompress::AnyInflate'=> '2.081', 15590 'IO::Uncompress::AnyUncompress'=> '2.081', 15591 'IO::Uncompress::Base' => '2.081', 15592 'IO::Uncompress::Bunzip2'=> '2.081', 15593 'IO::Uncompress::Gunzip'=> '2.081', 15594 'IO::Uncompress::Inflate'=> '2.081', 15595 'IO::Uncompress::RawInflate'=> '2.081', 15596 'IO::Uncompress::Unzip' => '2.081', 15597 'IPC::Cmd' => '1.02', 15598 'Locale::Codes' => '3.57', 15599 'Locale::Codes::Constants'=> '3.57', 15600 'Locale::Codes::Country'=> '3.57', 15601 'Locale::Codes::Country_Codes'=> '3.57', 15602 'Locale::Codes::Country_Retired'=> '3.57', 15603 'Locale::Codes::Currency'=> '3.57', 15604 'Locale::Codes::Currency_Codes'=> '3.57', 15605 'Locale::Codes::Currency_Retired'=> '3.57', 15606 'Locale::Codes::LangExt'=> '3.57', 15607 'Locale::Codes::LangExt_Codes'=> '3.57', 15608 'Locale::Codes::LangExt_Retired'=> '3.57', 15609 'Locale::Codes::LangFam'=> '3.57', 15610 'Locale::Codes::LangFam_Codes'=> '3.57', 15611 'Locale::Codes::LangFam_Retired'=> '3.57', 15612 'Locale::Codes::LangVar'=> '3.57', 15613 'Locale::Codes::LangVar_Codes'=> '3.57', 15614 'Locale::Codes::LangVar_Retired'=> '3.57', 15615 'Locale::Codes::Language'=> '3.57', 15616 'Locale::Codes::Language_Codes'=> '3.57', 15617 'Locale::Codes::Language_Retired'=> '3.57', 15618 'Locale::Codes::Script' => '3.57', 15619 'Locale::Codes::Script_Codes'=> '3.57', 15620 'Locale::Codes::Script_Retired'=> '3.57', 15621 'Locale::Country' => '3.57', 15622 'Locale::Currency' => '3.57', 15623 'Locale::Language' => '3.57', 15624 'Locale::Script' => '3.57', 15625 'Math::BigFloat' => '1.999813', 15626 'Math::BigFloat::Trace' => '0.50', 15627 'Math::BigInt' => '1.999813', 15628 'Math::BigInt::Calc' => '1.999813', 15629 'Math::BigInt::CalcEmu' => '1.999813', 15630 'Math::BigInt::FastCalc'=> '0.5007', 15631 'Math::BigInt::Lib' => '1.999813', 15632 'Math::BigInt::Trace' => '0.50', 15633 'Math::BigRat' => '0.2614', 15634 'Module::CoreList' => '5.20180720', 15635 'Module::CoreList::Utils'=> '5.20180720', 15636 'Pod::Man' => '4.11', 15637 'Pod::ParseLink' => '4.11', 15638 'Pod::Text' => '4.11', 15639 'Pod::Text::Color' => '4.11', 15640 'Pod::Text::Overstrike' => '4.11', 15641 'Pod::Text::Termcap' => '4.11', 15642 'Storable' => '3.11', 15643 'Test2' => '1.302138', 15644 'Test2::API' => '1.302138', 15645 'Test2::API::Breakage' => '1.302138', 15646 'Test2::API::Context' => '1.302138', 15647 'Test2::API::Instance' => '1.302138', 15648 'Test2::API::Stack' => '1.302138', 15649 'Test2::Event' => '1.302138', 15650 'Test2::Event::Bail' => '1.302138', 15651 'Test2::Event::Diag' => '1.302138', 15652 'Test2::Event::Encoding'=> '1.302138', 15653 'Test2::Event::Exception'=> '1.302138', 15654 'Test2::Event::Fail' => '1.302138', 15655 'Test2::Event::Generic' => '1.302138', 15656 'Test2::Event::Note' => '1.302138', 15657 'Test2::Event::Ok' => '1.302138', 15658 'Test2::Event::Pass' => '1.302138', 15659 'Test2::Event::Plan' => '1.302138', 15660 'Test2::Event::Skip' => '1.302138', 15661 'Test2::Event::Subtest' => '1.302138', 15662 'Test2::Event::TAP::Version'=> '1.302138', 15663 'Test2::Event::V2' => '1.302138', 15664 'Test2::Event::Waiting' => '1.302138', 15665 'Test2::EventFacet' => '1.302138', 15666 'Test2::EventFacet::About'=> '1.302138', 15667 'Test2::EventFacet::Amnesty'=> '1.302138', 15668 'Test2::EventFacet::Assert'=> '1.302138', 15669 'Test2::EventFacet::Control'=> '1.302138', 15670 'Test2::EventFacet::Error'=> '1.302138', 15671 'Test2::EventFacet::Hub'=> '1.302138', 15672 'Test2::EventFacet::Info'=> '1.302138', 15673 'Test2::EventFacet::Meta'=> '1.302138', 15674 'Test2::EventFacet::Parent'=> '1.302138', 15675 'Test2::EventFacet::Plan'=> '1.302138', 15676 'Test2::EventFacet::Render'=> '1.302138', 15677 'Test2::EventFacet::Trace'=> '1.302138', 15678 'Test2::Formatter' => '1.302138', 15679 'Test2::Formatter::TAP' => '1.302138', 15680 'Test2::Hub' => '1.302138', 15681 'Test2::Hub::Interceptor'=> '1.302138', 15682 'Test2::Hub::Interceptor::Terminator'=> '1.302138', 15683 'Test2::Hub::Subtest' => '1.302138', 15684 'Test2::IPC' => '1.302138', 15685 'Test2::IPC::Driver' => '1.302138', 15686 'Test2::IPC::Driver::Files'=> '1.302138', 15687 'Test2::Tools::Tiny' => '1.302138', 15688 'Test2::Util' => '1.302138', 15689 'Test2::Util::ExternalMeta'=> '1.302138', 15690 'Test2::Util::Facets2Legacy'=> '1.302138', 15691 'Test2::Util::HashBase' => '1.302138', 15692 'Test2::Util::Trace' => '1.302138', 15693 'Test::Builder' => '1.302138', 15694 'Test::Builder::Formatter'=> '1.302138', 15695 'Test::Builder::Module' => '1.302138', 15696 'Test::Builder::Tester' => '1.302138', 15697 'Test::Builder::Tester::Color'=> '1.302138', 15698 'Test::Builder::TodoDiag'=> '1.302138', 15699 'Test::More' => '1.302138', 15700 'Test::Simple' => '1.302138', 15701 'Test::Tester' => '1.302138', 15702 'Test::Tester::Capture' => '1.302138', 15703 'Test::Tester::CaptureRunner'=> '1.302138', 15704 'Test::Tester::Delegate'=> '1.302138', 15705 'Test::use::ok' => '1.302138', 15706 'Thread::Queue' => '3.13', 15707 'Time::Local' => '1.28', 15708 'bigint' => '0.50', 15709 'bignum' => '0.50', 15710 'bigrat' => '0.50', 15711 'experimental' => '0.020', 15712 'ok' => '1.302138', 15713 'parent' => '0.237', 15714 'perlfaq' => '5.20180605', 15715 'version' => '0.9924', 15716 'version::regex' => '0.9924', 15717 }, 15718 removed => { 15719 } 15720 }, 15721 5.029002 => { 15722 delta_from => 5.029001, 15723 changed => { 15724 'B::Op_private' => '5.029002', 15725 'Config' => '5.029002', 15726 'Config::Extensions' => '0.03', 15727 'Cwd' => '3.75', 15728 'Data::Dumper' => '2.171', 15729 'Filter::Util::Call' => '1.59', 15730 'HTTP::Tiny' => '0.076', 15731 'Module::CoreList' => '5.20180820', 15732 'Module::CoreList::Utils'=> '5.20180820', 15733 'PerlIO::scalar' => '0.30', 15734 'Storable' => '3.12', 15735 'Test2' => '1.302140', 15736 'Test2::API' => '1.302140', 15737 'Test2::API::Breakage' => '1.302140', 15738 'Test2::API::Context' => '1.302140', 15739 'Test2::API::Instance' => '1.302140', 15740 'Test2::API::Stack' => '1.302140', 15741 'Test2::Event' => '1.302140', 15742 'Test2::Event::Bail' => '1.302140', 15743 'Test2::Event::Diag' => '1.302140', 15744 'Test2::Event::Encoding'=> '1.302140', 15745 'Test2::Event::Exception'=> '1.302140', 15746 'Test2::Event::Fail' => '1.302140', 15747 'Test2::Event::Generic' => '1.302140', 15748 'Test2::Event::Note' => '1.302140', 15749 'Test2::Event::Ok' => '1.302140', 15750 'Test2::Event::Pass' => '1.302140', 15751 'Test2::Event::Plan' => '1.302140', 15752 'Test2::Event::Skip' => '1.302140', 15753 'Test2::Event::Subtest' => '1.302140', 15754 'Test2::Event::TAP::Version'=> '1.302140', 15755 'Test2::Event::V2' => '1.302140', 15756 'Test2::Event::Waiting' => '1.302140', 15757 'Test2::EventFacet' => '1.302140', 15758 'Test2::EventFacet::About'=> '1.302140', 15759 'Test2::EventFacet::Amnesty'=> '1.302140', 15760 'Test2::EventFacet::Assert'=> '1.302140', 15761 'Test2::EventFacet::Control'=> '1.302140', 15762 'Test2::EventFacet::Error'=> '1.302140', 15763 'Test2::EventFacet::Hub'=> '1.302140', 15764 'Test2::EventFacet::Info'=> '1.302140', 15765 'Test2::EventFacet::Meta'=> '1.302140', 15766 'Test2::EventFacet::Parent'=> '1.302140', 15767 'Test2::EventFacet::Plan'=> '1.302140', 15768 'Test2::EventFacet::Render'=> '1.302140', 15769 'Test2::EventFacet::Trace'=> '1.302140', 15770 'Test2::Formatter' => '1.302140', 15771 'Test2::Formatter::TAP' => '1.302140', 15772 'Test2::Hub' => '1.302140', 15773 'Test2::Hub::Interceptor'=> '1.302140', 15774 'Test2::Hub::Interceptor::Terminator'=> '1.302140', 15775 'Test2::Hub::Subtest' => '1.302140', 15776 'Test2::IPC' => '1.302140', 15777 'Test2::IPC::Driver' => '1.302140', 15778 'Test2::IPC::Driver::Files'=> '1.302140', 15779 'Test2::Tools::Tiny' => '1.302140', 15780 'Test2::Util' => '1.302140', 15781 'Test2::Util::ExternalMeta'=> '1.302140', 15782 'Test2::Util::Facets2Legacy'=> '1.302140', 15783 'Test2::Util::HashBase' => '1.302140', 15784 'Test2::Util::Trace' => '1.302140', 15785 'Test::Builder' => '1.302140', 15786 'Test::Builder::Formatter'=> '1.302140', 15787 'Test::Builder::Module' => '1.302140', 15788 'Test::Builder::Tester' => '1.302140', 15789 'Test::Builder::Tester::Color'=> '1.302140', 15790 'Test::Builder::TodoDiag'=> '1.302140', 15791 'Test::More' => '1.302140', 15792 'Test::Simple' => '1.302140', 15793 'Test::Tester' => '1.302140', 15794 'Test::Tester::Capture' => '1.302140', 15795 'Test::Tester::CaptureRunner'=> '1.302140', 15796 'Test::Tester::Delegate'=> '1.302140', 15797 'Test::use::ok' => '1.302140', 15798 'Time::HiRes' => '1.9760', 15799 'Time::Piece' => '1.33', 15800 'Time::Seconds' => '1.33', 15801 'Unicode' => '11.0.0', 15802 'ok' => '1.302140', 15803 'warnings' => '1.43', 15804 }, 15805 removed => { 15806 } 15807 }, 15808 5.029003 => { 15809 delta_from => 5.029002, 15810 changed => { 15811 'Archive::Tar' => '2.32', 15812 'Archive::Tar::Constant'=> '2.32', 15813 'Archive::Tar::File' => '2.32', 15814 'B::Op_private' => '5.029003', 15815 'Config' => '5.029003', 15816 'Data::Dumper' => '2.172', 15817 'Devel::PPPort' => '3.43', 15818 'File::Path' => '2.16', 15819 'File::Spec' => '3.75', 15820 'File::Spec::AmigaOS' => '3.75', 15821 'File::Spec::Cygwin' => '3.75', 15822 'File::Spec::Epoc' => '3.75', 15823 'File::Spec::Functions' => '3.75', 15824 'File::Spec::Mac' => '3.75', 15825 'File::Spec::OS2' => '3.75', 15826 'File::Spec::Unix' => '3.75', 15827 'File::Spec::VMS' => '3.75', 15828 'File::Spec::Win32' => '3.75', 15829 'Module::CoreList' => '5.20180920', 15830 'Module::CoreList::Utils'=> '5.20180920', 15831 'POSIX' => '1.85', 15832 'Storable' => '3.13', 15833 'User::grent' => '1.03', 15834 'perlfaq' => '5.20180915', 15835 }, 15836 removed => { 15837 'Locale::Codes' => 1, 15838 'Locale::Codes::Constants'=> 1, 15839 'Locale::Codes::Country'=> 1, 15840 'Locale::Codes::Country_Codes'=> 1, 15841 'Locale::Codes::Country_Retired'=> 1, 15842 'Locale::Codes::Currency'=> 1, 15843 'Locale::Codes::Currency_Codes'=> 1, 15844 'Locale::Codes::Currency_Retired'=> 1, 15845 'Locale::Codes::LangExt'=> 1, 15846 'Locale::Codes::LangExt_Codes'=> 1, 15847 'Locale::Codes::LangExt_Retired'=> 1, 15848 'Locale::Codes::LangFam'=> 1, 15849 'Locale::Codes::LangFam_Codes'=> 1, 15850 'Locale::Codes::LangFam_Retired'=> 1, 15851 'Locale::Codes::LangVar'=> 1, 15852 'Locale::Codes::LangVar_Codes'=> 1, 15853 'Locale::Codes::LangVar_Retired'=> 1, 15854 'Locale::Codes::Language'=> 1, 15855 'Locale::Codes::Language_Codes'=> 1, 15856 'Locale::Codes::Language_Retired'=> 1, 15857 'Locale::Codes::Script' => 1, 15858 'Locale::Codes::Script_Codes'=> 1, 15859 'Locale::Codes::Script_Retired'=> 1, 15860 'Locale::Country' => 1, 15861 'Locale::Currency' => 1, 15862 'Locale::Language' => 1, 15863 'Locale::Script' => 1, 15864 } 15865 }, 15866 5.029004 => { 15867 delta_from => 5.029003, 15868 changed => { 15869 'App::Cpan' => '1.671', 15870 'B' => '1.75', 15871 'B::Concise' => '1.004', 15872 'B::Deparse' => '1.49', 15873 'B::Op_private' => '5.029004', 15874 'B::Terse' => '1.09', 15875 'CPAN' => '2.21', 15876 'CPAN::Distribution' => '2.21', 15877 'CPAN::Mirrors' => '2.21', 15878 'CPAN::Plugin' => '0.97', 15879 'CPAN::Shell' => '5.5008', 15880 'Config' => '5.029004', 15881 'Devel::Peek' => '1.28', 15882 'File::Copy' => '2.34', 15883 'File::Glob' => '1.32', 15884 'Math::BigFloat::Trace' => '0.51', 15885 'Math::BigInt::Trace' => '0.51', 15886 'Module::CoreList' => '5.20181020', 15887 'Module::CoreList::Utils'=> '5.20181020', 15888 'Unicode::UCD' => '0.72', 15889 'bigint' => '0.51', 15890 'bignum' => '0.51', 15891 'bigrat' => '0.51', 15892 'bytes' => '1.07', 15893 'feature' => '1.54', 15894 'sigtrap' => '1.09', 15895 'vars' => '1.05', 15896 }, 15897 removed => { 15898 'B::Debug' => 1, 15899 'arybase' => 1, 15900 } 15901 }, 15902 5.029005 => { 15903 delta_from => 5.029004, 15904 changed => { 15905 'B::Op_private' => '5.029005', 15906 'Config' => '5.029005', 15907 'Cwd' => '3.76', 15908 'Data::Dumper' => '2.173', 15909 'Errno' => '1.30', 15910 'File::Spec' => '3.76', 15911 'File::Spec::AmigaOS' => '3.76', 15912 'File::Spec::Cygwin' => '3.76', 15913 'File::Spec::Epoc' => '3.76', 15914 'File::Spec::Functions' => '3.76', 15915 'File::Spec::Mac' => '3.76', 15916 'File::Spec::OS2' => '3.76', 15917 'File::Spec::Unix' => '3.76', 15918 'File::Spec::VMS' => '3.76', 15919 'File::Spec::Win32' => '3.76', 15920 'GDBM_File' => '1.18', 15921 'Module::CoreList' => '5.20181120', 15922 'Module::CoreList::Utils'=> '5.20181120', 15923 'NDBM_File' => '1.15', 15924 'ODBM_File' => '1.16', 15925 'SDBM_File' => '1.15', 15926 're' => '0.37', 15927 }, 15928 removed => { 15929 } 15930 }, 15931 5.026003 => { 15932 delta_from => 5.026002, 15933 changed => { 15934 'Archive::Tar' => '2.24_01', 15935 'B::Op_private' => '5.026003', 15936 'Config' => '5.026003', 15937 'Module::CoreList' => '5.20181129_26', 15938 'Module::CoreList::TieHashDelta'=> '5.20181129_26', 15939 'Module::CoreList::Utils'=> '5.20181129_26', 15940 }, 15941 removed => { 15942 } 15943 }, 15944 5.028001 => { 15945 delta_from => 5.028, 15946 changed => { 15947 'B::Op_private' => '5.028001', 15948 'Config' => '5.028001', 15949 'Module::CoreList' => '5.20181129_28', 15950 'Module::CoreList::Utils'=> '5.20181129_28', 15951 }, 15952 removed => { 15953 } 15954 }, 15955 5.029006 => { 15956 delta_from => 5.029005, 15957 changed => { 15958 'B::Op_private' => '5.029006', 15959 'Config' => '5.029006', 15960 'Config::Perl::V' => '0.32', 15961 'ExtUtils::ParseXS' => '3.40', 15962 'ExtUtils::ParseXS::Constants'=> '3.40', 15963 'ExtUtils::ParseXS::CountLines'=> '3.40', 15964 'ExtUtils::ParseXS::Eval'=> '3.40', 15965 'ExtUtils::ParseXS::Utilities'=> '3.40', 15966 'File::Find' => '1.35', 15967 'Module::CoreList' => '5.20181218', 15968 'Module::CoreList::Utils'=> '5.20181218', 15969 'POSIX' => '1.86', 15970 'Storable' => '3.14', 15971 'Test2' => '1.302141', 15972 'Test2::API' => '1.302141', 15973 'Test2::API::Breakage' => '1.302141', 15974 'Test2::API::Context' => '1.302141', 15975 'Test2::API::Instance' => '1.302141', 15976 'Test2::API::Stack' => '1.302141', 15977 'Test2::Event' => '1.302141', 15978 'Test2::Event::Bail' => '1.302141', 15979 'Test2::Event::Diag' => '1.302141', 15980 'Test2::Event::Encoding'=> '1.302141', 15981 'Test2::Event::Exception'=> '1.302141', 15982 'Test2::Event::Fail' => '1.302141', 15983 'Test2::Event::Generic' => '1.302141', 15984 'Test2::Event::Note' => '1.302141', 15985 'Test2::Event::Ok' => '1.302141', 15986 'Test2::Event::Pass' => '1.302141', 15987 'Test2::Event::Plan' => '1.302141', 15988 'Test2::Event::Skip' => '1.302141', 15989 'Test2::Event::Subtest' => '1.302141', 15990 'Test2::Event::TAP::Version'=> '1.302141', 15991 'Test2::Event::V2' => '1.302141', 15992 'Test2::Event::Waiting' => '1.302141', 15993 'Test2::EventFacet' => '1.302141', 15994 'Test2::EventFacet::About'=> '1.302141', 15995 'Test2::EventFacet::Amnesty'=> '1.302141', 15996 'Test2::EventFacet::Assert'=> '1.302141', 15997 'Test2::EventFacet::Control'=> '1.302141', 15998 'Test2::EventFacet::Error'=> '1.302141', 15999 'Test2::EventFacet::Hub'=> '1.302141', 16000 'Test2::EventFacet::Info'=> '1.302141', 16001 'Test2::EventFacet::Meta'=> '1.302141', 16002 'Test2::EventFacet::Parent'=> '1.302141', 16003 'Test2::EventFacet::Plan'=> '1.302141', 16004 'Test2::EventFacet::Render'=> '1.302141', 16005 'Test2::EventFacet::Trace'=> '1.302141', 16006 'Test2::Formatter' => '1.302141', 16007 'Test2::Formatter::TAP' => '1.302141', 16008 'Test2::Hub' => '1.302141', 16009 'Test2::Hub::Interceptor'=> '1.302141', 16010 'Test2::Hub::Interceptor::Terminator'=> '1.302141', 16011 'Test2::Hub::Subtest' => '1.302141', 16012 'Test2::IPC' => '1.302141', 16013 'Test2::IPC::Driver' => '1.302141', 16014 'Test2::IPC::Driver::Files'=> '1.302141', 16015 'Test2::Tools::Tiny' => '1.302141', 16016 'Test2::Util' => '1.302141', 16017 'Test2::Util::ExternalMeta'=> '1.302141', 16018 'Test2::Util::Facets2Legacy'=> '1.302141', 16019 'Test2::Util::HashBase' => '1.302141', 16020 'Test2::Util::Trace' => '1.302141', 16021 'Test::Builder' => '1.302141', 16022 'Test::Builder::Formatter'=> '1.302141', 16023 'Test::Builder::Module' => '1.302141', 16024 'Test::Builder::Tester' => '1.302141', 16025 'Test::Builder::Tester::Color'=> '1.302141', 16026 'Test::Builder::TodoDiag'=> '1.302141', 16027 'Test::More' => '1.302141', 16028 'Test::Simple' => '1.302141', 16029 'Test::Tester' => '1.302141', 16030 'Test::Tester::Capture' => '1.302141', 16031 'Test::Tester::CaptureRunner'=> '1.302141', 16032 'Test::Tester::Delegate'=> '1.302141', 16033 'Test::use::ok' => '1.302141', 16034 'ok' => '1.302141', 16035 'threads::shared' => '1.59', 16036 }, 16037 removed => { 16038 'Storable::Limit' => 1, 16039 } 16040 }, 16041 5.029007 => { 16042 delta_from => 5.029006, 16043 changed => { 16044 'App::Cpan' => '1.672', 16045 'B::Op_private' => '5.029007', 16046 'CPAN' => '2.22', 16047 'CPAN::Distribution' => '2.22', 16048 'CPAN::Plugin::Specfile'=> '0.02', 16049 'Compress::Raw::Bzip2' => '2.084', 16050 'Compress::Raw::Zlib' => '2.084', 16051 'Compress::Zlib' => '2.084', 16052 'Config' => '5.029007', 16053 'Cwd' => '3.77', 16054 'DB_File' => '1.843', 16055 'File::Find' => '1.36', 16056 'File::Spec' => '3.77', 16057 'File::Spec::AmigaOS' => '3.77', 16058 'File::Spec::Cygwin' => '3.77', 16059 'File::Spec::Epoc' => '3.77', 16060 'File::Spec::Functions' => '3.77', 16061 'File::Spec::Mac' => '3.77', 16062 'File::Spec::OS2' => '3.77', 16063 'File::Spec::Unix' => '3.77', 16064 'File::Spec::VMS' => '3.77', 16065 'File::Spec::Win32' => '3.77', 16066 'File::Temp' => '0.2309', 16067 'IO::Compress::Adapter::Bzip2'=> '2.084', 16068 'IO::Compress::Adapter::Deflate'=> '2.084', 16069 'IO::Compress::Adapter::Identity'=> '2.084', 16070 'IO::Compress::Base' => '2.084', 16071 'IO::Compress::Base::Common'=> '2.084', 16072 'IO::Compress::Bzip2' => '2.084', 16073 'IO::Compress::Deflate' => '2.084', 16074 'IO::Compress::Gzip' => '2.084', 16075 'IO::Compress::Gzip::Constants'=> '2.084', 16076 'IO::Compress::RawDeflate'=> '2.084', 16077 'IO::Compress::Zip' => '2.084', 16078 'IO::Compress::Zip::Constants'=> '2.084', 16079 'IO::Compress::Zlib::Constants'=> '2.084', 16080 'IO::Compress::Zlib::Extra'=> '2.084', 16081 'IO::Uncompress::Adapter::Bunzip2'=> '2.084', 16082 'IO::Uncompress::Adapter::Identity'=> '2.084', 16083 'IO::Uncompress::Adapter::Inflate'=> '2.084', 16084 'IO::Uncompress::AnyInflate'=> '2.084', 16085 'IO::Uncompress::AnyUncompress'=> '2.084', 16086 'IO::Uncompress::Base' => '2.084', 16087 'IO::Uncompress::Bunzip2'=> '2.084', 16088 'IO::Uncompress::Gunzip'=> '2.084', 16089 'IO::Uncompress::Inflate'=> '2.084', 16090 'IO::Uncompress::RawInflate'=> '2.084', 16091 'IO::Uncompress::Unzip' => '2.084', 16092 'Math::BigFloat' => '1.999816', 16093 'Math::BigInt' => '1.999816', 16094 'Math::BigInt::Calc' => '1.999816', 16095 'Math::BigInt::FastCalc'=> '0.5008', 16096 'Math::BigInt::Lib' => '1.999816', 16097 'Module::CoreList' => '5.20190120', 16098 'Module::CoreList::Utils'=> '5.20190120', 16099 'Test2' => '1.302160', 16100 'Test2::API' => '1.302160', 16101 'Test2::API::Breakage' => '1.302160', 16102 'Test2::API::Context' => '1.302160', 16103 'Test2::API::Instance' => '1.302160', 16104 'Test2::API::Stack' => '1.302160', 16105 'Test2::Event' => '1.302160', 16106 'Test2::Event::Bail' => '1.302160', 16107 'Test2::Event::Diag' => '1.302160', 16108 'Test2::Event::Encoding'=> '1.302160', 16109 'Test2::Event::Exception'=> '1.302160', 16110 'Test2::Event::Fail' => '1.302160', 16111 'Test2::Event::Generic' => '1.302160', 16112 'Test2::Event::Note' => '1.302160', 16113 'Test2::Event::Ok' => '1.302160', 16114 'Test2::Event::Pass' => '1.302160', 16115 'Test2::Event::Plan' => '1.302160', 16116 'Test2::Event::Skip' => '1.302160', 16117 'Test2::Event::Subtest' => '1.302160', 16118 'Test2::Event::TAP::Version'=> '1.302160', 16119 'Test2::Event::V2' => '1.302160', 16120 'Test2::Event::Waiting' => '1.302160', 16121 'Test2::EventFacet' => '1.302160', 16122 'Test2::EventFacet::About'=> '1.302160', 16123 'Test2::EventFacet::Amnesty'=> '1.302160', 16124 'Test2::EventFacet::Assert'=> '1.302160', 16125 'Test2::EventFacet::Control'=> '1.302160', 16126 'Test2::EventFacet::Error'=> '1.302160', 16127 'Test2::EventFacet::Hub'=> '1.302160', 16128 'Test2::EventFacet::Info'=> '1.302160', 16129 'Test2::EventFacet::Info::Table'=> undef, 16130 'Test2::EventFacet::Meta'=> '1.302160', 16131 'Test2::EventFacet::Parent'=> '1.302160', 16132 'Test2::EventFacet::Plan'=> '1.302160', 16133 'Test2::EventFacet::Render'=> '1.302160', 16134 'Test2::EventFacet::Trace'=> '1.302160', 16135 'Test2::Formatter' => '1.302160', 16136 'Test2::Formatter::TAP' => '1.302160', 16137 'Test2::Hub' => '1.302160', 16138 'Test2::Hub::Interceptor'=> '1.302160', 16139 'Test2::Hub::Interceptor::Terminator'=> '1.302160', 16140 'Test2::Hub::Subtest' => '1.302160', 16141 'Test2::IPC' => '1.302160', 16142 'Test2::IPC::Driver' => '1.302160', 16143 'Test2::IPC::Driver::Files'=> '1.302160', 16144 'Test2::Tools::Tiny' => '1.302160', 16145 'Test2::Util' => '1.302160', 16146 'Test2::Util::ExternalMeta'=> '1.302160', 16147 'Test2::Util::Facets2Legacy'=> '1.302160', 16148 'Test2::Util::HashBase' => '1.302160', 16149 'Test2::Util::Trace' => '1.302160', 16150 'Test::Builder' => '1.302160', 16151 'Test::Builder::Formatter'=> '1.302160', 16152 'Test::Builder::Module' => '1.302160', 16153 'Test::Builder::Tester' => '1.302160', 16154 'Test::Builder::Tester::Color'=> '1.302160', 16155 'Test::Builder::TodoDiag'=> '1.302160', 16156 'Test::More' => '1.302160', 16157 'Test::Simple' => '1.302160', 16158 'Test::Tester' => '1.302160', 16159 'Test::Tester::Capture' => '1.302160', 16160 'Test::Tester::CaptureRunner'=> '1.302160', 16161 'Test::Tester::Delegate'=> '1.302160', 16162 'Test::use::ok' => '1.302160', 16163 'Unicode::Collate' => '1.27', 16164 'Unicode::Collate::CJK::Big5'=> '1.27', 16165 'Unicode::Collate::CJK::GB2312'=> '1.27', 16166 'Unicode::Collate::CJK::JISX0208'=> '1.27', 16167 'Unicode::Collate::CJK::Korean'=> '1.27', 16168 'Unicode::Collate::CJK::Pinyin'=> '1.27', 16169 'Unicode::Collate::CJK::Stroke'=> '1.27', 16170 'Unicode::Collate::CJK::Zhuyin'=> '1.27', 16171 'Unicode::Collate::Locale'=> '1.27', 16172 'lib' => '0.65', 16173 'ok' => '1.302160', 16174 }, 16175 removed => { 16176 'Math::BigInt::CalcEmu' => 1, 16177 } 16178 }, 16179 5.029008 => { 16180 delta_from => 5.029007, 16181 changed => { 16182 'B' => '1.76', 16183 'B::Op_private' => '5.029008', 16184 'Config' => '5.029008', 16185 'Devel::PPPort' => '3.44', 16186 'Encode' => '3.00', 16187 'Encode::Unicode' => '2.18', 16188 'ExtUtils::Miniperl' => '1.09', 16189 'IO' => '1.40', 16190 'IO::Dir' => '1.40', 16191 'IO::File' => '1.40', 16192 'IO::Handle' => '1.40', 16193 'IO::Pipe' => '1.40', 16194 'IO::Poll' => '1.40', 16195 'IO::Seekable' => '1.40', 16196 'IO::Select' => '1.40', 16197 'IO::Socket' => '1.40', 16198 'IO::Socket::INET' => '1.40', 16199 'IO::Socket::UNIX' => '1.40', 16200 'JSON::PP' => '4.00', 16201 'JSON::PP::Boolean' => '4.00', 16202 'Module::CoreList' => '5.20190220', 16203 'Module::CoreList::Utils'=> '5.20190220', 16204 'Module::Load' => '0.34', 16205 'Net::Ping' => '2.71', 16206 'POSIX' => '1.87', 16207 'Test2' => '1.302162', 16208 'Test2::API' => '1.302162', 16209 'Test2::API::Breakage' => '1.302162', 16210 'Test2::API::Context' => '1.302162', 16211 'Test2::API::Instance' => '1.302162', 16212 'Test2::API::Stack' => '1.302162', 16213 'Test2::Event' => '1.302162', 16214 'Test2::Event::Bail' => '1.302162', 16215 'Test2::Event::Diag' => '1.302162', 16216 'Test2::Event::Encoding'=> '1.302162', 16217 'Test2::Event::Exception'=> '1.302162', 16218 'Test2::Event::Fail' => '1.302162', 16219 'Test2::Event::Generic' => '1.302162', 16220 'Test2::Event::Note' => '1.302162', 16221 'Test2::Event::Ok' => '1.302162', 16222 'Test2::Event::Pass' => '1.302162', 16223 'Test2::Event::Plan' => '1.302162', 16224 'Test2::Event::Skip' => '1.302162', 16225 'Test2::Event::Subtest' => '1.302162', 16226 'Test2::Event::TAP::Version'=> '1.302162', 16227 'Test2::Event::V2' => '1.302162', 16228 'Test2::Event::Waiting' => '1.302162', 16229 'Test2::EventFacet' => '1.302162', 16230 'Test2::EventFacet::About'=> '1.302162', 16231 'Test2::EventFacet::Amnesty'=> '1.302162', 16232 'Test2::EventFacet::Assert'=> '1.302162', 16233 'Test2::EventFacet::Control'=> '1.302162', 16234 'Test2::EventFacet::Error'=> '1.302162', 16235 'Test2::EventFacet::Hub'=> '1.302162', 16236 'Test2::EventFacet::Info'=> '1.302162', 16237 'Test2::EventFacet::Meta'=> '1.302162', 16238 'Test2::EventFacet::Parent'=> '1.302162', 16239 'Test2::EventFacet::Plan'=> '1.302162', 16240 'Test2::EventFacet::Render'=> '1.302162', 16241 'Test2::EventFacet::Trace'=> '1.302162', 16242 'Test2::Formatter' => '1.302162', 16243 'Test2::Formatter::TAP' => '1.302162', 16244 'Test2::Hub' => '1.302162', 16245 'Test2::Hub::Interceptor'=> '1.302162', 16246 'Test2::Hub::Interceptor::Terminator'=> '1.302162', 16247 'Test2::Hub::Subtest' => '1.302162', 16248 'Test2::IPC' => '1.302162', 16249 'Test2::IPC::Driver' => '1.302162', 16250 'Test2::IPC::Driver::Files'=> '1.302162', 16251 'Test2::Tools::Tiny' => '1.302162', 16252 'Test2::Util' => '1.302162', 16253 'Test2::Util::ExternalMeta'=> '1.302162', 16254 'Test2::Util::Facets2Legacy'=> '1.302162', 16255 'Test2::Util::HashBase' => '1.302162', 16256 'Test2::Util::Trace' => '1.302162', 16257 'Test::Builder' => '1.302162', 16258 'Test::Builder::Formatter'=> '1.302162', 16259 'Test::Builder::Module' => '1.302162', 16260 'Test::Builder::Tester' => '1.302162', 16261 'Test::Builder::Tester::Color'=> '1.302162', 16262 'Test::Builder::TodoDiag'=> '1.302162', 16263 'Test::More' => '1.302162', 16264 'Test::Simple' => '1.302162', 16265 'Test::Tester' => '1.302162', 16266 'Test::Tester::Capture' => '1.302162', 16267 'Test::Tester::CaptureRunner'=> '1.302162', 16268 'Test::Tester::Delegate'=> '1.302162', 16269 'Test::use::ok' => '1.302162', 16270 'XS::APItest' => '1.00', 16271 'deprecate' => '0.04', 16272 'ok' => '1.302162', 16273 'perlfaq' => '5.20190126', 16274 }, 16275 removed => { 16276 } 16277 }, 16278 5.029009 => { 16279 delta_from => 5.029008, 16280 changed => { 16281 'B::Op_private' => '5.029009', 16282 'Config' => '5.029009', 16283 'Devel::PPPort' => '3.45', 16284 'Encode' => '3.01', 16285 'ExtUtils::Manifest' => '1.72', 16286 'JSON::PP' => '4.02', 16287 'JSON::PP::Boolean' => '4.02', 16288 'Module::CoreList' => '5.20190320', 16289 'Module::CoreList::Utils'=> '5.20190320', 16290 'PerlIO::encoding' => '0.27', 16291 'Unicode' => '12.0.0', 16292 'threads::shared' => '1.60', 16293 'utf8' => '1.22', 16294 'warnings' => '1.44', 16295 }, 16296 removed => { 16297 } 16298 }, 16299 5.028002 => { 16300 delta_from => 5.028001, 16301 changed => { 16302 'B::Op_private' => '5.028002', 16303 'Config' => '5.028002', 16304 'Module::CoreList' => '5.20190419', 16305 'Module::CoreList::Utils'=> '5.20190419', 16306 'PerlIO::scalar' => '0.30', 16307 'Storable' => '3.08_01', 16308 }, 16309 removed => { 16310 } 16311 }, 16312 5.029010 => { 16313 delta_from => 5.029009, 16314 changed => { 16315 'B::Op_private' => '5.029010', 16316 'Config' => '5.02901', 16317 'Cwd' => '3.78', 16318 'Data::Dumper' => '2.174', 16319 'ExtUtils::CBuilder' => '0.280231', 16320 'ExtUtils::CBuilder::Base'=> '0.280231', 16321 'ExtUtils::CBuilder::Platform::Unix'=> '0.280231', 16322 'ExtUtils::CBuilder::Platform::VMS'=> '0.280231', 16323 'ExtUtils::CBuilder::Platform::Windows'=> '0.280231', 16324 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280231', 16325 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280231', 16326 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280231', 16327 'ExtUtils::CBuilder::Platform::aix'=> '0.280231', 16328 'ExtUtils::CBuilder::Platform::android'=> '0.280231', 16329 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280231', 16330 'ExtUtils::CBuilder::Platform::darwin'=> '0.280231', 16331 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280231', 16332 'ExtUtils::CBuilder::Platform::os2'=> '0.280231', 16333 'File::Spec' => '3.78', 16334 'File::Spec::AmigaOS' => '3.78', 16335 'File::Spec::Cygwin' => '3.78', 16336 'File::Spec::Epoc' => '3.78', 16337 'File::Spec::Functions' => '3.78', 16338 'File::Spec::Mac' => '3.78', 16339 'File::Spec::OS2' => '3.78', 16340 'File::Spec::Unix' => '3.78', 16341 'File::Spec::VMS' => '3.78', 16342 'File::Spec::Win32' => '3.78', 16343 'I18N::Langinfo' => '0.18', 16344 'Module::CoreList' => '5.20190420', 16345 'Module::CoreList::Utils'=> '5.20190420', 16346 'Module::Metadata' => '1.000036', 16347 'POSIX' => '1.88', 16348 'Storable' => '3.15', 16349 'Unicode' => '12.1.0', 16350 }, 16351 removed => { 16352 } 16353 }, 16354 5.030000 => { 16355 delta_from => 5.02901, 16356 changed => { 16357 'B::Op_private' => '5.030000', 16358 'Config' => '5.03', 16359 'Devel::PPPort' => '3.52', 16360 'Module::CoreList' => '5.20190522', 16361 'Module::CoreList::Utils'=> '5.20190522', 16362 'XS::Typemap' => '0.17', 16363 }, 16364 removed => { 16365 } 16366 }, 16367 5.031000 => { 16368 delta_from => 5.03, 16369 changed => { 16370 'B::Op_private' => '5.031000', 16371 'Config' => '5.031', 16372 'Module::CoreList' => '5.20190524', 16373 'Module::CoreList::Utils'=> '5.20190524', 16374 'Pod::Simple' => '3.36', 16375 'Pod::Simple::BlackBox' => '3.36', 16376 'Pod::Simple::Checker' => '3.36', 16377 'Pod::Simple::Debug' => '3.36', 16378 'Pod::Simple::DumpAsText'=> '3.36', 16379 'Pod::Simple::DumpAsXML'=> '3.36', 16380 'Pod::Simple::HTML' => '3.36', 16381 'Pod::Simple::HTMLBatch'=> '3.36', 16382 'Pod::Simple::JustPod' => undef, 16383 'Pod::Simple::LinkSection'=> '3.36', 16384 'Pod::Simple::Methody' => '3.36', 16385 'Pod::Simple::Progress' => '3.36', 16386 'Pod::Simple::PullParser'=> '3.36', 16387 'Pod::Simple::PullParserEndToken'=> '3.36', 16388 'Pod::Simple::PullParserStartToken'=> '3.36', 16389 'Pod::Simple::PullParserTextToken'=> '3.36', 16390 'Pod::Simple::PullParserToken'=> '3.36', 16391 'Pod::Simple::RTF' => '3.36', 16392 'Pod::Simple::Search' => '3.36', 16393 'Pod::Simple::SimpleTree'=> '3.36', 16394 'Pod::Simple::Text' => '3.36', 16395 'Pod::Simple::TextContent'=> '3.36', 16396 'Pod::Simple::TiedOutFH'=> '3.36', 16397 'Pod::Simple::Transcode'=> '3.36', 16398 'Pod::Simple::TranscodeDumb'=> '3.36', 16399 'Pod::Simple::TranscodeSmart'=> '3.36', 16400 'Pod::Simple::XHTML' => '3.36', 16401 'Pod::Simple::XMLOutStream'=> '3.36', 16402 'Socket' => '2.029', 16403 'feature' => '1.55', 16404 }, 16405 removed => { 16406 } 16407 }, 16408 5.031001 => { 16409 delta_from => 5.031000, 16410 changed => { 16411 'App::Cpan' => '1.675', 16412 'B::Op_private' => '5.031001', 16413 'CPAN' => '2.27', 16414 'CPAN::Bundle' => '5.5005', 16415 'CPAN::Distribution' => '2.27', 16416 'CPAN::FTP' => '5.5012', 16417 'CPAN::FirstTime' => '5.5314', 16418 'CPAN::HandleConfig' => '5.5011', 16419 'CPAN::Mirrors' => '2.27', 16420 'CPAN::Queue' => '5.5003', 16421 'CPAN::Shell' => '5.5009', 16422 'CPAN::Tarzip' => '5.5013', 16423 'Class::Struct' => '0.66', 16424 'Compress::Raw::Bzip2' => '2.086', 16425 'Compress::Raw::Zlib' => '2.086', 16426 'Compress::Zlib' => '2.086', 16427 'Config' => '5.031001', 16428 'DB_File' => '1.852', 16429 'Devel::PPPort' => '3.53', 16430 'ExtUtils::CBuilder' => '0.280232', 16431 'ExtUtils::Command' => '7.36', 16432 'ExtUtils::Command::MM' => '7.36', 16433 'ExtUtils::Liblist' => '7.36', 16434 'ExtUtils::Liblist::Kid'=> '7.36', 16435 'ExtUtils::MM' => '7.36', 16436 'ExtUtils::MM_AIX' => '7.36', 16437 'ExtUtils::MM_Any' => '7.36', 16438 'ExtUtils::MM_BeOS' => '7.36', 16439 'ExtUtils::MM_Cygwin' => '7.36', 16440 'ExtUtils::MM_DOS' => '7.36', 16441 'ExtUtils::MM_Darwin' => '7.36', 16442 'ExtUtils::MM_MacOS' => '7.36', 16443 'ExtUtils::MM_NW5' => '7.36', 16444 'ExtUtils::MM_OS2' => '7.36', 16445 'ExtUtils::MM_QNX' => '7.36', 16446 'ExtUtils::MM_UWIN' => '7.36', 16447 'ExtUtils::MM_Unix' => '7.36', 16448 'ExtUtils::MM_VMS' => '7.36', 16449 'ExtUtils::MM_VOS' => '7.36', 16450 'ExtUtils::MM_Win32' => '7.36', 16451 'ExtUtils::MM_Win95' => '7.36', 16452 'ExtUtils::MY' => '7.36', 16453 'ExtUtils::MakeMaker' => '7.36', 16454 'ExtUtils::MakeMaker::Config'=> '7.36', 16455 'ExtUtils::MakeMaker::Locale'=> '7.36', 16456 'ExtUtils::MakeMaker::version'=> '7.36', 16457 'ExtUtils::MakeMaker::version::regex'=> '7.36', 16458 'ExtUtils::Mkbootstrap' => '7.36', 16459 'ExtUtils::Mksymlists' => '7.36', 16460 'ExtUtils::testlib' => '7.36', 16461 'File::Spec::Win32' => '3.79', 16462 'I18N::LangTags' => '0.44', 16463 'IO' => '1.41', 16464 'IO::Compress::Adapter::Bzip2'=> '2.086', 16465 'IO::Compress::Adapter::Deflate'=> '2.086', 16466 'IO::Compress::Adapter::Identity'=> '2.086', 16467 'IO::Compress::Base' => '2.086', 16468 'IO::Compress::Base::Common'=> '2.086', 16469 'IO::Compress::Bzip2' => '2.086', 16470 'IO::Compress::Deflate' => '2.086', 16471 'IO::Compress::Gzip' => '2.086', 16472 'IO::Compress::Gzip::Constants'=> '2.086', 16473 'IO::Compress::RawDeflate'=> '2.086', 16474 'IO::Compress::Zip' => '2.086', 16475 'IO::Compress::Zip::Constants'=> '2.086', 16476 'IO::Compress::Zlib::Constants'=> '2.086', 16477 'IO::Compress::Zlib::Extra'=> '2.086', 16478 'IO::Dir' => '1.41', 16479 'IO::File' => '1.41', 16480 'IO::Handle' => '1.41', 16481 'IO::Pipe' => '1.41', 16482 'IO::Poll' => '1.41', 16483 'IO::Seekable' => '1.41', 16484 'IO::Select' => '1.41', 16485 'IO::Socket' => '1.41', 16486 'IO::Socket::INET' => '1.41', 16487 'IO::Socket::UNIX' => '1.41', 16488 'IO::Uncompress::Adapter::Bunzip2'=> '2.086', 16489 'IO::Uncompress::Adapter::Identity'=> '2.086', 16490 'IO::Uncompress::Adapter::Inflate'=> '2.086', 16491 'IO::Uncompress::AnyInflate'=> '2.086', 16492 'IO::Uncompress::AnyUncompress'=> '2.086', 16493 'IO::Uncompress::Base' => '2.086', 16494 'IO::Uncompress::Bunzip2'=> '2.086', 16495 'IO::Uncompress::Gunzip'=> '2.086', 16496 'IO::Uncompress::Inflate'=> '2.086', 16497 'IO::Uncompress::RawInflate'=> '2.086', 16498 'IO::Uncompress::Unzip' => '2.086', 16499 'Module::CoreList' => '5.20190620', 16500 'Module::CoreList::Utils'=> '5.20190620', 16501 'POSIX' => '1.89', 16502 'Pod::Man' => '4.12', 16503 'Pod::ParseLink' => '4.12', 16504 'Pod::Simple' => '3.38', 16505 'Pod::Simple::BlackBox' => '3.38', 16506 'Pod::Simple::Checker' => '3.38', 16507 'Pod::Simple::Debug' => '3.38', 16508 'Pod::Simple::DumpAsText'=> '3.38', 16509 'Pod::Simple::DumpAsXML'=> '3.38', 16510 'Pod::Simple::HTML' => '3.38', 16511 'Pod::Simple::HTMLBatch'=> '3.38', 16512 'Pod::Simple::LinkSection'=> '3.38', 16513 'Pod::Simple::Methody' => '3.38', 16514 'Pod::Simple::Progress' => '3.38', 16515 'Pod::Simple::PullParser'=> '3.38', 16516 'Pod::Simple::PullParserEndToken'=> '3.38', 16517 'Pod::Simple::PullParserStartToken'=> '3.38', 16518 'Pod::Simple::PullParserTextToken'=> '3.38', 16519 'Pod::Simple::PullParserToken'=> '3.38', 16520 'Pod::Simple::RTF' => '3.38', 16521 'Pod::Simple::Search' => '3.38', 16522 'Pod::Simple::SimpleTree'=> '3.38', 16523 'Pod::Simple::Text' => '3.38', 16524 'Pod::Simple::TextContent'=> '3.38', 16525 'Pod::Simple::TiedOutFH'=> '3.38', 16526 'Pod::Simple::Transcode'=> '3.38', 16527 'Pod::Simple::TranscodeDumb'=> '3.38', 16528 'Pod::Simple::TranscodeSmart'=> '3.38', 16529 'Pod::Simple::XHTML' => '3.38', 16530 'Pod::Simple::XMLOutStream'=> '3.38', 16531 'Pod::Text' => '4.12', 16532 'Pod::Text::Color' => '4.12', 16533 'Pod::Text::Overstrike' => '4.12', 16534 'Pod::Text::Termcap' => '4.12', 16535 'SelfLoader' => '1.26', 16536 'Storable' => '3.16', 16537 'Sys::Hostname' => '1.23', 16538 'Test2' => '1.302164', 16539 'Test2::API' => '1.302164', 16540 'Test2::API::Breakage' => '1.302164', 16541 'Test2::API::Context' => '1.302164', 16542 'Test2::API::Instance' => '1.302164', 16543 'Test2::API::Stack' => '1.302164', 16544 'Test2::Event' => '1.302164', 16545 'Test2::Event::Bail' => '1.302164', 16546 'Test2::Event::Diag' => '1.302164', 16547 'Test2::Event::Encoding'=> '1.302164', 16548 'Test2::Event::Exception'=> '1.302164', 16549 'Test2::Event::Fail' => '1.302164', 16550 'Test2::Event::Generic' => '1.302164', 16551 'Test2::Event::Note' => '1.302164', 16552 'Test2::Event::Ok' => '1.302164', 16553 'Test2::Event::Pass' => '1.302164', 16554 'Test2::Event::Plan' => '1.302164', 16555 'Test2::Event::Skip' => '1.302164', 16556 'Test2::Event::Subtest' => '1.302164', 16557 'Test2::Event::TAP::Version'=> '1.302164', 16558 'Test2::Event::V2' => '1.302164', 16559 'Test2::Event::Waiting' => '1.302164', 16560 'Test2::EventFacet' => '1.302164', 16561 'Test2::EventFacet::About'=> '1.302164', 16562 'Test2::EventFacet::Amnesty'=> '1.302164', 16563 'Test2::EventFacet::Assert'=> '1.302164', 16564 'Test2::EventFacet::Control'=> '1.302164', 16565 'Test2::EventFacet::Error'=> '1.302164', 16566 'Test2::EventFacet::Hub'=> '1.302164', 16567 'Test2::EventFacet::Info'=> '1.302164', 16568 'Test2::EventFacet::Info::Table'=> '1.302164', 16569 'Test2::EventFacet::Meta'=> '1.302164', 16570 'Test2::EventFacet::Parent'=> '1.302164', 16571 'Test2::EventFacet::Plan'=> '1.302164', 16572 'Test2::EventFacet::Render'=> '1.302164', 16573 'Test2::EventFacet::Trace'=> '1.302164', 16574 'Test2::Formatter' => '1.302164', 16575 'Test2::Formatter::TAP' => '1.302164', 16576 'Test2::Hub' => '1.302164', 16577 'Test2::Hub::Interceptor'=> '1.302164', 16578 'Test2::Hub::Interceptor::Terminator'=> '1.302164', 16579 'Test2::Hub::Subtest' => '1.302164', 16580 'Test2::IPC' => '1.302164', 16581 'Test2::IPC::Driver' => '1.302164', 16582 'Test2::IPC::Driver::Files'=> '1.302164', 16583 'Test2::Tools::Tiny' => '1.302164', 16584 'Test2::Util' => '1.302164', 16585 'Test2::Util::ExternalMeta'=> '1.302164', 16586 'Test2::Util::Facets2Legacy'=> '1.302164', 16587 'Test2::Util::HashBase' => '1.302164', 16588 'Test2::Util::Trace' => '1.302164', 16589 'Test::Builder' => '1.302164', 16590 'Test::Builder::Formatter'=> '1.302164', 16591 'Test::Builder::Module' => '1.302164', 16592 'Test::Builder::Tester' => '1.302164', 16593 'Test::Builder::Tester::Color'=> '1.302164', 16594 'Test::Builder::TodoDiag'=> '1.302164', 16595 'Test::More' => '1.302164', 16596 'Test::Simple' => '1.302164', 16597 'Test::Tester' => '1.302164', 16598 'Test::Tester::Capture' => '1.302164', 16599 'Test::Tester::CaptureRunner'=> '1.302164', 16600 'Test::Tester::Delegate'=> '1.302164', 16601 'Test::use::ok' => '1.302164', 16602 'Tie::File' => '1.03', 16603 'Tie::Hash::NamedCapture'=> '0.11', 16604 'Time::HiRes' => '1.9761', 16605 'Unicode::Normalize' => '1.27', 16606 'Unicode::UCD' => '0.73', 16607 'XS::APItest' => '1.01', 16608 'ok' => '1.302164', 16609 'overload' => '1.31', 16610 'warnings' => '1.45', 16611 }, 16612 removed => { 16613 'Pod::Find' => 1, 16614 'Pod::InputObjects' => 1, 16615 'Pod::ParseUtils' => 1, 16616 'Pod::Parser' => 1, 16617 'Pod::PlainText' => 1, 16618 'Pod::Select' => 1, 16619 } 16620 }, 16621 5.031002 => { 16622 delta_from => 5.031001, 16623 changed => { 16624 'B::Op_private' => '5.031002', 16625 'Config' => '5.031002', 16626 'Devel::PPPort' => '3.54', 16627 'Exporter' => '5.74', 16628 'Exporter::Heavy' => '5.74', 16629 'IPC::Cmd' => '1.04', 16630 'JSON::PP' => '4.04', 16631 'JSON::PP::Boolean' => '4.04', 16632 'Module::CoreList' => '5.20190720', 16633 'Module::CoreList::Utils'=> '5.20190720', 16634 'Opcode' => '1.44', 16635 'PerlIO::encoding' => '0.28', 16636 'Pod::Simple' => '3.39', 16637 'Pod::Simple::BlackBox' => '3.39', 16638 'Pod::Simple::Checker' => '3.39', 16639 'Pod::Simple::Debug' => '3.39', 16640 'Pod::Simple::DumpAsText'=> '3.39', 16641 'Pod::Simple::DumpAsXML'=> '3.39', 16642 'Pod::Simple::HTML' => '3.39', 16643 'Pod::Simple::HTMLBatch'=> '3.39', 16644 'Pod::Simple::LinkSection'=> '3.39', 16645 'Pod::Simple::Methody' => '3.39', 16646 'Pod::Simple::Progress' => '3.39', 16647 'Pod::Simple::PullParser'=> '3.39', 16648 'Pod::Simple::PullParserEndToken'=> '3.39', 16649 'Pod::Simple::PullParserStartToken'=> '3.39', 16650 'Pod::Simple::PullParserTextToken'=> '3.39', 16651 'Pod::Simple::PullParserToken'=> '3.39', 16652 'Pod::Simple::RTF' => '3.39', 16653 'Pod::Simple::Search' => '3.39', 16654 'Pod::Simple::SimpleTree'=> '3.39', 16655 'Pod::Simple::Text' => '3.39', 16656 'Pod::Simple::TextContent'=> '3.39', 16657 'Pod::Simple::TiedOutFH'=> '3.39', 16658 'Pod::Simple::Transcode'=> '3.39', 16659 'Pod::Simple::TranscodeDumb'=> '3.39', 16660 'Pod::Simple::TranscodeSmart'=> '3.39', 16661 'Pod::Simple::XHTML' => '3.39', 16662 'Pod::Simple::XMLOutStream'=> '3.39', 16663 'threads::shared' => '1.61', 16664 }, 16665 removed => { 16666 } 16667 }, 16668 5.031003 => { 16669 delta_from => 5.031002, 16670 changed => { 16671 'B::Op_private' => '5.031003', 16672 'Compress::Raw::Bzip2' => '2.087', 16673 'Compress::Raw::Zlib' => '2.087', 16674 'Compress::Zlib' => '2.087', 16675 'Config' => '5.031003', 16676 'Devel::PPPort' => '3.55', 16677 'File::Find' => '1.37', 16678 'Getopt::Long' => '2.51', 16679 'I18N::LangTags::Detect'=> '1.08', 16680 'IO::Compress::Adapter::Bzip2'=> '2.087', 16681 'IO::Compress::Adapter::Deflate'=> '2.087', 16682 'IO::Compress::Adapter::Identity'=> '2.087', 16683 'IO::Compress::Base' => '2.087', 16684 'IO::Compress::Base::Common'=> '2.087', 16685 'IO::Compress::Bzip2' => '2.087', 16686 'IO::Compress::Deflate' => '2.087', 16687 'IO::Compress::Gzip' => '2.087', 16688 'IO::Compress::Gzip::Constants'=> '2.087', 16689 'IO::Compress::RawDeflate'=> '2.087', 16690 'IO::Compress::Zip' => '2.087', 16691 'IO::Compress::Zip::Constants'=> '2.087', 16692 'IO::Compress::Zlib::Constants'=> '2.087', 16693 'IO::Compress::Zlib::Extra'=> '2.087', 16694 'IO::Uncompress::Adapter::Bunzip2'=> '2.087', 16695 'IO::Uncompress::Adapter::Identity'=> '2.087', 16696 'IO::Uncompress::Adapter::Inflate'=> '2.087', 16697 'IO::Uncompress::AnyInflate'=> '2.087', 16698 'IO::Uncompress::AnyUncompress'=> '2.087', 16699 'IO::Uncompress::Base' => '2.087', 16700 'IO::Uncompress::Bunzip2'=> '2.087', 16701 'IO::Uncompress::Gunzip'=> '2.087', 16702 'IO::Uncompress::Inflate'=> '2.087', 16703 'IO::Uncompress::RawInflate'=> '2.087', 16704 'IO::Uncompress::Unzip' => '2.087', 16705 'Module::CoreList' => '5.20190820', 16706 'Module::CoreList::Utils'=> '5.20190820', 16707 'PerlIO::via' => '0.18', 16708 'Storable' => '3.17', 16709 'Test2' => '1.302166', 16710 'Test2::API' => '1.302166', 16711 'Test2::API::Breakage' => '1.302166', 16712 'Test2::API::Context' => '1.302166', 16713 'Test2::API::Instance' => '1.302166', 16714 'Test2::API::Stack' => '1.302166', 16715 'Test2::Event' => '1.302166', 16716 'Test2::Event::Bail' => '1.302166', 16717 'Test2::Event::Diag' => '1.302166', 16718 'Test2::Event::Encoding'=> '1.302166', 16719 'Test2::Event::Exception'=> '1.302166', 16720 'Test2::Event::Fail' => '1.302166', 16721 'Test2::Event::Generic' => '1.302166', 16722 'Test2::Event::Note' => '1.302166', 16723 'Test2::Event::Ok' => '1.302166', 16724 'Test2::Event::Pass' => '1.302166', 16725 'Test2::Event::Plan' => '1.302166', 16726 'Test2::Event::Skip' => '1.302166', 16727 'Test2::Event::Subtest' => '1.302166', 16728 'Test2::Event::TAP::Version'=> '1.302166', 16729 'Test2::Event::V2' => '1.302166', 16730 'Test2::Event::Waiting' => '1.302166', 16731 'Test2::EventFacet' => '1.302166', 16732 'Test2::EventFacet::About'=> '1.302166', 16733 'Test2::EventFacet::Amnesty'=> '1.302166', 16734 'Test2::EventFacet::Assert'=> '1.302166', 16735 'Test2::EventFacet::Control'=> '1.302166', 16736 'Test2::EventFacet::Error'=> '1.302166', 16737 'Test2::EventFacet::Hub'=> '1.302166', 16738 'Test2::EventFacet::Info'=> '1.302166', 16739 'Test2::EventFacet::Info::Table'=> '1.302166', 16740 'Test2::EventFacet::Meta'=> '1.302166', 16741 'Test2::EventFacet::Parent'=> '1.302166', 16742 'Test2::EventFacet::Plan'=> '1.302166', 16743 'Test2::EventFacet::Render'=> '1.302166', 16744 'Test2::EventFacet::Trace'=> '1.302166', 16745 'Test2::Formatter' => '1.302166', 16746 'Test2::Formatter::TAP' => '1.302166', 16747 'Test2::Hub' => '1.302166', 16748 'Test2::Hub::Interceptor'=> '1.302166', 16749 'Test2::Hub::Interceptor::Terminator'=> '1.302166', 16750 'Test2::Hub::Subtest' => '1.302166', 16751 'Test2::IPC' => '1.302166', 16752 'Test2::IPC::Driver' => '1.302166', 16753 'Test2::IPC::Driver::Files'=> '1.302166', 16754 'Test2::Tools::Tiny' => '1.302166', 16755 'Test2::Util' => '1.302166', 16756 'Test2::Util::ExternalMeta'=> '1.302166', 16757 'Test2::Util::Facets2Legacy'=> '1.302166', 16758 'Test2::Util::HashBase' => '1.302166', 16759 'Test2::Util::Trace' => '1.302166', 16760 'Test::Builder' => '1.302166', 16761 'Test::Builder::Formatter'=> '1.302166', 16762 'Test::Builder::Module' => '1.302166', 16763 'Test::Builder::Tester' => '1.302166', 16764 'Test::Builder::Tester::Color'=> '1.302166', 16765 'Test::Builder::TodoDiag'=> '1.302166', 16766 'Test::More' => '1.302166', 16767 'Test::Simple' => '1.302166', 16768 'Test::Tester' => '1.302166', 16769 'Test::Tester::Capture' => '1.302166', 16770 'Test::Tester::CaptureRunner'=> '1.302166', 16771 'Test::Tester::Delegate'=> '1.302166', 16772 'Test::use::ok' => '1.302166', 16773 'Thread' => '3.05', 16774 'Time::HiRes' => '1.9762', 16775 'Win32' => '0.53', 16776 'XS::APItest' => '1.02', 16777 'ok' => '1.302166', 16778 }, 16779 removed => { 16780 } 16781 }, 16782 5.031004 => { 16783 delta_from => 5.031003, 16784 changed => { 16785 'B::Op_private' => '5.031004', 16786 'Config' => '5.031004', 16787 'ExtUtils::Command' => '7.38', 16788 'ExtUtils::Command::MM' => '7.38', 16789 'ExtUtils::Liblist' => '7.38', 16790 'ExtUtils::Liblist::Kid'=> '7.38', 16791 'ExtUtils::MM' => '7.38', 16792 'ExtUtils::MM_AIX' => '7.38', 16793 'ExtUtils::MM_Any' => '7.38', 16794 'ExtUtils::MM_BeOS' => '7.38', 16795 'ExtUtils::MM_Cygwin' => '7.38', 16796 'ExtUtils::MM_DOS' => '7.38', 16797 'ExtUtils::MM_Darwin' => '7.38', 16798 'ExtUtils::MM_MacOS' => '7.38', 16799 'ExtUtils::MM_NW5' => '7.38', 16800 'ExtUtils::MM_OS2' => '7.38', 16801 'ExtUtils::MM_QNX' => '7.38', 16802 'ExtUtils::MM_UWIN' => '7.38', 16803 'ExtUtils::MM_Unix' => '7.38', 16804 'ExtUtils::MM_VMS' => '7.38', 16805 'ExtUtils::MM_VOS' => '7.38', 16806 'ExtUtils::MM_Win32' => '7.38', 16807 'ExtUtils::MM_Win95' => '7.38', 16808 'ExtUtils::MY' => '7.38', 16809 'ExtUtils::MakeMaker' => '7.38', 16810 'ExtUtils::MakeMaker::Config'=> '7.38', 16811 'ExtUtils::MakeMaker::Locale'=> '7.38', 16812 'ExtUtils::MakeMaker::version'=> '7.38', 16813 'ExtUtils::MakeMaker::version::regex'=> '7.38', 16814 'ExtUtils::Mkbootstrap' => '7.38', 16815 'ExtUtils::Mksymlists' => '7.38', 16816 'ExtUtils::testlib' => '7.38', 16817 'I18N::Langinfo' => '0.19', 16818 'List::Util' => '1.52', 16819 'List::Util::XS' => '1.52', 16820 'Module::CoreList' => '5.20190920', 16821 'Module::CoreList::Utils'=> '5.20190920', 16822 'Module::Metadata' => '1.000037', 16823 'Scalar::Util' => '1.52', 16824 'Sub::Util' => '1.52', 16825 'Test2' => '1.302168', 16826 'Test2::API' => '1.302168', 16827 'Test2::API::Breakage' => '1.302168', 16828 'Test2::API::Context' => '1.302168', 16829 'Test2::API::Instance' => '1.302168', 16830 'Test2::API::Stack' => '1.302168', 16831 'Test2::Event' => '1.302168', 16832 'Test2::Event::Bail' => '1.302168', 16833 'Test2::Event::Diag' => '1.302168', 16834 'Test2::Event::Encoding'=> '1.302168', 16835 'Test2::Event::Exception'=> '1.302168', 16836 'Test2::Event::Fail' => '1.302168', 16837 'Test2::Event::Generic' => '1.302168', 16838 'Test2::Event::Note' => '1.302168', 16839 'Test2::Event::Ok' => '1.302168', 16840 'Test2::Event::Pass' => '1.302168', 16841 'Test2::Event::Plan' => '1.302168', 16842 'Test2::Event::Skip' => '1.302168', 16843 'Test2::Event::Subtest' => '1.302168', 16844 'Test2::Event::TAP::Version'=> '1.302168', 16845 'Test2::Event::V2' => '1.302168', 16846 'Test2::Event::Waiting' => '1.302168', 16847 'Test2::EventFacet' => '1.302168', 16848 'Test2::EventFacet::About'=> '1.302168', 16849 'Test2::EventFacet::Amnesty'=> '1.302168', 16850 'Test2::EventFacet::Assert'=> '1.302168', 16851 'Test2::EventFacet::Control'=> '1.302168', 16852 'Test2::EventFacet::Error'=> '1.302168', 16853 'Test2::EventFacet::Hub'=> '1.302168', 16854 'Test2::EventFacet::Info'=> '1.302168', 16855 'Test2::EventFacet::Info::Table'=> '1.302168', 16856 'Test2::EventFacet::Meta'=> '1.302168', 16857 'Test2::EventFacet::Parent'=> '1.302168', 16858 'Test2::EventFacet::Plan'=> '1.302168', 16859 'Test2::EventFacet::Render'=> '1.302168', 16860 'Test2::EventFacet::Trace'=> '1.302168', 16861 'Test2::Formatter' => '1.302168', 16862 'Test2::Formatter::TAP' => '1.302168', 16863 'Test2::Hub' => '1.302168', 16864 'Test2::Hub::Interceptor'=> '1.302168', 16865 'Test2::Hub::Interceptor::Terminator'=> '1.302168', 16866 'Test2::Hub::Subtest' => '1.302168', 16867 'Test2::IPC' => '1.302168', 16868 'Test2::IPC::Driver' => '1.302168', 16869 'Test2::IPC::Driver::Files'=> '1.302168', 16870 'Test2::Tools::Tiny' => '1.302168', 16871 'Test2::Util' => '1.302168', 16872 'Test2::Util::ExternalMeta'=> '1.302168', 16873 'Test2::Util::Facets2Legacy'=> '1.302168', 16874 'Test2::Util::HashBase' => '1.302168', 16875 'Test2::Util::Trace' => '1.302168', 16876 'Test::Builder' => '1.302168', 16877 'Test::Builder::Formatter'=> '1.302168', 16878 'Test::Builder::Module' => '1.302168', 16879 'Test::Builder::Tester' => '1.302168', 16880 'Test::Builder::Tester::Color'=> '1.302168', 16881 'Test::Builder::TodoDiag'=> '1.302168', 16882 'Test::More' => '1.302168', 16883 'Test::Simple' => '1.302168', 16884 'Test::Tester' => '1.302168', 16885 'Test::Tester::Capture' => '1.302168', 16886 'Test::Tester::CaptureRunner'=> '1.302168', 16887 'Test::Tester::Delegate'=> '1.302168', 16888 'Test::use::ok' => '1.302168', 16889 'Time::HiRes' => '1.9763', 16890 'XS::APItest' => '1.03', 16891 'ok' => '1.302168', 16892 're' => '0.38', 16893 }, 16894 removed => { 16895 } 16896 }, 16897 5.031005 => { 16898 delta_from => 5.031004, 16899 changed => { 16900 'B' => '1.77', 16901 'B::Deparse' => '1.50', 16902 'B::Op_private' => '5.031005', 16903 'Config' => '5.031005', 16904 'Devel::PPPort' => '3.54', 16905 'Digest::MD5' => '2.55_01', 16906 'Dumpvalue' => '1.21', 16907 'ExtUtils::CBuilder' => '0.280233', 16908 'Math::BigFloat' => '1.999817_01', 16909 'Math::BigInt' => '1.999817_01', 16910 'Math::BigInt::Calc' => '1.999817_01', 16911 'Math::BigInt::FastCalc'=> '0.5009', 16912 'Math::BigInt::Lib' => '1.999817_01', 16913 'Module::CoreList' => '5.20191020', 16914 'Module::CoreList::Utils'=> '5.20191020', 16915 'Safe' => '2.41', 16916 'Time::HiRes' => '1.9764', 16917 'XS::APItest' => '1.04', 16918 'threads' => '2.23', 16919 }, 16920 removed => { 16921 } 16922 }, 16923 5.030001 => { 16924 delta_from => 5.030000, 16925 changed => { 16926 'B::Op_private' => '5.030001', 16927 'Config' => '5.030001', 16928 'Module::CoreList' => '5.20191110', 16929 'Module::CoreList::Utils'=> '5.20191110', 16930 }, 16931 removed => { 16932 } 16933 }, 16934 5.031006 => { 16935 delta_from => 5.031005, 16936 changed => { 16937 'B::Deparse' => '1.51', 16938 'B::Op_private' => '5.031006', 16939 'Compress::Raw::Bzip2' => '2.090', 16940 'Compress::Raw::Zlib' => '2.090', 16941 'Compress::Zlib' => '2.090', 16942 'Config' => '5.031006', 16943 'Devel::PPPort' => '3.55', 16944 'DynaLoader' => '1.46', 16945 'IO::Compress::Adapter::Bzip2'=> '2.090', 16946 'IO::Compress::Adapter::Deflate'=> '2.090', 16947 'IO::Compress::Adapter::Identity'=> '2.090', 16948 'IO::Compress::Base' => '2.090', 16949 'IO::Compress::Base::Common'=> '2.090', 16950 'IO::Compress::Bzip2' => '2.090', 16951 'IO::Compress::Deflate' => '2.090', 16952 'IO::Compress::Gzip' => '2.090', 16953 'IO::Compress::Gzip::Constants'=> '2.090', 16954 'IO::Compress::RawDeflate'=> '2.090', 16955 'IO::Compress::Zip' => '2.090', 16956 'IO::Compress::Zip::Constants'=> '2.090', 16957 'IO::Compress::Zlib::Constants'=> '2.090', 16958 'IO::Compress::Zlib::Extra'=> '2.090', 16959 'IO::Uncompress::Adapter::Bunzip2'=> '2.090', 16960 'IO::Uncompress::Adapter::Identity'=> '2.090', 16961 'IO::Uncompress::Adapter::Inflate'=> '2.090', 16962 'IO::Uncompress::AnyInflate'=> '2.090', 16963 'IO::Uncompress::AnyUncompress'=> '2.090', 16964 'IO::Uncompress::Base' => '2.090', 16965 'IO::Uncompress::Bunzip2'=> '2.090', 16966 'IO::Uncompress::Gunzip'=> '2.090', 16967 'IO::Uncompress::Inflate'=> '2.090', 16968 'IO::Uncompress::RawInflate'=> '2.090', 16969 'IO::Uncompress::Unzip' => '2.090', 16970 'List::Util' => '1.53', 16971 'List::Util::XS' => '1.53', 16972 'Math::BigFloat' => '1.999818', 16973 'Math::BigInt' => '1.999818', 16974 'Math::BigInt::Calc' => '1.999818', 16975 'Math::BigInt::Lib' => '1.999818', 16976 'Module::CoreList' => '5.20191120', 16977 'Module::CoreList::Utils'=> '5.20191120', 16978 'Module::Load::Conditional'=> '0.70', 16979 'POSIX' => '1.90', 16980 'Pod::Simple' => '3.40', 16981 'Pod::Simple::BlackBox' => '3.40', 16982 'Pod::Simple::Checker' => '3.40', 16983 'Pod::Simple::Debug' => '3.40', 16984 'Pod::Simple::DumpAsText'=> '3.40', 16985 'Pod::Simple::DumpAsXML'=> '3.40', 16986 'Pod::Simple::HTML' => '3.40', 16987 'Pod::Simple::HTMLBatch'=> '3.40', 16988 'Pod::Simple::LinkSection'=> '3.40', 16989 'Pod::Simple::Methody' => '3.40', 16990 'Pod::Simple::Progress' => '3.40', 16991 'Pod::Simple::PullParser'=> '3.40', 16992 'Pod::Simple::PullParserEndToken'=> '3.40', 16993 'Pod::Simple::PullParserStartToken'=> '3.40', 16994 'Pod::Simple::PullParserTextToken'=> '3.40', 16995 'Pod::Simple::PullParserToken'=> '3.40', 16996 'Pod::Simple::RTF' => '3.40', 16997 'Pod::Simple::Search' => '3.40', 16998 'Pod::Simple::SimpleTree'=> '3.40', 16999 'Pod::Simple::Text' => '3.40', 17000 'Pod::Simple::TextContent'=> '3.40', 17001 'Pod::Simple::TiedOutFH'=> '3.40', 17002 'Pod::Simple::Transcode'=> '3.40', 17003 'Pod::Simple::TranscodeDumb'=> '3.40', 17004 'Pod::Simple::TranscodeSmart'=> '3.40', 17005 'Pod::Simple::XHTML' => '3.40', 17006 'Pod::Simple::XMLOutStream'=> '3.40', 17007 'Scalar::Util' => '1.53', 17008 'Sub::Util' => '1.53', 17009 'Sys::Syslog' => '0.36', 17010 'Test2' => '1.302169', 17011 'Test2::API' => '1.302169', 17012 'Test2::API::Breakage' => '1.302169', 17013 'Test2::API::Context' => '1.302169', 17014 'Test2::API::Instance' => '1.302169', 17015 'Test2::API::Stack' => '1.302169', 17016 'Test2::Event' => '1.302169', 17017 'Test2::Event::Bail' => '1.302169', 17018 'Test2::Event::Diag' => '1.302169', 17019 'Test2::Event::Encoding'=> '1.302169', 17020 'Test2::Event::Exception'=> '1.302169', 17021 'Test2::Event::Fail' => '1.302169', 17022 'Test2::Event::Generic' => '1.302169', 17023 'Test2::Event::Note' => '1.302169', 17024 'Test2::Event::Ok' => '1.302169', 17025 'Test2::Event::Pass' => '1.302169', 17026 'Test2::Event::Plan' => '1.302169', 17027 'Test2::Event::Skip' => '1.302169', 17028 'Test2::Event::Subtest' => '1.302169', 17029 'Test2::Event::TAP::Version'=> '1.302169', 17030 'Test2::Event::V2' => '1.302169', 17031 'Test2::Event::Waiting' => '1.302169', 17032 'Test2::EventFacet' => '1.302169', 17033 'Test2::EventFacet::About'=> '1.302169', 17034 'Test2::EventFacet::Amnesty'=> '1.302169', 17035 'Test2::EventFacet::Assert'=> '1.302169', 17036 'Test2::EventFacet::Control'=> '1.302169', 17037 'Test2::EventFacet::Error'=> '1.302169', 17038 'Test2::EventFacet::Hub'=> '1.302169', 17039 'Test2::EventFacet::Info'=> '1.302169', 17040 'Test2::EventFacet::Info::Table'=> '1.302169', 17041 'Test2::EventFacet::Meta'=> '1.302169', 17042 'Test2::EventFacet::Parent'=> '1.302169', 17043 'Test2::EventFacet::Plan'=> '1.302169', 17044 'Test2::EventFacet::Render'=> '1.302169', 17045 'Test2::EventFacet::Trace'=> '1.302169', 17046 'Test2::Formatter' => '1.302169', 17047 'Test2::Formatter::TAP' => '1.302169', 17048 'Test2::Hub' => '1.302169', 17049 'Test2::Hub::Interceptor'=> '1.302169', 17050 'Test2::Hub::Interceptor::Terminator'=> '1.302169', 17051 'Test2::Hub::Subtest' => '1.302169', 17052 'Test2::IPC' => '1.302169', 17053 'Test2::IPC::Driver' => '1.302169', 17054 'Test2::IPC::Driver::Files'=> '1.302169', 17055 'Test2::Tools::Tiny' => '1.302169', 17056 'Test2::Util' => '1.302169', 17057 'Test2::Util::ExternalMeta'=> '1.302169', 17058 'Test2::Util::Facets2Legacy'=> '1.302169', 17059 'Test2::Util::HashBase' => '1.302169', 17060 'Test2::Util::Trace' => '1.302169', 17061 'Test::Builder' => '1.302169', 17062 'Test::Builder::Formatter'=> '1.302169', 17063 'Test::Builder::Module' => '1.302169', 17064 'Test::Builder::Tester' => '1.302169', 17065 'Test::Builder::Tester::Color'=> '1.302169', 17066 'Test::Builder::TodoDiag'=> '1.302169', 17067 'Test::More' => '1.302169', 17068 'Test::Simple' => '1.302169', 17069 'Test::Tester' => '1.302169', 17070 'Test::Tester::Capture' => '1.302169', 17071 'Test::Tester::CaptureRunner'=> '1.302169', 17072 'Test::Tester::Delegate'=> '1.302169', 17073 'Test::use::ok' => '1.302169', 17074 'Tie::StdHandle' => '4.6', 17075 'Unicode::UCD' => '0.74', 17076 'Win32API::File' => '0.1203_01', 17077 'feature' => '1.56', 17078 'mro' => '1.23', 17079 'ok' => '1.302169', 17080 'perlfaq' => '5.20191102', 17081 }, 17082 removed => { 17083 } 17084 }, 17085 5.031007 => { 17086 delta_from => 5.031006, 17087 changed => { 17088 'B' => '1.78', 17089 'B::Deparse' => '1.52', 17090 'B::Op_private' => '5.031007', 17091 'Compress::Raw::Bzip2' => '2.093', 17092 'Compress::Raw::Zlib' => '2.093', 17093 'Compress::Zlib' => '2.093', 17094 'Config' => '5.031007', 17095 'Devel::PPPort' => '3.56', 17096 'English' => '1.11', 17097 'ExtUtils::Command' => '7.42', 17098 'ExtUtils::Command::MM' => '7.42', 17099 'ExtUtils::Liblist' => '7.42', 17100 'ExtUtils::Liblist::Kid'=> '7.42', 17101 'ExtUtils::MM' => '7.42', 17102 'ExtUtils::MM_AIX' => '7.42', 17103 'ExtUtils::MM_Any' => '7.42', 17104 'ExtUtils::MM_BeOS' => '7.42', 17105 'ExtUtils::MM_Cygwin' => '7.42', 17106 'ExtUtils::MM_DOS' => '7.42', 17107 'ExtUtils::MM_Darwin' => '7.42', 17108 'ExtUtils::MM_MacOS' => '7.42', 17109 'ExtUtils::MM_NW5' => '7.42', 17110 'ExtUtils::MM_OS2' => '7.42', 17111 'ExtUtils::MM_QNX' => '7.42', 17112 'ExtUtils::MM_UWIN' => '7.42', 17113 'ExtUtils::MM_Unix' => '7.42', 17114 'ExtUtils::MM_VMS' => '7.42', 17115 'ExtUtils::MM_VOS' => '7.42', 17116 'ExtUtils::MM_Win32' => '7.42', 17117 'ExtUtils::MM_Win95' => '7.42', 17118 'ExtUtils::MY' => '7.42', 17119 'ExtUtils::MakeMaker' => '7.42', 17120 'ExtUtils::MakeMaker::Config'=> '7.42', 17121 'ExtUtils::MakeMaker::Locale'=> '7.42', 17122 'ExtUtils::MakeMaker::version'=> '7.42', 17123 'ExtUtils::MakeMaker::version::regex'=> '7.42', 17124 'ExtUtils::Mkbootstrap' => '7.42', 17125 'ExtUtils::Mksymlists' => '7.42', 17126 'ExtUtils::testlib' => '7.42', 17127 'File::stat' => '1.09', 17128 'Filter::Simple' => '0.96', 17129 'IO::Compress::Adapter::Bzip2'=> '2.093', 17130 'IO::Compress::Adapter::Deflate'=> '2.093', 17131 'IO::Compress::Adapter::Identity'=> '2.093', 17132 'IO::Compress::Base' => '2.093', 17133 'IO::Compress::Base::Common'=> '2.093', 17134 'IO::Compress::Bzip2' => '2.093', 17135 'IO::Compress::Deflate' => '2.093', 17136 'IO::Compress::Gzip' => '2.093', 17137 'IO::Compress::Gzip::Constants'=> '2.093', 17138 'IO::Compress::RawDeflate'=> '2.093', 17139 'IO::Compress::Zip' => '2.093', 17140 'IO::Compress::Zip::Constants'=> '2.093', 17141 'IO::Compress::Zlib::Constants'=> '2.093', 17142 'IO::Compress::Zlib::Extra'=> '2.093', 17143 'IO::Uncompress::Adapter::Bunzip2'=> '2.093', 17144 'IO::Uncompress::Adapter::Identity'=> '2.093', 17145 'IO::Uncompress::Adapter::Inflate'=> '2.093', 17146 'IO::Uncompress::AnyInflate'=> '2.093', 17147 'IO::Uncompress::AnyUncompress'=> '2.093', 17148 'IO::Uncompress::Base' => '2.093', 17149 'IO::Uncompress::Bunzip2'=> '2.093', 17150 'IO::Uncompress::Gunzip'=> '2.093', 17151 'IO::Uncompress::Inflate'=> '2.093', 17152 'IO::Uncompress::RawInflate'=> '2.093', 17153 'IO::Uncompress::Unzip' => '2.093', 17154 'Module::CoreList' => '5.20191220', 17155 'Module::CoreList::Utils'=> '5.20191220', 17156 'Net::Ping' => '2.72', 17157 'Opcode' => '1.45', 17158 'Storable' => '3.18', 17159 'Test2' => '1.302170', 17160 'Test2::API' => '1.302170', 17161 'Test2::API::Breakage' => '1.302170', 17162 'Test2::API::Context' => '1.302170', 17163 'Test2::API::Instance' => '1.302170', 17164 'Test2::API::Stack' => '1.302170', 17165 'Test2::Event' => '1.302170', 17166 'Test2::Event::Bail' => '1.302170', 17167 'Test2::Event::Diag' => '1.302170', 17168 'Test2::Event::Encoding'=> '1.302170', 17169 'Test2::Event::Exception'=> '1.302170', 17170 'Test2::Event::Fail' => '1.302170', 17171 'Test2::Event::Generic' => '1.302170', 17172 'Test2::Event::Note' => '1.302170', 17173 'Test2::Event::Ok' => '1.302170', 17174 'Test2::Event::Pass' => '1.302170', 17175 'Test2::Event::Plan' => '1.302170', 17176 'Test2::Event::Skip' => '1.302170', 17177 'Test2::Event::Subtest' => '1.302170', 17178 'Test2::Event::TAP::Version'=> '1.302170', 17179 'Test2::Event::V2' => '1.302170', 17180 'Test2::Event::Waiting' => '1.302170', 17181 'Test2::EventFacet' => '1.302170', 17182 'Test2::EventFacet::About'=> '1.302170', 17183 'Test2::EventFacet::Amnesty'=> '1.302170', 17184 'Test2::EventFacet::Assert'=> '1.302170', 17185 'Test2::EventFacet::Control'=> '1.302170', 17186 'Test2::EventFacet::Error'=> '1.302170', 17187 'Test2::EventFacet::Hub'=> '1.302170', 17188 'Test2::EventFacet::Info'=> '1.302170', 17189 'Test2::EventFacet::Info::Table'=> '1.302170', 17190 'Test2::EventFacet::Meta'=> '1.302170', 17191 'Test2::EventFacet::Parent'=> '1.302170', 17192 'Test2::EventFacet::Plan'=> '1.302170', 17193 'Test2::EventFacet::Render'=> '1.302170', 17194 'Test2::EventFacet::Trace'=> '1.302170', 17195 'Test2::Formatter' => '1.302170', 17196 'Test2::Formatter::TAP' => '1.302170', 17197 'Test2::Hub' => '1.302170', 17198 'Test2::Hub::Interceptor'=> '1.302170', 17199 'Test2::Hub::Interceptor::Terminator'=> '1.302170', 17200 'Test2::Hub::Subtest' => '1.302170', 17201 'Test2::IPC' => '1.302170', 17202 'Test2::IPC::Driver' => '1.302170', 17203 'Test2::IPC::Driver::Files'=> '1.302170', 17204 'Test2::Tools::Tiny' => '1.302170', 17205 'Test2::Util' => '1.302170', 17206 'Test2::Util::ExternalMeta'=> '1.302170', 17207 'Test2::Util::Facets2Legacy'=> '1.302170', 17208 'Test2::Util::HashBase' => '1.302170', 17209 'Test2::Util::Trace' => '1.302170', 17210 'Test::Builder' => '1.302170', 17211 'Test::Builder::Formatter'=> '1.302170', 17212 'Test::Builder::Module' => '1.302170', 17213 'Test::Builder::Tester' => '1.302170', 17214 'Test::Builder::Tester::Color'=> '1.302170', 17215 'Test::Builder::TodoDiag'=> '1.302170', 17216 'Test::More' => '1.302170', 17217 'Test::Simple' => '1.302170', 17218 'Test::Tester' => '1.302170', 17219 'Test::Tester::Capture' => '1.302170', 17220 'Test::Tester::CaptureRunner'=> '1.302170', 17221 'Test::Tester::Delegate'=> '1.302170', 17222 'Test::use::ok' => '1.302170', 17223 'Tie::Hash::NamedCapture'=> '0.13', 17224 'VMS::Stdio' => '2.45', 17225 'XS::APItest' => '1.05', 17226 'feature' => '1.57', 17227 'ok' => '1.302170', 17228 'warnings' => '1.46', 17229 }, 17230 removed => { 17231 } 17232 }, 17233 5.031008 => { 17234 delta_from => 5.031007, 17235 changed => { 17236 'B::Op_private' => '5.031008', 17237 'Config' => '5.031008', 17238 'DB_File' => '1.853', 17239 'Encode' => '3.02', 17240 'ExtUtils::Command' => '7.44', 17241 'ExtUtils::Command::MM' => '7.44', 17242 'ExtUtils::Liblist' => '7.44', 17243 'ExtUtils::Liblist::Kid'=> '7.44', 17244 'ExtUtils::MM' => '7.44', 17245 'ExtUtils::MM_AIX' => '7.44', 17246 'ExtUtils::MM_Any' => '7.44', 17247 'ExtUtils::MM_BeOS' => '7.44', 17248 'ExtUtils::MM_Cygwin' => '7.44', 17249 'ExtUtils::MM_DOS' => '7.44', 17250 'ExtUtils::MM_Darwin' => '7.44', 17251 'ExtUtils::MM_MacOS' => '7.44', 17252 'ExtUtils::MM_NW5' => '7.44', 17253 'ExtUtils::MM_OS2' => '7.44', 17254 'ExtUtils::MM_QNX' => '7.44', 17255 'ExtUtils::MM_UWIN' => '7.44', 17256 'ExtUtils::MM_Unix' => '7.44', 17257 'ExtUtils::MM_VMS' => '7.44', 17258 'ExtUtils::MM_VOS' => '7.44', 17259 'ExtUtils::MM_Win32' => '7.44', 17260 'ExtUtils::MM_Win95' => '7.44', 17261 'ExtUtils::MY' => '7.44', 17262 'ExtUtils::MakeMaker' => '7.44', 17263 'ExtUtils::MakeMaker::Config'=> '7.44', 17264 'ExtUtils::MakeMaker::Locale'=> '7.44', 17265 'ExtUtils::MakeMaker::version'=> '7.44', 17266 'ExtUtils::MakeMaker::version::regex'=> '7.44', 17267 'ExtUtils::Mkbootstrap' => '7.44', 17268 'ExtUtils::Mksymlists' => '7.44', 17269 'ExtUtils::testlib' => '7.44', 17270 'Fatal' => '2.32', 17271 'Hash::Util' => '0.23', 17272 'IO' => '1.42', 17273 'IO::Handle' => '1.42', 17274 'IO::Socket' => '1.42', 17275 'Module::CoreList' => '5.20200120', 17276 'Module::CoreList::Utils'=> '5.20200120', 17277 'POSIX' => '1.91', 17278 'Pod::Man' => '4.14', 17279 'Pod::ParseLink' => '4.14', 17280 'Pod::Text' => '4.14', 17281 'Pod::Text::Color' => '4.14', 17282 'Pod::Text::Overstrike' => '4.14', 17283 'Pod::Text::Termcap' => '4.14', 17284 'Term::ANSIColor' => '5.01', 17285 'Test2' => '1.302171', 17286 'Test2::API' => '1.302171', 17287 'Test2::API::Breakage' => '1.302171', 17288 'Test2::API::Context' => '1.302171', 17289 'Test2::API::Instance' => '1.302171', 17290 'Test2::API::Stack' => '1.302171', 17291 'Test2::Event' => '1.302171', 17292 'Test2::Event::Bail' => '1.302171', 17293 'Test2::Event::Diag' => '1.302171', 17294 'Test2::Event::Encoding'=> '1.302171', 17295 'Test2::Event::Exception'=> '1.302171', 17296 'Test2::Event::Fail' => '1.302171', 17297 'Test2::Event::Generic' => '1.302171', 17298 'Test2::Event::Note' => '1.302171', 17299 'Test2::Event::Ok' => '1.302171', 17300 'Test2::Event::Pass' => '1.302171', 17301 'Test2::Event::Plan' => '1.302171', 17302 'Test2::Event::Skip' => '1.302171', 17303 'Test2::Event::Subtest' => '1.302171', 17304 'Test2::Event::TAP::Version'=> '1.302171', 17305 'Test2::Event::V2' => '1.302171', 17306 'Test2::Event::Waiting' => '1.302171', 17307 'Test2::EventFacet' => '1.302171', 17308 'Test2::EventFacet::About'=> '1.302171', 17309 'Test2::EventFacet::Amnesty'=> '1.302171', 17310 'Test2::EventFacet::Assert'=> '1.302171', 17311 'Test2::EventFacet::Control'=> '1.302171', 17312 'Test2::EventFacet::Error'=> '1.302171', 17313 'Test2::EventFacet::Hub'=> '1.302171', 17314 'Test2::EventFacet::Info'=> '1.302171', 17315 'Test2::EventFacet::Info::Table'=> '1.302171', 17316 'Test2::EventFacet::Meta'=> '1.302171', 17317 'Test2::EventFacet::Parent'=> '1.302171', 17318 'Test2::EventFacet::Plan'=> '1.302171', 17319 'Test2::EventFacet::Render'=> '1.302171', 17320 'Test2::EventFacet::Trace'=> '1.302171', 17321 'Test2::Formatter' => '1.302171', 17322 'Test2::Formatter::TAP' => '1.302171', 17323 'Test2::Hub' => '1.302171', 17324 'Test2::Hub::Interceptor'=> '1.302171', 17325 'Test2::Hub::Interceptor::Terminator'=> '1.302171', 17326 'Test2::Hub::Subtest' => '1.302171', 17327 'Test2::IPC' => '1.302171', 17328 'Test2::IPC::Driver' => '1.302171', 17329 'Test2::IPC::Driver::Files'=> '1.302171', 17330 'Test2::Tools::Tiny' => '1.302171', 17331 'Test2::Util' => '1.302171', 17332 'Test2::Util::ExternalMeta'=> '1.302171', 17333 'Test2::Util::Facets2Legacy'=> '1.302171', 17334 'Test2::Util::HashBase' => '1.302171', 17335 'Test2::Util::Trace' => '1.302171', 17336 'Test::Builder' => '1.302171', 17337 'Test::Builder::Formatter'=> '1.302171', 17338 'Test::Builder::Module' => '1.302171', 17339 'Test::Builder::Tester' => '1.302171', 17340 'Test::Builder::Tester::Color'=> '1.302171', 17341 'Test::Builder::TodoDiag'=> '1.302171', 17342 'Test::More' => '1.302171', 17343 'Test::Simple' => '1.302171', 17344 'Test::Tester' => '1.302171', 17345 'Test::Tester::Capture' => '1.302171', 17346 'Test::Tester::CaptureRunner'=> '1.302171', 17347 'Test::Tester::Delegate'=> '1.302171', 17348 'Test::use::ok' => '1.302171', 17349 'XS::APItest' => '1.06', 17350 'autodie' => '2.32', 17351 'autodie::Scope::Guard' => '2.32', 17352 'autodie::Scope::GuardStack'=> '2.32', 17353 'autodie::Util' => '2.32', 17354 'autodie::exception' => '2.32', 17355 'autodie::exception::system'=> '2.32', 17356 'autodie::hints' => '2.32', 17357 'autodie::skip' => '2.32', 17358 'ok' => '1.302171', 17359 }, 17360 removed => { 17361 } 17362 }, 17363 5.031009 => { 17364 delta_from => 5.031008, 17365 changed => { 17366 'Archive::Tar' => '2.36', 17367 'Archive::Tar::Constant'=> '2.36', 17368 'Archive::Tar::File' => '2.36', 17369 'B' => '1.80', 17370 'B::Op_private' => '5.031009', 17371 'Config' => '5.031009', 17372 'Devel::PPPort' => '3.57', 17373 'Encode' => '3.03', 17374 'ExtUtils::CBuilder' => '0.280234', 17375 'ExtUtils::CBuilder::Base'=> '0.280234', 17376 'ExtUtils::CBuilder::Platform::Unix'=> '0.280234', 17377 'ExtUtils::CBuilder::Platform::VMS'=> '0.280234', 17378 'ExtUtils::CBuilder::Platform::Windows'=> '0.280234', 17379 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280234', 17380 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280234', 17381 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280234', 17382 'ExtUtils::CBuilder::Platform::aix'=> '0.280234', 17383 'ExtUtils::CBuilder::Platform::android'=> '0.280234', 17384 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280234', 17385 'ExtUtils::CBuilder::Platform::darwin'=> '0.280234', 17386 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280234', 17387 'ExtUtils::CBuilder::Platform::os2'=> '0.280234', 17388 'IO' => '1.43', 17389 'IO::Select' => '1.42', 17390 'IO::Socket' => '1.43', 17391 'Module::CoreList' => '5.20200220', 17392 'Module::CoreList::Utils'=> '5.20200220', 17393 'POSIX' => '1.92', 17394 'Pod::Html' => '1.25', 17395 'Storable' => '3.19', 17396 'Tie::File' => '1.06', 17397 'Unicode' => '13.0.0', 17398 'XS::APItest' => '1.07', 17399 '_charnames' => '1.46', 17400 'charnames' => '1.46', 17401 'diagnostics' => '1.37', 17402 'feature' => '1.58', 17403 'parent' => '0.238', 17404 'perlfaq' => '5.20200125', 17405 'threads' => '2.24', 17406 }, 17407 removed => { 17408 } 17409 }, 17410 5.030002 => { 17411 delta_from => 5.030001, 17412 changed => { 17413 'B::Op_private' => '5.030002', 17414 'Compress::Raw::Bzip2' => '2.089', 17415 'Config' => '5.030002', 17416 'Module::CoreList' => '5.20200314', 17417 'Module::CoreList::Utils'=> '5.20200314', 17418 }, 17419 removed => { 17420 } 17421 }, 17422 5.031010 => { 17423 delta_from => 5.031009, 17424 changed => { 17425 'B::Op_private' => '5.031010', 17426 'Config' => '5.03101', 17427 }, 17428 removed => { 17429 } 17430 }, 17431 5.031011 => { 17432 delta_from => 5.031010, 17433 changed => { 17434 'B::Deparse' => '1.53', 17435 'B::Op_private' => '5.031011', 17436 'Config' => '5.031011', 17437 'DynaLoader' => '1.47', 17438 'Encode' => '3.04', 17439 'IPC::Open2' => '1.05', 17440 'IPC::Open3' => '1.21', 17441 'Module::CoreList' => '5.20200428', 17442 'Module::CoreList::Utils'=> '5.20200428', 17443 'Opcode' => '1.47', 17444 'POSIX' => '1.93', 17445 'PerlIO' => '1.11', 17446 'Storable' => '3.20', 17447 'Test2' => '1.302175', 17448 'Test2::API' => '1.302175', 17449 'Test2::API::Breakage' => '1.302175', 17450 'Test2::API::Context' => '1.302175', 17451 'Test2::API::Instance' => '1.302175', 17452 'Test2::API::Stack' => '1.302175', 17453 'Test2::Event' => '1.302175', 17454 'Test2::Event::Bail' => '1.302175', 17455 'Test2::Event::Diag' => '1.302175', 17456 'Test2::Event::Encoding'=> '1.302175', 17457 'Test2::Event::Exception'=> '1.302175', 17458 'Test2::Event::Fail' => '1.302175', 17459 'Test2::Event::Generic' => '1.302175', 17460 'Test2::Event::Note' => '1.302175', 17461 'Test2::Event::Ok' => '1.302175', 17462 'Test2::Event::Pass' => '1.302175', 17463 'Test2::Event::Plan' => '1.302175', 17464 'Test2::Event::Skip' => '1.302175', 17465 'Test2::Event::Subtest' => '1.302175', 17466 'Test2::Event::TAP::Version'=> '1.302175', 17467 'Test2::Event::V2' => '1.302175', 17468 'Test2::Event::Waiting' => '1.302175', 17469 'Test2::EventFacet' => '1.302175', 17470 'Test2::EventFacet::About'=> '1.302175', 17471 'Test2::EventFacet::Amnesty'=> '1.302175', 17472 'Test2::EventFacet::Assert'=> '1.302175', 17473 'Test2::EventFacet::Control'=> '1.302175', 17474 'Test2::EventFacet::Error'=> '1.302175', 17475 'Test2::EventFacet::Hub'=> '1.302175', 17476 'Test2::EventFacet::Info'=> '1.302175', 17477 'Test2::EventFacet::Info::Table'=> '1.302175', 17478 'Test2::EventFacet::Meta'=> '1.302175', 17479 'Test2::EventFacet::Parent'=> '1.302175', 17480 'Test2::EventFacet::Plan'=> '1.302175', 17481 'Test2::EventFacet::Render'=> '1.302175', 17482 'Test2::EventFacet::Trace'=> '1.302175', 17483 'Test2::Formatter' => '1.302175', 17484 'Test2::Formatter::TAP' => '1.302175', 17485 'Test2::Hub' => '1.302175', 17486 'Test2::Hub::Interceptor'=> '1.302175', 17487 'Test2::Hub::Interceptor::Terminator'=> '1.302175', 17488 'Test2::Hub::Subtest' => '1.302175', 17489 'Test2::IPC' => '1.302175', 17490 'Test2::IPC::Driver' => '1.302175', 17491 'Test2::IPC::Driver::Files'=> '1.302175', 17492 'Test2::Tools::Tiny' => '1.302175', 17493 'Test2::Util' => '1.302175', 17494 'Test2::Util::ExternalMeta'=> '1.302175', 17495 'Test2::Util::Facets2Legacy'=> '1.302175', 17496 'Test2::Util::HashBase' => '1.302175', 17497 'Test2::Util::Trace' => '1.302175', 17498 'Test::Builder' => '1.302175', 17499 'Test::Builder::Formatter'=> '1.302175', 17500 'Test::Builder::Module' => '1.302175', 17501 'Test::Builder::Tester' => '1.302175', 17502 'Test::Builder::Tester::Color'=> '1.302175', 17503 'Test::Builder::TodoDiag'=> '1.302175', 17504 'Test::More' => '1.302175', 17505 'Test::Simple' => '1.302175', 17506 'Test::Tester' => '1.302175', 17507 'Test::Tester::Capture' => '1.302175', 17508 'Test::Tester::CaptureRunner'=> '1.302175', 17509 'Test::Tester::Delegate'=> '1.302175', 17510 'Test::use::ok' => '1.302175', 17511 'Time::Piece' => '1.3401', 17512 'Time::Seconds' => '1.3401', 17513 'Unicode::UCD' => '0.75', 17514 'XS::APItest' => '1.09', 17515 '_charnames' => '1.47', 17516 'charnames' => '1.47', 17517 'ok' => '1.302175', 17518 'open' => '1.12', 17519 're' => '0.39', 17520 'warnings' => '1.47', 17521 }, 17522 removed => { 17523 } 17524 }, 17525 5.028003 => { 17526 delta_from => 5.028002, 17527 changed => { 17528 'B::Op_private' => '5.028003', 17529 'Config' => '5.028003', 17530 'Module::CoreList' => '5.20200601_28', 17531 'Module::CoreList::Utils'=> '5.20200601_28', 17532 }, 17533 removed => { 17534 } 17535 }, 17536 5.030003 => { 17537 delta_from => 5.030002, 17538 changed => { 17539 'B::Op_private' => '5.030003', 17540 'Config' => '5.030003', 17541 'Module::CoreList' => '5.20200601_30', 17542 'Module::CoreList::Utils'=> '5.20200601_30', 17543 }, 17544 removed => { 17545 } 17546 }, 17547 5.032000 => { 17548 delta_from => 5.031011, 17549 changed => { 17550 'B::Deparse' => '1.54', 17551 'B::Op_private' => '5.032000', 17552 'Benchmark' => '1.23', 17553 'Config' => '5.032', 17554 'Encode' => '3.06', 17555 'Encode::Guess' => '2.08', 17556 'File::Glob' => '1.33', 17557 'List::Util' => '1.55', 17558 'List::Util::XS' => '1.55', 17559 'Module::CoreList' => '5.20200620', 17560 'Module::CoreList::Utils'=> '5.20200620', 17561 'POSIX' => '1.94', 17562 'Scalar::Util' => '1.55', 17563 'Storable' => '3.21', 17564 'Sub::Util' => '1.55', 17565 'Thread::Queue' => '3.14', 17566 'Tie::Scalar' => '1.05', 17567 '_charnames' => '1.48', 17568 'charnames' => '1.48', 17569 'encoding' => '3.00', 17570 'perlfaq' => '5.20200523', 17571 're' => '0.40', 17572 'threads' => '2.25', 17573 }, 17574 removed => { 17575 } 17576 }, 17577 5.033000 => { 17578 delta_from => 5.032000, 17579 changed => { 17580 'B::Op_private' => '5.033000', 17581 'Config' => '5.033', 17582 'Module::CoreList' => '5.20200717', 17583 'Module::CoreList::Utils'=> '5.20200717', 17584 'feature' => '1.59', 17585 }, 17586 removed => { 17587 } 17588 }, 17589 5.033001 => { 17590 delta_from => 5.033, 17591 changed => { 17592 'B' => '1.81', 17593 'B::Deparse' => '1.55', 17594 'B::Op_private' => '5.033001', 17595 'Config' => '5.033001', 17596 'Data::Dumper' => '2.175', 17597 'Devel::PPPort' => '3.60', 17598 'Devel::Peek' => '1.29', 17599 'DynaLoader' => '1.48', 17600 'Errno' => '1.31', 17601 'Exporter' => '5.75', 17602 'Exporter::Heavy' => '5.75', 17603 'ExtUtils::Miniperl' => '1.10', 17604 'ExtUtils::PL2Bat' => '0.002', 17605 'ExtUtils::ParseXS' => '3.41', 17606 'ExtUtils::ParseXS::Constants'=> '3.41', 17607 'ExtUtils::ParseXS::CountLines'=> '3.41', 17608 'ExtUtils::ParseXS::Eval'=> '3.41', 17609 'ExtUtils::ParseXS::Utilities'=> '3.41', 17610 'Fcntl' => '1.14', 17611 'File::Path' => '2.17', 17612 'Hash::Util' => '0.24', 17613 'Hash::Util::FieldHash' => '1.21', 17614 'IO' => '1.44', 17615 'IO::Socket' => '1.44', 17616 'IO::Socket::UNIX' => '1.42', 17617 'IPC::Msg' => '2.08', 17618 'IPC::Semaphore' => '2.08', 17619 'IPC::SharedMem' => '2.08', 17620 'IPC::SysV' => '2.08', 17621 'JSON::PP' => '4.05', 17622 'JSON::PP::Boolean' => '4.05', 17623 'Math::Complex' => '1.5902', 17624 'Module::CoreList' => '5.20200820', 17625 'Module::CoreList::Utils'=> '5.20200820', 17626 'Net::Ping' => '2.73_01', 17627 'POSIX' => '1.95', 17628 'PerlIO::mmap' => '0.017', 17629 'Pod::Usage' => '1.70', 17630 'Safe' => '2.42', 17631 'Socket' => '2.030', 17632 'Storable' => '3.22', 17633 'Time::HiRes' => '1.9765', 17634 'Unicode::Normalize' => '1.28', 17635 'XS::APItest' => '1.11', 17636 'XS::Typemap' => '0.18', 17637 'feature' => '1.60', 17638 'mro' => '1.24', 17639 'strict' => '1.12', 17640 'threads' => '2.26', 17641 'threads::shared' => '1.62', 17642 'warnings' => '1.48', 17643 }, 17644 removed => { 17645 'Moped::Msg' => 1, 17646 } 17647 }, 17648 5.033002 => { 17649 delta_from => 5.033001, 17650 changed => { 17651 'Archive::Tar' => '2.38', 17652 'Archive::Tar::Constant'=> '2.38', 17653 'Archive::Tar::File' => '2.38', 17654 'B::Op_private' => '5.033002', 17655 'Compress::Raw::Bzip2' => '2.096', 17656 'Compress::Raw::Zlib' => '2.096', 17657 'Compress::Zlib' => '2.096', 17658 'Config' => '5.033002', 17659 'DB_File' => '1.854', 17660 'Env' => '1.05', 17661 'Errno' => '1.32', 17662 'ExtUtils::Install' => '2.18', 17663 'ExtUtils::Installed' => '2.18', 17664 'ExtUtils::Packlist' => '2.18', 17665 'Filter::Util::Call' => '1.60', 17666 'IO::Compress::Adapter::Bzip2'=> '2.096', 17667 'IO::Compress::Adapter::Deflate'=> '2.096', 17668 'IO::Compress::Adapter::Identity'=> '2.096', 17669 'IO::Compress::Base' => '2.096', 17670 'IO::Compress::Base::Common'=> '2.096', 17671 'IO::Compress::Bzip2' => '2.096', 17672 'IO::Compress::Deflate' => '2.096', 17673 'IO::Compress::Gzip' => '2.096', 17674 'IO::Compress::Gzip::Constants'=> '2.096', 17675 'IO::Compress::RawDeflate'=> '2.096', 17676 'IO::Compress::Zip' => '2.096', 17677 'IO::Compress::Zip::Constants'=> '2.096', 17678 'IO::Compress::Zlib::Constants'=> '2.096', 17679 'IO::Compress::Zlib::Extra'=> '2.096', 17680 'IO::Socket::IP' => '0.41', 17681 'IO::Uncompress::Adapter::Bunzip2'=> '2.096', 17682 'IO::Uncompress::Adapter::Identity'=> '2.096', 17683 'IO::Uncompress::Adapter::Inflate'=> '2.096', 17684 'IO::Uncompress::AnyInflate'=> '2.096', 17685 'IO::Uncompress::AnyUncompress'=> '2.096', 17686 'IO::Uncompress::Base' => '2.096', 17687 'IO::Uncompress::Bunzip2'=> '2.096', 17688 'IO::Uncompress::Gunzip'=> '2.096', 17689 'IO::Uncompress::Inflate'=> '2.096', 17690 'IO::Uncompress::RawInflate'=> '2.096', 17691 'IO::Uncompress::Unzip' => '2.096', 17692 'IO::Zlib' => '1.11', 17693 'Module::CoreList' => '5.20200920', 17694 'Module::CoreList::Utils'=> '5.20200920', 17695 'Module::Load::Conditional'=> '0.74', 17696 'Opcode' => '1.48', 17697 'PerlIO::scalar' => '0.31', 17698 'Safe' => '2.43', 17699 'Test2' => '1.302181', 17700 'Test2::API' => '1.302181', 17701 'Test2::API::Breakage' => '1.302181', 17702 'Test2::API::Context' => '1.302181', 17703 'Test2::API::Instance' => '1.302181', 17704 'Test2::API::InterceptResult'=> '1.302181', 17705 'Test2::API::InterceptResult::Event'=> '1.302181', 17706 'Test2::API::InterceptResult::Facet'=> '1.302181', 17707 'Test2::API::InterceptResult::Hub'=> '1.302181', 17708 'Test2::API::InterceptResult::Squasher'=> '1.302181', 17709 'Test2::API::Stack' => '1.302181', 17710 'Test2::Event' => '1.302181', 17711 'Test2::Event::Bail' => '1.302181', 17712 'Test2::Event::Diag' => '1.302181', 17713 'Test2::Event::Encoding'=> '1.302181', 17714 'Test2::Event::Exception'=> '1.302181', 17715 'Test2::Event::Fail' => '1.302181', 17716 'Test2::Event::Generic' => '1.302181', 17717 'Test2::Event::Note' => '1.302181', 17718 'Test2::Event::Ok' => '1.302181', 17719 'Test2::Event::Pass' => '1.302181', 17720 'Test2::Event::Plan' => '1.302181', 17721 'Test2::Event::Skip' => '1.302181', 17722 'Test2::Event::Subtest' => '1.302181', 17723 'Test2::Event::TAP::Version'=> '1.302181', 17724 'Test2::Event::V2' => '1.302181', 17725 'Test2::Event::Waiting' => '1.302181', 17726 'Test2::EventFacet' => '1.302181', 17727 'Test2::EventFacet::About'=> '1.302181', 17728 'Test2::EventFacet::Amnesty'=> '1.302181', 17729 'Test2::EventFacet::Assert'=> '1.302181', 17730 'Test2::EventFacet::Control'=> '1.302181', 17731 'Test2::EventFacet::Error'=> '1.302181', 17732 'Test2::EventFacet::Hub'=> '1.302181', 17733 'Test2::EventFacet::Info'=> '1.302181', 17734 'Test2::EventFacet::Info::Table'=> '1.302181', 17735 'Test2::EventFacet::Meta'=> '1.302181', 17736 'Test2::EventFacet::Parent'=> '1.302181', 17737 'Test2::EventFacet::Plan'=> '1.302181', 17738 'Test2::EventFacet::Render'=> '1.302181', 17739 'Test2::EventFacet::Trace'=> '1.302181', 17740 'Test2::Formatter' => '1.302181', 17741 'Test2::Formatter::TAP' => '1.302181', 17742 'Test2::Hub' => '1.302181', 17743 'Test2::Hub::Interceptor'=> '1.302181', 17744 'Test2::Hub::Interceptor::Terminator'=> '1.302181', 17745 'Test2::Hub::Subtest' => '1.302181', 17746 'Test2::IPC' => '1.302181', 17747 'Test2::IPC::Driver' => '1.302181', 17748 'Test2::IPC::Driver::Files'=> '1.302181', 17749 'Test2::Tools::Tiny' => '1.302181', 17750 'Test2::Util' => '1.302181', 17751 'Test2::Util::ExternalMeta'=> '1.302181', 17752 'Test2::Util::Facets2Legacy'=> '1.302181', 17753 'Test2::Util::HashBase' => '1.302181', 17754 'Test2::Util::Trace' => '1.302181', 17755 'Test::Builder' => '1.302181', 17756 'Test::Builder::Formatter'=> '1.302181', 17757 'Test::Builder::Module' => '1.302181', 17758 'Test::Builder::Tester' => '1.302181', 17759 'Test::Builder::Tester::Color'=> '1.302181', 17760 'Test::Builder::TodoDiag'=> '1.302181', 17761 'Test::More' => '1.302181', 17762 'Test::Simple' => '1.302181', 17763 'Test::Tester' => '1.302181', 17764 'Test::Tester::Capture' => '1.302181', 17765 'Test::Tester::CaptureRunner'=> '1.302181', 17766 'Test::Tester::Delegate'=> '1.302181', 17767 'Test::use::ok' => '1.302181', 17768 'ok' => '1.302181', 17769 'overload' => '1.32', 17770 }, 17771 removed => { 17772 } 17773 }, 17774 5.033003 => { 17775 delta_from => 5.033002, 17776 changed => { 17777 'Amiga::ARexx' => '0.05', 17778 'App::Cpan' => '1.676', 17779 'B::Op_private' => '5.033003', 17780 'CPAN' => '2.28', 17781 'CPAN::FTP' => '5.5013', 17782 'CPAN::FirstTime' => '5.5315', 17783 'Config' => '5.033003', 17784 'DB_File' => '1.855', 17785 'Data::Dumper' => '2.176', 17786 'Devel::PPPort' => '3.62', 17787 'Devel::Peek' => '1.30', 17788 'Digest' => '1.19', 17789 'Digest::MD5' => '2.58', 17790 'Digest::base' => '1.19', 17791 'Digest::file' => '1.19', 17792 'Encode' => '3.07', 17793 'Encode::GSM0338' => '2.08', 17794 'Errno' => '1.33', 17795 'Exporter' => '5.76', 17796 'Exporter::Heavy' => '5.76', 17797 'ExtUtils::Command' => '7.48', 17798 'ExtUtils::Command::MM' => '7.48', 17799 'ExtUtils::Liblist' => '7.48', 17800 'ExtUtils::Liblist::Kid'=> '7.48', 17801 'ExtUtils::MM' => '7.48', 17802 'ExtUtils::MM_AIX' => '7.48', 17803 'ExtUtils::MM_Any' => '7.48', 17804 'ExtUtils::MM_BeOS' => '7.48', 17805 'ExtUtils::MM_Cygwin' => '7.48', 17806 'ExtUtils::MM_DOS' => '7.48', 17807 'ExtUtils::MM_Darwin' => '7.48', 17808 'ExtUtils::MM_MacOS' => '7.48', 17809 'ExtUtils::MM_NW5' => '7.48', 17810 'ExtUtils::MM_OS2' => '7.48', 17811 'ExtUtils::MM_OS390' => '7.48', 17812 'ExtUtils::MM_QNX' => '7.48', 17813 'ExtUtils::MM_UWIN' => '7.48', 17814 'ExtUtils::MM_Unix' => '7.48', 17815 'ExtUtils::MM_VMS' => '7.48', 17816 'ExtUtils::MM_VOS' => '7.48', 17817 'ExtUtils::MM_Win32' => '7.48', 17818 'ExtUtils::MM_Win95' => '7.48', 17819 'ExtUtils::MY' => '7.48', 17820 'ExtUtils::MakeMaker' => '7.48', 17821 'ExtUtils::MakeMaker::Config'=> '7.48', 17822 'ExtUtils::MakeMaker::Locale'=> '7.48', 17823 'ExtUtils::MakeMaker::version'=> '7.48', 17824 'ExtUtils::MakeMaker::version::regex'=> '7.48', 17825 'ExtUtils::Mkbootstrap' => '7.48', 17826 'ExtUtils::Mksymlists' => '7.48', 17827 'ExtUtils::PL2Bat' => '0.003', 17828 'ExtUtils::testlib' => '7.48', 17829 'File::Temp' => '0.2311', 17830 'FindBin' => '1.52', 17831 'Getopt::Long' => '2.52', 17832 'Getopt::Std' => '1.13', 17833 'I18N::LangTags' => '0.45', 17834 'MIME::Base64' => '3.16', 17835 'MIME::QuotedPrint' => '3.16', 17836 'Module::CoreList' => '5.20201020', 17837 'Module::CoreList::Utils'=> '5.20201020', 17838 'Module::Load' => '0.36', 17839 'Pod::Checker' => '1.74', 17840 'Pod::Simple' => '3.41', 17841 'Pod::Simple::BlackBox' => '3.41', 17842 'Pod::Simple::Checker' => '3.41', 17843 'Pod::Simple::Debug' => '3.41', 17844 'Pod::Simple::DumpAsText'=> '3.41', 17845 'Pod::Simple::DumpAsXML'=> '3.41', 17846 'Pod::Simple::HTML' => '3.41', 17847 'Pod::Simple::HTMLBatch'=> '3.41', 17848 'Pod::Simple::LinkSection'=> '3.41', 17849 'Pod::Simple::Methody' => '3.41', 17850 'Pod::Simple::Progress' => '3.41', 17851 'Pod::Simple::PullParser'=> '3.41', 17852 'Pod::Simple::PullParserEndToken'=> '3.41', 17853 'Pod::Simple::PullParserStartToken'=> '3.41', 17854 'Pod::Simple::PullParserTextToken'=> '3.41', 17855 'Pod::Simple::PullParserToken'=> '3.41', 17856 'Pod::Simple::RTF' => '3.41', 17857 'Pod::Simple::Search' => '3.41', 17858 'Pod::Simple::SimpleTree'=> '3.41', 17859 'Pod::Simple::Text' => '3.41', 17860 'Pod::Simple::TextContent'=> '3.41', 17861 'Pod::Simple::TiedOutFH'=> '3.41', 17862 'Pod::Simple::Transcode'=> '3.41', 17863 'Pod::Simple::TranscodeDumb'=> '3.41', 17864 'Pod::Simple::TranscodeSmart'=> '3.41', 17865 'Pod::Simple::XHTML' => '3.41', 17866 'Pod::Simple::XMLOutStream'=> '3.41', 17867 'Pod::Usage' => '2.01', 17868 'Storable' => '3.23', 17869 'Symbol' => '1.09', 17870 'Test2' => '1.302182', 17871 'Test2::API' => '1.302182', 17872 'Test2::API::Breakage' => '1.302182', 17873 'Test2::API::Context' => '1.302182', 17874 'Test2::API::Instance' => '1.302182', 17875 'Test2::API::InterceptResult'=> '1.302182', 17876 'Test2::API::InterceptResult::Event'=> '1.302182', 17877 'Test2::API::InterceptResult::Facet'=> '1.302182', 17878 'Test2::API::InterceptResult::Hub'=> '1.302182', 17879 'Test2::API::InterceptResult::Squasher'=> '1.302182', 17880 'Test2::API::Stack' => '1.302182', 17881 'Test2::Event' => '1.302182', 17882 'Test2::Event::Bail' => '1.302182', 17883 'Test2::Event::Diag' => '1.302182', 17884 'Test2::Event::Encoding'=> '1.302182', 17885 'Test2::Event::Exception'=> '1.302182', 17886 'Test2::Event::Fail' => '1.302182', 17887 'Test2::Event::Generic' => '1.302182', 17888 'Test2::Event::Note' => '1.302182', 17889 'Test2::Event::Ok' => '1.302182', 17890 'Test2::Event::Pass' => '1.302182', 17891 'Test2::Event::Plan' => '1.302182', 17892 'Test2::Event::Skip' => '1.302182', 17893 'Test2::Event::Subtest' => '1.302182', 17894 'Test2::Event::TAP::Version'=> '1.302182', 17895 'Test2::Event::V2' => '1.302182', 17896 'Test2::Event::Waiting' => '1.302182', 17897 'Test2::EventFacet' => '1.302182', 17898 'Test2::EventFacet::About'=> '1.302182', 17899 'Test2::EventFacet::Amnesty'=> '1.302182', 17900 'Test2::EventFacet::Assert'=> '1.302182', 17901 'Test2::EventFacet::Control'=> '1.302182', 17902 'Test2::EventFacet::Error'=> '1.302182', 17903 'Test2::EventFacet::Hub'=> '1.302182', 17904 'Test2::EventFacet::Info'=> '1.302182', 17905 'Test2::EventFacet::Info::Table'=> '1.302182', 17906 'Test2::EventFacet::Meta'=> '1.302182', 17907 'Test2::EventFacet::Parent'=> '1.302182', 17908 'Test2::EventFacet::Plan'=> '1.302182', 17909 'Test2::EventFacet::Render'=> '1.302182', 17910 'Test2::EventFacet::Trace'=> '1.302182', 17911 'Test2::Formatter' => '1.302182', 17912 'Test2::Formatter::TAP' => '1.302182', 17913 'Test2::Hub' => '1.302182', 17914 'Test2::Hub::Interceptor'=> '1.302182', 17915 'Test2::Hub::Interceptor::Terminator'=> '1.302182', 17916 'Test2::Hub::Subtest' => '1.302182', 17917 'Test2::IPC' => '1.302182', 17918 'Test2::IPC::Driver' => '1.302182', 17919 'Test2::IPC::Driver::Files'=> '1.302182', 17920 'Test2::Tools::Tiny' => '1.302182', 17921 'Test2::Util' => '1.302182', 17922 'Test2::Util::ExternalMeta'=> '1.302182', 17923 'Test2::Util::Facets2Legacy'=> '1.302182', 17924 'Test2::Util::HashBase' => '1.302182', 17925 'Test2::Util::Trace' => '1.302182', 17926 'Test::Builder' => '1.302182', 17927 'Test::Builder::Formatter'=> '1.302182', 17928 'Test::Builder::Module' => '1.302182', 17929 'Test::Builder::Tester' => '1.302182', 17930 'Test::Builder::Tester::Color'=> '1.302182', 17931 'Test::Builder::TodoDiag'=> '1.302182', 17932 'Test::More' => '1.302182', 17933 'Test::Simple' => '1.302182', 17934 'Test::Tester' => '1.302182', 17935 'Test::Tester::Capture' => '1.302182', 17936 'Test::Tester::CaptureRunner'=> '1.302182', 17937 'Test::Tester::Delegate'=> '1.302182', 17938 'Test::use::ok' => '1.302182', 17939 'Tie::RefHash' => '1.40', 17940 'Time::Local' => '1.30', 17941 'Unicode::Collate' => '1.29', 17942 'Unicode::Collate::CJK::Big5'=> '1.29', 17943 'Unicode::Collate::CJK::GB2312'=> '1.29', 17944 'Unicode::Collate::CJK::JISX0208'=> '1.29', 17945 'Unicode::Collate::CJK::Korean'=> '1.29', 17946 'Unicode::Collate::CJK::Pinyin'=> '1.29', 17947 'Unicode::Collate::CJK::Stroke'=> '1.29', 17948 'Unicode::Collate::CJK::Zhuyin'=> '1.29', 17949 'Unicode::Collate::Locale'=> '1.29', 17950 'Win32' => '0.54', 17951 'XS::APItest' => '1.12', 17952 'bytes' => '1.08', 17953 'experimental' => '0.022', 17954 'feature' => '1.61', 17955 'if' => '0.0609', 17956 'locale' => '1.10', 17957 'mro' => '1.25', 17958 'ok' => '1.302182', 17959 'overload' => '1.33', 17960 're' => '0.41', 17961 'subs' => '1.04', 17962 'utf8' => '1.24', 17963 'version' => '0.9928', 17964 'version::regex' => '0.9928', 17965 }, 17966 removed => { 17967 } 17968 }, 17969 5.033004 => { 17970 delta_from => 5.033003, 17971 changed => { 17972 'B' => '1.82', 17973 'B::Op_private' => '5.033004', 17974 'Config' => '5.033004', 17975 'Cwd' => '3.79', 17976 'ExtUtils::CBuilder' => '0.280235', 17977 'ExtUtils::CBuilder::Base'=> '0.280235', 17978 'ExtUtils::CBuilder::Platform::Unix'=> '0.280235', 17979 'ExtUtils::CBuilder::Platform::VMS'=> '0.280235', 17980 'ExtUtils::CBuilder::Platform::Windows'=> '0.280235', 17981 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280235', 17982 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280235', 17983 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280235', 17984 'ExtUtils::CBuilder::Platform::aix'=> '0.280235', 17985 'ExtUtils::CBuilder::Platform::android'=> '0.280235', 17986 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280235', 17987 'ExtUtils::CBuilder::Platform::darwin'=> '0.280235', 17988 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280235', 17989 'ExtUtils::CBuilder::Platform::os2'=> '0.280235', 17990 'ExtUtils::Command' => '7.56', 17991 'ExtUtils::Command::MM' => '7.56', 17992 'ExtUtils::Liblist' => '7.56', 17993 'ExtUtils::Liblist::Kid'=> '7.56', 17994 'ExtUtils::MM' => '7.56', 17995 'ExtUtils::MM_AIX' => '7.56', 17996 'ExtUtils::MM_Any' => '7.56', 17997 'ExtUtils::MM_BeOS' => '7.56', 17998 'ExtUtils::MM_Cygwin' => '7.56', 17999 'ExtUtils::MM_DOS' => '7.56', 18000 'ExtUtils::MM_Darwin' => '7.56', 18001 'ExtUtils::MM_MacOS' => '7.56', 18002 'ExtUtils::MM_NW5' => '7.56', 18003 'ExtUtils::MM_OS2' => '7.56', 18004 'ExtUtils::MM_OS390' => '7.56', 18005 'ExtUtils::MM_QNX' => '7.56', 18006 'ExtUtils::MM_UWIN' => '7.56', 18007 'ExtUtils::MM_Unix' => '7.56', 18008 'ExtUtils::MM_VMS' => '7.56', 18009 'ExtUtils::MM_VOS' => '7.56', 18010 'ExtUtils::MM_Win32' => '7.56', 18011 'ExtUtils::MM_Win95' => '7.56', 18012 'ExtUtils::MY' => '7.56', 18013 'ExtUtils::MakeMaker' => '7.56', 18014 'ExtUtils::MakeMaker::Config'=> '7.56', 18015 'ExtUtils::MakeMaker::Locale'=> '7.56', 18016 'ExtUtils::MakeMaker::version'=> '7.56', 18017 'ExtUtils::MakeMaker::version::regex'=> '7.56', 18018 'ExtUtils::Mkbootstrap' => '7.56', 18019 'ExtUtils::Mksymlists' => '7.56', 18020 'ExtUtils::testlib' => '7.56', 18021 'File::Fetch' => '1.00', 18022 'File::Path' => '2.18', 18023 'File::Spec' => '3.79', 18024 'File::Spec::AmigaOS' => '3.79', 18025 'File::Spec::Cygwin' => '3.79', 18026 'File::Spec::Epoc' => '3.79', 18027 'File::Spec::Functions' => '3.79', 18028 'File::Spec::Mac' => '3.79', 18029 'File::Spec::OS2' => '3.79', 18030 'File::Spec::Unix' => '3.79', 18031 'File::Spec::VMS' => '3.79', 18032 'IPC::Msg' => '2.09', 18033 'IPC::Semaphore' => '2.09', 18034 'IPC::SharedMem' => '2.09', 18035 'IPC::SysV' => '2.09', 18036 'Module::CoreList' => '5.20201120', 18037 'Module::CoreList::Utils'=> '5.20201120', 18038 'Net::Ping' => '2.74', 18039 'Pod::Html' => '1.26', 18040 'Pod::Simple' => '3.42', 18041 'Pod::Simple::BlackBox' => '3.42', 18042 'Pod::Simple::Checker' => '3.42', 18043 'Pod::Simple::Debug' => '3.42', 18044 'Pod::Simple::DumpAsText'=> '3.42', 18045 'Pod::Simple::DumpAsXML'=> '3.42', 18046 'Pod::Simple::HTML' => '3.42', 18047 'Pod::Simple::HTMLBatch'=> '3.42', 18048 'Pod::Simple::LinkSection'=> '3.42', 18049 'Pod::Simple::Methody' => '3.42', 18050 'Pod::Simple::Progress' => '3.42', 18051 'Pod::Simple::PullParser'=> '3.42', 18052 'Pod::Simple::PullParserEndToken'=> '3.42', 18053 'Pod::Simple::PullParserStartToken'=> '3.42', 18054 'Pod::Simple::PullParserTextToken'=> '3.42', 18055 'Pod::Simple::PullParserToken'=> '3.42', 18056 'Pod::Simple::RTF' => '3.42', 18057 'Pod::Simple::Search' => '3.42', 18058 'Pod::Simple::SimpleTree'=> '3.42', 18059 'Pod::Simple::Text' => '3.42', 18060 'Pod::Simple::TextContent'=> '3.42', 18061 'Pod::Simple::TiedOutFH'=> '3.42', 18062 'Pod::Simple::Transcode'=> '3.42', 18063 'Pod::Simple::TranscodeDumb'=> '3.42', 18064 'Pod::Simple::TranscodeSmart'=> '3.42', 18065 'Pod::Simple::XHTML' => '3.42', 18066 'Pod::Simple::XMLOutStream'=> '3.42', 18067 'Test2' => '1.302183', 18068 'Test2::API' => '1.302183', 18069 'Test2::API::Breakage' => '1.302183', 18070 'Test2::API::Context' => '1.302183', 18071 'Test2::API::Instance' => '1.302183', 18072 'Test2::API::InterceptResult'=> '1.302183', 18073 'Test2::API::InterceptResult::Event'=> '1.302183', 18074 'Test2::API::InterceptResult::Facet'=> '1.302183', 18075 'Test2::API::InterceptResult::Hub'=> '1.302183', 18076 'Test2::API::InterceptResult::Squasher'=> '1.302183', 18077 'Test2::API::Stack' => '1.302183', 18078 'Test2::Event' => '1.302183', 18079 'Test2::Event::Bail' => '1.302183', 18080 'Test2::Event::Diag' => '1.302183', 18081 'Test2::Event::Encoding'=> '1.302183', 18082 'Test2::Event::Exception'=> '1.302183', 18083 'Test2::Event::Fail' => '1.302183', 18084 'Test2::Event::Generic' => '1.302183', 18085 'Test2::Event::Note' => '1.302183', 18086 'Test2::Event::Ok' => '1.302183', 18087 'Test2::Event::Pass' => '1.302183', 18088 'Test2::Event::Plan' => '1.302183', 18089 'Test2::Event::Skip' => '1.302183', 18090 'Test2::Event::Subtest' => '1.302183', 18091 'Test2::Event::TAP::Version'=> '1.302183', 18092 'Test2::Event::V2' => '1.302183', 18093 'Test2::Event::Waiting' => '1.302183', 18094 'Test2::EventFacet' => '1.302183', 18095 'Test2::EventFacet::About'=> '1.302183', 18096 'Test2::EventFacet::Amnesty'=> '1.302183', 18097 'Test2::EventFacet::Assert'=> '1.302183', 18098 'Test2::EventFacet::Control'=> '1.302183', 18099 'Test2::EventFacet::Error'=> '1.302183', 18100 'Test2::EventFacet::Hub'=> '1.302183', 18101 'Test2::EventFacet::Info'=> '1.302183', 18102 'Test2::EventFacet::Info::Table'=> '1.302183', 18103 'Test2::EventFacet::Meta'=> '1.302183', 18104 'Test2::EventFacet::Parent'=> '1.302183', 18105 'Test2::EventFacet::Plan'=> '1.302183', 18106 'Test2::EventFacet::Render'=> '1.302183', 18107 'Test2::EventFacet::Trace'=> '1.302183', 18108 'Test2::Formatter' => '1.302183', 18109 'Test2::Formatter::TAP' => '1.302183', 18110 'Test2::Hub' => '1.302183', 18111 'Test2::Hub::Interceptor'=> '1.302183', 18112 'Test2::Hub::Interceptor::Terminator'=> '1.302183', 18113 'Test2::Hub::Subtest' => '1.302183', 18114 'Test2::IPC' => '1.302183', 18115 'Test2::IPC::Driver' => '1.302183', 18116 'Test2::IPC::Driver::Files'=> '1.302183', 18117 'Test2::Tools::Tiny' => '1.302183', 18118 'Test2::Util' => '1.302183', 18119 'Test2::Util::ExternalMeta'=> '1.302183', 18120 'Test2::Util::Facets2Legacy'=> '1.302183', 18121 'Test2::Util::HashBase' => '1.302183', 18122 'Test2::Util::Trace' => '1.302183', 18123 'Test::Builder' => '1.302183', 18124 'Test::Builder::Formatter'=> '1.302183', 18125 'Test::Builder::Module' => '1.302183', 18126 'Test::Builder::Tester' => '1.302183', 18127 'Test::Builder::Tester::Color'=> '1.302183', 18128 'Test::Builder::TodoDiag'=> '1.302183', 18129 'Test::More' => '1.302183', 18130 'Test::Simple' => '1.302183', 18131 'Test::Tester' => '1.302183', 18132 'Test::Tester::Capture' => '1.302183', 18133 'Test::Tester::CaptureRunner'=> '1.302183', 18134 'Test::Tester::Delegate'=> '1.302183', 18135 'Test::use::ok' => '1.302183', 18136 'XS::APItest' => '1.13', 18137 'ok' => '1.302183', 18138 'perlfaq' => '5.20201107', 18139 }, 18140 removed => { 18141 } 18142 }, 18143 5.033005 => { 18144 delta_from => 5.033004, 18145 changed => { 18146 'App::Prove' => '3.43', 18147 'App::Prove::State' => '3.43', 18148 'App::Prove::State::Result'=> '3.43', 18149 'App::Prove::State::Result::Test'=> '3.43', 18150 'B::Op_private' => '5.033005', 18151 'Carp' => '1.51', 18152 'Carp::Heavy' => '1.51', 18153 'Config' => '5.033005', 18154 'Config::Perl::V' => '0.33', 18155 'Cwd' => '3.80', 18156 'DynaLoader' => '1.49', 18157 'Encode' => '3.08', 18158 'Encode::GSM0338' => '2.09', 18159 'ExtUtils::Install' => '2.20', 18160 'ExtUtils::Installed' => '2.20', 18161 'ExtUtils::Packlist' => '2.20', 18162 'ExtUtils::ParseXS' => '3.42', 18163 'ExtUtils::ParseXS::Constants'=> '3.42', 18164 'ExtUtils::ParseXS::CountLines'=> '3.42', 18165 'ExtUtils::ParseXS::Eval'=> '3.42', 18166 'ExtUtils::ParseXS::Utilities'=> '3.42', 18167 'File::Copy' => '2.35', 18168 'File::Find' => '1.38', 18169 'File::Spec' => '3.80', 18170 'File::Spec::AmigaOS' => '3.80', 18171 'File::Spec::Cygwin' => '3.80', 18172 'File::Spec::Epoc' => '3.80', 18173 'File::Spec::Functions' => '3.80', 18174 'File::Spec::Mac' => '3.80', 18175 'File::Spec::OS2' => '3.80', 18176 'File::Spec::Unix' => '3.80', 18177 'File::Spec::VMS' => '3.80', 18178 'File::Spec::Win32' => '3.80', 18179 'Module::CoreList' => '5.20201220', 18180 'Module::CoreList::Utils'=> '5.20201220', 18181 'Net::Cmd' => '3.12', 18182 'Net::Config' => '3.12', 18183 'Net::Domain' => '3.12', 18184 'Net::FTP' => '3.12', 18185 'Net::FTP::A' => '3.12', 18186 'Net::FTP::E' => '3.12', 18187 'Net::FTP::I' => '3.12', 18188 'Net::FTP::L' => '3.12', 18189 'Net::FTP::dataconn' => '3.12', 18190 'Net::NNTP' => '3.12', 18191 'Net::Netrc' => '3.12', 18192 'Net::POP3' => '3.12', 18193 'Net::SMTP' => '3.12', 18194 'Net::Time' => '3.12', 18195 'ODBM_File' => '1.17', 18196 'Opcode' => '1.49', 18197 'POSIX' => '1.96', 18198 'PerlIO::via::QuotedPrint'=> '0.09', 18199 'TAP::Base' => '3.43', 18200 'TAP::Formatter::Base' => '3.43', 18201 'TAP::Formatter::Color' => '3.43', 18202 'TAP::Formatter::Console'=> '3.43', 18203 'TAP::Formatter::Console::ParallelSession'=> '3.43', 18204 'TAP::Formatter::Console::Session'=> '3.43', 18205 'TAP::Formatter::File' => '3.43', 18206 'TAP::Formatter::File::Session'=> '3.43', 18207 'TAP::Formatter::Session'=> '3.43', 18208 'TAP::Harness' => '3.43', 18209 'TAP::Harness::Env' => '3.43', 18210 'TAP::Object' => '3.43', 18211 'TAP::Parser' => '3.43', 18212 'TAP::Parser::Aggregator'=> '3.43', 18213 'TAP::Parser::Grammar' => '3.43', 18214 'TAP::Parser::Iterator' => '3.43', 18215 'TAP::Parser::Iterator::Array'=> '3.43', 18216 'TAP::Parser::Iterator::Process'=> '3.43', 18217 'TAP::Parser::Iterator::Stream'=> '3.43', 18218 'TAP::Parser::IteratorFactory'=> '3.43', 18219 'TAP::Parser::Multiplexer'=> '3.43', 18220 'TAP::Parser::Result' => '3.43', 18221 'TAP::Parser::Result::Bailout'=> '3.43', 18222 'TAP::Parser::Result::Comment'=> '3.43', 18223 'TAP::Parser::Result::Plan'=> '3.43', 18224 'TAP::Parser::Result::Pragma'=> '3.43', 18225 'TAP::Parser::Result::Test'=> '3.43', 18226 'TAP::Parser::Result::Unknown'=> '3.43', 18227 'TAP::Parser::Result::Version'=> '3.43', 18228 'TAP::Parser::Result::YAML'=> '3.43', 18229 'TAP::Parser::ResultFactory'=> '3.43', 18230 'TAP::Parser::Scheduler'=> '3.43', 18231 'TAP::Parser::Scheduler::Job'=> '3.43', 18232 'TAP::Parser::Scheduler::Spinner'=> '3.43', 18233 'TAP::Parser::Source' => '3.43', 18234 'TAP::Parser::SourceHandler'=> '3.43', 18235 'TAP::Parser::SourceHandler::Executable'=> '3.43', 18236 'TAP::Parser::SourceHandler::File'=> '3.43', 18237 'TAP::Parser::SourceHandler::Handle'=> '3.43', 18238 'TAP::Parser::SourceHandler::Perl'=> '3.43', 18239 'TAP::Parser::SourceHandler::RawTAP'=> '3.43', 18240 'TAP::Parser::YAMLish::Reader'=> '3.43', 18241 'TAP::Parser::YAMLish::Writer'=> '3.43', 18242 'Test::Harness' => '3.43', 18243 'Text::Balanced' => '2.04', 18244 'Time::HiRes' => '1.9766', 18245 'XS::APItest' => '1.14', 18246 'warnings' => '1.49', 18247 }, 18248 removed => { 18249 } 18250 }, 18251 5.033006 => { 18252 delta_from => 5.033005, 18253 changed => { 18254 'B::Op_private' => '5.033006', 18255 'Carp' => '1.52', 18256 'Carp::Heavy' => '1.52', 18257 'Compress::Raw::Bzip2' => '2.100', 18258 'Compress::Raw::Zlib' => '2.100', 18259 'Compress::Zlib' => '2.100', 18260 'Config' => '5.033006', 18261 'DynaLoader' => '1.50', 18262 'ExtUtils::Command' => '7.58', 18263 'ExtUtils::Command::MM' => '7.58', 18264 'ExtUtils::Liblist' => '7.58', 18265 'ExtUtils::Liblist::Kid'=> '7.58', 18266 'ExtUtils::MM' => '7.58', 18267 'ExtUtils::MM_AIX' => '7.58', 18268 'ExtUtils::MM_Any' => '7.58', 18269 'ExtUtils::MM_BeOS' => '7.58', 18270 'ExtUtils::MM_Cygwin' => '7.58', 18271 'ExtUtils::MM_DOS' => '7.58', 18272 'ExtUtils::MM_Darwin' => '7.58', 18273 'ExtUtils::MM_MacOS' => '7.58', 18274 'ExtUtils::MM_NW5' => '7.58', 18275 'ExtUtils::MM_OS2' => '7.58', 18276 'ExtUtils::MM_OS390' => '7.58', 18277 'ExtUtils::MM_QNX' => '7.58', 18278 'ExtUtils::MM_UWIN' => '7.58', 18279 'ExtUtils::MM_Unix' => '7.58', 18280 'ExtUtils::MM_VMS' => '7.58', 18281 'ExtUtils::MM_VOS' => '7.58', 18282 'ExtUtils::MM_Win32' => '7.58', 18283 'ExtUtils::MM_Win95' => '7.58', 18284 'ExtUtils::MY' => '7.58', 18285 'ExtUtils::MakeMaker' => '7.58', 18286 'ExtUtils::MakeMaker::Config'=> '7.58', 18287 'ExtUtils::MakeMaker::Locale'=> '7.58', 18288 'ExtUtils::MakeMaker::version'=> '7.58', 18289 'ExtUtils::MakeMaker::version::regex'=> '7.58', 18290 'ExtUtils::Manifest' => '1.73', 18291 'ExtUtils::Mkbootstrap' => '7.58', 18292 'ExtUtils::Mksymlists' => '7.58', 18293 'ExtUtils::testlib' => '7.58', 18294 'GDBM_File' => '1.19', 18295 'IO' => '1.45', 18296 'IO::Compress::Adapter::Bzip2'=> '2.100', 18297 'IO::Compress::Adapter::Deflate'=> '2.100', 18298 'IO::Compress::Adapter::Identity'=> '2.100', 18299 'IO::Compress::Base' => '2.100', 18300 'IO::Compress::Base::Common'=> '2.100', 18301 'IO::Compress::Bzip2' => '2.100', 18302 'IO::Compress::Deflate' => '2.100', 18303 'IO::Compress::Gzip' => '2.100', 18304 'IO::Compress::Gzip::Constants'=> '2.100', 18305 'IO::Compress::RawDeflate'=> '2.100', 18306 'IO::Compress::Zip' => '2.100', 18307 'IO::Compress::Zip::Constants'=> '2.100', 18308 'IO::Compress::Zlib::Constants'=> '2.100', 18309 'IO::Compress::Zlib::Extra'=> '2.100', 18310 'IO::Dir' => '1.45', 18311 'IO::File' => '1.45', 18312 'IO::Handle' => '1.45', 18313 'IO::Pipe' => '1.45', 18314 'IO::Poll' => '1.45', 18315 'IO::Seekable' => '1.45', 18316 'IO::Select' => '1.45', 18317 'IO::Socket' => '1.45', 18318 'IO::Socket::INET' => '1.45', 18319 'IO::Socket::UNIX' => '1.45', 18320 'IO::Uncompress::Adapter::Bunzip2'=> '2.100', 18321 'IO::Uncompress::Adapter::Identity'=> '2.100', 18322 'IO::Uncompress::Adapter::Inflate'=> '2.100', 18323 'IO::Uncompress::AnyInflate'=> '2.100', 18324 'IO::Uncompress::AnyUncompress'=> '2.100', 18325 'IO::Uncompress::Base' => '2.100', 18326 'IO::Uncompress::Bunzip2'=> '2.100', 18327 'IO::Uncompress::Gunzip'=> '2.100', 18328 'IO::Uncompress::Inflate'=> '2.100', 18329 'IO::Uncompress::RawInflate'=> '2.100', 18330 'IO::Uncompress::Unzip' => '2.100', 18331 'Module::CoreList' => '5.20210120', 18332 'Module::CoreList::Utils'=> '5.20210120', 18333 'Net::Cmd' => '3.13', 18334 'Net::Config' => '3.13', 18335 'Net::Domain' => '3.13', 18336 'Net::FTP' => '3.13', 18337 'Net::FTP::A' => '3.13', 18338 'Net::FTP::E' => '3.13', 18339 'Net::FTP::I' => '3.13', 18340 'Net::FTP::L' => '3.13', 18341 'Net::FTP::dataconn' => '3.13', 18342 'Net::NNTP' => '3.13', 18343 'Net::Netrc' => '3.13', 18344 'Net::POP3' => '3.13', 18345 'Net::SMTP' => '3.13', 18346 'Net::Time' => '3.13', 18347 'POSIX' => '1.97', 18348 'Socket' => '2.031', 18349 'XS::APItest' => '1.15', 18350 'feature' => '1.62', 18351 'warnings' => '1.50', 18352 }, 18353 removed => { 18354 } 18355 }, 18356 5.032001 => { 18357 delta_from => 5.032000, 18358 changed => { 18359 'B::Op_private' => '5.032001', 18360 'Config' => '5.032001', 18361 'Data::Dumper' => '2.174_01', 18362 'DynaLoader' => '1.47_01', 18363 'ExtUtils::Liblist::Kid'=> '7.44_01', 18364 'Module::CoreList' => '5.20210123', 18365 'Module::CoreList::Utils'=> '5.20210123', 18366 'Opcode' => '1.48', 18367 'Safe' => '2.41_01', 18368 'Win32API::File::inc::ExtUtils::Myconst2perl'=> '1', 18369 }, 18370 removed => { 18371 } 18372 }, 18373 5.033007 => { 18374 delta_from => 5.033006, 18375 changed => { 18376 'B::Deparse' => '1.56', 18377 'B::Op_private' => '5.033007', 18378 'Config' => '5.033007', 18379 'ExtUtils::CBuilder' => '0.280236', 18380 'ExtUtils::CBuilder::Base'=> '0.280236', 18381 'ExtUtils::CBuilder::Platform::Unix'=> '0.280236', 18382 'ExtUtils::CBuilder::Platform::VMS'=> '0.280236', 18383 'ExtUtils::CBuilder::Platform::Windows'=> '0.280236', 18384 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280236', 18385 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280236', 18386 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280236', 18387 'ExtUtils::CBuilder::Platform::aix'=> '0.280236', 18388 'ExtUtils::CBuilder::Platform::android'=> '0.280236', 18389 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280236', 18390 'ExtUtils::CBuilder::Platform::darwin'=> '0.280236', 18391 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280236', 18392 'ExtUtils::CBuilder::Platform::os2'=> '0.280236', 18393 'ExtUtils::Command' => '7.60', 18394 'ExtUtils::Command::MM' => '7.60', 18395 'ExtUtils::Liblist' => '7.60', 18396 'ExtUtils::Liblist::Kid'=> '7.60', 18397 'ExtUtils::MM' => '7.60', 18398 'ExtUtils::MM_AIX' => '7.60', 18399 'ExtUtils::MM_Any' => '7.60', 18400 'ExtUtils::MM_BeOS' => '7.60', 18401 'ExtUtils::MM_Cygwin' => '7.60', 18402 'ExtUtils::MM_DOS' => '7.60', 18403 'ExtUtils::MM_Darwin' => '7.60', 18404 'ExtUtils::MM_MacOS' => '7.60', 18405 'ExtUtils::MM_NW5' => '7.60', 18406 'ExtUtils::MM_OS2' => '7.60', 18407 'ExtUtils::MM_OS390' => '7.60', 18408 'ExtUtils::MM_QNX' => '7.60', 18409 'ExtUtils::MM_UWIN' => '7.60', 18410 'ExtUtils::MM_Unix' => '7.60', 18411 'ExtUtils::MM_VMS' => '7.60', 18412 'ExtUtils::MM_VOS' => '7.60', 18413 'ExtUtils::MM_Win32' => '7.60', 18414 'ExtUtils::MM_Win95' => '7.60', 18415 'ExtUtils::MY' => '7.60', 18416 'ExtUtils::MakeMaker' => '7.60', 18417 'ExtUtils::MakeMaker::Config'=> '7.60', 18418 'ExtUtils::MakeMaker::Locale'=> '7.60', 18419 'ExtUtils::MakeMaker::version'=> '7.60', 18420 'ExtUtils::MakeMaker::version::regex'=> '7.60', 18421 'ExtUtils::Mkbootstrap' => '7.60', 18422 'ExtUtils::Mksymlists' => '7.60', 18423 'ExtUtils::PL2Bat' => '0.004', 18424 'ExtUtils::testlib' => '7.60', 18425 'Fatal' => '2.34', 18426 'File::Find' => '1.39', 18427 'Hash::Util' => '0.25', 18428 'IO' => '1.46', 18429 'IO::Dir' => '1.46', 18430 'IO::File' => '1.46', 18431 'IO::Handle' => '1.46', 18432 'IO::Pipe' => '1.46', 18433 'IO::Poll' => '1.46', 18434 'IO::Seekable' => '1.46', 18435 'IO::Select' => '1.46', 18436 'IO::Socket' => '1.46', 18437 'IO::Socket::INET' => '1.46', 18438 'IO::Socket::UNIX' => '1.46', 18439 'JSON::PP' => '4.06', 18440 'JSON::PP::Boolean' => '4.06', 18441 'Module::CoreList' => '5.20210220', 18442 'Module::CoreList::Utils'=> '5.20210220', 18443 'Opcode' => '1.50', 18444 'PerlIO::encoding' => '0.30', 18445 'Time::HiRes' => '1.9767', 18446 'autodie' => '2.34', 18447 'autodie::Scope::Guard' => '2.34', 18448 'autodie::Scope::GuardStack'=> '2.34', 18449 'autodie::Util' => '2.34', 18450 'autodie::exception' => '2.34', 18451 'autodie::exception::system'=> '2.34', 18452 'autodie::hints' => '2.34', 18453 'autodie::skip' => '2.34', 18454 'feature' => '1.63', 18455 'mro' => '1.25_001', 18456 'warnings' => '1.51', 18457 }, 18458 removed => { 18459 } 18460 }, 18461 5.033008 => { 18462 delta_from => 5.033007, 18463 changed => { 18464 'B::Op_private' => '5.033008', 18465 'Compress::Raw::Bzip2' => '2.101', 18466 'Compress::Raw::Zlib' => '2.101', 18467 'Compress::Zlib' => '2.102', 18468 'Config' => '5.033008', 18469 'Data::Dumper' => '2.177', 18470 'IO::Compress::Adapter::Bzip2'=> '2.102', 18471 'IO::Compress::Adapter::Deflate'=> '2.102', 18472 'IO::Compress::Adapter::Identity'=> '2.102', 18473 'IO::Compress::Base' => '2.102', 18474 'IO::Compress::Base::Common'=> '2.102', 18475 'IO::Compress::Bzip2' => '2.102', 18476 'IO::Compress::Deflate' => '2.102', 18477 'IO::Compress::Gzip' => '2.102', 18478 'IO::Compress::Gzip::Constants'=> '2.102', 18479 'IO::Compress::RawDeflate'=> '2.102', 18480 'IO::Compress::Zip' => '2.102', 18481 'IO::Compress::Zip::Constants'=> '2.102', 18482 'IO::Compress::Zlib::Constants'=> '2.102', 18483 'IO::Compress::Zlib::Extra'=> '2.102', 18484 'IO::Uncompress::Adapter::Bunzip2'=> '2.102', 18485 'IO::Uncompress::Adapter::Identity'=> '2.102', 18486 'IO::Uncompress::Adapter::Inflate'=> '2.102', 18487 'IO::Uncompress::AnyInflate'=> '2.102', 18488 'IO::Uncompress::AnyUncompress'=> '2.102', 18489 'IO::Uncompress::Base' => '2.102', 18490 'IO::Uncompress::Bunzip2'=> '2.102', 18491 'IO::Uncompress::Gunzip'=> '2.102', 18492 'IO::Uncompress::Inflate'=> '2.102', 18493 'IO::Uncompress::RawInflate'=> '2.102', 18494 'IO::Uncompress::Unzip' => '2.102', 18495 'Module::CoreList' => '5.20210320', 18496 'Module::CoreList::Utils'=> '5.20210320', 18497 'Pod::Html' => '1.27', 18498 'Win32' => '0.57', 18499 }, 18500 removed => { 18501 } 18502 }, 18503 5.033009 => { 18504 delta_from => 5.033008, 18505 changed => { 18506 'B::Op_private' => '5.033009', 18507 'Config' => '5.033009', 18508 'Data::Dumper' => '2.178', 18509 'ExtUtils::Command' => '7.62', 18510 'ExtUtils::Command::MM' => '7.62', 18511 'ExtUtils::Liblist' => '7.62', 18512 'ExtUtils::Liblist::Kid'=> '7.62', 18513 'ExtUtils::MM' => '7.62', 18514 'ExtUtils::MM_AIX' => '7.62', 18515 'ExtUtils::MM_Any' => '7.62', 18516 'ExtUtils::MM_BeOS' => '7.62', 18517 'ExtUtils::MM_Cygwin' => '7.62', 18518 'ExtUtils::MM_DOS' => '7.62', 18519 'ExtUtils::MM_Darwin' => '7.62', 18520 'ExtUtils::MM_MacOS' => '7.62', 18521 'ExtUtils::MM_NW5' => '7.62', 18522 'ExtUtils::MM_OS2' => '7.62', 18523 'ExtUtils::MM_OS390' => '7.62', 18524 'ExtUtils::MM_QNX' => '7.62', 18525 'ExtUtils::MM_UWIN' => '7.62', 18526 'ExtUtils::MM_Unix' => '7.62', 18527 'ExtUtils::MM_VMS' => '7.62', 18528 'ExtUtils::MM_VOS' => '7.62', 18529 'ExtUtils::MM_Win32' => '7.62', 18530 'ExtUtils::MM_Win95' => '7.62', 18531 'ExtUtils::MY' => '7.62', 18532 'ExtUtils::MakeMaker' => '7.62', 18533 'ExtUtils::MakeMaker::Config'=> '7.62', 18534 'ExtUtils::MakeMaker::Locale'=> '7.62', 18535 'ExtUtils::MakeMaker::version'=> '7.62', 18536 'ExtUtils::MakeMaker::version::regex'=> '7.62', 18537 'ExtUtils::Mkbootstrap' => '7.62', 18538 'ExtUtils::Mksymlists' => '7.62', 18539 'ExtUtils::ParseXS' => '3.43', 18540 'ExtUtils::ParseXS::Constants'=> '3.43', 18541 'ExtUtils::ParseXS::CountLines'=> '3.43', 18542 'ExtUtils::ParseXS::Eval'=> '3.43', 18543 'ExtUtils::ParseXS::Utilities'=> '3.43', 18544 'ExtUtils::Typemaps' => '3.43', 18545 'ExtUtils::Typemaps::Cmd'=> '3.43', 18546 'ExtUtils::Typemaps::InputMap'=> '3.43', 18547 'ExtUtils::Typemaps::OutputMap'=> '3.43', 18548 'ExtUtils::Typemaps::Type'=> '3.43', 18549 'ExtUtils::testlib' => '7.62', 18550 'Module::CoreList' => '5.20210420', 18551 'Module::CoreList::Utils'=> '5.20210420', 18552 'NEXT' => '0.68', 18553 'XS::APItest' => '1.16', 18554 'feature' => '1.64', 18555 'perlfaq' => '5.20210411', 18556 }, 18557 removed => { 18558 } 18559 }, 18560 5.034000 => { 18561 delta_from => 5.033009, 18562 changed => { 18563 'B::Op_private' => '5.034000', 18564 'Config' => '5.034', 18565 'Data::Dumper' => '2.179', 18566 'Module::CoreList' => '5.20210520', 18567 'Module::CoreList::Utils'=> '5.20210520', 18568 'experimental' => '0.024', 18569 }, 18570 removed => { 18571 } 18572 }, 18573 5.035000 => { 18574 delta_from => 5.034, 18575 changed => { 18576 'B::Op_private' => '5.035000', 18577 'Config' => '5.035', 18578 'Module::CoreList' => '5.20210521', 18579 'Module::CoreList::Utils'=> '5.20210521', 18580 'feature' => '1.65', 18581 }, 18582 removed => { 18583 } 18584 }, 18585 5.035001 => { 18586 delta_from => 5.035000, 18587 changed => { 18588 'B::Deparse' => '1.57', 18589 'B::Op_private' => '5.035001', 18590 'Config' => '5.035001', 18591 'Cwd' => '3.81', 18592 'Data::Dumper' => '2.181', 18593 'File::Copy' => '2.36', 18594 'File::Glob' => '1.35', 18595 'File::Spec' => '3.81', 18596 'File::Spec::AmigaOS' => '3.81', 18597 'File::Spec::Cygwin' => '3.81', 18598 'File::Spec::Epoc' => '3.81', 18599 'File::Spec::Functions' => '3.81', 18600 'File::Spec::Mac' => '3.81', 18601 'File::Spec::OS2' => '3.81', 18602 'File::Spec::Unix' => '3.81', 18603 'File::Spec::VMS' => '3.81', 18604 'File::Spec::Win32' => '3.81', 18605 'File::stat' => '1.10', 18606 'IO' => '1.47', 18607 'IO::Dir' => '1.47', 18608 'IO::File' => '1.47', 18609 'IO::Handle' => '1.47', 18610 'IO::Pipe' => '1.47', 18611 'IO::Poll' => '1.47', 18612 'IO::Seekable' => '1.47', 18613 'IO::Select' => '1.47', 18614 'IO::Socket' => '1.47', 18615 'IO::Socket::INET' => '1.47', 18616 'IO::Socket::UNIX' => '1.47', 18617 'List::Util' => '1.56', 18618 'List::Util::XS' => '1.56', 18619 'Module::CoreList' => '5.20210620', 18620 'Module::CoreList::Utils'=> '5.20210620', 18621 'Opcode' => '1.51', 18622 'POSIX' => '1.98', 18623 'Scalar::Util' => '1.56', 18624 'Socket' => '2.032', 18625 'Sub::Util' => '1.56', 18626 'Test2' => '1.302185', 18627 'Test2::API' => '1.302185', 18628 'Test2::API::Breakage' => '1.302185', 18629 'Test2::API::Context' => '1.302185', 18630 'Test2::API::Instance' => '1.302185', 18631 'Test2::API::InterceptResult'=> '1.302185', 18632 'Test2::API::InterceptResult::Event'=> '1.302185', 18633 'Test2::API::InterceptResult::Facet'=> '1.302185', 18634 'Test2::API::InterceptResult::Hub'=> '1.302185', 18635 'Test2::API::InterceptResult::Squasher'=> '1.302185', 18636 'Test2::API::Stack' => '1.302185', 18637 'Test2::Event' => '1.302185', 18638 'Test2::Event::Bail' => '1.302185', 18639 'Test2::Event::Diag' => '1.302185', 18640 'Test2::Event::Encoding'=> '1.302185', 18641 'Test2::Event::Exception'=> '1.302185', 18642 'Test2::Event::Fail' => '1.302185', 18643 'Test2::Event::Generic' => '1.302185', 18644 'Test2::Event::Note' => '1.302185', 18645 'Test2::Event::Ok' => '1.302185', 18646 'Test2::Event::Pass' => '1.302185', 18647 'Test2::Event::Plan' => '1.302185', 18648 'Test2::Event::Skip' => '1.302185', 18649 'Test2::Event::Subtest' => '1.302185', 18650 'Test2::Event::TAP::Version'=> '1.302185', 18651 'Test2::Event::V2' => '1.302185', 18652 'Test2::Event::Waiting' => '1.302185', 18653 'Test2::EventFacet' => '1.302185', 18654 'Test2::EventFacet::About'=> '1.302185', 18655 'Test2::EventFacet::Amnesty'=> '1.302185', 18656 'Test2::EventFacet::Assert'=> '1.302185', 18657 'Test2::EventFacet::Control'=> '1.302185', 18658 'Test2::EventFacet::Error'=> '1.302185', 18659 'Test2::EventFacet::Hub'=> '1.302185', 18660 'Test2::EventFacet::Info'=> '1.302185', 18661 'Test2::EventFacet::Info::Table'=> '1.302185', 18662 'Test2::EventFacet::Meta'=> '1.302185', 18663 'Test2::EventFacet::Parent'=> '1.302185', 18664 'Test2::EventFacet::Plan'=> '1.302185', 18665 'Test2::EventFacet::Render'=> '1.302185', 18666 'Test2::EventFacet::Trace'=> '1.302185', 18667 'Test2::Formatter' => '1.302185', 18668 'Test2::Formatter::TAP' => '1.302185', 18669 'Test2::Hub' => '1.302185', 18670 'Test2::Hub::Interceptor'=> '1.302185', 18671 'Test2::Hub::Interceptor::Terminator'=> '1.302185', 18672 'Test2::Hub::Subtest' => '1.302185', 18673 'Test2::IPC' => '1.302185', 18674 'Test2::IPC::Driver' => '1.302185', 18675 'Test2::IPC::Driver::Files'=> '1.302185', 18676 'Test2::Tools::Tiny' => '1.302185', 18677 'Test2::Util' => '1.302185', 18678 'Test2::Util::ExternalMeta'=> '1.302185', 18679 'Test2::Util::Facets2Legacy'=> '1.302185', 18680 'Test2::Util::HashBase' => '1.302185', 18681 'Test2::Util::Trace' => '1.302185', 18682 'Test::Builder' => '1.302185', 18683 'Test::Builder::Formatter'=> '1.302185', 18684 'Test::Builder::Module' => '1.302185', 18685 'Test::Builder::Tester' => '1.302185', 18686 'Test::Builder::Tester::Color'=> '1.302185', 18687 'Test::Builder::TodoDiag'=> '1.302185', 18688 'Test::More' => '1.302185', 18689 'Test::Simple' => '1.302185', 18690 'Test::Tester' => '1.302185', 18691 'Test::Tester::Capture' => '1.302185', 18692 'Test::Tester::CaptureRunner'=> '1.302185', 18693 'Test::Tester::Delegate'=> '1.302185', 18694 'Test::use::ok' => '1.302185', 18695 'Unicode::Collate' => '1.30', 18696 'Unicode::Collate::CJK::Big5'=> '1.30', 18697 'Unicode::Collate::CJK::GB2312'=> '1.30', 18698 'Unicode::Collate::CJK::JISX0208'=> '1.30', 18699 'Unicode::Collate::CJK::Korean'=> '1.30', 18700 'Unicode::Collate::CJK::Pinyin'=> '1.30', 18701 'Unicode::Collate::CJK::Stroke'=> '1.30', 18702 'Unicode::Collate::CJK::Zhuyin'=> '1.30', 18703 'Unicode::Collate::Locale'=> '1.30', 18704 'Unicode::UCD' => '0.76', 18705 'XS::APItest' => '1.17', 18706 'feature' => '1.66', 18707 'ok' => '1.302185', 18708 'open' => '1.13', 18709 'perlfaq' => '5.20210520', 18710 'version' => '0.9929', 18711 'version::regex' => '0.9929', 18712 }, 18713 removed => { 18714 } 18715 }, 18716 5.035002 => { 18717 delta_from => 5.035001, 18718 changed => { 18719 'Amiga::ARexx' => '0.06', 18720 'Amiga::Exec' => '0.03', 18721 'B::Concise' => '1.005', 18722 'B::Op_private' => '5.035002', 18723 'Config' => '5.035002', 18724 'Cwd' => '3.82', 18725 'DB_File' => '1.856', 18726 'Data::Dumper' => '2.183', 18727 'Devel::PPPort' => '3.63', 18728 'Devel::Peek' => '1.31', 18729 'DynaLoader' => '1.51', 18730 'Encode' => '3.10', 18731 'Encode::JP' => '2.05', 18732 'Errno' => '1.34', 18733 'ExtUtils::Miniperl' => '1.11', 18734 'Fcntl' => '1.15', 18735 'File::Find' => '1.39_01', 18736 'File::Glob' => '1.36', 18737 'File::stat' => '1.11', 18738 'GDBM_File' => '1.20', 18739 'Hash::Util' => '0.26', 18740 'Hash::Util::FieldHash' => '1.22', 18741 'I18N::Langinfo' => '0.20', 18742 'IPC::Open2' => '1.06', 18743 'IPC::Open3' => '1.22', 18744 'Math::BigFloat' => '1.999823', 18745 'Math::BigFloat::Trace' => '0.53', 18746 'Math::BigInt' => '1.999823', 18747 'Math::BigInt::Calc' => '1.999823', 18748 'Math::BigInt::FastCalc'=> '0.5010', 18749 'Math::BigInt::Lib' => '1.999823', 18750 'Math::BigInt::Trace' => '0.53', 18751 'Math::BigRat' => '0.2617', 18752 'Module::CoreList' => '5.20210723', 18753 'Module::CoreList::Utils'=> '5.20210723', 18754 'Opcode' => '1.52', 18755 'PerlIO' => '1.12', 18756 'Pod::Functions' => '1.14', 18757 'Pod::Html' => '1.31', 18758 'Pod::Html::Util' => '1.31', 18759 'Pod::Simple' => '3.43', 18760 'Pod::Simple::BlackBox' => '3.43', 18761 'Pod::Simple::Checker' => '3.43', 18762 'Pod::Simple::Debug' => '3.43', 18763 'Pod::Simple::DumpAsText'=> '3.43', 18764 'Pod::Simple::DumpAsXML'=> '3.43', 18765 'Pod::Simple::HTML' => '3.43', 18766 'Pod::Simple::HTMLBatch'=> '3.43', 18767 'Pod::Simple::LinkSection'=> '3.43', 18768 'Pod::Simple::Methody' => '3.43', 18769 'Pod::Simple::Progress' => '3.43', 18770 'Pod::Simple::PullParser'=> '3.43', 18771 'Pod::Simple::PullParserEndToken'=> '3.43', 18772 'Pod::Simple::PullParserStartToken'=> '3.43', 18773 'Pod::Simple::PullParserTextToken'=> '3.43', 18774 'Pod::Simple::PullParserToken'=> '3.43', 18775 'Pod::Simple::RTF' => '3.43', 18776 'Pod::Simple::Search' => '3.43', 18777 'Pod::Simple::SimpleTree'=> '3.43', 18778 'Pod::Simple::Text' => '3.43', 18779 'Pod::Simple::TextContent'=> '3.43', 18780 'Pod::Simple::TiedOutFH'=> '3.43', 18781 'Pod::Simple::Transcode'=> '3.43', 18782 'Pod::Simple::TranscodeDumb'=> '3.43', 18783 'Pod::Simple::TranscodeSmart'=> '3.43', 18784 'Pod::Simple::XHTML' => '3.43', 18785 'Pod::Simple::XMLOutStream'=> '3.43', 18786 'Sys::Hostname' => '1.24', 18787 'Text::Tabs' => '2021.0717', 18788 'Text::Wrap' => '2021.0717', 18789 'Time::HiRes' => '1.9768', 18790 'Unicode::UCD' => '0.77', 18791 'VMS::Filespec' => '1.13', 18792 'VMS::Stdio' => '2.46', 18793 'XSLoader' => '0.31', 18794 'bigint' => '0.53', 18795 'bignum' => '0.53', 18796 'bigrat' => '0.53', 18797 'if' => '0.0610', 18798 'threads' => '2.27', 18799 'warnings' => '1.52', 18800 }, 18801 removed => { 18802 } 18803 }, 18804 5.035003 => { 18805 delta_from => 5.035002, 18806 changed => { 18807 'Archive::Tar' => '2.40', 18808 'Archive::Tar::Constant'=> '2.40', 18809 'Archive::Tar::File' => '2.40', 18810 'B::Op_private' => '5.035003', 18811 'Config' => '5.035003', 18812 'Encode' => '3.12', 18813 'Encode::GSM0338' => '2.10', 18814 'Encode::Unicode' => '2.19', 18815 'Module::CoreList' => '5.20210820', 18816 'Module::CoreList::Utils'=> '5.20210820', 18817 'Net::hostent' => '1.03', 18818 'Opcode' => '1.53', 18819 'POSIX' => '1.99', 18820 'Pod::Html' => '1.32', 18821 'Pod::Html::Util' => '1.32', 18822 'Storable' => '3.24', 18823 'Text::Tabs' => '2021.0804', 18824 'Text::Wrap' => '2021.0804', 18825 'Time::HiRes' => '1.9769', 18826 'Unicode::Normalize' => '1.30', 18827 'XS::APItest' => '1.18', 18828 'diagnostics' => '1.38', 18829 'feature' => '1.67', 18830 'sort' => '2.05', 18831 'threads::shared' => '1.63', 18832 'warnings' => '1.53', 18833 }, 18834 removed => { 18835 } 18836 }, 18837 5.035004 => { 18838 delta_from => 5.035003, 18839 changed => { 18840 'B' => '1.83', 18841 'B::Deparse' => '1.58', 18842 'B::Op_private' => '5.035004', 18843 'Config' => '5.035004', 18844 'Devel::Peek' => '1.32', 18845 'Exporter' => '5.77', 18846 'Exporter::Heavy' => '5.77', 18847 'ExtUtils::ParseXS' => '3.44', 18848 'ExtUtils::ParseXS::Constants'=> '3.44', 18849 'ExtUtils::ParseXS::CountLines'=> '3.44', 18850 'ExtUtils::ParseXS::Eval'=> '3.44', 18851 'ExtUtils::ParseXS::Utilities'=> '3.44', 18852 'ExtUtils::Typemaps' => '3.44', 18853 'ExtUtils::Typemaps::Cmd'=> '3.44', 18854 'ExtUtils::Typemaps::InputMap'=> '3.44', 18855 'ExtUtils::Typemaps::OutputMap'=> '3.44', 18856 'ExtUtils::Typemaps::Type'=> '3.44', 18857 'Hash::Util::FieldHash' => '1.23', 18858 'IO' => '1.48', 18859 'IO::Dir' => '1.48', 18860 'IO::File' => '1.48', 18861 'IO::Handle' => '1.48', 18862 'IO::Pipe' => '1.48', 18863 'IO::Poll' => '1.48', 18864 'IO::Seekable' => '1.48', 18865 'IO::Select' => '1.48', 18866 'IO::Socket' => '1.48', 18867 'IO::Socket::INET' => '1.48', 18868 'IO::Socket::UNIX' => '1.48', 18869 'List::Util' => '1.56_001', 18870 'List::Util::XS' => '1.56_001', 18871 'Module::CoreList' => '5.20210920', 18872 'Module::CoreList::Utils'=> '5.20210920', 18873 'Opcode' => '1.54', 18874 'Pod::Html' => '1.33', 18875 'Pod::Html::Util' => '1.33', 18876 'Scalar::Util' => '1.56_001', 18877 'Storable' => '3.25', 18878 'Sub::Util' => '1.56_001', 18879 'Text::Tabs' => '2021.0814', 18880 'Text::Wrap' => '2021.0814', 18881 'UNIVERSAL' => '1.14', 18882 'Unicode' => '14.0.0', 18883 'Unicode::Collate' => '1.31', 18884 'Unicode::Collate::CJK::Big5'=> '1.31', 18885 'Unicode::Collate::CJK::GB2312'=> '1.31', 18886 'Unicode::Collate::CJK::JISX0208'=> '1.31', 18887 'Unicode::Collate::CJK::Korean'=> '1.31', 18888 'Unicode::Collate::CJK::Pinyin'=> '1.31', 18889 'Unicode::Collate::CJK::Stroke'=> '1.31', 18890 'Unicode::Collate::CJK::Zhuyin'=> '1.31', 18891 'Unicode::Collate::Locale'=> '1.31', 18892 'Unicode::UCD' => '0.78', 18893 'XS::APItest' => '1.19', 18894 'XS::Typemap' => '0.19', 18895 'attributes' => '0.34', 18896 'feature' => '1.68', 18897 'mro' => '1.26', 18898 'threads::shared' => '1.64', 18899 'warnings' => '1.54', 18900 }, 18901 removed => { 18902 } 18903 }, 18904 5.035005 => { 18905 delta_from => 5.035004, 18906 changed => { 18907 'B::Concise' => '1.006', 18908 'B::Deparse' => '1.59', 18909 'B::Op_private' => '5.035005', 18910 'Config' => '5.035005', 18911 'Digest' => '1.20', 18912 'Digest::base' => '1.20', 18913 'Digest::file' => '1.20', 18914 'DynaLoader' => '1.52', 18915 'Encode' => '3.16', 18916 'Errno' => '1.35', 18917 'File::Copy' => '2.37', 18918 'File::Spec::Unix' => '3.82', 18919 'FindBin' => '1.53', 18920 'GDBM_File' => '1.21', 18921 'HTTP::Tiny' => '0.078', 18922 'I18N::Langinfo' => '0.21', 18923 'IO::Dir' => '1.49', 18924 'IO::Pipe' => '1.49', 18925 'IO::Poll' => '1.49', 18926 'IO::Select' => '1.49', 18927 'IO::Socket' => '1.49', 18928 'IO::Socket::INET' => '1.49', 18929 'IO::Socket::UNIX' => '1.49', 18930 'List::Util' => '1.60', 18931 'List::Util::XS' => '1.60', 18932 'Math::BigRat::Trace' => '0.63', 18933 'Module::CoreList' => '5.20211020', 18934 'Module::CoreList::Utils'=> '5.20211020', 18935 'POSIX' => '2.01', 18936 'Scalar::Util' => '1.60', 18937 'Sub::Util' => '1.60', 18938 'Test2' => '1.302188', 18939 'Test2::API' => '1.302188', 18940 'Test2::API::Breakage' => '1.302188', 18941 'Test2::API::Context' => '1.302188', 18942 'Test2::API::Instance' => '1.302188', 18943 'Test2::API::InterceptResult'=> '1.302188', 18944 'Test2::API::InterceptResult::Event'=> '1.302188', 18945 'Test2::API::InterceptResult::Facet'=> '1.302188', 18946 'Test2::API::InterceptResult::Hub'=> '1.302188', 18947 'Test2::API::InterceptResult::Squasher'=> '1.302188', 18948 'Test2::API::Stack' => '1.302188', 18949 'Test2::Event' => '1.302188', 18950 'Test2::Event::Bail' => '1.302188', 18951 'Test2::Event::Diag' => '1.302188', 18952 'Test2::Event::Encoding'=> '1.302188', 18953 'Test2::Event::Exception'=> '1.302188', 18954 'Test2::Event::Fail' => '1.302188', 18955 'Test2::Event::Generic' => '1.302188', 18956 'Test2::Event::Note' => '1.302188', 18957 'Test2::Event::Ok' => '1.302188', 18958 'Test2::Event::Pass' => '1.302188', 18959 'Test2::Event::Plan' => '1.302188', 18960 'Test2::Event::Skip' => '1.302188', 18961 'Test2::Event::Subtest' => '1.302188', 18962 'Test2::Event::TAP::Version'=> '1.302188', 18963 'Test2::Event::V2' => '1.302188', 18964 'Test2::Event::Waiting' => '1.302188', 18965 'Test2::EventFacet' => '1.302188', 18966 'Test2::EventFacet::About'=> '1.302188', 18967 'Test2::EventFacet::Amnesty'=> '1.302188', 18968 'Test2::EventFacet::Assert'=> '1.302188', 18969 'Test2::EventFacet::Control'=> '1.302188', 18970 'Test2::EventFacet::Error'=> '1.302188', 18971 'Test2::EventFacet::Hub'=> '1.302188', 18972 'Test2::EventFacet::Info'=> '1.302188', 18973 'Test2::EventFacet::Info::Table'=> '1.302188', 18974 'Test2::EventFacet::Meta'=> '1.302188', 18975 'Test2::EventFacet::Parent'=> '1.302188', 18976 'Test2::EventFacet::Plan'=> '1.302188', 18977 'Test2::EventFacet::Render'=> '1.302188', 18978 'Test2::EventFacet::Trace'=> '1.302188', 18979 'Test2::Formatter' => '1.302188', 18980 'Test2::Formatter::TAP' => '1.302188', 18981 'Test2::Hub' => '1.302188', 18982 'Test2::Hub::Interceptor'=> '1.302188', 18983 'Test2::Hub::Interceptor::Terminator'=> '1.302188', 18984 'Test2::Hub::Subtest' => '1.302188', 18985 'Test2::IPC' => '1.302188', 18986 'Test2::IPC::Driver' => '1.302188', 18987 'Test2::IPC::Driver::Files'=> '1.302188', 18988 'Test2::Tools::Tiny' => '1.302188', 18989 'Test2::Util' => '1.302188', 18990 'Test2::Util::ExternalMeta'=> '1.302188', 18991 'Test2::Util::Facets2Legacy'=> '1.302188', 18992 'Test2::Util::HashBase' => '1.302188', 18993 'Test2::Util::Trace' => '1.302188', 18994 'Test::Builder' => '1.302188', 18995 'Test::Builder::Formatter'=> '1.302188', 18996 'Test::Builder::Module' => '1.302188', 18997 'Test::Builder::Tester' => '1.302188', 18998 'Test::Builder::Tester::Color'=> '1.302188', 18999 'Test::Builder::TodoDiag'=> '1.302188', 19000 'Test::More' => '1.302188', 19001 'Test::Simple' => '1.302188', 19002 'Test::Tester' => '1.302188', 19003 'Test::Tester::Capture' => '1.302188', 19004 'Test::Tester::CaptureRunner'=> '1.302188', 19005 'Test::Tester::Delegate'=> '1.302188', 19006 'Test::use::ok' => '1.302188', 19007 'Tie::Handle' => '4.3', 19008 'Tie::Hash' => '1.06', 19009 'Tie::Scalar' => '1.06', 19010 'XS::APItest' => '1.20', 19011 'experimental' => '0.025', 19012 'ok' => '1.302188', 19013 'warnings' => '1.55', 19014 }, 19015 removed => { 19016 } 19017 }, 19018 5.035006 => { 19019 delta_from => 5.035005, 19020 changed => { 19021 'B::Op_private' => '5.035006', 19022 'Config' => '5.035006', 19023 'File::Glob' => '1.37', 19024 'File::stat' => '1.12', 19025 'GDBM_File' => '1.22', 19026 'HTTP::Tiny' => '0.080', 19027 'Math::BigFloat' => '1.999827', 19028 'Math::BigFloat::Trace' => '0.63', 19029 'Math::BigInt' => '1.999827', 19030 'Math::BigInt::Calc' => '1.999827', 19031 'Math::BigInt::FastCalc'=> '0.5012', 19032 'Math::BigInt::Lib' => '1.999827', 19033 'Math::BigInt::Trace' => '0.63', 19034 'Math::BigRat' => '0.2620', 19035 'Module::CoreList' => '5.20211120', 19036 'Module::CoreList::Utils'=> '5.20211120', 19037 'POSIX' => '2.02', 19038 'bigint' => '0.63', 19039 'bignum' => '0.63', 19040 'bigrat' => '0.63', 19041 'diagnostics' => '1.39', 19042 'feature' => '1.69', 19043 'warnings' => '1.56', 19044 }, 19045 removed => { 19046 } 19047 }, 19048 5.035007 => { 19049 delta_from => 5.035006, 19050 changed => { 19051 'B::Deparse' => '1.60', 19052 'B::Op_private' => '5.035007', 19053 'CPAN' => '2.29', 19054 'CPAN::Distribution' => '2.29', 19055 'CPAN::FTP' => '5.5014', 19056 'CPAN::FirstTime' => '5.5316', 19057 'CPAN::HandleConfig' => '5.5012', 19058 'CPAN::Index' => '2.29', 19059 'Config' => '5.035007', 19060 'Cwd' => '3.83', 19061 'ExtUtils::Command' => '7.64', 19062 'ExtUtils::Command::MM' => '7.64', 19063 'ExtUtils::Liblist' => '7.64', 19064 'ExtUtils::Liblist::Kid'=> '7.64', 19065 'ExtUtils::MM' => '7.64', 19066 'ExtUtils::MM_AIX' => '7.64', 19067 'ExtUtils::MM_Any' => '7.64', 19068 'ExtUtils::MM_BeOS' => '7.64', 19069 'ExtUtils::MM_Cygwin' => '7.64', 19070 'ExtUtils::MM_DOS' => '7.64', 19071 'ExtUtils::MM_Darwin' => '7.64', 19072 'ExtUtils::MM_MacOS' => '7.64', 19073 'ExtUtils::MM_NW5' => '7.64', 19074 'ExtUtils::MM_OS2' => '7.64', 19075 'ExtUtils::MM_OS390' => '7.64', 19076 'ExtUtils::MM_QNX' => '7.64', 19077 'ExtUtils::MM_UWIN' => '7.64', 19078 'ExtUtils::MM_Unix' => '7.64', 19079 'ExtUtils::MM_VMS' => '7.64', 19080 'ExtUtils::MM_VOS' => '7.64', 19081 'ExtUtils::MM_Win32' => '7.64', 19082 'ExtUtils::MM_Win95' => '7.64', 19083 'ExtUtils::MY' => '7.64', 19084 'ExtUtils::MakeMaker' => '7.64', 19085 'ExtUtils::MakeMaker::Config'=> '7.64', 19086 'ExtUtils::MakeMaker::Locale'=> '7.64', 19087 'ExtUtils::MakeMaker::version'=> '7.64', 19088 'ExtUtils::MakeMaker::version::regex'=> '7.64', 19089 'ExtUtils::Mkbootstrap' => '7.64', 19090 'ExtUtils::Mksymlists' => '7.64', 19091 'ExtUtils::testlib' => '7.64', 19092 'File::Compare' => '1.1007', 19093 'File::Copy' => '2.38', 19094 'File::Spec' => '3.83', 19095 'File::Spec::AmigaOS' => '3.83', 19096 'File::Spec::Cygwin' => '3.83', 19097 'File::Spec::Epoc' => '3.83', 19098 'File::Spec::Functions' => '3.83', 19099 'File::Spec::Mac' => '3.83', 19100 'File::Spec::OS2' => '3.83', 19101 'File::Spec::Unix' => '3.83', 19102 'File::Spec::VMS' => '3.83', 19103 'File::Spec::Win32' => '3.83', 19104 'Hash::Util' => '0.27', 19105 'Hash::Util::FieldHash' => '1.24', 19106 'IO' => '1.49', 19107 'JSON::PP' => '4.07', 19108 'JSON::PP::Boolean' => '4.07', 19109 'Math::BigFloat' => '1.999828', 19110 'Math::BigInt' => '1.999828', 19111 'Math::BigInt::Calc' => '1.999828', 19112 'Math::BigInt::Lib' => '1.999828', 19113 'Module::CoreList' => '5.20211220', 19114 'Module::CoreList::Utils'=> '5.20211220', 19115 'Opcode' => '1.55', 19116 'builtin' => '0.001', 19117 'overload' => '1.34', 19118 }, 19119 removed => { 19120 } 19121 }, 19122 5.035008 => { 19123 delta_from => 5.035007, 19124 changed => { 19125 'B::Deparse' => '1.61', 19126 'B::Op_private' => '5.035008', 19127 'Config' => '5.035008', 19128 'Data::Dumper' => '2.184', 19129 'Errno' => '1.36', 19130 'File::Fetch' => '1.04', 19131 'File::Find' => '1.40', 19132 'Hash::Util::FieldHash' => '1.25', 19133 'Locale::Maketext' => '1.30', 19134 'Math::BigFloat' => '1.999829', 19135 'Math::BigFloat::Trace' => '0.64', 19136 'Math::BigInt' => '1.999829', 19137 'Math::BigInt::Calc' => '1.999829', 19138 'Math::BigInt::Lib' => '1.999829', 19139 'Math::BigInt::Trace' => '0.64', 19140 'Math::BigRat::Trace' => '0.64', 19141 'Module::CoreList' => '5.20220120', 19142 'Module::CoreList::Utils'=> '5.20220120', 19143 'NEXT' => '0.69', 19144 'POSIX' => '2.03', 19145 'Win32' => '0.58', 19146 '_charnames' => '1.49', 19147 'bigint' => '0.64', 19148 'bignum' => '0.64', 19149 'bigrat' => '0.64', 19150 'charnames' => '1.49', 19151 }, 19152 removed => { 19153 } 19154 }, 19155 5.035009 => { 19156 delta_from => 5.035008, 19157 changed => { 19158 'App::Cpan' => '1.678', 19159 'B::Deparse' => '1.62', 19160 'B::Op_private' => '5.035009', 19161 'CPAN' => '2.33', 19162 'CPAN::Distribution' => '2.33', 19163 'CPAN::FTP' => '5.5016', 19164 'CPAN::FirstTime' => '5.5317', 19165 'Config' => '5.035009', 19166 'Devel::PPPort' => '3.64', 19167 'File::Copy' => '2.39', 19168 'Hash::Util' => '0.28', 19169 'Hash::Util::FieldHash' => '1.26', 19170 'List::Util' => '1.61', 19171 'List::Util::XS' => '1.61', 19172 'Module::CoreList' => '5.20220220', 19173 'Module::CoreList::Utils'=> '5.20220220', 19174 'Opcode' => '1.56', 19175 'Scalar::Util' => '1.61', 19176 'Sub::Util' => '1.61', 19177 'Tie::SubstrHash' => '1.01', 19178 'XS::APItest' => '1.21', 19179 '_charnames' => '1.50', 19180 'builtin' => '0.002', 19181 'charnames' => '1.50', 19182 'experimental' => '0.027', 19183 'feature' => '1.70', 19184 'overload' => '1.35', 19185 're' => '0.42', 19186 'sigtrap' => '1.10', 19187 'warnings' => '1.57', 19188 }, 19189 removed => { 19190 } 19191 }, 19192 5.034001 => { 19193 delta_from => 5.034000, 19194 changed => { 19195 'B::Deparse' => '1.57', 19196 'B::Op_private' => '5.034001', 19197 'Config' => '5.034001', 19198 'Encode' => '3.08_01', 19199 'GDBM_File' => '1.19_01', 19200 'Module::CoreList' => '5.20220313', 19201 'Module::CoreList::Utils'=> '5.20220313', 19202 }, 19203 removed => { 19204 } 19205 }, 19206 5.035010 => { 19207 delta_from => 5.035009, 19208 changed => { 19209 'Attribute::Handlers' => '1.02', 19210 'B::Deparse' => '1.63', 19211 'B::Op_private' => '5.035010', 19212 'Config' => '5.03501', 19213 'Cwd' => '3.84', 19214 'DB_File' => '1.857', 19215 'Devel::PPPort' => '3.68', 19216 'ExtUtils::ParseXS' => '3.45', 19217 'ExtUtils::ParseXS::Constants'=> '3.45', 19218 'ExtUtils::ParseXS::CountLines'=> '3.45', 19219 'ExtUtils::ParseXS::Eval'=> '3.45', 19220 'ExtUtils::ParseXS::Utilities'=> '3.45', 19221 'ExtUtils::Typemaps' => '3.45', 19222 'ExtUtils::Typemaps::Cmd'=> '3.45', 19223 'ExtUtils::Typemaps::InputMap'=> '3.45', 19224 'ExtUtils::Typemaps::OutputMap'=> '3.45', 19225 'ExtUtils::Typemaps::Type'=> '3.45', 19226 'File::Spec' => '3.84', 19227 'File::Spec::AmigaOS' => '3.84', 19228 'File::Spec::Cygwin' => '3.84', 19229 'File::Spec::Epoc' => '3.84', 19230 'File::Spec::Functions' => '3.84', 19231 'File::Spec::Mac' => '3.84', 19232 'File::Spec::OS2' => '3.84', 19233 'File::Spec::Unix' => '3.84', 19234 'File::Spec::VMS' => '3.84', 19235 'File::Spec::Win32' => '3.84', 19236 'GDBM_File' => '1.23', 19237 'List::Util' => '1.62', 19238 'List::Util::XS' => '1.62', 19239 'Module::CoreList' => '5.20220320', 19240 'Module::CoreList::Utils'=> '5.20220320', 19241 'Opcode' => '1.57', 19242 'Scalar::Util' => '1.62', 19243 'Sub::Util' => '1.62', 19244 'Test2' => '1.302190', 19245 'Test2::API' => '1.302190', 19246 'Test2::API::Breakage' => '1.302190', 19247 'Test2::API::Context' => '1.302190', 19248 'Test2::API::Instance' => '1.302190', 19249 'Test2::API::InterceptResult'=> '1.302190', 19250 'Test2::API::InterceptResult::Event'=> '1.302190', 19251 'Test2::API::InterceptResult::Facet'=> '1.302190', 19252 'Test2::API::InterceptResult::Hub'=> '1.302190', 19253 'Test2::API::InterceptResult::Squasher'=> '1.302190', 19254 'Test2::API::Stack' => '1.302190', 19255 'Test2::Event' => '1.302190', 19256 'Test2::Event::Bail' => '1.302190', 19257 'Test2::Event::Diag' => '1.302190', 19258 'Test2::Event::Encoding'=> '1.302190', 19259 'Test2::Event::Exception'=> '1.302190', 19260 'Test2::Event::Fail' => '1.302190', 19261 'Test2::Event::Generic' => '1.302190', 19262 'Test2::Event::Note' => '1.302190', 19263 'Test2::Event::Ok' => '1.302190', 19264 'Test2::Event::Pass' => '1.302190', 19265 'Test2::Event::Plan' => '1.302190', 19266 'Test2::Event::Skip' => '1.302190', 19267 'Test2::Event::Subtest' => '1.302190', 19268 'Test2::Event::TAP::Version'=> '1.302190', 19269 'Test2::Event::V2' => '1.302190', 19270 'Test2::Event::Waiting' => '1.302190', 19271 'Test2::EventFacet' => '1.302190', 19272 'Test2::EventFacet::About'=> '1.302190', 19273 'Test2::EventFacet::Amnesty'=> '1.302190', 19274 'Test2::EventFacet::Assert'=> '1.302190', 19275 'Test2::EventFacet::Control'=> '1.302190', 19276 'Test2::EventFacet::Error'=> '1.302190', 19277 'Test2::EventFacet::Hub'=> '1.302190', 19278 'Test2::EventFacet::Info'=> '1.302190', 19279 'Test2::EventFacet::Info::Table'=> '1.302190', 19280 'Test2::EventFacet::Meta'=> '1.302190', 19281 'Test2::EventFacet::Parent'=> '1.302190', 19282 'Test2::EventFacet::Plan'=> '1.302190', 19283 'Test2::EventFacet::Render'=> '1.302190', 19284 'Test2::EventFacet::Trace'=> '1.302190', 19285 'Test2::Formatter' => '1.302190', 19286 'Test2::Formatter::TAP' => '1.302190', 19287 'Test2::Hub' => '1.302190', 19288 'Test2::Hub::Interceptor'=> '1.302190', 19289 'Test2::Hub::Interceptor::Terminator'=> '1.302190', 19290 'Test2::Hub::Subtest' => '1.302190', 19291 'Test2::IPC' => '1.302190', 19292 'Test2::IPC::Driver' => '1.302190', 19293 'Test2::IPC::Driver::Files'=> '1.302190', 19294 'Test2::Tools::Tiny' => '1.302190', 19295 'Test2::Util' => '1.302190', 19296 'Test2::Util::ExternalMeta'=> '1.302190', 19297 'Test2::Util::Facets2Legacy'=> '1.302190', 19298 'Test2::Util::HashBase' => '1.302190', 19299 'Test2::Util::Trace' => '1.302190', 19300 'Test::Builder' => '1.302190', 19301 'Test::Builder::Formatter'=> '1.302190', 19302 'Test::Builder::Module' => '1.302190', 19303 'Test::Builder::Tester' => '1.302190', 19304 'Test::Builder::Tester::Color'=> '1.302190', 19305 'Test::Builder::TodoDiag'=> '1.302190', 19306 'Test::More' => '1.302190', 19307 'Test::Simple' => '1.302190', 19308 'Test::Tester' => '1.302190', 19309 'Test::Tester::Capture' => '1.302190', 19310 'Test::Tester::CaptureRunner'=> '1.302190', 19311 'Test::Tester::Delegate'=> '1.302190', 19312 'Test::use::ok' => '1.302190', 19313 'XS::APItest' => '1.22', 19314 'builtin' => '0.004', 19315 'experimental' => '0.028', 19316 'feature' => '1.71', 19317 'ok' => '1.302190', 19318 'warnings' => '1.58', 19319 }, 19320 removed => { 19321 } 19322 }, 19323 5.035011 => { 19324 delta_from => 5.03501, 19325 changed => { 19326 'App::Prove' => '3.44', 19327 'App::Prove::State' => '3.44', 19328 'App::Prove::State::Result'=> '3.44', 19329 'App::Prove::State::Result::Test'=> '3.44', 19330 'B::Deparse' => '1.64', 19331 'B::Op_private' => '5.035011', 19332 'Compress::Raw::Bzip2' => '2.103', 19333 'Compress::Raw::Zlib' => '2.103', 19334 'Compress::Zlib' => '2.106', 19335 'Config' => '5.035011', 19336 'Encode' => '3.17', 19337 'Encode::Unicode' => '2.20', 19338 'ExtUtils::Constant::Base'=> '0.07', 19339 'IO' => '1.49_01', 19340 'IO::Compress::Adapter::Bzip2'=> '2.106', 19341 'IO::Compress::Adapter::Deflate'=> '2.106', 19342 'IO::Compress::Adapter::Identity'=> '2.106', 19343 'IO::Compress::Base' => '2.106', 19344 'IO::Compress::Base::Common'=> '2.106', 19345 'IO::Compress::Bzip2' => '2.106', 19346 'IO::Compress::Deflate' => '2.106', 19347 'IO::Compress::Gzip' => '2.106', 19348 'IO::Compress::Gzip::Constants'=> '2.106', 19349 'IO::Compress::RawDeflate'=> '2.106', 19350 'IO::Compress::Zip' => '2.106', 19351 'IO::Compress::Zip::Constants'=> '2.106', 19352 'IO::Compress::Zlib::Constants'=> '2.106', 19353 'IO::Compress::Zlib::Extra'=> '2.106', 19354 'IO::Uncompress::Adapter::Bunzip2'=> '2.106', 19355 'IO::Uncompress::Adapter::Identity'=> '2.106', 19356 'IO::Uncompress::Adapter::Inflate'=> '2.106', 19357 'IO::Uncompress::AnyInflate'=> '2.106', 19358 'IO::Uncompress::AnyUncompress'=> '2.106', 19359 'IO::Uncompress::Base' => '2.106', 19360 'IO::Uncompress::Bunzip2'=> '2.106', 19361 'IO::Uncompress::Gunzip'=> '2.106', 19362 'IO::Uncompress::Inflate'=> '2.106', 19363 'IO::Uncompress::RawInflate'=> '2.106', 19364 'IO::Uncompress::Unzip' => '2.106', 19365 'Locale::Maketext' => '1.31', 19366 'Math::BigFloat' => '1.999830', 19367 'Math::BigFloat::Trace' => '0.65', 19368 'Math::BigInt' => '1.999830', 19369 'Math::BigInt::Calc' => '1.999830', 19370 'Math::BigInt::Lib' => '1.999830', 19371 'Math::BigInt::Trace' => '0.65', 19372 'Math::BigRat' => '0.2621', 19373 'Math::BigRat::Trace' => '0.65', 19374 'Module::CoreList' => '5.20220420', 19375 'Module::CoreList::Utils'=> '5.20220420', 19376 'Net::Cmd' => '3.14', 19377 'Net::Config' => '3.14', 19378 'Net::Domain' => '3.14', 19379 'Net::FTP' => '3.14', 19380 'Net::FTP::A' => '3.14', 19381 'Net::FTP::E' => '3.14', 19382 'Net::FTP::I' => '3.14', 19383 'Net::FTP::L' => '3.14', 19384 'Net::FTP::dataconn' => '3.14', 19385 'Net::NNTP' => '3.14', 19386 'Net::Netrc' => '3.14', 19387 'Net::POP3' => '3.14', 19388 'Net::SMTP' => '3.14', 19389 'Net::Time' => '3.14', 19390 'Socket' => '2.033', 19391 'Storable' => '3.26', 19392 'TAP::Base' => '3.44', 19393 'TAP::Formatter::Base' => '3.44', 19394 'TAP::Formatter::Color' => '3.44', 19395 'TAP::Formatter::Console'=> '3.44', 19396 'TAP::Formatter::Console::ParallelSession'=> '3.44', 19397 'TAP::Formatter::Console::Session'=> '3.44', 19398 'TAP::Formatter::File' => '3.44', 19399 'TAP::Formatter::File::Session'=> '3.44', 19400 'TAP::Formatter::Session'=> '3.44', 19401 'TAP::Harness' => '3.44', 19402 'TAP::Harness::Env' => '3.44', 19403 'TAP::Object' => '3.44', 19404 'TAP::Parser' => '3.44', 19405 'TAP::Parser::Aggregator'=> '3.44', 19406 'TAP::Parser::Grammar' => '3.44', 19407 'TAP::Parser::Iterator' => '3.44', 19408 'TAP::Parser::Iterator::Array'=> '3.44', 19409 'TAP::Parser::Iterator::Process'=> '3.44', 19410 'TAP::Parser::Iterator::Stream'=> '3.44', 19411 'TAP::Parser::IteratorFactory'=> '3.44', 19412 'TAP::Parser::Multiplexer'=> '3.44', 19413 'TAP::Parser::Result' => '3.44', 19414 'TAP::Parser::Result::Bailout'=> '3.44', 19415 'TAP::Parser::Result::Comment'=> '3.44', 19416 'TAP::Parser::Result::Plan'=> '3.44', 19417 'TAP::Parser::Result::Pragma'=> '3.44', 19418 'TAP::Parser::Result::Test'=> '3.44', 19419 'TAP::Parser::Result::Unknown'=> '3.44', 19420 'TAP::Parser::Result::Version'=> '3.44', 19421 'TAP::Parser::Result::YAML'=> '3.44', 19422 'TAP::Parser::ResultFactory'=> '3.44', 19423 'TAP::Parser::Scheduler'=> '3.44', 19424 'TAP::Parser::Scheduler::Job'=> '3.44', 19425 'TAP::Parser::Scheduler::Spinner'=> '3.44', 19426 'TAP::Parser::Source' => '3.44', 19427 'TAP::Parser::SourceHandler'=> '3.44', 19428 'TAP::Parser::SourceHandler::Executable'=> '3.44', 19429 'TAP::Parser::SourceHandler::File'=> '3.44', 19430 'TAP::Parser::SourceHandler::Handle'=> '3.44', 19431 'TAP::Parser::SourceHandler::Perl'=> '3.44', 19432 'TAP::Parser::SourceHandler::RawTAP'=> '3.44', 19433 'TAP::Parser::YAMLish::Reader'=> '3.44', 19434 'TAP::Parser::YAMLish::Writer'=> '3.44', 19435 'Test::Harness' => '3.44', 19436 'Text::ParseWords' => '3.31', 19437 'Time::HiRes' => '1.9770', 19438 'Unicode::Normalize' => '1.31', 19439 'bigfloat' => '0.65', 19440 'bigint' => '0.65', 19441 'bignum' => '0.65', 19442 'bigrat' => '0.65', 19443 'builtin' => '0.005', 19444 're' => '0.43', 19445 }, 19446 removed => { 19447 } 19448 }, 19449 5.036000 => { 19450 delta_from => 5.035011, 19451 changed => { 19452 'Amiga::Exec' => '0.04', 19453 'B::Op_private' => '5.036000', 19454 'Compress::Raw::Zlib' => '2.105', 19455 'Config' => '5.036', 19456 'IO' => '1.50', 19457 'Module::CoreList' => '5.20220520', 19458 'Module::CoreList::Utils'=> '5.20220520', 19459 'Win32' => '0.59', 19460 'builtin' => '0.006', 19461 'feature' => '1.72', 19462 }, 19463 removed => { 19464 } 19465 }, 19466 5.037000 => { 19467 delta_from => 5.036000, 19468 changed => { 19469 'feature' => '1.73', 19470 'Module::CoreList' => '5.20220527', 19471 'Module::CoreList::Utils'=> '5.20220527', 19472 }, 19473 removed => { 19474 } 19475 }, 19476 5.037001 => { 19477 delta_from => 5.037000, 19478 changed => { 19479 'B' => '1.84', 19480 'B::Op_private' => '5.037001', 19481 'Carp' => '1.53', 19482 'Carp::Heavy' => '1.53', 19483 'Config' => '5.037001', 19484 'Cwd' => '3.85', 19485 'Data::Dumper' => '2.185', 19486 'ExtUtils::CBuilder' => '0.280237', 19487 'ExtUtils::CBuilder::Base'=> '0.280237', 19488 'ExtUtils::CBuilder::Platform::Unix'=> '0.280237', 19489 'ExtUtils::CBuilder::Platform::VMS'=> '0.280237', 19490 'ExtUtils::CBuilder::Platform::Windows'=> '0.280237', 19491 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280237', 19492 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280237', 19493 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280237', 19494 'ExtUtils::CBuilder::Platform::aix'=> '0.280237', 19495 'ExtUtils::CBuilder::Platform::android'=> '0.280237', 19496 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280237', 19497 'ExtUtils::CBuilder::Platform::darwin'=> '0.280237', 19498 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280237', 19499 'ExtUtils::CBuilder::Platform::os2'=> '0.280237', 19500 'ExtUtils::Miniperl' => '1.12', 19501 'File::Spec' => '3.85', 19502 'File::Spec::AmigaOS' => '3.85', 19503 'File::Spec::Cygwin' => '3.85', 19504 'File::Spec::Epoc' => '3.85', 19505 'File::Spec::Functions' => '3.85', 19506 'File::Spec::Mac' => '3.85', 19507 'File::Spec::OS2' => '3.85', 19508 'File::Spec::Unix' => '3.85', 19509 'File::Spec::VMS' => '3.85', 19510 'File::Spec::Win32' => '3.85', 19511 'FileHandle' => '2.04', 19512 'GDBM_File' => '1.24', 19513 'IO::Handle' => '1.49', 19514 'IO::Pipe' => '1.50', 19515 'IO::Socket::INET' => '1.50', 19516 'IO::Socket::UNIX' => '1.50', 19517 'Module::CoreList' => '5.20220620', 19518 'Module::CoreList::Utils'=> '5.20220620', 19519 'ODBM_File' => '1.18', 19520 'OS2::REXX' => '1.06', 19521 'Opcode' => '1.58', 19522 'POSIX' => '2.04', 19523 'SDBM_File' => '1.16', 19524 'Unicode::Normalize' => '1.32', 19525 'XS::APItest' => '1.23', 19526 'builtin' => '0.007', 19527 'encoding::warnings' => '0.14', 19528 'feature' => '1.74', 19529 'threads' => '2.28', 19530 }, 19531 removed => { 19532 } 19533 }, 19534 5.037002 => { 19535 delta_from => 5.037001, 19536 changed => { 19537 'B' => '1.85', 19538 'B::Concise' => '1.007', 19539 'B::Deparse' => '1.65', 19540 'B::Op_private' => '5.037002', 19541 'CPAN' => '2.34', 19542 'CPAN::Distribution' => '2.34', 19543 'Compress::Raw::Bzip2' => '2.201', 19544 'Compress::Raw::Zlib' => '2.202', 19545 'Compress::Zlib' => '2.201', 19546 'Config' => '5.037002', 19547 'Cwd' => '3.86', 19548 'DB_File' => '1.858', 19549 'Data::Dumper' => '2.186', 19550 'Encode' => '3.18', 19551 'Encode::MIME::Header' => '2.29', 19552 'File::Glob' => '1.38', 19553 'File::Spec' => '3.86', 19554 'File::Spec::AmigaOS' => '3.86', 19555 'File::Spec::Cygwin' => '3.86', 19556 'File::Spec::Epoc' => '3.86', 19557 'File::Spec::Functions' => '3.86', 19558 'File::Spec::Mac' => '3.86', 19559 'File::Spec::OS2' => '3.86', 19560 'File::Spec::Unix' => '3.86', 19561 'File::Spec::VMS' => '3.86', 19562 'File::Spec::Win32' => '3.86', 19563 'Filter::Util::Call' => '1.61', 19564 'Hash::Util' => '0.29', 19565 'I18N::LangTags::List' => '0.41', 19566 'IO::Compress::Adapter::Bzip2'=> '2.201', 19567 'IO::Compress::Adapter::Deflate'=> '2.201', 19568 'IO::Compress::Adapter::Identity'=> '2.201', 19569 'IO::Compress::Base' => '2.201', 19570 'IO::Compress::Base::Common'=> '2.201', 19571 'IO::Compress::Bzip2' => '2.201', 19572 'IO::Compress::Deflate' => '2.201', 19573 'IO::Compress::Gzip' => '2.201', 19574 'IO::Compress::Gzip::Constants'=> '2.201', 19575 'IO::Compress::RawDeflate'=> '2.201', 19576 'IO::Compress::Zip' => '2.201', 19577 'IO::Compress::Zip::Constants'=> '2.201', 19578 'IO::Compress::Zlib::Constants'=> '2.201', 19579 'IO::Compress::Zlib::Extra'=> '2.201', 19580 'IO::Uncompress::Adapter::Bunzip2'=> '2.201', 19581 'IO::Uncompress::Adapter::Identity'=> '2.201', 19582 'IO::Uncompress::Adapter::Inflate'=> '2.201', 19583 'IO::Uncompress::AnyInflate'=> '2.201', 19584 'IO::Uncompress::AnyUncompress'=> '2.201', 19585 'IO::Uncompress::Base' => '2.201', 19586 'IO::Uncompress::Bunzip2'=> '2.201', 19587 'IO::Uncompress::Gunzip'=> '2.201', 19588 'IO::Uncompress::Inflate'=> '2.201', 19589 'IO::Uncompress::RawInflate'=> '2.201', 19590 'IO::Uncompress::Unzip' => '2.201', 19591 'JSON::PP' => '4.10', 19592 'JSON::PP::Boolean' => '4.10', 19593 'Math::BigFloat' => '1.999837', 19594 'Math::BigFloat::Trace' => '0.66', 19595 'Math::BigInt' => '1.999837', 19596 'Math::BigInt::Calc' => '1.999837', 19597 'Math::BigInt::FastCalc'=> '0.5013', 19598 'Math::BigInt::Lib' => '1.999837', 19599 'Math::BigInt::Trace' => '0.66', 19600 'Math::BigRat' => '0.2624', 19601 'Math::BigRat::Trace' => '0.66', 19602 'Module::CoreList' => '5.20220720', 19603 'Module::CoreList::Utils'=> '5.20220720', 19604 'Opcode' => '1.59', 19605 'PerlIO::via::QuotedPrint'=> '0.10', 19606 'Pod::Checker' => '1.75', 19607 'Pod::Usage' => '2.03', 19608 'Socket' => '2.035', 19609 'Storable' => '3.27', 19610 'Test2' => '1.302191', 19611 'Test2::API' => '1.302191', 19612 'Test2::API::Breakage' => '1.302191', 19613 'Test2::API::Context' => '1.302191', 19614 'Test2::API::Instance' => '1.302191', 19615 'Test2::API::InterceptResult'=> '1.302191', 19616 'Test2::API::InterceptResult::Event'=> '1.302191', 19617 'Test2::API::InterceptResult::Facet'=> '1.302191', 19618 'Test2::API::InterceptResult::Hub'=> '1.302191', 19619 'Test2::API::InterceptResult::Squasher'=> '1.302191', 19620 'Test2::API::Stack' => '1.302191', 19621 'Test2::Event' => '1.302191', 19622 'Test2::Event::Bail' => '1.302191', 19623 'Test2::Event::Diag' => '1.302191', 19624 'Test2::Event::Encoding'=> '1.302191', 19625 'Test2::Event::Exception'=> '1.302191', 19626 'Test2::Event::Fail' => '1.302191', 19627 'Test2::Event::Generic' => '1.302191', 19628 'Test2::Event::Note' => '1.302191', 19629 'Test2::Event::Ok' => '1.302191', 19630 'Test2::Event::Pass' => '1.302191', 19631 'Test2::Event::Plan' => '1.302191', 19632 'Test2::Event::Skip' => '1.302191', 19633 'Test2::Event::Subtest' => '1.302191', 19634 'Test2::Event::TAP::Version'=> '1.302191', 19635 'Test2::Event::V2' => '1.302191', 19636 'Test2::Event::Waiting' => '1.302191', 19637 'Test2::EventFacet' => '1.302191', 19638 'Test2::EventFacet::About'=> '1.302191', 19639 'Test2::EventFacet::Amnesty'=> '1.302191', 19640 'Test2::EventFacet::Assert'=> '1.302191', 19641 'Test2::EventFacet::Control'=> '1.302191', 19642 'Test2::EventFacet::Error'=> '1.302191', 19643 'Test2::EventFacet::Hub'=> '1.302191', 19644 'Test2::EventFacet::Info'=> '1.302191', 19645 'Test2::EventFacet::Info::Table'=> '1.302191', 19646 'Test2::EventFacet::Meta'=> '1.302191', 19647 'Test2::EventFacet::Parent'=> '1.302191', 19648 'Test2::EventFacet::Plan'=> '1.302191', 19649 'Test2::EventFacet::Render'=> '1.302191', 19650 'Test2::EventFacet::Trace'=> '1.302191', 19651 'Test2::Formatter' => '1.302191', 19652 'Test2::Formatter::TAP' => '1.302191', 19653 'Test2::Hub' => '1.302191', 19654 'Test2::Hub::Interceptor'=> '1.302191', 19655 'Test2::Hub::Interceptor::Terminator'=> '1.302191', 19656 'Test2::Hub::Subtest' => '1.302191', 19657 'Test2::IPC' => '1.302191', 19658 'Test2::IPC::Driver' => '1.302191', 19659 'Test2::IPC::Driver::Files'=> '1.302191', 19660 'Test2::Tools::Tiny' => '1.302191', 19661 'Test2::Util' => '1.302191', 19662 'Test2::Util::ExternalMeta'=> '1.302191', 19663 'Test2::Util::Facets2Legacy'=> '1.302191', 19664 'Test2::Util::HashBase' => '1.302191', 19665 'Test2::Util::Trace' => '1.302191', 19666 'Test::Builder' => '1.302191', 19667 'Test::Builder::Formatter'=> '1.302191', 19668 'Test::Builder::Module' => '1.302191', 19669 'Test::Builder::Tester' => '1.302191', 19670 'Test::Builder::Tester::Color'=> '1.302191', 19671 'Test::Builder::TodoDiag'=> '1.302191', 19672 'Test::More' => '1.302191', 19673 'Test::Simple' => '1.302191', 19674 'Test::Tester' => '1.302191', 19675 'Test::Tester::Capture' => '1.302191', 19676 'Test::Tester::CaptureRunner'=> '1.302191', 19677 'Test::Tester::Delegate'=> '1.302191', 19678 'Test::use::ok' => '1.302191', 19679 'Text::Balanced' => '2.06', 19680 'XS::APItest' => '1.24', 19681 'bigfloat' => '0.66', 19682 'bigint' => '0.66', 19683 'bignum' => '0.66', 19684 'bigrat' => '0.66', 19685 'builtin' => '0.008', 19686 'feature' => '1.75', 19687 'ok' => '1.302191', 19688 'threads::shared' => '1.65', 19689 }, 19690 removed => { 19691 } 19692 }, 19693 5.037003 => { 19694 delta_from => 5.037002, 19695 changed => { 19696 'B' => '1.86', 19697 'B::Deparse' => '1.68', 19698 'B::Op_private' => '5.037003', 19699 'Config' => '5.037003', 19700 'Digest::SHA' => '6.03', 19701 'DynaLoader' => '1.53', 19702 'Encode' => '3.19', 19703 'Encode::Alias' => '2.25', 19704 'ExtUtils::PL2Bat' => '0.005', 19705 'File::Find' => '1.41', 19706 'Filter::Util::Call' => '1.64', 19707 'HTTP::Tiny' => '0.082', 19708 'JSON::PP' => '4.11', 19709 'JSON::PP::Boolean' => '4.11', 19710 'List::Util' => '1.63', 19711 'List::Util::XS' => '1.63', 19712 'Memoize' => '1.10', 19713 'Memoize::AnyDBM_File' => '1.10', 19714 'Memoize::Expire' => '1.10', 19715 'Memoize::NDBM_File' => '1.10', 19716 'Memoize::SDBM_File' => '1.10', 19717 'Memoize::Storable' => '1.10', 19718 'Module::CoreList' => '5.20220820', 19719 'Module::CoreList::Utils'=> '5.20220820', 19720 'NDBM_File' => '1.16', 19721 'Opcode' => '1.60', 19722 'Scalar::Util' => '1.63', 19723 'Socket' => '2.036', 19724 'Sub::Util' => '1.63', 19725 'XS::APItest' => '1.25', 19726 'attributes' => '0.35', 19727 'threads' => '2.29', 19728 }, 19729 removed => { 19730 'Memoize::ExpireFile' => 1, 19731 'Memoize::ExpireTest' => 1, 19732 } 19733 }, 19734 5.037004 => { 19735 delta_from => 5.037003, 19736 changed => { 19737 'B::Deparse' => '1.69', 19738 'B::Op_private' => '5.037004', 19739 'Carp' => '1.54', 19740 'Carp::Heavy' => '1.54', 19741 'Class::Struct' => '0.67', 19742 'Config' => '5.037004', 19743 'Config::Perl::V' => '0.34', 19744 'Errno' => '1.37', 19745 'ExtUtils::ParseXS' => '3.46', 19746 'ExtUtils::ParseXS::Constants'=> '3.46', 19747 'ExtUtils::ParseXS::CountLines'=> '3.46', 19748 'ExtUtils::ParseXS::Eval'=> '3.46', 19749 'ExtUtils::ParseXS::Utilities'=> '3.46', 19750 'ExtUtils::Typemaps' => '3.46', 19751 'ExtUtils::Typemaps::Cmd'=> '3.46', 19752 'ExtUtils::Typemaps::InputMap'=> '3.46', 19753 'ExtUtils::Typemaps::OutputMap'=> '3.46', 19754 'ExtUtils::Typemaps::Type'=> '3.46', 19755 'File::Basename' => '2.86', 19756 'File::Copy' => '2.40', 19757 'File::Spec' => '3.87', 19758 'File::stat' => '1.13', 19759 'FileHandle' => '2.05', 19760 'Hash::Util' => '0.30', 19761 'I18N::Langinfo' => '0.22', 19762 'IO' => '1.51', 19763 'IO::Dir' => '1.51', 19764 'IO::File' => '1.51', 19765 'IO::Handle' => '1.51', 19766 'IO::Pipe' => '1.51', 19767 'IO::Poll' => '1.51', 19768 'IO::Seekable' => '1.51', 19769 'IO::Select' => '1.51', 19770 'IO::Socket' => '1.51', 19771 'IO::Socket::INET' => '1.51', 19772 'IO::Socket::UNIX' => '1.51', 19773 'Locale::Maketext' => '1.32', 19774 'Module::CoreList' => '5.20220920', 19775 'Module::CoreList::Utils'=> '5.20220920', 19776 'Net::protoent' => '1.02', 19777 'Net::servent' => '1.03', 19778 'Opcode' => '1.61', 19779 'POSIX' => '2.06', 19780 'Safe' => '2.44', 19781 'Sys::Hostname' => '1.25', 19782 'Time::HiRes' => '1.9771', 19783 'User::grent' => '1.04', 19784 'User::pwent' => '1.02', 19785 'XS::APItest' => '1.26', 19786 'XSLoader' => '0.32', 19787 'feature' => '1.76', 19788 }, 19789 removed => { 19790 } 19791 }, 19792 5.037005 => { 19793 delta_from => 5.037004, 19794 changed => { 19795 'B::Deparse' => '1.70', 19796 'B::Op_private' => '5.037005', 19797 'Config' => '5.037005', 19798 'JSON::PP' => '4.12', 19799 'JSON::PP::Boolean' => '4.12', 19800 'Math::Complex' => '1.5903', 19801 'Math::Trig' => '1.2301', 19802 'Memoize' => '1.14', 19803 'Memoize::AnyDBM_File' => '1.14', 19804 'Memoize::Expire' => '1.14', 19805 'Memoize::NDBM_File' => '1.14', 19806 'Memoize::SDBM_File' => '1.14', 19807 'Memoize::Storable' => '1.14', 19808 'Module::CoreList' => '5.20221020', 19809 'Module::CoreList::Utils'=> '5.20221020', 19810 'Net::Ping' => '2.75', 19811 'POSIX' => '2.07', 19812 'Unicode' => '15.0.0', 19813 'threads' => '2.31', 19814 'warnings' => '1.59', 19815 }, 19816 removed => { 19817 } 19818 }, 19819 5.037006 => { 19820 delta_from => 5.037005, 19821 changed => { 19822 'Attribute::Handlers' => '1.03', 19823 'B' => '1.87', 19824 'B::Deparse' => '1.71', 19825 'B::Op_private' => '5.037006', 19826 'Config' => '5.037006', 19827 'Data::Dumper' => '2.187', 19828 'Devel::PPPort' => '3.69', 19829 'ExtUtils::CBuilder' => '0.280238', 19830 'ExtUtils::CBuilder::Base'=> '0.280238', 19831 'ExtUtils::CBuilder::Platform::Unix'=> '0.280238', 19832 'ExtUtils::CBuilder::Platform::VMS'=> '0.280238', 19833 'ExtUtils::CBuilder::Platform::Windows'=> '0.280238', 19834 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280238', 19835 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280238', 19836 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280238', 19837 'ExtUtils::CBuilder::Platform::aix'=> '0.280238', 19838 'ExtUtils::CBuilder::Platform::android'=> '0.280238', 19839 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280238', 19840 'ExtUtils::CBuilder::Platform::darwin'=> '0.280238', 19841 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280238', 19842 'ExtUtils::CBuilder::Platform::os2'=> '0.280238', 19843 'ExtUtils::ParseXS' => '3.48', 19844 'ExtUtils::ParseXS::Constants'=> '3.48', 19845 'ExtUtils::ParseXS::CountLines'=> '3.48', 19846 'ExtUtils::ParseXS::Eval'=> '3.48', 19847 'ExtUtils::ParseXS::Utilities'=> '3.48', 19848 'ExtUtils::Typemaps' => '3.48', 19849 'ExtUtils::Typemaps::Cmd'=> '3.48', 19850 'ExtUtils::Typemaps::InputMap'=> '3.48', 19851 'ExtUtils::Typemaps::OutputMap'=> '3.48', 19852 'ExtUtils::Typemaps::Type'=> '3.48', 19853 'Getopt::Long' => '2.54', 19854 'Memoize' => '1.15', 19855 'Memoize::AnyDBM_File' => '1.15', 19856 'Memoize::Expire' => '1.15', 19857 'Memoize::NDBM_File' => '1.15', 19858 'Memoize::SDBM_File' => '1.15', 19859 'Memoize::Storable' => '1.15', 19860 'Module::CoreList' => '5.20221120', 19861 'Module::CoreList::Utils'=> '5.20221120', 19862 'Opcode' => '1.62', 19863 'POSIX' => '2.08', 19864 'Storable' => '3.28', 19865 'Time::HiRes' => '1.9772', 19866 'XS::APItest' => '1.27', 19867 'experimental' => '0.029', 19868 'feature' => '1.77', 19869 'overload' => '1.36', 19870 'threads' => '2.32', 19871 'utf8' => '1.25', 19872 'warnings' => '1.61', 19873 }, 19874 removed => { 19875 } 19876 }, 19877 5.037007 => { 19878 delta_from => 5.037006, 19879 changed => { 19880 'B::Deparse' => '1.72', 19881 'B::Op_private' => '5.037007', 19882 'Config' => '5.037007', 19883 'Cwd' => '3.88', 19884 'ExtUtils::Miniperl' => '1.13', 19885 'ExtUtils::ParseXS' => '3.49', 19886 'ExtUtils::ParseXS::Constants'=> '3.49', 19887 'ExtUtils::ParseXS::CountLines'=> '3.49', 19888 'ExtUtils::ParseXS::Eval'=> '3.49', 19889 'ExtUtils::ParseXS::Utilities'=> '3.49', 19890 'ExtUtils::Typemaps' => '3.49', 19891 'ExtUtils::Typemaps::Cmd'=> '3.49', 19892 'ExtUtils::Typemaps::InputMap'=> '3.49', 19893 'ExtUtils::Typemaps::OutputMap'=> '3.49', 19894 'ExtUtils::Typemaps::Type'=> '3.49', 19895 'File::Glob' => '1.39', 19896 'File::Spec' => '3.88', 19897 'File::Spec::AmigaOS' => '3.88', 19898 'File::Spec::Cygwin' => '3.88', 19899 'File::Spec::Epoc' => '3.88', 19900 'File::Spec::Functions' => '3.88', 19901 'File::Spec::Mac' => '3.88', 19902 'File::Spec::OS2' => '3.88', 19903 'File::Spec::Unix' => '3.88', 19904 'File::Spec::VMS' => '3.88', 19905 'File::Spec::Win32' => '3.88', 19906 'Module::CoreList' => '5.20221220', 19907 'Module::CoreList::Utils'=> '5.20221220', 19908 'Opcode' => '1.63', 19909 'POSIX' => '2.10', 19910 'Pod::Html' => '1.34', 19911 'Pod::Html::Util' => '1.34', 19912 'Pod::Man' => '5.00', 19913 'Pod::ParseLink' => '5.00', 19914 'Pod::Text' => '5.00', 19915 'Pod::Text::Color' => '5.00', 19916 'Pod::Text::Overstrike' => '5.00', 19917 'Pod::Text::Termcap' => '5.00', 19918 'XS::APItest' => '1.28', 19919 'experimental' => '0.030', 19920 'feature' => '1.78', 19921 'parent' => '0.239', 19922 'threads' => '2.33', 19923 }, 19924 removed => { 19925 } 19926 }, 19927 5.037008 => { 19928 delta_from => 5.037007, 19929 changed => { 19930 'B::Op_private' => '5.037008', 19931 'Config' => '5.037008', 19932 'Config::Perl::V' => '0.35', 19933 'ExtUtils::Command' => '7.66', 19934 'ExtUtils::Command::MM' => '7.66', 19935 'ExtUtils::Install' => '2.22', 19936 'ExtUtils::Installed' => '2.22', 19937 'ExtUtils::Liblist' => '7.66', 19938 'ExtUtils::Liblist::Kid'=> '7.66', 19939 'ExtUtils::MM' => '7.66', 19940 'ExtUtils::MM_AIX' => '7.66', 19941 'ExtUtils::MM_Any' => '7.66', 19942 'ExtUtils::MM_BeOS' => '7.66', 19943 'ExtUtils::MM_Cygwin' => '7.66', 19944 'ExtUtils::MM_DOS' => '7.66', 19945 'ExtUtils::MM_Darwin' => '7.66', 19946 'ExtUtils::MM_MacOS' => '7.66', 19947 'ExtUtils::MM_NW5' => '7.66', 19948 'ExtUtils::MM_OS2' => '7.66', 19949 'ExtUtils::MM_OS390' => '7.66', 19950 'ExtUtils::MM_QNX' => '7.66', 19951 'ExtUtils::MM_UWIN' => '7.66', 19952 'ExtUtils::MM_Unix' => '7.66', 19953 'ExtUtils::MM_VMS' => '7.66', 19954 'ExtUtils::MM_VOS' => '7.66', 19955 'ExtUtils::MM_Win32' => '7.66', 19956 'ExtUtils::MM_Win95' => '7.66', 19957 'ExtUtils::MY' => '7.66', 19958 'ExtUtils::MakeMaker' => '7.66', 19959 'ExtUtils::MakeMaker::Config'=> '7.66', 19960 'ExtUtils::MakeMaker::Locale'=> '7.66', 19961 'ExtUtils::MakeMaker::version'=> '7.66', 19962 'ExtUtils::MakeMaker::version::regex'=> '7.66', 19963 'ExtUtils::Mkbootstrap' => '7.66', 19964 'ExtUtils::Mksymlists' => '7.66', 19965 'ExtUtils::Packlist' => '2.22', 19966 'ExtUtils::testlib' => '7.66', 19967 'File::Find' => '1.42', 19968 'IO::Zlib' => '1.14', 19969 'JSON::PP' => '4.16', 19970 'JSON::PP::Boolean' => '4.16', 19971 'Math::Complex' => '1.6', 19972 'Math::Trig' => '1.6', 19973 'Module::CoreList' => '5.20230120', 19974 'Module::CoreList::Utils'=> '5.20230120', 19975 'POSIX' => '2.11', 19976 'Pod::Man' => '5.01', 19977 'Pod::ParseLink' => '5.01', 19978 'Pod::Text' => '5.01', 19979 'Pod::Text::Color' => '5.01', 19980 'Pod::Text::Overstrike' => '5.01', 19981 'Pod::Text::Termcap' => '5.01', 19982 'Storable' => '3.29', 19983 'XS::APItest' => '1.30', 19984 'feature' => '1.79', 19985 're' => '0.44', 19986 'threads' => '2.34', 19987 }, 19988 removed => { 19989 } 19990 }, 19991 5.037009 => { 19992 delta_from => 5.037008, 19993 changed => { 19994 'B' => '1.88', 19995 'B::Op_private' => '5.037009', 19996 'Compress::Raw::Bzip2' => '2.204', 19997 'Compress::Raw::Zlib' => '2.204', 19998 'Compress::Zlib' => '2.204', 19999 'Config' => '5.037009', 20000 'Devel::PPPort' => '3.70', 20001 'Devel::Peek' => '1.33', 20002 'Fatal' => '2.36', 20003 'File::Find' => '1.43', 20004 'IO::Compress::Adapter::Bzip2'=> '2.204', 20005 'IO::Compress::Adapter::Deflate'=> '2.204', 20006 'IO::Compress::Adapter::Identity'=> '2.204', 20007 'IO::Compress::Base' => '2.204', 20008 'IO::Compress::Base::Common'=> '2.204', 20009 'IO::Compress::Bzip2' => '2.204', 20010 'IO::Compress::Deflate' => '2.204', 20011 'IO::Compress::Gzip' => '2.204', 20012 'IO::Compress::Gzip::Constants'=> '2.204', 20013 'IO::Compress::RawDeflate'=> '2.204', 20014 'IO::Compress::Zip' => '2.204', 20015 'IO::Compress::Zip::Constants'=> '2.204', 20016 'IO::Compress::Zlib::Constants'=> '2.204', 20017 'IO::Compress::Zlib::Extra'=> '2.204', 20018 'IO::Uncompress::Adapter::Bunzip2'=> '2.204', 20019 'IO::Uncompress::Adapter::Identity'=> '2.204', 20020 'IO::Uncompress::Adapter::Inflate'=> '2.204', 20021 'IO::Uncompress::AnyInflate'=> '2.204', 20022 'IO::Uncompress::AnyUncompress'=> '2.204', 20023 'IO::Uncompress::Base' => '2.204', 20024 'IO::Uncompress::Bunzip2'=> '2.204', 20025 'IO::Uncompress::Gunzip'=> '2.204', 20026 'IO::Uncompress::Inflate'=> '2.204', 20027 'IO::Uncompress::RawInflate'=> '2.204', 20028 'IO::Uncompress::Unzip' => '2.204', 20029 'Math::Complex' => '1.61', 20030 'Math::Trig' => '1.61', 20031 'Memoize' => '1.16', 20032 'Memoize::AnyDBM_File' => '1.16', 20033 'Memoize::Expire' => '1.16', 20034 'Memoize::NDBM_File' => '1.16', 20035 'Memoize::SDBM_File' => '1.16', 20036 'Memoize::Storable' => '1.16', 20037 'Module::CoreList' => '5.20230220', 20038 'Module::CoreList::Utils'=> '5.20230220', 20039 'Opcode' => '1.64', 20040 'Term::Cap' => '1.18', 20041 'Test2' => '1.302192', 20042 'Test2::API' => '1.302192', 20043 'Test2::API::Breakage' => '1.302192', 20044 'Test2::API::Context' => '1.302192', 20045 'Test2::API::Instance' => '1.302192', 20046 'Test2::API::InterceptResult'=> '1.302192', 20047 'Test2::API::InterceptResult::Event'=> '1.302192', 20048 'Test2::API::InterceptResult::Facet'=> '1.302192', 20049 'Test2::API::InterceptResult::Hub'=> '1.302192', 20050 'Test2::API::InterceptResult::Squasher'=> '1.302192', 20051 'Test2::API::Stack' => '1.302192', 20052 'Test2::Event' => '1.302192', 20053 'Test2::Event::Bail' => '1.302192', 20054 'Test2::Event::Diag' => '1.302192', 20055 'Test2::Event::Encoding'=> '1.302192', 20056 'Test2::Event::Exception'=> '1.302192', 20057 'Test2::Event::Fail' => '1.302192', 20058 'Test2::Event::Generic' => '1.302192', 20059 'Test2::Event::Note' => '1.302192', 20060 'Test2::Event::Ok' => '1.302192', 20061 'Test2::Event::Pass' => '1.302192', 20062 'Test2::Event::Plan' => '1.302192', 20063 'Test2::Event::Skip' => '1.302192', 20064 'Test2::Event::Subtest' => '1.302192', 20065 'Test2::Event::TAP::Version'=> '1.302192', 20066 'Test2::Event::V2' => '1.302192', 20067 'Test2::Event::Waiting' => '1.302192', 20068 'Test2::EventFacet' => '1.302192', 20069 'Test2::EventFacet::About'=> '1.302192', 20070 'Test2::EventFacet::Amnesty'=> '1.302192', 20071 'Test2::EventFacet::Assert'=> '1.302192', 20072 'Test2::EventFacet::Control'=> '1.302192', 20073 'Test2::EventFacet::Error'=> '1.302192', 20074 'Test2::EventFacet::Hub'=> '1.302192', 20075 'Test2::EventFacet::Info'=> '1.302192', 20076 'Test2::EventFacet::Info::Table'=> '1.302192', 20077 'Test2::EventFacet::Meta'=> '1.302192', 20078 'Test2::EventFacet::Parent'=> '1.302192', 20079 'Test2::EventFacet::Plan'=> '1.302192', 20080 'Test2::EventFacet::Render'=> '1.302192', 20081 'Test2::EventFacet::Trace'=> '1.302192', 20082 'Test2::Formatter' => '1.302192', 20083 'Test2::Formatter::TAP' => '1.302192', 20084 'Test2::Hub' => '1.302192', 20085 'Test2::Hub::Interceptor'=> '1.302192', 20086 'Test2::Hub::Interceptor::Terminator'=> '1.302192', 20087 'Test2::Hub::Subtest' => '1.302192', 20088 'Test2::IPC' => '1.302192', 20089 'Test2::IPC::Driver' => '1.302192', 20090 'Test2::IPC::Driver::Files'=> '1.302192', 20091 'Test2::Tools::Tiny' => '1.302192', 20092 'Test2::Util' => '1.302192', 20093 'Test2::Util::ExternalMeta'=> '1.302192', 20094 'Test2::Util::Facets2Legacy'=> '1.302192', 20095 'Test2::Util::HashBase' => '1.302192', 20096 'Test2::Util::Trace' => '1.302192', 20097 'Test::Builder' => '1.302192', 20098 'Test::Builder::Formatter'=> '1.302192', 20099 'Test::Builder::Module' => '1.302192', 20100 'Test::Builder::Tester' => '1.302192', 20101 'Test::Builder::Tester::Color'=> '1.302192', 20102 'Test::Builder::TodoDiag'=> '1.302192', 20103 'Test::More' => '1.302192', 20104 'Test::Simple' => '1.302192', 20105 'Test::Tester' => '1.302192', 20106 'Test::Tester::Capture' => '1.302192', 20107 'Test::Tester::CaptureRunner'=> '1.302192', 20108 'Test::Tester::Delegate'=> '1.302192', 20109 'Test::use::ok' => '1.302192', 20110 'Tie::File' => '1.07', 20111 'UNIVERSAL' => '1.15', 20112 'autodie' => '2.36', 20113 'autodie::Scope::Guard' => '2.36', 20114 'autodie::Scope::GuardStack'=> '2.36', 20115 'autodie::Util' => '2.36', 20116 'autodie::exception' => '2.36', 20117 'autodie::exception::system'=> '2.36', 20118 'autodie::hints' => '2.36', 20119 'autodie::skip' => '2.36', 20120 'experimental' => '0.031', 20121 'feature' => '1.80', 20122 'mro' => '1.28', 20123 'ok' => '1.302192', 20124 'parent' => '0.241', 20125 'stable' => '0.031', 20126 'warnings' => '1.62', 20127 }, 20128 removed => { 20129 } 20130 }, 20131 5.037010 => { 20132 delta_from => 5.037009, 20133 changed => { 20134 'B::Op_private' => '5.037010', 20135 'Benchmark' => '1.24', 20136 'Class::Struct' => '0.68', 20137 'Config' => '5.03701', 20138 'Config::Perl::V' => '0.36', 20139 'Cwd' => '3.89', 20140 'Data::Dumper' => '2.188', 20141 'Digest::SHA' => '6.04', 20142 'Env' => '1.06', 20143 'Math::Complex' => '1.62', 20144 'Math::Trig' => '1.62', 20145 'Module::CoreList' => '5.20230320', 20146 'Module::CoreList::Utils'=> '5.20230320', 20147 'Net::Cmd' => '3.15', 20148 'Net::Config' => '3.15', 20149 'Net::Domain' => '3.15', 20150 'Net::FTP' => '3.15', 20151 'Net::FTP::A' => '3.15', 20152 'Net::FTP::E' => '3.15', 20153 'Net::FTP::I' => '3.15', 20154 'Net::FTP::L' => '3.15', 20155 'Net::FTP::dataconn' => '3.15', 20156 'Net::NNTP' => '3.15', 20157 'Net::Netrc' => '3.15', 20158 'Net::POP3' => '3.15', 20159 'Net::SMTP' => '3.15', 20160 'Net::Time' => '3.15', 20161 'POSIX' => '2.12', 20162 'Storable' => '3.31', 20163 'Test2' => '1.302194', 20164 'Test2::API' => '1.302194', 20165 'Test2::API::Breakage' => '1.302194', 20166 'Test2::API::Context' => '1.302194', 20167 'Test2::API::Instance' => '1.302194', 20168 'Test2::API::InterceptResult'=> '1.302194', 20169 'Test2::API::InterceptResult::Event'=> '1.302194', 20170 'Test2::API::InterceptResult::Facet'=> '1.302194', 20171 'Test2::API::InterceptResult::Hub'=> '1.302194', 20172 'Test2::API::InterceptResult::Squasher'=> '1.302194', 20173 'Test2::API::Stack' => '1.302194', 20174 'Test2::Event' => '1.302194', 20175 'Test2::Event::Bail' => '1.302194', 20176 'Test2::Event::Diag' => '1.302194', 20177 'Test2::Event::Encoding'=> '1.302194', 20178 'Test2::Event::Exception'=> '1.302194', 20179 'Test2::Event::Fail' => '1.302194', 20180 'Test2::Event::Generic' => '1.302194', 20181 'Test2::Event::Note' => '1.302194', 20182 'Test2::Event::Ok' => '1.302194', 20183 'Test2::Event::Pass' => '1.302194', 20184 'Test2::Event::Plan' => '1.302194', 20185 'Test2::Event::Skip' => '1.302194', 20186 'Test2::Event::Subtest' => '1.302194', 20187 'Test2::Event::TAP::Version'=> '1.302194', 20188 'Test2::Event::V2' => '1.302194', 20189 'Test2::Event::Waiting' => '1.302194', 20190 'Test2::EventFacet' => '1.302194', 20191 'Test2::EventFacet::About'=> '1.302194', 20192 'Test2::EventFacet::Amnesty'=> '1.302194', 20193 'Test2::EventFacet::Assert'=> '1.302194', 20194 'Test2::EventFacet::Control'=> '1.302194', 20195 'Test2::EventFacet::Error'=> '1.302194', 20196 'Test2::EventFacet::Hub'=> '1.302194', 20197 'Test2::EventFacet::Info'=> '1.302194', 20198 'Test2::EventFacet::Info::Table'=> '1.302194', 20199 'Test2::EventFacet::Meta'=> '1.302194', 20200 'Test2::EventFacet::Parent'=> '1.302194', 20201 'Test2::EventFacet::Plan'=> '1.302194', 20202 'Test2::EventFacet::Render'=> '1.302194', 20203 'Test2::EventFacet::Trace'=> '1.302194', 20204 'Test2::Formatter' => '1.302194', 20205 'Test2::Formatter::TAP' => '1.302194', 20206 'Test2::Hub' => '1.302194', 20207 'Test2::Hub::Interceptor'=> '1.302194', 20208 'Test2::Hub::Interceptor::Terminator'=> '1.302194', 20209 'Test2::Hub::Subtest' => '1.302194', 20210 'Test2::IPC' => '1.302194', 20211 'Test2::IPC::Driver' => '1.302194', 20212 'Test2::IPC::Driver::Files'=> '1.302194', 20213 'Test2::Tools::Tiny' => '1.302194', 20214 'Test2::Util' => '1.302194', 20215 'Test2::Util::ExternalMeta'=> '1.302194', 20216 'Test2::Util::Facets2Legacy'=> '1.302194', 20217 'Test2::Util::HashBase' => '1.302194', 20218 'Test2::Util::Trace' => '1.302194', 20219 'Test::Builder' => '1.302194', 20220 'Test::Builder::Formatter'=> '1.302194', 20221 'Test::Builder::Module' => '1.302194', 20222 'Test::Builder::Tester' => '1.302194', 20223 'Test::Builder::Tester::Color'=> '1.302194', 20224 'Test::Builder::TodoDiag'=> '1.302194', 20225 'Test::More' => '1.302194', 20226 'Test::Simple' => '1.302194', 20227 'Test::Tester' => '1.302194', 20228 'Test::Tester::Capture' => '1.302194', 20229 'Test::Tester::CaptureRunner'=> '1.302194', 20230 'Test::Tester::Delegate'=> '1.302194', 20231 'Test::use::ok' => '1.302194', 20232 'Time::HiRes' => '1.9774', 20233 'XS::APItest' => '1.32', 20234 'feature' => '1.81', 20235 'ok' => '1.302194', 20236 'overload' => '1.37', 20237 'threads' => '2.35', 20238 'threads::shared' => '1.67', 20239 'warnings' => '1.63', 20240 'warnings::register' => '1.05', 20241 }, 20242 removed => { 20243 } 20244 }, 20245 5.037011 => { 20246 delta_from => 5.037010, 20247 changed => { 20248 'B::Deparse' => '1.73', 20249 'B::Op_private' => '5.037011', 20250 'Config' => '5.037011', 20251 'Devel::PPPort' => '3.71', 20252 'ExtUtils::Command' => '7.70', 20253 'ExtUtils::Command::MM' => '7.70', 20254 'ExtUtils::Liblist' => '7.70', 20255 'ExtUtils::Liblist::Kid'=> '7.70', 20256 'ExtUtils::MM' => '7.70', 20257 'ExtUtils::MM_AIX' => '7.70', 20258 'ExtUtils::MM_Any' => '7.70', 20259 'ExtUtils::MM_BeOS' => '7.70', 20260 'ExtUtils::MM_Cygwin' => '7.70', 20261 'ExtUtils::MM_DOS' => '7.70', 20262 'ExtUtils::MM_Darwin' => '7.70', 20263 'ExtUtils::MM_MacOS' => '7.70', 20264 'ExtUtils::MM_NW5' => '7.70', 20265 'ExtUtils::MM_OS2' => '7.70', 20266 'ExtUtils::MM_OS390' => '7.70', 20267 'ExtUtils::MM_QNX' => '7.70', 20268 'ExtUtils::MM_UWIN' => '7.70', 20269 'ExtUtils::MM_Unix' => '7.70', 20270 'ExtUtils::MM_VMS' => '7.70', 20271 'ExtUtils::MM_VOS' => '7.70', 20272 'ExtUtils::MM_Win32' => '7.70', 20273 'ExtUtils::MM_Win95' => '7.70', 20274 'ExtUtils::MY' => '7.70', 20275 'ExtUtils::MakeMaker' => '7.70', 20276 'ExtUtils::MakeMaker::Config'=> '7.70', 20277 'ExtUtils::MakeMaker::Locale'=> '7.70', 20278 'ExtUtils::MakeMaker::version'=> '7.70', 20279 'ExtUtils::MakeMaker::version::regex'=> '7.70', 20280 'ExtUtils::Mkbootstrap' => '7.70', 20281 'ExtUtils::Mksymlists' => '7.70', 20282 'ExtUtils::ParseXS' => '3.50', 20283 'ExtUtils::ParseXS::Constants'=> '3.50', 20284 'ExtUtils::ParseXS::CountLines'=> '3.50', 20285 'ExtUtils::ParseXS::Eval'=> '3.50', 20286 'ExtUtils::ParseXS::Utilities'=> '3.50', 20287 'ExtUtils::testlib' => '7.70', 20288 'File::Copy' => '2.41', 20289 'Locale::Maketext' => '1.33', 20290 'Module::CoreList' => '5.20230420', 20291 'Module::CoreList::Utils'=> '5.20230420', 20292 'Net::Ping' => '2.76', 20293 'feature' => '1.82', 20294 'threads' => '2.36', 20295 'threads::shared' => '1.68', 20296 'warnings' => '1.64', 20297 }, 20298 removed => { 20299 } 20300 }, 20301 5.036001 => { 20302 delta_from => 5.036000, 20303 changed => { 20304 'B::Op_private' => '5.036001', 20305 'Config' => '5.036001', 20306 'Module::CoreList' => '5.20230423', 20307 'Module::CoreList::Utils'=> '5.20230423', 20308 }, 20309 removed => { 20310 } 20311 }, 20312 5.038000 => { 20313 delta_from => 5.037011, 20314 changed => { 20315 'B::Deparse' => '1.74', 20316 'B::Op_private' => '5.038000', 20317 'CPAN' => '2.36', 20318 'CPAN::HTTP::Client' => '1.9602', 20319 'Compress::Raw::Bzip2' => '2.204_001', 20320 'Compress::Raw::Zlib' => '2.204_001', 20321 'Config' => '5.038', 20322 'Digest::MD5' => '2.58_01', 20323 'DynaLoader' => '1.54', 20324 'ExtUtils::ParseXS' => '3.51', 20325 'ExtUtils::ParseXS::Constants'=> '3.51', 20326 'ExtUtils::ParseXS::CountLines'=> '3.51', 20327 'ExtUtils::ParseXS::Eval'=> '3.51', 20328 'ExtUtils::ParseXS::Utilities'=> '3.51', 20329 'ExtUtils::Typemaps' => '3.51', 20330 'ExtUtils::Typemaps::Cmd'=> '3.51', 20331 'ExtUtils::Typemaps::InputMap'=> '3.51', 20332 'ExtUtils::Typemaps::OutputMap'=> '3.51', 20333 'ExtUtils::Typemaps::Type'=> '3.51', 20334 'File::Glob' => '1.40', 20335 'HTTP::Tiny' => '0.086', 20336 'IO' => '1.52', 20337 'IO::Dir' => '1.52', 20338 'IO::File' => '1.52', 20339 'IO::Handle' => '1.52', 20340 'IO::Pipe' => '1.52', 20341 'IO::Poll' => '1.52', 20342 'IO::Seekable' => '1.52', 20343 'IO::Select' => '1.52', 20344 'IO::Socket' => '1.52', 20345 'IO::Socket::INET' => '1.52', 20346 'IO::Socket::IP' => '0.41_01', 20347 'IO::Socket::UNIX' => '1.52', 20348 'MIME::Base64' => '3.16_01', 20349 'MIME::QuotedPrint' => '3.16_01', 20350 'Module::CoreList' => '5.20230520', 20351 'Module::CoreList::Utils'=> '5.20230520', 20352 'POSIX' => '2.13', 20353 'SDBM_File' => '1.17', 20354 'Storable' => '3.32', 20355 'Time::HiRes' => '1.9775', 20356 'Time::Piece' => '1.3401_01', 20357 'warnings' => '1.65', 20358 }, 20359 removed => { 20360 } 20361 }, 20362 5.039001 => { 20363 delta_from => 5.038000, 20364 changed => { 20365 'B::Op_private' => '5.039001', 20366 'CPAN::Meta::Requirements'=> '2.143', 20367 'CPAN::Meta::Requirements::Range'=> '2.143', 20368 'Compress::Raw::Bzip2' => '2.205', 20369 'Compress::Raw::Zlib' => '2.205', 20370 'Compress::Zlib' => '2.205', 20371 'Config' => '5.039001', 20372 'Errno' => '1.38', 20373 'ExtUtils::CBuilder' => '0.280239', 20374 'ExtUtils::CBuilder::Base'=> '0.280239', 20375 'ExtUtils::CBuilder::Platform::Unix'=> '0.280239', 20376 'ExtUtils::CBuilder::Platform::VMS'=> '0.280239', 20377 'ExtUtils::CBuilder::Platform::Windows'=> '0.280239', 20378 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280239', 20379 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280239', 20380 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280239', 20381 'ExtUtils::CBuilder::Platform::aix'=> '0.280239', 20382 'ExtUtils::CBuilder::Platform::android'=> '0.280239', 20383 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280239', 20384 'ExtUtils::CBuilder::Platform::darwin'=> '0.280239', 20385 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280239', 20386 'ExtUtils::CBuilder::Platform::os2'=> '0.280239', 20387 'ExtUtils::Manifest' => '1.75', 20388 'IO::Compress::Adapter::Bzip2'=> '2.205', 20389 'IO::Compress::Adapter::Deflate'=> '2.205', 20390 'IO::Compress::Adapter::Identity'=> '2.205', 20391 'IO::Compress::Base' => '2.205', 20392 'IO::Compress::Base::Common'=> '2.205', 20393 'IO::Compress::Bzip2' => '2.205', 20394 'IO::Compress::Deflate' => '2.205', 20395 'IO::Compress::Gzip' => '2.205', 20396 'IO::Compress::Gzip::Constants'=> '2.205', 20397 'IO::Compress::RawDeflate'=> '2.205', 20398 'IO::Compress::Zip' => '2.205', 20399 'IO::Compress::Zip::Constants'=> '2.205', 20400 'IO::Compress::Zlib::Constants'=> '2.205', 20401 'IO::Compress::Zlib::Extra'=> '2.205', 20402 'IO::Uncompress::Adapter::Bunzip2'=> '2.205', 20403 'IO::Uncompress::Adapter::Identity'=> '2.205', 20404 'IO::Uncompress::Adapter::Inflate'=> '2.205', 20405 'IO::Uncompress::AnyInflate'=> '2.205', 20406 'IO::Uncompress::AnyUncompress'=> '2.205', 20407 'IO::Uncompress::Base' => '2.205', 20408 'IO::Uncompress::Bunzip2'=> '2.205', 20409 'IO::Uncompress::Gunzip'=> '2.205', 20410 'IO::Uncompress::Inflate'=> '2.205', 20411 'IO::Uncompress::RawInflate'=> '2.205', 20412 'IO::Uncompress::Unzip' => '2.205', 20413 'Math::BigFloat' => '1.999839', 20414 'Math::BigInt' => '1.999839', 20415 'Math::BigInt::Calc' => '1.999839', 20416 'Math::BigInt::FastCalc'=> '0.5014', 20417 'Math::BigInt::Lib' => '1.999839', 20418 'Module::CoreList' => '5.20230720', 20419 'Module::CoreList::Utils'=> '5.20230720', 20420 'Module::Metadata' => '1.000038', 20421 'POSIX' => '2.14', 20422 'Socket' => '2.037', 20423 'Test2' => '1.302195', 20424 'Test2::API' => '1.302195', 20425 'Test2::API::Breakage' => '1.302195', 20426 'Test2::API::Context' => '1.302195', 20427 'Test2::API::Instance' => '1.302195', 20428 'Test2::API::InterceptResult'=> '1.302195', 20429 'Test2::API::InterceptResult::Event'=> '1.302195', 20430 'Test2::API::InterceptResult::Facet'=> '1.302195', 20431 'Test2::API::InterceptResult::Hub'=> '1.302195', 20432 'Test2::API::InterceptResult::Squasher'=> '1.302195', 20433 'Test2::API::Stack' => '1.302195', 20434 'Test2::Event' => '1.302195', 20435 'Test2::Event::Bail' => '1.302195', 20436 'Test2::Event::Diag' => '1.302195', 20437 'Test2::Event::Encoding'=> '1.302195', 20438 'Test2::Event::Exception'=> '1.302195', 20439 'Test2::Event::Fail' => '1.302195', 20440 'Test2::Event::Generic' => '1.302195', 20441 'Test2::Event::Note' => '1.302195', 20442 'Test2::Event::Ok' => '1.302195', 20443 'Test2::Event::Pass' => '1.302195', 20444 'Test2::Event::Plan' => '1.302195', 20445 'Test2::Event::Skip' => '1.302195', 20446 'Test2::Event::Subtest' => '1.302195', 20447 'Test2::Event::TAP::Version'=> '1.302195', 20448 'Test2::Event::V2' => '1.302195', 20449 'Test2::Event::Waiting' => '1.302195', 20450 'Test2::EventFacet' => '1.302195', 20451 'Test2::EventFacet::About'=> '1.302195', 20452 'Test2::EventFacet::Amnesty'=> '1.302195', 20453 'Test2::EventFacet::Assert'=> '1.302195', 20454 'Test2::EventFacet::Control'=> '1.302195', 20455 'Test2::EventFacet::Error'=> '1.302195', 20456 'Test2::EventFacet::Hub'=> '1.302195', 20457 'Test2::EventFacet::Info'=> '1.302195', 20458 'Test2::EventFacet::Info::Table'=> '1.302195', 20459 'Test2::EventFacet::Meta'=> '1.302195', 20460 'Test2::EventFacet::Parent'=> '1.302195', 20461 'Test2::EventFacet::Plan'=> '1.302195', 20462 'Test2::EventFacet::Render'=> '1.302195', 20463 'Test2::EventFacet::Trace'=> '1.302195', 20464 'Test2::Formatter' => '1.302195', 20465 'Test2::Formatter::TAP' => '1.302195', 20466 'Test2::Hub' => '1.302195', 20467 'Test2::Hub::Interceptor'=> '1.302195', 20468 'Test2::Hub::Interceptor::Terminator'=> '1.302195', 20469 'Test2::Hub::Subtest' => '1.302195', 20470 'Test2::IPC' => '1.302195', 20471 'Test2::IPC::Driver' => '1.302195', 20472 'Test2::IPC::Driver::Files'=> '1.302195', 20473 'Test2::Tools::Tiny' => '1.302195', 20474 'Test2::Util' => '1.302195', 20475 'Test2::Util::ExternalMeta'=> '1.302195', 20476 'Test2::Util::Facets2Legacy'=> '1.302195', 20477 'Test2::Util::HashBase' => '1.302195', 20478 'Test2::Util::Trace' => '1.302195', 20479 'Test::Builder' => '1.302195', 20480 'Test::Builder::Formatter'=> '1.302195', 20481 'Test::Builder::Module' => '1.302195', 20482 'Test::Builder::Tester' => '1.302195', 20483 'Test::Builder::Tester::Color'=> '1.302195', 20484 'Test::Builder::TodoDiag'=> '1.302195', 20485 'Test::More' => '1.302195', 20486 'Test::Simple' => '1.302195', 20487 'Test::Tester' => '1.302195', 20488 'Test::Tester::Capture' => '1.302195', 20489 'Test::Tester::CaptureRunner'=> '1.302195', 20490 'Test::Tester::Delegate'=> '1.302195', 20491 'Test::use::ok' => '1.302195', 20492 'Text::Tabs' => '2023.0511', 20493 'Text::Wrap' => '2023.0511', 20494 'Time::HiRes' => '1.9776', 20495 'Time::Local' => '1.35', 20496 'UNIVERSAL' => '1.16', 20497 'feature' => '1.83', 20498 'ok' => '1.302195', 20499 'perlfaq' => '5.20230701', 20500 'threads' => '2.37', 20501 'warnings' => '1.66', 20502 'warnings::register' => '1.06', 20503 }, 20504 removed => { 20505 } 20506 }, 20507 5.039002 => { 20508 delta_from => 5.039001, 20509 changed => { 20510 'App::Prove' => '3.47', 20511 'App::Prove::State' => '3.47', 20512 'App::Prove::State::Result'=> '3.47', 20513 'App::Prove::State::Result::Test'=> '3.47', 20514 'B::Op_private' => '5.039002', 20515 'Compress::Raw::Bzip2' => '2.206', 20516 'Compress::Raw::Zlib' => '2.206', 20517 'Compress::Zlib' => '2.206', 20518 'Config' => '5.039002', 20519 'Cwd' => '3.90', 20520 'Devel::Peek' => '1.34', 20521 'ExtUtils::Miniperl' => '1.14', 20522 'File::Spec' => '3.90', 20523 'File::Spec::AmigaOS' => '3.90', 20524 'File::Spec::Cygwin' => '3.90', 20525 'File::Spec::Epoc' => '3.90', 20526 'File::Spec::Functions' => '3.90', 20527 'File::Spec::Mac' => '3.90', 20528 'File::Spec::OS2' => '3.90', 20529 'File::Spec::Unix' => '3.90', 20530 'File::Spec::VMS' => '3.90', 20531 'File::Spec::Win32' => '3.90', 20532 'HTTP::Tiny' => '0.088', 20533 'IO::Compress::Adapter::Bzip2'=> '2.206', 20534 'IO::Compress::Adapter::Deflate'=> '2.206', 20535 'IO::Compress::Adapter::Identity'=> '2.206', 20536 'IO::Compress::Base' => '2.206', 20537 'IO::Compress::Base::Common'=> '2.206', 20538 'IO::Compress::Bzip2' => '2.206', 20539 'IO::Compress::Deflate' => '2.206', 20540 'IO::Compress::Gzip' => '2.206', 20541 'IO::Compress::Gzip::Constants'=> '2.206', 20542 'IO::Compress::RawDeflate'=> '2.206', 20543 'IO::Compress::Zip' => '2.206', 20544 'IO::Compress::Zip::Constants'=> '2.206', 20545 'IO::Compress::Zlib::Constants'=> '2.206', 20546 'IO::Compress::Zlib::Extra'=> '2.206', 20547 'IO::Socket::IP' => '0.42', 20548 'IO::Uncompress::Adapter::Bunzip2'=> '2.206', 20549 'IO::Uncompress::Adapter::Identity'=> '2.206', 20550 'IO::Uncompress::Adapter::Inflate'=> '2.206', 20551 'IO::Uncompress::AnyInflate'=> '2.206', 20552 'IO::Uncompress::AnyUncompress'=> '2.206', 20553 'IO::Uncompress::Base' => '2.206', 20554 'IO::Uncompress::Bunzip2'=> '2.206', 20555 'IO::Uncompress::Gunzip'=> '2.206', 20556 'IO::Uncompress::Inflate'=> '2.206', 20557 'IO::Uncompress::RawInflate'=> '2.206', 20558 'IO::Uncompress::Unzip' => '2.206', 20559 'Module::CoreList' => '5.20230820', 20560 'Module::CoreList::Utils'=> '5.20230820', 20561 'NDBM_File' => '1.17', 20562 'Opcode' => '1.65', 20563 'POSIX' => '2.15', 20564 'PerlIO::scalar' => '0.32', 20565 'PerlIO::via' => '0.19', 20566 'Pod::Html' => '1.35', 20567 'Pod::Html::Util' => '1.35', 20568 'Pod::Simple' => '3.45', 20569 'Pod::Simple::BlackBox' => '3.45', 20570 'Pod::Simple::Checker' => '3.45', 20571 'Pod::Simple::Debug' => '3.45', 20572 'Pod::Simple::DumpAsText'=> '3.45', 20573 'Pod::Simple::DumpAsXML'=> '3.45', 20574 'Pod::Simple::HTML' => '3.45', 20575 'Pod::Simple::HTMLBatch'=> '3.45', 20576 'Pod::Simple::HTMLLegacy'=> '5.02', 20577 'Pod::Simple::LinkSection'=> '3.45', 20578 'Pod::Simple::Methody' => '3.45', 20579 'Pod::Simple::Progress' => '3.45', 20580 'Pod::Simple::PullParser'=> '3.45', 20581 'Pod::Simple::PullParserEndToken'=> '3.45', 20582 'Pod::Simple::PullParserStartToken'=> '3.45', 20583 'Pod::Simple::PullParserTextToken'=> '3.45', 20584 'Pod::Simple::PullParserToken'=> '3.45', 20585 'Pod::Simple::RTF' => '3.45', 20586 'Pod::Simple::Search' => '3.45', 20587 'Pod::Simple::SimpleTree'=> '3.45', 20588 'Pod::Simple::Text' => '3.45', 20589 'Pod::Simple::TextContent'=> '3.45', 20590 'Pod::Simple::TiedOutFH'=> '3.45', 20591 'Pod::Simple::Transcode'=> '3.45', 20592 'Pod::Simple::TranscodeDumb'=> '3.45', 20593 'Pod::Simple::TranscodeSmart'=> '3.45', 20594 'Pod::Simple::XHTML' => '3.45', 20595 'Pod::Simple::XMLOutStream'=> '3.45', 20596 'Safe' => '2.45', 20597 'TAP::Base' => '3.47', 20598 'TAP::Formatter::Base' => '3.47', 20599 'TAP::Formatter::Color' => '3.47', 20600 'TAP::Formatter::Console'=> '3.47', 20601 'TAP::Formatter::Console::ParallelSession'=> '3.47', 20602 'TAP::Formatter::Console::Session'=> '3.47', 20603 'TAP::Formatter::File' => '3.47', 20604 'TAP::Formatter::File::Session'=> '3.47', 20605 'TAP::Formatter::Session'=> '3.47', 20606 'TAP::Harness' => '3.47', 20607 'TAP::Harness::Env' => '3.47', 20608 'TAP::Object' => '3.47', 20609 'TAP::Parser' => '3.47', 20610 'TAP::Parser::Aggregator'=> '3.47', 20611 'TAP::Parser::Grammar' => '3.47', 20612 'TAP::Parser::Iterator' => '3.47', 20613 'TAP::Parser::Iterator::Array'=> '3.47', 20614 'TAP::Parser::Iterator::Process'=> '3.47', 20615 'TAP::Parser::Iterator::Stream'=> '3.47', 20616 'TAP::Parser::IteratorFactory'=> '3.47', 20617 'TAP::Parser::Multiplexer'=> '3.47', 20618 'TAP::Parser::Result' => '3.47', 20619 'TAP::Parser::Result::Bailout'=> '3.47', 20620 'TAP::Parser::Result::Comment'=> '3.47', 20621 'TAP::Parser::Result::Plan'=> '3.47', 20622 'TAP::Parser::Result::Pragma'=> '3.47', 20623 'TAP::Parser::Result::Test'=> '3.47', 20624 'TAP::Parser::Result::Unknown'=> '3.47', 20625 'TAP::Parser::Result::Version'=> '3.47', 20626 'TAP::Parser::Result::YAML'=> '3.47', 20627 'TAP::Parser::ResultFactory'=> '3.47', 20628 'TAP::Parser::Scheduler'=> '3.47', 20629 'TAP::Parser::Scheduler::Job'=> '3.47', 20630 'TAP::Parser::Scheduler::Spinner'=> '3.47', 20631 'TAP::Parser::Source' => '3.47', 20632 'TAP::Parser::SourceHandler'=> '3.47', 20633 'TAP::Parser::SourceHandler::Executable'=> '3.47', 20634 'TAP::Parser::SourceHandler::File'=> '3.47', 20635 'TAP::Parser::SourceHandler::Handle'=> '3.47', 20636 'TAP::Parser::SourceHandler::Perl'=> '3.47', 20637 'TAP::Parser::SourceHandler::RawTAP'=> '3.47', 20638 'TAP::Parser::YAMLish::Reader'=> '3.47', 20639 'TAP::Parser::YAMLish::Writer'=> '3.47', 20640 'Test::Harness' => '3.47', 20641 'XS::APItest' => '1.33', 20642 'builtin' => '0.009', 20643 'feature' => '1.84', 20644 'perlfaq' => '5.20230812', 20645 'strict' => '1.13', 20646 'threads' => '2.38', 20647 'warnings' => '1.67', 20648 }, 20649 removed => { 20650 } 20651 }, 20652 5.039003 => { 20653 delta_from => 5.039002, 20654 changed => { 20655 'B' => '1.89', 20656 'B::Op_private' => '5.039003', 20657 'Config' => '5.039003', 20658 'DB_File' => '1.859', 20659 'Data::Dumper' => '2.189', 20660 'Devel::PPPort' => '3.72', 20661 'ExtUtils::CBuilder' => '0.280240', 20662 'ExtUtils::CBuilder::Base'=> '0.280240', 20663 'ExtUtils::CBuilder::Platform::Unix'=> '0.280240', 20664 'ExtUtils::CBuilder::Platform::VMS'=> '0.280240', 20665 'ExtUtils::CBuilder::Platform::Windows'=> '0.280240', 20666 'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280240', 20667 'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280240', 20668 'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280240', 20669 'ExtUtils::CBuilder::Platform::aix'=> '0.280240', 20670 'ExtUtils::CBuilder::Platform::android'=> '0.280240', 20671 'ExtUtils::CBuilder::Platform::cygwin'=> '0.280240', 20672 'ExtUtils::CBuilder::Platform::darwin'=> '0.280240', 20673 'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280240', 20674 'ExtUtils::CBuilder::Platform::os2'=> '0.280240', 20675 'File::Compare' => '1.1008', 20676 'File::Spec::AmigaOS' => '3.91', 20677 'File::Spec::Cygwin' => '3.91', 20678 'File::Spec::Epoc' => '3.91', 20679 'File::Spec::Functions' => '3.91', 20680 'File::Spec::Mac' => '3.91', 20681 'File::Spec::OS2' => '3.91', 20682 'File::Spec::Unix' => '3.91', 20683 'File::Spec::VMS' => '3.91', 20684 'File::Spec::Win32' => '3.91', 20685 'FindBin' => '1.54', 20686 'Getopt::Std' => '1.14', 20687 'IO' => '1.53', 20688 'IO::Dir' => '1.53', 20689 'IO::File' => '1.53', 20690 'IO::Handle' => '1.53', 20691 'IO::Pipe' => '1.53', 20692 'IO::Poll' => '1.53', 20693 'IO::Seekable' => '1.53', 20694 'IO::Select' => '1.53', 20695 'IO::Socket' => '1.53', 20696 'IO::Socket::INET' => '1.53', 20697 'IO::Socket::UNIX' => '1.53', 20698 'Module::CoreList' => '5.20230920', 20699 'Module::CoreList::Utils'=> '5.20230920', 20700 'builtin' => '0.010', 20701 'fields' => '2.25', 20702 'threads' => '2.39', 20703 'threads::shared' => '1.69', 20704 }, 20705 removed => { 20706 } 20707 }, 20708 5.039004 => { 20709 delta_from => 5.039003, 20710 changed => { 20711 'App::Prove' => '3.48', 20712 'App::Prove::State' => '3.48', 20713 'App::Prove::State::Result'=> '3.48', 20714 'App::Prove::State::Result::Test'=> '3.48', 20715 'B::Op_private' => '5.039004', 20716 'Config' => '5.039004', 20717 'File::Find' => '1.44', 20718 'File::stat' => '1.14', 20719 'Math::BigFloat' => '1.999842', 20720 'Math::BigInt' => '1.999842', 20721 'Math::BigInt::Calc' => '1.999842', 20722 'Math::BigInt::FastCalc'=> '0.5015', 20723 'Math::BigInt::Lib' => '1.999842', 20724 'Module::CoreList' => '5.20231025', 20725 'Module::CoreList::Utils'=> '5.20231025', 20726 'Net::hostent' => '1.04', 20727 'Net::netent' => '1.02', 20728 'Net::protoent' => '1.03', 20729 'Net::servent' => '1.04', 20730 'POSIX' => '2.16', 20731 'TAP::Base' => '3.48', 20732 'TAP::Formatter::Base' => '3.48', 20733 'TAP::Formatter::Color' => '3.48', 20734 'TAP::Formatter::Console'=> '3.48', 20735 'TAP::Formatter::Console::ParallelSession'=> '3.48', 20736 'TAP::Formatter::Console::Session'=> '3.48', 20737 'TAP::Formatter::File' => '3.48', 20738 'TAP::Formatter::File::Session'=> '3.48', 20739 'TAP::Formatter::Session'=> '3.48', 20740 'TAP::Harness' => '3.48', 20741 'TAP::Harness::Env' => '3.48', 20742 'TAP::Object' => '3.48', 20743 'TAP::Parser' => '3.48', 20744 'TAP::Parser::Aggregator'=> '3.48', 20745 'TAP::Parser::Grammar' => '3.48', 20746 'TAP::Parser::Iterator' => '3.48', 20747 'TAP::Parser::Iterator::Array'=> '3.48', 20748 'TAP::Parser::Iterator::Process'=> '3.48', 20749 'TAP::Parser::Iterator::Stream'=> '3.48', 20750 'TAP::Parser::IteratorFactory'=> '3.48', 20751 'TAP::Parser::Multiplexer'=> '3.48', 20752 'TAP::Parser::Result' => '3.48', 20753 'TAP::Parser::Result::Bailout'=> '3.48', 20754 'TAP::Parser::Result::Comment'=> '3.48', 20755 'TAP::Parser::Result::Plan'=> '3.48', 20756 'TAP::Parser::Result::Pragma'=> '3.48', 20757 'TAP::Parser::Result::Test'=> '3.48', 20758 'TAP::Parser::Result::Unknown'=> '3.48', 20759 'TAP::Parser::Result::Version'=> '3.48', 20760 'TAP::Parser::Result::YAML'=> '3.48', 20761 'TAP::Parser::ResultFactory'=> '3.48', 20762 'TAP::Parser::Scheduler'=> '3.48', 20763 'TAP::Parser::Scheduler::Job'=> '3.48', 20764 'TAP::Parser::Scheduler::Spinner'=> '3.48', 20765 'TAP::Parser::Source' => '3.48', 20766 'TAP::Parser::SourceHandler'=> '3.48', 20767 'TAP::Parser::SourceHandler::Executable'=> '3.48', 20768 'TAP::Parser::SourceHandler::File'=> '3.48', 20769 'TAP::Parser::SourceHandler::Handle'=> '3.48', 20770 'TAP::Parser::SourceHandler::Perl'=> '3.48', 20771 'TAP::Parser::SourceHandler::RawTAP'=> '3.48', 20772 'TAP::Parser::YAMLish::Reader'=> '3.48', 20773 'TAP::Parser::YAMLish::Writer'=> '3.48', 20774 'Term::Table' => '0.017', 20775 'Term::Table::Cell' => '0.017', 20776 'Term::Table::CellStack'=> '0.017', 20777 'Term::Table::HashBase' => '0.017', 20778 'Term::Table::LineBreak'=> '0.017', 20779 'Term::Table::Spacer' => '0.017', 20780 'Term::Table::Util' => '0.017', 20781 'Test2::AsyncSubtest' => '0.000156', 20782 'Test2::AsyncSubtest::Event::Attach'=> '0.000156', 20783 'Test2::AsyncSubtest::Event::Detach'=> '0.000156', 20784 'Test2::AsyncSubtest::Formatter'=> '0.000156', 20785 'Test2::AsyncSubtest::Hub'=> '0.000156', 20786 'Test2::Bundle' => '0.000156', 20787 'Test2::Bundle::Extended'=> '0.000156', 20788 'Test2::Bundle::More' => '0.000156', 20789 'Test2::Bundle::Simple' => '0.000156', 20790 'Test2::Compare' => '0.000156', 20791 'Test2::Compare::Array' => '0.000156', 20792 'Test2::Compare::Bag' => '0.000156', 20793 'Test2::Compare::Base' => '0.000156', 20794 'Test2::Compare::Bool' => '0.000156', 20795 'Test2::Compare::Custom'=> '0.000156', 20796 'Test2::Compare::DeepRef'=> '0.000156', 20797 'Test2::Compare::Delta' => '0.000156', 20798 'Test2::Compare::Event' => '0.000156', 20799 'Test2::Compare::EventMeta'=> '0.000156', 20800 'Test2::Compare::Float' => '0.000156', 20801 'Test2::Compare::Hash' => '0.000156', 20802 'Test2::Compare::Isa' => '0.000156', 20803 'Test2::Compare::Meta' => '0.000156', 20804 'Test2::Compare::Negatable'=> '0.000156', 20805 'Test2::Compare::Number'=> '0.000156', 20806 'Test2::Compare::Object'=> '0.000156', 20807 'Test2::Compare::OrderedSubset'=> '0.000156', 20808 'Test2::Compare::Pattern'=> '0.000156', 20809 'Test2::Compare::Ref' => '0.000156', 20810 'Test2::Compare::Regex' => '0.000156', 20811 'Test2::Compare::Scalar'=> '0.000156', 20812 'Test2::Compare::Set' => '0.000156', 20813 'Test2::Compare::String'=> '0.000156', 20814 'Test2::Compare::Undef' => '0.000156', 20815 'Test2::Compare::Wildcard'=> '0.000156', 20816 'Test2::Manual' => '0.000156', 20817 'Test2::Manual::Anatomy'=> '0.000156', 20818 'Test2::Manual::Anatomy::API'=> '0.000156', 20819 'Test2::Manual::Anatomy::Context'=> '0.000156', 20820 'Test2::Manual::Anatomy::EndToEnd'=> '0.000156', 20821 'Test2::Manual::Anatomy::Event'=> '0.000156', 20822 'Test2::Manual::Anatomy::Hubs'=> '0.000156', 20823 'Test2::Manual::Anatomy::IPC'=> '0.000156', 20824 'Test2::Manual::Anatomy::Utilities'=> '0.000156', 20825 'Test2::Manual::Concurrency'=> '0.000156', 20826 'Test2::Manual::Contributing'=> '0.000156', 20827 'Test2::Manual::Testing'=> '0.000156', 20828 'Test2::Manual::Testing::Introduction'=> '0.000156', 20829 'Test2::Manual::Testing::Migrating'=> '0.000156', 20830 'Test2::Manual::Testing::Planning'=> '0.000156', 20831 'Test2::Manual::Testing::Todo'=> '0.000156', 20832 'Test2::Manual::Tooling'=> '0.000156', 20833 'Test2::Manual::Tooling::FirstTool'=> '0.000156', 20834 'Test2::Manual::Tooling::Formatter'=> '0.000156', 20835 'Test2::Manual::Tooling::Nesting'=> '0.000156', 20836 'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000156', 20837 'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000156', 20838 'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000156', 20839 'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000156', 20840 'Test2::Manual::Tooling::Subtest'=> '0.000156', 20841 'Test2::Manual::Tooling::TestBuilder'=> '0.000156', 20842 'Test2::Manual::Tooling::Testing'=> '0.000156', 20843 'Test2::Mock' => '0.000156', 20844 'Test2::Plugin' => '0.000156', 20845 'Test2::Plugin::BailOnFail'=> '0.000156', 20846 'Test2::Plugin::DieOnFail'=> '0.000156', 20847 'Test2::Plugin::ExitSummary'=> '0.000156', 20848 'Test2::Plugin::SRand' => '0.000156', 20849 'Test2::Plugin::Times' => '0.000156', 20850 'Test2::Plugin::UTF8' => '0.000156', 20851 'Test2::Require' => '0.000156', 20852 'Test2::Require::AuthorTesting'=> '0.000156', 20853 'Test2::Require::EnvVar'=> '0.000156', 20854 'Test2::Require::Fork' => '0.000156', 20855 'Test2::Require::Module'=> '0.000156', 20856 'Test2::Require::Perl' => '0.000156', 20857 'Test2::Require::RealFork'=> '0.000156', 20858 'Test2::Require::Threads'=> '0.000156', 20859 'Test2::Suite' => '0.000156', 20860 'Test2::Todo' => '0.000156', 20861 'Test2::Tools' => '0.000156', 20862 'Test2::Tools::AsyncSubtest'=> '0.000156', 20863 'Test2::Tools::Basic' => '0.000156', 20864 'Test2::Tools::Class' => '0.000156', 20865 'Test2::Tools::ClassicCompare'=> '0.000156', 20866 'Test2::Tools::Compare' => '0.000156', 20867 'Test2::Tools::Defer' => '0.000156', 20868 'Test2::Tools::Encoding'=> '0.000156', 20869 'Test2::Tools::Event' => '0.000156', 20870 'Test2::Tools::Exception'=> '0.000156', 20871 'Test2::Tools::Exports' => '0.000156', 20872 'Test2::Tools::GenTemp' => '0.000156', 20873 'Test2::Tools::Grab' => '0.000156', 20874 'Test2::Tools::Mock' => '0.000156', 20875 'Test2::Tools::Ref' => '0.000156', 20876 'Test2::Tools::Refcount'=> '0.000156', 20877 'Test2::Tools::Spec' => '0.000156', 20878 'Test2::Tools::Subtest' => '0.000156', 20879 'Test2::Tools::Target' => '0.000156', 20880 'Test2::Tools::Tester' => '0.000156', 20881 'Test2::Tools::Warnings'=> '0.000156', 20882 'Test2::Util::Grabber' => '0.000156', 20883 'Test2::Util::Guard' => '0.000156', 20884 'Test2::Util::Importer' => '0.000156', 20885 'Test2::Util::Ref' => '0.000156', 20886 'Test2::Util::Stash' => '0.000156', 20887 'Test2::Util::Sub' => '0.000156', 20888 'Test2::Util::Table' => '0.000156', 20889 'Test2::Util::Table::Cell'=> '0.000156', 20890 'Test2::Util::Table::LineBreak'=> '0.000156', 20891 'Test2::Util::Term' => '0.000156', 20892 'Test2::Util::Times' => '0.000156', 20893 'Test2::V0' => '0.000156', 20894 'Test2::Workflow' => '0.000156', 20895 'Test2::Workflow::BlockBase'=> '0.000156', 20896 'Test2::Workflow::Build'=> '0.000156', 20897 'Test2::Workflow::Runner'=> '0.000156', 20898 'Test2::Workflow::Task' => '0.000156', 20899 'Test2::Workflow::Task::Action'=> '0.000156', 20900 'Test2::Workflow::Task::Group'=> '0.000156', 20901 'Test::Harness' => '3.48', 20902 'Time::gmtime' => '1.05', 20903 'Time::localtime' => '1.04', 20904 'Time::tm' => '1.01', 20905 'User::grent' => '1.05', 20906 'User::pwent' => '1.03', 20907 'XS::APItest' => '1.34', 20908 'XS::Typemap' => '0.20', 20909 'builtin' => '0.011', 20910 'feature' => '1.85', 20911 'version' => '0.9930', 20912 'version::regex' => '0.9930', 20913 }, 20914 removed => { 20915 } 20916 }, 20917 5.039005 => { 20918 delta_from => 5.039004, 20919 changed => { 20920 'B::Op_private' => '5.039005', 20921 'Benchmark' => '1.25', 20922 'Config' => '5.039005', 20923 'Encode' => '3.20', 20924 'Getopt::Long' => '2.57', 20925 'Getopt::Long::Parser' => '2.57', 20926 'IO' => '1.54', 20927 'IO::Dir' => '1.54', 20928 'IO::File' => '1.54', 20929 'IO::Handle' => '1.54', 20930 'IO::Pipe' => '1.54', 20931 'IO::Poll' => '1.54', 20932 'IO::Seekable' => '1.54', 20933 'IO::Select' => '1.54', 20934 'IO::Socket' => '1.54', 20935 'IO::Socket::INET' => '1.54', 20936 'IO::Socket::UNIX' => '1.54', 20937 'Math::BigFloat' => '2.001000', 20938 'Math::BigInt' => '2.001000', 20939 'Math::BigInt::Calc' => '2.001000', 20940 'Math::BigInt::Lib' => '2.001000', 20941 'Math::BigRat' => '2.001000', 20942 'Module::CoreList' => '5.20231120', 20943 'Module::CoreList::Utils'=> '5.20231120', 20944 'POSIX' => '2.17', 20945 'Term::Table' => '0.018', 20946 'Term::Table::Cell' => '0.018', 20947 'Term::Table::CellStack'=> '0.018', 20948 'Term::Table::HashBase' => '0.018', 20949 'Term::Table::LineBreak'=> '0.018', 20950 'Term::Table::Spacer' => '0.018', 20951 'Term::Table::Util' => '0.018', 20952 'Test2::AsyncSubtest' => '0.000159', 20953 'Test2::AsyncSubtest::Event::Attach'=> '0.000159', 20954 'Test2::AsyncSubtest::Event::Detach'=> '0.000159', 20955 'Test2::AsyncSubtest::Formatter'=> '0.000159', 20956 'Test2::AsyncSubtest::Hub'=> '0.000159', 20957 'Test2::Bundle' => '0.000159', 20958 'Test2::Bundle::Extended'=> '0.000159', 20959 'Test2::Bundle::More' => '0.000159', 20960 'Test2::Bundle::Simple' => '0.000159', 20961 'Test2::Compare' => '0.000159', 20962 'Test2::Compare::Array' => '0.000159', 20963 'Test2::Compare::Bag' => '0.000159', 20964 'Test2::Compare::Base' => '0.000159', 20965 'Test2::Compare::Bool' => '0.000159', 20966 'Test2::Compare::Custom'=> '0.000159', 20967 'Test2::Compare::DeepRef'=> '0.000159', 20968 'Test2::Compare::Delta' => '0.000159', 20969 'Test2::Compare::Event' => '0.000159', 20970 'Test2::Compare::EventMeta'=> '0.000159', 20971 'Test2::Compare::Float' => '0.000159', 20972 'Test2::Compare::Hash' => '0.000159', 20973 'Test2::Compare::Isa' => '0.000159', 20974 'Test2::Compare::Meta' => '0.000159', 20975 'Test2::Compare::Negatable'=> '0.000159', 20976 'Test2::Compare::Number'=> '0.000159', 20977 'Test2::Compare::Object'=> '0.000159', 20978 'Test2::Compare::OrderedSubset'=> '0.000159', 20979 'Test2::Compare::Pattern'=> '0.000159', 20980 'Test2::Compare::Ref' => '0.000159', 20981 'Test2::Compare::Regex' => '0.000159', 20982 'Test2::Compare::Scalar'=> '0.000159', 20983 'Test2::Compare::Set' => '0.000159', 20984 'Test2::Compare::String'=> '0.000159', 20985 'Test2::Compare::Undef' => '0.000159', 20986 'Test2::Compare::Wildcard'=> '0.000159', 20987 'Test2::Manual' => '0.000159', 20988 'Test2::Manual::Anatomy'=> '0.000159', 20989 'Test2::Manual::Anatomy::API'=> '0.000159', 20990 'Test2::Manual::Anatomy::Context'=> '0.000159', 20991 'Test2::Manual::Anatomy::EndToEnd'=> '0.000159', 20992 'Test2::Manual::Anatomy::Event'=> '0.000159', 20993 'Test2::Manual::Anatomy::Hubs'=> '0.000159', 20994 'Test2::Manual::Anatomy::IPC'=> '0.000159', 20995 'Test2::Manual::Anatomy::Utilities'=> '0.000159', 20996 'Test2::Manual::Concurrency'=> '0.000159', 20997 'Test2::Manual::Contributing'=> '0.000159', 20998 'Test2::Manual::Testing'=> '0.000159', 20999 'Test2::Manual::Testing::Introduction'=> '0.000159', 21000 'Test2::Manual::Testing::Migrating'=> '0.000159', 21001 'Test2::Manual::Testing::Planning'=> '0.000159', 21002 'Test2::Manual::Testing::Todo'=> '0.000159', 21003 'Test2::Manual::Tooling'=> '0.000159', 21004 'Test2::Manual::Tooling::FirstTool'=> '0.000159', 21005 'Test2::Manual::Tooling::Formatter'=> '0.000159', 21006 'Test2::Manual::Tooling::Nesting'=> '0.000159', 21007 'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000159', 21008 'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000159', 21009 'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000159', 21010 'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000159', 21011 'Test2::Manual::Tooling::Subtest'=> '0.000159', 21012 'Test2::Manual::Tooling::TestBuilder'=> '0.000159', 21013 'Test2::Manual::Tooling::Testing'=> '0.000159', 21014 'Test2::Mock' => '0.000159', 21015 'Test2::Plugin' => '0.000159', 21016 'Test2::Plugin::BailOnFail'=> '0.000159', 21017 'Test2::Plugin::DieOnFail'=> '0.000159', 21018 'Test2::Plugin::ExitSummary'=> '0.000159', 21019 'Test2::Plugin::SRand' => '0.000159', 21020 'Test2::Plugin::Times' => '0.000159', 21021 'Test2::Plugin::UTF8' => '0.000159', 21022 'Test2::Require' => '0.000159', 21023 'Test2::Require::AuthorTesting'=> '0.000159', 21024 'Test2::Require::EnvVar'=> '0.000159', 21025 'Test2::Require::Fork' => '0.000159', 21026 'Test2::Require::Module'=> '0.000159', 21027 'Test2::Require::Perl' => '0.000159', 21028 'Test2::Require::RealFork'=> '0.000159', 21029 'Test2::Require::Threads'=> '0.000159', 21030 'Test2::Suite' => '0.000159', 21031 'Test2::Todo' => '0.000159', 21032 'Test2::Tools' => '0.000159', 21033 'Test2::Tools::AsyncSubtest'=> '0.000159', 21034 'Test2::Tools::Basic' => '0.000159', 21035 'Test2::Tools::Class' => '0.000159', 21036 'Test2::Tools::ClassicCompare'=> '0.000159', 21037 'Test2::Tools::Compare' => '0.000159', 21038 'Test2::Tools::Defer' => '0.000159', 21039 'Test2::Tools::Encoding'=> '0.000159', 21040 'Test2::Tools::Event' => '0.000159', 21041 'Test2::Tools::Exception'=> '0.000159', 21042 'Test2::Tools::Exports' => '0.000159', 21043 'Test2::Tools::GenTemp' => '0.000159', 21044 'Test2::Tools::Grab' => '0.000159', 21045 'Test2::Tools::Mock' => '0.000159', 21046 'Test2::Tools::Ref' => '0.000159', 21047 'Test2::Tools::Refcount'=> '0.000159', 21048 'Test2::Tools::Spec' => '0.000159', 21049 'Test2::Tools::Subtest' => '0.000159', 21050 'Test2::Tools::Target' => '0.000159', 21051 'Test2::Tools::Tester' => '0.000159', 21052 'Test2::Tools::Warnings'=> '0.000159', 21053 'Test2::Util::Grabber' => '0.000159', 21054 'Test2::Util::Guard' => '0.000159', 21055 'Test2::Util::Importer' => '0.000159', 21056 'Test2::Util::Ref' => '0.000159', 21057 'Test2::Util::Stash' => '0.000159', 21058 'Test2::Util::Sub' => '0.000159', 21059 'Test2::Util::Table' => '0.000159', 21060 'Test2::Util::Table::Cell'=> '0.000159', 21061 'Test2::Util::Table::LineBreak'=> '0.000159', 21062 'Test2::Util::Term' => '0.000159', 21063 'Test2::Util::Times' => '0.000159', 21064 'Test2::V0' => '0.000159', 21065 'Test2::Workflow' => '0.000159', 21066 'Test2::Workflow::BlockBase'=> '0.000159', 21067 'Test2::Workflow::Build'=> '0.000159', 21068 'Test2::Workflow::Runner'=> '0.000159', 21069 'Test2::Workflow::Task' => '0.000159', 21070 'Test2::Workflow::Task::Action'=> '0.000159', 21071 'Test2::Workflow::Task::Group'=> '0.000159', 21072 'builtin' => '0.012', 21073 'locale' => '1.11', 21074 }, 21075 removed => { 21076 } 21077 }, 21078 5.034002 => { 21079 delta_from => 5.034001, 21080 changed => { 21081 'B::Op_private' => '5.034002', 21082 'Config' => '5.034002', 21083 'Module::CoreList' => '5.20231125', 21084 'Module::CoreList::Utils'=> '5.20231125', 21085 }, 21086 removed => { 21087 } 21088 }, 21089 5.036002 => { 21090 delta_from => 5.036001, 21091 changed => { 21092 'B::Op_private' => '5.036002', 21093 'Config' => '5.036002', 21094 'Module::CoreList' => '5.20231125', 21095 'Module::CoreList::Utils'=> '5.20231125', 21096 }, 21097 removed => { 21098 } 21099 }, 21100 5.038001 => { 21101 delta_from => 5.038000, 21102 changed => { 21103 'B::Op_private' => '5.038001', 21104 'Config' => '5.038001', 21105 'Module::CoreList' => '5.20231125', 21106 'Module::CoreList::Utils'=> '5.20231125', 21107 }, 21108 removed => { 21109 } 21110 }, 21111 5.034003 => { 21112 delta_from => 5.034002, 21113 changed => { 21114 'B::Op_private' => '5.034003', 21115 'Config' => '5.034003', 21116 'Module::CoreList' => '5.20231129', 21117 'Module::CoreList::Utils'=> '5.20231129', 21118 }, 21119 removed => { 21120 } 21121 }, 21122 5.036003 => { 21123 delta_from => 5.036002, 21124 changed => { 21125 'B::Op_private' => '5.036003', 21126 'Config' => '5.036003', 21127 'Module::CoreList' => '5.20231129', 21128 'Module::CoreList::Utils'=> '5.20231129', 21129 }, 21130 removed => { 21131 } 21132 }, 21133 5.038002 => { 21134 delta_from => 5.038001, 21135 changed => { 21136 'B::Op_private' => '5.038002', 21137 'Config' => '5.038002', 21138 'Module::CoreList' => '5.20231129', 21139 'Module::CoreList::Utils'=> '5.20231129', 21140 }, 21141 removed => { 21142 } 21143 }, 21144 5.039006 => { 21145 delta_from => 5.039005, 21146 changed => { 21147 'Archive::Tar' => '3.02_001', 21148 'Archive::Tar::Constant'=> '3.02_001', 21149 'Archive::Tar::File' => '3.02_001', 21150 'B::Op_private' => '5.039006', 21151 'Config' => '5.039006', 21152 'Fatal' => '2.37', 21153 'Fcntl' => '1.16', 21154 'File::Glob' => '1.41', 21155 'IO' => '1.55', 21156 'IO::Dir' => '1.55', 21157 'IO::File' => '1.55', 21158 'IO::Handle' => '1.55', 21159 'IO::Pipe' => '1.55', 21160 'IO::Poll' => '1.55', 21161 'IO::Seekable' => '1.55', 21162 'IO::Select' => '1.55', 21163 'IO::Socket' => '1.55', 21164 'IO::Socket::INET' => '1.55', 21165 'IO::Socket::UNIX' => '1.55', 21166 'Math::BigFloat' => '2.003001', 21167 'Math::BigFloat::Trace' => '0.67', 21168 'Math::BigInt' => '2.003001', 21169 'Math::BigInt::Calc' => '2.003001', 21170 'Math::BigInt::FastCalc'=> '0.5016', 21171 'Math::BigInt::Lib' => '2.003001', 21172 'Math::BigInt::Trace' => '0.67', 21173 'Math::BigRat' => '2.003001', 21174 'Math::BigRat::Trace' => '0.67', 21175 'Module::CoreList' => '5.20231230', 21176 'Module::CoreList::Utils'=> '5.20231230', 21177 'Test2' => '1.302198', 21178 'Test2::API' => '1.302198', 21179 'Test2::API::Breakage' => '1.302198', 21180 'Test2::API::Context' => '1.302198', 21181 'Test2::API::Instance' => '1.302198', 21182 'Test2::API::InterceptResult'=> '1.302198', 21183 'Test2::API::InterceptResult::Event'=> '1.302198', 21184 'Test2::API::InterceptResult::Facet'=> '1.302198', 21185 'Test2::API::InterceptResult::Hub'=> '1.302198', 21186 'Test2::API::InterceptResult::Squasher'=> '1.302198', 21187 'Test2::API::Stack' => '1.302198', 21188 'Test2::Event' => '1.302198', 21189 'Test2::Event::Bail' => '1.302198', 21190 'Test2::Event::Diag' => '1.302198', 21191 'Test2::Event::Encoding'=> '1.302198', 21192 'Test2::Event::Exception'=> '1.302198', 21193 'Test2::Event::Fail' => '1.302198', 21194 'Test2::Event::Generic' => '1.302198', 21195 'Test2::Event::Note' => '1.302198', 21196 'Test2::Event::Ok' => '1.302198', 21197 'Test2::Event::Pass' => '1.302198', 21198 'Test2::Event::Plan' => '1.302198', 21199 'Test2::Event::Skip' => '1.302198', 21200 'Test2::Event::Subtest' => '1.302198', 21201 'Test2::Event::TAP::Version'=> '1.302198', 21202 'Test2::Event::V2' => '1.302198', 21203 'Test2::Event::Waiting' => '1.302198', 21204 'Test2::EventFacet' => '1.302198', 21205 'Test2::EventFacet::About'=> '1.302198', 21206 'Test2::EventFacet::Amnesty'=> '1.302198', 21207 'Test2::EventFacet::Assert'=> '1.302198', 21208 'Test2::EventFacet::Control'=> '1.302198', 21209 'Test2::EventFacet::Error'=> '1.302198', 21210 'Test2::EventFacet::Hub'=> '1.302198', 21211 'Test2::EventFacet::Info'=> '1.302198', 21212 'Test2::EventFacet::Info::Table'=> '1.302198', 21213 'Test2::EventFacet::Meta'=> '1.302198', 21214 'Test2::EventFacet::Parent'=> '1.302198', 21215 'Test2::EventFacet::Plan'=> '1.302198', 21216 'Test2::EventFacet::Render'=> '1.302198', 21217 'Test2::EventFacet::Trace'=> '1.302198', 21218 'Test2::Formatter' => '1.302198', 21219 'Test2::Formatter::TAP' => '1.302198', 21220 'Test2::Hub' => '1.302198', 21221 'Test2::Hub::Interceptor'=> '1.302198', 21222 'Test2::Hub::Interceptor::Terminator'=> '1.302198', 21223 'Test2::Hub::Subtest' => '1.302198', 21224 'Test2::IPC' => '1.302198', 21225 'Test2::IPC::Driver' => '1.302198', 21226 'Test2::IPC::Driver::Files'=> '1.302198', 21227 'Test2::Tools::Tiny' => '1.302198', 21228 'Test2::Util' => '1.302198', 21229 'Test2::Util::ExternalMeta'=> '1.302198', 21230 'Test2::Util::Facets2Legacy'=> '1.302198', 21231 'Test2::Util::HashBase' => '1.302198', 21232 'Test2::Util::Trace' => '1.302198', 21233 'Test::Builder' => '1.302198', 21234 'Test::Builder::Formatter'=> '1.302198', 21235 'Test::Builder::Module' => '1.302198', 21236 'Test::Builder::Tester' => '1.302198', 21237 'Test::Builder::Tester::Color'=> '1.302198', 21238 'Test::Builder::TodoDiag'=> '1.302198', 21239 'Test::More' => '1.302198', 21240 'Test::Simple' => '1.302198', 21241 'Test::Tester' => '1.302198', 21242 'Test::Tester::Capture' => '1.302198', 21243 'Test::Tester::CaptureRunner'=> '1.302198', 21244 'Test::Tester::Delegate'=> '1.302198', 21245 'Test::use::ok' => '1.302198', 21246 'autodie' => '2.37', 21247 'autodie::Scope::Guard' => '2.37', 21248 'autodie::Scope::GuardStack'=> '2.37', 21249 'autodie::Util' => '2.37', 21250 'autodie::exception' => '2.37', 21251 'autodie::exception::system'=> '2.37', 21252 'autodie::hints' => '2.37', 21253 'autodie::skip' => '2.37', 21254 'bigfloat' => '0.67', 21255 'bigint' => '0.67', 21256 'bignum' => '0.67', 21257 'bigrat' => '0.67', 21258 'diagnostics' => '1.40', 21259 'feature' => '1.86', 21260 'ok' => '1.302198', 21261 're' => '0.45', 21262 'threads' => '2.40', 21263 }, 21264 removed => { 21265 } 21266 }, 21267 5.039007 => { 21268 delta_from => 5.039006, 21269 changed => { 21270 'B::Op_private' => '5.039007', 21271 'Config' => '5.039007', 21272 'Exporter' => '5.78', 21273 'Exporter::Heavy' => '5.78', 21274 'Hash::Util' => '0.31', 21275 'I18N::Langinfo' => '0.23', 21276 'Math::BigFloat' => '2.003002', 21277 'Math::BigInt' => '2.003002', 21278 'Math::BigInt::Calc' => '2.003002', 21279 'Math::BigInt::FastCalc'=> '0.5018', 21280 'Math::BigInt::Lib' => '2.003002', 21281 'Math::BigRat' => '2.003002', 21282 'Module::CoreList' => '5.20240120', 21283 'Module::CoreList::Utils'=> '5.20240120', 21284 'Pod::Checker' => '1.76', 21285 'SelfLoader' => '1.27', 21286 }, 21287 removed => { 21288 } 21289 }, 21290 5.039008 => { 21291 delta_from => 5.039007, 21292 changed => { 21293 'B::Deparse' => '1.75', 21294 'B::Op_private' => '5.039008', 21295 'Config' => '5.039008', 21296 'DynaLoader' => '1.55', 21297 'File::Glob' => '1.42', 21298 'Hash::Util' => '0.32', 21299 'Hash::Util::FieldHash' => '1.27', 21300 'I18N::Langinfo' => '0.24', 21301 'Module::CoreList' => '5.20240223', 21302 'Module::CoreList::Utils'=> '5.20240223', 21303 'POSIX' => '2.18', 21304 'PerlIO::encoding' => '0.31', 21305 'Pod::Checker' => '1.77', 21306 'Safe' => '2.46', 21307 'Tie::File' => '1.08', 21308 'XS::APItest' => '1.35', 21309 'attributes' => '0.36', 21310 'builtin' => '0.014', 21311 'mro' => '1.29', 21312 'perlfaq' => '5.20240218', 21313 'warnings' => '1.68', 21314 }, 21315 removed => { 21316 } 21317 }, 21318 5.039009 => { 21319 delta_from => 5.039008, 21320 changed => { 21321 'B::Op_private' => '5.039009', 21322 'Compress::Raw::Bzip2' => '2.210', 21323 'Compress::Raw::Zlib' => '2.209', 21324 'Compress::Zlib' => '2.207', 21325 'Config' => '5.039009', 21326 'DynaLoader' => '1.56', 21327 'Encode' => '3.21', 21328 'Fcntl' => '1.17', 21329 'IO::Compress::Adapter::Bzip2'=> '2.207', 21330 'IO::Compress::Adapter::Deflate'=> '2.207', 21331 'IO::Compress::Adapter::Identity'=> '2.207', 21332 'IO::Compress::Base' => '2.207', 21333 'IO::Compress::Base::Common'=> '2.207', 21334 'IO::Compress::Bzip2' => '2.207', 21335 'IO::Compress::Deflate' => '2.207', 21336 'IO::Compress::Gzip' => '2.207', 21337 'IO::Compress::Gzip::Constants'=> '2.207', 21338 'IO::Compress::RawDeflate'=> '2.207', 21339 'IO::Compress::Zip' => '2.207', 21340 'IO::Compress::Zip::Constants'=> '2.207', 21341 'IO::Compress::Zlib::Constants'=> '2.207', 21342 'IO::Compress::Zlib::Extra'=> '2.207', 21343 'IO::Uncompress::Adapter::Bunzip2'=> '2.207', 21344 'IO::Uncompress::Adapter::Identity'=> '2.207', 21345 'IO::Uncompress::Adapter::Inflate'=> '2.207', 21346 'IO::Uncompress::AnyInflate'=> '2.207', 21347 'IO::Uncompress::AnyUncompress'=> '2.207', 21348 'IO::Uncompress::Base' => '2.207', 21349 'IO::Uncompress::Bunzip2'=> '2.207', 21350 'IO::Uncompress::Gunzip'=> '2.207', 21351 'IO::Uncompress::Inflate'=> '2.207', 21352 'IO::Uncompress::RawInflate'=> '2.207', 21353 'IO::Uncompress::Unzip' => '2.207', 21354 'IO::Zlib' => '1.15', 21355 'Module::CoreList' => '5.20240320', 21356 'Module::CoreList::Utils'=> '5.20240320', 21357 'Text::Tabs' => '2024.001', 21358 'Text::Wrap' => '2024.001', 21359 'Tie::File' => '1.09', 21360 'Time::HiRes' => '1.9777', 21361 'bytes' => '1.09', 21362 're' => '0.47', 21363 }, 21364 removed => { 21365 } 21366 }, 21367 5.039010 => { 21368 delta_from => 5.039009, 21369 changed => { 21370 'B::Deparse' => '1.76', 21371 'B::Op_private' => '5.039010', 21372 'Compress::Raw::Bzip2' => '2.212', 21373 'Compress::Raw::Zlib' => '2.212', 21374 'Compress::Zlib' => '2.212', 21375 'Config' => '5.03901', 21376 'IO::Compress::Adapter::Bzip2'=> '2.212', 21377 'IO::Compress::Adapter::Deflate'=> '2.212', 21378 'IO::Compress::Adapter::Identity'=> '2.212', 21379 'IO::Compress::Base' => '2.212', 21380 'IO::Compress::Base::Common'=> '2.212', 21381 'IO::Compress::Bzip2' => '2.212', 21382 'IO::Compress::Deflate' => '2.212', 21383 'IO::Compress::Gzip' => '2.212', 21384 'IO::Compress::Gzip::Constants'=> '2.212', 21385 'IO::Compress::RawDeflate'=> '2.212', 21386 'IO::Compress::Zip' => '2.212', 21387 'IO::Compress::Zip::Constants'=> '2.212', 21388 'IO::Compress::Zlib::Constants'=> '2.212', 21389 'IO::Compress::Zlib::Extra'=> '2.212', 21390 'IO::Uncompress::Adapter::Bunzip2'=> '2.212', 21391 'IO::Uncompress::Adapter::Identity'=> '2.212', 21392 'IO::Uncompress::Adapter::Inflate'=> '2.212', 21393 'IO::Uncompress::AnyInflate'=> '2.212', 21394 'IO::Uncompress::AnyUncompress'=> '2.212', 21395 'IO::Uncompress::Base' => '2.212', 21396 'IO::Uncompress::Bunzip2'=> '2.212', 21397 'IO::Uncompress::Gunzip'=> '2.212', 21398 'IO::Uncompress::Inflate'=> '2.212', 21399 'IO::Uncompress::RawInflate'=> '2.212', 21400 'IO::Uncompress::Unzip' => '2.212', 21401 'Module::CoreList' => '5.20240420', 21402 'Module::CoreList::Utils'=> '5.20240420', 21403 'POSIX' => '2.19', 21404 'Pod::Man' => '5.01_01', 21405 'Pod::ParseLink' => '5.01_01', 21406 'Pod::Text' => '5.01_01', 21407 'Pod::Text::Color' => '5.01_01', 21408 'Pod::Text::Overstrike' => '5.01_01', 21409 'Pod::Text::Termcap' => '5.01_01', 21410 'Socket' => '2.038', 21411 'Test2' => '1.302199', 21412 'Test2::API' => '1.302199', 21413 'Test2::API::Breakage' => '1.302199', 21414 'Test2::API::Context' => '1.302199', 21415 'Test2::API::Instance' => '1.302199', 21416 'Test2::API::InterceptResult'=> '1.302199', 21417 'Test2::API::InterceptResult::Event'=> '1.302199', 21418 'Test2::API::InterceptResult::Facet'=> '1.302199', 21419 'Test2::API::InterceptResult::Hub'=> '1.302199', 21420 'Test2::API::InterceptResult::Squasher'=> '1.302199', 21421 'Test2::API::Stack' => '1.302199', 21422 'Test2::AsyncSubtest' => '0.000162', 21423 'Test2::AsyncSubtest::Event::Attach'=> '0.000162', 21424 'Test2::AsyncSubtest::Event::Detach'=> '0.000162', 21425 'Test2::AsyncSubtest::Formatter'=> '0.000162', 21426 'Test2::AsyncSubtest::Hub'=> '0.000162', 21427 'Test2::Bundle' => '0.000162', 21428 'Test2::Bundle::Extended'=> '0.000162', 21429 'Test2::Bundle::More' => '0.000162', 21430 'Test2::Bundle::Simple' => '0.000162', 21431 'Test2::Compare' => '0.000162', 21432 'Test2::Compare::Array' => '0.000162', 21433 'Test2::Compare::Bag' => '0.000162', 21434 'Test2::Compare::Base' => '0.000162', 21435 'Test2::Compare::Bool' => '0.000162', 21436 'Test2::Compare::Custom'=> '0.000162', 21437 'Test2::Compare::DeepRef'=> '0.000162', 21438 'Test2::Compare::Delta' => '0.000162', 21439 'Test2::Compare::Event' => '0.000162', 21440 'Test2::Compare::EventMeta'=> '0.000162', 21441 'Test2::Compare::Float' => '0.000162', 21442 'Test2::Compare::Hash' => '0.000162', 21443 'Test2::Compare::Isa' => '0.000162', 21444 'Test2::Compare::Meta' => '0.000162', 21445 'Test2::Compare::Negatable'=> '0.000162', 21446 'Test2::Compare::Number'=> '0.000162', 21447 'Test2::Compare::Object'=> '0.000162', 21448 'Test2::Compare::OrderedSubset'=> '0.000162', 21449 'Test2::Compare::Pattern'=> '0.000162', 21450 'Test2::Compare::Ref' => '0.000162', 21451 'Test2::Compare::Regex' => '0.000162', 21452 'Test2::Compare::Scalar'=> '0.000162', 21453 'Test2::Compare::Set' => '0.000162', 21454 'Test2::Compare::String'=> '0.000162', 21455 'Test2::Compare::Undef' => '0.000162', 21456 'Test2::Compare::Wildcard'=> '0.000162', 21457 'Test2::Event' => '1.302199', 21458 'Test2::Event::Bail' => '1.302199', 21459 'Test2::Event::Diag' => '1.302199', 21460 'Test2::Event::Encoding'=> '1.302199', 21461 'Test2::Event::Exception'=> '1.302199', 21462 'Test2::Event::Fail' => '1.302199', 21463 'Test2::Event::Generic' => '1.302199', 21464 'Test2::Event::Note' => '1.302199', 21465 'Test2::Event::Ok' => '1.302199', 21466 'Test2::Event::Pass' => '1.302199', 21467 'Test2::Event::Plan' => '1.302199', 21468 'Test2::Event::Skip' => '1.302199', 21469 'Test2::Event::Subtest' => '1.302199', 21470 'Test2::Event::TAP::Version'=> '1.302199', 21471 'Test2::Event::V2' => '1.302199', 21472 'Test2::Event::Waiting' => '1.302199', 21473 'Test2::EventFacet' => '1.302199', 21474 'Test2::EventFacet::About'=> '1.302199', 21475 'Test2::EventFacet::Amnesty'=> '1.302199', 21476 'Test2::EventFacet::Assert'=> '1.302199', 21477 'Test2::EventFacet::Control'=> '1.302199', 21478 'Test2::EventFacet::Error'=> '1.302199', 21479 'Test2::EventFacet::Hub'=> '1.302199', 21480 'Test2::EventFacet::Info'=> '1.302199', 21481 'Test2::EventFacet::Info::Table'=> '1.302199', 21482 'Test2::EventFacet::Meta'=> '1.302199', 21483 'Test2::EventFacet::Parent'=> '1.302199', 21484 'Test2::EventFacet::Plan'=> '1.302199', 21485 'Test2::EventFacet::Render'=> '1.302199', 21486 'Test2::EventFacet::Trace'=> '1.302199', 21487 'Test2::Formatter' => '1.302199', 21488 'Test2::Formatter::TAP' => '1.302199', 21489 'Test2::Hub' => '1.302199', 21490 'Test2::Hub::Interceptor'=> '1.302199', 21491 'Test2::Hub::Interceptor::Terminator'=> '1.302199', 21492 'Test2::Hub::Subtest' => '1.302199', 21493 'Test2::IPC' => '1.302199', 21494 'Test2::IPC::Driver' => '1.302199', 21495 'Test2::IPC::Driver::Files'=> '1.302199', 21496 'Test2::Manual' => '0.000162', 21497 'Test2::Manual::Anatomy'=> '0.000162', 21498 'Test2::Manual::Anatomy::API'=> '0.000162', 21499 'Test2::Manual::Anatomy::Context'=> '0.000162', 21500 'Test2::Manual::Anatomy::EndToEnd'=> '0.000162', 21501 'Test2::Manual::Anatomy::Event'=> '0.000162', 21502 'Test2::Manual::Anatomy::Hubs'=> '0.000162', 21503 'Test2::Manual::Anatomy::IPC'=> '0.000162', 21504 'Test2::Manual::Anatomy::Utilities'=> '0.000162', 21505 'Test2::Manual::Concurrency'=> '0.000162', 21506 'Test2::Manual::Contributing'=> '0.000162', 21507 'Test2::Manual::Testing'=> '0.000162', 21508 'Test2::Manual::Testing::Introduction'=> '0.000162', 21509 'Test2::Manual::Testing::Migrating'=> '0.000162', 21510 'Test2::Manual::Testing::Planning'=> '0.000162', 21511 'Test2::Manual::Testing::Todo'=> '0.000162', 21512 'Test2::Manual::Tooling'=> '0.000162', 21513 'Test2::Manual::Tooling::FirstTool'=> '0.000162', 21514 'Test2::Manual::Tooling::Formatter'=> '0.000162', 21515 'Test2::Manual::Tooling::Nesting'=> '0.000162', 21516 'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000162', 21517 'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000162', 21518 'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000162', 21519 'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000162', 21520 'Test2::Manual::Tooling::Subtest'=> '0.000162', 21521 'Test2::Manual::Tooling::TestBuilder'=> '0.000162', 21522 'Test2::Manual::Tooling::Testing'=> '0.000162', 21523 'Test2::Mock' => '0.000162', 21524 'Test2::Plugin' => '0.000162', 21525 'Test2::Plugin::BailOnFail'=> '0.000162', 21526 'Test2::Plugin::DieOnFail'=> '0.000162', 21527 'Test2::Plugin::ExitSummary'=> '0.000162', 21528 'Test2::Plugin::SRand' => '0.000162', 21529 'Test2::Plugin::Times' => '0.000162', 21530 'Test2::Plugin::UTF8' => '0.000162', 21531 'Test2::Require' => '0.000162', 21532 'Test2::Require::AuthorTesting'=> '0.000162', 21533 'Test2::Require::AutomatedTesting'=> '0.000162', 21534 'Test2::Require::EnvVar'=> '0.000162', 21535 'Test2::Require::ExtendedTesting'=> '0.000162', 21536 'Test2::Require::Fork' => '0.000162', 21537 'Test2::Require::Module'=> '0.000162', 21538 'Test2::Require::NonInteractiveTesting'=> '0.000162', 21539 'Test2::Require::Perl' => '0.000162', 21540 'Test2::Require::RealFork'=> '0.000162', 21541 'Test2::Require::ReleaseTesting'=> '0.000162', 21542 'Test2::Require::Threads'=> '0.000162', 21543 'Test2::Suite' => '0.000162', 21544 'Test2::Todo' => '0.000162', 21545 'Test2::Tools' => '0.000162', 21546 'Test2::Tools::AsyncSubtest'=> '0.000162', 21547 'Test2::Tools::Basic' => '0.000162', 21548 'Test2::Tools::Class' => '0.000162', 21549 'Test2::Tools::ClassicCompare'=> '0.000162', 21550 'Test2::Tools::Compare' => '0.000162', 21551 'Test2::Tools::Defer' => '0.000162', 21552 'Test2::Tools::Encoding'=> '0.000162', 21553 'Test2::Tools::Event' => '0.000162', 21554 'Test2::Tools::Exception'=> '0.000162', 21555 'Test2::Tools::Exports' => '0.000162', 21556 'Test2::Tools::GenTemp' => '0.000162', 21557 'Test2::Tools::Grab' => '0.000162', 21558 'Test2::Tools::Mock' => '0.000162', 21559 'Test2::Tools::Ref' => '0.000162', 21560 'Test2::Tools::Refcount'=> '0.000162', 21561 'Test2::Tools::Spec' => '0.000162', 21562 'Test2::Tools::Subtest' => '0.000162', 21563 'Test2::Tools::Target' => '0.000162', 21564 'Test2::Tools::Tester' => '0.000162', 21565 'Test2::Tools::Tiny' => '1.302199', 21566 'Test2::Tools::Warnings'=> '0.000162', 21567 'Test2::Util' => '1.302199', 21568 'Test2::Util::ExternalMeta'=> '1.302199', 21569 'Test2::Util::Facets2Legacy'=> '1.302199', 21570 'Test2::Util::Grabber' => '0.000162', 21571 'Test2::Util::Guard' => '0.000162', 21572 'Test2::Util::HashBase' => '1.302199', 21573 'Test2::Util::Importer' => '0.000162', 21574 'Test2::Util::Ref' => '0.000162', 21575 'Test2::Util::Stash' => '0.000162', 21576 'Test2::Util::Sub' => '0.000162', 21577 'Test2::Util::Table' => '0.000162', 21578 'Test2::Util::Table::Cell'=> '0.000162', 21579 'Test2::Util::Table::LineBreak'=> '0.000162', 21580 'Test2::Util::Term' => '0.000162', 21581 'Test2::Util::Times' => '0.000162', 21582 'Test2::Util::Trace' => '1.302199', 21583 'Test2::V0' => '0.000162', 21584 'Test2::Workflow' => '0.000162', 21585 'Test2::Workflow::BlockBase'=> '0.000162', 21586 'Test2::Workflow::Build'=> '0.000162', 21587 'Test2::Workflow::Runner'=> '0.000162', 21588 'Test2::Workflow::Task' => '0.000162', 21589 'Test2::Workflow::Task::Action'=> '0.000162', 21590 'Test2::Workflow::Task::Group'=> '0.000162', 21591 'Test::Builder' => '1.302199', 21592 'Test::Builder::Formatter'=> '1.302199', 21593 'Test::Builder::Module' => '1.302199', 21594 'Test::Builder::Tester' => '1.302199', 21595 'Test::Builder::Tester::Color'=> '1.302199', 21596 'Test::Builder::TodoDiag'=> '1.302199', 21597 'Test::More' => '1.302199', 21598 'Test::Simple' => '1.302199', 21599 'Test::Tester' => '1.302199', 21600 'Test::Tester::Capture' => '1.302199', 21601 'Test::Tester::CaptureRunner'=> '1.302199', 21602 'Test::Tester::Delegate'=> '1.302199', 21603 'Test::use::ok' => '1.302199', 21604 'XS::APItest' => '1.36', 21605 'experimental' => '0.032', 21606 'feature' => '1.88', 21607 'locale' => '1.12', 21608 'ok' => '1.302199', 21609 'stable' => '0.032', 21610 'warnings' => '1.69', 21611 }, 21612 removed => { 21613 } 21614 }, 21615 5.040000 => { 21616 delta_from => 5.039010, 21617 changed => { 21618 'B::Op_private' => '5.040000', 21619 'Config' => '5.04', 21620 'Fcntl' => '1.18', 21621 'Module::CoreList' => '5.20240609', 21622 'Module::CoreList::Utils'=> '5.20240609', 21623 'POSIX' => '2.20', 21624 'Pod::Man' => '5.01_02', 21625 'Pod::ParseLink' => '5.01_02', 21626 'Pod::Text' => '5.01_02', 21627 'Pod::Text::Color' => '5.01_02', 21628 'Pod::Text::Overstrike' => '5.01_02', 21629 'Pod::Text::Termcap' => '5.01_02', 21630 'UNIVERSAL' => '1.17', 21631 'feature' => '1.89', 21632 'stable' => '0.033', 21633 }, 21634 removed => { 21635 } 21636 }, 21637 5.041000 => { 21638 delta_from => 5.040000, 21639 changed => { 21640 'B::Op_private' => '5.041000', 21641 'Config' => '5.041000', 21642 'Module::CoreList' => '5.20240610', 21643 'Module::CoreList::Utils'=> '5.20240610', 21644 'feature' => '1.90', 21645 }, 21646 removed => { 21647 } 21648 }, 21649 5.041001 => { 21650 delta_from => 5.041000, 21651 changed => { 21652 'B::Op_private' => '5.041001', 21653 'Config' => '5.041001', 21654 'Data::Dumper' => '2.190', 21655 'ExtUtils::ParseXS' => '3.52', 21656 'ExtUtils::ParseXS::Constants'=> '3.52', 21657 'ExtUtils::ParseXS::CountLines'=> '3.52', 21658 'ExtUtils::ParseXS::Eval'=> '3.52', 21659 'ExtUtils::ParseXS::Utilities'=> '3.52', 21660 'ExtUtils::Typemaps::Cmd'=> '3.52', 21661 'ExtUtils::Typemaps::InputMap'=> '3.52', 21662 'ExtUtils::Typemaps::OutputMap'=> '3.52', 21663 'ExtUtils::Typemaps::Type'=> '3.52', 21664 'Fcntl' => '1.19', 21665 'Getopt::Long' => '2.58', 21666 'Getopt::Long::Parser' => '2.58', 21667 'Math::BigFloat' => '2.003003', 21668 'Math::BigInt' => '2.003003', 21669 'Math::BigInt::Calc' => '2.003003', 21670 'Math::BigInt::Lib' => '2.003003', 21671 'Math::BigRat' => '2.003003', 21672 'Module::CoreList' => '5.20240620', 21673 'Module::CoreList::Utils'=> '5.20240620', 21674 'POSIX' => '2.21', 21675 'Test2::AsyncSubtest' => '0.000163', 21676 'Test2::AsyncSubtest::Event::Attach'=> '0.000163', 21677 'Test2::AsyncSubtest::Event::Detach'=> '0.000163', 21678 'Test2::AsyncSubtest::Formatter'=> '0.000163', 21679 'Test2::AsyncSubtest::Hub'=> '0.000163', 21680 'Test2::Bundle' => '0.000163', 21681 'Test2::Bundle::Extended'=> '0.000163', 21682 'Test2::Bundle::More' => '0.000163', 21683 'Test2::Bundle::Simple' => '0.000163', 21684 'Test2::Compare' => '0.000163', 21685 'Test2::Compare::Array' => '0.000163', 21686 'Test2::Compare::Bag' => '0.000163', 21687 'Test2::Compare::Base' => '0.000163', 21688 'Test2::Compare::Bool' => '0.000163', 21689 'Test2::Compare::Custom'=> '0.000163', 21690 'Test2::Compare::DeepRef'=> '0.000163', 21691 'Test2::Compare::Delta' => '0.000163', 21692 'Test2::Compare::Event' => '0.000163', 21693 'Test2::Compare::EventMeta'=> '0.000163', 21694 'Test2::Compare::Float' => '0.000163', 21695 'Test2::Compare::Hash' => '0.000163', 21696 'Test2::Compare::Isa' => '0.000163', 21697 'Test2::Compare::Meta' => '0.000163', 21698 'Test2::Compare::Negatable'=> '0.000163', 21699 'Test2::Compare::Number'=> '0.000163', 21700 'Test2::Compare::Object'=> '0.000163', 21701 'Test2::Compare::OrderedSubset'=> '0.000163', 21702 'Test2::Compare::Pattern'=> '0.000163', 21703 'Test2::Compare::Ref' => '0.000163', 21704 'Test2::Compare::Regex' => '0.000163', 21705 'Test2::Compare::Scalar'=> '0.000163', 21706 'Test2::Compare::Set' => '0.000163', 21707 'Test2::Compare::String'=> '0.000163', 21708 'Test2::Compare::Undef' => '0.000163', 21709 'Test2::Compare::Wildcard'=> '0.000163', 21710 'Test2::Manual' => '0.000163', 21711 'Test2::Manual::Anatomy'=> '0.000163', 21712 'Test2::Manual::Anatomy::API'=> '0.000163', 21713 'Test2::Manual::Anatomy::Context'=> '0.000163', 21714 'Test2::Manual::Anatomy::EndToEnd'=> '0.000163', 21715 'Test2::Manual::Anatomy::Event'=> '0.000163', 21716 'Test2::Manual::Anatomy::Hubs'=> '0.000163', 21717 'Test2::Manual::Anatomy::IPC'=> '0.000163', 21718 'Test2::Manual::Anatomy::Utilities'=> '0.000163', 21719 'Test2::Manual::Concurrency'=> '0.000163', 21720 'Test2::Manual::Contributing'=> '0.000163', 21721 'Test2::Manual::Testing'=> '0.000163', 21722 'Test2::Manual::Testing::Introduction'=> '0.000163', 21723 'Test2::Manual::Testing::Migrating'=> '0.000163', 21724 'Test2::Manual::Testing::Planning'=> '0.000163', 21725 'Test2::Manual::Testing::Todo'=> '0.000163', 21726 'Test2::Manual::Tooling'=> '0.000163', 21727 'Test2::Manual::Tooling::FirstTool'=> '0.000163', 21728 'Test2::Manual::Tooling::Formatter'=> '0.000163', 21729 'Test2::Manual::Tooling::Nesting'=> '0.000163', 21730 'Test2::Manual::Tooling::Plugin::TestExit'=> '0.000163', 21731 'Test2::Manual::Tooling::Plugin::TestingDone'=> '0.000163', 21732 'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '0.000163', 21733 'Test2::Manual::Tooling::Plugin::ToolStarts'=> '0.000163', 21734 'Test2::Manual::Tooling::Subtest'=> '0.000163', 21735 'Test2::Manual::Tooling::TestBuilder'=> '0.000163', 21736 'Test2::Manual::Tooling::Testing'=> '0.000163', 21737 'Test2::Mock' => '0.000163', 21738 'Test2::Plugin' => '0.000163', 21739 'Test2::Plugin::BailOnFail'=> '0.000163', 21740 'Test2::Plugin::DieOnFail'=> '0.000163', 21741 'Test2::Plugin::ExitSummary'=> '0.000163', 21742 'Test2::Plugin::SRand' => '0.000163', 21743 'Test2::Plugin::Times' => '0.000163', 21744 'Test2::Plugin::UTF8' => '0.000163', 21745 'Test2::Require' => '0.000163', 21746 'Test2::Require::AuthorTesting'=> '0.000163', 21747 'Test2::Require::AutomatedTesting'=> '0.000163', 21748 'Test2::Require::EnvVar'=> '0.000163', 21749 'Test2::Require::ExtendedTesting'=> '0.000163', 21750 'Test2::Require::Fork' => '0.000163', 21751 'Test2::Require::Module'=> '0.000163', 21752 'Test2::Require::NonInteractiveTesting'=> '0.000163', 21753 'Test2::Require::Perl' => '0.000163', 21754 'Test2::Require::RealFork'=> '0.000163', 21755 'Test2::Require::ReleaseTesting'=> '0.000163', 21756 'Test2::Require::Threads'=> '0.000163', 21757 'Test2::Suite' => '0.000163', 21758 'Test2::Todo' => '0.000163', 21759 'Test2::Tools' => '0.000163', 21760 'Test2::Tools::AsyncSubtest'=> '0.000163', 21761 'Test2::Tools::Basic' => '0.000163', 21762 'Test2::Tools::Class' => '0.000163', 21763 'Test2::Tools::ClassicCompare'=> '0.000163', 21764 'Test2::Tools::Compare' => '0.000163', 21765 'Test2::Tools::Defer' => '0.000163', 21766 'Test2::Tools::Encoding'=> '0.000163', 21767 'Test2::Tools::Event' => '0.000163', 21768 'Test2::Tools::Exception'=> '0.000163', 21769 'Test2::Tools::Exports' => '0.000163', 21770 'Test2::Tools::GenTemp' => '0.000163', 21771 'Test2::Tools::Grab' => '0.000163', 21772 'Test2::Tools::Mock' => '0.000163', 21773 'Test2::Tools::Ref' => '0.000163', 21774 'Test2::Tools::Refcount'=> '0.000163', 21775 'Test2::Tools::Spec' => '0.000163', 21776 'Test2::Tools::Subtest' => '0.000163', 21777 'Test2::Tools::Target' => '0.000163', 21778 'Test2::Tools::Tester' => '0.000163', 21779 'Test2::Tools::Warnings'=> '0.000163', 21780 'Test2::Util::Grabber' => '0.000163', 21781 'Test2::Util::Guard' => '0.000163', 21782 'Test2::Util::Importer' => '0.000163', 21783 'Test2::Util::Ref' => '0.000163', 21784 'Test2::Util::Stash' => '0.000163', 21785 'Test2::Util::Sub' => '0.000163', 21786 'Test2::Util::Table' => '0.000163', 21787 'Test2::Util::Table::Cell'=> '0.000163', 21788 'Test2::Util::Table::LineBreak'=> '0.000163', 21789 'Test2::Util::Term' => '0.000163', 21790 'Test2::Util::Times' => '0.000163', 21791 'Test2::V0' => '0.000163', 21792 'Test2::Workflow' => '0.000163', 21793 'Test2::Workflow::BlockBase'=> '0.000163', 21794 'Test2::Workflow::Build'=> '0.000163', 21795 'Test2::Workflow::Runner'=> '0.000163', 21796 'Test2::Workflow::Task' => '0.000163', 21797 'Test2::Workflow::Task::Action'=> '0.000163', 21798 'Test2::Workflow::Task::Group'=> '0.000163', 21799 'VMS::Filespec' => '1.14', 21800 'builtin' => '0.015', 21801 'sort' => '2.06', 21802 'warnings' => '1.70', 21803 }, 21804 removed => { 21805 } 21806 }, 21807 5.041002 => { 21808 delta_from => 5.041001, 21809 changed => { 21810 'B::Deparse' => '1.77', 21811 'B::Op_private' => '5.041002', 21812 'Benchmark' => '1.26', 21813 'Config' => '5.041002', 21814 'Cwd' => '3.92', 21815 'Devel::PPPort' => '3.73', 21816 'File::Spec' => '3.92', 21817 'File::Spec::AmigaOS' => '3.92', 21818 'File::Spec::Cygwin' => '3.92', 21819 'File::Spec::Epoc' => '3.92', 21820 'File::Spec::Functions' => '3.92', 21821 'File::Spec::Mac' => '3.92', 21822 'File::Spec::OS2' => '3.92', 21823 'File::Spec::Unix' => '3.92', 21824 'File::Spec::VMS' => '3.92', 21825 'File::Spec::Win32' => '3.92', 21826 'Module::CoreList' => '5.20240720', 21827 'Module::CoreList::Utils'=> '5.20240720', 21828 'POSIX' => '2.22', 21829 'Pod::Man' => 'v6.0.2', 21830 'Pod::ParseLink' => 'v6.0.2', 21831 'Pod::Text' => 'v6.0.2', 21832 'Pod::Text::Color' => 'v6.0.2', 21833 'Pod::Text::Overstrike' => 'v6.0.2', 21834 'Pod::Text::Termcap' => 'v6.0.2', 21835 'Storable' => '3.33', 21836 'Win32' => '0.59_01', 21837 'XS::APItest' => '1.37', 21838 'locale' => '1.13', 21839 'source::encoding' => '0.01', 21840 'threads' => '2.41', 21841 'utf8' => '1.27', 21842 }, 21843 removed => { 21844 } 21845 }, 21846 5.041003 => { 21847 delta_from => 5.041002, 21848 changed => { 21849 'App::Prove' => '3.50', 21850 'App::Prove::State' => '3.50', 21851 'App::Prove::State::Result'=> '3.50', 21852 'App::Prove::State::Result::Test'=> '3.50', 21853 'B::Deparse' => '1.78', 21854 'B::Op_private' => '5.041003', 21855 'Compress::Raw::Bzip2' => '2.213', 21856 'Compress::Raw::Zlib' => '2.213', 21857 'Compress::Zlib' => '2.213', 21858 'Config' => '5.041003', 21859 'DynaLoader' => '1.57', 21860 'ExtUtils::ParseXS' => '3.53', 21861 'ExtUtils::ParseXS::Constants'=> '3.53', 21862 'ExtUtils::ParseXS::CountLines'=> '3.53', 21863 'ExtUtils::ParseXS::Eval'=> '3.53', 21864 'ExtUtils::ParseXS::Utilities'=> '3.53', 21865 'ExtUtils::Typemaps' => '3.53', 21866 'ExtUtils::Typemaps::Cmd'=> '3.53', 21867 'ExtUtils::Typemaps::InputMap'=> '3.53', 21868 'ExtUtils::Typemaps::OutputMap'=> '3.53', 21869 'ExtUtils::Typemaps::Type'=> '3.53', 21870 'IO::Compress' => '2.213', 21871 'IO::Compress::Adapter::Bzip2'=> '2.213', 21872 'IO::Compress::Adapter::Deflate'=> '2.213', 21873 'IO::Compress::Adapter::Identity'=> '2.213', 21874 'IO::Compress::Base' => '2.213', 21875 'IO::Compress::Base::Common'=> '2.213', 21876 'IO::Compress::Bzip2' => '2.213', 21877 'IO::Compress::Deflate' => '2.213', 21878 'IO::Compress::Gzip' => '2.213', 21879 'IO::Compress::Gzip::Constants'=> '2.213', 21880 'IO::Compress::RawDeflate'=> '2.213', 21881 'IO::Compress::Zip' => '2.213', 21882 'IO::Compress::Zip::Constants'=> '2.213', 21883 'IO::Compress::Zlib::Constants'=> '2.213', 21884 'IO::Compress::Zlib::Extra'=> '2.213', 21885 'IO::Uncompress::Adapter::Bunzip2'=> '2.213', 21886 'IO::Uncompress::Adapter::Identity'=> '2.213', 21887 'IO::Uncompress::Adapter::Inflate'=> '2.213', 21888 'IO::Uncompress::AnyInflate'=> '2.213', 21889 'IO::Uncompress::AnyUncompress'=> '2.213', 21890 'IO::Uncompress::Base' => '2.213', 21891 'IO::Uncompress::Bunzip2'=> '2.213', 21892 'IO::Uncompress::Gunzip'=> '2.213', 21893 'IO::Uncompress::Inflate'=> '2.213', 21894 'IO::Uncompress::RawInflate'=> '2.213', 21895 'IO::Uncompress::Unzip' => '2.213', 21896 'List::Util' => '1.65', 21897 'List::Util::XS' => '1.65', 21898 'Module::CoreList' => '5.20240829', 21899 'Module::CoreList::Utils'=> '5.20240829', 21900 'Opcode' => '1.66', 21901 'Safe' => '2.47', 21902 'Scalar::Util' => '1.65', 21903 'Storable' => '3.34', 21904 'Sub::Util' => '1.65', 21905 'TAP::Base' => '3.50', 21906 'TAP::Formatter::Base' => '3.50', 21907 'TAP::Formatter::Color' => '3.50', 21908 'TAP::Formatter::Console'=> '3.50', 21909 'TAP::Formatter::Console::ParallelSession'=> '3.50', 21910 'TAP::Formatter::Console::Session'=> '3.50', 21911 'TAP::Formatter::File' => '3.50', 21912 'TAP::Formatter::File::Session'=> '3.50', 21913 'TAP::Formatter::Session'=> '3.50', 21914 'TAP::Harness' => '3.50', 21915 'TAP::Harness::Env' => '3.50', 21916 'TAP::Object' => '3.50', 21917 'TAP::Parser' => '3.50', 21918 'TAP::Parser::Aggregator'=> '3.50', 21919 'TAP::Parser::Grammar' => '3.50', 21920 'TAP::Parser::Iterator' => '3.50', 21921 'TAP::Parser::Iterator::Array'=> '3.50', 21922 'TAP::Parser::Iterator::Process'=> '3.50', 21923 'TAP::Parser::Iterator::Stream'=> '3.50', 21924 'TAP::Parser::IteratorFactory'=> '3.50', 21925 'TAP::Parser::Multiplexer'=> '3.50', 21926 'TAP::Parser::Result' => '3.50', 21927 'TAP::Parser::Result::Bailout'=> '3.50', 21928 'TAP::Parser::Result::Comment'=> '3.50', 21929 'TAP::Parser::Result::Plan'=> '3.50', 21930 'TAP::Parser::Result::Pragma'=> '3.50', 21931 'TAP::Parser::Result::Test'=> '3.50', 21932 'TAP::Parser::Result::Unknown'=> '3.50', 21933 'TAP::Parser::Result::Version'=> '3.50', 21934 'TAP::Parser::Result::YAML'=> '3.50', 21935 'TAP::Parser::ResultFactory'=> '3.50', 21936 'TAP::Parser::Scheduler'=> '3.50', 21937 'TAP::Parser::Scheduler::Job'=> '3.50', 21938 'TAP::Parser::Scheduler::Spinner'=> '3.50', 21939 'TAP::Parser::Source' => '3.50', 21940 'TAP::Parser::SourceHandler'=> '3.50', 21941 'TAP::Parser::SourceHandler::Executable'=> '3.50', 21942 'TAP::Parser::SourceHandler::File'=> '3.50', 21943 'TAP::Parser::SourceHandler::Handle'=> '3.50', 21944 'TAP::Parser::SourceHandler::Perl'=> '3.50', 21945 'TAP::Parser::SourceHandler::RawTAP'=> '3.50', 21946 'TAP::Parser::YAMLish::Reader'=> '3.50', 21947 'TAP::Parser::YAMLish::Writer'=> '3.50', 21948 'Term::Table' => '0.022', 21949 'Term::Table::Cell' => '0.022', 21950 'Term::Table::CellStack'=> '0.022', 21951 'Term::Table::HashBase' => '0.022', 21952 'Term::Table::LineBreak'=> '0.022', 21953 'Term::Table::Spacer' => '0.022', 21954 'Term::Table::Util' => '0.022', 21955 'Test2' => '1.302201', 21956 'Test2::API' => '1.302201', 21957 'Test2::API::Breakage' => '1.302201', 21958 'Test2::API::Context' => '1.302201', 21959 'Test2::API::Instance' => '1.302201', 21960 'Test2::API::InterceptResult'=> '1.302201', 21961 'Test2::API::InterceptResult::Event'=> '1.302201', 21962 'Test2::API::InterceptResult::Facet'=> '1.302201', 21963 'Test2::API::InterceptResult::Hub'=> '1.302201', 21964 'Test2::API::InterceptResult::Squasher'=> '1.302201', 21965 'Test2::API::Stack' => '1.302201', 21966 'Test2::AsyncSubtest' => '1.302201', 21967 'Test2::AsyncSubtest::Event::Attach'=> '1.302201', 21968 'Test2::AsyncSubtest::Event::Detach'=> '1.302201', 21969 'Test2::AsyncSubtest::Formatter'=> '1.302201', 21970 'Test2::AsyncSubtest::Hub'=> '1.302201', 21971 'Test2::Bundle' => '1.302201', 21972 'Test2::Bundle::Extended'=> '1.302201', 21973 'Test2::Bundle::More' => '1.302201', 21974 'Test2::Bundle::Simple' => '1.302201', 21975 'Test2::Compare' => '1.302201', 21976 'Test2::Compare::Array' => '1.302201', 21977 'Test2::Compare::Bag' => '1.302201', 21978 'Test2::Compare::Base' => '1.302201', 21979 'Test2::Compare::Bool' => '1.302201', 21980 'Test2::Compare::Custom'=> '1.302201', 21981 'Test2::Compare::DeepRef'=> '1.302201', 21982 'Test2::Compare::Delta' => '1.302201', 21983 'Test2::Compare::Event' => '1.302201', 21984 'Test2::Compare::EventMeta'=> '1.302201', 21985 'Test2::Compare::Float' => '1.302201', 21986 'Test2::Compare::Hash' => '1.302201', 21987 'Test2::Compare::Isa' => '1.302201', 21988 'Test2::Compare::Meta' => '1.302201', 21989 'Test2::Compare::Negatable'=> '1.302201', 21990 'Test2::Compare::Number'=> '1.302201', 21991 'Test2::Compare::Object'=> '1.302201', 21992 'Test2::Compare::OrderedSubset'=> '1.302201', 21993 'Test2::Compare::Pattern'=> '1.302201', 21994 'Test2::Compare::Ref' => '1.302201', 21995 'Test2::Compare::Regex' => '1.302201', 21996 'Test2::Compare::Scalar'=> '1.302201', 21997 'Test2::Compare::Set' => '1.302201', 21998 'Test2::Compare::String'=> '1.302201', 21999 'Test2::Compare::Undef' => '1.302201', 22000 'Test2::Compare::Wildcard'=> '1.302201', 22001 'Test2::Event' => '1.302201', 22002 'Test2::Event::Bail' => '1.302201', 22003 'Test2::Event::Diag' => '1.302201', 22004 'Test2::Event::Encoding'=> '1.302201', 22005 'Test2::Event::Exception'=> '1.302201', 22006 'Test2::Event::Fail' => '1.302201', 22007 'Test2::Event::Generic' => '1.302201', 22008 'Test2::Event::Note' => '1.302201', 22009 'Test2::Event::Ok' => '1.302201', 22010 'Test2::Event::Pass' => '1.302201', 22011 'Test2::Event::Plan' => '1.302201', 22012 'Test2::Event::Skip' => '1.302201', 22013 'Test2::Event::Subtest' => '1.302201', 22014 'Test2::Event::TAP::Version'=> '1.302201', 22015 'Test2::Event::V2' => '1.302201', 22016 'Test2::Event::Waiting' => '1.302201', 22017 'Test2::EventFacet' => '1.302201', 22018 'Test2::EventFacet::About'=> '1.302201', 22019 'Test2::EventFacet::Amnesty'=> '1.302201', 22020 'Test2::EventFacet::Assert'=> '1.302201', 22021 'Test2::EventFacet::Control'=> '1.302201', 22022 'Test2::EventFacet::Error'=> '1.302201', 22023 'Test2::EventFacet::Hub'=> '1.302201', 22024 'Test2::EventFacet::Info'=> '1.302201', 22025 'Test2::EventFacet::Info::Table'=> '1.302201', 22026 'Test2::EventFacet::Meta'=> '1.302201', 22027 'Test2::EventFacet::Parent'=> '1.302201', 22028 'Test2::EventFacet::Plan'=> '1.302201', 22029 'Test2::EventFacet::Render'=> '1.302201', 22030 'Test2::EventFacet::Trace'=> '1.302201', 22031 'Test2::Formatter' => '1.302201', 22032 'Test2::Formatter::TAP' => '1.302201', 22033 'Test2::Hub' => '1.302201', 22034 'Test2::Hub::Interceptor'=> '1.302201', 22035 'Test2::Hub::Interceptor::Terminator'=> '1.302201', 22036 'Test2::Hub::Subtest' => '1.302201', 22037 'Test2::IPC' => '1.302201', 22038 'Test2::IPC::Driver' => '1.302201', 22039 'Test2::IPC::Driver::Files'=> '1.302201', 22040 'Test2::Manual' => '1.302201', 22041 'Test2::Manual::Anatomy'=> '1.302201', 22042 'Test2::Manual::Anatomy::API'=> '1.302201', 22043 'Test2::Manual::Anatomy::Context'=> '1.302201', 22044 'Test2::Manual::Anatomy::EndToEnd'=> '1.302201', 22045 'Test2::Manual::Anatomy::Event'=> '1.302201', 22046 'Test2::Manual::Anatomy::Hubs'=> '1.302201', 22047 'Test2::Manual::Anatomy::IPC'=> '1.302201', 22048 'Test2::Manual::Anatomy::Utilities'=> '1.302201', 22049 'Test2::Manual::Concurrency'=> '1.302201', 22050 'Test2::Manual::Contributing'=> '1.302201', 22051 'Test2::Manual::Testing'=> '1.302201', 22052 'Test2::Manual::Testing::Introduction'=> '1.302201', 22053 'Test2::Manual::Testing::Migrating'=> '1.302201', 22054 'Test2::Manual::Testing::Planning'=> '1.302201', 22055 'Test2::Manual::Testing::Todo'=> '1.302201', 22056 'Test2::Manual::Tooling'=> '1.302201', 22057 'Test2::Manual::Tooling::FirstTool'=> '1.302201', 22058 'Test2::Manual::Tooling::Formatter'=> '1.302201', 22059 'Test2::Manual::Tooling::Nesting'=> '1.302201', 22060 'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302201', 22061 'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302201', 22062 'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302201', 22063 'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302201', 22064 'Test2::Manual::Tooling::Subtest'=> '1.302201', 22065 'Test2::Manual::Tooling::TestBuilder'=> '1.302201', 22066 'Test2::Manual::Tooling::Testing'=> '1.302201', 22067 'Test2::Mock' => '1.302201', 22068 'Test2::Plugin' => '1.302201', 22069 'Test2::Plugin::BailOnFail'=> '1.302201', 22070 'Test2::Plugin::DieOnFail'=> '1.302201', 22071 'Test2::Plugin::ExitSummary'=> '1.302201', 22072 'Test2::Plugin::SRand' => '1.302201', 22073 'Test2::Plugin::Times' => '1.302201', 22074 'Test2::Plugin::UTF8' => '1.302201', 22075 'Test2::Require' => '1.302201', 22076 'Test2::Require::AuthorTesting'=> '1.302201', 22077 'Test2::Require::AutomatedTesting'=> '1.302201', 22078 'Test2::Require::EnvVar'=> '1.302201', 22079 'Test2::Require::ExtendedTesting'=> '1.302201', 22080 'Test2::Require::Fork' => '1.302201', 22081 'Test2::Require::Module'=> '1.302201', 22082 'Test2::Require::NonInteractiveTesting'=> '1.302201', 22083 'Test2::Require::Perl' => '1.302201', 22084 'Test2::Require::RealFork'=> '1.302201', 22085 'Test2::Require::ReleaseTesting'=> '1.302201', 22086 'Test2::Require::Threads'=> '1.302201', 22087 'Test2::Suite' => '1.302201', 22088 'Test2::Todo' => '1.302201', 22089 'Test2::Tools' => '1.302201', 22090 'Test2::Tools::AsyncSubtest'=> '1.302201', 22091 'Test2::Tools::Basic' => '1.302201', 22092 'Test2::Tools::Class' => '1.302201', 22093 'Test2::Tools::ClassicCompare'=> '1.302201', 22094 'Test2::Tools::Compare' => '1.302201', 22095 'Test2::Tools::Defer' => '1.302201', 22096 'Test2::Tools::Encoding'=> '1.302201', 22097 'Test2::Tools::Event' => '1.302201', 22098 'Test2::Tools::Exception'=> '1.302201', 22099 'Test2::Tools::Exports' => '1.302201', 22100 'Test2::Tools::GenTemp' => '1.302201', 22101 'Test2::Tools::Grab' => '1.302201', 22102 'Test2::Tools::Mock' => '1.302201', 22103 'Test2::Tools::Ref' => '1.302201', 22104 'Test2::Tools::Refcount'=> '1.302201', 22105 'Test2::Tools::Spec' => '1.302201', 22106 'Test2::Tools::Subtest' => '1.302201', 22107 'Test2::Tools::Target' => '1.302201', 22108 'Test2::Tools::Tester' => '1.302201', 22109 'Test2::Tools::Tiny' => '1.302201', 22110 'Test2::Tools::Warnings'=> '1.302201', 22111 'Test2::Util' => '1.302201', 22112 'Test2::Util::ExternalMeta'=> '1.302201', 22113 'Test2::Util::Facets2Legacy'=> '1.302201', 22114 'Test2::Util::Grabber' => '1.302201', 22115 'Test2::Util::Guard' => '1.302201', 22116 'Test2::Util::HashBase' => '1.302201', 22117 'Test2::Util::Importer' => '1.302201', 22118 'Test2::Util::Ref' => '1.302201', 22119 'Test2::Util::Stash' => '1.302201', 22120 'Test2::Util::Sub' => '1.302201', 22121 'Test2::Util::Table' => '1.302201', 22122 'Test2::Util::Table::Cell'=> '1.302201', 22123 'Test2::Util::Table::LineBreak'=> '1.302201', 22124 'Test2::Util::Term' => '1.302201', 22125 'Test2::Util::Times' => '1.302201', 22126 'Test2::Util::Trace' => '1.302201', 22127 'Test2::V0' => '1.302201', 22128 'Test2::Workflow' => '1.302201', 22129 'Test2::Workflow::BlockBase'=> '1.302201', 22130 'Test2::Workflow::Build'=> '1.302201', 22131 'Test2::Workflow::Runner'=> '1.302201', 22132 'Test2::Workflow::Task' => '1.302201', 22133 'Test2::Workflow::Task::Action'=> '1.302201', 22134 'Test2::Workflow::Task::Group'=> '1.302201', 22135 'Test::Builder' => '1.302201', 22136 'Test::Builder::Formatter'=> '1.302201', 22137 'Test::Builder::Module' => '1.302201', 22138 'Test::Builder::Tester' => '1.302201', 22139 'Test::Builder::Tester::Color'=> '1.302201', 22140 'Test::Builder::TodoDiag'=> '1.302201', 22141 'Test::Harness' => '3.50', 22142 'Test::More' => '1.302201', 22143 'Test::Simple' => '1.302201', 22144 'Test::Tester' => '1.302201', 22145 'Test::Tester::Capture' => '1.302201', 22146 'Test::Tester::CaptureRunner'=> '1.302201', 22147 'Test::Tester::Delegate'=> '1.302201', 22148 'Test::use::ok' => '1.302201', 22149 'Tie::RefHash' => '1.41', 22150 'feature' => '1.91', 22151 'ok' => '1.302201', 22152 'overload' => '1.38', 22153 'parent' => '0.242', 22154 'threads' => '2.42', 22155 }, 22156 removed => { 22157 } 22158 }, 22159 5.041004 => { 22160 delta_from => 5.041003, 22161 changed => { 22162 'B::Op_private' => '5.041004', 22163 'CPAN' => '2.37', 22164 'CPAN::HandleConfig' => '5.5013', 22165 'Config' => '5.041004', 22166 'Devel::Peek' => '1.36', 22167 'ExtUtils::ParseXS' => '3.54', 22168 'ExtUtils::ParseXS::Constants'=> '3.54', 22169 'ExtUtils::ParseXS::CountLines'=> '3.54', 22170 'ExtUtils::ParseXS::Eval'=> '3.54', 22171 'ExtUtils::ParseXS::Utilities'=> '3.54', 22172 'ExtUtils::Typemaps' => '3.54', 22173 'ExtUtils::Typemaps::Cmd'=> '3.54', 22174 'ExtUtils::Typemaps::InputMap'=> '3.54', 22175 'ExtUtils::Typemaps::OutputMap'=> '3.54', 22176 'ExtUtils::Typemaps::Type'=> '3.54', 22177 'File::Spec' => '3.93', 22178 'File::Spec::AmigaOS' => '3.93', 22179 'File::Spec::Cygwin' => '3.93', 22180 'File::Spec::Epoc' => '3.93', 22181 'File::Spec::Functions' => '3.93', 22182 'File::Spec::Mac' => '3.93', 22183 'File::Spec::OS2' => '3.93', 22184 'File::Spec::Unix' => '3.93', 22185 'File::Spec::VMS' => '3.93', 22186 'File::Spec::Win32' => '3.93', 22187 'List::Util' => '1.66', 22188 'List::Util::XS' => '1.66', 22189 'Module::CoreList' => '5.20240920', 22190 'Module::CoreList::Utils'=> '5.20240920', 22191 'Scalar::Util' => '1.66', 22192 'Storable' => '3.35', 22193 'Sub::Util' => '1.66', 22194 'Test2' => '1.302204', 22195 'Test2::API' => '1.302204', 22196 'Test2::API::Breakage' => '1.302204', 22197 'Test2::API::Context' => '1.302204', 22198 'Test2::API::Instance' => '1.302204', 22199 'Test2::API::InterceptResult'=> '1.302204', 22200 'Test2::API::InterceptResult::Event'=> '1.302204', 22201 'Test2::API::InterceptResult::Facet'=> '1.302204', 22202 'Test2::API::InterceptResult::Hub'=> '1.302204', 22203 'Test2::API::InterceptResult::Squasher'=> '1.302204', 22204 'Test2::API::Stack' => '1.302204', 22205 'Test2::AsyncSubtest' => '1.302204', 22206 'Test2::AsyncSubtest::Event::Attach'=> '1.302204', 22207 'Test2::AsyncSubtest::Event::Detach'=> '1.302204', 22208 'Test2::AsyncSubtest::Formatter'=> '1.302204', 22209 'Test2::AsyncSubtest::Hub'=> '1.302204', 22210 'Test2::Bundle' => '1.302204', 22211 'Test2::Bundle::Extended'=> '1.302204', 22212 'Test2::Bundle::More' => '1.302204', 22213 'Test2::Bundle::Simple' => '1.302204', 22214 'Test2::Compare' => '1.302204', 22215 'Test2::Compare::Array' => '1.302204', 22216 'Test2::Compare::Bag' => '1.302204', 22217 'Test2::Compare::Base' => '1.302204', 22218 'Test2::Compare::Bool' => '1.302204', 22219 'Test2::Compare::Custom'=> '1.302204', 22220 'Test2::Compare::DeepRef'=> '1.302204', 22221 'Test2::Compare::Delta' => '1.302204', 22222 'Test2::Compare::Event' => '1.302204', 22223 'Test2::Compare::EventMeta'=> '1.302204', 22224 'Test2::Compare::Float' => '1.302204', 22225 'Test2::Compare::Hash' => '1.302204', 22226 'Test2::Compare::Isa' => '1.302204', 22227 'Test2::Compare::Meta' => '1.302204', 22228 'Test2::Compare::Negatable'=> '1.302204', 22229 'Test2::Compare::Number'=> '1.302204', 22230 'Test2::Compare::Object'=> '1.302204', 22231 'Test2::Compare::OrderedSubset'=> '1.302204', 22232 'Test2::Compare::Pattern'=> '1.302204', 22233 'Test2::Compare::Ref' => '1.302204', 22234 'Test2::Compare::Regex' => '1.302204', 22235 'Test2::Compare::Scalar'=> '1.302204', 22236 'Test2::Compare::Set' => '1.302204', 22237 'Test2::Compare::String'=> '1.302204', 22238 'Test2::Compare::Undef' => '1.302204', 22239 'Test2::Compare::Wildcard'=> '1.302204', 22240 'Test2::Event' => '1.302204', 22241 'Test2::Event::Bail' => '1.302204', 22242 'Test2::Event::Diag' => '1.302204', 22243 'Test2::Event::Encoding'=> '1.302204', 22244 'Test2::Event::Exception'=> '1.302204', 22245 'Test2::Event::Fail' => '1.302204', 22246 'Test2::Event::Generic' => '1.302204', 22247 'Test2::Event::Note' => '1.302204', 22248 'Test2::Event::Ok' => '1.302204', 22249 'Test2::Event::Pass' => '1.302204', 22250 'Test2::Event::Plan' => '1.302204', 22251 'Test2::Event::Skip' => '1.302204', 22252 'Test2::Event::Subtest' => '1.302204', 22253 'Test2::Event::TAP::Version'=> '1.302204', 22254 'Test2::Event::V2' => '1.302204', 22255 'Test2::Event::Waiting' => '1.302204', 22256 'Test2::EventFacet' => '1.302204', 22257 'Test2::EventFacet::About'=> '1.302204', 22258 'Test2::EventFacet::Amnesty'=> '1.302204', 22259 'Test2::EventFacet::Assert'=> '1.302204', 22260 'Test2::EventFacet::Control'=> '1.302204', 22261 'Test2::EventFacet::Error'=> '1.302204', 22262 'Test2::EventFacet::Hub'=> '1.302204', 22263 'Test2::EventFacet::Info'=> '1.302204', 22264 'Test2::EventFacet::Info::Table'=> '1.302204', 22265 'Test2::EventFacet::Meta'=> '1.302204', 22266 'Test2::EventFacet::Parent'=> '1.302204', 22267 'Test2::EventFacet::Plan'=> '1.302204', 22268 'Test2::EventFacet::Render'=> '1.302204', 22269 'Test2::EventFacet::Trace'=> '1.302204', 22270 'Test2::Formatter' => '1.302204', 22271 'Test2::Formatter::TAP' => '1.302204', 22272 'Test2::Hub' => '1.302204', 22273 'Test2::Hub::Interceptor'=> '1.302204', 22274 'Test2::Hub::Interceptor::Terminator'=> '1.302204', 22275 'Test2::Hub::Subtest' => '1.302204', 22276 'Test2::IPC' => '1.302204', 22277 'Test2::IPC::Driver' => '1.302204', 22278 'Test2::IPC::Driver::Files'=> '1.302204', 22279 'Test2::Manual' => '1.302204', 22280 'Test2::Manual::Anatomy'=> '1.302204', 22281 'Test2::Manual::Anatomy::API'=> '1.302204', 22282 'Test2::Manual::Anatomy::Context'=> '1.302204', 22283 'Test2::Manual::Anatomy::EndToEnd'=> '1.302204', 22284 'Test2::Manual::Anatomy::Event'=> '1.302204', 22285 'Test2::Manual::Anatomy::Hubs'=> '1.302204', 22286 'Test2::Manual::Anatomy::IPC'=> '1.302204', 22287 'Test2::Manual::Anatomy::Utilities'=> '1.302204', 22288 'Test2::Manual::Concurrency'=> '1.302204', 22289 'Test2::Manual::Contributing'=> '1.302204', 22290 'Test2::Manual::Testing'=> '1.302204', 22291 'Test2::Manual::Testing::Introduction'=> '1.302204', 22292 'Test2::Manual::Testing::Migrating'=> '1.302204', 22293 'Test2::Manual::Testing::Planning'=> '1.302204', 22294 'Test2::Manual::Testing::Todo'=> '1.302204', 22295 'Test2::Manual::Tooling'=> '1.302204', 22296 'Test2::Manual::Tooling::FirstTool'=> '1.302204', 22297 'Test2::Manual::Tooling::Formatter'=> '1.302204', 22298 'Test2::Manual::Tooling::Nesting'=> '1.302204', 22299 'Test2::Manual::Tooling::Plugin::TestExit'=> '1.302204', 22300 'Test2::Manual::Tooling::Plugin::TestingDone'=> '1.302204', 22301 'Test2::Manual::Tooling::Plugin::ToolCompletes'=> '1.302204', 22302 'Test2::Manual::Tooling::Plugin::ToolStarts'=> '1.302204', 22303 'Test2::Manual::Tooling::Subtest'=> '1.302204', 22304 'Test2::Manual::Tooling::TestBuilder'=> '1.302204', 22305 'Test2::Manual::Tooling::Testing'=> '1.302204', 22306 'Test2::Mock' => '1.302204', 22307 'Test2::Plugin' => '1.302204', 22308 'Test2::Plugin::BailOnFail'=> '1.302204', 22309 'Test2::Plugin::DieOnFail'=> '1.302204', 22310 'Test2::Plugin::ExitSummary'=> '1.302204', 22311 'Test2::Plugin::SRand' => '1.302204', 22312 'Test2::Plugin::Times' => '1.302204', 22313 'Test2::Plugin::UTF8' => '1.302204', 22314 'Test2::Require' => '1.302204', 22315 'Test2::Require::AuthorTesting'=> '1.302204', 22316 'Test2::Require::AutomatedTesting'=> '1.302204', 22317 'Test2::Require::EnvVar'=> '1.302204', 22318 'Test2::Require::ExtendedTesting'=> '1.302204', 22319 'Test2::Require::Fork' => '1.302204', 22320 'Test2::Require::Module'=> '1.302204', 22321 'Test2::Require::NonInteractiveTesting'=> '1.302204', 22322 'Test2::Require::Perl' => '1.302204', 22323 'Test2::Require::RealFork'=> '1.302204', 22324 'Test2::Require::ReleaseTesting'=> '1.302204', 22325 'Test2::Require::Threads'=> '1.302204', 22326 'Test2::Suite' => '1.302204', 22327 'Test2::Todo' => '1.302204', 22328 'Test2::Tools' => '1.302204', 22329 'Test2::Tools::AsyncSubtest'=> '1.302204', 22330 'Test2::Tools::Basic' => '1.302204', 22331 'Test2::Tools::Class' => '1.302204', 22332 'Test2::Tools::ClassicCompare'=> '1.302204', 22333 'Test2::Tools::Compare' => '1.302204', 22334 'Test2::Tools::Defer' => '1.302204', 22335 'Test2::Tools::Encoding'=> '1.302204', 22336 'Test2::Tools::Event' => '1.302204', 22337 'Test2::Tools::Exception'=> '1.302204', 22338 'Test2::Tools::Exports' => '1.302204', 22339 'Test2::Tools::GenTemp' => '1.302204', 22340 'Test2::Tools::Grab' => '1.302204', 22341 'Test2::Tools::Mock' => '1.302204', 22342 'Test2::Tools::Ref' => '1.302204', 22343 'Test2::Tools::Refcount'=> '1.302204', 22344 'Test2::Tools::Spec' => '1.302204', 22345 'Test2::Tools::Subtest' => '1.302204', 22346 'Test2::Tools::Target' => '1.302204', 22347 'Test2::Tools::Tester' => '1.302204', 22348 'Test2::Tools::Tiny' => '1.302204', 22349 'Test2::Tools::Warnings'=> '1.302204', 22350 'Test2::Util' => '1.302204', 22351 'Test2::Util::ExternalMeta'=> '1.302204', 22352 'Test2::Util::Facets2Legacy'=> '1.302204', 22353 'Test2::Util::Grabber' => '1.302204', 22354 'Test2::Util::Guard' => '1.302204', 22355 'Test2::Util::HashBase' => '1.302204', 22356 'Test2::Util::Importer' => '1.302204', 22357 'Test2::Util::Ref' => '1.302204', 22358 'Test2::Util::Stash' => '1.302204', 22359 'Test2::Util::Sub' => '1.302204', 22360 'Test2::Util::Table' => '1.302204', 22361 'Test2::Util::Table::Cell'=> '1.302204', 22362 'Test2::Util::Table::LineBreak'=> '1.302204', 22363 'Test2::Util::Term' => '1.302204', 22364 'Test2::Util::Times' => '1.302204', 22365 'Test2::Util::Trace' => '1.302204', 22366 'Test2::V0' => '1.302204', 22367 'Test2::Workflow' => '1.302204', 22368 'Test2::Workflow::BlockBase'=> '1.302204', 22369 'Test2::Workflow::Build'=> '1.302204', 22370 'Test2::Workflow::Runner'=> '1.302204', 22371 'Test2::Workflow::Task' => '1.302204', 22372 'Test2::Workflow::Task::Action'=> '1.302204', 22373 'Test2::Workflow::Task::Group'=> '1.302204', 22374 'Test::Builder' => '1.302204', 22375 'Test::Builder::Formatter'=> '1.302204', 22376 'Test::Builder::Module' => '1.302204', 22377 'Test::Builder::Tester' => '1.302204', 22378 'Test::Builder::Tester::Color'=> '1.302204', 22379 'Test::Builder::TodoDiag'=> '1.302204', 22380 'Test::More' => '1.302204', 22381 'Test::Simple' => '1.302204', 22382 'Test::Tester' => '1.302204', 22383 'Test::Tester::Capture' => '1.302204', 22384 'Test::Tester::CaptureRunner'=> '1.302204', 22385 'Test::Tester::Delegate'=> '1.302204', 22386 'Test::use::ok' => '1.302204', 22387 'XS::APItest' => '1.38', 22388 'ok' => '1.302204', 22389 'overload' => '1.39', 22390 'version' => '0.9933', 22391 'version::regex' => '0.9933', 22392 }, 22393 removed => { 22394 } 22395 }, 22396 5.041005 => { 22397 delta_from => 5.041004, 22398 changed => { 22399 'B::Op_private' => '5.041005', 22400 'Config' => '5.041005', 22401 'Digest::MD5' => '2.59', 22402 'ExtUtils::ParseXS' => '3.55', 22403 'ExtUtils::ParseXS::Constants'=> '3.55', 22404 'ExtUtils::ParseXS::CountLines'=> '3.55', 22405 'ExtUtils::ParseXS::Eval'=> '3.55', 22406 'ExtUtils::ParseXS::Node'=> '3.55', 22407 'ExtUtils::ParseXS::Utilities'=> '3.55', 22408 'ExtUtils::Typemaps' => '3.55', 22409 'ExtUtils::Typemaps::Cmd'=> '3.55', 22410 'ExtUtils::Typemaps::InputMap'=> '3.55', 22411 'ExtUtils::Typemaps::OutputMap'=> '3.55', 22412 'ExtUtils::Typemaps::Type'=> '3.55', 22413 'IPC::Open2' => '1.07', 22414 'IPC::Open3' => '1.23', 22415 'List::Util' => '1.68', 22416 'List::Util::XS' => '1.68', 22417 'Module::CoreList' => '5.20241020', 22418 'Module::CoreList::Utils'=> '5.20241020', 22419 'Scalar::List::Utils' => '1.68', 22420 'Scalar::Util' => '1.68', 22421 'Sub::Util' => '1.68', 22422 'threads::shared' => '1.70', 22423 }, 22424 removed => { 22425 } 22426 }, 22427 5.041006 => { 22428 delta_from => 5.041005, 22429 changed => { 22430 'B::Deparse' => '1.80', 22431 'B::Op_private' => '5.041006', 22432 'CPAN' => '2.38', 22433 'Config' => '5.041006', 22434 'DB' => '1.09', 22435 'ExtUtils::ParseXS' => '3.56', 22436 'ExtUtils::ParseXS::Constants'=> '3.56', 22437 'ExtUtils::ParseXS::CountLines'=> '3.56', 22438 'ExtUtils::ParseXS::Eval'=> '3.56', 22439 'ExtUtils::ParseXS::Node'=> '3.56', 22440 'ExtUtils::ParseXS::Utilities'=> '3.56', 22441 'ExtUtils::Typemaps' => '3.56', 22442 'ExtUtils::Typemaps::Cmd'=> '3.56', 22443 'ExtUtils::Typemaps::InputMap'=> '3.56', 22444 'ExtUtils::Typemaps::OutputMap'=> '3.56', 22445 'ExtUtils::Typemaps::Type'=> '3.56', 22446 'HTTP::Tiny' => '0.090', 22447 'IPC::Open2' => '1.08', 22448 'IPC::Open3' => '1.24', 22449 'List::Util' => '1.68_01', 22450 'List::Util::XS' => '1.68_01', 22451 'Math::Complex' => '1.63', 22452 'Math::Trig' => '1.63', 22453 'Memoize' => '1.17', 22454 'Memoize::AnyDBM_File' => '1.17', 22455 'Memoize::Expire' => '1.17', 22456 'Memoize::NDBM_File' => '1.17', 22457 'Memoize::SDBM_File' => '1.17', 22458 'Memoize::Storable' => '1.17', 22459 'Module::CoreList' => '5.20241120', 22460 'Module::CoreList::Utils'=> '5.20241120', 22461 'NDBM_File' => '1.18', 22462 'ODBM_File' => '1.19', 22463 'POSIX' => '2.23', 22464 'Scalar::Util' => '1.68_01', 22465 'Sub::Util' => '1.68_01', 22466 'Term::Table' => '0.023', 22467 'Term::Table::Cell' => '0.023', 22468 'Term::Table::CellStack'=> '0.023', 22469 'Term::Table::HashBase' => '0.023', 22470 'Term::Table::LineBreak'=> '0.023', 22471 'Term::Table::Spacer' => '0.023', 22472 'Term::Table::Util' => '0.023', 22473 'builtin' => '0.016', 22474 'feature' => '1.92', 22475 'fields' => '2.26', 22476 'parent' => '0.242_001', 22477 'warnings' => '1.71', 22478 }, 22479 removed => { 22480 } 22481 }, 22482 5.041007 => { 22483 delta_from => 5.041006, 22484 changed => { 22485 'B::Deparse' => '1.81', 22486 'B::Op_private' => '5.041007', 22487 'CPAN::Meta::YAML' => '0.020', 22488 'Config' => '5.041007', 22489 'IO::Socket::IP' => '0.43', 22490 'Module::CoreList' => '5.20241220', 22491 'Module::CoreList::Utils'=> '5.20241220', 22492 'Opcode' => '1.67', 22493 'XS::APItest' => '1.40', 22494 'builtin' => '0.017', 22495 'feature' => '1.93', 22496 'parent' => '0.244', 22497 'warnings' => '1.72', 22498 }, 22499 removed => { 22500 } 22501 }, 22502 5.040001 => { 22503 delta_from => 5.040000, 22504 changed => { 22505 'B::Op_private' => '5.040001', 22506 'Config' => '5.040001', 22507 'Cwd' => '3.91', 22508 'File::Spec' => '3.91', 22509 'Module::CoreList' => '5.20250118_40', 22510 'Module::CoreList::Utils'=> '5.20250118_40', 22511 'Pod::Functions::Functions'=> '1.14', 22512 'warnings' => '1.70', 22513 }, 22514 removed => { 22515 } 22516 }, 22517); 22518 22519sub is_core 22520{ 22521 shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0]; 22522 my $module = shift; 22523 my $module_version = @_ > 0 ? shift : undef; 22524 my $perl_version = @_ > 0 ? shift : $]; 22525 22526 my $first_release = first_release($module); 22527 22528 return 0 if !defined($first_release) || $first_release > $perl_version; 22529 22530 my $final_release = removed_from($module); 22531 22532 return 0 if defined($final_release) && $perl_version >= $final_release; 22533 22534 # If a minimum version of the module was specified: 22535 # Step through all perl releases ($prn) 22536 # so we can find what version of the module 22537 # was included in the specified version of perl. 22538 # On the way if we pass the required module version, we can 22539 # short-circuit and return true 22540 if (defined($module_version)) { 22541 my $module_version_object = eval { version->parse($module_version) }; 22542 if (!defined($module_version_object)) { 22543 (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/; 22544 die $err; 22545 } 22546 # The Perl releases aren't a linear sequence, but a tree. We need to build the path 22547 # of releases from 5 to the specified release, and follow the module's version(s) 22548 # along that path. 22549 my @releases = ($perl_version); 22550 my $rel = $perl_version; 22551 while (defined($rel)) { 22552 # XXX: This line is a sign of failure. -- rjbs, 2015-04-15 22553 my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel }; 22554 $rel = $this_delta->{delta_from}; 22555 unshift(@releases, $rel) if defined($rel); 22556 } 22557 RELEASE: 22558 foreach my $prn (@releases) { 22559 next RELEASE if $prn < $first_release; 22560 last RELEASE if $prn > $perl_version; 22561 next unless defined(my $next_module_version 22562 = $delta{$prn}->{changed}->{$module}); 22563 return 1 if eval { version->parse($next_module_version) >= $module_version_object }; 22564 } 22565 return 0; 22566 } 22567 22568 return 1 if !defined($final_release); 22569 22570 return $perl_version <= $final_release; 22571} 22572 22573%version = _undelta(\%delta); 22574 22575%deprecated = ( 22576 5.011 => { 22577 changed => { map { $_ => 1 } qw/ 22578 Class::ISA 22579 Pod::Plainer 22580 Shell 22581 Switch 22582 /}, 22583 }, 22584 5.011001 => { delta_from => 5.011 }, 22585 5.011002 => { delta_from => 5.011001 }, 22586 5.011003 => { delta_from => 5.011002 }, 22587 5.011004 => { delta_from => 5.011003 }, 22588 5.011005 => { delta_from => 5.011004 }, 22589 22590 5.012 => { delta_from => 5.011005 }, 22591 5.012001 => { delta_from => 5.012 }, 22592 5.012002 => { delta_from => 5.012001 }, 22593 5.012003 => { delta_from => 5.012002 }, 22594 5.012004 => { delta_from => 5.012003 }, 22595 5.012005 => { delta_from => 5.012004 }, 22596 22597 5.013 => { delta_from => 5.012005 }, 22598 5.013001 => { 22599 delta_from => 5.013, 22600 removed => { map { $_ => 1 } qw/ 22601 Class::ISA 22602 Pod::Plainer 22603 Switch 22604 /}, 22605 }, 22606 5.013002 => { delta_from => 5.013001 }, 22607 5.013003 => { delta_from => 5.013002 }, 22608 5.013004 => { delta_from => 5.013003 }, 22609 5.013005 => { delta_from => 5.013004 }, 22610 5.013006 => { delta_from => 5.013005 }, 22611 5.013007 => { delta_from => 5.013006 }, 22612 5.013008 => { delta_from => 5.013007 }, 22613 5.013009 => { delta_from => 5.013008 }, 22614 5.01301 => { delta_from => 5.013009 }, 22615 5.013011 => { delta_from => 5.01301 }, 22616 22617 5.014 => { delta_from => 5.013011 }, 22618 5.014001 => { delta_from => 5.014 }, 22619 5.014002 => { delta_from => 5.014001 }, 22620 5.014003 => { delta_from => 5.014002 }, 22621 5.014004 => { delta_from => 5.014003 }, 22622 22623 5.015 => { 22624 delta_from => 5.014004, 22625 removed => { Shell => 1 }, 22626 }, 22627 5.015001 => { delta_from => 5.015 }, 22628 5.015002 => { delta_from => 5.015001 }, 22629 5.015003 => { delta_from => 5.015002 }, 22630 5.015004 => { delta_from => 5.015003 }, 22631 5.015005 => { delta_from => 5.015004 }, 22632 5.015006 => { delta_from => 5.015005 }, 22633 5.015007 => { delta_from => 5.015006 }, 22634 5.015008 => { delta_from => 5.015007 }, 22635 5.015009 => { delta_from => 5.015008 }, 22636 22637 5.016 => { delta_from => 5.015009 }, 22638 5.016001 => { delta_from => 5.016 }, 22639 5.016002 => { delta_from => 5.016001 }, 22640 5.016003 => { delta_from => 5.016002 }, 22641 22642 5.017 => { delta_from => 5.016003 }, 22643 5.017001 => { delta_from => 5.017 }, 22644 5.017002 => { delta_from => 5.017001 }, 22645 5.017003 => { delta_from => 5.017002 }, 22646 5.017004 => { delta_from => 5.017003 }, 22647 5.017005 => { delta_from => 5.017004 }, 22648 5.017006 => { delta_from => 5.017005 }, 22649 5.017007 => { delta_from => 5.017006 }, 22650 5.017008 => { 22651 delta_from => 5.017007, 22652 changed => { 'Pod::LaTeX' => 1 }, 22653 }, 22654 5.017009 => { 22655 delta_from => 5.017008, 22656 changed => { map { $_ => 1 } qw/ 22657 Archive::Extract 22658 B::Lint 22659 B::Lint::Debug 22660 CPANPLUS 22661 CPANPLUS::Backend 22662 CPANPLUS::Backend::RV 22663 CPANPLUS::Config 22664 CPANPLUS::Config::HomeEnv 22665 CPANPLUS::Configure 22666 CPANPLUS::Configure::Setup 22667 CPANPLUS::Dist 22668 CPANPLUS::Dist::Autobundle 22669 CPANPLUS::Dist::Base 22670 CPANPLUS::Dist::Build 22671 CPANPLUS::Dist::Build::Constants 22672 CPANPLUS::Dist::MM 22673 CPANPLUS::Dist::Sample 22674 CPANPLUS::Error 22675 CPANPLUS::Internals 22676 CPANPLUS::Internals::Constants 22677 CPANPLUS::Internals::Constants::Report 22678 CPANPLUS::Internals::Extract 22679 CPANPLUS::Internals::Fetch 22680 CPANPLUS::Internals::Report 22681 CPANPLUS::Internals::Search 22682 CPANPLUS::Internals::Source 22683 CPANPLUS::Internals::Source::Memory 22684 CPANPLUS::Internals::Source::SQLite 22685 CPANPLUS::Internals::Source::SQLite::Tie 22686 CPANPLUS::Internals::Utils 22687 CPANPLUS::Internals::Utils::Autoflush 22688 CPANPLUS::Module 22689 CPANPLUS::Module::Author 22690 CPANPLUS::Module::Author::Fake 22691 CPANPLUS::Module::Checksums 22692 CPANPLUS::Module::Fake 22693 CPANPLUS::Module::Signature 22694 CPANPLUS::Selfupdate 22695 CPANPLUS::Shell 22696 CPANPLUS::Shell::Classic 22697 CPANPLUS::Shell::Default 22698 CPANPLUS::Shell::Default::Plugins::CustomSource 22699 CPANPLUS::Shell::Default::Plugins::Remote 22700 CPANPLUS::Shell::Default::Plugins::Source 22701 Devel::InnerPackage 22702 File::CheckTree 22703 Log::Message 22704 Log::Message::Config 22705 Log::Message::Handlers 22706 Log::Message::Item 22707 Log::Message::Simple 22708 Module::Pluggable 22709 Module::Pluggable::Object 22710 Object::Accessor 22711 Term::UI 22712 Term::UI::History 22713 Text::Soundex 22714 /}, 22715 }, 22716 5.01701 => { delta_from => 5.017009 }, 22717 5.017011 => { delta_from => 5.01701 }, 22718 22719 5.018 => { delta_from => 5.017011 }, 22720 5.018001 => { 22721 delta_from => 5.018, 22722 changed => { 22723 }, 22724 removed => { 22725 } 22726 }, 22727 5.018002 => { 22728 delta_from => 5.018001, 22729 changed => { 22730 }, 22731 removed => { 22732 } 22733 }, 22734 5.018003 => { 22735 delta_from => 5.018, 22736 changed => { 22737 }, 22738 removed => { 22739 } 22740 }, 22741 5.018004 => { 22742 delta_from => 5.018, 22743 changed => { 22744 }, 22745 removed => { 22746 } 22747 }, 22748 22749 5.019 => { 22750 delta_from => 5.018, 22751 changed => { 'Module::Build' => 1 }, 22752 removed => { map { $_ => 1 } qw/ 22753 Archive::Extract 22754 B::Lint 22755 B::Lint::Debug 22756 CPANPLUS 22757 CPANPLUS::Backend 22758 CPANPLUS::Backend::RV 22759 CPANPLUS::Config 22760 CPANPLUS::Config::HomeEnv 22761 CPANPLUS::Configure 22762 CPANPLUS::Configure::Setup 22763 CPANPLUS::Dist 22764 CPANPLUS::Dist::Autobundle 22765 CPANPLUS::Dist::Base 22766 CPANPLUS::Dist::Build 22767 CPANPLUS::Dist::Build::Constants 22768 CPANPLUS::Dist::MM 22769 CPANPLUS::Dist::Sample 22770 CPANPLUS::Error 22771 CPANPLUS::Internals 22772 CPANPLUS::Internals::Constants 22773 CPANPLUS::Internals::Constants::Report 22774 CPANPLUS::Internals::Extract 22775 CPANPLUS::Internals::Fetch 22776 CPANPLUS::Internals::Report 22777 CPANPLUS::Internals::Search 22778 CPANPLUS::Internals::Source 22779 CPANPLUS::Internals::Source::Memory 22780 CPANPLUS::Internals::Source::SQLite 22781 CPANPLUS::Internals::Source::SQLite::Tie 22782 CPANPLUS::Internals::Utils 22783 CPANPLUS::Internals::Utils::Autoflush 22784 CPANPLUS::Module 22785 CPANPLUS::Module::Author 22786 CPANPLUS::Module::Author::Fake 22787 CPANPLUS::Module::Checksums 22788 CPANPLUS::Module::Fake 22789 CPANPLUS::Module::Signature 22790 CPANPLUS::Selfupdate 22791 CPANPLUS::Shell 22792 CPANPLUS::Shell::Classic 22793 CPANPLUS::Shell::Default 22794 CPANPLUS::Shell::Default::Plugins::CustomSource 22795 CPANPLUS::Shell::Default::Plugins::Remote 22796 CPANPLUS::Shell::Default::Plugins::Source 22797 Devel::InnerPackage 22798 File::CheckTree 22799 Log::Message 22800 Log::Message::Config 22801 Log::Message::Handlers 22802 Log::Message::Item 22803 Log::Message::Simple 22804 Module::Pluggable 22805 Module::Pluggable::Object 22806 Object::Accessor 22807 Pod::LaTeX 22808 Term::UI 22809 Term::UI::History 22810 Text::Soundex 22811 /} 22812 }, 22813 5.019001 => { 22814 delta_from => 5.019, 22815 changed => { 22816 }, 22817 removed => { 22818 } 22819 }, 22820 5.019002 => { 22821 delta_from => 5.019001, 22822 changed => { 22823 }, 22824 removed => { 22825 } 22826 }, 22827 5.019003 => { 22828 delta_from => 5.019002, 22829 changed => { 22830 }, 22831 removed => { 22832 } 22833 }, 22834 5.019004 => { 22835 delta_from => 5.019003, 22836 changed => { 22837 'Module::Build::Base' => '1', 22838 'Module::Build::Compat' => '1', 22839 'Module::Build::Config' => '1', 22840 'Module::Build::ConfigData'=> '1', 22841 'Module::Build::Cookbook'=> '1', 22842 'Module::Build::Dumper' => '1', 22843 'Module::Build::ModuleInfo'=> '1', 22844 'Module::Build::Notes' => '1', 22845 'Module::Build::PPMMaker'=> '1', 22846 'Module::Build::Platform::Default'=> '1', 22847 'Module::Build::Platform::MacOS'=> '1', 22848 'Module::Build::Platform::Unix'=> '1', 22849 'Module::Build::Platform::VMS'=> '1', 22850 'Module::Build::Platform::VOS'=> '1', 22851 'Module::Build::Platform::Windows'=> '1', 22852 'Module::Build::Platform::aix'=> '1', 22853 'Module::Build::Platform::cygwin'=> '1', 22854 'Module::Build::Platform::darwin'=> '1', 22855 'Module::Build::Platform::os2'=> '1', 22856 'Module::Build::PodParser'=> '1', 22857 'Module::Build::Version'=> '1', 22858 'Module::Build::YAML' => '1', 22859 'inc::latest' => '1', 22860 }, 22861 removed => { 22862 } 22863 }, 22864 5.019005 => { 22865 delta_from => 5.019004, 22866 changed => { 22867 }, 22868 removed => { 22869 } 22870 }, 22871 5.019006 => { 22872 delta_from => 5.019005, 22873 changed => { 22874 'Package::Constants' => '1', 22875 }, 22876 removed => { 22877 } 22878 }, 22879 5.019007 => { 22880 delta_from => 5.019006, 22881 changed => { 22882 'CGI' => '1', 22883 'CGI::Apache' => '1', 22884 'CGI::Carp' => '1', 22885 'CGI::Cookie' => '1', 22886 'CGI::Fast' => '1', 22887 'CGI::Pretty' => '1', 22888 'CGI::Push' => '1', 22889 'CGI::Switch' => '1', 22890 'CGI::Util' => '1', 22891 }, 22892 removed => { 22893 } 22894 }, 22895 5.019008 => { 22896 delta_from => 5.019007, 22897 changed => { 22898 }, 22899 removed => { 22900 } 22901 }, 22902 5.019009 => { 22903 delta_from => 5.019008, 22904 changed => { 22905 }, 22906 removed => { 22907 } 22908 }, 22909 5.01901 => { 22910 delta_from => 5.019009, 22911 changed => { 22912 }, 22913 removed => { 22914 } 22915 }, 22916 5.019011 => { 22917 delta_from => 5.019010, 22918 changed => { 22919 }, 22920 removed => { 22921 } 22922 }, 22923 5.020000 => { 22924 delta_from => 5.019011, 22925 changed => { 22926 }, 22927 removed => { 22928 } 22929 }, 22930 5.021000 => { 22931 delta_from => 5.020000, 22932 changed => { 22933 }, 22934 removed => { 22935 'CGI' => 1, 22936 'CGI::Apache' => 1, 22937 'CGI::Carp' => 1, 22938 'CGI::Cookie' => 1, 22939 'CGI::Fast' => 1, 22940 'CGI::Pretty' => 1, 22941 'CGI::Push' => 1, 22942 'CGI::Switch' => 1, 22943 'CGI::Util' => 1, 22944 'Module::Build' => 1, 22945 'Module::Build::Base' => 1, 22946 'Module::Build::Compat' => 1, 22947 'Module::Build::Config' => 1, 22948 'Module::Build::ConfigData'=> 1, 22949 'Module::Build::Cookbook'=> 1, 22950 'Module::Build::Dumper' => 1, 22951 'Module::Build::ModuleInfo'=> 1, 22952 'Module::Build::Notes' => 1, 22953 'Module::Build::PPMMaker'=> 1, 22954 'Module::Build::Platform::Default'=> 1, 22955 'Module::Build::Platform::MacOS'=> 1, 22956 'Module::Build::Platform::Unix'=> 1, 22957 'Module::Build::Platform::VMS'=> 1, 22958 'Module::Build::Platform::VOS'=> 1, 22959 'Module::Build::Platform::Windows'=> 1, 22960 'Module::Build::Platform::aix'=> 1, 22961 'Module::Build::Platform::cygwin'=> 1, 22962 'Module::Build::Platform::darwin'=> 1, 22963 'Module::Build::Platform::os2'=> 1, 22964 'Module::Build::PodParser'=> 1, 22965 'Module::Build::Version'=> 1, 22966 'Module::Build::YAML' => 1, 22967 'Package::Constants' => 1, 22968 'inc::latest' => 1, 22969 } 22970 }, 22971 5.021001 => { 22972 delta_from => 5.021000, 22973 changed => { 22974 }, 22975 removed => { 22976 } 22977 }, 22978 5.021002 => { 22979 delta_from => 5.021001, 22980 changed => { 22981 }, 22982 removed => { 22983 } 22984 }, 22985 5.021003 => { 22986 delta_from => 5.021002, 22987 changed => { 22988 }, 22989 removed => { 22990 } 22991 }, 22992 5.020001 => { 22993 delta_from => 5.020000, 22994 changed => { 22995 }, 22996 removed => { 22997 } 22998 }, 22999 5.021004 => { 23000 delta_from => 5.021003, 23001 changed => { 23002 }, 23003 removed => { 23004 } 23005 }, 23006 5.021005 => { 23007 delta_from => 5.021004, 23008 changed => { 23009 }, 23010 removed => { 23011 } 23012 }, 23013 5.021006 => { 23014 delta_from => 5.021005, 23015 changed => { 23016 }, 23017 removed => { 23018 } 23019 }, 23020 5.021007 => { 23021 delta_from => 5.021006, 23022 changed => { 23023 }, 23024 removed => { 23025 } 23026 }, 23027 5.021008 => { 23028 delta_from => 5.021007, 23029 changed => { 23030 }, 23031 removed => { 23032 } 23033 }, 23034 5.020002 => { 23035 delta_from => 5.020001, 23036 changed => { 23037 }, 23038 removed => { 23039 } 23040 }, 23041 5.021009 => { 23042 delta_from => 5.021008, 23043 changed => { 23044 }, 23045 removed => { 23046 } 23047 }, 23048 5.021010 => { 23049 delta_from => 5.021009, 23050 changed => { 23051 }, 23052 removed => { 23053 } 23054 }, 23055 5.021011 => { 23056 delta_from => 5.02101, 23057 changed => { 23058 }, 23059 removed => { 23060 } 23061 }, 23062 5.022000 => { 23063 delta_from => 5.021011, 23064 changed => { 23065 }, 23066 removed => { 23067 } 23068 }, 23069 5.023000 => { 23070 delta_from => 5.022000, 23071 changed => { 23072 }, 23073 removed => { 23074 } 23075 }, 23076 5.023001 => { 23077 delta_from => 5.023000, 23078 changed => { 23079 }, 23080 removed => { 23081 } 23082 }, 23083 5.023002 => { 23084 delta_from => 5.023001, 23085 changed => { 23086 }, 23087 removed => { 23088 } 23089 }, 23090 5.020003 => { 23091 delta_from => 5.020002, 23092 changed => { 23093 }, 23094 removed => { 23095 } 23096 }, 23097 5.023003 => { 23098 delta_from => 5.023002, 23099 changed => { 23100 }, 23101 removed => { 23102 } 23103 }, 23104 5.023004 => { 23105 delta_from => 5.023003, 23106 changed => { 23107 }, 23108 removed => { 23109 } 23110 }, 23111 5.023005 => { 23112 delta_from => 5.023004, 23113 changed => { 23114 }, 23115 removed => { 23116 } 23117 }, 23118 5.022001 => { 23119 delta_from => 5.022, 23120 changed => { 23121 }, 23122 removed => { 23123 } 23124 }, 23125 5.023006 => { 23126 delta_from => 5.023005, 23127 changed => { 23128 }, 23129 removed => { 23130 } 23131 }, 23132 5.023007 => { 23133 delta_from => 5.023006, 23134 changed => { 23135 }, 23136 removed => { 23137 } 23138 }, 23139 5.023008 => { 23140 delta_from => 5.023007, 23141 changed => { 23142 }, 23143 removed => { 23144 } 23145 }, 23146 5.023009 => { 23147 delta_from => 5.023008, 23148 changed => { 23149 }, 23150 removed => { 23151 } 23152 }, 23153 5.022002 => { 23154 delta_from => 5.022001, 23155 changed => { 23156 }, 23157 removed => { 23158 } 23159 }, 23160 5.024000 => { 23161 delta_from => 5.023009, 23162 changed => { 23163 }, 23164 removed => { 23165 } 23166 }, 23167 5.025000 => { 23168 delta_from => 5.024, 23169 changed => { 23170 }, 23171 removed => { 23172 } 23173 }, 23174 5.025001 => { 23175 delta_from => 5.025, 23176 changed => { 23177 }, 23178 removed => { 23179 } 23180 }, 23181 5.025002 => { 23182 delta_from => 5.025001, 23183 changed => { 23184 }, 23185 removed => { 23186 } 23187 }, 23188 5.025003 => { 23189 delta_from => 5.025002, 23190 changed => { 23191 }, 23192 removed => { 23193 } 23194 }, 23195 5.025004 => { 23196 delta_from => 5.025003, 23197 changed => { 23198 }, 23199 removed => { 23200 } 23201 }, 23202 5.025005 => { 23203 delta_from => 5.025004, 23204 changed => { 23205 }, 23206 removed => { 23207 } 23208 }, 23209 5.025006 => { 23210 delta_from => 5.025005, 23211 changed => { 23212 }, 23213 removed => { 23214 } 23215 }, 23216 5.025007 => { 23217 delta_from => 5.025006, 23218 changed => { 23219 }, 23220 removed => { 23221 } 23222 }, 23223 5.025008 => { 23224 delta_from => 5.025007, 23225 changed => { 23226 }, 23227 removed => { 23228 } 23229 }, 23230 5.022003 => { 23231 delta_from => 5.022002, 23232 changed => { 23233 }, 23234 removed => { 23235 } 23236 }, 23237 5.024001 => { 23238 delta_from => 5.024000, 23239 changed => { 23240 }, 23241 removed => { 23242 } 23243 }, 23244 5.025009 => { 23245 delta_from => 5.025008, 23246 changed => { 23247 }, 23248 removed => { 23249 } 23250 }, 23251 5.025010 => { 23252 delta_from => 5.025009, 23253 changed => { 23254 }, 23255 removed => { 23256 } 23257 }, 23258 5.025011 => { 23259 delta_from => 5.025010, 23260 changed => { 23261 }, 23262 removed => { 23263 } 23264 }, 23265 5.025012 => { 23266 delta_from => 5.025011, 23267 changed => { 23268 }, 23269 removed => { 23270 } 23271 }, 23272 5.026000 => { 23273 delta_from => 5.025012, 23274 changed => { 23275 }, 23276 removed => { 23277 } 23278 }, 23279 5.027000 => { 23280 delta_from => 5.026, 23281 changed => { 23282 }, 23283 removed => { 23284 } 23285 }, 23286 5.027001 => { 23287 delta_from => 5.027, 23288 changed => { 23289 }, 23290 removed => { 23291 } 23292 }, 23293 5.022004 => { 23294 delta_from => 5.022003, 23295 changed => { 23296 }, 23297 removed => { 23298 } 23299 }, 23300 5.024002 => { 23301 delta_from => 5.024001, 23302 changed => { 23303 }, 23304 removed => { 23305 } 23306 }, 23307 5.027002 => { 23308 delta_from => 5.027001, 23309 changed => { 23310 }, 23311 removed => { 23312 } 23313 }, 23314 5.027003 => { 23315 delta_from => 5.027002, 23316 changed => { 23317 'B::Debug' => '1', 23318 }, 23319 removed => { 23320 } 23321 }, 23322 5.027004 => { 23323 delta_from => 5.027003, 23324 changed => { 23325 }, 23326 removed => { 23327 } 23328 }, 23329 5.024003 => { 23330 delta_from => 5.024002, 23331 changed => { 23332 }, 23333 removed => { 23334 } 23335 }, 23336 5.026001 => { 23337 delta_from => 5.026000, 23338 changed => { 23339 }, 23340 removed => { 23341 } 23342 }, 23343 5.027005 => { 23344 delta_from => 5.027004, 23345 changed => { 23346 }, 23347 removed => { 23348 } 23349 }, 23350 5.027006 => { 23351 delta_from => 5.027005, 23352 changed => { 23353 }, 23354 removed => { 23355 } 23356 }, 23357 5.027007 => { 23358 delta_from => 5.027006, 23359 changed => { 23360 }, 23361 removed => { 23362 } 23363 }, 23364 5.027008 => { 23365 delta_from => 5.027007, 23366 changed => { 23367 }, 23368 removed => { 23369 } 23370 }, 23371 5.027009 => { 23372 delta_from => 5.027008, 23373 changed => { 23374 }, 23375 removed => { 23376 } 23377 }, 23378 5.027010 => { 23379 delta_from => 5.027009, 23380 changed => { 23381 }, 23382 removed => { 23383 } 23384 }, 23385 5.024004 => { 23386 delta_from => 5.024003, 23387 changed => { 23388 }, 23389 removed => { 23390 } 23391 }, 23392 5.026002 => { 23393 delta_from => 5.026001, 23394 changed => { 23395 }, 23396 removed => { 23397 } 23398 }, 23399 5.027011 => { 23400 delta_from => 5.02701, 23401 changed => { 23402 }, 23403 removed => { 23404 } 23405 }, 23406 5.028000 => { 23407 delta_from => 5.027011, 23408 changed => { 23409 }, 23410 removed => { 23411 } 23412 }, 23413 5.029000 => { 23414 delta_from => 5.028, 23415 changed => { 23416 }, 23417 removed => { 23418 } 23419 }, 23420 5.029001 => { 23421 delta_from => 5.029, 23422 changed => { 23423 }, 23424 removed => { 23425 } 23426 }, 23427 5.029002 => { 23428 delta_from => 5.029001, 23429 changed => { 23430 }, 23431 removed => { 23432 } 23433 }, 23434 5.029003 => { 23435 delta_from => 5.029002, 23436 changed => { 23437 }, 23438 removed => { 23439 } 23440 }, 23441 5.029004 => { 23442 delta_from => 5.029003, 23443 changed => { 23444 }, 23445 removed => { 23446 arybase => '1', 23447 } 23448 }, 23449 5.029005 => { 23450 delta_from => 5.027002, 23451 changed => { 23452 }, 23453 removed => { 23454 } 23455 }, 23456 5.026003 => { 23457 delta_from => 5.026002, 23458 changed => { 23459 }, 23460 removed => { 23461 } 23462 }, 23463 5.028001 => { 23464 delta_from => 5.028000, 23465 changed => { 23466 }, 23467 removed => { 23468 } 23469 }, 23470 5.029006 => { 23471 delta_from => 5.029005, 23472 changed => { 23473 }, 23474 removed => { 23475 } 23476 }, 23477 5.029007 => { 23478 delta_from => 5.029006, 23479 changed => { 23480 }, 23481 removed => { 23482 } 23483 }, 23484 5.029008 => { 23485 delta_from => 5.029007, 23486 changed => { 23487 }, 23488 removed => { 23489 } 23490 }, 23491 5.029009 => { 23492 delta_from => 5.029008, 23493 changed => { 23494 }, 23495 removed => { 23496 } 23497 }, 23498 5.028002 => { 23499 delta_from => 5.028001, 23500 changed => { 23501 }, 23502 removed => { 23503 } 23504 }, 23505 5.029010 => { 23506 delta_from => 5.029009, 23507 changed => { 23508 }, 23509 removed => { 23510 } 23511 }, 23512 5.030000 => { 23513 delta_from => 5.02901, 23514 changed => { 23515 }, 23516 removed => { 23517 } 23518 }, 23519 5.031000 => { 23520 delta_from => 5.030000, 23521 changed => { 23522 }, 23523 removed => { 23524 } 23525 }, 23526 5.031001 => { 23527 delta_from => 5.031000, 23528 changed => { 23529 }, 23530 removed => { 23531 } 23532 }, 23533 5.031002 => { 23534 delta_from => 5.031001, 23535 changed => { 23536 }, 23537 removed => { 23538 } 23539 }, 23540 5.031003 => { 23541 delta_from => 5.031002, 23542 changed => { 23543 }, 23544 removed => { 23545 } 23546 }, 23547 5.031004 => { 23548 delta_from => 5.031003, 23549 changed => { 23550 }, 23551 removed => { 23552 } 23553 }, 23554 5.031005 => { 23555 delta_from => 5.031004, 23556 changed => { 23557 }, 23558 removed => { 23559 } 23560 }, 23561 5.030001 => { 23562 delta_from => 5.030000, 23563 changed => { 23564 }, 23565 removed => { 23566 } 23567 }, 23568 5.031006 => { 23569 delta_from => 5.031005, 23570 changed => { 23571 }, 23572 removed => { 23573 } 23574 }, 23575 5.031007 => { 23576 delta_from => 5.031006, 23577 changed => { 23578 }, 23579 removed => { 23580 } 23581 }, 23582 5.031008 => { 23583 delta_from => 5.031007, 23584 changed => { 23585 }, 23586 removed => { 23587 } 23588 }, 23589 5.031009 => { 23590 delta_from => 5.031008, 23591 changed => { 23592 }, 23593 removed => { 23594 } 23595 }, 23596 5.030002 => { 23597 delta_from => 5.030001, 23598 changed => { 23599 }, 23600 removed => { 23601 } 23602 }, 23603 5.031010 => { 23604 delta_from => 5.031009, 23605 changed => { 23606 }, 23607 removed => { 23608 } 23609 }, 23610 5.031011 => { 23611 delta_from => 5.03101, 23612 changed => { 23613 }, 23614 removed => { 23615 } 23616 }, 23617 5.028003 => { 23618 delta_from => 5.028002, 23619 changed => { 23620 }, 23621 removed => { 23622 } 23623 }, 23624 5.030003 => { 23625 delta_from => 5.030002, 23626 changed => { 23627 }, 23628 removed => { 23629 } 23630 }, 23631 5.032000 => { 23632 delta_from => 5.031011, 23633 changed => { 23634 }, 23635 removed => { 23636 } 23637 }, 23638 5.033000 => { 23639 delta_from => 5.032, 23640 changed => { 23641 }, 23642 removed => { 23643 } 23644 }, 23645 5.033001 => { 23646 delta_from => 5.033000, 23647 changed => { 23648 }, 23649 removed => { 23650 } 23651 }, 23652 5.033002 => { 23653 delta_from => 5.033001, 23654 changed => { 23655 }, 23656 removed => { 23657 } 23658 }, 23659 5.033003 => { 23660 delta_from => 5.033002, 23661 changed => { 23662 }, 23663 removed => { 23664 } 23665 }, 23666 5.033004 => { 23667 delta_from => 5.033003, 23668 changed => { 23669 }, 23670 removed => { 23671 } 23672 }, 23673 5.033005 => { 23674 delta_from => 5.033004, 23675 changed => { 23676 }, 23677 removed => { 23678 } 23679 }, 23680 5.033006 => { 23681 delta_from => 5.033005, 23682 changed => { 23683 }, 23684 removed => { 23685 } 23686 }, 23687 5.032001 => { 23688 delta_from => 5.032, 23689 changed => { 23690 }, 23691 removed => { 23692 } 23693 }, 23694 5.033007 => { 23695 delta_from => 5.033006, 23696 changed => { 23697 }, 23698 removed => { 23699 } 23700 }, 23701 5.033008 => { 23702 delta_from => 5.033007, 23703 changed => { 23704 }, 23705 removed => { 23706 } 23707 }, 23708 5.033009 => { 23709 delta_from => 5.033008, 23710 changed => { 23711 }, 23712 removed => { 23713 } 23714 }, 23715 5.034000 => { 23716 delta_from => 5.033009, 23717 changed => { 23718 }, 23719 removed => { 23720 } 23721 }, 23722 5.035000 => { 23723 delta_from => 5.034, 23724 changed => { 23725 }, 23726 removed => { 23727 } 23728 }, 23729 5.035001 => { 23730 delta_from => 5.035, 23731 changed => { 23732 }, 23733 removed => { 23734 } 23735 }, 23736 5.035002 => { 23737 delta_from => 5.035001, 23738 changed => { 23739 }, 23740 removed => { 23741 } 23742 }, 23743 5.035003 => { 23744 delta_from => 5.035002, 23745 changed => { 23746 }, 23747 removed => { 23748 } 23749 }, 23750 5.035004 => { 23751 delta_from => 5.035003, 23752 changed => { 23753 }, 23754 removed => { 23755 } 23756 }, 23757 5.035005 => { 23758 delta_from => 5.035004, 23759 changed => { 23760 }, 23761 removed => { 23762 } 23763 }, 23764 5.035006 => { 23765 delta_from => 5.035005, 23766 changed => { 23767 }, 23768 removed => { 23769 } 23770 }, 23771 5.035007 => { 23772 delta_from => 5.035006, 23773 changed => { 23774 }, 23775 removed => { 23776 } 23777 }, 23778 5.035008 => { 23779 delta_from => 5.035007, 23780 changed => { 23781 }, 23782 removed => { 23783 } 23784 }, 23785 5.035009 => { 23786 delta_from => 5.035008, 23787 changed => { 23788 }, 23789 removed => { 23790 } 23791 }, 23792 5.034001 => { 23793 delta_from => 5.034000, 23794 changed => { 23795 }, 23796 removed => { 23797 } 23798 }, 23799 5.035010 => { 23800 delta_from => 5.035009, 23801 changed => { 23802 }, 23803 removed => { 23804 } 23805 }, 23806 5.035011 => { 23807 delta_from => 5.035010, 23808 changed => { 23809 }, 23810 removed => { 23811 } 23812 }, 23813 5.036000 => { 23814 delta_from => 5.035011, 23815 changed => { 23816 }, 23817 removed => { 23818 } 23819 }, 23820 5.037000 => { 23821 delta_from => 5.036000, 23822 changed => { 23823 }, 23824 removed => { 23825 } 23826 }, 23827 5.037001 => { 23828 delta_from => 5.037000, 23829 changed => { 23830 }, 23831 removed => { 23832 } 23833 }, 23834 5.037002 => { 23835 delta_from => 5.037001, 23836 changed => { 23837 }, 23838 removed => { 23839 } 23840 }, 23841 5.037003 => { 23842 delta_from => 5.037002, 23843 changed => { 23844 }, 23845 removed => { 23846 } 23847 }, 23848 5.037004 => { 23849 delta_from => 5.037003, 23850 changed => { 23851 }, 23852 removed => { 23853 } 23854 }, 23855 5.037005 => { 23856 delta_from => 5.037004, 23857 changed => { 23858 }, 23859 removed => { 23860 } 23861 }, 23862 5.037006 => { 23863 delta_from => 5.037005, 23864 changed => { 23865 }, 23866 removed => { 23867 } 23868 }, 23869 5.037007 => { 23870 delta_from => 5.037006, 23871 changed => { 23872 }, 23873 removed => { 23874 } 23875 }, 23876 5.037008 => { 23877 delta_from => 5.037007, 23878 changed => { 23879 }, 23880 removed => { 23881 } 23882 }, 23883 5.037009 => { 23884 delta_from => 5.037008, 23885 changed => { 23886 }, 23887 removed => { 23888 } 23889 }, 23890 5.037010 => { 23891 delta_from => 5.037009, 23892 changed => { 23893 }, 23894 removed => { 23895 } 23896 }, 23897 5.037011 => { 23898 delta_from => 5.037010, 23899 changed => { 23900 }, 23901 removed => { 23902 } 23903 }, 23904 5.036001 => { 23905 delta_from => 5.036, 23906 changed => { 23907 }, 23908 removed => { 23909 } 23910 }, 23911 5.038000 => { 23912 delta_from => 5.037011, 23913 changed => { 23914 }, 23915 removed => { 23916 } 23917 }, 23918 5.039001 => { 23919 delta_from => 5.038, 23920 changed => { 23921 }, 23922 removed => { 23923 } 23924 }, 23925 5.039002 => { 23926 delta_from => 5.039001, 23927 changed => { 23928 }, 23929 removed => { 23930 } 23931 }, 23932 5.039003 => { 23933 delta_from => 5.039002, 23934 changed => { 23935 }, 23936 removed => { 23937 } 23938 }, 23939 5.039004 => { 23940 delta_from => 5.039003, 23941 changed => { 23942 }, 23943 removed => { 23944 } 23945 }, 23946 5.039005 => { 23947 delta_from => 5.039004, 23948 changed => { 23949 }, 23950 removed => { 23951 } 23952 }, 23953 5.034002 => { 23954 delta_from => 5.034001, 23955 changed => { 23956 }, 23957 removed => { 23958 } 23959 }, 23960 5.036002 => { 23961 delta_from => 5.036001, 23962 changed => { 23963 }, 23964 removed => { 23965 } 23966 }, 23967 5.038001 => { 23968 delta_from => 5.038, 23969 changed => { 23970 }, 23971 removed => { 23972 } 23973 }, 23974 5.034003 => { 23975 delta_from => 5.034002, 23976 changed => { 23977 }, 23978 removed => { 23979 } 23980 }, 23981 5.036003 => { 23982 delta_from => 5.036002, 23983 changed => { 23984 }, 23985 removed => { 23986 } 23987 }, 23988 5.038002 => { 23989 delta_from => 5.038001, 23990 changed => { 23991 }, 23992 removed => { 23993 } 23994 }, 23995 5.039006 => { 23996 delta_from => 5.039005, 23997 changed => { 23998 }, 23999 removed => { 24000 } 24001 }, 24002 5.039007 => { 24003 delta_from => 5.039006, 24004 changed => { 24005 }, 24006 removed => { 24007 } 24008 }, 24009 5.039008 => { 24010 delta_from => 5.039007, 24011 changed => { 24012 }, 24013 removed => { 24014 } 24015 }, 24016 5.039009 => { 24017 delta_from => 5.039008, 24018 changed => { 24019 }, 24020 removed => { 24021 } 24022 }, 24023 5.039010 => { 24024 delta_from => 5.039009, 24025 changed => { 24026 }, 24027 removed => { 24028 } 24029 }, 24030 5.040000 => { 24031 delta_from => 5.039010, 24032 changed => { 24033 }, 24034 removed => { 24035 } 24036 }, 24037 5.041001 => { 24038 delta_from => 5.040000, 24039 changed => { 24040 }, 24041 removed => { 24042 } 24043 }, 24044 5.041002 => { 24045 delta_from => 5.041001, 24046 changed => { 24047 }, 24048 removed => { 24049 } 24050 }, 24051 5.041003 => { 24052 delta_from => 5.041002, 24053 changed => { 24054 }, 24055 removed => { 24056 } 24057 }, 24058 5.041004 => { 24059 delta_from => 5.041003, 24060 changed => { 24061 }, 24062 removed => { 24063 } 24064 }, 24065 5.041005 => { 24066 delta_from => 5.041004, 24067 changed => { 24068 }, 24069 removed => { 24070 } 24071 }, 24072 5.041006 => { 24073 delta_from => 5.041005, 24074 changed => { 24075 }, 24076 removed => { 24077 } 24078 }, 24079 5.041007 => { 24080 delta_from => 5.041006, 24081 changed => { 24082 }, 24083 removed => { 24084 } 24085 }, 24086 5.040001 => { 24087 delta_from => 5.040000, 24088 changed => { 24089 }, 24090 removed => { 24091 } 24092 }, 24093); 24094 24095%deprecated = _undelta(\%deprecated); 24096 24097%upstream = ( 24098 'App::Cpan' => 'cpan', 24099 'App::Prove' => 'cpan', 24100 'App::Prove::State' => 'cpan', 24101 'App::Prove::State::Result'=> 'cpan', 24102 'App::Prove::State::Result::Test'=> 'cpan', 24103 'Archive::Tar' => 'cpan', 24104 'Archive::Tar::Constant'=> 'cpan', 24105 'Archive::Tar::File' => 'cpan', 24106 'AutoLoader' => 'cpan', 24107 'AutoSplit' => 'cpan', 24108 'CPAN' => 'cpan', 24109 'CPAN::Author' => 'cpan', 24110 'CPAN::Bundle' => 'cpan', 24111 'CPAN::CacheMgr' => 'cpan', 24112 'CPAN::Complete' => 'cpan', 24113 'CPAN::Debug' => 'cpan', 24114 'CPAN::DeferredCode' => 'cpan', 24115 'CPAN::Distribution' => 'cpan', 24116 'CPAN::Distroprefs' => 'cpan', 24117 'CPAN::Distrostatus' => 'cpan', 24118 'CPAN::Exception::RecursiveDependency'=> 'cpan', 24119 'CPAN::Exception::blocked_urllist'=> 'cpan', 24120 'CPAN::Exception::yaml_not_installed'=> 'cpan', 24121 'CPAN::Exception::yaml_process_error'=> 'cpan', 24122 'CPAN::FTP' => 'cpan', 24123 'CPAN::FTP::netrc' => 'cpan', 24124 'CPAN::FirstTime' => 'cpan', 24125 'CPAN::HTTP::Client' => 'cpan', 24126 'CPAN::HTTP::Credentials'=> 'cpan', 24127 'CPAN::HandleConfig' => 'cpan', 24128 'CPAN::Index' => 'cpan', 24129 'CPAN::InfoObj' => 'cpan', 24130 'CPAN::Kwalify' => 'cpan', 24131 'CPAN::LWP::UserAgent' => 'cpan', 24132 'CPAN::Meta' => 'cpan', 24133 'CPAN::Meta::Converter' => 'cpan', 24134 'CPAN::Meta::Feature' => 'cpan', 24135 'CPAN::Meta::History' => 'cpan', 24136 'CPAN::Meta::Merge' => 'cpan', 24137 'CPAN::Meta::Prereqs' => 'cpan', 24138 'CPAN::Meta::Requirements'=> 'cpan', 24139 'CPAN::Meta::Requirements::Range'=> 'cpan', 24140 'CPAN::Meta::Spec' => 'cpan', 24141 'CPAN::Meta::Validator' => 'cpan', 24142 'CPAN::Meta::YAML' => 'cpan', 24143 'CPAN::Mirrors' => 'cpan', 24144 'CPAN::Module' => 'cpan', 24145 'CPAN::Nox' => 'cpan', 24146 'CPAN::Plugin' => 'cpan', 24147 'CPAN::Plugin::Specfile'=> 'cpan', 24148 'CPAN::Prompt' => 'cpan', 24149 'CPAN::Queue' => 'cpan', 24150 'CPAN::Shell' => 'cpan', 24151 'CPAN::Tarzip' => 'cpan', 24152 'CPAN::URL' => 'cpan', 24153 'CPAN::Version' => 'cpan', 24154 'Compress::Raw::Bzip2' => 'cpan', 24155 'Compress::Raw::Zlib' => 'cpan', 24156 'Compress::Zlib' => 'cpan', 24157 'Config::Perl::V' => 'cpan', 24158 'DB_File' => 'cpan', 24159 'Digest' => 'cpan', 24160 'Digest::MD5' => 'cpan', 24161 'Digest::SHA' => 'cpan', 24162 'Digest::base' => 'cpan', 24163 'Digest::file' => 'cpan', 24164 'Encode' => 'cpan', 24165 'Encode::Alias' => 'cpan', 24166 'Encode::Byte' => 'cpan', 24167 'Encode::CJKConstants' => 'cpan', 24168 'Encode::CN' => 'cpan', 24169 'Encode::CN::HZ' => 'cpan', 24170 'Encode::Config' => 'cpan', 24171 'Encode::EBCDIC' => 'cpan', 24172 'Encode::Encoder' => 'cpan', 24173 'Encode::Encoding' => 'cpan', 24174 'Encode::GSM0338' => 'cpan', 24175 'Encode::Guess' => 'cpan', 24176 'Encode::JP' => 'cpan', 24177 'Encode::JP::H2Z' => 'cpan', 24178 'Encode::JP::JIS7' => 'cpan', 24179 'Encode::KR' => 'cpan', 24180 'Encode::KR::2022_KR' => 'cpan', 24181 'Encode::MIME::Header' => 'cpan', 24182 'Encode::MIME::Header::ISO_2022_JP'=> 'cpan', 24183 'Encode::MIME::Name' => 'cpan', 24184 'Encode::Symbol' => 'cpan', 24185 'Encode::TW' => 'cpan', 24186 'Encode::Unicode' => 'cpan', 24187 'Encode::Unicode::UTF7' => 'cpan', 24188 'ExtUtils::Command' => 'cpan', 24189 'ExtUtils::Command::MM' => 'cpan', 24190 'ExtUtils::Constant' => 'cpan', 24191 'ExtUtils::Constant::Base'=> 'cpan', 24192 'ExtUtils::Constant::ProxySubs'=> 'cpan', 24193 'ExtUtils::Constant::Utils'=> 'cpan', 24194 'ExtUtils::Constant::XS'=> 'cpan', 24195 'ExtUtils::Install' => 'cpan', 24196 'ExtUtils::Installed' => 'cpan', 24197 'ExtUtils::Liblist' => 'cpan', 24198 'ExtUtils::Liblist::Kid'=> 'cpan', 24199 'ExtUtils::MM' => 'cpan', 24200 'ExtUtils::MM_AIX' => 'cpan', 24201 'ExtUtils::MM_Any' => 'cpan', 24202 'ExtUtils::MM_BeOS' => 'cpan', 24203 'ExtUtils::MM_Cygwin' => 'cpan', 24204 'ExtUtils::MM_DOS' => 'cpan', 24205 'ExtUtils::MM_Darwin' => 'cpan', 24206 'ExtUtils::MM_MacOS' => 'cpan', 24207 'ExtUtils::MM_NW5' => 'cpan', 24208 'ExtUtils::MM_OS2' => 'cpan', 24209 'ExtUtils::MM_OS390' => 'cpan', 24210 'ExtUtils::MM_QNX' => 'cpan', 24211 'ExtUtils::MM_UWIN' => 'cpan', 24212 'ExtUtils::MM_Unix' => 'cpan', 24213 'ExtUtils::MM_VMS' => 'cpan', 24214 'ExtUtils::MM_VOS' => 'cpan', 24215 'ExtUtils::MM_Win32' => 'cpan', 24216 'ExtUtils::MM_Win95' => 'cpan', 24217 'ExtUtils::MY' => 'cpan', 24218 'ExtUtils::MakeMaker' => 'cpan', 24219 'ExtUtils::MakeMaker::Config'=> 'cpan', 24220 'ExtUtils::MakeMaker::Locale'=> 'cpan', 24221 'ExtUtils::MakeMaker::version'=> 'cpan', 24222 'ExtUtils::MakeMaker::version::regex'=> 'cpan', 24223 'ExtUtils::Manifest' => 'cpan', 24224 'ExtUtils::Mkbootstrap' => 'cpan', 24225 'ExtUtils::Mksymlists' => 'cpan', 24226 'ExtUtils::PL2Bat' => 'cpan', 24227 'ExtUtils::Packlist' => 'cpan', 24228 'ExtUtils::testlib' => 'cpan', 24229 'Fatal' => 'cpan', 24230 'File::Fetch' => 'cpan', 24231 'File::GlobMapper' => 'cpan', 24232 'File::Path' => 'cpan', 24233 'File::Temp' => 'cpan', 24234 'Filter::Util::Call' => 'cpan', 24235 'Getopt::Long' => 'cpan', 24236 'Getopt::Long::Parser' => 'cpan', 24237 'HTTP::Tiny' => 'cpan', 24238 'IO::Compress::Adapter::Bzip2'=> 'cpan', 24239 'IO::Compress::Adapter::Deflate'=> 'cpan', 24240 'IO::Compress::Adapter::Identity'=> 'cpan', 24241 'IO::Compress::Base' => 'cpan', 24242 'IO::Compress::Base::Common'=> 'cpan', 24243 'IO::Compress::Bzip2' => 'cpan', 24244 'IO::Compress::Deflate' => 'cpan', 24245 'IO::Compress::Gzip' => 'cpan', 24246 'IO::Compress::Gzip::Constants'=> 'cpan', 24247 'IO::Compress::RawDeflate'=> 'cpan', 24248 'IO::Compress::Zip' => 'cpan', 24249 'IO::Compress::Zip::Constants'=> 'cpan', 24250 'IO::Compress::Zlib::Constants'=> 'cpan', 24251 'IO::Compress::Zlib::Extra'=> 'cpan', 24252 'IO::Socket::IP' => 'cpan', 24253 'IO::Uncompress::Adapter::Bunzip2'=> 'cpan', 24254 'IO::Uncompress::Adapter::Identity'=> 'cpan', 24255 'IO::Uncompress::Adapter::Inflate'=> 'cpan', 24256 'IO::Uncompress::AnyInflate'=> 'cpan', 24257 'IO::Uncompress::AnyUncompress'=> 'cpan', 24258 'IO::Uncompress::Base' => 'cpan', 24259 'IO::Uncompress::Bunzip2'=> 'cpan', 24260 'IO::Uncompress::Gunzip'=> 'cpan', 24261 'IO::Uncompress::Inflate'=> 'cpan', 24262 'IO::Uncompress::RawInflate'=> 'cpan', 24263 'IO::Uncompress::Unzip' => 'cpan', 24264 'IO::Zlib' => 'cpan', 24265 'IPC::Cmd' => 'cpan', 24266 'IPC::Msg' => 'cpan', 24267 'IPC::Semaphore' => 'cpan', 24268 'IPC::SharedMem' => 'cpan', 24269 'IPC::SysV' => 'cpan', 24270 'JSON::PP' => 'cpan', 24271 'JSON::PP::Boolean' => 'cpan', 24272 'List::Util' => 'cpan', 24273 'List::Util::XS' => 'cpan', 24274 'Locale::Maketext::Simple'=> 'cpan', 24275 'MIME::Base64' => 'cpan', 24276 'MIME::QuotedPrint' => 'cpan', 24277 'Math::BigFloat' => 'cpan', 24278 'Math::BigFloat::Trace' => 'cpan', 24279 'Math::BigInt' => 'cpan', 24280 'Math::BigInt::Calc' => 'cpan', 24281 'Math::BigInt::FastCalc'=> 'cpan', 24282 'Math::BigInt::Lib' => 'cpan', 24283 'Math::BigInt::Trace' => 'cpan', 24284 'Math::BigRat' => 'cpan', 24285 'Math::BigRat::Trace' => 'cpan', 24286 'Memoize' => 'cpan', 24287 'Memoize::AnyDBM_File' => 'cpan', 24288 'Memoize::Expire' => 'cpan', 24289 'Memoize::NDBM_File' => 'cpan', 24290 'Memoize::SDBM_File' => 'cpan', 24291 'Memoize::Storable' => 'cpan', 24292 'Module::Load' => 'cpan', 24293 'Module::Load::Conditional'=> 'cpan', 24294 'Module::Loaded' => 'cpan', 24295 'Module::Metadata' => 'cpan', 24296 'NEXT' => 'cpan', 24297 'Net::Cmd' => 'cpan', 24298 'Net::Config' => 'cpan', 24299 'Net::Domain' => 'cpan', 24300 'Net::FTP' => 'cpan', 24301 'Net::FTP::A' => 'cpan', 24302 'Net::FTP::E' => 'cpan', 24303 'Net::FTP::I' => 'cpan', 24304 'Net::FTP::L' => 'cpan', 24305 'Net::FTP::dataconn' => 'cpan', 24306 'Net::NNTP' => 'cpan', 24307 'Net::Netrc' => 'cpan', 24308 'Net::POP3' => 'cpan', 24309 'Net::SMTP' => 'cpan', 24310 'Net::Time' => 'cpan', 24311 'Params::Check' => 'cpan', 24312 'Parse::CPAN::Meta' => 'cpan', 24313 'Perl::OSType' => 'cpan', 24314 'PerlIO::via::QuotedPrint'=> 'cpan', 24315 'Pod::Checker' => 'cpan', 24316 'Pod::Escapes' => 'cpan', 24317 'Pod::Man' => 'cpan', 24318 'Pod::ParseLink' => 'cpan', 24319 'Pod::Perldoc' => 'cpan', 24320 'Pod::Perldoc::BaseTo' => 'cpan', 24321 'Pod::Perldoc::GetOptsOO'=> 'cpan', 24322 'Pod::Perldoc::ToANSI' => 'cpan', 24323 'Pod::Perldoc::ToChecker'=> 'cpan', 24324 'Pod::Perldoc::ToMan' => 'cpan', 24325 'Pod::Perldoc::ToNroff' => 'cpan', 24326 'Pod::Perldoc::ToPod' => 'cpan', 24327 'Pod::Perldoc::ToRtf' => 'cpan', 24328 'Pod::Perldoc::ToTerm' => 'cpan', 24329 'Pod::Perldoc::ToText' => 'cpan', 24330 'Pod::Perldoc::ToTk' => 'cpan', 24331 'Pod::Perldoc::ToXml' => 'cpan', 24332 'Pod::Simple' => 'cpan', 24333 'Pod::Simple::BlackBox' => 'cpan', 24334 'Pod::Simple::Checker' => 'cpan', 24335 'Pod::Simple::Debug' => 'cpan', 24336 'Pod::Simple::DumpAsText'=> 'cpan', 24337 'Pod::Simple::DumpAsXML'=> 'cpan', 24338 'Pod::Simple::HTML' => 'cpan', 24339 'Pod::Simple::HTMLBatch'=> 'cpan', 24340 'Pod::Simple::HTMLLegacy'=> 'cpan', 24341 'Pod::Simple::JustPod' => 'cpan', 24342 'Pod::Simple::LinkSection'=> 'cpan', 24343 'Pod::Simple::Methody' => 'cpan', 24344 'Pod::Simple::Progress' => 'cpan', 24345 'Pod::Simple::PullParser'=> 'cpan', 24346 'Pod::Simple::PullParserEndToken'=> 'cpan', 24347 'Pod::Simple::PullParserStartToken'=> 'cpan', 24348 'Pod::Simple::PullParserTextToken'=> 'cpan', 24349 'Pod::Simple::PullParserToken'=> 'cpan', 24350 'Pod::Simple::RTF' => 'cpan', 24351 'Pod::Simple::Search' => 'cpan', 24352 'Pod::Simple::SimpleTree'=> 'cpan', 24353 'Pod::Simple::Text' => 'cpan', 24354 'Pod::Simple::TextContent'=> 'cpan', 24355 'Pod::Simple::TiedOutFH'=> 'cpan', 24356 'Pod::Simple::Transcode'=> 'cpan', 24357 'Pod::Simple::TranscodeDumb'=> 'cpan', 24358 'Pod::Simple::TranscodeSmart'=> 'cpan', 24359 'Pod::Simple::XHTML' => 'cpan', 24360 'Pod::Simple::XMLOutStream'=> 'cpan', 24361 'Pod::Text' => 'cpan', 24362 'Pod::Text::Color' => 'cpan', 24363 'Pod::Text::Overstrike' => 'cpan', 24364 'Pod::Text::Termcap' => 'cpan', 24365 'Pod::Usage' => 'cpan', 24366 'Scalar::Util' => 'cpan', 24367 'Socket' => 'cpan', 24368 'Sub::Util' => 'cpan', 24369 'Sys::Syslog' => 'cpan', 24370 'Sys::Syslog::Win32' => 'cpan', 24371 'TAP::Base' => 'cpan', 24372 'TAP::Formatter::Base' => 'cpan', 24373 'TAP::Formatter::Color' => 'cpan', 24374 'TAP::Formatter::Console'=> 'cpan', 24375 'TAP::Formatter::Console::ParallelSession'=> 'cpan', 24376 'TAP::Formatter::Console::Session'=> 'cpan', 24377 'TAP::Formatter::File' => 'cpan', 24378 'TAP::Formatter::File::Session'=> 'cpan', 24379 'TAP::Formatter::Session'=> 'cpan', 24380 'TAP::Harness' => 'cpan', 24381 'TAP::Harness::Env' => 'cpan', 24382 'TAP::Object' => 'cpan', 24383 'TAP::Parser' => 'cpan', 24384 'TAP::Parser::Aggregator'=> 'cpan', 24385 'TAP::Parser::Grammar' => 'cpan', 24386 'TAP::Parser::Iterator' => 'cpan', 24387 'TAP::Parser::Iterator::Array'=> 'cpan', 24388 'TAP::Parser::Iterator::Process'=> 'cpan', 24389 'TAP::Parser::Iterator::Stream'=> 'cpan', 24390 'TAP::Parser::IteratorFactory'=> 'cpan', 24391 'TAP::Parser::Multiplexer'=> 'cpan', 24392 'TAP::Parser::Result' => 'cpan', 24393 'TAP::Parser::Result::Bailout'=> 'cpan', 24394 'TAP::Parser::Result::Comment'=> 'cpan', 24395 'TAP::Parser::Result::Plan'=> 'cpan', 24396 'TAP::Parser::Result::Pragma'=> 'cpan', 24397 'TAP::Parser::Result::Test'=> 'cpan', 24398 'TAP::Parser::Result::Unknown'=> 'cpan', 24399 'TAP::Parser::Result::Version'=> 'cpan', 24400 'TAP::Parser::Result::YAML'=> 'cpan', 24401 'TAP::Parser::ResultFactory'=> 'cpan', 24402 'TAP::Parser::Scheduler'=> 'cpan', 24403 'TAP::Parser::Scheduler::Job'=> 'cpan', 24404 'TAP::Parser::Scheduler::Spinner'=> 'cpan', 24405 'TAP::Parser::Source' => 'cpan', 24406 'TAP::Parser::SourceHandler'=> 'cpan', 24407 'TAP::Parser::SourceHandler::Executable'=> 'cpan', 24408 'TAP::Parser::SourceHandler::File'=> 'cpan', 24409 'TAP::Parser::SourceHandler::Handle'=> 'cpan', 24410 'TAP::Parser::SourceHandler::Perl'=> 'cpan', 24411 'TAP::Parser::SourceHandler::RawTAP'=> 'cpan', 24412 'TAP::Parser::YAMLish::Reader'=> 'cpan', 24413 'TAP::Parser::YAMLish::Writer'=> 'cpan', 24414 'Term::ANSIColor' => 'cpan', 24415 'Term::Cap' => 'cpan', 24416 'Term::Table' => 'cpan', 24417 'Term::Table::Cell' => 'cpan', 24418 'Term::Table::CellStack'=> 'cpan', 24419 'Term::Table::HashBase' => 'cpan', 24420 'Term::Table::LineBreak'=> 'cpan', 24421 'Term::Table::Spacer' => 'cpan', 24422 'Term::Table::Util' => 'cpan', 24423 'Test2' => 'cpan', 24424 'Test2::API' => 'cpan', 24425 'Test2::API::Breakage' => 'cpan', 24426 'Test2::API::Context' => 'cpan', 24427 'Test2::API::Instance' => 'cpan', 24428 'Test2::API::InterceptResult'=> 'cpan', 24429 'Test2::API::InterceptResult::Event'=> 'cpan', 24430 'Test2::API::InterceptResult::Facet'=> 'cpan', 24431 'Test2::API::InterceptResult::Hub'=> 'cpan', 24432 'Test2::API::InterceptResult::Squasher'=> 'cpan', 24433 'Test2::API::Stack' => 'cpan', 24434 'Test2::AsyncSubtest' => 'cpan', 24435 'Test2::AsyncSubtest::Event::Attach'=> 'cpan', 24436 'Test2::AsyncSubtest::Event::Detach'=> 'cpan', 24437 'Test2::AsyncSubtest::Formatter'=> 'cpan', 24438 'Test2::AsyncSubtest::Hub'=> 'cpan', 24439 'Test2::Bundle' => 'cpan', 24440 'Test2::Bundle::Extended'=> 'cpan', 24441 'Test2::Bundle::More' => 'cpan', 24442 'Test2::Bundle::Simple' => 'cpan', 24443 'Test2::Compare' => 'cpan', 24444 'Test2::Compare::Array' => 'cpan', 24445 'Test2::Compare::Bag' => 'cpan', 24446 'Test2::Compare::Base' => 'cpan', 24447 'Test2::Compare::Bool' => 'cpan', 24448 'Test2::Compare::Custom'=> 'cpan', 24449 'Test2::Compare::DeepRef'=> 'cpan', 24450 'Test2::Compare::Delta' => 'cpan', 24451 'Test2::Compare::Event' => 'cpan', 24452 'Test2::Compare::EventMeta'=> 'cpan', 24453 'Test2::Compare::Float' => 'cpan', 24454 'Test2::Compare::Hash' => 'cpan', 24455 'Test2::Compare::Isa' => 'cpan', 24456 'Test2::Compare::Meta' => 'cpan', 24457 'Test2::Compare::Negatable'=> 'cpan', 24458 'Test2::Compare::Number'=> 'cpan', 24459 'Test2::Compare::Object'=> 'cpan', 24460 'Test2::Compare::OrderedSubset'=> 'cpan', 24461 'Test2::Compare::Pattern'=> 'cpan', 24462 'Test2::Compare::Ref' => 'cpan', 24463 'Test2::Compare::Regex' => 'cpan', 24464 'Test2::Compare::Scalar'=> 'cpan', 24465 'Test2::Compare::Set' => 'cpan', 24466 'Test2::Compare::String'=> 'cpan', 24467 'Test2::Compare::Undef' => 'cpan', 24468 'Test2::Compare::Wildcard'=> 'cpan', 24469 'Test2::Event' => 'cpan', 24470 'Test2::Event::Bail' => 'cpan', 24471 'Test2::Event::Diag' => 'cpan', 24472 'Test2::Event::Encoding'=> 'cpan', 24473 'Test2::Event::Exception'=> 'cpan', 24474 'Test2::Event::Fail' => 'cpan', 24475 'Test2::Event::Generic' => 'cpan', 24476 'Test2::Event::Note' => 'cpan', 24477 'Test2::Event::Ok' => 'cpan', 24478 'Test2::Event::Pass' => 'cpan', 24479 'Test2::Event::Plan' => 'cpan', 24480 'Test2::Event::Skip' => 'cpan', 24481 'Test2::Event::Subtest' => 'cpan', 24482 'Test2::Event::TAP::Version'=> 'cpan', 24483 'Test2::Event::V2' => 'cpan', 24484 'Test2::Event::Waiting' => 'cpan', 24485 'Test2::EventFacet' => 'cpan', 24486 'Test2::EventFacet::About'=> 'cpan', 24487 'Test2::EventFacet::Amnesty'=> 'cpan', 24488 'Test2::EventFacet::Assert'=> 'cpan', 24489 'Test2::EventFacet::Control'=> 'cpan', 24490 'Test2::EventFacet::Error'=> 'cpan', 24491 'Test2::EventFacet::Hub'=> 'cpan', 24492 'Test2::EventFacet::Info'=> 'cpan', 24493 'Test2::EventFacet::Info::Table'=> 'cpan', 24494 'Test2::EventFacet::Meta'=> 'cpan', 24495 'Test2::EventFacet::Parent'=> 'cpan', 24496 'Test2::EventFacet::Plan'=> 'cpan', 24497 'Test2::EventFacet::Render'=> 'cpan', 24498 'Test2::EventFacet::Trace'=> 'cpan', 24499 'Test2::Formatter' => 'cpan', 24500 'Test2::Formatter::TAP' => 'cpan', 24501 'Test2::Hub' => 'cpan', 24502 'Test2::Hub::Interceptor'=> 'cpan', 24503 'Test2::Hub::Interceptor::Terminator'=> 'cpan', 24504 'Test2::Hub::Subtest' => 'cpan', 24505 'Test2::IPC' => 'cpan', 24506 'Test2::IPC::Driver' => 'cpan', 24507 'Test2::IPC::Driver::Files'=> 'cpan', 24508 'Test2::Manual' => 'cpan', 24509 'Test2::Manual::Anatomy'=> 'cpan', 24510 'Test2::Manual::Anatomy::API'=> 'cpan', 24511 'Test2::Manual::Anatomy::Context'=> 'cpan', 24512 'Test2::Manual::Anatomy::EndToEnd'=> 'cpan', 24513 'Test2::Manual::Anatomy::Event'=> 'cpan', 24514 'Test2::Manual::Anatomy::Hubs'=> 'cpan', 24515 'Test2::Manual::Anatomy::IPC'=> 'cpan', 24516 'Test2::Manual::Anatomy::Utilities'=> 'cpan', 24517 'Test2::Manual::Concurrency'=> 'cpan', 24518 'Test2::Manual::Contributing'=> 'cpan', 24519 'Test2::Manual::Testing'=> 'cpan', 24520 'Test2::Manual::Testing::Introduction'=> 'cpan', 24521 'Test2::Manual::Testing::Migrating'=> 'cpan', 24522 'Test2::Manual::Testing::Planning'=> 'cpan', 24523 'Test2::Manual::Testing::Todo'=> 'cpan', 24524 'Test2::Manual::Tooling'=> 'cpan', 24525 'Test2::Manual::Tooling::FirstTool'=> 'cpan', 24526 'Test2::Manual::Tooling::Formatter'=> 'cpan', 24527 'Test2::Manual::Tooling::Nesting'=> 'cpan', 24528 'Test2::Manual::Tooling::Plugin::TestExit'=> 'cpan', 24529 'Test2::Manual::Tooling::Plugin::TestingDone'=> 'cpan', 24530 'Test2::Manual::Tooling::Plugin::ToolCompletes'=> 'cpan', 24531 'Test2::Manual::Tooling::Plugin::ToolStarts'=> 'cpan', 24532 'Test2::Manual::Tooling::Subtest'=> 'cpan', 24533 'Test2::Manual::Tooling::TestBuilder'=> 'cpan', 24534 'Test2::Manual::Tooling::Testing'=> 'cpan', 24535 'Test2::Mock' => 'cpan', 24536 'Test2::Plugin' => 'cpan', 24537 'Test2::Plugin::BailOnFail'=> 'cpan', 24538 'Test2::Plugin::DieOnFail'=> 'cpan', 24539 'Test2::Plugin::ExitSummary'=> 'cpan', 24540 'Test2::Plugin::SRand' => 'cpan', 24541 'Test2::Plugin::Times' => 'cpan', 24542 'Test2::Plugin::UTF8' => 'cpan', 24543 'Test2::Require' => 'cpan', 24544 'Test2::Require::AuthorTesting'=> 'cpan', 24545 'Test2::Require::AutomatedTesting'=> 'cpan', 24546 'Test2::Require::EnvVar'=> 'cpan', 24547 'Test2::Require::ExtendedTesting'=> 'cpan', 24548 'Test2::Require::Fork' => 'cpan', 24549 'Test2::Require::Module'=> 'cpan', 24550 'Test2::Require::NonInteractiveTesting'=> 'cpan', 24551 'Test2::Require::Perl' => 'cpan', 24552 'Test2::Require::RealFork'=> 'cpan', 24553 'Test2::Require::ReleaseTesting'=> 'cpan', 24554 'Test2::Require::Threads'=> 'cpan', 24555 'Test2::Suite' => 'cpan', 24556 'Test2::Todo' => 'cpan', 24557 'Test2::Tools' => 'cpan', 24558 'Test2::Tools::AsyncSubtest'=> 'cpan', 24559 'Test2::Tools::Basic' => 'cpan', 24560 'Test2::Tools::Class' => 'cpan', 24561 'Test2::Tools::ClassicCompare'=> 'cpan', 24562 'Test2::Tools::Compare' => 'cpan', 24563 'Test2::Tools::Defer' => 'cpan', 24564 'Test2::Tools::Encoding'=> 'cpan', 24565 'Test2::Tools::Event' => 'cpan', 24566 'Test2::Tools::Exception'=> 'cpan', 24567 'Test2::Tools::Exports' => 'cpan', 24568 'Test2::Tools::GenTemp' => 'cpan', 24569 'Test2::Tools::Grab' => 'cpan', 24570 'Test2::Tools::Mock' => 'cpan', 24571 'Test2::Tools::Ref' => 'cpan', 24572 'Test2::Tools::Refcount'=> 'cpan', 24573 'Test2::Tools::Spec' => 'cpan', 24574 'Test2::Tools::Subtest' => 'cpan', 24575 'Test2::Tools::Target' => 'cpan', 24576 'Test2::Tools::Tester' => 'cpan', 24577 'Test2::Tools::Tiny' => 'cpan', 24578 'Test2::Tools::Warnings'=> 'cpan', 24579 'Test2::Util' => 'cpan', 24580 'Test2::Util::ExternalMeta'=> 'cpan', 24581 'Test2::Util::Facets2Legacy'=> 'cpan', 24582 'Test2::Util::Grabber' => 'cpan', 24583 'Test2::Util::Guard' => 'cpan', 24584 'Test2::Util::HashBase' => 'cpan', 24585 'Test2::Util::Importer' => 'cpan', 24586 'Test2::Util::Ref' => 'cpan', 24587 'Test2::Util::Stash' => 'cpan', 24588 'Test2::Util::Sub' => 'cpan', 24589 'Test2::Util::Table' => 'cpan', 24590 'Test2::Util::Table::Cell'=> 'cpan', 24591 'Test2::Util::Table::LineBreak'=> 'cpan', 24592 'Test2::Util::Term' => 'cpan', 24593 'Test2::Util::Times' => 'cpan', 24594 'Test2::Util::Trace' => 'cpan', 24595 'Test2::V0' => 'cpan', 24596 'Test2::Workflow' => 'cpan', 24597 'Test2::Workflow::BlockBase'=> 'cpan', 24598 'Test2::Workflow::Build'=> 'cpan', 24599 'Test2::Workflow::Runner'=> 'cpan', 24600 'Test2::Workflow::Task' => 'cpan', 24601 'Test2::Workflow::Task::Action'=> 'cpan', 24602 'Test2::Workflow::Task::Group'=> 'cpan', 24603 'Test::Builder' => 'cpan', 24604 'Test::Builder::Formatter'=> 'cpan', 24605 'Test::Builder::IO::Scalar'=> 'cpan', 24606 'Test::Builder::Module' => 'cpan', 24607 'Test::Builder::Tester' => 'cpan', 24608 'Test::Builder::Tester::Color'=> 'cpan', 24609 'Test::Builder::TodoDiag'=> 'cpan', 24610 'Test::Harness' => 'cpan', 24611 'Test::More' => 'cpan', 24612 'Test::Simple' => 'cpan', 24613 'Test::Tester' => 'cpan', 24614 'Test::Tester::Capture' => 'cpan', 24615 'Test::Tester::CaptureRunner'=> 'cpan', 24616 'Test::Tester::Delegate'=> 'cpan', 24617 'Test::use::ok' => 'cpan', 24618 'Text::Balanced' => 'cpan', 24619 'Text::ParseWords' => 'cpan', 24620 'Text::Tabs' => 'cpan', 24621 'Text::Wrap' => 'cpan', 24622 'Tie::RefHash' => 'cpan', 24623 'Time::Local' => 'cpan', 24624 'Time::Piece' => 'cpan', 24625 'Time::Seconds' => 'cpan', 24626 'Unicode::Collate' => 'cpan', 24627 'Unicode::Collate::CJK::Big5'=> 'cpan', 24628 'Unicode::Collate::CJK::GB2312'=> 'cpan', 24629 'Unicode::Collate::CJK::JISX0208'=> 'cpan', 24630 'Unicode::Collate::CJK::Korean'=> 'cpan', 24631 'Unicode::Collate::CJK::Pinyin'=> 'cpan', 24632 'Unicode::Collate::CJK::Stroke'=> 'cpan', 24633 'Unicode::Collate::CJK::Zhuyin'=> 'cpan', 24634 'Unicode::Collate::Locale'=> 'cpan', 24635 'Win32' => 'cpan', 24636 'Win32API::File' => 'cpan', 24637 'autodie' => 'cpan', 24638 'autodie::Scope::Guard' => 'cpan', 24639 'autodie::Scope::GuardStack'=> 'cpan', 24640 'autodie::Util' => 'cpan', 24641 'autodie::exception' => 'cpan', 24642 'autodie::exception::system'=> 'cpan', 24643 'autodie::hints' => 'cpan', 24644 'autodie::skip' => 'cpan', 24645 'bigfloat' => 'cpan', 24646 'bigint' => 'cpan', 24647 'bignum' => 'cpan', 24648 'bigrat' => 'cpan', 24649 'encoding' => 'cpan', 24650 'experimental' => 'cpan', 24651 'ok' => 'cpan', 24652 'parent' => 'cpan', 24653 'perlfaq' => 'cpan', 24654 'stable' => 'cpan', 24655 'version' => 'cpan', 24656 'version::regex' => 'cpan', 24657); 24658 24659%bug_tracker = ( 24660 'App::Cpan' => undef, 24661 'App::Prove' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24662 'App::Prove::State' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24663 'App::Prove::State::Result'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24664 'App::Prove::State::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24665 'Archive::Tar' => undef, 24666 'Archive::Tar::Constant'=> undef, 24667 'Archive::Tar::File' => undef, 24668 'CPAN' => undef, 24669 'CPAN::Author' => undef, 24670 'CPAN::Bundle' => undef, 24671 'CPAN::CacheMgr' => undef, 24672 'CPAN::Complete' => undef, 24673 'CPAN::Debug' => undef, 24674 'CPAN::DeferredCode' => undef, 24675 'CPAN::Distribution' => undef, 24676 'CPAN::Distroprefs' => undef, 24677 'CPAN::Distrostatus' => undef, 24678 'CPAN::Exception::RecursiveDependency'=> undef, 24679 'CPAN::Exception::blocked_urllist'=> undef, 24680 'CPAN::Exception::yaml_not_installed'=> undef, 24681 'CPAN::Exception::yaml_process_error'=> undef, 24682 'CPAN::FTP' => undef, 24683 'CPAN::FTP::netrc' => undef, 24684 'CPAN::FirstTime' => undef, 24685 'CPAN::HTTP::Client' => undef, 24686 'CPAN::HTTP::Credentials'=> undef, 24687 'CPAN::HandleConfig' => undef, 24688 'CPAN::Index' => undef, 24689 'CPAN::InfoObj' => undef, 24690 'CPAN::Kwalify' => undef, 24691 'CPAN::LWP::UserAgent' => undef, 24692 'CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues', 24693 'CPAN::Meta::Converter' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues', 24694 'CPAN::Meta::Feature' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues', 24695 'CPAN::Meta::History' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues', 24696 'CPAN::Meta::Merge' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues', 24697 'CPAN::Meta::Prereqs' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues', 24698 'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues', 24699 'CPAN::Meta::Requirements::Range'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues', 24700 'CPAN::Meta::Spec' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues', 24701 'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues', 24702 'CPAN::Meta::YAML' => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues', 24703 'CPAN::Mirrors' => undef, 24704 'CPAN::Module' => undef, 24705 'CPAN::Nox' => undef, 24706 'CPAN::Plugin' => undef, 24707 'CPAN::Plugin::Specfile'=> undef, 24708 'CPAN::Prompt' => undef, 24709 'CPAN::Queue' => undef, 24710 'CPAN::Shell' => undef, 24711 'CPAN::Tarzip' => undef, 24712 'CPAN::URL' => undef, 24713 'CPAN::Version' => undef, 24714 'Compress::Raw::Bzip2' => 'https://github.com/pmqs/Compress-Raw-Bzip2/issues', 24715 'Compress::Raw::Zlib' => 'https://github.com/pmqs/Compress-Raw-Zlib/issues', 24716 'Compress::Zlib' => 'https://github.com/pmqs/IO-Compress/issues', 24717 'Config::Perl::V' => 'https://github.com/Tux/Config-Perl-V/issues', 24718 'DB_File' => 'https://github.com/pmqs/DB_File/issues', 24719 'Digest' => 'https://github.com/Dual-Life/digest/issues', 24720 'Digest::MD5' => 'https://github.com/Dual-Life/digest-md5/issues', 24721 'Digest::SHA' => undef, 24722 'Digest::base' => 'https://github.com/Dual-Life/digest/issues', 24723 'Digest::file' => 'https://github.com/Dual-Life/digest/issues', 24724 'Encode' => undef, 24725 'Encode::Alias' => undef, 24726 'Encode::Byte' => undef, 24727 'Encode::CJKConstants' => undef, 24728 'Encode::CN' => undef, 24729 'Encode::CN::HZ' => undef, 24730 'Encode::Config' => undef, 24731 'Encode::EBCDIC' => undef, 24732 'Encode::Encoder' => undef, 24733 'Encode::Encoding' => undef, 24734 'Encode::GSM0338' => undef, 24735 'Encode::Guess' => undef, 24736 'Encode::JP' => undef, 24737 'Encode::JP::H2Z' => undef, 24738 'Encode::JP::JIS7' => undef, 24739 'Encode::KR' => undef, 24740 'Encode::KR::2022_KR' => undef, 24741 'Encode::MIME::Header' => undef, 24742 'Encode::MIME::Header::ISO_2022_JP'=> undef, 24743 'Encode::MIME::Name' => undef, 24744 'Encode::Symbol' => undef, 24745 'Encode::TW' => undef, 24746 'Encode::Unicode' => undef, 24747 'Encode::Unicode::UTF7' => undef, 24748 'ExtUtils::Command' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24749 'ExtUtils::Command::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24750 'ExtUtils::Constant' => undef, 24751 'ExtUtils::Constant::Base'=> undef, 24752 'ExtUtils::Constant::ProxySubs'=> undef, 24753 'ExtUtils::Constant::Utils'=> undef, 24754 'ExtUtils::Constant::XS'=> undef, 24755 'ExtUtils::Install' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install', 24756 'ExtUtils::Installed' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install', 24757 'ExtUtils::Liblist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24758 'ExtUtils::Liblist::Kid'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24759 'ExtUtils::MM' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24760 'ExtUtils::MM_AIX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24761 'ExtUtils::MM_Any' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24762 'ExtUtils::MM_BeOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24763 'ExtUtils::MM_Cygwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24764 'ExtUtils::MM_DOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24765 'ExtUtils::MM_Darwin' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24766 'ExtUtils::MM_MacOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24767 'ExtUtils::MM_NW5' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24768 'ExtUtils::MM_OS2' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24769 'ExtUtils::MM_OS390' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24770 'ExtUtils::MM_QNX' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24771 'ExtUtils::MM_UWIN' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24772 'ExtUtils::MM_Unix' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24773 'ExtUtils::MM_VMS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24774 'ExtUtils::MM_VOS' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24775 'ExtUtils::MM_Win32' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24776 'ExtUtils::MM_Win95' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24777 'ExtUtils::MY' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24778 'ExtUtils::MakeMaker' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24779 'ExtUtils::MakeMaker::Config'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24780 'ExtUtils::MakeMaker::Locale'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24781 'ExtUtils::MakeMaker::version'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24782 'ExtUtils::MakeMaker::version::regex'=> 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24783 'ExtUtils::Manifest' => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues', 24784 'ExtUtils::Mkbootstrap' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24785 'ExtUtils::Mksymlists' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24786 'ExtUtils::PL2Bat' => 'https://github.com/Perl-Toolchain-Gang/extutils-pl2bat/issues', 24787 'ExtUtils::Packlist' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-Install', 24788 'ExtUtils::testlib' => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker', 24789 'Fatal' => 'https://github.com/pjf/autodie/issues', 24790 'File::Fetch' => undef, 24791 'File::GlobMapper' => 'https://github.com/pmqs/IO-Compress/issues', 24792 'File::Path' => undef, 24793 'File::Temp' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp', 24794 'Filter::Util::Call' => undef, 24795 'Getopt::Long' => 'https://github.com/sciurius/perl-Getopt-Long/issues', 24796 'Getopt::Long::Parser' => 'https://github.com/sciurius/perl-Getopt-Long/issues', 24797 'HTTP::Tiny' => 'https://github.com/Perl-Toolchain-Gang/HTTP-Tiny/issues', 24798 'IO::Compress::Adapter::Bzip2'=> 'https://github.com/pmqs/IO-Compress/issues', 24799 'IO::Compress::Adapter::Deflate'=> 'https://github.com/pmqs/IO-Compress/issues', 24800 'IO::Compress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues', 24801 'IO::Compress::Base' => 'https://github.com/pmqs/IO-Compress/issues', 24802 'IO::Compress::Base::Common'=> 'https://github.com/pmqs/IO-Compress/issues', 24803 'IO::Compress::Bzip2' => 'https://github.com/pmqs/IO-Compress/issues', 24804 'IO::Compress::Deflate' => 'https://github.com/pmqs/IO-Compress/issues', 24805 'IO::Compress::Gzip' => 'https://github.com/pmqs/IO-Compress/issues', 24806 'IO::Compress::Gzip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues', 24807 'IO::Compress::RawDeflate'=> 'https://github.com/pmqs/IO-Compress/issues', 24808 'IO::Compress::Zip' => 'https://github.com/pmqs/IO-Compress/issues', 24809 'IO::Compress::Zip::Constants'=> 'https://github.com/pmqs/IO-Compress/issues', 24810 'IO::Compress::Zlib::Constants'=> 'https://github.com/pmqs/IO-Compress/issues', 24811 'IO::Compress::Zlib::Extra'=> 'https://github.com/pmqs/IO-Compress/issues', 24812 'IO::Socket::IP' => undef, 24813 'IO::Uncompress::Adapter::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues', 24814 'IO::Uncompress::Adapter::Identity'=> 'https://github.com/pmqs/IO-Compress/issues', 24815 'IO::Uncompress::Adapter::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues', 24816 'IO::Uncompress::AnyInflate'=> 'https://github.com/pmqs/IO-Compress/issues', 24817 'IO::Uncompress::AnyUncompress'=> 'https://github.com/pmqs/IO-Compress/issues', 24818 'IO::Uncompress::Base' => 'https://github.com/pmqs/IO-Compress/issues', 24819 'IO::Uncompress::Bunzip2'=> 'https://github.com/pmqs/IO-Compress/issues', 24820 'IO::Uncompress::Gunzip'=> 'https://github.com/pmqs/IO-Compress/issues', 24821 'IO::Uncompress::Inflate'=> 'https://github.com/pmqs/IO-Compress/issues', 24822 'IO::Uncompress::RawInflate'=> 'https://github.com/pmqs/IO-Compress/issues', 24823 'IO::Uncompress::Unzip' => 'https://github.com/pmqs/IO-Compress/issues', 24824 'IO::Zlib' => 'https://github.com/tomhughes/IO-Zlib/issues', 24825 'IPC::Cmd' => undef, 24826 'IPC::Msg' => undef, 24827 'IPC::Semaphore' => undef, 24828 'IPC::SharedMem' => undef, 24829 'IPC::SysV' => undef, 24830 'JSON::PP' => 'https://github.com/makamaka/JSON-PP/issues', 24831 'JSON::PP::Boolean' => 'https://github.com/makamaka/JSON-PP/issues', 24832 'List::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils', 24833 'List::Util::XS' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils', 24834 'Locale::Maketext::Simple'=> undef, 24835 'MIME::Base64' => 'https://github.com/Dual-Life/mime-base64/issues', 24836 'MIME::QuotedPrint' => 'https://github.com/Dual-Life/mime-base64/issues', 24837 'Math::BigFloat' => undef, 24838 'Math::BigFloat::Trace' => undef, 24839 'Math::BigInt' => undef, 24840 'Math::BigInt::Calc' => undef, 24841 'Math::BigInt::FastCalc'=> undef, 24842 'Math::BigInt::Lib' => undef, 24843 'Math::BigInt::Trace' => undef, 24844 'Math::BigRat' => undef, 24845 'Math::BigRat::Trace' => undef, 24846 'Memoize' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize', 24847 'Memoize::AnyDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize', 24848 'Memoize::Expire' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize', 24849 'Memoize::NDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize', 24850 'Memoize::SDBM_File' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize', 24851 'Memoize::Storable' => 'https://rt.cpan.org/Dist/Display.html?Name=Memoize', 24852 'Module::Load' => undef, 24853 'Module::Load::Conditional'=> undef, 24854 'Module::Loaded' => undef, 24855 'Module::Metadata' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-Metadata', 24856 'NEXT' => undef, 24857 'Net::Cmd' => undef, 24858 'Net::Config' => undef, 24859 'Net::Domain' => undef, 24860 'Net::FTP' => undef, 24861 'Net::FTP::A' => undef, 24862 'Net::FTP::E' => undef, 24863 'Net::FTP::I' => undef, 24864 'Net::FTP::L' => undef, 24865 'Net::FTP::dataconn' => undef, 24866 'Net::NNTP' => undef, 24867 'Net::Netrc' => undef, 24868 'Net::POP3' => undef, 24869 'Net::SMTP' => undef, 24870 'Net::Time' => undef, 24871 'Params::Check' => undef, 24872 'Parse::CPAN::Meta' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues', 24873 'Perl::OSType' => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues', 24874 'PerlIO::via::QuotedPrint'=> undef, 24875 'Pod::Checker' => undef, 24876 'Pod::Escapes' => undef, 24877 'Pod::Man' => 'https://github.com/rra/podlators/issues', 24878 'Pod::ParseLink' => 'https://github.com/rra/podlators/issues', 24879 'Pod::Perldoc' => undef, 24880 'Pod::Perldoc::BaseTo' => undef, 24881 'Pod::Perldoc::GetOptsOO'=> undef, 24882 'Pod::Perldoc::ToANSI' => undef, 24883 'Pod::Perldoc::ToChecker'=> undef, 24884 'Pod::Perldoc::ToMan' => undef, 24885 'Pod::Perldoc::ToNroff' => undef, 24886 'Pod::Perldoc::ToPod' => undef, 24887 'Pod::Perldoc::ToRtf' => undef, 24888 'Pod::Perldoc::ToTerm' => undef, 24889 'Pod::Perldoc::ToText' => undef, 24890 'Pod::Perldoc::ToTk' => undef, 24891 'Pod::Perldoc::ToXml' => undef, 24892 'Pod::Simple' => 'https://github.com/perl-pod/pod-simple/issues', 24893 'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues', 24894 'Pod::Simple::Checker' => 'https://github.com/perl-pod/pod-simple/issues', 24895 'Pod::Simple::Debug' => 'https://github.com/perl-pod/pod-simple/issues', 24896 'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues', 24897 'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues', 24898 'Pod::Simple::HTML' => 'https://github.com/perl-pod/pod-simple/issues', 24899 'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues', 24900 'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues', 24901 'Pod::Simple::JustPod' => 'https://github.com/perl-pod/pod-simple/issues', 24902 'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues', 24903 'Pod::Simple::Methody' => 'https://github.com/perl-pod/pod-simple/issues', 24904 'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues', 24905 'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues', 24906 'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues', 24907 'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues', 24908 'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues', 24909 'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues', 24910 'Pod::Simple::RTF' => 'https://github.com/perl-pod/pod-simple/issues', 24911 'Pod::Simple::Search' => 'https://github.com/perl-pod/pod-simple/issues', 24912 'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues', 24913 'Pod::Simple::Text' => 'https://github.com/perl-pod/pod-simple/issues', 24914 'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues', 24915 'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues', 24916 'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues', 24917 'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues', 24918 'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues', 24919 'Pod::Simple::XHTML' => 'https://github.com/perl-pod/pod-simple/issues', 24920 'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues', 24921 'Pod::Text' => 'https://github.com/rra/podlators/issues', 24922 'Pod::Text::Color' => 'https://github.com/rra/podlators/issues', 24923 'Pod::Text::Overstrike' => 'https://github.com/rra/podlators/issues', 24924 'Pod::Text::Termcap' => 'https://github.com/rra/podlators/issues', 24925 'Pod::Usage' => 'https://github.com/Dual-Life/Pod-Usage/issues', 24926 'Scalar::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils', 24927 'Socket' => undef, 24928 'Sub::Util' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils', 24929 'Sys::Syslog' => undef, 24930 'Sys::Syslog::Win32' => undef, 24931 'TAP::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24932 'TAP::Formatter::Base' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24933 'TAP::Formatter::Color' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24934 'TAP::Formatter::Console'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24935 'TAP::Formatter::Console::ParallelSession'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24936 'TAP::Formatter::Console::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24937 'TAP::Formatter::File' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24938 'TAP::Formatter::File::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24939 'TAP::Formatter::Session'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24940 'TAP::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24941 'TAP::Harness::Env' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24942 'TAP::Object' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24943 'TAP::Parser' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24944 'TAP::Parser::Aggregator'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24945 'TAP::Parser::Grammar' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24946 'TAP::Parser::Iterator' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24947 'TAP::Parser::Iterator::Array'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24948 'TAP::Parser::Iterator::Process'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24949 'TAP::Parser::Iterator::Stream'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24950 'TAP::Parser::IteratorFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24951 'TAP::Parser::Multiplexer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24952 'TAP::Parser::Result' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24953 'TAP::Parser::Result::Bailout'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24954 'TAP::Parser::Result::Comment'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24955 'TAP::Parser::Result::Plan'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24956 'TAP::Parser::Result::Pragma'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24957 'TAP::Parser::Result::Test'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24958 'TAP::Parser::Result::Unknown'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24959 'TAP::Parser::Result::Version'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24960 'TAP::Parser::Result::YAML'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24961 'TAP::Parser::ResultFactory'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24962 'TAP::Parser::Scheduler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24963 'TAP::Parser::Scheduler::Job'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24964 'TAP::Parser::Scheduler::Spinner'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24965 'TAP::Parser::Source' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24966 'TAP::Parser::SourceHandler'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24967 'TAP::Parser::SourceHandler::Executable'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24968 'TAP::Parser::SourceHandler::File'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24969 'TAP::Parser::SourceHandler::Handle'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24970 'TAP::Parser::SourceHandler::Perl'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24971 'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24972 'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24973 'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 24974 'Term::ANSIColor' => 'https://rt.cpan.org/Dist/Display.html?Name=Term-ANSIColor', 24975 'Term::Cap' => undef, 24976 'Term::Table' => 'http://github.com/exodist/Term-Table/issues', 24977 'Term::Table::Cell' => 'http://github.com/exodist/Term-Table/issues', 24978 'Term::Table::CellStack'=> 'http://github.com/exodist/Term-Table/issues', 24979 'Term::Table::HashBase' => 'http://github.com/exodist/Term-Table/issues', 24980 'Term::Table::LineBreak'=> 'http://github.com/exodist/Term-Table/issues', 24981 'Term::Table::Spacer' => 'http://github.com/exodist/Term-Table/issues', 24982 'Term::Table::Util' => 'http://github.com/exodist/Term-Table/issues', 24983 'Test2' => 'https://github.com/Test-More/test-more/issues', 24984 'Test2::API' => 'https://github.com/Test-More/test-more/issues', 24985 'Test2::API::Breakage' => 'https://github.com/Test-More/test-more/issues', 24986 'Test2::API::Context' => 'https://github.com/Test-More/test-more/issues', 24987 'Test2::API::Instance' => 'https://github.com/Test-More/test-more/issues', 24988 'Test2::API::InterceptResult'=> 'https://github.com/Test-More/test-more/issues', 24989 'Test2::API::InterceptResult::Event'=> 'https://github.com/Test-More/test-more/issues', 24990 'Test2::API::InterceptResult::Facet'=> 'https://github.com/Test-More/test-more/issues', 24991 'Test2::API::InterceptResult::Hub'=> 'https://github.com/Test-More/test-more/issues', 24992 'Test2::API::InterceptResult::Squasher'=> 'https://github.com/Test-More/test-more/issues', 24993 'Test2::API::Stack' => 'https://github.com/Test-More/test-more/issues', 24994 'Test2::AsyncSubtest' => 'https://github.com/Test-More/test-more/issues', 24995 'Test2::AsyncSubtest::Event::Attach'=> 'https://github.com/Test-More/test-more/issues', 24996 'Test2::AsyncSubtest::Event::Detach'=> 'https://github.com/Test-More/test-more/issues', 24997 'Test2::AsyncSubtest::Formatter'=> 'https://github.com/Test-More/test-more/issues', 24998 'Test2::AsyncSubtest::Hub'=> 'https://github.com/Test-More/test-more/issues', 24999 'Test2::Bundle' => 'https://github.com/Test-More/test-more/issues', 25000 'Test2::Bundle::Extended'=> 'https://github.com/Test-More/test-more/issues', 25001 'Test2::Bundle::More' => 'https://github.com/Test-More/test-more/issues', 25002 'Test2::Bundle::Simple' => 'https://github.com/Test-More/test-more/issues', 25003 'Test2::Compare' => 'https://github.com/Test-More/test-more/issues', 25004 'Test2::Compare::Array' => 'https://github.com/Test-More/test-more/issues', 25005 'Test2::Compare::Bag' => 'https://github.com/Test-More/test-more/issues', 25006 'Test2::Compare::Base' => 'https://github.com/Test-More/test-more/issues', 25007 'Test2::Compare::Bool' => 'https://github.com/Test-More/test-more/issues', 25008 'Test2::Compare::Custom'=> 'https://github.com/Test-More/test-more/issues', 25009 'Test2::Compare::DeepRef'=> 'https://github.com/Test-More/test-more/issues', 25010 'Test2::Compare::Delta' => 'https://github.com/Test-More/test-more/issues', 25011 'Test2::Compare::Event' => 'https://github.com/Test-More/test-more/issues', 25012 'Test2::Compare::EventMeta'=> 'https://github.com/Test-More/test-more/issues', 25013 'Test2::Compare::Float' => 'https://github.com/Test-More/test-more/issues', 25014 'Test2::Compare::Hash' => 'https://github.com/Test-More/test-more/issues', 25015 'Test2::Compare::Isa' => 'https://github.com/Test-More/test-more/issues', 25016 'Test2::Compare::Meta' => 'https://github.com/Test-More/test-more/issues', 25017 'Test2::Compare::Negatable'=> 'https://github.com/Test-More/test-more/issues', 25018 'Test2::Compare::Number'=> 'https://github.com/Test-More/test-more/issues', 25019 'Test2::Compare::Object'=> 'https://github.com/Test-More/test-more/issues', 25020 'Test2::Compare::OrderedSubset'=> 'https://github.com/Test-More/test-more/issues', 25021 'Test2::Compare::Pattern'=> 'https://github.com/Test-More/test-more/issues', 25022 'Test2::Compare::Ref' => 'https://github.com/Test-More/test-more/issues', 25023 'Test2::Compare::Regex' => 'https://github.com/Test-More/test-more/issues', 25024 'Test2::Compare::Scalar'=> 'https://github.com/Test-More/test-more/issues', 25025 'Test2::Compare::Set' => 'https://github.com/Test-More/test-more/issues', 25026 'Test2::Compare::String'=> 'https://github.com/Test-More/test-more/issues', 25027 'Test2::Compare::Undef' => 'https://github.com/Test-More/test-more/issues', 25028 'Test2::Compare::Wildcard'=> 'https://github.com/Test-More/test-more/issues', 25029 'Test2::Event' => 'https://github.com/Test-More/test-more/issues', 25030 'Test2::Event::Bail' => 'https://github.com/Test-More/test-more/issues', 25031 'Test2::Event::Diag' => 'https://github.com/Test-More/test-more/issues', 25032 'Test2::Event::Encoding'=> 'https://github.com/Test-More/test-more/issues', 25033 'Test2::Event::Exception'=> 'https://github.com/Test-More/test-more/issues', 25034 'Test2::Event::Fail' => 'https://github.com/Test-More/test-more/issues', 25035 'Test2::Event::Generic' => 'https://github.com/Test-More/test-more/issues', 25036 'Test2::Event::Note' => 'https://github.com/Test-More/test-more/issues', 25037 'Test2::Event::Ok' => 'https://github.com/Test-More/test-more/issues', 25038 'Test2::Event::Pass' => 'https://github.com/Test-More/test-more/issues', 25039 'Test2::Event::Plan' => 'https://github.com/Test-More/test-more/issues', 25040 'Test2::Event::Skip' => 'https://github.com/Test-More/test-more/issues', 25041 'Test2::Event::Subtest' => 'https://github.com/Test-More/test-more/issues', 25042 'Test2::Event::TAP::Version'=> 'https://github.com/Test-More/test-more/issues', 25043 'Test2::Event::V2' => 'https://github.com/Test-More/test-more/issues', 25044 'Test2::Event::Waiting' => 'https://github.com/Test-More/test-more/issues', 25045 'Test2::EventFacet' => 'https://github.com/Test-More/test-more/issues', 25046 'Test2::EventFacet::About'=> 'https://github.com/Test-More/test-more/issues', 25047 'Test2::EventFacet::Amnesty'=> 'https://github.com/Test-More/test-more/issues', 25048 'Test2::EventFacet::Assert'=> 'https://github.com/Test-More/test-more/issues', 25049 'Test2::EventFacet::Control'=> 'https://github.com/Test-More/test-more/issues', 25050 'Test2::EventFacet::Error'=> 'https://github.com/Test-More/test-more/issues', 25051 'Test2::EventFacet::Hub'=> 'https://github.com/Test-More/test-more/issues', 25052 'Test2::EventFacet::Info'=> 'https://github.com/Test-More/test-more/issues', 25053 'Test2::EventFacet::Info::Table'=> 'https://github.com/Test-More/test-more/issues', 25054 'Test2::EventFacet::Meta'=> 'https://github.com/Test-More/test-more/issues', 25055 'Test2::EventFacet::Parent'=> 'https://github.com/Test-More/test-more/issues', 25056 'Test2::EventFacet::Plan'=> 'https://github.com/Test-More/test-more/issues', 25057 'Test2::EventFacet::Render'=> 'https://github.com/Test-More/test-more/issues', 25058 'Test2::EventFacet::Trace'=> 'https://github.com/Test-More/test-more/issues', 25059 'Test2::Formatter' => 'https://github.com/Test-More/test-more/issues', 25060 'Test2::Formatter::TAP' => 'https://github.com/Test-More/test-more/issues', 25061 'Test2::Hub' => 'https://github.com/Test-More/test-more/issues', 25062 'Test2::Hub::Interceptor'=> 'https://github.com/Test-More/test-more/issues', 25063 'Test2::Hub::Interceptor::Terminator'=> 'https://github.com/Test-More/test-more/issues', 25064 'Test2::Hub::Subtest' => 'https://github.com/Test-More/test-more/issues', 25065 'Test2::IPC' => 'https://github.com/Test-More/test-more/issues', 25066 'Test2::IPC::Driver' => 'https://github.com/Test-More/test-more/issues', 25067 'Test2::IPC::Driver::Files'=> 'https://github.com/Test-More/test-more/issues', 25068 'Test2::Manual' => 'https://github.com/Test-More/test-more/issues', 25069 'Test2::Manual::Anatomy'=> 'https://github.com/Test-More/test-more/issues', 25070 'Test2::Manual::Anatomy::API'=> 'https://github.com/Test-More/test-more/issues', 25071 'Test2::Manual::Anatomy::Context'=> 'https://github.com/Test-More/test-more/issues', 25072 'Test2::Manual::Anatomy::EndToEnd'=> 'https://github.com/Test-More/test-more/issues', 25073 'Test2::Manual::Anatomy::Event'=> 'https://github.com/Test-More/test-more/issues', 25074 'Test2::Manual::Anatomy::Hubs'=> 'https://github.com/Test-More/test-more/issues', 25075 'Test2::Manual::Anatomy::IPC'=> 'https://github.com/Test-More/test-more/issues', 25076 'Test2::Manual::Anatomy::Utilities'=> 'https://github.com/Test-More/test-more/issues', 25077 'Test2::Manual::Concurrency'=> 'https://github.com/Test-More/test-more/issues', 25078 'Test2::Manual::Contributing'=> 'https://github.com/Test-More/test-more/issues', 25079 'Test2::Manual::Testing'=> 'https://github.com/Test-More/test-more/issues', 25080 'Test2::Manual::Testing::Introduction'=> 'https://github.com/Test-More/test-more/issues', 25081 'Test2::Manual::Testing::Migrating'=> 'https://github.com/Test-More/test-more/issues', 25082 'Test2::Manual::Testing::Planning'=> 'https://github.com/Test-More/test-more/issues', 25083 'Test2::Manual::Testing::Todo'=> 'https://github.com/Test-More/test-more/issues', 25084 'Test2::Manual::Tooling'=> 'https://github.com/Test-More/test-more/issues', 25085 'Test2::Manual::Tooling::FirstTool'=> 'https://github.com/Test-More/test-more/issues', 25086 'Test2::Manual::Tooling::Formatter'=> 'https://github.com/Test-More/test-more/issues', 25087 'Test2::Manual::Tooling::Nesting'=> 'https://github.com/Test-More/test-more/issues', 25088 'Test2::Manual::Tooling::Plugin::TestExit'=> 'https://github.com/Test-More/test-more/issues', 25089 'Test2::Manual::Tooling::Plugin::TestingDone'=> 'https://github.com/Test-More/test-more/issues', 25090 'Test2::Manual::Tooling::Plugin::ToolCompletes'=> 'https://github.com/Test-More/test-more/issues', 25091 'Test2::Manual::Tooling::Plugin::ToolStarts'=> 'https://github.com/Test-More/test-more/issues', 25092 'Test2::Manual::Tooling::Subtest'=> 'https://github.com/Test-More/test-more/issues', 25093 'Test2::Manual::Tooling::TestBuilder'=> 'https://github.com/Test-More/test-more/issues', 25094 'Test2::Manual::Tooling::Testing'=> 'https://github.com/Test-More/test-more/issues', 25095 'Test2::Mock' => 'https://github.com/Test-More/test-more/issues', 25096 'Test2::Plugin' => 'https://github.com/Test-More/test-more/issues', 25097 'Test2::Plugin::BailOnFail'=> 'https://github.com/Test-More/test-more/issues', 25098 'Test2::Plugin::DieOnFail'=> 'https://github.com/Test-More/test-more/issues', 25099 'Test2::Plugin::ExitSummary'=> 'https://github.com/Test-More/test-more/issues', 25100 'Test2::Plugin::SRand' => 'https://github.com/Test-More/test-more/issues', 25101 'Test2::Plugin::Times' => 'https://github.com/Test-More/test-more/issues', 25102 'Test2::Plugin::UTF8' => 'https://github.com/Test-More/test-more/issues', 25103 'Test2::Require' => 'https://github.com/Test-More/test-more/issues', 25104 'Test2::Require::AuthorTesting'=> 'https://github.com/Test-More/test-more/issues', 25105 'Test2::Require::AutomatedTesting'=> 'https://github.com/Test-More/test-more/issues', 25106 'Test2::Require::EnvVar'=> 'https://github.com/Test-More/test-more/issues', 25107 'Test2::Require::ExtendedTesting'=> 'https://github.com/Test-More/test-more/issues', 25108 'Test2::Require::Fork' => 'https://github.com/Test-More/test-more/issues', 25109 'Test2::Require::Module'=> 'https://github.com/Test-More/test-more/issues', 25110 'Test2::Require::NonInteractiveTesting'=> 'https://github.com/Test-More/test-more/issues', 25111 'Test2::Require::Perl' => 'https://github.com/Test-More/test-more/issues', 25112 'Test2::Require::RealFork'=> 'https://github.com/Test-More/test-more/issues', 25113 'Test2::Require::ReleaseTesting'=> 'https://github.com/Test-More/test-more/issues', 25114 'Test2::Require::Threads'=> 'https://github.com/Test-More/test-more/issues', 25115 'Test2::Suite' => 'https://github.com/Test-More/test-more/issues', 25116 'Test2::Todo' => 'https://github.com/Test-More/test-more/issues', 25117 'Test2::Tools' => 'https://github.com/Test-More/test-more/issues', 25118 'Test2::Tools::AsyncSubtest'=> 'https://github.com/Test-More/test-more/issues', 25119 'Test2::Tools::Basic' => 'https://github.com/Test-More/test-more/issues', 25120 'Test2::Tools::Class' => 'https://github.com/Test-More/test-more/issues', 25121 'Test2::Tools::ClassicCompare'=> 'https://github.com/Test-More/test-more/issues', 25122 'Test2::Tools::Compare' => 'https://github.com/Test-More/test-more/issues', 25123 'Test2::Tools::Defer' => 'https://github.com/Test-More/test-more/issues', 25124 'Test2::Tools::Encoding'=> 'https://github.com/Test-More/test-more/issues', 25125 'Test2::Tools::Event' => 'https://github.com/Test-More/test-more/issues', 25126 'Test2::Tools::Exception'=> 'https://github.com/Test-More/test-more/issues', 25127 'Test2::Tools::Exports' => 'https://github.com/Test-More/test-more/issues', 25128 'Test2::Tools::GenTemp' => 'https://github.com/Test-More/test-more/issues', 25129 'Test2::Tools::Grab' => 'https://github.com/Test-More/test-more/issues', 25130 'Test2::Tools::Mock' => 'https://github.com/Test-More/test-more/issues', 25131 'Test2::Tools::Ref' => 'https://github.com/Test-More/test-more/issues', 25132 'Test2::Tools::Refcount'=> 'https://github.com/Test-More/test-more/issues', 25133 'Test2::Tools::Spec' => 'https://github.com/Test-More/test-more/issues', 25134 'Test2::Tools::Subtest' => 'https://github.com/Test-More/test-more/issues', 25135 'Test2::Tools::Target' => 'https://github.com/Test-More/test-more/issues', 25136 'Test2::Tools::Tester' => 'https://github.com/Test-More/test-more/issues', 25137 'Test2::Tools::Tiny' => 'https://github.com/Test-More/test-more/issues', 25138 'Test2::Tools::Warnings'=> 'https://github.com/Test-More/test-more/issues', 25139 'Test2::Util' => 'https://github.com/Test-More/test-more/issues', 25140 'Test2::Util::ExternalMeta'=> 'https://github.com/Test-More/test-more/issues', 25141 'Test2::Util::Facets2Legacy'=> 'https://github.com/Test-More/test-more/issues', 25142 'Test2::Util::Grabber' => 'https://github.com/Test-More/test-more/issues', 25143 'Test2::Util::Guard' => 'https://github.com/Test-More/test-more/issues', 25144 'Test2::Util::HashBase' => 'https://github.com/Test-More/test-more/issues', 25145 'Test2::Util::Importer' => 'https://github.com/Test-More/test-more/issues', 25146 'Test2::Util::Ref' => 'https://github.com/Test-More/test-more/issues', 25147 'Test2::Util::Stash' => 'https://github.com/Test-More/test-more/issues', 25148 'Test2::Util::Sub' => 'https://github.com/Test-More/test-more/issues', 25149 'Test2::Util::Table' => 'https://github.com/Test-More/test-more/issues', 25150 'Test2::Util::Table::Cell'=> 'https://github.com/Test-More/test-more/issues', 25151 'Test2::Util::Table::LineBreak'=> 'https://github.com/Test-More/test-more/issues', 25152 'Test2::Util::Term' => 'https://github.com/Test-More/test-more/issues', 25153 'Test2::Util::Times' => 'https://github.com/Test-More/test-more/issues', 25154 'Test2::Util::Trace' => 'https://github.com/Test-More/test-more/issues', 25155 'Test2::V0' => 'https://github.com/Test-More/test-more/issues', 25156 'Test2::Workflow' => 'https://github.com/Test-More/test-more/issues', 25157 'Test2::Workflow::BlockBase'=> 'https://github.com/Test-More/test-more/issues', 25158 'Test2::Workflow::Build'=> 'https://github.com/Test-More/test-more/issues', 25159 'Test2::Workflow::Runner'=> 'https://github.com/Test-More/test-more/issues', 25160 'Test2::Workflow::Task' => 'https://github.com/Test-More/test-more/issues', 25161 'Test2::Workflow::Task::Action'=> 'https://github.com/Test-More/test-more/issues', 25162 'Test2::Workflow::Task::Group'=> 'https://github.com/Test-More/test-more/issues', 25163 'Test::Builder' => 'https://github.com/Test-More/test-more/issues', 25164 'Test::Builder::Formatter'=> 'https://github.com/Test-More/test-more/issues', 25165 'Test::Builder::IO::Scalar'=> 'https://github.com/Test-More/test-more/issues', 25166 'Test::Builder::Module' => 'https://github.com/Test-More/test-more/issues', 25167 'Test::Builder::Tester' => 'https://github.com/Test-More/test-more/issues', 25168 'Test::Builder::Tester::Color'=> 'https://github.com/Test-More/test-more/issues', 25169 'Test::Builder::TodoDiag'=> 'https://github.com/Test-More/test-more/issues', 25170 'Test::Harness' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness', 25171 'Test::More' => 'https://github.com/Test-More/test-more/issues', 25172 'Test::Simple' => 'https://github.com/Test-More/test-more/issues', 25173 'Test::Tester' => 'https://github.com/Test-More/test-more/issues', 25174 'Test::Tester::Capture' => 'https://github.com/Test-More/test-more/issues', 25175 'Test::Tester::CaptureRunner'=> 'https://github.com/Test-More/test-more/issues', 25176 'Test::Tester::Delegate'=> 'https://github.com/Test-More/test-more/issues', 25177 'Test::use::ok' => 'https://github.com/Test-More/test-more/issues', 25178 'Text::Balanced' => undef, 25179 'Text::ParseWords' => undef, 25180 'Text::Tabs' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap', 25181 'Text::Wrap' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Text-Tabs%2BWrap', 25182 'Tie::RefHash' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Tie-RefHash', 25183 'Time::Local' => 'https://github.com/houseabsolute/Time-Local/issues', 25184 'Time::Piece' => undef, 25185 'Time::Seconds' => undef, 25186 'Unicode::Collate' => undef, 25187 'Unicode::Collate::CJK::Big5'=> undef, 25188 'Unicode::Collate::CJK::GB2312'=> undef, 25189 'Unicode::Collate::CJK::JISX0208'=> undef, 25190 'Unicode::Collate::CJK::Korean'=> undef, 25191 'Unicode::Collate::CJK::Pinyin'=> undef, 25192 'Unicode::Collate::CJK::Stroke'=> undef, 25193 'Unicode::Collate::CJK::Zhuyin'=> undef, 25194 'Unicode::Collate::Locale'=> undef, 25195 'Win32' => 'https://github.com/perl-libwin32/win32/issues', 25196 'Win32API::File' => undef, 25197 'autodie' => 'https://github.com/pjf/autodie/issues', 25198 'autodie::Scope::Guard' => 'https://github.com/pjf/autodie/issues', 25199 'autodie::Scope::GuardStack'=> 'https://github.com/pjf/autodie/issues', 25200 'autodie::Util' => 'https://github.com/pjf/autodie/issues', 25201 'autodie::exception' => 'https://github.com/pjf/autodie/issues', 25202 'autodie::exception::system'=> 'https://github.com/pjf/autodie/issues', 25203 'autodie::hints' => 'https://github.com/pjf/autodie/issues', 25204 'autodie::skip' => 'https://github.com/pjf/autodie/issues', 25205 'bigfloat' => undef, 25206 'bigint' => undef, 25207 'bignum' => undef, 25208 'bigrat' => undef, 25209 'encoding' => undef, 25210 'experimental' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental', 25211 'ok' => 'https://github.com/Test-More/test-more/issues', 25212 'parent' => undef, 25213 'perlfaq' => 'https://github.com/perl-doc-cats/perlfaq/issues', 25214 'stable' => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental', 25215 'version' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version', 25216 'version::regex' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version', 25217); 25218 25219# Create aliases with trailing zeros for $] use 25220 25221$released{'5.000'} = $released{5}; 25222$version{'5.000'} = $version{5}; 25223 25224_create_aliases(\%delta); 25225_create_aliases(\%released); 25226_create_aliases(\%version); 25227_create_aliases(\%deprecated); 25228 25229sub _create_aliases { 25230 my ($hash) = @_; 25231 25232 for my $version (keys %$hash) { 25233 next unless $version >= 5.006; 25234 25235 my $padded = sprintf "%0.6f", $version; 25236 25237 # If the version in string form isn't the same as the numeric version, 25238 # alias it. 25239 if ($padded ne $version && $version == $padded) { 25240 $hash->{$padded} = $hash->{$version}; 25241 } 25242 } 25243} 25244 252451; 25246__END__ 25247