Skip to content

Commit 2b39920

Browse files
authored
Merge pull request #203 from wp-graphql/changeset-release/main
release: 📦 Release Plugin
2 parents 3020ef0 + 26dec42 commit 2b39920

File tree

6 files changed

+24
-20
lines changed

6 files changed

+24
-20
lines changed

.changeset/friendly-tools-sin.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/moody-mangos-check.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## 4.0.0
4+
5+
### Major Changes
6+
7+
- eda911d: Updated the plugin's custom filter and action names to be consistent across the plugin
8+
9+
### Patch Changes
10+
11+
- eda911d: Fixed bug where credentials were being sent in the headers unnecessarily under certain conditions
12+
313
## 3.0.0
414

515
### Major Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wpgraphql-ide",
3-
"version": "3.0.0",
3+
"version": "4.0.0",
44
"private": true,
55
"repository": {
66
"type": "git",

readme.txt

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: jasonbahl, joefusco
33
Tags: headless, decoupled, graphql, devtools
44
Requires at least: 5.7
55
Tested up to: 6.5
6-
Stable tag: 3.0.0
6+
Stable tag: 4.0.0
77
Requires PHP: 7.4
88
License: GPL-3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
@@ -39,6 +39,16 @@ The WPGraphQL IDE plugin includes several important dependencies. You can learn
3939

4040
== Changelog ==
4141

42+
= 4.0.0 =
43+
44+
### Major Changes
45+
46+
- eda911d: Updated the plugin's custom filter and action names to be consistent across the plugin
47+
48+
### Patch Changes
49+
50+
- eda911d: Fixed bug where credentials were being sent in the headers unnecessarily under certain conditions
51+
4252
= 3.0.0 =
4353

4454
### Major Changes
@@ -52,10 +62,4 @@ The WPGraphQL IDE plugin includes several important dependencies. You can learn
5262
- cb6eda0: Reorder sidebar menu to always have the IDE first.
5363
- 1f50c93: Fixes issue where custom capability was not being assigned to the administrator role. This now happens on plugin activation.
5464

55-
= 2.1.4 =
56-
57-
### Patch Changes
58-
59-
- 8f6f131: Update license to GPL-3
60-
6165
[View the full changelog](https://github.com/wp-graphql/wpgraphql-ide/blob/main/CHANGELOG.md)

wpgraphql-ide.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* License: GPL-3
99
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010
* Text Domain: wpgraphql-ide
11-
* Version: 3.0.0
11+
* Version: 4.0.0
1212
* Requires PHP: 7.4
1313
* Tested up to: 6.5
1414
* Requires Plugins: wp-graphql
@@ -22,7 +22,7 @@
2222
exit;
2323
}
2424

25-
define( 'WPGRAPHQL_IDE_VERSION', '3.0.0' );
25+
define( 'WPGRAPHQL_IDE_VERSION', '4.0.0' );
2626
define( 'WPGRAPHQL_IDE_ROOT_ELEMENT_ID', 'wpgraphql-ide-root' );
2727
define( 'WPGRAPHQL_IDE_PLUGIN_DIR_PATH', plugin_dir_path( __FILE__ ) );
2828
define( 'WPGRAPHQL_IDE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );

0 commit comments

Comments
 (0)