Skip to content

Commit b0bd5f1

Browse files
authored
Merge pull request #46 from wpengine/changeset-release/main
Release Plugin
2 parents 8955fac + dad8d5e commit b0bd5f1

13 files changed

+30
-44
lines changed

.changeset/curly-planes-rhyme.md

-5
This file was deleted.

.changeset/fair-wasps-decide.md

-5
This file was deleted.

.changeset/lemon-beans-care.md

-5
This file was deleted.

.changeset/long-cooks-march.md

-5
This file was deleted.

.changeset/lovely-doors-hammer.md

-5
This file was deleted.

.changeset/quiet-insects-mate.md

-5
This file was deleted.

.changeset/thick-pumpkins-roll.md

-5
This file was deleted.

.changeset/violet-bananas-suffer.md

-5
This file was deleted.

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# WPGraphQL Content Blocks
22

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- 0a29e79: Added support for the `multiline` property in `html` sourced block attributes
8+
- 0a29e79: Added support for `integer` type block attributes
9+
- 0a29e79: Added support for `text` sourced block attributes
10+
- 51011a6: Fix: slow schema / slow queries / unexpected Schema output
11+
- c2e6648: Warn the user if they downloaded the source code .zip instead of the production ready .zip file
12+
- 8955fac: Bug Fix: inner blocks "anchor" field being applied to parent block resulting in duplicates
13+
- c474da8: Add support for querying blocks per post type
14+
- a12542c: Add interface BlockWithSupportsAnchor for querying blocks that supports Anchor field
15+
316
## 0.2.0
417

518
### Minor Changes

includes/WPGraphQLContentBlocks.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ private function setup_constants() {
7171
$main_file_path = dirname( __DIR__ ) . '/wp-graphql.php';
7272

7373
// Plugin version.
74-
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '0.2.0' );
74+
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_VERSION', '0.2.1' );
7575
// Plugin Folder Path.
7676
$this->define( 'WPGRAPHQL_CONTENT_BLOCKS_PLUGIN_DIR', plugin_dir_path( $main_file_path ) );
7777
// Plugin Root File.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@wpengine/wp-graphql-content-blocks",
33
"private": true,
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"engines": {
66
"node": ">=16.0.0"
77
},

readme.txt

+14-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: blakewpe, chriswiegman, joefusco, matthewguywright, TeresaGobble,
33
Tags: faustjs, faust, headless, decoupled, gutenberg
44
Requires at least: 5.7
55
Tested up to: 6.1
6-
Stable tag: 0.2.0
6+
Stable tag: 0.2.1
77
Requires PHP: 7.2
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html
@@ -25,6 +25,19 @@ Extends WPGraphQL to support querying (Gutenberg) Blocks as data.
2525

2626
== Changelog ==
2727

28+
= 0.2.1 =
29+
30+
### Patch Changes
31+
32+
- 0a29e79: Added support for the `multiline` property in `html` sourced block attributes
33+
- 0a29e79: Added support for `integer` type block attributes
34+
- 0a29e79: Added support for `text` sourced block attributes
35+
- 51011a6: Fix: slow schema / slow queries / unexpected Schema output
36+
- c2e6648: Warn the user if they downloaded the source code .zip instead of the production ready .zip file
37+
- 8955fac: Bug Fix: inner blocks "anchor" field being applied to parent block resulting in duplicates
38+
- c474da8: Add support for querying blocks per post type
39+
- a12542c: Add interface BlockWithSupportsAnchor for querying blocks that supports Anchor field
40+
2841
= 0.2.0 =
2942

3043
### Minor Changes

wp-graphql-content-blocks.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
99
* Text Domain: wp-graphql-content-blocks
1010
* Domain Path: /languages
11-
* Version: 0.2.0
11+
* Version: 0.2.1
1212
* Requires PHP: 7.2
1313
* Requires at least: 5.7
1414
*

0 commit comments

Comments
 (0)