Merge "Bump minimum SQLite version to 3.8.0"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Mon, 11 Mar 2019 20:27:59 +0000 (20:27 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Mon, 11 Mar 2019 20:27:59 +0000 (20:27 +0000)
INSTALL
RELEASE-NOTES-1.33
includes/installer/SqliteInstaller.php

diff --git a/INSTALL b/INSTALL
index b6364e1..f31f753 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -10,7 +10,7 @@ Required software:
 * A SQL server, the following types are supported
 ** MySQL 5.5.8 or higher
 ** PostgreSQL 9.2 or higher
-** SQLite 3.3.7 or higher
+** SQLite 3.8.0 or higher
 ** Oracle 9.0.1 or higher
 ** Microsoft SQL Server 2005 (9.00.1399)
 
index d8879fc..c325419 100644 (file)
@@ -364,7 +364,7 @@ The supported versions are:
 
 * MySQL 5.5.8 or later
 * PostgreSQL 9.2 or later
-* SQLite 3.3.7 or later
+* SQLite 3.8.0 or later
 * Oracle 9.0.1 or later
 * Microsoft SQL Server 2005 (9.00.1399)
 
index aa95438..a8abba9 100644 (file)
@@ -33,7 +33,7 @@ use Wikimedia\Rdbms\DBConnectionError;
  */
 class SqliteInstaller extends DatabaseInstaller {
 
-       public static $minimumVersion = '3.3.7';
+       public static $minimumVersion = '3.8.0';
        protected static $notMiniumumVerisonMessage = 'config-outdated-sqlite';
 
        /**