Skip to content

Commit db3e6a0

Browse files
authored
Release/v0.11.1 (#265)
* ci: setup plugin when running stan * chore: version bump * chore: update release notes * chore: fix autoloader
1 parent e57bdd5 commit db3e6a0

File tree

11 files changed

+31
-15
lines changed

11 files changed

+31
-15
lines changed

.github/workflows/code-quality.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ jobs:
5454
cp .env.dist .env
5555
echo GF_KEY=${{ secrets.GF_KEY }} >> .env
5656
composer run install-stan-env
57-
cp -R . /tmp/wordpress/wp-content/plugins/wp-graphql-gravity-forms
5857
5958
- name: Run PHPStan
6059
working-directory: /tmp/wordpress/wp-content/plugins/wp-graphql-gravity-forms

CHANGELOG.md

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

3+
## v0.11.1 - reCAPTCHA Settings & Submission Confirmations
4+
5+
This _minor_ release adds the reCaptcha V2 `type` and `publicKey` to `gfSettings.recaptcha`, the validated `confirmation` response to form submission mutation payloads, and fixes a handful of bugs.
6+
7+
- feat: Add `recaptcha` settings to `GFSettings` GraphQL object.
8+
- feat: Add `SubmissionConfirmation` object to `submitGfForm` and `submitGfDraftEntry` mutation responses. Props: @KoduVaal
9+
- fix: `isActive` should default to true for new Confirmations / Notifications.
10+
- fix: Correctly resolve the `rangeMin` and `rangeMax` GraphQL fields on `NumberField`. H/t @natac13
11+
- fix: Ensure GF Action Monitor setting keys are populated.
12+
- fix: Ensure `checkboxValues` load the Post Category choices before attempting to process.
13+
- fix: Prevent reprocessing the `imageValueInput.url` when updating `PostImage` field values.
14+
- tests: Fix broken test asserts exposed by PHPUnit v9 + WPGraphQL Test Case v2.3
15+
- tests: Use `gravityformscli` for installing GF plugins in test envs.
16+
- chore: Upgrade composer deps
17+
18+
319
## v0.11.0 - reCAPTCHA Validation, Plugin Updates, and GF 2.6 Support
420

521
**:warning: This release contains breaking changes.**

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
A WordPress plugin that provides a GraphQL API for interacting with Gravity Forms.
55

66

7-
![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.11.0) [![Coverage Status](https://coveralls.io/repos/github/harness-software/wp-graphql-gravity-forms/badge.svg?branch=develop)](https://coveralls.io/github/harness-software/wp-graphql-gravity-forms?branch=develop) [![WordPress Coding Standards](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-standard.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-standard.yml) [![Code Quality](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-quality.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-quality.yml) [![Schema Linter](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml) ![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)
7+
![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.11.1) [![Coverage Status](https://coveralls.io/repos/github/harness-software/wp-graphql-gravity-forms/badge.svg?branch=develop)](https://coveralls.io/github/harness-software/wp-graphql-gravity-forms?branch=develop) [![WordPress Coding Standards](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-standard.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-standard.yml) [![Code Quality](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-quality.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/code-quality.yml) [![Schema Linter](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml/badge.svg)](https://github.com/harness-software/wp-graphql-gravity-forms/actions/workflows/schema-linter.yml) ![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)
88

99
* [Join the WPGraphQL community on Slack.](https://join.slack.com/t/wp-graphql/shared_invite/zt-3vloo60z-PpJV2PFIwEathWDOxCTTLA)
1010
* [Documentation](#documentation)
@@ -25,9 +25,9 @@ Our hope for this open source project is that it will enable more teams to lever
2525

2626
* PHP 7.4+ || 8.0
2727
* WordPress 5.4.1+
28-
* WPGraphQL 1.6.4+
28+
* WPGraphQL 1.7.0+
2929
* Gravity Forms 2.5+
30-
* ( Recommended ) [WPGraphQL Upload](https://github.com/dre1080/wp-graphql-upload) - used for [File Upload and Post Image submissions](docs/submitting-forms.md).
30+
* **Recommended**: [WPGraphQL Upload](https://github.com/dre1080/wp-graphql-upload) - used for [File Upload and Post Image submissions](docs/submitting-forms.md).
3131

3232
## Quick Install
3333

@@ -45,7 +45,7 @@ Our hope for this open source project is that it will enable more teams to lever
4545

4646
## Future Feature Enhancements
4747

48-
[_View all Feature Requests_](https://github.com/harness-software/wp-graphql-gravity-forms/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement)
48+
[_View all Feature Requests_](https://github.com/harness-software/wp-graphql-gravity-forms/issues?q=is%3Aopen+is%3Aissue+label%3A%22type%3A+enhancement+%E2%9A%A1%22%2C%22type%3A+feature+%F0%9F%A6%8B%22%2C%22type%3A+idea+%F0%9F%92%A1%22)
4949

5050
* Add support for Experimental form fields [Github Issue](https://github.com/harness-software/wp-graphql-gravity-forms/issues/195)
5151
* Ability to query for lists of draft entries.

bin/install-stan-env.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ install_wordpress
1616
install_db
1717
configure_wordpress
1818
install_plugins
19+
setup_plugin
1920
post_setup

readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
Contributors: kellenmace, mtdbyanechko, justlevine, tinytoolbox
33
Tags: GraphQL, Gatsby, Headless, GF, Gravity, Forms, WPGraphQL,
44
Requires at least: 5.4.1
5-
Tested up to: 5.9.2
5+
Tested up to: 6.0
66
Requires PHP: 7.4
77
Requires Gravity Forms: 2.5.0
88
Requires WPGraphQL: 1.7.0
9-
Stable tag: 0.11.0
9+
Stable tag: 0.11.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/Type/Enum/RecaptchaTypeEnum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Enum Type - RecaptchaTypeEnum
44
*
55
* @package WPGraphQL\GF\Type\Enum
6-
* @since @todo
6+
* @since 0.11.1
77
*/
88

99
namespace WPGraphQL\GF\Type\Enum;

src/Type/Enum/SubmissionConfirmationTypeEnum.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Enum Type - SubmissionConfirmationTypeEnum
44
*
55
* @package WPGraphQL\GF\Type\Enum
6-
* @since @todo
6+
* @since 0.11.1
77
*/
88

99
namespace WPGraphQL\GF\Type\Enum;

src/Type/WPObject/Settings/SettingsRecaptcha.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* GraphQL Object Type - ReCAPTCHA Settings
44
*
55
* @package WPGraphQL\GF\Type\WPObject\Settings
6-
* @since @todo
6+
* @since 0.11.1
77
*/
88

99
namespace WPGraphQL\GF\Type\WPObject\Settings;

src/Type/WPObject/SubmissionConfirmation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* @see https://docs.gravityforms.com/submitting-forms-with-the-gfapi/#h-returns
66
*
77
* @package WPGraphQL\GF\Type\WPObject
8-
* @since @todo
8+
* @since 0.11.1
99
*/
1010

1111
namespace WPGraphQL\GF\Type\WPObject;

vendor/composer/installed.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
'type' => 'wordpress-plugin',
66
'install_path' => __DIR__ . '/../../',
77
'aliases' => array(),
8-
'reference' => '0807593ebef8e62a6cb449cc41c53bd1e461194b',
8+
'reference' => '3ca94b4ed0ed23817b4067ea308566c57a307934',
99
'name' => 'harness-software/wp-graphql-gravity-forms',
1010
'dev' => false,
1111
),
@@ -16,7 +16,7 @@
1616
'type' => 'wordpress-plugin',
1717
'install_path' => __DIR__ . '/../../',
1818
'aliases' => array(),
19-
'reference' => '0807593ebef8e62a6cb449cc41c53bd1e461194b',
19+
'reference' => '3ca94b4ed0ed23817b4067ea308566c57a307934',
2020
'dev_requirement' => false,
2121
),
2222
'yahnis-elsts/plugin-update-checker' => array(

0 commit comments

Comments
 (0)