Skip to content
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
22 changes: 22 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
Release history for Zonemaster component Zonemaster-Engine

v8.0.0 2025-06-26 (part of Zonemaster v2025.1 release)

[Breaking changes]
- Changes the string representation of IPv6 addresses in "NS_CREATED"
messages #1420
- Separates functions to trim whitespace and to normalize domain
name, respectively #1316

[Features]
- Updates local copies of IANA special IP registries #1456
- Lowers all WARNING to NOTICE for test case Zone01 #1455
- Downgrades ERROR to WARNING in test case DNSSEC03 #1452
- Improves performance by optimizing critical code sections #1420

[Fixes]
- Updates translations (Danish, Norwegian) #1418, #1449
- Updates Dockerfile for release 2025.1 #1460
- Fixes test case DNSSEC10 for name servers sharing the same IPs #1457
- Adds blacklisting log message #1434
- Fixes alias (CNAME) handling in Address03 test case #1432


v7.1.0 2025-03-04 (part of Zonemaster v2024.2.1 release)

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

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("v7.1.0");
use version; our $VERSION = version->declare("v8.0.0");

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