release 2.039023

This commit is contained in:
Oliver Gorwits
2018-04-19 08:25:22 +01:00
parent 2c440e2dda
commit ccd0e5e308
4 changed files with 9 additions and 6 deletions

View File

@@ -1,4 +1,4 @@
2.039022 2.039023 - 2018-04-19
[NEW FEATURES] [NEW FEATURES]
@@ -6,6 +6,7 @@
[BUG FIXES] [BUG FIXES]
* #393 (redux) avoid 'modification of readonly variable' error in netmap
* #394 (redux) enabled "Management IPs" hides after "Redraw Map" * #394 (redux) enabled "Management IPs" hides after "Redraw Map"
2.039022 - 2018-04-18 2.039022 - 2018-04-18
@@ -22,8 +23,10 @@
[BUG FIXES] [BUG FIXES]
* #388 searching for 0.x.x.x returns Internal Server Error (C. Neuhaus)
* #389 build/upgrade issues (EL6) * #389 build/upgrade issues (EL6)
* #390 cannot take logarithm of zero (C. Stromsoe) * #390 cannot take logarithm of zero (C. Stromsoe)
* #391 fix sshcollector errors when devices are empty
* protect against undef mac (l.e. ferguson) * protect against undef mac (l.e. ferguson)
* do not include logical aggregate masters in netmap/speed calc * do not include logical aggregate masters in netmap/speed calc
* try to match remote port in netmap against port, name, and descr * try to match remote port in netmap against port, name, and descr

View File

@@ -110,7 +110,7 @@
"provides" : { "provides" : {
"App::Netdisco" : { "App::Netdisco" : {
"file" : "lib/App/Netdisco.pm", "file" : "lib/App/Netdisco.pm",
"version" : "2.039022" "version" : "2.039023"
}, },
"App::Netdisco::AnyEvent::Nbtstat" : { "App::Netdisco::AnyEvent::Nbtstat" : {
"file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm"
@@ -786,6 +786,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.039022", "version" : "2.039023",
"x_serialization_backend" : "JSON::PP version 2.94" "x_serialization_backend" : "JSON::PP version 2.94"
} }

View File

@@ -19,7 +19,7 @@ name: App-Netdisco
provides: provides:
App::Netdisco: App::Netdisco:
file: lib/App/Netdisco.pm file: lib/App/Netdisco.pm
version: '2.039022' version: '2.039023'
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:
@@ -541,5 +541,5 @@ resources:
homepage: http://netdisco.org/ homepage: http://netdisco.org/
license: http://opensource.org/licenses/BSD-3-Clause license: http://opensource.org/licenses/BSD-3-Clause
repository: https://github.com/netdisco/netdisco repository: https://github.com/netdisco/netdisco
version: '2.039022' version: '2.039023'
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.039022'; our $VERSION = '2.039023';
use App::Netdisco::Configuration; use App::Netdisco::Configuration;
=head1 NAME =head1 NAME