Skip to content

Commit 338443f

Browse files
committed
feat: GLPI Agent 1.14 release
1 parent 3a33046 commit 338443f

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

Changes

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Revision history for GLPI agent
22

3-
1.14 not yet released
3+
1.14 Thu, 17 Apr 2025
44

55
core:
66
* Refacto GLPI::Agent::Config to use generic defaults where necessary
@@ -17,6 +17,7 @@ inventory:
1717
on a no more available account
1818
* Fix PostgreSQL database inventory on windows
1919
* Updated usb.ids to 2025.04.01 version
20+
* Bump Inventory task version to 1.21
2021

2122
netdiscovery/netinventory:
2223
* fix #840: Add Snom phones support with "snmp-advanced-support.cfg" file specific configuration
@@ -29,10 +30,13 @@ netdiscovery/netinventory:
2930
* fix #818: Also detect HP printers on private OID
3031
* Enhanced HP storages and printers support
3132
* Updated sysobject.ids
33+
* Bump NetDiscovery task version to 6.7
34+
* Bump NetInventory task version to 6.7
3235

3336
collect:
3437
* Fix REG_MULTI_SZ registry value type support
3538
* Enhanced CSRF access denied support
39+
* Bump Collect task version to 2.11
3640

3741
packaging:
3842
* Default etc/snmp-advanced-support.cfg now included in packages

Makefile.PL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ include 'Module::AutoInstall';
1414
abstract 'GLPI unified Agent for UNIX, Linux, Windows and MacOSX';
1515
license 'gpl';
1616
repository 'https://github.com/glpi-project/glpi-agent';
17-
version '1.14-dev';
17+
version '1.14';
1818
perl_version '5.008';
1919
authors 'Teclib Editions';
2020

contrib/windows/glpi-agent-deployment.vbs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
' ------------------------------------------------------------------------
2929
'
3030
' @package GLPI Agent
31-
' @version 1.13
31+
' @version 1.14
3232
' @file contrib/windows/glpi-agent-deployment.vbs
3333
' @author(s) Benjamin Accary <[email protected]>
3434
' Christophe Pujol <[email protected]>
@@ -65,12 +65,12 @@ Dim Setup, SetupArchitecture, SetupLocation, SetupNightlyLocation, SetupOptions,
6565
' SetupVersion
6666
' Setup version with the pattern <major>.<minor>.<release>[-<package>]
6767
'
68-
SetupVersion = "1.13"
68+
SetupVersion = "1.14"
6969

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

7575
' SetupLocation
7676
' Depending on your needs or your environment, you can use either a HTTP or

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
glpi-agent (1:1.14-1) unstable; urgency=medium
2+
3+
* New upstream release 1.14
4+
5+
-- Guillaume Bougard <[email protected]> Thu, 17 Apr 2025 12:04:51 +0200
6+
17
glpi-agent (1:1.13-1) unstable; urgency=medium
28

39
* New upstream release 1.13

lib/GLPI/Agent/Version.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package GLPI::Agent::Version;
33
use strict;
44
use warnings;
55

6-
our $VERSION = "1.14-dev";
6+
our $VERSION = "1.14";
77
our $PROVIDER = "GLPI";
88
our $COMMENTS = [];
99

@@ -31,5 +31,5 @@ agent issue is reported.
3131
One very useful information should be first defined like in that example:
3232
3333
our $COMMENTS = [
34-
"Based on GLPI Agent 1.14-dev"
34+
"Based on GLPI Agent 1.14"
3535
];

0 commit comments

Comments
 (0)