From 9cea7a1816f4d8d09a1e1f2aaa9551a87fcd7100 Mon Sep 17 00:00:00 2001 From: Adrien Morais Date: Wed, 28 Aug 2019 11:41:11 +0200 Subject: [PATCH] chore(build): New version released 2.8.29 --- .../centreon-2.8/centreon-2.8.29.rst | 21 +++++++++++++++++++ doc/en/release_notes/centreon-2.8/index.rst | 1 + .../centreon-2.8/centreon-2.8.29.rst | 21 +++++++++++++++++++ doc/fr/release_notes/centreon-2.8/index.rst | 1 + www/install/insertBaseConf.sql | 2 +- .../centreon/Update-DB-2.8.28_to_2.8.29.sql | 2 ++ 6 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 doc/en/release_notes/centreon-2.8/centreon-2.8.29.rst create mode 100644 doc/fr/release_notes/centreon-2.8/centreon-2.8.29.rst create mode 100644 www/install/sql/centreon/Update-DB-2.8.28_to_2.8.29.sql diff --git a/doc/en/release_notes/centreon-2.8/centreon-2.8.29.rst b/doc/en/release_notes/centreon-2.8/centreon-2.8.29.rst new file mode 100644 index 00000000000..2a9bbc0c230 --- /dev/null +++ b/doc/en/release_notes/centreon-2.8/centreon-2.8.29.rst @@ -0,0 +1,21 @@ +################### +Centreon Web 2.8.29 +################### + +Bug Fixes +========= + +* [ACL] Add ACL to select meta-services for service performance (#6534, PR/#7736) +* [Configuration] Add possibility to save service_interleave_factor in Centreon Engine form (PR/#7591) +* [Widget] Fix preferences #7641 (#6988, PR/#7641) + +Security +======== + +* [UI] Add escapeshellarg to nagios_bin binary passed to shell_exec (PR/#7694 closes CVE-2019-13024) + +Others +====== + +* [SQL] Use pearDb (PR/#7668) +* [Generation] Fix requirement (PR/#7703) diff --git a/doc/en/release_notes/centreon-2.8/index.rst b/doc/en/release_notes/centreon-2.8/index.rst index 7b39576b1cc..966b797b9da 100644 --- a/doc/en/release_notes/centreon-2.8/index.rst +++ b/doc/en/release_notes/centreon-2.8/index.rst @@ -35,3 +35,4 @@ Please find here the release notes dedicated to the last 2.8.x version of Centre centreon-2.8.26 centreon-2.8.27 centreon-2.8.28 + centreon-2.8.29 diff --git a/doc/fr/release_notes/centreon-2.8/centreon-2.8.29.rst b/doc/fr/release_notes/centreon-2.8/centreon-2.8.29.rst new file mode 100644 index 00000000000..2a9bbc0c230 --- /dev/null +++ b/doc/fr/release_notes/centreon-2.8/centreon-2.8.29.rst @@ -0,0 +1,21 @@ +################### +Centreon Web 2.8.29 +################### + +Bug Fixes +========= + +* [ACL] Add ACL to select meta-services for service performance (#6534, PR/#7736) +* [Configuration] Add possibility to save service_interleave_factor in Centreon Engine form (PR/#7591) +* [Widget] Fix preferences #7641 (#6988, PR/#7641) + +Security +======== + +* [UI] Add escapeshellarg to nagios_bin binary passed to shell_exec (PR/#7694 closes CVE-2019-13024) + +Others +====== + +* [SQL] Use pearDb (PR/#7668) +* [Generation] Fix requirement (PR/#7703) diff --git a/doc/fr/release_notes/centreon-2.8/index.rst b/doc/fr/release_notes/centreon-2.8/index.rst index 7b39576b1cc..966b797b9da 100644 --- a/doc/fr/release_notes/centreon-2.8/index.rst +++ b/doc/fr/release_notes/centreon-2.8/index.rst @@ -35,3 +35,4 @@ Please find here the release notes dedicated to the last 2.8.x version of Centre centreon-2.8.26 centreon-2.8.27 centreon-2.8.28 + centreon-2.8.29 diff --git a/www/install/insertBaseConf.sql b/www/install/insertBaseConf.sql index b9806d71f56..092025ac052 100644 --- a/www/install/insertBaseConf.sql +++ b/www/install/insertBaseConf.sql @@ -2,7 +2,7 @@ -- Insert version -- -INSERT INTO `informations` (`key` ,`value`) VALUES ('version', '2.8.28'); +INSERT INTO `informations` (`key` ,`value`) VALUES ('version', '2.8.29'); -- -- Contenu de la table `contact` diff --git a/www/install/sql/centreon/Update-DB-2.8.28_to_2.8.29.sql b/www/install/sql/centreon/Update-DB-2.8.28_to_2.8.29.sql new file mode 100644 index 00000000000..be497cf4bf2 --- /dev/null +++ b/www/install/sql/centreon/Update-DB-2.8.28_to_2.8.29.sql @@ -0,0 +1,2 @@ +-- Change version of Centreon +UPDATE `informations` SET `value` = '2.8.29' WHERE CONVERT( `informations`.`key` USING utf8 ) = 'version' AND CONVERT ( `informations`.`value` USING utf8 ) = '2.8.28' LIMIT 1;