Skip to content

Commit 558dc47

Browse files
committed
Auto-merge master back to develop
2 parents b23019a + e500d83 commit 558dc47

File tree

6 files changed

+50
-9
lines changed

6 files changed

+50
-9
lines changed

CHANGELOG.md

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

3+
## 1.32.0
4+
5+
### Upgrade Notice
6+
7+
In [#3293](https://github.com/wp-graphql/wp-graphql/pull/3293) a bug was fixed in how the `MediaDetails.file` field resolves. The previous behavior was a bug, but might have been used as a feature. If you need the field to behave the same as it did prior to this bugfix, you can [follow the instructions here](https://github.com/wp-graphql/wp-graphql/pull/3293) to override the field's resolver to how it worked before.
8+
9+
### New Features
10+
11+
- [#3294](https://github.com/wp-graphql/wp-graphql/pull/3294): feat: introduce new fields for getting mediaItem files and filePaths
12+
13+
### Chores / Bugfixes
14+
15+
- [#3293](https://github.com/wp-graphql/wp-graphql/pull/3293): fix: correct the resolver for the MediaDetails.file field to return the file name
16+
- [#3299](https://github.com/wp-graphql/wp-graphql/pull/3299): chore: restore excluded PHPCS rules
17+
- [#3301](https://github.com/wp-graphql/wp-graphql/pull/3301): fix: React backwards-compatibility with WP < 6.6
18+
- [#3302](https://github.com/wp-graphql/wp-graphql/pull/3302): chore: update NPM dependencies
19+
- [#3297](https://github.com/wp-graphql/wp-graphql/pull/3297): fix: typo in `Extensions\Registry\get_extensions()` method name
20+
- [#3303](https://github.com/wp-graphql/wp-graphql/pull/3303): chore: cleanup git cache
21+
- [#3298](https://github.com/wp-graphql/wp-graphql/pull/3298): chore: submit GF, Rank Math, and Headless Login plugins
22+
- [#3287](https://github.com/wp-graphql/wp-graphql/pull/3287): chore: fixes the syntax of the readme.txt so that the short description is shown on WordPress.org
23+
- [#3284](https://github.com/wp-graphql/wp-graphql/pull/3284): fix: Updated docs link for example of hierarchical data
24+
325
## 1.31.1
426

527
### 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.31.1' );
21+
define( 'WPGRAPHQL_VERSION', '1.32.0' );
2222
}
2323

2424
// Plugin Folder Path.

readme.txt

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: GraphQL, Headless, REST API, Decoupled, React
44
Requires at least: 5.0
55
Tested up to: 6.7.1
66
Requires PHP: 7.1
7-
Stable tag: 1.31.1
7+
Stable tag: 1.32.0
88
License: GPL-3
99
License URI: https://www.gnu.org/licenses/gpl-3.0.html
1010

@@ -72,6 +72,10 @@ Learn more about how [Appsero collects and uses this data](https://appsero.com/p
7272

7373
== Upgrade Notice ==
7474

75+
= 1.32.0 =
76+
77+
In <a href="https://github.com/wp-graphql/wp-graphql/pull/3293">#3293</a> a bug was fixed in how the `MediaDetails.file` field resolves. The previous behavior was a bug, but might have been used as a feature. If you need the field to behave the same as it did prior to this bugfix, you can [follow the instructions here](https://github.com/wp-graphql/wp-graphql/pull/3293) to override the field's resolver to how it worked before.
78+
7579
= 1.30.0 =
7680

7781
This release includes a new feature to implement a SemVer-compliant update checker, which will prevent auto-updates for major releases that include breaking changes.
@@ -84,7 +88,7 @@ There are no known breaking changes in this release, however, we recommend testi
8488

8589
This release contains an internal refactor for how the Type Registry is generated which should lead to significant performance improvements for most users.
8690

87-
While there are no intentional breaking changes, because this change impacts every suser we highly recommend testing this release thoroughly on staging servers to ensure the changes don't negatively impact your projects.
91+
While there are no intentional breaking changes, because this change impacts every user we highly recommend testing this release thoroughly on staging servers to ensure the changes don't negatively impact your projects.
8892

8993
= 1.26.0 =
9094

@@ -269,10 +273,25 @@ Composer dependencies are no longer versioned in Github. Recommended install sou
269273

270274
== Changelog ==
271275

272-
= 1.31.1 =
276+
= 1.32.0 =
277+
278+
**New Features**
279+
280+
- [#3294](https://github.com/wp-graphql/wp-graphql/pull/3294): feat: introduce new fields for getting mediaItem files and filePaths
273281

274282
**Chores / Bugfixes**
275283

284+
- [#3293](https://github.com/wp-graphql/wp-graphql/pull/3293): fix: correct the resolver for the MediaDetails.file field to return the file name
285+
- [#3299](https://github.com/wp-graphql/wp-graphql/pull/3299): chore: restore excluded PHPCS rules
286+
- [#3301](https://github.com/wp-graphql/wp-graphql/pull/3301): fix: React backwards-compatibility with WP < 6.6
287+
- [#3302](https://github.com/wp-graphql/wp-graphql/pull/3302): chore: update NPM dependencies
288+
- [#3297](https://github.com/wp-graphql/wp-graphql/pull/3297): fix: typo in `Extensions\Registry\get_extensions()` method name
289+
- [#3303](https://github.com/wp-graphql/wp-graphql/pull/3303): chore: cleanup git cache
290+
- [#3298](https://github.com/wp-graphql/wp-graphql/pull/3298): chore: submit GF, Rank Math, and Headless Login plugins
291+
- [#3287](https://github.com/wp-graphql/wp-graphql/pull/3287): chore: fixes the syntax of the readme.txt so that the short description is shown on WordPress.org
292+
- [#3284](https://github.com/wp-graphql/wp-graphql/pull/3284): fix: Updated docs link for example of hierarchical data
293+
294+
276295
- update stable tag
277296

278297
= 1.31.0 =

src/Admin/Extensions/Registry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @todo This will eventually be replaced with a server registry.
66
*
77
* @package WPGraphQL\Admin\Extensions
8-
* @since @todo
8+
* @since 1.30.0
99
*/
1010

1111
namespace WPGraphQL\Admin\Extensions;

src/WPGraphQL.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ public static function is_graphql_request(): bool {
157157
*
158158
* @param bool $is_introspection_query
159159
*
160-
* @since todo
160+
* @since 1.28.0
161161
*/
162162
public static function set_is_introspection_query( bool $is_introspection_query = false ): void {
163163
self::$is_introspection_query = $is_introspection_query;
@@ -166,7 +166,7 @@ public static function set_is_introspection_query( bool $is_introspection_query
166166
/**
167167
* Whether the request is an introspection query or not (query for __type or __schema)
168168
*
169-
* @since todo
169+
* @since 1.28.0
170170
*/
171171
public static function is_introspection_query(): bool {
172172
return self::$is_introspection_query;

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.31.1
9+
* Version: 1.32.0
1010
* Text Domain: wp-graphql
1111
* Domain Path: /languages/
1212
* Requires at least: 5.9
@@ -18,7 +18,7 @@
1818
* @package WPGraphQL
1919
* @category Core
2020
* @author WPGraphQL
21-
* @version @todo
21+
* @version 1.32.0
2222
*/
2323

2424
// Exit if accessed directly.

0 commit comments

Comments
 (0)