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

Commit cfb8d5a

Browse files
committed
Updated readme.txt and testing instructions
1 parent 6366dc3 commit cfb8d5a

File tree

3 files changed

+57
-12
lines changed

3 files changed

+57
-12
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Testing notes and ZIP for release 11.6.1
2+
3+
Zip file for testing: [woocommerce-gutenberg-products-block.zip](https://github.com/woocommerce/woocommerce-blocks/files/13439996/woocommerce-gutenberg-products-block.zip)
4+
5+
## Testing Notes
6+
7+
### Add missing woocommerce classname to Classic Cart/Checkout Blocks container so UI updates when the cart is emptied. [#11919](https://github.com/woocommerce/woocommerce-blocks/pull/11919)
8+
9+
1. Edit the cart page
10+
2. Convert the cart block into a "Classic Cart" block if not already there. You can use block transforms.
11+
3. Save the page and go to the store.
12+
4. Add some items to your cart, then head on to the cart page.
13+
5. Remove each item from the cart using the X
14+
6. The last item should be removed from the cart successfully. You can also "undo" the change and the item will come back.
15+
16+
### Fix an issue that caused the Order by select in Reviews blocks to always be disabled. [#11918](https://github.com/woocommerce/woocommerce-blocks/pull/11918)
17+
18+
1. Make sure you have at least one review in your store.
19+
2. Create a post or page and add the All Reviews, Reviews by Category and Reviews by Product blocks (in the last two, select the category/product which have reviews).
20+
3. View the page in the frontend.
21+
4. Verify it's possible to change the _Order by_ value and reviews are sorted accordingly.
22+
23+
| Before | After |
24+
|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
25+
| <img src="https://github.com/woocommerce/woocommerce-blocks/assets/3616980/3a5dcd22-2df7-46e9-922f-087fdc295fe9" alt="Reviews blocks with the _Order by_ select disabled" width="539" /> | <img src="https://github.com/woocommerce/woocommerce-blocks/assets/3616980/bc840ae6-76f2-4830-95aa-9dd004e7bf47" alt="Reviews blocks with the _Order by_ select enabled" width="539" /> |
26+
27+
### Fix All Reviews, Reviews by Product and Reviews by Category blocks not being rendered. [#11913](https://github.com/woocommerce/woocommerce-blocks/pull/11913)
28+
29+
1. Make sure you have at least one review in your store.
30+
2. Create a post or page and add the All Reviews, Reviews by Category and Reviews by Product blocks (in the last two, select the category/product which have reviews).
31+
3. Verify no errors are shown in the editor.
32+
4. Verify the blocks are rendered properly in the frontend.
33+
34+
| Before | After |
35+
|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
36+
| <img src="https://github.com/woocommerce/woocommerce-blocks/assets/3616980/d3128bdc-b4cd-4304-a593-61dd8b09bf97" alt="Reviews blocks showing an error in the editor" width="539" /> | <img src="https://github.com/woocommerce/woocommerce-blocks/assets/3616980/6ad74a86-f5a8-4440-a3b3-e890efb8329b" alt="Reviews blocks showing no error in the editor" width="539" /> |

docs/internal-developers/testing/releases/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,3 +195,4 @@ Every release includes specific testing instructions for new features and bug fi
195195
- [11.5.1](./1151.md)
196196
- [11.5.4](./1154.md)
197197
- [11.6.0](./1160.md)
198+
- [11.6.1](./1161.md)

readme.txt

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -81,12 +81,20 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
8181

8282
== Changelog ==
8383

84-
= 11.6.0 - 2023-11-20 =
84+
= 11.6.1 - 2023-11-23 =
85+
86+
#### Bug Fixes
87+
88+
- Add missing woocommerce classname to Classic Cart/Checkout Blocks container so UI updates when the cart is emptied. [#11919](https://github.com/woocommerce/woocommerce-blocks/pull/11919)
89+
- Fix an issue that caused the Order by select in Reviews blocks to always be disabled. [#11918](https://github.com/woocommerce/woocommerce-blocks/pull/11918)
90+
- Fix All Reviews, Reviews by Product and Reviews by Category blocks not being rendered. [#11913](https://github.com/woocommerce/woocommerce-blocks/pull/11913)
91+
92+
= 11.6.0 - 2023-11-22 =
8593

8694
#### Enhancements
8795

8896
- Product Collection - New 'No Results' block with default UI. [#11783](https://github.com/woocommerce/woocommerce-blocks/pull/11783)
89-
- WWe have moved the TotalsItem, TotalsFees, Subtotal, Banner, StoreNotice, StoreNotices, Panel, TextInput, ValidatedTextInput and ValidationInputError components to the @woocommerce/blocks-components package. Previously these were available in @woocommerce/blocks-checkout . Your code will continue to work as we have added aliases to the new location. Despite this, it is recommended that you change your code to import this component from @woocommerce/blocks-components as the import from the checkout package will be deprecated in the future. [#11766](https://github.com/woocommerce/woocommerce-blocks/pull/11766) [#11698](https://github.com/woocommerce/woocommerce-blocks/pull/11698) [#11654](https://github.com/woocommerce/woocommerce-blocks/pull/11654) [#11773](https://github.com/woocommerce/woocommerce-blocks/pull/11773)
97+
- We have moved the TotalsItem, TotalsFees, Subtotal, Banner, StoreNotice, StoreNotices, Panel, TextInput, ValidatedTextInput and ValidationInputError components to the @woocommerce/blocks-components package. Previously these were available in @woocommerce/blocks-checkout . Your code will continue to work as we have added aliases to the new location. Despite this, it is recommended that you change your code to import this component from @woocommerce/blocks-components as the import from the checkout package will be deprecated in the future. [#11766](https://github.com/woocommerce/woocommerce-blocks/pull/11766) [#11698](https://github.com/woocommerce/woocommerce-blocks/pull/11698) [#11654](https://github.com/woocommerce/woocommerce-blocks/pull/11654) [#11773](https://github.com/woocommerce/woocommerce-blocks/pull/11773)
9098
- Improve performance in patterns registration. [#11733](https://github.com/woocommerce/woocommerce-blocks/pull/11733)
9199
- Patterns: remove unused author, sticky, and parents attributes from the Product Collection block in patterns. [#11673](https://github.com/woocommerce/woocommerce-blocks/pull/11673)
92100
- Semantic enhancement to the position of a phone field in Checkout. [#11651](https://github.com/woocommerce/woocommerce-blocks/pull/11651)
@@ -336,7 +344,7 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
336344
- Fix Store Notices block breaks page editors. ([11165](https://github.com/woocommerce/woocommerce-blocks/pull/11165))
337345
- Ensure the Just Arrived Full Hero pattern can have an AI-selected images assigned to it and add a background dim. ([11159](https://github.com/woocommerce/woocommerce-blocks/pull/11159))
338346
- Testimonials 3 Columns pattern > Update the width and fix the PHP warnings that could be triggered if the content saved within the wc_blocks_patterns_content option didn't match the updated patterns dictionary. ([11158](https://github.com/woocommerce/woocommerce-blocks/pull/11158))
339-
- Pattern: Fetch product ID with JS to prevent unnecesary queries on every page load. ([11138](https://github.com/woocommerce/woocommerce-blocks/pull/11138))
347+
- Pattern: Fetch product ID with JS to prevent unnecessary queries on every page load. ([11138](https://github.com/woocommerce/woocommerce-blocks/pull/11138))
340348
- Fix checkout state/country field width in the site editor. ([11133](https://github.com/woocommerce/woocommerce-blocks/pull/11133))
341349
- Fixed PHP notice that would appear if an API endpoint failed to load. ([11128](https://github.com/woocommerce/woocommerce-blocks/pull/11128))
342350
- Made error icon on checkout match text color. ([11127](https://github.com/woocommerce/woocommerce-blocks/pull/11127))
@@ -757,7 +765,7 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
757765
- Blockified Single Product Template: Add product-classes. ([9697](https://github.com/woocommerce/woocommerce-blocks/pull/9697))
758766
- Blockified Single Product Template: Show upsells. ([9636](https://github.com/woocommerce/woocommerce-blocks/pull/9636))
759767
- Template Placeholder Design for the Order Received Template. ([9602](https://github.com/woocommerce/woocommerce-blocks/pull/9602))
760-
- Mini-Cart: Update cart error notices to be non-dismissable (to match the behavior of the regular Cart). ([9578](https://github.com/woocommerce/woocommerce-blocks/pull/9578))
768+
- Mini-Cart: Update cart error notices to be non-dismissible (to match the behavior of the regular Cart). ([9578](https://github.com/woocommerce/woocommerce-blocks/pull/9578))
761769
- Classic Product Template block visible in the inserter. ([9573](https://github.com/woocommerce/woocommerce-blocks/pull/9573))
762770
- Hide the Product Rating when the product has no reviews. Previously, a link to the Reviews section was displayed. ([9556](https://github.com/woocommerce/woocommerce-blocks/pull/9556))
763771
- Reduced the amount of settings data consumed by the cart and checkout blocks. ([9552](https://github.com/woocommerce/woocommerce-blocks/pull/9552))
@@ -893,7 +901,7 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
893901

894902
- Fix: Ensure the product title within the Single Product Block matches the selected product instead of the title of the post/page where it was inserted. ([9335](https://github.com/woocommerce/woocommerce-blocks/pull/9335))
895903
- Fix a regression which caused the Mini Cart drawer not to open until its contents have completely loaded. ([9329](https://github.com/woocommerce/woocommerce-blocks/pull/9329))
896-
- Prevent email being cleared when changing shipping method or when first entering shipping informaiton. ([9328](https://github.com/woocommerce/woocommerce-blocks/pull/9328))
904+
- Prevent email being cleared when changing shipping method or when first entering shipping information. ([9328](https://github.com/woocommerce/woocommerce-blocks/pull/9328))
897905
- Product Image Gallery: Fix resize width when the window resizes. ([9299](https://github.com/woocommerce/woocommerce-blocks/pull/9299))
898906
- Product Image Gallery: Fix the inline displayed issue. ([9297](https://github.com/woocommerce/woocommerce-blocks/pull/9297))
899907
- Single Product Template - Related Products: Fix items per page option. ([9286](https://github.com/woocommerce/woocommerce-blocks/pull/9286))
@@ -1057,7 +1065,7 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
10571065

10581066
#### Bug Fixes
10591067

1060-
- Fixed an issue where extensions were unable to programatically set the shipping address during payment processing. ([8878](https://github.com/woocommerce/woocommerce-blocks/pull/8878))
1068+
- Fixed an issue where extensions were unable to programmatically set the shipping address during payment processing. ([8878](https://github.com/woocommerce/woocommerce-blocks/pull/8878))
10611069
- Fix border styles not visible in the editor in Featured Product and Featured Category blocks. ([8838](https://github.com/woocommerce/woocommerce-blocks/pull/8838))
10621070
- Fix Local Pickup "Save changes" default behavior bug in the Firefox browser. ([8754](https://github.com/woocommerce/woocommerce-blocks/pull/8754))
10631071

@@ -1115,7 +1123,7 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
11151123
- Products by Attributes: Fix the block rendered empty in the Editor. ([8759](https://github.com/woocommerce/woocommerce-blocks/pull/8759))
11161124
- Fix the local pickup price in the shipping type selector and pickup options. ([8623](https://github.com/woocommerce/woocommerce-blocks/pull/8623))
11171125
- Enable users to migrate to the blockified Single Product template.([8902](https://github.com/woocommerce/woocommerce-blocks/pull/8902))
1118-
- Fixed an issue where extensions were unable to programatically set the shipping address during payment processing. ([8878](https://github.com/woocommerce/woocommerce-blocks/pull/8878))
1126+
- Fixed an issue where extensions were unable to programmatically set the shipping address during payment processing. ([8878](https://github.com/woocommerce/woocommerce-blocks/pull/8878))
11191127
- Fix unlinked border widths not being applied correctly in the frontend in WP 6.2 for some blocks. ([8893](https://github.com/woocommerce/woocommerce-blocks/pull/8893))
11201128

11211129
= 9.8.0 - 2023-03-14 =
@@ -1299,7 +1307,7 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
12991307

13001308
#### Bug Fixes
13011309

1302-
- Check if session is set before returing updated customer address. ([8537](https://github.com/woocommerce/woocommerce-blocks/pull/8537))
1310+
- Check if session is set before returning updated customer address. ([8537](https://github.com/woocommerce/woocommerce-blocks/pull/8537))
13031311

13041312
= 9.4.3 - 2023-02-01 =
13051313

@@ -1555,7 +1563,7 @@ Prevent Cart and Checkout notices from disappearing immediately after adding. ([
15551563

15561564
#### Bug fixes
15571565

1558-
- Fix a bug in which cart totals aren't recalculated aftering running CartExtensions ([#7490](https://github.com/woocommerce/woocommerce-blocks/pull/7490))
1566+
- Fix a bug in which cart totals aren't recalculated after running CartExtensions ([#7490](https://github.com/woocommerce/woocommerce-blocks/pull/7490))
15591567

15601568
= 8.8.0 - 2022-10-24 =
15611569

@@ -1773,7 +1781,7 @@ Prevent Cart and Checkout notices from disappearing immediately after adding. ([
17731781
- Fix missing translations in the inspector (editor mode). ([6737](https://github.com/woocommerce/woocommerce-blocks/pull/6737))
17741782
- Fix: Navigate through Mini Cart contents with keyboard. ([6731](https://github.com/woocommerce/woocommerce-blocks/pull/6731))
17751783
- Fix: Ensure add to cart notices are displayed on pages containing the Mini Cart block. ([6728](https://github.com/woocommerce/woocommerce-blocks/pull/6728))
1776-
- Fix Cart an d Checkout blocks compatiblity issue with wordpress.com in which blocks wouldn't load in the editor. ([6718](https://github.com/woocommerce/woocommerce-blocks/pull/6718))
1784+
- Fix Cart an d Checkout blocks compatibility issue with wordpress.com in which blocks wouldn't load in the editor. ([6718](https://github.com/woocommerce/woocommerce-blocks/pull/6718))
17771785
- Fixes an issue where search lists would not preserve the case of the original item. ([6551](https://github.com/woocommerce/woocommerce-blocks/pull/6551))
17781786

17791787
= 8.1.0 - 2022-07-18 =
@@ -1800,7 +1808,7 @@ Prevent Cart and Checkout notices from disappearing immediately after adding. ([
18001808

18011809
#### Bug Fixes
18021810

1803-
- Fix: Correctly calculacte taxes for local pickups. ([6631](https://github.com/woocommerce/woocommerce-blocks/pull/6631))
1811+
- Fix: Correctly calculate taxes for local pickups. ([6631](https://github.com/woocommerce/woocommerce-blocks/pull/6631))
18041812
- Fix: Ensure WooCommerce templates show correct titles. ([6452](https://github.com/woocommerce/woocommerce-blocks/pull/6452))
18051813

18061814
= 7.9.0 - 2022-06-20 =
@@ -3060,7 +3068,7 @@ You can read [more about the release here](https://woocommerce.wordpress.com/?p=
30603068
- Show a message in the editor if no products are found rather than show nothing.
30613069
- Show previews for all included blocks in the block inserter. Requires WordPress 5.3.
30623070
- Products on Sale, Products Tag and Product Search blocks have new icons.
3063-
- Officialy deprecate NPM package `@woocommerce/block-library`.
3071+
- Officially deprecate NPM package `@woocommerce/block-library`.
30643072
- Use Server Side Rendering for Product Category List block to remove the need to pass large amounts of data around when not needed.
30653073
- RTL fixes to several blocks.
30663074
- All block icons are displayed gray in the editor shortcuts inserter.

0 commit comments

Comments
 (0)