Skip to content

Commit a1edc67

Browse files
authored
chore: version bump (#486)
* chore: version bump * chore: typo * chore: breaking disclaimer
1 parent ae0ac0a commit a1edc67

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## [v0.13.4]
6+
7+
This _minor_ release adds support for filtering entries by `isRead` and `isStarred` statuses, improves handling of `AddressField` default values, and deprecates the `PhoneField.phoneFormat` field in favor of `PhoneField.phoneFormatType` (with a new `GfPhoneFormat` type incoming).
8+
9+
> [!IMPORTANT]
10+
> `GfFieldWithAddressSetting.defaultState` and changed type from `AddressFieldProvinceEnum` to `AddressFieldStateEnum`.
11+
> While this is technically a breaking schema change, we're treating it as a bugfix, since trying to get US State values coerced into a Canadian Province would have caused users any users who had adopted this approach fatal errors.
12+
513
- feat: Deprecate `PhoneField.phoneFormat` in favor of `PhoneField.phoneFormatType`, and add new `GfPhoneFormat` type. Props @chetanupare, @justlevine.
614
- feat: Add support for filtering entries by `isRead` and `isStarred` statuses.
715
- fix: Correctly resolve `AddressField.defaultState`, `AddressField.defaultProvince` based on the `addressType`. H/t @byanko-bot

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.13.3) ![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.13.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 />
1212
[![Coverage Status](https://codecov.io/gh/AxeWP/wp-graphql-gravity-forms/graph/badge.svg?token=VIYRD2ZSYR)](https://codecov.io/gh/AxeWP/wp-graphql-gravity-forms) [![WordPress Coding Standards](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/phpcs.yml/badge.svg)](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/phpcs.yml) [![Code Quality](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/phpstan.yml/badge.svg)](https://github.com/axewp/wp-graphql-gravity-forms/actions/workflows/phpstan.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
@@ -5,4 +5,4 @@
55

66
define( 'CRGEARY_JAMSTACK_DEPLOYMENTS_OPTIONS_KEY', 'wp-jamstack-deployments' );
77
define( 'WPGRAPHQL_GF_PLUGIN_FILE', 'wp-graphql-gravity-forms.php' );
8-
define( 'WPGRAPHQL_GF_VERSION', '0.13.3' );
8+
define( 'WPGRAPHQL_GF_VERSION', '0.13.4' );

readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
Contributors: justlevine, kellenmace, mtdbyanechko, tinytoolbox
33
Tags: Forms, GraphQL, Gatsby, Headless, GF, Gravity, WPGraphQL, React
44
Requires at least: 6.0
5-
Tested up to: 6.9
5+
Tested up to: 6.9.1
66
Requires PHP: 7.4
77
Requires Gravity Forms: 2.7.0
88
Requires WPGraphQL: 1.26.0
9-
Stable tag: 0.13.3
9+
Stable tag: 0.13.4
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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
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.13.3
10+
* Version: 0.13.4
1111
* Text Domain: wp-graphql-gravity-forms
1212
* Domain Path: /languages
1313
* Requires at least: 6.0
14-
* Tested up to: 6.9
14+
* Tested up to: 6.9.1
1515
* Requires PHP: 7.4
1616
* Requires Plugins: wp-graphql
1717
* Gravity Forms requires at least: 2.7.0
@@ -46,7 +46,7 @@
4646
function constants(): void {
4747
// Plugin version.
4848
if ( ! defined( 'WPGRAPHQL_GF_VERSION' ) ) {
49-
define( 'WPGRAPHQL_GF_VERSION', '0.13.3' );
49+
define( 'WPGRAPHQL_GF_VERSION', '0.13.4' );
5050
}
5151

5252
// Plugin Folder Path.

0 commit comments

Comments
 (0)