From 2e21c00b3d13762a8d552ae1d8cc16144773017b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 25 Jun 2024 15:22:26 +0000 Subject: [PATCH] =?UTF-8?q?release:=20=F0=9F=93=A6=20Release=20Plugin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/afraid-fishes-judge.md | 5 ----- .changeset/silver-comics-arrive.md | 5 ----- .changeset/soft-spies-swim.md | 5 ----- CHANGELOG.md | 8 ++++++++ package.json | 2 +- readme.txt | 20 +++++++++----------- wpgraphql-ide.php | 4 ++-- 7 files changed, 20 insertions(+), 29 deletions(-) delete mode 100644 .changeset/afraid-fishes-judge.md delete mode 100644 .changeset/silver-comics-arrive.md delete mode 100644 .changeset/soft-spies-swim.md diff --git a/.changeset/afraid-fishes-judge.md b/.changeset/afraid-fishes-judge.md deleted file mode 100644 index 12090d1..0000000 --- a/.changeset/afraid-fishes-judge.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wpgraphql-ide": patch ---- - -- Remove npm workspaces and have webpack handle compiling of the main app and internal plugins. diff --git a/.changeset/silver-comics-arrive.md b/.changeset/silver-comics-arrive.md deleted file mode 100644 index 608250c..0000000 --- a/.changeset/silver-comics-arrive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wpgraphql-ide": patch ---- - -- Add settings link to the IDE Settings tab from the WordPress settings page. diff --git a/.changeset/soft-spies-swim.md b/.changeset/soft-spies-swim.md deleted file mode 100644 index f74e1c9..0000000 --- a/.changeset/soft-spies-swim.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"wpgraphql-ide": patch ---- - -- **New Capability**: Introduced a new custom capability `manage_graphql_ide`. This capability allows administrators to control access to the WPGraphQL IDE functionalities. The capability has been assigned to the `administrator` role by default. diff --git a/CHANGELOG.md b/CHANGELOG.md index cf64017..379f905 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 2.1.3 + +### Patch Changes + +- 66f7e28: - Remove npm workspaces and have webpack handle compiling of the main app and internal plugins. +- 43479e0: - Add settings link to the IDE Settings tab from the WordPress settings page. +- 1cfbdff: - **New Capability**: Introduced a new custom capability `manage_graphql_ide`. This capability allows administrators to control access to the WPGraphQL IDE functionalities. The capability has been assigned to the `administrator` role by default. + ## 2.1.2 ### Patch Changes diff --git a/package.json b/package.json index 1d5af84..fa3a312 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wpgraphql-ide", - "version": "2.1.2", + "version": "2.1.3", "private": true, "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 162a334..b7f9215 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: jasonbahl, joefusco Tags: headless, decoupled, graphql, devtools Requires at least: 5.7 Tested up to: 6.5 -Stable tag: 2.1.2 +Stable tag: 2.1.3 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -22,6 +22,14 @@ GraphQL IDE for WPGraphQL == Changelog == += 2.1.3 = + +### Patch Changes + +- 66f7e28: - Remove npm workspaces and have webpack handle compiling of the main app and internal plugins. +- 43479e0: - Add settings link to the IDE Settings tab from the WordPress settings page. +- 1cfbdff: - **New Capability**: Introduced a new custom capability `manage_graphql_ide`. This capability allows administrators to control access to the WPGraphQL IDE functionalities. The capability has been assigned to the `administrator` role by default. + = 2.1.2 = ### Patch Changes @@ -34,14 +42,4 @@ GraphQL IDE for WPGraphQL - c450e5a: - Reorganized plugin directories/files. -= 2.1.0 = - -### Minor Changes - -- 6752c37: - Added new settings section to WPGraphQL, IDE Settings - - - Added new setting, Admin Bar Link Behavior - - ![WPGraphQL IDE Settings tab showing the admin bar link behavior and Show legacy editor settings](https://github.com/wp-graphql/wpgraphql-ide/assets/6676674/59236b4c-0019-40a8-ae9b-a1228997f30c) - [View the full changelog](https://github.com/wp-graphql/wpgraphql-ide/blob/main/CHANGELOG.md) \ No newline at end of file diff --git a/wpgraphql-ide.php b/wpgraphql-ide.php index 33beda8..e7d868c 100644 --- a/wpgraphql-ide.php +++ b/wpgraphql-ide.php @@ -7,7 +7,7 @@ * GitHub Plugin URI: https://github.com/wp-graphql/wpgraphql-ide * License: GPLv3 or later * Text Domain: wpgraphql-ide - * Version: 2.1.2 + * Version: 2.1.3 * Requires PHP: 7.4 * Tested up to: 6.5 * Requires Plugins: wp-graphql @@ -21,7 +21,7 @@ exit; } -define( 'WPGRAPHQL_IDE_VERSION', '2.1.2' ); +define( 'WPGRAPHQL_IDE_VERSION', '2.1.3' ); define( 'WPGRAPHQL_IDE_ROOT_ELEMENT_ID', 'wpgraphql-ide-root' ); define( 'WPGRAPHQL_IDE_PLUGIN_DIR_PATH', plugin_dir_path( __FILE__ ) ); define( 'WPGRAPHQL_IDE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );