diff --git a/composer.json b/composer.json index dbf4f49c1..de5bb4f99 100644 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "automattic/jetpack-config": "^2.0.4", "automattic/jetpack-my-jetpack": "^4.37.0-alpha", "automattic/jetpack-plugins-installer": "^0.4.4", - "automattic/jetpack-sync": "^3.14.4", + "automattic/jetpack-sync": "^3.14.5-alpha", "automattic/jetpack-transport-helper": "^0.2.7-alpha", "automattic/jetpack-plans": "^0.4.13", "automattic/jetpack-waf": "^0.22.3", diff --git a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json index 6ceb31c49..153667a6e 100644 --- a/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json +++ b/jetpack_vendor/automattic/jetpack-my-jetpack/composer.json @@ -17,7 +17,7 @@ "automattic/jetpack-constants": "^2.0.5", "automattic/jetpack-plans": "^0.4.13", "automattic/jetpack-status": "^4.0.3", - "automattic/jetpack-sync": "^3.14.4", + "automattic/jetpack-sync": "^3.14.5-alpha", "automattic/jetpack-protect-status": "^0.2.2" }, "require-dev": { diff --git a/jetpack_vendor/automattic/jetpack-protect-status/composer.json b/jetpack_vendor/automattic/jetpack-protect-status/composer.json index e8c02f186..e6c63811e 100644 --- a/jetpack_vendor/automattic/jetpack-protect-status/composer.json +++ b/jetpack_vendor/automattic/jetpack-protect-status/composer.json @@ -7,7 +7,7 @@ "php": ">=7.0", "automattic/jetpack-connection": "^5.1.6", "automattic/jetpack-plugins-installer": "^0.4.4", - "automattic/jetpack-sync": "^3.14.4", + "automattic/jetpack-sync": "^3.14.5-alpha", "automattic/jetpack-protect-models": "^0.3.1", "automattic/jetpack-plans": "^0.4.13" }, diff --git a/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md index 97c45b885..d3fb2734c 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). +## [3.14.5-alpha] - unreleased + +This is an alpha version! The changes listed here are not final. + +### Fixed +- Jetpack Sync: Add missing handlers for removing or trashing shop_subscription orders + ## [3.14.4] - 2024-11-04 ### Added - Enable test coverage. [#39961] @@ -1326,6 +1333,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages: Move sync to a classmapped package +[3.14.5-alpha]: https://github.com/Automattic/jetpack-sync/compare/v3.14.4...v3.14.5-alpha [3.14.4]: https://github.com/Automattic/jetpack-sync/compare/v3.14.3...v3.14.4 [3.14.3]: https://github.com/Automattic/jetpack-sync/compare/v3.14.2...v3.14.3 [3.14.2]: https://github.com/Automattic/jetpack-sync/compare/v3.14.1...v3.14.2 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 4a9d6f484..77f6b9c8f 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 = '3.14.4'; + const PACKAGE_VERSION = '3.14.5-alpha'; const PACKAGE_SLUG = 'sync'; diff --git a/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce-hpos-orders.php b/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce-hpos-orders.php index 252808e65..55986105e 100644 --- a/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce-hpos-orders.php +++ b/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce-hpos-orders.php @@ -118,9 +118,13 @@ public function init_listeners( $callable ) { add_filter( "jetpack_sync_before_enqueue_woocommerce_after_{$type}_object_save", array( $this, 'expand_order_object' ) ); } add_action( 'woocommerce_delete_order', $callable ); + add_action( 'woocommerce_delete_subscription', $callable ); add_filter( 'jetpack_sync_before_enqueue_woocommerce_delete_order', array( $this, 'on_before_enqueue_order_trash_delete' ) ); + add_filter( 'jetpack_sync_before_enqueue_woocommerce_delete_subscription', array( $this, 'on_before_enqueue_order_trash_delete' ) ); add_action( 'woocommerce_trash_order', $callable ); + add_action( 'woocommerce_trash_subscription', $callable ); add_filter( 'jetpack_sync_before_enqueue_woocommerce_trash_order', array( $this, 'on_before_enqueue_order_trash_delete' ) ); + add_filter( 'jetpack_sync_before_enqueue_woocommerce_trash_subscription', array( $this, 'on_before_enqueue_order_trash_delete' ) ); } /** @@ -425,6 +429,12 @@ private static function wc_get_order_status_keys() { ); } + if ( function_exists( 'wcs_get_subscription_statuses' ) ) { + // @phan-suppress-next-line PhanUndeclaredFunction -- Checked above. See also https://github.com/phan/phan/issues/1204. + $wc_subscription_statuses = array_keys( wcs_get_subscription_statuses() ); + $wc_order_statuses = array_merge( $wc_order_statuses, $wc_subscription_statuses ); + } + return array_unique( $wc_order_statuses ); } diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index 7f7120226..e737d41b2 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -66,7 +66,7 @@ ), 'jetpack-sync' => array( 'path' => 'jetpack_vendor/automattic/jetpack-sync', - 'ver' => '3.14.4', + 'ver' => '3.14.5-alpha1730811047', ), 'jetpack-transport-helper' => array( 'path' => 'jetpack_vendor/automattic/jetpack-transport-helper', diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 3851b7d0c..777ae4602 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": "05d956ed2fd41c0b7c1ad05b3800517d64ba2998" + "reference": "6a91a5535b36a63e1bdc2b5a5327646ff28f55dd" }, "require": { "php": ">=7.0" @@ -63,7 +63,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "da4924aa43928d876d540ade7b64e704fe4060c0" + "reference": "45b6d71469ecbc82dc8b007d2f7d6bcfd1028f37" }, "require": { "php": ">=7.0" @@ -131,7 +131,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "abef1a569be7d19e94bfcb468b3f0aad9c814608" + "reference": "8f83d9450a73967b67132ee4486788140e45f28b" }, "require": { "automattic/jetpack-constants": "^2.0.5", @@ -204,7 +204,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "3701db269b7c640bb98f8a22402799ea1af5996c" + "reference": "5732bca6ba54e331bb4ad5abf8bfe1a675f62075" }, "require": { "composer-plugin-api": "^1.1 || ^2.0", @@ -275,7 +275,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-backup-helper-script-manager", - "reference": "bfebf0a80a27a8502b35d2f1aab87a87fc8661dc" + "reference": "efe876140b346c2e1c77e28da432ac5bf501f038" }, "require": { "php": ">=7.0" @@ -338,7 +338,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-core", - "reference": "3e892a22f7824c7b7eef1921e2bdd2835b98e2ab" + "reference": "77bdfcb4b8f05fcc3d70dc4cdb4c2b43d0451b0a" }, "require": { "automattic/jetpack-connection": "^5.1.6", @@ -409,7 +409,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-boost-speed-score", - "reference": "dbea0c23831dc120fa61b5f0c4cb5f3994016e75" + "reference": "674534feae921772568b44b718e41dec140583ff" }, "require": { "automattic/jetpack-boost-core": "^0.2.14", @@ -488,7 +488,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "313b693beb14a37255b0e167bb863c262ea0e4f7" + "reference": "dbc1253e7dbf10b2aee4a0b7d738c7db460a3e47" }, "require": { "composer-plugin-api": "^2.1.0", @@ -551,7 +551,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "75b325c601e5120c04ccbaf131762efc9eaaec39" + "reference": "a25bbfcf71a02dd2ee6e003b2341e46459e845d6" }, "require": { "php": ">=7.0" @@ -626,7 +626,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "80b315d8e4a04ab129cc700c8f3c9f443dd4a622" + "reference": "7399cf3b6457c52663dc10823a4ef61c1d00b283" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.4", @@ -719,7 +719,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "1a9562f13090c274492f73d45479c89d62c3ad02" + "reference": "648697821edb294e0782f9878500ac883ce34fcb" }, "require": { "php": ">=7.0" @@ -776,7 +776,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "9a39f396904f90e72e9380d03fd18b252dcd11f9" + "reference": "1af415fc51ec9f7f577068b2e6dcb668c56ed9bc" }, "require": { "php": ">=7.0" @@ -832,7 +832,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-explat", - "reference": "cfc387f63d9c45a3529b042fd20e3672a74701b6" + "reference": "f8ee6d4bb3cd7e4c89d6007028cd1295502b8f75" }, "require": { "automattic/jetpack-connection": "^5.1.6", @@ -911,7 +911,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "ee41de7b63aaaadea01ec390949a39b2a95c3ccf" + "reference": "5fd12e4ec6f27959dac787ec7cdd9d9a3083ef51" }, "require": { "php": ">=7.0" @@ -972,7 +972,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "2e573459b749a52f3e4f725f23571357b910d83f" + "reference": "15d7dd3cc2985cde32c6d14cfa4e5df8288062c4" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.4", @@ -1050,7 +1050,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "090203069fef22c06489bbb045640c5da70fb481" + "reference": "b32b96491ffaa1624d19faa069726626e89a2b26" }, "require": { "automattic/jetpack-connection": "^5.1.6", @@ -1115,7 +1115,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "cee4d9f910b84f0e231237225ecfb55143ffddda" + "reference": "67a6170578418f2a1abbf3133074c1765ff20ce9" }, "require": { "php": ">=7.0" @@ -1171,7 +1171,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "75f91d8f89745c09b24c3c272cf9f73b2ad95f41" + "reference": "14540cc21d5bb6651153a922de2e5ff22c8a5e3a" }, "require": { "automattic/jetpack-admin-ui": "^0.4.6", @@ -1187,7 +1187,7 @@ "automattic/jetpack-protect-status": "^0.2.2", "automattic/jetpack-redirect": "^2.0.5", "automattic/jetpack-status": "^4.0.3", - "automattic/jetpack-sync": "^3.14.4", + "automattic/jetpack-sync": "^3.14.5-alpha", "php": ">=7.0" }, "require-dev": { @@ -1277,7 +1277,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "f93bb6f12b1974676bae33a45159773487d5591e" + "reference": "a0a3fe00af05a10d37586826bc3f5c071536823d" }, "require": { "php": ">=7.0" @@ -1341,7 +1341,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plans", - "reference": "ccc679e466d144a91a6d227866c4da913c7dc1c3" + "reference": "3cfc3e6d1313ace08c4c4c1f7dbd6b6aa40534a8" }, "require": { "automattic/jetpack-connection": "^5.1.6", @@ -1412,7 +1412,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "4cc24fd3f812aa4247602e656120dbaa8f6030f7" + "reference": "0232718ca9393757362952535dd41a8bb4f5bcb3" }, "require": { "automattic/jetpack-a8c-mc-stats": "^2.0.4", @@ -1471,7 +1471,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-models", - "reference": "f9c2f772221f97fb3cf124fca672474091f8c5ab" + "reference": "7b83d4d583dd702a23dbf7221c6511dd0cd7b65c" }, "require": { "php": ">=7.0" @@ -1544,14 +1544,14 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-protect-status", - "reference": "a37ea085cbfb2f896c4b6256ea69848b36fdaeb5" + "reference": "b4bfe802de91f5ca7779e4a35d5c7da9b784d67b" }, "require": { "automattic/jetpack-connection": "^5.1.6", "automattic/jetpack-plans": "^0.4.13", "automattic/jetpack-plugins-installer": "^0.4.4", "automattic/jetpack-protect-models": "^0.3.1", - "automattic/jetpack-sync": "^3.14.4", + "automattic/jetpack-sync": "^3.14.5-alpha", "php": ">=7.0" }, "require-dev": { @@ -1622,7 +1622,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "1861aee32d6e5528da930959c2f222eb490329b7" + "reference": "98b87cd011d8f12b36f146d717c1db1523232e1f" }, "require": { "automattic/jetpack-status": "^4.0.3", @@ -1680,7 +1680,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "de0be42669e8ac71490d015b5bfe7d2bca246f78" + "reference": "d56ab0501c3e3bfccddb82b3310b9290dfb4ea6f" }, "require": { "php": ">=7.0" @@ -1737,7 +1737,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "205b421c64ca78d57b0d5b4967ae36b2c00064e8" + "reference": "c1006a73247afd9c6e64ebd2c5161e9c441ed6c3" }, "require": { "automattic/jetpack-constants": "^2.0.5", @@ -1799,12 +1799,12 @@ }, { "name": "automattic/jetpack-sync", - "version": "3.14.4", - "version_normalized": "3.14.4.0", + "version": "3.14.5-alpha.1730811047", + "version_normalized": "3.14.5.0-alpha1730811047", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "4ee2471b9bdc0fcf4aeb18b0d54b539fbc00e95e" + "reference": "c6a17ab52727404ca358ffaa324a4bddaf8b8ac4" }, "require": { "automattic/jetpack-connection": "^5.1.6", @@ -1885,7 +1885,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-transport-helper", - "reference": "68b8592196b4a8631f6087a7bae90468bd7a7523" + "reference": "e15522075b9ffba9ec67100f59cea3ab78c1155f" }, "require": { "automattic/jetpack-backup-helper-script-manager": "^0.2.8", @@ -1963,7 +1963,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-waf", - "reference": "348ee47b205f154298615858492fec4f0ed79220" + "reference": "950c9c705ced6f3b34706447d135105eacc28dab" }, "require": { "automattic/jetpack-connection": "^5.1.6", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 477b7b0e1..b3c556c5f 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.4', 'version' => '2.0.4.0', - 'reference' => '05d956ed2fd41c0b7c1ad05b3800517d64ba2998', + 'reference' => '6a91a5535b36a63e1bdc2b5a5327646ff28f55dd', '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.6', 'version' => '0.4.6.0', - 'reference' => 'da4924aa43928d876d540ade7b64e704fe4060c0', + 'reference' => '45b6d71469ecbc82dc8b007d2f7d6bcfd1028f37', '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.3.13', 'version' => '2.3.13.0', - 'reference' => 'abef1a569be7d19e94bfcb468b3f0aad9c814608', + 'reference' => '8f83d9450a73967b67132ee4486788140e45f28b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '3.1.3', 'version' => '3.1.3.0', - 'reference' => '3701db269b7c640bb98f8a22402799ea1af5996c', + 'reference' => '5732bca6ba54e331bb4ad5abf8bfe1a675f62075', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-backup-helper-script-manager' => array( 'pretty_version' => '0.2.8', 'version' => '0.2.8.0', - 'reference' => 'bfebf0a80a27a8502b35d2f1aab87a87fc8661dc', + 'reference' => 'efe876140b346c2e1c77e28da432ac5bf501f038', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-backup-helper-script-manager', 'aliases' => array(), @@ -58,7 +58,7 @@ 'automattic/jetpack-boost-core' => array( 'pretty_version' => '0.2.14', 'version' => '0.2.14.0', - 'reference' => '3e892a22f7824c7b7eef1921e2bdd2835b98e2ab', + 'reference' => '77bdfcb4b8f05fcc3d70dc4cdb4c2b43d0451b0a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-core', 'aliases' => array(), @@ -67,7 +67,7 @@ 'automattic/jetpack-boost-speed-score' => array( 'pretty_version' => '0.3.14', 'version' => '0.3.14.0', - 'reference' => 'dbea0c23831dc120fa61b5f0c4cb5f3994016e75', + 'reference' => '674534feae921772568b44b718e41dec140583ff', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-boost-speed-score', 'aliases' => array(), @@ -76,7 +76,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '2.0.4', 'version' => '2.0.4.0', - 'reference' => '313b693beb14a37255b0e167bb863c262ea0e4f7', + 'reference' => 'dbc1253e7dbf10b2aee4a0b7d738c7db460a3e47', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -85,7 +85,7 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '2.0.4', 'version' => '2.0.4.0', - 'reference' => '75b325c601e5120c04ccbaf131762efc9eaaec39', + 'reference' => 'a25bbfcf71a02dd2ee6e003b2341e46459e845d6', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), @@ -94,7 +94,7 @@ 'automattic/jetpack-connection' => array( 'pretty_version' => '5.1.6', 'version' => '5.1.6.0', - 'reference' => '80b315d8e4a04ab129cc700c8f3c9f443dd4a622', + 'reference' => '7399cf3b6457c52663dc10823a4ef61c1d00b283', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '2.0.5', 'version' => '2.0.5.0', - 'reference' => '1a9562f13090c274492f73d45479c89d62c3ad02', + 'reference' => '648697821edb294e0782f9878500ac883ce34fcb', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '2.1.6', 'version' => '2.1.6.0', - 'reference' => '9a39f396904f90e72e9380d03fd18b252dcd11f9', + 'reference' => '1af415fc51ec9f7f577068b2e6dcb668c56ed9bc', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-explat' => array( 'pretty_version' => '0.1.14', 'version' => '0.1.14.0', - 'reference' => 'cfc387f63d9c45a3529b042fd20e3672a74701b6', + 'reference' => 'f8ee6d4bb3cd7e4c89d6007028cd1295502b8f75', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-explat', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.3.1', 'version' => '0.3.1.0', - 'reference' => 'ee41de7b63aaaadea01ec390949a39b2a95c3ccf', + 'reference' => '5fd12e4ec6f27959dac787ec7cdd9d9a3083ef51', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -139,7 +139,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '3.1.28', 'version' => '3.1.28.0', - 'reference' => '2e573459b749a52f3e4f725f23571357b910d83f', + 'reference' => '15d7dd3cc2985cde32c6d14cfa4e5df8288062c4', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -148,7 +148,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '2.0.12', 'version' => '2.0.12.0', - 'reference' => '090203069fef22c06489bbb045640c5da70fb481', + 'reference' => 'b32b96491ffaa1624d19faa069726626e89a2b26', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -157,7 +157,7 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '2.0.5', 'version' => '2.0.5.0', - 'reference' => 'cee4d9f910b84f0e231237225ecfb55143ffddda', + 'reference' => '67a6170578418f2a1abbf3133074c1765ff20ce9', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), @@ -166,7 +166,7 @@ 'automattic/jetpack-my-jetpack' => array( 'pretty_version' => '4.37.0-alpha.1730770790', 'version' => '4.37.0.0-alpha1730770790', - 'reference' => '75f91d8f89745c09b24c3c272cf9f73b2ad95f41', + 'reference' => '14540cc21d5bb6651153a922de2e5ff22c8a5e3a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -175,7 +175,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.3.3', 'version' => '0.3.3.0', - 'reference' => 'f93bb6f12b1974676bae33a45159773487d5591e', + 'reference' => 'a0a3fe00af05a10d37586826bc3f5c071536823d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-plans' => array( 'pretty_version' => '0.4.13', 'version' => '0.4.13.0', - 'reference' => 'ccc679e466d144a91a6d227866c4da913c7dc1c3', + 'reference' => '3cfc3e6d1313ace08c4c4c1f7dbd6b6aa40534a8', 'type' => 'library', 'install_path' => __DIR__ . '/../automattic/jetpack-plans', 'aliases' => array(), @@ -193,7 +193,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.4.4', 'version' => '0.4.4.0', - 'reference' => '4cc24fd3f812aa4247602e656120dbaa8f6030f7', + 'reference' => '0232718ca9393757362952535dd41a8bb4f5bcb3', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -211,7 +211,7 @@ 'automattic/jetpack-protect-models' => array( 'pretty_version' => '0.3.1', 'version' => '0.3.1.0', - 'reference' => 'f9c2f772221f97fb3cf124fca672474091f8c5ab', + 'reference' => '7b83d4d583dd702a23dbf7221c6511dd0cd7b65c', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-models', 'aliases' => array(), @@ -220,7 +220,7 @@ 'automattic/jetpack-protect-status' => array( 'pretty_version' => '0.2.2', 'version' => '0.2.2.0', - 'reference' => 'a37ea085cbfb2f896c4b6256ea69848b36fdaeb5', + 'reference' => 'b4bfe802de91f5ca7779e4a35d5c7da9b784d67b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-protect-status', 'aliases' => array(), @@ -229,7 +229,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '2.0.5', 'version' => '2.0.5.0', - 'reference' => '1861aee32d6e5528da930959c2f222eb490329b7', + 'reference' => '98b87cd011d8f12b36f146d717c1db1523232e1f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -238,7 +238,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '2.0.4', 'version' => '2.0.4.0', - 'reference' => 'de0be42669e8ac71490d015b5bfe7d2bca246f78', + 'reference' => 'd56ab0501c3e3bfccddb82b3310b9290dfb4ea6f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -247,16 +247,16 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '4.0.3', 'version' => '4.0.3.0', - 'reference' => '205b421c64ca78d57b0d5b4967ae36b2c00064e8', + 'reference' => 'c1006a73247afd9c6e64ebd2c5161e9c441ed6c3', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-sync' => array( - 'pretty_version' => '3.14.4', - 'version' => '3.14.4.0', - 'reference' => '4ee2471b9bdc0fcf4aeb18b0d54b539fbc00e95e', + 'pretty_version' => '3.14.5-alpha.1730811047', + 'version' => '3.14.5.0-alpha1730811047', + 'reference' => 'c6a17ab52727404ca358ffaa324a4bddaf8b8ac4', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-sync', 'aliases' => array(), @@ -265,7 +265,7 @@ 'automattic/jetpack-transport-helper' => array( 'pretty_version' => '0.2.7-alpha.1730548010', 'version' => '0.2.7.0-alpha1730548010', - 'reference' => '68b8592196b4a8631f6087a7bae90468bd7a7523', + 'reference' => 'e15522075b9ffba9ec67100f59cea3ab78c1155f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-transport-helper', 'aliases' => array(), @@ -274,7 +274,7 @@ 'automattic/jetpack-waf' => array( 'pretty_version' => '0.22.3', 'version' => '0.22.3.0', - 'reference' => '348ee47b205f154298615858492fec4f0ed79220', + 'reference' => '950c9c705ced6f3b34706447d135105eacc28dab', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-waf', 'aliases' => array(), diff --git a/vendor/composer/jetpack_autoload_classmap.php b/vendor/composer/jetpack_autoload_classmap.php index 5a1b0ed5a..997813cc8 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -591,227 +591,227 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-visitor.php' ), 'Automattic\\Jetpack\\Sync\\Actions' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php' ), 'Automattic\\Jetpack\\Sync\\Codec_Interface' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-codec.php' ), 'Automattic\\Jetpack\\Sync\\Data_Settings' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-data-settings.php' ), 'Automattic\\Jetpack\\Sync\\Dedicated_Sender' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-dedicated-sender.php' ), 'Automattic\\Jetpack\\Sync\\Default_Filter_Settings' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-default-filter-settings.php' ), 'Automattic\\Jetpack\\Sync\\Defaults' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-defaults.php' ), 'Automattic\\Jetpack\\Sync\\Functions' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-functions.php' ), 'Automattic\\Jetpack\\Sync\\Health' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-health.php' ), 'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php' ), 'Automattic\\Jetpack\\Sync\\Listener' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-listener.php' ), 'Automattic\\Jetpack\\Sync\\Lock' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-lock.php' ), 'Automattic\\Jetpack\\Sync\\Main' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-main.php' ), 'Automattic\\Jetpack\\Sync\\Modules' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-modules.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-attachments.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-callables.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-comments.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-constants.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Import' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-import.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-menus.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-meta.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Module' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-module.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-network-options.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Options' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-options.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-plugins.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-protect.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Search' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-search.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-stats.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-terms.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-themes.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-updates.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Users' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-users.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce_HPOS_Orders' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce-hpos-orders.php' ), 'Automattic\\Jetpack\\Sync\\Package_Version' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php' ), 'Automattic\\Jetpack\\Sync\\Queue' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue.php' ), 'Automattic\\Jetpack\\Sync\\Queue\\Queue_Storage_Options' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/sync-queue/class-queue-storage-options.php' ), 'Automattic\\Jetpack\\Sync\\Queue\\Queue_Storage_Table' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/sync-queue/class-queue-storage-table.php' ), 'Automattic\\Jetpack\\Sync\\Queue_Buffer' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue-buffer.php' ), 'Automattic\\Jetpack\\Sync\\REST_Endpoints' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\Sync\\REST_Sender' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-sender.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-replicastore.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Usermeta' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Users' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-replicastore.php' ), 'Automattic\\Jetpack\\Sync\\Sender' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-sender.php' ), 'Automattic\\Jetpack\\Sync\\Server' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-server.php' ), 'Automattic\\Jetpack\\Sync\\Settings' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-settings.php' ), 'Automattic\\Jetpack\\Sync\\Simple_Codec' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-simple-codec.php' ), 'Automattic\\Jetpack\\Sync\\Users' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-users.php' ), 'Automattic\\Jetpack\\Sync\\Utils' => array( - 'version' => '3.14.4.0', + 'version' => '3.14.5.0-alpha1730811047', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array(