From 9911e3191cea2e668083b77e8d574c0951c0af4d Mon Sep 17 00:00:00 2001 From: Jim Safley Date: Tue, 18 Jul 2023 12:37:37 -0400 Subject: [PATCH 1/2] Increase DB minimum versions --- application/src/Stdlib/Environment.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/application/src/Stdlib/Environment.php b/application/src/Stdlib/Environment.php index c45cc2f95f..2c935e575a 100644 --- a/application/src/Stdlib/Environment.php +++ b/application/src/Stdlib/Environment.php @@ -14,13 +14,15 @@ class Environment /** * The MySQL minimum version + * @see https://dev.mysql.com/doc/relnotes/mysql/5.7/en/ */ - const MYSQL_MINIMUM_VERSION = '5.6.4'; + const MYSQL_MINIMUM_VERSION = '5.7.9'; /** * The MariaDB minimum version + * @see https://mariadb.com/kb/en/changes-improvements-in-mariadb-10-2/#list-of-all-mariadb-102-releases */ - const MARIADB_MINIMUM_VERSION = '10.0.5'; + const MARIADB_MINIMUM_VERSION = '10.2.6'; /** * The required PHP extensions From 5738eac4e1a966ed218e8924165ec43216884fdb Mon Sep 17 00:00:00 2001 From: Jim Safley Date: Wed, 19 Jul 2023 13:59:59 -0400 Subject: [PATCH 2/2] Update DB minimums in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d4d9b30732..7b0ca9cd59 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ See the [user manual](https://omeka.org/s/docs/user-manual) for more information ### Requirements * Linux * [Apache](https://www.apache.org/) (with [AllowOverride](https://httpd.apache.org/docs/2.4/mod/core.html#allowoverride) set to "All" and [mod_rewrite](http://httpd.apache.org/docs/current/mod/mod_rewrite.html) enabled) -* [MySQL](https://www.mysql.com/) 5.6.4+ (or [MariaDB](https://mariadb.org/) 10.0.5+) +* [MySQL](https://www.mysql.com/) 5.7.9+ (or [MariaDB](https://mariadb.org/) 10.2.6+) * [PHP](https://www.php.net/) 7.4+ (latest stable version preferred, with [PDO](http://php.net/manual/en/intro.pdo.php), [pdo_mysql](http://php.net/manual/en/ref.pdo-mysql.php), and [xml](http://php.net/manual/en/intro.xml.php) extensions installed) ### Generating thumbnails