diff --git a/composer.json b/composer.json
index 2bec1b257..40d8d8e73 100644
--- a/composer.json
+++ b/composer.json
@@ -11,7 +11,7 @@
"automattic/jetpack-config": "^2.0.2",
"automattic/jetpack-identity-crisis": "^0.18.6",
"automattic/jetpack-publicize": "^0.44.0",
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"automattic/jetpack-my-jetpack": "^4.23.2",
"automattic/jetpack-sync": "^2.16.2-alpha",
"automattic/jetpack-status": "^3.0.3",
diff --git a/jetpack_vendor/automattic/jetpack-boost-core/composer.json b/jetpack_vendor/automattic/jetpack-boost-core/composer.json
index 711114ac6..981e94ee4 100644
--- a/jetpack_vendor/automattic/jetpack-boost-core/composer.json
+++ b/jetpack_vendor/automattic/jetpack-boost-core/composer.json
@@ -5,7 +5,7 @@
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.0",
- "automattic/jetpack-connection": "^2.8.0"
+ "automattic/jetpack-connection": "^2.8.1-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
diff --git a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md
index 7eb542419..b894afa34 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).
+## [2.8.1-alpha] - unreleased
+
+This is an alpha version! The changes listed here are not final.
+
+### Changed
+- SSO: do not rely on the Jetpack class anymore.
+
## [2.8.0] - 2024-05-13
### Added
- SSO: Ensuring tooltips are accessible [#37302]
@@ -1058,6 +1065,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Separate the connection library into its own package.
+[2.8.1-alpha]: https://github.com/Automattic/jetpack-connection/compare/v2.8.0...v2.8.1-alpha
[2.8.0]: https://github.com/Automattic/jetpack-connection/compare/v2.7.7...v2.8.0
[2.7.7]: https://github.com/Automattic/jetpack-connection/compare/v2.7.6...v2.7.7
[2.7.6]: https://github.com/Automattic/jetpack-connection/compare/v2.7.5...v2.7.6
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 1fdc900af..942d27d9f 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.8.0';
+ const PACKAGE_VERSION = '2.8.1-alpha';
const PACKAGE_SLUG = 'connection';
diff --git a/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php b/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php
index 1e8260c64..9abce653a 100644
--- a/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php
+++ b/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php
@@ -83,4 +83,53 @@ public static function filter_register_request_body( $properties ) {
)
);
}
+
+ /**
+ * Generate a new user from a SSO attempt.
+ *
+ * @param object $user_data WordPress.com user information.
+ */
+ public static function generate_user( $user_data ) {
+ $username = $user_data->login;
+ /**
+ * Determines how many times the SSO module can attempt to randomly generate a user.
+ *
+ * @module sso
+ *
+ * @since jetpack-4.3.2
+ *
+ * @param int 5 By default, SSO will attempt to random generate a user up to 5 times.
+ */
+ $num_tries = (int) apply_filters( 'jetpack_sso_allowed_username_generate_retries', 5 );
+
+ $exists = username_exists( $username );
+ $tries = 0;
+ while ( $exists && $tries++ < $num_tries ) {
+ $username = $user_data->login . '_' . $user_data->ID . '_' . wp_rand();
+ $exists = username_exists( $username );
+ }
+
+ if ( $exists ) {
+ return false;
+ }
+
+ $user = (object) array();
+ $user->user_pass = wp_generate_password( 20 );
+ $user->user_login = wp_slash( $username );
+ $user->user_email = wp_slash( $user_data->email );
+ $user->display_name = $user_data->display_name;
+ $user->first_name = $user_data->first_name;
+ $user->last_name = $user_data->last_name;
+ $user->url = $user_data->url;
+ $user->description = $user_data->description;
+
+ if ( isset( $user_data->role ) && $user_data->role ) {
+ $user->role = $user_data->role;
+ }
+
+ $created_user_id = wp_insert_user( $user );
+
+ update_user_meta( $created_user_id, 'wpcom_user_id', $user_data->ID );
+ return get_userdata( $created_user_id );
+ }
}
diff --git a/jetpack_vendor/automattic/jetpack-connection/src/sso/class-force-2fa.php b/jetpack_vendor/automattic/jetpack-connection/src/sso/class-force-2fa.php
index 61fb4ffcc..3c037790b 100644
--- a/jetpack_vendor/automattic/jetpack-connection/src/sso/class-force-2fa.php
+++ b/jetpack_vendor/automattic/jetpack-connection/src/sso/class-force-2fa.php
@@ -50,10 +50,7 @@ public function plugins_loaded() {
$this->role = apply_filters( 'jetpack_force_2fa_cap', 'manage_options' );
// Bail if Jetpack SSO is not active
- if (
- ! class_exists( 'Jetpack' )
- || ! ( new Modules() )->is_active( 'sso' )
- ) {
+ if ( ! ( new Modules() )->is_active( 'sso' ) ) {
add_action( 'admin_notices', array( $this, 'admin_notice' ) );
return;
}
@@ -75,7 +72,12 @@ public function admin_notice() {
* @module SSO
*/
if ( apply_filters( 'jetpack_force_2fa_dependency_notice', true ) && current_user_can( $this->role ) ) {
- printf( '
', 'notice notice-warning', 'Jetpack Force 2FA requires Jetpack and the Jetpack SSO module.' );
+ wp_admin_notice(
+ esc_html__( 'Jetpack Force 2FA requires Jetpackās SSO feature.', 'jetpack-connection' ),
+ array(
+ 'type' => 'warning',
+ )
+ );
}
}
diff --git a/jetpack_vendor/automattic/jetpack-connection/src/sso/class-helpers.php b/jetpack_vendor/automattic/jetpack-connection/src/sso/class-helpers.php
index 200e16e83..2fdf7369e 100644
--- a/jetpack_vendor/automattic/jetpack-connection/src/sso/class-helpers.php
+++ b/jetpack_vendor/automattic/jetpack-connection/src/sso/class-helpers.php
@@ -214,55 +214,6 @@ public static function allowed_redirect_hosts( $hosts, $api_base = '' ) {
return array_unique( $hosts );
}
- /**
- * Generate a new user from a SSO attempt.
- *
- * @param object $user_data WordPress.com user information.
- */
- public static function generate_user( $user_data ) {
- $username = $user_data->login;
- /**
- * Determines how many times the SSO module can attempt to randomly generate a user.
- *
- * @module sso
- *
- * @since jetpack-4.3.2
- *
- * @param int 5 By default, SSO will attempt to random generate a user up to 5 times.
- */
- $num_tries = (int) apply_filters( 'jetpack_sso_allowed_username_generate_retries', 5 );
-
- $exists = username_exists( $username );
- $tries = 0;
- while ( $exists && $tries++ < $num_tries ) {
- $username = $user_data->login . '_' . $user_data->ID . '_' . wp_rand();
- $exists = username_exists( $username );
- }
-
- if ( $exists ) {
- return false;
- }
-
- $user = (object) array();
- $user->user_pass = wp_generate_password( 20 );
- $user->user_login = wp_slash( $username );
- $user->user_email = wp_slash( $user_data->email );
- $user->display_name = $user_data->display_name;
- $user->first_name = $user_data->first_name;
- $user->last_name = $user_data->last_name;
- $user->url = $user_data->url;
- $user->description = $user_data->description;
-
- if ( isset( $user_data->role ) && $user_data->role ) {
- $user->role = $user_data->role;
- }
-
- $created_user_id = wp_insert_user( $user );
-
- update_user_meta( $created_user_id, 'wpcom_user_id', $user_data->ID );
- return get_userdata( $created_user_id );
- }
-
/**
* Determines how long the auth cookie is valid for when a user logs in with SSO.
*
diff --git a/jetpack_vendor/automattic/jetpack-connection/src/sso/class-sso.php b/jetpack_vendor/automattic/jetpack-connection/src/sso/class-sso.php
index 83f63dcb6..a41fe99ce 100644
--- a/jetpack_vendor/automattic/jetpack-connection/src/sso/class-sso.php
+++ b/jetpack_vendor/automattic/jetpack-connection/src/sso/class-sso.php
@@ -47,14 +47,6 @@ private function __construct() {
self::$instance = $this;
- /*
- * This feature currently relies on the Jetpack plugin.
- * Bail if Jetpack isn't installed.
- */
- if ( ! class_exists( 'Jetpack' ) ) {
- return;
- }
-
add_action( 'admin_init', array( $this, 'maybe_authorize_user_after_sso' ), 1 );
add_action( 'admin_init', array( $this, 'register_settings' ) );
add_action( 'login_init', array( $this, 'login_init' ) );
@@ -71,6 +63,9 @@ private function __construct() {
add_filter( 'wp_login_errors', array( $this, 'sso_reminder_logout_wpcom' ) );
+ // Synchronize SSO options with WordPress.com.
+ add_filter( 'jetpack_sync_callable_whitelist', array( $this, 'sync_sso_callables' ), 10, 1 );
+
/**
* Filter to include Force 2FA feature.
*
@@ -134,6 +129,27 @@ public static function get_instance() {
return self::$instance;
}
+ /**
+ * Add SSO callables to the sync whitelist.
+ *
+ * @since 2.8.1-alpha
+ *
+ * @param array $callables list of callables.
+ *
+ * @return array list of callables.
+ */
+ public function sync_sso_callables( $callables ) {
+ $sso_callables = array(
+ 'sso_is_two_step_required' => array( Helpers::class, 'is_two_step_required' ),
+ 'sso_should_hide_login_form' => array( Helpers::class, 'should_hide_login_form' ),
+ 'sso_match_by_email' => array( Helpers::class, 'match_by_email' ),
+ 'sso_new_user_override' => array( Helpers::class, 'new_user_override' ),
+ 'sso_bypass_default_login_form' => array( Helpers::class, 'bypass_login_forward_wpcom' ),
+ );
+
+ return array_merge( $callables, $sso_callables );
+ }
+
/**
* Safety heads-up added to the logout messages when SSO is enabled.
* Some folks on a shared computer don't know that they need to log out of WordPress.com as well.
@@ -864,7 +880,7 @@ public function handle_login() {
$user_data->role = $new_user_override_role;
}
- $user = Helpers::generate_user( $user_data );
+ $user = Utils::generate_user( $user_data );
if ( ! $user ) {
$tracking->record_user_event(
'sso_login_failed',
diff --git a/jetpack_vendor/automattic/jetpack-identity-crisis/composer.json b/jetpack_vendor/automattic/jetpack-identity-crisis/composer.json
index e9916a3ee..52031b3e6 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.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"automattic/jetpack-constants": "^2.0.2",
"automattic/jetpack-status": "^3.0.3",
"automattic/jetpack-logo": "^2.0.2",
diff --git a/jetpack_vendor/automattic/jetpack-jitm/composer.json b/jetpack_vendor/automattic/jetpack-jitm/composer.json
index 58c96abb2..9379e1458 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.1",
"automattic/jetpack-assets": "^2.1.9",
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"automattic/jetpack-device-detection": "^2.1.3",
"automattic/jetpack-logo": "^2.0.2",
"automattic/jetpack-redirect": "^2.0.2",
diff --git a/jetpack_vendor/automattic/jetpack-licensing/composer.json b/jetpack_vendor/automattic/jetpack-licensing/composer.json
index 64c1f0dca..d30453ce3 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.8.0"
+ "automattic/jetpack-connection": "^2.8.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 fad5bda57..0fb8826b2 100644
--- a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json
+++ b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json
@@ -8,7 +8,7 @@
"automattic/jetpack-admin-ui": "^0.4.2",
"automattic/jetpack-assets": "^2.1.9",
"automattic/jetpack-boost-speed-score": "^0.3.11",
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"automattic/jetpack-jitm": "^3.1.10",
"automattic/jetpack-licensing": "^2.0.5",
"automattic/jetpack-plugins-installer": "^0.3.5",
diff --git a/jetpack_vendor/automattic/jetpack-publicize/composer.json b/jetpack_vendor/automattic/jetpack-publicize/composer.json
index 5f18ef3ef..d32f83a30 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.0",
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"automattic/jetpack-autoloader": "^3.0.7",
"automattic/jetpack-config": "^2.0.2",
"automattic/jetpack-assets": "^2.1.9",
diff --git a/jetpack_vendor/automattic/jetpack-sync/composer.json b/jetpack_vendor/automattic/jetpack-sync/composer.json
index e3cb1c705..26b9fd72b 100644
--- a/jetpack_vendor/automattic/jetpack-sync/composer.json
+++ b/jetpack_vendor/automattic/jetpack-sync/composer.json
@@ -5,7 +5,7 @@
"license": "GPL-2.0-or-later",
"require": {
"php": ">=7.0",
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"automattic/jetpack-constants": "^2.0.2",
"automattic/jetpack-identity-crisis": "^0.18.6",
"automattic/jetpack-password-checker": "^0.3.1",
diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php
index 35e4046b8..eee6a6d6d 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' => '2.8.0',
+ 'ver' => '2.8.1-alpha1715693174',
),
'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 e2ba73c35..3f4e8e3ed 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.8.0"
+ "automattic/jetpack-connection": "^2.8.1-alpha"
},
"require-dev": {
"yoast/phpunit-polyfills": "1.1.0",
diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json
index 54cdc359a..897b5f9a1 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": "979dd7346c48542886a85ca75ddaf3dc3f29436a"
+ "reference": "09674bf1c2556f03b875f928d90885ea22c3ad11"
},
"require": {
"php": ">=7.0"
@@ -60,7 +60,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui",
- "reference": "b21941a580f2b089b49470dcdc0407384cb13421"
+ "reference": "b92e0d9625a837bfd859a2bd8d8ca6efee3af05f"
},
"require": {
"php": ">=7.0"
@@ -125,7 +125,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-assets",
- "reference": "63ea77c5d16421be01c3c34fc1fd1c7f65000ad6"
+ "reference": "969c1f872662e125d541b5149c6b8e6e0f4f87ff"
},
"require": {
"automattic/jetpack-constants": "^2.0.2",
@@ -194,7 +194,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-autoloader",
- "reference": "b5c47a93d13084c3b1a6413bc9285b05911fae26"
+ "reference": "58497a6a56c16603ee5737638f2f3c206022edec"
},
"require": {
"composer-plugin-api": "^1.1 || ^2.0",
@@ -261,10 +261,10 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-boost-core",
- "reference": "41f31445778d1d7b56a713c0573e8271cfd48b68"
+ "reference": "7151c98611c1b4b660df309151be4bef219475e7"
},
"require": {
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"php": ">=7.0"
},
"require-dev": {
@@ -329,7 +329,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-boost-speed-score",
- "reference": "1d785e71796447754d9345b4ee775644e6c29eda"
+ "reference": "0cd3cb91eb20bd953f3aa87ec3d4ae499eecdb35"
},
"require": {
"automattic/jetpack-boost-core": "^0.2.7",
@@ -405,7 +405,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin",
- "reference": "510ee51324417f32776cbdff67e59c49c6f2e738"
+ "reference": "c2197d5e4d26ff56a221c719727d7a8b63a138b9"
},
"require": {
"composer-plugin-api": "^2.1.0",
@@ -465,7 +465,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-config",
- "reference": "ab45c8e90e833f6e0b3583dcd8a2ffdf55f12963"
+ "reference": "967863d7d1a52a3f8158b2e9df47112dafc6466a"
},
"require": {
"php": ">=7.0"
@@ -537,12 +537,12 @@
},
{
"name": "automattic/jetpack-connection",
- "version": "2.8.0",
- "version_normalized": "2.8.0.0",
+ "version": "2.8.1-alpha.1715693174",
+ "version_normalized": "2.8.1.0-alpha1715693174",
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-connection",
- "reference": "553230f120691309fabf9f19782e4876c06dbea8"
+ "reference": "7268748c5dca5f5ce6c4b7729b2a4cbc787722fa"
},
"require": {
"automattic/jetpack-a8c-mc-stats": "^2.0.1",
@@ -630,7 +630,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-constants",
- "reference": "2f8929ab6a6bcab70d301c05d52e292b1c0a8044"
+ "reference": "798ec579ad36c4e5053ee4274aa31a85ca6c643e"
},
"require": {
"php": ">=7.0"
@@ -684,7 +684,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-device-detection",
- "reference": "231a3dd33b23d70227c987c881ed602b5a5a035f"
+ "reference": "c8817d285c854910dc885957ed1e2c5cd8352174"
},
"require": {
"php": ">=7.0"
@@ -737,11 +737,11 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-identity-crisis",
- "reference": "8dd222cf7ff188b27369022897012aa36de71903"
+ "reference": "860ea3ec624328eb20c2b6b6bbeafd35daf7853a"
},
"require": {
"automattic/jetpack-assets": "^2.1.9",
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"automattic/jetpack-constants": "^2.0.2",
"automattic/jetpack-logo": "^2.0.2",
"automattic/jetpack-status": "^3.0.3",
@@ -816,7 +816,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-ip",
- "reference": "19baf0ae6cbd294f9bbff9c59b6fcba5fbb9d5af"
+ "reference": "6189c79475532e962ce272119712abbfd73fe3a5"
},
"require": {
"php": ">=7.0"
@@ -874,12 +874,12 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-jitm",
- "reference": "f8dcfa41ee67eb0b9c2305d7930b6452086ad744"
+ "reference": "884de6e930e5c84a311a7758231db53fb9ee5bb0"
},
"require": {
"automattic/jetpack-a8c-mc-stats": "^2.0.1",
"automattic/jetpack-assets": "^2.1.9",
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"automattic/jetpack-device-detection": "^2.1.3",
"automattic/jetpack-logo": "^2.0.2",
"automattic/jetpack-redirect": "^2.0.2",
@@ -949,10 +949,10 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-licensing",
- "reference": "b2420debee5141c7c04ffc5a3f4324b48c338d30"
+ "reference": "1591598f7df7fa82d2bbb41c0c953e2a541a6442"
},
"require": {
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"php": ">=7.0"
},
"require-dev": {
@@ -1011,7 +1011,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-logo",
- "reference": "5e2b95cdda996194394ec9b20d0a643bd0c2fa42"
+ "reference": "e056827dd2ce007d3b38e901dd97ef8d95301e94"
},
"require": {
"php": ">=7.0"
@@ -1064,13 +1064,13 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack",
- "reference": "b13865ab300ac6209ffd5ec7b72c901894c585d5"
+ "reference": "72a886758eaf34c283f03f7609da56b09f82ce55"
},
"require": {
"automattic/jetpack-admin-ui": "^0.4.2",
"automattic/jetpack-assets": "^2.1.9",
"automattic/jetpack-boost-speed-score": "^0.3.11",
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"automattic/jetpack-constants": "^2.0.2",
"automattic/jetpack-jitm": "^3.1.10",
"automattic/jetpack-licensing": "^2.0.5",
@@ -1165,7 +1165,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-password-checker",
- "reference": "e3c1cb9e018a363a16858142c5973385f78a8047"
+ "reference": "e9ca42070a94bb148081dd93bfd1e68a77b2cb0e"
},
"require": {
"php": ">=7.0"
@@ -1226,10 +1226,10 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-plans",
- "reference": "0cef66a420028c78a1ea1c6ab8eab6d5c98808e6"
+ "reference": "421345802c974172322ebc9b54d67abf6ee34409"
},
"require": {
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"php": ">=7.0"
},
"require-dev": {
@@ -1294,7 +1294,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer",
- "reference": "4286a0b405008b213abd03a9e6c8890c9eb12b2f"
+ "reference": "f0a2764b43f56437ec36479d9493a9eaa65d590b"
},
"require": {
"automattic/jetpack-a8c-mc-stats": "^2.0.1",
@@ -1349,7 +1349,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-post-list",
- "reference": "be95d19528940b0029b61e1182e0bbd1fdbfb270"
+ "reference": "45e69fd165c97358534ae8a952bb99dfcf8d3688"
},
"require": {
"automattic/jetpack-assets": "^2.1.9",
@@ -1414,13 +1414,13 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-publicize",
- "reference": "96eb0ff31d2d7df72ffe4427ff114842e2287bc3"
+ "reference": "e4c64202d24c96b5156f87f8b056590fdc9b9adf"
},
"require": {
"automattic/jetpack-assets": "^2.1.9",
"automattic/jetpack-autoloader": "^3.0.7",
"automattic/jetpack-config": "^2.0.2",
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"automattic/jetpack-plans": "^0.4.7",
"automattic/jetpack-redirect": "^2.0.2",
"php": ">=7.0"
@@ -1494,7 +1494,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-redirect",
- "reference": "4a25e1baf0b73e5d05aa2d038cbb361b6502bfd4"
+ "reference": "2d8767688d48a45a41f9c1e95be65451dc2a701e"
},
"require": {
"automattic/jetpack-status": "^3.0.3",
@@ -1549,7 +1549,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-roles",
- "reference": "a8c2243170ca0bd0a9b7c0572cc5eace18ba6723"
+ "reference": "fc4b53f5591e2fccebb687f5225683dbec3ecf84"
},
"require": {
"php": ">=7.0"
@@ -1603,7 +1603,7 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-status",
- "reference": "85a404809acb5c652a471e8a04706f1d8e805dd9"
+ "reference": "bdf0f80581b20af7cce81d53f6f571ab5cdf34d9"
},
"require": {
"automattic/jetpack-constants": "^2.0.2",
@@ -1669,10 +1669,10 @@
"dist": {
"type": "path",
"url": "/tmp/jetpack-build/Automattic/jetpack-sync",
- "reference": "481e5d55529ac20648737077be920418659bf508"
+ "reference": "7be15ecad049861c4bb088c9733a8914c2c7f1ce"
},
"require": {
- "automattic/jetpack-connection": "^2.8.0",
+ "automattic/jetpack-connection": "^2.8.1-alpha",
"automattic/jetpack-constants": "^2.0.2",
"automattic/jetpack-identity-crisis": "^0.18.6",
"automattic/jetpack-ip": "^0.2.2",
diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php
index 0eada21a6..6bc220a97 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.1',
'version' => '2.0.1.0',
- 'reference' => '979dd7346c48542886a85ca75ddaf3dc3f29436a',
+ 'reference' => '09674bf1c2556f03b875f928d90885ea22c3ad11',
'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.4.2',
'version' => '0.4.2.0',
- 'reference' => 'b21941a580f2b089b49470dcdc0407384cb13421',
+ 'reference' => 'b92e0d9625a837bfd859a2bd8d8ca6efee3af05f',
'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.1.9',
'version' => '2.1.9.0',
- 'reference' => '63ea77c5d16421be01c3c34fc1fd1c7f65000ad6',
+ 'reference' => '969c1f872662e125d541b5149c6b8e6e0f4f87ff',
'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.7',
'version' => '3.0.7.0',
- 'reference' => 'b5c47a93d13084c3b1a6413bc9285b05911fae26',
+ 'reference' => '58497a6a56c16603ee5737638f2f3c206022edec',
'type' => 'composer-plugin',
'install_path' => __DIR__ . '/../automattic/jetpack-autoloader',
'aliases' => array(),
@@ -49,7 +49,7 @@
'automattic/jetpack-boost-core' => array(
'pretty_version' => '0.2.7',
'version' => '0.2.7.0',
- 'reference' => '41f31445778d1d7b56a713c0573e8271cfd48b68',
+ 'reference' => '7151c98611c1b4b660df309151be4bef219475e7',
'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.3.11',
'version' => '0.3.11.0',
- 'reference' => '1d785e71796447754d9345b4ee775644e6c29eda',
+ 'reference' => '0cd3cb91eb20bd953f3aa87ec3d4ae499eecdb35',
'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' => '2.0.1',
'version' => '2.0.1.0',
- 'reference' => '510ee51324417f32776cbdff67e59c49c6f2e738',
+ 'reference' => 'c2197d5e4d26ff56a221c719727d7a8b63a138b9',
'type' => 'composer-plugin',
'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin',
'aliases' => array(),
@@ -76,16 +76,16 @@
'automattic/jetpack-config' => array(
'pretty_version' => '2.0.2',
'version' => '2.0.2.0',
- 'reference' => 'ab45c8e90e833f6e0b3583dcd8a2ffdf55f12963',
+ 'reference' => '967863d7d1a52a3f8158b2e9df47112dafc6466a',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config',
'aliases' => array(),
'dev_requirement' => false,
),
'automattic/jetpack-connection' => array(
- 'pretty_version' => '2.8.0',
- 'version' => '2.8.0.0',
- 'reference' => '553230f120691309fabf9f19782e4876c06dbea8',
+ 'pretty_version' => '2.8.1-alpha.1715693174',
+ 'version' => '2.8.1.0-alpha1715693174',
+ 'reference' => '7268748c5dca5f5ce6c4b7729b2a4cbc787722fa',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection',
'aliases' => array(),
@@ -94,7 +94,7 @@
'automattic/jetpack-constants' => array(
'pretty_version' => '2.0.2',
'version' => '2.0.2.0',
- 'reference' => '2f8929ab6a6bcab70d301c05d52e292b1c0a8044',
+ 'reference' => '798ec579ad36c4e5053ee4274aa31a85ca6c643e',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants',
'aliases' => array(),
@@ -103,7 +103,7 @@
'automattic/jetpack-device-detection' => array(
'pretty_version' => '2.1.3',
'version' => '2.1.3.0',
- 'reference' => '231a3dd33b23d70227c987c881ed602b5a5a035f',
+ 'reference' => 'c8817d285c854910dc885957ed1e2c5cd8352174',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection',
'aliases' => array(),
@@ -112,7 +112,7 @@
'automattic/jetpack-identity-crisis' => array(
'pretty_version' => '0.18.6',
'version' => '0.18.6.0',
- 'reference' => '8dd222cf7ff188b27369022897012aa36de71903',
+ 'reference' => '860ea3ec624328eb20c2b6b6bbeafd35daf7853a',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-identity-crisis',
'aliases' => array(),
@@ -121,7 +121,7 @@
'automattic/jetpack-ip' => array(
'pretty_version' => '0.2.2',
'version' => '0.2.2.0',
- 'reference' => '19baf0ae6cbd294f9bbff9c59b6fcba5fbb9d5af',
+ 'reference' => '6189c79475532e962ce272119712abbfd73fe3a5',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip',
'aliases' => array(),
@@ -130,7 +130,7 @@
'automattic/jetpack-jitm' => array(
'pretty_version' => '3.1.10',
'version' => '3.1.10.0',
- 'reference' => 'f8dcfa41ee67eb0b9c2305d7930b6452086ad744',
+ 'reference' => '884de6e930e5c84a311a7758231db53fb9ee5bb0',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm',
'aliases' => array(),
@@ -139,7 +139,7 @@
'automattic/jetpack-licensing' => array(
'pretty_version' => '2.0.5',
'version' => '2.0.5.0',
- 'reference' => 'b2420debee5141c7c04ffc5a3f4324b48c338d30',
+ 'reference' => '1591598f7df7fa82d2bbb41c0c953e2a541a6442',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing',
'aliases' => array(),
@@ -148,7 +148,7 @@
'automattic/jetpack-logo' => array(
'pretty_version' => '2.0.2',
'version' => '2.0.2.0',
- 'reference' => '5e2b95cdda996194394ec9b20d0a643bd0c2fa42',
+ 'reference' => 'e056827dd2ce007d3b38e901dd97ef8d95301e94',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo',
'aliases' => array(),
@@ -157,7 +157,7 @@
'automattic/jetpack-my-jetpack' => array(
'pretty_version' => '4.23.2',
'version' => '4.23.2.0',
- 'reference' => 'b13865ab300ac6209ffd5ec7b72c901894c585d5',
+ 'reference' => '72a886758eaf34c283f03f7609da56b09f82ce55',
'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.3.1',
'version' => '0.3.1.0',
- 'reference' => 'e3c1cb9e018a363a16858142c5973385f78a8047',
+ 'reference' => 'e9ca42070a94bb148081dd93bfd1e68a77b2cb0e',
'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.4.7',
'version' => '0.4.7.0',
- 'reference' => '0cef66a420028c78a1ea1c6ab8eab6d5c98808e6',
+ 'reference' => '421345802c974172322ebc9b54d67abf6ee34409',
'type' => 'library',
'install_path' => __DIR__ . '/../automattic/jetpack-plans',
'aliases' => array(),
@@ -184,7 +184,7 @@
'automattic/jetpack-plugins-installer' => array(
'pretty_version' => '0.3.5',
'version' => '0.3.5.0',
- 'reference' => '4286a0b405008b213abd03a9e6c8890c9eb12b2f',
+ 'reference' => 'f0a2764b43f56437ec36479d9493a9eaa65d590b',
'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.6.2',
'version' => '0.6.2.0',
- 'reference' => 'be95d19528940b0029b61e1182e0bbd1fdbfb270',
+ 'reference' => '45e69fd165c97358534ae8a952bb99dfcf8d3688',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-post-list',
'aliases' => array(),
@@ -202,7 +202,7 @@
'automattic/jetpack-publicize' => array(
'pretty_version' => '0.44.0',
'version' => '0.44.0.0',
- 'reference' => '96eb0ff31d2d7df72ffe4427ff114842e2287bc3',
+ 'reference' => 'e4c64202d24c96b5156f87f8b056590fdc9b9adf',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-publicize',
'aliases' => array(),
@@ -211,7 +211,7 @@
'automattic/jetpack-redirect' => array(
'pretty_version' => '2.0.2',
'version' => '2.0.2.0',
- 'reference' => '4a25e1baf0b73e5d05aa2d038cbb361b6502bfd4',
+ 'reference' => '2d8767688d48a45a41f9c1e95be65451dc2a701e',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect',
'aliases' => array(),
@@ -220,7 +220,7 @@
'automattic/jetpack-roles' => array(
'pretty_version' => '2.0.2',
'version' => '2.0.2.0',
- 'reference' => 'a8c2243170ca0bd0a9b7c0572cc5eace18ba6723',
+ 'reference' => 'fc4b53f5591e2fccebb687f5225683dbec3ecf84',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles',
'aliases' => array(),
@@ -238,7 +238,7 @@
'automattic/jetpack-status' => array(
'pretty_version' => '3.0.3',
'version' => '3.0.3.0',
- 'reference' => '85a404809acb5c652a471e8a04706f1d8e805dd9',
+ 'reference' => 'bdf0f80581b20af7cce81d53f6f571ab5cdf34d9',
'type' => 'jetpack-library',
'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status',
'aliases' => array(),
@@ -247,7 +247,7 @@
'automattic/jetpack-sync' => array(
'pretty_version' => '2.16.2-alpha.1715688486',
'version' => '2.16.2.0-alpha1715688486',
- 'reference' => '481e5d55529ac20648737077be920418659bf508',
+ 'reference' => '7be15ecad049861c4bb088c9733a8914c2c7f1ce',
'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 5e5f626b4..be1ef73e4 100644
--- a/vendor/composer/jetpack_autoload_classmap.php
+++ b/vendor/composer/jetpack_autoload_classmap.php
@@ -123,119 +123,119 @@
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-config/src/class-config.php'
),
'Automattic\\Jetpack\\Connection\\Authorize_Json_Api' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-authorize-json-api.php'
),
'Automattic\\Jetpack\\Connection\\Client' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php'
),
'Automattic\\Jetpack\\Connection\\Connection_Notice' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-notice.php'
),
'Automattic\\Jetpack\\Connection\\Error_Handler' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php'
),
'Automattic\\Jetpack\\Connection\\Initial_State' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php'
),
'Automattic\\Jetpack\\Connection\\Manager' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php'
),
'Automattic\\Jetpack\\Connection\\Manager_Interface' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php'
),
'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php'
),
'Automattic\\Jetpack\\Connection\\Package_Version' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php'
),
'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php'
),
'Automattic\\Jetpack\\Connection\\Plugin' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php'
),
'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php'
),
'Automattic\\Jetpack\\Connection\\REST_Connector' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php'
),
'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php'
),
'Automattic\\Jetpack\\Connection\\SSO' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-sso.php'
),
'Automattic\\Jetpack\\Connection\\SSO\\Force_2FA' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-force-2fa.php'
),
'Automattic\\Jetpack\\Connection\\SSO\\Helpers' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-helpers.php'
),
'Automattic\\Jetpack\\Connection\\SSO\\Notices' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-notices.php'
),
'Automattic\\Jetpack\\Connection\\SSO\\User_Admin' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-user-admin.php'
),
'Automattic\\Jetpack\\Connection\\Secrets' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php'
),
'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php'
),
'Automattic\\Jetpack\\Connection\\Tokens' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php'
),
'Automattic\\Jetpack\\Connection\\Tokens_Locks' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens-locks.php'
),
'Automattic\\Jetpack\\Connection\\Urls' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php'
),
'Automattic\\Jetpack\\Connection\\Utils' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php'
),
'Automattic\\Jetpack\\Connection\\Webhooks' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php'
),
'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php'
),
'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php'
),
'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php'
),
'Automattic\\Jetpack\\Constants' => array(
@@ -267,7 +267,7 @@
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-files.php'
),
'Automattic\\Jetpack\\Heartbeat' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-heartbeat.php'
),
'Automattic\\Jetpack\\IP\\Utils' => array(
@@ -439,11 +439,11 @@
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php'
),
'Automattic\\Jetpack\\Partner' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner.php'
),
'Automattic\\Jetpack\\Partner_Coupon' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner-coupon.php'
),
'Automattic\\Jetpack\\Password_Checker' => array(
@@ -807,11 +807,11 @@
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php'
),
'Automattic\\Jetpack\\Terms_Of_Service' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-terms-of-service.php'
),
'Automattic\\Jetpack\\Tracking' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php'
),
'Container' => array(
@@ -823,19 +823,19 @@
'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-hook-manager.php'
),
'Jetpack_IXR_Client' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php'
),
'Jetpack_IXR_ClientMulticall' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php'
),
'Jetpack_Options' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php'
),
'Jetpack_Signature' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php'
),
'Jetpack_Social' => array(
@@ -843,15 +843,15 @@
'path' => $baseDir . '/src/class-jetpack-social.php'
),
'Jetpack_Tracks_Client' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php'
),
'Jetpack_Tracks_Event' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php'
),
'Jetpack_XMLRPC_Server' => array(
- 'version' => '2.8.0.0',
+ 'version' => '2.8.1.0-alpha1715693174',
'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php'
),
'Latest_Autoloader_Guard' => array(