Skip to content

Commit 793bd15

Browse files
authored
Bump to v0.3.1 (#85)
* Add since tags. * Update changelog * Version bump
1 parent cd6d686 commit 793bd15

File tree

6 files changed

+10
-2
lines changed

6 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## v0.3.1 - Bugfixes
4+
- Removes `abstract` class definition from FieldProperty classes. (#79)
5+
- `ConsentFieldValue`: The `value` field was a conflicting type `Boolean`. Now it correctly returns a `String` with the consent message. ( #80 )
6+
- `FormNotificationRouting`: The `fieldId` now correctly returns an `Int` instead of a `String`. (#81)
7+
- When checking for missing `GravityFormsForm` values, `limitEntriesCount`, `scheduleEndHour` and `scheduleEndMinute` now correctly return as type `Int` (#83)
38
## v0.3.0 - Add Missing Mutations, the Consent Field, and more!
49

510
This release focuses on adding in missing mutations for existing form field - including those needed for Post Creation. We also added support for the Consent field, and squashed some bugs.

readme.txt

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

src/DataManipulators/FormDataManipulator.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*
77
* @package WPGraphQLGravityForms\DataManipulators
88
* @since 0.0.1
9+
* @since 0.3.1 `limitEntriesCount`, `scheduleEndHour` and `scheduleEndMinute` correctly return as type `Int`.
910
*/
1011

1112
namespace WPGraphQLGravityForms\DataManipulators;

src/Types/Field/FieldValue/ConsentFieldValue.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*
66
* @package WPGraphQLGravityForms\Types\Field\FieldValue
77
* @since 0.3.0
8+
* @since 0.3.1 `value` changed to type `String`.
89
*/
910

1011
namespace WPGraphQLGravityForms\Types\Field\FieldValue;

src/Types/Form/FormNotificationRouting.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
*
77
* @package WPGraphQLGravityForms\Types\Form
88
* @since 0.0.1
9+
* @since 0.3.1 `fieldId` changed to type `Int`.
910
*/
1011

1112
namespace WPGraphQLGravityForms\Types\Form;

wp-graphql-gravity-forms.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Description: Adds Gravity Forms functionality to the WPGraphQL schema.
77
* Author: Harness Software
88
* Author URI: https://www.harnessup.com
9-
* Version: 0.3.0
9+
* Version: 0.3.1
1010
* Text Domain: wp-graphql-gravity-forms
1111
* Domain Path: /languages
1212
* Requires at least: 5.4.1

0 commit comments

Comments
 (0)