release 2.040000

This commit is contained in:
Oliver Gorwits
2018-12-28 17:02:56 +00:00
parent b0f17db700
commit 097bad6c48
4 changed files with 33 additions and 5 deletions

18
Changes
View File

@@ -1,3 +1,21 @@
2.040000 - 2018-12-28
[NEW FEATURES]
* #464 ignore_notpresent_types config to ignore notPresent interfaces (inphobia, nic)
* #469 jobs_qdepth config to set length of job queue in web view (inphobia)
[ENHANCEMENTS]
* #459 additional interface type to ignore (inphobia)
* #460 several improvements to netdisco-sshcollector (rc9000)
[BUG FIXES]
* #456 fix POD error (manwar)
* #461 provide stdin to sshcollector (rc9000)
* #467 documentation fixes (inphobia)
2.039033 - 2018-10-19 2.039033 - 2018-10-19
[BUG FIXES] [BUG FIXES]

View File

@@ -14,6 +14,13 @@
}, },
"name" : "App-Netdisco", "name" : "App-Netdisco",
"prereqs" : { "prereqs" : {
"build" : {
"requires" : {
"ExtUtils::Config" : "0",
"ExtUtils::Helpers" : "0",
"ExtUtils::InstallPaths" : "0"
}
},
"configure" : { "configure" : {
"requires" : { "requires" : {
"DBIx::Class" : "0.082810", "DBIx::Class" : "0.082810",
@@ -110,7 +117,7 @@
"provides" : { "provides" : {
"App::Netdisco" : { "App::Netdisco" : {
"file" : "lib/App/Netdisco.pm", "file" : "lib/App/Netdisco.pm",
"version" : "2.039033" "version" : "2.040000"
}, },
"App::Netdisco::AnyEvent::Nbtstat" : { "App::Netdisco::AnyEvent::Nbtstat" : {
"file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm"
@@ -789,6 +796,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.039033", "version" : "2.040000",
"x_serialization_backend" : "JSON::PP version 2.97001" "x_serialization_backend" : "JSON::PP version 2.97001"
} }

View File

@@ -4,6 +4,9 @@ author:
- 'Oliver Gorwits <oliver@cpan.org>' - 'Oliver Gorwits <oliver@cpan.org>'
build_requires: build_requires:
Env::Path: '0' Env::Path: '0'
ExtUtils::Config: '0'
ExtUtils::Helpers: '0'
ExtUtils::InstallPaths: '0'
Test::File::ShareDir::Dist: '0' Test::File::ShareDir::Dist: '0'
Test::More: '1.302083' Test::More: '1.302083'
configure_requires: configure_requires:
@@ -19,7 +22,7 @@ name: App-Netdisco
provides: provides:
App::Netdisco: App::Netdisco:
file: lib/App/Netdisco.pm file: lib/App/Netdisco.pm
version: '2.039033' version: '2.040000'
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:
@@ -543,5 +546,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.039033' version: '2.040000'
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.039033'; our $VERSION = '2.040000';
use App::Netdisco::Configuration; use App::Netdisco::Configuration;
=head1 NAME =head1 NAME