Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Preparation for release v2024.1 (Engine) #1367

Merged
merged 5 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,6 +1,35 @@
Release history for Zonemaster component Zonemaster-Engine


v6.0.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.

[Breaking change]
- Removes planned deprecated 'resolver.source' profile property.
Breaks custom profiles using this property. Use 'resolver.source4'
and 'resolver.source6' instead. (#1343)
- Using 'profile.json' that comes with the Zonemaster::Engine
installation as a template for custom profile is no longer supported.
For the new supported way of extracting the default profile, see
https://github.com/zonemaster/zonemaster/blob/master/docs/public/configuration/profiles.md#default-profile (#1339)

[Features]
- Makes it possible to run single testcase via test_zone() (#1312)
- Updates Basic01 implementation (#1357)

[Fixes]
- Makes syntax04 take zone name instead of NS name (#1322, #1369)
- Removes the code dependency on Moose (#1319)
- Fixes Zonemaster::Engine::Translator’s instance() method (#1347)
- Fixes polymorphism in Translator (#1346)
- Adds minor changes to Zone11 msgids (#1348)
- Update minimum Perl version to 5.16.0 and add missing 'warnings' (#1342)
- Fixes undef eq comparison (#1363)


v5.0.0 2024-03-18 (public release version)

[Release information]
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ requires 'Net::IP::XS' => 0.21;
requires 'Readonly' => 0;
requires 'Text::CSV' => 0;
requires 'YAML::XS' => 0;
requires 'Zonemaster::LDNS' => 4.000000; # For v4.0.0
requires 'Zonemaster::LDNS' => 4.000002; # For v4.0.2
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't it be better to not bump this requirement?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the way we have done every time and has decided to do.


test_requires 'Locale::PO' => 0;
test_requires 'Pod::Coverage' => 0;
Expand Down
2 changes: 1 addition & 1 deletion lib/Zonemaster/Engine.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Zonemaster::Engine;
use v5.16.0;
use warnings;

use version; our $VERSION = version->declare("v5.0.0");
use version; our $VERSION = version->declare("v6.0.0");

BEGIN {
# Locale::TextDomain (<= 1.20) doesn't know about File::ShareDir so give a helping hand.
Expand Down
Loading