This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
update Module::CoreList (Porting/corelist.pl)
[perl5.git] / dist / Module-CoreList / lib / Module / CoreList.pm
index b2485a9..79c208e 100644 (file)
@@ -4,7 +4,17 @@ use vars qw/$VERSION %released %version %families %upstream
            %bug_tracker %deprecated %delta/;
 use Module::CoreList::TieHashDelta;
 use version;
-$VERSION = '5.20141120';
+$VERSION = '5.20160121';
+
+sub _released_order {   # Sort helper, to make '?' sort after everything else
+    (substr($released{$a}, 0, 1) eq "?")
+    ? ((substr($released{$b}, 0, 1) eq "?")
+        ? 0
+        : 1)
+    : ((substr($released{$b}, 0, 1) eq "?")
+        ? -1
+        : $released{$a} cmp $released{$b} )
+}
 
 my $dumpinc = 0;
 sub import {
@@ -28,7 +38,7 @@ sub first_release_raw {
     my $version = shift;
 
     my @perls = $version
-        ? grep { exists $version{$_}{ $module } &&
+        ? grep { defined $version{$_}{ $module } &&
                         $version{$_}{ $module } ge $version } keys %version
         : grep { exists $version{$_}{ $module }             } keys %version;
 
@@ -38,7 +48,7 @@ sub first_release_raw {
 sub first_release_by_date {
     my @perls = &first_release_raw;
     return unless @perls;
-    return (sort { $released{$a} cmp $released{$b} } @perls)[0];
+    return (sort _released_order @perls)[0];
 }
 
 sub first_release {
@@ -64,9 +74,12 @@ sub find_modules {
 
 sub find_version {
     my $v = shift;
-    $v = shift if eval { $v->isa(__PACKAGE__) };
+    if ($v->isa(__PACKAGE__)) {
+        $v = shift;
+        return if not defined $v;
+    }
     return $version{$v} if defined $version{$v};
-    return undef;
+    return;
 }
 
 sub is_deprecated {
@@ -96,7 +109,7 @@ sub removed_from {
 }
 
 sub removed_from_by_date {
-  my @perls = sort { $released{$a} cmp $released{$b} } &removed_raw;
+  my @perls = sort _released_order &removed_raw;
   return shift @perls;
 }
 
@@ -258,7 +271,25 @@ sub changes_between {
     5.020001 => '2014-09-14',
     5.021004 => '2014-09-20',
     5.021005 => '2014-10-20',
-    5.021006 => '????-??-??',
+    5.021006 => '2014-11-20',
+    5.021007 => '2014-12-20',
+    5.021008 => '2015-01-20',
+    5.020002 => '2015-02-14',
+    5.021009 => '2015-02-21',
+    5.021010 => '2015-03-20',
+    5.021011 => '2015-04-20',
+    5.022000 => '2015-06-01',
+    5.023000 => '2015-06-20',
+    5.023001 => '2015-07-20',
+    5.023002 => '2015-08-20',
+    5.020003 => '2015-09-12',
+    5.023003 => '2015-09-20',
+    5.023004 => '2015-10-20',
+    5.023005 => '2015-11-20',
+    5.022001 => '2015-12-13',
+    5.023006 => '2015-12-21',
+    5.023007 => '2016-01-20',
+    5.023008 => '2016-02-20',
   );
 
 for my $version ( sort { $a <=> $b } keys %released ) {
@@ -390,14 +421,14 @@ for my $version ( sort { $a <=> $b } keys %released ) {
             'Config'                => undef,
             'DB_File'               => '1.03',
             'ExtUtils::Embed'       => '1.18',
-            'ExtUtils::Install'     => '1.15 ',
-            'ExtUtils::Liblist'     => '1.20 ',
-            'ExtUtils::MM_Unix'     => '1.107 ',
+            'ExtUtils::Install'     => '1.15',
+            'ExtUtils::Liblist'     => '1.20',
+            'ExtUtils::MM_Unix'     => '1.107',
             'ExtUtils::MakeMaker'   => '5.38',
             'ExtUtils::Manifest'    => '1.27',
-            'ExtUtils::Mkbootstrap' => '1.13 ',
-            'ExtUtils::Mksymlists'  => '1.12 ',
-            'ExtUtils::testlib'     => '1.11 ',
+            'ExtUtils::Mkbootstrap' => '1.13',
+            'ExtUtils::Mksymlists'  => '1.12',
+            'ExtUtils::testlib'     => '1.11',
             'Fatal'                 => undef,
             'File::Basename'        => '2.4',
             'FindBin'               => '1.04',
@@ -439,7 +470,7 @@ for my $version ( sort { $a <=> $b } keys %released ) {
             'CGI::Push'             => '1.00',
             'CGI::Switch'           => '0.05',
             'CPAN'                  => '1.2401',
-            'CPAN::FirstTime'       => '1.18 ',
+            'CPAN::FirstTime'       => '1.18',
             'CPAN::Nox'             => undef,
             'Class::Struct'         => undef,
             'Cwd'                   => '2.00',
@@ -447,13 +478,13 @@ for my $version ( sort { $a <=> $b } keys %released ) {
             'DynaLoader'            => '1.02',
             'ExtUtils::Command'     => '1.00',
             'ExtUtils::Embed'       => '1.2501',
-            'ExtUtils::Install'     => '1.16 ',
-            'ExtUtils::Liblist'     => '1.2201 ',
-            'ExtUtils::MM_Unix'     => '1.114 ',
+            'ExtUtils::Install'     => '1.16',
+            'ExtUtils::Liblist'     => '1.2201',
+            'ExtUtils::MM_Unix'     => '1.114',
             'ExtUtils::MM_Win32'    => undef,
             'ExtUtils::MakeMaker'   => '5.4002',
-            'ExtUtils::Manifest'    => '1.33 ',
-            'ExtUtils::Mksymlists'  => '1.13 ',
+            'ExtUtils::Manifest'    => '1.33',
+            'ExtUtils::Mksymlists'  => '1.13',
             'ExtUtils::XSSymSet'    => '1.0',
             'Fcntl'                 => '1.03',
             'File::Basename'        => '2.5',
@@ -520,18 +551,18 @@ for my $version ( sort { $a <=> $b } keys %released ) {
             'CGI::Push'             => '1.01',
             'CGI::Switch'           => '0.06',
             'CPAN'                  => '1.40',
-            'CPAN::FirstTime'       => '1.30 ',
+            'CPAN::FirstTime'       => '1.30',
             'Cwd'                   => '2.01',
             'DB_File'               => '1.15',
             'DynaLoader'            => '1.03',
             'ExtUtils::Command'     => '1.01',
             'ExtUtils::Embed'       => '1.2505',
-            'ExtUtils::Install'     => '1.28 ',
-            'ExtUtils::Liblist'     => '1.25 ',
-            'ExtUtils::MM_Unix'     => '1.118 ',
+            'ExtUtils::Install'     => '1.28',
+            'ExtUtils::Liblist'     => '1.25',
+            'ExtUtils::MM_Unix'     => '1.118',
             'ExtUtils::MakeMaker'   => '5.42',
-            'ExtUtils::Mkbootstrap' => '1.14 ',
-            'ExtUtils::Mksymlists'  => '1.16 ',
+            'ExtUtils::Mkbootstrap' => '1.14',
+            'ExtUtils::Mksymlists'  => '1.16',
             'File::Basename'        => '2.6',
             'File::DosGlob'         => undef,
             'File::Path'            => '1.0402',
@@ -588,15 +619,15 @@ for my $version ( sort { $a <=> $b } keys %released ) {
             'B::Xref'               => undef,
             'CGI::Carp'             => '1.101',
             'CPAN'                  => '1.3901',
-            'CPAN::FirstTime'       => '1.29 ',
+            'CPAN::FirstTime'       => '1.29',
             'DB_File'               => '1.60',
             'Data::Dumper'          => '2.09',
             'Errno'                 => '1.09',
             'ExtUtils::Installed'   => '0.02',
-            'ExtUtils::MM_Unix'     => '1.12601 ',
+            'ExtUtils::MM_Unix'     => '1.12601',
             'ExtUtils::MakeMaker'   => '5.4301',
-            'ExtUtils::Mkbootstrap' => '1.13 ',
-            'ExtUtils::Mksymlists'  => '1.17 ',
+            'ExtUtils::Mkbootstrap' => '1.13',
+            'ExtUtils::Mksymlists'  => '1.17',
             'ExtUtils::Packlist'    => '0.03',
             'Fatal'                 => '1.02',
             'File::Path'            => '1.0401',
@@ -664,16 +695,16 @@ for my $version ( sort { $a <=> $b } keys %released ) {
     5.00504 => {
         delta_from => 5.00503,
         changed => {
-            'CPAN::FirstTime'       => '1.36 ',
+            'CPAN::FirstTime'       => '1.36',
             'DB_File'               => '1.807',
-            'ExtUtils::Install'     => '1.28 ',
-            'ExtUtils::Liblist'     => '1.25 ',
-            'ExtUtils::MM_Unix'     => '1.12602 ',
-            'ExtUtils::Manifest'    => '1.33 ',
+            'ExtUtils::Install'     => '1.28',
+            'ExtUtils::Liblist'     => '1.25',
+            'ExtUtils::MM_Unix'     => '1.12602',
+            'ExtUtils::Manifest'    => '1.33',
             'ExtUtils::Miniperl'    => undef,
-            'ExtUtils::Mkbootstrap' => '1.14 ',
-            'ExtUtils::Mksymlists'  => '1.17 ',
-            'ExtUtils::testlib'     => '1.11 ',
+            'ExtUtils::Mkbootstrap' => '1.14',
+            'ExtUtils::Mksymlists'  => '1.17',
+            'ExtUtils::testlib'     => '1.11',
             'File::Compare'         => '1.1002',
             'File::Spec'            => '0.8',
             'File::Spec::Functions' => undef,
@@ -701,7 +732,7 @@ for my $version ( sort { $a <=> $b } keys %released ) {
             'CGI::Pretty'           => '1.03',
             'CGI::Switch'           => undef,
             'CPAN'                  => '1.52',
-            'CPAN::FirstTime'       => '1.38 ',
+            'CPAN::FirstTime'       => '1.38',
             'Carp::Heavy'           => undef,
             'Class::Struct'         => '0.58',
             'Cwd'                   => '2.02',
@@ -713,7 +744,7 @@ for my $version ( sort { $a <=> $b } keys %released ) {
             'Exporter'              => '5.562',
             'Exporter::Heavy'       => undef,
             'ExtUtils::MM_Cygwin'   => undef,
-            'ExtUtils::MM_Unix'     => '1.12603 ',
+            'ExtUtils::MM_Unix'     => '1.12603',
             'ExtUtils::MakeMaker'   => '5.45',
             'File::Copy'            => '2.03',
             'File::Glob'            => '0.991',
@@ -862,7 +893,7 @@ for my $version ( sort { $a <=> $b } keys %released ) {
     5.006002 => {
         delta_from => 5.006001,
         changed => {
-            'CPAN::FirstTime'       => '1.53 ',
+            'CPAN::FirstTime'       => '1.53',
             'DB_File'               => '1.806',
             'Data::Dumper'          => '2.121',
             'ExtUtils::Command'     => '1.05',
@@ -953,7 +984,7 @@ for my $version ( sort { $a <=> $b } keys %released ) {
             'CGI::Switch'           => '1.00',
             'CGI::Util'             => '1.3',
             'CPAN'                  => '1.59_56',
-            'CPAN::FirstTime'       => '1.54 ',
+            'CPAN::FirstTime'       => '1.54',
             'CPAN::Nox'             => '1.00_01',
             'Carp'                  => '1.01',
             'Carp::Heavy'           => '1.01',
@@ -1223,7 +1254,7 @@ for my $version ( sort { $a <=> $b } keys %released ) {
             'CGI'                   => '2.81',
             'CGI::Carp'             => '1.23',
             'CPAN'                  => '1.61',
-            'CPAN::FirstTime'       => '1.56 ',
+            'CPAN::FirstTime'       => '1.56',
             'CPAN::Nox'             => '1.02',
             'Digest::MD5'           => '2.20',
             'Dumpvalue'             => '1.11',
@@ -1374,7 +1405,7 @@ for my $version ( sort { $a <=> $b } keys %released ) {
             'CGI::Pretty'           => '1.07_00',
             'CGI::Util'             => '1.31',
             'CPAN'                  => '1.76_01',
-            'CPAN::FirstTime'       => '1.60 ',
+            'CPAN::FirstTime'       => '1.60',
             'CPAN::Nox'             => '1.03',
             'Class::Struct'         => '0.63',
             'Cwd'                   => '2.08',
@@ -10487,11 +10518,1793 @@ for my $version ( sort { $a <=> $b } keys %released ) {
         }
     },
     5.021006 => {
-        delta_from => 5.021004,
-        changed => {
+        delta_from => 5.021005,
+        changed => {
+            'App::Prove'            => '3.34',
+            'App::Prove::State'     => '3.34',
+            'App::Prove::State::Result'=> '3.34',
+            'App::Prove::State::Result::Test'=> '3.34',
+            'B'                     => '1.53',
+            'B::Concise'            => '0.995',
+            'B::Deparse'            => '1.30',
+            'B::Op_private'         => '5.021006',
+            'CPAN::Meta'            => '2.143240',
+            'CPAN::Meta::Converter' => '2.143240',
+            'CPAN::Meta::Feature'   => '2.143240',
+            'CPAN::Meta::History'   => '2.143240',
+            'CPAN::Meta::Merge'     => '2.143240',
+            'CPAN::Meta::Prereqs'   => '2.143240',
+            'CPAN::Meta::Requirements'=> '2.130',
+            'CPAN::Meta::Spec'      => '2.143240',
+            'CPAN::Meta::Validator' => '2.143240',
+            'Config'                => '5.021006',
+            'Devel::Peek'           => '1.19',
+            'Digest::SHA'           => '5.93',
+            'DynaLoader'            => '1.28',
+            'Encode'                => '2.64',
+            'Exporter'              => '5.72',
+            'Exporter::Heavy'       => '5.72',
+            'ExtUtils::Command::MM' => '7.02',
+            'ExtUtils::Liblist'     => '7.02',
+            'ExtUtils::Liblist::Kid'=> '7.02',
+            'ExtUtils::MM'          => '7.02',
+            'ExtUtils::MM_AIX'      => '7.02',
+            'ExtUtils::MM_Any'      => '7.02',
+            'ExtUtils::MM_BeOS'     => '7.02',
+            'ExtUtils::MM_Cygwin'   => '7.02',
+            'ExtUtils::MM_DOS'      => '7.02',
+            'ExtUtils::MM_Darwin'   => '7.02',
+            'ExtUtils::MM_MacOS'    => '7.02',
+            'ExtUtils::MM_NW5'      => '7.02',
+            'ExtUtils::MM_OS2'      => '7.02',
+            'ExtUtils::MM_QNX'      => '7.02',
+            'ExtUtils::MM_UWIN'     => '7.02',
+            'ExtUtils::MM_Unix'     => '7.02',
+            'ExtUtils::MM_VMS'      => '7.02',
+            'ExtUtils::MM_VOS'      => '7.02',
+            'ExtUtils::MM_Win32'    => '7.02',
+            'ExtUtils::MM_Win95'    => '7.02',
+            'ExtUtils::MY'          => '7.02',
+            'ExtUtils::MakeMaker'   => '7.02',
+            'ExtUtils::MakeMaker::Config'=> '7.02',
+            'ExtUtils::MakeMaker::Locale'=> '7.02',
+            'ExtUtils::MakeMaker::version'=> '7.02',
+            'ExtUtils::MakeMaker::version::regex'=> '7.02',
+            'ExtUtils::MakeMaker::version::vpp'=> '7.02',
+            'ExtUtils::Manifest'    => '1.69',
+            'ExtUtils::Mkbootstrap' => '7.02',
+            'ExtUtils::Mksymlists'  => '7.02',
+            'ExtUtils::ParseXS'     => '3.26',
+            'ExtUtils::ParseXS::Constants'=> '3.26',
+            'ExtUtils::ParseXS::CountLines'=> '3.26',
+            'ExtUtils::ParseXS::Eval'=> '3.26',
+            'ExtUtils::ParseXS::Utilities'=> '3.26',
+            'ExtUtils::testlib'     => '7.02',
+            'File::Spec::VMS'       => '3.52',
+            'HTTP::Tiny'            => '0.051',
+            'I18N::Langinfo'        => '0.12',
+            'IO::Socket'            => '1.38',
+            'Module::CoreList'      => '5.20141120',
+            'Module::CoreList::TieHashDelta'=> '5.20141120',
+            'Module::CoreList::Utils'=> '5.20141120',
+            'POSIX'                 => '1.46',
+            'PerlIO::encoding'      => '0.20',
+            'PerlIO::scalar'        => '0.20',
+            'TAP::Base'             => '3.34',
+            'TAP::Formatter::Base'  => '3.34',
+            'TAP::Formatter::Color' => '3.34',
+            'TAP::Formatter::Console'=> '3.34',
+            'TAP::Formatter::Console::ParallelSession'=> '3.34',
+            'TAP::Formatter::Console::Session'=> '3.34',
+            'TAP::Formatter::File'  => '3.34',
+            'TAP::Formatter::File::Session'=> '3.34',
+            'TAP::Formatter::Session'=> '3.34',
+            'TAP::Harness'          => '3.34',
+            'TAP::Harness::Env'     => '3.34',
+            'TAP::Object'           => '3.34',
+            'TAP::Parser'           => '3.34',
+            'TAP::Parser::Aggregator'=> '3.34',
+            'TAP::Parser::Grammar'  => '3.34',
+            'TAP::Parser::Iterator' => '3.34',
+            'TAP::Parser::Iterator::Array'=> '3.34',
+            'TAP::Parser::Iterator::Process'=> '3.34',
+            'TAP::Parser::Iterator::Stream'=> '3.34',
+            'TAP::Parser::IteratorFactory'=> '3.34',
+            'TAP::Parser::Multiplexer'=> '3.34',
+            'TAP::Parser::Result'   => '3.34',
+            'TAP::Parser::Result::Bailout'=> '3.34',
+            'TAP::Parser::Result::Comment'=> '3.34',
+            'TAP::Parser::Result::Plan'=> '3.34',
+            'TAP::Parser::Result::Pragma'=> '3.34',
+            'TAP::Parser::Result::Test'=> '3.34',
+            'TAP::Parser::Result::Unknown'=> '3.34',
+            'TAP::Parser::Result::Version'=> '3.34',
+            'TAP::Parser::Result::YAML'=> '3.34',
+            'TAP::Parser::ResultFactory'=> '3.34',
+            'TAP::Parser::Scheduler'=> '3.34',
+            'TAP::Parser::Scheduler::Job'=> '3.34',
+            'TAP::Parser::Scheduler::Spinner'=> '3.34',
+            'TAP::Parser::Source'   => '3.34',
+            'TAP::Parser::SourceHandler'=> '3.34',
+            'TAP::Parser::SourceHandler::Executable'=> '3.34',
+            'TAP::Parser::SourceHandler::File'=> '3.34',
+            'TAP::Parser::SourceHandler::Handle'=> '3.34',
+            'TAP::Parser::SourceHandler::Perl'=> '3.34',
+            'TAP::Parser::SourceHandler::RawTAP'=> '3.34',
+            'TAP::Parser::YAMLish::Reader'=> '3.34',
+            'TAP::Parser::YAMLish::Writer'=> '3.34',
+            'Test::Builder'         => '1.301001_075',
+            'Test::Builder::Module' => '1.301001_075',
+            'Test::Builder::Tester' => '1.301001_075',
+            'Test::Builder::Tester::Color'=> '1.301001_075',
+            'Test::Harness'         => '3.34',
+            'Test::More'            => '1.301001_075',
+            'Test::More::DeepCheck' => undef,
+            'Test::More::DeepCheck::Strict'=> undef,
+            'Test::More::DeepCheck::Tolerant'=> undef,
+            'Test::More::Tools'     => undef,
+            'Test::MostlyLike'      => undef,
+            'Test::Simple'          => '1.301001_075',
+            'Test::Stream'          => '1.301001_075',
+            'Test::Stream::ArrayBase'=> undef,
+            'Test::Stream::ArrayBase::Meta'=> undef,
+            'Test::Stream::Carp'    => undef,
+            'Test::Stream::Context' => undef,
+            'Test::Stream::Event'   => undef,
+            'Test::Stream::Event::Bail'=> undef,
+            'Test::Stream::Event::Child'=> undef,
+            'Test::Stream::Event::Diag'=> undef,
+            'Test::Stream::Event::Finish'=> undef,
+            'Test::Stream::Event::Note'=> undef,
+            'Test::Stream::Event::Ok'=> undef,
+            'Test::Stream::Event::Plan'=> undef,
+            'Test::Stream::Event::Subtest'=> undef,
+            'Test::Stream::ExitMagic'=> undef,
+            'Test::Stream::ExitMagic::Context'=> undef,
+            'Test::Stream::Exporter'=> undef,
+            'Test::Stream::Exporter::Meta'=> undef,
+            'Test::Stream::IOSets'  => undef,
+            'Test::Stream::Meta'    => undef,
+            'Test::Stream::PackageUtil'=> undef,
+            'Test::Stream::Tester'  => undef,
+            'Test::Stream::Tester::Checks'=> undef,
+            'Test::Stream::Tester::Checks::Event'=> undef,
+            'Test::Stream::Tester::Events'=> undef,
+            'Test::Stream::Tester::Events::Event'=> undef,
+            'Test::Stream::Tester::Grab'=> undef,
+            'Test::Stream::Threads' => undef,
+            'Test::Stream::Toolset' => undef,
+            'Test::Stream::Util'    => undef,
+            'Test::Tester'          => '1.301001_075',
+            'Test::Tester::Capture' => undef,
+            'Test::use::ok'         => '1.301001_075',
+            'Unicode::UCD'          => '0.59',
+            'XS::APItest'           => '0.68',
+            'XSLoader'              => '0.19',
+            'experimental'          => '0.013',
+            'locale'                => '1.05',
+            'ok'                    => '1.301001_075',
+            'overload'              => '1.24',
+            're'                    => '0.28',
+            'warnings'              => '1.29',
+        },
+        removed => {
+        }
+    },
+    5.021007 => {
+        delta_from => 5.021006,
+        changed => {
+            'Archive::Tar'          => '2.04',
+            'Archive::Tar::Constant'=> '2.04',
+            'Archive::Tar::File'    => '2.04',
+            'B'                     => '1.54',
+            'B::Concise'            => '0.996',
+            'B::Deparse'            => '1.31',
+            'B::Op_private'         => '5.021007',
+            'B::Showlex'            => '1.05',
+            'Compress::Raw::Bzip2'  => '2.067',
+            'Compress::Raw::Zlib'   => '2.067',
+            'Compress::Zlib'        => '2.067',
+            'Config'                => '5.021007',
+            'Cwd'                   => '3.54',
+            'DB_File'               => '1.834',
+            'Data::Dumper'          => '2.155',
+            'Devel::PPPort'         => '3.25',
+            'Devel::Peek'           => '1.20',
+            'DynaLoader'            => '1.29',
+            'Encode'                => '2.67',
+            'Errno'                 => '1.22',
+            'ExtUtils::CBuilder'    => '0.280221',
+            'ExtUtils::CBuilder::Base'=> '0.280221',
+            'ExtUtils::CBuilder::Platform::Unix'=> '0.280221',
+            'ExtUtils::CBuilder::Platform::VMS'=> '0.280221',
+            'ExtUtils::CBuilder::Platform::Windows'=> '0.280221',
+            'ExtUtils::CBuilder::Platform::aix'=> '0.280221',
+            'ExtUtils::CBuilder::Platform::android'=> '0.280221',
+            'ExtUtils::CBuilder::Platform::cygwin'=> '0.280221',
+            'ExtUtils::CBuilder::Platform::darwin'=> '0.280221',
+            'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280221',
+            'ExtUtils::CBuilder::Platform::os2'=> '0.280221',
+            'ExtUtils::Command::MM' => '7.04',
+            'ExtUtils::Liblist'     => '7.04',
+            'ExtUtils::Liblist::Kid'=> '7.04',
+            'ExtUtils::MM'          => '7.04',
+            'ExtUtils::MM_AIX'      => '7.04',
+            'ExtUtils::MM_Any'      => '7.04',
+            'ExtUtils::MM_BeOS'     => '7.04',
+            'ExtUtils::MM_Cygwin'   => '7.04',
+            'ExtUtils::MM_DOS'      => '7.04',
+            'ExtUtils::MM_Darwin'   => '7.04',
+            'ExtUtils::MM_MacOS'    => '7.04',
+            'ExtUtils::MM_NW5'      => '7.04',
+            'ExtUtils::MM_OS2'      => '7.04',
+            'ExtUtils::MM_QNX'      => '7.04',
+            'ExtUtils::MM_UWIN'     => '7.04',
+            'ExtUtils::MM_Unix'     => '7.04',
+            'ExtUtils::MM_VMS'      => '7.04',
+            'ExtUtils::MM_VOS'      => '7.04',
+            'ExtUtils::MM_Win32'    => '7.04',
+            'ExtUtils::MM_Win95'    => '7.04',
+            'ExtUtils::MY'          => '7.04',
+            'ExtUtils::MakeMaker'   => '7.04',
+            'ExtUtils::MakeMaker::Config'=> '7.04',
+            'ExtUtils::MakeMaker::Locale'=> '7.04',
+            'ExtUtils::MakeMaker::version'=> '7.04',
+            'ExtUtils::MakeMaker::version::regex'=> '7.04',
+            'ExtUtils::MakeMaker::version::vpp'=> '7.04',
+            'ExtUtils::Mkbootstrap' => '7.04',
+            'ExtUtils::Mksymlists'  => '7.04',
+            'ExtUtils::ParseXS'     => '3.27',
+            'ExtUtils::ParseXS::Constants'=> '3.27',
+            'ExtUtils::ParseXS::CountLines'=> '3.27',
+            'ExtUtils::ParseXS::Eval'=> '3.27',
+            'ExtUtils::ParseXS::Utilities'=> '3.27',
+            'ExtUtils::testlib'     => '7.04',
+            'File::Spec'            => '3.53',
+            'File::Spec::Cygwin'    => '3.54',
+            'File::Spec::Epoc'      => '3.54',
+            'File::Spec::Functions' => '3.54',
+            'File::Spec::Mac'       => '3.54',
+            'File::Spec::OS2'       => '3.54',
+            'File::Spec::Unix'      => '3.54',
+            'File::Spec::VMS'       => '3.54',
+            'File::Spec::Win32'     => '3.54',
+            'Filter::Util::Call'    => '1.51',
+            'HTTP::Tiny'            => '0.053',
+            'IO'                    => '1.35',
+            'IO::Compress::Adapter::Bzip2'=> '2.067',
+            'IO::Compress::Adapter::Deflate'=> '2.067',
+            'IO::Compress::Adapter::Identity'=> '2.067',
+            'IO::Compress::Base'    => '2.067',
+            'IO::Compress::Base::Common'=> '2.067',
+            'IO::Compress::Bzip2'   => '2.067',
+            'IO::Compress::Deflate' => '2.067',
+            'IO::Compress::Gzip'    => '2.067',
+            'IO::Compress::Gzip::Constants'=> '2.067',
+            'IO::Compress::RawDeflate'=> '2.067',
+            'IO::Compress::Zip'     => '2.067',
+            'IO::Compress::Zip::Constants'=> '2.067',
+            'IO::Compress::Zlib::Constants'=> '2.067',
+            'IO::Compress::Zlib::Extra'=> '2.067',
+            'IO::Socket::IP'        => '0.34',
+            'IO::Uncompress::Adapter::Bunzip2'=> '2.067',
+            'IO::Uncompress::Adapter::Identity'=> '2.067',
+            'IO::Uncompress::Adapter::Inflate'=> '2.067',
+            'IO::Uncompress::AnyInflate'=> '2.067',
+            'IO::Uncompress::AnyUncompress'=> '2.067',
+            'IO::Uncompress::Base'  => '2.067',
+            'IO::Uncompress::Bunzip2'=> '2.067',
+            'IO::Uncompress::Gunzip'=> '2.067',
+            'IO::Uncompress::Inflate'=> '2.067',
+            'IO::Uncompress::RawInflate'=> '2.067',
+            'IO::Uncompress::Unzip' => '2.067',
+            'Locale::Codes'         => '3.33',
+            'Locale::Codes::Constants'=> '3.33',
+            'Locale::Codes::Country'=> '3.33',
+            'Locale::Codes::Country_Codes'=> '3.33',
+            'Locale::Codes::Country_Retired'=> '3.33',
+            'Locale::Codes::Currency'=> '3.33',
+            'Locale::Codes::Currency_Codes'=> '3.33',
+            'Locale::Codes::Currency_Retired'=> '3.33',
+            'Locale::Codes::LangExt'=> '3.33',
+            'Locale::Codes::LangExt_Codes'=> '3.33',
+            'Locale::Codes::LangExt_Retired'=> '3.33',
+            'Locale::Codes::LangFam'=> '3.33',
+            'Locale::Codes::LangFam_Codes'=> '3.33',
+            'Locale::Codes::LangFam_Retired'=> '3.33',
+            'Locale::Codes::LangVar'=> '3.33',
+            'Locale::Codes::LangVar_Codes'=> '3.33',
+            'Locale::Codes::LangVar_Retired'=> '3.33',
+            'Locale::Codes::Language'=> '3.33',
+            'Locale::Codes::Language_Codes'=> '3.33',
+            'Locale::Codes::Language_Retired'=> '3.33',
+            'Locale::Codes::Script' => '3.33',
+            'Locale::Codes::Script_Codes'=> '3.33',
+            'Locale::Codes::Script_Retired'=> '3.33',
+            'Locale::Country'       => '3.33',
+            'Locale::Currency'      => '3.33',
+            'Locale::Language'      => '3.33',
+            'Locale::Maketext'      => '1.26',
+            'Locale::Script'        => '3.33',
+            'Module::CoreList'      => '5.20141220',
+            'Module::CoreList::TieHashDelta'=> '5.20141220',
+            'Module::CoreList::Utils'=> '5.20141220',
+            'NDBM_File'             => '1.14',
+            'Net::Cmd'              => '3.04',
+            'Net::Config'           => '3.04',
+            'Net::Domain'           => '3.04',
+            'Net::FTP'              => '3.04',
+            'Net::FTP::A'           => '3.04',
+            'Net::FTP::E'           => '3.04',
+            'Net::FTP::I'           => '3.04',
+            'Net::FTP::L'           => '3.04',
+            'Net::FTP::dataconn'    => '3.04',
+            'Net::NNTP'             => '3.04',
+            'Net::Netrc'            => '3.04',
+            'Net::POP3'             => '3.04',
+            'Net::SMTP'             => '3.04',
+            'Net::Time'             => '3.04',
+            'Opcode'                => '1.30',
+            'POSIX'                 => '1.48',
+            'PerlIO::scalar'        => '0.21',
+            'Pod::Escapes'          => '1.07',
+            'SDBM_File'             => '1.12',
+            'Storable'              => '2.52',
+            'Sys::Hostname'         => '1.20',
+            'Test::Builder'         => '1.301001_090',
+            'Test::Builder::Module' => '1.301001_090',
+            'Test::Builder::Tester' => '1.301001_090',
+            'Test::Builder::Tester::Color'=> '1.301001_090',
+            'Test::CanFork'         => undef,
+            'Test::CanThread'       => undef,
+            'Test::More'            => '1.301001_090',
+            'Test::Simple'          => '1.301001_090',
+            'Test::Stream'          => '1.301001_090',
+            'Test::Stream::API'     => undef,
+            'Test::Stream::ForceExit'=> undef,
+            'Test::Stream::Subtest' => undef,
+            'Test::Tester'          => '1.301001_090',
+            'Test::use::ok'         => '1.301001_090',
+            'Unicode::Collate'      => '1.09',
+            'Unicode::Collate::CJK::Big5'=> '1.09',
+            'Unicode::Collate::CJK::GB2312'=> '1.09',
+            'Unicode::Collate::CJK::JISX0208'=> '1.09',
+            'Unicode::Collate::CJK::Korean'=> '1.09',
+            'Unicode::Collate::CJK::Pinyin'=> '1.09',
+            'Unicode::Collate::CJK::Stroke'=> '1.09',
+            'Unicode::Collate::CJK::Zhuyin'=> '1.09',
+            'Unicode::Collate::Locale'=> '1.09',
+            'XS::APItest'           => '0.69',
+            'XSLoader'              => '0.20',
+            '_charnames'            => '1.43',
+            'arybase'               => '0.09',
+            'charnames'             => '1.43',
+            'feature'               => '1.39',
+            'mro'                   => '1.17',
+            'ok'                    => '1.301001_090',
+            'strict'                => '1.09',
+            'threads'               => '1.96_001',
+        },
+        removed => {
+        }
+    },
+    5.021008 => {
+        delta_from => 5.021007,
+        changed => {
+            'App::Prove'            => '3.35',
+            'App::Prove::State'     => '3.35',
+            'App::Prove::State::Result'=> '3.35',
+            'App::Prove::State::Result::Test'=> '3.35',
+            'B'                     => '1.55',
+            'B::Deparse'            => '1.32',
+            'B::Op_private'         => '5.021008',
+            'CPAN::Meta::Requirements'=> '2.131',
+            'Compress::Raw::Bzip2'  => '2.068',
+            'Compress::Raw::Zlib'   => '2.068',
+            'Compress::Zlib'        => '2.068',
+            'Config'                => '5.021008',
+            'DB_File'               => '1.835',
+            'Data::Dumper'          => '2.156',
+            'Devel::PPPort'         => '3.28',
+            'Devel::Peek'           => '1.21',
+            'Digest::MD5'           => '2.54',
+            'Digest::SHA'           => '5.95',
+            'DynaLoader'            => '1.30',
+            'ExtUtils::Command'     => '1.20',
+            'ExtUtils::Manifest'    => '1.70',
+            'Fatal'                 => '2.26',
+            'File::Glob'            => '1.24',
+            'Filter::Util::Call'    => '1.54',
+            'Getopt::Long'          => '2.43',
+            'IO::Compress::Adapter::Bzip2'=> '2.068',
+            'IO::Compress::Adapter::Deflate'=> '2.068',
+            'IO::Compress::Adapter::Identity'=> '2.068',
+            'IO::Compress::Base'    => '2.068',
+            'IO::Compress::Base::Common'=> '2.068',
+            'IO::Compress::Bzip2'   => '2.068',
+            'IO::Compress::Deflate' => '2.068',
+            'IO::Compress::Gzip'    => '2.068',
+            'IO::Compress::Gzip::Constants'=> '2.068',
+            'IO::Compress::RawDeflate'=> '2.068',
+            'IO::Compress::Zip'     => '2.068',
+            'IO::Compress::Zip::Constants'=> '2.068',
+            'IO::Compress::Zlib::Constants'=> '2.068',
+            'IO::Compress::Zlib::Extra'=> '2.068',
+            'IO::Socket::IP'        => '0.36',
+            'IO::Uncompress::Adapter::Bunzip2'=> '2.068',
+            'IO::Uncompress::Adapter::Identity'=> '2.068',
+            'IO::Uncompress::Adapter::Inflate'=> '2.068',
+            'IO::Uncompress::AnyInflate'=> '2.068',
+            'IO::Uncompress::AnyUncompress'=> '2.068',
+            'IO::Uncompress::Base'  => '2.068',
+            'IO::Uncompress::Bunzip2'=> '2.068',
+            'IO::Uncompress::Gunzip'=> '2.068',
+            'IO::Uncompress::Inflate'=> '2.068',
+            'IO::Uncompress::RawInflate'=> '2.068',
+            'IO::Uncompress::Unzip' => '2.068',
+            'MIME::Base64'          => '3.15',
+            'Module::CoreList'      => '5.20150220',
+            'Module::CoreList::TieHashDelta'=> '5.20150220',
+            'Module::CoreList::Utils'=> '5.20150220',
+            'Module::Load::Conditional'=> '0.64',
+            'Module::Metadata'      => '1.000026',
+            'Net::Cmd'              => '3.05',
+            'Net::Config'           => '3.05',
+            'Net::Domain'           => '3.05',
+            'Net::FTP'              => '3.05',
+            'Net::FTP::A'           => '3.05',
+            'Net::FTP::E'           => '3.05',
+            'Net::FTP::I'           => '3.05',
+            'Net::FTP::L'           => '3.05',
+            'Net::FTP::dataconn'    => '3.05',
+            'Net::NNTP'             => '3.05',
+            'Net::Netrc'            => '3.05',
+            'Net::POP3'             => '3.05',
+            'Net::SMTP'             => '3.05',
+            'Net::Time'             => '3.05',
+            'Opcode'                => '1.31',
+            'POSIX'                 => '1.49',
+            'PerlIO::encoding'      => '0.21',
+            'Pod::Simple'           => '3.29',
+            'Pod::Simple::BlackBox' => '3.29',
+            'Pod::Simple::Checker'  => '3.29',
+            'Pod::Simple::Debug'    => '3.29',
+            'Pod::Simple::DumpAsText'=> '3.29',
+            'Pod::Simple::DumpAsXML'=> '3.29',
+            'Pod::Simple::HTML'     => '3.29',
+            'Pod::Simple::HTMLBatch'=> '3.29',
+            'Pod::Simple::LinkSection'=> '3.29',
+            'Pod::Simple::Methody'  => '3.29',
+            'Pod::Simple::Progress' => '3.29',
+            'Pod::Simple::PullParser'=> '3.29',
+            'Pod::Simple::PullParserEndToken'=> '3.29',
+            'Pod::Simple::PullParserStartToken'=> '3.29',
+            'Pod::Simple::PullParserTextToken'=> '3.29',
+            'Pod::Simple::PullParserToken'=> '3.29',
+            'Pod::Simple::RTF'      => '3.29',
+            'Pod::Simple::Search'   => '3.29',
+            'Pod::Simple::SimpleTree'=> '3.29',
+            'Pod::Simple::Text'     => '3.29',
+            'Pod::Simple::TextContent'=> '3.29',
+            'Pod::Simple::TiedOutFH'=> '3.29',
+            'Pod::Simple::Transcode'=> '3.29',
+            'Pod::Simple::TranscodeDumb'=> '3.29',
+            'Pod::Simple::TranscodeSmart'=> '3.29',
+            'Pod::Simple::XHTML'    => '3.29',
+            'Pod::Simple::XMLOutStream'=> '3.29',
+            'SDBM_File'             => '1.13',
+            'Safe'                  => '2.39',
+            'TAP::Base'             => '3.35',
+            'TAP::Formatter::Base'  => '3.35',
+            'TAP::Formatter::Color' => '3.35',
+            'TAP::Formatter::Console'=> '3.35',
+            'TAP::Formatter::Console::ParallelSession'=> '3.35',
+            'TAP::Formatter::Console::Session'=> '3.35',
+            'TAP::Formatter::File'  => '3.35',
+            'TAP::Formatter::File::Session'=> '3.35',
+            'TAP::Formatter::Session'=> '3.35',
+            'TAP::Harness'          => '3.35',
+            'TAP::Harness::Env'     => '3.35',
+            'TAP::Object'           => '3.35',
+            'TAP::Parser'           => '3.35',
+            'TAP::Parser::Aggregator'=> '3.35',
+            'TAP::Parser::Grammar'  => '3.35',
+            'TAP::Parser::Iterator' => '3.35',
+            'TAP::Parser::Iterator::Array'=> '3.35',
+            'TAP::Parser::Iterator::Process'=> '3.35',
+            'TAP::Parser::Iterator::Stream'=> '3.35',
+            'TAP::Parser::IteratorFactory'=> '3.35',
+            'TAP::Parser::Multiplexer'=> '3.35',
+            'TAP::Parser::Result'   => '3.35',
+            'TAP::Parser::Result::Bailout'=> '3.35',
+            'TAP::Parser::Result::Comment'=> '3.35',
+            'TAP::Parser::Result::Plan'=> '3.35',
+            'TAP::Parser::Result::Pragma'=> '3.35',
+            'TAP::Parser::Result::Test'=> '3.35',
+            'TAP::Parser::Result::Unknown'=> '3.35',
+            'TAP::Parser::Result::Version'=> '3.35',
+            'TAP::Parser::Result::YAML'=> '3.35',
+            'TAP::Parser::ResultFactory'=> '3.35',
+            'TAP::Parser::Scheduler'=> '3.35',
+            'TAP::Parser::Scheduler::Job'=> '3.35',
+            'TAP::Parser::Scheduler::Spinner'=> '3.35',
+            'TAP::Parser::Source'   => '3.35',
+            'TAP::Parser::SourceHandler'=> '3.35',
+            'TAP::Parser::SourceHandler::Executable'=> '3.35',
+            'TAP::Parser::SourceHandler::File'=> '3.35',
+            'TAP::Parser::SourceHandler::Handle'=> '3.35',
+            'TAP::Parser::SourceHandler::Perl'=> '3.35',
+            'TAP::Parser::SourceHandler::RawTAP'=> '3.35',
+            'TAP::Parser::YAMLish::Reader'=> '3.35',
+            'TAP::Parser::YAMLish::Writer'=> '3.35',
+            'Test::Builder'         => '1.301001_097',
+            'Test::Builder::Module' => '1.301001_097',
+            'Test::Builder::Tester' => '1.301001_097',
+            'Test::Builder::Tester::Color'=> '1.301001_097',
+            'Test::Harness'         => '3.35',
+            'Test::More'            => '1.301001_097',
+            'Test::Simple'          => '1.301001_097',
+            'Test::Stream'          => '1.301001_097',
+            'Test::Stream::Block'   => undef,
+            'Test::Tester'          => '1.301001_097',
+            'Test::Tester::CaptureRunner'=> undef,
+            'Test::Tester::Delegate'=> undef,
+            'Test::use::ok'         => '1.301001_097',
+            'Unicode::Collate'      => '1.10',
+            'Unicode::Collate::CJK::Big5'=> '1.10',
+            'Unicode::Collate::CJK::GB2312'=> '1.10',
+            'Unicode::Collate::CJK::JISX0208'=> '1.10',
+            'Unicode::Collate::CJK::Korean'=> '1.10',
+            'Unicode::Collate::CJK::Pinyin'=> '1.10',
+            'Unicode::Collate::CJK::Stroke'=> '1.10',
+            'Unicode::Collate::CJK::Zhuyin'=> '1.10',
+            'Unicode::Collate::Locale'=> '1.10',
+            'VMS::DCLsym'           => '1.06',
+            'XS::APItest'           => '0.70',
+            'arybase'               => '0.10',
+            'attributes'            => '0.25',
+            'autodie'               => '2.26',
+            'autodie::Scope::Guard' => '2.26',
+            'autodie::Scope::GuardStack'=> '2.26',
+            'autodie::ScopeUtil'    => '2.26',
+            'autodie::exception'    => '2.26',
+            'autodie::exception::system'=> '2.26',
+            'autodie::hints'        => '2.26',
+            'autodie::skip'         => '2.26',
+            'ok'                    => '1.301001_097',
+            're'                    => '0.30',
+            'warnings'              => '1.30',
+        },
+        removed => {
+        }
+    },
+    5.020002 => {
+        delta_from => 5.020001,
+        changed => {
+            'CPAN::Author'          => '5.5002',
+            'CPAN::CacheMgr'        => '5.5002',
+            'CPAN::FTP'             => '5.5006',
+            'CPAN::HTTP::Client'    => '1.9601',
+            'CPAN::HandleConfig'    => '5.5005',
+            'CPAN::Index'           => '1.9601',
+            'CPAN::LWP::UserAgent'  => '1.9601',
+            'CPAN::Mirrors'         => '1.9601',
+            'Config'                => '5.020002',
+            'Cwd'                   => '3.48_01',
+            'Data::Dumper'          => '2.151_01',
+            'Errno'                 => '1.20_05',
+            'File::Spec'            => '3.48_01',
+            'File::Spec::Cygwin'    => '3.48_01',
+            'File::Spec::Epoc'      => '3.48_01',
+            'File::Spec::Functions' => '3.48_01',
+            'File::Spec::Mac'       => '3.48_01',
+            'File::Spec::OS2'       => '3.48_01',
+            'File::Spec::Unix'      => '3.48_01',
+            'File::Spec::VMS'       => '3.48_01',
+            'File::Spec::Win32'     => '3.48_01',
+            'IO::Socket'            => '1.38',
+            'Module::CoreList'      => '5.20150214',
+            'Module::CoreList::TieHashDelta'=> '5.20150214',
+            'Module::CoreList::Utils'=> '5.20150214',
+            'PerlIO::scalar'        => '0.18_01',
+            'Pod::PlainText'        => '2.07',
+            'Storable'              => '2.49_01',
+            'VMS::DCLsym'           => '1.05_01',
+            'VMS::Stdio'            => '2.41',
+            'attributes'            => '0.23',
+            'feature'               => '1.36_01',
+        },
+        removed => {
+        }
+    },
+    5.021009 => {
+        delta_from => 5.021008,
+        changed => {
+            'B'                     => '1.56',
+            'B::Debug'              => '1.23',
+            'B::Deparse'            => '1.33',
+            'B::Op_private'         => '5.021009',
+            'Benchmark'             => '1.20',
+            'CPAN::Author'          => '5.5002',
+            'CPAN::CacheMgr'        => '5.5002',
+            'CPAN::FTP'             => '5.5006',
+            'CPAN::HTTP::Client'    => '1.9601',
+            'CPAN::HandleConfig'    => '5.5005',
+            'CPAN::Index'           => '1.9601',
+            'CPAN::LWP::UserAgent'  => '1.9601',
+            'CPAN::Meta::Requirements'=> '2.132',
+            'CPAN::Mirrors'         => '1.9601',
+            'Carp'                  => '1.35',
+            'Carp::Heavy'           => '1.35',
+            'Config'                => '5.021009',
+            'Config::Perl::V'       => '0.23',
+            'Data::Dumper'          => '2.157',
+            'Devel::Peek'           => '1.22',
+            'DynaLoader'            => '1.31',
+            'Encode'                => '2.70',
+            'Encode::MIME::Header'  => '2.16',
+            'Errno'                 => '1.23',
+            'ExtUtils::Miniperl'    => '1.04',
+            'HTTP::Tiny'            => '0.054',
+            'Module::CoreList'      => '5.20150220',
+            'Module::CoreList::TieHashDelta'=> '5.20150220',
+            'Module::CoreList::Utils'=> '5.20150220',
+            'Opcode'                => '1.32',
+            'POSIX'                 => '1.51',
+            'Perl::OSType'          => '1.008',
+            'PerlIO::scalar'        => '0.22',
+            'Pod::Find'             => '1.63',
+            'Pod::InputObjects'     => '1.63',
+            'Pod::ParseUtils'       => '1.63',
+            'Pod::Parser'           => '1.63',
+            'Pod::Perldoc'          => '3.25',
+            'Pod::Perldoc::BaseTo'  => '3.25',
+            'Pod::Perldoc::GetOptsOO'=> '3.25',
+            'Pod::Perldoc::ToANSI'  => '3.25',
+            'Pod::Perldoc::ToChecker'=> '3.25',
+            'Pod::Perldoc::ToMan'   => '3.25',
+            'Pod::Perldoc::ToNroff' => '3.25',
+            'Pod::Perldoc::ToPod'   => '3.25',
+            'Pod::Perldoc::ToRtf'   => '3.25',
+            'Pod::Perldoc::ToTerm'  => '3.25',
+            'Pod::Perldoc::ToText'  => '3.25',
+            'Pod::Perldoc::ToTk'    => '3.25',
+            'Pod::Perldoc::ToXml'   => '3.25',
+            'Pod::PlainText'        => '2.07',
+            'Pod::Select'           => '1.63',
+            'Socket'                => '2.018',
+            'Storable'              => '2.53',
+            'Test::Builder'         => '1.301001_098',
+            'Test::Builder::Module' => '1.301001_098',
+            'Test::Builder::Tester' => '1.301001_098',
+            'Test::Builder::Tester::Color'=> '1.301001_098',
+            'Test::More'            => '1.301001_098',
+            'Test::Simple'          => '1.301001_098',
+            'Test::Stream'          => '1.301001_098',
+            'Test::Tester'          => '1.301001_098',
+            'Test::use::ok'         => '1.301001_098',
+            'Unicode::Collate'      => '1.11',
+            'Unicode::Collate::CJK::Big5'=> '1.11',
+            'Unicode::Collate::CJK::GB2312'=> '1.11',
+            'Unicode::Collate::CJK::JISX0208'=> '1.11',
+            'Unicode::Collate::CJK::Korean'=> '1.11',
+            'Unicode::Collate::CJK::Pinyin'=> '1.11',
+            'Unicode::Collate::CJK::Stroke'=> '1.11',
+            'Unicode::Collate::CJK::Zhuyin'=> '1.11',
+            'Unicode::Collate::Locale'=> '1.11',
+            'Unicode::UCD'          => '0.61',
+            'VMS::Stdio'            => '2.41',
+            'Win32'                 => '0.51',
+            'Win32API::File'        => '0.1202',
+            'attributes'            => '0.26',
+            'bigint'                => '0.39',
+            'bignum'                => '0.39',
+            'bigrat'                => '0.39',
+            'constant'              => '1.33',
+            'encoding'              => '2.13',
+            'feature'               => '1.40',
+            'ok'                    => '1.301001_098',
+            'overload'              => '1.25',
+            'perlfaq'               => '5.021009',
+            're'                    => '0.31',
+            'threads::shared'       => '1.48',
+            'warnings'              => '1.31',
+        },
+        removed => {
+        }
+    },
+    5.021010 => {
+        delta_from => 5.021009,
+        changed => {
+            'App::Cpan'             => '1.63',
+            'B'                     => '1.57',
+            'B::Deparse'            => '1.34',
+            'B::Op_private'         => '5.021010',
+            'Benchmark'             => '1.2',
+            'CPAN'                  => '2.10',
+            'CPAN::Distribution'    => '2.04',
+            'CPAN::FirstTime'       => '5.5307',
+            'CPAN::HTTP::Credentials'=> '1.9601',
+            'CPAN::HandleConfig'    => '5.5006',
+            'CPAN::Meta'            => '2.150001',
+            'CPAN::Meta::Converter' => '2.150001',
+            'CPAN::Meta::Feature'   => '2.150001',
+            'CPAN::Meta::History'   => '2.150001',
+            'CPAN::Meta::Merge'     => '2.150001',
+            'CPAN::Meta::Prereqs'   => '2.150001',
+            'CPAN::Meta::Spec'      => '2.150001',
+            'CPAN::Meta::Validator' => '2.150001',
+            'CPAN::Module'          => '5.5002',
+            'CPAN::Plugin'          => '0.95',
+            'CPAN::Plugin::Specfile'=> '0.01',
+            'CPAN::Shell'           => '5.5005',
+            'Carp'                  => '1.36',
+            'Carp::Heavy'           => '1.36',
+            'Config'                => '5.02101',
+            'Cwd'                   => '3.55',
+            'DB'                    => '1.08',
+            'Data::Dumper'          => '2.158',
+            'Devel::PPPort'         => '3.31',
+            'DynaLoader'            => '1.32',
+            'Encode'                => '2.72',
+            'Encode::Alias'         => '2.19',
+            'File::Spec'            => '3.55',
+            'File::Spec::Cygwin'    => '3.55',
+            'File::Spec::Epoc'      => '3.55',
+            'File::Spec::Functions' => '3.55',
+            'File::Spec::Mac'       => '3.55',
+            'File::Spec::OS2'       => '3.55',
+            'File::Spec::Unix'      => '3.55',
+            'File::Spec::VMS'       => '3.55',
+            'File::Spec::Win32'     => '3.55',
+            'Getopt::Long'          => '2.45',
+            'Locale::Codes'         => '3.34',
+            'Locale::Codes::Constants'=> '3.34',
+            'Locale::Codes::Country'=> '3.34',
+            'Locale::Codes::Country_Codes'=> '3.34',
+            'Locale::Codes::Country_Retired'=> '3.34',
+            'Locale::Codes::Currency'=> '3.34',
+            'Locale::Codes::Currency_Codes'=> '3.34',
+            'Locale::Codes::Currency_Retired'=> '3.34',
+            'Locale::Codes::LangExt'=> '3.34',
+            'Locale::Codes::LangExt_Codes'=> '3.34',
+            'Locale::Codes::LangExt_Retired'=> '3.34',
+            'Locale::Codes::LangFam'=> '3.34',
+            'Locale::Codes::LangFam_Codes'=> '3.34',
+            'Locale::Codes::LangFam_Retired'=> '3.34',
+            'Locale::Codes::LangVar'=> '3.34',
+            'Locale::Codes::LangVar_Codes'=> '3.34',
+            'Locale::Codes::LangVar_Retired'=> '3.34',
+            'Locale::Codes::Language'=> '3.34',
+            'Locale::Codes::Language_Codes'=> '3.34',
+            'Locale::Codes::Language_Retired'=> '3.34',
+            'Locale::Codes::Script' => '3.34',
+            'Locale::Codes::Script_Codes'=> '3.34',
+            'Locale::Codes::Script_Retired'=> '3.34',
+            'Locale::Country'       => '3.34',
+            'Locale::Currency'      => '3.34',
+            'Locale::Language'      => '3.34',
+            'Locale::Script'        => '3.34',
+            'Module::CoreList'      => '5.20150320',
+            'Module::CoreList::TieHashDelta'=> '5.20150320',
+            'Module::CoreList::Utils'=> '5.20150320',
+            'POSIX'                 => '1.52',
+            'Pod::Functions'        => '1.09',
+            'Pod::Functions::Functions'=> '1.09',
+            'Term::Complete'        => '1.403',
+            'Test::Builder'         => '1.001014',
+            'Test::Builder::IO::Scalar'=> '2.113',
+            'Test::Builder::Module' => '1.001014',
+            'Test::Builder::Tester' => '1.28',
+            'Test::Builder::Tester::Color'=> '1.290001',
+            'Test::More'            => '1.001014',
+            'Test::Simple'          => '1.001014',
+            'Test::Tester'          => '0.114',
+            'Test::use::ok'         => '0.16',
+            'Text::Balanced'        => '2.03',
+            'Text::ParseWords'      => '3.30',
+            'Unicode::Collate'      => '1.12',
+            'Unicode::Collate::CJK::Big5'=> '1.12',
+            'Unicode::Collate::CJK::GB2312'=> '1.12',
+            'Unicode::Collate::CJK::JISX0208'=> '1.12',
+            'Unicode::Collate::CJK::Korean'=> '1.12',
+            'Unicode::Collate::CJK::Pinyin'=> '1.12',
+            'Unicode::Collate::CJK::Stroke'=> '1.12',
+            'Unicode::Collate::CJK::Zhuyin'=> '1.12',
+            'Unicode::Collate::Locale'=> '1.12',
+            'XS::APItest'           => '0.71',
+            'encoding'              => '2.14',
+            'locale'                => '1.06',
+            'meta_notation'         => undef,
+            'ok'                    => '0.16',
+            'parent'                => '0.232',
+            're'                    => '0.32',
+            'sigtrap'               => '1.08',
+            'threads'               => '2.01',
+            'utf8'                  => '1.15',
+        },
+        removed => {
+            'Test::CanFork'         => 1,
+            'Test::CanThread'       => 1,
+            'Test::More::DeepCheck' => 1,
+            'Test::More::DeepCheck::Strict'=> 1,
+            'Test::More::DeepCheck::Tolerant'=> 1,
+            'Test::More::Tools'     => 1,
+            'Test::MostlyLike'      => 1,
+            'Test::Stream'          => 1,
+            'Test::Stream::API'     => 1,
+            'Test::Stream::ArrayBase'=> 1,
+            'Test::Stream::ArrayBase::Meta'=> 1,
+            'Test::Stream::Block'   => 1,
+            'Test::Stream::Carp'    => 1,
+            'Test::Stream::Context' => 1,
+            'Test::Stream::Event'   => 1,
+            'Test::Stream::Event::Bail'=> 1,
+            'Test::Stream::Event::Child'=> 1,
+            'Test::Stream::Event::Diag'=> 1,
+            'Test::Stream::Event::Finish'=> 1,
+            'Test::Stream::Event::Note'=> 1,
+            'Test::Stream::Event::Ok'=> 1,
+            'Test::Stream::Event::Plan'=> 1,
+            'Test::Stream::Event::Subtest'=> 1,
+            'Test::Stream::ExitMagic'=> 1,
+            'Test::Stream::ExitMagic::Context'=> 1,
+            'Test::Stream::Exporter'=> 1,
+            'Test::Stream::Exporter::Meta'=> 1,
+            'Test::Stream::ForceExit'=> 1,
+            'Test::Stream::IOSets'  => 1,
+            'Test::Stream::Meta'    => 1,
+            'Test::Stream::PackageUtil'=> 1,
+            'Test::Stream::Subtest' => 1,
+            'Test::Stream::Tester'  => 1,
+            'Test::Stream::Tester::Checks'=> 1,
+            'Test::Stream::Tester::Checks::Event'=> 1,
+            'Test::Stream::Tester::Events'=> 1,
+            'Test::Stream::Tester::Events::Event'=> 1,
+            'Test::Stream::Tester::Grab'=> 1,
+            'Test::Stream::Threads' => 1,
+            'Test::Stream::Toolset' => 1,
+            'Test::Stream::Util'    => 1,
+        }
+    },
+    5.021011 => {
+        delta_from => 5.021010,
+        changed => {
+            'B'                     => '1.58',
+            'B::Deparse'            => '1.35',
+            'B::Op_private'         => '5.021011',
+            'CPAN'                  => '2.11',
+            'Config'                => '5.021011',
+            'Config::Perl::V'       => '0.24',
+            'Cwd'                   => '3.56',
+            'ExtUtils::Miniperl'    => '1.05',
+            'ExtUtils::ParseXS'     => '3.28',
+            'ExtUtils::ParseXS::Constants'=> '3.28',
+            'ExtUtils::ParseXS::CountLines'=> '3.28',
+            'ExtUtils::ParseXS::Eval'=> '3.28',
+            'ExtUtils::ParseXS::Utilities'=> '3.28',
+            'ExtUtils::Typemaps'    => '3.28',
+            'ExtUtils::Typemaps::Cmd'=> '3.28',
+            'ExtUtils::Typemaps::InputMap'=> '3.28',
+            'ExtUtils::Typemaps::OutputMap'=> '3.28',
+            'ExtUtils::Typemaps::Type'=> '3.28',
+            'File::Spec'            => '3.56',
+            'File::Spec::Cygwin'    => '3.56',
+            'File::Spec::Epoc'      => '3.56',
+            'File::Spec::Functions' => '3.56',
+            'File::Spec::Mac'       => '3.56',
+            'File::Spec::OS2'       => '3.56',
+            'File::Spec::Unix'      => '3.56',
+            'File::Spec::VMS'       => '3.56',
+            'File::Spec::Win32'     => '3.56',
+            'IO::Socket::IP'        => '0.37',
+            'Module::CoreList'      => '5.20150420',
+            'Module::CoreList::TieHashDelta'=> '5.20150420',
+            'Module::CoreList::Utils'=> '5.20150420',
+            'PerlIO::mmap'          => '0.014',
+            'XS::APItest'           => '0.72',
+            'attributes'            => '0.27',
+            'if'                    => '0.0604',
+            'utf8'                  => '1.16',
+            'warnings'              => '1.32',
+        },
+        removed => {
+        }
+    },
+    5.022000 => {
+        delta_from => 5.021011,
+        changed => {
+            'B::Op_private'         => '5.022000',
+            'Config'                => '5.022',
+            'ExtUtils::Command::MM' => '7.04_01',
+            'ExtUtils::Liblist'     => '7.04_01',
+            'ExtUtils::Liblist::Kid'=> '7.04_01',
+            'ExtUtils::MM'          => '7.04_01',
+            'ExtUtils::MM_AIX'      => '7.04_01',
+            'ExtUtils::MM_Any'      => '7.04_01',
+            'ExtUtils::MM_BeOS'     => '7.04_01',
+            'ExtUtils::MM_Cygwin'   => '7.04_01',
+            'ExtUtils::MM_DOS'      => '7.04_01',
+            'ExtUtils::MM_Darwin'   => '7.04_01',
+            'ExtUtils::MM_MacOS'    => '7.04_01',
+            'ExtUtils::MM_NW5'      => '7.04_01',
+            'ExtUtils::MM_OS2'      => '7.04_01',
+            'ExtUtils::MM_QNX'      => '7.04_01',
+            'ExtUtils::MM_UWIN'     => '7.04_01',
+            'ExtUtils::MM_Unix'     => '7.04_01',
+            'ExtUtils::MM_VMS'      => '7.04_01',
+            'ExtUtils::MM_VOS'      => '7.04_01',
+            'ExtUtils::MM_Win32'    => '7.04_01',
+            'ExtUtils::MM_Win95'    => '7.04_01',
+            'ExtUtils::MY'          => '7.04_01',
+            'ExtUtils::MakeMaker'   => '7.04_01',
+            'ExtUtils::MakeMaker::Config'=> '7.04_01',
+            'ExtUtils::MakeMaker::Locale'=> '7.04_01',
+            'ExtUtils::MakeMaker::version'=> '7.04_01',
+            'ExtUtils::MakeMaker::version::regex'=> '7.04_01',
+            'ExtUtils::MakeMaker::version::vpp'=> '7.04_01',
+            'ExtUtils::Mkbootstrap' => '7.04_01',
+            'ExtUtils::Mksymlists'  => '7.04_01',
+            'ExtUtils::testlib'     => '7.04_01',
+            'Module::CoreList'      => '5.20150520',
+            'Module::CoreList::TieHashDelta'=> '5.20150520',
+            'Module::CoreList::Utils'=> '5.20150520',
+            'POSIX'                 => '1.53',
+            'PerlIO::via::QuotedPrint'=> '0.08',
+            'overload'              => '1.26',
+            'utf8'                  => '1.17',
+        },
+        removed => {
+        }
+    },
+    5.023000 => {
+        delta_from => 5.022000,
+        changed => {
+            'B::Op_private'         => '5.023000',
+            'CPAN::Meta'            => '2.150005',
+            'CPAN::Meta::Converter' => '2.150005',
+            'CPAN::Meta::Feature'   => '2.150005',
+            'CPAN::Meta::History'   => '2.150005',
+            'CPAN::Meta::Merge'     => '2.150005',
+            'CPAN::Meta::Prereqs'   => '2.150005',
+            'CPAN::Meta::Requirements'=> '2.133',
+            'CPAN::Meta::Spec'      => '2.150005',
+            'CPAN::Meta::Validator' => '2.150005',
+            'CPAN::Meta::YAML'      => '0.016',
+            'Config'                => '5.023',
+            'Encode'                => '2.73',
+            'ExtUtils::CBuilder'    => '0.280223',
+            'ExtUtils::CBuilder::Base'=> '0.280223',
+            'ExtUtils::CBuilder::Platform::Unix'=> '0.280223',
+            'ExtUtils::CBuilder::Platform::VMS'=> '0.280223',
+            'ExtUtils::CBuilder::Platform::Windows'=> '0.280223',
+            'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280223',
+            'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280223',
+            'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280223',
+            'ExtUtils::CBuilder::Platform::aix'=> '0.280223',
+            'ExtUtils::CBuilder::Platform::android'=> '0.280223',
+            'ExtUtils::CBuilder::Platform::cygwin'=> '0.280223',
+            'ExtUtils::CBuilder::Platform::darwin'=> '0.280223',
+            'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280223',
+            'ExtUtils::CBuilder::Platform::os2'=> '0.280223',
+            'Fatal'                 => '2.27',
+            'Getopt::Long'          => '2.46',
+            'HTTP::Tiny'            => '0.056',
+            'List::Util'            => '1.42_01',
+            'List::Util::XS'        => '1.42_01',
+            'Locale::Codes'         => '3.35',
+            'Locale::Codes::Constants'=> '3.35',
+            'Locale::Codes::Country'=> '3.35',
+            'Locale::Codes::Country_Codes'=> '3.35',
+            'Locale::Codes::Country_Retired'=> '3.35',
+            'Locale::Codes::Currency'=> '3.35',
+            'Locale::Codes::Currency_Codes'=> '3.35',
+            'Locale::Codes::Currency_Retired'=> '3.35',
+            'Locale::Codes::LangExt'=> '3.35',
+            'Locale::Codes::LangExt_Codes'=> '3.35',
+            'Locale::Codes::LangExt_Retired'=> '3.35',
+            'Locale::Codes::LangFam'=> '3.35',
+            'Locale::Codes::LangFam_Codes'=> '3.35',
+            'Locale::Codes::LangFam_Retired'=> '3.35',
+            'Locale::Codes::LangVar'=> '3.35',
+            'Locale::Codes::LangVar_Codes'=> '3.35',
+            'Locale::Codes::LangVar_Retired'=> '3.35',
+            'Locale::Codes::Language'=> '3.35',
+            'Locale::Codes::Language_Codes'=> '3.35',
+            'Locale::Codes::Language_Retired'=> '3.35',
+            'Locale::Codes::Script' => '3.35',
+            'Locale::Codes::Script_Codes'=> '3.35',
+            'Locale::Codes::Script_Retired'=> '3.35',
+            'Locale::Country'       => '3.35',
+            'Locale::Currency'      => '3.35',
+            'Locale::Language'      => '3.35',
+            'Locale::Script'        => '3.35',
+            'Math::BigFloat'        => '1.999701',
+            'Math::BigInt'          => '1.999701',
+            'Math::BigInt::Calc'    => '1.999701',
+            'Math::BigInt::CalcEmu' => '1.999701',
+            'Math::BigRat'          => '0.260801',
+            'Module::CoreList'      => '5.20150620',
+            'Module::CoreList::TieHashDelta'=> '5.20150620',
+            'Module::CoreList::Utils'=> '5.20150620',
+            'Module::Metadata'      => '1.000027',
+            'Net::Cmd'              => '3.06',
+            'Net::Config'           => '3.06',
+            'Net::Domain'           => '3.06',
+            'Net::FTP'              => '3.06',
+            'Net::FTP::A'           => '3.06',
+            'Net::FTP::E'           => '3.06',
+            'Net::FTP::I'           => '3.06',
+            'Net::FTP::L'           => '3.06',
+            'Net::FTP::dataconn'    => '3.06',
+            'Net::NNTP'             => '3.06',
+            'Net::Netrc'            => '3.06',
+            'Net::POP3'             => '3.06',
+            'Net::SMTP'             => '3.06',
+            'Net::Time'             => '3.06',
+            'POSIX'                 => '1.54',
+            'Parse::CPAN::Meta'     => '1.4417',
+            'Pod::Simple'           => '3.30',
+            'Pod::Simple::BlackBox' => '3.30',
+            'Pod::Simple::Checker'  => '3.30',
+            'Pod::Simple::Debug'    => '3.30',
+            'Pod::Simple::DumpAsText'=> '3.30',
+            'Pod::Simple::DumpAsXML'=> '3.30',
+            'Pod::Simple::HTML'     => '3.30',
+            'Pod::Simple::HTMLBatch'=> '3.30',
+            'Pod::Simple::LinkSection'=> '3.30',
+            'Pod::Simple::Methody'  => '3.30',
+            'Pod::Simple::Progress' => '3.30',
+            'Pod::Simple::PullParser'=> '3.30',
+            'Pod::Simple::PullParserEndToken'=> '3.30',
+            'Pod::Simple::PullParserStartToken'=> '3.30',
+            'Pod::Simple::PullParserTextToken'=> '3.30',
+            'Pod::Simple::PullParserToken'=> '3.30',
+            'Pod::Simple::RTF'      => '3.30',
+            'Pod::Simple::Search'   => '3.30',
+            'Pod::Simple::SimpleTree'=> '3.30',
+            'Pod::Simple::Text'     => '3.30',
+            'Pod::Simple::TextContent'=> '3.30',
+            'Pod::Simple::TiedOutFH'=> '3.30',
+            'Pod::Simple::Transcode'=> '3.30',
+            'Pod::Simple::TranscodeDumb'=> '3.30',
+            'Pod::Simple::TranscodeSmart'=> '3.30',
+            'Pod::Simple::XHTML'    => '3.30',
+            'Pod::Simple::XMLOutStream'=> '3.30',
+            'Pod::Usage'            => '1.67',
+            'Scalar::Util'          => '1.42_01',
+            'Socket'                => '2.019',
+            'Sub::Util'             => '1.42_01',
+            'Time::Piece'           => '1.30',
+            'Time::Seconds'         => '1.30',
+            'UNIVERSAL'             => '1.13',
+            'Unicode'               => '8.0.0',
+            'XS::APItest'           => '0.73',
+            'autodie'               => '2.27',
+            'autodie::Scope::Guard' => '2.27',
+            'autodie::Scope::GuardStack'=> '2.27',
+            'autodie::Util'         => '2.27',
+            'autodie::exception'    => '2.27',
+            'autodie::exception::system'=> '2.27',
+            'autodie::hints'        => '2.27',
+            'autodie::skip'         => '2.27',
+            'encoding'              => '2.15',
+            'feature'               => '1.41',
+            'parent'                => '0.234',
+            'threads'               => '2.02',
+        },
+        removed => {
+        }
+    },
+    5.023001 => {
+        delta_from => 5.023000,
+        changed => {
+            'B::Op_private'         => '5.023001',
+            'Config'                => '5.023001',
+            'DynaLoader'            => '1.33',
+            'Encode'                => '2.75',
+            'Encode::MIME::Header'  => '2.17',
+            'Encode::Unicode'       => '2.13',
+            'Fatal'                 => '2.29',
+            'File::Path'            => '2.11',
+            'Getopt::Long'          => '2.47',
+            'I18N::Langinfo'        => '0.13',
+            'IPC::Open3'            => '1.19',
+            'Module::CoreList'      => '5.20150720',
+            'Module::CoreList::TieHashDelta'=> '5.20150720',
+            'Module::CoreList::Utils'=> '5.20150720',
+            'Net::Cmd'              => '3.07',
+            'Net::Config'           => '3.07',
+            'Net::Domain'           => '3.07',
+            'Net::FTP'              => '3.07',
+            'Net::FTP::A'           => '3.07',
+            'Net::FTP::E'           => '3.07',
+            'Net::FTP::I'           => '3.07',
+            'Net::FTP::L'           => '3.07',
+            'Net::FTP::dataconn'    => '3.07',
+            'Net::NNTP'             => '3.07',
+            'Net::Netrc'            => '3.07',
+            'Net::POP3'             => '3.07',
+            'Net::SMTP'             => '3.07',
+            'Net::Time'             => '3.07',
+            'Opcode'                => '1.33',
+            'POSIX'                 => '1.55',
+            'PerlIO::scalar'        => '0.23',
+            'Socket'                => '2.020',
+            'Storable'              => '2.54',
+            'Unicode::Collate'      => '1.14',
+            'Unicode::Collate::CJK::Big5'=> '1.14',
+            'Unicode::Collate::CJK::GB2312'=> '1.14',
+            'Unicode::Collate::CJK::JISX0208'=> '1.14',
+            'Unicode::Collate::CJK::Korean'=> '1.14',
+            'Unicode::Collate::CJK::Pinyin'=> '1.14',
+            'Unicode::Collate::CJK::Stroke'=> '1.14',
+            'Unicode::Collate::CJK::Zhuyin'=> '1.14',
+            'Unicode::Collate::Locale'=> '1.14',
+            'Unicode::Normalize'    => '1.19',
+            'XS::APItest'           => '0.74',
+            'XS::Typemap'           => '0.14',
+            'autodie'               => '2.29',
+            'autodie::Scope::Guard' => '2.29',
+            'autodie::Scope::GuardStack'=> '2.29',
+            'autodie::Util'         => '2.29',
+            'autodie::exception'    => '2.29',
+            'autodie::exception::system'=> '2.29',
+            'autodie::hints'        => '2.29',
+            'autodie::skip'         => '2.29',
+            'encoding'              => '2.16',
+            'feature'               => '1.42',
+            'warnings'              => '1.33',
+        },
+        removed => {
+            'autodie::ScopeUtil'    => 1,
+        }
+    },
+    5.023002 => {
+        delta_from => 5.023001,
+        changed => {
+            'Attribute::Handlers'   => '0.99',
+            'B::Op_private'         => '5.023002',
+            'CPAN::Meta::YAML'      => '0.017',
+            'Config'                => '5.023002',
+            'Cwd'                   => '3.57',
+            'Encode'                => '2.76',
+            'ExtUtils::ParseXS'     => '3.29',
+            'ExtUtils::ParseXS::Constants'=> '3.29',
+            'ExtUtils::ParseXS::CountLines'=> '3.29',
+            'ExtUtils::ParseXS::Eval'=> '3.29',
+            'ExtUtils::ParseXS::Utilities'=> '3.29',
+            'ExtUtils::Typemaps'    => '3.29',
+            'File::Find'            => '1.30',
+            'File::Spec'            => '3.57',
+            'File::Spec::Cygwin'    => '3.57',
+            'File::Spec::Epoc'      => '3.57',
+            'File::Spec::Functions' => '3.57',
+            'File::Spec::Mac'       => '3.57',
+            'File::Spec::OS2'       => '3.57',
+            'File::Spec::Unix'      => '3.57',
+            'File::Spec::VMS'       => '3.57',
+            'File::Spec::Win32'     => '3.57',
+            'Filter::Util::Call'    => '1.55',
+            'Hash::Util'            => '0.19',
+            'Module::CoreList'      => '5.20150820',
+            'Module::CoreList::TieHashDelta'=> '5.20150820',
+            'Module::CoreList::Utils'=> '5.20150820',
+            'POSIX'                 => '1.56',
+            'Term::Cap'             => '1.17',
+            'Unicode::UCD'          => '0.62',
+            'perlfaq'               => '5.021010',
+        },
+        removed => {
+        }
+    },
+    5.020003 => {
+        delta_from => 5.020002,
+        changed => {
+            'Config'                => '5.020003',
+            'Errno'                 => '1.20_06',
+            'Module::CoreList'      => '5.20150912',
+            'Module::CoreList::TieHashDelta'=> '5.20150912',
+            'Module::CoreList::Utils'=> '5.20150912',
+        },
+        removed => {
+        }
+    },
+    5.023003 => {
+        delta_from => 5.023002,
+        changed => {
+            'Amiga::ARexx'          => '0.02',
+            'Amiga::Exec'           => '0.01',
+            'B'                     => '1.59',
+            'B::Op_private'         => '5.023003',
+            'Carp'                  => '1.37',
+            'Carp::Heavy'           => '1.37',
+            'Compress::Raw::Zlib'   => '2.068_01',
+            'Config'                => '5.023003',
+            'Cwd'                   => '3.58',
+            'DynaLoader'            => '1.34',
+            'Encode'                => '2.77',
+            'Encode::Unicode'       => '2.14',
+            'English'               => '1.10',
+            'Errno'                 => '1.24',
+            'ExtUtils::Command'     => '7.10',
+            'ExtUtils::Command::MM' => '7.10',
+            'ExtUtils::Liblist'     => '7.10',
+            'ExtUtils::Liblist::Kid'=> '7.10',
+            'ExtUtils::MM'          => '7.10',
+            'ExtUtils::MM_AIX'      => '7.10',
+            'ExtUtils::MM_Any'      => '7.10',
+            'ExtUtils::MM_BeOS'     => '7.10',
+            'ExtUtils::MM_Cygwin'   => '7.10',
+            'ExtUtils::MM_DOS'      => '7.10',
+            'ExtUtils::MM_Darwin'   => '7.10',
+            'ExtUtils::MM_MacOS'    => '7.10',
+            'ExtUtils::MM_NW5'      => '7.10',
+            'ExtUtils::MM_OS2'      => '7.10',
+            'ExtUtils::MM_QNX'      => '7.10',
+            'ExtUtils::MM_UWIN'     => '7.10',
+            'ExtUtils::MM_Unix'     => '7.10',
+            'ExtUtils::MM_VMS'      => '7.10',
+            'ExtUtils::MM_VOS'      => '7.10',
+            'ExtUtils::MM_Win32'    => '7.10',
+            'ExtUtils::MM_Win95'    => '7.10',
+            'ExtUtils::MY'          => '7.10',
+            'ExtUtils::MakeMaker'   => '7.10',
+            'ExtUtils::MakeMaker::Config'=> '7.10',
+            'ExtUtils::MakeMaker::Locale'=> '7.10',
+            'ExtUtils::MakeMaker::version'=> '7.10',
+            'ExtUtils::MakeMaker::version::regex'=> '7.10',
+            'ExtUtils::MakeMaker::version::vpp'=> '7.10',
+            'ExtUtils::Mkbootstrap' => '7.10',
+            'ExtUtils::Mksymlists'  => '7.10',
+            'ExtUtils::ParseXS'     => '3.30',
+            'ExtUtils::ParseXS::Constants'=> '3.30',
+            'ExtUtils::ParseXS::CountLines'=> '3.30',
+            'ExtUtils::ParseXS::Eval'=> '3.30',
+            'ExtUtils::ParseXS::Utilities'=> '3.30',
+            'ExtUtils::Typemaps'    => '3.30',
+            'ExtUtils::Typemaps::Cmd'=> '3.30',
+            'ExtUtils::Typemaps::InputMap'=> '3.30',
+            'ExtUtils::Typemaps::OutputMap'=> '3.30',
+            'ExtUtils::Typemaps::Type'=> '3.30',
+            'ExtUtils::testlib'     => '7.10',
+            'File::Find'            => '1.31',
+            'File::Glob'            => '1.25',
+            'File::Spec'            => '3.58',
+            'File::Spec::AmigaOS'   => '3.58',
+            'File::Spec::Cygwin'    => '3.58',
+            'File::Spec::Epoc'      => '3.58',
+            'File::Spec::Functions' => '3.58',
+            'File::Spec::Mac'       => '3.58',
+            'File::Spec::OS2'       => '3.58',
+            'File::Spec::Unix'      => '3.58',
+            'File::Spec::VMS'       => '3.58',
+            'File::Spec::Win32'     => '3.58',
+            'Hash::Util::FieldHash' => '1.17',
+            'Locale::Codes'         => '3.36',
+            'Locale::Codes::Constants'=> '3.36',
+            'Locale::Codes::Country'=> '3.36',
+            'Locale::Codes::Country_Codes'=> '3.36',
+            'Locale::Codes::Country_Retired'=> '3.36',
+            'Locale::Codes::Currency'=> '3.36',
+            'Locale::Codes::Currency_Codes'=> '3.36',
+            'Locale::Codes::Currency_Retired'=> '3.36',
+            'Locale::Codes::LangExt'=> '3.36',
+            'Locale::Codes::LangExt_Codes'=> '3.36',
+            'Locale::Codes::LangExt_Retired'=> '3.36',
+            'Locale::Codes::LangFam'=> '3.36',
+            'Locale::Codes::LangFam_Codes'=> '3.36',
+            'Locale::Codes::LangFam_Retired'=> '3.36',
+            'Locale::Codes::LangVar'=> '3.36',
+            'Locale::Codes::LangVar_Codes'=> '3.36',
+            'Locale::Codes::LangVar_Retired'=> '3.36',
+            'Locale::Codes::Language'=> '3.36',
+            'Locale::Codes::Language_Codes'=> '3.36',
+            'Locale::Codes::Language_Retired'=> '3.36',
+            'Locale::Codes::Script' => '3.36',
+            'Locale::Codes::Script_Codes'=> '3.36',
+            'Locale::Codes::Script_Retired'=> '3.36',
+            'Locale::Country'       => '3.36',
+            'Locale::Currency'      => '3.36',
+            'Locale::Language'      => '3.36',
+            'Locale::Script'        => '3.36',
+            'Math::BigFloat::Trace' => '0.40',
+            'Math::BigInt::Trace'   => '0.40',
+            'Module::CoreList'      => '5.20150920',
+            'Module::CoreList::TieHashDelta'=> '5.20150920',
+            'Module::CoreList::Utils'=> '5.20150920',
+            'OS2::DLL'              => '1.06',
+            'OS2::ExtAttr'          => '0.04',
+            'OS2::Process'          => '1.11',
+            'OS2::REXX'             => '1.05',
+            'POSIX'                 => '1.57',
+            'Pod::Perldoc'          => '3.25_01',
+            'Socket'                => '2.020_01',
+            'Test'                  => '1.27',
+            'Thread::Queue'         => '3.06',
+            'Time::HiRes'           => '1.9727_02',
+            'Unicode::UCD'          => '0.63',
+            'Win32'                 => '0.52',
+            'XS::APItest'           => '0.75',
+            'bigint'                => '0.40',
+            'bignum'                => '0.40',
+            'bigrat'                => '0.40',
+            'encoding'              => '2.17',
+            'experimental'          => '0.014',
+            'if'                    => '0.0605',
+            'locale'                => '1.07',
+            'mro'                   => '1.18',
+            'threads'               => '2.03',
+        },
+        removed => {
+        }
+    },
+    5.023004 => {
+        delta_from => 5.023003,
+        changed => {
+            'B'                     => '1.60',
+            'B::Op_private'         => '5.023004',
+            'Compress::Raw::Bzip2'  => '2.069',
+            'Compress::Raw::Zlib'   => '2.069',
+            'Compress::Zlib'        => '2.069',
+            'Config'                => '5.023004',
+            'Devel::PPPort'         => '3.32',
+            'DynaLoader'            => '1.35',
+            'Encode'                => '2.78',
+            'ExtUtils::CBuilder'    => '0.280224',
+            'ExtUtils::CBuilder::Base'=> '0.280224',
+            'ExtUtils::CBuilder::Platform::Unix'=> '0.280224',
+            'ExtUtils::CBuilder::Platform::VMS'=> '0.280224',
+            'ExtUtils::CBuilder::Platform::Windows'=> '0.280224',
+            'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280224',
+            'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280224',
+            'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280224',
+            'ExtUtils::CBuilder::Platform::aix'=> '0.280224',
+            'ExtUtils::CBuilder::Platform::android'=> '0.280224',
+            'ExtUtils::CBuilder::Platform::cygwin'=> '0.280224',
+            'ExtUtils::CBuilder::Platform::darwin'=> '0.280224',
+            'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280224',
+            'ExtUtils::CBuilder::Platform::os2'=> '0.280224',
+            'File::Path'            => '2.12',
+            'IO'                    => '1.36',
+            'IO::Compress::Adapter::Bzip2'=> '2.069',
+            'IO::Compress::Adapter::Deflate'=> '2.069',
+            'IO::Compress::Adapter::Identity'=> '2.069',
+            'IO::Compress::Base'    => '2.069',
+            'IO::Compress::Base::Common'=> '2.069',
+            'IO::Compress::Bzip2'   => '2.069',
+            'IO::Compress::Deflate' => '2.069',
+            'IO::Compress::Gzip'    => '2.069',
+            'IO::Compress::Gzip::Constants'=> '2.069',
+            'IO::Compress::RawDeflate'=> '2.069',
+            'IO::Compress::Zip'     => '2.069',
+            'IO::Compress::Zip::Constants'=> '2.069',
+            'IO::Compress::Zlib::Constants'=> '2.069',
+            'IO::Compress::Zlib::Extra'=> '2.069',
+            'IO::Poll'              => '0.10',
+            'IO::Uncompress::Adapter::Bunzip2'=> '2.069',
+            'IO::Uncompress::Adapter::Identity'=> '2.069',
+            'IO::Uncompress::Adapter::Inflate'=> '2.069',
+            'IO::Uncompress::AnyInflate'=> '2.069',
+            'IO::Uncompress::AnyUncompress'=> '2.069',
+            'IO::Uncompress::Base'  => '2.069',
+            'IO::Uncompress::Bunzip2'=> '2.069',
+            'IO::Uncompress::Gunzip'=> '2.069',
+            'IO::Uncompress::Inflate'=> '2.069',
+            'IO::Uncompress::RawInflate'=> '2.069',
+            'IO::Uncompress::Unzip' => '2.069',
+            'Math::BigFloat'        => '1.999704',
+            'Math::BigFloat::Trace' => '0.41',
+            'Math::BigInt'          => '1.999704',
+            'Math::BigInt::Calc'    => '1.999704',
+            'Math::BigInt::CalcEmu' => '1.999704',
+            'Math::BigInt::FastCalc'=> '0.34',
+            'Math::BigInt::Trace'   => '0.41',
+            'Module::CoreList'      => '5.20151020',
+            'Module::CoreList::TieHashDelta'=> '5.20151020',
+            'Module::CoreList::Utils'=> '5.20151020',
+            'Module::Metadata'      => '1.000029',
+            'POSIX'                 => '1.58',
+            'Perl::OSType'          => '1.009',
+            'PerlIO::encoding'      => '0.22',
+            'Socket'                => '2.020_02',
+            'Unicode::Normalize'    => '1.21',
+            'XS::APItest'           => '0.76',
+            'bigint'                => '0.41',
+            'bignum'                => '0.41',
+            'bigrat'                => '0.41',
+            'experimental'          => '0.016',
+            'if'                    => '0.0606',
+            'warnings'              => '1.35',
+        },
+        removed => {
+        }
+    },
+    5.023005 => {
+        delta_from => 5.023004,
+        changed => {
+            'B'                     => '1.61',
+            'B::Op_private'         => '5.023005',
+            'Carp'                  => '1.38',
+            'Carp::Heavy'           => '1.38',
+            'Config'                => '5.023005',
+            'Config::Perl::V'       => '0.25',
+            'Cwd'                   => '3.59',
+            'Devel::Peek'           => '1.23',
+            'Dumpvalue'             => '1.18',
+            'DynaLoader'            => '1.36',
+            'File::Find'            => '1.32',
+            'File::Spec'            => '3.59',
+            'File::Spec::AmigaOS'   => '3.59',
+            'File::Spec::Cygwin'    => '3.59',
+            'File::Spec::Epoc'      => '3.59',
+            'File::Spec::Functions' => '3.59',
+            'File::Spec::Mac'       => '3.59',
+            'File::Spec::OS2'       => '3.59',
+            'File::Spec::Unix'      => '3.59',
+            'File::Spec::VMS'       => '3.59',
+            'File::Spec::Win32'     => '3.59',
+            'Getopt::Long'          => '2.48',
+            'Hash::Util::FieldHash' => '1.18',
+            'IPC::Open3'            => '1.20',
+            'Math::BigFloat'        => '1.999710',
+            'Math::BigInt'          => '1.999710',
+            'Math::BigInt::Calc'    => '1.999710',
+            'Math::BigInt::CalcEmu' => '1.999710',
+            'Math::BigInt::FastCalc'=> '0.37',
+            'Module::CoreList'      => '5.20151120',
+            'Module::CoreList::TieHashDelta'=> '5.20151120',
+            'Module::CoreList::Utils'=> '5.20151120',
+            'Module::Metadata'      => '1.000030',
+            'POSIX'                 => '1.59',
+            'PerlIO::encoding'      => '0.23',
+            'PerlIO::mmap'          => '0.015',
+            'PerlIO::scalar'        => '0.24',
+            'PerlIO::via'           => '0.16',
+            'Pod::Simple'           => '3.32',
+            'Pod::Simple::BlackBox' => '3.32',
+            'Pod::Simple::Checker'  => '3.32',
+            'Pod::Simple::Debug'    => '3.32',
+            'Pod::Simple::DumpAsText'=> '3.32',
+            'Pod::Simple::DumpAsXML'=> '3.32',
+            'Pod::Simple::HTML'     => '3.32',
+            'Pod::Simple::HTMLBatch'=> '3.32',
+            'Pod::Simple::LinkSection'=> '3.32',
+            'Pod::Simple::Methody'  => '3.32',
+            'Pod::Simple::Progress' => '3.32',
+            'Pod::Simple::PullParser'=> '3.32',
+            'Pod::Simple::PullParserEndToken'=> '3.32',
+            'Pod::Simple::PullParserStartToken'=> '3.32',
+            'Pod::Simple::PullParserTextToken'=> '3.32',
+            'Pod::Simple::PullParserToken'=> '3.32',
+            'Pod::Simple::RTF'      => '3.32',
+            'Pod::Simple::Search'   => '3.32',
+            'Pod::Simple::SimpleTree'=> '3.32',
+            'Pod::Simple::Text'     => '3.32',
+            'Pod::Simple::TextContent'=> '3.32',
+            'Pod::Simple::TiedOutFH'=> '3.32',
+            'Pod::Simple::Transcode'=> '3.32',
+            'Pod::Simple::TranscodeDumb'=> '3.32',
+            'Pod::Simple::TranscodeSmart'=> '3.32',
+            'Pod::Simple::XHTML'    => '3.32',
+            'Pod::Simple::XMLOutStream'=> '3.32',
+            'Thread::Queue'         => '3.07',
+            'Tie::Scalar'           => '1.04',
+            'Time::HiRes'           => '1.9728',
+            'Time::Piece'           => '1.31',
+            'Time::Seconds'         => '1.31',
+            'Unicode::Normalize'    => '1.23',
+            'XSLoader'              => '0.21',
+            'arybase'               => '0.11',
+            'base'                  => '2.22_01',
+            'fields'                => '2.22_01',
+            'threads'               => '2.04',
+            'threads::shared'       => '1.49',
+        },
+        removed => {
+            'ExtUtils::MakeMaker::version::vpp'=> 1,
+            'version::vpp'          => 1,
+        }
+    },
+    5.022001 => {
+        delta_from => 5.022,
+        changed => {
+            'B::Op_private'         => '5.022001',
+            'Config'                => '5.022001',
+            'Module::CoreList'      => '5.20151213',
+            'Module::CoreList::TieHashDelta'=> '5.20151213',
+            'Module::CoreList::Utils'=> '5.20151213',
+            'POSIX'                 => '1.53_01',
+            'PerlIO::scalar'        => '0.23',
+            'Storable'              => '2.53_01',
+            'Win32'                 => '0.52',
+            'warnings'              => '1.34',
+        },
+        removed => {
+        }
+    },
+    5.023006 => {
+        delta_from => 5.023005,
+        changed => {
+            'B::Deparse'            => '1.36',
+            'B::Op_private'         => '5.023006',
+            'Benchmark'             => '1.21',
+            'CPAN::Meta::Requirements'=> '2.140',
+            'CPAN::Meta::YAML'      => '0.018',
+            'Config'                => '5.023006',
+            'Cwd'                   => '3.60',
+            'Data::Dumper'          => '2.159',
+            'DynaLoader'            => '1.37',
+            'File::Spec'            => '3.60',
+            'File::Spec::AmigaOS'   => '3.60',
+            'File::Spec::Cygwin'    => '3.60',
+            'File::Spec::Epoc'      => '3.60',
+            'File::Spec::Functions' => '3.60',
+            'File::Spec::Mac'       => '3.60',
+            'File::Spec::OS2'       => '3.60',
+            'File::Spec::Unix'      => '3.60',
+            'File::Spec::VMS'       => '3.60',
+            'File::Spec::Win32'     => '3.60',
+            'Hash::Util::FieldHash' => '1.19',
+            'Locale::Codes'         => '3.37',
+            'Locale::Codes::Constants'=> '3.37',
+            'Locale::Codes::Country'=> '3.37',
+            'Locale::Codes::Country_Codes'=> '3.37',
+            'Locale::Codes::Country_Retired'=> '3.37',
+            'Locale::Codes::Currency'=> '3.37',
+            'Locale::Codes::Currency_Codes'=> '3.37',
+            'Locale::Codes::Currency_Retired'=> '3.37',
+            'Locale::Codes::LangExt'=> '3.37',
+            'Locale::Codes::LangExt_Codes'=> '3.37',
+            'Locale::Codes::LangExt_Retired'=> '3.37',
+            'Locale::Codes::LangFam'=> '3.37',
+            'Locale::Codes::LangFam_Codes'=> '3.37',
+            'Locale::Codes::LangFam_Retired'=> '3.37',
+            'Locale::Codes::LangVar'=> '3.37',
+            'Locale::Codes::LangVar_Codes'=> '3.37',
+            'Locale::Codes::LangVar_Retired'=> '3.37',
+            'Locale::Codes::Language'=> '3.37',
+            'Locale::Codes::Language_Codes'=> '3.37',
+            'Locale::Codes::Language_Retired'=> '3.37',
+            'Locale::Codes::Script' => '3.37',
+            'Locale::Codes::Script_Codes'=> '3.37',
+            'Locale::Codes::Script_Retired'=> '3.37',
+            'Locale::Country'       => '3.37',
+            'Locale::Currency'      => '3.37',
+            'Locale::Language'      => '3.37',
+            'Locale::Script'        => '3.37',
+            'Math::BigInt::FastCalc'=> '0.38',
+            'Module::CoreList'      => '5.20151220',
+            'Module::CoreList::TieHashDelta'=> '5.20151220',
+            'Module::CoreList::Utils'=> '5.20151220',
+            'Module::Metadata'      => '1.000031',
+            'Opcode'                => '1.34',
+            'PerlIO::mmap'          => '0.016',
+            'Pod::Perldoc'          => '3.25_02',
+            'SDBM_File'             => '1.14',
+            'Term::ANSIColor'       => '4.04',
+            'Test'                  => '1.28',
+            'Unicode::Normalize'    => '1.24',
+            'XS::APItest'           => '0.77',
+            'base'                  => '2.23',
+            'encoding::warnings'    => '0.12',
+            'fields'                => '2.23',
+            'locale'                => '1.08',
+            'strict'                => '1.10',
+            'threads'               => '2.05',
+            'threads::shared'       => '1.50',
+            'utf8'                  => '1.18',
+        },
+        removed => {
+        }
+    },
+    5.023007 => {
+        delta_from => 5.023006,
+        changed => {
+            'App::Prove'            => '3.36',
+            'App::Prove::State'     => '3.36',
+            'App::Prove::State::Result'=> '3.36',
+            'App::Prove::State::Result::Test'=> '3.36',
+            'B'                     => '1.62',
+            'B::Deparse'            => '1.37',
+            'B::Op_private'         => '5.023007',
+            'Benchmark'             => '1.22',
+            'Config'                => '5.023007',
+            'Cwd'                   => '3.62',
+            'Data::Dumper'          => '2.160',
+            'ExtUtils::ParseXS'     => '3.31',
+            'ExtUtils::ParseXS::Constants'=> '3.31',
+            'ExtUtils::ParseXS::CountLines'=> '3.31',
+            'ExtUtils::ParseXS::Eval'=> '3.31',
+            'ExtUtils::ParseXS::Utilities'=> '3.31',
+            'ExtUtils::Typemaps'    => '3.31',
+            'ExtUtils::Typemaps::Cmd'=> '3.31',
+            'ExtUtils::Typemaps::InputMap'=> '3.31',
+            'ExtUtils::Typemaps::OutputMap'=> '3.31',
+            'ExtUtils::Typemaps::Type'=> '3.31',
+            'File::Find'            => '1.33',
+            'File::Spec'            => '3.62',
+            'File::Spec::AmigaOS'   => '3.62',
+            'File::Spec::Cygwin'    => '3.62',
+            'File::Spec::Epoc'      => '3.62',
+            'File::Spec::Functions' => '3.62',
+            'File::Spec::Mac'       => '3.62',
+            'File::Spec::OS2'       => '3.62',
+            'File::Spec::Unix'      => '3.62',
+            'File::Spec::VMS'       => '3.62',
+            'File::Spec::Win32'     => '3.62',
+            'Math::BigFloat'        => '1.999715',
+            'Math::BigFloat::Trace' => '0.42',
+            'Math::BigInt'          => '1.999715',
+            'Math::BigInt::Calc'    => '1.999715',
+            'Math::BigInt::CalcEmu' => '1.999715',
+            'Math::BigInt::FastCalc'=> '0.40',
+            'Math::BigInt::Trace'   => '0.42',
+            'Math::BigRat'          => '0.260802',
+            'Module::CoreList'      => '5.20160120',
+            'Module::CoreList::TieHashDelta'=> '5.20160120',
+            'Module::CoreList::Utils'=> '5.20160120',
+            'Net::Cmd'              => '3.08',
+            'Net::Config'           => '3.08',
+            'Net::Domain'           => '3.08',
+            'Net::FTP'              => '3.08',
+            'Net::FTP::A'           => '3.08',
+            'Net::FTP::E'           => '3.08',
+            'Net::FTP::I'           => '3.08',
+            'Net::FTP::L'           => '3.08',
+            'Net::FTP::dataconn'    => '3.08',
+            'Net::NNTP'             => '3.08',
+            'Net::Netrc'            => '3.08',
+            'Net::POP3'             => '3.08',
+            'Net::SMTP'             => '3.08',
+            'Net::Time'             => '3.08',
+            'Pod::Man'              => '4.04',
+            'Pod::ParseLink'        => '4.04',
+            'Pod::Text'             => '4.04',
+            'Pod::Text::Color'      => '4.04',
+            'Pod::Text::Overstrike' => '4.04',
+            'Pod::Text::Termcap'    => '4.04',
+            'Pod::Usage'            => '1.68',
+            'TAP::Base'             => '3.36',
+            'TAP::Formatter::Base'  => '3.36',
+            'TAP::Formatter::Color' => '3.36',
+            'TAP::Formatter::Console'=> '3.36',
+            'TAP::Formatter::Console::ParallelSession'=> '3.36',
+            'TAP::Formatter::Console::Session'=> '3.36',
+            'TAP::Formatter::File'  => '3.36',
+            'TAP::Formatter::File::Session'=> '3.36',
+            'TAP::Formatter::Session'=> '3.36',
+            'TAP::Harness'          => '3.36',
+            'TAP::Harness::Env'     => '3.36',
+            'TAP::Object'           => '3.36',
+            'TAP::Parser'           => '3.36',
+            'TAP::Parser::Aggregator'=> '3.36',
+            'TAP::Parser::Grammar'  => '3.36',
+            'TAP::Parser::Iterator' => '3.36',
+            'TAP::Parser::Iterator::Array'=> '3.36',
+            'TAP::Parser::Iterator::Process'=> '3.36',
+            'TAP::Parser::Iterator::Stream'=> '3.36',
+            'TAP::Parser::IteratorFactory'=> '3.36',
+            'TAP::Parser::Multiplexer'=> '3.36',
+            'TAP::Parser::Result'   => '3.36',
+            'TAP::Parser::Result::Bailout'=> '3.36',
+            'TAP::Parser::Result::Comment'=> '3.36',
+            'TAP::Parser::Result::Plan'=> '3.36',
+            'TAP::Parser::Result::Pragma'=> '3.36',
+            'TAP::Parser::Result::Test'=> '3.36',
+            'TAP::Parser::Result::Unknown'=> '3.36',
+            'TAP::Parser::Result::Version'=> '3.36',
+            'TAP::Parser::Result::YAML'=> '3.36',
+            'TAP::Parser::ResultFactory'=> '3.36',
+            'TAP::Parser::Scheduler'=> '3.36',
+            'TAP::Parser::Scheduler::Job'=> '3.36',
+            'TAP::Parser::Scheduler::Spinner'=> '3.36',
+            'TAP::Parser::Source'   => '3.36',
+            'TAP::Parser::SourceHandler'=> '3.36',
+            'TAP::Parser::SourceHandler::Executable'=> '3.36',
+            'TAP::Parser::SourceHandler::File'=> '3.36',
+            'TAP::Parser::SourceHandler::Handle'=> '3.36',
+            'TAP::Parser::SourceHandler::Perl'=> '3.36',
+            'TAP::Parser::SourceHandler::RawTAP'=> '3.36',
+            'TAP::Parser::YAMLish::Reader'=> '3.36',
+            'TAP::Parser::YAMLish::Writer'=> '3.36',
+            'Test::Harness'         => '3.36',
+            'Unicode::Normalize'    => '1.25',
+            'Unicode::UCD'          => '0.64',
+            'XS::APItest'           => '0.78',
+            'bigint'                => '0.42',
+            'bignum'                => '0.42',
+            'bigrat'                => '0.42',
+            'utf8'                  => '1.19',
+        },
+        removed => {
+        }
+    },
+    5.023008 => {
+        delta_from => 5.023007,
+        changed => {
+            'B::Op_private'         => '5.023008',
+            'Config'                => '5.023008',
+            'Cwd'                   => '3.63',
+            'DynaLoader'            => '1.38',
+            'Encode'                => '2.80',
+            'Encode::Alias'         => '2.20',
+            'Encode::MIME::Header'  => '2.19',
+            'Encode::Unicode'       => '2.15',
+            'ExtUtils::CBuilder'    => '0.280225',
+            'ExtUtils::CBuilder::Base'=> '0.280225',
+            'ExtUtils::CBuilder::Platform::Unix'=> '0.280225',
+            'ExtUtils::CBuilder::Platform::VMS'=> '0.280225',
+            'ExtUtils::CBuilder::Platform::Windows'=> '0.280225',
+            'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280225',
+            'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280225',
+            'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280225',
+            'ExtUtils::CBuilder::Platform::aix'=> '0.280225',
+            'ExtUtils::CBuilder::Platform::android'=> '0.280225',
+            'ExtUtils::CBuilder::Platform::cygwin'=> '0.280225',
+            'ExtUtils::CBuilder::Platform::darwin'=> '0.280225',
+            'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280225',
+            'ExtUtils::CBuilder::Platform::os2'=> '0.280225',
+            'ExtUtils::Command::MM' => '7.10_01',
+            'ExtUtils::Liblist'     => '7.10_01',
+            'ExtUtils::Liblist::Kid'=> '7.10_01',
+            'ExtUtils::MM'          => '7.10_01',
+            'ExtUtils::MM_AIX'      => '7.10_01',
+            'ExtUtils::MM_Any'      => '7.10_01',
+            'ExtUtils::MM_BeOS'     => '7.10_01',
+            'ExtUtils::MM_Cygwin'   => '7.10_01',
+            'ExtUtils::MM_DOS'      => '7.10_01',
+            'ExtUtils::MM_Darwin'   => '7.10_01',
+            'ExtUtils::MM_MacOS'    => '7.10_01',
+            'ExtUtils::MM_NW5'      => '7.10_01',
+            'ExtUtils::MM_OS2'      => '7.10_01',
+            'ExtUtils::MM_QNX'      => '7.10_01',
+            'ExtUtils::MM_UWIN'     => '7.10_01',
+            'ExtUtils::MM_Unix'     => '7.10_01',
+            'ExtUtils::MM_VMS'      => '7.10_01',
+            'ExtUtils::MM_VOS'      => '7.10_01',
+            'ExtUtils::MM_Win32'    => '7.10_01',
+            'ExtUtils::MM_Win95'    => '7.10_01',
+            'ExtUtils::MY'          => '7.10_01',
+            'ExtUtils::MakeMaker'   => '7.10_01',
+            'ExtUtils::MakeMaker::Config'=> '7.10_01',
+            'ExtUtils::MakeMaker::version'=> '7.10_01',
+            'ExtUtils::MakeMaker::version::regex'=> '7.10_01',
+            'ExtUtils::Mkbootstrap' => '7.10_01',
+            'ExtUtils::Mksymlists'  => '7.10_01',
+            'ExtUtils::testlib'     => '7.10_01',
+            'File::Spec'            => '3.63',
+            'File::Spec::AmigaOS'   => '3.63',
+            'File::Spec::Cygwin'    => '3.63',
+            'File::Spec::Epoc'      => '3.63',
+            'File::Spec::Functions' => '3.63',
+            'File::Spec::Mac'       => '3.63',
+            'File::Spec::OS2'       => '3.63',
+            'File::Spec::Unix'      => '3.63',
+            'File::Spec::VMS'       => '3.63',
+            'File::Spec::Win32'     => '3.63',
+            'IPC::Msg'              => '2.05',
+            'IPC::Semaphore'        => '2.05',
+            'IPC::SharedMem'        => '2.05',
+            'IPC::SysV'             => '2.05',
+            'Module::CoreList'      => '5.20160121',
+            'Module::CoreList::TieHashDelta'=> '5.20160121',
+            'Module::CoreList::Utils'=> '5.20160121',
+            'ODBM_File'             => '1.13',
+            'POSIX'                 => '1.63',
+            'PerlIO::encoding'      => '0.24',
+            'Pod::Man'              => '4.06',
+            'Pod::ParseLink'        => '4.06',
+            'Pod::Text'             => '4.06',
+            'Pod::Text::Color'      => '4.06',
+            'Pod::Text::Overstrike' => '4.06',
+            'Pod::Text::Termcap'    => '4.06',
+            'Storable'              => '2.55',
+            'Time::HiRes'           => '1.9730',
+            'XS::APItest'           => '0.79',
         },
         removed => {
-        },
+        }
     },
 );
 
@@ -10510,7 +12323,7 @@ sub is_core
 
     my $final_release = removed_from($module);
 
-    return 0 if defined($final_release) && $perl_version > $final_release;
+    return 0 if defined($final_release) && $perl_version >= $final_release;
 
     # If a minimum version of the module was specified:
     # Step through all perl releases ($prn)
@@ -10525,7 +12338,9 @@ sub is_core
         my @releases = ($perl_version);
         my $rel = $perl_version;
         while (defined($rel)) {
-            $rel = $delta{$rel}->{delta_from};
+            # XXX: This line is a sign of failure. -- rjbs, 2015-04-15
+            my $this_delta = $delta{$rel} || $delta{ sprintf '%0.6f', $rel };
+            $rel = $this_delta->{delta_from};
             unshift(@releases, $rel) if defined($rel);
         }
         RELEASE:
@@ -10695,9 +12510,8 @@ for my $version (sort { $a <=> $b } keys %delta) {
     },
     5.01701  => { delta_from => 5.017009 },
     5.017011 => { delta_from => 5.01701  },
-    5.017012 => { delta_from => 5.017011 },
 
-    5.018    => { delta_from => 5.017012 },
+    5.018    => { delta_from => 5.017011 },
     5.018001 => {
         delta_from => 5.018,
         changed => {
@@ -10913,10 +12727,45 @@ for my $version (sort { $a <=> $b } keys %delta) {
         changed => {
         },
         removed => {
+            'CGI'                   => 1,
+            'CGI::Apache'           => 1,
+            'CGI::Carp'             => 1,
+            'CGI::Cookie'           => 1,
+            'CGI::Fast'             => 1,
+            'CGI::Pretty'           => 1,
+            'CGI::Push'             => 1,
+            'CGI::Switch'           => 1,
+            'CGI::Util'             => 1,
+            'Module::Build'         => 1,
+            'Module::Build::Base'   => 1,
+            'Module::Build::Compat' => 1,
+            'Module::Build::Config' => 1,
+            'Module::Build::ConfigData'=> 1,
+            'Module::Build::Cookbook'=> 1,
+            'Module::Build::Dumper' => 1,
+            'Module::Build::ModuleInfo'=> 1,
+            'Module::Build::Notes'  => 1,
+            'Module::Build::PPMMaker'=> 1,
+            'Module::Build::Platform::Default'=> 1,
+            'Module::Build::Platform::MacOS'=> 1,
+            'Module::Build::Platform::Unix'=> 1,
+            'Module::Build::Platform::VMS'=> 1,
+            'Module::Build::Platform::VOS'=> 1,
+            'Module::Build::Platform::Windows'=> 1,
+            'Module::Build::Platform::aix'=> 1,
+            'Module::Build::Platform::cygwin'=> 1,
+            'Module::Build::Platform::darwin'=> 1,
+            'Module::Build::Platform::os2'=> 1,
+            'Module::Build::PodParser'=> 1,
+            'Module::Build::Version'=> 1,
+            'Module::Build::YAML'   => 1,
+            'Package::Constants'    => 1,
+            'Simple'                => 1,
+            'inc::latest'           => 1,
         }
     },
     5.021001 => {
-        delta_from => 5.017007,
+        delta_from => 5.021000,
         changed => {
         },
         removed => {
@@ -10957,6 +12806,139 @@ for my $version (sort { $a <=> $b } keys %delta) {
         removed => {
         }
     },
+    5.021006 => {
+        delta_from => 5.021005,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.021007 => {
+        delta_from => 5.021006,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.021008 => {
+        delta_from => 5.021007,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.020002 => {
+        delta_from => 5.020001,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.021009 => {
+        delta_from => 5.021008,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.021010 => {
+        delta_from => 5.021009,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.021011 => {
+        delta_from => 5.02101,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.022000 => {
+        delta_from => 5.021011,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.023000 => {
+        delta_from => 5.022000,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.023001 => {
+        delta_from => 5.023000,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.023002 => {
+        delta_from => 5.023001,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.020003 => {
+        delta_from => 5.020002,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.023003 => {
+        delta_from => 5.023002,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.023004 => {
+        delta_from => 5.023003,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.023005 => {
+        delta_from => 5.023004,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.022001 => {
+        delta_from => 5.022,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.023006 => {
+        delta_from => 5.023005,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.023007 => {
+        delta_from => 5.023006,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.023008 => {
+        delta_from => 5.023007,
+        changed => {
+        },
+        removed => {
+        }
+    },
 );
 
 for my $version (sort { $a <=> $b } keys %deprecated) {
@@ -11016,6 +12998,8 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'CPAN::Mirrors'         => 'cpan',
     'CPAN::Module'          => 'cpan',
     'CPAN::Nox'             => 'cpan',
+    'CPAN::Plugin'          => 'cpan',
+    'CPAN::Plugin::Specfile'=> 'cpan',
     'CPAN::Prompt'          => 'cpan',
     'CPAN::Queue'           => 'cpan',
     'CPAN::Shell'           => 'cpan',
@@ -11088,6 +13072,9 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'ExtUtils::MY'          => 'cpan',
     'ExtUtils::MakeMaker'   => 'cpan',
     'ExtUtils::MakeMaker::Config'=> 'cpan',
+    'ExtUtils::MakeMaker::Locale'=> 'cpan',
+    'ExtUtils::MakeMaker::version'=> 'cpan',
+    'ExtUtils::MakeMaker::version::regex'=> 'cpan',
     'ExtUtils::Manifest'    => 'cpan',
     'ExtUtils::Mkbootstrap' => 'cpan',
     'ExtUtils::Mksymlists'  => 'cpan',
@@ -11167,6 +13154,14 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'Locale::Script'        => 'cpan',
     'MIME::Base64'          => 'cpan',
     'MIME::QuotedPrint'     => 'cpan',
+    'Math::BigFloat'        => 'cpan',
+    'Math::BigFloat::Trace' => 'cpan',
+    'Math::BigInt'          => 'cpan',
+    'Math::BigInt::Calc'    => 'cpan',
+    'Math::BigInt::CalcEmu' => 'cpan',
+    'Math::BigInt::FastCalc'=> 'cpan',
+    'Math::BigInt::Trace'   => 'cpan',
+    'Math::BigRat'          => 'cpan',
     'Math::Complex'         => 'cpan',
     'Math::Trig'            => 'cpan',
     'Memoize'               => 'cpan',
@@ -11309,20 +13304,24 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'TAP::Parser::YAMLish::Writer'=> 'cpan',
     'Term::ANSIColor'       => 'cpan',
     'Term::Cap'             => 'cpan',
-    'Test'                  => 'cpan',
     'Test::Builder'         => 'cpan',
+    'Test::Builder::IO::Scalar'=> 'cpan',
     'Test::Builder::Module' => 'cpan',
     'Test::Builder::Tester' => 'cpan',
     'Test::Builder::Tester::Color'=> 'cpan',
     'Test::Harness'         => 'cpan',
     'Test::More'            => 'cpan',
     'Test::Simple'          => 'cpan',
+    'Test::Tester'          => 'cpan',
+    'Test::Tester::Capture' => 'cpan',
+    'Test::Tester::CaptureRunner'=> 'cpan',
+    'Test::Tester::Delegate'=> 'cpan',
+    'Test::use::ok'         => 'cpan',
     'Text::Balanced'        => 'cpan',
     'Text::ParseWords'      => 'cpan',
     'Text::Tabs'            => 'cpan',
     'Text::Wrap'            => 'cpan',
     'Tie::RefHash'          => 'cpan',
-    'Time::HiRes'           => 'cpan',
     'Time::Local'           => 'cpan',
     'Time::Piece'           => 'cpan',
     'Time::Seconds'         => 'cpan',
@@ -11342,19 +13341,21 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'autodie'               => 'cpan',
     'autodie::Scope::Guard' => 'cpan',
     'autodie::Scope::GuardStack'=> 'cpan',
-    'autodie::ScopeUtil'    => 'cpan',
+    'autodie::Util'         => 'cpan',
     'autodie::exception'    => 'cpan',
     'autodie::exception::system'=> 'cpan',
     'autodie::hints'        => 'cpan',
     'autodie::skip'         => 'cpan',
+    'bigint'                => 'cpan',
+    'bignum'                => 'cpan',
+    'bigrat'                => 'cpan',
     'encoding'              => 'cpan',
-    'encoding::warnings'    => 'cpan',
     'experimental'          => 'cpan',
+    'ok'                    => 'cpan',
     'parent'                => 'cpan',
     'perlfaq'               => 'cpan',
     'version'               => 'cpan',
     'version::regex'        => 'cpan',
-    'version::vpp'          => 'cpan',
 );
 
 %bug_tracker = (
@@ -11397,13 +13398,15 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'CPAN::Meta::History'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
     'CPAN::Meta::Merge'     => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
     'CPAN::Meta::Prereqs'   => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
-    'CPAN::Meta::Requirements'=> 'https://github.com/dagolden/CPAN-Meta-Requirements/issues',
+    'CPAN::Meta::Requirements'=> 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta-Requirements/issues',
     'CPAN::Meta::Spec'      => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
     'CPAN::Meta::Validator' => 'https://github.com/Perl-Toolchain-Gang/CPAN-Meta/issues',
-    'CPAN::Meta::YAML'      => 'https://github.com/dagolden/CPAN-Meta-YAML/issues',
+    'CPAN::Meta::YAML'      => 'https://github.com/Perl-Toolchain-Gang/YAML-Tiny/issues',
     'CPAN::Mirrors'         => undef,
     'CPAN::Module'          => undef,
     'CPAN::Nox'             => undef,
+    'CPAN::Plugin'          => undef,
+    'CPAN::Plugin::Specfile'=> undef,
     'CPAN::Prompt'          => undef,
     'CPAN::Queue'           => undef,
     'CPAN::Shell'           => undef,
@@ -11445,7 +13448,7 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'Encode::TW'            => undef,
     'Encode::Unicode'       => undef,
     'Encode::Unicode::UTF7' => undef,
-    'ExtUtils::Command'     => 'http://rt.perl.org/rt3/',
+    'ExtUtils::Command'     => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
     'ExtUtils::Command::MM' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
     'ExtUtils::Constant'    => undef,
     'ExtUtils::Constant::Base'=> undef,
@@ -11476,6 +13479,9 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'ExtUtils::MY'          => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
     'ExtUtils::MakeMaker'   => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
     'ExtUtils::MakeMaker::Config'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+    'ExtUtils::MakeMaker::Locale'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+    'ExtUtils::MakeMaker::version'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
+    'ExtUtils::MakeMaker::version::regex'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
     'ExtUtils::Manifest'    => 'http://github.com/Perl-Toolchain-Gang/ExtUtils-Manifest/issues',
     'ExtUtils::Mkbootstrap' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
     'ExtUtils::Mksymlists'  => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=ExtUtils-MakeMaker',
@@ -11523,8 +13529,8 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'IPC::SysV'             => undef,
     'JSON::PP'              => undef,
     'JSON::PP::Boolean'     => undef,
-    'List::Util'            => undef,
-    'List::Util::XS'        => undef,
+    'List::Util'            => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
+    'List::Util::XS'        => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
     'Locale::Codes'         => undef,
     'Locale::Codes::Constants'=> undef,
     'Locale::Codes::Country'=> undef,
@@ -11555,6 +13561,14 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'Locale::Script'        => undef,
     'MIME::Base64'          => undef,
     'MIME::QuotedPrint'     => undef,
+    'Math::BigFloat'        => undef,
+    'Math::BigFloat::Trace' => undef,
+    'Math::BigInt'          => undef,
+    'Math::BigInt::Calc'    => undef,
+    'Math::BigInt::CalcEmu' => undef,
+    'Math::BigInt::FastCalc'=> undef,
+    'Math::BigInt::Trace'   => undef,
+    'Math::BigRat'          => undef,
     'Math::Complex'         => undef,
     'Math::Trig'            => undef,
     'Memoize'               => undef,
@@ -11588,15 +13602,15 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'Net::SMTP'             => undef,
     'Net::Time'             => undef,
     'Params::Check'         => undef,
-    'Parse::CPAN::Meta'     => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Parse-CPAN-Meta',
-    'Perl::OSType'          => 'https://github.com/dagolden/Perl-OSType/issues',
+    'Parse::CPAN::Meta'     => 'https://github.com/Perl-Toolchain-Gang/Parse-CPAN-Meta/issues',
+    'Perl::OSType'          => 'https://github.com/Perl-Toolchain-Gang/Perl-OSType/issues',
     'PerlIO::via::QuotedPrint'=> undef,
     'Pod::Checker'          => undef,
     'Pod::Escapes'          => undef,
     'Pod::Find'             => undef,
     'Pod::InputObjects'     => undef,
-    'Pod::Man'              => undef,
-    'Pod::ParseLink'        => undef,
+    'Pod::Man'              => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
+    'Pod::ParseLink'        => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
     'Pod::ParseUtils'       => undef,
     'Pod::Parser'           => undef,
     'Pod::Perldoc'          => undef,
@@ -11614,42 +13628,42 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'Pod::Perldoc::ToXml'   => undef,
     'Pod::PlainText'        => undef,
     'Pod::Select'           => undef,
-    'Pod::Simple'           => undef,
-    'Pod::Simple::BlackBox' => undef,
-    'Pod::Simple::Checker'  => undef,
-    'Pod::Simple::Debug'    => undef,
-    'Pod::Simple::DumpAsText'=> undef,
-    'Pod::Simple::DumpAsXML'=> undef,
-    'Pod::Simple::HTML'     => undef,
-    'Pod::Simple::HTMLBatch'=> undef,
-    'Pod::Simple::HTMLLegacy'=> undef,
-    'Pod::Simple::LinkSection'=> undef,
-    'Pod::Simple::Methody'  => undef,
-    'Pod::Simple::Progress' => undef,
-    'Pod::Simple::PullParser'=> undef,
-    'Pod::Simple::PullParserEndToken'=> undef,
-    'Pod::Simple::PullParserStartToken'=> undef,
-    'Pod::Simple::PullParserTextToken'=> undef,
-    'Pod::Simple::PullParserToken'=> undef,
-    'Pod::Simple::RTF'      => undef,
-    'Pod::Simple::Search'   => undef,
-    'Pod::Simple::SimpleTree'=> undef,
-    'Pod::Simple::Text'     => undef,
-    'Pod::Simple::TextContent'=> undef,
-    'Pod::Simple::TiedOutFH'=> undef,
-    'Pod::Simple::Transcode'=> undef,
-    'Pod::Simple::TranscodeDumb'=> undef,
-    'Pod::Simple::TranscodeSmart'=> undef,
-    'Pod::Simple::XHTML'    => undef,
-    'Pod::Simple::XMLOutStream'=> undef,
-    'Pod::Text'             => undef,
-    'Pod::Text::Color'      => undef,
-    'Pod::Text::Overstrike' => undef,
-    'Pod::Text::Termcap'    => undef,
+    'Pod::Simple'           => 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::BlackBox' => 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::Checker'  => 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::Debug'    => 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::DumpAsText'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::DumpAsXML'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::HTML'     => 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::HTMLBatch'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::HTMLLegacy'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::LinkSection'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::Methody'  => 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::Progress' => 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::PullParser'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::PullParserEndToken'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::PullParserStartToken'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::PullParserTextToken'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::PullParserToken'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::RTF'      => 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::Search'   => 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::SimpleTree'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::Text'     => 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::TextContent'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::TiedOutFH'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::Transcode'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::TranscodeDumb'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::TranscodeSmart'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::XHTML'    => 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Simple::XMLOutStream'=> 'https://github.com/perl-pod/pod-simple/issues',
+    'Pod::Text'             => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
+    'Pod::Text::Color'      => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
+    'Pod::Text::Overstrike' => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
+    'Pod::Text::Termcap'    => 'https://rt.cpan.org/Dist/Display.html?Name=podlators',
     'Pod::Usage'            => undef,
-    'Scalar::Util'          => undef,
+    'Scalar::Util'          => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
     'Socket'                => undef,
-    'Sub::Util'             => undef,
+    'Sub::Util'             => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils',
     'Sys::Syslog'           => undef,
     'Sys::Syslog::Win32'    => undef,
     'TAP::Base'             => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
@@ -11695,22 +13709,26 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'TAP::Parser::SourceHandler::RawTAP'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
     'TAP::Parser::YAMLish::Reader'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
     'TAP::Parser::YAMLish::Writer'=> 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
-    'Term::ANSIColor'       => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Term-ANSIColor',
+    'Term::ANSIColor'       => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Term::ANSIColor',
     'Term::Cap'             => undef,
-    'Test'                  => undef,
     'Test::Builder'         => 'http://github.com/Test-More/test-more/issues/',
+    'Test::Builder::IO::Scalar'=> 'http://github.com/Test-More/test-more/issues/',
     'Test::Builder::Module' => 'http://github.com/Test-More/test-more/issues/',
     'Test::Builder::Tester' => 'http://github.com/Test-More/test-more/issues/',
     'Test::Builder::Tester::Color'=> 'http://github.com/Test-More/test-more/issues/',
     'Test::Harness'         => 'http://rt.cpan.org/Public/Dist/Display.html?Name=Test-Harness',
     'Test::More'            => 'http://github.com/Test-More/test-more/issues/',
     'Test::Simple'          => 'http://github.com/Test-More/test-more/issues/',
+    'Test::Tester'          => 'http://github.com/Test-More/test-more/issues/',
+    'Test::Tester::Capture' => 'http://github.com/Test-More/test-more/issues/',
+    'Test::Tester::CaptureRunner'=> 'http://github.com/Test-More/test-more/issues/',
+    'Test::Tester::Delegate'=> 'http://github.com/Test-More/test-more/issues/',
+    'Test::use::ok'         => 'http://github.com/Test-More/test-more/issues/',
     'Text::Balanced'        => undef,
     'Text::ParseWords'      => undef,
     'Text::Tabs'            => undef,
     'Text::Wrap'            => undef,
     'Tie::RefHash'          => undef,
-    'Time::HiRes'           => undef,
     'Time::Local'           => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Time-Local',
     'Time::Piece'           => undef,
     'Time::Seconds'         => undef,
@@ -11723,26 +13741,28 @@ for my $version (sort { $a <=> $b } keys %deprecated) {
     'Unicode::Collate::CJK::Stroke'=> undef,
     'Unicode::Collate::CJK::Zhuyin'=> undef,
     'Unicode::Collate::Locale'=> undef,
-    'Unicode::Normalize'    => undef,
+    'Unicode::Normalize'    => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Unicode-Normalize',
     'Win32'                 => undef,
     'Win32API::File'        => undef,
     'Win32API::File::ExtUtils::Myconst2perl'=> undef,
     'autodie'               => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
     'autodie::Scope::Guard' => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
     'autodie::Scope::GuardStack'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
-    'autodie::ScopeUtil'    => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
+    'autodie::Util'         => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
     'autodie::exception'    => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
     'autodie::exception::system'=> 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
     'autodie::hints'        => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
     'autodie::skip'         => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=autodie',
+    'bigint'                => undef,
+    'bignum'                => undef,
+    'bigrat'                => undef,
     'encoding'              => undef,
-    'encoding::warnings'    => undef,
     'experimental'          => 'http://rt.cpan.org/Public/Dist/Display.html?Name=experimental',
+    'ok'                    => 'http://github.com/Test-More/test-more/issues/',
     'parent'                => undef,
     'perlfaq'               => 'https://github.com/perl-doc-cats/perlfaq/issues',
-    'version'               => undef,
-    'version::regex'        => undef,
-    'version::vpp'          => undef,
+    'version'               => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
+    'version::regex'        => 'https://rt.cpan.org/Public/Dist/Display.html?Name=version',
 );
 
 # Create aliases with trailing zeros for $] use