From 643d2df7b68b667bfdf3c4f724066ffaad3ada47 Mon Sep 17 00:00:00 2001 From: Thibault DUPONCHELLE Date: Thu, 20 Nov 2025 08:07:40 +0100 Subject: [PATCH] Prepare Module::CoreList for 5.43.6 --- 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 a21e67c07f..55f40069e5 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,6 @@ +5.20251220 + - Updated for v5.43.6 + 5.20251120 - Updated for v5.43.5 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index 0dc344429d..fe25befe25 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.20251120'; +our $VERSION = '5.20251220'; 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__) } } @@ -450,6 +450,7 @@ sub changes_between { 5.043003 => '2025-09-23', 5.043004 => '2025-10-22', 5.043005 => '2025-11-20', + 5.043006 => '2025-12-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -24146,6 +24147,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.043006 => { + delta_from => 5.043005, + changed => { + 'B::Op_private' => '5.043006', + 'Config' => '5.043006', + '_charnames' => '1.51', + 'charnames' => '1.51', + }, + removed => { + } + }, ); sub is_core @@ -25848,6 +25860,13 @@ sub is_core removed => { } }, + 5.043006 => { + delta_from => 5.043005, + 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 145c134958..b3f94edccd 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.20251120'; +our $VERSION = '5.20251220'; our %utilities; sub utilities { @@ -2210,6 +2210,13 @@ my %delta = ( removed => { } }, + 5.043006 => { + delta_from => 5.043005, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta);