diff --git a/Changes b/Changes index bacf4bff..1693754d 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,25 @@ +2.042009 - 2019-05-30 + + [ENHANCEMENTS] + + * #572 allow setting some pseudo device info such as location, contact + * #573 support for build within intellij IDE + * #585 change default for check_userlog to be false (fewer popup notifications) + * #586 do not show poller performance rows for still running jobs + * #590, #600 remove DBIx::Class::Schema::Loader remnants + * improve documentation for OpenSuSE installation + * enable tests on Perl 5.30 + + [BUG FIXES] + + * #571 tests should not use user local config + * #576 HTML template fixups + * #577 fix bug related to hostnames comprised a-f only + * #581 skip storing and displaying fabricated vlan 0 + * #584 fix for case where port has no corresponding properties row + * #589 only show link with highest agg speed if map links between two devices are asymmetric + * #594, #595, #596 fixes to DB schema PKs and defaults, and documentation + 2.042008 - 2019-04-30 [ENHANCEMENTS] diff --git a/META.json b/META.json index 9bbca8d9..0d4de35a 100644 --- a/META.json +++ b/META.json @@ -81,6 +81,7 @@ "Plack::Middleware::Expires" : "0.03", "Plack::Middleware::ReverseProxy" : "0.15", "Pod::Usage" : "0", + "Regexp::Common" : "2017060201", "Role::Tiny" : "1.002005", "SNMP::Info" : "3.68", "SQL::Abstract" : "1.85", @@ -120,7 +121,7 @@ "provides" : { "App::Netdisco" : { "file" : "lib/App/Netdisco.pm", - "version" : "2.042008" + "version" : "2.042009" }, "App::Netdisco::AnyEvent::Nbtstat" : { "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" @@ -803,7 +804,7 @@ }, "homepage" : "http://netdisco.org/", "license" : [ - "http://opensource.org/licenses/BSD-3-Clause" + "http://opensource.org/licenses/bsd-license.php" ], "repository" : { "url" : "https://github.com/netdisco/netdisco" @@ -811,6 +812,6 @@ "x_IRC" : "irc://irc.freenode.org/#netdisco", "x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users" }, - "version" : "2.042008", - "x_serialization_backend" : "JSON::PP version 4.02" + "version" : "2.042009", + "x_serialization_backend" : "JSON::PP version 2.97001" } diff --git a/META.yml b/META.yml index 85b0b3ac..ca72ef0d 100644 --- a/META.yml +++ b/META.yml @@ -23,7 +23,7 @@ name: App-Netdisco provides: App::Netdisco: file: lib/App/Netdisco.pm - version: '2.042008' + version: '2.042009' App::Netdisco::AnyEvent::Nbtstat: file: lib/App/Netdisco/AnyEvent/Nbtstat.pm App::Netdisco::Backend::Job: @@ -525,6 +525,7 @@ requires: Plack::Middleware::Expires: '0.03' Plack::Middleware::ReverseProxy: '0.15' Pod::Usage: '0' + Regexp::Common: '2017060201' Role::Tiny: '1.002005' SNMP::Info: '3.68' SQL::Abstract: '1.85' @@ -555,7 +556,7 @@ resources: MailingList: https://lists.sourceforge.net/lists/listinfo/netdisco-users bugtracker: https://github.com/netdisco/netdisco/issues homepage: http://netdisco.org/ - license: http://opensource.org/licenses/BSD-3-Clause + license: http://opensource.org/licenses/bsd-license.php repository: https://github.com/netdisco/netdisco -version: '2.042008' +version: '2.042009' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/lib/App/Netdisco.pm b/lib/App/Netdisco.pm index ff55f853..76210f80 100644 --- a/lib/App/Netdisco.pm +++ b/lib/App/Netdisco.pm @@ -4,7 +4,7 @@ use strict; use warnings; use 5.010_000; -our $VERSION = '2.042008'; +our $VERSION = '2.042009'; use App::Netdisco::Configuration; =head1 NAME