From 3c9c6d0e478d7e6a3065b7e70189ab2bc179045b Mon Sep 17 00:00:00 2001 From: jeherve Date: Fri, 10 Nov 2023 11:05:49 +0000 Subject: [PATCH] Connection: Add "source" as a query param to the Jetpack connect URL (#33984) Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/6823817748 --- composer.json | 4 +- .../jetpack-connection/CHANGELOG.md | 8 ++ .../jetpack-connection/composer.json | 4 +- .../jetpack-connection/src/class-manager.php | 1 + .../src/class-package-version.php | 2 +- .../jetpack-identity-crisis/composer.json | 4 +- .../automattic/jetpack-jitm/composer.json | 4 +- .../jetpack-licensing/composer.json | 2 +- .../jetpack-my-jetpack/composer.json | 2 +- .../automattic/jetpack-partner/composer.json | 4 +- .../automattic/jetpack-redirect/composer.json | 2 +- .../automattic/jetpack-search/composer.json | 4 +- .../automattic/jetpack-stats/composer.json | 4 +- .../automattic/jetpack-status/CHANGELOG.md | 8 ++ .../automattic/jetpack-status/composer.json | 2 +- .../jetpack-status/src/class-host.php | 15 +++ .../automattic/jetpack-sync/composer.json | 4 +- jetpack_vendor/i18n-map.php | 2 +- vendor/automattic/jetpack-plans/composer.json | 4 +- vendor/composer/installed.json | 98 +++++++++---------- vendor/composer/installed.php | 58 +++++------ vendor/composer/jetpack_autoload_classmap.php | 84 ++++++++-------- 22 files changed, 176 insertions(+), 144 deletions(-) diff --git a/composer.json b/composer.json index 2a950369d..b34bc7ea6 100644 --- a/composer.json +++ b/composer.json @@ -7,12 +7,12 @@ "automattic/jetpack-autoloader": "^2.12.0", "automattic/jetpack-composer-plugin": "^1.1.14", "automattic/jetpack-config": "^1.15.4", - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-identity-crisis": "^0.11.2", "automattic/jetpack-my-jetpack": "^3.12.0", "automattic/jetpack-search": "^0.39.5", "automattic/jetpack-stats": "^0.6.6", - "automattic/jetpack-status": "^1.18.5", + "automattic/jetpack-status": "^1.19.0-alpha", "automattic/jetpack-sync": "^1.60.1", "automattic/jetpack-plugins-installer": "^0.2.5" }, diff --git a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md index b6efc8ed7..5fe8f558b 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). +## [1.60.0-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + +### Added +- Added source as query param to the Jetpack connect url + ## [1.59.0] - 2023-11-08 ### Added - Added a method to check if Jetpack is ready for uninstall cleanup. [#33920] @@ -904,6 +911,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Separate the connection library into its own package. +[1.60.0-alpha]: https://github.com/Automattic/jetpack-connection/compare/v1.59.0...v1.60.0-alpha [1.59.0]: https://github.com/Automattic/jetpack-connection/compare/v1.58.3...v1.59.0 [1.58.3]: https://github.com/Automattic/jetpack-connection/compare/v1.58.2...v1.58.3 [1.58.2]: https://github.com/Automattic/jetpack-connection/compare/v1.58.1...v1.58.2 diff --git a/jetpack_vendor/automattic/jetpack-connection/composer.json b/jetpack_vendor/automattic/jetpack-connection/composer.json index d4100518f..17fce0c66 100644 --- a/jetpack_vendor/automattic/jetpack-connection/composer.json +++ b/jetpack_vendor/automattic/jetpack-connection/composer.json @@ -8,7 +8,7 @@ "automattic/jetpack-admin-ui": "^0.2.24", "automattic/jetpack-constants": "^1.6.23", "automattic/jetpack-roles": "^1.4.25", - "automattic/jetpack-status": "^1.18.5", + "automattic/jetpack-status": "^1.19.0-alpha", "automattic/jetpack-redirect": "^1.7.27" }, "require-dev": { @@ -56,7 +56,7 @@ "link-template": "https://github.com/Automattic/jetpack-connection/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "1.59.x-dev" + "dev-trunk": "1.60.x-dev" } }, "config": { diff --git a/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php b/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php index 745e9fadd..b4468c2dc 100644 --- a/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php +++ b/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php @@ -1916,6 +1916,7 @@ public function get_authorization_url( $user = null, $redirect = null ) { 'site_created' => $this->get_assumed_site_creation_date(), 'allow_site_connection' => ! $this->has_connected_owner(), 'calypso_env' => ( new Host() )->get_calypso_env(), + 'source' => ( new Host() )->get_source_query(), ) ); 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 cffce77f2..845f69da8 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 = '1.59.0'; + const PACKAGE_VERSION = '1.60.0-alpha'; const PACKAGE_SLUG = 'connection'; diff --git a/jetpack_vendor/automattic/jetpack-identity-crisis/composer.json b/jetpack_vendor/automattic/jetpack-identity-crisis/composer.json index 15352a43d..4991b1009 100644 --- a/jetpack_vendor/automattic/jetpack-identity-crisis/composer.json +++ b/jetpack_vendor/automattic/jetpack-identity-crisis/composer.json @@ -4,9 +4,9 @@ "type": "jetpack-library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-constants": "^1.6.23", - "automattic/jetpack-status": "^1.18.5", + "automattic/jetpack-status": "^1.19.0-alpha", "automattic/jetpack-logo": "^1.6.3", "automattic/jetpack-assets": "^1.18.14" }, diff --git a/jetpack_vendor/automattic/jetpack-jitm/composer.json b/jetpack_vendor/automattic/jetpack-jitm/composer.json index 650546f95..bdd1765a2 100644 --- a/jetpack_vendor/automattic/jetpack-jitm/composer.json +++ b/jetpack_vendor/automattic/jetpack-jitm/composer.json @@ -6,12 +6,12 @@ "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.22", "automattic/jetpack-assets": "^1.18.14", - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-device-detection": "^1.5.0-alpha", "automattic/jetpack-logo": "^1.6.3", "automattic/jetpack-partner": "^1.7.25", "automattic/jetpack-redirect": "^1.7.27", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "brain/monkey": "2.6.1", diff --git a/jetpack_vendor/automattic/jetpack-licensing/composer.json b/jetpack_vendor/automattic/jetpack-licensing/composer.json index 1e6cb72fa..9be474bb6 100644 --- a/jetpack_vendor/automattic/jetpack-licensing/composer.json +++ b/jetpack_vendor/automattic/jetpack-licensing/composer.json @@ -4,7 +4,7 @@ "type": "jetpack-library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-connection": "^1.59.0" + "automattic/jetpack-connection": "^1.60.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 7c85260d7..340d1692a 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json @@ -6,7 +6,7 @@ "require": { "automattic/jetpack-admin-ui": "^0.2.24", "automattic/jetpack-assets": "^1.18.14", - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-jitm": "^2.5.2", "automattic/jetpack-licensing": "^1.8.4", "automattic/jetpack-plugins-installer": "^0.2.5", diff --git a/jetpack_vendor/automattic/jetpack-partner/composer.json b/jetpack_vendor/automattic/jetpack-partner/composer.json index 744a631a0..801acfd07 100644 --- a/jetpack_vendor/automattic/jetpack-partner/composer.json +++ b/jetpack_vendor/automattic/jetpack-partner/composer.json @@ -4,8 +4,8 @@ "type": "jetpack-library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-connection": "^1.59.0", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-connection": "^1.60.0-alpha", + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "brain/monkey": "2.6.1", diff --git a/jetpack_vendor/automattic/jetpack-redirect/composer.json b/jetpack_vendor/automattic/jetpack-redirect/composer.json index 77d9bdb60..b8768161e 100644 --- a/jetpack_vendor/automattic/jetpack-redirect/composer.json +++ b/jetpack_vendor/automattic/jetpack-redirect/composer.json @@ -4,7 +4,7 @@ "type": "jetpack-library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "brain/monkey": "2.6.1", diff --git a/jetpack_vendor/automattic/jetpack-search/composer.json b/jetpack_vendor/automattic/jetpack-search/composer.json index 6d610da41..4541f162b 100644 --- a/jetpack_vendor/automattic/jetpack-search/composer.json +++ b/jetpack_vendor/automattic/jetpack-search/composer.json @@ -4,10 +4,10 @@ "type": "jetpack-library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-assets": "^1.18.14", "automattic/jetpack-constants": "^1.6.23", - "automattic/jetpack-status": "^1.18.5", + "automattic/jetpack-status": "^1.19.0-alpha", "automattic/jetpack-config": "^1.15.4", "automattic/jetpack-my-jetpack": "^3.12.0" }, diff --git a/jetpack_vendor/automattic/jetpack-stats/composer.json b/jetpack_vendor/automattic/jetpack-stats/composer.json index c47cb842a..ff1103d7b 100644 --- a/jetpack_vendor/automattic/jetpack-stats/composer.json +++ b/jetpack_vendor/automattic/jetpack-stats/composer.json @@ -5,9 +5,9 @@ "license": "GPL-2.0-or-later", "require": { "automattic/jetpack-assets": "^1.18.14", - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-constants": "^1.6.23", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", diff --git a/jetpack_vendor/automattic/jetpack-status/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-status/CHANGELOG.md index caba85ae2..ec9f55824 100644 --- a/jetpack_vendor/automattic/jetpack-status/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-status/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). +## [1.19.0-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + +### Added +- Added a new method that returns "source" query param from the URL + ## [1.18.5] - 2023-09-25 ### Changed - Add 127.0.0.1 into the list of known local domains. [#32898] @@ -285,6 +292,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages: Introduce a status package +[1.19.0-alpha]: https://github.com/Automattic/jetpack-status/compare/v1.18.5...v1.19.0-alpha [1.18.5]: https://github.com/Automattic/jetpack-status/compare/v1.18.4...v1.18.5 [1.18.4]: https://github.com/Automattic/jetpack-status/compare/v1.18.3...v1.18.4 [1.18.3]: https://github.com/Automattic/jetpack-status/compare/v1.18.2...v1.18.3 diff --git a/jetpack_vendor/automattic/jetpack-status/composer.json b/jetpack_vendor/automattic/jetpack-status/composer.json index ca5f5dc29..5f58242f9 100644 --- a/jetpack_vendor/automattic/jetpack-status/composer.json +++ b/jetpack_vendor/automattic/jetpack-status/composer.json @@ -37,7 +37,7 @@ "link-template": "https://github.com/Automattic/jetpack-status/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "1.18.x-dev" + "dev-trunk": "1.19.x-dev" } } } diff --git a/jetpack_vendor/automattic/jetpack-status/src/class-host.php b/jetpack_vendor/automattic/jetpack-status/src/class-host.php index 6a6bcd741..a71a77beb 100644 --- a/jetpack_vendor/automattic/jetpack-status/src/class-host.php +++ b/jetpack_vendor/automattic/jetpack-status/src/class-host.php @@ -119,4 +119,19 @@ public function get_calypso_env() { return ''; } + + /** + * Return source query param value from the URL if exists in the allowed sources list. + * + * @return string "source" query param value + */ + public function get_source_query() { + // phpcs:disable WordPress.Security.NonceVerification.Recommended + $allowed_sources = array( 'jetpack-manage' ); + if ( isset( $_GET['source'] ) && in_array( $_GET['source'], $allowed_sources, true ) ) { + return sanitize_key( $_GET['source'] ); + } + + return ''; + } } diff --git a/jetpack_vendor/automattic/jetpack-sync/composer.json b/jetpack_vendor/automattic/jetpack-sync/composer.json index e203afaaf..60dc4a623 100644 --- a/jetpack_vendor/automattic/jetpack-sync/composer.json +++ b/jetpack_vendor/automattic/jetpack-sync/composer.json @@ -4,13 +4,13 @@ "type": "jetpack-library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-constants": "^1.6.23", "automattic/jetpack-identity-crisis": "^0.11.2", "automattic/jetpack-password-checker": "^0.2.14", "automattic/jetpack-ip": "^0.1.6", "automattic/jetpack-roles": "^1.4.25", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index 04f8aead7..f56205c21 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -18,7 +18,7 @@ ), 'jetpack-connection' => array( 'path' => 'jetpack_vendor/automattic/jetpack-connection', - 'ver' => '1.59.0', + 'ver' => '1.60.0-alpha1699613065', ), 'jetpack-idc' => array( 'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis', diff --git a/vendor/automattic/jetpack-plans/composer.json b/vendor/automattic/jetpack-plans/composer.json index bf4cb420d..d4c611dfb 100644 --- a/vendor/automattic/jetpack-plans/composer.json +++ b/vendor/automattic/jetpack-plans/composer.json @@ -4,12 +4,12 @@ "type": "library", "license": "GPL-2.0-or-later", "require": { - "automattic/jetpack-connection": "^1.59.0" + "automattic/jetpack-connection": "^1.60.0-alpha" }, "require-dev": { "yoast/phpunit-polyfills": "1.1.0", "automattic/jetpack-changelogger": "^3.3.11", - "automattic/jetpack-status": "^1.18.5", + "automattic/jetpack-status": "^1.19.0-alpha", "automattic/wordbless": "@dev" }, "suggest": { diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 6f1a2421a..80b59551f 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": "d86d47974f305701055854199d5d1a70d49d7a3a" + "reference": "f58e5a6c1cbcc2d454d54817da38d5a1b7d9f49b" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -57,7 +57,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "dc7b4fd77b0d51f5ac2500bfae977ce5e9c2f107" + "reference": "5d0034d42f13fbfdbf536539fec9e6a6a54fc94a" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -119,7 +119,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "1b73fc5b3318fcb8288bc2a038b6962288b56560" + "reference": "e8561372c84fb9f92ce7ab839b7660dc45571817" }, "require": { "automattic/jetpack-constants": "^1.6.23" @@ -187,7 +187,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "0ef8eb9cc8ff2bb20cab17ffc70ea5bd0f5c58ef" + "reference": "0637b29d2e1164aacb8636f45d6f2ff403352008" }, "require": { "composer-plugin-api": "^1.1 || ^2.0" @@ -252,7 +252,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "1923a257578ae91e6479cd277e5b14c80a94b72a" + "reference": "88f406664391912c28f5ac28fd80c4be255350ad" }, "require": { "composer-plugin-api": "^2.1.0" @@ -311,7 +311,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "f7431fb9f3313a54d2b896f288e608866d680882" + "reference": "1cdb3470de5778e708d227b8717fb4f96e0dbe8d" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11" @@ -348,12 +348,12 @@ }, { "name": "automattic/jetpack-connection", - "version": "1.59.0", - "version_normalized": "1.59.0.0", + "version": "1.60.0-alpha.1699613065", + "version_normalized": "1.60.0.0-alpha1699613065", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "52a1b5a1cfead8ad2508b3770fa2b46e976e5c9f" + "reference": "6ca629a64b43d83d8bb01ae1d69075785cd366a6" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.22", @@ -361,7 +361,7 @@ "automattic/jetpack-constants": "^1.6.23", "automattic/jetpack-redirect": "^1.7.27", "automattic/jetpack-roles": "^1.4.25", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -384,7 +384,7 @@ "link-template": "https://github.com/Automattic/jetpack-connection/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "1.59.x-dev" + "dev-trunk": "1.60.x-dev" } }, "installation-source": "dist", @@ -431,7 +431,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "40d8e44bfdf73d4a1cb6e7283dffea3015977289" + "reference": "0f73351489477119a2dfa78e3a54cf31ebb8fd70" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -482,7 +482,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "ade1416c00bfea0b5f2f66deb7be7e8098fab385" + "reference": "9f84c3b2c7679b3d7e5b06a3e7b35d2663f7fe25" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -532,14 +532,14 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-identity-crisis", - "reference": "c7b6d8a8784114a78f9aae4e57e5790fdf7d7187" + "reference": "d2c3fb2166ab331eed30f4b6aa301e545f409c8a" }, "require": { "automattic/jetpack-assets": "^1.18.14", - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-constants": "^1.6.23", "automattic/jetpack-logo": "^1.6.3", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -610,7 +610,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "b3dfc24398e79b303796f7e542835bf4d35744eb" + "reference": "62186c833a9d698b571a097245c6d0a30550745b" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -665,17 +665,17 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "a579f386f26dd863894f98fc51545d802b3862d1" + "reference": "675337f48ce8eb71163d959d551cbc5395340bd8" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.22", "automattic/jetpack-assets": "^1.18.14", - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-device-detection": "^1.5.0-alpha", "automattic/jetpack-logo": "^1.6.3", "automattic/jetpack-partner": "^1.7.25", "automattic/jetpack-redirect": "^1.7.27", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -740,10 +740,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "b81799869edeea62977e969eeae74da777ef7bbf" + "reference": "e1e1ba02c667d4b93e7fe124bbf964fcd63017d3" }, "require": { - "automattic/jetpack-connection": "^1.59.0" + "automattic/jetpack-connection": "^1.60.0-alpha" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -801,7 +801,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "245164c38db8107170ff47518a666679ba9e2b80" + "reference": "b07d3972f82da3e7930d9e4265e356c67e06c32d" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -851,12 +851,12 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "bc2be59a8558e56baee62ff0a23a5dcba5db7829" + "reference": "b8a927eca176cb8a0cba273ecad1624644774b48" }, "require": { "automattic/jetpack-admin-ui": "^0.2.24", "automattic/jetpack-assets": "^1.18.14", - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-constants": "^1.6.23", "automattic/jetpack-jitm": "^2.5.2", "automattic/jetpack-licensing": "^1.8.4", @@ -942,11 +942,11 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-partner", - "reference": "2f201a980c67e1b05aec6b714d723156625e5331" + "reference": "2d8800d1c017acb1090dfe1145d8e62c20ff9d12" }, "require": { - "automattic/jetpack-connection": "^1.59.0", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-connection": "^1.60.0-alpha", + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -1004,7 +1004,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "66f7a86b0bfbc122af9c092849c6ab3b980cf3ef" + "reference": "9586234083ba22e6db0214ddd4950f845cd96b35" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -1062,14 +1062,14 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "0431c49568f21091bdc7e6f6e0dbd33a38bd9f6e" + "reference": "6ebc300b1c6a66dc072008ee8339859147ae96c3" }, "require": { - "automattic/jetpack-connection": "^1.59.0" + "automattic/jetpack-connection": "^1.60.0-alpha" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", - "automattic/jetpack-status": "^1.18.5", + "automattic/jetpack-status": "^1.19.0-alpha", "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "1.1.0" }, @@ -1129,7 +1129,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "16df01f789289e326e44576294b4d8467fb4bd3b" + "reference": "7a776e67f0c10dec34d27e45641ad8321434fd59" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.22" @@ -1183,10 +1183,10 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "d809fb1fa65ac58b3ce73b7a464fcc2640b7fae5" + "reference": "dcf83bd38a96d6b06032ed7dad524f242d537cbe" }, "require": { - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -1237,7 +1237,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "5b38e581e50263e5bbdd263fc82146510e74211e" + "reference": "18c5de7957d17c2982ef29f2f808e9f511b754e9" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -1288,15 +1288,15 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-search", - "reference": "6ec781ba91e4adf16f7553772294660ad3021a93" + "reference": "657823aade1bb1637eea6629a300d3253ee9d5a3" }, "require": { "automattic/jetpack-assets": "^1.18.14", "automattic/jetpack-config": "^1.15.4", - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-constants": "^1.6.23", "automattic/jetpack-my-jetpack": "^3.12.0", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -1374,13 +1374,13 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-stats", - "reference": "8885066f1f4c8c0b713ab733af60ad5bacef36ec" + "reference": "8dc3d807539d460d992e16ca402a6ffa88d1c663" }, "require": { "automattic/jetpack-assets": "^1.18.14", - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-constants": "^1.6.23", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", @@ -1433,12 +1433,12 @@ }, { "name": "automattic/jetpack-status", - "version": "1.18.5", - "version_normalized": "1.18.5.0", + "version": "1.19.0-alpha.1699613065", + "version_normalized": "1.19.0.0-alpha1699613065", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "e98bf5b4c860269e8fc4a60119ecad968261c7b5" + "reference": "37cee78f81eea699b349a9f81d4ccc6ae093e033" }, "require": { "automattic/jetpack-constants": "^1.6.23" @@ -1460,7 +1460,7 @@ "link-template": "https://github.com/Automattic/jetpack-status/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "1.18.x-dev" + "dev-trunk": "1.19.x-dev" } }, "installation-source": "dist", @@ -1493,16 +1493,16 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "9605d363d7319e0ec38466057fae068b6385a76b" + "reference": "c70fd98f3b96592071f794c87c76fe64ff69a034" }, "require": { - "automattic/jetpack-connection": "^1.59.0", + "automattic/jetpack-connection": "^1.60.0-alpha", "automattic/jetpack-constants": "^1.6.23", "automattic/jetpack-identity-crisis": "^0.11.2", "automattic/jetpack-ip": "^0.1.6", "automattic/jetpack-password-checker": "^0.2.14", "automattic/jetpack-roles": "^1.4.25", - "automattic/jetpack-status": "^1.18.5" + "automattic/jetpack-status": "^1.19.0-alpha" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.11", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index b73ae20b7..fc632a5f1 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -13,7 +13,7 @@ 'automattic/jetpack-a8c-mc-stats' => array( 'pretty_version' => '1.4.22', 'version' => '1.4.22.0', - 'reference' => 'd86d47974f305701055854199d5d1a70d49d7a3a', + 'reference' => 'f58e5a6c1cbcc2d454d54817da38d5a1b7d9f49b', '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.2.24', 'version' => '0.2.24.0', - 'reference' => 'dc7b4fd77b0d51f5ac2500bfae977ce5e9c2f107', + 'reference' => '5d0034d42f13fbfdbf536539fec9e6a6a54fc94a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), @@ -31,7 +31,7 @@ 'automattic/jetpack-assets' => array( 'pretty_version' => '1.18.14', 'version' => '1.18.14.0', - 'reference' => '1b73fc5b3318fcb8288bc2a038b6962288b56560', + 'reference' => 'e8561372c84fb9f92ce7ab839b7660dc45571817', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '2.12.0', 'version' => '2.12.0.0', - 'reference' => '0ef8eb9cc8ff2bb20cab17ffc70ea5bd0f5c58ef', + 'reference' => '0637b29d2e1164aacb8636f45d6f2ff403352008', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '1.1.14', 'version' => '1.1.14.0', - 'reference' => '1923a257578ae91e6479cd277e5b14c80a94b72a', + 'reference' => '88f406664391912c28f5ac28fd80c4be255350ad', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -58,16 +58,16 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '1.15.4', 'version' => '1.15.4.0', - 'reference' => 'f7431fb9f3313a54d2b896f288e608866d680882', + 'reference' => '1cdb3470de5778e708d227b8717fb4f96e0dbe8d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-connection' => array( - 'pretty_version' => '1.59.0', - 'version' => '1.59.0.0', - 'reference' => '52a1b5a1cfead8ad2508b3770fa2b46e976e5c9f', + 'pretty_version' => '1.60.0-alpha.1699613065', + 'version' => '1.60.0.0-alpha1699613065', + 'reference' => '6ca629a64b43d83d8bb01ae1d69075785cd366a6', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -76,7 +76,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '1.6.23', 'version' => '1.6.23.0', - 'reference' => '40d8e44bfdf73d4a1cb6e7283dffea3015977289', + 'reference' => '0f73351489477119a2dfa78e3a54cf31ebb8fd70', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -85,7 +85,7 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '1.5.0-alpha.1699529620', 'version' => '1.5.0.0-alpha1699529620', - 'reference' => 'ade1416c00bfea0b5f2f66deb7be7e8098fab385', + 'reference' => '9f84c3b2c7679b3d7e5b06a3e7b35d2663f7fe25', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), @@ -94,7 +94,7 @@ 'automattic/jetpack-identity-crisis' => array( 'pretty_version' => '0.11.2', 'version' => '0.11.2.0', - 'reference' => 'c7b6d8a8784114a78f9aae4e57e5790fdf7d7187', + 'reference' => 'd2c3fb2166ab331eed30f4b6aa301e545f409c8a', '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.1.6', 'version' => '0.1.6.0', - 'reference' => 'b3dfc24398e79b303796f7e542835bf4d35744eb', + 'reference' => '62186c833a9d698b571a097245c6d0a30550745b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '2.5.2', 'version' => '2.5.2.0', - 'reference' => 'a579f386f26dd863894f98fc51545d802b3862d1', + 'reference' => '675337f48ce8eb71163d959d551cbc5395340bd8', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '1.8.4', 'version' => '1.8.4.0', - 'reference' => 'b81799869edeea62977e969eeae74da777ef7bbf', + 'reference' => 'e1e1ba02c667d4b93e7fe124bbf964fcd63017d3', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '1.6.3', 'version' => '1.6.3.0', - 'reference' => '245164c38db8107170ff47518a666679ba9e2b80', + 'reference' => 'b07d3972f82da3e7930d9e4265e356c67e06c32d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), @@ -139,7 +139,7 @@ 'automattic/jetpack-my-jetpack' => array( 'pretty_version' => '3.12.0', 'version' => '3.12.0.0', - 'reference' => 'bc2be59a8558e56baee62ff0a23a5dcba5db7829', + 'reference' => 'b8a927eca176cb8a0cba273ecad1624644774b48', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -148,7 +148,7 @@ 'automattic/jetpack-partner' => array( 'pretty_version' => '1.7.25', 'version' => '1.7.25.0', - 'reference' => '2f201a980c67e1b05aec6b714d723156625e5331', + 'reference' => '2d8800d1c017acb1090dfe1145d8e62c20ff9d12', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-partner', 'aliases' => array(), @@ -157,7 +157,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.2.14', 'version' => '0.2.14.0', - 'reference' => '66f7a86b0bfbc122af9c092849c6ab3b980cf3ef', + 'reference' => '9586234083ba22e6db0214ddd4950f845cd96b35', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -166,7 +166,7 @@ 'automattic/jetpack-plans' => array( 'pretty_version' => '0.3.5', 'version' => '0.3.5.0', - 'reference' => '0431c49568f21091bdc7e6f6e0dbd33a38bd9f6e', + 'reference' => '6ebc300b1c6a66dc072008ee8339859147ae96c3', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -175,7 +175,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.2.5', 'version' => '0.2.5.0', - 'reference' => '16df01f789289e326e44576294b4d8467fb4bd3b', + 'reference' => '7a776e67f0c10dec34d27e45641ad8321434fd59', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '1.7.27', 'version' => '1.7.27.0', - 'reference' => 'd809fb1fa65ac58b3ce73b7a464fcc2640b7fae5', + 'reference' => 'dcf83bd38a96d6b06032ed7dad524f242d537cbe', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -193,7 +193,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '1.4.25', 'version' => '1.4.25.0', - 'reference' => '5b38e581e50263e5bbdd263fc82146510e74211e', + 'reference' => '18c5de7957d17c2982ef29f2f808e9f511b754e9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -202,7 +202,7 @@ 'automattic/jetpack-search' => array( 'pretty_version' => '0.39.5', 'version' => '0.39.5.0', - 'reference' => '6ec781ba91e4adf16f7553772294660ad3021a93', + 'reference' => '657823aade1bb1637eea6629a300d3253ee9d5a3', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-search', 'aliases' => array(), @@ -220,16 +220,16 @@ 'automattic/jetpack-stats' => array( 'pretty_version' => '0.6.6', 'version' => '0.6.6.0', - 'reference' => '8885066f1f4c8c0b713ab733af60ad5bacef36ec', + 'reference' => '8dc3d807539d460d992e16ca402a6ffa88d1c663', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-stats', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-status' => array( - 'pretty_version' => '1.18.5', - 'version' => '1.18.5.0', - 'reference' => 'e98bf5b4c860269e8fc4a60119ecad968261c7b5', + 'pretty_version' => '1.19.0-alpha.1699613065', + 'version' => '1.19.0.0-alpha1699613065', + 'reference' => '37cee78f81eea699b349a9f81d4ccc6ae093e033', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), @@ -238,7 +238,7 @@ 'automattic/jetpack-sync' => array( 'pretty_version' => '1.60.1', 'version' => '1.60.1.0', - 'reference' => '9605d363d7319e0ec38466057fae068b6385a76b', + 'reference' => 'c70fd98f3b96592071f794c87c76fe64ff69a034', '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 1ca7ded30..0d5d21384 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' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Notice' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-notice.php' ), 'Automattic\\Jetpack\\Connection\\Error_Handler' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php' ), 'Automattic\\Jetpack\\Connection\\Initial_State' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php' ), 'Automattic\\Jetpack\\Connection\\Manager' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php' ), 'Automattic\\Jetpack\\Connection\\Manager_Interface' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php' ), 'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php' ), 'Automattic\\Jetpack\\Connection\\Plugin' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php' ), 'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php' ), 'Automattic\\Jetpack\\Connection\\REST_Connector' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php' ), 'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php' ), 'Automattic\\Jetpack\\Connection\\Secrets' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php' ), 'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php' ), 'Automattic\\Jetpack\\Connection\\Tokens' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php' ), 'Automattic\\Jetpack\\Connection\\Tokens_Locks' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens-locks.php' ), 'Automattic\\Jetpack\\Connection\\Urls' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php' ), 'Automattic\\Jetpack\\Connection\\Utils' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php' ), 'Automattic\\Jetpack\\Constants' => array( @@ -171,7 +171,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-constants/src/class-constants.php' ), 'Automattic\\Jetpack\\CookieState' => array( - 'version' => '1.18.5.0', + 'version' => '1.19.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-cookiestate.php' ), 'Automattic\\Jetpack\\Current_Plan' => array( @@ -187,15 +187,15 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-device-detection/src/class-user-agent-info.php' ), 'Automattic\\Jetpack\\Errors' => array( - 'version' => '1.18.5.0', + 'version' => '1.19.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-errors.php' ), 'Automattic\\Jetpack\\Files' => array( - 'version' => '1.18.5.0', + 'version' => '1.19.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-files.php' ), 'Automattic\\Jetpack\\Heartbeat' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-heartbeat.php' ), 'Automattic\\Jetpack\\IP\\Utils' => array( @@ -247,7 +247,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-licensing/src/class-endpoints.php' ), 'Automattic\\Jetpack\\Modules' => array( - 'version' => '1.18.5.0', + 'version' => '1.19.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-modules.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array( @@ -367,7 +367,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-password-checker/src/class-password-checker.php' ), 'Automattic\\Jetpack\\Paths' => array( - 'version' => '1.18.5.0', + 'version' => '1.19.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-paths.php' ), 'Automattic\\Jetpack\\Plans' => array( @@ -499,19 +499,19 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-stats/src/class-xmlrpc-provider.php' ), 'Automattic\\Jetpack\\Status' => array( - 'version' => '1.18.5.0', + 'version' => '1.19.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-status.php' ), 'Automattic\\Jetpack\\Status\\Cache' => array( - 'version' => '1.18.5.0', + 'version' => '1.19.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-cache.php' ), 'Automattic\\Jetpack\\Status\\Host' => array( - 'version' => '1.18.5.0', + 'version' => '1.19.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-host.php' ), 'Automattic\\Jetpack\\Status\\Visitor' => array( - 'version' => '1.18.5.0', + 'version' => '1.19.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-visitor.php' ), 'Automattic\\Jetpack\\Sync\\Actions' => array( @@ -739,11 +739,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-terms-of-service.php' ), 'Automattic\\Jetpack\\Tracking' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php' ), 'Container' => array( @@ -755,31 +755,31 @@ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-hook-manager.php' ), 'Jetpack_IXR_Client' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php' ), 'Jetpack_IXR_ClientMulticall' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php' ), 'Jetpack_Options' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php' ), 'Jetpack_Signature' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php' ), 'Jetpack_Tracks_Client' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php' ), 'Jetpack_Tracks_Event' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php' ), 'Jetpack_XMLRPC_Server' => array( - 'version' => '1.59.0.0', + 'version' => '1.60.0.0-alpha1699613065', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php' ), 'Latest_Autoloader_Guard' => array(