diff --git a/.changeset/nine-geese-double.md b/.changeset/nine-geese-double.md deleted file mode 100644 index 5b35e0e9..00000000 --- a/.changeset/nine-geese-double.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": minor ---- - -Added support for automatic updates hosted from WP Engine infrastructure. Includes warnings when major versions with potential breaking changes are released. diff --git a/CHANGELOG.md b/CHANGELOG.md index 85269ff0..2fb4dd09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # WPGraphQL Content Blocks +## 3.1.0 + +### Minor Changes + +- 9fab724: Added support for automatic updates hosted from WP Engine infrastructure. Includes warnings when major versions with potential breaking changes are released. + ## 3.0.0 ### Major Changes diff --git a/includes/WPGraphQLContentBlocks.php b/includes/WPGraphQLContentBlocks.php index 824a7da4..56ac5c43 100644 --- a/includes/WPGraphQLContentBlocks.php +++ b/includes/WPGraphQLContentBlocks.php @@ -75,7 +75,7 @@ private function setup_constants(): void { $main_file_path = dirname( __DIR__ ) . '/wp-graphql.php'; // Plugin version. - $this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '3.0.0' ); + $this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '3.1.0' ); // Plugin Folder Path. $this->define( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_DIR', plugin_dir_path( $main_file_path ) ); // Plugin Root File. diff --git a/package.json b/package.json index 4803e4ce..df6a8080 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@wpengine/wp-graphql-content-blocks", "private": true, - "version": "3.0.0", + "version": "3.1.0", "engines": { "node": ">=16.0.0" }, diff --git a/readme.txt b/readme.txt index 0720f480..0cd55ffd 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: blakewpe, chriswiegman, joefusco, matthewguywright, TeresaGobble, Tags: faustjs, faust, headless, decoupled, gutenberg Requires at least: 5.7 Tested up to: 6.4 -Stable tag: 3.0.0 +Stable tag: 3.1.0 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -25,6 +25,12 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data. == Changelog == += 3.1.0 = + +### Minor Changes + +- 9fab724: Added support for automatic updates hosted from WP Engine infrastructure. Includes warnings when major versions with potential breaking changes are released. + = 3.0.0 = ### Major Changes @@ -46,32 +52,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data. **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. -= 1.2.1 = - -### Patch Changes - -- 54affda: Adds mediaDetails field in CoreImage block: - - ```graphql - { - posts { - nodes { - editorBlocks { - ... on CoreImage { - mediaDetails { - file - sizes { - name - fileSize - height - width - } - } - } - } - } - } - } - ``` - [View the full changelog](https://github.com/wpengine/wp-graphql-content-blocks/blob/main/CHANGELOG.md) \ No newline at end of file diff --git a/wp-graphql-content-blocks.php b/wp-graphql-content-blocks.php index 9ec5ab83..7f76c886 100644 --- a/wp-graphql-content-blocks.php +++ b/wp-graphql-content-blocks.php @@ -8,7 +8,7 @@ * License URI: https://www.gnu.org/licenses/gpl-2.0.html * Text Domain: wp-graphql-content-blocks * Domain Path: /languages - * Version: 3.0.0 + * Version: 3.1.0 * Requires PHP: 7.4 * Requires at least: 5.7 *