Skip to content
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/wordpress-69-compatibility.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.5

### Patch Changes

- f52cb9e: Add WordPress 6.9 compatibility and update test matrix to support WordPress 6.9, 6.8 with PHP 8.3, 8.1.

## 4.8.4

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

== Changelog ==

= 4.8.5 =

### Patch Changes

- f52cb9e: Add WordPress 6.9 compatibility and update test matrix to support WordPress 6.9, 6.8 with PHP 8.3, 8.1.

= 4.8.4 =

### Patch Changes
Expand All @@ -39,10 +45,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
- bf77481: Updated plugin test suite and readme for WordPress 6.8
- bb3631c: Adds WPGraphQL version compatibility headers and checks

= 4.8.2 =

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

[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.4
* Version: 4.8.5
* 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.4' );
define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '4.8.5' );
}

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