This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix for Module/CoreList.pm 5.029009
[perl5.git] / dist / Module-CoreList / lib / Module / CoreList.pm
index b6fcb30..33f7782 100644 (file)
@@ -1,9 +1,13 @@
 package Module::CoreList;
 use strict;
-use vars qw/$VERSION %released %version %families %upstream
-           %bug_tracker %deprecated %delta/;
+
+our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );
+
 use version;
-$VERSION = '5.20170220';
+our $VERSION = '5.20190320';
+
+sub PKG_PATTERN () { q#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z# }
+sub _looks_like_invocant ($) { local $@; !!eval { $_[0]->isa(__PACKAGE__) } }
 
 sub _undelta {
     my ($delta) = @_;
@@ -44,9 +48,8 @@ END {
 
 
 sub first_release_raw {
+    shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
     my $module = shift;
-    $module = shift if eval { $module->isa(__PACKAGE__) }
-      and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
     my $version = shift;
 
     my @perls = $version
@@ -70,10 +73,9 @@ sub first_release {
 }
 
 sub find_modules {
+    shift if _looks_like_invocant $_[0];
     my $regex = shift;
-    $regex = shift if eval { $regex->isa(__PACKAGE__) };
-    my @perls = @_;
-    @perls = keys %version unless @perls;
+    my @perls = @_ ? @_ : keys %version;
 
     my %mods;
     foreach (@perls) {
@@ -85,30 +87,23 @@ sub find_modules {
 }
 
 sub find_version {
+    shift if _looks_like_invocant $_[0];
     my $v = shift;
-    if ($v->isa(__PACKAGE__)) {
-        $v = shift;
-        return if not defined $v;
-    }
-    return $version{$v} if defined $version{$v};
+    return $version{$v} if defined $v and defined $version{$v};
     return;
 }
 
 sub is_deprecated {
+    shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
     my $module = shift;
-    $module = shift if eval { $module->isa(__PACKAGE__) }
-      and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
-    my $perl_version = shift;
-    $perl_version ||= $];
+    my $perl_version = shift || $];
     return unless $module && exists $deprecated{$perl_version}{$module};
     return $deprecated{$perl_version}{$module};
 }
 
 sub deprecated_in {
-    my $module = shift;
-    $module = shift if eval { $module->isa(__PACKAGE__) }
-      and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
-    return unless $module;
+    shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
+    my $module = shift or return;
     my @perls = grep { exists $deprecated{$_}{$module} } keys %deprecated;
     return unless @perls;
     require List::Util;
@@ -126,9 +121,8 @@ sub removed_from_by_date {
 }
 
 sub removed_raw {
+  shift if defined $_[1] and $_[1] =~ PKG_PATTERN and _looks_like_invocant $_[0];
   my $mod = shift;
-  $mod = shift if eval { $mod->isa(__PACKAGE__) }
-      and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
   return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
   my $last = pop @perls;
   my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
@@ -136,8 +130,8 @@ sub removed_raw {
 }
 
 sub changes_between {
+  shift if _looks_like_invocant $_[0];
   my $left_ver = shift;
-  $left_ver = shift if eval { $left_ver->isa(__PACKAGE__) };
   my $right_ver = shift;
 
   my $left  = $version{ $left_ver };
@@ -318,6 +312,40 @@ sub changes_between {
     5.024001 => '2017-01-14',
     5.025009 => '2017-01-20',
     5.025010 => '2017-02-20',
+    5.025011 => '2017-03-20',
+    5.025012 => '2017-04-20',
+    5.026000 => '2017-05-30',
+    5.027000 => '2017-05-31',
+    5.027001 => '2017-06-20',
+    5.022004 => '2017-07-15',
+    5.024002 => '2017-07-15',
+    5.027002 => '2017-07-20',
+    5.027003 => '2017-08-21',
+    5.027004 => '2017-09-20',
+    5.024003 => '2017-09-22',
+    5.026001 => '2017-09-22',
+    5.027005 => '2017-10-20',
+    5.027006 => '2017-11-20',
+    5.027007 => '2017-12-20',
+    5.027008 => '2018-01-20',
+    5.027009 => '2018-02-20',
+    5.027010 => '2018-03-20',
+    5.024004 => '2018-04-14',
+    5.026002 => '2018-04-14',
+    5.027011 => '2018-04-20',
+    5.028000 => '2018-06-22',
+    5.029000 => '2018-06-26',
+    5.029001 => '2018-07-20',
+    5.029002 => '2018-08-20',
+    5.029003 => '2018-09-20',
+    5.029004 => '2018-10-20',
+    5.029005 => '2018-11-20',
+    5.026003 => '2018-11-29',
+    5.028001 => '2018-11-29',
+    5.029006 => '2018-12-18',
+    5.029007 => '2019-01-20',
+    5.029008 => '2019-02-20',
+    5.029009 => '2019-03-20',
   );
 
 for my $version ( sort { $a <=> $b } keys %released ) {
@@ -13948,16 +13976,2245 @@ for my $version ( sort { $a <=> $b } keys %released ) {
         removed => {
         }
     },
+    5.025011 => {
+        delta_from => 5.025010,
+        changed => {
+            'App::Prove'            => '3.38',
+            'App::Prove::State'     => '3.38',
+            'App::Prove::State::Result'=> '3.38',
+            'App::Prove::State::Result::Test'=> '3.38',
+            'B::Op_private'         => '5.025011',
+            'Compress::Raw::Bzip2'  => '2.074',
+            'Compress::Raw::Zlib'   => '2.074',
+            'Compress::Zlib'        => '2.074',
+            'Config'                => '5.025011',
+            'Config::Perl::V'       => '0.28',
+            'Cwd'                   => '3.67',
+            'ExtUtils::ParseXS'     => '3.34',
+            'ExtUtils::ParseXS::Constants'=> '3.34',
+            'ExtUtils::ParseXS::CountLines'=> '3.34',
+            'ExtUtils::ParseXS::Eval'=> '3.34',
+            'ExtUtils::Typemaps'    => '3.34',
+            'ExtUtils::Typemaps::Cmd'=> '3.34',
+            'ExtUtils::Typemaps::InputMap'=> '3.34',
+            'ExtUtils::Typemaps::OutputMap'=> '3.34',
+            'ExtUtils::Typemaps::Type'=> '3.34',
+            'File::Spec'            => '3.67',
+            'File::Spec::AmigaOS'   => '3.67',
+            'File::Spec::Cygwin'    => '3.67',
+            'File::Spec::Epoc'      => '3.67',
+            'File::Spec::Functions' => '3.67',
+            'File::Spec::Mac'       => '3.67',
+            'File::Spec::OS2'       => '3.67',
+            'File::Spec::Unix'      => '3.67',
+            'File::Spec::VMS'       => '3.67',
+            'File::Spec::Win32'     => '3.67',
+            'IO::Compress::Adapter::Bzip2'=> '2.074',
+            'IO::Compress::Adapter::Deflate'=> '2.074',
+            'IO::Compress::Adapter::Identity'=> '2.074',
+            'IO::Compress::Base'    => '2.074',
+            'IO::Compress::Base::Common'=> '2.074',
+            'IO::Compress::Bzip2'   => '2.074',
+            'IO::Compress::Deflate' => '2.074',
+            'IO::Compress::Gzip'    => '2.074',
+            'IO::Compress::Gzip::Constants'=> '2.074',
+            'IO::Compress::RawDeflate'=> '2.074',
+            'IO::Compress::Zip'     => '2.074',
+            'IO::Compress::Zip::Constants'=> '2.074',
+            'IO::Compress::Zlib::Constants'=> '2.074',
+            'IO::Compress::Zlib::Extra'=> '2.074',
+            'IO::Uncompress::Adapter::Bunzip2'=> '2.074',
+            'IO::Uncompress::Adapter::Identity'=> '2.074',
+            'IO::Uncompress::Adapter::Inflate'=> '2.074',
+            'IO::Uncompress::AnyInflate'=> '2.074',
+            'IO::Uncompress::AnyUncompress'=> '2.074',
+            'IO::Uncompress::Base'  => '2.074',
+            'IO::Uncompress::Bunzip2'=> '2.074',
+            'IO::Uncompress::Gunzip'=> '2.074',
+            'IO::Uncompress::Inflate'=> '2.074',
+            'IO::Uncompress::RawInflate'=> '2.074',
+            'IO::Uncompress::Unzip' => '2.074',
+            'Module::CoreList'      => '5.20170320',
+            'Module::CoreList::TieHashDelta'=> '5.20170230',
+            'Module::CoreList::Utils'=> '5.20170320',
+            'Pod::Perldoc'          => '3.28',
+            'Pod::Perldoc::BaseTo'  => '3.28',
+            'Pod::Perldoc::GetOptsOO'=> '3.28',
+            'Pod::Perldoc::ToANSI'  => '3.28',
+            'Pod::Perldoc::ToChecker'=> '3.28',
+            'Pod::Perldoc::ToMan'   => '3.28',
+            'Pod::Perldoc::ToNroff' => '3.28',
+            'Pod::Perldoc::ToPod'   => '3.28',
+            'Pod::Perldoc::ToRtf'   => '3.28',
+            'Pod::Perldoc::ToTerm'  => '3.28',
+            'Pod::Perldoc::ToText'  => '3.28',
+            'Pod::Perldoc::ToTk'    => '3.28',
+            'Pod::Perldoc::ToXml'   => '3.28',
+            'TAP::Base'             => '3.38',
+            'TAP::Formatter::Base'  => '3.38',
+            'TAP::Formatter::Color' => '3.38',
+            'TAP::Formatter::Console'=> '3.38',
+            'TAP::Formatter::Console::ParallelSession'=> '3.38',
+            'TAP::Formatter::Console::Session'=> '3.38',
+            'TAP::Formatter::File'  => '3.38',
+            'TAP::Formatter::File::Session'=> '3.38',
+            'TAP::Formatter::Session'=> '3.38',
+            'TAP::Harness'          => '3.38',
+            'TAP::Harness::Env'     => '3.38',
+            'TAP::Object'           => '3.38',
+            'TAP::Parser'           => '3.38',
+            'TAP::Parser::Aggregator'=> '3.38',
+            'TAP::Parser::Grammar'  => '3.38',
+            'TAP::Parser::Iterator' => '3.38',
+            'TAP::Parser::Iterator::Array'=> '3.38',
+            'TAP::Parser::Iterator::Process'=> '3.38',
+            'TAP::Parser::Iterator::Stream'=> '3.38',
+            'TAP::Parser::IteratorFactory'=> '3.38',
+            'TAP::Parser::Multiplexer'=> '3.38',
+            'TAP::Parser::Result'   => '3.38',
+            'TAP::Parser::Result::Bailout'=> '3.38',
+            'TAP::Parser::Result::Comment'=> '3.38',
+            'TAP::Parser::Result::Plan'=> '3.38',
+            'TAP::Parser::Result::Pragma'=> '3.38',
+            'TAP::Parser::Result::Test'=> '3.38',
+            'TAP::Parser::Result::Unknown'=> '3.38',
+            'TAP::Parser::Result::Version'=> '3.38',
+            'TAP::Parser::Result::YAML'=> '3.38',
+            'TAP::Parser::ResultFactory'=> '3.38',
+            'TAP::Parser::Scheduler'=> '3.38',
+            'TAP::Parser::Scheduler::Job'=> '3.38',
+            'TAP::Parser::Scheduler::Spinner'=> '3.38',
+            'TAP::Parser::Source'   => '3.38',
+            'TAP::Parser::SourceHandler'=> '3.38',
+            'TAP::Parser::SourceHandler::Executable'=> '3.38',
+            'TAP::Parser::SourceHandler::File'=> '3.38',
+            'TAP::Parser::SourceHandler::Handle'=> '3.38',
+            'TAP::Parser::SourceHandler::Perl'=> '3.38',
+            'TAP::Parser::SourceHandler::RawTAP'=> '3.38',
+            'TAP::Parser::YAMLish::Reader'=> '3.38',
+            'TAP::Parser::YAMLish::Writer'=> '3.38',
+            'Test::Harness'         => '3.38',
+            'VMS::Stdio'            => '2.41',
+            'threads'               => '2.15',
+            'threads::shared'       => '1.55',
+        },
+        removed => {
+        }
+    },
+    5.025012 => {
+        delta_from => 5.025011,
+        changed => {
+            'B::Op_private'         => '5.025012',
+            'CPAN'                  => '2.18',
+            'CPAN::Bundle'          => '5.5003',
+            'CPAN::Distribution'    => '2.18',
+            'Config'                => '5.025012',
+            'DynaLoader'            => '1.42',
+            'Module::CoreList'      => '5.20170420',
+            'Module::CoreList::TieHashDelta'=> '5.20170420',
+            'Module::CoreList::Utils'=> '5.20170420',
+            'Safe'                  => '2.40',
+            'XSLoader'              => '0.27',
+            'base'                  => '2.25',
+            'threads::shared'       => '1.56',
+        },
+        removed => {
+        }
+    },
+    5.026000 => {
+        delta_from => 5.025012,
+        changed => {
+            'B::Op_private'         => '5.026000',
+            'Config'                => '5.026',
+            'Module::CoreList'      => '5.20170530',
+            'Module::CoreList::TieHashDelta'=> '5.20170530',
+            'Module::CoreList::Utils'=> '5.20170530',
+        },
+        removed => {
+        }
+    },
+    5.027000 => {
+        delta_from => 5.026000,
+        changed => {
+            'Attribute::Handlers'   => '1.00',
+            'B::Concise'            => '1.000',
+            'B::Deparse'            => '1.41',
+            'B::Op_private'         => '5.027000',
+            'Config'                => '5.027',
+            'Module::CoreList'      => '5.20170531',
+            'Module::CoreList::TieHashDelta'=> '5.20170531',
+            'Module::CoreList::Utils'=> '5.20170531',
+            'O'                     => '1.02',
+            'attributes'            => '0.3',
+            'feature'               => '1.48',
+        },
+        removed => {
+        }
+    },
+    5.027001 => {
+        delta_from => 5.027,
+        changed => {
+            'App::Prove'            => '3.39',
+            'App::Prove::State'     => '3.39',
+            'App::Prove::State::Result'=> '3.39',
+            'App::Prove::State::Result::Test'=> '3.39',
+            'Archive::Tar'          => '2.26',
+            'Archive::Tar::Constant'=> '2.26',
+            'Archive::Tar::File'    => '2.26',
+            'B::Op_private'         => '5.027001',
+            'B::Terse'              => '1.08',
+            'Config'                => '5.027001',
+            'Devel::PPPort'         => '3.36',
+            'DirHandle'             => '1.05',
+            'ExtUtils::Command'     => '7.30',
+            'ExtUtils::Command::MM' => '7.30',
+            'ExtUtils::Install'     => '2.14',
+            'ExtUtils::Installed'   => '2.14',
+            'ExtUtils::Liblist'     => '7.30',
+            'ExtUtils::Liblist::Kid'=> '7.30',
+            'ExtUtils::MM'          => '7.30',
+            'ExtUtils::MM_AIX'      => '7.30',
+            'ExtUtils::MM_Any'      => '7.30',
+            'ExtUtils::MM_BeOS'     => '7.30',
+            'ExtUtils::MM_Cygwin'   => '7.30',
+            'ExtUtils::MM_DOS'      => '7.30',
+            'ExtUtils::MM_Darwin'   => '7.30',
+            'ExtUtils::MM_MacOS'    => '7.30',
+            'ExtUtils::MM_NW5'      => '7.30',
+            'ExtUtils::MM_OS2'      => '7.30',
+            'ExtUtils::MM_QNX'      => '7.30',
+            'ExtUtils::MM_UWIN'     => '7.30',
+            'ExtUtils::MM_Unix'     => '7.30',
+            'ExtUtils::MM_VMS'      => '7.30',
+            'ExtUtils::MM_VOS'      => '7.30',
+            'ExtUtils::MM_Win32'    => '7.30',
+            'ExtUtils::MM_Win95'    => '7.30',
+            'ExtUtils::MY'          => '7.30',
+            'ExtUtils::MakeMaker'   => '7.30',
+            'ExtUtils::MakeMaker::Config'=> '7.30',
+            'ExtUtils::MakeMaker::Locale'=> '7.30',
+            'ExtUtils::MakeMaker::version'=> '7.30',
+            'ExtUtils::MakeMaker::version::regex'=> '7.30',
+            'ExtUtils::Mkbootstrap' => '7.30',
+            'ExtUtils::Mksymlists'  => '7.30',
+            'ExtUtils::Packlist'    => '2.14',
+            'ExtUtils::testlib'     => '7.30',
+            'File::Path'            => '2.14',
+            'Filter::Util::Call'    => '1.57',
+            'GDBM_File'             => '1.16',
+            'Getopt::Long'          => '2.5',
+            'IO::Socket::IP'        => '0.39',
+            'IPC::Cmd'              => '0.98',
+            'JSON::PP'              => '2.94',
+            'JSON::PP::Boolean'     => '2.94',
+            'Locale::Codes'         => '3.52',
+            'Locale::Codes::Constants'=> '3.52',
+            'Locale::Codes::Country'=> '3.52',
+            'Locale::Codes::Country_Codes'=> '3.52',
+            'Locale::Codes::Country_Retired'=> '3.52',
+            'Locale::Codes::Currency'=> '3.52',
+            'Locale::Codes::Currency_Codes'=> '3.52',
+            'Locale::Codes::Currency_Retired'=> '3.52',
+            'Locale::Codes::LangExt'=> '3.52',
+            'Locale::Codes::LangExt_Codes'=> '3.52',
+            'Locale::Codes::LangExt_Retired'=> '3.52',
+            'Locale::Codes::LangFam'=> '3.52',
+            'Locale::Codes::LangFam_Codes'=> '3.52',
+            'Locale::Codes::LangFam_Retired'=> '3.52',
+            'Locale::Codes::LangVar'=> '3.52',
+            'Locale::Codes::LangVar_Codes'=> '3.52',
+            'Locale::Codes::LangVar_Retired'=> '3.52',
+            'Locale::Codes::Language'=> '3.52',
+            'Locale::Codes::Language_Codes'=> '3.52',
+            'Locale::Codes::Language_Retired'=> '3.52',
+            'Locale::Codes::Script' => '3.52',
+            'Locale::Codes::Script_Codes'=> '3.52',
+            'Locale::Codes::Script_Retired'=> '3.52',
+            'Locale::Country'       => '3.52',
+            'Locale::Currency'      => '3.52',
+            'Locale::Language'      => '3.52',
+            'Locale::Script'        => '3.52',
+            'Module::CoreList'      => '5.20170621',
+            'Module::CoreList::TieHashDelta'=> '5.20170621',
+            'Module::CoreList::Utils'=> '5.20170621',
+            'PerlIO::scalar'        => '0.27',
+            'PerlIO::via'           => '0.17',
+            'Storable'              => '2.63',
+            'TAP::Base'             => '3.39',
+            'TAP::Formatter::Base'  => '3.39',
+            'TAP::Formatter::Color' => '3.39',
+            'TAP::Formatter::Console'=> '3.39',
+            'TAP::Formatter::Console::ParallelSession'=> '3.39',
+            'TAP::Formatter::Console::Session'=> '3.39',
+            'TAP::Formatter::File'  => '3.39',
+            'TAP::Formatter::File::Session'=> '3.39',
+            'TAP::Formatter::Session'=> '3.39',
+            'TAP::Harness'          => '3.39',
+            'TAP::Harness::Env'     => '3.39',
+            'TAP::Object'           => '3.39',
+            'TAP::Parser'           => '3.39',
+            'TAP::Parser::Aggregator'=> '3.39',
+            'TAP::Parser::Grammar'  => '3.39',
+            'TAP::Parser::Iterator' => '3.39',
+            'TAP::Parser::Iterator::Array'=> '3.39',
+            'TAP::Parser::Iterator::Process'=> '3.39',
+            'TAP::Parser::Iterator::Stream'=> '3.39',
+            'TAP::Parser::IteratorFactory'=> '3.39',
+            'TAP::Parser::Multiplexer'=> '3.39',
+            'TAP::Parser::Result'   => '3.39',
+            'TAP::Parser::Result::Bailout'=> '3.39',
+            'TAP::Parser::Result::Comment'=> '3.39',
+            'TAP::Parser::Result::Plan'=> '3.39',
+            'TAP::Parser::Result::Pragma'=> '3.39',
+            'TAP::Parser::Result::Test'=> '3.39',
+            'TAP::Parser::Result::Unknown'=> '3.39',
+            'TAP::Parser::Result::Version'=> '3.39',
+            'TAP::Parser::Result::YAML'=> '3.39',
+            'TAP::Parser::ResultFactory'=> '3.39',
+            'TAP::Parser::Scheduler'=> '3.39',
+            'TAP::Parser::Scheduler::Job'=> '3.39',
+            'TAP::Parser::Scheduler::Spinner'=> '3.39',
+            'TAP::Parser::Source'   => '3.39',
+            'TAP::Parser::SourceHandler'=> '3.39',
+            'TAP::Parser::SourceHandler::Executable'=> '3.39',
+            'TAP::Parser::SourceHandler::File'=> '3.39',
+            'TAP::Parser::SourceHandler::Handle'=> '3.39',
+            'TAP::Parser::SourceHandler::Perl'=> '3.39',
+            'TAP::Parser::SourceHandler::RawTAP'=> '3.39',
+            'TAP::Parser::YAMLish::Reader'=> '3.39',
+            'TAP::Parser::YAMLish::Writer'=> '3.39',
+            'Test::Harness'         => '3.39',
+            'XS::APItest'           => '0.89',
+            '_charnames'            => '1.45',
+            'charnames'             => '1.45',
+            'if'                    => '0.0607',
+            'mro'                   => '1.21',
+            'threads'               => '2.16',
+            'threads::shared'       => '1.57',
+            'version'               => '0.9918',
+            'version::regex'        => '0.9918',
+        },
+        removed => {
+        }
+    },
+    5.022004 => {
+        delta_from => 5.022003,
+        changed => {
+            'B::Op_private'         => '5.022004',
+            'Config'                => '5.022004',
+            'Module::CoreList'      => '5.20170715_22',
+            'Module::CoreList::TieHashDelta'=> '5.20170715_22',
+            'Module::CoreList::Utils'=> '5.20170715_22',
+            'base'                  => '2.22_01',
+        },
+        removed => {
+        }
+    },
+    5.024002 => {
+        delta_from => 5.024001,
+        changed => {
+            'B::Op_private'         => '5.024002',
+            'Config'                => '5.024002',
+            'Module::CoreList'      => '5.20170715_24',
+            'Module::CoreList::TieHashDelta'=> '5.20170715_24',
+            'Module::CoreList::Utils'=> '5.20170715_24',
+            'base'                  => '2.23_01',
+        },
+        removed => {
+        }
+    },
+    5.027002 => {
+        delta_from => 5.027001,
+        changed => {
+            'B::Op_private'         => '5.027002',
+            'Carp'                  => '1.43',
+            'Carp::Heavy'           => '1.43',
+            'Config'                => '5.027002',
+            'Cwd'                   => '3.68',
+            'Encode'                => '2.92',
+            'Encode::Alias'         => '2.23',
+            'Encode::CN::HZ'        => '2.09',
+            'Encode::Encoding'      => '2.08',
+            'Encode::GSM0338'       => '2.07',
+            'Encode::Guess'         => '2.07',
+            'Encode::JP::JIS7'      => '2.07',
+            'Encode::KR::2022_KR'   => '2.04',
+            'Encode::MIME::Header'  => '2.27',
+            'Encode::MIME::Header::ISO_2022_JP'=> '1.09',
+            'Encode::Unicode'       => '2.16',
+            'Encode::Unicode::UTF7' => '2.10',
+            'ExtUtils::CBuilder'    => '0.280228',
+            'ExtUtils::CBuilder::Base'=> '0.280228',
+            'ExtUtils::CBuilder::Platform::Unix'=> '0.280228',
+            'ExtUtils::CBuilder::Platform::VMS'=> '0.280228',
+            'ExtUtils::CBuilder::Platform::Windows'=> '0.280228',
+            'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280228',
+            'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280228',
+            'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280228',
+            'ExtUtils::CBuilder::Platform::aix'=> '0.280228',
+            'ExtUtils::CBuilder::Platform::android'=> '0.280228',
+            'ExtUtils::CBuilder::Platform::cygwin'=> '0.280228',
+            'ExtUtils::CBuilder::Platform::darwin'=> '0.280228',
+            'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280228',
+            'ExtUtils::CBuilder::Platform::os2'=> '0.280228',
+            'File::Glob'            => '1.29',
+            'File::Spec'            => '3.68',
+            'File::Spec::AmigaOS'   => '3.68',
+            'File::Spec::Cygwin'    => '3.68',
+            'File::Spec::Epoc'      => '3.68',
+            'File::Spec::Functions' => '3.68',
+            'File::Spec::Mac'       => '3.68',
+            'File::Spec::OS2'       => '3.68',
+            'File::Spec::Unix'      => '3.68',
+            'File::Spec::VMS'       => '3.68',
+            'File::Spec::Win32'     => '3.68',
+            'List::Util'            => '1.48',
+            'List::Util::XS'        => '1.48',
+            'Math::BigRat'          => '0.2613',
+            'Module::CoreList'      => '5.20170720',
+            'Module::CoreList::TieHashDelta'=> '5.20170720',
+            'Module::CoreList::Utils'=> '5.20170720',
+            'Opcode'                => '1.40',
+            'POSIX'                 => '1.77',
+            'PerlIO::scalar'        => '0.29',
+            'Scalar::Util'          => '1.48',
+            'Sub::Util'             => '1.48',
+            'Time::HiRes'           => '1.9743',
+            'Time::Piece'           => '1.3201',
+            'Time::Seconds'         => '1.3201',
+            'Unicode'               => '10.0.0',
+            'XS::APItest'           => '0.90',
+            'arybase'               => '0.13',
+            'encoding'              => '2.20',
+            'feature'               => '1.49',
+            're'                    => '0.35',
+        },
+        removed => {
+        }
+    },
+    5.027003 => {
+        delta_from => 5.027002,
+        changed => {
+            'B'                     => '1.69',
+            'B::Concise'            => '1.001',
+            'B::Debug'              => '1.25',
+            'B::Deparse'            => '1.42',
+            'B::Op_private'         => '5.027003',
+            'Config'                => '5.027003',
+            'Data::Dumper'          => '2.167_02',
+            'Devel::Peek'           => '1.27',
+            'ExtUtils::Constant'    => '0.24',
+            'ExtUtils::Constant::Base'=> '0.06',
+            'ExtUtils::Constant::ProxySubs'=> '0.09',
+            'ExtUtils::Constant::Utils'=> '0.04',
+            'ExtUtils::ParseXS'     => '3.35',
+            'ExtUtils::ParseXS::Constants'=> '3.35',
+            'ExtUtils::ParseXS::CountLines'=> '3.35',
+            'ExtUtils::ParseXS::Eval'=> '3.35',
+            'ExtUtils::ParseXS::Utilities'=> '3.35',
+            'ExtUtils::Typemaps'    => '3.35',
+            'ExtUtils::Typemaps::Cmd'=> '3.35',
+            'ExtUtils::Typemaps::InputMap'=> '3.35',
+            'ExtUtils::Typemaps::OutputMap'=> '3.35',
+            'ExtUtils::Typemaps::Type'=> '3.35',
+            'Filter::Simple'        => '0.94',
+            'Module::CoreList'      => '5.20170821',
+            'Module::CoreList::TieHashDelta'=> '5.20170821',
+            'Module::CoreList::Utils'=> '5.20170821',
+            'SelfLoader'            => '1.24',
+            'Storable'              => '2.64',
+            'XS::APItest'           => '0.91',
+            'base'                  => '2.26',
+            'threads'               => '2.17',
+            'utf8'                  => '1.20',
+        },
+        removed => {
+        }
+    },
+    5.027004 => {
+        delta_from => 5.027003,
+        changed => {
+            'B::Op_private'         => '5.027004',
+            'Config'                => '5.027004',
+            'File::Glob'            => '1.30',
+            'I18N::Langinfo'        => '0.14',
+            'Module::CoreList'      => '5.20170920',
+            'Module::CoreList::TieHashDelta'=> '5.20170920',
+            'Module::CoreList::Utils'=> '5.20170920',
+            'Term::ReadLine'        => '1.17',
+            'VMS::Stdio'            => '2.42',
+            'XS::APItest'           => '0.92',
+            'attributes'            => '0.31',
+            'sort'                  => '2.03',
+            'threads'               => '2.18',
+        },
+        removed => {
+        }
+    },
+    5.024003 => {
+        delta_from => 5.024002,
+        changed => {
+            'B::Op_private'         => '5.024003',
+            'Config'                => '5.024003',
+            'Module::CoreList'      => '5.20170922_24',
+            'Module::CoreList::TieHashDelta'=> '5.20170922_24',
+            'Module::CoreList::Utils'=> '5.20170922_24',
+            'POSIX'                 => '1.65_01',
+            'Time::HiRes'           => '1.9741',
+        },
+        removed => {
+        }
+    },
+    5.026001 => {
+        delta_from => 5.026000,
+        changed => {
+            'B::Op_private'         => '5.026001',
+            'Config'                => '5.026001',
+            'Module::CoreList'      => '5.20170922_26',
+            'Module::CoreList::TieHashDelta'=> '5.20170922_26',
+            'Module::CoreList::Utils'=> '5.20170922_26',
+            '_charnames'            => '1.45',
+            'base'                  => '2.26',
+            'charnames'             => '1.45',
+        },
+        removed => {
+        }
+    },
+    5.027005 => {
+        delta_from => 5.027004,
+        changed => {
+            'B'                     => '1.70',
+            'B::Concise'            => '1.002',
+            'B::Deparse'            => '1.43',
+            'B::Op_private'         => '5.027005',
+            'B::Xref'               => '1.07',
+            'Config'                => '5.027005',
+            'Config::Perl::V'       => '0.29',
+            'Digest::SHA'           => '5.98',
+            'Encode'                => '2.93',
+            'Encode::CN::HZ'        => '2.10',
+            'Encode::JP::JIS7'      => '2.08',
+            'Encode::MIME::Header'  => '2.28',
+            'Encode::MIME::Name'    => '1.03',
+            'File::Fetch'           => '0.54',
+            'File::Path'            => '2.15',
+            'List::Util'            => '1.49',
+            'List::Util::XS'        => '1.49',
+            'Locale::Codes'         => '3.54',
+            'Locale::Codes::Constants'=> '3.54',
+            'Locale::Codes::Country'=> '3.54',
+            'Locale::Codes::Country_Codes'=> '3.54',
+            'Locale::Codes::Country_Retired'=> '3.54',
+            'Locale::Codes::Currency'=> '3.54',
+            'Locale::Codes::Currency_Codes'=> '3.54',
+            'Locale::Codes::Currency_Retired'=> '3.54',
+            'Locale::Codes::LangExt'=> '3.54',
+            'Locale::Codes::LangExt_Codes'=> '3.54',
+            'Locale::Codes::LangExt_Retired'=> '3.54',
+            'Locale::Codes::LangFam'=> '3.54',
+            'Locale::Codes::LangFam_Codes'=> '3.54',
+            'Locale::Codes::LangFam_Retired'=> '3.54',
+            'Locale::Codes::LangVar'=> '3.54',
+            'Locale::Codes::LangVar_Codes'=> '3.54',
+            'Locale::Codes::LangVar_Retired'=> '3.54',
+            'Locale::Codes::Language'=> '3.54',
+            'Locale::Codes::Language_Codes'=> '3.54',
+            'Locale::Codes::Language_Retired'=> '3.54',
+            'Locale::Codes::Script' => '3.54',
+            'Locale::Codes::Script_Codes'=> '3.54',
+            'Locale::Codes::Script_Retired'=> '3.54',
+            'Locale::Country'       => '3.54',
+            'Locale::Currency'      => '3.54',
+            'Locale::Language'      => '3.54',
+            'Locale::Script'        => '3.54',
+            'Math::BigFloat'        => '1.999811',
+            'Math::BigInt'          => '1.999811',
+            'Math::BigInt::Calc'    => '1.999811',
+            'Math::BigInt::CalcEmu' => '1.999811',
+            'Math::BigInt::FastCalc'=> '0.5006',
+            'Math::BigInt::Lib'     => '1.999811',
+            'Module::CoreList'      => '5.20171020',
+            'Module::CoreList::TieHashDelta'=> '5.20171020',
+            'Module::CoreList::Utils'=> '5.20171020',
+            'NEXT'                  => '0.67_01',
+            'POSIX'                 => '1.78',
+            'Pod::Perldoc'          => '3.2801',
+            'Scalar::Util'          => '1.49',
+            'Sub::Util'             => '1.49',
+            'Sys::Hostname'         => '1.21',
+            'Test2'                 => '1.302103',
+            'Test2::API'            => '1.302103',
+            'Test2::API::Breakage'  => '1.302103',
+            'Test2::API::Context'   => '1.302103',
+            'Test2::API::Instance'  => '1.302103',
+            'Test2::API::Stack'     => '1.302103',
+            'Test2::Event'          => '1.302103',
+            'Test2::Event::Bail'    => '1.302103',
+            'Test2::Event::Diag'    => '1.302103',
+            'Test2::Event::Encoding'=> '1.302103',
+            'Test2::Event::Exception'=> '1.302103',
+            'Test2::Event::Fail'    => '1.302103',
+            'Test2::Event::Generic' => '1.302103',
+            'Test2::Event::Note'    => '1.302103',
+            'Test2::Event::Ok'      => '1.302103',
+            'Test2::Event::Pass'    => '1.302103',
+            'Test2::Event::Plan'    => '1.302103',
+            'Test2::Event::Skip'    => '1.302103',
+            'Test2::Event::Subtest' => '1.302103',
+            'Test2::Event::TAP::Version'=> '1.302103',
+            'Test2::Event::Waiting' => '1.302103',
+            'Test2::EventFacet'     => '1.302103',
+            'Test2::EventFacet::About'=> '1.302103',
+            'Test2::EventFacet::Amnesty'=> '1.302103',
+            'Test2::EventFacet::Assert'=> '1.302103',
+            'Test2::EventFacet::Control'=> '1.302103',
+            'Test2::EventFacet::Error'=> '1.302103',
+            'Test2::EventFacet::Info'=> '1.302103',
+            'Test2::EventFacet::Meta'=> '1.302103',
+            'Test2::EventFacet::Parent'=> '1.302103',
+            'Test2::EventFacet::Plan'=> '1.302103',
+            'Test2::EventFacet::Trace'=> '1.302103',
+            'Test2::Formatter'      => '1.302103',
+            'Test2::Formatter::TAP' => '1.302103',
+            'Test2::Hub'            => '1.302103',
+            'Test2::Hub::Interceptor'=> '1.302103',
+            'Test2::Hub::Interceptor::Terminator'=> '1.302103',
+            'Test2::Hub::Subtest'   => '1.302103',
+            'Test2::IPC'            => '1.302103',
+            'Test2::IPC::Driver'    => '1.302103',
+            'Test2::IPC::Driver::Files'=> '1.302103',
+            'Test2::Tools::Tiny'    => '1.302103',
+            'Test2::Util'           => '1.302103',
+            'Test2::Util::ExternalMeta'=> '1.302103',
+            'Test2::Util::Facets2Legacy'=> '1.302103',
+            'Test2::Util::HashBase' => '0.005',
+            'Test2::Util::Trace'    => '1.302103',
+            'Test::Builder'         => '1.302103',
+            'Test::Builder::Formatter'=> '1.302103',
+            'Test::Builder::IO::Scalar'=> '2.114',
+            'Test::Builder::Module' => '1.302103',
+            'Test::Builder::Tester' => '1.302103',
+            'Test::Builder::Tester::Color'=> '1.302103',
+            'Test::Builder::TodoDiag'=> '1.302103',
+            'Test::More'            => '1.302103',
+            'Test::Simple'          => '1.302103',
+            'Test::Tester'          => '1.302103',
+            'Test::Tester::Capture' => '1.302103',
+            'Test::Tester::CaptureRunner'=> '1.302103',
+            'Test::Tester::Delegate'=> '1.302103',
+            'Test::use::ok'         => '1.302103',
+            'Time::HiRes'           => '1.9746',
+            'Time::Piece'           => '1.3202',
+            'Time::Seconds'         => '1.3202',
+            'arybase'               => '0.14',
+            'encoding'              => '2.21',
+            'ok'                    => '1.302103',
+        },
+        removed => {
+            'Test2::Event::Info'    => 1,
+        }
+    },
+    5.027006 => {
+        delta_from => 5.027005,
+        changed => {
+            'Attribute::Handlers'   => '1.01',
+            'B'                     => '1.72',
+            'B::Concise'            => '1.003',
+            'B::Deparse'            => '1.45',
+            'B::Op_private'         => '5.027006',
+            'Carp'                  => '1.44',
+            'Carp::Heavy'           => '1.44',
+            'Compress::Raw::Zlib'   => '2.075',
+            'Config'                => '5.027006',
+            'Config::Extensions'    => '0.02',
+            'Cwd'                   => '3.70',
+            'DynaLoader'            => '1.44',
+            'ExtUtils::CBuilder'    => '0.280229',
+            'ExtUtils::CBuilder::Platform::Unix'=> '0.280229',
+            'ExtUtils::CBuilder::Platform::VMS'=> '0.280229',
+            'ExtUtils::CBuilder::Platform::Windows'=> '0.280229',
+            'ExtUtils::CBuilder::Platform::aix'=> '0.280229',
+            'ExtUtils::CBuilder::Platform::android'=> '0.280229',
+            'ExtUtils::CBuilder::Platform::cygwin'=> '0.280229',
+            'ExtUtils::CBuilder::Platform::darwin'=> '0.280229',
+            'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280229',
+            'ExtUtils::CBuilder::Platform::os2'=> '0.280229',
+            'ExtUtils::Embed'       => '1.35',
+            'ExtUtils::Miniperl'    => '1.07',
+            'ExtUtils::ParseXS'     => '3.36',
+            'ExtUtils::ParseXS::Constants'=> '3.36',
+            'ExtUtils::ParseXS::CountLines'=> '3.36',
+            'ExtUtils::ParseXS::Eval'=> '3.36',
+            'ExtUtils::ParseXS::Utilities'=> '3.36',
+            'ExtUtils::Typemaps'    => '3.36',
+            'ExtUtils::Typemaps::Cmd'=> '3.36',
+            'ExtUtils::Typemaps::InputMap'=> '3.36',
+            'ExtUtils::Typemaps::OutputMap'=> '3.36',
+            'ExtUtils::Typemaps::Type'=> '3.36',
+            'ExtUtils::XSSymSet'    => '1.4',
+            'File::Copy'            => '2.33',
+            'File::Spec'            => '3.69',
+            'File::Spec::AmigaOS'   => '3.69',
+            'File::Spec::Cygwin'    => '3.69',
+            'File::Spec::Epoc'      => '3.69',
+            'File::Spec::Functions' => '3.69',
+            'File::Spec::Mac'       => '3.69',
+            'File::Spec::OS2'       => '3.69',
+            'File::Spec::Unix'      => '3.69',
+            'File::Spec::VMS'       => '3.69',
+            'File::Spec::Win32'     => '3.69',
+            'File::stat'            => '1.08',
+            'FileCache'             => '1.10',
+            'Filter::Simple'        => '0.95',
+            'Hash::Util::FieldHash' => '1.20',
+            'I18N::LangTags'        => '0.43',
+            'I18N::LangTags::Detect'=> '1.07',
+            'I18N::LangTags::List'  => '0.40',
+            'I18N::Langinfo'        => '0.15',
+            'IO::Handle'            => '1.37',
+            'IO::Select'            => '1.23',
+            'Locale::Maketext'      => '1.29',
+            'Module::CoreList'      => '5.20171120',
+            'Module::CoreList::TieHashDelta'=> '5.20171120',
+            'Module::CoreList::Utils'=> '5.20171120',
+            'Net::Cmd'              => '3.11',
+            'Net::Config'           => '3.11',
+            'Net::Domain'           => '3.11',
+            'Net::FTP'              => '3.11',
+            'Net::FTP::A'           => '3.11',
+            'Net::FTP::E'           => '3.11',
+            'Net::FTP::I'           => '3.11',
+            'Net::FTP::L'           => '3.11',
+            'Net::FTP::dataconn'    => '3.11',
+            'Net::NNTP'             => '3.11',
+            'Net::Netrc'            => '3.11',
+            'Net::POP3'             => '3.11',
+            'Net::Ping'             => '2.62',
+            'Net::SMTP'             => '3.11',
+            'Net::Time'             => '3.11',
+            'Net::hostent'          => '1.02',
+            'Net::netent'           => '1.01',
+            'Net::protoent'         => '1.01',
+            'Net::servent'          => '1.02',
+            'O'                     => '1.03',
+            'ODBM_File'             => '1.15',
+            'Opcode'                => '1.41',
+            'POSIX'                 => '1.80',
+            'Pod::Html'             => '1.2203',
+            'SelfLoader'            => '1.25',
+            'Socket'                => '2.020_04',
+            'Storable'              => '2.65',
+            'Test'                  => '1.31',
+            'Test2'                 => '1.302111',
+            'Test2::API'            => '1.302111',
+            'Test2::API::Breakage'  => '1.302111',
+            'Test2::API::Context'   => '1.302111',
+            'Test2::API::Instance'  => '1.302111',
+            'Test2::API::Stack'     => '1.302111',
+            'Test2::Event'          => '1.302111',
+            'Test2::Event::Bail'    => '1.302111',
+            'Test2::Event::Diag'    => '1.302111',
+            'Test2::Event::Encoding'=> '1.302111',
+            'Test2::Event::Exception'=> '1.302111',
+            'Test2::Event::Fail'    => '1.302111',
+            'Test2::Event::Generic' => '1.302111',
+            'Test2::Event::Note'    => '1.302111',
+            'Test2::Event::Ok'      => '1.302111',
+            'Test2::Event::Pass'    => '1.302111',
+            'Test2::Event::Plan'    => '1.302111',
+            'Test2::Event::Skip'    => '1.302111',
+            'Test2::Event::Subtest' => '1.302111',
+            'Test2::Event::TAP::Version'=> '1.302111',
+            'Test2::Event::Waiting' => '1.302111',
+            'Test2::EventFacet'     => '1.302111',
+            'Test2::EventFacet::About'=> '1.302111',
+            'Test2::EventFacet::Amnesty'=> '1.302111',
+            'Test2::EventFacet::Assert'=> '1.302111',
+            'Test2::EventFacet::Control'=> '1.302111',
+            'Test2::EventFacet::Error'=> '1.302111',
+            'Test2::EventFacet::Info'=> '1.302111',
+            'Test2::EventFacet::Meta'=> '1.302111',
+            'Test2::EventFacet::Parent'=> '1.302111',
+            'Test2::EventFacet::Plan'=> '1.302111',
+            'Test2::EventFacet::Trace'=> '1.302111',
+            'Test2::Formatter'      => '1.302111',
+            'Test2::Formatter::TAP' => '1.302111',
+            'Test2::Hub'            => '1.302111',
+            'Test2::Hub::Interceptor'=> '1.302111',
+            'Test2::Hub::Interceptor::Terminator'=> '1.302111',
+            'Test2::Hub::Subtest'   => '1.302111',
+            'Test2::IPC'            => '1.302111',
+            'Test2::IPC::Driver'    => '1.302111',
+            'Test2::IPC::Driver::Files'=> '1.302111',
+            'Test2::Tools::Tiny'    => '1.302111',
+            'Test2::Util'           => '1.302111',
+            'Test2::Util::ExternalMeta'=> '1.302111',
+            'Test2::Util::Facets2Legacy'=> '1.302111',
+            'Test2::Util::HashBase' => '1.302111',
+            'Test2::Util::Trace'    => '1.302111',
+            'Test::Builder'         => '1.302111',
+            'Test::Builder::Formatter'=> '1.302111',
+            'Test::Builder::Module' => '1.302111',
+            'Test::Builder::Tester' => '1.302111',
+            'Test::Builder::Tester::Color'=> '1.302111',
+            'Test::Builder::TodoDiag'=> '1.302111',
+            'Test::More'            => '1.302111',
+            'Test::Simple'          => '1.302111',
+            'Test::Tester'          => '1.302111',
+            'Test::Tester::Capture' => '1.302111',
+            'Test::Tester::CaptureRunner'=> '1.302111',
+            'Test::Tester::Delegate'=> '1.302111',
+            'Test::use::ok'         => '1.302111',
+            'Tie::Array'            => '1.07',
+            'Tie::StdHandle'        => '4.5',
+            'Time::HiRes'           => '1.9747',
+            'Time::gmtime'          => '1.04',
+            'Time::localtime'       => '1.03',
+            'Unicode::Collate'      => '1.23',
+            'Unicode::Collate::CJK::Big5'=> '1.23',
+            'Unicode::Collate::CJK::GB2312'=> '1.23',
+            'Unicode::Collate::CJK::JISX0208'=> '1.23',
+            'Unicode::Collate::CJK::Korean'=> '1.23',
+            'Unicode::Collate::CJK::Pinyin'=> '1.23',
+            'Unicode::Collate::CJK::Stroke'=> '1.23',
+            'Unicode::Collate::CJK::Zhuyin'=> '1.23',
+            'Unicode::Collate::Locale'=> '1.23',
+            'Unicode::Normalize'    => '1.26',
+            'User::grent'           => '1.02',
+            'User::pwent'           => '1.01',
+            'VMS::DCLsym'           => '1.09',
+            'VMS::Stdio'            => '2.44',
+            'XS::APItest'           => '0.93',
+            'XS::Typemap'           => '0.16',
+            'XSLoader'              => '0.28',
+            'attributes'            => '0.32',
+            'base'                  => '2.27',
+            'blib'                  => '1.07',
+            'experimental'          => '0.017',
+            'fields'                => '2.24',
+            'ok'                    => '1.302111',
+            're'                    => '0.36',
+            'sort'                  => '2.04',
+            'threads'               => '2.19',
+            'warnings'              => '1.38',
+        },
+        removed => {
+        }
+    },
+    5.027007 => {
+        delta_from => 5.027006,
+        changed => {
+            'App::Cpan'             => '1.67',
+            'B'                     => '1.73',
+            'B::Debug'              => '1.26',
+            'B::Deparse'            => '1.46',
+            'B::Op_private'         => '5.027007',
+            'CPAN'                  => '2.20',
+            'CPAN::Distribution'    => '2.19',
+            'CPAN::FTP'             => '5.5011',
+            'CPAN::FirstTime'       => '5.5311',
+            'CPAN::Shell'           => '5.5007',
+            'Carp'                  => '1.45',
+            'Carp::Heavy'           => '1.45',
+            'Compress::Raw::Zlib'   => '2.076',
+            'Config'                => '5.027007',
+            'Cwd'                   => '3.71',
+            'Data::Dumper'          => '2.169',
+            'Devel::PPPort'         => '3.37',
+            'Digest::SHA'           => '6.00',
+            'DynaLoader'            => '1.45',
+            'ExtUtils::CBuilder'    => '0.280230',
+            'ExtUtils::CBuilder::Base'=> '0.280230',
+            'ExtUtils::CBuilder::Platform::Unix'=> '0.280230',
+            'ExtUtils::CBuilder::Platform::VMS'=> '0.280230',
+            'ExtUtils::CBuilder::Platform::Windows'=> '0.280230',
+            'ExtUtils::CBuilder::Platform::Windows::BCC'=> '0.280230',
+            'ExtUtils::CBuilder::Platform::Windows::GCC'=> '0.280230',
+            'ExtUtils::CBuilder::Platform::Windows::MSVC'=> '0.280230',
+            'ExtUtils::CBuilder::Platform::aix'=> '0.280230',
+            'ExtUtils::CBuilder::Platform::android'=> '0.280230',
+            'ExtUtils::CBuilder::Platform::cygwin'=> '0.280230',
+            'ExtUtils::CBuilder::Platform::darwin'=> '0.280230',
+            'ExtUtils::CBuilder::Platform::dec_osf'=> '0.280230',
+            'ExtUtils::CBuilder::Platform::os2'=> '0.280230',
+            'ExtUtils::Typemaps'    => '3.37',
+            'File::Fetch'           => '0.56',
+            'File::Spec'            => '3.71',
+            'File::Spec::AmigaOS'   => '3.71',
+            'File::Spec::Cygwin'    => '3.71',
+            'File::Spec::Epoc'      => '3.71',
+            'File::Spec::Functions' => '3.71',
+            'File::Spec::Mac'       => '3.71',
+            'File::Spec::OS2'       => '3.71',
+            'File::Spec::Unix'      => '3.71',
+            'File::Spec::VMS'       => '3.71',
+            'File::Spec::Win32'     => '3.71',
+            'Filter::Util::Call'    => '1.58',
+            'GDBM_File'             => '1.17',
+            'JSON::PP'              => '2.97000',
+            'JSON::PP::Boolean'     => '2.97000',
+            'Locale::Codes'         => '3.55',
+            'Locale::Codes::Constants'=> '3.55',
+            'Locale::Codes::Country'=> '3.55',
+            'Locale::Codes::Country_Codes'=> '3.55',
+            'Locale::Codes::Country_Retired'=> '3.55',
+            'Locale::Codes::Currency'=> '3.55',
+            'Locale::Codes::Currency_Codes'=> '3.55',
+            'Locale::Codes::Currency_Retired'=> '3.55',
+            'Locale::Codes::LangExt'=> '3.55',
+            'Locale::Codes::LangExt_Codes'=> '3.55',
+            'Locale::Codes::LangExt_Retired'=> '3.55',
+            'Locale::Codes::LangFam'=> '3.55',
+            'Locale::Codes::LangFam_Codes'=> '3.55',
+            'Locale::Codes::LangFam_Retired'=> '3.55',
+            'Locale::Codes::LangVar'=> '3.55',
+            'Locale::Codes::LangVar_Codes'=> '3.55',
+            'Locale::Codes::LangVar_Retired'=> '3.55',
+            'Locale::Codes::Language'=> '3.55',
+            'Locale::Codes::Language_Codes'=> '3.55',
+            'Locale::Codes::Language_Retired'=> '3.55',
+            'Locale::Codes::Script' => '3.55',
+            'Locale::Codes::Script_Codes'=> '3.55',
+            'Locale::Codes::Script_Retired'=> '3.55',
+            'Locale::Country'       => '3.55',
+            'Locale::Currency'      => '3.55',
+            'Locale::Language'      => '3.55',
+            'Locale::Script'        => '3.55',
+            'Module::CoreList'      => '5.20171220',
+            'Module::CoreList::TieHashDelta'=> '5.20171220',
+            'Module::CoreList::Utils'=> '5.20171220',
+            'Opcode'                => '1.42',
+            'POSIX'                 => '1.81',
+            'Pod::Functions'        => '1.12',
+            'Pod::Functions::Functions'=> '1.12',
+            'Pod::Html'             => '1.23',
+            'Sys::Hostname'         => '1.22',
+            'Test2'                 => '1.302120',
+            'Test2::API'            => '1.302120',
+            'Test2::API::Breakage'  => '1.302120',
+            'Test2::API::Context'   => '1.302120',
+            'Test2::API::Instance'  => '1.302120',
+            'Test2::API::Stack'     => '1.302120',
+            'Test2::Event'          => '1.302120',
+            'Test2::Event::Bail'    => '1.302120',
+            'Test2::Event::Diag'    => '1.302120',
+            'Test2::Event::Encoding'=> '1.302120',
+            'Test2::Event::Exception'=> '1.302120',
+            'Test2::Event::Fail'    => '1.302120',
+            'Test2::Event::Generic' => '1.302120',
+            'Test2::Event::Note'    => '1.302120',
+            'Test2::Event::Ok'      => '1.302120',
+            'Test2::Event::Pass'    => '1.302120',
+            'Test2::Event::Plan'    => '1.302120',
+            'Test2::Event::Skip'    => '1.302120',
+            'Test2::Event::Subtest' => '1.302120',
+            'Test2::Event::TAP::Version'=> '1.302120',
+            'Test2::Event::Waiting' => '1.302120',
+            'Test2::EventFacet'     => '1.302120',
+            'Test2::EventFacet::About'=> '1.302120',
+            'Test2::EventFacet::Amnesty'=> '1.302120',
+            'Test2::EventFacet::Assert'=> '1.302120',
+            'Test2::EventFacet::Control'=> '1.302120',
+            'Test2::EventFacet::Error'=> '1.302120',
+            'Test2::EventFacet::Info'=> '1.302120',
+            'Test2::EventFacet::Meta'=> '1.302120',
+            'Test2::EventFacet::Parent'=> '1.302120',
+            'Test2::EventFacet::Plan'=> '1.302120',
+            'Test2::EventFacet::Trace'=> '1.302120',
+            'Test2::Formatter'      => '1.302120',
+            'Test2::Formatter::TAP' => '1.302120',
+            'Test2::Hub'            => '1.302120',
+            'Test2::Hub::Interceptor'=> '1.302120',
+            'Test2::Hub::Interceptor::Terminator'=> '1.302120',
+            'Test2::Hub::Subtest'   => '1.302120',
+            'Test2::IPC'            => '1.302120',
+            'Test2::IPC::Driver'    => '1.302120',
+            'Test2::IPC::Driver::Files'=> '1.302120',
+            'Test2::Tools::Tiny'    => '1.302120',
+            'Test2::Util'           => '1.302120',
+            'Test2::Util::ExternalMeta'=> '1.302120',
+            'Test2::Util::Facets2Legacy'=> '1.302120',
+            'Test2::Util::HashBase' => '1.302120',
+            'Test2::Util::Trace'    => '1.302120',
+            'Test::Builder'         => '1.302120',
+            'Test::Builder::Formatter'=> '1.302120',
+            'Test::Builder::Module' => '1.302120',
+            'Test::Builder::Tester' => '1.302120',
+            'Test::Builder::Tester::Color'=> '1.302120',
+            'Test::Builder::TodoDiag'=> '1.302120',
+            'Test::More'            => '1.302120',
+            'Test::Simple'          => '1.302120',
+            'Test::Tester'          => '1.302120',
+            'Test::Tester::Capture' => '1.302120',
+            'Test::Tester::CaptureRunner'=> '1.302120',
+            'Test::Tester::Delegate'=> '1.302120',
+            'Test::use::ok'         => '1.302120',
+            'Time::HiRes'           => '1.9748',
+            'Time::Piece'           => '1.3203',
+            'Time::Seconds'         => '1.3203',
+            'Unicode::Collate'      => '1.25',
+            'Unicode::Collate::CJK::Big5'=> '1.25',
+            'Unicode::Collate::CJK::GB2312'=> '1.25',
+            'Unicode::Collate::CJK::JISX0208'=> '1.25',
+            'Unicode::Collate::CJK::Korean'=> '1.25',
+            'Unicode::Collate::CJK::Pinyin'=> '1.25',
+            'Unicode::Collate::CJK::Stroke'=> '1.25',
+            'Unicode::Collate::CJK::Zhuyin'=> '1.25',
+            'Unicode::Collate::Locale'=> '1.25',
+            'Unicode::UCD'          => '0.69',
+            'XS::APItest'           => '0.94',
+            'XSLoader'              => '0.29',
+            'arybase'               => '0.15',
+            'autodie::exception'    => '2.29001',
+            'autodie::hints'        => '2.29001',
+            'experimental'          => '0.019',
+            'feature'               => '1.50',
+            'ok'                    => '1.302120',
+            'overload'              => '1.29',
+            'threads'               => '2.21',
+            'threads::shared'       => '1.58',
+            'warnings'              => '1.39',
+        },
+        removed => {
+        }
+    },
+    5.027008 => {
+        delta_from => 5.027007,
+        changed => {
+            'B'                     => '1.74',
+            'B::Deparse'            => '1.47',
+            'B::Op_private'         => '5.027008',
+            'Config'                => '5.027008',
+            'Cwd'                   => '3.72',
+            'Data::Dumper'          => '2.170',
+            'Devel::PPPort'         => '3.38',
+            'Digest::SHA'           => '6.01',
+            'Encode'                => '2.94',
+            'Encode::Alias'         => '2.24',
+            'ExtUtils::Miniperl'    => '1.08',
+            'File::Spec'            => '3.72',
+            'File::Spec::AmigaOS'   => '3.72',
+            'File::Spec::Cygwin'    => '3.72',
+            'File::Spec::Epoc'      => '3.72',
+            'File::Spec::Functions' => '3.72',
+            'File::Spec::Mac'       => '3.72',
+            'File::Spec::OS2'       => '3.72',
+            'File::Spec::Unix'      => '3.72',
+            'File::Spec::VMS'       => '3.72',
+            'File::Spec::Win32'     => '3.72',
+            'JSON::PP'              => '2.97001',
+            'JSON::PP::Boolean'     => '2.97001',
+            'Module::CoreList'      => '5.20180120',
+            'Module::CoreList::TieHashDelta'=> '5.20180120',
+            'Module::CoreList::Utils'=> '5.20180120',
+            'Opcode'                => '1.43',
+            'Pod::Functions'        => '1.13',
+            'Pod::Functions::Functions'=> '1.13',
+            'Pod::Html'             => '1.24',
+            'Pod::Man'              => '4.10',
+            'Pod::ParseLink'        => '4.10',
+            'Pod::Text'             => '4.10',
+            'Pod::Text::Color'      => '4.10',
+            'Pod::Text::Overstrike' => '4.10',
+            'Pod::Text::Termcap'    => '4.10',
+            'Socket'                => '2.027',
+            'Time::HiRes'           => '1.9752',
+            'Unicode::UCD'          => '0.70',
+            'XS::APItest'           => '0.95',
+            'XSLoader'              => '0.30',
+            'autodie::exception'    => '2.29002',
+            'feature'               => '1.51',
+            'overload'              => '1.30',
+            'utf8'                  => '1.21',
+            'warnings'              => '1.40',
+        },
+        removed => {
+        }
+    },
+    5.027009 => {
+        delta_from => 5.027008,
+        changed => {
+            'B::Op_private'         => '5.027009',
+            'Carp'                  => '1.46',
+            'Carp::Heavy'           => '1.46',
+            'Config'                => '5.027009',
+            'Cwd'                   => '3.74',
+            'Devel::PPPort'         => '3.39',
+            'Encode'                => '2.96',
+            'Encode::Unicode'       => '2.17',
+            'Errno'                 => '1.29',
+            'ExtUtils::Command'     => '7.32',
+            'ExtUtils::Command::MM' => '7.32',
+            'ExtUtils::Liblist'     => '7.32',
+            'ExtUtils::Liblist::Kid'=> '7.32',
+            'ExtUtils::MM'          => '7.32',
+            'ExtUtils::MM_AIX'      => '7.32',
+            'ExtUtils::MM_Any'      => '7.32',
+            'ExtUtils::MM_BeOS'     => '7.32',
+            'ExtUtils::MM_Cygwin'   => '7.32',
+            'ExtUtils::MM_DOS'      => '7.32',
+            'ExtUtils::MM_Darwin'   => '7.32',
+            'ExtUtils::MM_MacOS'    => '7.32',
+            'ExtUtils::MM_NW5'      => '7.32',
+            'ExtUtils::MM_OS2'      => '7.32',
+            'ExtUtils::MM_QNX'      => '7.32',
+            'ExtUtils::MM_UWIN'     => '7.32',
+            'ExtUtils::MM_Unix'     => '7.32',
+            'ExtUtils::MM_VMS'      => '7.32',
+            'ExtUtils::MM_VOS'      => '7.32',
+            'ExtUtils::MM_Win32'    => '7.32',
+            'ExtUtils::MM_Win95'    => '7.32',
+            'ExtUtils::MY'          => '7.32',
+            'ExtUtils::MakeMaker'   => '7.32',
+            'ExtUtils::MakeMaker::Config'=> '7.32',
+            'ExtUtils::MakeMaker::Locale'=> '7.32',
+            'ExtUtils::MakeMaker::version'=> '7.32',
+            'ExtUtils::MakeMaker::version::regex'=> '7.32',
+            'ExtUtils::Mkbootstrap' => '7.32',
+            'ExtUtils::Mksymlists'  => '7.32',
+            'ExtUtils::ParseXS'     => '3.38',
+            'ExtUtils::ParseXS::Constants'=> '3.38',
+            'ExtUtils::ParseXS::CountLines'=> '3.38',
+            'ExtUtils::ParseXS::Eval'=> '3.38',
+            'ExtUtils::ParseXS::Utilities'=> '3.38',
+            'ExtUtils::Typemaps'    => '3.38',
+            'ExtUtils::Typemaps::Cmd'=> '3.38',
+            'ExtUtils::Typemaps::InputMap'=> '3.38',
+            'ExtUtils::Typemaps::OutputMap'=> '3.38',
+            'ExtUtils::Typemaps::Type'=> '3.38',
+            'ExtUtils::testlib'     => '7.32',
+            'File::Spec'            => '3.74',
+            'File::Spec::AmigaOS'   => '3.74',
+            'File::Spec::Cygwin'    => '3.74',
+            'File::Spec::Epoc'      => '3.74',
+            'File::Spec::Functions' => '3.74',
+            'File::Spec::Mac'       => '3.74',
+            'File::Spec::OS2'       => '3.74',
+            'File::Spec::Unix'      => '3.74',
+            'File::Spec::VMS'       => '3.74',
+            'File::Spec::Win32'     => '3.74',
+            'IPC::Cmd'              => '1.00',
+            'Math::BigFloat::Trace' => '0.49',
+            'Math::BigInt::Trace'   => '0.49',
+            'Module::CoreList'      => '5.20180220',
+            'Module::CoreList::Utils'=> '5.20180220',
+            'POSIX'                 => '1.82',
+            'PerlIO::encoding'      => '0.26',
+            'Storable'              => '3.06',
+            'Storable::Limit'       => undef,
+            'Test2'                 => '1.302122',
+            'Test2::API'            => '1.302122',
+            'Test2::API::Breakage'  => '1.302122',
+            'Test2::API::Context'   => '1.302122',
+            'Test2::API::Instance'  => '1.302122',
+            'Test2::API::Stack'     => '1.302122',
+            'Test2::Event'          => '1.302122',
+            'Test2::Event::Bail'    => '1.302122',
+            'Test2::Event::Diag'    => '1.302122',
+            'Test2::Event::Encoding'=> '1.302122',
+            'Test2::Event::Exception'=> '1.302122',
+            'Test2::Event::Fail'    => '1.302122',
+            'Test2::Event::Generic' => '1.302122',
+            'Test2::Event::Note'    => '1.302122',
+            'Test2::Event::Ok'      => '1.302122',
+            'Test2::Event::Pass'    => '1.302122',
+            'Test2::Event::Plan'    => '1.302122',
+            'Test2::Event::Skip'    => '1.302122',
+            'Test2::Event::Subtest' => '1.302122',
+            'Test2::Event::TAP::Version'=> '1.302122',
+            'Test2::Event::Waiting' => '1.302122',
+            'Test2::EventFacet'     => '1.302122',
+            'Test2::EventFacet::About'=> '1.302122',
+            'Test2::EventFacet::Amnesty'=> '1.302122',
+            'Test2::EventFacet::Assert'=> '1.302122',
+            'Test2::EventFacet::Control'=> '1.302122',
+            'Test2::EventFacet::Error'=> '1.302122',
+            'Test2::EventFacet::Info'=> '1.302122',
+            'Test2::EventFacet::Meta'=> '1.302122',
+            'Test2::EventFacet::Parent'=> '1.302122',
+            'Test2::EventFacet::Plan'=> '1.302122',
+            'Test2::EventFacet::Render'=> '1.302122',
+            'Test2::EventFacet::Trace'=> '1.302122',
+            'Test2::Formatter'      => '1.302122',
+            'Test2::Formatter::TAP' => '1.302122',
+            'Test2::Hub'            => '1.302122',
+            'Test2::Hub::Interceptor'=> '1.302122',
+            'Test2::Hub::Interceptor::Terminator'=> '1.302122',
+            'Test2::Hub::Subtest'   => '1.302122',
+            'Test2::IPC'            => '1.302122',
+            'Test2::IPC::Driver'    => '1.302122',
+            'Test2::IPC::Driver::Files'=> '1.302122',
+            'Test2::Tools::Tiny'    => '1.302122',
+            'Test2::Util'           => '1.302122',
+            'Test2::Util::ExternalMeta'=> '1.302122',
+            'Test2::Util::Facets2Legacy'=> '1.302122',
+            'Test2::Util::HashBase' => '1.302122',
+            'Test2::Util::Trace'    => '1.302122',
+            'Test::Builder'         => '1.302122',
+            'Test::Builder::Formatter'=> '1.302122',
+            'Test::Builder::Module' => '1.302122',
+            'Test::Builder::Tester' => '1.302122',
+            'Test::Builder::Tester::Color'=> '1.302122',
+            'Test::Builder::TodoDiag'=> '1.302122',
+            'Test::More'            => '1.302122',
+            'Test::Simple'          => '1.302122',
+            'Test::Tester'          => '1.302122',
+            'Test::Tester::Capture' => '1.302122',
+            'Test::Tester::CaptureRunner'=> '1.302122',
+            'Test::Tester::Delegate'=> '1.302122',
+            'Test::use::ok'         => '1.302122',
+            'Time::HiRes'           => '1.9753',
+            'XS::APItest'           => '0.96',
+            'bigint'                => '0.49',
+            'bignum'                => '0.49',
+            'bigrat'                => '0.49',
+            'encoding'              => '2.22',
+            'if'                    => '0.0608',
+            'mro'                   => '1.22',
+            'ok'                    => '1.302122',
+            'threads'               => '2.22',
+            'warnings'              => '1.41',
+        },
+        removed => {
+            'Module::CoreList::TieHashDelta'=> 1,
+        }
+    },
+    5.027010 => {
+        delta_from => 5.027009,
+        changed => {
+            'App::Prove'            => '3.42',
+            'App::Prove::State'     => '3.42',
+            'App::Prove::State::Result'=> '3.42',
+            'App::Prove::State::Result::Test'=> '3.42',
+            'B::Deparse'            => '1.48',
+            'B::Op_private'         => '5.027010',
+            'Carp'                  => '1.49',
+            'Carp::Heavy'           => '1.49',
+            'Config'                => '5.02701',
+            'Encode'                => '2.97',
+            'ExtUtils::Command'     => '7.34',
+            'ExtUtils::Command::MM' => '7.34',
+            'ExtUtils::Liblist'     => '7.34',
+            'ExtUtils::Liblist::Kid'=> '7.34',
+            'ExtUtils::MM'          => '7.34',
+            'ExtUtils::MM_AIX'      => '7.34',
+            'ExtUtils::MM_Any'      => '7.34',
+            'ExtUtils::MM_BeOS'     => '7.34',
+            'ExtUtils::MM_Cygwin'   => '7.34',
+            'ExtUtils::MM_DOS'      => '7.34',
+            'ExtUtils::MM_Darwin'   => '7.34',
+            'ExtUtils::MM_MacOS'    => '7.34',
+            'ExtUtils::MM_NW5'      => '7.34',
+            'ExtUtils::MM_OS2'      => '7.34',
+            'ExtUtils::MM_QNX'      => '7.34',
+            'ExtUtils::MM_UWIN'     => '7.34',
+            'ExtUtils::MM_Unix'     => '7.34',
+            'ExtUtils::MM_VMS'      => '7.34',
+            'ExtUtils::MM_VOS'      => '7.34',
+            'ExtUtils::MM_Win32'    => '7.34',
+            'ExtUtils::MM_Win95'    => '7.34',
+            'ExtUtils::MY'          => '7.34',
+            'ExtUtils::MakeMaker'   => '7.34',
+            'ExtUtils::MakeMaker::Config'=> '7.34',
+            'ExtUtils::MakeMaker::Locale'=> '7.34',
+            'ExtUtils::MakeMaker::version'=> '7.34',
+            'ExtUtils::MakeMaker::version::regex'=> '7.34',
+            'ExtUtils::Mkbootstrap' => '7.34',
+            'ExtUtils::Mksymlists'  => '7.34',
+            'ExtUtils::ParseXS'     => '3.39',
+            'ExtUtils::ParseXS::Constants'=> '3.39',
+            'ExtUtils::ParseXS::CountLines'=> '3.39',
+            'ExtUtils::ParseXS::Eval'=> '3.39',
+            'ExtUtils::ParseXS::Utilities'=> '3.39',
+            'ExtUtils::testlib'     => '7.34',
+            'File::Glob'            => '1.31',
+            'I18N::Langinfo'        => '0.16',
+            'List::Util'            => '1.50',
+            'List::Util::XS'        => '1.50',
+            'Locale::Codes'         => '3.56',
+            'Locale::Codes::Constants'=> '3.56',
+            'Locale::Codes::Country'=> '3.56',
+            'Locale::Codes::Country_Codes'=> '3.56',
+            'Locale::Codes::Country_Retired'=> '3.56',
+            'Locale::Codes::Currency'=> '3.56',
+            'Locale::Codes::Currency_Codes'=> '3.56',
+            'Locale::Codes::Currency_Retired'=> '3.56',
+            'Locale::Codes::LangExt'=> '3.56',
+            'Locale::Codes::LangExt_Codes'=> '3.56',
+            'Locale::Codes::LangExt_Retired'=> '3.56',
+            'Locale::Codes::LangFam'=> '3.56',
+            'Locale::Codes::LangFam_Codes'=> '3.56',
+            'Locale::Codes::LangFam_Retired'=> '3.56',
+            'Locale::Codes::LangVar'=> '3.56',
+            'Locale::Codes::LangVar_Codes'=> '3.56',
+            'Locale::Codes::LangVar_Retired'=> '3.56',
+            'Locale::Codes::Language'=> '3.56',
+            'Locale::Codes::Language_Codes'=> '3.56',
+            'Locale::Codes::Language_Retired'=> '3.56',
+            'Locale::Codes::Script' => '3.56',
+            'Locale::Codes::Script_Codes'=> '3.56',
+            'Locale::Codes::Script_Retired'=> '3.56',
+            'Locale::Country'       => '3.56',
+            'Locale::Currency'      => '3.56',
+            'Locale::Language'      => '3.56',
+            'Locale::Script'        => '3.56',
+            'Module::CoreList'      => '5.20180221',
+            'Module::CoreList::Utils'=> '5.20180221',
+            'POSIX'                 => '1.83',
+            'Scalar::Util'          => '1.50',
+            'Sub::Util'             => '1.50',
+            'TAP::Base'             => '3.42',
+            'TAP::Formatter::Base'  => '3.42',
+            'TAP::Formatter::Color' => '3.42',
+            'TAP::Formatter::Console'=> '3.42',
+            'TAP::Formatter::Console::ParallelSession'=> '3.42',
+            'TAP::Formatter::Console::Session'=> '3.42',
+            'TAP::Formatter::File'  => '3.42',
+            'TAP::Formatter::File::Session'=> '3.42',
+            'TAP::Formatter::Session'=> '3.42',
+            'TAP::Harness'          => '3.42',
+            'TAP::Harness::Env'     => '3.42',
+            'TAP::Object'           => '3.42',
+            'TAP::Parser'           => '3.42',
+            'TAP::Parser::Aggregator'=> '3.42',
+            'TAP::Parser::Grammar'  => '3.42',
+            'TAP::Parser::Iterator' => '3.42',
+            'TAP::Parser::Iterator::Array'=> '3.42',
+            'TAP::Parser::Iterator::Process'=> '3.42',
+            'TAP::Parser::Iterator::Stream'=> '3.42',
+            'TAP::Parser::IteratorFactory'=> '3.42',
+            'TAP::Parser::Multiplexer'=> '3.42',
+            'TAP::Parser::Result'   => '3.42',
+            'TAP::Parser::Result::Bailout'=> '3.42',
+            'TAP::Parser::Result::Comment'=> '3.42',
+            'TAP::Parser::Result::Plan'=> '3.42',
+            'TAP::Parser::Result::Pragma'=> '3.42',
+            'TAP::Parser::Result::Test'=> '3.42',
+            'TAP::Parser::Result::Unknown'=> '3.42',
+            'TAP::Parser::Result::Version'=> '3.42',
+            'TAP::Parser::Result::YAML'=> '3.42',
+            'TAP::Parser::ResultFactory'=> '3.42',
+            'TAP::Parser::Scheduler'=> '3.42',
+            'TAP::Parser::Scheduler::Job'=> '3.42',
+            'TAP::Parser::Scheduler::Spinner'=> '3.42',
+            'TAP::Parser::Source'   => '3.42',
+            'TAP::Parser::SourceHandler'=> '3.42',
+            'TAP::Parser::SourceHandler::Executable'=> '3.42',
+            'TAP::Parser::SourceHandler::File'=> '3.42',
+            'TAP::Parser::SourceHandler::Handle'=> '3.42',
+            'TAP::Parser::SourceHandler::Perl'=> '3.42',
+            'TAP::Parser::SourceHandler::RawTAP'=> '3.42',
+            'TAP::Parser::YAMLish::Reader'=> '3.42',
+            'TAP::Parser::YAMLish::Writer'=> '3.42',
+            'Test2'                 => '1.302133',
+            'Test2::API'            => '1.302133',
+            'Test2::API::Breakage'  => '1.302133',
+            'Test2::API::Context'   => '1.302133',
+            'Test2::API::Instance'  => '1.302133',
+            'Test2::API::Stack'     => '1.302133',
+            'Test2::Event'          => '1.302133',
+            'Test2::Event::Bail'    => '1.302133',
+            'Test2::Event::Diag'    => '1.302133',
+            'Test2::Event::Encoding'=> '1.302133',
+            'Test2::Event::Exception'=> '1.302133',
+            'Test2::Event::Fail'    => '1.302133',
+            'Test2::Event::Generic' => '1.302133',
+            'Test2::Event::Note'    => '1.302133',
+            'Test2::Event::Ok'      => '1.302133',
+            'Test2::Event::Pass'    => '1.302133',
+            'Test2::Event::Plan'    => '1.302133',
+            'Test2::Event::Skip'    => '1.302133',
+            'Test2::Event::Subtest' => '1.302133',
+            'Test2::Event::TAP::Version'=> '1.302133',
+            'Test2::Event::V2'      => '1.302133',
+            'Test2::Event::Waiting' => '1.302133',
+            'Test2::EventFacet'     => '1.302133',
+            'Test2::EventFacet::About'=> '1.302133',
+            'Test2::EventFacet::Amnesty'=> '1.302133',
+            'Test2::EventFacet::Assert'=> '1.302133',
+            'Test2::EventFacet::Control'=> '1.302133',
+            'Test2::EventFacet::Error'=> '1.302133',
+            'Test2::EventFacet::Hub'=> '1.302133',
+            'Test2::EventFacet::Info'=> '1.302133',
+            'Test2::EventFacet::Meta'=> '1.302133',
+            'Test2::EventFacet::Parent'=> '1.302133',
+            'Test2::EventFacet::Plan'=> '1.302133',
+            'Test2::EventFacet::Render'=> '1.302133',
+            'Test2::EventFacet::Trace'=> '1.302133',
+            'Test2::Formatter'      => '1.302133',
+            'Test2::Formatter::TAP' => '1.302133',
+            'Test2::Hub'            => '1.302133',
+            'Test2::Hub::Interceptor'=> '1.302133',
+            'Test2::Hub::Interceptor::Terminator'=> '1.302133',
+            'Test2::Hub::Subtest'   => '1.302133',
+            'Test2::IPC'            => '1.302133',
+            'Test2::IPC::Driver'    => '1.302133',
+            'Test2::IPC::Driver::Files'=> '1.302133',
+            'Test2::Tools::Tiny'    => '1.302133',
+            'Test2::Util'           => '1.302133',
+            'Test2::Util::ExternalMeta'=> '1.302133',
+            'Test2::Util::Facets2Legacy'=> '1.302133',
+            'Test2::Util::HashBase' => '1.302133',
+            'Test2::Util::Trace'    => '1.302133',
+            'Test::Builder'         => '1.302133',
+            'Test::Builder::Formatter'=> '1.302133',
+            'Test::Builder::Module' => '1.302133',
+            'Test::Builder::Tester' => '1.302133',
+            'Test::Builder::Tester::Color'=> '1.302133',
+            'Test::Builder::TodoDiag'=> '1.302133',
+            'Test::Harness'         => '3.42',
+            'Test::More'            => '1.302133',
+            'Test::Simple'          => '1.302133',
+            'Test::Tester'          => '1.302133',
+            'Test::Tester::Capture' => '1.302133',
+            'Test::Tester::CaptureRunner'=> '1.302133',
+            'Test::Tester::Delegate'=> '1.302133',
+            'Test::use::ok'         => '1.302133',
+            'Time::HiRes'           => '1.9757',
+            'Time::Piece'           => '1.3204',
+            'Time::Seconds'         => '1.3204',
+            'attributes'            => '0.33',
+            'ok'                    => '1.302133',
+            'warnings'              => '1.42',
+        },
+        removed => {
+        }
+    },
+    5.024004 => {
+        delta_from => 5.024003,
+        changed => {
+            'B::Op_private'         => '5.024004',
+            'Config'                => '5.024004',
+            'Module::CoreList'      => '5.20180414_24',
+            'Module::CoreList::TieHashDelta'=> '5.20180414_24',
+            'Module::CoreList::Utils'=> '5.20180414_24',
+        },
+        removed => {
+        }
+    },
+    5.026002 => {
+        delta_from => 5.026001,
+        changed => {
+            'B::Op_private'         => '5.026002',
+            'Config'                => '5.026002',
+            'Module::CoreList'      => '5.20180414_26',
+            'Module::CoreList::TieHashDelta'=> '5.20180414_26',
+            'Module::CoreList::Utils'=> '5.20180414_26',
+            'PerlIO::via'           => '0.17',
+            'Term::ReadLine'        => '1.17',
+            'Unicode::UCD'          => '0.69',
+        },
+        removed => {
+        }
+    },
+    5.027011 => {
+        delta_from => 5.027010,
+        changed => {
+            'B::Op_private'         => '5.027011',
+            'Carp'                  => '1.50',
+            'Carp::Heavy'           => '1.50',
+            'Config'                => '5.027011',
+            'Devel::PPPort'         => '3.40',
+            'Exporter'              => '5.73',
+            'Exporter::Heavy'       => '5.73',
+            'ExtUtils::Constant'    => '0.25',
+            'I18N::Langinfo'        => '0.17',
+            'IO'                    => '1.39',
+            'IO::Dir'               => '1.39',
+            'IO::File'              => '1.39',
+            'IO::Handle'            => '1.39',
+            'IO::Pipe'              => '1.39',
+            'IO::Poll'              => '1.39',
+            'IO::Seekable'          => '1.39',
+            'IO::Select'            => '1.39',
+            'IO::Socket'            => '1.39',
+            'IO::Socket::INET'      => '1.39',
+            'IO::Socket::UNIX'      => '1.39',
+            'Module::CoreList'      => '5.20180420',
+            'Module::CoreList::Utils'=> '5.20180420',
+            'POSIX'                 => '1.84',
+            'Time::HiRes'           => '1.9760',
+            'XS::APItest'           => '0.97',
+            'bytes'                 => '1.06',
+            'subs'                  => '1.03',
+            'vars'                  => '1.04',
+            'version'               => '0.9923',
+            'version::regex'        => '0.9923',
+        },
+        removed => {
+        }
+    },
+    5.028000 => {
+        delta_from => 5.027011,
+        changed => {
+            'Archive::Tar'          => '2.30',
+            'Archive::Tar::Constant'=> '2.30',
+            'Archive::Tar::File'    => '2.30',
+            'B::Op_private'         => '5.028000',
+            'Config'                => '5.028',
+            'Module::CoreList'      => '5.20180622',
+            'Module::CoreList::Utils'=> '5.20180622',
+            'Storable'              => '3.08',
+            'XS::APItest'           => '0.98',
+            'feature'               => '1.52',
+        },
+        removed => {
+        }
+    },
+    5.029000 => {
+        delta_from => 5.028,
+        changed => {
+            'B::Op_private'         => '5.029000',
+            'Config'                => '5.029',
+            'Module::CoreList'      => '5.20180626',
+            'Module::CoreList::Utils'=> '5.20180626',
+            'Unicode::UCD'          => '0.71',
+            'XS::APItest'           => '0.99',
+            'feature'               => '1.53',
+        },
+        removed => {
+        }
+    },
+    5.029001 => {
+        delta_from => 5.029000,
+        changed => {
+            'B::Op_private'         => '5.029001',
+            'Compress::Raw::Bzip2'  => '2.081',
+            'Compress::Raw::Zlib'   => '2.081',
+            'Compress::Zlib'        => '2.081',
+            'Config'                => '5.029001',
+            'Config::Perl::V'       => '0.30',
+            'DB_File'               => '1.842',
+            'Devel::PPPort'         => '3.42',
+            'Digest::SHA'           => '6.02',
+            'ExtUtils::Manifest'    => '1.71',
+            'File::GlobMapper'      => '1.001',
+            'File::Temp'            => '0.2308',
+            'IO::Compress::Adapter::Bzip2'=> '2.081',
+            'IO::Compress::Adapter::Deflate'=> '2.081',
+            'IO::Compress::Adapter::Identity'=> '2.081',
+            'IO::Compress::Base'    => '2.081',
+            'IO::Compress::Base::Common'=> '2.081',
+            'IO::Compress::Bzip2'   => '2.081',
+            'IO::Compress::Deflate' => '2.081',
+            'IO::Compress::Gzip'    => '2.081',
+            'IO::Compress::Gzip::Constants'=> '2.081',
+            'IO::Compress::RawDeflate'=> '2.081',
+            'IO::Compress::Zip'     => '2.081',
+            'IO::Compress::Zip::Constants'=> '2.081',
+            'IO::Compress::Zlib::Constants'=> '2.081',
+            'IO::Compress::Zlib::Extra'=> '2.081',
+            'IO::Uncompress::Adapter::Bunzip2'=> '2.081',
+            'IO::Uncompress::Adapter::Identity'=> '2.081',
+            'IO::Uncompress::Adapter::Inflate'=> '2.081',
+            'IO::Uncompress::AnyInflate'=> '2.081',
+            'IO::Uncompress::AnyUncompress'=> '2.081',
+            'IO::Uncompress::Base'  => '2.081',
+            'IO::Uncompress::Bunzip2'=> '2.081',
+            'IO::Uncompress::Gunzip'=> '2.081',
+            'IO::Uncompress::Inflate'=> '2.081',
+            'IO::Uncompress::RawInflate'=> '2.081',
+            'IO::Uncompress::Unzip' => '2.081',
+            'IPC::Cmd'              => '1.02',
+            'Locale::Codes'         => '3.57',
+            'Locale::Codes::Constants'=> '3.57',
+            'Locale::Codes::Country'=> '3.57',
+            'Locale::Codes::Country_Codes'=> '3.57',
+            'Locale::Codes::Country_Retired'=> '3.57',
+            'Locale::Codes::Currency'=> '3.57',
+            'Locale::Codes::Currency_Codes'=> '3.57',
+            'Locale::Codes::Currency_Retired'=> '3.57',
+            'Locale::Codes::LangExt'=> '3.57',
+            'Locale::Codes::LangExt_Codes'=> '3.57',
+            'Locale::Codes::LangExt_Retired'=> '3.57',
+            'Locale::Codes::LangFam'=> '3.57',
+            'Locale::Codes::LangFam_Codes'=> '3.57',
+            'Locale::Codes::LangFam_Retired'=> '3.57',
+            'Locale::Codes::LangVar'=> '3.57',
+            'Locale::Codes::LangVar_Codes'=> '3.57',
+            'Locale::Codes::LangVar_Retired'=> '3.57',
+            'Locale::Codes::Language'=> '3.57',
+            'Locale::Codes::Language_Codes'=> '3.57',
+            'Locale::Codes::Language_Retired'=> '3.57',
+            'Locale::Codes::Script' => '3.57',
+            'Locale::Codes::Script_Codes'=> '3.57',
+            'Locale::Codes::Script_Retired'=> '3.57',
+            'Locale::Country'       => '3.57',
+            'Locale::Currency'      => '3.57',
+            'Locale::Language'      => '3.57',
+            'Locale::Script'        => '3.57',
+            'Math::BigFloat'        => '1.999813',
+            'Math::BigFloat::Trace' => '0.50',
+            'Math::BigInt'          => '1.999813',
+            'Math::BigInt::Calc'    => '1.999813',
+            'Math::BigInt::CalcEmu' => '1.999813',
+            'Math::BigInt::FastCalc'=> '0.5007',
+            'Math::BigInt::Lib'     => '1.999813',
+            'Math::BigInt::Trace'   => '0.50',
+            'Math::BigRat'          => '0.2614',
+            'Module::CoreList'      => '5.20180720',
+            'Module::CoreList::Utils'=> '5.20180720',
+            'Pod::Man'              => '4.11',
+            'Pod::ParseLink'        => '4.11',
+            'Pod::Text'             => '4.11',
+            'Pod::Text::Color'      => '4.11',
+            'Pod::Text::Overstrike' => '4.11',
+            'Pod::Text::Termcap'    => '4.11',
+            'Storable'              => '3.11',
+            'Test2'                 => '1.302138',
+            'Test2::API'            => '1.302138',
+            'Test2::API::Breakage'  => '1.302138',
+            'Test2::API::Context'   => '1.302138',
+            'Test2::API::Instance'  => '1.302138',
+            'Test2::API::Stack'     => '1.302138',
+            'Test2::Event'          => '1.302138',
+            'Test2::Event::Bail'    => '1.302138',
+            'Test2::Event::Diag'    => '1.302138',
+            'Test2::Event::Encoding'=> '1.302138',
+            'Test2::Event::Exception'=> '1.302138',
+            'Test2::Event::Fail'    => '1.302138',
+            'Test2::Event::Generic' => '1.302138',
+            'Test2::Event::Note'    => '1.302138',
+            'Test2::Event::Ok'      => '1.302138',
+            'Test2::Event::Pass'    => '1.302138',
+            'Test2::Event::Plan'    => '1.302138',
+            'Test2::Event::Skip'    => '1.302138',
+            'Test2::Event::Subtest' => '1.302138',
+            'Test2::Event::TAP::Version'=> '1.302138',
+            'Test2::Event::V2'      => '1.302138',
+            'Test2::Event::Waiting' => '1.302138',
+            'Test2::EventFacet'     => '1.302138',
+            'Test2::EventFacet::About'=> '1.302138',
+            'Test2::EventFacet::Amnesty'=> '1.302138',
+            'Test2::EventFacet::Assert'=> '1.302138',
+            'Test2::EventFacet::Control'=> '1.302138',
+            'Test2::EventFacet::Error'=> '1.302138',
+            'Test2::EventFacet::Hub'=> '1.302138',
+            'Test2::EventFacet::Info'=> '1.302138',
+            'Test2::EventFacet::Meta'=> '1.302138',
+            'Test2::EventFacet::Parent'=> '1.302138',
+            'Test2::EventFacet::Plan'=> '1.302138',
+            'Test2::EventFacet::Render'=> '1.302138',
+            'Test2::EventFacet::Trace'=> '1.302138',
+            'Test2::Formatter'      => '1.302138',
+            'Test2::Formatter::TAP' => '1.302138',
+            'Test2::Hub'            => '1.302138',
+            'Test2::Hub::Interceptor'=> '1.302138',
+            'Test2::Hub::Interceptor::Terminator'=> '1.302138',
+            'Test2::Hub::Subtest'   => '1.302138',
+            'Test2::IPC'            => '1.302138',
+            'Test2::IPC::Driver'    => '1.302138',
+            'Test2::IPC::Driver::Files'=> '1.302138',
+            'Test2::Tools::Tiny'    => '1.302138',
+            'Test2::Util'           => '1.302138',
+            'Test2::Util::ExternalMeta'=> '1.302138',
+            'Test2::Util::Facets2Legacy'=> '1.302138',
+            'Test2::Util::HashBase' => '1.302138',
+            'Test2::Util::Trace'    => '1.302138',
+            'Test::Builder'         => '1.302138',
+            'Test::Builder::Formatter'=> '1.302138',
+            'Test::Builder::Module' => '1.302138',
+            'Test::Builder::Tester' => '1.302138',
+            'Test::Builder::Tester::Color'=> '1.302138',
+            'Test::Builder::TodoDiag'=> '1.302138',
+            'Test::More'            => '1.302138',
+            'Test::Simple'          => '1.302138',
+            'Test::Tester'          => '1.302138',
+            'Test::Tester::Capture' => '1.302138',
+            'Test::Tester::CaptureRunner'=> '1.302138',
+            'Test::Tester::Delegate'=> '1.302138',
+            'Test::use::ok'         => '1.302138',
+            'Thread::Queue'         => '3.13',
+            'Time::Local'           => '1.28',
+            'bigint'                => '0.50',
+            'bignum'                => '0.50',
+            'bigrat'                => '0.50',
+            'experimental'          => '0.020',
+            'ok'                    => '1.302138',
+            'parent'                => '0.237',
+            'perlfaq'               => '5.20180605',
+            'version'               => '0.9924',
+            'version::regex'        => '0.9924',
+        },
+        removed => {
+        }
+    },
+    5.029002 => {
+        delta_from => 5.029001,
+        changed => {
+            'B::Op_private'         => '5.029002',
+            'Config'                => '5.029002',
+            'Config::Extensions'    => '0.03',
+            'Cwd'                   => '3.75',
+            'Data::Dumper'          => '2.171',
+            'Filter::Util::Call'    => '1.59',
+            'HTTP::Tiny'            => '0.076',
+            'Module::CoreList'      => '5.20180820',
+            'Module::CoreList::Utils'=> '5.20180820',
+            'PerlIO::scalar'        => '0.30',
+            'Storable'              => '3.12',
+            'Test2'                 => '1.302140',
+            'Test2::API'            => '1.302140',
+            'Test2::API::Breakage'  => '1.302140',
+            'Test2::API::Context'   => '1.302140',
+            'Test2::API::Instance'  => '1.302140',
+            'Test2::API::Stack'     => '1.302140',
+            'Test2::Event'          => '1.302140',
+            'Test2::Event::Bail'    => '1.302140',
+            'Test2::Event::Diag'    => '1.302140',
+            'Test2::Event::Encoding'=> '1.302140',
+            'Test2::Event::Exception'=> '1.302140',
+            'Test2::Event::Fail'    => '1.302140',
+            'Test2::Event::Generic' => '1.302140',
+            'Test2::Event::Note'    => '1.302140',
+            'Test2::Event::Ok'      => '1.302140',
+            'Test2::Event::Pass'    => '1.302140',
+            'Test2::Event::Plan'    => '1.302140',
+            'Test2::Event::Skip'    => '1.302140',
+            'Test2::Event::Subtest' => '1.302140',
+            'Test2::Event::TAP::Version'=> '1.302140',
+            'Test2::Event::V2'      => '1.302140',
+            'Test2::Event::Waiting' => '1.302140',
+            'Test2::EventFacet'     => '1.302140',
+            'Test2::EventFacet::About'=> '1.302140',
+            'Test2::EventFacet::Amnesty'=> '1.302140',
+            'Test2::EventFacet::Assert'=> '1.302140',
+            'Test2::EventFacet::Control'=> '1.302140',
+            'Test2::EventFacet::Error'=> '1.302140',
+            'Test2::EventFacet::Hub'=> '1.302140',
+            'Test2::EventFacet::Info'=> '1.302140',
+            'Test2::EventFacet::Meta'=> '1.302140',
+            'Test2::EventFacet::Parent'=> '1.302140',
+            'Test2::EventFacet::Plan'=> '1.302140',
+            'Test2::EventFacet::Render'=> '1.302140',
+            'Test2::EventFacet::Trace'=> '1.302140',
+            'Test2::Formatter'      => '1.302140',
+            'Test2::Formatter::TAP' => '1.302140',
+            'Test2::Hub'            => '1.302140',
+            'Test2::Hub::Interceptor'=> '1.302140',
+            'Test2::Hub::Interceptor::Terminator'=> '1.302140',
+            'Test2::Hub::Subtest'   => '1.302140',
+            'Test2::IPC'            => '1.302140',
+            'Test2::IPC::Driver'    => '1.302140',
+            'Test2::IPC::Driver::Files'=> '1.302140',
+            'Test2::Tools::Tiny'    => '1.302140',
+            'Test2::Util'           => '1.302140',
+            'Test2::Util::ExternalMeta'=> '1.302140',
+            'Test2::Util::Facets2Legacy'=> '1.302140',
+            'Test2::Util::HashBase' => '1.302140',
+            'Test2::Util::Trace'    => '1.302140',
+            'Test::Builder'         => '1.302140',
+            'Test::Builder::Formatter'=> '1.302140',
+            'Test::Builder::Module' => '1.302140',
+            'Test::Builder::Tester' => '1.302140',
+            'Test::Builder::Tester::Color'=> '1.302140',
+            'Test::Builder::TodoDiag'=> '1.302140',
+            'Test::More'            => '1.302140',
+            'Test::Simple'          => '1.302140',
+            'Test::Tester'          => '1.302140',
+            'Test::Tester::Capture' => '1.302140',
+            'Test::Tester::CaptureRunner'=> '1.302140',
+            'Test::Tester::Delegate'=> '1.302140',
+            'Test::use::ok'         => '1.302140',
+            'Time::HiRes'           => '1.9760',
+            'Time::Piece'           => '1.33',
+            'Time::Seconds'         => '1.33',
+            'Unicode'               => '11.0.0',
+            'ok'                    => '1.302140',
+            'warnings'              => '1.43',
+        },
+        removed => {
+        }
+    },
+    5.029003 => {
+        delta_from => 5.029002,
+        changed => {
+            'Archive::Tar'          => '2.32',
+            'Archive::Tar::Constant'=> '2.32',
+            'Archive::Tar::File'    => '2.32',
+            'B::Op_private'         => '5.029003',
+            'Config'                => '5.029003',
+            'Data::Dumper'          => '2.172',
+            'Devel::PPPort'         => '3.43',
+            'File::Path'            => '2.16',
+            'File::Spec'            => '3.75',
+            'File::Spec::AmigaOS'   => '3.75',
+            'File::Spec::Cygwin'    => '3.75',
+            'File::Spec::Epoc'      => '3.75',
+            'File::Spec::Functions' => '3.75',
+            'File::Spec::Mac'       => '3.75',
+            'File::Spec::OS2'       => '3.75',
+            'File::Spec::Unix'      => '3.75',
+            'File::Spec::VMS'       => '3.75',
+            'File::Spec::Win32'     => '3.75',
+            'Module::CoreList'      => '5.20180920',
+            'Module::CoreList::Utils'=> '5.20180920',
+            'POSIX'                 => '1.85',
+            'Storable'              => '3.13',
+            'User::grent'           => '1.03',
+            'perlfaq'               => '5.20180915',
+        },
+        removed => {
+            'Locale::Codes'         => 1,
+            'Locale::Codes::Constants'=> 1,
+            'Locale::Codes::Country'=> 1,
+            'Locale::Codes::Country_Codes'=> 1,
+            'Locale::Codes::Country_Retired'=> 1,
+            'Locale::Codes::Currency'=> 1,
+            'Locale::Codes::Currency_Codes'=> 1,
+            'Locale::Codes::Currency_Retired'=> 1,
+            'Locale::Codes::LangExt'=> 1,
+            'Locale::Codes::LangExt_Codes'=> 1,
+            'Locale::Codes::LangExt_Retired'=> 1,
+            'Locale::Codes::LangFam'=> 1,
+            'Locale::Codes::LangFam_Codes'=> 1,
+            'Locale::Codes::LangFam_Retired'=> 1,
+            'Locale::Codes::LangVar'=> 1,
+            'Locale::Codes::LangVar_Codes'=> 1,
+            'Locale::Codes::LangVar_Retired'=> 1,
+            'Locale::Codes::Language'=> 1,
+            'Locale::Codes::Language_Codes'=> 1,
+            'Locale::Codes::Language_Retired'=> 1,
+            'Locale::Codes::Script' => 1,
+            'Locale::Codes::Script_Codes'=> 1,
+            'Locale::Codes::Script_Retired'=> 1,
+            'Locale::Country'       => 1,
+            'Locale::Currency'      => 1,
+            'Locale::Language'      => 1,
+            'Locale::Script'        => 1,
+        }
+    },
+    5.029004 => {
+        delta_from => 5.029003,
+        changed => {
+            'App::Cpan'             => '1.671',
+            'B'                     => '1.75',
+            'B::Concise'            => '1.004',
+            'B::Deparse'            => '1.49',
+            'B::Op_private'         => '5.029004',
+            'B::Terse'              => '1.09',
+            'CPAN'                  => '2.21',
+            'CPAN::Distribution'    => '2.21',
+            'CPAN::Mirrors'         => '2.21',
+            'CPAN::Plugin'          => '0.97',
+            'CPAN::Shell'           => '5.5008',
+            'Config'                => '5.029004',
+            'Devel::Peek'           => '1.28',
+            'File::Copy'            => '2.34',
+            'File::Glob'            => '1.32',
+            'Math::BigFloat::Trace' => '0.51',
+            'Math::BigInt::Trace'   => '0.51',
+            'Module::CoreList'      => '5.20181020',
+            'Module::CoreList::Utils'=> '5.20181020',
+            'Unicode::UCD'          => '0.72',
+            'bigint'                => '0.51',
+            'bignum'                => '0.51',
+            'bigrat'                => '0.51',
+            'bytes'                 => '1.07',
+            'feature'               => '1.54',
+            'sigtrap'               => '1.09',
+            'vars'                  => '1.05',
+        },
+        removed => {
+            'B::Debug'              => 1,
+            'arybase'               => 1,
+        }
+    },
+    5.029005 => {
+        delta_from => 5.029004,
+        changed => {
+            'B::Op_private'         => '5.029005',
+            'Config'                => '5.029005',
+            'Cwd'                   => '3.76',
+            'Data::Dumper'          => '2.173',
+            'Errno'                 => '1.30',
+            'File::Spec'            => '3.76',
+            'File::Spec::AmigaOS'   => '3.76',
+            'File::Spec::Cygwin'    => '3.76',
+            'File::Spec::Epoc'      => '3.76',
+            'File::Spec::Functions' => '3.76',
+            'File::Spec::Mac'       => '3.76',
+            'File::Spec::OS2'       => '3.76',
+            'File::Spec::Unix'      => '3.76',
+            'File::Spec::VMS'       => '3.76',
+            'File::Spec::Win32'     => '3.76',
+            'GDBM_File'             => '1.18',
+            'Module::CoreList'      => '5.20181120',
+            'Module::CoreList::Utils'=> '5.20181120',
+            'NDBM_File'             => '1.15',
+            'ODBM_File'             => '1.16',
+            'SDBM_File'             => '1.15',
+            're'                    => '0.37',
+        },
+        removed => {
+        }
+    },
+    5.026003 => {
+        delta_from => 5.026002,
+        changed => {
+            'Archive::Tar'          => '2.24_01',
+            'B::Op_private'         => '5.026003',
+            'Config'                => '5.026003',
+            'Module::CoreList'      => '5.20181129_26',
+            'Module::CoreList::TieHashDelta'=> '5.20181129_26',
+            'Module::CoreList::Utils'=> '5.20181129_26',
+        },
+        removed => {
+        }
+    },
+    5.028001 => {
+        delta_from => 5.028,
+        changed => {
+            'B::Op_private'         => '5.028001',
+            'Config'                => '5.028001',
+            'Module::CoreList'      => '5.20181129_28',
+            'Module::CoreList::Utils'=> '5.20181129_28',
+        },
+        removed => {
+        }
+    },
+    5.029006 => {
+        delta_from => 5.029005,
+        changed => {
+            'B::Op_private'         => '5.029006',
+            'Config'                => '5.029006',
+            'Config::Perl::V'       => '0.32',
+            'ExtUtils::ParseXS'     => '3.40',
+            'ExtUtils::ParseXS::Constants'=> '3.40',
+            'ExtUtils::ParseXS::CountLines'=> '3.40',
+            'ExtUtils::ParseXS::Eval'=> '3.40',
+            'ExtUtils::ParseXS::Utilities'=> '3.40',
+            'File::Find'            => '1.35',
+            'Module::CoreList'      => '5.20181218',
+            'Module::CoreList::Utils'=> '5.20181218',
+            'POSIX'                 => '1.86',
+            'Storable'              => '3.14',
+            'Test2'                 => '1.302141',
+            'Test2::API'            => '1.302141',
+            'Test2::API::Breakage'  => '1.302141',
+            'Test2::API::Context'   => '1.302141',
+            'Test2::API::Instance'  => '1.302141',
+            'Test2::API::Stack'     => '1.302141',
+            'Test2::Event'          => '1.302141',
+            'Test2::Event::Bail'    => '1.302141',
+            'Test2::Event::Diag'    => '1.302141',
+            'Test2::Event::Encoding'=> '1.302141',
+            'Test2::Event::Exception'=> '1.302141',
+            'Test2::Event::Fail'    => '1.302141',
+            'Test2::Event::Generic' => '1.302141',
+            'Test2::Event::Note'    => '1.302141',
+            'Test2::Event::Ok'      => '1.302141',
+            'Test2::Event::Pass'    => '1.302141',
+            'Test2::Event::Plan'    => '1.302141',
+            'Test2::Event::Skip'    => '1.302141',
+            'Test2::Event::Subtest' => '1.302141',
+            'Test2::Event::TAP::Version'=> '1.302141',
+            'Test2::Event::V2'      => '1.302141',
+            'Test2::Event::Waiting' => '1.302141',
+            'Test2::EventFacet'     => '1.302141',
+            'Test2::EventFacet::About'=> '1.302141',
+            'Test2::EventFacet::Amnesty'=> '1.302141',
+            'Test2::EventFacet::Assert'=> '1.302141',
+            'Test2::EventFacet::Control'=> '1.302141',
+            'Test2::EventFacet::Error'=> '1.302141',
+            'Test2::EventFacet::Hub'=> '1.302141',
+            'Test2::EventFacet::Info'=> '1.302141',
+            'Test2::EventFacet::Meta'=> '1.302141',
+            'Test2::EventFacet::Parent'=> '1.302141',
+            'Test2::EventFacet::Plan'=> '1.302141',
+            'Test2::EventFacet::Render'=> '1.302141',
+            'Test2::EventFacet::Trace'=> '1.302141',
+            'Test2::Formatter'      => '1.302141',
+            'Test2::Formatter::TAP' => '1.302141',
+            'Test2::Hub'            => '1.302141',
+            'Test2::Hub::Interceptor'=> '1.302141',
+            'Test2::Hub::Interceptor::Terminator'=> '1.302141',
+            'Test2::Hub::Subtest'   => '1.302141',
+            'Test2::IPC'            => '1.302141',
+            'Test2::IPC::Driver'    => '1.302141',
+            'Test2::IPC::Driver::Files'=> '1.302141',
+            'Test2::Tools::Tiny'    => '1.302141',
+            'Test2::Util'           => '1.302141',
+            'Test2::Util::ExternalMeta'=> '1.302141',
+            'Test2::Util::Facets2Legacy'=> '1.302141',
+            'Test2::Util::HashBase' => '1.302141',
+            'Test2::Util::Trace'    => '1.302141',
+            'Test::Builder'         => '1.302141',
+            'Test::Builder::Formatter'=> '1.302141',
+            'Test::Builder::Module' => '1.302141',
+            'Test::Builder::Tester' => '1.302141',
+            'Test::Builder::Tester::Color'=> '1.302141',
+            'Test::Builder::TodoDiag'=> '1.302141',
+            'Test::More'            => '1.302141',
+            'Test::Simple'          => '1.302141',
+            'Test::Tester'          => '1.302141',
+            'Test::Tester::Capture' => '1.302141',
+            'Test::Tester::CaptureRunner'=> '1.302141',
+            'Test::Tester::Delegate'=> '1.302141',
+            'Test::use::ok'         => '1.302141',
+            'ok'                    => '1.302141',
+            'threads::shared'       => '1.59',
+        },
+        removed => {
+            'Storable::Limit'       => 1,
+        }
+    },
+    5.029007 => {
+        delta_from => 5.029006,
+        changed => {
+            'App::Cpan'             => '1.672',
+            'B::Op_private'         => '5.029007',
+            'CPAN'                  => '2.22',
+            'CPAN::Distribution'    => '2.22',
+            'CPAN::Plugin::Specfile'=> '0.02',
+            'Compress::Raw::Bzip2'  => '2.084',
+            'Compress::Raw::Zlib'   => '2.084',
+            'Compress::Zlib'        => '2.084',
+            'Config'                => '5.029007',
+            'Cwd'                   => '3.77',
+            'DB_File'               => '1.843',
+            'File::Find'            => '1.36',
+            'File::Spec'            => '3.77',
+            'File::Spec::AmigaOS'   => '3.77',
+            'File::Spec::Cygwin'    => '3.77',
+            'File::Spec::Epoc'      => '3.77',
+            'File::Spec::Functions' => '3.77',
+            'File::Spec::Mac'       => '3.77',
+            'File::Spec::OS2'       => '3.77',
+            'File::Spec::Unix'      => '3.77',
+            'File::Spec::VMS'       => '3.77',
+            'File::Spec::Win32'     => '3.77',
+            'File::Temp'            => '0.2309',
+            'IO::Compress::Adapter::Bzip2'=> '2.084',
+            'IO::Compress::Adapter::Deflate'=> '2.084',
+            'IO::Compress::Adapter::Identity'=> '2.084',
+            'IO::Compress::Base'    => '2.084',
+            'IO::Compress::Base::Common'=> '2.084',
+            'IO::Compress::Bzip2'   => '2.084',
+            'IO::Compress::Deflate' => '2.084',
+            'IO::Compress::Gzip'    => '2.084',
+            'IO::Compress::Gzip::Constants'=> '2.084',
+            'IO::Compress::RawDeflate'=> '2.084',
+            'IO::Compress::Zip'     => '2.084',
+            'IO::Compress::Zip::Constants'=> '2.084',
+            'IO::Compress::Zlib::Constants'=> '2.084',
+            'IO::Compress::Zlib::Extra'=> '2.084',
+            'IO::Uncompress::Adapter::Bunzip2'=> '2.084',
+            'IO::Uncompress::Adapter::Identity'=> '2.084',
+            'IO::Uncompress::Adapter::Inflate'=> '2.084',
+            'IO::Uncompress::AnyInflate'=> '2.084',
+            'IO::Uncompress::AnyUncompress'=> '2.084',
+            'IO::Uncompress::Base'  => '2.084',
+            'IO::Uncompress::Bunzip2'=> '2.084',
+            'IO::Uncompress::Gunzip'=> '2.084',
+            'IO::Uncompress::Inflate'=> '2.084',
+            'IO::Uncompress::RawInflate'=> '2.084',
+            'IO::Uncompress::Unzip' => '2.084',
+            'Math::BigFloat'        => '1.999816',
+            'Math::BigInt'          => '1.999816',
+            'Math::BigInt::Calc'    => '1.999816',
+            'Math::BigInt::FastCalc'=> '0.5008',
+            'Math::BigInt::Lib'     => '1.999816',
+            'Module::CoreList'      => '5.20190120',
+            'Module::CoreList::Utils'=> '5.20190120',
+            'Test2'                 => '1.302160',
+            'Test2::API'            => '1.302160',
+            'Test2::API::Breakage'  => '1.302160',
+            'Test2::API::Context'   => '1.302160',
+            'Test2::API::Instance'  => '1.302160',
+            'Test2::API::Stack'     => '1.302160',
+            'Test2::Event'          => '1.302160',
+            'Test2::Event::Bail'    => '1.302160',
+            'Test2::Event::Diag'    => '1.302160',
+            'Test2::Event::Encoding'=> '1.302160',
+            'Test2::Event::Exception'=> '1.302160',
+            'Test2::Event::Fail'    => '1.302160',
+            'Test2::Event::Generic' => '1.302160',
+            'Test2::Event::Note'    => '1.302160',
+            'Test2::Event::Ok'      => '1.302160',
+            'Test2::Event::Pass'    => '1.302160',
+            'Test2::Event::Plan'    => '1.302160',
+            'Test2::Event::Skip'    => '1.302160',
+            'Test2::Event::Subtest' => '1.302160',
+            'Test2::Event::TAP::Version'=> '1.302160',
+            'Test2::Event::V2'      => '1.302160',
+            'Test2::Event::Waiting' => '1.302160',
+            'Test2::EventFacet'     => '1.302160',
+            'Test2::EventFacet::About'=> '1.302160',
+            'Test2::EventFacet::Amnesty'=> '1.302160',
+            'Test2::EventFacet::Assert'=> '1.302160',
+            'Test2::EventFacet::Control'=> '1.302160',
+            'Test2::EventFacet::Error'=> '1.302160',
+            'Test2::EventFacet::Hub'=> '1.302160',
+            'Test2::EventFacet::Info'=> '1.302160',
+            'Test2::EventFacet::Info::Table'=> undef,
+            'Test2::EventFacet::Meta'=> '1.302160',
+            'Test2::EventFacet::Parent'=> '1.302160',
+            'Test2::EventFacet::Plan'=> '1.302160',
+            'Test2::EventFacet::Render'=> '1.302160',
+            'Test2::EventFacet::Trace'=> '1.302160',
+            'Test2::Formatter'      => '1.302160',
+            'Test2::Formatter::TAP' => '1.302160',
+            'Test2::Hub'            => '1.302160',
+            'Test2::Hub::Interceptor'=> '1.302160',
+            'Test2::Hub::Interceptor::Terminator'=> '1.302160',
+            'Test2::Hub::Subtest'   => '1.302160',
+            'Test2::IPC'            => '1.302160',
+            'Test2::IPC::Driver'    => '1.302160',
+            'Test2::IPC::Driver::Files'=> '1.302160',
+            'Test2::Tools::Tiny'    => '1.302160',
+            'Test2::Util'           => '1.302160',
+            'Test2::Util::ExternalMeta'=> '1.302160',
+            'Test2::Util::Facets2Legacy'=> '1.302160',
+            'Test2::Util::HashBase' => '1.302160',
+            'Test2::Util::Trace'    => '1.302160',
+            'Test::Builder'         => '1.302160',
+            'Test::Builder::Formatter'=> '1.302160',
+            'Test::Builder::Module' => '1.302160',
+            'Test::Builder::Tester' => '1.302160',
+            'Test::Builder::Tester::Color'=> '1.302160',
+            'Test::Builder::TodoDiag'=> '1.302160',
+            'Test::More'            => '1.302160',
+            'Test::Simple'          => '1.302160',
+            'Test::Tester'          => '1.302160',
+            'Test::Tester::Capture' => '1.302160',
+            'Test::Tester::CaptureRunner'=> '1.302160',
+            'Test::Tester::Delegate'=> '1.302160',
+            'Test::use::ok'         => '1.302160',
+            'Unicode::Collate'      => '1.27',
+            'Unicode::Collate::CJK::Big5'=> '1.27',
+            'Unicode::Collate::CJK::GB2312'=> '1.27',
+            'Unicode::Collate::CJK::JISX0208'=> '1.27',
+            'Unicode::Collate::CJK::Korean'=> '1.27',
+            'Unicode::Collate::CJK::Pinyin'=> '1.27',
+            'Unicode::Collate::CJK::Stroke'=> '1.27',
+            'Unicode::Collate::CJK::Zhuyin'=> '1.27',
+            'Unicode::Collate::Locale'=> '1.27',
+            'lib'                   => '0.65',
+            'ok'                    => '1.302160',
+        },
+        removed => {
+            'Math::BigInt::CalcEmu' => 1,
+        }
+    },
+    5.029008 => {
+        delta_from => 5.029007,
+        changed => {
+            'B'                     => '1.76',
+            'B::Op_private'         => '5.029008',
+            'Config'                => '5.029008',
+            'Devel::PPPort'         => '3.44',
+            'Encode'                => '3.00',
+            'Encode::Unicode'       => '2.18',
+            'ExtUtils::Miniperl'    => '1.09',
+            'IO'                    => '1.40',
+            'IO::Dir'               => '1.40',
+            'IO::File'              => '1.40',
+            'IO::Handle'            => '1.40',
+            'IO::Pipe'              => '1.40',
+            'IO::Poll'              => '1.40',
+            'IO::Seekable'          => '1.40',
+            'IO::Select'            => '1.40',
+            'IO::Socket'            => '1.40',
+            'IO::Socket::INET'      => '1.40',
+            'IO::Socket::UNIX'      => '1.40',
+            'JSON::PP'              => '4.00',
+            'JSON::PP::Boolean'     => '4.00',
+            'Module::CoreList'      => '5.20190220',
+            'Module::CoreList::Utils'=> '5.20190220',
+            'Module::Load'          => '0.34',
+            'Net::Ping'             => '2.71',
+            'POSIX'                 => '1.87',
+            'Test2'                 => '1.302162',
+            'Test2::API'            => '1.302162',
+            'Test2::API::Breakage'  => '1.302162',
+            'Test2::API::Context'   => '1.302162',
+            'Test2::API::Instance'  => '1.302162',
+            'Test2::API::Stack'     => '1.302162',
+            'Test2::Event'          => '1.302162',
+            'Test2::Event::Bail'    => '1.302162',
+            'Test2::Event::Diag'    => '1.302162',
+            'Test2::Event::Encoding'=> '1.302162',
+            'Test2::Event::Exception'=> '1.302162',
+            'Test2::Event::Fail'    => '1.302162',
+            'Test2::Event::Generic' => '1.302162',
+            'Test2::Event::Note'    => '1.302162',
+            'Test2::Event::Ok'      => '1.302162',
+            'Test2::Event::Pass'    => '1.302162',
+            'Test2::Event::Plan'    => '1.302162',
+            'Test2::Event::Skip'    => '1.302162',
+            'Test2::Event::Subtest' => '1.302162',
+            'Test2::Event::TAP::Version'=> '1.302162',
+            'Test2::Event::V2'      => '1.302162',
+            'Test2::Event::Waiting' => '1.302162',
+            'Test2::EventFacet'     => '1.302162',
+            'Test2::EventFacet::About'=> '1.302162',
+            'Test2::EventFacet::Amnesty'=> '1.302162',
+            'Test2::EventFacet::Assert'=> '1.302162',
+            'Test2::EventFacet::Control'=> '1.302162',
+            'Test2::EventFacet::Error'=> '1.302162',
+            'Test2::EventFacet::Hub'=> '1.302162',
+            'Test2::EventFacet::Info'=> '1.302162',
+            'Test2::EventFacet::Meta'=> '1.302162',
+            'Test2::EventFacet::Parent'=> '1.302162',
+            'Test2::EventFacet::Plan'=> '1.302162',
+            'Test2::EventFacet::Render'=> '1.302162',
+            'Test2::EventFacet::Trace'=> '1.302162',
+            'Test2::Formatter'      => '1.302162',
+            'Test2::Formatter::TAP' => '1.302162',
+            'Test2::Hub'            => '1.302162',
+            'Test2::Hub::Interceptor'=> '1.302162',
+            'Test2::Hub::Interceptor::Terminator'=> '1.302162',
+            'Test2::Hub::Subtest'   => '1.302162',
+            'Test2::IPC'            => '1.302162',
+            'Test2::IPC::Driver'    => '1.302162',
+            'Test2::IPC::Driver::Files'=> '1.302162',
+            'Test2::Tools::Tiny'    => '1.302162',
+            'Test2::Util'           => '1.302162',
+            'Test2::Util::ExternalMeta'=> '1.302162',
+            'Test2::Util::Facets2Legacy'=> '1.302162',
+            'Test2::Util::HashBase' => '1.302162',
+            'Test2::Util::Trace'    => '1.302162',
+            'Test::Builder'         => '1.302162',
+            'Test::Builder::Formatter'=> '1.302162',
+            'Test::Builder::Module' => '1.302162',
+            'Test::Builder::Tester' => '1.302162',
+            'Test::Builder::Tester::Color'=> '1.302162',
+            'Test::Builder::TodoDiag'=> '1.302162',
+            'Test::More'            => '1.302162',
+            'Test::Simple'          => '1.302162',
+            'Test::Tester'          => '1.302162',
+            'Test::Tester::Capture' => '1.302162',
+            'Test::Tester::CaptureRunner'=> '1.302162',
+            'Test::Tester::Delegate'=> '1.302162',
+            'Test::use::ok'         => '1.302162',
+            'XS::APItest'           => '1.00',
+            'deprecate'             => '0.04',
+            'ok'                    => '1.302162',
+            'perlfaq'               => '5.20190126',
+        },
+        removed => {
+        }
+    },
+    5.029009 => {
+        delta_from => 5.029008,
+        changed => {
+            'B::Op_private'         => '5.029009',
+            'Config'                => '5.029009',
+            'Module::CoreList'      => '5.20190320',
+            'Module::CoreList::Utils'=> '5.20190320',
+        },
+        removed => {
+        }
+    },
 );
 
 sub is_core
 {
+    shift if defined $_[1] and $_[1] =~ /^\w/ and _looks_like_invocant $_[0];
     my $module = shift;
-    $module = shift if eval { $module->isa(__PACKAGE__) } && @_ > 0 && defined($_[0]) && $_[0] =~ /^\w/;
-    my ($module_version, $perl_version);
-
-    $module_version = shift if @_ > 0;
-    $perl_version   = @_ > 0 ? shift : $];
+    my $module_version = @_ > 0 ? shift : undef;
+    my $perl_version   = @_ > 0 ? shift : $];
 
     my $first_release = first_release($module);
 
@@ -13974,6 +16231,11 @@ sub is_core
     # On the way if we pass the required module version, we can
     # short-circuit and return true
     if (defined($module_version)) {
+        my $module_version_object = eval { version->parse($module_version) };
+        if (!defined($module_version_object)) {
+            (my $err = $@) =~ s/^Invalid version format\b/Invalid version '$module_version' specified/;
+            die $err;
+        }
         # The Perl releases aren't a linear sequence, but a tree. We need to build the path
         # of releases from 5 to the specified release, and follow the module's version(s)
         # along that path.
@@ -13991,7 +16253,7 @@ sub is_core
             last RELEASE if $prn > $perl_version;
             next unless defined(my $next_module_version
                                    = $delta{$prn}->{changed}->{$module});
-            return 1 if version->parse($next_module_version) >= version->parse($module_version);
+            return 1 if eval { version->parse($next_module_version) >= $module_version_object };
         }
         return 0;
     }
@@ -14686,6 +16948,246 @@ sub is_core
         removed => {
         }
     },
+    5.025011 => {
+        delta_from => 5.025010,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.025012 => {
+        delta_from => 5.025011,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.026000 => {
+        delta_from => 5.025012,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.027000 => {
+        delta_from => 5.026,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.027001 => {
+        delta_from => 5.027,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.022004 => {
+        delta_from => 5.022003,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.024002 => {
+        delta_from => 5.024001,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.027002 => {
+        delta_from => 5.027001,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.027003 => {
+        delta_from => 5.027002,
+        changed => {
+            'B::Debug'              => '1',
+        },
+        removed => {
+        }
+    },
+    5.027004 => {
+        delta_from => 5.027003,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.024003 => {
+        delta_from => 5.024002,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.026001 => {
+        delta_from => 5.026000,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.027005 => {
+        delta_from => 5.027004,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.027006 => {
+        delta_from => 5.027005,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.027007 => {
+        delta_from => 5.027006,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.027008 => {
+        delta_from => 5.027007,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.027009 => {
+        delta_from => 5.027008,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.027010 => {
+        delta_from => 5.027009,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.024004 => {
+        delta_from => 5.024003,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.026002 => {
+        delta_from => 5.026001,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.027011 => {
+        delta_from => 5.02701,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.028000 => {
+        delta_from => 5.027011,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.029000 => {
+        delta_from => 5.028,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.029001 => {
+        delta_from => 5.029,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.029002 => {
+        delta_from => 5.029001,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.029003 => {
+        delta_from => 5.029002,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.029004 => {
+        delta_from => 5.029003,
+        changed => {
+        },
+        removed => {
+            arybase => '1',
+        }
+    },
+    5.029005 => {
+        delta_from => 5.027002,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.026003 => {
+        delta_from => 5.026002,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.028001 => {
+        delta_from => 5.028000,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.029006 => {
+        delta_from => 5.029005,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.029007 => {
+        delta_from => 5.029006,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.029008 => {
+        delta_from => 5.029007,
+        changed => {
+        },
+        removed => {
+        }
+    },
+    5.029009 => {
+        delta_from => 5.029008,
+        changed => {
+        },
+        removed => {
+        }
+    },
 );
 
 %deprecated = _undelta(\%deprecated);
@@ -14701,7 +17203,6 @@ sub is_core
     'Archive::Tar::File'    => 'cpan',
     'AutoLoader'            => 'cpan',
     'AutoSplit'             => 'cpan',
-    'B::Debug'              => 'cpan',
     'CPAN'                  => 'cpan',
     'CPAN::Author'          => 'cpan',
     'CPAN::Bundle'          => 'cpan',
@@ -14752,7 +17253,6 @@ sub is_core
     'Compress::Zlib'        => 'cpan',
     'Config::Perl::V'       => 'cpan',
     'DB_File'               => 'cpan',
-    'Devel::PPPort'         => 'cpan',
     'Digest'                => 'cpan',
     'Digest::MD5'           => 'cpan',
     'Digest::SHA'           => 'cpan',
@@ -14865,41 +17365,13 @@ sub is_core
     'JSON::PP::Boolean'     => 'cpan',
     'List::Util'            => 'cpan',
     'List::Util::XS'        => 'cpan',
-    'Locale::Codes'         => 'cpan',
-    'Locale::Codes::Constants'=> 'cpan',
-    'Locale::Codes::Country'=> 'cpan',
-    'Locale::Codes::Country_Codes'=> 'cpan',
-    'Locale::Codes::Country_Retired'=> 'cpan',
-    'Locale::Codes::Currency'=> 'cpan',
-    'Locale::Codes::Currency_Codes'=> 'cpan',
-    'Locale::Codes::Currency_Retired'=> 'cpan',
-    'Locale::Codes::LangExt'=> 'cpan',
-    'Locale::Codes::LangExt_Codes'=> 'cpan',
-    'Locale::Codes::LangExt_Retired'=> 'cpan',
-    'Locale::Codes::LangFam'=> 'cpan',
-    'Locale::Codes::LangFam_Codes'=> 'cpan',
-    'Locale::Codes::LangFam_Retired'=> 'cpan',
-    'Locale::Codes::LangVar'=> 'cpan',
-    'Locale::Codes::LangVar_Codes'=> 'cpan',
-    'Locale::Codes::LangVar_Retired'=> 'cpan',
-    'Locale::Codes::Language'=> 'cpan',
-    'Locale::Codes::Language_Codes'=> 'cpan',
-    'Locale::Codes::Language_Retired'=> 'cpan',
-    'Locale::Codes::Script' => 'cpan',
-    'Locale::Codes::Script_Codes'=> 'cpan',
-    'Locale::Codes::Script_Retired'=> 'cpan',
-    'Locale::Country'       => 'cpan',
-    'Locale::Currency'      => 'cpan',
-    'Locale::Language'      => 'cpan',
     'Locale::Maketext::Simple'=> 'cpan',
-    '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::Lib'     => 'cpan',
     'Math::BigInt::Trace'   => 'cpan',
@@ -15054,15 +17526,31 @@ sub is_core
     'Test2::Event::Diag'    => 'cpan',
     'Test2::Event::Encoding'=> 'cpan',
     'Test2::Event::Exception'=> 'cpan',
+    'Test2::Event::Fail'    => 'cpan',
     'Test2::Event::Generic' => 'cpan',
-    'Test2::Event::Info'    => 'cpan',
     'Test2::Event::Note'    => 'cpan',
     'Test2::Event::Ok'      => 'cpan',
+    'Test2::Event::Pass'    => 'cpan',
     'Test2::Event::Plan'    => 'cpan',
     'Test2::Event::Skip'    => 'cpan',
     'Test2::Event::Subtest' => 'cpan',
     'Test2::Event::TAP::Version'=> 'cpan',
+    'Test2::Event::V2'      => 'cpan',
     'Test2::Event::Waiting' => 'cpan',
+    'Test2::EventFacet'     => 'cpan',
+    'Test2::EventFacet::About'=> 'cpan',
+    'Test2::EventFacet::Amnesty'=> 'cpan',
+    'Test2::EventFacet::Assert'=> 'cpan',
+    'Test2::EventFacet::Control'=> 'cpan',
+    'Test2::EventFacet::Error'=> 'cpan',
+    'Test2::EventFacet::Hub'=> 'cpan',
+    'Test2::EventFacet::Info'=> 'cpan',
+    'Test2::EventFacet::Info::Table'=> 'cpan',
+    'Test2::EventFacet::Meta'=> 'cpan',
+    'Test2::EventFacet::Parent'=> 'cpan',
+    'Test2::EventFacet::Plan'=> 'cpan',
+    'Test2::EventFacet::Render'=> 'cpan',
+    'Test2::EventFacet::Trace'=> 'cpan',
     'Test2::Formatter'      => 'cpan',
     'Test2::Formatter::TAP' => 'cpan',
     'Test2::Hub'            => 'cpan',
@@ -15075,6 +17563,7 @@ sub is_core
     'Test2::Tools::Tiny'    => 'cpan',
     'Test2::Util'           => 'cpan',
     'Test2::Util::ExternalMeta'=> 'cpan',
+    'Test2::Util::Facets2Legacy'=> 'cpan',
     'Test2::Util::HashBase' => 'cpan',
     'Test2::Util::Trace'    => 'cpan',
     'Test::Builder'         => 'cpan',
@@ -15141,7 +17630,6 @@ sub is_core
     'Archive::Tar'          => undef,
     'Archive::Tar::Constant'=> undef,
     'Archive::Tar::File'    => undef,
-    'B::Debug'              => undef,
     'CPAN'                  => undef,
     'CPAN::Author'          => undef,
     'CPAN::Bundle'          => undef,
@@ -15192,7 +17680,6 @@ sub is_core
     'Compress::Zlib'        => undef,
     'Config::Perl::V'       => undef,
     'DB_File'               => undef,
-    'Devel::PPPort'         => 'https://github.com/mhx/Devel-PPPort/issues/',
     'Digest'                => undef,
     'Digest::MD5'           => undef,
     'Digest::SHA'           => undef,
@@ -15265,7 +17752,7 @@ sub is_core
     'File::Fetch'           => undef,
     'File::GlobMapper'      => undef,
     'File::Path'            => undef,
-    'File::Temp'            => 'http://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
+    'File::Temp'            => 'https://rt.cpan.org/Public/Dist/Display.html?Name=File-Temp',
     'Filter::Util::Call'    => undef,
     'Getopt::Long'          => undef,
     'HTTP::Tiny'            => 'https://github.com/chansen/p5-http-tiny/issues',
@@ -15301,45 +17788,17 @@ sub is_core
     'IPC::Semaphore'        => undef,
     'IPC::SharedMem'        => undef,
     'IPC::SysV'             => undef,
-    'JSON::PP'              => undef,
-    'JSON::PP::Boolean'     => undef,
+    'JSON::PP'              => 'https://github.com/makamaka/JSON-PP/issues',
+    'JSON::PP::Boolean'     => 'https://github.com/makamaka/JSON-PP/issues',
     '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,
-    'Locale::Codes::Country_Codes'=> undef,
-    'Locale::Codes::Country_Retired'=> undef,
-    'Locale::Codes::Currency'=> undef,
-    'Locale::Codes::Currency_Codes'=> undef,
-    'Locale::Codes::Currency_Retired'=> undef,
-    'Locale::Codes::LangExt'=> undef,
-    'Locale::Codes::LangExt_Codes'=> undef,
-    'Locale::Codes::LangExt_Retired'=> undef,
-    'Locale::Codes::LangFam'=> undef,
-    'Locale::Codes::LangFam_Codes'=> undef,
-    'Locale::Codes::LangFam_Retired'=> undef,
-    'Locale::Codes::LangVar'=> undef,
-    'Locale::Codes::LangVar_Codes'=> undef,
-    'Locale::Codes::LangVar_Retired'=> undef,
-    'Locale::Codes::Language'=> undef,
-    'Locale::Codes::Language_Codes'=> undef,
-    'Locale::Codes::Language_Retired'=> undef,
-    'Locale::Codes::Script' => undef,
-    'Locale::Codes::Script_Codes'=> undef,
-    'Locale::Codes::Script_Retired'=> undef,
-    'Locale::Country'       => undef,
-    'Locale::Currency'      => undef,
-    'Locale::Language'      => undef,
     'Locale::Maketext::Simple'=> undef,
-    '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::Lib'     => undef,
     'Math::BigInt::Trace'   => undef,
@@ -15494,15 +17953,31 @@ sub is_core
     'Test2::Event::Diag'    => 'http://github.com/Test-More/test-more/issues',
     'Test2::Event::Encoding'=> 'http://github.com/Test-More/test-more/issues',
     'Test2::Event::Exception'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::Event::Fail'    => 'http://github.com/Test-More/test-more/issues',
     'Test2::Event::Generic' => 'http://github.com/Test-More/test-more/issues',
-    'Test2::Event::Info'    => 'http://github.com/Test-More/test-more/issues',
     'Test2::Event::Note'    => 'http://github.com/Test-More/test-more/issues',
     'Test2::Event::Ok'      => 'http://github.com/Test-More/test-more/issues',
+    'Test2::Event::Pass'    => 'http://github.com/Test-More/test-more/issues',
     'Test2::Event::Plan'    => 'http://github.com/Test-More/test-more/issues',
     'Test2::Event::Skip'    => 'http://github.com/Test-More/test-more/issues',
     'Test2::Event::Subtest' => 'http://github.com/Test-More/test-more/issues',
     'Test2::Event::TAP::Version'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::Event::V2'      => 'http://github.com/Test-More/test-more/issues',
     'Test2::Event::Waiting' => 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet'     => 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::About'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::Amnesty'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::Assert'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::Control'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::Error'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::Hub'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::Info'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::Info::Table'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::Meta'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::Parent'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::Plan'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::Render'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::EventFacet::Trace'=> 'http://github.com/Test-More/test-more/issues',
     'Test2::Formatter'      => 'http://github.com/Test-More/test-more/issues',
     'Test2::Formatter::TAP' => 'http://github.com/Test-More/test-more/issues',
     'Test2::Hub'            => 'http://github.com/Test-More/test-more/issues',
@@ -15515,6 +17990,7 @@ sub is_core
     'Test2::Tools::Tiny'    => 'http://github.com/Test-More/test-more/issues',
     'Test2::Util'           => 'http://github.com/Test-More/test-more/issues',
     'Test2::Util::ExternalMeta'=> 'http://github.com/Test-More/test-more/issues',
+    'Test2::Util::Facets2Legacy'=> 'http://github.com/Test-More/test-more/issues',
     'Test2::Util::HashBase' => 'http://github.com/Test-More/test-more/issues',
     'Test2::Util::Trace'    => 'http://github.com/Test-More/test-more/issues',
     'Test::Builder'         => 'http://github.com/Test-More/test-more/issues',