From d0ea5e9e1c6639760cc2d3eaa2019cddf21e09d8 Mon Sep 17 00:00:00 2001 From: Pierre Goiffon Date: Tue, 30 Mar 2021 10:28:59 +0200 Subject: [PATCH] =?UTF-8?q?N=C2=B02330=20Change=20MySQL=20min=20version=20?= =?UTF-8?q?Reasons=20:=20*=20the=20min=20version=20was=20announced=20on=20?= =?UTF-8?q?a=20public=20wiki=20page=20(https://www.itophub.io/wiki/page=3F?= =?UTF-8?q?id=3D2=5F7=5F0%3Ainstall%3Ainstalling=5Fitop#software=5Frequire?= =?UTF-8?q?ments)=20*=20MySQL=205.6=20end=20of=20life=20was=20reached=20in?= =?UTF-8?q?=20feb.=202021=20(https://endoflife.software/applications/datab?= =?UTF-8?q?ases/mysql)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- setup/setuputils.class.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/setuputils.class.inc.php b/setup/setuputils.class.inc.php index d9c0ac2f9..9757043c6 100644 --- a/setup/setuputils.class.inc.php +++ b/setup/setuputils.class.inc.php @@ -94,7 +94,7 @@ class SetupUtils { // -- Minimum versions (requirements : forbids installation if not met) const PHP_MIN_VERSION = '7.1.3'; // 7 will be supported until the end of 2019 (see http://php.net/supported-versions.php) - const MYSQL_MIN_VERSION = '5.6.0'; // 5.6 to have fulltext on InnoDB for Tags fields (N°931) + const MYSQL_MIN_VERSION = '5.7.0'; // 5.6 is no longer supported const MYSQL_NOT_VALIDATED_VERSION = ''; // MySQL 8 is now OK (N°2010 in 2.7.0) but has no query cache so mind the perf on large volumes ! // -- versions that will be the minimum in next iTop major release (warning if not met)