Skip to content

Commit

Permalink
Release Plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 26, 2024
1 parent f7ac092 commit 4d368de
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 37 deletions.
5 changes: 0 additions & 5 deletions .changeset/nine-geese-double.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

## 3.1.0

### Minor Changes

- 9fab724: Added support for automatic updates hosted from WP Engine infrastructure. Includes warnings when major versions with potential breaking changes are released.

## 3.0.0

### Major 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', '3.0.0' );
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '3.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": "3.0.0",
"version": "3.1.0",
"engines": {
"node": ">=16.0.0"
},
Expand Down
36 changes: 7 additions & 29 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.4
Stable tag: 3.0.0
Stable tag: 3.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,12 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.

== Changelog ==

= 3.1.0 =

### Minor Changes

- 9fab724: Added support for automatic updates hosted from WP Engine infrastructure. Includes warnings when major versions with potential breaking changes are released.

= 3.0.0 =

### Major Changes
Expand All @@ -46,32 +52,4 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.

**BREAKING**: Potential schema changes for GraphQL Types representing a Post Type that does not use the Block Editor. Each GraphQL Type representing a Post Type that does not have block editor support previously would have had the `editorBlocks` field but that field will no longer exist on those Types.

= 1.2.1 =

### Patch Changes

- 54affda: Adds mediaDetails field in CoreImage block:

```graphql
{
posts {
nodes {
editorBlocks {
... on CoreImage {
mediaDetails {
file
sizes {
name
fileSize
height
width
}
}
}
}
}
}
}
```

[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: 3.0.0
* Version: 3.1.0
* Requires PHP: 7.4
* Requires at least: 5.7
*
Expand Down

0 comments on commit 4d368de

Please sign in to comment.