Skip to content

Commit

Permalink
Merge 1.9 release branch into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
g-bougard committed May 28, 2024
2 parents c255e5c + c7233b8 commit 52b6dc5
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 10 deletions.
15 changes: 12 additions & 3 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,27 +1,36 @@
Revision history for GLPI agent

1.9 not yet released
1.9 Tue, 28 May 2024

Inventory:
inventory:
* fix #676: Always include OPERATINGSYSTEM section if SOFTWARES one is in partial
inventory as this is required by GLPI. This fixes issues with full-inventory-postpone
new feature introduced in 1.8 and with --partial glpi-inventory script option.
* fix #673: Fix support of network port type on MacOSX
* fix #675: Enhanced MSSQL database inventory on Windows by discovering installed
instances.
* fix #680: Enhanced disk storage serialnumber support on Windows
* Bump Inventory task version to 1.16

remoteinventory:
* fix special characters handling in passwords
* Bump RemoteInventory task version to 1.5

netdiscovery/netinventory:
* fix #642: Support snmp-retries configuration parameter to set snmp requests
maximum retries in place of the default of 0.
glpi-netdiscovery & glpi-netinventory supports --retries option.
* Bump NetDiscovery task version to 6.2
* Bump NetInventory task version to 6.2

Deploy:
deploy:
* Fix: Avoid possible crash on windows while using WTS for User Interactions
* Bump Deploy task version to 3.1

toolbox:
* fix #582, #596, #671: UTF-8 and special characters are now supported in user and
password for RemoteInventory credentials
* Bump ToolBox plugin version to 1.4

packaging:
* Fix: Call SetDllDirectory system API to help finding provided DLL libraries on windows
Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ include 'Module::AutoInstall';
abstract 'GLPI unified Agent for UNIX, Linux, Windows and MacOSX';
license 'gpl';
repository 'https://github.com/glpi-project/glpi-agent';
version '1.9-dev';
version '1.9';
perl_version '5.008';
authors 'Teclib Editions';

Expand Down
6 changes: 3 additions & 3 deletions contrib/windows/glpi-agent-deployment.vbs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
' ------------------------------------------------------------------------
'
' @package GLPI Agent
' @version 1.8
' @version 1.9
' @file contrib/windows/glpi-agent-deployment.vbs
' @author(s) Benjamin Accary <[email protected]>
' Christophe Pujol <[email protected]>
Expand Down Expand Up @@ -65,12 +65,12 @@ Dim Setup, SetupArchitecture, SetupLocation, SetupNightlyLocation, SetupOptions,
' SetupVersion
' Setup version with the pattern <major>.<minor>.<release>[-<package>]
'
SetupVersion = "1.8"
SetupVersion = "1.9"

' When using a nightly built version, uncomment the following SetupVersion definition line
' replacing gitABCDEFGH with the most recent git revision found on the nightly builds site
' In that case, SetupNightlyLocation will be selected as location in place of SetupLocation
'SetupVersion = "1.9-gitABCDEFGH"
'SetupVersion = "1.10-gitABCDEFGH"

' SetupLocation
' Depending on your needs or your environment, you can use either a HTTP or
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
glpi-agent (1:1.9-1) unstable; urgency=medium

* New upstream release 1.9

-- Guillaume Bougard <[email protected]> Tue, 28 May 2024 10:52:08 +0200

glpi-agent (1:1.8-1) unstable; urgency=medium

* New upstream release 1.8
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.3";
our $VERSION = "1.4";

my %api_match = (
version => \&_version,
Expand Down
4 changes: 2 additions & 2 deletions lib/GLPI/Agent/Version.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package GLPI::Agent::Version;
use strict;
use warnings;

our $VERSION = "1.9-dev";
our $VERSION = "1.9";
our $PROVIDER = "GLPI";
our $COMMENTS = [];

Expand Down Expand Up @@ -31,5 +31,5 @@ agent issue is reported.
One very useful information should be first defined like in that example:
our $COMMENTS = [
"Based on GLPI Agent 1.9-dev"
"Based on GLPI Agent 1.9"
];

0 comments on commit 52b6dc5

Please sign in to comment.