Skip to content

Release Plugin #383

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/ten-guests-wonder.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.8.4

### Patch Changes

- 43cef3d: Tested WordPress 6.8.1 and fixed a release issue with the plugin artifact

## 4.8.3

### Patch 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.8.3",
"version": "4.8.4",
"engines": {
"node": ">=16.0.0"
},
Expand Down
15 changes: 8 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.8.1
Stable tag: 4.8.3
Stable tag: 4.8.4
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Expand All @@ -26,22 +26,23 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.

== Changelog ==

= 4.8.3 =
= 4.8.4 =

### Patch Changes

- bf77481: Updated plugin test suite and readme for WordPress 6.8
- 43cef3d: Tested WordPress 6.8.1 and fixed a release issue with the plugin artifact

= 4.8.2 =
= 4.8.3 =

### Patch Changes

- afd2458: bug: Fixes fatal error on the Site Health page for the info tab. Caused by a naming of the wrong object key in the Semver package.
- bf77481: Updated plugin test suite and readme for WordPress 6.8
- bb3631c: Adds WPGraphQL version compatibility headers and checks

= 4.8.1 =
= 4.8.2 =

### Patch Changes

- 84a65bb: bug: Fixes fatal error when you de-activate WPGraphQL
- afd2458: bug: Fixes fatal error on the Site Health page for the info tab. Caused by a naming of the wrong object key in the Semver package.

[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.8.3
* Version: 4.8.4
* Requires PHP: 7.4
* Requires at least: 5.7
* Requires Plugins: wp-graphql
Expand Down Expand Up @@ -47,7 +47,7 @@ function wpgraphql_content_blocks_constants(): void {
}

if ( ! defined( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION' ) ) {
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.8.3' );
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.8.4' );
}

if ( ! defined( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_URL' ) ) {
Expand Down