Merge branch 'master' into og-coreplugins

This commit is contained in:
Oliver Gorwits
2017-10-08 18:08:58 +01:00
5 changed files with 20 additions and 9 deletions

View File

@@ -65,7 +65,7 @@ Module::Build->new(
'Sereal' => '0', 'Sereal' => '0',
'Socket6' => '0.23', 'Socket6' => '0.23',
'Starman' => '0.4008', 'Starman' => '0.4008',
'SNMP::Info' => '3.36', 'SNMP::Info' => '3.37',
'SQL::Translator' => '0.11018', 'SQL::Translator' => '0.11018',
'Template' => '2.24', 'Template' => '2.24',
'Template::Plugin::CSV' => '0.04', 'Template::Plugin::CSV' => '0.04',

View File

@@ -1,9 +1,16 @@
2.036010 - 2.036010 - 2017-10-08
[ENHANCEMENTS] [ENHANCEMENTS]
* Add note on D-Link LLDP config (H. Erasmus) * Add note on D-Link LLDP config (H. Erasmus)
* New "stats" command for netdisco-do to update statistics * New "stats" command for netdisco-do to update statistics
* #342 Job Queue Add Hostname or FQDN
[BUG FIXES]
* #253 add some dependencies
* #346 custom reports should allow trailing sql semicolon
* #331 do not set community{_rw} defaults
2.036009 - 2017-08-01 2.036009 - 2017-08-01

View File

@@ -66,11 +66,13 @@
"Opcode" : "1.07", "Opcode" : "1.07",
"Path::Class" : "0.32", "Path::Class" : "0.32",
"Plack" : "1.0023", "Plack" : "1.0023",
"Plack::Handler::Twiggy" : "0",
"Plack::Middleware::Debug" : "0",
"Plack::Middleware::Expires" : "0.03", "Plack::Middleware::Expires" : "0.03",
"Plack::Middleware::ReverseProxy" : "0.15", "Plack::Middleware::ReverseProxy" : "0.15",
"Pod::Usage" : "0", "Pod::Usage" : "0",
"Role::Tiny" : "1.002005", "Role::Tiny" : "1.002005",
"SNMP::Info" : "3.36", "SNMP::Info" : "3.37",
"SQL::Translator" : "0.11018", "SQL::Translator" : "0.11018",
"Sereal" : "0", "Sereal" : "0",
"Socket6" : "0.23", "Socket6" : "0.23",
@@ -99,7 +101,7 @@
"provides" : { "provides" : {
"App::Netdisco" : { "App::Netdisco" : {
"file" : "lib/App/Netdisco.pm", "file" : "lib/App/Netdisco.pm",
"version" : "2.036009" "version" : "2.036010"
}, },
"App::Netdisco::AnyEvent::Nbtstat" : { "App::Netdisco::AnyEvent::Nbtstat" : {
"file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm"
@@ -658,6 +660,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.036009", "version" : "2.036010",
"x_serialization_backend" : "JSON::PP version 2.94" "x_serialization_backend" : "JSON::PP version 2.94"
} }

View File

@@ -18,7 +18,7 @@ name: App-Netdisco
provides: provides:
App::Netdisco: App::Netdisco:
file: lib/App/Netdisco.pm file: lib/App/Netdisco.pm
version: '2.036009' version: '2.036010'
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:
@@ -424,11 +424,13 @@ requires:
Opcode: '1.07' Opcode: '1.07'
Path::Class: '0.32' Path::Class: '0.32'
Plack: '1.0023' Plack: '1.0023'
Plack::Handler::Twiggy: '0'
Plack::Middleware::Debug: '0'
Plack::Middleware::Expires: '0.03' Plack::Middleware::Expires: '0.03'
Plack::Middleware::ReverseProxy: '0.15' Plack::Middleware::ReverseProxy: '0.15'
Pod::Usage: '0' Pod::Usage: '0'
Role::Tiny: '1.002005' Role::Tiny: '1.002005'
SNMP::Info: '3.36' SNMP::Info: '3.37'
SQL::Translator: '0.11018' SQL::Translator: '0.11018'
Sereal: '0' Sereal: '0'
Socket6: '0.23' Socket6: '0.23'
@@ -452,5 +454,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.036009' version: '2.036010'
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.036009'; our $VERSION = '2.036010';
use App::Netdisco::Configuration; use App::Netdisco::Configuration;
=head1 NAME =head1 NAME