diff --git a/.changeset/curly-planes-rhyme.md b/.changeset/curly-planes-rhyme.md deleted file mode 100644 index f205e3b4..00000000 --- a/.changeset/curly-planes-rhyme.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -Added support for the `multiline` property in `html` sourced block attributes diff --git a/.changeset/fair-wasps-decide.md b/.changeset/fair-wasps-decide.md deleted file mode 100644 index 811dff8a..00000000 --- a/.changeset/fair-wasps-decide.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -Added support for `integer` type block attributes diff --git a/.changeset/lemon-beans-care.md b/.changeset/lemon-beans-care.md deleted file mode 100644 index ea3fb07d..00000000 --- a/.changeset/lemon-beans-care.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -Added support for `text` sourced block attributes diff --git a/.changeset/long-cooks-march.md b/.changeset/long-cooks-march.md deleted file mode 100644 index 7a5836f4..00000000 --- a/.changeset/long-cooks-march.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -Fix: slow schema / slow queries / unexpected Schema output diff --git a/.changeset/lovely-doors-hammer.md b/.changeset/lovely-doors-hammer.md deleted file mode 100644 index 4cb69dd2..00000000 --- a/.changeset/lovely-doors-hammer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -Warn the user if they downloaded the source code .zip instead of the production ready .zip file diff --git a/.changeset/quiet-insects-mate.md b/.changeset/quiet-insects-mate.md deleted file mode 100644 index 94e4669e..00000000 --- a/.changeset/quiet-insects-mate.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -Bug Fix: inner blocks "anchor" field being applied to parent block resulting in duplicates diff --git a/.changeset/thick-pumpkins-roll.md b/.changeset/thick-pumpkins-roll.md deleted file mode 100644 index 23052568..00000000 --- a/.changeset/thick-pumpkins-roll.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -Add support for querying blocks per post type diff --git a/.changeset/violet-bananas-suffer.md b/.changeset/violet-bananas-suffer.md deleted file mode 100644 index eb0554f3..00000000 --- a/.changeset/violet-bananas-suffer.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": patch ---- - -Add interface BlockWithSupportsAnchor for querying blocks that supports Anchor field diff --git a/CHANGELOG.md b/CHANGELOG.md index f3e3cde4..abb30a83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # WPGraphQL Content Blocks +## 0.2.1 + +### Patch Changes + +- 0a29e79: Added support for the `multiline` property in `html` sourced block attributes +- 0a29e79: Added support for `integer` type block attributes +- 0a29e79: Added support for `text` sourced block attributes +- 51011a6: Fix: slow schema / slow queries / unexpected Schema output +- c2e6648: Warn the user if they downloaded the source code .zip instead of the production ready .zip file +- 8955fac: Bug Fix: inner blocks "anchor" field being applied to parent block resulting in duplicates +- c474da8: Add support for querying blocks per post type +- a12542c: Add interface BlockWithSupportsAnchor for querying blocks that supports Anchor field + ## 0.2.0 ### Minor Changes diff --git a/includes/WPGraphQLContentBlocks.php b/includes/WPGraphQLContentBlocks.php index 8f9f719f..01404c75 100644 --- a/includes/WPGraphQLContentBlocks.php +++ b/includes/WPGraphQLContentBlocks.php @@ -71,7 +71,7 @@ private function setup_constants() { $main_file_path = dirname( __DIR__ ) . '/wp-graphql.php'; // Plugin version. - $this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '0.2.0' ); + $this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '0.2.1' ); // 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 e8a0fb75..60d0c4e3 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@wpengine/wp-graphql-content-blocks", "private": true, - "version": "0.2.0", + "version": "0.2.1", "engines": { "node": ">=16.0.0" }, diff --git a/readme.txt b/readme.txt index fb1ae8ff..6ec189c1 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.1 -Stable tag: 0.2.0 +Stable tag: 0.2.1 Requires PHP: 7.2 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -25,6 +25,19 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data. == Changelog == += 0.2.1 = + +### Patch Changes + +- 0a29e79: Added support for the `multiline` property in `html` sourced block attributes +- 0a29e79: Added support for `integer` type block attributes +- 0a29e79: Added support for `text` sourced block attributes +- 51011a6: Fix: slow schema / slow queries / unexpected Schema output +- c2e6648: Warn the user if they downloaded the source code .zip instead of the production ready .zip file +- 8955fac: Bug Fix: inner blocks "anchor" field being applied to parent block resulting in duplicates +- c474da8: Add support for querying blocks per post type +- a12542c: Add interface BlockWithSupportsAnchor for querying blocks that supports Anchor field + = 0.2.0 = ### Minor Changes diff --git a/wp-graphql-content-blocks.php b/wp-graphql-content-blocks.php index 722e30a8..336ed073 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: 0.2.0 + * Version: 0.2.1 * Requires PHP: 7.2 * Requires at least: 5.7 *