Skip to content

Commit 1802da7

Browse files
authored
Merge pull request #189 from wpengine/changeset-release/main
Release Plugin
2 parents f7ac092 + 4d368de commit 1802da7

File tree

6 files changed

+16
-37
lines changed

6 files changed

+16
-37
lines changed

.changeset/nine-geese-double.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+
## 3.1.0
4+
5+
### Minor Changes
6+
7+
- 9fab724: Added support for automatic updates hosted from WP Engine infrastructure. Includes warnings when major versions with potential breaking changes are released.
8+
39
## 3.0.0
410

511
### 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', '3.0.0' );
78+
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '3.1.0' );
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": "3.0.0",
4+
"version": "3.1.0",
55
"engines": {
66
"node": ">=16.0.0"
77
},

readme.txt

+7-29
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.4
6-
Stable tag: 3.0.0
6+
Stable tag: 3.1.0
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,12 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
2525

2626
== Changelog ==
2727

28+
= 3.1.0 =
29+
30+
### Minor Changes
31+
32+
- 9fab724: Added support for automatic updates hosted from WP Engine infrastructure. Includes warnings when major versions with potential breaking changes are released.
33+
2834
= 3.0.0 =
2935

3036
### Major Changes
@@ -46,32 +52,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
4652

4753
**BREAKING**: Potential schema changes for GraphQL Types representing a Post Type that does not use the Block Editor. Each GraphQL Type representing a Post Type that does not have block editor support previously would have had the `editorBlocks` field but that field will no longer exist on those Types.
4854

49-
= 1.2.1 =
50-
51-
### Patch Changes
52-
53-
- 54affda: Adds mediaDetails field in CoreImage block:
54-
55-
```graphql
56-
{
57-
posts {
58-
nodes {
59-
editorBlocks {
60-
... on CoreImage {
61-
mediaDetails {
62-
file
63-
sizes {
64-
name
65-
fileSize
66-
height
67-
width
68-
}
69-
}
70-
}
71-
}
72-
}
73-
}
74-
}
75-
```
76-
7755
[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: 3.0.0
11+
* Version: 3.1.0
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.7
1414
*

0 commit comments

Comments
 (0)