From a2bf7bb1107f17439ee7dba66dfd5a100bbb4b8d Mon Sep 17 00:00:00 2001 From: Guillaume Bougard Date: Tue, 24 Sep 2024 11:34:26 +0200 Subject: [PATCH] feat: GLPI Agent 1.11 release --- Changes | 7 ++++++- Makefile.PL | 2 +- contrib/windows/glpi-agent-deployment.vbs | 6 +++--- debian/changelog | 6 ++++++ lib/GLPI/Agent/Version.pm | 4 ++-- 5 files changed, 18 insertions(+), 7 deletions(-) diff --git a/Changes b/Changes index 279770f8c..b7e5143fb 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for GLPI agent -1.11 not yet released +1.11 Tue, 24 Sep 2024 core: * Prevent certificates overwriting during export from Windows Keystore @@ -15,18 +15,23 @@ inventory: * fix #748: Don't include lastloggeduser in hardware section in partial inventory if users section is being deleted after no change detected * Updated pci.ids to 2024.09.20 version +* Bump Inventory task version to 1.18 netdiscovery/netinventory: * Skip Konica printers firmware with "Registered" set as version * Enhanced Hikvision devices support * Updated sysobject.ids +* Bump NetDiscovery task version to 6.4 +* Bump NetInventory task version to 6.4 deploy: * Avoid perl syntax error when running Powershell script from Deploy task on windows +* Bump Deploy task version to 3.3 proxy-server-plugin: * Always evaluate only_local_store to yes when glpi_protocol is set and no server is configured so default required format remains json +* Bump Proxy plugin version to 2.5 packaging: * Update Windows MSI packing building process to use: diff --git a/Makefile.PL b/Makefile.PL index cf349dd95..815624492 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.11-dev'; +version '1.11'; perl_version '5.008'; authors 'Teclib Editions'; diff --git a/contrib/windows/glpi-agent-deployment.vbs b/contrib/windows/glpi-agent-deployment.vbs index f1ccb77cf..3ff745b75 100644 --- a/contrib/windows/glpi-agent-deployment.vbs +++ b/contrib/windows/glpi-agent-deployment.vbs @@ -28,7 +28,7 @@ ' ------------------------------------------------------------------------ ' ' @package GLPI Agent -' @version 1.10 +' @version 1.11 ' @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.10" +SetupVersion = "1.11" ' 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.11-gitABCDEFGH" +'SetupVersion = "1.12-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 21e7a7e93..de8650533 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +glpi-agent (1:1.11-1) unstable; urgency=medium + + * New upstream release 1.11 + + -- Guillaume Bougard Tue, 24 Sep 2024 11:34:26 +0200 + glpi-agent (1:1.10-1) unstable; urgency=medium * New upstream release 1.10 diff --git a/lib/GLPI/Agent/Version.pm b/lib/GLPI/Agent/Version.pm index 339014450..5efc4a628 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.11-dev"; +our $VERSION = "1.11"; 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.11-dev" + "Based on GLPI Agent 1.11" ];