From dd4ca162a56b360297f5bee81d903fc69c119a75 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Wed, 21 Aug 2024 16:40:45 +0200 Subject: [PATCH 01/34] LDNS to 1.8.4 --- ldns | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ldns b/ldns index 173fbf3..46f2f00 160000 --- a/ldns +++ b/ldns @@ -1 +1 @@ -Subproject commit 173fbf303518d060e0d2bdc0bbd1830c0ec8f21d +Subproject commit 46f2f0035330414b1c6f19c3b8c43994a1fb766c From ce8ff7153e1177b86f353e5c2d7f3b270f970760 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Wed, 21 Aug 2024 16:42:27 +0200 Subject: [PATCH 02/34] Update MANIFEST --- MANIFEST | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MANIFEST b/MANIFEST index f6651a5..7181a44 100644 --- a/MANIFEST +++ b/MANIFEST @@ -15,6 +15,7 @@ ldns/.github/FUNDING.yml ldns/.github/workflows/testsuite.yml ldns/buffer.c ldns/Changelog +ldns/compat/asctime_r.c ldns/compat/b64_ntop.c ldns/compat/b64_pton.c ldns/compat/strlcpy.c @@ -81,7 +82,6 @@ ldns/parse.c ldns/radix.c ldns/rbtree.c ldns/rdata.c -ldns/README-Travis.md ldns/resolver.c ldns/rr.c ldns/rr_functions.c From 79a0888142429428b66567f5aa31c9ff2c0619cd Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 9 Oct 2025 11:59:47 +0200 Subject: [PATCH 03/34] Update 't/rr.t' SOA response from 'iis.se' have changed. --- t/rr.t | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/t/rr.t b/t/rr.t index 876ad81..4f77868 100644 --- a/t/rr.t +++ b/t/rr.t @@ -38,13 +38,13 @@ subtest 'SOA' => sub { foreach my $rr ( $p->answer ) { isa_ok( $rr, 'Zonemaster::LDNS::RR::SOA' ); - is( lc($rr->mname), 'ns.nic.se.' ); + is( lc($rr->mname), 'nsa.dnsnode.net.' ); is( lc($rr->rname), 'hostmaster.nic.se.' ); ok( $rr->serial >= 1381471502, 'serial' ); - is( $rr->refresh, 14400, 'refresh' ); + is( $rr->refresh, 10800, 'refresh' ); is( $rr->retry, 3600, 'retry' ); is( $rr->expire, 2592000, 'expire' ); - is( $rr->minimum, 600, 'minimum' ); + is( $rr->minimum, 480, 'minimum' ); } } }; From 121ec4ba1e5fff01d50fa846cf0fc9f22f697abe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Mollier?= Date: Tue, 21 Oct 2025 21:19:13 +0200 Subject: [PATCH 04/34] RRList.pm: drop misplaced =back. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Currently, pod reports the following issue at the end of the manual page Zonemaster::LDNS::RRList(3pm): POD ERRORS Hey! The above document had some coding errors, which are explained below: Around line 40: '=item' outside of any '=over' This appears to be caused by one surnumerary =back in the middle of the listing. Signed-off-by: Étienne Mollier --- lib/Zonemaster/LDNS/RRList.pm | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/Zonemaster/LDNS/RRList.pm b/lib/Zonemaster/LDNS/RRList.pm index 93fb226..9d99d78 100644 --- a/lib/Zonemaster/LDNS/RRList.pm +++ b/lib/Zonemaster/LDNS/RRList.pm @@ -35,8 +35,6 @@ Zonemaster::LDNS::RRList - class representing lists of resource records. Creates a new empty L object. -=back - =item new($rrs) Creates a new L object for the given resource records. From 86bd6cbbd3e1d4f7596ea022154c9d499e1d6bd5 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Fri, 5 Dec 2025 18:17:53 +0100 Subject: [PATCH 05/34] Preparation for release v2025.2 --- Changes | 7 +++++++ lib/Zonemaster/LDNS.pm | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index f0e0662..afa3a56 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,13 @@ Release history for Zonemaster component Zonemaster-LDNS +5.0.1 2025-12-09 (part of Zonemaster v2025.2 release) + + [Fixes] +- Updates LDNS submodule to v1.8.4 #202 +- RRList.pm: drop misplaced =back. #233 + + 5.0.0 2025-06-26 (part of Zonemaster v2025.1 release) [Breaking changes] diff --git a/lib/Zonemaster/LDNS.pm b/lib/Zonemaster/LDNS.pm index 6253e4c..53bc45c 100644 --- a/lib/Zonemaster/LDNS.pm +++ b/lib/Zonemaster/LDNS.pm @@ -2,7 +2,7 @@ package Zonemaster::LDNS; use 5.014; -our $VERSION = '5.0.0'; +our $VERSION = '5.0.1'; use parent 'Exporter'; our @EXPORT_OK = qw[lib_version to_idn has_idn has_gost load_zonefile]; From cd348c9565c5180b4afe12a48b8fc478feb98e77 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Fri, 5 Dec 2025 20:13:21 +0100 Subject: [PATCH 06/34] Updates unit test to match change in public zone --- t/rr.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/rr.t b/t/rr.t index 4f77868..bf18d56 100644 --- a/t/rr.t +++ b/t/rr.t @@ -41,7 +41,7 @@ subtest 'SOA' => sub { is( lc($rr->mname), 'nsa.dnsnode.net.' ); is( lc($rr->rname), 'hostmaster.nic.se.' ); ok( $rr->serial >= 1381471502, 'serial' ); - is( $rr->refresh, 10800, 'refresh' ); + is( $rr->refresh, 14400, 'refresh' ); is( $rr->retry, 3600, 'retry' ); is( $rr->expire, 2592000, 'expire' ); is( $rr->minimum, 480, 'minimum' ); From c1480785589323cf93d749439210d8294d411d06 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Tue, 16 Dec 2025 13:30:37 +0100 Subject: [PATCH 07/34] Editorial change --- Changes | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index afa3a56..514642d 100644 --- a/Changes +++ b/Changes @@ -1,11 +1,11 @@ Release history for Zonemaster component Zonemaster-LDNS -5.0.1 2025-12-09 (part of Zonemaster v2025.2 release) +5.0.1 2025-12-17 (part of Zonemaster v2025.2 release) [Fixes] - Updates LDNS submodule to v1.8.4 #202 -- RRList.pm: drop misplaced =back. #233 +- RRList.pm: drop misplaced =back #233 5.0.0 2025-06-26 (part of Zonemaster v2025.1 release) From 0df28159642c21a2c9f45d6f9778473e2dee369f Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 15:57:54 +0100 Subject: [PATCH 08/34] artifact --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ac967ad..6bb023e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,7 @@ on: - develop - master - 'release/**' + - '**' pull_request: branches: @@ -52,3 +53,22 @@ jobs: - name: test run: prove -bl + build-artifact: + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + + - name: perl version + run: perl -v + + - name: apt install + run: sudo apt install -y libidn2-dev + + - name: cpan module + run: cpanm Devel::CheckLib ExtUtils::PkgConfig Module::Install Module::Install::XSUtil Test::Exception Test::Fatal + + - name: upload artifact + uses: actions/upload-artifact@v4 + with: + name: Zonemaster-LDNS + path: Zonemaster-LDNS-5.0.0.tar.gz From 5b89eef8a9709ae8d3e2e5179c0e1d0a60562f7d Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 15:59:15 +0100 Subject: [PATCH 09/34] artifact --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6bb023e..f0dee92 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,6 +58,11 @@ jobs: steps: - uses: actions/checkout@v4 + - uses: shogo82148/actions-setup-perl@v1 + with: + perl-version: 5.40 + + - name: perl version run: perl -v From ce0ae98d2a55757be74b4e5e707aeb6db241e551 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 16:01:37 +0100 Subject: [PATCH 10/34] artifact --- .github/workflows/ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0dee92..170a8a2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,16 +58,11 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: shogo82148/actions-setup-perl@v1 - with: - perl-version: 5.40 - - - name: perl version run: perl -v - name: apt install - run: sudo apt install -y libidn2-dev + run: sudo apt install -y libidn2-dev cpanminus - name: cpan module run: cpanm Devel::CheckLib ExtUtils::PkgConfig Module::Install Module::Install::XSUtil Test::Exception Test::Fatal From f28448ba8d9a7536b6f405fb11a57ebe26c857fa Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 16:05:50 +0100 Subject: [PATCH 11/34] make --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 170a8a2..01f95b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,6 +67,9 @@ jobs: - name: cpan module run: cpanm Devel::CheckLib ExtUtils::PkgConfig Module::Install Module::Install::XSUtil Test::Exception Test::Fatal + - name: build + run: perl Makefile.PL && make all dist + - name: upload artifact uses: actions/upload-artifact@v4 with: From 9bd9ce45da4ff82d1e0aed7c942f070e779cfbc5 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 16:06:45 +0100 Subject: [PATCH 12/34] make --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 01f95b2..2bb3dfb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,7 +68,7 @@ jobs: run: cpanm Devel::CheckLib ExtUtils::PkgConfig Module::Install Module::Install::XSUtil Test::Exception Test::Fatal - name: build - run: perl Makefile.PL && make all dist + run: perl Makefile.PL && make all dist - name: upload artifact uses: actions/upload-artifact@v4 From ec5a59ecb517d5b291488c4711c7171dcd3b209d Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 16:11:33 +0100 Subject: [PATCH 13/34] update --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2bb3dfb..1dcc66b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -62,11 +62,9 @@ jobs: run: perl -v - name: apt install - run: sudo apt install -y libidn2-dev cpanminus - + run: sudo apt-get install -y git cpanminus gettext autoconf automake build-essential libdevel-checklib-perl libextutils-pkgconfig-perl libmime-base32-perl libmodule-install-xsutil-perl libssl-dev libtest-exception-perl libidn2-dev libtool libidn2-dev cpanminus - name: cpan module - run: cpanm Devel::CheckLib ExtUtils::PkgConfig Module::Install Module::Install::XSUtil Test::Exception Test::Fatal - + run: sudo cpanm Devel::CheckLib ExtUtils::PkgConfig Module::Install Module::Install::XSUtil Test::Exception Test::Fatal - name: build run: perl Makefile.PL && make all dist From cdbc03c698f0ce1b9fce576f17a6782817d9fe23 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 16:21:09 +0100 Subject: [PATCH 14/34] try with * --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1dcc66b..d644fb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,5 +71,4 @@ jobs: - name: upload artifact uses: actions/upload-artifact@v4 with: - name: Zonemaster-LDNS - path: Zonemaster-LDNS-5.0.0.tar.gz + path: Zonemaster-LDNS-*.tar.gz From 71a4a2e16e71eed6a16c012e8ddc0e1e39128f82 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 16:29:21 +0100 Subject: [PATCH 15/34] update --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d644fb9..7f36f33 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,4 +71,4 @@ jobs: - name: upload artifact uses: actions/upload-artifact@v4 with: - path: Zonemaster-LDNS-*.tar.gz + path: Zonemaster-LDNS-5.0.0.tar.gz From 42a226bdc684c9b72db42da73902f1b22ad54d83 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 16:31:40 +0100 Subject: [PATCH 16/34] add dependency to tests --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7f36f33..8babb83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,6 +54,7 @@ jobs: run: prove -bl build-artifact: + needs: run-tests runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 From e032ba27eed19a385ae73a7103b5894a100705eb Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 16:39:41 +0100 Subject: [PATCH 17/34] add another file --- .github/workflows/build_artifact.yml | 38 ++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 .github/workflows/build_artifact.yml diff --git a/.github/workflows/build_artifact.yml b/.github/workflows/build_artifact.yml new file mode 100644 index 0000000..581fe26 --- /dev/null +++ b/.github/workflows/build_artifact.yml @@ -0,0 +1,38 @@ +name: CI + +on: + push: + branches: + - develop + - master + - 'release/**' + - '**' + + pull_request: + branches: + - develop + - master + - 'release/**' + + +jobs: + build-artifact: + needs: run-tests + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + + - name: perl version + run: perl -v + + - name: apt install + run: sudo apt-get install -y git cpanminus gettext autoconf automake build-essential libdevel-checklib-perl libextutils-pkgconfig-perl libmime-base32-perl libmodule-install-xsutil-perl libssl-dev libtest-exception-perl libidn2-dev libtool libidn2-dev cpanminus + - name: cpan module + run: sudo cpanm Devel::CheckLib ExtUtils::PkgConfig Module::Install Module::Install::XSUtil Test::Exception Test::Fatal + - name: build + run: perl Makefile.PL && make all dist + + - name: upload artifact + uses: actions/upload-artifact@v4 + with: + path: Zonemaster-LDNS-5.0.0.tar.gz From 0ce541a534c4d6509e77a7657c0d42de335fc1c8 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 16:48:53 +0100 Subject: [PATCH 18/34] update --- .../{build_artifact.yml => build.yml} | 2 +- .github/workflows/ci.yml | 20 ------------------- 2 files changed, 1 insertion(+), 21 deletions(-) rename .github/workflows/{build_artifact.yml => build.yml} (98%) diff --git a/.github/workflows/build_artifact.yml b/.github/workflows/build.yml similarity index 98% rename from .github/workflows/build_artifact.yml rename to .github/workflows/build.yml index 581fe26..181d9d1 100644 --- a/.github/workflows/build_artifact.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: CI +name: Build on: push: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8babb83..f460795 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,23 +53,3 @@ jobs: - name: test run: prove -bl - build-artifact: - needs: run-tests - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v4 - - - name: perl version - run: perl -v - - - name: apt install - run: sudo apt-get install -y git cpanminus gettext autoconf automake build-essential libdevel-checklib-perl libextutils-pkgconfig-perl libmime-base32-perl libmodule-install-xsutil-perl libssl-dev libtest-exception-perl libidn2-dev libtool libidn2-dev cpanminus - - name: cpan module - run: sudo cpanm Devel::CheckLib ExtUtils::PkgConfig Module::Install Module::Install::XSUtil Test::Exception Test::Fatal - - name: build - run: perl Makefile.PL && make all dist - - - name: upload artifact - uses: actions/upload-artifact@v4 - with: - path: Zonemaster-LDNS-5.0.0.tar.gz From 8c698e1472221484f4fd31b6bdca6138a03d5285 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 16:57:30 +0100 Subject: [PATCH 19/34] Revert "update" This reverts commit 0bc00c8a1916fa74d340e7f9d9f59c4cd2ccc74e. --- .../{build.yml => build_artifact.yml} | 2 +- .github/workflows/ci.yml | 20 +++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) rename .github/workflows/{build.yml => build_artifact.yml} (98%) diff --git a/.github/workflows/build.yml b/.github/workflows/build_artifact.yml similarity index 98% rename from .github/workflows/build.yml rename to .github/workflows/build_artifact.yml index 181d9d1..581fe26 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build_artifact.yml @@ -1,4 +1,4 @@ -name: Build +name: CI on: push: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f460795..8babb83 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,3 +53,23 @@ jobs: - name: test run: prove -bl + build-artifact: + needs: run-tests + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + + - name: perl version + run: perl -v + + - name: apt install + run: sudo apt-get install -y git cpanminus gettext autoconf automake build-essential libdevel-checklib-perl libextutils-pkgconfig-perl libmime-base32-perl libmodule-install-xsutil-perl libssl-dev libtest-exception-perl libidn2-dev libtool libidn2-dev cpanminus + - name: cpan module + run: sudo cpanm Devel::CheckLib ExtUtils::PkgConfig Module::Install Module::Install::XSUtil Test::Exception Test::Fatal + - name: build + run: perl Makefile.PL && make all dist + + - name: upload artifact + uses: actions/upload-artifact@v4 + with: + path: Zonemaster-LDNS-5.0.0.tar.gz From f4b5a560868b17df3d25adecd8048015d1accf63 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 17:09:21 +0100 Subject: [PATCH 20/34] release --- .github/workflows/build_artifact.yml | 38 ---------------------------- .github/workflows/ci.yml | 5 ++++ 2 files changed, 5 insertions(+), 38 deletions(-) delete mode 100644 .github/workflows/build_artifact.yml diff --git a/.github/workflows/build_artifact.yml b/.github/workflows/build_artifact.yml deleted file mode 100644 index 581fe26..0000000 --- a/.github/workflows/build_artifact.yml +++ /dev/null @@ -1,38 +0,0 @@ -name: CI - -on: - push: - branches: - - develop - - master - - 'release/**' - - '**' - - pull_request: - branches: - - develop - - master - - 'release/**' - - -jobs: - build-artifact: - needs: run-tests - runs-on: ubuntu-22.04 - steps: - - uses: actions/checkout@v4 - - - name: perl version - run: perl -v - - - name: apt install - run: sudo apt-get install -y git cpanminus gettext autoconf automake build-essential libdevel-checklib-perl libextutils-pkgconfig-perl libmime-base32-perl libmodule-install-xsutil-perl libssl-dev libtest-exception-perl libidn2-dev libtool libidn2-dev cpanminus - - name: cpan module - run: sudo cpanm Devel::CheckLib ExtUtils::PkgConfig Module::Install Module::Install::XSUtil Test::Exception Test::Fatal - - name: build - run: perl Makefile.PL && make all dist - - - name: upload artifact - uses: actions/upload-artifact@v4 - with: - path: Zonemaster-LDNS-5.0.0.tar.gz diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8babb83..ad63688 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,3 +73,8 @@ jobs: uses: actions/upload-artifact@v4 with: path: Zonemaster-LDNS-5.0.0.tar.gz + + - name: release + uses: softprops/action-gh-release@v2 + with: + files: Zonemaster-*.tar.gz From 2a56ec4a60373ca8083dd0ac69a4533a350daf33 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 17:21:01 +0100 Subject: [PATCH 21/34] artifact with name --- .github/workflows/ci.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ad63688..17693a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,9 +72,10 @@ jobs: - name: upload artifact uses: actions/upload-artifact@v4 with: + name: Zonemaster-LDNS path: Zonemaster-LDNS-5.0.0.tar.gz - - name: release - uses: softprops/action-gh-release@v2 - with: - files: Zonemaster-*.tar.gz +# - name: release +# uses: softprops/action-gh-release@v2 +# with: +# files: Zonemaster-*.tar.gz From 88ed825e2773eafed33ea19561a34bef13119f62 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Tue, 25 Nov 2025 17:21:55 +0100 Subject: [PATCH 22/34] update --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17693a4..39ba4dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: run: prove -bl build-artifact: - needs: run-tests + #needs: run-tests runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 From 71884bd25e17325244df7c5dbaa28b4aba058770 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 18 Dec 2025 10:12:39 +0100 Subject: [PATCH 23/34] sha --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39ba4dd..7a400f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: run: prove -bl build-artifact: - #needs: run-tests + needs: run-tests runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 @@ -72,7 +72,7 @@ jobs: - name: upload artifact uses: actions/upload-artifact@v4 with: - name: Zonemaster-LDNS + name: Zonemaster-LDNS-${{ github.sha }} path: Zonemaster-LDNS-5.0.0.tar.gz # - name: release From 82f05c0a48a969536d9b4a3dada0e5498dc81a4e Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 18 Dec 2025 14:01:17 +0100 Subject: [PATCH 24/34] update --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a400f8..9ef0ea6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,7 +73,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: Zonemaster-LDNS-${{ github.sha }} - path: Zonemaster-LDNS-5.0.0.tar.gz + path: Zonemaster-LDNS-5.0.1.tar.gz # - name: release # uses: softprops/action-gh-release@v2 From ab25f868828931b914b5d693b1b4ff67e51cd2d1 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 18 Dec 2025 14:31:38 +0100 Subject: [PATCH 25/34] more variable --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ef0ea6..b67555f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: - name: upload artifact uses: actions/upload-artifact@v4 with: - name: Zonemaster-LDNS-${{ github.sha }} + name: Zonemaster-LDNS-${{ github.sha[:7] }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ github.run_id }}-${{ github.run_started_at | split('T')[0] }} path: Zonemaster-LDNS-5.0.1.tar.gz # - name: release From 305aaec8707cbc18f0cb26cd238b9ea5873b4ebd Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 18 Dec 2025 14:33:47 +0100 Subject: [PATCH 26/34] update --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b67555f..25f3d9d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: - name: upload artifact uses: actions/upload-artifact@v4 with: - name: Zonemaster-LDNS-${{ github.sha[:7] }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ github.run_id }}-${{ github.run_started_at | split('T')[0] }} + name: Zonemaster-LDNS-${{ github.short_sha }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ github.run_id }}-${{ github.run_started_at | split('T')[0] }} path: Zonemaster-LDNS-5.0.1.tar.gz # - name: release From 33ab91fc53f194598f14e3a0754fd09e908b31ea Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 18 Dec 2025 14:37:04 +0100 Subject: [PATCH 27/34] update --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25f3d9d..27106e6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: - name: upload artifact uses: actions/upload-artifact@v4 with: - name: Zonemaster-LDNS-${{ github.short_sha }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ github.run_id }}-${{ github.run_started_at | split('T')[0] }} + name: Zonemaster-LDNS-${{ github.short_sha }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ github.run_id }}-${{ env.formatted_date }} path: Zonemaster-LDNS-5.0.1.tar.gz # - name: release From 1eea1325afabe536cb11995e1b90b72e68892db1 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 18 Dec 2025 14:38:25 +0100 Subject: [PATCH 28/34] update --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 27106e6..86d5781 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: run: prove -bl build-artifact: - needs: run-tests + #needs: run-tests runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v4 From a6bb210ea2f1f0a903f2c5e21306a33f376f197f Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 18 Dec 2025 14:42:15 +0100 Subject: [PATCH 29/34] updateeeee --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 86d5781..3e7dd22 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: - name: upload artifact uses: actions/upload-artifact@v4 with: - name: Zonemaster-LDNS-${{ github.short_sha }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ github.run_id }}-${{ env.formatted_date }} + name: Zonemaster-LDNS-${{ env.short_sha }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ github.run_id }}-${{ env.formatted_date }} path: Zonemaster-LDNS-5.0.1.tar.gz # - name: release From 9eeb63e5aedcaed75f9980f66f4a2edab05e4980 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 18 Dec 2025 14:54:31 +0100 Subject: [PATCH 30/34] add env --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3e7dd22..dd212e4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,6 +69,9 @@ jobs: - name: build run: perl Makefile.PL && make all dist + - name: env + run: env + - name: upload artifact uses: actions/upload-artifact@v4 with: From 75c3f73d72c3de333188d5cf5fae1c9bdd03a2f1 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 18 Dec 2025 14:55:09 +0100 Subject: [PATCH 31/34] add env --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd212e4..df38e97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: run: perl Makefile.PL && make all dist - name: env - run: env + - run: env - name: upload artifact uses: actions/upload-artifact@v4 From def5f3c020780b9a7c2424258c65f1a996b060c0 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 18 Dec 2025 14:56:20 +0100 Subject: [PATCH 32/34] add env --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df38e97..5ae6bd1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -70,7 +70,7 @@ jobs: run: perl Makefile.PL && make all dist - name: env - - run: env + run: env - name: upload artifact uses: actions/upload-artifact@v4 From 480a23c6634d359652acb9c5cd04ca2e77af936d Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 18 Dec 2025 15:15:53 +0100 Subject: [PATCH 33/34] perplexity --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ae6bd1..f7666dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -75,7 +75,7 @@ jobs: - name: upload artifact uses: actions/upload-artifact@v4 with: - name: Zonemaster-LDNS-${{ env.short_sha }}-${{ github.run_number }}-${{ github.run_attempt }}-${{ github.run_id }}-${{ env.formatted_date }} + name: Zonemaster-LDNS-${{ github.sha.substr(0,7) }} path: Zonemaster-LDNS-5.0.1.tar.gz # - name: release From 09c47526bd4412d3800282bb752dd33e818512d9 Mon Sep 17 00:00:00 2001 From: Michael Timbert Date: Thu, 18 Dec 2025 15:39:35 +0100 Subject: [PATCH 34/34] create on pr --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7666dd..f417d2a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,7 @@ on: - develop - master - 'release/**' + - '**' env: TEST_WITH_NETWORK: 1 @@ -75,7 +76,7 @@ jobs: - name: upload artifact uses: actions/upload-artifact@v4 with: - name: Zonemaster-LDNS-${{ github.sha.substr(0,7) }} + name: Zonemaster-LDNS path: Zonemaster-LDNS-5.0.1.tar.gz # - name: release