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

Commit c52dd3c

Browse files
committed
Update compatibility sections and add release 9.0.0 changelog
1 parent 7250b32 commit c52dd3c

File tree

2 files changed

+32
-6
lines changed

2 files changed

+32
-6
lines changed

readme.txt

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
=== WooCommerce Blocks ===
22
Contributors: automattic, woocommerce, claudiulodro, tiagonoronha, jameskoster, ryelle, levinmedia, aljullu, mikejolley, nerrad, joshuawold, assassinateur, haszari, mppfeiffer, nielslange, opr18, ralucastn, tjcafferkey
33
Tags: gutenberg, woocommerce, woo commerce, products, blocks, woocommerce blocks
4-
Requires at least: 6.1
5-
Tested up to: 6.1
4+
Requires at least: 6.1.1
5+
Tested up to: 6.1.1
66
Requires PHP: 7.0
77
Stable tag: 9.0.0-dev
88
License: GPLv3
@@ -79,6 +79,32 @@ Release and roadmap notes available on the [WooCommerce Developers Blog](https:/
7979

8080
== Changelog ==
8181

82+
= 9.0.0 - 2022-11-21 =
83+
84+
#### Bug Fixes
85+
86+
- Fix skewed placeholder of a Product Image block. ([7651](https://github.com/woocommerce/woocommerce-blocks/pull/7651))
87+
- Fix missing translations in the inspector (editor mode) for the Cart Cross-Sells Blocks. ([7616](https://github.com/woocommerce/woocommerce-blocks/pull/7616))
88+
89+
#### Enhancements
90+
91+
- Move paymentResult to the payment store. ([7692](https://github.com/woocommerce/woocommerce-blocks/pull/7692))
92+
- Add the `Products by Attribute` template. ([7660](https://github.com/woocommerce/woocommerce-blocks/pull/7660))
93+
- Make loading placeholder colors match the current font color for the theme. ([7658](https://github.com/woocommerce/woocommerce-blocks/pull/7658))
94+
- Remove cart fragments support to improve performance in product blocks. ([7644](https://github.com/woocommerce/woocommerce-blocks/pull/7644))
95+
- Add a `clearValidationErrors` action to the `wc/store/validation` data store. ([7601](https://github.com/woocommerce/woocommerce-blocks/pull/7601))
96+
- Add `ValidatedTextInput` and `ValidationInputError` to the `@woocommerce/blocks-checkout` package. ([7583](https://github.com/woocommerce/woocommerce-blocks/pull/7583))
97+
- React Based Local Pickup Settings Screen. ([7581](https://github.com/woocommerce/woocommerce-blocks/pull/7581))
98+
- Convert product-elements/image to TypeScript. ([7572](https://github.com/woocommerce/woocommerce-blocks/pull/7572))
99+
- Add `StoreNoticesContainer` to the `@woocommerce/blocks-checkout` package. ([7558](https://github.com/woocommerce/woocommerce-blocks/pull/7558))
100+
- Convert product-elements/price to TypeScript. ([7534](https://github.com/woocommerce/woocommerce-blocks/pull/7534))
101+
- Adds the option of providing a custom class for the product details on the Cart Block. ([7328](https://github.com/woocommerce/woocommerce-blocks/pull/7328))
102+
103+
#### Various
104+
105+
- Change action type name for use shipping as billing option. ([7695](https://github.com/woocommerce/woocommerce-blocks/pull/7695))
106+
- Block Checkout: Apply selected Local Pickup rate to entire order (all packages). ([7484](https://github.com/woocommerce/woocommerce-blocks/pull/7484))
107+
82108
= 8.9.1 - 2022-11-14 =
83109

84110
#### Bug fixes

woocommerce-gutenberg-products-block.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@
77
* Author: Automattic
88
* Author URI: https://woocommerce.com
99
* Text Domain: woo-gutenberg-products-block
10-
* Requires at least: 6.1
10+
* Requires at least: 6.1.1
1111
* Requires PHP: 7.0
12-
* WC requires at least: 6.9
13-
* WC tested up to: 7.0
12+
* WC requires at least: 7.0
13+
* WC tested up to: 7.1
1414
*
1515
* @package WooCommerce\Blocks
1616
* @internal This file is only used when running as a feature plugin.
1717
*/
1818

1919
defined( 'ABSPATH' ) || exit;
2020

21-
$minimum_wp_version = '6.1';
21+
$minimum_wp_version = '6.1.1';
2222

2323
if ( ! defined( 'WC_BLOCKS_IS_FEATURE_PLUGIN' ) ) {
2424
define( 'WC_BLOCKS_IS_FEATURE_PLUGIN', true );

0 commit comments

Comments
 (0)