From db49e8454df0a73de02a394cb2cbe9230d0de3f7 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Wed, 25 Jun 2025 15:34:31 +0200 Subject: [PATCH 1/3] Updates for v2025.1 release --- Changes | 15 +++++++++++++++ Makefile.PL | 4 ++-- lib/Zonemaster/Backend.pm | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index c75017d3..d2a0c388 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,21 @@ Release history for Zonemaster component Zonemaster-Backend +v11.5.0 2025-06-26 (part of Zonemaster v2025.1 release) + + [Deprecation] +- API method "get_batch_job_result" is deprecated to be removed in v2025.2. + Use method "batch_status" instead. #1215 + + [Features] +- Redefines batch_status to replace get_batch_job_result #1215 + + [Fixes] +- Updates translation (Norwegian) #1213 +- Adapts to changed Engine API #1143 +- Sorts historic tests by creation date and not ID #1212 + + v11.4.0 2025-03-04 (part of Zonemaster v2024.2.1 release) [Features] diff --git a/Makefile.PL b/Makefile.PL index 36629b6a..4351f81e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -35,8 +35,8 @@ requires 'Router::Simple::Declare' => 0, 'Starman' => 0, 'Try::Tiny' => 0.12, - 'Zonemaster::LDNS' => 4.001000, # v4.1.0 - 'Zonemaster::Engine' => 7.001000, # v7.1.0 + 'Zonemaster::LDNS' => 5.000000, # v5.0.0 + 'Zonemaster::Engine' => 8.000000, # v8.0.0 ; test_requires 'DBD::SQLite' => 1.66; diff --git a/lib/Zonemaster/Backend.pm b/lib/Zonemaster/Backend.pm index c650e7a3..88c70b38 100644 --- a/lib/Zonemaster/Backend.pm +++ b/lib/Zonemaster/Backend.pm @@ -1,6 +1,6 @@ package Zonemaster::Backend; -our $VERSION = '11.4.0'; +our $VERSION = '11.5.0'; use strict; use warnings; From cb844bc532b16e36a277a22161175d066c5f3095 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Wed, 25 Jun 2025 18:10:40 +0200 Subject: [PATCH 2/3] Apply suggestions from review Co-authored-by: tgreenx <96772376+tgreenx@users.noreply.github.com> --- Changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changes b/Changes index d2a0c388..85142ddf 100644 --- a/Changes +++ b/Changes @@ -8,7 +8,7 @@ v11.5.0 2025-06-26 (part of Zonemaster v2025.1 release) Use method "batch_status" instead. #1215 [Features] -- Redefines batch_status to replace get_batch_job_result #1215 +- Redefines "batch_status" to replace "get_batch_job_result" #1215 [Fixes] - Updates translation (Norwegian) #1213 From c82db2f02e8c9ed28100032803e0183c7a4006fe Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Wed, 25 Jun 2025 18:20:09 +0200 Subject: [PATCH 3/3] Apply suggestions from review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Mattias Päivärinta --- Changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changes b/Changes index 85142ddf..4b9e8400 100644 --- a/Changes +++ b/Changes @@ -3,7 +3,7 @@ Release history for Zonemaster component Zonemaster-Backend v11.5.0 2025-06-26 (part of Zonemaster v2025.1 release) - [Deprecation] + [Deprecations] - API method "get_batch_job_result" is deprecated to be removed in v2025.2. Use method "batch_status" instead. #1215