From 9b58eac149b52f73f93ce10d9ab97a1ad347f23d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 25 Dec 2024 23:20:29 +0000 Subject: [PATCH] Release Plugin --- .changeset/silver-cups-explode.md | 5 ----- .changeset/tiny-news-warn.md | 5 ----- CHANGELOG.md | 7 +++++++ package.json | 2 +- readme.txt | 32 ++++++++----------------------- wp-graphql-content-blocks.php | 4 ++-- 6 files changed, 18 insertions(+), 37 deletions(-) delete mode 100644 .changeset/silver-cups-explode.md delete mode 100644 .changeset/tiny-news-warn.md diff --git a/.changeset/silver-cups-explode.md b/.changeset/silver-cups-explode.md deleted file mode 100644 index a23860d9..00000000 --- a/.changeset/silver-cups-explode.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": minor ---- - -feat: add support for resolving Template Part blocks diff --git a/.changeset/tiny-news-warn.md b/.changeset/tiny-news-warn.md deleted file mode 100644 index 0c106145..00000000 --- a/.changeset/tiny-news-warn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@wpengine/wp-graphql-content-blocks": minor ---- - -feat: add support for resolving Block Patterns diff --git a/CHANGELOG.md b/CHANGELOG.md index be2af14d..2b051a14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # WPGraphQL Content Blocks +## 4.4.0 + +### Minor Changes + +- 19f6e27: feat: add support for resolving Template Part blocks +- 4c548c3: feat: add support for resolving Block Patterns + ## 4.3.2 ### Patch Changes diff --git a/package.json b/package.json index 0400b78d..6aa2773f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@wpengine/wp-graphql-content-blocks", "private": true, - "version": "4.3.2", + "version": "4.4.0", "engines": { "node": ">=16.0.0" }, diff --git a/readme.txt b/readme.txt index 04a34013..f806288c 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.7.1 -Stable tag: 4.3.2 +Stable tag: 4.4.0 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -25,6 +25,13 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data. == Changelog == += 4.4.0 = + +### Minor Changes + +- 19f6e27: feat: add support for resolving Template Part blocks +- 4c548c3: feat: add support for resolving Block Patterns + = 4.3.2 = ### Patch Changes @@ -38,27 +45,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data. - f99f768: Correct version definition -= 4.3.0 = - -### Minor Changes - -- d123b81: dev: Refactor attribute resolution into `Data\BlockAttributeResolver` -- d123b81: feat: add support for parsing (deprecated) `meta` attributes. - -### Patch Changes - -- 96bad40: tests: fix `setUp()`/`tearDown()` methods to prevent PHPUnit lifecycle issues. -- f898d61: tests : Add tests for `CoreList` and `CoreListItem` blocks. -- 3b32f06: tests : Backfill tests for Core Image block. -- 7301ed9: tests: Add tests for CoreHeading block -- d4d7374: tests : Backfill tests for Core Video block. -- 3a1157b: fix: Correctly parse nested attribute and tag sources. -- 8b2e168: tests : Add tests for `CoreSeparator` block. -- 962081d: tests: Add tests for CoreParagraph block -- 5915c06: tests: Add tests for CorePreformatted Block -- 3a1157b: tests: backfill tests for `CoreTable` attributes. -- a02e75a: tests: Add tests for CoreCode Block -- c6bdab0: tests : Add tests for `CoreQuote` block. -- a38e479: tests : backfill tests for ContentBlockResolver - [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 d9368332..6283e54b 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: 4.3.2 + * Version: 4.4.0 * Requires PHP: 7.4 * Requires at least: 5.7 * @@ -43,7 +43,7 @@ function wpgraphql_content_blocks_constants(): void { define( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_PATH', plugin_basename( WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_FILE ) ); } if ( ! defined( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION' ) ) { - define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.3.2' ); + define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.4.0' ); } } }