Skip to content
This repository has been archived by the owner on Feb 23, 2024. It is now read-only.

Commit

Permalink
Release: 6.1.0 (#4924)
Browse files Browse the repository at this point in the history
* Empty commit for release pull request

* Update readme.txt with release changelog

* Add testing instructions for 6.1.0 release

* Update readme.txt with release changelog

* #4625 product categories list block hierarchy display fix (#4920)

* Update link to testing zip

* Remove mini cart testing from instructions

This is because mini-cart is only in experimental builds.

* Update changelog and testing notes

* Correct typo in testing instructions

* Update testing instructions

* Bumping version strings to new version.

Co-authored-by: github-actions <[email protected]>
Co-authored-by: Thomas Roberts <[email protected]>
Co-authored-by: Ovidiu Liuta <[email protected]>
  • Loading branch information
4 people authored Oct 12, 2021
1 parent b7574b2 commit 81d403a
Show file tree
Hide file tree
Showing 6 changed files with 54 additions and 4 deletions.
39 changes: 39 additions & 0 deletions docs/testing/releases/610.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
## Testing notes and ZIP for release 6.1.0

Zip file for testing: [woocommerce-gutenberg-products-block.zip](https://github.com/woocommerce/woocommerce-gutenberg-products-block/files/7329441/woocommerce-gutenberg-products-block.zip)

## Feature Plugin
### Remove IntersectionObserver shim in favor of dropping IE11 support. ([4808](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4808))
1. Smoke test the Cart block and ensure no errors appear in the console

## Feature plugin and package inclusion in WooCommerce

### Product categories list block hierarchy display fix ([4920](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4920))
1. Create 4 WooCommerce product categories, each one nested under the previous one created, like follows:
- Level 1
- Level 2
- Level 3
- Level 4
2. Add a product to the last category
3. To a page, add the block Product Categories List
4. Under the block settings > List settings > Display style, pick "Dropdown"
5. Again under the block settings > Content, switch On "Show hierarchy"
6. Save and view page

### Fixed string translations within the All Products Block. ([4897](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4897))
1. Switch to Brazilian Portuguese translation.
2. View the all products block. Confirm sale badges are translated to "Oferta".

### Filter By Price: Update aria values to be more representative of the actual values presented. ([4839](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4839))
1. Add the Filter By Price block to your All Products page
2. Turn Voice Over on your Mac (click the power button 3 times to do this)
3. Move the slider back and forth, the voice should say "Ninety" instead of "Nine thousand" for example.

### Fixed: Filter button from Filter Products by Attribute block is not aligned with the input field. ([4814](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4814))
1. Add the Filter Products by Attribute block and select 'Display Style: Dropdown' and check 'Filter button'.
2. See the filter button aligned correctly on both editor and front end.

### Prefix the search input id with wc- instead of wp- ([4882](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4882))
1. Add a WordPress search block to a page.
2. Add a Product search block to the same page.
3. Go to frontend and open the browser tools console, ensure no errors about elements with non-unique IDs appear (relating to the search box ID).
1 change: 1 addition & 0 deletions docs/testing/releases/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,5 @@ Every release includes specific testing instructions for new features and bug fi
- [5.9.0](./590.md)
- [5.9.1](./591.md)
- [6.0.0](./600.md)
- [6.1.0](./610.md)

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@woocommerce/block-library",
"title": "WooCommerce Blocks",
"author": "Automattic",
"version": "6.1.0-dev",
"version": "6.1.0",
"description": "WooCommerce blocks for the Gutenberg editor.",
"homepage": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/",
"keywords": [
Expand Down
12 changes: 11 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.0-dev
Stable tag: 6.1.0
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -85,6 +85,16 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/

== Changelog ==

= 6.1.0 - 2021-10-12 =

#### Bug Fixes

- Fix the dropdown list in Product Category List Block for nested categories ([4920](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4920))
- Fixed string translations within the All Products Block. ([4897](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4897))
- Filter By Price: Update aria values to be more representative of the actual values presented. ([4839](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4839))
- Fixed: Filter button from Filter Products by Attribute block is not aligned with the input field. ([4814](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4814))
- Remove IntersectionObserver shim in favor of dropping IE11 support. ([4808](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4808))

= 6.0.0 - 2021-09-28 =

#### Enhancements
Expand Down
2 changes: 1 addition & 1 deletion src/Package.php
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public static function container( $reset = false ) {
NewPackage::class,
function ( $container ) {
// leave for automated version bumping.
$version = '6.1.0-dev';
$version = '6.1.0';
return new NewPackage(
$version,
dirname( __DIR__ ),
Expand Down
2 changes: 1 addition & 1 deletion woocommerce-gutenberg-products-block.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.1.0-dev
* Version: 6.1.0
* Author: Automattic
* Author URI: https://woocommerce.com
* Text Domain: woo-gutenberg-products-block
Expand Down

0 comments on commit 81d403a

Please sign in to comment.