diff --git a/.changeset/pink-impalas-divide.md b/.changeset/pink-impalas-divide.md deleted file mode 100644 index 90949cc9..00000000 --- a/.changeset/pink-impalas-divide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -fix: improve handling of empty blocks in `ContentBlocksResolver`. diff --git a/.changeset/thin-donuts-float.md b/.changeset/thin-donuts-float.md deleted file mode 100644 index 2b284831..00000000 --- a/.changeset/thin-donuts-float.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -fix: Ensure correct `EditorBlock.type` field resolution. diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f875118..be2af14d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # WPGraphQL Content Blocks +## 4.3.2 + +### Patch Changes + +- c8832fc: fix: improve handling of empty blocks in `ContentBlocksResolver`. +- 9a2ebf7: fix: Ensure correct `EditorBlock.type` field resolution. + ## 4.3.1 ### Patch Changes diff --git a/package.json b/package.json index 45233f4f..0400b78d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@wpengine/wp-graphql-content-blocks", "private": true, - "version": "4.3.1", + "version": "4.3.2", "engines": { "node": ">=16.0.0" }, diff --git a/readme.txt b/readme.txt index 7c8ce690..04a34013 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.7.1 -Stable tag: 4.3.1 +Stable tag: 4.3.2 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -25,6 +25,13 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data. == Changelog == += 4.3.2 = + +### Patch Changes + +- c8832fc: fix: improve handling of empty blocks in `ContentBlocksResolver`. +- 9a2ebf7: fix: Ensure correct `EditorBlock.type` field resolution. + = 4.3.1 = ### Patch Changes @@ -54,25 +61,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data. - c6bdab0: tests : Add tests for `CoreQuote` block. - a38e479: tests : backfill tests for ContentBlockResolver -= 4.2.0 = - -### Minor Changes - -- 766737d: fix: cleanup constants and refactor autoload handling to improve Composer compatibility. -- 7514021: chore: Update Composer dev-dependencies to their latest (semver-compatible) versions. -- b64583f: dev: Add `wpgraphql_content_blocks_pre_resolve_blocks` and `wp_graphql_content_blocks_resolve_blocks` filters. -- 179948c: dev: make `PluginUpdater` namespaced functions PSR-4 compatible. -- bced76d: feat: expose `EditorBlock.type` field - -### Patch Changes - -- de885f1: Skip the Sonar Qube workflow if the user that opened the PR is not a member of the Github org -- 6ced628: Fix: prevent fatal errors when get_current_screen() is unset. -- 58b6792: chore: remediate non-code PHPStan errors in phpstan-baseline.neon -- c3e11b1: ci: test against WordPress 6.6 -- 27f459f: tests: fix PHP deprecation notices -- 4f4b851: tests: fix order of expected/actual values passed to asserts. -- 89b6c60: tests: lint and format PHPUnit tests -- 65f0c2d: Update @since @todo tags and @todo placeholders in \_deprecated_function calls - -[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 91ecb255..d9368332 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.3.1 + * Version: 4.3.2 * Requires PHP: 7.4 * Requires at least: 5.7 * @@ -43,7 +43,7 @@ function wpgraphql_content_blocks_constants(): void { define( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_PATH', plugin_basename( WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_FILE ) ); } if ( ! defined( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION' ) ) { - define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.3.1' ); + define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.3.2' ); } } }