diff options
author | Todd Rinaldo <toddr@cpan.org> | 2020-10-13 15:13:32 -0500 |
---|---|---|
committer | Todd Rinaldo <toddr@cpan.org> | 2020-10-13 17:48:15 -0500 |
commit | 551856fd362817d07a3df5400d749676378a6999 (patch) | |
tree | f933313fac2b12c1dcfab401ac70a62ca2dfcabc /Porting | |
parent | ba6f05dbf3328e0cf055fb6ae3d48e11f7b7c6c1 (diff) | |
download | perl-551856fd362817d07a3df5400d749676378a6999.tar.gz |
Update Digest to CPAN version 1.19
[DELTA]
1.19 Tue 2020-10-13
- Merge blead change: Remove . from @INC when loading optional modules.
1.18 Tue 2020-10-13
- Correct documentation for add_bits
- Explain $args,... in constructor prototypes
- Add base64_padded_digest method
- Add support for the SHA3 digests
- Update .gitignore and get make manifest working
- Github CI
- Move Digest to a more modern directory tree layout
- Enable strict/warnings for code and tests
- Drop use vars
- Provide a consistent tidy to the code base
- Get rid of the use of bareword file handles
- Modernize the changelog
- Use File::Temp for temporary test files
Diffstat (limited to 'Porting')
-rwxr-xr-x | Porting/Maintainers.pl | 4 | ||||
-rwxr-xr-x | Porting/cmpVERSION.pl | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 13fff95434..1ac24a72d0 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -355,12 +355,10 @@ use File::Glob qw(:case); }, 'Digest' => { - 'DISTRIBUTION' => 'GAAS/Digest-1.17.tar.gz', + 'DISTRIBUTION' => 'TODDR/Digest-1.19.tar.gz', 'FILES' => q[cpan/Digest], 'EXCLUDED' => ['digest-bench'], 'CUSTOMIZED' => [ - # CVE-2016-1238 - qw( Digest.pm ) ], }, diff --git a/Porting/cmpVERSION.pl b/Porting/cmpVERSION.pl index 058000a410..b4af2d9def 100755 --- a/Porting/cmpVERSION.pl +++ b/Porting/cmpVERSION.pl @@ -81,6 +81,7 @@ if ($exclude_upstream) { # usually because they pull in their version from some other file. my %skip; @skip{ + 'cpan/Digest/t/lib/Digest/Dummy.pm', # just a test module 'cpan/ExtUtils-Install/t/lib/MakeMaker/Test/Setup/BFD.pm', # just a test module 'cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/BFD.pm', # just a test module 'cpan/ExtUtils-MakeMaker/t/lib/MakeMaker/Test/Setup/XS.pm', # just a test module |