Skip to content

Commit 77c6fa9

Browse files
committed
Pods Gravity Forms 1.6.0
Signed-off-by: Scott Kingsley Clark <scott@skc.dev>
1 parent 32f750b commit 77c6fa9

4 files changed

Lines changed: 37 additions & 4 deletions

File tree

changelog.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@ Found a bug? Have a great feature idea? Get on GitHub and tell us about it and w
22

33
Our GitHub has the full list of all prior releases of Pods Gravity Forms: https://github.com/pods-framework/pods-gravity-forms/releases
44

5+
= 1.6.0 - February 24th, 2026 =
6+
7+
* Minimum requirements updated to WordPress 6.3+ to match current Pods minimum requirements.
8+
* Enhancement: Support handling prepend content in Pods_GF_UI. (@sc0ttkclark)
9+
* Enhancement: Support passing restrict_callback, show_in_header, and content fields in Pods_GF_UI for actions to pass into PodsUI. (@sc0ttkclark)
10+
* Enhancement: Support for replacing dynamic `{@id}`, `{@action}`, `{@id2}`, and `{@action2}` in Pods_GF confirmation URL handling, which is helpful when using Pods_GF_UI context. (@sc0ttkclark)
11+
* Enhancement: New Pods_GF::_gf_confirmation_url_replace_tags can be used to replace tags dynamically for a confirmation URL + entry + form. (@sc0ttkclark)
12+
* Enhancement: Make Markdown safe mode optional with new filter `pods_gf_markdown_safe_mode` (default on, just as before). (@sc0ttkclark)
13+
* Fixed: Pods_GF::prepopulate now has pod, id, and fields arguments as optional so that it can be more easily used in more contexts. (@sc0ttkclark)
14+
* Fixed: Prevent loading entry too soon to prevent Gravity Forms bug with uploaded files. This resolves issues with submitting a form with file fields that are required and them not coming through. (@sc0ttkclark)
15+
* Fixed: Resolved issues with Pods_GF::_gf_get_form_filter form ID usage. (@sc0ttkclark)
16+
* Extensive cleanup to resolve important WP Plugin Checker results, PHPCS, and PHPStan issues across the codebase. (@sc0ttkclark)
17+
* Tested against WP 7.0 and the latest version of Gravity Forms. (@sc0ttkclark)
18+
19+
= 1.5.1 - March 30th, 2025 =
20+
21+
* Fixed: Resolved issue with auto-delete option when using Pods feeds. (@sc0ttkclark)
22+
* Tested against WP 6.8. (@sc0ttkclark)
23+
524
= 1.5.0 - March 29th, 2024 =
625

726
* New requirements that match Pods: WP 6.0+, PHP 7.2+, and Pods 3.0+ to prep for Pods Gravity Forms 2.0 (@sc0ttkclark)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pods-gravity-forms",
3-
"version": "1.6.0-a-1",
3+
"version": "1.6.0",
44
"description": "PIntegration with Gravity Forms; Provides a UI for mapping a Form's submissions into a Pod.",
55
"author": "Pods Foundation, Inc",
66
"homepage": "https://pods.io/",

pods-gravity-forms.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* Plugin URI: https://pods.io/
1212
* Requires Plugins: pods
1313
* Description: Integration with Gravity Forms (https://www.gravityforms.com/); Provides a UI for mapping a Form's submissions into a Pod
14-
* Version: 1.6.0-a-1
14+
* Version: 1.6.0
1515
* Author: Pods Framework Team
1616
* Author URI: https://pods.io/about/
1717
* Text Domain: pods-gravity-forms
@@ -43,7 +43,7 @@
4343
die( '-1' );
4444
}
4545

46-
define( 'PODS_GF_VERSION', '1.6.0-a-1' );
46+
define( 'PODS_GF_VERSION', '1.6.0' );
4747
define( 'PODS_GF_FILE', __FILE__ );
4848
define( 'PODS_GF_DIR', plugin_dir_path( PODS_GF_FILE ) );
4949
define( 'PODS_GF_URL', plugin_dir_url( PODS_GF_FILE ) );

readme.txt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: pods, gravity forms, form mapping
55
Requires at least: 6.3
66
Tested up to: 7.0
77
Requires PHP: 7.2
8-
Stable tag: 1.6.0-a-1
8+
Stable tag: 1.6.0
99
License: GPLv2 or later
1010
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1111

@@ -113,6 +113,20 @@ function my_column_row_override( $row, $columns, $form, $gf_field, $options, $re
113113

114114
== Changelog ==
115115

116+
= 1.6.0 - February 24th, 2026 =
117+
118+
* Minimum requirements updated to WordPress 6.3+ to match current Pods minimum requirements.
119+
* Enhancement: Support handling prepend content in Pods_GF_UI. (@sc0ttkclark)
120+
* Enhancement: Support passing restrict_callback, show_in_header, and content fields in Pods_GF_UI for actions to pass into PodsUI. (@sc0ttkclark)
121+
* Enhancement: Support for replacing dynamic `{@id}`, `{@action}`, `{@id2}`, and `{@action2}` in Pods_GF confirmation URL handling, which is helpful when using Pods_GF_UI context. (@sc0ttkclark)
122+
* Enhancement: New Pods_GF::_gf_confirmation_url_replace_tags can be used to replace tags dynamically for a confirmation URL + entry + form. (@sc0ttkclark)
123+
* Enhancement: Make Markdown safe mode optional with new filter `pods_gf_markdown_safe_mode` (default on, just as before). (@sc0ttkclark)
124+
* Fixed: Pods_GF::prepopulate now has pod, id, and fields arguments as optional so that it can be more easily used in more contexts. (@sc0ttkclark)
125+
* Fixed: Prevent loading entry too soon to prevent Gravity Forms bug with uploaded files. This resolves issues with submitting a form with file fields that are required and them not coming through. (@sc0ttkclark)
126+
* Fixed: Resolved issues with Pods_GF::_gf_get_form_filter form ID usage. (@sc0ttkclark)
127+
* Extensive cleanup to resolve important WP Plugin Checker results, PHPCS, and PHPStan issues across the codebase. (@sc0ttkclark)
128+
* Tested against WP 7.0 and the latest version of Gravity Forms. (@sc0ttkclark)
129+
116130
= 1.5.1 - March 30th, 2025 =
117131

118132
* Fixed: Resolved issue with auto-delete option when using Pods feeds. (@sc0ttkclark)

0 commit comments

Comments
 (0)