From 45f16e4109e73718e60031be1cc1f53952f8d466 Mon Sep 17 00:00:00 2001 From: zinigor Date: Mon, 18 Sep 2023 19:26:49 +0000 Subject: [PATCH] Added WooCommerce orders table to checksum logic. (#32774) * Added a definition of the wc_orders table to the Replicastore. * Changelog. * Added two more tables to be used in checksums. * Amended key field data according to schema. Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/6226922322 --- .../automattic/jetpack-sync/CHANGELOG.md | 1 + .../src/replicastore/class-table-checksum.php | 24 ++++ jetpack_vendor/i18n-map.php | 2 +- vendor/composer/installed.json | 52 ++++---- vendor/composer/installed.php | 52 ++++---- vendor/composer/jetpack_autoload_classmap.php | 112 +++++++++--------- 6 files changed, 134 insertions(+), 109 deletions(-) diff --git a/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md b/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md index a5a212ca9..5cb68ccb9 100644 --- a/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md +++ b/jetpack_vendor/automattic/jetpack-sync/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This is an alpha version! The changes listed here are not final. ### Added +- Added a definition of a WooCommerce HPOS table to Jetpack Sync. - Jetpack Sync: Drop Sync custom queue table when Jetpack is disconnected - Woo: add HPOS (custom order tables) events to sync module. diff --git a/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php b/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php index adc9cf3f5..95782dd48 100644 --- a/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php +++ b/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php @@ -304,6 +304,30 @@ protected function get_default_tables() { 'table_join_field' => 'order_item_id', 'is_table_enabled_callback' => array( $this, 'enable_woocommerce_tables' ), ), + 'wc_orders' => array( + 'table' => "{$wpdb->prefix}wc_orders", + 'range_field' => 'id', + 'key_fields' => array( 'id' ), + 'checksum_text_fields' => array( 'type', 'status', 'payment_method_title' ), + 'filter_values' => array(), + 'is_table_enabled_callback' => array( $this, 'enable_woocommerce_tables' ), + ), + 'wc_order_addresses' => array( + 'table' => "{$wpdb->prefix}wc_order_addresses", + 'range_field' => 'order_id', + 'key_fields' => array( 'order_id', 'address_type' ), + 'checksum_text_fields' => array( 'address_type' ), + 'filter_values' => array(), + 'is_table_enabled_callback' => array( $this, 'enable_woocommerce_tables' ), + ), + 'wc_order_operational_data' => array( + 'table' => "{$wpdb->prefix}wc_order_operational_data", + 'range_field' => 'order_id', + 'key_fields' => array( 'order_id' ), + 'checksum_text_fields' => array( 'order_key', 'cart_hash' ), + 'filter_values' => array(), + 'is_table_enabled_callback' => array( $this, 'enable_woocommerce_tables' ), + ), 'users' => array( 'table' => $wpdb->users, 'range_field' => 'ID', diff --git a/jetpack_vendor/i18n-map.php b/jetpack_vendor/i18n-map.php index e7ee12228..0274439c5 100644 --- a/jetpack_vendor/i18n-map.php +++ b/jetpack_vendor/i18n-map.php @@ -58,7 +58,7 @@ ), 'jetpack-sync' => array( 'path' => 'jetpack_vendor/automattic/jetpack-sync', - 'ver' => '1.57.0-alpha1695061509', + 'ver' => '1.57.0-alpha1695064121', ), ), ); diff --git a/vendor/composer/installed.json b/vendor/composer/installed.json index 7c9353557..371a6ab82 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": "160aeb09a30c3f99de2e33d47c58cbce9d786f69" + "reference": "6c925f6e213e8ba278a0d9f85c21415b3e4c8ccd" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.9-alpha", @@ -57,7 +57,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-admin-ui", - "reference": "9f212b9f2b8cbbe7b20c09674f290054b2e7fa09" + "reference": "2d2050d35f9724f29474de9395bbff344f14289f" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.9-alpha", @@ -119,7 +119,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-assets", - "reference": "cd6f7138cd5d12d2d984fb71789e0c46952e132f" + "reference": "009f05b992c622e8866d2447828530412240bb8f" }, "require": { "automattic/jetpack-constants": "^1.6.23" @@ -187,7 +187,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-autoloader", - "reference": "14a991b50815a0d3f25efcb3a86a11726f35956f" + "reference": "f2021cecd781b659ca4b9a94ec6d02bb97b18b18" }, "require": { "composer-plugin-api": "^1.1 || ^2.0" @@ -249,7 +249,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-composer-plugin", - "reference": "296658a089d07e29d084833fe73094f6c646a6eb" + "reference": "64dbf05a816780230c9bb6c85ad86040b92d0804" }, "require": { "composer-plugin-api": "^2.1.0" @@ -308,7 +308,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-config", - "reference": "09d67124e26b5b4c4daba15db8bc6075f5a7a512" + "reference": "6861a4cbaedcd9893db76b85a05e2f64d943ba49" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.9-alpha" @@ -350,7 +350,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-connection", - "reference": "5574cc6c8d0976aa8f2a3c816b08d3fd76c9ab83" + "reference": "e7744d811eb1b2b5550b79a20a53a8de69f4eb3b" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.22-alpha", @@ -428,7 +428,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-constants", - "reference": "d7f8c823b9fe705ac2cb546636a7f8be56485725" + "reference": "a15c9b63c2790ceade6adcabe2cd29389b939799" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.9-alpha", @@ -479,7 +479,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-device-detection", - "reference": "55819aaee19ea1f3c824e6bca209a7fd67026aef" + "reference": "0835782a0c30e3dc33fe288073c4d908a3cec09b" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.9-alpha", @@ -529,7 +529,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-identity-crisis", - "reference": "b70f3603d0f1146a3ebb47a52e27efca036413cc" + "reference": "6a250e24035fea71f8e9388e8c04e49f5e0c101d" }, "require": { "automattic/jetpack-assets": "^1.18.11-alpha", @@ -607,7 +607,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-ip", - "reference": "8678c7be494cbd078a54d6231302a0b1fb590452" + "reference": "d6510f79e890868199e331b35645b4ec210926e4" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.9-alpha", @@ -662,7 +662,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-jitm", - "reference": "05d7046a48de2690348e432a1ca7ab3abdfb4cb5" + "reference": "f872001b6b3aa90faf94d583d7a48ced8e0d4125" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.22-alpha", @@ -737,7 +737,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-licensing", - "reference": "1876864b6318d16b2d8e1bc2cd2dcb4c61c1c35a" + "reference": "ece13314aebc52d1b46e28cb060b4949265349ce" }, "require": { "automattic/jetpack-connection": "^1.57.5-alpha" @@ -798,7 +798,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-logo", - "reference": "ab4ae25c5be0438af546efa161e3ffc372de74a7" + "reference": "203aed10ebced3f9f6ccbca44b46433069defa42" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.9-alpha", @@ -848,7 +848,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-my-jetpack", - "reference": "d7e1ee2f1134bc83464d01800a335a303e520d50" + "reference": "5607bbbf299f7a1a425ad2fb26d90c2442e8828a" }, "require": { "automattic/jetpack-admin-ui": "^0.2.23-alpha", @@ -938,7 +938,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-partner", - "reference": "0ea2b8ca224e05a9495955a2a71423ece940189f" + "reference": "657b6e1df44defdb45a5ff17f82e195fd37073cc" }, "require": { "automattic/jetpack-connection": "^1.57.5-alpha", @@ -1000,7 +1000,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-password-checker", - "reference": "1dbbb911178358e090e5bbe56a9406a79fc90aa2" + "reference": "901ecd4203d23519ad80a9a47f3aa87e3b4f7fe3" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.9-alpha", @@ -1058,7 +1058,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-plugins-installer", - "reference": "a09f66eeb644f04e6f1b964ef242e0a15386201c" + "reference": "c745782d033071e9cf314ab7d6f4d1d0a1d0c81f" }, "require": { "automattic/jetpack-a8c-mc-stats": "^1.4.22-alpha" @@ -1112,7 +1112,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-redirect", - "reference": "daa25a443cfe2f2f40dc8c378e8b4ef24cfb0534" + "reference": "eb0289d182ca4a2fb171a0195a3f52033ce769bc" }, "require": { "automattic/jetpack-status": "^1.18.4-alpha" @@ -1166,7 +1166,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-roles", - "reference": "5c2294e4a581a78e571ae098a768404869a7e0c9" + "reference": "439bcb5180c5046cdf7a07c05bffc41f2d390ab4" }, "require-dev": { "automattic/jetpack-changelogger": "^3.3.9-alpha", @@ -1217,7 +1217,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-search", - "reference": "b9238905825a97d41832643525505e70ff3fc5d1" + "reference": "77050a0b1e72b430332e39ef49265e30408d5082" }, "require": { "automattic/jetpack-assets": "^1.18.11-alpha", @@ -1303,7 +1303,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-stats", - "reference": "e4de5d842e0a449afb19d08378bfc184b8849798" + "reference": "3a611ec020a1a10bcb8956694a3ed6f47851d21e" }, "require": { "automattic/jetpack-assets": "^1.18.11-alpha", @@ -1367,7 +1367,7 @@ "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-status", - "reference": "253f75760b0ae8c1d8a9ffdb4ff2b143732ff048" + "reference": "104a7b820c65ba2a11a20d6f111bf65f7efe4fe8" }, "require": { "automattic/jetpack-constants": "^1.6.23" @@ -1417,12 +1417,12 @@ }, { "name": "automattic/jetpack-sync", - "version": "1.57.0-alpha.1695061509", - "version_normalized": "1.57.0.0-alpha1695061509", + "version": "1.57.0-alpha.1695064121", + "version_normalized": "1.57.0.0-alpha1695064121", "dist": { "type": "path", "url": "/tmp/jetpack-build/Automattic/jetpack-sync", - "reference": "6e986cab43af36ccfbfb96ca2eb2e3077408fddf" + "reference": "e362b8ad5a8e7104e34786800b82e3d460e968e7" }, "require": { "automattic/jetpack-connection": "^1.57.5-alpha", diff --git a/vendor/composer/installed.php b/vendor/composer/installed.php index 63b782046..8e519b61e 100644 --- a/vendor/composer/installed.php +++ b/vendor/composer/installed.php @@ -13,7 +13,7 @@ 'automattic/jetpack-a8c-mc-stats' => array( 'pretty_version' => '1.4.22-alpha.1694712909', 'version' => '1.4.22.0-alpha1694712909', - 'reference' => '160aeb09a30c3f99de2e33d47c58cbce9d786f69', + 'reference' => '6c925f6e213e8ba278a0d9f85c21415b3e4c8ccd', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-a8c-mc-stats', 'aliases' => array(), @@ -22,7 +22,7 @@ 'automattic/jetpack-admin-ui' => array( 'pretty_version' => '0.2.23-alpha.1694712909', 'version' => '0.2.23.0-alpha1694712909', - 'reference' => '9f212b9f2b8cbbe7b20c09674f290054b2e7fa09', + 'reference' => '2d2050d35f9724f29474de9395bbff344f14289f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-admin-ui', 'aliases' => array(), @@ -31,7 +31,7 @@ 'automattic/jetpack-assets' => array( 'pretty_version' => '1.18.11-alpha.1694712909', 'version' => '1.18.11.0-alpha1694712909', - 'reference' => 'cd6f7138cd5d12d2d984fb71789e0c46952e132f', + 'reference' => '009f05b992c622e8866d2447828530412240bb8f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-assets', 'aliases' => array(), @@ -40,7 +40,7 @@ 'automattic/jetpack-autoloader' => array( 'pretty_version' => '2.11.23-alpha.1694712909', 'version' => '2.11.23.0-alpha1694712909', - 'reference' => '14a991b50815a0d3f25efcb3a86a11726f35956f', + 'reference' => 'f2021cecd781b659ca4b9a94ec6d02bb97b18b18', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-autoloader', 'aliases' => array(), @@ -49,7 +49,7 @@ 'automattic/jetpack-composer-plugin' => array( 'pretty_version' => '1.1.14-alpha.1694712909', 'version' => '1.1.14.0-alpha1694712909', - 'reference' => '296658a089d07e29d084833fe73094f6c646a6eb', + 'reference' => '64dbf05a816780230c9bb6c85ad86040b92d0804', 'type' => 'composer-plugin', 'install_path' => __DIR__ . '/../automattic/jetpack-composer-plugin', 'aliases' => array(), @@ -58,7 +58,7 @@ 'automattic/jetpack-config' => array( 'pretty_version' => '1.15.4-alpha.1694712909', 'version' => '1.15.4.0-alpha1694712909', - 'reference' => '09d67124e26b5b4c4daba15db8bc6075f5a7a512', + 'reference' => '6861a4cbaedcd9893db76b85a05e2f64d943ba49', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-config', 'aliases' => array(), @@ -67,7 +67,7 @@ 'automattic/jetpack-connection' => array( 'pretty_version' => '1.57.5-alpha.1694712909', 'version' => '1.57.5.0-alpha1694712909', - 'reference' => '5574cc6c8d0976aa8f2a3c816b08d3fd76c9ab83', + 'reference' => 'e7744d811eb1b2b5550b79a20a53a8de69f4eb3b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-connection', 'aliases' => array(), @@ -76,7 +76,7 @@ 'automattic/jetpack-constants' => array( 'pretty_version' => '1.6.23', 'version' => '1.6.23.0', - 'reference' => 'd7f8c823b9fe705ac2cb546636a7f8be56485725', + 'reference' => 'a15c9b63c2790ceade6adcabe2cd29389b939799', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-constants', 'aliases' => array(), @@ -85,7 +85,7 @@ 'automattic/jetpack-device-detection' => array( 'pretty_version' => '1.4.27', 'version' => '1.4.27.0', - 'reference' => '55819aaee19ea1f3c824e6bca209a7fd67026aef', + 'reference' => '0835782a0c30e3dc33fe288073c4d908a3cec09b', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-device-detection', 'aliases' => array(), @@ -94,7 +94,7 @@ 'automattic/jetpack-identity-crisis' => array( 'pretty_version' => '0.10.5-alpha.1694712909', 'version' => '0.10.5.0-alpha1694712909', - 'reference' => 'b70f3603d0f1146a3ebb47a52e27efca036413cc', + 'reference' => '6a250e24035fea71f8e9388e8c04e49f5e0c101d', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-identity-crisis', 'aliases' => array(), @@ -103,7 +103,7 @@ 'automattic/jetpack-ip' => array( 'pretty_version' => '0.1.6-alpha.1694712909', 'version' => '0.1.6.0-alpha1694712909', - 'reference' => '8678c7be494cbd078a54d6231302a0b1fb590452', + 'reference' => 'd6510f79e890868199e331b35645b4ec210926e4', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-ip', 'aliases' => array(), @@ -112,7 +112,7 @@ 'automattic/jetpack-jitm' => array( 'pretty_version' => '2.3.19-alpha.1694712909', 'version' => '2.3.19.0-alpha1694712909', - 'reference' => '05d7046a48de2690348e432a1ca7ab3abdfb4cb5', + 'reference' => 'f872001b6b3aa90faf94d583d7a48ced8e0d4125', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-jitm', 'aliases' => array(), @@ -121,7 +121,7 @@ 'automattic/jetpack-licensing' => array( 'pretty_version' => '1.8.4-alpha.1694712909', 'version' => '1.8.4.0-alpha1694712909', - 'reference' => '1876864b6318d16b2d8e1bc2cd2dcb4c61c1c35a', + 'reference' => 'ece13314aebc52d1b46e28cb060b4949265349ce', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-licensing', 'aliases' => array(), @@ -130,7 +130,7 @@ 'automattic/jetpack-logo' => array( 'pretty_version' => '1.6.3-alpha.1694712909', 'version' => '1.6.3.0-alpha1694712909', - 'reference' => 'ab4ae25c5be0438af546efa161e3ffc372de74a7', + 'reference' => '203aed10ebced3f9f6ccbca44b46433069defa42', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-logo', 'aliases' => array(), @@ -139,7 +139,7 @@ 'automattic/jetpack-my-jetpack' => array( 'pretty_version' => '3.5.0-alpha.1694712909', 'version' => '3.5.0.0-alpha1694712909', - 'reference' => 'd7e1ee2f1134bc83464d01800a335a303e520d50', + 'reference' => '5607bbbf299f7a1a425ad2fb26d90c2442e8828a', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-my-jetpack', 'aliases' => array(), @@ -148,7 +148,7 @@ 'automattic/jetpack-partner' => array( 'pretty_version' => '1.7.25-alpha.1694712909', 'version' => '1.7.25.0-alpha1694712909', - 'reference' => '0ea2b8ca224e05a9495955a2a71423ece940189f', + 'reference' => '657b6e1df44defdb45a5ff17f82e195fd37073cc', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-partner', 'aliases' => array(), @@ -157,7 +157,7 @@ 'automattic/jetpack-password-checker' => array( 'pretty_version' => '0.2.14', 'version' => '0.2.14.0', - 'reference' => '1dbbb911178358e090e5bbe56a9406a79fc90aa2', + 'reference' => '901ecd4203d23519ad80a9a47f3aa87e3b4f7fe3', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-password-checker', 'aliases' => array(), @@ -166,7 +166,7 @@ 'automattic/jetpack-plugins-installer' => array( 'pretty_version' => '0.2.5', 'version' => '0.2.5.0', - 'reference' => 'a09f66eeb644f04e6f1b964ef242e0a15386201c', + 'reference' => 'c745782d033071e9cf314ab7d6f4d1d0a1d0c81f', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-plugins-installer', 'aliases' => array(), @@ -175,7 +175,7 @@ 'automattic/jetpack-redirect' => array( 'pretty_version' => '1.7.27-alpha.1694712909', 'version' => '1.7.27.0-alpha1694712909', - 'reference' => 'daa25a443cfe2f2f40dc8c378e8b4ef24cfb0534', + 'reference' => 'eb0289d182ca4a2fb171a0195a3f52033ce769bc', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-redirect', 'aliases' => array(), @@ -184,7 +184,7 @@ 'automattic/jetpack-roles' => array( 'pretty_version' => '1.4.25-alpha.1694712909', 'version' => '1.4.25.0-alpha1694712909', - 'reference' => '5c2294e4a581a78e571ae098a768404869a7e0c9', + 'reference' => '439bcb5180c5046cdf7a07c05bffc41f2d390ab4', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-roles', 'aliases' => array(), @@ -193,7 +193,7 @@ 'automattic/jetpack-search' => array( 'pretty_version' => '0.38.8-alpha.1694712909', 'version' => '0.38.8.0-alpha1694712909', - 'reference' => 'b9238905825a97d41832643525505e70ff3fc5d1', + 'reference' => '77050a0b1e72b430332e39ef49265e30408d5082', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-search', 'aliases' => array(), @@ -211,7 +211,7 @@ 'automattic/jetpack-stats' => array( 'pretty_version' => '0.6.5', 'version' => '0.6.5.0', - 'reference' => 'e4de5d842e0a449afb19d08378bfc184b8849798', + 'reference' => '3a611ec020a1a10bcb8956694a3ed6f47851d21e', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-stats', 'aliases' => array(), @@ -220,16 +220,16 @@ 'automattic/jetpack-status' => array( 'pretty_version' => '1.18.4-alpha.1694712909', 'version' => '1.18.4.0-alpha1694712909', - 'reference' => '253f75760b0ae8c1d8a9ffdb4ff2b143732ff048', + 'reference' => '104a7b820c65ba2a11a20d6f111bf65f7efe4fe8', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-status', 'aliases' => array(), 'dev_requirement' => false, ), 'automattic/jetpack-sync' => array( - 'pretty_version' => '1.57.0-alpha.1695061509', - 'version' => '1.57.0.0-alpha1695061509', - 'reference' => '6e986cab43af36ccfbfb96ca2eb2e3077408fddf', + 'pretty_version' => '1.57.0-alpha.1695064121', + 'version' => '1.57.0.0-alpha1695064121', + 'reference' => 'e362b8ad5a8e7104e34786800b82e3d460e968e7', 'type' => 'jetpack-library', 'install_path' => __DIR__ . '/../../jetpack_vendor/automattic/jetpack-sync', 'aliases' => array(), diff --git a/vendor/composer/jetpack_autoload_classmap.php b/vendor/composer/jetpack_autoload_classmap.php index a6e3e37ef..81f082b58 100644 --- a/vendor/composer/jetpack_autoload_classmap.php +++ b/vendor/composer/jetpack_autoload_classmap.php @@ -503,227 +503,227 @@ 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-status/src/class-visitor.php' ), 'Automattic\\Jetpack\\Sync\\Actions' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-actions.php' ), 'Automattic\\Jetpack\\Sync\\Codec_Interface' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-codec.php' ), 'Automattic\\Jetpack\\Sync\\Data_Settings' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-data-settings.php' ), 'Automattic\\Jetpack\\Sync\\Dedicated_Sender' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-dedicated-sender.php' ), 'Automattic\\Jetpack\\Sync\\Default_Filter_Settings' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-default-filter-settings.php' ), 'Automattic\\Jetpack\\Sync\\Defaults' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-defaults.php' ), 'Automattic\\Jetpack\\Sync\\Functions' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-functions.php' ), 'Automattic\\Jetpack\\Sync\\Health' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-health.php' ), 'Automattic\\Jetpack\\Sync\\JSON_Deflate_Array_Codec' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-json-deflate-array-codec.php' ), 'Automattic\\Jetpack\\Sync\\Listener' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-listener.php' ), 'Automattic\\Jetpack\\Sync\\Lock' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-lock.php' ), 'Automattic\\Jetpack\\Sync\\Main' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-main.php' ), 'Automattic\\Jetpack\\Sync\\Modules' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-modules.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Attachments' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-attachments.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Callables' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-callables.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Comments' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-comments.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Constants' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-constants.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Full_Sync_Immediately' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-full-sync-immediately.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Import' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-import.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Menus' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-menus.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Meta' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-meta.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Module' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-module.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Network_Options' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-network-options.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Options' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-options.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Plugins' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-plugins.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Posts' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-posts.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Protect' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-protect.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Search' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-search.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Stats' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-stats.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Term_Relationships' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-term-relationships.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Terms' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-terms.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Themes' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-themes.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Updates' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-updates.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\Users' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-users.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WP_Super_Cache' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-wp-super-cache.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce.php' ), 'Automattic\\Jetpack\\Sync\\Modules\\WooCommerce_HPOS_Orders' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/modules/class-woocommerce-hpos-orders.php' ), 'Automattic\\Jetpack\\Sync\\Package_Version' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-package-version.php' ), 'Automattic\\Jetpack\\Sync\\Queue' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue.php' ), 'Automattic\\Jetpack\\Sync\\Queue\\Queue_Storage_Options' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/sync-queue/class-queue-storage-options.php' ), 'Automattic\\Jetpack\\Sync\\Queue\\Queue_Storage_Table' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/sync-queue/class-queue-storage-table.php' ), 'Automattic\\Jetpack\\Sync\\Queue_Buffer' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-queue-buffer.php' ), 'Automattic\\Jetpack\\Sync\\REST_Endpoints' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-endpoints.php' ), 'Automattic\\Jetpack\\Sync\\REST_Sender' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-rest-sender.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-replicastore.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Usermeta' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-usermeta.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore\\Table_Checksum_Users' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/replicastore/class-table-checksum-users.php' ), 'Automattic\\Jetpack\\Sync\\Replicastore_Interface' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/interface-replicastore.php' ), 'Automattic\\Jetpack\\Sync\\Sender' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-sender.php' ), 'Automattic\\Jetpack\\Sync\\Server' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-server.php' ), 'Automattic\\Jetpack\\Sync\\Settings' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-settings.php' ), 'Automattic\\Jetpack\\Sync\\Simple_Codec' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-simple-codec.php' ), 'Automattic\\Jetpack\\Sync\\Users' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-users.php' ), 'Automattic\\Jetpack\\Sync\\Utils' => array( - 'version' => '1.57.0.0-alpha1695061509', + 'version' => '1.57.0.0-alpha1695064121', 'path' => $baseDir . '/jetpack_vendor/automattic/jetpack-sync/src/class-utils.php' ), 'Automattic\\Jetpack\\Terms_Of_Service' => array(