Skip to content

Commit

Permalink
Merge pull request #152 from wp-graphql/changeset-release/main
Browse files Browse the repository at this point in the history
release: 📦 Release Plugin
  • Loading branch information
josephfusco committed May 21, 2024
2 parents 36cd2c1 + a9ff182 commit e0504c7
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 54 deletions.
8 changes: 0 additions & 8 deletions .changeset/rotten-lies-allow.md

This file was deleted.

10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wpgraphql-ide",
"version": "2.0.0",
"version": "2.1.0",
"private": true,
"repository": {
"type": "git",
Expand Down
92 changes: 48 additions & 44 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
2 changes: 1 addition & 1 deletion wpgraphql-ide.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*
Expand Down

0 comments on commit e0504c7

Please sign in to comment.