Skip to content

Commit

Permalink
Release Plugin (#252)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Aug 14, 2024
1 parent 1b08aa9 commit 6192a96
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 37 deletions.
5 changes: 0 additions & 5 deletions .changeset/cuddly-yaks-try.md

This file was deleted.

12 changes: 0 additions & 12 deletions .changeset/few-cooks-reflect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/green-baboons-double.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-jars-shout.md

This file was deleted.

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

## 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.

## 4.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion includes/WPGraphQLContentBlocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ private function setup_constants(): void {
$main_file_path = dirname( __DIR__ ) . '/wp-graphql.php';

// Plugin version.
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.0.1' );
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.1.0' );
// Plugin Folder Path.
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_DIR', plugin_dir_path( $main_file_path ) );
// Plugin Root File.
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.0.1",
"version": "4.1.0",
"engines": {
"node": ">=16.0.0"
},
Expand Down
27 changes: 20 additions & 7 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.5
Stable tag: 4.0.1
Stable tag: 4.1.0
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand All @@ -25,6 +25,25 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.

== Changelog ==

= 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.

= 4.0.1 =

### Patch Changes
Expand Down Expand Up @@ -61,10 +80,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
- ad03a21: fix: Don't register `NodeWithEditorBlocks` interface to `null` type names.
- 43791db: chore: update PHPStan ruleset for stricter linting, and address newly-discovered tech debt.

= 3.1.2 =

### Patch Changes

- 1117a18: Fixed issue with updater functionality.

[View the full changelog](https://github.com/wpengine/wp-graphql-content-blocks/blob/main/CHANGELOG.md)
2 changes: 1 addition & 1 deletion 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.0.1
* Version: 4.1.0
* Requires PHP: 7.4
* Requires at least: 5.7
*
Expand Down

0 comments on commit 6192a96

Please sign in to comment.