Skip to content

Commit 7c3a6d7

Browse files
Release Plugin (#247)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 8fc6839 commit 7c3a6d7

8 files changed

+23
-28
lines changed

.changeset/sour-colts-dream.md

-5
This file was deleted.

.changeset/weak-knives-brush.md

-5
This file was deleted.

.changeset/wild-seas-buy.md

-5
This file was deleted.

CHANGELOG.md

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

3+
## 4.0.1
4+
5+
### Patch Changes
6+
7+
- 39e8181: Bug fix: CoreTable column alignment returns null
8+
- 8d8ce66: fix: refactor `Block::resolve_block_attributes_recursive()` and improve type safety
9+
- a910d62: fix: Don't overload `NodeWithEditorBlocks.flat` on implementing Interfaces.
10+
311
## 4.0.0
412

513
### Major Changes

includes/WPGraphQLContentBlocks.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private function setup_constants(): void {
7575
$main_file_path = dirname( __DIR__ ) . '/wp-graphql.php';
7676

7777
// Plugin version.
78-
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.0.0' );
78+
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.0.1' );
7979
// Plugin Folder Path.
8080
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_DIR', plugin_dir_path( $main_file_path ) );
8181
// Plugin Root File.

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.0.0",
4+
"version": "4.0.1",
55
"engines": {
66
"node": ">=16.0.0"
77
},

readme.txt

+12-10
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.5
6-
Stable tag: 4.0.0
6+
Stable tag: 4.0.1
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -25,11 +25,19 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
2525

2626
== Changelog ==
2727

28+
= 4.0.1 =
29+
30+
### Patch Changes
31+
32+
- 39e8181: Bug fix: CoreTable column alignment returns null
33+
- 8d8ce66: fix: refactor `Block::resolve_block_attributes_recursive()` and improve type safety
34+
- a910d62: fix: Don't overload `NodeWithEditorBlocks.flat` on implementing Interfaces.
35+
2836
= 4.0.0 =
2937

30-
### Breaking Changes
38+
### Major Changes
3139

32-
- ed23a32: BREAKING: Update Schema to reflect latest WordPress 6.5 changes.
40+
- ed23a32: MAJOR: Update Schema to reflect latest WordPress 6.5 changes.
3341

3442
- WHAT the breaking change is: Added new `rich-text` type
3543
- 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.
5967

6068
- 1117a18: Fixed issue with updater functionality.
6169

62-
= 3.1.1 =
63-
64-
### Patch Changes
65-
66-
- 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.
67-
68-
[View the full changelog](https://github.com/wpengine/wp-graphql-content-blocks/blob/main/CHANGELOG.md)
70+
[View the full changelog](https://github.com/wpengine/wp-graphql-content-blocks/blob/main/CHANGELOG.md)

wp-graphql-content-blocks.php

+1-1
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.0.0
11+
* Version: 4.0.1
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.7
1414
*

0 commit comments

Comments
 (0)