Skip to content

Commit

Permalink
Module::CoreList updated for v5.34.3, v5.36.3 and v5.38.2
Browse files Browse the repository at this point in the history
  • Loading branch information
bingos committed Nov 29, 2023
1 parent 2ae2f22 commit 5bd15fe
Show file tree
Hide file tree
Showing 3 changed files with 112 additions and 28 deletions.
6 changes: 6 additions & 0 deletions dist/Module-CoreList/Changes
@@ -1,3 +1,9 @@
5.20231220
- Updated for v5.39.6

5.20231129
- Updated for v5.34.3, v5.36.3, v5.38.2

5.20231125
- Updated for v5.34.2, v5.36.2, v5.38.1

Expand Down
97 changes: 77 additions & 20 deletions dist/Module-CoreList/lib/Module/CoreList.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
our ( %released, %version, %families, %upstream, %bug_tracker, %deprecated, %delta );

use version;
our $VERSION = '5.20231125';
our $VERSION = '5.20231220';

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__) } }
Expand Down Expand Up @@ -411,10 +411,13 @@ sub changes_between {
5.039003 => '2023-09-20',
5.039004 => '2023-10-25',
5.039005 => '2023-11-20',
5.039006 => '2023-12-20',
5.034002 => '2023-11-25',
5.036002 => '2023-11-25',
5.038001 => '2023-11-25',
5.034003 => '2023-11-29',
5.036003 => '2023-11-29',
5.038002 => '2023-11-29',
5.039006 => '2023-12-20',
);

for my $version ( sort { $a <=> $b } keys %released ) {
Expand Down Expand Up @@ -21065,17 +21068,6 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
5.039006 => {
delta_from => 5.039005,
changed => {
'B::Op_private' => '5.039006',
'Config' => '5.039006',
'Module::CoreList' => '5.20231125',
'Module::CoreList::Utils'=> '5.20231125',
},
removed => {
}
},
5.034002 => {
delta_from => 5.034001,
changed => {
Expand Down Expand Up @@ -21109,6 +21101,50 @@ for my $version ( sort { $a <=> $b } keys %released ) {
removed => {
}
},
5.034003 => {
delta_from => 5.034002,
changed => {
'B::Op_private' => '5.034003',
'Config' => '5.034003',
'Module::CoreList' => '5.20231129',
'Module::CoreList::Utils'=> '5.20231129',
},
removed => {
}
},
5.036003 => {
delta_from => 5.036002,
changed => {
'B::Op_private' => '5.036003',
'Config' => '5.036003',
'Module::CoreList' => '5.20231129',
'Module::CoreList::Utils'=> '5.20231129',
},
removed => {
}
},
5.038002 => {
delta_from => 5.038001,
changed => {
'B::Op_private' => '5.038002',
'Config' => '5.038002',
'Module::CoreList' => '5.20231129',
'Module::CoreList::Utils'=> '5.20231129',
},
removed => {
}
},
5.039006 => {
delta_from => 5.039005,
changed => {
'B::Op_private' => '5.039006',
'Config' => '5.039006',
'Module::CoreList' => '5.20231220',
'Module::CoreList::Utils'=> '5.20231220',
},
removed => {
}
},
);

sub is_core
Expand Down Expand Up @@ -22545,13 +22581,6 @@ sub is_core
removed => {
}
},
5.039006 => {
delta_from => 5.039005,
changed => {
},
removed => {
}
},
5.034002 => {
delta_from => 5.034001,
changed => {
Expand All @@ -22573,6 +22602,34 @@ sub is_core
removed => {
}
},
5.034003 => {
delta_from => 5.034002,
changed => {
},
removed => {
}
},
5.036003 => {
delta_from => 5.036002,
changed => {
},
removed => {
}
},
5.038002 => {
delta_from => 5.038001,
changed => {
},
removed => {
}
},
5.039006 => {
delta_from => 5.039005,
changed => {
},
removed => {
}
},
);

%deprecated = _undelta(\%deprecated);
Expand Down
37 changes: 29 additions & 8 deletions dist/Module-CoreList/lib/Module/CoreList/Utils.pm
Expand Up @@ -4,7 +4,7 @@ use strict;
use warnings;
use Module::CoreList;

our $VERSION = '5.20231125';
our $VERSION = '5.20231220';
our %utilities;

sub utilities {
Expand Down Expand Up @@ -1937,13 +1937,6 @@ my %delta = (
removed => {
}
},
5.039006 => {
delta_from => 5.039005,
changed => {
},
removed => {
}
},
5.034002 => {
delta_from => 5.034001,
changed => {
Expand All @@ -1965,6 +1958,34 @@ my %delta = (
removed => {
}
},
5.034003 => {
delta_from => 5.034002,
changed => {
},
removed => {
}
},
5.036003 => {
delta_from => 5.036002,
changed => {
},
removed => {
}
},
5.038002 => {
delta_from => 5.038001,
changed => {
},
removed => {
}
},
5.039006 => {
delta_from => 5.039005,
changed => {
},
removed => {
}
},
);

%utilities = Module::CoreList::_undelta(\%delta);
Expand Down

0 comments on commit 5bd15fe

Please sign in to comment.