From 9e6f6e0448a92f371106eea9333fb58b84468008 Mon Sep 17 00:00:00 2001 From: sergeymitr Date: Fri, 15 Nov 2024 16:10:27 +0000 Subject: [PATCH] Connection: work around a WP user caching bug (#40188) WP bug #62003 leads to inconsistent format of cached user data in certain circumstances. It happens if only one field gets fetched from the database, so we add ID to work around the issue. Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/11859369283 Upstream-Ref: Automattic/jetpack@cd03f868144b99ae0a8767bcd217630ba3e4da27 --- composer.json | 2 +- .../jetpack-boost-core/composer.json | 2 +- .../jetpack-connection/CHANGELOG.md | 8 ++ .../jetpack-connection/src/class-manager.php | 7 +- .../src/class-package-version.php | 2 +- .../automattic/jetpack-explat/composer.json | 2 +- .../automattic/jetpack-jitm/composer.json | 2 +- .../jetpack-licensing/composer.json | 2 +- .../jetpack-my-jetpack/composer.json | 2 +- .../jetpack-protect-status/composer.json | 2 +- .../jetpack-publicize/composer.json | 2 +- .../automattic/jetpack-sync/composer.json | 2 +- jetpack_vendor/i18n-map.php | 2 +- vendor/automattic/jetpack-plans/composer.json | 2 +- vendor/composer/installed.json | 78 +++++++-------- vendor/composer/installed.php | 60 ++++++------ vendor/composer/jetpack_autoload_classmap.php | 94 +++++++++---------- vendor/composer/jetpack_autoload_filemap.php | 2 +- 18 files changed, 143 insertions(+), 130 deletions(-) diff --git a/composer.json b/composer.json index a4688896..c4008550 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ "automattic/jetpack-composer-plugin": "^3.0.0", "automattic/jetpack-config": "^3.0.0", "automattic/jetpack-publicize": "^0.56.0-alpha", - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "automattic/jetpack-my-jetpack": "^5.0.0", "automattic/jetpack-sync": "^4.0.0", "automattic/jetpack-status": "^5.0.0", diff --git a/jetpack_vendor/automattic/jetpack-boost-core/composer.json b/jetpack_vendor/automattic/jetpack-boost-core/composer.json index 72acdeab..ccb6251b 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.2", - "automattic/jetpack-connection": "^6.0.0" + "automattic/jetpack-connection": "^6.0.1-alpha" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md index 28c735fa..85475fbe 100644 --- a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md @@ -5,6 +5,13 @@ 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). +## [6.0.1-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + +### Fixed +- Work around a WP user caching bug (https://core.trac.wordpress.org/ticket/62003). + ## [6.0.0] - 2024-11-14 ### Removed - General: Update minimum PHP version to 7.2. [#40147] @@ -1247,6 +1254,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Separate the connection library into its own package. +[6.0.1-alpha]: https://github.com/Automattic/jetpack-connection/compare/v6.0.0...v6.0.1-alpha [6.0.0]: https://github.com/Automattic/jetpack-connection/compare/v5.1.7...v6.0.0 [5.1.7]: https://github.com/Automattic/jetpack-connection/compare/v5.1.6...v5.1.7 [5.1.6]: https://github.com/Automattic/jetpack-connection/compare/v5.1.5...v5.1.6 diff --git a/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php b/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php index 8783dbff..5d56946f 100644 --- a/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php +++ b/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php @@ -1620,12 +1620,17 @@ public function get_assumed_site_creation_date() { return $cached_date; } + /** + * We don't use the 'ID' field, but need it to overcome a WP caching bug: https://core.trac.wordpress.org/ticket/62003 + * + * @todo Remote the 'ID' field from users fetching when the issue is fixed and Jetpack-supported WP versions move beyond it. + */ $earliest_registered_users = get_users( array( 'role' => 'administrator', 'orderby' => 'user_registered', 'order' => 'ASC', - 'fields' => array( 'user_registered' ), + 'fields' => array( 'ID', 'user_registered' ), 'number' => 1, ) ); 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 eb7160bc..100faa96 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 = '6.0.0'; + const PACKAGE_VERSION = '6.0.1-alpha'; const PACKAGE_SLUG = 'connection'; diff --git a/jetpack_vendor/automattic/jetpack-explat/composer.json b/jetpack_vendor/automattic/jetpack-explat/composer.json index 0df99c30..1f53916d 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.2", - "automattic/jetpack-connection": "^6.0.0" + "automattic/jetpack-connection": "^6.0.1-alpha" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/jetpack_vendor/automattic/jetpack-jitm/composer.json b/jetpack_vendor/automattic/jetpack-jitm/composer.json index 080315c9..cbcdee35 100644 --- a/jetpack_vendor/automattic/jetpack-jitm/composer.json +++ b/jetpack_vendor/automattic/jetpack-jitm/composer.json @@ -7,7 +7,7 @@ "php": ">=7.2", "automattic/jetpack-a8c-mc-stats": "^3.0.0", "automattic/jetpack-assets": "^3.0.0", - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "automattic/jetpack-device-detection": "^3.0.0", "automattic/jetpack-logo": "^3.0.0", "automattic/jetpack-redirect": "^3.0.0", diff --git a/jetpack_vendor/automattic/jetpack-licensing/composer.json b/jetpack_vendor/automattic/jetpack-licensing/composer.json index 8015ed0c..91284fed 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.2", - "automattic/jetpack-connection": "^6.0.0" + "automattic/jetpack-connection": "^6.0.1-alpha" }, "require-dev": { "automattic/wordbless": "@dev", diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json index 6d65b522..3d541dc1 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.5.0", "automattic/jetpack-assets": "^3.0.0", "automattic/jetpack-boost-speed-score": "^0.4.0", - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "automattic/jetpack-explat": "^0.2.0", "automattic/jetpack-jitm": "^4.0.0", "automattic/jetpack-licensing": "^3.0.0", diff --git a/jetpack_vendor/automattic/jetpack-protect-status/composer.json b/jetpack_vendor/automattic/jetpack-protect-status/composer.json index 814c7930..8aed01ac 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.2", - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "automattic/jetpack-plugins-installer": "^0.5.0", "automattic/jetpack-sync": "^4.0.0", "automattic/jetpack-protect-models": "^0.4.0", diff --git a/jetpack_vendor/automattic/jetpack-publicize/composer.json b/jetpack_vendor/automattic/jetpack-publicize/composer.json index e99ecb28..8b608329 100644 --- a/jetpack_vendor/automattic/jetpack-publicize/composer.json +++ b/jetpack_vendor/automattic/jetpack-publicize/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.2", - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "automattic/jetpack-autoloader": "^4.0.0", "automattic/jetpack-config": "^3.0.0", "automattic/jetpack-assets": "^3.0.0", diff --git a/jetpack_vendor/automattic/jetpack-sync/composer.json b/jetpack_vendor/automattic/jetpack-sync/composer.json index a847e90d..89beb0be 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.2", - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "automattic/jetpack-constants": "^3.0.0", "automattic/jetpack-password-checker": "^0.4.0", "automattic/jetpack-ip": "^0.4.0", diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index 49848fcf..48937812 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' => '6.0.0', + 'ver' => '6.0.1-alpha1731686094', ), 'jetpack-explat' => array( 'path' => 'jetpack_vendor/automattic/jetpack-explat', diff --git a/vendor/automattic/jetpack-plans/composer.json b/vendor/automattic/jetpack-plans/composer.json index 2887da04..46449f88 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.2", - "automattic/jetpack-connection": "^6.0.0" + "automattic/jetpack-connection": "^6.0.1-alpha" }, "require-dev": { "yoast/phpunit-polyfills": "^1.1.1", diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 089a8dff..493a4ede 100644 --- a/vendor/composer/installed.json +++ b/vendor/composer/installed.json @@ -7,7 +7,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-a8c-mc-stats", - "reference": "df4c92b322f66aa7f99b24a7440dfee859ceee9b" + "reference": "17f545e62551bbbbe03b9abb28c2396d7f001de0" }, "require": { "php": ">=7.2" @@ -63,7 +63,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "8223c585ed08177ffd7764f253d48fbeecf0bcf0" + "reference": "92cd01396d6685041382fbb06651cb9f3635a531" }, "require": { "php": ">=7.2" @@ -131,7 +131,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "e88b73d7884d6af2da7336ce4670407667f63a21" + "reference": "72b9ec61fda64f09ac8ba08fa8b3d1b33835e4b5" }, "require": { "automattic/jetpack-constants": "^3.0.0", @@ -203,7 +203,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "60fe83badea889afdcd3d1f435e914c023a5fd16" + "reference": "d5cedeb855d82d0c39be527df18f8b79333757e4" }, "require": { "composer-plugin-api": "^1.1 || ^2.0", @@ -274,10 +274,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-core", - "reference": "a8582c4a600612dc4cc87bdb9c493c5eacca4881" + "reference": "befdb661d705ecaa0b789d99a6bd6dd53b43743c" }, "require": { - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "php": ">=7.2" }, "require-dev": { @@ -345,7 +345,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-speed-score", - "reference": "2d22b425d223c6b0b7ded6c3730d2523cb4ab906" + "reference": "3e5a3600f7493dec4b77cbe00af679e141466204" }, "require": { "automattic/jetpack-boost-core": "^0.3.0", @@ -424,7 +424,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "43bd0fa2d9fd1e99d60642b1c6247776047114f7" + "reference": "ce2b99a294a1cd78480493605ebc2ebf8fc12cb8" }, "require": { "composer-plugin-api": "^2.1.0", @@ -487,7 +487,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "cecf3ab2fdfd2f93dabd27f170df3dfbdd7d925d" + "reference": "e40482a7bbbb3a79cd8093bf1819be23458a5f46" }, "require": { "php": ">=7.2" @@ -557,12 +557,12 @@ }, { "name": "automattic/jetpack-connection", - "version": "6.0.0", - "version_normalized": "6.0.0.0", + "version": "6.0.1-alpha.1731686094", + "version_normalized": "6.0.1.0-alpha1731686094", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "f1f93e86eb58d80c504f2306a3dee789a111ccce" + "reference": "76ce6434424ad3f431dd4df98887ba909f1d232f" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -655,7 +655,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "93542307b39c7cc515298740cbffe19cb26bbcba" + "reference": "aefb0c1afa33424ad79ad72276b5a636494bc164" }, "require": { "php": ">=7.2" @@ -712,7 +712,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "2754ddeb940b9f3408e87e13dfdd9cfab8072631" + "reference": "7b7e246851229139a7622d75d5ee33c1d8fb70a5" }, "require": { "php": ">=7.2" @@ -768,10 +768,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-explat", - "reference": "b02325b41ca7e1d3ec9bd4bb626ba0edcfb41d95" + "reference": "a5ea95a4ecf86d694169a2ce578cabf511039d75" }, "require": { - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "php": ">=7.2" }, "require-dev": { @@ -846,7 +846,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "cf77160646b7d12b5a259ca84ed6312c9821f3a6" + "reference": "42d4be51a64afa2e27c749ac7e2a0dc00af1e944" }, "require": { "php": ">=7.2" @@ -907,12 +907,12 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "788db2f094ccc3c07e464efa6092a075a4ea9a8a" + "reference": "3fd34ac54ad986e66c1608615100ff326fdf77df" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", "automattic/jetpack-assets": "^3.0.0", - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "automattic/jetpack-device-detection": "^3.0.0", "automattic/jetpack-logo": "^3.0.0", "automattic/jetpack-redirect": "^3.0.0", @@ -985,10 +985,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "8a044d69783e02874487dcf1c8905eafb861e72c" + "reference": "ad3123310bdeae02be3314a9ee5338faecbeb42a" }, "require": { - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "php": ">=7.2" }, "require-dev": { @@ -1050,7 +1050,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "7756955b7113719af17f23203d8a4cd398106639" + "reference": "6ed7a043cf044868ee23edf7edfc1189be44a4ca" }, "require": { "php": ">=7.2" @@ -1106,13 +1106,13 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "084fb52a900536e2801a32bf55583af2323acc15" + "reference": "71ece3a3e9ccfe57954ab4d2c90726f9b48dd9c9" }, "require": { "automattic/jetpack-admin-ui": "^0.5.0", "automattic/jetpack-assets": "^3.0.0", "automattic/jetpack-boost-speed-score": "^0.4.0", - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "automattic/jetpack-constants": "^3.0.0", "automattic/jetpack-explat": "^0.2.0", "automattic/jetpack-jitm": "^4.0.0", @@ -1211,7 +1211,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "864533ba94ff425e9b6d14714c17b3d5a2bd1e41" + "reference": "cf114400968e77bf4b18505ae33778a2a07632b2" }, "require": { "php": ">=7.2" @@ -1275,10 +1275,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "320703e1a41240b0958587e2eb8fdbfa014d6150" + "reference": "16020241b5b39b5a1c02a6586d117b4e11adcc55" }, "require": { - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "php": ">=7.2" }, "require-dev": { @@ -1346,7 +1346,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "f6353352d364ac55b8cf386525b894a8b57ef9ef" + "reference": "458fda95db471b7dd967e0f224959d12d3ce1cac" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -1405,7 +1405,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-post-list", - "reference": "58c87ca7a788418da6b1dbcc27b0af18bd8b1e54" + "reference": "50b4f1cc030ed50c5c3ec3ef374e987895483b78" }, "require": { "automattic/jetpack-assets": "^3.0.0", @@ -1473,7 +1473,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-models", - "reference": "e9248c25a658f62710292595e7b1c495110a6d24" + "reference": "4dae9facaaf41afb0787a5db3b50b5967c557eb1" }, "require": { "php": ">=7.2" @@ -1546,10 +1546,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-status", - "reference": "26e3d88daea4b0347c42f7fa0b83c5137a5510c4" + "reference": "be24db25728d242264225d00491982d2678b932b" }, "require": { - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "automattic/jetpack-plans": "^0.5.0", "automattic/jetpack-plugins-installer": "^0.5.0", "automattic/jetpack-protect-models": "^0.4.0", @@ -1624,13 +1624,13 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-publicize", - "reference": "8dc3d3f79318e9466a77cc7833f56ec83e837be7" + "reference": "7fd75220de6b274aa7e643175bf0726498a0f812" }, "require": { "automattic/jetpack-assets": "^3.0.0", "automattic/jetpack-autoloader": "^4.0.0", "automattic/jetpack-config": "^3.0.0", - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "automattic/jetpack-plans": "^0.5.0", "automattic/jetpack-redirect": "^3.0.0", "automattic/jetpack-status": "^5.0.0", @@ -1709,7 +1709,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "3813189db0dde2e6706b5a0576de10519e0404d9" + "reference": "5e8db0eed5a2596996d8dd6e6c38ee6fe5fe92a7" }, "require": { "automattic/jetpack-status": "^5.0.0", @@ -1767,7 +1767,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "b0d0671be22023e4d9617876bfbe1cf3e163d2d2" + "reference": "4a3fa55a9936ba583020f348482e7db5064fd15d" }, "require": { "php": ">=7.2" @@ -1824,7 +1824,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "8fe87fe04bc01761ac6a893f219065be9f73c2a1" + "reference": "8565b278d2e79979a6baf7aec2ad11795d265b8d" }, "require": { "automattic/jetpack-constants": "^3.0.0", @@ -1891,10 +1891,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "d103b279f70f44f7a733bf329c20c82fc52d2581" + "reference": "693dbfc73d0b35567a521f5c456ebfa4dae9e3a5" }, "require": { - "automattic/jetpack-connection": "^6.0.0", + "automattic/jetpack-connection": "^6.0.1-alpha", "automattic/jetpack-constants": "^3.0.0", "automattic/jetpack-ip": "^0.4.0", "automattic/jetpack-password-checker": "^0.4.0", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 842f22ab..70cf6d4f 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -13,7 +13,7 @@ 'automattic/jetpack-a8c-mc-stats' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'df4c92b322f66aa7f99b24a7440dfee859ceee9b', + 'reference' => '17f545e62551bbbbe03b9abb28c2396d7f001de0', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-a8c-mc-stats', 'aliases' => array(), @@ -22,7 +22,7 @@ 'automattic/jetpack-admin-ui' => array( 'pretty_version' => '0.5.0', 'version' => '0.5.0.0', - 'reference' => '8223c585ed08177ffd7764f253d48fbeecf0bcf0', + 'reference' => '92cd01396d6685041382fbb06651cb9f3635a531', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), @@ -31,7 +31,7 @@ 'automattic/jetpack-assets' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'e88b73d7884d6af2da7336ce4670407667f63a21', + 'reference' => '72b9ec61fda64f09ac8ba08fa8b3d1b33835e4b5', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '4.0.0', 'version' => '4.0.0.0', - 'reference' => '60fe83badea889afdcd3d1f435e914c023a5fd16', + 'reference' => 'd5cedeb855d82d0c39be527df18f8b79333757e4', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-boost-core' => array( 'pretty_version' => '0.3.0', 'version' => '0.3.0.0', - 'reference' => 'a8582c4a600612dc4cc87bdb9c493c5eacca4881', + 'reference' => 'befdb661d705ecaa0b789d99a6bd6dd53b43743c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-core', 'aliases' => array(), @@ -58,7 +58,7 @@ 'automattic/jetpack-boost-speed-score' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => '2d22b425d223c6b0b7ded6c3730d2523cb4ab906', + 'reference' => '3e5a3600f7493dec4b77cbe00af679e141466204', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-speed-score', 'aliases' => array(), @@ -67,7 +67,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '43bd0fa2d9fd1e99d60642b1c6247776047114f7', + 'reference' => 'ce2b99a294a1cd78480493605ebc2ebf8fc12cb8', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -76,16 +76,16 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'cecf3ab2fdfd2f93dabd27f170df3dfbdd7d925d', + 'reference' => 'e40482a7bbbb3a79cd8093bf1819be23458a5f46', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-connection' => array( - 'pretty_version' => '6.0.0', - 'version' => '6.0.0.0', - 'reference' => 'f1f93e86eb58d80c504f2306a3dee789a111ccce', + 'pretty_version' => '6.0.1-alpha.1731686094', + 'version' => '6.0.1.0-alpha1731686094', + 'reference' => '76ce6434424ad3f431dd4df98887ba909f1d232f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -94,7 +94,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '93542307b39c7cc515298740cbffe19cb26bbcba', + 'reference' => 'aefb0c1afa33424ad79ad72276b5a636494bc164', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '2754ddeb940b9f3408e87e13dfdd9cfab8072631', + 'reference' => '7b7e246851229139a7622d75d5ee33c1d8fb70a5', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-explat' => array( 'pretty_version' => '0.2.0', 'version' => '0.2.0.0', - 'reference' => 'b02325b41ca7e1d3ec9bd4bb626ba0edcfb41d95', + 'reference' => 'a5ea95a4ecf86d694169a2ce578cabf511039d75', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-explat', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => 'cf77160646b7d12b5a259ca84ed6312c9821f3a6', + 'reference' => '42d4be51a64afa2e27c749ac7e2a0dc00af1e944', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '4.0.0', 'version' => '4.0.0.0', - 'reference' => '788db2f094ccc3c07e464efa6092a075a4ea9a8a', + 'reference' => '3fd34ac54ad986e66c1608615100ff326fdf77df', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -139,7 +139,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '8a044d69783e02874487dcf1c8905eafb861e72c', + 'reference' => 'ad3123310bdeae02be3314a9ee5338faecbeb42a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -148,7 +148,7 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '7756955b7113719af17f23203d8a4cd398106639', + 'reference' => '6ed7a043cf044868ee23edf7edfc1189be44a4ca', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), @@ -157,7 +157,7 @@ 'automattic/jetpack-my-jetpack' => array( 'pretty_version' => '5.0.0', 'version' => '5.0.0.0', - 'reference' => '084fb52a900536e2801a32bf55583af2323acc15', + 'reference' => '71ece3a3e9ccfe57954ab4d2c90726f9b48dd9c9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -166,7 +166,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => '864533ba94ff425e9b6d14714c17b3d5a2bd1e41', + 'reference' => 'cf114400968e77bf4b18505ae33778a2a07632b2', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -175,7 +175,7 @@ 'automattic/jetpack-plans' => array( 'pretty_version' => '0.5.0', 'version' => '0.5.0.0', - 'reference' => '320703e1a41240b0958587e2eb8fdbfa014d6150', + 'reference' => '16020241b5b39b5a1c02a6586d117b4e11adcc55', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.5.0', 'version' => '0.5.0.0', - 'reference' => 'f6353352d364ac55b8cf386525b894a8b57ef9ef', + 'reference' => '458fda95db471b7dd967e0f224959d12d3ce1cac', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -193,7 +193,7 @@ 'automattic/jetpack-post-list' => array( 'pretty_version' => '0.7.0-alpha.1731518828', 'version' => '0.7.0.0-alpha1731518828', - 'reference' => '58c87ca7a788418da6b1dbcc27b0af18bd8b1e54', + 'reference' => '50b4f1cc030ed50c5c3ec3ef374e987895483b78', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-post-list', 'aliases' => array(), @@ -202,7 +202,7 @@ 'automattic/jetpack-protect-models' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => 'e9248c25a658f62710292595e7b1c495110a6d24', + 'reference' => '4dae9facaaf41afb0787a5db3b50b5967c557eb1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-models', 'aliases' => array(), @@ -211,7 +211,7 @@ 'automattic/jetpack-protect-status' => array( 'pretty_version' => '0.3.0', 'version' => '0.3.0.0', - 'reference' => '26e3d88daea4b0347c42f7fa0b83c5137a5510c4', + 'reference' => 'be24db25728d242264225d00491982d2678b932b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-status', 'aliases' => array(), @@ -220,7 +220,7 @@ 'automattic/jetpack-publicize' => array( 'pretty_version' => '0.56.0-alpha.1731518828', 'version' => '0.56.0.0-alpha1731518828', - 'reference' => '8dc3d3f79318e9466a77cc7833f56ec83e837be7', + 'reference' => '7fd75220de6b274aa7e643175bf0726498a0f812', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-publicize', 'aliases' => array(), @@ -229,7 +229,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '3813189db0dde2e6706b5a0576de10519e0404d9', + 'reference' => '5e8db0eed5a2596996d8dd6e6c38ee6fe5fe92a7', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -238,7 +238,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'b0d0671be22023e4d9617876bfbe1cf3e163d2d2', + 'reference' => '4a3fa55a9936ba583020f348482e7db5064fd15d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -256,7 +256,7 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '5.0.0', 'version' => '5.0.0.0', - 'reference' => '8fe87fe04bc01761ac6a893f219065be9f73c2a1', + 'reference' => '8565b278d2e79979a6baf7aec2ad11795d265b8d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), @@ -265,7 +265,7 @@ 'automattic/jetpack-sync' => array( 'pretty_version' => '4.0.0', 'version' => '4.0.0.0', - 'reference' => 'd103b279f70f44f7a733bf329c20c82fc52d2581', + 'reference' => '693dbfc73d0b35567a521f5c456ebfa4dae9e3a5', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-sync', 'aliases' => array(), diff --git a/vendor/composer/jetpack_autoload_classmap.php b/vendor/composer/jetpack_autoload_classmap.php index cebb365f..bd4ea7e1 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' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-authorize-json-api.php' ), 'Automattic\\Jetpack\\Connection\\Client' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Assets' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-assets.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Notice' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-notice.php' ), 'Automattic\\Jetpack\\Connection\\Error_Handler' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php' ), 'Automattic\\Jetpack\\Connection\\Initial_State' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php' ), 'Automattic\\Jetpack\\Connection\\Manager' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php' ), 'Automattic\\Jetpack\\Connection\\Manager_Interface' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php' ), 'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php' ), 'Automattic\\Jetpack\\Connection\\Plugin' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php' ), 'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php' ), 'Automattic\\Jetpack\\Connection\\REST_Connector' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php' ), 'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php' ), 'Automattic\\Jetpack\\Connection\\SSO' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-sso.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Force_2FA' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-force-2fa.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Helpers' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-helpers.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Notices' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-notices.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\User_Admin' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-user-admin.php' ), 'Automattic\\Jetpack\\Connection\\Secrets' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php' ), 'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php' ), 'Automattic\\Jetpack\\Connection\\Tokens' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php' ), 'Automattic\\Jetpack\\Connection\\Tokens_Locks' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens-locks.php' ), 'Automattic\\Jetpack\\Connection\\Urls' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php' ), 'Automattic\\Jetpack\\Connection\\Utils' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', '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' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', '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' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-exception.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\UI' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-ui.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\URL_Secret' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-url-secret.php' ), 'Automattic\\Jetpack\\Identity_Crisis' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/identity-crisis/class-identity-crisis.php' ), 'Automattic\\Jetpack\\JITMS\\JITM' => array( @@ -459,11 +459,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner.php' ), 'Automattic\\Jetpack\\Partner_Coupon' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner-coupon.php' ), 'Automattic\\Jetpack\\Password_Checker' => array( @@ -871,11 +871,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-terms-of-service.php' ), 'Automattic\\Jetpack\\Tracking' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php' ), 'Container' => array( @@ -887,19 +887,19 @@ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-hook-manager.php' ), 'Jetpack_IXR_Client' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php' ), 'Jetpack_IXR_ClientMulticall' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php' ), 'Jetpack_Options' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php' ), 'Jetpack_Signature' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php' ), 'Jetpack_Social' => array( @@ -907,15 +907,15 @@ 'path' => $baseDir . '/src/class-jetpack-social.php' ), 'Jetpack_Tracks_Client' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php' ), 'Jetpack_Tracks_Event' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php' ), 'Jetpack_XMLRPC_Server' => array( - 'version' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php' ), 'Latest_Autoloader_Guard' => array( diff --git a/vendor/composer/jetpack_autoload_filemap.php b/vendor/composer/jetpack_autoload_filemap.php index 7bc5dcfc..fd4092cb 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' => '6.0.0.0', + 'version' => '6.0.1.0-alpha1731686094', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/actions.php' ), 'd9927a8ddcd8b3a40fb28c24213827ff' => array(