diff --git a/CHANGELOG.md b/CHANGELOG.md index 563b791ca8..253513ef0d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ This is an alpha version! The changes listed here are not final. ### Other changes - Block nudges: ensure clicking on a banner button leads to Plans page in Safari. - Embeds: fix the Descript block variation icon svg path. +- Full Sync: Added context - Hide related posts options for block themes - Moved WPCOM_REST_API_Proxy_Request trait to the connection package - SIG: Changed description for togle diff --git a/_inc/class.jetpack-provision.php b/_inc/class.jetpack-provision.php index 229e5df874..fff5ce3cba 100644 --- a/_inc/class.jetpack-provision.php +++ b/_inc/class.jetpack-provision.php @@ -46,7 +46,7 @@ function () use ( $url_arg, $named_args ) { // If Jetpack is currently connected, and is not in Safe Mode already, kick off a sync of the current // functions/callables so that we can test if this site is in IDC. if ( Jetpack::is_connection_ready() && ! Identity_Crisis::validate_sync_error_idc_option() && Actions::sync_allowed() ) { - Actions::do_full_sync( array( 'functions' => true ) ); + Actions::do_full_sync( array( 'functions' => true ), 'provision' ); Actions::$sender->do_full_sync(); } diff --git a/class.jetpack-cli.php b/class.jetpack-cli.php index d0b9c5990c..2d1f1ee55f 100644 --- a/class.jetpack-cli.php +++ b/class.jetpack-cli.php @@ -1036,7 +1036,7 @@ public function sync( $args, $assoc_args ) { } // Kick off a full sync. - if ( Actions::do_full_sync( $modules ) ) { + if ( Actions::do_full_sync( $modules, 'jetpack_cli' ) ) { if ( $modules ) { /* translators: %s is a comma separated list of Jetpack modules */ WP_CLI::log( sprintf( __( 'Initialized a new full sync with modules: %s', 'jetpack' ), implode( ', ', array_keys( $modules ) ) ) ); diff --git a/composer.json b/composer.json index 2214cc08a0..ac9bb476ae 100644 --- a/composer.json +++ b/composer.json @@ -45,7 +45,7 @@ "automattic/jetpack-stats": "^0.15.0", "automattic/jetpack-stats-admin": "^0.24.0", "automattic/jetpack-status": "^5.0.1", - "automattic/jetpack-sync": "^4.3.0", + "automattic/jetpack-sync": "^4.4.0-alpha", "automattic/jetpack-videopress": "^0.25.6", "automattic/jetpack-waf": "^0.23.1", "automattic/jetpack-wordads": "^0.4.5", diff --git a/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md index 35e317486a..fd8e23f166 100644 --- a/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-sync/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). +## [4.4.0-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + +### Added +- Full Sync: Added context + ## [4.3.0] - 2025-01-09 ### Added - Instant Search: add taxonomies for a8c-support-theme kb_article cpt. [#38660] @@ -1367,6 +1374,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages: Move sync to a classmapped package +[4.4.0-alpha]: https://github.com/Automattic/jetpack-sync/compare/v4.3.0...v4.4.0-alpha [4.3.0]: https://github.com/Automattic/jetpack-sync/compare/v4.2.0...v4.3.0 [4.2.0]: https://github.com/Automattic/jetpack-sync/compare/v4.1.1...v4.2.0 [4.1.1]: https://github.com/Automattic/jetpack-sync/compare/v4.1.0...v4.1.1 diff --git a/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php b/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php index fb09385827..380e066afa 100644 --- a/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php +++ b/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php @@ -608,7 +608,7 @@ public static function do_initial_sync() { 'network_options' => true, ); - self::do_full_sync( $initial_sync_config ); + self::do_full_sync( $initial_sync_config, 'initial_sync' ); } /** @@ -633,9 +633,10 @@ public static function do_only_first_initial_sync() { * @static * * @param array $modules The sync modules should be included in this full sync. All will be included if null. + * @param mixed $context The context where the full sync was initiated from. * @return bool True if full sync was successfully started. */ - public static function do_full_sync( $modules = null ) { + public static function do_full_sync( $modules = null, $context = null ) { if ( ! self::sync_allowed() ) { return false; } @@ -649,7 +650,7 @@ public static function do_full_sync( $modules = null ) { self::initialize_listener(); - $full_sync_module->start( $modules ); + $full_sync_module->start( $modules, $context ); return true; } diff --git a/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php b/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php index 3d9b7ffd3a..52f26cdbf7 100644 --- a/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php +++ b/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '4.3.0'; + const PACKAGE_VERSION = '4.4.0-alpha'; const PACKAGE_SLUG = 'sync'; diff --git a/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php b/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php index 22261e9661..3371f79719 100644 --- a/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php +++ b/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php @@ -58,6 +58,11 @@ public static function initialize_rest_api() { 'type' => 'array', 'required' => false, ), + 'context' => array( + 'description' => __( 'Context for the Full Sync', 'jetpack-sync' ), + 'type' => 'string', + 'required' => false, + ), ), ) ); @@ -363,9 +368,11 @@ public static function full_sync_start( $request ) { $modules = null; } + $context = $request->get_param( 'context' ); + return rest_ensure_response( array( - 'scheduled' => Actions::do_full_sync( $modules ), + 'scheduled' => Actions::do_full_sync( $modules, $context ), ) ); } diff --git a/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php b/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php index 38a8c46dc4..7aa5b5503e 100644 --- a/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php +++ b/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php @@ -60,10 +60,11 @@ public function init_full_sync_listeners( $callable ) { // phpcs:ignore Variable * @access public * * @param array $full_sync_config Full sync configuration. + * @param mixed $context The context where the full sync was initiated from. * * @return bool Always returns true at success. */ - public function start( $full_sync_config = null ) { + public function start( $full_sync_config = null, $context = null ) { // There was a full sync in progress. if ( $this->is_started() && ! $this->is_finished() ) { /** @@ -114,15 +115,15 @@ public function start( $full_sync_config = null ) { * * @param array $full_sync_config Sync configuration for all sync modules. * @param array $range Range of the sync items, containing min and max IDs for some item types. - * @param array $empty The modules with no items to sync during a full sync. + * @param mixed $context The context where the full sync was initiated from. * * @since 1.6.3 * @since-jetpack 4.2.0 * @since-jetpack 7.3.0 Added $range arg. - * @since-jetpack 7.4.0 Added $empty arg. + * @since 4.4.0-alpha Added $context arg. */ do_action( 'jetpack_full_sync_start', $full_sync_config, $range ); - $this->send_action( 'jetpack_full_sync_start', array( $full_sync_config, $range ) ); + $this->send_action( 'jetpack_full_sync_start', array( $full_sync_config, $range, $context ) ); return true; } diff --git a/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php b/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php index c7b5501dd1..64ef388be6 100644 --- a/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php +++ b/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php @@ -80,9 +80,10 @@ public function init_before_send() { * @access public * * @param array $module_configs Full sync configuration for all sync modules. + * @param mixed $context Context for the full sync. * @return bool Always returns true at success. */ - public function start( $module_configs = null ) { + public function start( $module_configs = null, $context = null ) { // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable $was_already_running = $this->is_started() && ! $this->is_finished(); // Remove all evidence of previous full sync items and status. diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index 5f1b792574..24b78ad12c 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -118,7 +118,7 @@ ), 'jetpack-sync' => array( 'path' => 'jetpack_vendor/automattic/jetpack-sync', - 'ver' => '4.3.0', + 'ver' => '4.4.0-alpha1737018235', ), 'jetpack-videopress-pkg' => array( 'path' => 'jetpack_vendor/automattic/jetpack-videopress', diff --git a/json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php b/json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php index bf2704a618..895f5a6b5d 100644 --- a/json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php +++ b/json-endpoints/jetpack/class.jetpack-json-api-sync-endpoint.php @@ -68,7 +68,7 @@ protected function result() { if ( empty( $modules ) ) { $modules = null; } - return array( 'scheduled' => Actions::do_full_sync( $modules ) ); + return array( 'scheduled' => Actions::do_full_sync( $modules, 'jetpack_json_api_sync_endpoint' ) ); } /** diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 2c46639a0c..71755a6b04 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": "aa561d5ef2aa2b98c0b2880cf499817f74a5d4fd" + "reference": "9c4ce3fbb1bcc2afcc6108e9098d25cd272888c1" }, "require": { "php": ">=7.2" @@ -63,7 +63,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "5280152202b6a671dc5aab34f349a569e78b91c9" + "reference": "5b2321d2707cb71d115c3eac24c10b08379ec9ce" }, "require": { "php": ">=7.2" @@ -131,7 +131,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "a07464eb9b57c8cb9a0e681d7dae97e28d43edf7" + "reference": "18404f88096433bfe6bd4489c98787342cba84cf" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -203,7 +203,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "1881f80e55bbde400431f05e18f884df46a63b94" + "reference": "d107f72ece9a70b976ce853c10971531917e2e2a" }, "require": { "composer-plugin-api": "^2.2", @@ -274,7 +274,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-backup", - "reference": "2ce8fac5e30bc5042dfa7fe5b22ecdce15972c31" + "reference": "535423d0419c2f2e8c66b8c398d718122ac07cd0" }, "require": { "automattic/jetpack-admin-ui": "^0.5.1", @@ -286,7 +286,7 @@ "automattic/jetpack-connection": "^6.3.0-alpha", "automattic/jetpack-my-jetpack": "^5.3.3-alpha", "automattic/jetpack-status": "^5.0.1", - "automattic/jetpack-sync": "^4.3.0", + "automattic/jetpack-sync": "^4.4.0-alpha", "php": ">=7.2" }, "require-dev": { @@ -367,7 +367,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-backup-helper-script-manager", - "reference": "c498a9b76d412e7ed45c8a944a9e39145ec55048" + "reference": "a4d636e22f374bed8064d95db098d6dd20d62228" }, "require": { "php": ">=7.2" @@ -430,7 +430,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-blaze", - "reference": "6cb7c594531f8beb0c4a06a95a2f1864b2cd9561" + "reference": "3006e67ecb9e579fcc4f0ad1a5da29e11e5376a0" }, "require": { "automattic/jetpack-assets": "^4.0.2", @@ -439,7 +439,7 @@ "automattic/jetpack-plans": "^0.5.1", "automattic/jetpack-redirect": "^3.0.1", "automattic/jetpack-status": "^5.0.1", - "automattic/jetpack-sync": "^4.3.0", + "automattic/jetpack-sync": "^4.4.0-alpha", "php": ">=7.2" }, "require-dev": { @@ -514,7 +514,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-blocks", - "reference": "a79f4b9eceee0cd19715f87b3a0a178f742692be" + "reference": "3e923d4a8d98bcb8f147b29c6b940e0f2f99830c" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -579,7 +579,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-core", - "reference": "099fc09348a22921fefba2ada3f65db24cb17248" + "reference": "aab2b5eccfb2531fc4ef42330c4a068192f45db2" }, "require": { "automattic/jetpack-connection": "^6.3.0-alpha", @@ -650,7 +650,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-speed-score", - "reference": "5134781a6e29f72e462a87b1feaa6294233bae9d" + "reference": "ac2119c8252356fc8b7f43fda2798253cb21da58" }, "require": { "automattic/jetpack-boost-core": "^0.3.3", @@ -729,7 +729,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-classic-theme-helper", - "reference": "93810e9a6122711cc5d126b4cc42b4b220376a0e" + "reference": "6631a019ab3c83973f239f434c378fbd98b78830" }, "require": { "automattic/jetpack-assets": "^4.0.2", @@ -803,7 +803,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-compat", - "reference": "7d734b6e98d085132dc781cc1543502c3226579e" + "reference": "c5101668a6d68322f6225ad44c21090395818e3c" }, "require": { "php": ">=7.2" @@ -843,7 +843,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "a33521d8bf8e729f12db2551b90b19e9ef26c385" + "reference": "94d6864b535737494c21417e59d19577121a3b0c" }, "require": { "composer-plugin-api": "^2.2", @@ -906,7 +906,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "9553a4a2abd9aad11a0e7edbec2ce8b356e3790d" + "reference": "a7dee35c0b03e6af97c980ae9297debf40f773c1" }, "require": { "php": ">=7.2" @@ -981,7 +981,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "74b0341e9e0f1254a19c92ff9bc29a8b47b4188f" + "reference": "2833eb28f8463fb0f308d84584ca11c728f9cff8" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -1074,7 +1074,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "fba524c6ed5fd76bdaf1145f68dbfbb5283039cd" + "reference": "f202613e646782841d27e36e53a9b484f7d55973" }, "require": { "php": ">=7.2" @@ -1131,7 +1131,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "1dea20140b7a1630aa28cde911af57eab9194961" + "reference": "3fc13b4d4ddfc7b258063930ca002cc71400c96a" }, "require": { "php": ">=7.2" @@ -1187,7 +1187,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-error", - "reference": "01e807c86b66fc2518faaf447282c2dddd731dbd" + "reference": "aef9dcf485ac9643030d6d1efbea8c2199f19b6b" }, "require": { "php": ">=7.2" @@ -1243,7 +1243,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-explat", - "reference": "aa6623f75c4f353a0cc2790c0a6084aace184844" + "reference": "72702cd4e037a5d664f8c243c8648c51e040dcda" }, "require": { "automattic/jetpack-connection": "^6.3.0-alpha", @@ -1321,7 +1321,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-forms", - "reference": "7753c8faa708158bec03e47810003fac5c435235" + "reference": "0e81b4d29a50da015726ed4fa9391150f491236f" }, "require": { "automattic/jetpack-assets": "^4.0.2", @@ -1329,7 +1329,7 @@ "automattic/jetpack-connection": "^6.3.0-alpha", "automattic/jetpack-logo": "^3.0.0", "automattic/jetpack-status": "^5.0.1", - "automattic/jetpack-sync": "^4.3.0", + "automattic/jetpack-sync": "^4.4.0-alpha", "php": ">=7.2" }, "require-dev": { @@ -1408,7 +1408,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-image-cdn", - "reference": "5c1e786758a6e5b6a09d9ec27532db3ea63e4e56" + "reference": "fb65000412293957fa5f17a492e97a9813ec70e9" }, "require": { "automattic/jetpack-assets": "^4.0.2", @@ -1477,11 +1477,11 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-import", - "reference": "b4a7cce116b0aeb7a64ea7125bebb704817e317b" + "reference": "725da497b38da4566be3ad44d28e1d3bc044cb13" }, "require": { "automattic/jetpack-connection": "^6.3.0-alpha", - "automattic/jetpack-sync": "^4.3.0", + "automattic/jetpack-sync": "^4.4.0-alpha", "php": ">=7.2" }, "require-dev": { @@ -1552,7 +1552,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "1a6e87944a97fe89cde119f139308e62864d8be1" + "reference": "a908ea64a2e3ba3a8852d5add0ccce303a3e92e5" }, "require": { "php": ">=7.2" @@ -1613,7 +1613,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "1ae31d402cf1ed6acf7572ece5db8ab075c18909" + "reference": "353a38e420137ca51cabc18074f90202fac84354" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -1691,7 +1691,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "ab4b1c85ef6029c976220e3117266e75ba77073c" + "reference": "a2007e1704ae419c430989da0c8257cbe9ec03aa" }, "require": { "automattic/jetpack-connection": "^6.3.0-alpha", @@ -1756,7 +1756,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "7ece7fb0e38f692303c562750ba2234d32b914e0" + "reference": "e9a7240146a9ae4b3fdd615ee35c5329254bc300" }, "require": { "php": ">=7.2" @@ -1812,7 +1812,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-masterbar", - "reference": "8ba28cd865a70dcef9ca72cc6d080e463d62dcbf" + "reference": "07c5f938886de205ac9e0b387faba60ba9f06791" }, "require": { "automattic/jetpack-assets": "^4.0.2", @@ -1907,7 +1907,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "98ddb798c03d6fa6460a8fab87b7eef1d9aafbfc" + "reference": "b28ff628c3e2c67576dd6f2ea6b43dcb7773ca23" }, "require": { "automattic/jetpack-admin-ui": "^0.5.1", @@ -1923,7 +1923,7 @@ "automattic/jetpack-protect-status": "^0.4.1", "automattic/jetpack-redirect": "^3.0.1", "automattic/jetpack-status": "^5.0.1", - "automattic/jetpack-sync": "^4.3.0", + "automattic/jetpack-sync": "^4.4.0-alpha", "php": ">=7.2" }, "require-dev": { @@ -2012,7 +2012,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "cbf43a18e34a7bf0a4b40cb01c457d1f64dcedbb" + "reference": "ff66775f3d355d72353fd7a3eaf3839f4243335e" }, "require": { "php": ">=7.2" @@ -2076,7 +2076,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "9031f2f783fc8d07cfe6eb85166f506dd4b789bc" + "reference": "777a045cc8c78692b72671bd4c71dcd5a6dc747d" }, "require": { "automattic/jetpack-connection": "^6.3.0-alpha", @@ -2147,7 +2147,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "8e61921bc3ed0798a5112f157fb8f5483f6a2fb2" + "reference": "dddaa5b87898358091323f684931df28ab55c973" }, "require": { "automattic/jetpack-a8c-mc-stats": "^3.0.0", @@ -2206,7 +2206,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-post-list", - "reference": "983e0c998e7c76c5235ba98a9226e162bc745264" + "reference": "5b397256cdf01c669f3f5c003f51035189b11184" }, "require": { "automattic/jetpack-assets": "^4.0.2", @@ -2274,7 +2274,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-models", - "reference": "9ab51bc6939a114bc321b9c324943be6e09a7a8a" + "reference": "4523ab1058fa3491afbf7f464c119d33f48181c1" }, "require": { "php": ">=7.2" @@ -2347,14 +2347,14 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-status", - "reference": "ffe4ccb5a21e83b07e6ed6cfa46f329373b77b66" + "reference": "893a647f3b2b61956b33fc45121c697063eb377d" }, "require": { "automattic/jetpack-connection": "^6.3.0-alpha", "automattic/jetpack-plans": "^0.5.1", "automattic/jetpack-plugins-installer": "^0.5.0", "automattic/jetpack-protect-models": "^0.4.1", - "automattic/jetpack-sync": "^4.3.0", + "automattic/jetpack-sync": "^4.4.0-alpha", "php": ">=7.2" }, "require-dev": { @@ -2425,7 +2425,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-publicize", - "reference": "21cd8187063df1852560deb2ef3dac8d4497a206" + "reference": "bc8b627de06bff19be1732929e5156c109c4f94f" }, "require": { "automattic/jetpack-assets": "^4.0.2", @@ -2510,7 +2510,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "93f4fe934b61ec27a2b6e1dba50e95e6a8133d69" + "reference": "afbbd6c88cda3b1eb07ed490f87c2d99bdf7e5f7" }, "require": { "automattic/jetpack-status": "^5.0.1", @@ -2568,7 +2568,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "04023657dd8f9f59e905946fa9be4a04ed4b3d64" + "reference": "eacf8bf3c639c75614f5d630f3693d12e5412fc3" }, "require": { "php": ">=7.2" @@ -2625,7 +2625,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-search", - "reference": "a3aea91dc4d37c10fbb2ea0a222fe98d83392128" + "reference": "58ba54c781a67e9fa9acdc2085e7e0e7be7a0354" }, "require": { "automattic/jetpack-assets": "^4.0.2", @@ -2634,7 +2634,7 @@ "automattic/jetpack-constants": "^3.0.1", "automattic/jetpack-my-jetpack": "^5.3.3-alpha", "automattic/jetpack-status": "^5.0.1", - "automattic/jetpack-sync": "^4.3.0", + "automattic/jetpack-sync": "^4.4.0-alpha", "php": ">=7.2" }, "require-dev": { @@ -2716,7 +2716,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-stats", - "reference": "ca4ef998725633af52f194e3f6c5d7547074575f" + "reference": "9e5eac44a82a0493c5b289a97896a71d79aba63c" }, "require": { "automattic/jetpack-connection": "^6.3.0-alpha", @@ -2786,7 +2786,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-stats-admin", - "reference": "194dceebc8859b8c99d0fe947becbbd6f8048d96" + "reference": "1aa130dbe930a9081c4d5470cbcf75456fb06579" }, "require": { "automattic/jetpack-connection": "^6.3.0-alpha", @@ -2862,7 +2862,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "ae0f3bea59354e44ed1e4362bb73b85a6b4e3866" + "reference": "a6f22cbf84e43bd0754e05a175e7db95a83efca9" }, "require": { "automattic/jetpack-constants": "^3.0.1", @@ -2924,12 +2924,12 @@ }, { "name": "automattic/jetpack-sync", - "version": "4.3.0", - "version_normalized": "4.3.0.0", + "version": "4.4.0-alpha.1737018235", + "version_normalized": "4.4.0.0-alpha1737018235", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "6e0c3424f016e1302c594125716254d6e0146aa3" + "reference": "e9fcf5901f53b04e7ef91fe9a8033b6bb104f1cb" }, "require": { "automattic/jetpack-connection": "^6.3.0-alpha", @@ -2962,7 +2962,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "4.3.x-dev" + "dev-trunk": "4.4.x-dev" }, "dependencies": { "test-only": [ @@ -3010,7 +3010,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-videopress", - "reference": "4f1782fd946d12c3546ea3ec9a6a4de3011ca5a2" + "reference": "f0b32ceb95939a60e37934fddb68bb5836e363e8" }, "require": { "automattic/jetpack-admin-ui": "^0.5.1", @@ -3096,7 +3096,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-waf", - "reference": "cd4de984f7afd07d0d5210b22190def3f0acb77d" + "reference": "9041dc86469ef794726b314268a37ed4a9028b11" }, "require": { "automattic/jetpack-connection": "^6.3.0-alpha", @@ -3173,7 +3173,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-wordads", - "reference": "6ff1be92046e572d910c5dae420b9e10f2b7e976" + "reference": "cbe83ada3f3cd7666a317a596ad2e79fbe65c89d" }, "require": { "automattic/jetpack-assets": "^4.0.2", @@ -3255,7 +3255,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/woocommerce-analytics", - "reference": "13b1d7170967302cf40b6406e1dfde85b26686f1" + "reference": "5cd2397ccb5790e67c8d1eaa04d2643259a70c2e" }, "require": { "automattic/jetpack-connection": "^6.3.0-alpha", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index d378867252..d84b781a9b 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -22,7 +22,7 @@ 'automattic/jetpack-a8c-mc-stats' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => 'aa561d5ef2aa2b98c0b2880cf499817f74a5d4fd', + 'reference' => '9c4ce3fbb1bcc2afcc6108e9098d25cd272888c1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-a8c-mc-stats', 'aliases' => array(), @@ -31,7 +31,7 @@ 'automattic/jetpack-admin-ui' => array( 'pretty_version' => '0.5.1', 'version' => '0.5.1.0', - 'reference' => '5280152202b6a671dc5aab34f349a569e78b91c9', + 'reference' => '5b2321d2707cb71d115c3eac24c10b08379ec9ce', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-assets' => array( 'pretty_version' => '4.0.2', 'version' => '4.0.2.0', - 'reference' => 'a07464eb9b57c8cb9a0e681d7dae97e28d43edf7', + 'reference' => '18404f88096433bfe6bd4489c98787342cba84cf', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '5.0.0', 'version' => '5.0.0.0', - 'reference' => '1881f80e55bbde400431f05e18f884df46a63b94', + 'reference' => 'd107f72ece9a70b976ce853c10971531917e2e2a', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -58,7 +58,7 @@ 'automattic/jetpack-backup' => array( 'pretty_version' => '4.0.6', 'version' => '4.0.6.0', - 'reference' => '2ce8fac5e30bc5042dfa7fe5b22ecdce15972c31', + 'reference' => '535423d0419c2f2e8c66b8c398d718122ac07cd0', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-backup', 'aliases' => array(), @@ -67,7 +67,7 @@ 'automattic/jetpack-backup-helper-script-manager' => array( 'pretty_version' => '0.3.1', 'version' => '0.3.1.0', - 'reference' => 'c498a9b76d412e7ed45c8a944a9e39145ec55048', + 'reference' => 'a4d636e22f374bed8064d95db098d6dd20d62228', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-backup-helper-script-manager', 'aliases' => array(), @@ -76,7 +76,7 @@ 'automattic/jetpack-blaze' => array( 'pretty_version' => '0.25.5', 'version' => '0.25.5.0', - 'reference' => '6cb7c594531f8beb0c4a06a95a2f1864b2cd9561', + 'reference' => '3006e67ecb9e579fcc4f0ad1a5da29e11e5376a0', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-blaze', 'aliases' => array(), @@ -85,7 +85,7 @@ 'automattic/jetpack-blocks' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => 'a79f4b9eceee0cd19715f87b3a0a178f742692be', + 'reference' => '3e923d4a8d98bcb8f147b29c6b940e0f2f99830c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-blocks', 'aliases' => array(), @@ -94,7 +94,7 @@ 'automattic/jetpack-boost-core' => array( 'pretty_version' => '0.3.3', 'version' => '0.3.3.0', - 'reference' => '099fc09348a22921fefba2ada3f65db24cb17248', + 'reference' => 'aab2b5eccfb2531fc4ef42330c4a068192f45db2', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-core', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-boost-speed-score' => array( 'pretty_version' => '0.4.0', 'version' => '0.4.0.0', - 'reference' => '5134781a6e29f72e462a87b1feaa6294233bae9d', + 'reference' => 'ac2119c8252356fc8b7f43fda2798253cb21da58', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-speed-score', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-classic-theme-helper' => array( 'pretty_version' => '0.9.0', 'version' => '0.9.0.0', - 'reference' => '93810e9a6122711cc5d126b4cc42b4b220376a0e', + 'reference' => '6631a019ab3c83973f239f434c378fbd98b78830', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-classic-theme-helper', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-compat' => array( 'pretty_version' => '4.0.0', 'version' => '4.0.0.0', - 'reference' => '7d734b6e98d085132dc781cc1543502c3226579e', + 'reference' => 'c5101668a6d68322f6225ad44c21090395818e3c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-compat', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '4.0.0', 'version' => '4.0.0.0', - 'reference' => 'a33521d8bf8e729f12db2551b90b19e9ef26c385', + 'reference' => '94d6864b535737494c21417e59d19577121a3b0c', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -139,7 +139,7 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '9553a4a2abd9aad11a0e7edbec2ce8b356e3790d', + 'reference' => 'a7dee35c0b03e6af97c980ae9297debf40f773c1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), @@ -148,7 +148,7 @@ 'automattic/jetpack-connection' => array( 'pretty_version' => '6.3.0-alpha.1736931456', 'version' => '6.3.0.0-alpha1736931456', - 'reference' => '74b0341e9e0f1254a19c92ff9bc29a8b47b4188f', + 'reference' => '2833eb28f8463fb0f308d84584ca11c728f9cff8', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -157,7 +157,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => 'fba524c6ed5fd76bdaf1145f68dbfbb5283039cd', + 'reference' => 'f202613e646782841d27e36e53a9b484f7d55973', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -166,7 +166,7 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '1dea20140b7a1630aa28cde911af57eab9194961', + 'reference' => '3fc13b4d4ddfc7b258063930ca002cc71400c96a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), @@ -175,7 +175,7 @@ 'automattic/jetpack-error' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '01e807c86b66fc2518faaf447282c2dddd731dbd', + 'reference' => 'aef9dcf485ac9643030d6d1efbea8c2199f19b6b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-error', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-explat' => array( 'pretty_version' => '0.2.3', 'version' => '0.2.3.0', - 'reference' => 'aa6623f75c4f353a0cc2790c0a6084aace184844', + 'reference' => '72702cd4e037a5d664f8c243c8648c51e040dcda', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-explat', 'aliases' => array(), @@ -193,7 +193,7 @@ 'automattic/jetpack-forms' => array( 'pretty_version' => '0.35.0-alpha.1736949281', 'version' => '0.35.0.0-alpha1736949281', - 'reference' => '7753c8faa708158bec03e47810003fac5c435235', + 'reference' => '0e81b4d29a50da015726ed4fa9391150f491236f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-forms', 'aliases' => array(), @@ -202,7 +202,7 @@ 'automattic/jetpack-image-cdn' => array( 'pretty_version' => '0.7.3-alpha.1736846993', 'version' => '0.7.3.0-alpha1736846993', - 'reference' => '5c1e786758a6e5b6a09d9ec27532db3ea63e4e56', + 'reference' => 'fb65000412293957fa5f17a492e97a9813ec70e9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-image-cdn', 'aliases' => array(), @@ -211,7 +211,7 @@ 'automattic/jetpack-import' => array( 'pretty_version' => '0.9.2', 'version' => '0.9.2.0', - 'reference' => 'b4a7cce116b0aeb7a64ea7125bebb704817e317b', + 'reference' => '725da497b38da4566be3ad44d28e1d3bc044cb13', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-import', 'aliases' => array(), @@ -220,7 +220,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.4.1', 'version' => '0.4.1.0', - 'reference' => '1a6e87944a97fe89cde119f139308e62864d8be1', + 'reference' => 'a908ea64a2e3ba3a8852d5add0ccce303a3e92e5', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -229,7 +229,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '4.0.3', 'version' => '4.0.3.0', - 'reference' => '1ae31d402cf1ed6acf7572ece5db8ab075c18909', + 'reference' => '353a38e420137ca51cabc18074f90202fac84354', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -238,7 +238,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '3.0.2', 'version' => '3.0.2.0', - 'reference' => 'ab4b1c85ef6029c976220e3117266e75ba77073c', + 'reference' => 'a2007e1704ae419c430989da0c8257cbe9ec03aa', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -247,7 +247,7 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '3.0.0', 'version' => '3.0.0.0', - 'reference' => '7ece7fb0e38f692303c562750ba2234d32b914e0', + 'reference' => 'e9a7240146a9ae4b3fdd615ee35c5329254bc300', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), @@ -256,7 +256,7 @@ 'automattic/jetpack-masterbar' => array( 'pretty_version' => '0.11.0-alpha.1736945228', 'version' => '0.11.0.0-alpha1736945228', - 'reference' => '8ba28cd865a70dcef9ca72cc6d080e463d62dcbf', + 'reference' => '07c5f938886de205ac9e0b387faba60ba9f06791', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-masterbar', 'aliases' => array(), @@ -265,7 +265,7 @@ 'automattic/jetpack-my-jetpack' => array( 'pretty_version' => '5.3.3-alpha.1736969905', 'version' => '5.3.3.0-alpha1736969905', - 'reference' => '98ddb798c03d6fa6460a8fab87b7eef1d9aafbfc', + 'reference' => 'b28ff628c3e2c67576dd6f2ea6b43dcb7773ca23', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -274,7 +274,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.4.1', 'version' => '0.4.1.0', - 'reference' => 'cbf43a18e34a7bf0a4b40cb01c457d1f64dcedbb', + 'reference' => 'ff66775f3d355d72353fd7a3eaf3839f4243335e', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -283,7 +283,7 @@ 'automattic/jetpack-plans' => array( 'pretty_version' => '0.5.1', 'version' => '0.5.1.0', - 'reference' => '9031f2f783fc8d07cfe6eb85166f506dd4b789bc', + 'reference' => '777a045cc8c78692b72671bd4c71dcd5a6dc747d', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -292,7 +292,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.5.0', 'version' => '0.5.0.0', - 'reference' => '8e61921bc3ed0798a5112f157fb8f5483f6a2fb2', + 'reference' => 'dddaa5b87898358091323f684931df28ab55c973', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -301,7 +301,7 @@ 'automattic/jetpack-post-list' => array( 'pretty_version' => '0.7.3', 'version' => '0.7.3.0', - 'reference' => '983e0c998e7c76c5235ba98a9226e162bc745264', + 'reference' => '5b397256cdf01c669f3f5c003f51035189b11184', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-post-list', 'aliases' => array(), @@ -310,7 +310,7 @@ 'automattic/jetpack-protect-models' => array( 'pretty_version' => '0.4.1', 'version' => '0.4.1.0', - 'reference' => '9ab51bc6939a114bc321b9c324943be6e09a7a8a', + 'reference' => '4523ab1058fa3491afbf7f464c119d33f48181c1', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-models', 'aliases' => array(), @@ -319,7 +319,7 @@ 'automattic/jetpack-protect-status' => array( 'pretty_version' => '0.4.1', 'version' => '0.4.1.0', - 'reference' => 'ffe4ccb5a21e83b07e6ed6cfa46f329373b77b66', + 'reference' => '893a647f3b2b61956b33fc45121c697063eb377d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-status', 'aliases' => array(), @@ -328,7 +328,7 @@ 'automattic/jetpack-publicize' => array( 'pretty_version' => '0.57.4-alpha.1736974225', 'version' => '0.57.4.0-alpha1736974225', - 'reference' => '21cd8187063df1852560deb2ef3dac8d4497a206', + 'reference' => 'bc8b627de06bff19be1732929e5156c109c4f94f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-publicize', 'aliases' => array(), @@ -337,7 +337,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => '93f4fe934b61ec27a2b6e1dba50e95e6a8133d69', + 'reference' => 'afbbd6c88cda3b1eb07ed490f87c2d99bdf7e5f7', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -346,7 +346,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '3.0.1', 'version' => '3.0.1.0', - 'reference' => '04023657dd8f9f59e905946fa9be4a04ed4b3d64', + 'reference' => 'eacf8bf3c639c75614f5d630f3693d12e5412fc3', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -355,7 +355,7 @@ 'automattic/jetpack-search' => array( 'pretty_version' => '0.47.5', 'version' => '0.47.5.0', - 'reference' => 'a3aea91dc4d37c10fbb2ea0a222fe98d83392128', + 'reference' => '58ba54c781a67e9fa9acdc2085e7e0e7be7a0354', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-search', 'aliases' => array(), @@ -364,7 +364,7 @@ 'automattic/jetpack-stats' => array( 'pretty_version' => '0.15.0', 'version' => '0.15.0.0', - 'reference' => 'ca4ef998725633af52f194e3f6c5d7547074575f', + 'reference' => '9e5eac44a82a0493c5b289a97896a71d79aba63c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-stats', 'aliases' => array(), @@ -373,7 +373,7 @@ 'automattic/jetpack-stats-admin' => array( 'pretty_version' => '0.24.0', 'version' => '0.24.0.0', - 'reference' => '194dceebc8859b8c99d0fe947becbbd6f8048d96', + 'reference' => '1aa130dbe930a9081c4d5470cbcf75456fb06579', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-stats-admin', 'aliases' => array(), @@ -382,16 +382,16 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '5.0.1', 'version' => '5.0.1.0', - 'reference' => 'ae0f3bea59354e44ed1e4362bb73b85a6b4e3866', + 'reference' => 'a6f22cbf84e43bd0754e05a175e7db95a83efca9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-sync' => array( - 'pretty_version' => '4.3.0', - 'version' => '4.3.0.0', - 'reference' => '6e0c3424f016e1302c594125716254d6e0146aa3', + 'pretty_version' => '4.4.0-alpha.1737018235', + 'version' => '4.4.0.0-alpha1737018235', + 'reference' => 'e9fcf5901f53b04e7ef91fe9a8033b6bb104f1cb', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-sync', 'aliases' => array(), @@ -400,7 +400,7 @@ 'automattic/jetpack-videopress' => array( 'pretty_version' => '0.25.6', 'version' => '0.25.6.0', - 'reference' => '4f1782fd946d12c3546ea3ec9a6a4de3011ca5a2', + 'reference' => 'f0b32ceb95939a60e37934fddb68bb5836e363e8', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-videopress', 'aliases' => array(), @@ -409,7 +409,7 @@ 'automattic/jetpack-waf' => array( 'pretty_version' => '0.23.1', 'version' => '0.23.1.0', - 'reference' => 'cd4de984f7afd07d0d5210b22190def3f0acb77d', + 'reference' => '9041dc86469ef794726b314268a37ed4a9028b11', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-waf', 'aliases' => array(), @@ -418,7 +418,7 @@ 'automattic/jetpack-wordads' => array( 'pretty_version' => '0.4.5', 'version' => '0.4.5.0', - 'reference' => '6ff1be92046e572d910c5dae420b9e10f2b7e976', + 'reference' => 'cbe83ada3f3cd7666a317a596ad2e79fbe65c89d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-wordads', 'aliases' => array(), @@ -427,7 +427,7 @@ 'automattic/woocommerce-analytics' => array( 'pretty_version' => '0.4.1', 'version' => '0.4.1.0', - 'reference' => '13b1d7170967302cf40b6406e1dfde85b26686f1', + 'reference' => '5cd2397ccb5790e67c8d1eaa04d2643259a70c2e', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/woocommerce-analytics', 'aliases' => array(), diff --git a/vendor/composer/jetpack_autoload_classmap.php b/vendor/composer/jetpack_autoload_classmap.php index 5ce30543a2..af8fa6519e 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -1163,227 +1163,227 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-visitor.php' ), 'Automattic\\Jetpack\\Sync\\Actions' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php' ), 'Automattic\\Jetpack\\Sync\\Codec_Interface' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-codec.php' ), 'Automattic\\Jetpack\\Sync\\Data_Settings' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-data-settings.php' ), 'Automattic\\Jetpack\\Sync\\Dedicated_Sender' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-dedicated-sender.php' ), 'Automattic\\Jetpack\\Sync\\Default_Filter_Settings' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-default-filter-settings.php' ), 'Automattic\\Jetpack\\Sync\\Defaults' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-defaults.php' ), 'Automattic\\Jetpack\\Sync\\Functions' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-functions.php' ), 'Automattic\\Jetpack\\Sync\\Health' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-health.php' ), 'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php' ), 'Automattic\\Jetpack\\Sync\\Listener' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-listener.php' ), 'Automattic\\Jetpack\\Sync\\Lock' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-lock.php' ), 'Automattic\\Jetpack\\Sync\\Main' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-main.php' ), 'Automattic\\Jetpack\\Sync\\Modules' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-modules.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-attachments.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-callables.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-comments.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-constants.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Import' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-import.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-menus.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-meta.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Module' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-module.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-network-options.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Options' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-options.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-plugins.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-protect.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Search' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-search.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-stats.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-terms.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-themes.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-updates.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Users' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-users.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce_HPOS_Orders' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce-hpos-orders.php' ), 'Automattic\\Jetpack\\Sync\\Package_Version' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php' ), 'Automattic\\Jetpack\\Sync\\Queue' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue.php' ), 'Automattic\\Jetpack\\Sync\\Queue\\Queue_Storage_Options' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/sync-queue/class-queue-storage-options.php' ), 'Automattic\\Jetpack\\Sync\\Queue\\Queue_Storage_Table' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/sync-queue/class-queue-storage-table.php' ), 'Automattic\\Jetpack\\Sync\\Queue_Buffer' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue-buffer.php' ), 'Automattic\\Jetpack\\Sync\\REST_Endpoints' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\Sync\\REST_Sender' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-sender.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-replicastore.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Usermeta' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Users' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-replicastore.php' ), 'Automattic\\Jetpack\\Sync\\Sender' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-sender.php' ), 'Automattic\\Jetpack\\Sync\\Server' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-server.php' ), 'Automattic\\Jetpack\\Sync\\Settings' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-settings.php' ), 'Automattic\\Jetpack\\Sync\\Simple_Codec' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-simple-codec.php' ), 'Automattic\\Jetpack\\Sync\\Users' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-users.php' ), 'Automattic\\Jetpack\\Sync\\Utils' => array( - 'version' => '4.3.0.0', + 'version' => '4.4.0.0-alpha1737018235', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array(