From 751099fd7c1ed770814026ab93ede2954720a0d7 Mon Sep 17 00:00:00 2001 From: Jeroen Pfeil Date: Wed, 24 Jul 2024 18:06:09 +0700 Subject: [PATCH] Update the version of the SQLite plugin --- src/Context/FeatureContext.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Context/FeatureContext.php b/src/Context/FeatureContext.php index 8ceea879..4fc5b615 100644 --- a/src/Context/FeatureContext.php +++ b/src/Context/FeatureContext.php @@ -334,7 +334,7 @@ private static function get_behat_internal_variables() { * for use in subsequent WordPress copies */ private static function download_sqlite_plugin( $dir ) { - $download_url = 'https://github.com/WordPress/sqlite-database-integration/archive/refs/tags/v2.1.3.zip'; + $download_url = 'https://github.com/WordPress/sqlite-database-integration/archive/refs/tags/v2.1.11.zip'; $download_location = $dir . '/sqlite-database-integration.zip'; if ( ! is_dir( $dir ) ) { @@ -368,7 +368,7 @@ private static function download_sqlite_plugin( $dir ) { // For the release downloaded from GitHub, the unzipped folder will contain the version number. // We're renaming the folder here for consistency's sake. rename( - $dir . '/sqlite-database-integration-2.1.3/', + $dir . '/sqlite-database-integration-2.1.11/', $dir . '/sqlite-database-integration/' ); }