diff --git a/Changes b/Changes index fe758b137..7d5fb7e93 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for GLPI agent -1.10 not yet released +1.10 Tue, 09 Jul 2024 core: * Add support for OAuth2 authentication included in next main GLPI version. @@ -20,27 +20,34 @@ inventory: * Update Solaris OS installation date support * Updated pci.ids to 2024.06.23 version * Updated usb.ids to 2024.07.04 version +* Bump Inventory task version to 1.17 netdiscovery/netinventory: * Always send netinventory jobs end messages from runners * Fixed tasks blocking on windows with core concurrent calls control * Avoid to expire SSL CA certs cache in threads +* Bump NetDiscovery task version to 6.3 +* Bump NetInventory task version to 6.3 deploy: * For job with P2P enabled, don't use hard-coded 62354 port, but agent httpd-port configuration to discover listening peer agents. * For job with P2P enabled, use remote-workers configuration to optimize peers discovery keeping 10 workers as minimum default. +* Bump Deploy task version to 3.2 esx: * fix #691: Fix perl error while checking esx configuration template +* Bump ESX task version to 2.11 proxy-server-plugin: * Enhanced SSL connection cleaning when combined with ssl-server-plugin +* Bump Proxy plugin version to 2.4 ssl-server-plugin: * Don't use SSL_no_shutdown while closing connection after a fork to fully cleanup connection on close. +* Bump SSL plugin version to 1.2 injector: * Add support for OAuth2 authentication diff --git a/Makefile.PL b/Makefile.PL index db5ace3b7..2f6aab473 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -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.10-dev'; +version '1.10'; perl_version '5.008'; authors 'Teclib Editions'; diff --git a/contrib/windows/glpi-agent-deployment.vbs b/contrib/windows/glpi-agent-deployment.vbs index 186e25f13..7e8e102b5 100644 --- a/contrib/windows/glpi-agent-deployment.vbs +++ b/contrib/windows/glpi-agent-deployment.vbs @@ -28,7 +28,7 @@ ' ------------------------------------------------------------------------ ' ' @package GLPI Agent -' @version 1.9 +' @version 1.10 ' @file contrib/windows/glpi-agent-deployment.vbs ' @author(s) Benjamin Accary ' Christophe Pujol @@ -65,12 +65,12 @@ Dim Setup, SetupArchitecture, SetupLocation, SetupNightlyLocation, SetupOptions, ' SetupVersion ' Setup version with the pattern ..[-] ' -SetupVersion = "1.9" +SetupVersion = "1.10" ' 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.10-gitABCDEFGH" +'SetupVersion = "1.11-gitABCDEFGH" ' SetupLocation ' Depending on your needs or your environment, you can use either a HTTP or diff --git a/debian/changelog b/debian/changelog index e98275ddd..21e7a7e93 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +glpi-agent (1:1.10-1) unstable; urgency=medium + + * New upstream release 1.10 + + -- Guillaume Bougard Tue, 09 Jul 2024 11:29:50 +0200 + glpi-agent (1:1.9-1) unstable; urgency=medium * New upstream release 1.9 diff --git a/lib/GLPI/Agent/Version.pm b/lib/GLPI/Agent/Version.pm index 374514789..5598603c9 100644 --- a/lib/GLPI/Agent/Version.pm +++ b/lib/GLPI/Agent/Version.pm @@ -3,7 +3,7 @@ package GLPI::Agent::Version; use strict; use warnings; -our $VERSION = "1.10-dev"; +our $VERSION = "1.10"; our $PROVIDER = "GLPI"; our $COMMENTS = []; @@ -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.10-dev" + "Based on GLPI Agent 1.10" ];