Skip to content

Commit 0de7266

Browse files
committed
Auto-merge master back to develop
2 parents ce49102 + 24bd28b commit 0de7266

File tree

5 files changed

+37
-6
lines changed

5 files changed

+37
-6
lines changed

CHANGELOG.md

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

3+
## 1.23.0
4+
5+
### New Features
6+
7+
- [#3073](https://github.com/wp-graphql/wp-graphql/pull/3073): feat: expose `hasPassword` and `password` fields on Post objects. Thanks @justlevine!
8+
- [#3091](https://github.com/wp-graphql/wp-graphql/pull/3091): feat: introduce actions and filters for GraphQL Admin Notices
9+
10+
### Chores / Bugfixes
11+
12+
- [#3079](https://github.com/wp-graphql/wp-graphql/pull/3079): fix: GraphiQL IDE test failures
13+
- [#3084](https://github.com/wp-graphql/wp-graphql/pull/3084): perf: refactor PluginConnectionResolver to only fetch plugins once. Thanks @justlevine!
14+
- [#3092](https://github.com/wp-graphql/wp-graphql/pull/3092): ci: test against wp 6.5
15+
- [#3093](https://github.com/wp-graphql/wp-graphql/pull/3093): ci: Update actions in GitHub workflows and cleanup. Thanks @justlevine!
16+
- [#3093](https://github.com/wp-graphql/wp-graphql/pull/3093): chore: update Composer dev-deps and lint. Thanks @justlevine!
17+
318
## 1.22.1
419

520
### Chores / Bugfixes

constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ function graphql_setup_constants() {
1818

1919
// Plugin version.
2020
if ( ! defined( 'WPGRAPHQL_VERSION' ) ) {
21-
define( 'WPGRAPHQL_VERSION', '1.22.1' );
21+
define( 'WPGRAPHQL_VERSION', '1.23.0' );
2222
}
2323

2424
// Plugin Folder Path.

readme.txt

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: GraphQL, JSON, API, Gatsby, Faust, Headless, Decoupled, Svelte, React, Nex
44
Requires at least: 5.0
55
Tested up to: 6.5
66
Requires PHP: 7.1
7-
Stable tag: 1.22.1
7+
Stable tag: 1.23.0
88
License: GPL-3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -252,6 +252,22 @@ Composer dependencies are no longer versioned in Github. Recommended install sou
252252

253253
== Changelog ==
254254

255+
= 1.23.0 =
256+
257+
**New Features**
258+
259+
- [#3073](https://github.com/wp-graphql/wp-graphql/pull/3073): feat: expose `hasPassword` and `password` fields on Post objects. Thanks @justlevine!
260+
- [#3091](https://github.com/wp-graphql/wp-graphql/pull/3091): feat: introduce actions and filters for GraphQL Admin Notices
261+
262+
**Chores / Bugfixes**
263+
264+
- [#3079](https://github.com/wp-graphql/wp-graphql/pull/3079): fix: GraphiQL IDE test failures
265+
- [#3084](https://github.com/wp-graphql/wp-graphql/pull/3084): perf: refactor PluginConnectionResolver to only fetch plugins once. Thanks @justlevine!
266+
- [#3092](https://github.com/wp-graphql/wp-graphql/pull/3092): ci: test against wp 6.5
267+
- [#3093](https://github.com/wp-graphql/wp-graphql/pull/3093): ci: Update actions in GitHub workflows and cleanup. Thanks @justlevine!
268+
- [#3093](https://github.com/wp-graphql/wp-graphql/pull/3093): chore: update Composer dev-deps and lint. Thanks @justlevine!
269+
270+
255271
= 1.22.1 =
256272

257273
**Chores / Bugfixes**

src/Admin/AdminNotices.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ protected function render_notices(): void {
255255
*
256256
* @param array<string,mixed> $notices The notices to be rendered
257257
*
258-
* @since todo
258+
* @since v1.23.0
259259
*/
260260
do_action( 'graphql_admin_notices_render_notices', $notices );
261261

@@ -294,7 +294,7 @@ protected function render_notices(): void {
294294
* @param bool $is_dismissable Whether the notice is dismissable or not
295295
* @param int $count The count of the notice
296296
*
297-
* @since todo
297+
* @since v1.23.0
298298
*/
299299
do_action( 'graphql_admin_notices_render_notice', $notice_slug, $notice, $is_dismissable, $count );
300300
++$count;

wp-graphql.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Description: GraphQL API for WordPress
77
* Author: WPGraphQL
88
* Author URI: http://www.wpgraphql.com
9-
* Version: 1.22.1
9+
* Version: 1.23.0
1010
* Text Domain: wp-graphql
1111
* Domain Path: /languages/
1212
* Requires at least: 5.0
@@ -18,7 +18,7 @@
1818
* @package WPGraphQL
1919
* @category Core
2020
* @author WPGraphQL
21-
* @version 1.22.1
21+
* @version 1.23.0
2222
*/
2323

2424
// Exit if accessed directly.

0 commit comments

Comments
 (0)