[Perl/perl5] 5a5493: [DBM_Filter] do not look like it contains document...
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 5a5493e4da7a9012d51e778f4276d710ff99210e https://github.com/Perl/perl5/commit/5a5493e4da7a9012d51e778f4276d710ff99210e Author: Branislav ZahradnĂk Date: 2025-01-03 (Fri, 03 Jan 2025) Changed paths: M lib/DBM_Filter.pm Log Message: --- [DBM_Filter] do not look like it contains documentation of Tie::Hash To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] ad0f86: release manager guide: cmpVERSION needs the previo...
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: ad0f8623edde8440543dde1c88d7b1f644348640 https://github.com/Perl/perl5/commit/ad0f8623edde8440543dde1c88d7b1f644348640 Author: Graham Knop Date: 2024-10-21 (Mon, 21 Oct 2024) Changed paths: M Porting/release_managers_guide.pod Log Message: --- release manager guide: cmpVERSION needs the previous release The versions in release_managers_guide.pod are used as template placeholders. cmpVERSION.pl should be run with the previous version, not the version being prepared. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 8684cb: perlop: fix and normalize indentation and alignment
Branch: refs/heads/haarg/perlop-fix-improve-indent-alignment Home: https://github.com/Perl/perl5 Commit: 8684cb8a0f5c413baa566638d519f3dae2353a4f https://github.com/Perl/perl5/commit/8684cb8a0f5c413baa566638d519f3dae2353a4f Author: Graham Knop Date: 2024-10-11 (Fri, 11 Oct 2024) Changed paths: M pod/perldelta.pod M pod/perlop.pod Log Message: --- perlop: fix and normalize indentation and alignment Tabs for alignment don't work well in verbatim sections. The indentation of the code may be stripped when being displayed, resulting in the tab alignment not matching the intention. This can currently be seen on https://metacpan.org/pod/perlop and https://perldoc.perl.org/perlop Since most of the code uses 4 space indents, normalize all of the indentation to use 4 spaces. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 997089: perlop: fix and normalize indentation and alignment
Branch: refs/heads/haarg/perlop-fix-improve-indent-alignment Home: https://github.com/Perl/perl5 Commit: 997089d6af3e52e7b193a3756e98be16a8d32cb0 https://github.com/Perl/perl5/commit/997089d6af3e52e7b193a3756e98be16a8d32cb0 Author: Graham Knop Date: 2024-10-11 (Fri, 11 Oct 2024) Changed paths: M pod/perldelta.pod M pod/perlop.pod Log Message: --- perlop: fix and normalize indentation and alignment Tabs for alignment don't work well in verbatim sections. The indentation of the code may be stripped when being displayed, resulting in the tab alignment not matching the intention. This can currently be seen on https://metacpan.org/pod/perlop and https://perldoc.perl.org/perlop Since most of the code uses 4 space indents, normalize all of the indentation to use 4 spaces. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] bcea45: perlop: fix and normalize indentation and alignment
Branch: refs/heads/haarg/perlop-fix-improve-indent-alignment Home: https://github.com/Perl/perl5 Commit: bcea45970b82a6241811258d21d990238cb6b6ff https://github.com/Perl/perl5/commit/bcea45970b82a6241811258d21d990238cb6b6ff Author: Graham Knop Date: 2024-10-10 (Thu, 10 Oct 2024) Changed paths: M pod/perldelta.pod M pod/perlop.pod Log Message: --- perlop: fix and normalize indentation and alignment Tabs for alignment don't work well in verbatim sections. The indentation of the code may be stripped when being displayed, resulting in the tab alignment not matching the intention. This can currently be seen on https://metacpan.org/pod/perlop and https://perldoc.perl.org/perlop Since most of the code uses 4 space indents, normalize all of the indentation to use 4 spaces. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/heads/haarg/storable-no-bwfh Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 5311f0: Storable: stop using bareword file handles
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 5311f0ced8f73fb0f9e3e3664aff99662af28504 https://github.com/Perl/perl5/commit/5311f0ced8f73fb0f9e3e3664aff99662af28504 Author: Graham Knop Date: 2024-09-17 (Tue, 17 Sep 2024) Changed paths: M dist/Storable/lib/Storable.pm Log Message: --- Storable: stop using bareword file handles Modernize the file handle use by using a lexical. Using a bareword file handle actually led to a test failure in the CPAN module Patro. It uses an improper CORE::GLOBAL::flock override with an incorrect prototype. This prevents the use of barewords with flock(). While the bug here is in the CPAN module, avoiding bareword file handles will allow those tests to pass. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 030b2d: Storable: stop using bareword file handles
Branch: refs/heads/haarg/storable-no-bwfh Home: https://github.com/Perl/perl5 Commit: 030b2d26f0b8011c2be70f7a8eb88aec85194cad https://github.com/Perl/perl5/commit/030b2d26f0b8011c2be70f7a8eb88aec85194cad Author: Graham Knop Date: 2024-09-16 (Mon, 16 Sep 2024) Changed paths: M dist/Storable/lib/Storable.pm Log Message: --- Storable: stop using bareword file handles Modernize the file handle use by using a lexical. Using a bareword file handle actually led to a test failure in the CPAN module Patro. It uses an improper CORE::GLOBAL::flock override with an incorrect prototype. This prevents the use of barewords with flock(). While the bug here is in the CPAN module, avoiding bareword file handles will allow those tests to pass. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 2d04b1: Storable: stop using bareword file handles
Branch: refs/heads/haarg/storable-no-bwfh Home: https://github.com/Perl/perl5 Commit: 2d04b1af49f6d89d1e3130b5665b9ce5d7932cab https://github.com/Perl/perl5/commit/2d04b1af49f6d89d1e3130b5665b9ce5d7932cab Author: Graham Knop Date: 2024-09-16 (Mon, 16 Sep 2024) Changed paths: M dist/Storable/lib/Storable.pm Log Message: --- Storable: stop using bareword file handles Modernize the file handle use by using a lexical. Using a bareword file handle actually led to a test failure in the CPAN module Patro. It uses an improper CORE::GLOBAL::flock override with an incorrect prototype. This prevents the use of barewords with flock(). While the bug here is in the CPAN module, avoiding bareword file handles will allow those tests to pass. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/heads/haarg/storable-cleanup Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] f8021e: Storable: version bump
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: f8021e2de0e3cf62fa533974f0b0884dda456f78 https://github.com/Perl/perl5/commit/f8021e2de0e3cf62fa533974f0b0884dda456f78 Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M dist/Storable/Storable.pm Log Message: --- Storable: version bump Commit: 64936ad2494b2790eca50fd58ce1e155c6297fed https://github.com/Perl/perl5/commit/64936ad2494b2790eca50fd58ce1e155c6297fed Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M MANIFEST R dist/Storable/MANIFEST A dist/Storable/MANIFEST.SKIP Log Message: --- Storable: remove MANIFEST and add MANIFEST.SKIP Commit: 65740adc04d44dfaee56380274aaf4dbcd8e8c75 https://github.com/Perl/perl5/commit/65740adc04d44dfaee56380274aaf4dbcd8e8c75 Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M dist/Storable/Makefile.PL Log Message: --- Storable: clean up Makefile.PL We don't need to have conditional handling for older versions of EUMM. They will warn for unhandled keys, but it won't cause an errors. We can also remove the warning relating to perl 5.6. Anyone still using perl 5.6 isn't going to be changing their build. Storable is maintained in core, so it doesn't have a consistent separate repository where its tags would go. The release process can be done manually. Commit: 003f13fb37debe7bef921d2dc6144006b1090d39 https://github.com/Perl/perl5/commit/003f13fb37debe7bef921d2dc6144006b1090d39 Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M MANIFEST M dist/Storable/Makefile.PL R dist/Storable/Storable.pm A dist/Storable/lib/Storable.pm Log Message: --- Storable: move Storable.pm to lib dir Commit: 6ecc538d7465001ed7b4993c8f353b16c6a7f707 https://github.com/Perl/perl5/commit/6ecc538d7465001ed7b4993c8f353b16c6a7f707 Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M dist/Storable/Makefile.PL M dist/Storable/Storable.xs M dist/Storable/hints/hpux.pl M dist/Storable/hints/linux.pl M dist/Storable/lib/Storable.pm M dist/Storable/stacksize M dist/Storable/t/CVE-2015-1592.t M dist/Storable/t/HAS_ATTACH.pm M dist/Storable/t/HAS_HOOK.pm M dist/Storable/t/HAS_OVERLOAD.pm M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.t M dist/Storable/t/circular_hook.t M dist/Storable/t/code.t M dist/Storable/t/compat01.t M dist/Storable/t/compat06.t M dist/Storable/t/croak.t M dist/Storable/t/dclone.t M dist/Storable/t/destroy.t M dist/Storable/t/downgrade.t M dist/Storable/t/file_magic.t M dist/Storable/t/flags.t M dist/Storable/t/forgive.t M dist/Storable/t/freeze.t M dist/Storable/t/huge.t M dist/Storable/t/hugeids.t M dist/Storable/t/integer.t M dist/Storable/t/interwork56.t M dist/Storable/t/just_plain_nasty.t M dist/Storable/t/leaks.t M dist/Storable/t/lock.t M dist/Storable/t/make_56_interwork.pl M dist/Storable/t/make_downgrade.pl M dist/Storable/t/malice.t M dist/Storable/t/overload.t M dist/Storable/t/recurse.t M dist/Storable/t/regexp.t M dist/Storable/t/restrict.t M dist/Storable/t/retrieve.t M dist/Storable/t/st-dump.pl M dist/Storable/t/store.t M dist/Storable/t/testlib.pl M dist/Storable/t/threads.t M dist/Storable/t/tied.t M dist/Storable/t/tied_hook.t M dist/Storable/t/tied_items.t M dist/Storable/t/tied_reify.t M dist/Storable/t/tied_store.t M dist/Storable/t/utf8.t M dist/Storable/t/utf8hash.t M dist/Storable/t/weak.t Log Message: --- Storable: Normalize whitespace as 4 space indents The code had a mix of indents, heavily mixing tabs and spaces. Normalize all of the indents at 4 spaces. Commit: 01435a1e6cc1cacec07d876630def531008d8a8b https://github.com/Perl/perl5/commit/01435a1e6cc1cacec07d876630def531008d8a8b Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M dist/Storable/t/downgrade.t Log Message: --- Storable: simplify check for Hash::Util Rather than using a custom error for when Hash::Util isn't available (which should never happen) just require it. Commit: 27a73f6c3362551dc24007ca6408461018df35f8 https://github.com/Perl/perl5/commit/27a73f6c3362551dc24007ca6408461018df35f8 Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.t M dist/Stor
[Perl/perl5] f8021e: Storable: version bump
Branch: refs/heads/haarg/storable-cleanup Home: https://github.com/Perl/perl5 Commit: f8021e2de0e3cf62fa533974f0b0884dda456f78 https://github.com/Perl/perl5/commit/f8021e2de0e3cf62fa533974f0b0884dda456f78 Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M dist/Storable/Storable.pm Log Message: --- Storable: version bump Commit: 64936ad2494b2790eca50fd58ce1e155c6297fed https://github.com/Perl/perl5/commit/64936ad2494b2790eca50fd58ce1e155c6297fed Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M MANIFEST R dist/Storable/MANIFEST A dist/Storable/MANIFEST.SKIP Log Message: --- Storable: remove MANIFEST and add MANIFEST.SKIP Commit: 65740adc04d44dfaee56380274aaf4dbcd8e8c75 https://github.com/Perl/perl5/commit/65740adc04d44dfaee56380274aaf4dbcd8e8c75 Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M dist/Storable/Makefile.PL Log Message: --- Storable: clean up Makefile.PL We don't need to have conditional handling for older versions of EUMM. They will warn for unhandled keys, but it won't cause an errors. We can also remove the warning relating to perl 5.6. Anyone still using perl 5.6 isn't going to be changing their build. Storable is maintained in core, so it doesn't have a consistent separate repository where its tags would go. The release process can be done manually. Commit: 003f13fb37debe7bef921d2dc6144006b1090d39 https://github.com/Perl/perl5/commit/003f13fb37debe7bef921d2dc6144006b1090d39 Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M MANIFEST M dist/Storable/Makefile.PL R dist/Storable/Storable.pm A dist/Storable/lib/Storable.pm Log Message: --- Storable: move Storable.pm to lib dir Commit: 6ecc538d7465001ed7b4993c8f353b16c6a7f707 https://github.com/Perl/perl5/commit/6ecc538d7465001ed7b4993c8f353b16c6a7f707 Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M dist/Storable/Makefile.PL M dist/Storable/Storable.xs M dist/Storable/hints/hpux.pl M dist/Storable/hints/linux.pl M dist/Storable/lib/Storable.pm M dist/Storable/stacksize M dist/Storable/t/CVE-2015-1592.t M dist/Storable/t/HAS_ATTACH.pm M dist/Storable/t/HAS_HOOK.pm M dist/Storable/t/HAS_OVERLOAD.pm M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.t M dist/Storable/t/circular_hook.t M dist/Storable/t/code.t M dist/Storable/t/compat01.t M dist/Storable/t/compat06.t M dist/Storable/t/croak.t M dist/Storable/t/dclone.t M dist/Storable/t/destroy.t M dist/Storable/t/downgrade.t M dist/Storable/t/file_magic.t M dist/Storable/t/flags.t M dist/Storable/t/forgive.t M dist/Storable/t/freeze.t M dist/Storable/t/huge.t M dist/Storable/t/hugeids.t M dist/Storable/t/integer.t M dist/Storable/t/interwork56.t M dist/Storable/t/just_plain_nasty.t M dist/Storable/t/leaks.t M dist/Storable/t/lock.t M dist/Storable/t/make_56_interwork.pl M dist/Storable/t/make_downgrade.pl M dist/Storable/t/malice.t M dist/Storable/t/overload.t M dist/Storable/t/recurse.t M dist/Storable/t/regexp.t M dist/Storable/t/restrict.t M dist/Storable/t/retrieve.t M dist/Storable/t/st-dump.pl M dist/Storable/t/store.t M dist/Storable/t/testlib.pl M dist/Storable/t/threads.t M dist/Storable/t/tied.t M dist/Storable/t/tied_hook.t M dist/Storable/t/tied_items.t M dist/Storable/t/tied_reify.t M dist/Storable/t/tied_store.t M dist/Storable/t/utf8.t M dist/Storable/t/utf8hash.t M dist/Storable/t/weak.t Log Message: --- Storable: Normalize whitespace as 4 space indents The code had a mix of indents, heavily mixing tabs and spaces. Normalize all of the indents at 4 spaces. Commit: 01435a1e6cc1cacec07d876630def531008d8a8b https://github.com/Perl/perl5/commit/01435a1e6cc1cacec07d876630def531008d8a8b Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M dist/Storable/t/downgrade.t Log Message: --- Storable: simplify check for Hash::Util Rather than using a custom error for when Hash::Util isn't available (which should never happen) just require it. Commit: 27a73f6c3362551dc24007ca6408461018df35f8 https://github.com/Perl/perl5/commit/27a73f6c3362551dc24007ca6408461018df35f8 Author: Graham Knop Date: 2024-08-08 (Thu, 08 Aug 2024) Changed paths: M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.
[Perl/perl5] 451703: Storable: version bump
Branch: refs/heads/haarg/storable-cleanup Home: https://github.com/Perl/perl5 Commit: 45170365e47e6ff86a260348cc136c361d77bd56 https://github.com/Perl/perl5/commit/45170365e47e6ff86a260348cc136c361d77bd56 Author: Graham Knop Date: 2024-08-05 (Mon, 05 Aug 2024) Changed paths: M dist/Storable/Storable.pm Log Message: --- Storable: version bump Commit: 691726def4b1e9f5a60f882c086d2e895c9eb3c3 https://github.com/Perl/perl5/commit/691726def4b1e9f5a60f882c086d2e895c9eb3c3 Author: Graham Knop Date: 2024-08-05 (Mon, 05 Aug 2024) Changed paths: M MANIFEST R dist/Storable/MANIFEST A dist/Storable/MANIFEST.SKIP Log Message: --- Storable: remove MANIFEST and add MANIFEST.SKIP Commit: 70bed00204bf05bd08776f7d23ef355335586583 https://github.com/Perl/perl5/commit/70bed00204bf05bd08776f7d23ef355335586583 Author: Graham Knop Date: 2024-08-05 (Mon, 05 Aug 2024) Changed paths: M dist/Storable/Makefile.PL Log Message: --- Storable: clean up Makefile.PL We don't need to have conditional handling for older versions of EUMM. They will warn for unhandled keys, but it won't cause an errors. We can also remove the warning relating to perl 5.6. Anyone still using perl 5.6 isn't going to be changing their build. Storable is maintained in core, so it doesn't have a consistent separate repository where its tags would go. The release process can be done manually. Commit: d510c5aa56852d538a86d62a0c958f3e3f1210eb https://github.com/Perl/perl5/commit/d510c5aa56852d538a86d62a0c958f3e3f1210eb Author: Graham Knop Date: 2024-08-05 (Mon, 05 Aug 2024) Changed paths: M MANIFEST M dist/Storable/Makefile.PL R dist/Storable/Storable.pm A dist/Storable/lib/Storable.pm Log Message: --- Storable: move Storable.pm to lib dir Commit: 89989624147199b48373bef06fa91e14309519d1 https://github.com/Perl/perl5/commit/89989624147199b48373bef06fa91e14309519d1 Author: Graham Knop Date: 2024-08-05 (Mon, 05 Aug 2024) Changed paths: M dist/Storable/Makefile.PL M dist/Storable/Storable.xs M dist/Storable/hints/hpux.pl M dist/Storable/hints/linux.pl M dist/Storable/lib/Storable.pm M dist/Storable/stacksize M dist/Storable/t/CVE-2015-1592.t M dist/Storable/t/HAS_ATTACH.pm M dist/Storable/t/HAS_HOOK.pm M dist/Storable/t/HAS_OVERLOAD.pm M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.t M dist/Storable/t/circular_hook.t M dist/Storable/t/code.t M dist/Storable/t/compat01.t M dist/Storable/t/compat06.t M dist/Storable/t/croak.t M dist/Storable/t/dclone.t M dist/Storable/t/destroy.t M dist/Storable/t/downgrade.t M dist/Storable/t/file_magic.t M dist/Storable/t/flags.t M dist/Storable/t/forgive.t M dist/Storable/t/freeze.t M dist/Storable/t/huge.t M dist/Storable/t/hugeids.t M dist/Storable/t/integer.t M dist/Storable/t/interwork56.t M dist/Storable/t/just_plain_nasty.t M dist/Storable/t/leaks.t M dist/Storable/t/lock.t M dist/Storable/t/make_56_interwork.pl M dist/Storable/t/make_downgrade.pl M dist/Storable/t/malice.t M dist/Storable/t/overload.t M dist/Storable/t/recurse.t M dist/Storable/t/regexp.t M dist/Storable/t/restrict.t M dist/Storable/t/retrieve.t M dist/Storable/t/st-dump.pl M dist/Storable/t/store.t M dist/Storable/t/testlib.pl M dist/Storable/t/threads.t M dist/Storable/t/tied.t M dist/Storable/t/tied_hook.t M dist/Storable/t/tied_items.t M dist/Storable/t/tied_reify.t M dist/Storable/t/tied_store.t M dist/Storable/t/utf8.t M dist/Storable/t/utf8hash.t M dist/Storable/t/weak.t Log Message: --- Storable: Normalize whitespace as 4 space indents The code had a mix of indents, heavily mixing tabs and spaces. Normalize all of the indents at 4 spaces. Commit: fd7686a529da75d6e6d3072f1cc87ecf0edbe1b7 https://github.com/Perl/perl5/commit/fd7686a529da75d6e6d3072f1cc87ecf0edbe1b7 Author: Graham Knop Date: 2024-08-05 (Mon, 05 Aug 2024) Changed paths: M dist/Storable/t/downgrade.t Log Message: --- Storable: simplify check for Hash::Util Rather than using a custom error for when Hash::Util isn't available (which should never happen) just require it. Commit: b0f205fdd7f402d1baebd85bb81b02be9b8dd958 https://github.com/Perl/perl5/commit/b0f205fdd7f402d1baebd85bb81b02be9b8dd958 Author: Graham Knop Date: 2024-08-05 (Mon, 05 Aug 2024) Changed paths: M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.
[Perl/perl5] a76191: Storable: remove MANIFEST and add MANIFEST.SKIP
Branch: refs/heads/haarg/storable-cleanup Home: https://github.com/Perl/perl5 Commit: a76191b225b4b3482721a764e062f813c3c9057f https://github.com/Perl/perl5/commit/a76191b225b4b3482721a764e062f813c3c9057f Author: Graham Knop Date: 2024-08-01 (Thu, 01 Aug 2024) Changed paths: M MANIFEST R dist/Storable/MANIFEST A dist/Storable/MANIFEST.SKIP Log Message: --- Storable: remove MANIFEST and add MANIFEST.SKIP Commit: 79ab2008ea9a6169aaa7d0a9e6d20886799ce59d https://github.com/Perl/perl5/commit/79ab2008ea9a6169aaa7d0a9e6d20886799ce59d Author: Graham Knop Date: 2024-08-01 (Thu, 01 Aug 2024) Changed paths: M dist/Storable/Makefile.PL Log Message: --- Storable: clean up Makefile.PL We don't need to have conditional handling for older versions of EUMM. They will warn for unhandled keys, but it won't cause an errors. We can also remove the warning relating to perl 5.6. Anyone still using perl 5.6 isn't going to be changing their build. Storable is maintained in core, so it doesn't have a consistent separate repository where its tags would go. The release process can be done manually. Commit: bf3cf784386806ca8b2a2fe734998b15a3bc7cb6 https://github.com/Perl/perl5/commit/bf3cf784386806ca8b2a2fe734998b15a3bc7cb6 Author: Graham Knop Date: 2024-08-01 (Thu, 01 Aug 2024) Changed paths: M MANIFEST M dist/Storable/Makefile.PL R dist/Storable/Storable.pm A dist/Storable/lib/Storable.pm Log Message: --- Storable: move Storable.pm to lib dir Commit: 5d2d3e870eaffe3c81ae7644adc6d0cb9dcefc7c https://github.com/Perl/perl5/commit/5d2d3e870eaffe3c81ae7644adc6d0cb9dcefc7c Author: Graham Knop Date: 2024-08-01 (Thu, 01 Aug 2024) Changed paths: M dist/Storable/Makefile.PL M dist/Storable/Storable.xs M dist/Storable/hints/hpux.pl M dist/Storable/hints/linux.pl M dist/Storable/lib/Storable.pm M dist/Storable/stacksize M dist/Storable/t/CVE-2015-1592.t M dist/Storable/t/HAS_ATTACH.pm M dist/Storable/t/HAS_HOOK.pm M dist/Storable/t/HAS_OVERLOAD.pm M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.t M dist/Storable/t/circular_hook.t M dist/Storable/t/code.t M dist/Storable/t/compat01.t M dist/Storable/t/compat06.t M dist/Storable/t/croak.t M dist/Storable/t/dclone.t M dist/Storable/t/destroy.t M dist/Storable/t/downgrade.t M dist/Storable/t/file_magic.t M dist/Storable/t/flags.t M dist/Storable/t/forgive.t M dist/Storable/t/freeze.t M dist/Storable/t/huge.t M dist/Storable/t/hugeids.t M dist/Storable/t/integer.t M dist/Storable/t/interwork56.t M dist/Storable/t/just_plain_nasty.t M dist/Storable/t/leaks.t M dist/Storable/t/lock.t M dist/Storable/t/make_56_interwork.pl M dist/Storable/t/make_downgrade.pl M dist/Storable/t/malice.t M dist/Storable/t/overload.t M dist/Storable/t/recurse.t M dist/Storable/t/regexp.t M dist/Storable/t/restrict.t M dist/Storable/t/retrieve.t M dist/Storable/t/st-dump.pl M dist/Storable/t/store.t M dist/Storable/t/testlib.pl M dist/Storable/t/threads.t M dist/Storable/t/tied.t M dist/Storable/t/tied_hook.t M dist/Storable/t/tied_items.t M dist/Storable/t/tied_reify.t M dist/Storable/t/tied_store.t M dist/Storable/t/utf8.t M dist/Storable/t/utf8hash.t M dist/Storable/t/weak.t Log Message: --- Storable: Normalize whitespace as 4 space indents The code had a mix of indents, heavily mixing tabs and spaces. Normalize all of the indents at 4 spaces. Commit: 9c855ffda875b175ae07921fd63ae257e93ff551 https://github.com/Perl/perl5/commit/9c855ffda875b175ae07921fd63ae257e93ff551 Author: Graham Knop Date: 2024-08-01 (Thu, 01 Aug 2024) Changed paths: M dist/Storable/t/downgrade.t Log Message: --- Storable: simplify check for Hash::Util Rather than using a custom error for when Hash::Util isn't available (which should never happen) just require it. Commit: 6209f38c689869c749e9a46e1c6760f797d08776 https://github.com/Perl/perl5/commit/6209f38c689869c749e9a46e1c6760f797d08776 Author: Graham Knop Date: 2024-08-01 (Thu, 01 Aug 2024) Changed paths: M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.t M dist/Storable/t/circular_hook.t M dist/Storable/t/code.t M dist/Storable/t/compat01.t M dist/Storable/t/compat06.t M dist/Storable/t/dclone.t M dist/Storable/t/downgrade.t M dist/Storable/t/file_magic.t M dist/Storable/t/forgive.t M dist/Storable/t/freeze.t M di
[Perl/perl5] bd8229: Storable: remove conditional define
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: bd8229e7049add6f6da46c15d55a498e9c298b76 https://github.com/Perl/perl5/commit/bd8229e7049add6f6da46c15d55a498e9c298b76 Author: Graham Knop Date: 2024-08-01 (Thu, 01 Aug 2024) Changed paths: M dist/Storable/t/huge.t Log Message: --- Storable: remove conditional define To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] c6c03e: Storable: remove MANIFEST and add MANIFEST.SKIP
Branch: refs/heads/haarg/storable-cleanup Home: https://github.com/Perl/perl5 Commit: c6c03e9d6086669aba2fe0dc7334bbc44f37c5e2 https://github.com/Perl/perl5/commit/c6c03e9d6086669aba2fe0dc7334bbc44f37c5e2 Author: Graham Knop Date: 2024-07-31 (Wed, 31 Jul 2024) Changed paths: R dist/Storable/MANIFEST A dist/Storable/MANIFEST.SKIP Log Message: --- Storable: remove MANIFEST and add MANIFEST.SKIP Commit: 00fd001ff95af949edd4ff849086951548d2c582 https://github.com/Perl/perl5/commit/00fd001ff95af949edd4ff849086951548d2c582 Author: Graham Knop Date: 2024-07-31 (Wed, 31 Jul 2024) Changed paths: M dist/Storable/Makefile.PL Log Message: --- Storable: clean up Makefile.PL We don't need to have conditional handling for older versions of EUMM. They will warn for unhandled keys, but it won't cause an errors. We can also remove the warning relating to perl 5.6. Anyone still using perl 5.6 isn't going to be changing their build. Storable is maintained in core, so it doesn't have a consistent separate repository where its tags would go. The release process can be done manually. Commit: 3009c651516e7c026fee372731e70f7b9e8625be https://github.com/Perl/perl5/commit/3009c651516e7c026fee372731e70f7b9e8625be Author: Graham Knop Date: 2024-07-31 (Wed, 31 Jul 2024) Changed paths: M dist/Storable/Makefile.PL R dist/Storable/Storable.pm A dist/Storable/lib/Storable.pm Log Message: --- Storable: move Storable.pm to lib dir Commit: 08422cae4f90fba1616803d352117835ed5f1167 https://github.com/Perl/perl5/commit/08422cae4f90fba1616803d352117835ed5f1167 Author: Graham Knop Date: 2024-07-31 (Wed, 31 Jul 2024) Changed paths: M dist/Storable/Makefile.PL M dist/Storable/Storable.xs M dist/Storable/hints/hpux.pl M dist/Storable/hints/linux.pl M dist/Storable/lib/Storable.pm M dist/Storable/stacksize M dist/Storable/t/CVE-2015-1592.t M dist/Storable/t/HAS_ATTACH.pm M dist/Storable/t/HAS_HOOK.pm M dist/Storable/t/HAS_OVERLOAD.pm M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.t M dist/Storable/t/circular_hook.t M dist/Storable/t/code.t M dist/Storable/t/compat01.t M dist/Storable/t/compat06.t M dist/Storable/t/croak.t M dist/Storable/t/dclone.t M dist/Storable/t/destroy.t M dist/Storable/t/downgrade.t M dist/Storable/t/file_magic.t M dist/Storable/t/flags.t M dist/Storable/t/forgive.t M dist/Storable/t/freeze.t M dist/Storable/t/huge.t M dist/Storable/t/hugeids.t M dist/Storable/t/integer.t M dist/Storable/t/interwork56.t M dist/Storable/t/just_plain_nasty.t M dist/Storable/t/leaks.t M dist/Storable/t/lock.t M dist/Storable/t/make_56_interwork.pl M dist/Storable/t/make_downgrade.pl M dist/Storable/t/malice.t M dist/Storable/t/overload.t M dist/Storable/t/recurse.t M dist/Storable/t/regexp.t M dist/Storable/t/restrict.t M dist/Storable/t/retrieve.t M dist/Storable/t/st-dump.pl M dist/Storable/t/store.t M dist/Storable/t/testlib.pl M dist/Storable/t/threads.t M dist/Storable/t/tied.t M dist/Storable/t/tied_hook.t M dist/Storable/t/tied_items.t M dist/Storable/t/tied_reify.t M dist/Storable/t/tied_store.t M dist/Storable/t/utf8.t M dist/Storable/t/utf8hash.t M dist/Storable/t/weak.t Log Message: --- Storable: Normalize whitespace as 4 space indents The code had a mix of indents, heavily mixing tabs and spaces. Normalize all of the indents at 4 spaces. Commit: 5528f95bed1ffd316ee778d8e1fd8e68d0600766 https://github.com/Perl/perl5/commit/5528f95bed1ffd316ee778d8e1fd8e68d0600766 Author: Graham Knop Date: 2024-07-31 (Wed, 31 Jul 2024) Changed paths: M dist/Storable/t/huge.t Log Message: --- Storable: remove conditional define Commit: c4f3f2af42a44579109ad9514c0ebfa68c077f6c https://github.com/Perl/perl5/commit/c4f3f2af42a44579109ad9514c0ebfa68c077f6c Author: Graham Knop Date: 2024-07-31 (Wed, 31 Jul 2024) Changed paths: M dist/Storable/t/downgrade.t Log Message: --- Storable: simplify check for Hash::Util Rather than using a custom error for when Hash::Util isn't available (which should never happen) just require it. Commit: 439b82ac55a59c7eadef31c631a3ded30ea9ad1f https://github.com/Perl/perl5/commit/439b82ac55a59c7eadef31c631a3ded30ea9ad1f Author: Graham Knop Date: 2024-07-31 (Wed, 31 Jul 2024) Changed paths: M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.t M dist/Storabl
[Perl/perl5] 062de4: Storable: use strict and warnings in tests
Branch: refs/heads/haarg/storable-cleanup Home: https://github.com/Perl/perl5 Commit: 062de485643b4f33b0adc05ad0ff0a7d66fecd32 https://github.com/Perl/perl5/commit/062de485643b4f33b0adc05ad0ff0a7d66fecd32 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/t/CVE-2015-1592.t M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/canonical.t M dist/Storable/t/circular_hook.t M dist/Storable/t/code.t M dist/Storable/t/compat01.t M dist/Storable/t/compat06.t M dist/Storable/t/croak.t M dist/Storable/t/dclone.t M dist/Storable/t/destroy.t M dist/Storable/t/downgrade.t M dist/Storable/t/file_magic.t M dist/Storable/t/flags.t M dist/Storable/t/forgive.t M dist/Storable/t/freeze.t M dist/Storable/t/integer.t M dist/Storable/t/interwork56.t M dist/Storable/t/just_plain_nasty.t M dist/Storable/t/leaks.t M dist/Storable/t/lock.t M dist/Storable/t/malice.t M dist/Storable/t/overload.t M dist/Storable/t/recurse.t M dist/Storable/t/robust.t M dist/Storable/t/sig_die.t M dist/Storable/t/store.t M dist/Storable/t/threads.t M dist/Storable/t/tied.t M dist/Storable/t/tied_hook.t M dist/Storable/t/tied_items.t M dist/Storable/t/tied_reify.t M dist/Storable/t/tied_store.t M dist/Storable/t/utf8.t M dist/Storable/t/utf8hash.t M dist/Storable/t/weak.t Log Message: --- Storable: use strict and warnings in tests Commit: e9804c4e31521a5b82b33e18afd8dce169b10f23 https://github.com/Perl/perl5/commit/e9804c4e31521a5b82b33e18afd8dce169b10f23 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M MANIFEST Log Message: --- update MANIFEST for Storable changes Commit: 0372a667cd030fed7bdb7de91d3abd145f2ae6a0 https://github.com/Perl/perl5/commit/0372a667cd030fed7bdb7de91d3abd145f2ae6a0 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/ChangeLog Log Message: --- Storable: change log entries Commit: 13544cd475c82d19fbdb10f7e19a83a32d9f4aee https://github.com/Perl/perl5/commit/13544cd475c82d19fbdb10f7e19a83a32d9f4aee Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/lib/Storable.pm Log Message: --- Storable: version bump Compare: https://github.com/Perl/perl5/compare/a63ca6f84c45...13544cd475c8 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] e5b2bc: update MANIFEST for Storable changes
Branch: refs/heads/haarg/storable-cleanup Home: https://github.com/Perl/perl5 Commit: e5b2bcfa91ba79d785ae7d2c54ba54ee997bdb9e https://github.com/Perl/perl5/commit/e5b2bcfa91ba79d785ae7d2c54ba54ee997bdb9e Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M MANIFEST Log Message: --- update MANIFEST for Storable changes Commit: 1d26b69b1bf65996cc050ae9a450a782df0f8ecf https://github.com/Perl/perl5/commit/1d26b69b1bf65996cc050ae9a450a782df0f8ecf Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/ChangeLog Log Message: --- Storable: change log entries Commit: a63ca6f84c4549f05e830f4cf41a16190152e4ae https://github.com/Perl/perl5/commit/a63ca6f84c4549f05e830f4cf41a16190152e4ae Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/lib/Storable.pm Log Message: --- Storable: version bump Compare: https://github.com/Perl/perl5/compare/fef413ed91ff...a63ca6f84c45 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 68a291: Storable: normalize test utility scripts
Branch: refs/heads/haarg/storable-cleanup Home: https://github.com/Perl/perl5 Commit: 68a2918a22fd507ac19e32bac4c5ad407f61f99a https://github.com/Perl/perl5/commit/68a2918a22fd507ac19e32bac4c5ad407f61f99a Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M Porting/exec-bit.txt M dist/Storable/t/make_56_interwork.pl M dist/Storable/t/make_downgrade.pl M dist/Storable/t/make_overload.pl Log Message: --- Storable: normalize test utility scripts Commit: 27ad0e0d69bc1da9d4a4bdfdcd0c467ae59e74f8 https://github.com/Perl/perl5/commit/27ad0e0d69bc1da9d4a4bdfdcd0c467ae59e74f8 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: R dist/Storable/t/HAS_HOOK.pm R dist/Storable/t/HAS_OVERLOAD.pm M dist/Storable/t/blessed.t M dist/Storable/t/dclone.t M dist/Storable/t/freeze.t M dist/Storable/t/interwork56.t A dist/Storable/t/lib/HAS_HOOK.pm A dist/Storable/t/lib/HAS_OVERLOAD.pm A dist/Storable/t/lib/st-dump.pl A dist/Storable/t/lib/testlib.pl M dist/Storable/t/lock.t M dist/Storable/t/malice.t M dist/Storable/t/overload.t M dist/Storable/t/retrieve.t R dist/Storable/t/st-dump.pl M dist/Storable/t/store.t R dist/Storable/t/testlib.pl M dist/Storable/t/tied.t M dist/Storable/t/tied_hook.t M dist/Storable/t/weak.t Log Message: --- Storable: move test libs to t/lib Commit: 274193e4282537d2c9a21ff2295925f053ae9831 https://github.com/Perl/perl5/commit/274193e4282537d2c9a21ff2295925f053ae9831 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/Makefile.PL M dist/Storable/t/blessed.t M dist/Storable/t/dclone.t M dist/Storable/t/freeze.t A dist/Storable/t/lib/STDump.pm A dist/Storable/t/lib/STTestLib.pm R dist/Storable/t/lib/st-dump.pl R dist/Storable/t/lib/testlib.pl M dist/Storable/t/lock.t M dist/Storable/t/malice.t M dist/Storable/t/retrieve.t M dist/Storable/t/store.t M dist/Storable/t/tied.t M dist/Storable/t/tied_hook.t M dist/Storable/t/weak.t Log Message: --- Storable: convert test libraries into normal modules Commit: 28420f070500c35c2c9b669283c261f8cdb55cb7 https://github.com/Perl/perl5/commit/28420f070500c35c2c9b669283c261f8cdb55cb7 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/.gitignore Log Message: --- Storable: gitignore release tarballs Commit: 814b7d2250d6de64101ddb9df5e587efeffe9ddb https://github.com/Perl/perl5/commit/814b7d2250d6de64101ddb9df5e587efeffe9ddb Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/lib/Storable.pm Log Message: --- Storable: enable strict Commit: ae0b8ce5995bb0a15db6e5edfaee9541fafb2805 https://github.com/Perl/perl5/commit/ae0b8ce5995bb0a15db6e5edfaee9541fafb2805 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/lib/Storable.pm M dist/Storable/t/code.t M dist/Storable/t/recurse.t Log Message: --- Storable: stop using indirect object syntax in docs and tests Commit: 790fc9d88b7f9ebf80ca71586fe1c25777c301dd https://github.com/Perl/perl5/commit/790fc9d88b7f9ebf80ca71586fe1c25777c301dd Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/t/downgrade.t M dist/Storable/t/integer.t M dist/Storable/t/interwork56.t M dist/Storable/t/malice.t Log Message: --- Storable: remove notes about long gone 5.004 compatibility Commit: 5139ed89ba3c109b3eb4b8845552ebc37ed92047 https://github.com/Perl/perl5/commit/5139ed89ba3c109b3eb4b8845552ebc37ed92047 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/t/CVE-2015-1592.t M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/canonical.t M dist/Storable/t/circular_hook.t M dist/Storable/t/code.t M dist/Storable/t/compat01.t M dist/Storable/t/compat06.t M dist/Storable/t/croak.t M dist/Storable/t/dclone.t M dist/Storable/t/destroy.t M dist/Storable/t/downgrade.t M dist/Storable/t/file_magic.t M dist/Storable/t/flags.t M dist/Storable/t/forgive.t M dist/Storable/t/freeze.t M dist/Storable/t/integer.t M dist/Storable/t/interwork56.t M dist/Storable/t/just_plain_nasty.t M dist/Storable/t/leaks.t M dist/Storable/t/lock.t M dist/Storable/t/malice.t M dist/Storable/t/overload.t M dist/Storable/t/recurse.t M dist/Storable/t/robust.t M dist/Storable/t/sig_die.t M dist/Storable/t/store.t M dist/Storable/t/threads.t M dist/Storable/t/tied.t M
[Perl/perl5] aeaa40: asdadsasd
Branch: refs/heads/haarg/storable-cleanup Home: https://github.com/Perl/perl5 Commit: aeaa40c70cf650420b6da129d6f8a5f400f14270 https://github.com/Perl/perl5/commit/aeaa40c70cf650420b6da129d6f8a5f400f14270 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M MANIFEST Log Message: --- asdadsasd To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 2625c9: update MANIFEST for Storable changes
Branch: refs/heads/haarg/storable-cleanup Home: https://github.com/Perl/perl5 Commit: 2625c9f2ed1080ebf0d92109f865c7a88d3aec69 https://github.com/Perl/perl5/commit/2625c9f2ed1080ebf0d92109f865c7a88d3aec69 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M MANIFEST Log Message: --- update MANIFEST for Storable changes Commit: 8c3fb0b8d27bc8caa0757184a4ecbcf2ef1caa6f https://github.com/Perl/perl5/commit/8c3fb0b8d27bc8caa0757184a4ecbcf2ef1caa6f Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/ChangeLog Log Message: --- Storable: change log entries Commit: 7674911fa4320ce7bccdaa8b88fe80d903baefd8 https://github.com/Perl/perl5/commit/7674911fa4320ce7bccdaa8b88fe80d903baefd8 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/lib/Storable.pm Log Message: --- Storable: version bump Compare: https://github.com/Perl/perl5/compare/405c7363be6c...7674911fa432 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 7bcf85: Storable: remove test skips when extension not ena...
Branch: refs/heads/haarg/storable-cleanup Home: https://github.com/Perl/perl5 Commit: 7bcf857328e963155c3ffcf08948459f749d10ba https://github.com/Perl/perl5/commit/7bcf857328e963155c3ffcf08948459f749d10ba Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.t M dist/Storable/t/circular_hook.t M dist/Storable/t/code.t M dist/Storable/t/compat01.t M dist/Storable/t/compat06.t M dist/Storable/t/croak.t M dist/Storable/t/dclone.t M dist/Storable/t/downgrade.t M dist/Storable/t/forgive.t M dist/Storable/t/freeze.t M dist/Storable/t/huge.t M dist/Storable/t/hugeids.t M dist/Storable/t/integer.t M dist/Storable/t/interwork56.t M dist/Storable/t/just_plain_nasty.t M dist/Storable/t/lock.t M dist/Storable/t/malice.t M dist/Storable/t/overload.t M dist/Storable/t/recurse.t M dist/Storable/t/restrict.t M dist/Storable/t/retrieve.t M dist/Storable/t/sig_die.t M dist/Storable/t/store.t M dist/Storable/t/threads.t M dist/Storable/t/tied.t M dist/Storable/t/tied_hook.t M dist/Storable/t/tied_items.t M dist/Storable/t/tied_store.t M dist/Storable/t/utf8.t M dist/Storable/t/utf8hash.t M dist/Storable/t/weak.t Log Message: --- Storable: remove test skips when extension not enabled The tests for the dist are already skipped in core if building the extension is disabled. There is no need to do a check in the tests themselves. Commit: 51182b1bedf780a1042163fcd084848de109e6d3 https://github.com/Perl/perl5/commit/51182b1bedf780a1042163fcd084848de109e6d3 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/t/HAS_HOOK.pm M dist/Storable/t/HAS_OVERLOAD.pm Log Message: --- Storable: enable strict and warnings in test modules Commit: 924c2d8a54dc26b1eb73a2f5c219fb8a4feebb4e https://github.com/Perl/perl5/commit/924c2d8a54dc26b1eb73a2f5c219fb8a4feebb4e Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/t/make_56_interwork.pl M dist/Storable/t/make_downgrade.pl M dist/Storable/t/make_overload.pl Log Message: --- Storable: normalize test utility scripts Commit: 6777dc04aba0a6f4279bad1492a13cc307ca5291 https://github.com/Perl/perl5/commit/6777dc04aba0a6f4279bad1492a13cc307ca5291 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: R dist/Storable/t/HAS_HOOK.pm R dist/Storable/t/HAS_OVERLOAD.pm M dist/Storable/t/blessed.t M dist/Storable/t/dclone.t M dist/Storable/t/freeze.t M dist/Storable/t/interwork56.t A dist/Storable/t/lib/HAS_HOOK.pm A dist/Storable/t/lib/HAS_OVERLOAD.pm A dist/Storable/t/lib/st-dump.pl A dist/Storable/t/lib/testlib.pl M dist/Storable/t/lock.t M dist/Storable/t/malice.t M dist/Storable/t/overload.t M dist/Storable/t/retrieve.t R dist/Storable/t/st-dump.pl M dist/Storable/t/store.t R dist/Storable/t/testlib.pl M dist/Storable/t/tied.t M dist/Storable/t/tied_hook.t M dist/Storable/t/weak.t Log Message: --- Storable: move test libs to t/lib Commit: ceac4c56167b837df7231c2f63bf152325418e42 https://github.com/Perl/perl5/commit/ceac4c56167b837df7231c2f63bf152325418e42 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/Makefile.PL M dist/Storable/t/blessed.t M dist/Storable/t/dclone.t M dist/Storable/t/freeze.t A dist/Storable/t/lib/STDump.pm A dist/Storable/t/lib/STTestLib.pm R dist/Storable/t/lib/st-dump.pl R dist/Storable/t/lib/testlib.pl M dist/Storable/t/lock.t M dist/Storable/t/malice.t M dist/Storable/t/retrieve.t M dist/Storable/t/store.t M dist/Storable/t/tied.t M dist/Storable/t/tied_hook.t M dist/Storable/t/weak.t Log Message: --- Storable: convert test libraries into normal modules Commit: 642d0c7aa6312866675c61666f225e82cddfa50c https://github.com/Perl/perl5/commit/642d0c7aa6312866675c61666f225e82cddfa50c Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/.gitignore Log Message: --- Storable: gitignore release tarballs Commit: 1277f89190c168e99c662fa642227fb06725ba3c https://github.com/Perl/perl5/commit/1277f89190c168e99c662fa642227fb06725ba3c Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/lib/Storable.pm Log Message: --- Storable: enable strict Commit: 6c4c561922a9d254927bbf6e748d1b3514a74235 https://github.com/Perl/perl5/commit/6c4c561922a9d254927b
[Perl/perl5] a27863: Storable: remove MANIFEST and add MANIFEST.SKIP
Branch: refs/heads/haarg/storable-cleanup Home: https://github.com/Perl/perl5 Commit: a27863754e618479676f6aea6b7d58113731863b https://github.com/Perl/perl5/commit/a27863754e618479676f6aea6b7d58113731863b Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: R dist/Storable/MANIFEST A dist/Storable/MANIFEST.SKIP Log Message: --- Storable: remove MANIFEST and add MANIFEST.SKIP Commit: 9601240eccfc3acddbba115a2bb4964b903a9a98 https://github.com/Perl/perl5/commit/9601240eccfc3acddbba115a2bb4964b903a9a98 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/Makefile.PL Log Message: --- Storable: clean up Makefile.PL We don't need to have conditional handling for older versions of EUMM. They will warn for unhandled keys, but it won't cause an errors. We can also remove the warning relating to perl 5.6. Anyone still using perl 5.6 isn't going to be changing their build. Storable is maintained in core, so it doesn't have a consistent separate repository where its tags would go. The release process can be done manually. Commit: d84cea188ead2407f234667f6593878ca81b7c7f https://github.com/Perl/perl5/commit/d84cea188ead2407f234667f6593878ca81b7c7f Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/Makefile.PL R dist/Storable/Storable.pm A dist/Storable/lib/Storable.pm Log Message: --- Storable: move Storable.pm to lib dir Commit: fc6723418d149e5d96efd3499645966316314b4d https://github.com/Perl/perl5/commit/fc6723418d149e5d96efd3499645966316314b4d Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/Makefile.PL M dist/Storable/Storable.xs M dist/Storable/hints/hpux.pl M dist/Storable/hints/linux.pl M dist/Storable/lib/Storable.pm M dist/Storable/stacksize M dist/Storable/t/CVE-2015-1592.t M dist/Storable/t/HAS_ATTACH.pm M dist/Storable/t/HAS_HOOK.pm M dist/Storable/t/HAS_OVERLOAD.pm M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.t M dist/Storable/t/circular_hook.t M dist/Storable/t/code.t M dist/Storable/t/compat01.t M dist/Storable/t/compat06.t M dist/Storable/t/croak.t M dist/Storable/t/dclone.t M dist/Storable/t/destroy.t M dist/Storable/t/downgrade.t M dist/Storable/t/file_magic.t M dist/Storable/t/flags.t M dist/Storable/t/forgive.t M dist/Storable/t/freeze.t M dist/Storable/t/huge.t M dist/Storable/t/hugeids.t M dist/Storable/t/integer.t M dist/Storable/t/interwork56.t M dist/Storable/t/just_plain_nasty.t M dist/Storable/t/leaks.t M dist/Storable/t/lock.t M dist/Storable/t/make_56_interwork.pl M dist/Storable/t/make_downgrade.pl M dist/Storable/t/malice.t M dist/Storable/t/overload.t M dist/Storable/t/recurse.t M dist/Storable/t/regexp.t M dist/Storable/t/restrict.t M dist/Storable/t/retrieve.t M dist/Storable/t/st-dump.pl M dist/Storable/t/store.t M dist/Storable/t/testlib.pl M dist/Storable/t/threads.t M dist/Storable/t/tied.t M dist/Storable/t/tied_hook.t M dist/Storable/t/tied_items.t M dist/Storable/t/tied_reify.t M dist/Storable/t/tied_store.t M dist/Storable/t/utf8.t M dist/Storable/t/utf8hash.t M dist/Storable/t/weak.t Log Message: --- Storable: Normalize whitespace as 4 space indents The code had a mix of indents, heavily mixing tabs and spaces. Normalize all of the indents at 4 spaces. Commit: 5a7bd34dec8edfd3d4820be66845aefb2067223e https://github.com/Perl/perl5/commit/5a7bd34dec8edfd3d4820be66845aefb2067223e Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/t/huge.t Log Message: --- Storable: remove conditional define Commit: edebd65b540c913a490e0fc29503d6058bcd9702 https://github.com/Perl/perl5/commit/edebd65b540c913a490e0fc29503d6058bcd9702 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/t/downgrade.t Log Message: --- Storable: simplify check for Hash::Util Rather than using a custom error for when Hash::Util isn't available (which should never happen) just require it. Commit: e72f4fc863030cd97dd2393936f22bf263b5 https://github.com/Perl/perl5/commit/e72f4fc863030cd97dd2393936f22bf263b5 Author: Graham Knop Date: 2024-07-30 (Tue, 30 Jul 2024) Changed paths: M dist/Storable/t/attach.t M dist/Storable/t/attach_errors.t M dist/Storable/t/attach_singleton.t M dist/Storable/t/blessed.t M dist/Storable/t/boolean.t M dist/Storable/t/canonical.t M dist/Storabl
[Perl/perl5]
Branch: refs/heads/haarg/makerel-ustar Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] cb7053: makerel: always use ustar format
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: cb7053107d319696177f9ee39e872a959797ccad https://github.com/Perl/perl5/commit/cb7053107d319696177f9ee39e872a959797ccad Author: Graham Knop Date: 2024-07-23 (Tue, 23 Jul 2024) Changed paths: M Porting/makerel Log Message: --- makerel: always use ustar format When generating release tarballs, always use ustar format. The ustar format is one of the POSIX standard formats, and is the basis for future tar formats. It supports all of the features we need to create a release tarball. The newer formats support extended attributes that can produce warnings when extracting on some systems. This includes attributes like LIBARCHIVE.xattr.com.apple.quarantine, set on macOS systems on files downloaded from the internet. Using the ustar format prevents those attributes from being stored in the tarball and avoids the warnings. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] cb8eba: makerel: always use ustar format
Branch: refs/heads/haarg/makerel-ustar Home: https://github.com/Perl/perl5 Commit: cb8eba736ec672d68ca9b354781c3a05678292c7 https://github.com/Perl/perl5/commit/cb8eba736ec672d68ca9b354781c3a05678292c7 Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M Porting/makerel Log Message: --- makerel: always use ustar format When generating release tarballs, always use ustar format. The ustar format is one of the POSIX standard formats, and is the basis for future tar formats. It supports all of the features we need to create a release tarball. The newer formats support extended attributes that can produce warnings when extracting on some systems. This includes attributes like LIBARCHIVE.xattr.com.apple.quarantine, set on macOS systems on files downloaded from the internet. Using the ustar format prevents those attributes from being stored in the tarball and avoids the warnings. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] bf4858: corelist: add future released entry for 5.41.1
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: bf4858b25b93ae0e354b5f516a0ae3ed1fa6d329 https://github.com/Perl/perl5/commit/bf4858b25b93ae0e354b5f516a0ae3ed1fa6d329 Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M dist/Module-CoreList/lib/Module/CoreList.pm Log Message: --- corelist: add future released entry for 5.41.1 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 4d590e: fix release schedule for next dev cycle
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 4d590ea7f85ad225387c7f7a6e9fe111702505df https://github.com/Perl/perl5/commit/4d590ea7f85ad225387c7f7a6e9fe111702505df Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M Porting/release_schedule.pod Log Message: --- fix release schedule for next dev cycle Commit: 5fa30c51d9a0dc607cf998b2ddc3742b11094814 https://github.com/Perl/perl5/commit/5fa30c51d9a0dc607cf998b2ddc3742b11094814 Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M dist/Module-CoreList/Changes M dist/Module-CoreList/lib/Module/CoreList.pm M dist/Module-CoreList/lib/Module/CoreList/Utils.pm Log Message: --- prepare Module::CoreList for perl 5.41.0 Commit: 522ace3076fb57116e4e3a661f3d00f414890362 https://github.com/Perl/perl5/commit/522ace3076fb57116e4e3a661f3d00f414890362 Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M pod/perldelta.pod Log Message: --- perldelta for 5.41.0 Commit: e8cce44acbf725a386d6645647073769caab1f34 https://github.com/Perl/perl5/commit/e8cce44acbf725a386d6645647073769caab1f34 Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M pod/perlhist.pod Log Message: --- add perlhist entry for 5.41.0 Commit: 03eea286cde35d36c932e7357add90c740981387 https://github.com/Perl/perl5/commit/03eea286cde35d36c932e7357add90c740981387 Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M Porting/release_schedule.pod Log Message: --- update release_schedule for 5.41.0 Commit: 8581c83ed7fe534323e52b092f95634e13f9a019 https://github.com/Perl/perl5/commit/8581c83ed7fe534323e52b092f95634e13f9a019 Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M MANIFEST M Makefile.SH M pod/.gitignore M pod/perl.pod A pod/perl5410delta.pod M pod/perldelta.pod M vms/descrip_mms.template M win32/GNUmakefile M win32/Makefile M win32/pod.mak Log Message: --- New perldelta for 5.41.1 Commit: f71242f885b8e12e1da2839241e6c10922f7d9de https://github.com/Perl/perl5/commit/f71242f885b8e12e1da2839241e6c10922f7d9de Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M Cross/config.sh-arm-linux M Cross/config.sh-arm-linux-n770 M INSTALL M META.json M META.yml M Porting/config.sh M Porting/config_H M Porting/perldelta_template.pod M Porting/todo.pod M README.haiku M README.macosx M README.os2 M README.vms M hints/catamount.sh M lib/B/Op_private.pm M patchlevel.h M plan9/config_sh.sample M win32/GNUmakefile M win32/Makefile Log Message: --- Bump the perl version in various places for 5.41.1 Commit: 03b7e3a1b2f9019c0c0c94fd0dd93c3aa5ddfb74 https://github.com/Perl/perl5/commit/03b7e3a1b2f9019c0c0c94fd0dd93c3aa5ddfb74 Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M dist/Module-CoreList/Changes M dist/Module-CoreList/lib/Module/CoreList.pm M dist/Module-CoreList/lib/Module/CoreList/Utils.pm Log Message: --- prepare Module::CoreList for 5.41.1 Compare: https://github.com/Perl/perl5/compare/883613655c90...03b7e3a1b2f9 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/tags/v5.41.0 Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 883613: Module::CoreList: fix release date of perl 5.40.0
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 883613655c907b3f684f9f16ad58d60fb740d6f8 https://github.com/Perl/perl5/commit/883613655c907b3f684f9f16ad58d60fb740d6f8 Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M dist/Module-CoreList/lib/Module/CoreList.pm Log Message: --- Module::CoreList: fix release date of perl 5.40.0 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 246f73: add epigraph for perl 5.40.0
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 246f73bce25044ed2c84717c1926dbf0ae5df79b https://github.com/Perl/perl5/commit/246f73bce25044ed2c84717c1926dbf0ae5df79b Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M Porting/epigraphs.pod Log Message: --- add epigraph for perl 5.40.0 Commit: 8a3a69d041f27a8feace415fd1eb5d1e0f97f790 https://github.com/Perl/perl5/commit/8a3a69d041f27a8feace415fd1eb5d1e0f97f790 Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M Porting/release_schedule.pod Log Message: --- new release schedule for perl 5.41 series Commit: 964849caa8aac34a036a9f23e2002928c80f601c https://github.com/Perl/perl5/commit/964849caa8aac34a036a9f23e2002928c80f601c Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M MANIFEST M Makefile.SH M pod/.gitignore A pod/perl5400delta.pod M pod/perldelta.pod M vms/descrip_mms.template M win32/GNUmakefile M win32/Makefile M win32/pod.mak Log Message: --- new perldelta for perl 5.41.0 Commit: c3e4491d02488bc3f6ca97b32e3adef86d434fa9 https://github.com/Perl/perl5/commit/c3e4491d02488bc3f6ca97b32e3adef86d434fa9 Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M lib/feature.pm M regen/feature.pl Log Message: --- update feature for perl 5.41.0 Commit: 235c553f3582779605881da97199eba72338f081 https://github.com/Perl/perl5/commit/235c553f3582779605881da97199eba72338f081 Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M Cross/config.sh-arm-linux M Cross/config.sh-arm-linux-n770 M INSTALL M META.json M META.yml M Porting/config.sh M Porting/config_H M Porting/perldelta_template.pod M Porting/todo.pod M README.haiku M README.macosx M README.os2 M README.vms M README.win32 M hints/catamount.sh M lib/B/Op_private.pm M patchlevel.h M plan9/config_sh.sample M win32/GNUmakefile M win32/Makefile Log Message: --- bump version to 5.41.0 Commit: 68a6293c25c48297f79ba9d168fd47bcf5925f7f https://github.com/Perl/perl5/commit/68a6293c25c48297f79ba9d168fd47bcf5925f7f Author: Graham Knop Date: 2024-06-10 (Mon, 10 Jun 2024) Changed paths: M dist/Module-CoreList/lib/Module/CoreList.pm M dist/Module-CoreList/lib/Module/CoreList/Utils.pm Log Message: --- prepare Module::CoreList for perl 5.41.0 Compare: https://github.com/Perl/perl5/compare/fe618d7bf2bf...68a6293c25c4 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/heads/maint-5.40 Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/tags/v5.40.0 Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] dead01: update Module::CoreList version for 5.40.0
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: dead01ba00c8b812e115c1e48cb1e2cb222e0425 https://github.com/Perl/perl5/commit/dead01ba00c8b812e115c1e48cb1e2cb222e0425 Author: Graham Knop Date: 2024-06-09 (Sun, 09 Jun 2024) Changed paths: M dist/Module-CoreList/Changes M dist/Module-CoreList/lib/Module/CoreList.pm M dist/Module-CoreList/lib/Module/CoreList/Utils.pm M pod/perldelta.pod Log Message: --- update Module::CoreList version for 5.40.0 Commit: cafea90f3d466e565bd2724ede8cfc9baa81ec1a https://github.com/Perl/perl5/commit/cafea90f3d466e565bd2724ede8cfc9baa81ec1a Author: Graham Knop Date: 2024-06-09 (Sun, 09 Jun 2024) Changed paths: M pod/perlhist.pod Log Message: --- Add Perl 5.40.0 final release to perlhist Commit: d287a38162294fc55c2e7662d9a9898e7b7866b2 https://github.com/Perl/perl5/commit/d287a38162294fc55c2e7662d9a9898e7b7866b2 Author: Graham Knop Date: 2024-06-09 (Sun, 09 Jun 2024) Changed paths: M patchlevel.h Log Message: --- update patchlevel.h for perl 5.40.0 final release Commit: f22a16ecf4821b7e93d2569f630817a2631fddd9 https://github.com/Perl/perl5/commit/f22a16ecf4821b7e93d2569f630817a2631fddd9 Author: Graham Knop Date: 2024-06-09 (Sun, 09 Jun 2024) Changed paths: M META.json Log Message: --- update META.json for perl 5.40.0 stable release Compare: https://github.com/Perl/perl5/compare/c8545878e4dd...f22a16ecf482 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/tags/v5.40.0-RC2 Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] ed9ce1: update perldelta Acknowledgements
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: ed9ce1140fbf768815857811ebfe86eeb0c3a995 https://github.com/Perl/perl5/commit/ed9ce1140fbf768815857811ebfe86eeb0c3a995 Author: Graham Knop Date: 2024-06-04 (Tue, 04 Jun 2024) Changed paths: M pod/perldelta.pod Log Message: --- update perldelta Acknowledgements Commit: 8d22df394914cf78de50879cb5dfe8c1a2a43fa9 https://github.com/Perl/perl5/commit/8d22df394914cf78de50879cb5dfe8c1a2a43fa9 Author: Graham Knop Date: 2024-06-04 (Tue, 04 Jun 2024) Changed paths: M dist/Module-CoreList/Changes M dist/Module-CoreList/lib/Module/CoreList.pm M dist/Module-CoreList/lib/Module/CoreList/Utils.pm M pod/perldelta.pod Log Message: --- update Module::CoreList for perl 5.40.0-RC2 Commit: b59a5050121b5f4e43d951b34cfd0355650ac986 https://github.com/Perl/perl5/commit/b59a5050121b5f4e43d951b34cfd0355650ac986 Author: Graham Knop Date: 2024-06-04 (Tue, 04 Jun 2024) Changed paths: M patchlevel.h Log Message: --- update patchlevel.h for perl 5.40.0-RC2 Commit: c8545878e4ddb53fc492685422a67aa6b658f0ea https://github.com/Perl/perl5/commit/c8545878e4ddb53fc492685422a67aa6b658f0ea Author: Graham Knop Date: 2024-06-04 (Tue, 04 Jun 2024) Changed paths: M pod/perlhist.pod Log Message: --- update perlhist for perl 5.40.0-RC2 Compare: https://github.com/Perl/perl5/compare/4565b04afa04...c8545878e4dd To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] def119: note that inf and nan are experimental in perldelta
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: def119f8761f8b66dd42eaaaeec7da177bf30542 https://github.com/Perl/perl5/commit/def119f8761f8b66dd42eaaaeec7da177bf30542 Author: Graham Knop Date: 2024-05-31 (Fri, 31 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- note that inf and nan are experimental in perldelta Commit: 69df475276a007dc52f369c89b46817fa86fa584 https://github.com/Perl/perl5/commit/69df475276a007dc52f369c89b46817fa86fa584 Author: Graham Knop Date: 2024-05-31 (Fri, 31 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- normalize indentation in perldelta Commit: 20f8965e596ec5c9441a515962f975e721a260f8 https://github.com/Perl/perl5/commit/20f8965e596ec5c9441a515962f975e721a260f8 Author: Graham Knop Date: 2024-05-31 (Fri, 31 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- document try/catch and multi-var for as stable in perldelta Commit: ce952633c0060129aa4037f364f389c3f87be1b1 https://github.com/Perl/perl5/commit/ce952633c0060129aa4037f364f389c3f87be1b1 Author: Graham Knop Date: 2024-05-31 (Fri, 31 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- document builtin module as stable in perldelta Commit: ef85075ed579c8bcaf80ec36e6a593b8579e4b0c https://github.com/Perl/perl5/commit/ef85075ed579c8bcaf80ec36e6a593b8579e4b0c Author: Graham Knop Date: 2024-05-31 (Fri, 31 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- document use importing builtin version bundles in perldelta Compare: https://github.com/Perl/perl5/compare/48392ceedf8e...ef85075ed579 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] c729e4: Revert "Remove experimental warnings from extra pa...
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: c729e47cb91f797fa10d8df6772de79066a941ac https://github.com/Perl/perl5/commit/c729e47cb91f797fa10d8df6772de79066a941ac Author: Graham Knop Date: 2024-05-29 (Wed, 29 May 2024) Changed paths: M lib/feature.pm M lib/warnings.pm M pod/perldiag.pod M pod/perlexperiment.pod M regen/feature.pl M regen/warnings.pl M t/op/lex.t M toke.c M warnings.h Log Message: --- Revert "Remove experimental warnings from extra paired delimiters" This properly returns the extra paired delimiters feature to experimental status. This reverts commit a09a0269dd243971b28401d82f5214932d0d6c8f. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/tags/v5.40.0-RC1 Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 9028e1: final copyedits of perldelta
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 9028e12473e7fa76ca5a5787af6d1b2e6d110b78 https://github.com/Perl/perl5/commit/9028e12473e7fa76ca5a5787af6d1b2e6d110b78 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- final copyedits of perldelta To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 307a55: Bump the perl version in various places for 5.40.0...
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 307a559badef9b9ae54e43066f6e13ce785df43b https://github.com/Perl/perl5/commit/307a559badef9b9ae54e43066f6e13ce785df43b Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M Cross/config.sh-arm-linux M Cross/config.sh-arm-linux-n770 M INSTALL M META.json M META.yml M Porting/config.sh M Porting/config_H M Porting/perldelta_template.pod M README.haiku M README.macosx M README.os2 M README.vms M README.win32 M hints/catamount.sh M lib/B/Op_private.pm M patchlevel.h M plan9/config_sh.sample M win32/GNUmakefile M win32/Makefile Log Message: --- Bump the perl version in various places for 5.40.0-RC1 Commit: 17182bbf30c5c9df3b32c4d40598f437b77320cb https://github.com/Perl/perl5/commit/17182bbf30c5c9df3b32c4d40598f437b77320cb Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M MANIFEST M Makefile.SH M pod/.gitignore M pod/perl.pod R pod/perl5390delta.pod R pod/perl53910delta.pod R pod/perl5391delta.pod R pod/perl5392delta.pod R pod/perl5393delta.pod R pod/perl5394delta.pod R pod/perl5395delta.pod R pod/perl5396delta.pod R pod/perl5397delta.pod R pod/perl5398delta.pod R pod/perl5399delta.pod M pod/perldelta.pod M vms/descrip_mms.template M win32/GNUmakefile M win32/Makefile M win32/pod.mak Log Message: --- merge perldelta files Commit: 954c14d8339edd1c48c2e5c76ef601702cab169a https://github.com/Perl/perl5/commit/954c14d8339edd1c48c2e5c76ef601702cab169a Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perlpolicy.pod Log Message: --- update perlpolicy for 5.40.0 release The paragraph regarding the supported versions was out of date, and has been updated very inconsistently. The intent was originally to note the versions that are supported, and what will happen in the next stable release. Commit: fb2c035f814dd3e148756f7f1ed5966ff92a5944 https://github.com/Perl/perl5/commit/fb2c035f814dd3e148756f7f1ed5966ff92a5944 Author: Philippe Bruhat (BooK) Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- various typo fixes Commit: 570b85beb032ffb68f04be418b5c22e1fc578b63 https://github.com/Perl/perl5/commit/570b85beb032ffb68f04be418b5c22e1fc578b63 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M INSTALL Log Message: --- update INSTALL to list 5.38, not 5.39.10 Commit: 3dc6b1b20fa6531a58ca9016f77242ad91d7586f https://github.com/Perl/perl5/commit/3dc6b1b20fa6531a58ca9016f77242ad91d7586f Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldeprecation.pod Log Message: --- goto into block is a scheduled deprecation, to be removed in 5.42 Commit: 69f23a3b74fbcb059e3b8995dfcdc0a59caed3c0 https://github.com/Perl/perl5/commit/69f23a3b74fbcb059e3b8995dfcdc0a59caed3c0 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M op.c M pod/perldelta.pod M pod/perldeprecation.pod M t/lib/feature/implicit M t/lib/warnings/op M t/lib/warnings/pp_ctl Log Message: --- changing use VERSION should be fatal in 5.44, not 5.46 Commit: ceecad75bec7f94a5716abaa2a7f823de39be4bc https://github.com/Perl/perl5/commit/ceecad75bec7f94a5716abaa2a7f823de39be4bc Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldeprecation.pod Log Message: --- note that downgrading use VERSION past 5.11 has finished its deprecation period is now fatal Commit: 786de6dab22a9c6dff0df76972f53a6fa965ed25 https://github.com/Perl/perl5/commit/786de6dab22a9c6dff0df76972f53a6fa965ed25 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M dist/Module-CoreList/Changes M dist/Module-CoreList/lib/Module/CoreList.pm M dist/Module-CoreList/lib/Module/CoreList/Utils.pm Log Message: --- Update Module::CoreList for 5.40.0-RC1 Commit: e3ec0611caa1d1de27c642d222807e5f07df285c https://github.com/Perl/perl5/commit/e3ec0611caa1d1de27c642d222807e5f07df285c Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- fix delta note to refer to warning that actually existed in stable The fix to the "prevailing version not tracked in eval" was only noticed in the 5.39 dev cycle, but it already had an impact on the older warnings about downgrading past 5.11. Fix the delta note to refer to a warning that actually existed in stable, rather than a new warning. Commit: fa0d678196b06ef1f5b92238a395f6ab53e
[Perl/perl5] 307a55: Bump the perl version in various places for 5.40.0...
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: 307a559badef9b9ae54e43066f6e13ce785df43b https://github.com/Perl/perl5/commit/307a559badef9b9ae54e43066f6e13ce785df43b Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M Cross/config.sh-arm-linux M Cross/config.sh-arm-linux-n770 M INSTALL M META.json M META.yml M Porting/config.sh M Porting/config_H M Porting/perldelta_template.pod M README.haiku M README.macosx M README.os2 M README.vms M README.win32 M hints/catamount.sh M lib/B/Op_private.pm M patchlevel.h M plan9/config_sh.sample M win32/GNUmakefile M win32/Makefile Log Message: --- Bump the perl version in various places for 5.40.0-RC1 Commit: 17182bbf30c5c9df3b32c4d40598f437b77320cb https://github.com/Perl/perl5/commit/17182bbf30c5c9df3b32c4d40598f437b77320cb Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M MANIFEST M Makefile.SH M pod/.gitignore M pod/perl.pod R pod/perl5390delta.pod R pod/perl53910delta.pod R pod/perl5391delta.pod R pod/perl5392delta.pod R pod/perl5393delta.pod R pod/perl5394delta.pod R pod/perl5395delta.pod R pod/perl5396delta.pod R pod/perl5397delta.pod R pod/perl5398delta.pod R pod/perl5399delta.pod M pod/perldelta.pod M vms/descrip_mms.template M win32/GNUmakefile M win32/Makefile M win32/pod.mak Log Message: --- merge perldelta files Commit: 954c14d8339edd1c48c2e5c76ef601702cab169a https://github.com/Perl/perl5/commit/954c14d8339edd1c48c2e5c76ef601702cab169a Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perlpolicy.pod Log Message: --- update perlpolicy for 5.40.0 release The paragraph regarding the supported versions was out of date, and has been updated very inconsistently. The intent was originally to note the versions that are supported, and what will happen in the next stable release. Commit: fb2c035f814dd3e148756f7f1ed5966ff92a5944 https://github.com/Perl/perl5/commit/fb2c035f814dd3e148756f7f1ed5966ff92a5944 Author: Philippe Bruhat (BooK) Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- various typo fixes Commit: 570b85beb032ffb68f04be418b5c22e1fc578b63 https://github.com/Perl/perl5/commit/570b85beb032ffb68f04be418b5c22e1fc578b63 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M INSTALL Log Message: --- update INSTALL to list 5.38, not 5.39.10 Commit: 3dc6b1b20fa6531a58ca9016f77242ad91d7586f https://github.com/Perl/perl5/commit/3dc6b1b20fa6531a58ca9016f77242ad91d7586f Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldeprecation.pod Log Message: --- goto into block is a scheduled deprecation, to be removed in 5.42 Commit: 69f23a3b74fbcb059e3b8995dfcdc0a59caed3c0 https://github.com/Perl/perl5/commit/69f23a3b74fbcb059e3b8995dfcdc0a59caed3c0 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M op.c M pod/perldelta.pod M pod/perldeprecation.pod M t/lib/feature/implicit M t/lib/warnings/op M t/lib/warnings/pp_ctl Log Message: --- changing use VERSION should be fatal in 5.44, not 5.46 Commit: ceecad75bec7f94a5716abaa2a7f823de39be4bc https://github.com/Perl/perl5/commit/ceecad75bec7f94a5716abaa2a7f823de39be4bc Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldeprecation.pod Log Message: --- note that downgrading use VERSION past 5.11 has finished its deprecation period is now fatal Commit: 786de6dab22a9c6dff0df76972f53a6fa965ed25 https://github.com/Perl/perl5/commit/786de6dab22a9c6dff0df76972f53a6fa965ed25 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M dist/Module-CoreList/Changes M dist/Module-CoreList/lib/Module/CoreList.pm M dist/Module-CoreList/lib/Module/CoreList/Utils.pm Log Message: --- Update Module::CoreList for 5.40.0-RC1 Commit: e3ec0611caa1d1de27c642d222807e5f07df285c https://github.com/Perl/perl5/commit/e3ec0611caa1d1de27c642d222807e5f07df285c Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- fix delta note to refer to warning that actually existed in stable The fix to the "prevailing version not tracked in eval" was only noticed in the 5.39 dev cycle, but it already had an impact on the older warnings about downgrading past 5.11. Fix the delta note to refer to a warning that actually existed in stable, rather than a new warning. Commit: fa0d678196b06ef1f5b92238a395f6
[Perl/perl5] d4ecfb: merge perldelta files
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: d4ecfbd284ef4a95fea68b8c8e5a11fc61c48fc4 https://github.com/Perl/perl5/commit/d4ecfbd284ef4a95fea68b8c8e5a11fc61c48fc4 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M MANIFEST M Makefile.SH M pod/.gitignore M pod/perl.pod R pod/perl5390delta.pod R pod/perl53910delta.pod R pod/perl5391delta.pod R pod/perl5392delta.pod R pod/perl5393delta.pod R pod/perl5394delta.pod R pod/perl5395delta.pod R pod/perl5396delta.pod R pod/perl5397delta.pod R pod/perl5398delta.pod R pod/perl5399delta.pod M pod/perldelta.pod M vms/descrip_mms.template M win32/GNUmakefile M win32/Makefile M win32/pod.mak Log Message: --- merge perldelta files Commit: 7171861eaa761874e8367457053c2e43ad476ffe https://github.com/Perl/perl5/commit/7171861eaa761874e8367457053c2e43ad476ffe Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perlpolicy.pod Log Message: --- update perlpolicy for 5.40.0 release The paragraph regarding the supported versions was out of date, and has been updated very inconsistently. The intent was originally to note the versions that are supported, and what will happen in the next stable release. Commit: e4aec4a24d6a2e81efa67cf8b480784f7ff65316 https://github.com/Perl/perl5/commit/e4aec4a24d6a2e81efa67cf8b480784f7ff65316 Author: Philippe Bruhat (BooK) Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- various typo fixes Commit: 61cb188199ce2bda1ea3e2e50cf59d3ca0283be2 https://github.com/Perl/perl5/commit/61cb188199ce2bda1ea3e2e50cf59d3ca0283be2 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M INSTALL Log Message: --- update INSTALL to list 5.38, not 5.39.10 Commit: a70cdcaeae8f727bc798ad19646ca286f3904b99 https://github.com/Perl/perl5/commit/a70cdcaeae8f727bc798ad19646ca286f3904b99 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldeprecation.pod Log Message: --- goto into block is a scheduled deprecation, to be removed in 5.42 Commit: 3247a6276fc41b91983c912272813aba6769c946 https://github.com/Perl/perl5/commit/3247a6276fc41b91983c912272813aba6769c946 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M op.c M pod/perldelta.pod M pod/perldeprecation.pod M t/lib/feature/implicit M t/lib/warnings/op M t/lib/warnings/pp_ctl Log Message: --- changing use VERSION should be fatal in 5.44, not 5.46 Commit: 6b76121fa3841c29281b335623d0e6ffea2c5d2c https://github.com/Perl/perl5/commit/6b76121fa3841c29281b335623d0e6ffea2c5d2c Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldeprecation.pod Log Message: --- note that downgrading use VERSION past 5.11 has finished its deprecation period is now fatal Commit: 8c2ad440cadf8446256983dfbe5e2ce054a5bb0f https://github.com/Perl/perl5/commit/8c2ad440cadf8446256983dfbe5e2ce054a5bb0f Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M dist/Module-CoreList/Changes M dist/Module-CoreList/lib/Module/CoreList.pm M dist/Module-CoreList/lib/Module/CoreList/Utils.pm Log Message: --- Update Module::CoreList for 5.40.0-RC1 Commit: a8c884552d43a2c67cb39671a0e1c6a57dc7c828 https://github.com/Perl/perl5/commit/a8c884552d43a2c67cb39671a0e1c6a57dc7c828 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- fix delta note to refer to warning that actually existed in stable The fix to the "prevailing version not tracked in eval" was only noticed in the 5.39 dev cycle, but it already had an impact on the older warnings about downgrading past 5.11. Fix the delta note to refer to a warning that actually existed in stable, rather than a new warning. Commit: b3f0514ea0fbadc20509bed0148c40c3adfc9f4a https://github.com/Perl/perl5/commit/b3f0514ea0fbadc20509bed0148c40c3adfc9f4a Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- add acknowledgements to perldelta Compare: https://github.com/Perl/perl5/compare/062c9d4dc37e...b3f0514ea0fb To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 74a290: Bump the perl version in various places for 5.40.0...
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: 74a2900975c32e0d44ac183146e249ae6a03512b https://github.com/Perl/perl5/commit/74a2900975c32e0d44ac183146e249ae6a03512b Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M Cross/config.sh-arm-linux M Cross/config.sh-arm-linux-n770 M INSTALL M META.json M META.yml M Porting/config.sh M Porting/config_H M Porting/perldelta_template.pod M README.haiku M README.macosx M README.os2 M README.vms M README.win32 M hints/catamount.sh M lib/B/Op_private.pm M patchlevel.h M plan9/config_sh.sample M win32/GNUmakefile M win32/Makefile Log Message: --- Bump the perl version in various places for 5.40.0-RC1 Commit: 58cd31d47467212a56b2889faf84cdb44d1b37d4 https://github.com/Perl/perl5/commit/58cd31d47467212a56b2889faf84cdb44d1b37d4 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M MANIFEST M Makefile.SH M pod/perl.pod R pod/perl5390delta.pod R pod/perl53910delta.pod R pod/perl5391delta.pod R pod/perl5392delta.pod R pod/perl5393delta.pod R pod/perl5394delta.pod R pod/perl5395delta.pod R pod/perl5396delta.pod R pod/perl5397delta.pod R pod/perl5398delta.pod R pod/perl5399delta.pod M pod/perldelta.pod M vms/descrip_mms.template M win32/GNUmakefile M win32/Makefile M win32/pod.mak Log Message: --- merge perldelta files Commit: 1f5053fccf3feb6b97c7950d0a7284f1b6652418 https://github.com/Perl/perl5/commit/1f5053fccf3feb6b97c7950d0a7284f1b6652418 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perlpolicy.pod Log Message: --- update perlpolicy for 5.40.0 release The paragraph regarding the supported versions was out of date, and has been updated very inconsistently. The intent was originally to note the versions that are supported, and what will happen in the next stable release. Commit: bf7361ab77ad0f1cf45631e088054630e31496a6 https://github.com/Perl/perl5/commit/bf7361ab77ad0f1cf45631e088054630e31496a6 Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/.gitignore Log Message: --- delta name change Compare: https://github.com/Perl/perl5/compare/aad37d855393...bf7361ab77ad To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] f7527d: Bump the perl version in various places for 5.40.0...
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: f7527dc50ab0efd0251fa62f3b8c4045188768bb https://github.com/Perl/perl5/commit/f7527dc50ab0efd0251fa62f3b8c4045188768bb Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M Cross/config.sh-arm-linux M Cross/config.sh-arm-linux-n770 M INSTALL M META.json M META.yml M Porting/config.sh M Porting/config_H M Porting/perldelta_template.pod M README.haiku M README.macosx M README.os2 M README.vms M README.win32 M hints/catamount.sh M patchlevel.h M plan9/config_sh.sample M win32/GNUmakefile M win32/Makefile Log Message: --- Bump the perl version in various places for 5.40.0-RC1 Commit: aad37d8553938160dd72380ec67514a9fba0dcaa https://github.com/Perl/perl5/commit/aad37d8553938160dd72380ec67514a9fba0dcaa Author: Graham Knop Date: 2024-05-24 (Fri, 24 May 2024) Changed paths: M pod/perl53910delta.pod M pod/perl5391delta.pod M pod/perl5392delta.pod M pod/perl5393delta.pod M pod/perl5394delta.pod M pod/perl5395delta.pod M pod/perl5396delta.pod M pod/perl5397delta.pod M pod/perl5398delta.pod M pod/perl5399delta.pod M pod/perldelta.pod Log Message: --- merge perldelta files Compare: https://github.com/Perl/perl5/compare/be2c0ca03060...aad37d855393 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 01f4e8: Bump the perl version in various places for 5.40.0...
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: 01f4e8907053a25b622737d40b2544f65532f747 https://github.com/Perl/perl5/commit/01f4e8907053a25b622737d40b2544f65532f747 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M Cross/config.sh-arm-linux M Cross/config.sh-arm-linux-n770 M INSTALL M META.json M META.yml M Porting/config.sh M Porting/config_H M Porting/perldelta_template.pod M README.haiku M README.macosx M README.os2 M README.vms M README.win32 M hints/catamount.sh M patchlevel.h M plan9/config_sh.sample M win32/GNUmakefile M win32/Makefile Log Message: --- Bump the perl version in various places for 5.40.0-RC1 Commit: be2c0ca0306014e77133f64e975f03894dc8cd31 https://github.com/Perl/perl5/commit/be2c0ca0306014e77133f64e975f03894dc8cd31 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl53910delta.pod M pod/perl5391delta.pod M pod/perl5392delta.pod M pod/perl5393delta.pod M pod/perl5394delta.pod M pod/perl5395delta.pod M pod/perl5396delta.pod M pod/perl5397delta.pod M pod/perl5398delta.pod M pod/perl5399delta.pod M pod/perldelta.pod Log Message: --- merge perldelta files Compare: https://github.com/Perl/perl5/compare/7e0968037fc0...be2c0ca03060 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 3a2c94: merge perldelta files
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: 3a2c9467021e2baf726fcecf51d406de9f5158c8 https://github.com/Perl/perl5/commit/3a2c9467021e2baf726fcecf51d406de9f5158c8 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl53910delta.pod M pod/perl5391delta.pod M pod/perl5392delta.pod M pod/perl5393delta.pod M pod/perl5394delta.pod M pod/perl5395delta.pod M pod/perl5396delta.pod M pod/perl5397delta.pod M pod/perl5398delta.pod M pod/perl5399delta.pod M pod/perldelta.pod Log Message: --- merge perldelta files Commit: 7e0968037fc017a060019597ab185aa32c9860f1 https://github.com/Perl/perl5/commit/7e0968037fc017a060019597ab185aa32c9860f1 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M Cross/config.sh-arm-linux M Cross/config.sh-arm-linux-n770 M INSTALL M META.json M META.yml M Porting/config.sh M Porting/config_H M Porting/perldelta_template.pod M README.haiku M README.macosx M README.os2 M README.vms M README.win32 M hints/catamount.sh M patchlevel.h M plan9/config_sh.sample M win32/GNUmakefile M win32/Makefile Log Message: --- Bump the perl version in various places for 5.40.0-RC1 Compare: https://github.com/Perl/perl5/compare/af8fdf4c095b...7e0968037fc0 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] edc263: merge perldelta files
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: edc2631bd4743e708012f40d7ec487d26a1e1484 https://github.com/Perl/perl5/commit/edc2631bd4743e708012f40d7ec487d26a1e1484 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl53910delta.pod M pod/perl5391delta.pod M pod/perl5392delta.pod M pod/perl5393delta.pod M pod/perl5394delta.pod M pod/perl5395delta.pod M pod/perl5396delta.pod M pod/perl5397delta.pod M pod/perl5398delta.pod M pod/perl5399delta.pod M pod/perldelta.pod Log Message: --- merge perldelta files Commit: af8fdf4c095b4fdf1ebc1536ae4d505858bfc81b https://github.com/Perl/perl5/commit/af8fdf4c095b4fdf1ebc1536ae4d505858bfc81b Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M Cross/config.sh-arm-linux M Cross/config.sh-arm-linux-n770 M INSTALL M META.json M META.yml M Porting/config.sh M Porting/config_H M Porting/perldelta_template.pod M README.haiku M README.macosx M README.os2 M README.vms M README.win32 M hints/catamount.sh M patchlevel.h M plan9/config_sh.sample M win32/GNUmakefile M win32/Makefile Log Message: --- Bump the perl version in various places for 5.40.0-RC1 Compare: https://github.com/Perl/perl5/compare/134e318eab02...af8fdf4c095b To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 134e31: merge 5.39.1 and 5.39.2 into perldelta
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: 134e318eab021205544227ccf0abdf7ab31c0bff https://github.com/Perl/perl5/commit/134e318eab021205544227ccf0abdf7ab31c0bff Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl53910delta.pod M pod/perl5391delta.pod M pod/perl5392delta.pod M pod/perl5393delta.pod M pod/perl5394delta.pod M pod/perl5395delta.pod M pod/perl5396delta.pod M pod/perl5397delta.pod M pod/perl5398delta.pod M pod/perl5399delta.pod M pod/perldelta.pod Log Message: --- merge 5.39.1 and 5.39.2 into perldelta To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] e9ed88: note to internal change
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: e9ed884ade92a03a2ac93d2a317062b68d969cfd https://github.com/Perl/perl5/commit/e9ed884ade92a03a2ac93d2a317062b68d969cfd Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perldelta.pod Log Message: --- note to internal change To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] e9dd49: more delta 5396
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: e9dd4905f33114c3acf4ea0a65ceeae9eb4eaa5d https://github.com/Perl/perl5/commit/e9dd4905f33114c3acf4ea0a65ceeae9eb4eaa5d Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl5396delta.pod M pod/perldelta.pod Log Message: --- more delta 5396 Commit: 8893add4f108a937618c9241798f78242cbb01f7 https://github.com/Perl/perl5/commit/8893add4f108a937618c9241798f78242cbb01f7 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl5391delta.pod M pod/perl5392delta.pod M pod/perl5393delta.pod M pod/perl5394delta.pod M pod/perl5397delta.pod M pod/perldelta.pod Log Message: --- more delta 5397 Commit: c60d01034e1c1e47c6389649c91b24a95ef338ae https://github.com/Perl/perl5/commit/c60d01034e1c1e47c6389649c91b24a95ef338ae Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl5398delta.pod M pod/perldelta.pod Log Message: --- more delta 5398 Commit: 2a2afde8ad74d73e3a1ccf6eccafaf7124cfde32 https://github.com/Perl/perl5/commit/2a2afde8ad74d73e3a1ccf6eccafaf7124cfde32 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl5399delta.pod M pod/perldelta.pod Log Message: --- more delta 5399 Commit: 2024ed052fc81f4027e03ccdbf41b8857581e5f0 https://github.com/Perl/perl5/commit/2024ed052fc81f4027e03ccdbf41b8857581e5f0 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl53910delta.pod M pod/perldelta.pod Log Message: --- more delta 53910 Compare: https://github.com/Perl/perl5/compare/d41b699f0f05...2024ed052fc8 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 874385: merge 5.39.1 and 5.39.2 into perldelta
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: 874385435ac9108b079cb058fc2a6e40704501b1 https://github.com/Perl/perl5/commit/874385435ac9108b079cb058fc2a6e40704501b1 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl5391delta.pod M pod/perl5392delta.pod M pod/perldelta.pod Log Message: --- merge 5.39.1 and 5.39.2 into perldelta Commit: ef286b308fb966449a1107192ba5d4bdf1c08b08 https://github.com/Perl/perl5/commit/ef286b308fb966449a1107192ba5d4bdf1c08b08 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl5393delta.pod M pod/perldelta.pod Log Message: --- more delta Commit: 510157a595d193498ccc7f5e16a03b3186929873 https://github.com/Perl/perl5/commit/510157a595d193498ccc7f5e16a03b3186929873 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl5394delta.pod M pod/perldelta.pod Log Message: --- more delta: 5394 Commit: d41b699f0f059290c01e912ccf7d0760897aaab2 https://github.com/Perl/perl5/commit/d41b699f0f059290c01e912ccf7d0760897aaab2 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl5395delta.pod M pod/perldelta.pod Log Message: --- more delta 5395 Compare: https://github.com/Perl/perl5/compare/370d129ed8b2...d41b699f0f05 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 370d12: more delta: 5394
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: 370d129ed8b20f3436499556a0ec0814e346d6f5 https://github.com/Perl/perl5/commit/370d129ed8b20f3436499556a0ec0814e346d6f5 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl5394delta.pod M pod/perldelta.pod Log Message: --- more delta: 5394 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 54c518: more delta
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: 54c51828d9212886def7a1c738f68dfbcd9b8a86 https://github.com/Perl/perl5/commit/54c51828d9212886def7a1c738f68dfbcd9b8a86 Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perl5393delta.pod M pod/perldelta.pod Log Message: --- more delta To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] c88b09: update documentation of use VERSION to match curre...
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: c88b099b6f0c8c4001c17845743e3b819e831bff https://github.com/Perl/perl5/commit/c88b099b6f0c8c4001c17845743e3b819e831bff Author: Graham Knop Date: 2024-05-23 (Thu, 23 May 2024) Changed paths: M pod/perlfunc.pod Log Message: --- update documentation of use VERSION to match current behavior Perl now deprecates using use VERSION multiple times in the same scope with different versions. From v5.39, it is fatal. Update the documentation to reflect that. 'use VERSION' would also never disable strict, with or without a previously set 'use strict'. This was previously implied by the Also the previously deprecated case of downgrading the requested version It is now fatal to request a version lower than 5.11 after requesting a version greater than 5.11. This means that a use VERSION will never disable strict. So while internally, an explicit use strict is still tracked as distinct from strict from a use VERSION, this will have no impact. Remove the mention of use strict overriding a later use VERSION. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 516ef8: merge 5.39.1 and 5.39.2 into perldelta
Branch: refs/heads/haarg/5.40 Home: https://github.com/Perl/perl5 Commit: 516ef8eb5cef88b27e3a3f8e9a050412b4f79442 https://github.com/Perl/perl5/commit/516ef8eb5cef88b27e3a3f8e9a050412b4f79442 Author: Graham Knop Date: 2024-05-22 (Wed, 22 May 2024) Changed paths: M pod/perl5391delta.pod M pod/perl5392delta.pod M pod/perldelta.pod Log Message: --- merge 5.39.1 and 5.39.2 into perldelta To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] f1e176: update documentation of use VERSION to match curre...
Branch: refs/heads/haarg/update-use-version-docs Home: https://github.com/Perl/perl5 Commit: f1e176460658a7eadca28bc6c2b10ce3494a2edb https://github.com/Perl/perl5/commit/f1e176460658a7eadca28bc6c2b10ce3494a2edb Author: Graham Knop Date: 2024-05-22 (Wed, 22 May 2024) Changed paths: M pod/perlfunc.pod Log Message: --- update documentation of use VERSION to match current behavior Perl now deprecates using use VERSION multiple times in the same scope with different versions. From v5.39, it is fatal. Update the documentation to reflect that. 'use VERSION' would also never disable strict, with or without a previously set 'use strict'. This was previously implied by the Also the previously deprecated case of downgrading the requested version It is now fatal to request a version lower than 5.11 after requesting a version greater than 5.11. This means that a use VERSION will never disable strict. So while internally, an explicit use strict is still tracked as distinct from strict from a use VERSION, this will have no impact. Remove the mention of use strict overriding a later use VERSION. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 9fd142: remove underscore from VERSION in podlators
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 9fd1426176ae8c9df32d0c1968462f2c162524aa https://github.com/Perl/perl5/commit/9fd1426176ae8c9df32d0c1968462f2c162524aa Author: Graham Knop Date: 2024-05-04 (Sat, 04 May 2024) Changed paths: M cpan/podlators/lib/Pod/Man.pm M cpan/podlators/lib/Pod/ParseLink.pm M cpan/podlators/lib/Pod/Text.pm M cpan/podlators/lib/Pod/Text/Color.pm M cpan/podlators/lib/Pod/Text/Overstrike.pm M cpan/podlators/lib/Pod/Text/Termcap.pm M t/porting/customized.dat Log Message: --- remove underscore from VERSION in podlators When using versions with underscores, best practice is to remove the underscore on a later line, to allow using the version as a number when accessing the variable directly. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/heads/haarg/remove-underscore-podlators Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 229ee7: remove underscore from VERSION in podlators
Branch: refs/heads/haarg/remove-underscore-podlators Home: https://github.com/Perl/perl5 Commit: 229ee7896874c3d8c7038b46b7ea6e271b09bdaa https://github.com/Perl/perl5/commit/229ee7896874c3d8c7038b46b7ea6e271b09bdaa Author: Graham Knop Date: 2024-05-04 (Sat, 04 May 2024) Changed paths: M cpan/podlators/lib/Pod/Man.pm M cpan/podlators/lib/Pod/ParseLink.pm M cpan/podlators/lib/Pod/Text.pm M cpan/podlators/lib/Pod/Text/Color.pm M cpan/podlators/lib/Pod/Text/Overstrike.pm M cpan/podlators/lib/Pod/Text/Termcap.pm M t/porting/customized.dat Log Message: --- remove underscore from VERSION in podlators When using versions with underscores, best practice is to remove the underscore on a later line, to allow using the version as a number when accessing the variable directly. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] b2547d: remove underscore from VERSION in podlators
Branch: refs/heads/haarg/remove-underscore-podlators Home: https://github.com/Perl/perl5 Commit: b2547d9490538908bd385bce3d637796a7a9b157 https://github.com/Perl/perl5/commit/b2547d9490538908bd385bce3d637796a7a9b157 Author: Graham Knop Date: 2024-04-28 (Sun, 28 Apr 2024) Changed paths: M cpan/podlators/lib/Pod/Man.pm M cpan/podlators/lib/Pod/ParseLink.pm M cpan/podlators/lib/Pod/Text.pm M cpan/podlators/lib/Pod/Text/Color.pm M cpan/podlators/lib/Pod/Text/Overstrike.pm M cpan/podlators/lib/Pod/Text/Termcap.pm Log Message: --- remove underscore from VERSION in podlators When using versions with underscores, best practice is to remove the underscore on a later line, to allow using the version as a number when accessing the variable directly. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/heads/haarg/perlfunc-split-fix-limit-empty-match Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] be3876: perlfunc: fix split example with limit higher than...
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: be3876fd2d2bf44510fd439c8a0b195d52b831bd https://github.com/Perl/perl5/commit/be3876fd2d2bf44510fd439c8a0b195d52b831bd Author: Graham Knop Date: 2024-04-17 (Wed, 17 Apr 2024) Changed paths: M pod/perlfunc.pod Log Message: --- perlfunc: fix split example with limit higher than number of splits When calling split with a LIMIT higher than the number of possible output fields, no extra fields will be produced. The previous example trying to demonstrate this had an error because it used an empty match, which meant a final empty string could be produced. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] b87841: perlfunc: fix split example with limit higher than...
Branch: refs/heads/haarg/perlfunc-split-fix-limit-empty-match Home: https://github.com/Perl/perl5 Commit: b8784131837c0c2ee567673e011dabf214a96bff https://github.com/Perl/perl5/commit/b8784131837c0c2ee567673e011dabf214a96bff Author: Graham Knop Date: 2024-04-16 (Tue, 16 Apr 2024) Changed paths: M pod/perlfunc.pod Log Message: --- perlfunc: fix split example with limit higher than number of splits When calling split with a LIMIT higher than the number of possible output fields, no extra fields will be produced. The previous example trying to demonstrate this had an error because it used an empty match, which meant a final empty string could be produced. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/heads/haarg/fix-deparse-state-sub Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 4a5534: fix deparse of state sub with empty prototype
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 4a55343c55f905436e15ff5f201f15bd2bf39ca7 https://github.com/Perl/perl5/commit/4a55343c55f905436e15ff5f201f15bd2bf39ca7 Author: Graham Knop Date: 2024-04-10 (Wed, 10 Apr 2024) Changed paths: M lib/B/Deparse.pm M lib/B/Deparse.t Log Message: --- fix deparse of state sub with empty prototype Fixes #21315 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] ed3601: fix deparse of state sub with empty prototype
Branch: refs/heads/haarg/fix-deparse-state-sub Home: https://github.com/Perl/perl5 Commit: ed36011d72604a1b486a52f2a644c4d36051fc12 https://github.com/Perl/perl5/commit/ed36011d72604a1b486a52f2a644c4d36051fc12 Author: Graham Knop Date: 2024-04-04 (Thu, 04 Apr 2024) Changed paths: M lib/B/Deparse.pm M lib/B/Deparse.t Log Message: --- fix deparse of state sub with empty prototype Fixes #21315 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/heads/haarg/cpan-diff-version-fix Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 1c90da: fix core-cpan-diff and sync-with-cpan to handle di...
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 1c90da2f774d7d8c9a984e56746a7b6635c5b518 https://github.com/Perl/perl5/commit/1c90da2f774d7d8c9a984e56746a7b6635c5b518 Author: Graham Knop Date: 2024-03-26 (Tue, 26 Mar 2024) Changed paths: M Porting/core-cpan-diff M Porting/exec-bit.txt M Porting/sync-with-cpan Log Message: --- fix core-cpan-diff and sync-with-cpan to handle dist files with v prefixed versions Allow a v prefix on versions expected by the core-cpan-diff and sync-with-cpan scripts. Also align the two scripts with each other, and handle the same file extensions expected by PAUSE. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 33280a: fix core-cpan-diff and sync-with-cpan to handle di...
Branch: refs/heads/haarg/cpan-diff-version-fix Home: https://github.com/Perl/perl5 Commit: 33280ad034b87de256dbd3c05d37dd81bd8dabe4 https://github.com/Perl/perl5/commit/33280ad034b87de256dbd3c05d37dd81bd8dabe4 Author: Graham Knop Date: 2024-03-26 (Tue, 26 Mar 2024) Changed paths: M Porting/core-cpan-diff M Porting/exec-bit.txt M Porting/sync-with-cpan Log Message: --- fix core-cpan-diff and sync-with-cpan to handle dist files with v prefixed versions Allow a v prefix on versions expected by the core-cpan-diff and sync-with-cpan scripts. Also align the two scripts with each other, and handle the same file extensions expected by PAUSE. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] f6754a: fix core-cpan-diff and sync-with-cpan to handle di...
Branch: refs/heads/haarg/cpan-diff-version-fix Home: https://github.com/Perl/perl5 Commit: f6754a63b5983681b949dbdf0a153d316f6f8046 https://github.com/Perl/perl5/commit/f6754a63b5983681b949dbdf0a153d316f6f8046 Author: Graham Knop Date: 2024-03-26 (Tue, 26 Mar 2024) Changed paths: M Porting/core-cpan-diff M Porting/sync-with-cpan Log Message: --- fix core-cpan-diff and sync-with-cpan to handle dist files with v prefixed versions Allow a v prefix on versions expected by the core-cpan-diff and sync-with-cpan scripts. Also align the two scripts with each other, and handle the same file extensions expected by PAUSE. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 0921e3: fix deparse of state sub with empty prototype
Branch: refs/heads/haarg/fix-deparse-state-sub Home: https://github.com/Perl/perl5 Commit: 0921e34f260c6d1e4a897f914224530089345034 https://github.com/Perl/perl5/commit/0921e34f260c6d1e4a897f914224530089345034 Author: Graham Knop Date: 2024-03-24 (Sun, 24 Mar 2024) Changed paths: M lib/B/Deparse.pm M lib/B/Deparse.t Log Message: --- fix deparse of state sub with empty prototype Fixes #21315 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 97c04f: fix deparse of state sub with empty prototype
Branch: refs/heads/haarg/fix-deparse-state-sub Home: https://github.com/Perl/perl5 Commit: 97c04fec53ac42c17953db4e12c8a23a499dbde2 https://github.com/Perl/perl5/commit/97c04fec53ac42c17953db4e12c8a23a499dbde2 Author: Graham Knop Date: 2024-03-24 (Sun, 24 Mar 2024) Changed paths: M lib/B/Deparse.pm M lib/B/Deparse.t Log Message: --- fix deparse of state sub with empty prototype Fixes #21315 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] bce688: fix deparse of state sub with empty prototype
Branch: refs/heads/haarg/fix-deparse-state-sub Home: https://github.com/Perl/perl5 Commit: bce6881eab90206cbcf279109a4a7a79fe707ab7 https://github.com/Perl/perl5/commit/bce6881eab90206cbcf279109a4a7a79fe707ab7 Author: Graham Knop Date: 2024-03-22 (Fri, 22 Mar 2024) Changed paths: M lib/B/Deparse.pm M lib/B/Deparse.t Log Message: --- fix deparse of state sub with empty prototype Fixes #21315 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 4017ac: fix deparse of state sub with empty prototype
Branch: refs/heads/haarg/fix-deparse-state-sub Home: https://github.com/Perl/perl5 Commit: 4017ac2b743cee48a3ac2564cf7e9d4e8796a7d5 https://github.com/Perl/perl5/commit/4017ac2b743cee48a3ac2564cf7e9d4e8796a7d5 Author: Graham Knop Date: 2024-03-21 (Thu, 21 Mar 2024) Changed paths: M lib/B/Deparse.pm M lib/B/Deparse.t Log Message: --- fix deparse of state sub with empty prototype Fixes #21315 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/heads/haarg/allow-use-version-overlap-for-noop-versions Home: https://github.com/Perl/perl5 To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 8f7708: allow multiple use v5.x declarations in some cases...
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 8f770826b6c32799ae766feb28830018349c2d70 https://github.com/Perl/perl5/commit/8f770826b6c32799ae766feb28830018349c2d70 Author: Graham Knop Date: 2024-02-27 (Tue, 27 Feb 2024) Changed paths: M op.c M t/lib/feature/implicit M t/lib/warnings/op M t/lib/warnings/pp_ctl Log Message: --- allow multiple use v5.x declarations in some cases where it's harmless We want to disallow using multiple "use v5.x" declarations in the same scope, but there are some cases we know to be harmless. For versions before 5.10, the use declaration was only a version check with no side effects. If there was a previous version declarations that was below 5.10, we can safely ignore it without a warning or error. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 5f7baf: allow multiple use v5.x declarations in some cases...
Branch: refs/heads/haarg/allow-use-version-overlap-for-noop-versions Home: https://github.com/Perl/perl5 Commit: 5f7bafd3ffe878aef941a1532b787202ec1a5ad0 https://github.com/Perl/perl5/commit/5f7bafd3ffe878aef941a1532b787202ec1a5ad0 Author: Graham Knop Date: 2024-02-22 (Thu, 22 Feb 2024) Changed paths: M op.c M t/lib/feature/implicit M t/lib/warnings/op M t/lib/warnings/pp_ctl Log Message: --- allow multiple use v5.x declarations in some cases where it's harmless We want to disallow using multiple "use v5.x" declarations in the same scope, but there are some cases we know to be harmless. For versions before 5.10, the use declaration was only a version check with no side effects. If there was a previous version declarations that was below 5.10, we can safely ignore it without a warning or error. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 8a7a01: allow multiple use v5.x declarations in some cases...
Branch: refs/heads/haarg/allow-use-version-overlap-for-noop-versions Home: https://github.com/Perl/perl5 Commit: 8a7a0154ad08fa9efa0700dded22926805d338d5 https://github.com/Perl/perl5/commit/8a7a0154ad08fa9efa0700dded22926805d338d5 Author: Graham Knop Date: 2024-02-22 (Thu, 22 Feb 2024) Changed paths: M op.c M t/lib/warnings/op M t/lib/warnings/pp_ctl Log Message: --- allow multiple use v5.x declarations in some cases where it's harmless We want to disallow using multiple "use v5.x" declarations in the same scope, but there are some cases we know to be harmless. For versions before 5.10, the use declaration was only a version check with no side effects. If there was a previous version declarations that was below 5.10, we can safely ignore it without a warning or error. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5] 2f8aef: allow multiple use v5.x declarations in some cases...
Branch: refs/heads/haarg/allow-use-version-overlap-for-noop-versions Home: https://github.com/Perl/perl5 Commit: 2f8aefb1205b58a0851ee05b5d47faab081ba928 https://github.com/Perl/perl5/commit/2f8aefb1205b58a0851ee05b5d47faab081ba928 Author: Graham Knop Date: 2024-02-21 (Wed, 21 Feb 2024) Changed paths: M op.c M t/lib/warnings/op M t/lib/warnings/pp_ctl Log Message: --- allow multiple use v5.x declarations in some cases where it's harmless We want to disallow using multiple "use v5.x" declarations in the same scope, but there are some cases we know to be harmless. For versions before 5.11, the use declaration was only a version check with no side effects. If two version declarations are used and both are below 5.11, we can safely ignore it without a warning or error. To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications
[Perl/perl5]
Branch: refs/heads/haarg/storable-changelog Home: https://github.com/Perl/perl5
[Perl/perl5] ea7611: Storable: reformat and fix up change log
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: ea7611b58ba1e09cf59415d24fe10105fe55ea8c https://github.com/Perl/perl5/commit/ea7611b58ba1e09cf59415d24fe10105fe55ea8c Author: Graham Knop Date: 2024-01-22 (Mon, 22 Jan 2024) Changed paths: M dist/Storable/ChangeLog Log Message: --- Storable: reformat and fix up change log Update the change log for Storable to match a format more commonly used, and is parsable by tools like CPAN::Changes and MetaCPAN. The version numbers are reformatted to match the actual module version number. For very earlier releases, some missing entries were restored, and some others were written from scratch.
[Perl/perl5] 8042a0: Storable: reformat and fix up change log
Branch: refs/heads/haarg/storable-changelog Home: https://github.com/Perl/perl5 Commit: 8042a0dc517d6383e20bc6e0b2b1e3631ff9fb61 https://github.com/Perl/perl5/commit/8042a0dc517d6383e20bc6e0b2b1e3631ff9fb61 Author: Graham Knop Date: 2024-01-22 (Mon, 22 Jan 2024) Changed paths: M dist/Storable/ChangeLog Log Message: --- Storable: reformat and fix up change log Update the change log for Storable to match a format more commonly used, and is parsable by tools like CPAN::Changes and MetaCPAN. The version numbers are reformatted to match the actual module version number. For very earlier releases, some missing entries were restored, and some others were written from scratch.
[Perl/perl5] 67452e: new perldelta
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 67452e5596eb9284df37d88bff410d3e0c7443da https://github.com/Perl/perl5/commit/67452e5596eb9284df37d88bff410d3e0c7443da Author: Graham Knop Date: 2024-01-21 (Sun, 21 Jan 2024) Changed paths: M MANIFEST M Makefile.SH M pod/.gitignore M pod/perl.pod A pod/perl5397delta.pod M pod/perldelta.pod M vms/descrip_mms.template M win32/GNUmakefile M win32/Makefile M win32/pod.mak Log Message: --- new perldelta
[Perl/perl5] 4b4007: Storable: reformat and fix up change log
Branch: refs/heads/haarg/storable-changelog Home: https://github.com/Perl/perl5 Commit: 4b4007782cc7b1d6a3b3c5d34a5e57b1d9cd3c06 https://github.com/Perl/perl5/commit/4b4007782cc7b1d6a3b3c5d34a5e57b1d9cd3c06 Author: Graham Knop Date: 2024-01-21 (Sun, 21 Jan 2024) Changed paths: M dist/Storable/ChangeLog Log Message: --- Storable: reformat and fix up change log Update the change log for Storable to match a format more commonly used, and is parsable by tools like CPAN::Changes and MetaCPAN. The version numbers are reformatted to match the actual module version number. For very earlier releases, some missing entries were restored, and some others were written from scratch.
[Perl/perl5] 40bc60: release announcement: perl is the language, perl 5...
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 40bc602d2e31c4b1714bcc7e13c6fc5eb79de213 https://github.com/Perl/perl5/commit/40bc602d2e31c4b1714bcc7e13c6fc5eb79de213 Author: Graham Knop Date: 2023-11-07 (Tue, 07 Nov 2023) Changed paths: M Porting/release_announcement_template.txt Log Message: --- release announcement: perl is the language, perl 5 is the version Update the release announcement template to refer to the language as Perl, and use the full version rather than omitting the 5. Also update the metacpan link to match its new URLs.
[Perl/perl5] 0e0547: release announcement: perl is the language, perl 5...
Branch: refs/heads/haarg/release-announce-version-includes-5 Home: https://github.com/Perl/perl5 Commit: 0e054752dd8f581913c4d410ef1403fb50e17b37 https://github.com/Perl/perl5/commit/0e054752dd8f581913c4d410ef1403fb50e17b37 Author: Graham Knop Date: 2023-10-26 (Thu, 26 Oct 2023) Changed paths: M Porting/release_announcement_template.txt Log Message: --- release announcement: perl is the language, perl 5 is the version Update the release announcement template to refer to the language as Perl, and use the full version rather than omitting the 5. Also update the metacpan link to match its new URLs.
[Perl/perl5] fd71f2: add epigraph note for 5.39.4
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: fd71f24aaa942e2a65c30ac0b96ab529f6a248f9 https://github.com/Perl/perl5/commit/fd71f24aaa942e2a65c30ac0b96ab529f6a248f9 Author: Graham Knop Date: 2023-10-25 (Wed, 25 Oct 2023) Changed paths: M Porting/epigraphs.pod Log Message: --- add epigraph note for 5.39.4 Commit: 724275e186164145d4b8ecdcfc516de4e8dede01 https://github.com/Perl/perl5/commit/724275e186164145d4b8ecdcfc516de4e8dede01 Author: Graham Knop Date: 2023-10-25 (Wed, 25 Oct 2023) Changed paths: M Porting/release_schedule.pod Log Message: --- update release schedule Commit: b16abda014ee2062c1a2bd342eb29dea23044537 https://github.com/Perl/perl5/commit/b16abda014ee2062c1a2bd342eb29dea23044537 Author: Graham Knop Date: 2023-10-25 (Wed, 25 Oct 2023) Changed paths: M MANIFEST M Makefile.SH M pod/.gitignore M pod/perl.pod A pod/perl5394delta.pod M pod/perldelta.pod M vms/descrip_mms.template M win32/GNUmakefile M win32/Makefile M win32/pod.mak Log Message: --- new perldelta for 5.39.5 Commit: 2c7b99c783c9692c7608e2a2e5994acb61dc1b16 https://github.com/Perl/perl5/commit/2c7b99c783c9692c7608e2a2e5994acb61dc1b16 Author: Graham Knop Date: 2023-10-25 (Wed, 25 Oct 2023) Changed paths: M Cross/config.sh-arm-linux M Cross/config.sh-arm-linux-n770 M INSTALL M META.json M META.yml M Porting/config.sh M Porting/config_H M Porting/perldelta_template.pod M README.haiku M README.macosx M README.os2 M README.vms M hints/catamount.sh M lib/B/Op_private.pm M patchlevel.h M plan9/config_sh.sample M win32/GNUmakefile M win32/Makefile Log Message: --- bump perl version to 5.39.5 Commit: 952309013672f722efcbaaf785f6126ec04067db https://github.com/Perl/perl5/commit/952309013672f722efcbaaf785f6126ec04067db Author: Graham Knop Date: 2023-10-25 (Wed, 25 Oct 2023) Changed paths: M dist/Module-CoreList/Changes M dist/Module-CoreList/lib/Module/CoreList.pm M dist/Module-CoreList/lib/Module/CoreList/Utils.pm Log Message: --- Prepare Module::Corelist for 5.39.5 Compare: https://github.com/Perl/perl5/compare/56211f03a701...952309013672
[Perl/perl5]
Branch: refs/tags/v5.39.4 Home: https://github.com/Perl/perl5
[Perl/perl5] d394c9: update perldelta for release
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: d394c985cd6b93d920219735886d7cf537f1a6b0 https://github.com/Perl/perl5/commit/d394c985cd6b93d920219735886d7cf537f1a6b0 Author: Graham Knop Date: 2023-10-25 (Wed, 25 Oct 2023) Changed paths: M pod/perldelta.pod Log Message: --- update perldelta for release Commit: 48dbbb20cefe1033000467ee21df79399e156978 https://github.com/Perl/perl5/commit/48dbbb20cefe1033000467ee21df79399e156978 Author: Graham Knop Date: 2023-10-25 (Wed, 25 Oct 2023) Changed paths: M dist/Module-CoreList/Changes M dist/Module-CoreList/lib/Module/CoreList.pm M dist/Module-CoreList/lib/Module/CoreList/Utils.pm M pod/perldelta.pod Log Message: --- Update Module::CoreList version for 5.39.4 Commit: 7dd03fc66c4e73fd90915bd42b26c5ed417380d0 https://github.com/Perl/perl5/commit/7dd03fc66c4e73fd90915bd42b26c5ed417380d0 Author: Graham Knop Date: 2023-10-25 (Wed, 25 Oct 2023) Changed paths: M dist/Module-CoreList/lib/Module/CoreList.pm Log Message: --- update Module::CoreList for 5.39.4 Commit: 935a76758f70b922038e8dfa289a45b645827bc7 https://github.com/Perl/perl5/commit/935a76758f70b922038e8dfa289a45b645827bc7 Author: Graham Knop Date: 2023-10-25 (Wed, 25 Oct 2023) Changed paths: M Porting/corelist-perldelta.pl Log Message: --- add builtin as unclaimed module for corelist-perldelta Commit: 4e6857591fb376136d69a5183b388de3a8141e5d https://github.com/Perl/perl5/commit/4e6857591fb376136d69a5183b388de3a8141e5d Author: Graham Knop Date: 2023-10-25 (Wed, 25 Oct 2023) Changed paths: M pod/perldelta.pod Log Message: --- update perldelta Commit: 56211f03a701e3979a0d01069f8515db1c1fc2f0 https://github.com/Perl/perl5/commit/56211f03a701e3979a0d01069f8515db1c1fc2f0 Author: Graham Knop Date: 2023-10-25 (Wed, 25 Oct 2023) Changed paths: M pod/perlhist.pod Log Message: --- Add new release to perlhist Compare: https://github.com/Perl/perl5/compare/22edd37a128b...56211f03a701
[Perl/perl5]
Branch: refs/heads/haarg/no-hard-code-github-workspace Home: https://github.com/Perl/perl5
[Perl/perl5]
Branch: refs/heads/gknop/update_Test-Harness_v_3.48 Home: https://github.com/Perl/perl5
[Perl/perl5] 0a46f5: cpan/Test-Harness - Update to version 3.48
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 0a46f5ae9430ac584c04712ffa4fc702ff33d4d3 https://github.com/Perl/perl5/commit/0a46f5ae9430ac584c04712ffa4fc702ff33d4d3 Author: Graham Knop Date: 2023-10-21 (Sat, 21 Oct 2023) Changed paths: M Porting/Maintainers.pl M cpan/Test-Harness/lib/App/Prove.pm M cpan/Test-Harness/lib/App/Prove/State.pm M cpan/Test-Harness/lib/App/Prove/State/Result.pm M cpan/Test-Harness/lib/App/Prove/State/Result/Test.pm M cpan/Test-Harness/lib/TAP/Base.pm M cpan/Test-Harness/lib/TAP/Formatter/Base.pm M cpan/Test-Harness/lib/TAP/Formatter/Color.pm M cpan/Test-Harness/lib/TAP/Formatter/Console.pm M cpan/Test-Harness/lib/TAP/Formatter/Console/ParallelSession.pm M cpan/Test-Harness/lib/TAP/Formatter/Console/Session.pm M cpan/Test-Harness/lib/TAP/Formatter/File.pm M cpan/Test-Harness/lib/TAP/Formatter/File/Session.pm M cpan/Test-Harness/lib/TAP/Formatter/Session.pm M cpan/Test-Harness/lib/TAP/Harness.pm M cpan/Test-Harness/lib/TAP/Harness/Env.pm M cpan/Test-Harness/lib/TAP/Object.pm M cpan/Test-Harness/lib/TAP/Parser.pm M cpan/Test-Harness/lib/TAP/Parser/Aggregator.pm M cpan/Test-Harness/lib/TAP/Parser/Grammar.pm M cpan/Test-Harness/lib/TAP/Parser/Iterator.pm M cpan/Test-Harness/lib/TAP/Parser/Iterator/Array.pm M cpan/Test-Harness/lib/TAP/Parser/Iterator/Process.pm M cpan/Test-Harness/lib/TAP/Parser/Iterator/Stream.pm M cpan/Test-Harness/lib/TAP/Parser/IteratorFactory.pm M cpan/Test-Harness/lib/TAP/Parser/Multiplexer.pm M cpan/Test-Harness/lib/TAP/Parser/Result.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Bailout.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Comment.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Plan.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Pragma.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Test.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Unknown.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Version.pm M cpan/Test-Harness/lib/TAP/Parser/Result/YAML.pm M cpan/Test-Harness/lib/TAP/Parser/ResultFactory.pm M cpan/Test-Harness/lib/TAP/Parser/Scheduler.pm M cpan/Test-Harness/lib/TAP/Parser/Scheduler/Job.pm M cpan/Test-Harness/lib/TAP/Parser/Scheduler/Spinner.pm M cpan/Test-Harness/lib/TAP/Parser/Source.pm M cpan/Test-Harness/lib/TAP/Parser/SourceHandler.pm M cpan/Test-Harness/lib/TAP/Parser/SourceHandler/Executable.pm M cpan/Test-Harness/lib/TAP/Parser/SourceHandler/File.pm M cpan/Test-Harness/lib/TAP/Parser/SourceHandler/Handle.pm M cpan/Test-Harness/lib/TAP/Parser/SourceHandler/Perl.pm M cpan/Test-Harness/lib/TAP/Parser/SourceHandler/RawTAP.pm M cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm M cpan/Test-Harness/lib/TAP/Parser/YAMLish/Writer.pm M cpan/Test-Harness/lib/Test/Harness.pm M cpan/Test-Harness/t/parse.t Log Message: --- cpan/Test-Harness - Update to version 3.48 3.48 2023-10-02 - Accept TAP version 14
[Perl/perl5] 4f3792: cpan/Test-Harness - Update to version 3.48
Branch: refs/heads/gknop/update_Test-Harness_v_3.48 Home: https://github.com/Perl/perl5 Commit: 4f3792a8971f22ca17973689a2a3f783a5df146e https://github.com/Perl/perl5/commit/4f3792a8971f22ca17973689a2a3f783a5df146e Author: Graham Knop Date: 2023-10-21 (Sat, 21 Oct 2023) Changed paths: M Porting/Maintainers.pl M cpan/Test-Harness/lib/App/Prove.pm M cpan/Test-Harness/lib/App/Prove/State.pm M cpan/Test-Harness/lib/App/Prove/State/Result.pm M cpan/Test-Harness/lib/App/Prove/State/Result/Test.pm M cpan/Test-Harness/lib/TAP/Base.pm M cpan/Test-Harness/lib/TAP/Formatter/Base.pm M cpan/Test-Harness/lib/TAP/Formatter/Color.pm M cpan/Test-Harness/lib/TAP/Formatter/Console.pm M cpan/Test-Harness/lib/TAP/Formatter/Console/ParallelSession.pm M cpan/Test-Harness/lib/TAP/Formatter/Console/Session.pm M cpan/Test-Harness/lib/TAP/Formatter/File.pm M cpan/Test-Harness/lib/TAP/Formatter/File/Session.pm M cpan/Test-Harness/lib/TAP/Formatter/Session.pm M cpan/Test-Harness/lib/TAP/Harness.pm M cpan/Test-Harness/lib/TAP/Harness/Env.pm M cpan/Test-Harness/lib/TAP/Object.pm M cpan/Test-Harness/lib/TAP/Parser.pm M cpan/Test-Harness/lib/TAP/Parser/Aggregator.pm M cpan/Test-Harness/lib/TAP/Parser/Grammar.pm M cpan/Test-Harness/lib/TAP/Parser/Iterator.pm M cpan/Test-Harness/lib/TAP/Parser/Iterator/Array.pm M cpan/Test-Harness/lib/TAP/Parser/Iterator/Process.pm M cpan/Test-Harness/lib/TAP/Parser/Iterator/Stream.pm M cpan/Test-Harness/lib/TAP/Parser/IteratorFactory.pm M cpan/Test-Harness/lib/TAP/Parser/Multiplexer.pm M cpan/Test-Harness/lib/TAP/Parser/Result.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Bailout.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Comment.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Plan.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Pragma.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Test.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Unknown.pm M cpan/Test-Harness/lib/TAP/Parser/Result/Version.pm M cpan/Test-Harness/lib/TAP/Parser/Result/YAML.pm M cpan/Test-Harness/lib/TAP/Parser/ResultFactory.pm M cpan/Test-Harness/lib/TAP/Parser/Scheduler.pm M cpan/Test-Harness/lib/TAP/Parser/Scheduler/Job.pm M cpan/Test-Harness/lib/TAP/Parser/Scheduler/Spinner.pm M cpan/Test-Harness/lib/TAP/Parser/Source.pm M cpan/Test-Harness/lib/TAP/Parser/SourceHandler.pm M cpan/Test-Harness/lib/TAP/Parser/SourceHandler/Executable.pm M cpan/Test-Harness/lib/TAP/Parser/SourceHandler/File.pm M cpan/Test-Harness/lib/TAP/Parser/SourceHandler/Handle.pm M cpan/Test-Harness/lib/TAP/Parser/SourceHandler/Perl.pm M cpan/Test-Harness/lib/TAP/Parser/SourceHandler/RawTAP.pm M cpan/Test-Harness/lib/TAP/Parser/YAMLish/Reader.pm M cpan/Test-Harness/lib/TAP/Parser/YAMLish/Writer.pm M cpan/Test-Harness/lib/Test/Harness.pm M cpan/Test-Harness/t/parse.t Log Message: --- cpan/Test-Harness - Update to version 3.48 3.48 2023-10-02 - Accept TAP version 14
[Perl/perl5] 988cba: cpan/Archive-Tar - Update to version 3.02
Branch: refs/heads/gknop/update_Archive-Tar_v_3.02 Home: https://github.com/Perl/perl5 Commit: 988cba018d220bdb64ad7f55c0cb4a237cf6937c https://github.com/Perl/perl5/commit/988cba018d220bdb64ad7f55c0cb4a237cf6937c Author: Graham Knop Date: 2023-10-21 (Sat, 21 Oct 2023) Changed paths: M MANIFEST M Porting/Maintainers.pl M cpan/Archive-Tar/lib/Archive/Tar.pm M cpan/Archive-Tar/lib/Archive/Tar/Constant.pm M cpan/Archive-Tar/lib/Archive/Tar/File.pm M cpan/Archive-Tar/t/02_methods.t M cpan/Archive-Tar/t/04_resolved_issues.t M cpan/Archive-Tar/t/09_roundtrip.t M cpan/Archive-Tar/t/90_symlink.t A cpan/Archive-Tar/t/src/long/prefix-directory-concat.tar Log Message: --- cpan/Archive-Tar - Update to version 3.02 3.02 13/04/2023 (Manfred Stock) - Test block sizes up to (2**31 - 1) bytes only (fix for 32bit perls) - Don't match on message from exception in symlink test - Improve formatting of $Archive::Tar::RESOLVE_SYMLINK documentation
[Perl/perl5] ef0ce4: GitHub Actions: set safe directory using github va...
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: ef0ce4e02af63c60b4a8a1dd52e0da80e4eb6bd2 https://github.com/Perl/perl5/commit/ef0ce4e02af63c60b4a8a1dd52e0da80e4eb6bd2 Author: Graham Knop Date: 2023-10-05 (Thu, 05 Oct 2023) Changed paths: M .github/workflows/testsuite.yml Log Message: --- GitHub Actions: set safe directory using github variable rather than hard coding
[Perl/perl5] 34ae5b: Test2-Suite: remove problematic test
Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 34ae5b5cb645ef3f877b2152414d3059b5a95075 https://github.com/Perl/perl5/commit/34ae5b5cb645ef3f877b2152414d3059b5a95075 Author: Graham Knop Date: 2023-10-05 (Thu, 05 Oct 2023) Changed paths: M MANIFEST M Porting/Maintainers.pl R cpan/Test2-Suite/t/acceptance/Workflow-Acceptance.t Log Message: --- Test2-Suite: remove problematic test Test2-Suite's t/acceptance/Workflow-Acceptance.t test is causing intermittent failures. Exodist has said: > the test is not one that is necessary to run all the time, it should probably > be an author test. So for now, remove the test.
[Perl/perl5] 75ec66: Test2-Suite: remove problematic test
Branch: refs/heads/haarg/test2-suite-remove-broken-test Home: https://github.com/Perl/perl5 Commit: 75ec66d95a87cb177d2136a9b32251acb98b22f6 https://github.com/Perl/perl5/commit/75ec66d95a87cb177d2136a9b32251acb98b22f6 Author: Graham Knop Date: 2023-10-05 (Thu, 05 Oct 2023) Changed paths: M MANIFEST M Porting/Maintainers.pl R cpan/Test2-Suite/t/acceptance/Workflow-Acceptance.t Log Message: --- Test2-Suite: remove problematic test Test2-Suite's t/acceptance/Workflow-Acceptance.t test is causing intermittent failures. Exodist has said: > the test is not one that is necessary to run all the time, it should probably > be an author test. So for now, remove the test.
[Perl/perl5] 5ab1fb: Test2-Suite: remove problematic test
Branch: refs/heads/haarg/test2-suite-remove-broken-test Home: https://github.com/Perl/perl5 Commit: 5ab1fb822d5ab0f93e2cb12d69981198e214dd22 https://github.com/Perl/perl5/commit/5ab1fb822d5ab0f93e2cb12d69981198e214dd22 Author: Graham Knop Date: 2023-10-05 (Thu, 05 Oct 2023) Changed paths: M Porting/Maintainers.pl R cpan/Test2-Suite/t/acceptance/Workflow-Acceptance.t Log Message: --- Test2-Suite: remove problematic test Test2-Suite's t/acceptance/Workflow-Acceptance.t test is causing intermittent failures. Exodist has said: > the test is not one that is necessary to run all the time, it should probably > be an author test. So for now, remove the test.
[Perl/perl5] e96448: GitHub Actions: set safe directory using github va...
Branch: refs/heads/haarg/no-hard-code-github-workspace Home: https://github.com/Perl/perl5 Commit: e96448750c62054c43faac1d8baacbf5e7ca3013 https://github.com/Perl/perl5/commit/e96448750c62054c43faac1d8baacbf5e7ca3013 Author: Graham Knop Date: 2023-10-05 (Thu, 05 Oct 2023) Changed paths: M .github/workflows/testsuite.yml Log Message: --- GitHub Actions: set safe directory using github variable rather than hard coding