Skip to content

Commit c309578

Browse files
authored
chore: version bump (#400)
1 parent 18014a5 commit c309578

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

3-
## Unreleased
3+
## v0.12.5
4+
5+
This _minor_ release fixes a bug where `EmailField.inputs` were returning `null` when Email Confirmation is disabled and an issue where `formFields` were not being correctly filtered by their `where` args. We've also updated the Composer dependencies, did some code linting, and tested compatibility against WordPress 6.4.x.
46

57
- fix: Ensure `EmailField` inputs are hydrated when Email Confirmation is disabled. H/t @gytjarek.
68
- fix: Correctly use filtered form fields when preparing the connection data. H/t @samuelhadsall.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A WordPress plugin that adds <a href="https://wpgraphql.com" target="_blank">WPG
88

99
-----
1010

11-
![Packagist License](https://img.shields.io/packagist/l/harness-software/wp-graphql-gravity-forms?color=green) ![Packagist Version](https://img.shields.io/packagist/v/harness-software/wp-graphql-gravity-forms?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/axewp/wp-graphql-gravity-forms/v0.12.4) ![GitHub forks](https://img.shields.io/github/forks/axewp/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/axewp/wp-graphql-gravity-forms?style=social)<br />
11+
![Packagist License](https://img.shields.io/packagist/l/harness-software/wp-graphql-gravity-forms?color=green) ![Packagist Version](https://img.shields.io/packagist/v/harness-software/wp-graphql-gravity-forms?label=stable) ![GitHub commits since latest release (by SemVer)](https://img.shields.io/github/commits-since/axewp/wp-graphql-gravity-forms/v0.12.5) ![GitHub forks](https://img.shields.io/github/forks/axewp/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/axewp/wp-graphql-gravity-forms?style=social)<br />
1212
[![Coverage Status](https://coveralls.io/repos/github/AxeWP/wp-graphql-gravity-forms/badge.svg?branch=develop)](https://coveralls.io/github/AxeWP/wp-graphql-gravity-forms?branch=develop) [![WordPress Coding Standards](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/code-standard.yml/badge.svg)](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/code-standard.yml) [![Code Quality](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/code-quality.yml/badge.svg)](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/code-quality.yml) [![Schema Linter](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml/badge.svg)](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml)
1313

1414
## Overview

phpstan/constants.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
define( 'WPGRAPHQL_GF_AUTOLOAD', true );
77
define( 'CRGEARY_JAMSTACK_DEPLOYMENTS_OPTIONS_KEY', 'wp-jamstack-deployments' );
88
define( 'WPGRAPHQL_GF_PLUGIN_FILE', 'wp-graphql-gravity-forms.php' );
9-
define( 'WPGRAPHQL_GF_VERSION', '0.12.4' );
9+
define( 'WPGRAPHQL_GF_VERSION', '0.12.5' );

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Tested up to: 6.4.3
66
Requires PHP: 7.4
77
Requires Gravity Forms: 2.5.0
88
Requires WPGraphQL: 1.9.0
9-
Stable tag: 0.12.4
9+
Stable tag: 0.12.5
1010
Maintained at: https://github.com/axewp/wp-graphql-gravity-forms
1111
License: GPL-3
1212
License URI: https://www.gnu.org/licenses/gpl-3.0.html

wp-graphql-gravity-forms.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Author: AxePress Development
88
* Author URI: https://axepress.dev
99
* Update URI: https://github.com/axewp/wp-graphql-gravity-forms/releases
10-
* Version: 0.12.4
10+
* Version: 0.12.5
1111
* Text Domain: wp-graphql-gravity-forms
1212
* Domain Path: /languages
1313
* Requires at least: 5.4.1
@@ -35,7 +35,7 @@
3535
function gf_graphql_constants(): void {
3636
// Plugin version.
3737
if ( ! defined( 'WPGRAPHQL_GF_VERSION' ) ) {
38-
define( 'WPGRAPHQL_GF_VERSION', '0.12.4' );
38+
define( 'WPGRAPHQL_GF_VERSION', '0.12.5' );
3939
}
4040

4141
// Plugin Folder Path.

0 commit comments

Comments
 (0)