release 2.052009

This commit is contained in:
Oliver Gorwits
2022-07-26 21:56:52 +01:00
parent 20606089d9
commit b52b24dd9b
5 changed files with 24 additions and 10 deletions

View File

@@ -87,7 +87,7 @@ Module::Build->new(
'Starman' => '0.4008', 'Starman' => '0.4008',
'Storable' => '0', 'Storable' => '0',
'Sys::SigAction' => '0', 'Sys::SigAction' => '0',
'SNMP::Info' => '3.82', 'SNMP::Info' => '3.84',
'SQL::Abstract' => '1.85', 'SQL::Abstract' => '1.85',
'SQL::Translator' => '0.11024', 'SQL::Translator' => '0.11024',
'Sub::Util' => '1.40', 'Sub::Util' => '1.40',

18
Changes
View File

@@ -1,8 +1,22 @@
2.052009 - 2022-06-xx 2.052009 - 2022-06-26
[NEW FEATURES] [NEW FEATURES]
* #889 implement renumber in the web interface * #882 option to display vlan names instead of numbers in device ports
* #889 renumber device option in the device details web page
[ENHANCEMENTS]
* #877 ignore vlans 1002-1005 in port vlan mismatch report
* rename Inventory Data to be Remote Inventory in device ports options
* rename Detailed Inventory to be Remote Advertisement in device ports options
[BUG FIXES]
* #878 device ports csv misses mac addresses having no IPs
* #895 fix for neighbor showing phantom connections when remote_ip is not unique
* #897 port free should only apply to physical interfaces
* fix error displaying 'unlink' icon for device unreachable in device ports
2.052008 - 2022-06-12 2.052008 - 2022-06-12

View File

@@ -93,7 +93,7 @@
"Pod::Usage" : "0", "Pod::Usage" : "0",
"Regexp::Common" : "2017060201", "Regexp::Common" : "2017060201",
"Role::Tiny" : "1.002005", "Role::Tiny" : "1.002005",
"SNMP::Info" : "3.82", "SNMP::Info" : "3.84",
"SQL::Abstract" : "1.85", "SQL::Abstract" : "1.85",
"SQL::Translator" : "0.11024", "SQL::Translator" : "0.11024",
"Scope::Guard" : "0", "Scope::Guard" : "0",
@@ -135,7 +135,7 @@
"provides" : { "provides" : {
"App::Netdisco" : { "App::Netdisco" : {
"file" : "lib/App/Netdisco.pm", "file" : "lib/App/Netdisco.pm",
"version" : "2.052008" "version" : "2.052009"
}, },
"App::Netdisco::AnyEvent::Nbtstat" : { "App::Netdisco::AnyEvent::Nbtstat" : {
"file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm"
@@ -904,6 +904,6 @@
"x_IRC" : "irc://irc.libera.chat/#netdisco", "x_IRC" : "irc://irc.libera.chat/#netdisco",
"x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users" "x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users"
}, },
"version" : "2.052008", "version" : "2.052009",
"x_serialization_backend" : "JSON::PP version 4.06" "x_serialization_backend" : "JSON::PP version 4.06"
} }

View File

@@ -23,7 +23,7 @@ name: App-Netdisco
provides: provides:
App::Netdisco: App::Netdisco:
file: lib/App/Netdisco.pm file: lib/App/Netdisco.pm
version: '2.052008' version: '2.052009'
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:
@@ -589,7 +589,7 @@ requires:
Pod::Usage: '0' Pod::Usage: '0'
Regexp::Common: '2017060201' Regexp::Common: '2017060201'
Role::Tiny: '1.002005' Role::Tiny: '1.002005'
SNMP::Info: '3.82' SNMP::Info: '3.84'
SQL::Abstract: '1.85' SQL::Abstract: '1.85'
SQL::Translator: '0.11024' SQL::Translator: '0.11024'
Scope::Guard: '0' Scope::Guard: '0'
@@ -624,5 +624,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.052008' version: '2.052009'
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.052008'; our $VERSION = '2.052009';
use App::Netdisco::Configuration; use App::Netdisco::Configuration;
=head1 NAME =head1 NAME