diff --git a/.changeset/sour-colts-dream.md b/.changeset/sour-colts-dream.md deleted file mode 100644 index b2b587c7..00000000 --- a/.changeset/sour-colts-dream.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -Bug fix: CoreTable column alignment returns null diff --git a/.changeset/weak-knives-brush.md b/.changeset/weak-knives-brush.md deleted file mode 100644 index 688bb16b..00000000 --- a/.changeset/weak-knives-brush.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -fix: refactor `Block::resolve_block_attributes_recursive()` and improve type safety diff --git a/.changeset/wild-seas-buy.md b/.changeset/wild-seas-buy.md deleted file mode 100644 index d10ecdc2..00000000 --- a/.changeset/wild-seas-buy.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -fix: Don't overload `NodeWithEditorBlocks.flat` on implementing Interfaces. diff --git a/CHANGELOG.md b/CHANGELOG.md index b0b0aa8d..59924d01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # WPGraphQL Content Blocks +## 4.0.1 + +### Patch Changes + +- 39e8181: Bug fix: CoreTable column alignment returns null +- 8d8ce66: fix: refactor `Block::resolve_block_attributes_recursive()` and improve type safety +- a910d62: fix: Don't overload `NodeWithEditorBlocks.flat` on implementing Interfaces. + ## 4.0.0 ### Major Changes diff --git a/includes/WPGraphQLContentBlocks.php b/includes/WPGraphQLContentBlocks.php index ef6b8bea..b0a9dabb 100644 --- a/includes/WPGraphQLContentBlocks.php +++ b/includes/WPGraphQLContentBlocks.php @@ -75,7 +75,7 @@ private function setup_constants(): void { $main_file_path = dirname( __DIR__ ) . '/wp-graphql.php'; // Plugin version. - $this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.0.0' ); + $this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.0.1' ); // Plugin Folder Path. $this->define( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_DIR', plugin_dir_path( $main_file_path ) ); // Plugin Root File. diff --git a/package.json b/package.json index 5fc7f0cb..48c24376 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@wpengine/wp-graphql-content-blocks", "private": true, - "version": "4.0.0", + "version": "4.0.1", "engines": { "node": ">=16.0.0" }, diff --git a/readme.txt b/readme.txt index cfbafd05..93d7ce4a 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: blakewpe, chriswiegman, joefusco, matthewguywright, TeresaGobble, Tags: faustjs, faust, headless, decoupled, gutenberg Requires at least: 5.7 Tested up to: 6.5 -Stable tag: 4.0.0 +Stable tag: 4.0.1 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -25,11 +25,19 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data. == Changelog == += 4.0.1 = + +### Patch Changes + +- 39e8181: Bug fix: CoreTable column alignment returns null +- 8d8ce66: fix: refactor `Block::resolve_block_attributes_recursive()` and improve type safety +- a910d62: fix: Don't overload `NodeWithEditorBlocks.flat` on implementing Interfaces. + = 4.0.0 = -### Breaking Changes +### Major Changes -- ed23a32: BREAKING: Update Schema to reflect latest WordPress 6.5 changes. +- ed23a32: MAJOR: Update Schema to reflect latest WordPress 6.5 changes. - WHAT the breaking change is: Added new `rich-text` type - WHY the change was made: WordPress 6.5 replaced some of the attribute types from string to `rich-text` causing breaking changes to the existing block fields. @@ -59,10 +67,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data. - 1117a18: Fixed issue with updater functionality. -= 3.1.1 = - -### Patch Changes - -- bc32b94: No functional changes between 3.1.0 and 3.1.1. This was tagged due to pipeline issues during the 3.1.0 release. - -[View the full changelog](https://github.com/wpengine/wp-graphql-content-blocks/blob/main/CHANGELOG.md) +[View the full changelog](https://github.com/wpengine/wp-graphql-content-blocks/blob/main/CHANGELOG.md) \ No newline at end of file diff --git a/wp-graphql-content-blocks.php b/wp-graphql-content-blocks.php index 5affe5ce..426970f2 100644 --- a/wp-graphql-content-blocks.php +++ b/wp-graphql-content-blocks.php @@ -8,7 +8,7 @@ * License URI: https://www.gnu.org/licenses/gpl-2.0.html * Text Domain: wp-graphql-content-blocks * Domain Path: /languages - * Version: 4.0.0 + * Version: 4.0.1 * Requires PHP: 7.4 * Requires at least: 5.7 *