diff --git a/Changes b/Changes index ecdbcf92..4c4f1024 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,32 @@ +2.043000 - 2019-09-03 + + [NEW FEATURES] + + * #591 domain_suffix can be a list and supports (simple) regexp + * #613 Free Ports works even if the device has rebooted recently + * #621 RADIUS authentication support for users + + [ENHANCEMENTS] + + * #587 #561 update pseudo devices to better support ssh arpnip + * #606 license file reformatted to work better within Github + * #630 display full OUI vendor name in web view + * #633 change Port Free icon to be more accessible + * #638 avoid page reload on admintask data updates + * #640 some documentation fixes + * add PoE on-off icons to legend in Device Ports view + + [BUG FIXES] + + * #610 better MAC addr input sanity checking + * #611 compare IEEE MAC addresses properly + * #622 workaround for changes in Test::Compile + * #624 device layers search should be OR (not AND) + * #625 make sidebar tiny bit wider + * #642 requests to /admin/unknown-thing should get 404 + * handle row.power.power being NULL + * allow stats to run smoothly on ancient Pg 8.4 + 2.042010 - 2019-06-02 [BUG FIXES] diff --git a/META.json b/META.json index e4467c6f..e320a003 100644 --- a/META.json +++ b/META.json @@ -4,7 +4,7 @@ "Oliver Gorwits " ], "dynamic_config" : 1, - "generated_by" : "Module::Build version 0.4229", + "generated_by" : "Module::Build version 0.4224", "license" : [ "bsd" ], @@ -122,7 +122,7 @@ "provides" : { "App::Netdisco" : { "file" : "lib/App/Netdisco.pm", - "version" : "2.042010" + "version" : "2.043000" }, "App::Netdisco::AnyEvent::Nbtstat" : { "file" : "lib/App/Netdisco/AnyEvent/Nbtstat.pm" @@ -816,6 +816,6 @@ "x_IRC" : "irc://irc.freenode.org/#netdisco", "x_MailingList" : "https://lists.sourceforge.net/lists/listinfo/netdisco-users" }, - "version" : "2.042010", - "x_serialization_backend" : "JSON::PP version 4.02" + "version" : "2.043000", + "x_serialization_backend" : "JSON::PP version 2.97001" } diff --git a/META.yml b/META.yml index 7b79c6da..cbaa1cb2 100644 --- a/META.yml +++ b/META.yml @@ -14,7 +14,7 @@ configure_requires: DBIx::Class: '0.082810' Module::Build: '0.42' dynamic_config: 1 -generated_by: 'Module::Build version 0.4229, CPAN::Meta::Converter version 2.150010' +generated_by: 'Module::Build version 0.4224, CPAN::Meta::Converter version 2.150010' license: bsd meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -23,7 +23,7 @@ name: App-Netdisco provides: App::Netdisco: file: lib/App/Netdisco.pm - version: '2.042010' + version: '2.043000' App::Netdisco::AnyEvent::Nbtstat: file: lib/App/Netdisco/AnyEvent/Nbtstat.pm App::Netdisco::Backend::Job: @@ -561,5 +561,5 @@ resources: homepage: http://netdisco.org/ license: http://opensource.org/licenses/bsd-license.php repository: https://github.com/netdisco/netdisco -version: '2.042010' +version: '2.043000' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/lib/App/Netdisco.pm b/lib/App/Netdisco.pm index 3b139a82..c0429616 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.042010'; +our $VERSION = '2.043000'; use App::Netdisco::Configuration; =head1 NAME