Skip to content

Commit 8bb911a

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

7 files changed

+20
-42
lines changed

.changeset/itchy-mugs-sniff.md

-5
This file was deleted.

.changeset/silver-cups-explode.md

-5
This file was deleted.

.changeset/tiny-news-warn.md

-5
This file was deleted.

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# WPGraphQL Content Blocks
22

3+
## 4.4.0
4+
5+
### Minor Changes
6+
7+
- 756471a: feat: add support for resolving PostContent blocks
8+
- 19f6e27: feat: add support for resolving Template Part blocks
9+
- 4c548c3: feat: add support for resolving Block Patterns
10+
311
## 4.3.2
412

513
### Patch 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.3.2",
4+
"version": "4.4.0",
55
"engines": {
66
"node": ">=16.0.0"
77
},

readme.txt

+9-24
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.3.2
6+
Stable tag: 4.4.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,14 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
2525

2626
== Changelog ==
2727

28+
= 4.4.0 =
29+
30+
### Minor Changes
31+
32+
- 756471a: feat: add support for resolving PostContent blocks
33+
- 19f6e27: feat: add support for resolving Template Part blocks
34+
- 4c548c3: feat: add support for resolving Block Patterns
35+
2836
= 4.3.2 =
2937

3038
### Patch Changes
@@ -38,27 +46,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
3846

3947
- f99f768: Correct version definition
4048

41-
= 4.3.0 =
42-
43-
### Minor Changes
44-
45-
- d123b81: dev: Refactor attribute resolution into `Data\BlockAttributeResolver`
46-
- d123b81: feat: add support for parsing (deprecated) `meta` attributes.
47-
48-
### Patch Changes
49-
50-
- 96bad40: tests: fix `setUp()`/`tearDown()` methods to prevent PHPUnit lifecycle issues.
51-
- f898d61: tests : Add tests for `CoreList` and `CoreListItem` blocks.
52-
- 3b32f06: tests : Backfill tests for Core Image block.
53-
- 7301ed9: tests: Add tests for CoreHeading block
54-
- d4d7374: tests : Backfill tests for Core Video block.
55-
- 3a1157b: fix: Correctly parse nested attribute and tag sources.
56-
- 8b2e168: tests : Add tests for `CoreSeparator` block.
57-
- 962081d: tests: Add tests for CoreParagraph block
58-
- 5915c06: tests: Add tests for CorePreformatted Block
59-
- 3a1157b: tests: backfill tests for `CoreTable` attributes.
60-
- a02e75a: tests: Add tests for CoreCode Block
61-
- c6bdab0: tests : Add tests for `CoreQuote` block.
62-
- a38e479: tests : backfill tests for ContentBlockResolver
63-
6449
[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.3.2
11+
* Version: 4.4.0
1212
* Requires PHP: 7.4
1313
* Requires at least: 5.7
1414
*
@@ -43,7 +43,7 @@ function wpgraphql_content_blocks_constants(): void {
4343
define( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_PATH', plugin_basename( WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_FILE ) );
4444
}
4545
if ( ! defined( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION' ) ) {
46-
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.3.2' );
46+
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.4.0' );
4747
}
4848
}
4949
}

0 commit comments

Comments
 (0)