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

Commit

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

* Add changelog

* update testing notes

* Bumping version strings to new version.

Co-authored-by: github-actions <github-actions@github.com>
Co-authored-by: Darren Ethier <darren@roughsmootheng.in>
  • Loading branch information
3 people committed May 10, 2021
1 parent f592f8b commit 808b1db
Show file tree
Hide file tree
Showing 6 changed files with 40 additions and 4 deletions.
23 changes: 23 additions & 0 deletions docs/testing/releases/510.md
@@ -0,0 +1,23 @@
## Testing notes and ZIP for release 5.1.0

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

## Feature plugin only

### General smoke testing

The following are related to various changes impacting existing flows, so smoke testing is needed to verify there are no regressions:

- Place orders via the Checkout block and ensure the following:
- All payment methods included with the blocks work as expected for completing the order.
- Intentionally triggering payment errors for various payment methods surface the errors as expected and another payment method can be tried.
- Express payment methods (via Stripe) work as expected in both the Cart context and Checkout context.

### Fixed bug with clearing email and phone fields when using separate billing address.

Test both guest and logged in scenarios for the following:

- On checkout, fill out email address, shipping fields, and phone number.
- Uncheck "use shipping for billing" checkbox.
- Verify email and phone fields still have their values.
- Submit the order and make sure those values persist on the server with the order.
1 change: 1 addition & 0 deletions docs/testing/releases/README.md
Expand Up @@ -30,3 +30,4 @@ Every release includes specific testing instructions for new features and bug fi
- [4.9.0](./490.md)
- [4.9.1](./491.md)
- [5.0.0](./500.md)
- [5.1.0](./510.md)
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "@woocommerce/block-library",
"title": "WooCommerce Blocks",
"author": "Automattic",
"version": "5.1.0-dev",
"version": "5.1.0",
"description": "WooCommerce blocks for the Gutenberg editor.",
"homepage": "https://github.com/woocommerce/woocommerce-gutenberg-products-block/",
"keywords": [
Expand Down
14 changes: 13 additions & 1 deletion readme.txt
Expand Up @@ -4,7 +4,7 @@ Tags: gutenberg, woocommerce, woo commerce, products, blocks, woocommerce blocks
Requires at least: 5.5
Tested up to: 5.7
Requires PHP: 7.0
Stable tag: 5.0.0
Stable tag: 5.1.0
License: GPLv3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

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

== Changelog ==

= 5.1.0 - 2021-05-10 =

#### Enhancements

- Improve error message displayed when a payment method didn't have all its dependencies registered. ([4176](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4176))
- Improvements to `emitEventWithAbort`. ([4158](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4158))

#### Bug Fixes

- Fix issue in which email and phone fields are cleared when using a separate billing address. ([4162](https://github.com/woocommerce/woocommerce-gutenberg-products-block/pull/4162))


= 5.0.0 - 2021-04-28 =

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

0 comments on commit 808b1db

Please sign in to comment.