Skip to content

Commit cab682e

Browse files
Release Plugin (#319)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 2859d4b commit cab682e

6 files changed

+19
-36
lines changed

.changeset/pink-impalas-divide.md

-5
This file was deleted.

.changeset/thin-donuts-float.md

-5
This file was deleted.

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# WPGraphQL Content Blocks
22

3+
## 4.3.2
4+
5+
### Patch Changes
6+
7+
- c8832fc: fix: improve handling of empty blocks in `ContentBlocksResolver`.
8+
- 9a2ebf7: fix: Ensure correct `EditorBlock.type` field resolution.
9+
310
## 4.3.1
411

512
### Patch Changes

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@wpengine/wp-graphql-content-blocks",
33
"private": true,
4-
"version": "4.3.1",
4+
"version": "4.3.2",
55
"engines": {
66
"node": ">=16.0.0"
77
},

readme.txt

+9-23
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: blakewpe, chriswiegman, joefusco, matthewguywright, TeresaGobble,
33
Tags: faustjs, faust, headless, decoupled, gutenberg
44
Requires at least: 5.7
55
Tested up to: 6.7.1
6-
Stable tag: 4.3.1
6+
Stable tag: 4.3.2
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -25,6 +25,13 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
2525

2626
== Changelog ==
2727

28+
= 4.3.2 =
29+
30+
### Patch Changes
31+
32+
- c8832fc: fix: improve handling of empty blocks in `ContentBlocksResolver`.
33+
- 9a2ebf7: fix: Ensure correct `EditorBlock.type` field resolution.
34+
2835
= 4.3.1 =
2936

3037
### Patch Changes
@@ -54,25 +61,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
5461
- c6bdab0: tests : Add tests for `CoreQuote` block.
5562
- a38e479: tests : backfill tests for ContentBlockResolver
5663

57-
= 4.2.0 =
58-
59-
### Minor Changes
60-
61-
- 766737d: fix: cleanup constants and refactor autoload handling to improve Composer compatibility.
62-
- 7514021: chore: Update Composer dev-dependencies to their latest (semver-compatible) versions.
63-
- b64583f: dev: Add `wpgraphql_content_blocks_pre_resolve_blocks` and `wp_graphql_content_blocks_resolve_blocks` filters.
64-
- 179948c: dev: make `PluginUpdater` namespaced functions PSR-4 compatible.
65-
- bced76d: feat: expose `EditorBlock.type` field
66-
67-
### Patch Changes
68-
69-
- de885f1: Skip the Sonar Qube workflow if the user that opened the PR is not a member of the Github org
70-
- 6ced628: Fix: prevent fatal errors when get_current_screen() is unset.
71-
- 58b6792: chore: remediate non-code PHPStan errors in phpstan-baseline.neon
72-
- c3e11b1: ci: test against WordPress 6.6
73-
- 27f459f: tests: fix PHP deprecation notices
74-
- 4f4b851: tests: fix order of expected/actual values passed to asserts.
75-
- 89b6c60: tests: lint and format PHPUnit tests
76-
- 65f0c2d: Update @since @todo tags and @todo placeholders in \_deprecated_function calls
77-
78-
[View the full changelog](https://github.com/wpengine/wp-graphql-content-blocks/blob/main/CHANGELOG.md)
64+
[View the full changelog](https://github.com/wpengine/wp-graphql-content-blocks/blob/main/CHANGELOG.md)

wp-graphql-content-blocks.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
99
* Text Domain: wp-graphql-content-blocks
1010
* Domain Path: /languages
11-
* Version: 4.3.1
11+
* Version: 4.3.2
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.7
1414
*
@@ -43,7 +43,7 @@ function wpgraphql_content_blocks_constants(): void {
4343
define( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_PATH', plugin_basename( WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_FILE ) );
4444
}
4545
if ( ! defined( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION' ) ) {
46-
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.3.1' );
46+
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.3.2' );
4747
}
4848
}
4949
}

0 commit comments

Comments
 (0)