diff --git a/Changes b/Changes index f931a1ef..91958001 100644 --- a/Changes +++ b/Changes @@ -1,8 +1,17 @@ -2.047009 - 2021-07-xx +2.048000 - 2021-08-14 + + [NEW FEATURES] + + * #800 gather and report SNMP Chassis ID [ENHANCEMENTS] * #767 also respect dns->no configuration in hostname_from_ip() + * improvements to test suite + + [BUG FIXES] + + * fix for #775 radius dict finding 2.047008 - 2021-07-21 diff --git a/MANIFEST b/MANIFEST index 7f85232a..490f7bb6 100644 --- a/MANIFEST +++ b/MANIFEST @@ -425,6 +425,7 @@ share/schema_versions/App-Netdisco-DB-61-62-PostgreSQL.sql share/schema_versions/App-Netdisco-DB-62-63-PostgreSQL.sql share/schema_versions/App-Netdisco-DB-63-64-PostgreSQL.sql share/schema_versions/App-Netdisco-DB-64-65-PostgreSQL.sql +share/schema_versions/App-Netdisco-DB-65-66-PostgreSQL.sql share/schema_versions/App-Netdisco-DB-7-8-PostgreSQL.sql share/schema_versions/App-Netdisco-DB-8-9-PostgreSQL.sql share/schema_versions/App-Netdisco-DB-9-10-PostgreSQL.sql @@ -550,6 +551,7 @@ xt/01-local-pod.t xt/10-sort_port.t xt/11-portsort.t xt/20-checkacl.t +xt/21-check_acl_no_ipaddr_only.t xt/30-backend-workers.t xt/html/portsort.html xt/js/qunit-tap.js diff --git a/META.json b/META.json index bfa0d242..15459c1c 100644 --- a/META.json +++ b/META.json @@ -129,7 +129,7 @@ "provides" : { "App::Netdisco" : { "file" : "lib/App/Netdisco.pm", - "version" : "2.047008" + "version" : "2.048000" }, "App::Netdisco::AnyEvent::Nbtstat" : { "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" @@ -151,7 +151,7 @@ }, "App::Netdisco::DB" : { "file" : "lib/App/Netdisco/DB.pm", - "version" : "65" + "version" : "66" }, "App::Netdisco::DB::ExplicitLocking" : { "file" : "lib/App/Netdisco/DB/ExplicitLocking.pm" @@ -862,6 +862,6 @@ "x_IRC" : "irc://irc.libera.chat/#netdisco", "x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users" }, - "version" : "2.047008", - "x_serialization_backend" : "JSON::PP version 4.02" + "version" : "2.048000", + "x_serialization_backend" : "JSON::PP version 4.06" } diff --git a/META.yml b/META.yml index 7514e8fd..bb75ff1d 100644 --- a/META.yml +++ b/META.yml @@ -23,7 +23,7 @@ name: App-Netdisco provides: App::Netdisco: file: lib/App/Netdisco.pm - version: '2.047008' + version: '2.048000' App::Netdisco::AnyEvent::Nbtstat: file: lib/App/Netdisco/AnyEvent/Nbtstat.pm App::Netdisco::Backend::Job: @@ -38,7 +38,7 @@ provides: file: lib/App/Netdisco/Configuration.pm App::Netdisco::DB: file: lib/App/Netdisco/DB.pm - version: '65' + version: '66' App::Netdisco::DB::ExplicitLocking: file: lib/App/Netdisco/DB/ExplicitLocking.pm App::Netdisco::DB::Result: @@ -594,5 +594,5 @@ resources: homepage: http://netdisco.org/ license: http://opensource.org/licenses/bsd-license.php repository: https://github.com/netdisco/netdisco -version: '2.047008' +version: '2.048000' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/lib/App/Netdisco.pm b/lib/App/Netdisco.pm index 3642dad1..08813201 100644 --- a/lib/App/Netdisco.pm +++ b/lib/App/Netdisco.pm @@ -4,7 +4,7 @@ use strict; use warnings; use 5.010_000; -our $VERSION = '2.047008'; +our $VERSION = '2.048000'; use App::Netdisco::Configuration; =head1 NAME