From e74fbc4bcff8f8019b3a9c094d1089c53288473e Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Sun, 30 Jun 2024 15:31:41 +0200 Subject: [PATCH 1/4] Sets version and updates Changes and dependencies --- Changes | 20 ++++++++++++++++++++ Makefile.PL | 4 ++-- lib/Zonemaster/Backend.pm | 2 +- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 9a5eba5f..8ba564e7 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,26 @@ Release history for Zonemaster component Zonemaster-Backend +v11.2.0 2024-07-01 (part of Zonemaster v2024.1 release) + + [Release information] + - Translations have not been fully updated in this release. They will + be updated in an upcoming release. + - Migration of the database is required by this release to retain + consistency in results in the database. + + [Features] + - Ensures Backend’s messages get translated (#1166) + + [Fixes] + - Avoids double UTF-8 encoding in zmb (#1144) + - Makes job_status report proper percentages (#1150) + - Updates language in experimental RPC API paramaters (#1155) + - Makes RPCAPI call Translator’s instance() method, instead of new() + (#1167) + - Bumps DBD::SQLite to 1.66 for Rocky Linux 8 (#1174) + + v11.1.1 2024-03-28 [Fixes] diff --git a/Makefile.PL b/Makefile.PL index 6a3603af..0b513eb0 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.000000, # v4.0.0 - 'Zonemaster::Engine' => 5.000000, # v5.0.0 + 'Zonemaster::LDNS' => 4.000002, # v4.0.2 + 'Zonemaster::Engine' => 6.000000, # v6.0.0 ; test_requires 'DBD::SQLite' => 1.66; diff --git a/lib/Zonemaster/Backend.pm b/lib/Zonemaster/Backend.pm index 6af0a4a3..18d4ad44 100644 --- a/lib/Zonemaster/Backend.pm +++ b/lib/Zonemaster/Backend.pm @@ -1,6 +1,6 @@ package Zonemaster::Backend; -our $VERSION = '11.1.1'; +our $VERSION = '11.2.0'; use strict; use warnings; From 217f1f45e1f20dd6afc58958a4a296491955d44a Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Mon, 1 Jul 2024 12:16:59 +0200 Subject: [PATCH 2/4] Update Changes Co-authored-by: Marc van der Wal <103426270+marc-vanderwal@users.noreply.github.com> --- Changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changes b/Changes index 8ba564e7..66d08dac 100644 --- a/Changes +++ b/Changes @@ -15,7 +15,7 @@ v11.2.0 2024-07-01 (part of Zonemaster v2024.1 release) [Fixes] - Avoids double UTF-8 encoding in zmb (#1144) - Makes job_status report proper percentages (#1150) - - Updates language in experimental RPC API paramaters (#1155) + - Updates language in experimental RPC API parameters (#1155) - Makes RPCAPI call Translator’s instance() method, instead of new() (#1167) - Bumps DBD::SQLite to 1.66 for Rocky Linux 8 (#1174) From 411414168348e8283df5e1947eb51c8b715b2c35 Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Mon, 1 Jul 2024 13:28:28 +0200 Subject: [PATCH 3/4] Updates after review comment --- Changes | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Changes b/Changes index 66d08dac..13f8c96b 100644 --- a/Changes +++ b/Changes @@ -10,7 +10,7 @@ v11.2.0 2024-07-01 (part of Zonemaster v2024.1 release) consistency in results in the database. [Features] - - Ensures Backend’s messages get translated (#1166) + - Ensures Backend’s messages are translated when requested. (#1166) [Fixes] - Avoids double UTF-8 encoding in zmb (#1144) From 4a3f6661c30c82f362a780630cedc65ef054f6bd Mon Sep 17 00:00:00 2001 From: Mats Dufberg Date: Mon, 1 Jul 2024 15:19:40 +0200 Subject: [PATCH 4/4] Updates after review comment --- Changes | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index 13f8c96b..07121a9b 100644 --- a/Changes +++ b/Changes @@ -10,7 +10,8 @@ v11.2.0 2024-07-01 (part of Zonemaster v2024.1 release) consistency in results in the database. [Features] - - Ensures Backend’s messages are translated when requested. (#1166) + - Fixes regression that caused Backend’s messages not to be + translated (#1166) [Fixes] - Avoids double UTF-8 encoding in zmb (#1144)