Skip to content

Commit

Permalink
doc: Bump module versions
Browse files Browse the repository at this point in the history
Fix Changelog library Changes file loading for update
  • Loading branch information
g-bougard committed Dec 21, 2023
1 parent 48dd7f6 commit 58dab84
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 7 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ inventory:
* fix #554: Network inventory may be missing on linux with faulty default route parsing
* Add network speed discovery for wireless network devices on linux
* Fix rpm software summary encoding for rpm-based software inventory
* Bump Inventory task version to 1.15

remoteinventory:
* Fix connection timeout API to support timeout update
Expand All @@ -41,6 +42,7 @@ remoteinventory:
* Fix typo in ConnectTimeout option use with ssh command mode
* Add '--stricthostkeychecking' option to glpi-remote, supported values are the same
than StrictHostKeyChecking ssh option (see ssh_config man page), default to 'accept-new'.
* Bump RemoteInventory task version to 1.4

netdiscovery/netinventory:
* Enhanced Toshiba printers support
Expand All @@ -49,18 +51,22 @@ netdiscovery/netinventory:
RemoteInventory after a successful scan requested by ToolBox
* Fix possible concurrency error leading to an unrecoverable blocked task
* Use new local target API to set expected saving folder
* Bump NetDiscovery task version to 6.1
* Bump NetInventory task version to 6.1

esx:
* Fix first connection timeout support
* Added --timeout option support to glpi-esx
* Fix wrong 'n/a' ko status report to tasks managed by GLPI Inventory plugin
* Bump ESX task version to 2.10

toolbox:
* fix #533: Fix Toolbox export buttons in inventory results
* Fix wrong remote inventory results when using a short timeout for quickier detection
* Handle agent folder as vardir folder when agent is running as a service
* Fix netscan task fails to submit remote inventories with JSON protocol
* Fix locking on logger IPC events when running netscan for server target on win32
* Bump ToolBox plugin version to 1.3

injector:
* fix #537: Make -x, --xml-ua & --json-ua options equivalent and update help text
Expand Down
2 changes: 1 addition & 1 deletion lib/GLPI/Agent/HTTP/Server/ToolBox.pm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ use GLPI::Agent::Tools;
use GLPI::Agent::Tools::Hostname;
use GLPI::Agent::Tools::UUID;

our $VERSION = "1.2";
our $VERSION = "1.3";

my %api_match = (
version => \&_version,
Expand Down
2 changes: 1 addition & 1 deletion lib/GLPI/Agent/Task/ESX/Version.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package GLPI::Agent::Task::ESX::Version;
use strict;
use warnings;

use constant VERSION => "2.9";
use constant VERSION => "2.10";

1;
2 changes: 1 addition & 1 deletion lib/GLPI/Agent/Task/Inventory/Version.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package GLPI::Agent::Task::Inventory::Version;
use strict;
use warnings;

use constant VERSION => "1.14";
use constant VERSION => "1.15";

1;
2 changes: 1 addition & 1 deletion lib/GLPI/Agent/Task/NetDiscovery/Version.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package GLPI::Agent::Task::NetDiscovery::Version;
use strict;
use warnings;

use constant VERSION => "6.0";
use constant VERSION => "6.1";

1;
2 changes: 1 addition & 1 deletion lib/GLPI/Agent/Task/NetInventory/Version.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package GLPI::Agent::Task::NetInventory::Version;
use strict;
use warnings;

use constant VERSION => "6.0";
use constant VERSION => "6.1";

1;
2 changes: 1 addition & 1 deletion lib/GLPI/Agent/Task/RemoteInventory/Version.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ package GLPI::Agent::Task::RemoteInventory::Version;
use strict;
use warnings;

use constant VERSION => "1.3";
use constant VERSION => "1.4";

1;
2 changes: 1 addition & 1 deletion tools/Changelog.pm
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ sub new {
if (@{$self->{_last_lines}}) {
push @{$self->{_last_lines}}, $line;
} elsif (!defined($section)) {
$section = "" if $line =~ /not released yet/;
$section = "" if $line =~ /not yet released|not release yet/;
push @{$self->{_first_lines}}, $line;
} elsif ($line =~ /^$/) {
$section = "";
Expand Down

0 comments on commit 58dab84

Please sign in to comment.