diff --git a/Changes b/Changes index aac0c78e..beb74ce5 100644 --- a/Changes +++ b/Changes @@ -1,9 +1,12 @@ -2.057006 - tbd +2.057006 - 2022-09-30 [ENHANCEMENTS] - * added Firepower SSH collector (FTD.pm) contributed by Sebastian Roesch (roesch[at]alcera.de) on the mailing list + * added Firepower SSH collector (FTD.pm) by Sebastian Roesch (roesch[at]alcera.de) + [BUG FIXES] + + * fix wrong use of check_acl breaking snmp_field_protection 2.057005 - 2022-09-28 diff --git a/MANIFEST b/MANIFEST index 6305dfaf..561901c7 100644 --- a/MANIFEST +++ b/MANIFEST @@ -115,6 +115,7 @@ lib/App/Netdisco/SSHCollector/Platform/Clavister.pm lib/App/Netdisco/SSHCollector/Platform/CPVSX.pm lib/App/Netdisco/SSHCollector/Platform/FortiOS.pm lib/App/Netdisco/SSHCollector/Platform/FreeBSD.pm +lib/App/Netdisco/SSHCollector/Platform/FTD.pm lib/App/Netdisco/SSHCollector/Platform/GAIAEmbedded.pm lib/App/Netdisco/SSHCollector/Platform/IOS.pm lib/App/Netdisco/SSHCollector/Platform/IOSXR.pm diff --git a/META.json b/META.json index 1e9f61d2..08fa62e7 100644 --- a/META.json +++ b/META.json @@ -136,7 +136,7 @@ "provides" : { "App::Netdisco" : { "file" : "lib/App/Netdisco.pm", - "version" : "2.057005" + "version" : "2.057006" }, "App::Netdisco::AnyEvent::Nbtstat" : { "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" @@ -436,6 +436,9 @@ "App::Netdisco::SSHCollector::Platform::Clavister" : { "file" : "lib/App/Netdisco/SSHCollector/Platform/Clavister.pm" }, + "App::Netdisco::SSHCollector::Platform::FTD" : { + "file" : "lib/App/Netdisco/SSHCollector/Platform/FTD.pm" + }, "App::Netdisco::SSHCollector::Platform::FortiOS" : { "file" : "lib/App/Netdisco/SSHCollector/Platform/FortiOS.pm" }, @@ -908,6 +911,6 @@ "x_IRC" : "irc://irc.libera.chat/#netdisco", "x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users" }, - "version" : "2.057005", + "version" : "2.057006", "x_serialization_backend" : "JSON::PP version 4.06" } diff --git a/META.yml b/META.yml index d40e1a2c..316e9859 100644 --- a/META.yml +++ b/META.yml @@ -23,7 +23,7 @@ name: App-Netdisco provides: App::Netdisco: file: lib/App/Netdisco.pm - version: '2.057005' + version: '2.057006' App::Netdisco::AnyEvent::Nbtstat: file: lib/App/Netdisco/AnyEvent/Nbtstat.pm App::Netdisco::Backend::Job: @@ -223,6 +223,8 @@ provides: file: lib/App/Netdisco/SSHCollector/Platform/CPVSX.pm App::Netdisco::SSHCollector::Platform::Clavister: file: lib/App/Netdisco/SSHCollector/Platform/Clavister.pm + App::Netdisco::SSHCollector::Platform::FTD: + file: lib/App/Netdisco/SSHCollector/Platform/FTD.pm App::Netdisco::SSHCollector::Platform::FortiOS: file: lib/App/Netdisco/SSHCollector/Platform/FortiOS.pm App::Netdisco::SSHCollector::Platform::FreeBSD: @@ -627,5 +629,5 @@ resources: homepage: http://netdisco.org/ license: http://opensource.org/licenses/bsd-license.php repository: https://github.com/netdisco/netdisco -version: '2.057005' +version: '2.057006' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/lib/App/Netdisco.pm b/lib/App/Netdisco.pm index 3cc616ee..c9409186 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.057005'; +our $VERSION = '2.057006'; use App::Netdisco::Configuration; =head1 NAME