Skip to content

Commit

Permalink
Auto-merge master back to develop
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jul 26, 2023
2 parents eceb38d + df0d10f commit ee2f5e8
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.14.9

## Chores / Bugfixes

- [#2865](https://github.com/wp-graphql/wp-graphql/pull/2865): fix: user roles should return empty if user doesn't have roles. Thanks @j3ang!
- [#2870](https://github.com/wp-graphql/wp-graphql/pull/2870): fix: Type Loader returns null when "graphql_single_name" value has underscores [regression]
- [#2871](https://github.com/wp-graphql/wp-graphql/pull/2871): fix: update tests, follow-up to [#2865](https://github.com/wp-graphql/wp-graphql/pull/2865)

## 1.14.8

## Chores / Bugfixes
Expand Down
11 changes: 10 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Tags: GraphQL, JSON, API, Gatsby, Faust, Headless, Decoupled, Svelte, React, Nex
Requires at least: 5.0
Tested up to: 6.2
Requires PHP: 7.1
Stable tag: 1.14.8
Stable tag: 1.14.9
License: GPL-3
License URI: https://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -240,6 +240,15 @@ Composer dependencies are no longer versioned in Github. Recommended install sou

== Changelog ==

= 1.14.9 =

**Chores / Bugfixes**

- [#2865](https://github.com/wp-graphql/wp-graphql/pull/2865): fix: user roles should return empty if user doesn't have roles. Thanks @j3ang!
- [#2870](https://github.com/wp-graphql/wp-graphql/pull/2870): fix: Type Loader returns null when "graphql_single_name" value has underscores [regression]
- [#2871](https://github.com/wp-graphql/wp-graphql/pull/2871): fix: update tests, follow-up to [#2865](https://github.com/wp-graphql/wp-graphql/pull/2865)


= 1.14.8 =

**Chores / Bugfixes**
Expand Down
2 changes: 1 addition & 1 deletion src/WPGraphQL.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ private function setup_constants() {

// Plugin version.
if ( ! defined( 'WPGRAPHQL_VERSION' ) ) {
define( 'WPGRAPHQL_VERSION', '1.14.8' );
define( 'WPGRAPHQL_VERSION', '1.14.9' );
}

// Plugin Folder Path.
Expand Down
4 changes: 2 additions & 2 deletions wp-graphql.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Description: GraphQL API for WordPress
* Author: WPGraphQL
* Author URI: http://www.wpgraphql.com
* Version: 1.14.8
* Version: 1.14.9
* Text Domain: wp-graphql
* Domain Path: /languages/
* Requires at least: 5.0
Expand All @@ -18,7 +18,7 @@
* @package WPGraphQL
* @category Core
* @author WPGraphQL
* @version 1.14.8
* @version 1.14.9
*/

// Exit if accessed directly.
Expand Down

0 comments on commit ee2f5e8

Please sign in to comment.