diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f653a5f6..81cbfc58b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,23 +5,17 @@ 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.5.0-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [3.5.0] - 2024-09-25 ### Changed -- Boost: show a simplified getting started page if the pricing is not available -- Boost: Skip the pricing page if the site is private, just like if offline -- Updated package dependencies. +- General: Show a simplified getting started page if the pricing is not available [#39526] +- General: Skip the pricing page if the site is private, just like if offline [#39523] ### Removed -- Boost: removed WP Super Cache promos from settings page as well as related code -- Connection: Removed deprecated method features_available -- Connection: Removed features_enabled deprecated method +- General: Removed WP Super Cache promos from settings page as well as related code [#39202] ### Fixed -- Compatibility: Ensure React JSX polyfill is loaded for pre WP 6.6 support -- Critical CSS: Make sure all URLs that are being processed are absolute instead of relative. +- Compatibility: Ensure React JSX polyfill is loaded for pre WP 6.6 support [#39521] +- Critical CSS: Make sure all URLs that are being processed are absolute instead of relative. [#39456] ## [3.4.9] - 2024-09-03 ### Fixed @@ -516,7 +510,7 @@ This is an alpha version! The changes listed here are not final. - First public alpha release -[3.5.0-alpha]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.9...3.5.0-alpha +[3.5.0]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.9...3.5.0 [3.4.9]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.8...3.4.9 [3.4.8]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.7...3.4.8 [3.4.7]: https://github.com/Automattic/jetpack-boost-production/compare/3.4.6...3.4.7 diff --git a/composer.json b/composer.json index e183d1cd9..5851b3d3b 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.5.0-alpha", + "version": "3.5.0", "authors": [ { "name": "Automattic, Inc.", @@ -21,10 +21,10 @@ "automattic/jetpack-boost-speed-score": "^0.3.12", "automattic/jetpack-composer-plugin": "^2.0.3", "automattic/jetpack-config": "^2.0.4", - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.1.0", "automattic/jetpack-device-detection": "^2.1.5", "automattic/jetpack-image-cdn": "^0.4.9", - "automattic/jetpack-my-jetpack": "^4.35.7", + "automattic/jetpack-my-jetpack": "^4.35.8", "automattic/jetpack-plugin-deactivation": "^0.2.2", "automattic/jetpack-schema": "^0.1.1", "automattic/jetpack-status": "^4.0.2", @@ -74,13 +74,14 @@ "platform": { "ext-intl": "0.0.0" }, - "autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0_alpha", + "autoloader-suffix": "b1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0", "allow-plugins": { "roots/wordpress-core-installer": true, "automattic/jetpack-autoloader": true, "automattic/jetpack-composer-plugin": true } }, + "repositories": [], "extra": { "mirror-repo": "Automattic/jetpack-boost-production", "autorelease": true, diff --git a/jetpack-boost.php b/jetpack-boost.php index 45a2ce653..32e0a8470 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.5.0-alpha + * Version: 3.5.0 * 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.5.0-alpha' ); +define( 'JETPACK_BOOST_VERSION', '3.5.0' ); define( 'JETPACK_BOOST_SLUG', 'jetpack-boost' ); if ( ! defined( 'JETPACK_BOOST_CLIENT_NAME' ) ) { diff --git a/jetpack_vendor/automattic/jetpack-boost-core/composer.json b/jetpack_vendor/automattic/jetpack-boost-core/composer.json index f37758773..a3989492a 100644 --- a/jetpack_vendor/automattic/jetpack-boost-core/composer.json +++ b/jetpack_vendor/automattic/jetpack-boost-core/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.0", - "automattic/jetpack-connection": "^5.1.0-alpha" + "automattic/jetpack-connection": "^5.0.0" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/jetpack_vendor/automattic/jetpack-boost-speed-score/composer.json b/jetpack_vendor/automattic/jetpack-boost-speed-score/composer.json index 64820d33f..dc33a728d 100644 --- a/jetpack_vendor/automattic/jetpack-boost-speed-score/composer.json +++ b/jetpack_vendor/automattic/jetpack-boost-speed-score/composer.json @@ -15,7 +15,7 @@ }, "require": { "php": ">=7.0", - "automattic/jetpack-boost-core": "^0.2.12" + "automattic/jetpack-boost-core": "^0.2.9" }, "autoload": { "classmap": [ diff --git a/jetpack_vendor/automattic/jetpack-config/composer.json b/jetpack_vendor/automattic/jetpack-config/composer.json index 9f42dab2b..80123a5be 100644 --- a/jetpack_vendor/automattic/jetpack-config/composer.json +++ b/jetpack_vendor/automattic/jetpack-config/composer.json @@ -7,7 +7,7 @@ "php": ">=7.0" }, "require-dev": { - "automattic/jetpack-changelogger": "^4.2.6", + "automattic/jetpack-changelogger": "^4.2.4", "automattic/jetpack-connection": "@dev", "automattic/jetpack-import": "@dev", "automattic/jetpack-jitm": "@dev", diff --git a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md index ffb524df6..92100e28f 100644 --- a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md @@ -5,12 +5,9 @@ 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). -## [5.1.0-alpha] - unreleased - -This is an alpha version! The changes listed here are not final. - +## [5.1.0] - 2024-09-25 ### Changed -- Jetpack Connection - REST API: Allow site-level authentication on POST requests to 'jetpack/v4/connection' +- Jetpack Connection - REST API: Allow site-level authentication on POST requests to 'jetpack/v4/connection' [#39503] ## [5.0.0] - 2024-09-23 ### Removed @@ -1214,7 +1211,7 @@ This is an alpha version! The changes listed here are not final. - Separate the connection library into its own package. -[5.1.0-alpha]: https://github.com/Automattic/jetpack-connection/compare/v5.0.0...v5.1.0-alpha +[5.1.0]: https://github.com/Automattic/jetpack-connection/compare/v5.0.0...v5.1.0 [5.0.0]: https://github.com/Automattic/jetpack-connection/compare/v4.0.4...v5.0.0 [4.0.4]: https://github.com/Automattic/jetpack-connection/compare/v4.0.3...v4.0.4 [4.0.3]: https://github.com/Automattic/jetpack-connection/compare/v4.0.2...v4.0.3 diff --git a/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php b/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php index 2a272ce2e..da68b7145 100644 --- a/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php +++ b/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '5.1.0-alpha'; + const PACKAGE_VERSION = '5.1.0'; const PACKAGE_SLUG = 'connection'; diff --git a/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php b/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php index 115283607..63f37b4bb 100644 --- a/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php +++ b/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php @@ -545,7 +545,7 @@ public static function connection_plugins_permission_check() { * * @since 1.30.1 * - * @since 5.1.0-alpha Modified the permission check to accept requests signed with blog tokens. + * @since 5.1.0 Modified the permission check to accept requests signed with blog tokens. * * @return bool|WP_Error True if user is able to disconnect the site or the request is signed with a blog token (aka a direct request from WPCOM). */ diff --git a/jetpack_vendor/automattic/jetpack-explat/composer.json b/jetpack_vendor/automattic/jetpack-explat/composer.json index ccd0c2982..9b69bf429 100644 --- a/jetpack_vendor/automattic/jetpack-explat/composer.json +++ b/jetpack_vendor/automattic/jetpack-explat/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.0", - "automattic/jetpack-connection": "^5.1.0-alpha" + "automattic/jetpack-connection": "^5.0.0" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/jetpack_vendor/automattic/jetpack-image-cdn/composer.json b/jetpack_vendor/automattic/jetpack-image-cdn/composer.json index f5a5c8aec..92cea3b97 100644 --- a/jetpack_vendor/automattic/jetpack-image-cdn/composer.json +++ b/jetpack_vendor/automattic/jetpack-image-cdn/composer.json @@ -5,8 +5,8 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.0", - "automattic/jetpack-assets": "^2.3.8", - "automattic/jetpack-status": "^4.0.2" + "automattic/jetpack-assets": "^2.3.7", + "automattic/jetpack-status": "^4.0.1" }, "require-dev": { "automattic/wordbless": "dev-master", diff --git a/jetpack_vendor/automattic/jetpack-jitm/composer.json b/jetpack_vendor/automattic/jetpack-jitm/composer.json index 4cddc25a0..0eb02f823 100644 --- a/jetpack_vendor/automattic/jetpack-jitm/composer.json +++ b/jetpack_vendor/automattic/jetpack-jitm/composer.json @@ -7,7 +7,7 @@ "php": ">=7.0", "automattic/jetpack-a8c-mc-stats": "^2.0.2", "automattic/jetpack-assets": "^2.3.8", - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.0.0", "automattic/jetpack-device-detection": "^2.1.5", "automattic/jetpack-logo": "^2.0.4", "automattic/jetpack-redirect": "^2.0.4", diff --git a/jetpack_vendor/automattic/jetpack-licensing/composer.json b/jetpack_vendor/automattic/jetpack-licensing/composer.json index db4c035ec..a060e3c48 100644 --- a/jetpack_vendor/automattic/jetpack-licensing/composer.json +++ b/jetpack_vendor/automattic/jetpack-licensing/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.0", - "automattic/jetpack-connection": "^5.1.0-alpha" + "automattic/jetpack-connection": "^5.0.0" }, "require-dev": { "automattic/wordbless": "@dev", diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md index d8f7ed0a3..1a464590d 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/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). +## [4.35.8] - 2024-09-25 +### Changed +- Update dependencies. [#38910] + ## [4.35.7] - 2024-09-23 ### Changed - Get active element from tooltip button's document rather than the global `document`. [#39364] @@ -1742,6 +1746,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Created package +[4.35.8]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.35.7...4.35.8 [4.35.7]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.35.6...4.35.7 [4.35.6]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.35.5...4.35.6 [4.35.5]: https://github.com/Automattic/jetpack-my-jetpack/compare/4.35.4...4.35.5 diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json index a9488016a..9d5451e5f 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json @@ -8,7 +8,7 @@ "automattic/jetpack-admin-ui": "^0.4.5", "automattic/jetpack-assets": "^2.3.8", "automattic/jetpack-boost-speed-score": "^0.3.12", - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.1.0", "automattic/jetpack-explat": "^0.1.9", "automattic/jetpack-jitm": "^3.1.23", "automattic/jetpack-licensing": "^2.0.10", diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php b/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php index 6b43ee7d3..f56f2b962 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php @@ -42,7 +42,7 @@ class Initializer { * * @var string */ - const PACKAGE_VERSION = '4.35.7'; + const PACKAGE_VERSION = '4.35.8'; /** * HTML container ID for the IDC screen on My Jetpack page. diff --git a/jetpack_vendor/automattic/jetpack-plugin-deactivation/composer.json b/jetpack_vendor/automattic/jetpack-plugin-deactivation/composer.json index c6717b35c..86d5a586a 100644 --- a/jetpack_vendor/automattic/jetpack-plugin-deactivation/composer.json +++ b/jetpack_vendor/automattic/jetpack-plugin-deactivation/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.0", - "automattic/jetpack-assets": "^2.3.8" + "automattic/jetpack-assets": "^2.3.5" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/jetpack_vendor/automattic/jetpack-plugins-installer/composer.json b/jetpack_vendor/automattic/jetpack-plugins-installer/composer.json index 9ce474478..f8954ee7e 100644 --- a/jetpack_vendor/automattic/jetpack-plugins-installer/composer.json +++ b/jetpack_vendor/automattic/jetpack-plugins-installer/composer.json @@ -6,7 +6,7 @@ "require": { "php": ">=7.0", "automattic/jetpack-a8c-mc-stats": "^2.0.2", - "automattic/jetpack-status": "^4.0.2" + "automattic/jetpack-status": "^4.0.0" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/jetpack_vendor/automattic/jetpack-protect-status/composer.json b/jetpack_vendor/automattic/jetpack-protect-status/composer.json index 651c8657c..fffd75fb2 100644 --- a/jetpack_vendor/automattic/jetpack-protect-status/composer.json +++ b/jetpack_vendor/automattic/jetpack-protect-status/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.0", - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.0.0", "automattic/jetpack-plugins-installer": "^0.4.3", "automattic/jetpack-sync": "^3.13.1", "automattic/jetpack-protect-models": "^0.3.0", diff --git a/jetpack_vendor/automattic/jetpack-redirect/composer.json b/jetpack_vendor/automattic/jetpack-redirect/composer.json index 80ee0666f..754095397 100644 --- a/jetpack_vendor/automattic/jetpack-redirect/composer.json +++ b/jetpack_vendor/automattic/jetpack-redirect/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.0", - "automattic/jetpack-status": "^4.0.2" + "automattic/jetpack-status": "^4.0.0" }, "require-dev": { "brain/monkey": "2.6.1", diff --git a/jetpack_vendor/automattic/jetpack-sync/composer.json b/jetpack_vendor/automattic/jetpack-sync/composer.json index 57f75455c..3303d9793 100644 --- a/jetpack_vendor/automattic/jetpack-sync/composer.json +++ b/jetpack_vendor/automattic/jetpack-sync/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.0", - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.0.0", "automattic/jetpack-constants": "^2.0.4", "automattic/jetpack-password-checker": "^0.3.2", "automattic/jetpack-ip": "^0.3.0", @@ -16,7 +16,7 @@ "automattic/jetpack-changelogger": "^4.2.6", "yoast/phpunit-polyfills": "^1.1.1", "automattic/jetpack-search": "@dev", - "automattic/jetpack-waf": "@dev", + "automattic/jetpack-waf": "^0.19.0", "automattic/wordbless": "@dev" }, "suggest": { diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index 219b0bb35..bb8c0db59 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -26,7 +26,7 @@ ), 'jetpack-connection' => array( 'path' => 'jetpack_vendor/automattic/jetpack-connection', - 'ver' => '5.1.0-alpha1727181107', + 'ver' => '5.1.0', ), 'jetpack-explat' => array( 'path' => 'jetpack_vendor/automattic/jetpack-explat', @@ -50,7 +50,7 @@ ), 'jetpack-my-jetpack' => array( 'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack', - 'ver' => '4.35.7', + 'ver' => '4.35.8', ), 'jetpack-password-checker' => array( 'path' => 'jetpack_vendor/automattic/jetpack-password-checker', diff --git a/readme.txt b/readme.txt index af4d3d347..ef730bca8 100644 --- a/readme.txt +++ b/readme.txt @@ -183,9 +183,17 @@ If you run into compatibility issues, please do let us know. You can drop us a l 2. Jetpack Boost Speed Improvement == Changelog == -### 3.4.9 - 2024-09-03 +### 3.5.0 - 2024-09-25 +#### Changed +- General: Show a simplified getting started page if the pricing is not available +- General: Skip the pricing page if the site is private, just like if offline + +#### Removed +- General: Removed WP Super Cache promos from settings page as well as related code + #### Fixed -- Update `automattic/jetpack-image-cdn` package to resolve a PHP fatal error. +- Compatibility: Ensure React JSX polyfill is loaded for pre WP 6.6 support +- Critical CSS: Make sure all URLs that are being processed are absolute instead of relative. -------- diff --git a/vendor/autoload.php b/vendor/autoload.php index 326bb3fd9..8c8749d1a 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_5_0_alpha::getLoader(); +return ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0::getLoader(); diff --git a/vendor/autoload_packages.php b/vendor/autoload_packages.php index 2c82c2287..c678d649c 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/automattic/jetpack-plans/composer.json b/vendor/automattic/jetpack-plans/composer.json index 579e537f7..3bd75ed6e 100644 --- a/vendor/automattic/jetpack-plans/composer.json +++ b/vendor/automattic/jetpack-plans/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.0", - "automattic/jetpack-connection": "^5.1.0-alpha" + "automattic/jetpack-connection": "^5.0.0" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/vendor/composer/autoload_real.php b/vendor/composer/autoload_real.php index 200bb4059..a17a496e7 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_5_0_alpha +class ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0 { private static $loader; @@ -24,17 +24,17 @@ public static function getLoader() require __DIR__ . '/platform_check.php'; - spl_autoload_register(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0_alpha', 'loadClassLoader'), true, true); + spl_autoload_register(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0', 'loadClassLoader'), true, true); self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); - spl_autoload_unregister(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0_alpha', 'loadClassLoader')); + spl_autoload_unregister(array('ComposerAutoloaderInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0', 'loadClassLoader')); require __DIR__ . '/autoload_static.php'; - call_user_func(\Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0_alpha::getInitializer($loader)); + call_user_func(\Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0::getInitializer($loader)); $loader->setClassMapAuthoritative(true); $loader->register(true); - $filesToLoad = \Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0_alpha::$files; + $filesToLoad = \Composer\Autoload\ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0::$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 8e315ccb3..6743a0b7b 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_5_0_alpha +class ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0 { public static $files = array ( '3773ef3f09c37da5478d578e32b03a4b' => __DIR__ . '/../..' . '/jetpack_vendor/automattic/jetpack-assets/actions.php', @@ -419,9 +419,9 @@ class ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0_a public static function getInitializer(ClassLoader $loader) { return \Closure::bind(function () use ($loader) { - $loader->prefixLengthsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0_alpha::$prefixLengthsPsr4; - $loader->prefixDirsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0_alpha::$prefixDirsPsr4; - $loader->classMap = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0_alpha::$classMap; + $loader->prefixLengthsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0::$prefixLengthsPsr4; + $loader->prefixDirsPsr4 = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0::$prefixDirsPsr4; + $loader->classMap = ComposerStaticInitb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0::$classMap; }, null, ClassLoader::class); } diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index c64803643..bf9ae33a3 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -2,12 +2,18 @@ "packages": [ { "name": "automattic/jetpack-a8c-mc-stats", - "version": "2.0.2", + "version": "v2.0.2", "version_normalized": "2.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-a8c-mc-stats.git", + "reference": "5753860f28e1a8629b3c6ab481c1ab75e38a244f" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-a8c-mc-stats", - "reference": "fb3cac73e3127571ad4a019832b7a0f363bd873e" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-a8c-mc-stats/zipball/5753860f28e1a8629b3c6ab481c1ab75e38a244f", + "reference": "5753860f28e1a8629b3c6ab481c1ab75e38a244f", + "shasum": "" }, "require": { "php": ">=7.0" @@ -19,6 +25,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:10+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -36,31 +43,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Used to record internal usage stats for Automattic. Not visible to site owners.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-a8c-mc-stats/tree/v2.0.2" }, "install-path": "../../jetpack_vendor/automattic/jetpack-a8c-mc-stats" }, { "name": "automattic/jetpack-admin-ui", - "version": "0.4.5", + "version": "v0.4.5", "version_normalized": "0.4.5.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-admin-ui.git", + "reference": "7d5b8485ebe5984774375468ae52efe5c2849369" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "fed37c7c24097fa675850cea45e9b96683940ad1" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-admin-ui/zipball/7d5b8485ebe5984774375468ae52efe5c2849369", + "reference": "7d5b8485ebe5984774375468ae52efe5c2849369", + "shasum": "" }, "require": { "php": ">=7.0" @@ -74,6 +80,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-05T12:38:36+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -95,37 +102,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Generic Jetpack wp-admin UI elements", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-admin-ui/tree/v0.4.5" }, "install-path": "../../jetpack_vendor/automattic/jetpack-admin-ui" }, { "name": "automattic/jetpack-assets", - "version": "2.3.8", + "version": "v2.3.8", "version_normalized": "2.3.8.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-assets.git", + "reference": "3ddaff78c82ed7663b61961356585061dbb3410a" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "cbbb5948efc06076bc7507b3a8eaad31ab2dfa53" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-assets/zipball/3ddaff78c82ed7663b61961356585061dbb3410a", + "reference": "3ddaff78c82ed7663b61961356585061dbb3410a", + "shasum": "" }, "require": { "automattic/jetpack-constants": "^2.0.4", @@ -140,6 +140,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-10T11:21:54+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -161,40 +162,30 @@ "src/" ] }, - "scripts": { - "build-development": [ - "pnpm run build" - ], - "build-production": [ - "pnpm run build-production" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-js": [ - "pnpm run test" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Asset management utilities for Jetpack ecosystem packages", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-assets/tree/v2.3.8" }, "install-path": "../../jetpack_vendor/automattic/jetpack-assets" }, { "name": "automattic/jetpack-autoloader", - "version": "3.1.0", + "version": "v3.1.0", "version_normalized": "3.1.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-autoloader.git", + "reference": "0e36d60ad64e35b5dab7fa4757fadb2235d58f73" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "1f12d38ee98444e35a24a056da9c9434ee8b4824" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-autoloader/zipball/0e36d60ad64e35b5dab7fa4757fadb2235d58f73", + "reference": "0e36d60ad64e35b5dab7fa4757fadb2235d58f73", + "shasum": "" }, "require": { "composer-plugin-api": "^1.1 || ^2.0", @@ -205,6 +196,7 @@ "composer/composer": "^1.1 || ^2.0", "yoast/phpunit-polyfills": "^1.1.1" }, + "time": "2024-09-06T15:32:10+00:00", "type": "composer-plugin", "extra": { "autotagger": true, @@ -222,21 +214,14 @@ }, "installation-source": "dist", "autoload": { - "classmap": [ - "src/AutoloadGenerator.php" - ], "psr-4": { "Automattic\\Jetpack\\Autoloader\\": "src" - } - }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" + }, + "classmap": [ + "src/AutoloadGenerator.php" ] }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], @@ -249,22 +234,28 @@ "plugin", "wordpress" ], - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-autoloader/tree/v3.1.0" }, "install-path": "../automattic/jetpack-autoloader" }, { "name": "automattic/jetpack-boost-core", - "version": "0.2.12", + "version": "v0.2.12", "version_normalized": "0.2.12.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-boost-core.git", + "reference": "25d6d1b341101780a24d2cfd1fa3ecb2b3800c80" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-boost-core", - "reference": "9910995f9f5f018f614905c7e6f07a1ad7850a39" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-boost-core/zipball/25d6d1b341101780a24d2cfd1fa3ecb2b3800c80", + "reference": "25d6d1b341101780a24d2cfd1fa3ecb2b3800c80", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.0.0", "php": ">=7.0" }, "require-dev": { @@ -275,6 +266,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-23T18:23:11+00:00", "type": "jetpack-library", "extra": { "mirror-repo": "Automattic/jetpack-boost-core", @@ -293,46 +285,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "build-production": [ - "echo 'Add your build step to composer.json, please!'" - ], - "build-development": [ - "echo 'Add your build step to composer.json, please!'" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Core functionality for boost and relevant packages to depend on", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-boost-core/tree/v0.2.12" }, "install-path": "../../jetpack_vendor/automattic/jetpack-boost-core" }, { "name": "automattic/jetpack-boost-speed-score", - "version": "0.3.12", + "version": "v0.3.12", "version_normalized": "0.3.12.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-boost-speed-score.git", + "reference": "362c3c0d3d779e757c48f7fecba65a107d9a0ab1" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-boost-speed-score", - "reference": "edc76d295167216fc026193e43abffe8e409052e" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-boost-speed-score/zipball/362c3c0d3d779e757c48f7fecba65a107d9a0ab1", + "reference": "362c3c0d3d779e757c48f7fecba65a107d9a0ab1", + "shasum": "" }, "require": { - "automattic/jetpack-boost-core": "^0.2.12", + "automattic/jetpack-boost-core": "^0.2.9", "php": ">=7.0" }, "require-dev": { @@ -343,6 +322,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-26T14:49:58+00:00", "type": "jetpack-library", "extra": { "mirror-repo": "Automattic/jetpack-boost-speed-score", @@ -364,48 +344,30 @@ "src/" ] }, - "autoload-dev": { - "psr-4": { - "Automattic\\Jetpack\\Boost_Speed_Score\\Tests\\": "./tests/php" - } - }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "build-production": [ - "echo 'Add your build step to composer.json, please!'" - ], - "build-development": [ - "echo 'Add your build step to composer.json, please!'" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "A package that handles the API to generate the speed score.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-boost-speed-score/tree/v0.3.12" }, "install-path": "../../jetpack_vendor/automattic/jetpack-boost-speed-score" }, { "name": "automattic/jetpack-composer-plugin", - "version": "2.0.3", + "version": "v2.0.3", "version_normalized": "2.0.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-composer-plugin.git", + "reference": "67d11838aa00ef9922a8a3b439b1fa25adb1feef" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "a061b6cf6a8c6530540e09262a5df4e18309dca4" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-composer-plugin/zipball/67d11838aa00ef9922a8a3b439b1fa25adb1feef", + "reference": "67d11838aa00ef9922a8a3b439b1fa25adb1feef", + "shasum": "" }, "require": { "composer-plugin-api": "^2.1.0", @@ -416,6 +378,7 @@ "composer/composer": "^2.2 || ^2.4", "yoast/phpunit-polyfills": "^1.1.1" }, + "time": "2024-08-26T14:48:44+00:00", "type": "composer-plugin", "extra": { "plugin-modifies-install-path": true, @@ -435,14 +398,7 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], @@ -453,25 +409,31 @@ "jetpack", "plugin" ], - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-composer-plugin/tree/v2.0.3" }, "install-path": "../automattic/jetpack-composer-plugin" }, { "name": "automattic/jetpack-config", - "version": "2.0.4", + "version": "v2.0.4", "version_normalized": "2.0.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-config.git", + "reference": "9f075c81bae6fd638e0b3183612cda5cc9e01e06" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "ba36dc7d0eca65a19168221ab7baa7f1982afe08" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-config/zipball/9f075c81bae6fd638e0b3183612cda5cc9e01e06", + "reference": "9f075c81bae6fd638e0b3183612cda5cc9e01e06", + "shasum": "" }, "require": { "php": ">=7.0" }, "require-dev": { - "automattic/jetpack-changelogger": "^4.2.6", + "automattic/jetpack-changelogger": "^4.2.4", "automattic/jetpack-connection": "@dev", "automattic/jetpack-import": "@dev", "automattic/jetpack-jitm": "@dev", @@ -489,6 +451,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-06-24T19:22:07+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -524,23 +487,30 @@ "src/" ] }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Jetpack configuration package that initializes other packages and configures Jetpack's functionality. Can be used as a base for all variants of Jetpack package usage.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-config/tree/v2.0.4" }, "install-path": "../../jetpack_vendor/automattic/jetpack-config" }, { "name": "automattic/jetpack-connection", - "version": "5.1.0-alpha.1727181107", - "version_normalized": "5.1.0.0-alpha1727181107", + "version": "v5.1.0", + "version_normalized": "5.1.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-connection.git", + "reference": "662028fc10aa41df6b461cb42247cc4a8fdf47e0" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "b1ddaf481b2cbcb99e0f7ffd2173006ae1b4a1ef" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-connection/zipball/662028fc10aa41df6b461cb42247cc4a8fdf47e0", + "reference": "662028fc10aa41df6b461cb42247cc4a8fdf47e0", + "shasum": "" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.2", @@ -561,6 +531,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-25T13:36:20+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -594,43 +565,30 @@ "src/identity-crisis" ] }, - "scripts": { - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Everything needed to connect to the Jetpack infrastructure", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-connection/tree/v5.1.0" }, "install-path": "../../jetpack_vendor/automattic/jetpack-connection" }, { "name": "automattic/jetpack-constants", - "version": "2.0.4", + "version": "v2.0.4", "version_normalized": "2.0.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-constants.git", + "reference": "f6958c313a34c5e92171c45a57d9dc978e5975ed" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "4b05f48ada075c6960544d49978fde32b51f93b6" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-constants/zipball/f6958c313a34c5e92171c45a57d9dc978e5975ed", + "reference": "f6958c313a34c5e92171c45a57d9dc978e5975ed", + "shasum": "" }, "require": { "php": ">=7.0" @@ -643,6 +601,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:14+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -660,31 +619,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "A wrapper for defining constants in a more testable way.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-constants/tree/v2.0.4" }, "install-path": "../../jetpack_vendor/automattic/jetpack-constants" }, { "name": "automattic/jetpack-device-detection", - "version": "2.1.5", + "version": "v2.1.5", "version_normalized": "2.1.5.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-device-detection.git", + "reference": "c86d7090ce66da372f3e5dee0c214dda1db9c47a" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "91740c9b68febe1db75da4ffe114e8851f900190" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-device-detection/zipball/c86d7090ce66da372f3e5dee0c214dda1db9c47a", + "reference": "c86d7090ce66da372f3e5dee0c214dda1db9c47a", + "shasum": "" }, "require": { "php": ">=7.0" @@ -696,6 +654,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-16T14:36:28+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -713,34 +672,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "A way to detect device types based on User-Agent header.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-device-detection/tree/v2.1.5" }, "install-path": "../../jetpack_vendor/automattic/jetpack-device-detection" }, { "name": "automattic/jetpack-explat", - "version": "0.1.9", + "version": "v0.1.9", "version_normalized": "0.1.9.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-explat.git", + "reference": "218a7ea3510850cc11f9bcaae01429e65890d878" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-explat", - "reference": "0762768593107d724f0e4cd38bf83c18c6c1906a" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-explat/zipball/218a7ea3510850cc11f9bcaae01429e65890d878", + "reference": "218a7ea3510850cc11f9bcaae01429e65890d878", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.0.0", "php": ">=7.0" }, "require-dev": { @@ -750,6 +708,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-23T18:23:19+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -771,52 +730,34 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "test-js": [ - "echo 'Run `pnpm run test` when ready'" - ], - "test-js-watch": [ - "Composer\\Config::disableProcessTimeout", - "pnpm run test --watch" - ], - "build-development": [ - "pnpm run build" - ], - "build-production": [ - "NODE_ENV=production pnpm run build" - ], - "watch": [ - "Composer\\Config::disableProcessTimeout", - "pnpm run watch" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "A package for running A/B tests on the Experimentation Platform (ExPlat) in the plugin.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-explat/tree/v0.1.9" }, "install-path": "../../jetpack_vendor/automattic/jetpack-explat" }, { "name": "automattic/jetpack-image-cdn", - "version": "0.4.9", + "version": "v0.4.9", "version_normalized": "0.4.9.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-image-cdn.git", + "reference": "3cf7509d4f7c02106d455e6d44513ac2b91a60ae" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-image-cdn", - "reference": "ac4d6b8e5071b2a6b23aad0ff83eb95c863bfecd" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-image-cdn/zipball/3cf7509d4f7c02106d455e6d44513ac2b91a60ae", + "reference": "3cf7509d4f7c02106d455e6d44513ac2b91a60ae", + "shasum": "" }, "require": { - "automattic/jetpack-assets": "^2.3.8", - "automattic/jetpack-status": "^4.0.2", + "automattic/jetpack-assets": "^2.3.7", + "automattic/jetpack-status": "^4.0.1", "php": ">=7.0" }, "require-dev": { @@ -827,6 +768,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-09T17:47:35+00:00", "type": "jetpack-library", "extra": { "mirror-repo": "Automattic/jetpack-image-cdn", @@ -848,37 +790,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Serve images through Jetpack's powerful CDN", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-image-cdn/tree/v0.4.9" }, "install-path": "../../jetpack_vendor/automattic/jetpack-image-cdn" }, { "name": "automattic/jetpack-ip", - "version": "0.3.0", + "version": "v0.3.0", "version_normalized": "0.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-ip.git", + "reference": "1f19a627ba14335207cb989d850da1940a8a54c3" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "356b2288aee88b0aca8f7b3e826207651e09847a" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-ip/zipball/1f19a627ba14335207cb989d850da1940a8a54c3", + "reference": "1f19a627ba14335207cb989d850da1940a8a54c3", + "shasum": "" }, "require": { "php": ">=7.0" @@ -891,6 +826,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-23T18:22:34+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -912,36 +848,35 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Utilities for working with IP addresses.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-ip/tree/v0.3.0" }, "install-path": "../../jetpack_vendor/automattic/jetpack-ip" }, { "name": "automattic/jetpack-jitm", - "version": "3.1.23", + "version": "v3.1.23", "version_normalized": "3.1.23.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-jitm.git", + "reference": "c3e7003c653550ef50a63def3575a1764361ff8f" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "e3d3ee060dd54929346bf64e8eb5e6b2ed41e094" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-jitm/zipball/c3e7003c653550ef50a63def3575a1764361ff8f", + "reference": "c3e7003c653550ef50a63def3575a1764361ff8f", + "shasum": "" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.2", "automattic/jetpack-assets": "^2.3.8", - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.0.0", "automattic/jetpack-device-detection": "^2.1.5", "automattic/jetpack-logo": "^2.0.4", "automattic/jetpack-redirect": "^2.0.4", @@ -956,6 +891,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-23T18:23:19+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -977,44 +913,33 @@ "src/" ] }, - "scripts": { - "build-production": [ - "pnpm run build-production" - ], - "build-development": [ - "pnpm run build" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "watch": [ - "Composer\\Config::disableProcessTimeout", - "pnpm run watch" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Just in time messages for Jetpack", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-jitm/tree/v3.1.23" }, "install-path": "../../jetpack_vendor/automattic/jetpack-jitm" }, { "name": "automattic/jetpack-licensing", - "version": "2.0.10", + "version": "v2.0.10", "version_normalized": "2.0.10.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-licensing.git", + "reference": "281e0a7d5742ecde2c1cc5dc45e1dabdd16b096d" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "944775a4a3d4e5701864266616d7938747813341" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-licensing/zipball/281e0a7d5742ecde2c1cc5dc45e1dabdd16b096d", + "reference": "281e0a7d5742ecde2c1cc5dc45e1dabdd16b096d", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.0.0", "php": ">=7.0" }, "require-dev": { @@ -1025,6 +950,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-23T18:23:11+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1043,37 +969,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Everything needed to manage Jetpack licenses client-side.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-licensing/tree/v2.0.10" }, "install-path": "../../jetpack_vendor/automattic/jetpack-licensing" }, { "name": "automattic/jetpack-logo", - "version": "2.0.4", + "version": "v2.0.4", "version_normalized": "2.0.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-logo.git", + "reference": "6047525955b12ac8654ac4544e0b79deaed31fa2" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "5dd9ad098b537bcaea34c9cfc04ff764a89e1644" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-logo/zipball/6047525955b12ac8654ac4544e0b79deaed31fa2", + "reference": "6047525955b12ac8654ac4544e0b79deaed31fa2", + "shasum": "" }, "require": { "php": ">=7.0" @@ -1085,6 +1004,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:12+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1102,37 +1022,36 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "A logo for Jetpack", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-logo/tree/v2.0.4" }, "install-path": "../../jetpack_vendor/automattic/jetpack-logo" }, { "name": "automattic/jetpack-my-jetpack", - "version": "4.35.7", - "version_normalized": "4.35.7.0", + "version": "v4.35.8", + "version_normalized": "4.35.8.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-my-jetpack.git", + "reference": "89b83c7e3a735b6812e0ad2c650aa531cbc34328" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "9f64251faf561e4efba4b13d468291314391bc46" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-my-jetpack/zipball/89b83c7e3a735b6812e0ad2c650aa531cbc34328", + "reference": "89b83c7e3a735b6812e0ad2c650aa531cbc34328", + "shasum": "" }, "require": { "automattic/jetpack-admin-ui": "^0.4.5", "automattic/jetpack-assets": "^2.3.8", "automattic/jetpack-boost-speed-score": "^0.3.12", - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.1.0", "automattic/jetpack-constants": "^2.0.4", "automattic/jetpack-explat": "^0.1.9", "automattic/jetpack-jitm": "^3.1.23", @@ -1153,6 +1072,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-25T13:36:47+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1181,54 +1101,30 @@ "src/products" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "test-js": [ - "pnpm run test" - ], - "test-js-watch": [ - "Composer\\Config::disableProcessTimeout", - "pnpm run test --watch" - ], - "build-development": [ - "pnpm run build" - ], - "build-production": [ - "NODE_ENV=production pnpm run build" - ], - "watch": [ - "Composer\\Config::disableProcessTimeout", - "pnpm run watch" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "WP Admin page with information and configuration shared among all Jetpack stand-alone plugins", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-my-jetpack/tree/v4.35.8" }, "install-path": "../../jetpack_vendor/automattic/jetpack-my-jetpack" }, { "name": "automattic/jetpack-password-checker", - "version": "0.3.2", + "version": "v0.3.2", "version_normalized": "0.3.2.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-password-checker.git", + "reference": "bdf70591123932112e447e295d7f174b5c0e3a44" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "dad5ba19a2aed94ec12bce35efa9f50f8126a0fe" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-password-checker/zipball/bdf70591123932112e447e295d7f174b5c0e3a44", + "reference": "bdf70591123932112e447e295d7f174b5c0e3a44", + "shasum": "" }, "require": { "php": ">=7.0" @@ -1241,6 +1137,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:17+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1259,40 +1156,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Password Checker.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-password-checker/tree/v0.3.2" }, "install-path": "../../jetpack_vendor/automattic/jetpack-password-checker" }, { "name": "automattic/jetpack-plans", - "version": "0.4.11", + "version": "v0.4.11", "version_normalized": "0.4.11.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-plans.git", + "reference": "907a183097417c62e68971e0e76a568e65d0bfcb" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "6b9a0b20ae550ed44cb35d646ff80d7ce3013e22" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-plans/zipball/907a183097417c62e68971e0e76a568e65d0bfcb", + "reference": "907a183097417c62e68971e0e76a568e65d0bfcb", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.0.0", "php": ">=7.0" }, "require-dev": { @@ -1304,6 +1194,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-23T18:23:09+00:00", "type": "library", "extra": { "autotagger": true, @@ -1321,46 +1212,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "build-production": [ - "echo 'Add your build step to composer.json, please!'" - ], - "build-development": [ - "echo 'Add your build step to composer.json, please!'" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Fetch information about Jetpack Plans from wpcom", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-plans/tree/v0.4.11" }, "install-path": "../automattic/jetpack-plans" }, { "name": "automattic/jetpack-plugin-deactivation", - "version": "0.2.2", + "version": "v0.2.2", "version_normalized": "0.2.2.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-plugin-deactivation.git", + "reference": "26a0520a044a73f765b9bc366b7caaed175d0c99" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-plugin-deactivation", - "reference": "01dab2abc6d16ce3cc47980f6b9f18789b9a5aef" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-plugin-deactivation/zipball/26a0520a044a73f765b9bc366b7caaed175d0c99", + "reference": "26a0520a044a73f765b9bc366b7caaed175d0c99", + "shasum": "" }, "require": { - "automattic/jetpack-assets": "^2.3.8", + "automattic/jetpack-assets": "^2.3.5", "php": ">=7.0" }, "require-dev": { @@ -1370,6 +1248,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-29T08:39:51+00:00", "type": "jetpack-library", "extra": { "mirror-repo": "Automattic/jetpack-plugin-deactivation", @@ -1391,45 +1270,34 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "build-development": [ - "pnpm run build" - ], - "build-production": [ - "NODE_ENV=production pnpm run build" - ], - "watch": [ - "Composer\\Config::disableProcessTimeout", - "pnpm run watch" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Ask for feedback while deactivating a plugin", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-plugin-deactivation/tree/v0.2.2" }, "install-path": "../../jetpack_vendor/automattic/jetpack-plugin-deactivation" }, { "name": "automattic/jetpack-plugins-installer", - "version": "0.4.3", + "version": "v0.4.3", "version_normalized": "0.4.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-plugins-installer.git", + "reference": "53599f17ca0def355edbab886cdf765713a8809a" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "ed53f70b5808a069aa73455c850fd58643414116" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-plugins-installer/zipball/53599f17ca0def355edbab886cdf765713a8809a", + "reference": "53599f17ca0def355edbab886cdf765713a8809a", + "shasum": "" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.2", - "automattic/jetpack-status": "^4.0.2", + "automattic/jetpack-status": "^4.0.0", "php": ">=7.0" }, "require-dev": { @@ -1439,6 +1307,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-05T19:34:11+00:00", "type": "jetpack-library", "extra": { "branch-alias": { @@ -1457,31 +1326,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Handle installation of plugins from WP.org", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-plugins-installer/tree/v0.4.3" }, "install-path": "../../jetpack_vendor/automattic/jetpack-plugins-installer" }, { "name": "automattic/jetpack-protect-models", - "version": "0.3.0", + "version": "v0.3.0", "version_normalized": "0.3.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-protect-models.git", + "reference": "2bf41729730c09dbe49128242c0af94cbd9da740" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-protect-models", - "reference": "0673f3003e9f7b0d7656bdacec783f5adda4e4e6" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-protect-models/zipball/2bf41729730c09dbe49128242c0af94cbd9da740", + "reference": "2bf41729730c09dbe49128242c0af94cbd9da740", + "shasum": "" }, "require": { "php": ">=7.0" @@ -1494,6 +1362,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-23T18:22:42+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1515,46 +1384,33 @@ "src/" ] }, - "scripts": { - "build-development": [ - "echo 'Add your build step to composer.json, please!'" - ], - "build-production": [ - "echo 'Add your build step to composer.json, please!'" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "This package contains the models used in Protect. ", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-protect-models/tree/v0.3.0" }, "install-path": "../../jetpack_vendor/automattic/jetpack-protect-models" }, { "name": "automattic/jetpack-protect-status", - "version": "0.2.0", + "version": "v0.2.0", "version_normalized": "0.2.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-protect-status.git", + "reference": "3ed1d4727164ba081e6182315f08435dfa63b82c" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-protect-status", - "reference": "0eb8f102649624cf118a87a6854fadfdaefffbe4" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-protect-status/zipball/3ed1d4727164ba081e6182315f08435dfa63b82c", + "reference": "3ed1d4727164ba081e6182315f08435dfa63b82c", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.0.0", "automattic/jetpack-plans": "^0.4.11", "automattic/jetpack-plugins-installer": "^0.4.3", "automattic/jetpack-protect-models": "^0.3.0", @@ -1569,6 +1425,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-23T18:23:15+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1590,46 +1447,33 @@ "src/" ] }, - "scripts": { - "build-development": [ - "echo 'Add your build step to composer.json, please!'" - ], - "build-production": [ - "echo 'Add your build step to composer.json, please!'" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "This package contains the Protect Status API functionality to retrieve a site's scan status (WordPress, Themes, and Plugins threats).", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-protect-status/tree/v0.2.0" }, "install-path": "../../jetpack_vendor/automattic/jetpack-protect-status" }, { "name": "automattic/jetpack-redirect", - "version": "2.0.4", + "version": "v2.0.4", "version_normalized": "2.0.4.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-redirect.git", + "reference": "72457f3899c772529d26e83a44d6ffd6758a71fd" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "30d6427a7e800040ba8220a4c8f3223e7b546a0f" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-redirect/zipball/72457f3899c772529d26e83a44d6ffd6758a71fd", + "reference": "72457f3899c772529d26e83a44d6ffd6758a71fd", + "shasum": "" }, "require": { - "automattic/jetpack-status": "^4.0.2", + "automattic/jetpack-status": "^4.0.0", "php": ">=7.0" }, "require-dev": { @@ -1640,6 +1484,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-05T19:34:13+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1657,31 +1502,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Utilities to build URLs to the jetpack.com/redirect/ service", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-redirect/tree/v2.0.4" }, "install-path": "../../jetpack_vendor/automattic/jetpack-redirect" }, { "name": "automattic/jetpack-roles", - "version": "2.0.3", + "version": "v2.0.3", "version_normalized": "2.0.3.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-roles.git", + "reference": "32e45299a6ff93de0b1f4c71e6669f15917220fb" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "6f85ded6b163bf33093ebe3c412c58cc42658862" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-roles/zipball/32e45299a6ff93de0b1f4c71e6669f15917220fb", + "reference": "32e45299a6ff93de0b1f4c71e6669f15917220fb", + "shasum": "" }, "require": { "php": ">=7.0" @@ -1694,6 +1538,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-23T14:28:15+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1711,31 +1556,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Utilities, related with user roles and capabilities.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-roles/tree/v2.0.3" }, "install-path": "../../jetpack_vendor/automattic/jetpack-roles" }, { "name": "automattic/jetpack-schema", - "version": "0.1.1", + "version": "v0.1.1", "version_normalized": "0.1.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-schema.git", + "reference": "0a3c3a197729ee70473b48676c2dfcfd6b2ea379" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-schema", - "reference": "8bcc4ee47ae4c5905b5f0a37a25a9ff0d3261c42" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-schema/zipball/0a3c3a197729ee70473b48676c2dfcfd6b2ea379", + "reference": "0a3c3a197729ee70473b48676c2dfcfd6b2ea379", + "shasum": "" }, "require": { "php": ">=7.0" @@ -1748,6 +1592,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-29T08:39:02+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1769,43 +1614,30 @@ "src/" ] }, - "scripts": { - "build-development": [ - "echo 'Add your build step to composer.json, please!'" - ], - "build-production": [ - "echo 'Add your build step to composer.json, please!'" - ], - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Define a schema to validate or sanitize data in php", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-schema/tree/v0.1.1" }, "install-path": "../../jetpack_vendor/automattic/jetpack-schema" }, { "name": "automattic/jetpack-status", - "version": "4.0.2", + "version": "v4.0.2", "version_normalized": "4.0.2.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-status.git", + "reference": "2e1ccecbffe61edc181b9581496502b71e55e539" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "64b8c28d8155ad351bfb2f81e7c3de890d9c008a" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-status/zipball/2e1ccecbffe61edc181b9581496502b71e55e539", + "reference": "2e1ccecbffe61edc181b9581496502b71e55e539", + "shasum": "" }, "require": { "automattic/jetpack-constants": "^2.0.4", @@ -1822,6 +1654,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-23T18:22:46+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1845,34 +1678,33 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Used to retrieve information about the current status of Jetpack and the site overall.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-status/tree/v4.0.2" }, "install-path": "../../jetpack_vendor/automattic/jetpack-status" }, { "name": "automattic/jetpack-sync", - "version": "3.13.1", + "version": "v3.13.1", "version_normalized": "3.13.1.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-sync.git", + "reference": "723b78a6eb24be8f7e9931f022bab4c77953dee5" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "ba82168a52aa19824667470269b7758352a4486f" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-sync/zipball/723b78a6eb24be8f7e9931f022bab4c77953dee5", + "reference": "723b78a6eb24be8f7e9931f022bab4c77953dee5", + "shasum": "" }, "require": { - "automattic/jetpack-connection": "^5.1.0-alpha", + "automattic/jetpack-connection": "^5.0.0", "automattic/jetpack-constants": "^2.0.4", "automattic/jetpack-ip": "^0.3.0", "automattic/jetpack-password-checker": "^0.3.2", @@ -1883,13 +1715,14 @@ "require-dev": { "automattic/jetpack-changelogger": "^4.2.6", "automattic/jetpack-search": "@dev", - "automattic/jetpack-waf": "@dev", + "automattic/jetpack-waf": "^0.19.0", "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "^1.1.1" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-09-23T18:23:14+00:00", "type": "jetpack-library", "extra": { "autotagger": true, @@ -1917,37 +1750,30 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "Everything needed to allow syncing to the WP.com infrastructure.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-sync/tree/v3.13.1" }, "install-path": "../../jetpack_vendor/automattic/jetpack-sync" }, { "name": "automattic/jetpack-wp-js-data-sync", - "version": "0.5.0", + "version": "v0.5.0", "version_normalized": "0.5.0.0", + "source": { + "type": "git", + "url": "https://github.com/Automattic/jetpack-wp-js-data-sync.git", + "reference": "427531bfb297410f260f64a3e6ec5fd7346e77a7" + }, "dist": { - "type": "path", - "url": "/tmp/jetpack-build/Automattic/jetpack-wp-js-data-sync", - "reference": "926341380c274d86959ad42675577c7a73a78517" + "type": "zip", + "url": "https://api.github.com/repos/Automattic/jetpack-wp-js-data-sync/zipball/427531bfb297410f260f64a3e6ec5fd7346e77a7", + "reference": "427531bfb297410f260f64a3e6ec5fd7346e77a7", + "shasum": "" }, "require": { "automattic/jetpack-schema": "^0.1.1", @@ -1961,6 +1787,7 @@ "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." }, + "time": "2024-08-29T08:39:15+00:00", "type": "jetpack-library", "extra": { "mirror-repo": "Automattic/jetpack-wp-js-data-sync", @@ -1982,32 +1809,13 @@ "src/" ] }, - "scripts": { - "phpunit": [ - "./vendor/phpunit/phpunit/phpunit --colors=always" - ], - "test-php": [ - "@composer phpunit" - ], - "build-production": [ - "echo 'Add your build step to composer.json, please!'" - ], - "build-development": [ - "echo 'Add your build step to composer.json, please!'" - ], - "post-install-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ], - "post-update-cmd": [ - "WorDBless\\Composer\\InstallDropin::copy" - ] - }, + "notification-url": "https://packagist.org/downloads/", "license": [ "GPL-2.0-or-later" ], "description": "A package to setup REST API and script localization to pass data to a JavaScript client.", - "transport-options": { - "relative": false + "support": { + "source": "https://github.com/Automattic/jetpack-wp-js-data-sync/tree/v0.5.0" }, "install-path": "../../jetpack_vendor/automattic/jetpack-wp-js-data-sync" }, diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index f09d87272..7a2fe20e7 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -1,8 +1,8 @@ array( 'name' => 'automattic/jetpack-boost', - 'pretty_version' => '3.5.0-alpha', - 'version' => '3.5.0.0-alpha', + 'pretty_version' => '3.5.0', + 'version' => '3.5.0.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', @@ -11,44 +11,44 @@ ), 'versions' => array( 'automattic/jetpack-a8c-mc-stats' => array( - 'pretty_version' => '2.0.2', + 'pretty_version' => 'v2.0.2', 'version' => '2.0.2.0', - 'reference' => 'fb3cac73e3127571ad4a019832b7a0f363bd873e', + 'reference' => '5753860f28e1a8629b3c6ab481c1ab75e38a244f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-a8c-mc-stats', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-admin-ui' => array( - 'pretty_version' => '0.4.5', + 'pretty_version' => 'v0.4.5', 'version' => '0.4.5.0', - 'reference' => 'fed37c7c24097fa675850cea45e9b96683940ad1', + 'reference' => '7d5b8485ebe5984774375468ae52efe5c2849369', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-assets' => array( - 'pretty_version' => '2.3.8', + 'pretty_version' => 'v2.3.8', 'version' => '2.3.8.0', - 'reference' => 'cbbb5948efc06076bc7507b3a8eaad31ab2dfa53', + 'reference' => '3ddaff78c82ed7663b61961356585061dbb3410a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-autoloader' => array( - 'pretty_version' => '3.1.0', + 'pretty_version' => 'v3.1.0', 'version' => '3.1.0.0', - 'reference' => '1f12d38ee98444e35a24a056da9c9434ee8b4824', + 'reference' => '0e36d60ad64e35b5dab7fa4757fadb2235d58f73', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-boost' => array( - 'pretty_version' => '3.5.0-alpha', - 'version' => '3.5.0.0-alpha', + 'pretty_version' => '3.5.0', + 'version' => '3.5.0.0', 'reference' => null, 'type' => 'library', 'install_path' => __DIR__ . '/../../', @@ -56,234 +56,234 @@ 'dev_requirement' => false, ), 'automattic/jetpack-boost-core' => array( - 'pretty_version' => '0.2.12', + 'pretty_version' => 'v0.2.12', 'version' => '0.2.12.0', - 'reference' => '9910995f9f5f018f614905c7e6f07a1ad7850a39', + 'reference' => '25d6d1b341101780a24d2cfd1fa3ecb2b3800c80', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-core', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-boost-speed-score' => array( - 'pretty_version' => '0.3.12', + 'pretty_version' => 'v0.3.12', 'version' => '0.3.12.0', - 'reference' => 'edc76d295167216fc026193e43abffe8e409052e', + 'reference' => '362c3c0d3d779e757c48f7fecba65a107d9a0ab1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-speed-score', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-composer-plugin' => array( - 'pretty_version' => '2.0.3', + 'pretty_version' => 'v2.0.3', 'version' => '2.0.3.0', - 'reference' => 'a061b6cf6a8c6530540e09262a5df4e18309dca4', + 'reference' => '67d11838aa00ef9922a8a3b439b1fa25adb1feef', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-config' => array( - 'pretty_version' => '2.0.4', + 'pretty_version' => 'v2.0.4', 'version' => '2.0.4.0', - 'reference' => 'ba36dc7d0eca65a19168221ab7baa7f1982afe08', + 'reference' => '9f075c81bae6fd638e0b3183612cda5cc9e01e06', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-connection' => array( - 'pretty_version' => '5.1.0-alpha.1727181107', - 'version' => '5.1.0.0-alpha1727181107', - 'reference' => 'b1ddaf481b2cbcb99e0f7ffd2173006ae1b4a1ef', + 'pretty_version' => 'v5.1.0', + 'version' => '5.1.0.0', + 'reference' => '662028fc10aa41df6b461cb42247cc4a8fdf47e0', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-constants' => array( - 'pretty_version' => '2.0.4', + 'pretty_version' => 'v2.0.4', 'version' => '2.0.4.0', - 'reference' => '4b05f48ada075c6960544d49978fde32b51f93b6', + 'reference' => 'f6958c313a34c5e92171c45a57d9dc978e5975ed', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-device-detection' => array( - 'pretty_version' => '2.1.5', + 'pretty_version' => 'v2.1.5', 'version' => '2.1.5.0', - 'reference' => '91740c9b68febe1db75da4ffe114e8851f900190', + 'reference' => 'c86d7090ce66da372f3e5dee0c214dda1db9c47a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-explat' => array( - 'pretty_version' => '0.1.9', + 'pretty_version' => 'v0.1.9', 'version' => '0.1.9.0', - 'reference' => '0762768593107d724f0e4cd38bf83c18c6c1906a', + 'reference' => '218a7ea3510850cc11f9bcaae01429e65890d878', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-explat', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-image-cdn' => array( - 'pretty_version' => '0.4.9', + 'pretty_version' => 'v0.4.9', 'version' => '0.4.9.0', - 'reference' => 'ac4d6b8e5071b2a6b23aad0ff83eb95c863bfecd', + 'reference' => '3cf7509d4f7c02106d455e6d44513ac2b91a60ae', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-image-cdn', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-ip' => array( - 'pretty_version' => '0.3.0', + 'pretty_version' => 'v0.3.0', 'version' => '0.3.0.0', - 'reference' => '356b2288aee88b0aca8f7b3e826207651e09847a', + 'reference' => '1f19a627ba14335207cb989d850da1940a8a54c3', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-jitm' => array( - 'pretty_version' => '3.1.23', + 'pretty_version' => 'v3.1.23', 'version' => '3.1.23.0', - 'reference' => 'e3d3ee060dd54929346bf64e8eb5e6b2ed41e094', + 'reference' => 'c3e7003c653550ef50a63def3575a1764361ff8f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-licensing' => array( - 'pretty_version' => '2.0.10', + 'pretty_version' => 'v2.0.10', 'version' => '2.0.10.0', - 'reference' => '944775a4a3d4e5701864266616d7938747813341', + 'reference' => '281e0a7d5742ecde2c1cc5dc45e1dabdd16b096d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-logo' => array( - 'pretty_version' => '2.0.4', + 'pretty_version' => 'v2.0.4', 'version' => '2.0.4.0', - 'reference' => '5dd9ad098b537bcaea34c9cfc04ff764a89e1644', + 'reference' => '6047525955b12ac8654ac4544e0b79deaed31fa2', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-my-jetpack' => array( - 'pretty_version' => '4.35.7', - 'version' => '4.35.7.0', - 'reference' => '9f64251faf561e4efba4b13d468291314391bc46', + 'pretty_version' => 'v4.35.8', + 'version' => '4.35.8.0', + 'reference' => '89b83c7e3a735b6812e0ad2c650aa531cbc34328', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-password-checker' => array( - 'pretty_version' => '0.3.2', + 'pretty_version' => 'v0.3.2', 'version' => '0.3.2.0', - 'reference' => 'dad5ba19a2aed94ec12bce35efa9f50f8126a0fe', + 'reference' => 'bdf70591123932112e447e295d7f174b5c0e3a44', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-plans' => array( - 'pretty_version' => '0.4.11', + 'pretty_version' => 'v0.4.11', 'version' => '0.4.11.0', - 'reference' => '6b9a0b20ae550ed44cb35d646ff80d7ce3013e22', + 'reference' => '907a183097417c62e68971e0e76a568e65d0bfcb', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-plugin-deactivation' => array( - 'pretty_version' => '0.2.2', + 'pretty_version' => 'v0.2.2', 'version' => '0.2.2.0', - 'reference' => '01dab2abc6d16ce3cc47980f6b9f18789b9a5aef', + 'reference' => '26a0520a044a73f765b9bc366b7caaed175d0c99', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugin-deactivation', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-plugins-installer' => array( - 'pretty_version' => '0.4.3', + 'pretty_version' => 'v0.4.3', 'version' => '0.4.3.0', - 'reference' => 'ed53f70b5808a069aa73455c850fd58643414116', + 'reference' => '53599f17ca0def355edbab886cdf765713a8809a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-protect-models' => array( - 'pretty_version' => '0.3.0', + 'pretty_version' => 'v0.3.0', 'version' => '0.3.0.0', - 'reference' => '0673f3003e9f7b0d7656bdacec783f5adda4e4e6', + 'reference' => '2bf41729730c09dbe49128242c0af94cbd9da740', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-models', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-protect-status' => array( - 'pretty_version' => '0.2.0', + 'pretty_version' => 'v0.2.0', 'version' => '0.2.0.0', - 'reference' => '0eb8f102649624cf118a87a6854fadfdaefffbe4', + 'reference' => '3ed1d4727164ba081e6182315f08435dfa63b82c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-status', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-redirect' => array( - 'pretty_version' => '2.0.4', + 'pretty_version' => 'v2.0.4', 'version' => '2.0.4.0', - 'reference' => '30d6427a7e800040ba8220a4c8f3223e7b546a0f', + 'reference' => '72457f3899c772529d26e83a44d6ffd6758a71fd', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-roles' => array( - 'pretty_version' => '2.0.3', + 'pretty_version' => 'v2.0.3', 'version' => '2.0.3.0', - 'reference' => '6f85ded6b163bf33093ebe3c412c58cc42658862', + 'reference' => '32e45299a6ff93de0b1f4c71e6669f15917220fb', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-schema' => array( - 'pretty_version' => '0.1.1', + 'pretty_version' => 'v0.1.1', 'version' => '0.1.1.0', - 'reference' => '8bcc4ee47ae4c5905b5f0a37a25a9ff0d3261c42', + 'reference' => '0a3c3a197729ee70473b48676c2dfcfd6b2ea379', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-schema', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-status' => array( - 'pretty_version' => '4.0.2', + 'pretty_version' => 'v4.0.2', 'version' => '4.0.2.0', - 'reference' => '64b8c28d8155ad351bfb2f81e7c3de890d9c008a', + 'reference' => '2e1ccecbffe61edc181b9581496502b71e55e539', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-sync' => array( - 'pretty_version' => '3.13.1', + 'pretty_version' => 'v3.13.1', 'version' => '3.13.1.0', - 'reference' => 'ba82168a52aa19824667470269b7758352a4486f', + 'reference' => '723b78a6eb24be8f7e9931f022bab4c77953dee5', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-sync', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-wp-js-data-sync' => array( - 'pretty_version' => '0.5.0', + 'pretty_version' => 'v0.5.0', 'version' => '0.5.0.0', - 'reference' => '926341380c274d86959ad42675577c7a73a78517', + 'reference' => '427531bfb297410f260f64a3e6ec5fd7346e77a7', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-wp-js-data-sync', 'aliases' => array(), diff --git a/vendor/composer/jetpack_autoload_classmap.php b/vendor/composer/jetpack_autoload_classmap.php index 856075c49..dab130b15 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -127,123 +127,123 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-config/src/class-config.php' ), 'Automattic\\Jetpack\\Connection\\Authorize_Json_Api' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-authorize-json-api.php' ), 'Automattic\\Jetpack\\Connection\\Client' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Assets' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-assets.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Notice' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-notice.php' ), 'Automattic\\Jetpack\\Connection\\Error_Handler' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php' ), 'Automattic\\Jetpack\\Connection\\Initial_State' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php' ), 'Automattic\\Jetpack\\Connection\\Manager' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php' ), 'Automattic\\Jetpack\\Connection\\Manager_Interface' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php' ), 'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php' ), 'Automattic\\Jetpack\\Connection\\Plugin' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php' ), 'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php' ), 'Automattic\\Jetpack\\Connection\\REST_Connector' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php' ), 'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php' ), 'Automattic\\Jetpack\\Connection\\SSO' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-sso.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Force_2FA' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-force-2fa.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Helpers' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-helpers.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Notices' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-notices.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\User_Admin' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-user-admin.php' ), 'Automattic\\Jetpack\\Connection\\Secrets' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php' ), 'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php' ), 'Automattic\\Jetpack\\Connection\\Tokens' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php' ), 'Automattic\\Jetpack\\Connection\\Tokens_Locks' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens-locks.php' ), 'Automattic\\Jetpack\\Connection\\Urls' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php' ), 'Automattic\\Jetpack\\Connection\\Utils' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php' ), 'Automattic\\Jetpack\\Constants' => array( @@ -283,7 +283,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-files.php' ), 'Automattic\\Jetpack\\Heartbeat' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-heartbeat.php' ), 'Automattic\\Jetpack\\IP\\Utils' => array( @@ -291,23 +291,23 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-ip/src/class-utils.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\Exception' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-exception.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\UI' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-ui.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\URL_Secret' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-url-secret.php' ), 'Automattic\\Jetpack\\Identity_Crisis' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-identity-crisis.php' ), 'Automattic\\Jetpack\\Image_CDN\\Image_CDN' => array( @@ -359,131 +359,131 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-modules.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Activitylog' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-activitylog.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Jetpack_Manage' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-jetpack-manage.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Module_Product' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Product' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Anti_Spam' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Backup' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Boost' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Creator' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-creator.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Crm' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Extras' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Jetpack_Ai' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Protect' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-protect.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Scan' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search_Stats' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Security' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Social' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-social.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Starter' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-starter.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Stats' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Videopress' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_AI' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Product_Data' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-product-data.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Products' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Purchases' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Recommendations_Evaluation' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-recommendations-evaluation.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Zendesk_Chat' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-zendesk-chat.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Wpcom_Products' => array( - 'version' => '4.35.7.0', + 'version' => '4.35.8.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner.php' ), 'Automattic\\Jetpack\\Partner_Coupon' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner-coupon.php' ), 'Automattic\\Jetpack\\Password_Checker' => array( @@ -867,11 +867,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-terms-of-service.php' ), 'Automattic\\Jetpack\\Tracking' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php' ), 'Automattic\\Jetpack\\WP_JS_Data_Sync\\Contracts\\Data_Sync_Action' => array( @@ -943,471 +943,471 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-wp-js-data-sync/src/class-registry.php' ), 'Automattic\\Jetpack_Boost\\Admin\\Admin' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/admin/class-admin.php' ), 'Automattic\\Jetpack_Boost\\Admin\\Config' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/admin/class-config.php' ), 'Automattic\\Jetpack_Boost\\Admin\\Regenerate_Admin_Notice' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/admin/class-regenerate-admin-notice.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Changes_Page_Output' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/contracts/Changes_Output.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Has_Activate' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/contracts/Has_Activate.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Has_Deactivate' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/contracts/Has_Deactivate.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Has_Setup' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/contracts/Has_Setup.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Has_Slug' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/contracts/Has_Slug.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Has_Submodules' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/contracts/Has_Submodules.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Is_Always_On' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/contracts/Is_Always_On.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Optimization' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/contracts/Optimization.php' ), 'Automattic\\Jetpack_Boost\\Contracts\\Pluggable' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/contracts/Pluggable.php' ), 'Automattic\\Jetpack_Boost\\Data_Sync\\Critical_CSS_Meta_Entry' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/data-sync/Critical_CSS_Meta_Entry.php' ), 'Automattic\\Jetpack_Boost\\Data_Sync\\Getting_Started_Entry' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/data-sync/Getting_Started_Entry.php' ), 'Automattic\\Jetpack_Boost\\Data_Sync\\Mergeable_Array_Entry' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/data-sync/Mergeable_Array_Entry.php' ), 'Automattic\\Jetpack_Boost\\Data_Sync\\Minify_Excludes_State_Entry' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/data-sync/Minify_Excludes_State_Entry.php' ), 'Automattic\\Jetpack_Boost\\Data_Sync\\Modules_State_Entry' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/data-sync/Modules_State_Entry.php' ), 'Automattic\\Jetpack_Boost\\Features\\Setup_Prompt\\Setup_Prompt' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/features/setup-prompt/Setup_Prompt.php' ), 'Automattic\\Jetpack_Boost\\Jetpack_Boost' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/class-jetpack-boost.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Analytics' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/class-analytics.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Assets' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/class-assets.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Boost_Health' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/Boost_Health.php' ), 'Automattic\\Jetpack_Boost\\Lib\\CLI' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/class-cli.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Collection' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/class-collection.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Connection' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/class-connection.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Admin_Bar_Compatibility' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/critical-css/Admin_Bar_Compatibilty.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Critical_CSS_Invalidator' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/critical-css/Critical_CSS_Invalidator.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Critical_CSS_State' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/critical-css/Critical_CSS_State.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Critical_CSS_Storage' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/critical-css/Critical_CSS_Storage.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Data_Sync_Actions\\Regenerate_CSS' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/critical-css/Display_Critical_CSS.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Generator' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/critical-css/Generator.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Regenerate' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/critical-css/Regenerate.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Critical_CSS\\Source_Providers\\Providers\\Archive_Provider' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/critical-css/source-providers/Source_Providers.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Debug' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/class-debug.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Environment_Change_Detector' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/Environment_Change_Detector.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Minify' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/class-minify.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Minify\\Concatenate_CSS' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/minify/Concatenate_CSS.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Minify\\Concatenate_JS' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/minify/Concatenate_JS.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Minify\\Config' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/minify/Config.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Minify\\Dependency_Path_Mapping' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/minify/Dependency_Path_Mapping.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Minify\\Utils' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/minify/Utils.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Nonce' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/class-nonce.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Output_Filter' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/class-output-filter.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Premium_Features' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/Premium_Features.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Premium_Pricing' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/Premium_Pricing.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Setup' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/Setup.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Site_Health' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/Site_Health.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Site_Urls' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/class-site-urls.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Status' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/Status.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Storage_Post_Type' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/class-storage-post-type.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Super_Cache_Config_Compatibility' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/Super_Cache_Config_Compatibility.php' ), 'Automattic\\Jetpack_Boost\\Lib\\Super_Cache_Tracking' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/lib/Super_Cache_Tracking.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Image_Guide\\Image_Guide' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/image-guide/Image_Guide.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Image_Guide\\Image_Guide_Proxy' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/image-size-analysis/Image_Size_Analysis_Fixer.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Module' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/Module.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Modules_Index' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/Modules_Index.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Modules_Setup' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/Modules_Setup.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Cloud_CSS\\Cloud_CSS' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/cloud-css/Cloud_CSS.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Cloud_CSS\\Cloud_CSS_Followup' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/cloud-css/Cloud_CSS_Followup.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Critical_CSS\\CSS_Proxy' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/critical-css/CSS_Proxy.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Critical_CSS\\Critical_CSS' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/critical-css/Critical_CSS.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Image_CDN\\Image_CDN' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/image-cdn/class-image-cdn.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Image_CDN\\Liar' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/image-cdn/class-liar.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Image_CDN\\Quality_Settings' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/image-cdn/class-quality-settings.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Minify\\Minify_CSS' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/minify/class-minify-css.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Minify\\Minify_JS' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/minify/class-minify-js.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Data_Sync\\Page_Cache_Entry' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/data-sync/Page_Cache_Entry.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Data_Sync_Actions\\Clear_Page_Cache' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/data-sync-actions/clear-page-cache.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Data_Sync_Actions\\Deactivate_WPSC' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/data-sync-actions/deactivate-wpsc.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Data_Sync_Actions\\Run_Setup' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/data-sync-actions/run-setup.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Garbage_Collection' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/Garbage_Collection.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Page_Cache' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/Page_Cache.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Page_Cache_Setup' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/Page_Cache_Setup.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Pre_WordPress\\Boost_Cache' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/pre-wordpress/Boost_Cache.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Pre_WordPress\\Boost_Cache_Error' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/pre-wordpress/Boost_Cache_Error.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Pre_WordPress\\Boost_Cache_Settings' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/pre-wordpress/Boost_Cache_Settings.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Pre_WordPress\\Boost_Cache_Utils' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/pre-wordpress/Boost_Cache_Utils.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Pre_WordPress\\Filesystem_Utils' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/pre-wordpress/Filesystem_Utils.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Pre_WordPress\\Logger' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/pre-wordpress/Logger.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Pre_WordPress\\Request' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/pre-wordpress/Request.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Pre_WordPress\\Storage\\File_Storage' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/pre-wordpress/storage/File_Storage.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Page_Cache\\Pre_WordPress\\Storage\\Storage' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/page-cache/pre-wordpress/storage/Storage.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Optimizations\\Render_Blocking_JS\\Render_Blocking_JS' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/optimizations/render-blocking-js/class-render-blocking-js.php' ), 'Automattic\\Jetpack_Boost\\Modules\\Performance_History\\Performance_History' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/modules/performance-history/Performance_History.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Contracts\\Endpoint' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/rest-api/contracts/Endpoint.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Contracts\\Has_Always_Available_Endpoints' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/rest-api/contracts/Has_Always_Available_Endpoints.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Contracts\\Has_Endpoints' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/rest-api/contracts/Has_Endpoints.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Contracts\\Permission' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/rest-api/contracts/Permission.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Endpoints\\Image_Analysis_Action_Fix' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', '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.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/rest-api/endpoints/List_Site_Urls.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Endpoints\\List_Source_Providers' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/rest-api/endpoints/List_Source_Providers.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Endpoints\\Update_Cloud_CSS' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/rest-api/endpoints/Update_Cloud_CSS.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Permissions\\Current_User_Admin' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/rest-api/permissions/Current_User_Admin.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Permissions\\Nonce' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/rest-api/permissions/Nonce.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Permissions\\Signed_With_Blog_Token' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/rest-api/permissions/Signed_With_Blog_Token.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\REST_API' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/rest-api/REST_API.php' ), 'Automattic\\Jetpack_Boost\\REST_API\\Route' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/rest-api/Route.php' ), 'Automattic\\Jetpack_Boost\\Tests\\Base_Test_Case' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/tests/php/class-base-test-case.php' ), 'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Analytics' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/tests/php/lib/test-class-analytics.php' ), 'Automattic\\Jetpack_Boost\\Tests\\Lib\\WP_Test_Minify' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/tests/php/lib/test-class-minify.php' ), 'Automattic\\Jetpack_Boost\\Tests\\Super_Cache_Compatibility_Checker_Test_Case' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/tests/php/class-super-cache-compatibility-checker-test-case.php' ), 'Container' => array( @@ -1419,31 +1419,31 @@ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-hook-manager.php' ), 'Jetpack_IXR_Client' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php' ), 'Jetpack_IXR_ClientMulticall' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php' ), 'Jetpack_Options' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php' ), 'Jetpack_Signature' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php' ), 'Jetpack_Tracks_Client' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php' ), 'Jetpack_Tracks_Event' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php' ), 'Jetpack_XMLRPC_Server' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php' ), 'Latest_Autoloader_Guard' => array( @@ -1503,7 +1503,7 @@ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-path-processor.php' ), 'Performance_History_Entry' => array( - 'version' => '3.5.0.0-alpha', + 'version' => '3.5.0.0', 'path' => $baseDir . '/app/data-sync/Performance_History_Entry.php' ), 'Plugin_Locator' => array( diff --git a/vendor/composer/jetpack_autoload_filemap.php b/vendor/composer/jetpack_autoload_filemap.php index c35551f92..5ac40f568 100644 --- a/vendor/composer/jetpack_autoload_filemap.php +++ b/vendor/composer/jetpack_autoload_filemap.php @@ -11,7 +11,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php' ), '7372b7fb88a9723cf5b76d456eb0b738' => array( - 'version' => '5.1.0.0-alpha1727181107', + 'version' => '5.1.0.0', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/actions.php' ), ); diff --git a/vendor/jetpack-autoloader/class-autoloader-handler.php b/vendor/jetpack-autoloader/class-autoloader-handler.php index 06d76f6af..71345b68a 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-autoloader-locator.php b/vendor/jetpack-autoloader/class-autoloader-locator.php index d5cf17593..1b016fbd8 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-autoloader.php b/vendor/jetpack-autoloader/class-autoloader.php index 71e47ce1c..de6fec303 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-container.php b/vendor/jetpack-autoloader/class-container.php index e2ccc3ead..3e5915a07 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-hook-manager.php b/vendor/jetpack-autoloader/class-hook-manager.php index 76e403d40..b12c9c521 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-latest-autoloader-guard.php b/vendor/jetpack-autoloader/class-latest-autoloader-guard.php index 1f0c8b7a4..c097e1b91 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-manifest-reader.php b/vendor/jetpack-autoloader/class-manifest-reader.php index ad5a89c7e..24b3b7005 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-path-processor.php b/vendor/jetpack-autoloader/class-path-processor.php index 43d0b4a4b..519b8509a 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-php-autoloader.php b/vendor/jetpack-autoloader/class-php-autoloader.php index 2bc439a6b..b5a7d236e 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-plugin-locator.php b/vendor/jetpack-autoloader/class-plugin-locator.php index 6581c2461..4eee1a6d7 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-plugins-handler.php b/vendor/jetpack-autoloader/class-plugins-handler.php index 057b3187a..6c6656969 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-shutdown-handler.php b/vendor/jetpack-autoloader/class-shutdown-handler.php index 3832750c2..8f2add92a 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-version-loader.php b/vendor/jetpack-autoloader/class-version-loader.php index d9525c6d5..1fe7fe7e1 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore diff --git a/vendor/jetpack-autoloader/class-version-selector.php b/vendor/jetpack-autoloader/class-version-selector.php index 3cc6cc217..cc46a9aea 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_5_0_alpha\al3_1_0; +namespace Automattic\Jetpack\Autoloader\jpb1e77e6231d50e7663f84529b6a3dfda_jetpack_boostⓥ3_5_0\al3_1_0; // phpcs:ignore