Release: 9.4.4 (https://github.com/woocommerce/woocommerce-blocks/pull/8551)
* Empty commit for release pull request * update readme * Switch to select instead of resolveSelector (https://github.com/woocommerce/woocommerce-blocks/pull/8356) * Mini Cart block - Fix the drawer content height to allow checkout button to show. (https://github.com/woocommerce/woocommerce-blocks/pull/8351) * Add max-height to Mini Cart drawer. By giving the Mini Cart contents a max height with the -webkit-fill-available property, we can ensure that the browser chrome is accounted for on mobile devices. * Add `dvh` and keep `vh` as a fallback for height. By adding `dvh`, we also account for non-webkit mobile browsers that have the same hidden button issue. See https://github.com/woocommerce/woocommerce-blocks/pull/8351#pullrequestreview-1278867767 Keeping `vh` as a fallback, along with `-webkit-fill-available` gives us the widest range of support. * update readme with changelog * add testing steps * add pr links to readme * Bumping version strings to new version. * Check for null session before going forward (https://github.com/woocommerce/woocommerce-blocks/pull/8537) * add testing instructions * Empty commit for release pull request * add zip link * Update zip link * update zip link for testing * Bumping version strings to new version. --------- Co-authored-by: github-actions <github-actions@github.com> Co-authored-by: Nadir Seghir <nadir.seghir@gmail.com> Co-authored-by: Daniel W. Robert <danielwrobert@users.noreply.github.com> Co-authored-by: Luigi <gigitux@gmail.com> Co-authored-by: Paulo Arromba <17236129+wavvves@users.noreply.github.com>
This commit is contained in:
parent
3b79c8de18
commit
31bde6c3a1
|
@ -0,0 +1,15 @@
|
|||
# Testing notes and ZIP for release 9.4.4
|
||||
|
||||
Zip file for testing: [woocommerce-gutenberg-products-block.zip](https://github.com/woocommerce/woocommerce-blocks/files/10841444/woocommerce-gutenberg-products-block.zip)
|
||||
|
||||
## Feature plugin and package inclusion in WooCommerce
|
||||
|
||||
### Check if session is set before returing updated customer address. ([8537](https://github.com/woocommerce/woocommerce-blocks/pull/8537))
|
||||
|
||||
1. Install [AvaTax](https://woocommerce.com/products/woocommerce-avatax/) (credentials in secret 7715) and set it up so taxes are applied to your orders. I used a store in the USA and used USA addresses.
|
||||
2. Install WooCommerce Subscriptions
|
||||
3. Create a Subscription product and add it to your cart. Then check out.
|
||||
4. Open the **subscription** in the WP dashboard and from the subscription actions box choose "Process renewal"
|
||||
5. <img width="319" alt="image" src="https://user-images.githubusercontent.com/5656702/219742801-c2d87718-ddad-4622-a2b2-b9f7eb3befdf.png">
|
||||
6. There is no error and the sum is correct.
|
||||
|
|
@ -118,6 +118,7 @@ Every release includes specific testing instructions for new features and bug fi
|
|||
- [9.4.1](./941.md)
|
||||
- [9.4.2](./942.md)
|
||||
- [9.4.3](./943.md)
|
||||
- [9.4.4](./944.md)
|
||||
|
||||
<!-- FEEDBACK -->
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
"name": "@woocommerce/block-library",
|
||||
"title": "WooCommerce Blocks",
|
||||
"author": "Automattic",
|
||||
"version": "9.4.3",
|
||||
"version": "9.4.4",
|
||||
"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: 6.1.1
|
||||
Tested up to: 6.1.1
|
||||
Requires PHP: 7.2
|
||||
Stable tag: 9.4.3
|
||||
Stable tag: 9.4.4
|
||||
License: GPLv3
|
||||
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
||||
|
||||
|
@ -80,6 +80,12 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 9.4.4 - 2023-02-27 =
|
||||
|
||||
#### Bug Fixes
|
||||
|
||||
- Check if session is set before returing updated customer address. ([8537](https://github.com/woocommerce/woocommerce-blocks/pull/8537))
|
||||
|
||||
= 9.4.3 - 2023-02-01 =
|
||||
|
||||
#### Bug Fixes
|
||||
|
|
|
@ -109,7 +109,7 @@ class Package {
|
|||
NewPackage::class,
|
||||
function ( $container ) {
|
||||
// leave for automated version bumping.
|
||||
$version = '9.4.3';
|
||||
$version = '9.4.4';
|
||||
return new NewPackage(
|
||||
$version,
|
||||
dirname( __DIR__ ),
|
||||
|
|
|
@ -256,6 +256,10 @@ class ShippingController {
|
|||
* @return array
|
||||
*/
|
||||
public function filter_taxable_address( $address ) {
|
||||
|
||||
if ( null === WC()->session ) {
|
||||
return $address;
|
||||
}
|
||||
// We only need to select from the first package, since pickup_location only supports a single package.
|
||||
$chosen_method = current( WC()->session->get( 'chosen_shipping_methods', array() ) ) ?? '';
|
||||
$chosen_method_id = explode( ':', $chosen_method )[0];
|
||||
|
|
|
@ -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: 9.4.3
|
||||
* Version: 9.4.4
|
||||
* Author: Automattic
|
||||
* Author URI: https://woocommerce.com
|
||||
* Text Domain: woo-gutenberg-products-block
|
||||
|
|
Loading…
Reference in New Issue