diff --git a/CHANGELOG.md b/CHANGELOG.md index efcd2a8d0..c6beedcf1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.1.1-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + ## [3.1.0-beta] - 2024-02-22 ### Added - Cache: Added a Page Cache module. [#35042] @@ -396,6 +400,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First public alpha release +[3.1.1-alpha]: https://github.com/Automattic/jetpack-boost-production/compare/3.1.0-beta...3.1.1-alpha [3.1.0-beta]: https://github.com/Automattic/jetpack-boost-production/compare/3.0.2...3.1.0-beta [3.0.2]: https://github.com/Automattic/jetpack-boost-production/compare/3.0.1...3.0.2 [3.0.1]: https://github.com/Automattic/jetpack-boost-production/compare/3.0.0...3.0.1 diff --git a/app/modules/cache/pre-wordpress/Boost_Cache.php b/app/modules/cache/pre-wordpress/Boost_Cache.php index 1ad72730e..b249135e1 100644 --- a/app/modules/cache/pre-wordpress/Boost_Cache.php +++ b/app/modules/cache/pre-wordpress/Boost_Cache.php @@ -120,6 +120,12 @@ public function ob_start() { */ public function ob_callback( $buffer ) { if ( strlen( $buffer ) > 0 && $this->request->is_cacheable() ) { + + if ( false === stripos( $buffer, '' ) ) { + Logger::debug( 'Closing HTML tag not found, not caching' ); + return $buffer; + } + $result = $this->storage->write( $this->request->get_uri(), $this->request->get_parameters(), $buffer ); if ( is_wp_error( $result ) ) { // phpcs:ignore Generic.CodeAnalysis.EmptyStatement.DetectedIf diff --git a/composer.json b/composer.json index 5f8414817..99b3b5050 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "Boost your WordPress site's performance, from the creators of Jetpack", "type": "library", "license": "GPL-2.0-or-later", - "version": "3.1.0-beta", + "version": "3.1.1-alpha", "authors": [ { "name": "Automattic, Inc.", @@ -73,7 +73,7 @@ "platform": { "ext-intl": "0.0.0" }, - "autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta", + "autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha", "allow-plugins": { "roots/wordpress-core-installer": true, "automattic/jetpack-autoloader": true, diff --git a/jetpack-boost.php b/jetpack-boost.php index 7aa0f6c00..749122f6f 100644 --- a/jetpack-boost.php +++ b/jetpack-boost.php @@ -9,7 +9,7 @@ * Plugin Name: Jetpack Boost * Plugin URI: https://jetpack.com/boost * Description: Boost your WordPress site's performance, from the creators of Jetpack - * Version: 3.1.0-beta + * Version: 3.1.1-alpha * Author: Automattic - Jetpack Site Speed team * Author URI: https://jetpack.com/boost/ * License: GPL-2.0+ @@ -29,7 +29,7 @@ die; } -define( 'JETPACK_BOOST_VERSION', '3.1.0-beta' ); +define( 'JETPACK_BOOST_VERSION', '3.1.1-alpha' ); define( 'JETPACK_BOOST_SLUG', 'jetpack-boost' ); if ( ! defined( 'JETPACK_BOOST_CLIENT_NAME' ) ) { diff --git a/vendor/autoload.php b/vendor/autoload.php index ea414a650..7ea5d45ca 100644 --- a/vendor/autoload.php +++ b/vendor/autoload.php @@ -22,4 +22,4 @@ require_once __DIR__ . '/composer/autoload_real.php'; -return ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta::getLoader(); +return ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha::getLoader(); diff --git a/vendor/autoload_packages.php b/vendor/autoload_packages.php index bf8043885..7609c8b63 100644 --- a/vendor/autoload_packages.php +++ b/vendor/autoload_packages.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 4f4d7b41a..685a23685 100644 --- a/vendor/composer/autoload_real.php +++ b/vendor/composer/autoload_real.php @@ -2,7 +2,7 @@ // autoload_real.php @generated by Composer -class ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta +class ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha { private static $loader; @@ -24,17 +24,17 @@ public static function getLoader() require __DIR__ . '/platform_check.php'; - spl_autoload_register(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); - spl_autoload_unregister(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha', 'loadClassLoader')); require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha::getInitializer($loader)); $loader->setClassMapAuthoritative(true); $loader->register(true); - $filesToLoad = \Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta::$files; + $filesToLoad = \Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha::$files; $requireFile = \Closure::bind(static function ($fileIdentifier, $file) { if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) { $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true; diff --git a/vendor/composer/autoload_static.php b/vendor/composer/autoload_static.php index d706ffabd..6f6a8e167 100644 --- a/vendor/composer/autoload_static.php +++ b/vendor/composer/autoload_static.php @@ -4,7 +4,7 @@ namespace Composer\Autoload; -class ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta +class ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha { public static $files = array ( '3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php', @@ -375,10 +375,10 @@ class ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_b public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta::$prefixDirsPsr4; - $loader->prefixesPsr0 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta::$prefixesPsr0; - $loader->classMap = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha::$prefixDirsPsr4; + $loader->prefixesPsr0 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha::$prefixesPsr0; + $loader->classMap = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha::$classMap; }, null, ClassLoader::class); } diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index d11f68245..35ec0e101 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -1,8 +1,8 @@ array( 'name' => 'automattic/jetpack-boost', - 'pretty_version' => '3.1.0-beta', - 'version' => '3.1.0.0-beta', + 'pretty_version' => '3.1.1-alpha', + 'version' => '3.1.1.0-alpha', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', @@ -47,8 +47,8 @@ 'dev_requirement' => false, ), 'automattic/jetpack-boost' => array( - 'pretty_version' => '3.1.0-beta', - 'version' => '3.1.0.0-beta', + 'pretty_version' => '3.1.1-alpha', + 'version' => '3.1.1.0-alpha', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', diff --git a/vendor/composer/jetpack_autoload_classmap.php b/vendor/composer/jetpack_autoload_classmap.php index 6fe62b7c9..06f41642e 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -851,439 +851,439 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-wp-js-data-sync/src/schema/types/class-type-void.php' ), 'Automattic\\Jetpack_Boost\\Admin\\Admin' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/admin/class-admin.php' ), 'Automattic\\Jetpack_Boost\\Admin\\Config' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/admin/class-config.php' ), 'Automattic\\Jetpack_Boost\\Admin\\Regenerate_Admin_Notice' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/admin/class-regenerate-admin-notice.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Changes_Page_Output' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/contracts/Changes_Output.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Has_Activate' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/contracts/Has_Activate.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Has_Deactivate' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/contracts/Has_Deactivate.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Has_Setup' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/contracts/Has_Setup.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Has_Slug' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/contracts/Has_Slug.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Is_Always_On' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/contracts/Is_Always_On.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Pluggable' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/contracts/Pluggable.php' ), 'Automattic\\Jetpack_Boost\\Data_Sync\\Critical_CSS_Meta_Entry' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/data-sync/Critical_CSS_Meta_Entry.php' ), 'Automattic\\Jetpack_Boost\\Data_Sync\\Getting_Started_Entry' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/data-sync/Getting_Started_Entry.php' ), 'Automattic\\Jetpack_Boost\\Data_Sync\\Mergeable_Array_Entry' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/data-sync/Mergeable_Array_Entry.php' ), 'Automattic\\Jetpack_Boost\\Data_Sync\\Minify_Excludes_State_Entry' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/data-sync/Minify_Excludes_State_Entry.php' ), 'Automattic\\Jetpack_Boost\\Data_Sync\\Modules_State_Entry' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/data-sync/Modules_State_Entry.php' ), 'Automattic\\Jetpack_Boost\\Features\\Setup_Prompt\\Setup_Prompt' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/features/setup-prompt/Setup_Prompt.php' ), 'Automattic\\Jetpack_Boost\\Jetpack_Boost' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/class-jetpack-boost.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Analytics' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/class-analytics.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Assets' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/class-assets.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Boost_Health' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/Boost_Health.php' ), 'Automattic\\Jetpack_Boost\\Lib\\CLI' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/class-cli.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Collection' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/class-collection.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Connection' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/class-connection.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Admin_Bar_Compatibility' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/Admin_Bar_Compatibilty.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Critical_CSS_Invalidator' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/Critical_CSS_Invalidator.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Critical_CSS_State' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/Critical_CSS_State.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Critical_CSS_Storage' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/Critical_CSS_Storage.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Data_Sync_Actions\\Regenerate_CSS' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/data-sync-actions/Regenerate_CSS.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Data_Sync_Actions\\Set_Provider_CSS' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/data-sync-actions/Set_Provider_CSS.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Data_Sync_Actions\\Set_Provider_Error_Dismissed' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/data-sync-actions/Set_Provider_Error_Dismissed.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Data_Sync_Actions\\Set_Provider_Errors' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/data-sync-actions/Set_Provider_Errors.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Display_Critical_CSS' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/Display_Critical_CSS.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Generator' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/Generator.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Regenerate' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/Regenerate.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Source_Providers\\Providers\\Archive_Provider' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/source-providers/providers/Archive_Provider.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Source_Providers\\Providers\\Post_ID_Provider' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/source-providers/providers/Post_ID_Provider.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Source_Providers\\Providers\\Provider' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/source-providers/providers/Provider.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Source_Providers\\Providers\\Singular_Post_Provider' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/source-providers/providers/Singular_Post_Provider.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Source_Providers\\Providers\\Taxonomy_Provider' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/source-providers/providers/Taxonomy_Provider.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Source_Providers\\Providers\\WP_Core_Provider' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/source-providers/providers/WP_Core_Provider.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Source_Providers\\Source_Providers' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/critical-css/source-providers/Source_Providers.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Debug' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/class-debug.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Environment_Change_Detector' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/Environment_Change_Detector.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Minify' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/class-minify.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Minify\\Concatenate_CSS' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/minify/Concatenate_CSS.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Minify\\Concatenate_JS' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/minify/Concatenate_JS.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Minify\\Config' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/minify/Config.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Minify\\Dependency_Path_Mapping' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/minify/Dependency_Path_Mapping.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Minify\\Utils' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/minify/Utils.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Nonce' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/class-nonce.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Output_Filter' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/class-output-filter.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Premium_Features' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/Premium_Features.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Premium_Pricing' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/Premium_Pricing.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Setup' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/Setup.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Site_Health' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/Site_Health.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Site_Urls' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/class-site-urls.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Status' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/Status.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Storage_Post_Type' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/class-storage-post-type.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Super_Cache_Info' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/Super_Cache_Info.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Viewport' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/lib/class-viewport.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Cache\\Pre_WordPress\\Filesystem_Utils' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/pre-wordpress/Filesystem_Utils.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Image_Guide\\Image_Guide' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/image-guide/Image_Guide.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Image_Guide\\Image_Guide_Proxy' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/image-guide/Image_Guide_Proxy.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Image_Size_Analysis\\Data_Sync\\Image_Size_Analysis_Entry' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/image-size-analysis/data-sync/Image_Size_Analysis_Entry.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Image_Size_Analysis\\Data_Sync\\Image_Size_Analysis_Summary' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/image-size-analysis/data-sync/Image_Size_Analysis_Summary.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Image_Size_Analysis\\Image_Size_Analysis' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/image-size-analysis/Image_Size_Analysis.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Image_Size_Analysis\\Image_Size_Analysis_Fixer' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/image-size-analysis/Image_Size_Analysis_Fixer.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Module' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/Module.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Modules_Index' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/Modules_Index.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Modules_Setup' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/Modules_Setup.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Cloud_CSS\\Cloud_CSS' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/optimizations/cloud-css/Cloud_CSS.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Cloud_CSS\\Cloud_CSS_Followup' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/optimizations/cloud-css/Cloud_CSS_Followup.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Critical_CSS\\CSS_Proxy' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/optimizations/critical-css/CSS_Proxy.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Critical_CSS\\Critical_CSS' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/optimizations/critical-css/Critical_CSS.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Image_CDN\\Image_CDN' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/optimizations/image-cdn/class-image-cdn.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Minify\\Minify_CSS' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/optimizations/minify/class-minify-css.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Minify\\Minify_JS' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/optimizations/minify/class-minify-js.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Render_Blocking_JS\\Render_Blocking_JS' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/optimizations/render-blocking-js/class-render-blocking-js.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Data_Sync\\Page_Cache_Entry' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/data-sync/Page_Cache_Entry.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Data_Sync_Actions\\Clear_Page_Cache' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/data-sync-actions/clear-page-cache.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Data_Sync_Actions\\Run_Setup' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/data-sync-actions/run-setup.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Garbage_Collection' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/Garbage_Collection.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Page_Cache' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/Page_Cache.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Page_Cache_Setup' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/Page_Cache_Setup.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Pre_WordPress\\Boost_Cache' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/pre-wordpress/Boost_Cache.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Pre_WordPress\\Boost_Cache_Settings' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/pre-wordpress/Boost_Cache_Settings.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Pre_WordPress\\Boost_Cache_Utils' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/pre-wordpress/Boost_Cache_Utils.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Pre_WordPress\\Logger' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/pre-wordpress/Logger.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Pre_WordPress\\Request' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/pre-wordpress/Request.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Pre_WordPress\\Storage\\File_Storage' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/pre-wordpress/storage/File_Storage.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Page_Cache\\Pre_WordPress\\Storage\\Storage' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/cache/pre-wordpress/storage/Storage.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Performance_History\\Performance_History' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/performance-history/Performance_History.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Contracts\\Endpoint' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/rest-api/contracts/Endpoint.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Contracts\\Has_Endpoints' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/rest-api/contracts/Has_Endpoints.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Contracts\\Permission' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/rest-api/contracts/Permission.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Endpoints\\Image_Analysis_Action_Fix' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/image-size-analysis/data-sync/Image_Size_Analysis_Action_Fix.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Endpoints\\Image_Size_Analysis_Summary_Action_Paginate' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/image-size-analysis/data-sync/Image_Size_Analysis_Action_Paginate.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Endpoints\\Image_Size_Analysis_Summary_Action_Start' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/modules/image-size-analysis/data-sync/Image_Size_Analysis_Summary_Action_Start.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Endpoints\\List_Site_Urls' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/rest-api/endpoints/List_Site_Urls.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Endpoints\\Update_Cloud_CSS' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/rest-api/endpoints/Update_Cloud_CSS.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Permissions\\Current_User_Admin' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/rest-api/permissions/Current_User_Admin.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Permissions\\Nonce' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/rest-api/permissions/Nonce.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Permissions\\Signed_With_Blog_Token' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/rest-api/permissions/Signed_With_Blog_Token.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\REST_API' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/rest-api/REST_API.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Route' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/rest-api/Route.php' ), 'Automattic\\Jetpack_Boost\\Tests\\Base_Test_Case' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/tests/php/class-base-test-case.php' ), 'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Analytics' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/tests/php/lib/test-class-analytics.php' ), 'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Minify' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/tests/php/lib/test-class-minify.php' ), 'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Viewport' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/tests/php/lib/test-class-viewport.php' ), 'Container' => array( @@ -1343,7 +1343,7 @@ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-path-processor.php' ), 'Performance_History_Entry' => array( - 'version' => '3.1.0.0-beta', + 'version' => '3.1.1.0-alpha', 'path' => $baseDir . '/app/data-sync/Performance_History_Entry.php' ), 'Plugin_Locator' => array( diff --git a/vendor/jetpack-autoloader/class-autoloader-handler.php b/vendor/jetpack-autoloader/class-autoloader-handler.php index 8ab12e9af..792b871e9 100644 --- a/vendor/jetpack-autoloader/class-autoloader-handler.php +++ b/vendor/jetpack-autoloader/class-autoloader-handler.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-autoloader-locator.php b/vendor/jetpack-autoloader/class-autoloader-locator.php index 952213fe9..a9351837c 100644 --- a/vendor/jetpack-autoloader/class-autoloader-locator.php +++ b/vendor/jetpack-autoloader/class-autoloader-locator.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-autoloader.php b/vendor/jetpack-autoloader/class-autoloader.php index 188ec08bf..d5be08d0e 100644 --- a/vendor/jetpack-autoloader/class-autoloader.php +++ b/vendor/jetpack-autoloader/class-autoloader.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-container.php b/vendor/jetpack-autoloader/class-container.php index d243613bc..316c5bea9 100644 --- a/vendor/jetpack-autoloader/class-container.php +++ b/vendor/jetpack-autoloader/class-container.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-hook-manager.php b/vendor/jetpack-autoloader/class-hook-manager.php index 4dbdb4b27..e7db552c1 100644 --- a/vendor/jetpack-autoloader/class-hook-manager.php +++ b/vendor/jetpack-autoloader/class-hook-manager.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-latest-autoloader-guard.php b/vendor/jetpack-autoloader/class-latest-autoloader-guard.php index 111bd85cb..bafccf389 100644 --- a/vendor/jetpack-autoloader/class-latest-autoloader-guard.php +++ b/vendor/jetpack-autoloader/class-latest-autoloader-guard.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-manifest-reader.php b/vendor/jetpack-autoloader/class-manifest-reader.php index b50b368fc..fd9b2ce73 100644 --- a/vendor/jetpack-autoloader/class-manifest-reader.php +++ b/vendor/jetpack-autoloader/class-manifest-reader.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-path-processor.php b/vendor/jetpack-autoloader/class-path-processor.php index 4cb7b1884..943668478 100644 --- a/vendor/jetpack-autoloader/class-path-processor.php +++ b/vendor/jetpack-autoloader/class-path-processor.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-php-autoloader.php b/vendor/jetpack-autoloader/class-php-autoloader.php index 7e7c19264..c40e8142a 100644 --- a/vendor/jetpack-autoloader/class-php-autoloader.php +++ b/vendor/jetpack-autoloader/class-php-autoloader.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-plugin-locator.php b/vendor/jetpack-autoloader/class-plugin-locator.php index abe40ac9b..98386a0c6 100644 --- a/vendor/jetpack-autoloader/class-plugin-locator.php +++ b/vendor/jetpack-autoloader/class-plugin-locator.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-plugins-handler.php b/vendor/jetpack-autoloader/class-plugins-handler.php index c2181328e..ef47b2f59 100644 --- a/vendor/jetpack-autoloader/class-plugins-handler.php +++ b/vendor/jetpack-autoloader/class-plugins-handler.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-shutdown-handler.php b/vendor/jetpack-autoloader/class-shutdown-handler.php index 965d5de6b..e908c75e8 100644 --- a/vendor/jetpack-autoloader/class-shutdown-handler.php +++ b/vendor/jetpack-autoloader/class-shutdown-handler.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-version-loader.php b/vendor/jetpack-autoloader/class-version-loader.php index 2c9629273..57efb8ed6 100644 --- a/vendor/jetpack-autoloader/class-version-loader.php +++ b/vendor/jetpack-autoloader/class-version-loader.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-version-selector.php b/vendor/jetpack-autoloader/class-version-selector.php index cf6ea7181..baa1b883e 100644 --- a/vendor/jetpack-autoloader/class-version-selector.php +++ b/vendor/jetpack-autoloader/class-version-selector.php @@ -5,7 +5,7 @@ * @package automattic/jetpack-autoloader */ -namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_0_beta\al3_0_2; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_1_1_alpha\al3_0_2; // phpcs:ignore