Skip to content

Commit 7bb1d85

Browse files
authored
Update version to v2.2.0 (#181)
Here's the changelog: - The plugin now requires PHP 7.2 or newer. - The plugin now supports PHP 8.4. - The plugin now requires only PDO and PDO SQLite. The SQLite3 PHP extension is no longer required. - Added support for information schema queries with `WHERE`, `ORDER BY`, and `AS`. - Fixed error when a column name equals a keyword name (e.g., a column named `timestamp`). - New SQLite driver for advanced MySQL compatibility (experimental): - The new driver can be enabled using `define( 'WP_SQLITE_AST_DRIVER', true );`. - Advanced support of the MySQL syntax. - Advanced support for subqueries. - Advanced support for `UNION` and `UNION ALL` operators. - Advanced support for `SHOW` and `DESCRIBE` statements. - Advanced support for `INFORMATION_SCHEMA` tables. - Advanced support for `TEMPORARY` tables. - Advanced support for table administration statements (`TRUNCATE`, `ANALYZE`, `CHECK` `OPTIMIZE`, `REPAIR`). - Support for `STRICT_TRANS_TABLES` and `STRICT_ALL_TABLES` SQL modes. - Support for `NO_BACKSLASH_ESCAPES` SQL mode. - Support for `USE <database>` statement for the main database and `INFORMATION_SCHEMA`. - Automatic migration of databases created with the legacy driver. - The driver is tested against the WordPress PHPUnit test suite, passing most of the tests. - The driver requires SQLite 3.37.0 or newer.
1 parent 4cfe524 commit 7bb1d85

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

load.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: SQLite Database Integration
44
* Description: SQLite database driver drop-in.
55
* Author: The WordPress Team
6-
* Version: 2.1.17-alpha
6+
* Version: 2.2.0
77
* Requires PHP: 7.2
88
* Textdomain: sqlite-database-integration
99
*

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Contributors: wordpressdotorg, aristath, janjakes, zieladam, berislav.grgic
44
Requires at least: 6.4
55
Tested up to: 6.6.1
66
Requires PHP: 7.2
7-
Stable tag: 2.1.17-alpha
7+
Stable tag: 2.2.0
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
1010
Tags: performance, database

version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
*
66
* This constant needs to be updated on plugin release!
77
*/
8-
define( 'SQLITE_DRIVER_VERSION', '2.1.17-alpha' );
8+
define( 'SQLITE_DRIVER_VERSION', '2.2.0' );

0 commit comments

Comments
 (0)