Skip to content

Commit 54ec58f

Browse files
committed
feat: GLPI Agent 1.10 release
1 parent 4cb690b commit 54ec58f

File tree

5 files changed

+20
-7
lines changed

5 files changed

+20
-7
lines changed

Changes

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

3-
1.10 not yet released
3+
1.10 Tue, 09 Jul 2024
44

55
core:
66
* Add support for OAuth2 authentication included in next main GLPI version.
@@ -20,27 +20,34 @@ inventory:
2020
* Update Solaris OS installation date support
2121
* Updated pci.ids to 2024.06.23 version
2222
* Updated usb.ids to 2024.07.04 version
23+
* Bump Inventory task version to 1.17
2324

2425
netdiscovery/netinventory:
2526
* Always send netinventory jobs end messages from runners
2627
* Fixed tasks blocking on windows with core concurrent calls control
2728
* Avoid to expire SSL CA certs cache in threads
29+
* Bump NetDiscovery task version to 6.3
30+
* Bump NetInventory task version to 6.3
2831

2932
deploy:
3033
* For job with P2P enabled, don't use hard-coded 62354 port, but agent httpd-port
3134
configuration to discover listening peer agents.
3235
* For job with P2P enabled, use remote-workers configuration to optimize peers
3336
discovery keeping 10 workers as minimum default.
37+
* Bump Deploy task version to 3.2
3438

3539
esx:
3640
* fix #691: Fix perl error while checking esx configuration template
41+
* Bump ESX task version to 2.11
3742

3843
proxy-server-plugin:
3944
* Enhanced SSL connection cleaning when combined with ssl-server-plugin
45+
* Bump Proxy plugin version to 2.4
4046

4147
ssl-server-plugin:
4248
* Don't use SSL_no_shutdown while closing connection after a fork to fully cleanup
4349
connection on close.
50+
* Bump SSL plugin version to 1.2
4451

4552
injector:
4653
* Add support for OAuth2 authentication

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.10-dev';
17+
version '1.10';
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.9
31+
' @version 1.10
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.9"
68+
SetupVersion = "1.10"
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.10-gitABCDEFGH"
73+
'SetupVersion = "1.11-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.10-1) unstable; urgency=medium
2+
3+
* New upstream release 1.10
4+
5+
-- Guillaume Bougard <[email protected]> Tue, 09 Jul 2024 11:29:50 +0200
6+
17
glpi-agent (1:1.9-1) unstable; urgency=medium
28

39
* New upstream release 1.9

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

0 commit comments

Comments
 (0)