Skip to content

Commit 8bd5bd4

Browse files
Release Plugin (#342)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 7838c93 commit 8bd5bd4

File tree

5 files changed

+16
-17
lines changed

5 files changed

+16
-17
lines changed

.changeset/witty-falcons-type.md

-6
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.6.0
4+
5+
### Minor Changes
6+
7+
- 7838c93: Replaced old plugin service to use the WPE updater service for checking for updates. The new API endpoint will be https://wpe-plugin-updates.wpengine.com/wp-graphql-content-blocks/info.json
8+
39
## 4.5.0
410

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

readme.txt

+7-8
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.5.0
6+
Stable tag: 4.6.0
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.6.0 =
30+
31+
### Minor Changes
32+
33+
- 7838c93: Replaced old plugin service to use the WPE updater service for checking for updates. The new API endpoint will be https://wpe-plugin-updates.wpengine.com/wp-graphql-content-blocks/info.json
34+
2935
= 4.5.0 =
3036

3137
### Minor Changes
@@ -102,11 +108,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
102108
- 19f6e27: feat: add support for resolving Template Part blocks
103109
- 4c548c3: feat: add support for resolving Block Patterns
104110

105-
= 4.3.2 =
106-
107-
### Patch Changes
108-
109-
- c8832fc: fix: improve handling of empty blocks in `ContentBlocksResolver`.
110-
- 9a2ebf7: fix: Ensure correct `EditorBlock.type` field resolution.
111-
112111
[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.5.0
11+
* Version: 4.6.0
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.7
1414
*
@@ -44,7 +44,7 @@ function wpgraphql_content_blocks_constants(): void {
4444
}
4545

4646
if ( ! defined( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION' ) ) {
47-
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.5.0' );
47+
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.6.0' );
4848
}
4949

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

0 commit comments

Comments
 (0)