diff --git a/composer.json b/composer.json index 6e8a20c76..ae986a101 100644 --- a/composer.json +++ b/composer.json @@ -10,7 +10,7 @@ "automattic/jetpack-composer-plugin": "^2.0.1", "automattic/jetpack-config": "^2.0.1", "automattic/jetpack-identity-crisis": "^0.18.3", - "automattic/jetpack-publicize": "^0.42.11", + "automattic/jetpack-publicize": "^0.42.12-alpha", "automattic/jetpack-connection": "^2.7.3-alpha", "automattic/jetpack-my-jetpack": "^4.22.2-alpha", "automattic/jetpack-sync": "^2.13.0", diff --git a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md index 84042d46a..043e096a8 100644 --- a/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-connection/CHANGELOG.md @@ -14,6 +14,7 @@ This is an alpha version! The changes listed here are not final. ### Fixed - Disconnect connection owner on removal. +- Improve phpdoc comments in Client class, and remove some unnecessary boolean checks. ## [2.7.2] - 2024-04-22 ### Added diff --git a/jetpack_vendor/automattic/jetpack-connection/src/class-client.php b/jetpack_vendor/automattic/jetpack-connection/src/class-client.php index 6db15a390..cc1c008a2 100644 --- a/jetpack_vendor/automattic/jetpack-connection/src/class-client.php +++ b/jetpack_vendor/automattic/jetpack-connection/src/class-client.php @@ -10,6 +10,9 @@ use Automattic\Jetpack\Constants; use WP_Error; +// `wp_remote_request` returns an array with a particular format. +'@phan-type _WP_Remote_Response_Array = array{headers:\WpOrg\Requests\Utility\CaseInsensitiveDictionary,body:string,response:array{code:int,message:string},cookies:\WP_HTTP_Cookie[],filename:?string,http_response:WP_HTTP_Requests_Response}'; + /** * The Client class that is used to connect to WordPress.com Jetpack API. */ @@ -19,9 +22,10 @@ class Client { /** * Makes an authorized remote request using Jetpack_Signature * - * @param array $args the arguments for the remote request. - * @param array|String $body the request body. + * @param array $args the arguments for the remote request. + * @param array|string|null $body the request body. * @return array|WP_Error WP HTTP response on success + * @phan-return _WP_Remote_Response_Array|WP_Error */ public static function remote_request( $args, $body = null ) { if ( isset( $args['url'] ) ) { @@ -36,7 +40,7 @@ public static function remote_request( $args, $body = null ) { } $result = self::build_signed_request( $args, $body ); - if ( ! $result || is_wp_error( $result ) ) { + if ( is_wp_error( $result ) ) { return $result; } @@ -65,12 +69,12 @@ public static function remote_request( $args, $body = null ) { /** * Adds authorization signature to a remote request using Jetpack_Signature * - * @param array $args the arguments for the remote request. - * @param array|String $body the request body. - * @return WP_Error|array { + * @param array $args the arguments for the remote request. + * @param array|string|null $body the request body. + * @return WP_Error|array{url:string,request:array,auth:array} { * An array containing URL and request items. * - * @type String $url The request URL. + * @type string $url The request URL. * @type array $request Request arguments. * @type array $auth Authorization data. * } @@ -123,7 +127,7 @@ public static function build_signed_request( $args, $body = null ) { $request = compact( 'method', 'body', 'timeout', 'redirection', 'stream', 'filename', 'sslverify' ); @list( $token_key, $secret ) = explode( '.', $token->secret ); // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged - if ( empty( $token ) || empty( $secret ) ) { + if ( ! $secret ) { return new WP_Error( 'malformed_token' ); } @@ -142,7 +146,7 @@ public static function build_signed_request( $args, $body = null ) { if ( function_exists( 'wp_generate_password' ) ) { $nonce = wp_generate_password( 10, false ); } else { - $nonce = substr( sha1( wp_rand( 0, 1000000 ) ), 0, 10 ); + $nonce = substr( sha1( (string) wp_rand( 0, 1000000 ) ), 0, 10 ); } // Kind of annoying. Maybe refactor Jetpack_Signature to handle body-hashing. @@ -196,7 +200,7 @@ public static function build_signed_request( $args, $body = null ) { $signature = $jetpack_signature->sign_request( $token_key, $timestamp, $nonce, $body_hash, $method, $url, $body, false ); - if ( ! $signature || is_wp_error( $signature ) ) { + if ( is_wp_error( $signature ) ) { return $signature; } @@ -233,10 +237,11 @@ public static function build_signed_request( $args, $body = null ) { * * @internal * - * @param String $url the request URL. + * @param string $url the request URL. * @param array $args request arguments. - * @param Boolean $set_fallback whether to allow flagging this request to use a fallback certficate override. + * @param boolean $set_fallback whether to allow flagging this request to use a fallback certficate override. * @return array|WP_Error WP HTTP response on success + * @phan-return _WP_Remote_Response_Array|WP_Error */ public static function _wp_remote_request( $url, $args, $set_fallback = false ) { // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore $fallback = \Jetpack_Options::get_option( 'fallback_no_verify_ssl_certs' ); @@ -316,8 +321,9 @@ public static function _wp_remote_request( $url, $args, $set_fallback = false ) /** * Sets the time difference for correct signature computation. * - * @param HTTP_Response $response the response object. - * @param Boolean $force_set whether to force setting the time difference. + * @param array $response Response array from `wp_remote_request`. + * @param bool $force_set whether to force setting the time difference. + * @phan-param _WP_Remote_Response_Array $response */ public static function set_time_diff( &$response, $force_set = false ) { $code = wp_remote_retrieve_response_code( $response ); @@ -357,7 +363,7 @@ public static function set_time_diff( &$response, $force_set = false ) { * @param array $args Arguments to {@see WP_Http}. Default is `array()`. * @param string $base_api_path REST API root. Default is `wpcom`. * - * @return array|WP_Error $response Response data, else {@see WP_Error} on failure. + * @return array Validated arguments. */ public static function validate_args_for_wpcom_json_api_request( $path, @@ -415,6 +421,7 @@ public static function validate_args_for_wpcom_json_api_request( * @param string $base_api_path REST API root. Default is `wpcom`. * * @return array|WP_Error $response Response data, else {@see WP_Error} on failure. + * @phan-return _WP_Remote_Response_Array|WP_Error */ public static function wpcom_json_api_request_as_user( $path, @@ -440,12 +447,13 @@ public static function wpcom_json_api_request_as_user( /** * Query the WordPress.com REST API using the blog token * - * @param String $path The API endpoint relative path. - * @param String $version The API version. - * @param array $args Request arguments. - * @param String $body Request body. - * @param String $base_api_path (optional) the API base path override, defaults to 'rest'. + * @param string $path The API endpoint relative path. + * @param string $version The API version. + * @param array $args Request arguments. + * @param array|string|null $body Request body. + * @param string $base_api_path (optional) the API base path override, defaults to 'rest'. * @return array|WP_Error $response Data. + * @phan-return _WP_Remote_Response_Array|WP_Error */ public static function wpcom_json_api_request_as_blog( $path, @@ -472,7 +480,7 @@ public static function wpcom_json_api_request_as_blog( * make sure that body hashes are made ith the string version, which is what will be seen after a * server pulls up the data in the $_POST array. * - * @param array|Mixed $data the data that needs to be stringified. + * @param mixed $data the data that needs to be stringified. * * @return array|string */ diff --git a/jetpack_vendor/automattic/jetpack-jitm/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-jitm/CHANGELOG.md index 45a74c043..486487595 100644 --- a/jetpack_vendor/automattic/jetpack-jitm/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-jitm/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.1.8-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + ## [3.1.7] - 2024-04-22 ### Changed - Internal updates. @@ -707,6 +711,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Update Jetpack to use new JITM package +[3.1.8-alpha]: https://github.com/Automattic/jetpack-jitm/compare/v3.1.7...v3.1.8-alpha [3.1.7]: https://github.com/Automattic/jetpack-jitm/compare/v3.1.6...v3.1.7 [3.1.6]: https://github.com/Automattic/jetpack-jitm/compare/v3.1.5...v3.1.6 [3.1.5]: https://github.com/Automattic/jetpack-jitm/compare/v3.1.4...v3.1.5 diff --git a/jetpack_vendor/automattic/jetpack-jitm/src/class-jitm.php b/jetpack_vendor/automattic/jetpack-jitm/src/class-jitm.php index cf4caefd6..013291807 100644 --- a/jetpack_vendor/automattic/jetpack-jitm/src/class-jitm.php +++ b/jetpack_vendor/automattic/jetpack-jitm/src/class-jitm.php @@ -20,7 +20,7 @@ */ class JITM { - const PACKAGE_VERSION = '3.1.7'; + const PACKAGE_VERSION = '3.1.8-alpha'; /** * The configuration method that is called from the jetpack-config package. diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json index 740a277dd..997aadba2 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json @@ -9,7 +9,7 @@ "automattic/jetpack-assets": "^2.1.8", "automattic/jetpack-boost-speed-score": "^0.3.11", "automattic/jetpack-connection": "^2.7.3-alpha", - "automattic/jetpack-jitm": "^3.1.7", + "automattic/jetpack-jitm": "^3.1.8-alpha", "automattic/jetpack-licensing": "^2.0.5", "automattic/jetpack-plugins-installer": "^0.3.4", "automattic/jetpack-redirect": "^2.0.1", @@ -21,7 +21,7 @@ "yoast/phpunit-polyfills": "1.1.0", "automattic/jetpack-changelogger": "^4.2.2", "automattic/wordbless": "@dev", - "automattic/jetpack-videopress": "^0.23.16" + "automattic/jetpack-videopress": "^0.23.17-alpha" }, "suggest": { "automattic/jetpack-autoloader": "Allow for better interoperability with other plugins that use this package." diff --git a/jetpack_vendor/automattic/jetpack-publicize/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-publicize/CHANGELOG.md index f190a0e56..c473cb2f2 100644 --- a/jetpack_vendor/automattic/jetpack-publicize/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-publicize/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.42.12-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + ## [0.42.11] - 2024-04-22 ### Changed - Internal updates. @@ -525,6 +529,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated package dependencies. - Update package.json metadata. +[0.42.12-alpha]: https://github.com/Automattic/jetpack-publicize/compare/v0.42.11...v0.42.12-alpha [0.42.11]: https://github.com/Automattic/jetpack-publicize/compare/v0.42.10...v0.42.11 [0.42.10]: https://github.com/Automattic/jetpack-publicize/compare/v0.42.9...v0.42.10 [0.42.9]: https://github.com/Automattic/jetpack-publicize/compare/v0.42.8...v0.42.9 diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index 51042a9a1..225ffa27d 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.7.3-alpha1713964570', + 'ver' => '2.7.3-alpha1713985059', ), 'jetpack-idc' => array( 'path' => 'jetpack_vendor/automattic/jetpack-identity-crisis', @@ -38,7 +38,7 @@ ), 'jetpack-jitm' => array( 'path' => 'jetpack_vendor/automattic/jetpack-jitm', - 'ver' => '3.1.7', + 'ver' => '3.1.8-alpha1713985059', ), 'jetpack-licensing' => array( 'path' => 'jetpack_vendor/automattic/jetpack-licensing', @@ -46,7 +46,7 @@ ), 'jetpack-my-jetpack' => array( 'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack', - 'ver' => '4.22.2-alpha1713900720', + 'ver' => '4.22.2-alpha1713985059', ), 'jetpack-password-checker' => array( 'path' => 'jetpack_vendor/automattic/jetpack-password-checker', @@ -62,7 +62,7 @@ ), 'jetpack-publicize-pkg' => array( 'path' => 'jetpack_vendor/automattic/jetpack-publicize', - 'ver' => '0.42.11', + 'ver' => '0.42.12-alpha1713985059', ), 'jetpack-sync' => array( 'path' => 'jetpack_vendor/automattic/jetpack-sync', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 4f07a113c..04ee4b7ee 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": "61857c1c4c929754411d3ef5f23a1f608eced2a6" + "reference": "7f569f562370e09213a2d43cac3dd8c22c435c2b" }, "require": { "php": ">=7.0" @@ -60,7 +60,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "9fd39b9172ceb69ebbd9fec748d2b96c7ec44493" + "reference": "e30592f43ddda16bc3a3f4de4d2f285e8cd378dd" }, "require": { "php": ">=7.0" @@ -125,7 +125,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "0182d32ae523d402dce9bbd03ab460c88e815689" + "reference": "01fb33c73c91b3412ba0565d5a93e155835f6e8b" }, "require": { "automattic/jetpack-constants": "^2.0.1", @@ -194,7 +194,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "4e2d76d5987a13f67c7cc0fa45c2827d3bb8c938" + "reference": "ac7e4b8c0a81d9bded48ad7f330f09f3ea7cba8c" }, "require": { "composer-plugin-api": "^1.1 || ^2.0", @@ -261,7 +261,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-core", - "reference": "a5b4993e42c9ba97cc3958c274ebb1c016b22650" + "reference": "ca2ade0b7a4db448f362f79f70369604b03f052e" }, "require": { "php": ">=7.0" @@ -328,7 +328,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-speed-score", - "reference": "25994ad1ea16f45cf124bb9cf36195c40a0fa418" + "reference": "74637aff7250ca8b958136c0b772fe6082d18fdc" }, "require": { "automattic/jetpack-boost-core": "^0.2.6", @@ -404,7 +404,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "95d5f761733b554620fed39bc5ee94b7898ccd27" + "reference": "748a2ebb0abe1257421dc0e2414db39cc3cf3397" }, "require": { "composer-plugin-api": "^2.1.0", @@ -464,7 +464,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "5863c9fd92e99b4f6f1be7a4dec0123dad3bd2dc" + "reference": "b0b5d230fe0b8be7a6ee43e141f1e7974f877b8a" }, "require": { "php": ">=7.0" @@ -504,12 +504,12 @@ }, { "name": "automattic/jetpack-connection", - "version": "2.7.3-alpha.1713964570", - "version_normalized": "2.7.3.0-alpha1713964570", + "version": "2.7.3-alpha.1713985059", + "version_normalized": "2.7.3.0-alpha1713985059", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "82570f5e1ced5751d7c077d91f0ce4ab1c65bb67" + "reference": "52fa6059395546c9da51f2061749b6af724cc424" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.1", @@ -589,7 +589,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "d41f8d75ea544a9a18c624bdc161f80a9c7d9175" + "reference": "b0e22720072e05042447c31cb049c5901c0d2dba" }, "require": { "php": ">=7.0" @@ -643,7 +643,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "89ceec048726cc2071b2514015770101cd8370e2" + "reference": "b1990b187f4bbadc0cefcb23609282148f5ab2b7" }, "require": { "php": ">=7.0" @@ -696,7 +696,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-identity-crisis", - "reference": "f791e2318a08cba195b628bf4406fba6c529bf4e" + "reference": "4afe17ca1f787bba7c86aae9e506c5e065b4a0ba" }, "require": { "automattic/jetpack-assets": "^2.1.8", @@ -775,7 +775,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "d4f8c469d65497cd0acefa35264f681091b8e2d1" + "reference": "26cf11c9f102934f10482e66acbe0a3a77a2e47a" }, "require": { "php": ">=7.0" @@ -828,12 +828,12 @@ }, { "name": "automattic/jetpack-jitm", - "version": "3.1.7", - "version_normalized": "3.1.7.0", + "version": "3.1.8-alpha.1713985059", + "version_normalized": "3.1.8.0-alpha1713985059", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "920bf51cb3f0cfd1951323d3c215e5e65eacd2f8" + "reference": "b9986195d3c687d56f2ddaac1db4543cb6ae6a1f" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.1", @@ -908,7 +908,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "51b6ac74d4c7c40641a40ce8974a607709341e56" + "reference": "746248391a61e7d2eb3a95f4645d339bb82191f0" }, "require": { "automattic/jetpack-connection": "^2.7.3-alpha", @@ -970,7 +970,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "ac93d88932aecd3365d0648341718626d4fd2f04" + "reference": "b017440e7cc89631d691ab38bcdfe84479de54ae" }, "require": { "php": ">=7.0" @@ -1018,12 +1018,12 @@ }, { "name": "automattic/jetpack-my-jetpack", - "version": "4.22.2-alpha.1713900720", - "version_normalized": "4.22.2.0-alpha1713900720", + "version": "4.22.2-alpha.1713985059", + "version_normalized": "4.22.2.0-alpha1713985059", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "8949a3bfd364a4599ff5f95a9960c98022ec3a5e" + "reference": "bb0f5bca101adac5cce3489c1cdd9549390e05df" }, "require": { "automattic/jetpack-admin-ui": "^0.4.2", @@ -1031,7 +1031,7 @@ "automattic/jetpack-boost-speed-score": "^0.3.11", "automattic/jetpack-connection": "^2.7.3-alpha", "automattic/jetpack-constants": "^2.0.1", - "automattic/jetpack-jitm": "^3.1.7", + "automattic/jetpack-jitm": "^3.1.8-alpha", "automattic/jetpack-licensing": "^2.0.5", "automattic/jetpack-plans": "^0.4.5", "automattic/jetpack-plugins-installer": "^0.3.4", @@ -1041,7 +1041,7 @@ }, "require-dev": { "automattic/jetpack-changelogger": "^4.2.2", - "automattic/jetpack-videopress": "^0.23.16", + "automattic/jetpack-videopress": "^0.23.17-alpha", "automattic/wordbless": "@dev", "yoast/phpunit-polyfills": "1.1.0" }, @@ -1117,7 +1117,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "c981cf8f993ea58ab326746cd4e902e6e28c3c06" + "reference": "8060855d9f829a95fb2453303135f0ac9c68de01" }, "require": { "php": ">=7.0" @@ -1178,7 +1178,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "3796dca0015af7b807e5a23a77d97f7ce99e911e" + "reference": "8976df860d484b8bbd8b2d5ed0cd95b7896e7b4b" }, "require": { "automattic/jetpack-connection": "^2.7.3-alpha", @@ -1246,7 +1246,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "9aae72a1dff6e11073ac27b6464f17b63d2fc1d4" + "reference": "21fef0e2d2647cf0b76b9fec9d1ea9ff1cfcb3a4" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.1", @@ -1301,7 +1301,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-post-list", - "reference": "8a338236076c612021ad658694d3ed33b505f13b" + "reference": "07826af234f46893a498b95c4ff76236ab18c39c" }, "require": { "automattic/jetpack-assets": "^2.1.8", @@ -1361,12 +1361,12 @@ }, { "name": "automattic/jetpack-publicize", - "version": "0.42.11", - "version_normalized": "0.42.11.0", + "version": "0.42.12-alpha.1713985059", + "version_normalized": "0.42.12.0-alpha1713985059", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-publicize", - "reference": "2106b010ddd377b7a7562b84aaec786066898c7d" + "reference": "482219d9617d4a11b7c1c50b90d5466814c420ce" }, "require": { "automattic/jetpack-assets": "^2.1.8", @@ -1446,7 +1446,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "5a6cd033b858cafab8f5db9f219d0bf307e87f03" + "reference": "11bdc0735dcdafd2e3f46daf8925af492dea2aa8" }, "require": { "automattic/jetpack-status": "^3.0.0-alpha", @@ -1501,7 +1501,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "140eb805fde46829e921682cc73b82051a029088" + "reference": "d64953c4f0ac097847f1623d5cf5d316a9288562" }, "require": { "php": ">=7.0" @@ -1555,7 +1555,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "23981db530016ce28607f65bbf3bd9e0f59ef6ee" + "reference": "3c4363a3fba14519aafe40e8a8ddb568140df2e6" }, "require": { "automattic/jetpack-constants": "^2.0.1", @@ -1611,7 +1611,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "11829e99d6e5a18f026bcd3ea071a26a375a2327" + "reference": "24057a72bed30b13f76624eb721cb39edcab8c97" }, "require": { "automattic/jetpack-connection": "^2.7.3-alpha", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index d2f171636..99d65fd5b 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' => '61857c1c4c929754411d3ef5f23a1f608eced2a6', + 'reference' => '7f569f562370e09213a2d43cac3dd8c22c435c2b', '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' => '9fd39b9172ceb69ebbd9fec748d2b96c7ec44493', + 'reference' => 'e30592f43ddda16bc3a3f4de4d2f285e8cd378dd', '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.8', 'version' => '2.1.8.0', - 'reference' => '0182d32ae523d402dce9bbd03ab460c88e815689', + 'reference' => '01fb33c73c91b3412ba0565d5a93e155835f6e8b', '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.6', 'version' => '3.0.6.0', - 'reference' => '4e2d76d5987a13f67c7cc0fa45c2827d3bb8c938', + 'reference' => 'ac7e4b8c0a81d9bded48ad7f330f09f3ea7cba8c', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-boost-core' => array( 'pretty_version' => '0.2.6', 'version' => '0.2.6.0', - 'reference' => 'a5b4993e42c9ba97cc3958c274ebb1c016b22650', + 'reference' => 'ca2ade0b7a4db448f362f79f70369604b03f052e', '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' => '25994ad1ea16f45cf124bb9cf36195c40a0fa418', + 'reference' => '74637aff7250ca8b958136c0b772fe6082d18fdc', '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' => '95d5f761733b554620fed39bc5ee94b7898ccd27', + 'reference' => '748a2ebb0abe1257421dc0e2414db39cc3cf3397', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -76,16 +76,16 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '2.0.1', 'version' => '2.0.1.0', - 'reference' => '5863c9fd92e99b4f6f1be7a4dec0123dad3bd2dc', + 'reference' => 'b0b5d230fe0b8be7a6ee43e141f1e7974f877b8a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-connection' => array( - 'pretty_version' => '2.7.3-alpha.1713964570', - 'version' => '2.7.3.0-alpha1713964570', - 'reference' => '82570f5e1ced5751d7c077d91f0ce4ab1c65bb67', + 'pretty_version' => '2.7.3-alpha.1713985059', + 'version' => '2.7.3.0-alpha1713985059', + 'reference' => '52fa6059395546c9da51f2061749b6af724cc424', '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.1', 'version' => '2.0.1.0', - 'reference' => 'd41f8d75ea544a9a18c624bdc161f80a9c7d9175', + 'reference' => 'b0e22720072e05042447c31cb049c5901c0d2dba', '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' => '89ceec048726cc2071b2514015770101cd8370e2', + 'reference' => 'b1990b187f4bbadc0cefcb23609282148f5ab2b7', '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.3', 'version' => '0.18.3.0', - 'reference' => 'f791e2318a08cba195b628bf4406fba6c529bf4e', + 'reference' => '4afe17ca1f787bba7c86aae9e506c5e065b4a0ba', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-identity-crisis', 'aliases' => array(), @@ -121,16 +121,16 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.2.2', 'version' => '0.2.2.0', - 'reference' => 'd4f8c469d65497cd0acefa35264f681091b8e2d1', + 'reference' => '26cf11c9f102934f10482e66acbe0a3a77a2e47a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-jitm' => array( - 'pretty_version' => '3.1.7', - 'version' => '3.1.7.0', - 'reference' => '920bf51cb3f0cfd1951323d3c215e5e65eacd2f8', + 'pretty_version' => '3.1.8-alpha.1713985059', + 'version' => '3.1.8.0-alpha1713985059', + 'reference' => 'b9986195d3c687d56f2ddaac1db4543cb6ae6a1f', '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' => '51b6ac74d4c7c40641a40ce8974a607709341e56', + 'reference' => '746248391a61e7d2eb3a95f4645d339bb82191f0', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -148,16 +148,16 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '2.0.2', 'version' => '2.0.2.0', - 'reference' => 'ac93d88932aecd3365d0648341718626d4fd2f04', + 'reference' => 'b017440e7cc89631d691ab38bcdfe84479de54ae', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-my-jetpack' => array( - 'pretty_version' => '4.22.2-alpha.1713900720', - 'version' => '4.22.2.0-alpha1713900720', - 'reference' => '8949a3bfd364a4599ff5f95a9960c98022ec3a5e', + 'pretty_version' => '4.22.2-alpha.1713985059', + 'version' => '4.22.2.0-alpha1713985059', + 'reference' => 'bb0f5bca101adac5cce3489c1cdd9549390e05df', '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' => 'c981cf8f993ea58ab326746cd4e902e6e28c3c06', + 'reference' => '8060855d9f829a95fb2453303135f0ac9c68de01', '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.5', 'version' => '0.4.5.0', - 'reference' => '3796dca0015af7b807e5a23a77d97f7ce99e911e', + 'reference' => '8976df860d484b8bbd8b2d5ed0cd95b7896e7b4b', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.3.4', 'version' => '0.3.4.0', - 'reference' => '9aae72a1dff6e11073ac27b6464f17b63d2fc1d4', + 'reference' => '21fef0e2d2647cf0b76b9fec9d1ea9ff1cfcb3a4', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -193,16 +193,16 @@ 'automattic/jetpack-post-list' => array( 'pretty_version' => '0.6.2', 'version' => '0.6.2.0', - 'reference' => '8a338236076c612021ad658694d3ed33b505f13b', + 'reference' => '07826af234f46893a498b95c4ff76236ab18c39c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-post-list', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-publicize' => array( - 'pretty_version' => '0.42.11', - 'version' => '0.42.11.0', - 'reference' => '2106b010ddd377b7a7562b84aaec786066898c7d', + 'pretty_version' => '0.42.12-alpha.1713985059', + 'version' => '0.42.12.0-alpha1713985059', + 'reference' => '482219d9617d4a11b7c1c50b90d5466814c420ce', '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.1', 'version' => '2.0.1.0', - 'reference' => '5a6cd033b858cafab8f5db9f219d0bf307e87f03', + 'reference' => '11bdc0735dcdafd2e3f46daf8925af492dea2aa8', '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' => '140eb805fde46829e921682cc73b82051a029088', + 'reference' => 'd64953c4f0ac097847f1623d5cf5d316a9288562', '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.0-alpha.1713976135', 'version' => '3.0.0.0-alpha1713976135', - 'reference' => '23981db530016ce28607f65bbf3bd9e0f59ef6ee', + 'reference' => '3c4363a3fba14519aafe40e8a8ddb568140df2e6', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), @@ -247,7 +247,7 @@ 'automattic/jetpack-sync' => array( 'pretty_version' => '2.13.0', 'version' => '2.13.0.0', - 'reference' => '11829e99d6e5a18f026bcd3ea071a26a375a2327', + 'reference' => '24057a72bed30b13f76624eb721cb39edcab8c97', '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 3523fefd2..39819873f 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -123,115 +123,115 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-config/src/class-config.php' ), 'Automattic\\Jetpack\\Connection\\Client' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-client.php' ), 'Automattic\\Jetpack\\Connection\\Connection_Notice' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-connection-notice.php' ), 'Automattic\\Jetpack\\Connection\\Error_Handler' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-error-handler.php' ), 'Automattic\\Jetpack\\Connection\\Initial_State' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-initial-state.php' ), 'Automattic\\Jetpack\\Connection\\Manager' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-manager.php' ), 'Automattic\\Jetpack\\Connection\\Manager_Interface' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/interface-manager.php' ), 'Automattic\\Jetpack\\Connection\\Nonce_Handler' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-nonce-handler.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version.php' ), 'Automattic\\Jetpack\\Connection\\Package_Version_Tracker' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-package-version-tracker.php' ), 'Automattic\\Jetpack\\Connection\\Plugin' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin.php' ), 'Automattic\\Jetpack\\Connection\\Plugin_Storage' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-plugin-storage.php' ), 'Automattic\\Jetpack\\Connection\\REST_Connector' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-connector.php' ), 'Automattic\\Jetpack\\Connection\\Rest_Authentication' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-rest-authentication.php' ), 'Automattic\\Jetpack\\Connection\\SSO' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-sso.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Force_2FA' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-force-2fa.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Helpers' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-helpers.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\Notices' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-notices.php' ), 'Automattic\\Jetpack\\Connection\\SSO\\User_Admin' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/sso/class-user-admin.php' ), 'Automattic\\Jetpack\\Connection\\Secrets' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-secrets.php' ), 'Automattic\\Jetpack\\Connection\\Server_Sandbox' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-server-sandbox.php' ), 'Automattic\\Jetpack\\Connection\\Tokens' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens.php' ), 'Automattic\\Jetpack\\Connection\\Tokens_Locks' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tokens-locks.php' ), 'Automattic\\Jetpack\\Connection\\Urls' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-urls.php' ), 'Automattic\\Jetpack\\Connection\\Utils' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-utils.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-webhooks.php' ), 'Automattic\\Jetpack\\Connection\\Webhooks\\Authorize_Redirect' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/webhooks/class-authorize-redirect.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Async_Call' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-async-call.php' ), 'Automattic\\Jetpack\\Connection\\XMLRPC_Connector' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-xmlrpc-connector.php' ), 'Automattic\\Jetpack\\Constants' => array( @@ -263,7 +263,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-files.php' ), 'Automattic\\Jetpack\\Heartbeat' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-heartbeat.php' ), 'Automattic\\Jetpack\\IP\\Utils' => array( @@ -291,19 +291,19 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-identity-crisis/src/class-identity-crisis.php' ), 'Automattic\\Jetpack\\JITMS\\JITM' => array( - 'version' => '3.1.7.0', + 'version' => '3.1.8.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-jitm/src/class-jitm.php' ), 'Automattic\\Jetpack\\JITMS\\Post_Connection_JITM' => array( - 'version' => '3.1.7.0', + 'version' => '3.1.8.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-jitm/src/class-post-connection-jitm.php' ), 'Automattic\\Jetpack\\JITMS\\Pre_Connection_JITM' => array( - 'version' => '3.1.7.0', + 'version' => '3.1.8.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-jitm/src/class-pre-connection-jitm.php' ), 'Automattic\\Jetpack\\JITMS\\Rest_Api_Endpoints' => array( - 'version' => '3.1.7.0', + 'version' => '3.1.8.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-jitm/src/class-rest-api-endpoints.php' ), 'Automattic\\Jetpack\\Licensing' => array( @@ -319,127 +319,127 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-modules.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Activitylog' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-activitylog.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Hybrid_Product' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-hybrid-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Initializer' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-initializer.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Jetpack_Manage' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-jetpack-manage.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Module_Product' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-module-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Product' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-product.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Anti_Spam' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-anti-spam.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Backup' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-backup.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Boost' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-boost.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Creator' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-creator.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Crm' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-crm.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Extras' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-extras.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Jetpack_Ai' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-jetpack-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Protect' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-protect.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Scan' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-scan.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Search_Stats' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-search-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Security' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-security.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Social' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-social.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Starter' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-starter.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Stats' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-stats.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Products\\Videopress' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/products/class-videopress.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_AI' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-ai.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Product_Data' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-product-data.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Products' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-products.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Purchases' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-purchases.php' ), 'Automattic\\Jetpack\\My_Jetpack\\REST_Zendesk_Chat' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-rest-zendesk-chat.php' ), 'Automattic\\Jetpack\\My_Jetpack\\Wpcom_Products' => array( - 'version' => '4.22.2.0-alpha1713900720', + 'version' => '4.22.2.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-my-jetpack/src/class-wpcom-products.php' ), 'Automattic\\Jetpack\\Partner' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner.php' ), 'Automattic\\Jetpack\\Partner_Coupon' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-partner-coupon.php' ), 'Automattic\\Jetpack\\Password_Checker' => array( @@ -467,75 +467,75 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-post-list/src/class-post-thumbnail.php' ), 'Automattic\\Jetpack\\Publicize\\Auto_Conversion\\REST_Settings_Controller' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/auto-conversion-settings/class-rest-settings-controller.php' ), 'Automattic\\Jetpack\\Publicize\\Auto_Conversion\\Settings' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/auto-conversion-settings/class-settings.php' ), 'Automattic\\Jetpack\\Publicize\\Connections_Post_Field' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-connections-post-field.php' ), 'Automattic\\Jetpack\\Publicize\\Jetpack_Social_Settings\\Dismissed_Notices' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/jetpack-social-settings/class-dismissed-notices.php' ), 'Automattic\\Jetpack\\Publicize\\Jetpack_Social_Settings\\Settings' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/jetpack-social-settings/class-settings.php' ), 'Automattic\\Jetpack\\Publicize\\Keyring_Helper' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-keyring-helper.php' ), 'Automattic\\Jetpack\\Publicize\\Publicize' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-publicize.php' ), 'Automattic\\Jetpack\\Publicize\\Publicize_Base' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-publicize-base.php' ), 'Automattic\\Jetpack\\Publicize\\Publicize_Setup' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-publicize-setup.php' ), 'Automattic\\Jetpack\\Publicize\\Publicize_UI' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-publicize-ui.php' ), 'Automattic\\Jetpack\\Publicize\\REST_Controller' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-rest-controller.php' ), 'Automattic\\Jetpack\\Publicize\\Share_Limits' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/class-share-limits.php' ), 'Automattic\\Jetpack\\Publicize\\Social_Image_Generator\\Post_Settings' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/class-post-settings.php' ), 'Automattic\\Jetpack\\Publicize\\Social_Image_Generator\\REST_Settings_Controller' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/class-rest-settings-controller.php' ), 'Automattic\\Jetpack\\Publicize\\Social_Image_Generator\\REST_Token_Controller' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/class-rest-token-controller.php' ), 'Automattic\\Jetpack\\Publicize\\Social_Image_Generator\\Settings' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/class-settings.php' ), 'Automattic\\Jetpack\\Publicize\\Social_Image_Generator\\Setup' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/class-setup.php' ), 'Automattic\\Jetpack\\Publicize\\Social_Image_Generator\\Templates' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/class-templates.php' ), 'Automattic\\Jetpack\\Redirect' => array( @@ -803,11 +803,11 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-terms-of-service.php' ), 'Automattic\\Jetpack\\Tracking' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/src/class-tracking.php' ), 'Container' => array( @@ -819,19 +819,19 @@ 'path' => $vendorDir . '/automattic/jetpack-autoloader/src/class-hook-manager.php' ), 'Jetpack_IXR_Client' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-client.php' ), 'Jetpack_IXR_ClientMulticall' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-ixr-clientmulticall.php' ), 'Jetpack_Options' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-options.php' ), 'Jetpack_Signature' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-signature.php' ), 'Jetpack_Social' => array( @@ -839,15 +839,15 @@ 'path' => $baseDir . '/src/class-jetpack-social.php' ), 'Jetpack_Tracks_Client' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-client.php' ), 'Jetpack_Tracks_Event' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-tracks-event.php' ), 'Jetpack_XMLRPC_Server' => array( - 'version' => '2.7.3.0-alpha1713964570', + 'version' => '2.7.3.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-connection/legacy/class-jetpack-xmlrpc-server.php' ), 'Latest_Autoloader_Guard' => array( diff --git a/vendor/composer/jetpack_autoload_filemap.php b/vendor/composer/jetpack_autoload_filemap.php index a6dc26819..029d8fb77 100644 --- a/vendor/composer/jetpack_autoload_filemap.php +++ b/vendor/composer/jetpack_autoload_filemap.php @@ -11,7 +11,7 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-assets/actions.php' ), 'e6f7f640a6586216432b53e5c9d1b472' => array( - 'version' => '0.42.11.0', + 'version' => '0.42.12.0-alpha1713985059', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-publicize/src/social-image-generator/utilities.php' ), '3d6facae188ac62d1f8a943582feb57b' => array(