From eecc997bacfa1c001f353f4f3a355b90fdbb975d Mon Sep 17 00:00:00 2001 From: Juanma Rodriguez Escriche Date: Mon, 5 Aug 2024 11:55:51 +0200 Subject: [PATCH 1/5] Change checksum fields for HPOS tables --- .../packages/sync/src/replicastore/class-table-checksum.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/projects/packages/sync/src/replicastore/class-table-checksum.php b/projects/packages/sync/src/replicastore/class-table-checksum.php index 2095b970469cb..d1cd99dbc690b 100644 --- a/projects/packages/sync/src/replicastore/class-table-checksum.php +++ b/projects/packages/sync/src/replicastore/class-table-checksum.php @@ -311,7 +311,8 @@ protected function get_default_tables() { 'table' => "{$wpdb->prefix}wc_orders", 'range_field' => 'id', 'key_fields' => array( 'id' ), - 'checksum_text_fields' => array( 'type', 'status', 'payment_method_title' ), + 'checksum_fields' => array( 'date_updated_gmt', 'total_amount' ), + 'checksum_text_fields' => array( 'type', 'status' ), 'filter_values' => array(), 'is_table_enabled_callback' => 'Automattic\Jetpack\Sync\Replicastore\Table_Checksum::enable_woocommerce_hpos_tables', ), @@ -327,7 +328,8 @@ protected function get_default_tables() { 'table' => "{$wpdb->prefix}wc_order_operational_data", 'range_field' => 'order_id', 'key_fields' => array( 'order_id' ), - 'checksum_text_fields' => array( 'order_key', 'cart_hash' ), + 'checksum_fields' => array( 'date_paid_gmt', 'date_completed_gmt' ), + 'checksum_text_fields' => array( 'order_key' ), 'filter_values' => array(), 'is_table_enabled_callback' => 'Automattic\Jetpack\Sync\Replicastore\Table_Checksum::enable_woocommerce_hpos_tables', ), From 2b4b92fb26f24acabfdbdefc2a0dde40a32df935 Mon Sep 17 00:00:00 2001 From: Juanma Rodriguez Escriche Date: Mon, 5 Aug 2024 12:05:46 +0200 Subject: [PATCH 2/5] Changelog --- .../changelog/update-sync-hpos-checksum-fields-to-consider | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 projects/packages/sync/changelog/update-sync-hpos-checksum-fields-to-consider diff --git a/projects/packages/sync/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/packages/sync/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..4268b727bb631 --- /dev/null +++ b/projects/packages/sync/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,4 @@ +Significance: minor +Type: changed + +Sync: Change fields for HPOS checksums From 9e76422f456e0788d1a34d888122edc5f1d861b1 Mon Sep 17 00:00:00 2001 From: Juanma Rodriguez Escriche Date: Mon, 5 Aug 2024 12:58:49 +0200 Subject: [PATCH 3/5] Version bump --- projects/packages/sync/composer.json | 2 +- projects/packages/sync/src/class-package-version.php | 2 +- .../changelog/update-sync-hpos-checksum-fields-to-consider | 5 +++++ .../plugins/automattic-for-agencies-client/composer.lock | 4 ++-- .../changelog/update-sync-hpos-checksum-fields-to-consider | 5 +++++ projects/plugins/backup/composer.lock | 4 ++-- .../changelog/update-sync-hpos-checksum-fields-to-consider | 5 +++++ projects/plugins/boost/composer.lock | 4 ++-- .../changelog/update-sync-hpos-checksum-fields-to-consider | 5 +++++ projects/plugins/jetpack/composer.lock | 4 ++-- .../changelog/update-sync-hpos-checksum-fields-to-consider | 5 +++++ projects/plugins/migration/composer.lock | 4 ++-- .../changelog/update-sync-hpos-checksum-fields-to-consider | 5 +++++ projects/plugins/mu-wpcom-plugin/composer.lock | 4 ++-- .../changelog/update-sync-hpos-checksum-fields-to-consider | 5 +++++ projects/plugins/protect/composer.lock | 4 ++-- .../changelog/update-sync-hpos-checksum-fields-to-consider | 5 +++++ projects/plugins/search/composer.lock | 4 ++-- .../changelog/update-sync-hpos-checksum-fields-to-consider | 5 +++++ projects/plugins/social/composer.lock | 4 ++-- .../changelog/update-sync-hpos-checksum-fields-to-consider | 5 +++++ projects/plugins/starter-plugin/composer.lock | 4 ++-- .../changelog/update-sync-hpos-checksum-fields-to-consider | 5 +++++ projects/plugins/videopress/composer.lock | 4 ++-- .../changelog/update-sync-hpos-checksum-fields-to-consider | 5 +++++ projects/plugins/wpcomsh/composer.lock | 4 ++-- 26 files changed, 86 insertions(+), 26 deletions(-) create mode 100644 projects/plugins/automattic-for-agencies-client/changelog/update-sync-hpos-checksum-fields-to-consider create mode 100644 projects/plugins/backup/changelog/update-sync-hpos-checksum-fields-to-consider create mode 100644 projects/plugins/boost/changelog/update-sync-hpos-checksum-fields-to-consider create mode 100644 projects/plugins/jetpack/changelog/update-sync-hpos-checksum-fields-to-consider create mode 100644 projects/plugins/migration/changelog/update-sync-hpos-checksum-fields-to-consider create mode 100644 projects/plugins/mu-wpcom-plugin/changelog/update-sync-hpos-checksum-fields-to-consider create mode 100644 projects/plugins/protect/changelog/update-sync-hpos-checksum-fields-to-consider create mode 100644 projects/plugins/search/changelog/update-sync-hpos-checksum-fields-to-consider create mode 100644 projects/plugins/social/changelog/update-sync-hpos-checksum-fields-to-consider create mode 100644 projects/plugins/starter-plugin/changelog/update-sync-hpos-checksum-fields-to-consider create mode 100644 projects/plugins/videopress/changelog/update-sync-hpos-checksum-fields-to-consider create mode 100644 projects/plugins/wpcomsh/changelog/update-sync-hpos-checksum-fields-to-consider diff --git a/projects/packages/sync/composer.json b/projects/packages/sync/composer.json index 8799ba2a01ed2..3b23c37b2007b 100644 --- a/projects/packages/sync/composer.json +++ b/projects/packages/sync/composer.json @@ -59,7 +59,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index 65b7726f94850..ceaa8233b467c 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.4.0'; + const PACKAGE_VERSION = '3.5.0-alpha'; const PACKAGE_SLUG = 'sync'; diff --git a/projects/plugins/automattic-for-agencies-client/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/plugins/automattic-for-agencies-client/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/automattic-for-agencies-client/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/automattic-for-agencies-client/composer.lock b/projects/plugins/automattic-for-agencies-client/composer.lock index 3f8db4e218e78..ca048b7091d74 100644 --- a/projects/plugins/automattic-for-agencies-client/composer.lock +++ b/projects/plugins/automattic-for-agencies-client/composer.lock @@ -862,7 +862,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -895,7 +895,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/backup/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/plugins/backup/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/backup/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/backup/composer.lock b/projects/plugins/backup/composer.lock index 8d53bfec16617..08e0053816f30 100644 --- a/projects/plugins/backup/composer.lock +++ b/projects/plugins/backup/composer.lock @@ -1741,7 +1741,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1774,7 +1774,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/boost/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/plugins/boost/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/boost/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/boost/composer.lock b/projects/plugins/boost/composer.lock index 051107120acfd..7699c5b497ced 100644 --- a/projects/plugins/boost/composer.lock +++ b/projects/plugins/boost/composer.lock @@ -1725,7 +1725,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1758,7 +1758,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/jetpack/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/plugins/jetpack/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..a1c1831fa1ef7 --- /dev/null +++ b/projects/plugins/jetpack/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,5 @@ +Significance: patch +Type: other +Comment: Updated composer.lock. + + diff --git a/projects/plugins/jetpack/composer.lock b/projects/plugins/jetpack/composer.lock index 6fdc7c986ee24..2b99596507019 100644 --- a/projects/plugins/jetpack/composer.lock +++ b/projects/plugins/jetpack/composer.lock @@ -2683,7 +2683,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -2716,7 +2716,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/migration/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/plugins/migration/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/migration/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/migration/composer.lock b/projects/plugins/migration/composer.lock index 231c1869c2c36..29b55410e6646 100644 --- a/projects/plugins/migration/composer.lock +++ b/projects/plugins/migration/composer.lock @@ -1741,7 +1741,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1774,7 +1774,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/mu-wpcom-plugin/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/plugins/mu-wpcom-plugin/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/mu-wpcom-plugin/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/mu-wpcom-plugin/composer.lock b/projects/plugins/mu-wpcom-plugin/composer.lock index 77769b61f9d56..977ccb2c2d60f 100644 --- a/projects/plugins/mu-wpcom-plugin/composer.lock +++ b/projects/plugins/mu-wpcom-plugin/composer.lock @@ -1506,7 +1506,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1539,7 +1539,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/protect/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/plugins/protect/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/protect/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/protect/composer.lock b/projects/plugins/protect/composer.lock index 66a6006310078..776bd914c4d68 100644 --- a/projects/plugins/protect/composer.lock +++ b/projects/plugins/protect/composer.lock @@ -1654,7 +1654,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1687,7 +1687,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/search/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/plugins/search/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/search/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/search/composer.lock b/projects/plugins/search/composer.lock index eb5177194ec86..25eb8d1d9ce7c 100644 --- a/projects/plugins/search/composer.lock +++ b/projects/plugins/search/composer.lock @@ -1746,7 +1746,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1779,7 +1779,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/social/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/plugins/social/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/social/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/social/composer.lock b/projects/plugins/social/composer.lock index deaa2e7adc22f..a4cfeece7fb1c 100644 --- a/projects/plugins/social/composer.lock +++ b/projects/plugins/social/composer.lock @@ -1736,7 +1736,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1769,7 +1769,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/starter-plugin/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/plugins/starter-plugin/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/starter-plugin/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/starter-plugin/composer.lock b/projects/plugins/starter-plugin/composer.lock index b7f677677bf8c..adc407858cd5a 100644 --- a/projects/plugins/starter-plugin/composer.lock +++ b/projects/plugins/starter-plugin/composer.lock @@ -1597,7 +1597,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1630,7 +1630,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/videopress/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/plugins/videopress/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/videopress/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/videopress/composer.lock b/projects/plugins/videopress/composer.lock index 23e58bf1a3e6d..db56d7c3b0d46 100644 --- a/projects/plugins/videopress/composer.lock +++ b/projects/plugins/videopress/composer.lock @@ -1597,7 +1597,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1630,7 +1630,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ diff --git a/projects/plugins/wpcomsh/changelog/update-sync-hpos-checksum-fields-to-consider b/projects/plugins/wpcomsh/changelog/update-sync-hpos-checksum-fields-to-consider new file mode 100644 index 0000000000000..9aa70e3ec1f75 --- /dev/null +++ b/projects/plugins/wpcomsh/changelog/update-sync-hpos-checksum-fields-to-consider @@ -0,0 +1,5 @@ +Significance: patch +Type: changed +Comment: Updated composer.lock. + + diff --git a/projects/plugins/wpcomsh/composer.lock b/projects/plugins/wpcomsh/composer.lock index 2ccd641c15511..13941a0394251 100644 --- a/projects/plugins/wpcomsh/composer.lock +++ b/projects/plugins/wpcomsh/composer.lock @@ -1705,7 +1705,7 @@ "dist": { "type": "path", "url": "../../packages/sync", - "reference": "2965d36db9a224b6e142e46c92358b353eca463a" + "reference": "e8ba4ea2e343876391215025258d0454d88bdddc" }, "require": { "automattic/jetpack-connection": "@dev", @@ -1738,7 +1738,7 @@ "link-template": "https://github.com/Automattic/jetpack-sync/compare/v${old}...v${new}" }, "branch-alias": { - "dev-trunk": "3.4.x-dev" + "dev-trunk": "3.5.x-dev" }, "dependencies": { "test-only": [ From 87795eb6983b9c5624b8ff90ae3a7e29923b6827 Mon Sep 17 00:00:00 2001 From: Juanma Rodriguez Escriche Date: Mon, 5 Aug 2024 13:23:50 +0200 Subject: [PATCH 4/5] Version bump --- projects/plugins/wpcomsh/composer.json | 2 +- projects/plugins/wpcomsh/package.json | 2 +- projects/plugins/wpcomsh/wpcomsh.php | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/projects/plugins/wpcomsh/composer.json b/projects/plugins/wpcomsh/composer.json index 1ebd0a1bf3546..bfcb8ca3e89a2 100644 --- a/projects/plugins/wpcomsh/composer.json +++ b/projects/plugins/wpcomsh/composer.json @@ -128,7 +128,7 @@ "composer/installers": true, "roots/wordpress-core-installer": true }, - "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_2_0_alpha" + "autoloader-suffix": "26841ac2064774301cbe06d174833bfc_wpcomshⓥ5_2_1_alpha" }, "extra": { "mirror-repo": "Automattic/wpcom-site-helper", diff --git a/projects/plugins/wpcomsh/package.json b/projects/plugins/wpcomsh/package.json index 4c488eeeac439..a814014e13f69 100644 --- a/projects/plugins/wpcomsh/package.json +++ b/projects/plugins/wpcomsh/package.json @@ -3,7 +3,7 @@ "name": "@automattic/jetpack-wpcomsh", "description": "A helper for connecting WordPress.com sites to external host infrastructure.", "homepage": "https://jetpack.com", - "version": "5.2.0-alpha", + "version": "5.2.1-alpha", "bugs": { "url": "https://github.com/Automattic/jetpack/labels/[Plugin] Wpcomsh" }, diff --git a/projects/plugins/wpcomsh/wpcomsh.php b/projects/plugins/wpcomsh/wpcomsh.php index 35f773d19d55d..f037467f5099a 100644 --- a/projects/plugins/wpcomsh/wpcomsh.php +++ b/projects/plugins/wpcomsh/wpcomsh.php @@ -2,14 +2,14 @@ /** * Plugin Name: WordPress.com Site Helper * Description: A helper for connecting WordPress.com sites to external host infrastructure. - * Version: 5.2.0-alpha + * Version: 5.2.1-alpha * Author: Automattic * Author URI: http://automattic.com/ * * @package wpcomsh */ -define( 'WPCOMSH_VERSION', '5.2.0-alpha' ); +define( 'WPCOMSH_VERSION', '5.2.1-alpha' ); // If true, Typekit fonts will be available in addition to Google fonts add_filter( 'jetpack_fonts_enable_typekit', '__return_true' ); From 3956c64a7c362ab94b80d916c3a2261409167fab Mon Sep 17 00:00:00 2001 From: Juanma Rodriguez Escriche Date: Mon, 5 Aug 2024 16:43:45 +0200 Subject: [PATCH 5/5] Version bump --- projects/packages/sync/src/class-package-version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/packages/sync/src/class-package-version.php b/projects/packages/sync/src/class-package-version.php index 8237ced0e7ee8..ceaa8233b467c 100644 --- a/projects/packages/sync/src/class-package-version.php +++ b/projects/packages/sync/src/class-package-version.php @@ -12,7 +12,7 @@ */ class Package_Version { - const PACKAGE_VERSION = '3.4.1-alpha'; + const PACKAGE_VERSION = '3.5.0-alpha'; const PACKAGE_SLUG = 'sync';