release 2.040003

This commit is contained in:
Oliver Gorwits
2019-01-18 07:08:47 +00:00
parent 89b8f8c0ce
commit 6c617a3d55
4 changed files with 29 additions and 19 deletions

31
Changes
View File

@@ -1,26 +1,29 @@
2.040003 - xxx 2.040003 - 2019-01-18
[NEW FEATURES] [NEW FEATURES]
* #482 operating system is now a link in device details (inphobia) * #485 new "VLANs" device tab showing a VLAN report (inphobia)
[ENHANCEMENTS] [ENHANCEMENTS]
* #408, #417 & 477 makerancidconf improvements: readded with some additional tweaks, somehow * #408, #417 & 477 makerancidconf improvements re-added (earendilfr, inphobia)
they got lost in 2.039029. (earendilfr, inphobia) * #420 IP Inventory Node column renamed to IP Address (ollyg)
* #436 make neighbor matching less strict, no longer is it required to match all parameters * #420 sidebar defaults for IP Inventory report can be overridden (ollyg)
(port name, device name) exactly before creating a link between devices. (linwood-f) * #424 column name is "Connected Nodes & Devices" when both are shown (ollyg)
* #436 make neighbor matching less strict in netmap (linwood-f)
* #482 operating system is now a link in device details (inphobia)
* #486 allow snmp::info base class in netdisco-do (inphobia)
[BUG FIXES] [BUG FIXES]
* #475 all discover plugins should now respect ignore_interfaces, ignore_notpresent_types & * #457 make sorting work for adresses when interface was undefined (inphobia)
ignore_private_nets. as a bonus discovery data is now cached for less db load. (ollyg) * #471-redux ospf discovery will now keep on working (ollyg)
* #476 also log when plugins delete related tables. (ollyg) * #474 better explain public key auth with netdisco-sshcollector (inphobia)
* #471-redux ospf discovery will now keep on working instead of stopping after a few * #475, #479 all discover plugins should now respect ignore_* for interfaces (ollyg)
runs. (ollyg) * #476 debug log when deleting rows from related tables (ollyg)
* #474 better explain public key auth with netdisco-sshcollector. (inphobia) * Fix to catch when txrate on wifi is scalar and not a list
* #457 make sorting work on interface in device/adresses when interface was undefined. also * Remove 'use vars' which is deprecated in Perl
went through all other portsort callers to make sure parameters are always defined. (inphobia) * Various documentation improvements (inphobia)
2.040002 - 2018-12-30 2.040002 - 2018-12-30

View File

@@ -102,6 +102,7 @@
"YAML" : "0.84", "YAML" : "0.84",
"YAML::XS" : "0.41", "YAML::XS" : "0.41",
"aliased" : "0", "aliased" : "0",
"autovivification" : "0",
"namespace::clean" : "0.24", "namespace::clean" : "0.24",
"version" : "0.9902" "version" : "0.9902"
} }
@@ -117,7 +118,7 @@
"provides" : { "provides" : {
"App::Netdisco" : { "App::Netdisco" : {
"file" : "lib/App/Netdisco.pm", "file" : "lib/App/Netdisco.pm",
"version" : "2.040002" "version" : "2.040003"
}, },
"App::Netdisco::AnyEvent::Nbtstat" : { "App::Netdisco::AnyEvent::Nbtstat" : {
"file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm"
@@ -531,6 +532,9 @@
"App::Netdisco::Web::Plugin::Device::Ports" : { "App::Netdisco::Web::Plugin::Device::Ports" : {
"file" : "lib/App/Netdisco/Web/Plugin/Device/Ports.pm" "file" : "lib/App/Netdisco/Web/Plugin/Device/Ports.pm"
}, },
"App::Netdisco::Web::Plugin::Device::Vlans" : {
"file" : "lib/App/Netdisco/Web/Plugin/Device/Vlans.pm"
},
"App::Netdisco::Web::Plugin::Inventory" : { "App::Netdisco::Web::Plugin::Inventory" : {
"file" : "lib/App/Netdisco/Web/Plugin/Inventory.pm" "file" : "lib/App/Netdisco/Web/Plugin/Inventory.pm"
}, },
@@ -796,6 +800,6 @@
"x_IRC" : "irc://irc.freenode.org/#netdisco", "x_IRC" : "irc://irc.freenode.org/#netdisco",
"x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users" "x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users"
}, },
"version" : "2.040002", "version" : "2.040003",
"x_serialization_backend" : "JSON::PP version 2.97001" "x_serialization_backend" : "JSON::PP version 2.97001"
} }

View File

@@ -22,7 +22,7 @@ name: App-Netdisco
provides: provides:
App::Netdisco: App::Netdisco:
file: lib/App/Netdisco.pm file: lib/App/Netdisco.pm
version: '2.040002' version: '2.040003'
App::Netdisco::AnyEvent::Nbtstat: App::Netdisco::AnyEvent::Nbtstat:
file: lib/App/Netdisco/AnyEvent/Nbtstat.pm file: lib/App/Netdisco/AnyEvent/Nbtstat.pm
App::Netdisco::Backend::Job: App::Netdisco::Backend::Job:
@@ -298,6 +298,8 @@ provides:
file: lib/App/Netdisco/Web/Plugin/Device/Neighbors.pm file: lib/App/Netdisco/Web/Plugin/Device/Neighbors.pm
App::Netdisco::Web::Plugin::Device::Ports: App::Netdisco::Web::Plugin::Device::Ports:
file: lib/App/Netdisco/Web/Plugin/Device/Ports.pm file: lib/App/Netdisco/Web/Plugin/Device/Ports.pm
App::Netdisco::Web::Plugin::Device::Vlans:
file: lib/App/Netdisco/Web/Plugin/Device/Vlans.pm
App::Netdisco::Web::Plugin::Inventory: App::Netdisco::Web::Plugin::Inventory:
file: lib/App/Netdisco/Web/Plugin/Inventory.pm file: lib/App/Netdisco/Web/Plugin/Inventory.pm
App::Netdisco::Web::Plugin::Report::ApChannelDist: App::Netdisco::Web::Plugin::Report::ApChannelDist:
@@ -537,6 +539,7 @@ requires:
YAML: '0.84' YAML: '0.84'
YAML::XS: '0.41' YAML::XS: '0.41'
aliased: '0' aliased: '0'
autovivification: '0'
namespace::clean: '0.24' namespace::clean: '0.24'
version: '0.9902' version: '0.9902'
resources: resources:
@@ -546,5 +549,5 @@ resources:
homepage: http://netdisco.org/ homepage: http://netdisco.org/
license: http://opensource.org/licenses/bsd-license.php license: http://opensource.org/licenses/bsd-license.php
repository: https://github.com/netdisco/netdisco repository: https://github.com/netdisco/netdisco
version: '2.040002' version: '2.040003'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018' x_serialization_backend: 'CPAN::Meta::YAML version 0.018'

View File

@@ -4,7 +4,7 @@ use strict;
use warnings; use warnings;
use 5.010_000; use 5.010_000;
our $VERSION = '2.040002'; our $VERSION = '2.040003';
use App::Netdisco::Configuration; use App::Netdisco::Configuration;
=head1 NAME =head1 NAME