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 <github-actions@github.com> Co-authored-by: Tom Cafferkey <tjcafferkey@gmail.com>
This commit is contained in:
parent
b927ca6a9f
commit
212085bbd8
|
@ -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
|
|
@ -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)
|
||||
|
|
|
@ -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": [
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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__ ),
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue