diff --git a/Changes b/Changes index 14553b15..f9a78d7f 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,10 @@ +2.066000 - 2023-09-19 + + [ENHANCEMENTS] + + * #1083 setting to make inventory collapsible when large variety of vendor/os + * #1084 device ACL skiplist build is now a job instead of blocking backend startup + 2.065002 - 2023-09-03 [ENHANCEMENTS] diff --git a/MANIFEST b/MANIFEST index 88f8300c..68fbee93 100644 --- a/MANIFEST +++ b/MANIFEST @@ -267,6 +267,7 @@ lib/App/Netdisco/Worker/Plugin/NodeMonitor.pm lib/App/Netdisco/Worker/Plugin/PortControl.pm lib/App/Netdisco/Worker/Plugin/PortName.pm lib/App/Netdisco/Worker/Plugin/Power.pm +lib/App/Netdisco/Worker/Plugin/PrimeSkiplist.pm lib/App/Netdisco/Worker/Plugin/Psql.pm lib/App/Netdisco/Worker/Plugin/Renumber.pm lib/App/Netdisco/Worker/Plugin/Show.pm diff --git a/META.json b/META.json index 84bb48b8..f7225fd5 100644 --- a/META.json +++ b/META.json @@ -136,7 +136,7 @@ "provides" : { "App::Netdisco" : { "file" : "lib/App/Netdisco.pm", - "version" : "2.065002" + "version" : "2.066000" }, "App::Netdisco::AnyEvent::Nbtstat" : { "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" @@ -898,6 +898,9 @@ "App::Netdisco::Worker::Plugin::Power" : { "file" : "lib/App/Netdisco/Worker/Plugin/Power.pm" }, + "App::Netdisco::Worker::Plugin::PrimeSkiplist" : { + "file" : "lib/App/Netdisco/Worker/Plugin/PrimeSkiplist.pm" + }, "App::Netdisco::Worker::Plugin::Psql" : { "file" : "lib/App/Netdisco/Worker/Plugin/Psql.pm" }, @@ -947,6 +950,6 @@ "x_IRC" : "irc://irc.libera.chat/#netdisco", "x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users" }, - "version" : "2.065002", + "version" : "2.066000", "x_serialization_backend" : "JSON::PP version 4.07" } diff --git a/META.yml b/META.yml index 96a4ef5c..50a884a6 100644 --- a/META.yml +++ b/META.yml @@ -23,7 +23,7 @@ name: App-Netdisco provides: App::Netdisco: file: lib/App/Netdisco.pm - version: '2.065002' + version: '2.066000' App::Netdisco::AnyEvent::Nbtstat: file: lib/App/Netdisco/AnyEvent/Nbtstat.pm App::Netdisco::Backend::Job: @@ -531,6 +531,8 @@ provides: file: lib/App/Netdisco/Worker/Plugin/PortName.pm App::Netdisco::Worker::Plugin::Power: file: lib/App/Netdisco/Worker/Plugin/Power.pm + App::Netdisco::Worker::Plugin::PrimeSkiplist: + file: lib/App/Netdisco/Worker/Plugin/PrimeSkiplist.pm App::Netdisco::Worker::Plugin::Psql: file: lib/App/Netdisco/Worker/Plugin/Psql.pm App::Netdisco::Worker::Plugin::Renumber: @@ -653,5 +655,5 @@ resources: homepage: http://netdisco.org/ license: http://opensource.org/licenses/BSD-3-Clause repository: https://github.com/netdisco/netdisco -version: '2.065002' +version: '2.066000' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/lib/App/Netdisco.pm b/lib/App/Netdisco.pm index 8536d720..710e9af5 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.065002'; +our $VERSION = '2.066000'; use App::Netdisco::Configuration; =head1 NAME