From 212085bbd8893552261d13eae426464ecd0bb45d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Dec 2021 11:47:28 +0000 Subject: [PATCH] Release: 6.5.0 (https://github.com/woocommerce/woocommerce-blocks/pull/5321) * Empty commit for release pull request * Update readme.txt and add 6.5.0 testing notes * Update build link * Update CSV link * Testing instruction titles. * Bumping version strings to new version. Co-authored-by: github-actions Co-authored-by: Tom Cafferkey --- .../docs/testing/releases/650.md | 33 +++++++++++++++++++ .../docs/testing/releases/README.md | 1 + plugins/woocommerce-blocks/package.json | 2 +- plugins/woocommerce-blocks/readme.txt | 12 ++++++- plugins/woocommerce-blocks/src/Package.php | 2 +- .../woocommerce-gutenberg-products-block.php | 2 +- 6 files changed, 48 insertions(+), 4 deletions(-) create mode 100644 plugins/woocommerce-blocks/docs/testing/releases/650.md diff --git a/plugins/woocommerce-blocks/docs/testing/releases/650.md b/plugins/woocommerce-blocks/docs/testing/releases/650.md new file mode 100644 index 00000000000..9392f9cfaf3 --- /dev/null +++ b/plugins/woocommerce-blocks/docs/testing/releases/650.md @@ -0,0 +1,33 @@ +## Testing notes and ZIP for release 6.5.0 + +Zip file for testing: [woocommerce-gutenberg-products-block.zip](https://github.com/woocommerce/woocommerce-gutenberg-products-block/files/7661998/woocommerce-gutenberg-products-block.zip) + +## Feature Plugin + +### Add global style for Product Categories List block ([5133](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5133)) + +1. Install and enable Gutenberg plugin +2. Install and enable a block theme (e.g. TT1 Blocks) +3. Add the "Product Categories List" block to a post +4. Verify you can change the text color, font size, and line-height. +5. Save +6. Go on the page and check if there are changes +7. Reset to default +8. In WP Admin go to the Site Editor via the menu item. +9. Click on the Global styles icon +10. Verify the Product Categories List block is shown, and you can tweak its styles +11. Save +12. Go on the page created earlier and check if all styles are applied correctly +13. Edit previous post/page again +14. Change again text color, font size, and line-height +15. Save +16. Check if these styles have priority over the styles from the Site editor. + +## Feature plugin and package inclusion in WooCommerce + +### Fix Featured Product Search not working for large stores ([5156](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5156)) + +1. Ensure you have a large catalog of above 100 products (or download [this](https://github.com/woocommerce/woocommerce-gutenberg-products-block/files/7666753/100_wc_products.csv) CSV) +2. Insert Featured Product Block in the editor +3. Enter a search term for a product not visible in the list (if you've downloaded the above CSV try WordPress Pennant) +4. Should see relevant search results based on search diff --git a/plugins/woocommerce-blocks/docs/testing/releases/README.md b/plugins/woocommerce-blocks/docs/testing/releases/README.md index 08a4ebee8e0..4b5adde93d7 100644 --- a/plugins/woocommerce-blocks/docs/testing/releases/README.md +++ b/plugins/woocommerce-blocks/docs/testing/releases/README.md @@ -52,3 +52,4 @@ Every release includes specific testing instructions for new features and bug fi - [6.3.2](./632.md) - [6.3.3](./633.md) - [6.4.0](./640.md) +- [6.5.0](./650.md) diff --git a/plugins/woocommerce-blocks/package.json b/plugins/woocommerce-blocks/package.json index 0891c2a5177..7f994d25134 100644 --- a/plugins/woocommerce-blocks/package.json +++ b/plugins/woocommerce-blocks/package.json @@ -2,7 +2,7 @@ "name": "@woocommerce/block-library", "title": "WooCommerce Blocks", "author": "Automattic", - "version": "6.5.0-dev", + "version": "6.5.0", "description": "WooCommerce blocks for the Gutenberg editor.", "homepage": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/", "keywords": [ diff --git a/plugins/woocommerce-blocks/readme.txt b/plugins/woocommerce-blocks/readme.txt index 1c2574eae4b..b20271b9ba5 100644 --- a/plugins/woocommerce-blocks/readme.txt +++ b/plugins/woocommerce-blocks/readme.txt @@ -4,7 +4,7 @@ Tags: gutenberg, woocommerce, woo commerce, products, blocks, woocommerce blocks Requires at least: 5.8 Tested up to: 5.8 Requires PHP: 7.0 -Stable tag: 6.5.0-dev +Stable tag: 6.5.0 License: GPLv3 License URI: https://www.gnu.org/licenses/gpl-3.0.html @@ -85,6 +85,16 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/ == Changelog == += 6.5.0 - 2021-12-06 = + +#### Enhancements + +- Added global styles (text color, link color, line height, and font size) to the Product Title block. ([5133](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5133)) + +#### Bug Fixes + +- Fixed Featured Product Block search not working for large stores. ([5156](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/5156)) + = 6.4.0 - 2021-11-22 = #### Enhancements diff --git a/plugins/woocommerce-blocks/src/Package.php b/plugins/woocommerce-blocks/src/Package.php index 20bea647017..8c0baed1b93 100644 --- a/plugins/woocommerce-blocks/src/Package.php +++ b/plugins/woocommerce-blocks/src/Package.php @@ -106,7 +106,7 @@ class Package { NewPackage::class, function ( $container ) { // leave for automated version bumping. - $version = '6.5.0-dev'; + $version = '6.5.0'; return new NewPackage( $version, dirname( __DIR__ ), diff --git a/plugins/woocommerce-blocks/woocommerce-gutenberg-products-block.php b/plugins/woocommerce-blocks/woocommerce-gutenberg-products-block.php index 9c505cb1d22..2293312ea84 100644 --- a/plugins/woocommerce-blocks/woocommerce-gutenberg-products-block.php +++ b/plugins/woocommerce-blocks/woocommerce-gutenberg-products-block.php @@ -3,7 +3,7 @@ * Plugin Name: WooCommerce Blocks * Plugin URI: https://github.com/woocommerce/woocommerce-gutenberg-products-block * Description: WooCommerce blocks for the Gutenberg editor. - * Version: 6.5.0-dev + * Version: 6.5.0 * Author: Automattic * Author URI: https://woocommerce.com * Text Domain: woo-gutenberg-products-block