From 03955be906d765ab8ae98f57d9304aa419ca7b9a Mon Sep 17 00:00:00 2001 From: Thibault DUPONCHELLE Date: Tue, 23 Sep 2025 09:27:37 +0200 Subject: [PATCH] Prepare Module::CoreList for 5.43.4 --- 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 9954655bd2..576d8f3b0a 100644 --- a/dist/Module-CoreList/Changes +++ b/dist/Module-CoreList/Changes @@ -1,3 +1,6 @@ +5.20251020 + - Updated for v5.43.4 + 5.20250923 - Updated for v5.43.3 diff --git a/dist/Module-CoreList/lib/Module/CoreList.pm b/dist/Module-CoreList/lib/Module/CoreList.pm index 2cf7c6c56a..83e9ee28c4 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.20250923'; +our $VERSION = '5.20251020'; 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__) } } @@ -448,6 +448,7 @@ sub changes_between { 5.040003 => '2025-08-03', 5.043002 => '2025-08-20', 5.043003 => '2025-09-23', + 5.043004 => '2025-10-20', ); for my $version ( sort { $a <=> $b } keys %released ) { @@ -23879,6 +23880,17 @@ for my $version ( sort { $a <=> $b } keys %released ) { removed => { } }, + 5.043004 => { + delta_from => 5.043003, + changed => { + 'B::Op_private' => '5.043004', + 'Config' => '5.043004', + 'Module::CoreList' => '5.20251020', + 'Module::CoreList::Utils'=> '5.20251020', + }, + removed => { + } + }, ); sub is_core @@ -25567,6 +25579,13 @@ sub is_core removed => { } }, + 5.043004 => { + delta_from => 5.043003, + 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 1d7596f964..9b428556e6 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.20250923'; +our $VERSION = '5.20251020'; our %utilities; sub utilities { @@ -2196,6 +2196,13 @@ my %delta = ( removed => { } }, + 5.043004 => { + delta_from => 5.043003, + changed => { + }, + removed => { + } + }, ); %utilities = Module::CoreList::_undelta(\%delta);