Skip to content

Commit c09aeb7

Browse files
authored
Merge pull request #314 from wpengine/changeset-release/main
Release Plugin
2 parents 81fccf1 + f16e097 commit c09aeb7

File tree

5 files changed

+16
-28
lines changed

5 files changed

+16
-28
lines changed

.changeset/silly-poems-happen.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+
## 4.3.1
4+
5+
### Patch Changes
6+
7+
- f99f768: Correct version definition
8+
39
## 4.3.0
410

511
### Minor 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.0",
4+
"version": "4.3.1",
55
"engines": {
66
"node": ">=16.0.0"
77
},

readme.txt

+7-20
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.6.2
6-
Stable tag: 4.3.0
6+
Stable tag: 4.3.1
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+
= 4.3.1 =
29+
30+
### Patch Changes
31+
32+
- f99f768: Correct version definition
33+
2834
= 4.3.0 =
2935

3036
### Minor Changes
@@ -69,23 +75,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
6975
- 89b6c60: tests: lint and format PHPUnit tests
7076
- 65f0c2d: Update @since @todo tags and @todo placeholders in \_deprecated_function calls
7177

72-
= 4.1.0 =
73-
74-
### Minor Changes
75-
76-
- 6241c4e: fix: prevent fatal errors by improving type-safety and returning early when parsing HTML.
77-
The following methods have been deprecated for their stricter-typed counterparts:
78-
- `DOMHelpers::parseAttribute()` => `::parse_attribute()`
79-
- `DOMHelpers::parseFirstNodeAttribute()` => `::parse_first_node_attribute()`
80-
- `DOMHelpers::parseHTML()` => `::parse_html()`
81-
- `DOMHelpers::getElementsFromHTML()` => `::get_elements_from_html()`
82-
- `DOMHelpers::parseText()` => `::parse_text()`
83-
- `DOMHelpers::findNodes()`=> `::find_nodes()`
84-
85-
### Patch Changes
86-
87-
- 2b947dc: chore: update Composer dev-dependencies and fix resulting issues.
88-
- 205da8c: ci: replace `docker-compose` commands with `docker compose`
89-
- 5c21ce3: Bug fix. Reusable block isn't resolved inside innerBlocks.
90-
9178
[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.0
11+
* Version: 4.3.1
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.0' );
46+
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.3.1' );
4747
}
4848
}
4949
}

0 commit comments

Comments
 (0)