diff --git a/.changeset/rotten-lies-allow.md b/.changeset/rotten-lies-allow.md deleted file mode 100644 index 6e98ae4..0000000 --- a/.changeset/rotten-lies-allow.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"wpgraphql-ide": minor ---- - -- 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) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4f160e..ef56045 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 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) + ## 2.0.0 ### Major Changes diff --git a/package.json b/package.json index 4940670..8231570 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wpgraphql-ide", - "version": "2.0.0", + "version": "2.1.0", "private": true, "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index a799fa4..6798fca 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.0.0 +Stable tag: 2.1.0 Requires PHP: 7.4 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -20,46 +20,50 @@ GraphQL IDE for WPGraphQL == Screenshots == -== Changelog == - -= 2.0.0 = - -### Major Changes - -- 43eea79: Refactored stores, including renaming 'wpgraphql-ide' to 'wpgraphql-ide/app', and adding additional stores such as 'wpgraphql-ide/editor-toolbar. - - Added `registerDocumentEditorToolbarButton` function to public API. - - This function allows registering a new editor toolbar button with the following parameters: - - - `name` (string): The name of the button to register. - - `config` (Object): The configuration object for the button. - - `priority` (number, optional): The priority for the button, with lower numbers meaning higher priority. Default is 10. - - Example usage: - - ```js - const { registerDocumentEditorToolbarButton } = window.WPGraphQLIDE; - - registerDocumentEditorToolbarButton("toggle-auth", toggleAuthButton, 1); - ``` - - ![Screenshot of the GraphiQL IDE highlighting the Toolbar buttons within the Document Editor region.](https://github.com/wp-graphql/wpgraphql-ide/assets/1260765/2395c3c8-1915-4a24-b64e-35ebe16e674f) - -= 1.1.9 = - -### Patch Changes - -- 194821c: - fix: The IDE no longer waits on `DOMContentLoaded` in order to help client side performance with heavier pages. - - add: New PHP filters for updating the drawer label: - - `wpgraphqlide_drawer_button_label` - - `wpgraphqlide_drawer_button_loading_label` -- f5130d9: docs: Remove link to community Slack on "Help Page" in favor of link community Discord (recently migrated) - -= 1.1.8 = - -### Patch Changes - -- b005b0e: update tested up to version to WordPress 6.5 - -[View the full changelog](https://github.com/wp-graphql/wpgraphql-ide/blob/main/CHANGELOG.md) +== Changelog == + += 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) + += 2.0.0 = + +### Major Changes + +- 43eea79: Refactored stores, including renaming 'wpgraphql-ide' to 'wpgraphql-ide/app', and adding additional stores such as 'wpgraphql-ide/editor-toolbar. + + Added `registerDocumentEditorToolbarButton` function to public API. + + This function allows registering a new editor toolbar button with the following parameters: + + - `name` (string): The name of the button to register. + - `config` (Object): The configuration object for the button. + - `priority` (number, optional): The priority for the button, with lower numbers meaning higher priority. Default is 10. + + Example usage: + + ```js + const { registerDocumentEditorToolbarButton } = window.WPGraphQLIDE; + + registerDocumentEditorToolbarButton("toggle-auth", toggleAuthButton, 1); + ``` + + ![Screenshot of the GraphiQL IDE highlighting the Toolbar buttons within the Document Editor region.](https://github.com/wp-graphql/wpgraphql-ide/assets/1260765/2395c3c8-1915-4a24-b64e-35ebe16e674f) + += 1.1.9 = + +### Patch Changes + +- 194821c: - fix: The IDE no longer waits on `DOMContentLoaded` in order to help client side performance with heavier pages. + - add: New PHP filters for updating the drawer label: + - `wpgraphqlide_drawer_button_label` + - `wpgraphqlide_drawer_button_loading_label` +- f5130d9: docs: Remove link to community Slack on "Help Page" in favor of link community Discord (recently migrated) + +[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 5c839e6..10efbf3 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.0.0 + * Version: 2.1.0 * Requires PHP: 7.4 * Tested up to: 6.5 *