Skip to content

Commit 43c9541

Browse files
authored
Release/0.10.3 (#225)
* chore: update composer deps * chore: version bump * chore: update changelog * chore: move shields below description
1 parent babbb20 commit 43c9541

File tree

8 files changed

+89
-79
lines changed

8 files changed

+89
-79
lines changed

CHANGELOG.md

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

3+
## v0.10.3 - WP Jamstack Deployments Support
4+
5+
This _minor_ release adds support for [WP Jamstack Deployments](https://github.com/crgeary/wp-jamstack-deployments). We also fixed a bug where non-authenticated users could not access their own `entry` on the `submitGfForm` payload.
6+
7+
- feat: Add support for WP Jamstack Deployments.
8+
- fix: Use `graphql_gf_can_view_entries` filter to expose `submitGfFormMutation.entry` to non-authenticated users. (h/t @robmarshall and @IlirBajrami )
9+
- fix: Change WPGatsby Trigger from deprecated `gform_after_duplicate_form` action to `gform_post_form_duplicated`.
10+
- dev: add `$resume_token` and `$draft_entry arguments` to `graphql_gf_can_view_draft_entries`.
11+
- dev: add `$entry_id` and `$entry arguments` to `graphql_gf_can_view_entries`.
12+
- tests: use `databaseId` instead of deprecated `formId` when testing `FormQueriesTest`
13+
- chore: Add new plugin logo and banner ✨
14+
315
## v0.10.2 - PHP 8 Support
416

517
This _minor_ release adds official support for PHP v8.0. We also added Gravity Forms Settings to the schema.

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
![alt text](./.wordpress-org/icon-128x128.png "WPGraphQL for Gravity Forms Logo")
22
# WPGraphQL for Gravity Forms
33

4-
[![Project Status: Active.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) ![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/harness-software/wp-graphql-gravity-forms/v0.10.2) ![GitHub forks](https://img.shields.io/github/forks/harness-software/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/harness-software/wp-graphql-gravity-forms?style=social)
5-
64
A WordPress plugin that provides a GraphQL API for interacting with Gravity Forms.
75

6+
7+
[![Project Status: Active.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active) ![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/harness-software/wp-graphql-gravity-forms/v0.10.3) ![GitHub forks](https://img.shields.io/github/forks/harness-software/wp-graphql-gravity-forms?style=social) ![GitHub Repo stars](https://img.shields.io/github/stars/harness-software/wp-graphql-gravity-forms?style=social)
8+
89
* [Join the WPGraphQL community on Slack.](https://join.slack.com/t/wp-graphql/shared_invite/zt-3vloo60z-PpJV2PFIwEathWDOxCTTLA)
910
* [Documentation](#documentation)
1011

composer.lock

Lines changed: 49 additions & 49 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Tested up to: 5.9.0
66
Requires PHP: 7.4
77
Requires Gravity Forms: 2.5.0
88
Requires WPGraphQL: 1.6.4
9-
Stable tag: 0.10.2
9+
Stable tag: 0.10.3
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/Extensions/WPJamstackDeployments/WPJamstackDeployments.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Enables and initializes the Gravity Forms Action Monitor
44
*
55
* @package WPGraphQL\GF\Extensions\WPJamstackDeployments
6-
* @since @todo
6+
* @since 0.10.3
77
*/
88

99
namespace WPGraphQL\GF\Extensions\WPJamstackDeployments;

src/Mutation/SubmitForm.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,13 @@
1010

1111
namespace WPGraphQL\GF\Mutation;
1212

13-
use Exception;
1413
use GFAPI;
1514
use GFFormsModel;
1615
use GraphQL\Error\UserError;
1716
use GraphQL\Type\Definition\ResolveInfo;
1817
use WPGraphQL\AppContext;
1918
use WPGraphQL\GF\Data\EntryObjectMutation;
2019
use WPGraphQL\GF\Data\Factory;
21-
use WPGraphQL\GF\Data\Loader\EntriesLoader;
22-
use WPGraphQL\GF\Model\DraftEntry;
2320
use WPGraphQL\GF\Model\SubmittedEntry;
2421
use WPGraphQL\GF\Type\Input\FormFieldValuesInput;
2522
use WPGraphQL\GF\Type\Input\SubmitFormMetaInput;

0 commit comments

Comments
 (0)