Skip to content

Commit

Permalink
Updates to 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gravity Forms committed May 21, 2024
1 parent 451f6f6 commit 37d22c2
Show file tree
Hide file tree
Showing 30 changed files with 185 additions and 148 deletions.
6 changes: 5 additions & 1 deletion change_log.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 1.5.0 | 2024-05-20
- Added support for async (background) feed processing to improve form submission performance.
- Fixed PHP warnings that occur when saving the settings when using PHP 8.2.

### 1.4 | 2020-09-08
- Added support for Gravity Forms 2.5.
- Updated the feed name setting for new feeds to include a default value.
Expand Down Expand Up @@ -32,4 +36,4 @@


### 1.0 | 2015-05-14
- It's all new!
- It's all new!
9 changes: 9 additions & 0 deletions class-gf-madmimi.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,15 @@ class GFMadMimi extends GFFeedAddOn {
/* Members plugin integration */
protected $_capabilities = array( 'gravityforms_madmimi', 'gravityforms_madmimi_uninstall' );

/**
* Enabling background feed processing to prevent performance issues delaying form submission completion.
*
* @since 1.5
*
* @var bool
*/
protected $_async_feed_processing = true;

/**
* Get instance of this class.
*
Expand Down
Loading

0 comments on commit 37d22c2

Please sign in to comment.