From a9199382762588145cff5f01e2955750a9edf92f Mon Sep 17 00:00:00 2001 From: Max Maischein Date: Fri, 20 Dec 2024 16:09:44 +0100 Subject: [PATCH] Update Module::CoreList for 5.41.8 --- dist/Module-CoreList/Changes | 3 +++ dist/Module-CoreList/lib/Module/CoreList.pm | 21 ++++++++++++++++++- .../lib/Module/CoreList/Utils.pm | 9 +++++++- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/dist/Module-CoreList/Changes b/dist/Module-CoreList/Changes index 699b4f9e1024..deb90dae7e16 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,6 @@ +5.20250120 + - Updated for v5.41.8 + 5.20241220 - Updated for v5.41.7 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index e2b5c3b723fc..a31888f8952f 100644 --- a/dist/Module-CoreList/lib/Module/CoreList.pm +++ b/dist/Module-CoreList/lib/Module/CoreList.pm @@ -4,7 +4,7 @@ use strict; our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta ); use version; -our $VERSION = '5.20241220'; +our $VERSION = '5.20250120'; 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__) } } @@ -431,6 +431,7 @@ sub changes_between { 5.041005 => '2024-10-20', 5.041006 => '2024-11-20', 5.041007 => '2024-12-20', + 5.041008 => '2025-01-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -22498,6 +22499,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.041008 => { + delta_from => 5.041007, + changed => { + 'B::Op_private' => '5.041008', + 'Config' => '5.041008', + 'Module::CoreList' => '5.20250120', + 'Module::CoreList::Utils'=> '5.20250120', + }, + removed => { + } + }, ); sub is_core @@ -24067,6 +24079,13 @@ sub is_core removed => { } }, + 5.041008 => { + delta_from => 5.041007, + changed => { + }, + removed => { + } + }, ); %deprecated = _undelta(\%deprecated); diff --git a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm index 18b2d5c84a83..b236aaf39c9b 100644 --- a/dist/Module-CoreList/lib/Module/CoreList/Utils.pm +++ b/dist/Module-CoreList/lib/Module/CoreList/Utils.pm @@ -4,7 +4,7 @@ use strict; use warnings; use Module::CoreList; -our $VERSION = '5.20241220'; +our $VERSION = '5.20250120'; our %utilities; sub utilities { @@ -2077,6 +2077,13 @@ my %delta = ( removed => { } }, + 5.041008 => { + delta_from => 5.041007, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta);