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

Commit a337741

Browse files
committed
Version bumping & documentation for release 10.8.1
The primary changes include: 1. **Version Bumping**: Updated the version from 10.8.0 to 10.8.1 in several files including `composer.json`, `package-lock.json`, `package.json`, `readme.txt`, `src/Package.php`, and `woocommerce-gutenberg-products-block.php`. 2. **Documentation**: - Added a new testing notes file for release 10.8.1 (`docs/internal-developers/testing/releases/1081.md`). This file provides testing procedures for two bug fixes introduced in this release. 3. **Changelog**: Updated the `readme.txt` to include the bug fixes in the 10.8.1 changelog section. This release focuses on enhancing stability and user experience by addressing critical bugs.
1 parent 06504d4 commit a337741

File tree

7 files changed

+37
-7
lines changed

7 files changed

+37
-7
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "WooCommerce blocks for the Gutenberg editor.",
44
"homepage": "https://woocommerce.com/",
55
"type": "wordpress-plugin",
6-
"version": "10.8.0",
6+
"version": "10.8.1",
77
"keywords": [
88
"gutenberg",
99
"woocommerce",
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Testing notes and ZIP for release 10.8.1
2+
3+
Zip file for testing:
4+
5+
## WooCommerce Core
6+
7+
### Classic Template block registration: add defensive type handling [#10475](https://github.com/woocommerce/woocommerce-blocks/pull/10475)
8+
9+
1. Ensure that you have installed Gutenberg 16.3.0.
10+
2. Open the Site Editor.
11+
3. Click on the navigation.
12+
4. Click on the pencil (to edit button).
13+
5. Ensure that the Site Editor doesn't crash
14+
15+
| Before | After |
16+
|--------|--------|
17+
| <video src=https://github.com/woocommerce/woocommerce-blocks/assets/4463174/86ce276e-e372-40e1-8142-cfde84e32bd6 /> | <video src=https://github.com/woocommerce/woocommerce-blocks/assets/4463174/e655eab3-6339-47c9-8447-d9b06c55b795/> |
18+
19+
### Update check for active cart template and migration routine [#10462](https://github.com/woocommerce/woocommerce-blocks/pull/10462)
20+
21+
1. Go to Pages > Cart and edit the page. It will load the site editor. Add some text below the header, for example. Feel free to add anything for testing purposes. Save the template.
22+
2. Add an item to your cart and then load the Cart page on the front end. Ensure your changes from step 1 are visible.
23+
3. Go to the WP Dasboard, then WooCommerce > Settings > Advanced and change the cart page slug to something different. Repeat step 2 and ensure it still works with your change visible. Ensure the path to the Cart page shown in your browser is the one you updated it to.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@woocommerce/block-library",
33
"title": "WooCommerce Blocks",
44
"author": "Automattic",
5-
"version": "10.8.0",
5+
"version": "10.8.1",
66
"description": "WooCommerce blocks for the Gutenberg editor.",
77
"homepage": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/",
88
"keywords": [

readme.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: gutenberg, woocommerce, woo commerce, products, blocks, woocommerce blocks
44
Requires at least: 6.2
55
Tested up to: 6.2
66
Requires PHP: 7.3
7-
Stable tag: 10.8.0
7+
Stable tag: 10.8.1
88
License: GPLv3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -81,6 +81,13 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
8181

8282
== Changelog ==
8383

84+
= 10.8.1 - 2023-08-07 =
85+
86+
#### Bug Fixes
87+
88+
- Classic Template block registration: Add defensive type handling. ([10475](https://github.com/woocommerce/woocommerce-blocks/pull/10475))
89+
- Fixed an issue where modifications to the Cart/Checkout templates made in the site editor would not be visible on the front end. [#10462](https://github.com/woocommerce/woocommerce-blocks/pull/10462)
90+
8491
= 10.8.0 - 2023-07-31 =
8592

8693
#### Enhancements

src/Package.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ public static function container( $reset = false ) {
109109
NewPackage::class,
110110
function ( $container ) {
111111
// leave for automated version bumping.
112-
$version = '10.8.0';
112+
$version = '10.8.1';
113113
return new NewPackage(
114114
$version,
115115
dirname( __DIR__ ),

woocommerce-gutenberg-products-block.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WooCommerce Blocks
44
* Plugin URI: https://github.com/woocommerce/woocommerce-gutenberg-products-block
55
* Description: WooCommerce blocks for the Gutenberg editor.
6-
* Version: 10.8.0
6+
* Version: 10.8.1
77
* Author: Automattic
88
* Author URI: https://woocommerce.com
99
* Text Domain: woo-gutenberg-products-block

0 commit comments

Comments
 (0)