Skip to content

Commit 37d22c2

Browse files
author
Gravity Forms
committed
Updates to 1.5.0
1 parent 451f6f6 commit 37d22c2

30 files changed

+185
-148
lines changed

change_log.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.5.0 | 2024-05-20
2+
- Added support for async (background) feed processing to improve form submission performance.
3+
- Fixed PHP warnings that occur when saving the settings when using PHP 8.2.
4+
15
### 1.4 | 2020-09-08
26
- Added support for Gravity Forms 2.5.
37
- Updated the feed name setting for new feeds to include a default value.
@@ -32,4 +36,4 @@
3236

3337

3438
### 1.0 | 2015-05-14
35-
- It's all new!
39+
- It's all new!

class-gf-madmimi.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,15 @@ class GFMadMimi extends GFFeedAddOn {
2929
/* Members plugin integration */
3030
protected $_capabilities = array( 'gravityforms_madmimi', 'gravityforms_madmimi_uninstall' );
3131

32+
/**
33+
* Enabling background feed processing to prevent performance issues delaying form submission completion.
34+
*
35+
* @since 1.5
36+
*
37+
* @var bool
38+
*/
39+
protected $_async_feed_processing = true;
40+
3241
/**
3342
* Get instance of this class.
3443
*

0 commit comments

Comments
 (0)