diff --git a/Changes b/Changes index c7452dbcf..d598c5a5f 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for GLPI agent -1.5 not released yet +1.5 Wed, 21 Jun 2023 core: * Avoid an error with IO::Socket::SSL error reporting on older platform (CentOS7 confirmed) @@ -90,6 +90,7 @@ inventory: * fix #411: Fix cpu thread on win32 when performance & efficiency cores are present * Updated pci.ids to 2023.06.19 version * Updated usb.ids to 2023.05.17 version +* Bump Inventory task version to 1.13 remoteinventory: * Security fix: CVE-2023-34254 @@ -113,6 +114,7 @@ remoteinventory: * Fix remote hostname for ssh remote inventory run from a win32 agent * Minor optimization by adding OSName caching to avoid recurrent same command request * Don't fallback on ssh if mode has been set to libssh2 only +* Bump RemoteInventory task version to 1.2 netdiscovery/netinventory: * Avoid to record invalid MAC Address from Netbios during netdiscovery task @@ -149,6 +151,7 @@ deploy: * Refacto to add debug * Fix copy & move actions failing under win32 while running as a service * Add unit tests for ActionProcessor +* Bump Deploy task version to 3.0 esx: * Add SERIAL number to virtualmachines as they will be seen in BIOS @@ -156,9 +159,11 @@ esx: in favor of new --path option, added --stdout option * fix #204: Fix wrong encoding * Enhanced vCenter 7.x support +* Bump ESX task version to 2.8 collect: * Better unicode support when looking up registry values +* Bump Collect task version to 2.9 injector: * Support --proxy option or use current user proxy environment if set @@ -166,14 +171,17 @@ injector: proxy-server-plugin: * Fix file storage on windows +* Bump Proxy plugin version to 2.2 toolbox: * Fix Inventory page not displayed when netdiscovery or netinventory tasks are not installed * Default configuration now authorize to update toolbox interface from the UI * Support remotes management and remoteinventory task start +* Bump ToolBox plugin version to 1.1 basic-authentication-server-plugin: * New feature to support basic authentication on embedded http server via a dedicated plugin +* Bump BasicAuthentication plugin version to 1.0 packaging: * Update MacOSX packages to use OpenSSL 3.1.1 & zlib 1.2.13 diff --git a/Makefile.PL b/Makefile.PL index 9f89ca4dc..e79bd58e4 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.5-dev'; +version '1.5'; perl_version '5.008'; authors 'Teclib Editions'; diff --git a/contrib/unix/installer/InstallerVersion.pm b/contrib/unix/installer/InstallerVersion.pm index f31b6af4c..549c838b8 100644 --- a/contrib/unix/installer/InstallerVersion.pm +++ b/contrib/unix/installer/InstallerVersion.pm @@ -1,7 +1,7 @@ package InstallerVersion; -use constant VERSION => "1.5-dev"; +use constant VERSION => "1.6-dev"; use constant DISTRO => "linux"; 1; diff --git a/contrib/windows/glpi-agent-deployment.vbs b/contrib/windows/glpi-agent-deployment.vbs index 1c417fb7a..77512ea3c 100644 --- a/contrib/windows/glpi-agent-deployment.vbs +++ b/contrib/windows/glpi-agent-deployment.vbs @@ -64,12 +64,12 @@ Dim Setup, SetupArchitecture, SetupLocation, SetupNightlyLocation, SetupOptions, ' SetupVersion ' Setup version with the pattern ..[-] ' -SetupVersion = "1.4" +SetupVersion = "1.5" ' 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.5-gitABCDEFGH" +'SetupVersion = "1.6-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 88e765fae..73250a0a9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +glpi-agent (1:1.5-1) unstable; urgency=medium + + * New upstream release 1.5 + + -- Guillaume Bougard Wed, 21 Jun 2023 15:59:07 +0200 + glpi-agent (1:1.4-1) unstable; urgency=medium * New upstream release 1.4 diff --git a/lib/GLPI/Agent/Version.pm b/lib/GLPI/Agent/Version.pm index 290430ace..889119ef3 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.5-dev"; +our $VERSION = "1.5"; 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.5-dev" + "Based on GLPI Agent 1.5" ];