From c30957817876c92448fe244256d6aaa8c60be8d7 Mon Sep 17 00:00:00 2001 From: Dovid Levine Date: Sun, 4 Feb 2024 06:50:28 +0200 Subject: [PATCH] chore: version bump (#400) --- CHANGELOG.md | 4 +++- README.md | 2 +- phpstan/constants.php | 2 +- readme.txt | 2 +- wp-graphql-gravity-forms.php | 4 ++-- 5 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4544f886..22bde3a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog -## Unreleased +## v0.12.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. - fix: Ensure `EmailField` inputs are hydrated when Email Confirmation is disabled. H/t @gytjarek. - fix: Correctly use filtered form fields when preparing the connection data. H/t @samuelhadsall. diff --git a/README.md b/README.md index 0a496c0f..3feb16b6 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ A WordPress plugin that adds WPG ----- -![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)
+![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)
[![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) ## Overview diff --git a/phpstan/constants.php b/phpstan/constants.php index 666bd984..31c175b8 100644 --- a/phpstan/constants.php +++ b/phpstan/constants.php @@ -6,4 +6,4 @@ define( 'WPGRAPHQL_GF_AUTOLOAD', true ); define( 'CRGEARY_JAMSTACK_DEPLOYMENTS_OPTIONS_KEY', 'wp-jamstack-deployments' ); define( 'WPGRAPHQL_GF_PLUGIN_FILE', 'wp-graphql-gravity-forms.php' ); -define( 'WPGRAPHQL_GF_VERSION', '0.12.4' ); +define( 'WPGRAPHQL_GF_VERSION', '0.12.5' ); diff --git a/readme.txt b/readme.txt index 70368b68..5bd7ead9 100644 --- a/readme.txt +++ b/readme.txt @@ -6,7 +6,7 @@ Tested up to: 6.4.3 Requires PHP: 7.4 Requires Gravity Forms: 2.5.0 Requires WPGraphQL: 1.9.0 -Stable tag: 0.12.4 +Stable tag: 0.12.5 Maintained at: https://github.com/axewp/wp-graphql-gravity-forms License: GPL-3 License URI: https://www.gnu.org/licenses/gpl-3.0.html diff --git a/wp-graphql-gravity-forms.php b/wp-graphql-gravity-forms.php index 19689eec..025569ab 100644 --- a/wp-graphql-gravity-forms.php +++ b/wp-graphql-gravity-forms.php @@ -7,7 +7,7 @@ * Author: AxePress Development * Author URI: https://axepress.dev * Update URI: https://github.com/axewp/wp-graphql-gravity-forms/releases - * Version: 0.12.4 + * Version: 0.12.5 * Text Domain: wp-graphql-gravity-forms * Domain Path: /languages * Requires at least: 5.4.1 @@ -35,7 +35,7 @@ function gf_graphql_constants(): void { // Plugin version. if ( ! defined( 'WPGRAPHQL_GF_VERSION' ) ) { - define( 'WPGRAPHQL_GF_VERSION', '0.12.4' ); + define( 'WPGRAPHQL_GF_VERSION', '0.12.5' ); } // Plugin Folder Path.