diff --git a/composer.json b/composer.json index 0a878f722..c64cf260a 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ "automattic/jetpack-autoloader": "^3.0.2", "automattic/jetpack-composer-plugin": "^2.0.0", "automattic/jetpack-config": "^2.0.0", - "automattic/jetpack-identity-crisis": "^0.12.1", + "automattic/jetpack-identity-crisis": "^0.13.0-alpha", "automattic/jetpack-my-jetpack": "^4.0.4-alpha", "automattic/jetpack-plugins-installer": "^0.3.0", "automattic/jetpack-sync": "^2.1.1-alpha" diff --git a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md index 913c36f86..6dc21b7ee 100644 --- a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md @@ -5,10 +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). -## [2.0.4-alpha] - unreleased +## [2.1.0-alpha] - unreleased This is an alpha version! The changes listed here are not final. +### Added +- XMLRPC endpoint 'jetpack.idcUrlValidation' now accepts an argument to specify whether we should try to reuse existing URL secret. + ## [2.0.3] - 2023-11-24 ## [2.0.2] - 2023-11-21 @@ -935,7 +938,7 @@ This is an alpha version! The changes listed here are not final. - Separate the connection library into its own package. -[2.0.4-alpha]: https://github.com/Automattic/jetpack-connection/compare/v2.0.3...v2.0.4-alpha +[2.1.0-alpha]: https://github.com/Automattic/jetpack-connection/compare/v2.0.3...v2.1.0-alpha [2.0.3]: https://github.com/Automattic/jetpack-connection/compare/v2.0.2...v2.0.3 [2.0.2]: https://github.com/Automattic/jetpack-connection/compare/v2.0.1...v2.0.2 [2.0.1]: https://github.com/Automattic/jetpack-connection/compare/v2.0.0...v2.0.1 diff --git a/jetpack_vendor/automattic/jetpack-connection/composer.json b/jetpack_vendor/automattic/jetpack-connection/composer.json index 39c7a21d7..7e4eabad5 100644 --- a/jetpack_vendor/automattic/jetpack-connection/composer.json +++ b/jetpack_vendor/automattic/jetpack-connection/composer.json @@ -57,7 +57,7 @@ "link-template": "https://github.com/Automattic/jetpack-connection/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "2.0.x-dev" + "dev-trunk": "2.1.x-dev" } }, "config": { 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 ec78ca938..16e4c8ce9 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 = '2.0.4-alpha'; + const PACKAGE_VERSION = '2.1.0-alpha'; const PACKAGE_SLUG = 'connection'; diff --git a/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md index 57ebc784a..ac7270b37 100644 --- a/jetpack_vendor/automattic/jetpack-identity-crisis/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-identity-crisis/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). +## [0.13.0-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + +### Added +- Store persistent blog ID for multi-URL purposes. + ## [0.12.1] - 2023-11-24 ## [0.12.0] - 2023-11-20 @@ -451,6 +458,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated package dependencies. - Use Connection/Urls for home_url and site_url functions migrated from Sync. +[0.13.0-alpha]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.12.1...v0.13.0-alpha [0.12.1]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.12.0...v0.12.1 [0.12.0]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.11.3...v0.12.0 [0.11.3]: https://github.com/Automattic/jetpack-identity-crisis/compare/v0.11.2...v0.11.3 diff --git a/jetpack_vendor/automattic/jetpack-identity-crisis/composer.json b/jetpack_vendor/automattic/jetpack-identity-crisis/composer.json index 7fb78137a..f74971dab 100644 --- a/jetpack_vendor/automattic/jetpack-identity-crisis/composer.json +++ b/jetpack_vendor/automattic/jetpack-identity-crisis/composer.json @@ -5,7 +5,7 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.0", - "automattic/jetpack-connection": "^2.0.4-alpha", + "automattic/jetpack-connection": "^2.1.0-alpha", "automattic/jetpack-constants": "^2.0.0", "automattic/jetpack-status": "^2.0.2-alpha", "automattic/jetpack-logo": "^2.0.0", @@ -57,7 +57,7 @@ "link-template": "https://github.com/Automattic/jetpack-identity-crisis/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.12.x-dev" + "dev-trunk": "0.13.x-dev" } }, "config": { diff --git a/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php b/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php index d5585498e..ad84ac2dd 100644 --- a/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php +++ b/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php @@ -27,7 +27,12 @@ class Identity_Crisis { /** * Package Version */ - const PACKAGE_VERSION = '0.12.1'; + const PACKAGE_VERSION = '0.13.0-alpha'; + + /** + * Persistent WPCOM blog ID that stays in the options after disconnect. + */ + const PERSISTENT_BLOG_ID_OPTION_NAME = 'jetpack_persistent_blog_id'; /** * Instance of the object. @@ -90,6 +95,9 @@ private function __construct() { add_filter( 'jetpack_options', array( static::class, 'reverse_wpcom_urls_for_idc' ) ); + add_filter( 'jetpack_register_request_body', array( static::class, 'register_request_body' ) ); + add_action( 'jetpack_site_registered', array( static::class, 'site_registered' ) ); + $urls_in_crisis = self::check_identity_crisis(); if ( false === $urls_in_crisis ) { return; @@ -113,6 +121,8 @@ public static function do_jetpack_idc_disconnect() { $connection->disconnect_site( false ); } + delete_option( static::PERSISTENT_BLOG_ID_OPTION_NAME ); + // Clear IDC options. self::clear_all_idc_options(); } @@ -1341,4 +1351,46 @@ public static function add_secret_to_url_validation_response( array $response ) return $response; } + + /** + * Add IDC-related data to the registration query. + * + * @param array $params The existing query params. + * + * @return array + */ + public static function register_request_body( array $params ) { + $persistent_blog_id = get_option( static::PERSISTENT_BLOG_ID_OPTION_NAME ); + if ( $persistent_blog_id ) { + $params['persistent_blog_id'] = $persistent_blog_id; + + $hostname = wp_parse_url( Urls::site_url(), PHP_URL_HOST ); + if ( filter_var( $hostname, FILTER_VALIDATE_IP ) !== false ) { + try { + $secret = new URL_Secret(); + $secret->create(); + + if ( $secret->exists() ) { + $params['url_secret'] = $secret->get_secret(); + } + } catch ( Exception $e ) { + // No need to stop the registration flow, just track the error and proceed. + ( new Tracking() )->record_user_event( 'registration_request_url_secret_failed', array( 'current_url' => Urls::site_url() ) ); + } + } + } + + return $params; + } + + /** + * Set the necessary options when site gets registered. + * + * @param int $blog_id The blog ID. + * + * @return void + */ + public static function site_registered( $blog_id ) { + update_option( static::PERSISTENT_BLOG_ID_OPTION_NAME, (int) $blog_id, false ); + } } diff --git a/jetpack_vendor/automattic/jetpack-jitm/composer.json b/jetpack_vendor/automattic/jetpack-jitm/composer.json index 77af38920..1100a1ef6 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.0", "automattic/jetpack-assets": "^2.0.1", - "automattic/jetpack-connection": "^2.0.4-alpha", + "automattic/jetpack-connection": "^2.1.0-alpha", "automattic/jetpack-device-detection": "^2.0.1", "automattic/jetpack-logo": "^2.0.0", "automattic/jetpack-redirect": "^2.0.0", diff --git a/jetpack_vendor/automattic/jetpack-licensing/composer.json b/jetpack_vendor/automattic/jetpack-licensing/composer.json index cabee30c7..a31710c15 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": "^2.0.4-alpha" + "automattic/jetpack-connection": "^2.1.0-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 e788e38f4..a25de4551 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json @@ -7,7 +7,7 @@ "php": ">=7.0", "automattic/jetpack-admin-ui": "^0.3.1", "automattic/jetpack-assets": "^2.0.1", - "automattic/jetpack-connection": "^2.0.4-alpha", + "automattic/jetpack-connection": "^2.1.0-alpha", "automattic/jetpack-jitm": "^3.0.0", "automattic/jetpack-licensing": "^2.0.1", "automattic/jetpack-plugins-installer": "^0.3.0", diff --git a/jetpack_vendor/automattic/jetpack-sync/composer.json b/jetpack_vendor/automattic/jetpack-sync/composer.json index 71ee7303d..c5220bb86 100644 --- a/jetpack_vendor/automattic/jetpack-sync/composer.json +++ b/jetpack_vendor/automattic/jetpack-sync/composer.json @@ -5,9 +5,9 @@ "license": "GPL-2.0-or-later", "require": { "php": ">=7.0", - "automattic/jetpack-connection": "^2.0.4-alpha", + "automattic/jetpack-connection": "^2.1.0-alpha", "automattic/jetpack-constants": "^2.0.0", - "automattic/jetpack-identity-crisis": "^0.12.1", + "automattic/jetpack-identity-crisis": "^0.13.0-alpha", "automattic/jetpack-password-checker": "^0.3.0", "automattic/jetpack-ip": "^0.2.1", "automattic/jetpack-roles": "^2.0.0", diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index 289b7fd5e..9c461ecd0 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -18,11 +18,11 @@ ), 'jetpack-connection' => array( 'path' => 'jetpack_vendor/automattic/jetpack-connection', - 'ver' => '2.0.4-alpha1701188454', + 'ver' => '2.1.0-alpha1701295077', ), 'jetpack-idc' => array( 'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis', - 'ver' => '0.12.1', + 'ver' => '0.13.0-alpha1701295077', ), 'jetpack-ip' => array( 'path' => 'jetpack_vendor/automattic/jetpack-ip', diff --git a/vendor/automattic/jetpack-plans/composer.json b/vendor/automattic/jetpack-plans/composer.json index 4c8ae6686..a493ef0aa 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": "^2.0.4-alpha" + "automattic/jetpack-connection": "^2.1.0-alpha" }, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 882170a02..f868c1a5c 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": "7cdd9649865b402d58512e08ebca81bd38ee0772" + "reference": "858daf31010a2932a2d4e38e611606c4c3585d3f" }, "require": { "php": ">=7.0" @@ -60,7 +60,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "9e437e862bf1961ba6d90a2fce2e9c7de5382237" + "reference": "6b1c18f245bb3229b7535eb3cd0c5f5a8ea8a793" }, "require": { "php": ">=7.0" @@ -125,7 +125,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "bfd14e7a03e9a18fd81c94bd459a4bdf2e6485e9" + "reference": "28166df03650a23e15c848a858a9ac32833f417f" }, "require": { "automattic/jetpack-constants": "^2.0.0", @@ -194,7 +194,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "017436acbcde8363129a5920a08d52b3d0628e74" + "reference": "3fa55cff39008c3c81eea9b159fb5d9cd30775b2" }, "require": { "composer-plugin-api": "^1.1 || ^2.0", @@ -260,7 +260,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "d78a655211b5cfa110e3c8c2bfc6c21b1be1c080" + "reference": "6d4bfe23b8ff72907216d9dde972bc6dc8b8737f" }, "require": { "composer-plugin-api": "^2.1.0", @@ -320,7 +320,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "17b76f617cbbf0dd5ef70dcc3ffd2ebdd2fc099c" + "reference": "6fadc32644ae01be7b40fff91a29dbbf1d136caa" }, "require": { "php": ">=7.0" @@ -360,12 +360,12 @@ }, { "name": "automattic/jetpack-connection", - "version": "2.0.4-alpha.1701188454", - "version_normalized": "2.0.4.0-alpha1701188454", + "version": "2.1.0-alpha.1701295077", + "version_normalized": "2.1.0.0-alpha1701295077", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "69d66852fe51547501142ab8403f38ff90ba038c" + "reference": "53d0e3532c514ffad680ebdedba6162e5d454a6f" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.0", @@ -397,7 +397,7 @@ "link-template": "https://github.com/Automattic/jetpack-connection/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "2.0.x-dev" + "dev-trunk": "2.1.x-dev" } }, "installation-source": "dist", @@ -444,7 +444,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "4d44b6381269aa43593e6f0545ced39f083b264d" + "reference": "4c7c5cbd8f39d65976dfb62100076a4fac6a6a50" }, "require": { "php": ">=7.0" @@ -498,7 +498,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "c6c33a5293a16695aa6dbe1ce4f1a72dfab32809" + "reference": "acff665963235a4a4329f91c31c450de66ad3e24" }, "require": { "php": ">=7.0" @@ -546,16 +546,16 @@ }, { "name": "automattic/jetpack-identity-crisis", - "version": "0.12.1", - "version_normalized": "0.12.1.0", + "version": "0.13.0-alpha.1701295077", + "version_normalized": "0.13.0.0-alpha1701295077", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-identity-crisis", - "reference": "54f02060c50f8f0256e0f7bb2d50af8d721818d0" + "reference": "8e6e232a369941b329ed5e5f1671b82026aa25fa" }, "require": { "automattic/jetpack-assets": "^2.0.1", - "automattic/jetpack-connection": "^2.0.4-alpha", + "automattic/jetpack-connection": "^2.1.0-alpha", "automattic/jetpack-constants": "^2.0.0", "automattic/jetpack-logo": "^2.0.0", "automattic/jetpack-status": "^2.0.2-alpha", @@ -581,7 +581,7 @@ "link-template": "https://github.com/Automattic/jetpack-identity-crisis/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "0.12.x-dev" + "dev-trunk": "0.13.x-dev" } }, "installation-source": "dist", @@ -630,7 +630,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "6f8862acfc53c983fc1da5fcf66c169c909d910d" + "reference": "0fd02c365614e45fd273ac7febdd131800899918" }, "require": { "php": ">=7.0" @@ -688,12 +688,12 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "c3754dfa8fc21a9fde43da3437d7764b2b79b326" + "reference": "720645c441de64b12906e821f29c0048a875b0d9" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.0", "automattic/jetpack-assets": "^2.0.1", - "automattic/jetpack-connection": "^2.0.4-alpha", + "automattic/jetpack-connection": "^2.1.0-alpha", "automattic/jetpack-device-detection": "^2.0.1", "automattic/jetpack-logo": "^2.0.0", "automattic/jetpack-redirect": "^2.0.0", @@ -763,10 +763,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "404ddf6fa03fc510906556a2464354df1304c58e" + "reference": "e9caf6fa18034e706d791e4600f904d685631267" }, "require": { - "automattic/jetpack-connection": "^2.0.4-alpha", + "automattic/jetpack-connection": "^2.1.0-alpha", "php": ">=7.0" }, "require-dev": { @@ -825,7 +825,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "04b9cd982166aedeab3e29e7237055fb9589dc33" + "reference": "989994594be497c11299792c1e8a45bc8fae319d" }, "require": { "php": ">=7.0" @@ -878,12 +878,12 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "c4647f6d6cbd45c5e716aac038c21cc3b6a1e4a8" + "reference": "ff5f034af119e9f305d8858c67e71be8dbfc75c7" }, "require": { "automattic/jetpack-admin-ui": "^0.3.1", "automattic/jetpack-assets": "^2.0.1", - "automattic/jetpack-connection": "^2.0.4-alpha", + "automattic/jetpack-connection": "^2.1.0-alpha", "automattic/jetpack-constants": "^2.0.0", "automattic/jetpack-jitm": "^3.0.0", "automattic/jetpack-licensing": "^2.0.1", @@ -970,7 +970,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "a29e294425bbc3cc8d60a3d1fb92229af19967fd" + "reference": "e177fd66b5d0333079b19b09e4b981ed7651a23f" }, "require": { "php": ">=7.0" @@ -1031,10 +1031,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "afdbc3a187544d6475996ea21095669c667c1d67" + "reference": "4798ea4aa0992f5d1235388f95d8b2a1807d819a" }, "require": { - "automattic/jetpack-connection": "^2.0.4-alpha", + "automattic/jetpack-connection": "^2.1.0-alpha", "php": ">=7.0" }, "require-dev": { @@ -1099,7 +1099,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "43692e348b565bd73f2d773c7a68d99a87b37279" + "reference": "130d88f00768e5db06ae3c10bed8aa134a56431c" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.0", @@ -1154,7 +1154,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "06c187c611fd2133270d3a9bfa899199cc748c28" + "reference": "1989aa91f1242232ad693745d37cd713fd77c6a4" }, "require": { "automattic/jetpack-status": "^2.0.2-alpha", @@ -1209,7 +1209,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "2d95623780acd389f58ce39ab024c2b6e1784c59" + "reference": "765f469e2070ce25e73e599e55061dd0934c86f8" }, "require": { "php": ">=7.0" @@ -1263,7 +1263,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "36a01afc961f932543a064f630f1ed98ab981401" + "reference": "d5d61e05e3653f6c54b0536503c6bbfd225f54d7" }, "require": { "automattic/jetpack-constants": "^2.0.0", @@ -1319,12 +1319,12 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "6e6d50ad4e9143de2fa32f4d2d2b2e8a905f583d" + "reference": "f03f683f99177fe86f52e9f786bdfd83970945a8" }, "require": { - "automattic/jetpack-connection": "^2.0.4-alpha", + "automattic/jetpack-connection": "^2.1.0-alpha", "automattic/jetpack-constants": "^2.0.0", - "automattic/jetpack-identity-crisis": "^0.12.1", + "automattic/jetpack-identity-crisis": "^0.13.0-alpha", "automattic/jetpack-ip": "^0.2.1", "automattic/jetpack-password-checker": "^0.3.0", "automattic/jetpack-roles": "^2.0.0", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index d579e9051..b0aafe67e 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -13,7 +13,7 @@ 'automattic/jetpack-a8c-mc-stats' => array( 'pretty_version' => '2.0.0', 'version' => '2.0.0.0', - 'reference' => '7cdd9649865b402d58512e08ebca81bd38ee0772', + 'reference' => '858daf31010a2932a2d4e38e611606c4c3585d3f', '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.3.1', 'version' => '0.3.1.0', - 'reference' => '9e437e862bf1961ba6d90a2fce2e9c7de5382237', + 'reference' => '6b1c18f245bb3229b7535eb3cd0c5f5a8ea8a793', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), @@ -31,7 +31,7 @@ 'automattic/jetpack-assets' => array( 'pretty_version' => '2.0.1', 'version' => '2.0.1.0', - 'reference' => 'bfd14e7a03e9a18fd81c94bd459a4bdf2e6485e9', + 'reference' => '28166df03650a23e15c848a858a9ac32833f417f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '3.0.2', 'version' => '3.0.2.0', - 'reference' => '017436acbcde8363129a5920a08d52b3d0628e74', + 'reference' => '3fa55cff39008c3c81eea9b159fb5d9cd30775b2', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '2.0.0', 'version' => '2.0.0.0', - 'reference' => 'd78a655211b5cfa110e3c8c2bfc6c21b1be1c080', + 'reference' => '6d4bfe23b8ff72907216d9dde972bc6dc8b8737f', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -58,16 +58,16 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '2.0.0', 'version' => '2.0.0.0', - 'reference' => '17b76f617cbbf0dd5ef70dcc3ffd2ebdd2fc099c', + 'reference' => '6fadc32644ae01be7b40fff91a29dbbf1d136caa', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-connection' => array( - 'pretty_version' => '2.0.4-alpha.1701188454', - 'version' => '2.0.4.0-alpha1701188454', - 'reference' => '69d66852fe51547501142ab8403f38ff90ba038c', + 'pretty_version' => '2.1.0-alpha.1701295077', + 'version' => '2.1.0.0-alpha1701295077', + 'reference' => '53d0e3532c514ffad680ebdedba6162e5d454a6f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -76,7 +76,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '2.0.0', 'version' => '2.0.0.0', - 'reference' => '4d44b6381269aa43593e6f0545ced39f083b264d', + 'reference' => '4c7c5cbd8f39d65976dfb62100076a4fac6a6a50', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -85,16 +85,16 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '2.0.1', 'version' => '2.0.1.0', - 'reference' => 'c6c33a5293a16695aa6dbe1ce4f1a72dfab32809', + 'reference' => 'acff665963235a4a4329f91c31c450de66ad3e24', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-identity-crisis' => array( - 'pretty_version' => '0.12.1', - 'version' => '0.12.1.0', - 'reference' => '54f02060c50f8f0256e0f7bb2d50af8d721818d0', + 'pretty_version' => '0.13.0-alpha.1701295077', + 'version' => '0.13.0.0-alpha1701295077', + 'reference' => '8e6e232a369941b329ed5e5f1671b82026aa25fa', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-identity-crisis', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.2.1', 'version' => '0.2.1.0', - 'reference' => '6f8862acfc53c983fc1da5fcf66c169c909d910d', + 'reference' => '0fd02c365614e45fd273ac7febdd131800899918', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'c3754dfa8fc21a9fde43da3437d7764b2b79b326', + 'reference' => '720645c441de64b12906e821f29c0048a875b0d9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '2.0.1', 'version' => '2.0.1.0', - 'reference' => '404ddf6fa03fc510906556a2464354df1304c58e', + 'reference' => 'e9caf6fa18034e706d791e4600f904d685631267', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '2.0.0', 'version' => '2.0.0.0', - 'reference' => '04b9cd982166aedeab3e29e7237055fb9589dc33', + 'reference' => '989994594be497c11299792c1e8a45bc8fae319d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), @@ -139,7 +139,7 @@ 'automattic/jetpack-my-jetpack' => array( 'pretty_version' => '4.0.4-alpha.1701187678', 'version' => '4.0.4.0-alpha1701187678', - 'reference' => 'c4647f6d6cbd45c5e716aac038c21cc3b6a1e4a8', + 'reference' => 'ff5f034af119e9f305d8858c67e71be8dbfc75c7', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -148,7 +148,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.3.0', 'version' => '0.3.0.0', - 'reference' => 'a29e294425bbc3cc8d60a3d1fb92229af19967fd', + 'reference' => 'e177fd66b5d0333079b19b09e4b981ed7651a23f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -157,7 +157,7 @@ 'automattic/jetpack-plans' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => 'afdbc3a187544d6475996ea21095669c667c1d67', + 'reference' => '4798ea4aa0992f5d1235388f95d8b2a1807d819a', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -166,7 +166,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.3.0', 'version' => '0.3.0.0', - 'reference' => '43692e348b565bd73f2d773c7a68d99a87b37279', + 'reference' => '130d88f00768e5db06ae3c10bed8aa134a56431c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -175,7 +175,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '2.0.0', 'version' => '2.0.0.0', - 'reference' => '06c187c611fd2133270d3a9bfa899199cc748c28', + 'reference' => '1989aa91f1242232ad693745d37cd713fd77c6a4', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '2.0.0', 'version' => '2.0.0.0', - 'reference' => '2d95623780acd389f58ce39ab024c2b6e1784c59', + 'reference' => '765f469e2070ce25e73e599e55061dd0934c86f8', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -202,7 +202,7 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '2.0.2-alpha.1701272245', 'version' => '2.0.2.0-alpha1701272245', - 'reference' => '36a01afc961f932543a064f630f1ed98ab981401', + 'reference' => 'd5d61e05e3653f6c54b0536503c6bbfd225f54d7', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), @@ -211,7 +211,7 @@ 'automattic/jetpack-sync' => array( 'pretty_version' => '2.1.1-alpha.1701188454', 'version' => '2.1.1.0-alpha1701188454', - 'reference' => '6e6d50ad4e9143de2fa32f4d2d2b2e8a905f583d', + 'reference' => 'f03f683f99177fe86f52e9f786bdfd83970945a8', '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 bcac96333..e1d653497 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -75,95 +75,95 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-config/src/class-config.php' ), 'Automattic\\Jetpack\\Connection\\Client' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Notice' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-notice.php' ), 'Automattic\\Jetpack\\Connection\\Error_Handler' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php' ), 'Automattic\\Jetpack\\Connection\\Initial_State' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php' ), 'Automattic\\Jetpack\\Connection\\Manager' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php' ), 'Automattic\\Jetpack\\Connection\\Manager_Interface' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php' ), 'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php' ), 'Automattic\\Jetpack\\Connection\\Plugin' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php' ), 'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php' ), 'Automattic\\Jetpack\\Connection\\REST_Connector' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php' ), 'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php' ), 'Automattic\\Jetpack\\Connection\\Secrets' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php' ), 'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php' ), 'Automattic\\Jetpack\\Connection\\Tokens' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php' ), 'Automattic\\Jetpack\\Connection\\Tokens_Locks' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens-locks.php' ), 'Automattic\\Jetpack\\Connection\\Urls' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php' ), 'Automattic\\Jetpack\\Connection\\Utils' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php' ), 'Automattic\\Jetpack\\Constants' => array( @@ -195,7 +195,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-files.php' ), 'Automattic\\Jetpack\\Heartbeat' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-heartbeat.php' ), 'Automattic\\Jetpack\\IP\\Utils' => array( @@ -203,23 +203,23 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-ip/src/class-utils.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\Exception' => array( - 'version' => '0.12.1.0', + 'version' => '0.13.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-exception.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\REST_Endpoints' => array( - 'version' => '0.12.1.0', + 'version' => '0.13.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\UI' => array( - 'version' => '0.12.1.0', + 'version' => '0.13.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-ui.php' ), 'Automattic\\Jetpack\\IdentityCrisis\\URL_Secret' => array( - 'version' => '0.12.1.0', + 'version' => '0.13.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-url-secret.php' ), 'Automattic\\Jetpack\\Identity_Crisis' => array( - 'version' => '0.12.1.0', + 'version' => '0.13.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php' ), 'Automattic\\Jetpack\\JITMS\\JITM' => array( @@ -359,11 +359,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner.php' ), 'Automattic\\Jetpack\\Partner_Coupon' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner-coupon.php' ), 'Automattic\\Jetpack\\Password_Checker' => array( @@ -631,11 +631,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-terms-of-service.php' ), 'Automattic\\Jetpack\\Tracking' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php' ), 'Container' => array( @@ -647,19 +647,19 @@ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-hook-manager.php' ), 'Jetpack_IXR_Client' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php' ), 'Jetpack_IXR_ClientMulticall' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php' ), 'Jetpack_Options' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php' ), 'Jetpack_Signature' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php' ), 'Jetpack_Starter_Plugin' => array( @@ -667,15 +667,15 @@ 'path' => $baseDir . '/src/class-jetpack-starter-plugin.php' ), 'Jetpack_Tracks_Client' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php' ), 'Jetpack_Tracks_Event' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php' ), 'Jetpack_XMLRPC_Server' => array( - 'version' => '2.0.4.0-alpha1701188454', + 'version' => '2.1.0.0-alpha1701295077', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php' ), 'Latest_Autoloader_Guard' => array(