enh(vmware-daemon): prepare release of version 3.3.0 with 24.10 connector release (#5220)

REFS: CTOR-876
This commit is contained in:
omercier 2024-10-07 09:32:03 +02:00 committed by GitHub
parent ab7218d3ae
commit 06b1fe2731
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2024-10-10 Olivier Mercier <omercier@centreon.com> - 3.3.0
* Enhancement: add ability to read configuration from JSON file
* Enhancement: add ability to get the VMware credentials from a Centreon
flavoured Hashicorp vault
2022-08-09 Quentin Garnier <qgarnier@centreon.com> - 3.2.5
* Enhancement: add tags in discovery

View File

@ -54,7 +54,7 @@ BEGIN {
use base qw(centreon::vmware::script);
my $VERSION = '3.2.6';
my $VERSION = '3.3.0';
my %handlers = (TERM => {}, HUP => {}, CHLD => {});
my @load_modules = (

View File

@ -45,7 +45,7 @@ sub init_response {
my (%options) = @_;
$manager_response->{code} = 0;
$manager_response->{vmware_connector_version} = '3.2.6';
$manager_response->{vmware_connector_version} = '3.3.0';
$manager_response->{short_message} = 'OK';
$manager_response->{extra_message} = '';
$manager_response->{identity} = $options{identity} if (defined($options{identity}));