Skip to content

Commit

Permalink
- prep changelog and readme for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonbahl committed Sep 19, 2024
1 parent 6516f75 commit 4b1d0cd
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 1.29.0

### New Features

- [#3208](https://github.com/wp-graphql/wp-graphql/pull/3208): feat: expose commenter edge fields
- [#3207](https://github.com/wp-graphql/wp-graphql/pull/3207): feat: introduce get_graphql_admin_notices and convert AdminNotices class to a singleton

### Chores / Bugfixes

- [#3213](https://github.com/wp-graphql/wp-graphql/pull/3213): chore(deps): bump the npm_and_yarn group across 1 directory with 4 updates
- [#3212](https://github.com/wp-graphql/wp-graphql/pull/3212): chore(deps): bump dset from 3.1.3 to 3.1.4 in the npm_and_yarn group across 1 directory
- [#3211](https://github.com/wp-graphql/wp-graphql/pull/3211): chore: add LABELS.md
- [#3201](https://github.com/wp-graphql/wp-graphql/pull/3201): fix: ensure connectedTerms returns terms for the specified taxonomy only
- [#3199](https://github.com/wp-graphql/wp-graphql/pull/3199): chore(deps-dev): bump the npm_and_yarn group across 1 directory with 2 updates

## 1.28.1

### Chores / Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function graphql_setup_constants() {

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

// Plugin Folder Path.
Expand Down
16 changes: 16 additions & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,22 @@ Composer dependencies are no longer versioned in Github. Recommended install sou

== Changelog ==

= 1.29.0 =

**New Features**

- [#3208](https://github.com/wp-graphql/wp-graphql/pull/3208): feat: expose commenter edge fields
- [#3207](https://github.com/wp-graphql/wp-graphql/pull/3207): feat: introduce get_graphql_admin_notices and convert AdminNotices class to a singleton

**Chores / Bugfixes**

- [#3213](https://github.com/wp-graphql/wp-graphql/pull/3213): chore(deps): bump the npm_and_yarn group across 1 directory with 4 updates
- [#3212](https://github.com/wp-graphql/wp-graphql/pull/3212): chore(deps): bump dset from 3.1.3 to 3.1.4 in the npm_and_yarn group across 1 directory
- [#3211](https://github.com/wp-graphql/wp-graphql/pull/3211): chore: add LABELS.md
- [#3201](https://github.com/wp-graphql/wp-graphql/pull/3201): fix: ensure connectedTerms returns terms for the specified taxonomy only
- [#3199](https://github.com/wp-graphql/wp-graphql/pull/3199): chore(deps-dev): bump the npm_and_yarn group across 1 directory with 2 updates


= 1.28.1 =

**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 @@ -401,7 +401,7 @@ static function ( $interfaces, $config, $type ) {
* Prevent WPML from redirecting within WPGraphQL requests
*
* @see https://github.com/wp-graphql/wp-graphql/issues/1626#issue-769089073
* @since @todo
* @since 1.27.0
*/
add_filter(
'wpml_is_redirected',
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.28.1
* Version: 1.29.0
* Text Domain: wp-graphql
* Domain Path: /languages/
* Requires at least: 5.9
Expand All @@ -18,7 +18,7 @@
* @package WPGraphQL
* @category Core
* @author WPGraphQL
* @version 1.28.1
* @version 1.29.0
*/

// Exit if accessed directly.
Expand Down

0 comments on commit 4b1d0cd

Please sign in to comment.