diff --git a/CHANGELOG b/CHANGELOG index 3cb3122c42c8e007632626f20ad99f0fec18b92b..aa63e817ea1041257c966750e5d34c979b822be7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +## Centreon 2.6.3 + +Bug fixes +========= + +#564: Filter field does not work in service groups monitoring screen +#1000: Services of service groups are dispatched on many pages +#3782: SQL Keyswords +#3783: index_data switch in option form +#3788: Problem with static keywords + + + ## Centreon 2.6.2 Features diff --git a/doc/en/release_notes/centreon-2.6.3.rst b/doc/en/release_notes/centreon-2.6.3.rst new file mode 100644 index 0000000000000000000000000000000000000000..f9e180372548505254483507312a75a68c139b0e --- /dev/null +++ b/doc/en/release_notes/centreon-2.6.3.rst @@ -0,0 +1,25 @@ +============== +Centreon 2.6.3 +============== + + +****** +Notice +****** +If you are upgrading from a version prior to 2.6.0, make sure to go through all the release notes available +`here <http://documentation.centreon.com/docs/centreon/en/latest/release_notes/index.html>`_. + + +********* +CHANGELOG +********* + +Bug fixes +========= + +- #564: Filter field does not work in service groups monitoring screen +- #1000: Services of service groups are dispatched on many pages +- #3782: SQL Keyswords +- #3783: index_data switch in option form +- #3788: Problem with static keywords +- diff --git a/doc/fr/release_notes/centreon-2.6.3.rst b/doc/fr/release_notes/centreon-2.6.3.rst new file mode 100644 index 0000000000000000000000000000000000000000..f9e180372548505254483507312a75a68c139b0e --- /dev/null +++ b/doc/fr/release_notes/centreon-2.6.3.rst @@ -0,0 +1,25 @@ +============== +Centreon 2.6.3 +============== + + +****** +Notice +****** +If you are upgrading from a version prior to 2.6.0, make sure to go through all the release notes available +`here <http://documentation.centreon.com/docs/centreon/en/latest/release_notes/index.html>`_. + + +********* +CHANGELOG +********* + +Bug fixes +========= + +- #564: Filter field does not work in service groups monitoring screen +- #1000: Services of service groups are dispatched on many pages +- #3782: SQL Keyswords +- #3783: index_data switch in option form +- #3788: Problem with static keywords +- diff --git a/install.sh b/install.sh index 07cb7024490544c8d5bd33fb26fefd3096440ab4..ea5b7ff32dfd4acd1e50eda08a49ece87e594b0d 100755 --- a/install.sh +++ b/install.sh @@ -50,7 +50,7 @@ # -- on upgrade, overwrite existing ? backup ? # Define centreon version -version="2.6.2" +version="2.6.3" # Debug #set -x diff --git a/www/install/sql/centreon/Update-DB-2.6.2_to_2.6.3.sql b/www/install/sql/centreon/Update-DB-2.6.2_to_2.6.3.sql new file mode 100644 index 0000000000000000000000000000000000000000..d3a7e3cd153acd8366efce056350f81b996f84b4 --- /dev/null +++ b/www/install/sql/centreon/Update-DB-2.6.2_to_2.6.3.sql @@ -0,0 +1,2 @@ +-- Change version of Centreon +UPDATE `informations` SET `value` = '2.6.3' WHERE CONVERT( `informations`.`key` USING utf8 ) = 'version' AND CONVERT ( `informations`.`value` USING utf8 ) = '2.6.2' LIMIT 1;