Skip to content

Commit 8517dea

Browse files
Release Plugin (#360)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent afd2458 commit 8517dea

File tree

5 files changed

+16
-50
lines changed

5 files changed

+16
-50
lines changed

.changeset/modern-pigs-matter.md

-5
This file was deleted.

CHANGELOG.md

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

3+
## 4.8.2
4+
5+
### Patch Changes
6+
7+
- afd2458: bug: Fixes fatal error on the Site Health page for the info tab. Caused by a naming of the wrong object key in the Semver package.
8+
39
## 4.8.1
410

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

readme.txt

+7-42
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.8.1
6+
Stable tag: 4.8.2
77
Requires PHP: 7.4
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -26,6 +26,12 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
2626

2727
== Changelog ==
2828

29+
= 4.8.2 =
30+
31+
### Patch Changes
32+
33+
- afd2458: bug: Fixes fatal error on the Site Health page for the info tab. Caused by a naming of the wrong object key in the Semver package.
34+
2935
= 4.8.1 =
3036

3137
### Patch Changes
@@ -187,45 +193,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
187193
}
188194
```
189195

190-
= 4.7.0 =
191-
192-
### Minor Changes
193-
194-
- 82c6080: Adds support for resolving and returning related term items as a `terms` connection for the CorePostTerms block along with `taxonomy` connection.
195-
Adds support for resolving and returning the `prefix` and `suffix` items within the correspondent fields of the CorePostTerms block.
196-
197-
```graphql
198-
query TestPostTerms($uri: String! = "test-terms") {
199-
nodeByUri(uri: $uri) {
200-
id
201-
uri
202-
... on NodeWithPostEditorBlocks {
203-
editorBlocks {
204-
__typename
205-
... on CorePostTerms {
206-
prefix
207-
suffix
208-
taxonomy {
209-
__typename
210-
node {
211-
__typename
212-
id
213-
name
214-
}
215-
}
216-
terms {
217-
__typename
218-
nodes {
219-
__typename
220-
id
221-
name
222-
}
223-
}
224-
}
225-
}
226-
}
227-
}
228-
}
229-
```
230-
231196
[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.8.1
11+
* Version: 4.8.2
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.7
1414
* Requires Plugins: wp-graphql
@@ -47,7 +47,7 @@ function wpgraphql_content_blocks_constants(): void {
4747
}
4848

4949
if ( ! defined( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION' ) ) {
50-
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.8.1' );
50+
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.8.2' );
5151
}
5252

5353
if ( ! defined( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_URL' ) ) {

0 commit comments

Comments
 (0)