Skip to content

Commit

Permalink
Merge pull request #314 from wpengine/changeset-release/main
Browse files Browse the repository at this point in the history
Release Plugin
  • Loading branch information
josephfusco authored Nov 14, 2024
2 parents 81fccf1 + f16e097 commit c09aeb7
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 28 deletions.
5 changes: 0 additions & 5 deletions .changeset/silly-poems-happen.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# WPGraphQL Content Blocks

## 4.3.1

### Patch Changes

- f99f768: Correct version definition

## 4.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@wpengine/wp-graphql-content-blocks",
"private": true,
"version": "4.3.0",
"version": "4.3.1",
"engines": {
"node": ">=16.0.0"
},
Expand Down
27 changes: 7 additions & 20 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.6.2
Stable tag: 4.3.0
Stable tag: 4.3.1
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand All @@ -25,6 +25,12 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.

== Changelog ==

= 4.3.1 =

### Patch Changes

- f99f768: Correct version definition

= 4.3.0 =

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

= 4.1.0 =

### Minor Changes

- 6241c4e: fix: prevent fatal errors by improving type-safety and returning early when parsing HTML.
The following methods have been deprecated for their stricter-typed counterparts:
- `DOMHelpers::parseAttribute()` => `::parse_attribute()`
- `DOMHelpers::parseFirstNodeAttribute()` => `::parse_first_node_attribute()`
- `DOMHelpers::parseHTML()` => `::parse_html()`
- `DOMHelpers::getElementsFromHTML()` => `::get_elements_from_html()`
- `DOMHelpers::parseText()` => `::parse_text()`
- `DOMHelpers::findNodes()`=> `::find_nodes()`

### Patch Changes

- 2b947dc: chore: update Composer dev-dependencies and fix resulting issues.
- 205da8c: ci: replace `docker-compose` commands with `docker compose`
- 5c21ce3: Bug fix. Reusable block isn't resolved inside innerBlocks.

[View the full changelog](https://github.com/wpengine/wp-graphql-content-blocks/blob/main/CHANGELOG.md)
4 changes: 2 additions & 2 deletions wp-graphql-content-blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.0
* Version: 4.3.1
* Requires PHP: 7.4
* Requires at least: 5.7
*
Expand Down Expand Up @@ -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.0' );
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.3.1' );
}
}
}
Expand Down

0 comments on commit c09aeb7

Please sign in to comment.