Skip to content

Commit c5d46ac

Browse files
committed
feat: GLPI Agent 1.13 release
1 parent 816b24d commit c5d46ac

File tree

5 files changed

+19
-7
lines changed

5 files changed

+19
-7
lines changed

Changes

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

3-
1.13 not yet released
3+
1.13 Thu, 13 Mar 2025
44

55
core:
66
* fix #851: glpi-agent should also try to request CONTACT after GLPI 10+ answer on PROLOG
@@ -22,10 +22,12 @@ inventory:
2222
* PR #869: Fix Proxmox/LXC memory conversion
2323
* fix #868: Support SentinelOne Agent as AV on Windows Server
2424
* Updated pci.ids to 2025.03.09 version
25+
* Bump Inventory task version to 1.20
2526

2627
remoteinventory:
2728
* Add "itemtype" configuration support to handle requirement for servers supporting genericity
2829
like GLPI 11+. Remark: This option is shared with inventory task.
30+
* Bump RemoteInventory task version to 1.7
2931

3032
netdiscovery/netinventory:
3133
* PR #836 from @eduardomozart: Enhanced HP wireless printers by reporting wifi ports
@@ -34,13 +36,17 @@ netdiscovery/netinventory:
3436
* Fix switch known macaddresses analysis
3537
* fix #870: Add support for TP-Link Omada linux appliances
3638
* Updated sysobject.ids
39+
* Bump NetDiscovery task version to 6.6
40+
* Bump NetInventory task version to 6.6
3741

3842
deploy:
3943
* fix #854: Deploy task was not run when forced via httpd interface
44+
* Bump Deploy task version to 3.5
4045

4146
esx:
4247
* Add "esx-itemtype" configuration support to handle requirement for servers supporting genericity
4348
like GLPI 11+.
49+
* Bump ESX task version to 2.13
4450

4551
packaging:
4652
* Update Windows packaging to use:

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.13-dev';
17+
version '1.13';
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.12
31+
' @version 1.13
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.12"
68+
SetupVersion = "1.13"
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.13-gitABCDEFGH"
73+
'SetupVersion = "1.14-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.13-1) unstable; urgency=medium
2+
3+
* New upstream release 1.13
4+
5+
-- Guillaume Bougard <[email protected]> Thu, 13 Mar 2025 16:37:47 +0100
6+
17
glpi-agent (1:1.12-1) unstable; urgency=medium
28

39
* New upstream release 1.12

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.13-dev";
6+
our $VERSION = "1.13";
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.13-dev"
34+
"Based on GLPI Agent 1.13"
3535
];

0 commit comments

Comments
 (0)