| 1 |
*** Changelog *** |
| 2 |
|
| 3 |
= 3.7.1 - 2023-12-13 = |
| 4 |
* Release/3.7.0. |
| 5 |
* Tweak - WP 6.4 compatibility. |
| 6 |
* update semver to 5.7.2 because of a security vulnerability in 5.7.1. |
| 7 |
|
| 8 |
= 3.7.0 - 2023-11-20 = |
| 9 |
* Important: starting with this release, Action Scheduler follows an L-2 version policy (WordPress, and consequently PHP). |
| 10 |
* Add extended indexes for hook_status_scheduled_date_gmt and status_sheduled_date_gmt. |
| 11 |
* Catch and log exceptions thrown when actions can't be created, e.g. under a corrupt database schema. |
| 12 |
* Release/3.6.4. |
| 13 |
* Tweak - WP 6.4 compatibility. |
| 14 |
* Update unit tests for upcoming dependency version policy. |
| 15 |
* make sure hook action_scheduler_failed_execution can access original exception object. |
| 16 |
* mention dependency version policy in usage.md. |
| 17 |
|
| 18 |
= 3.6.4 - 2023-10-11 = |
| 19 |
* Performance improvements when bulk cancelling actions. |
| 20 |
* Dev-related fixes. |
| 21 |
|
| 22 |
= 3.6.3 - 2023-09-13 = |
| 23 |
* Use `_doing_it_wrong` in initialization check. |
| 24 |
|
| 25 |
= 3.6.2 - 2023-08-09 = |
| 26 |
* Add guidance about passing arguments. |
| 27 |
* Atomic option locking. |
| 28 |
* Improve bulk delete handling. |
| 29 |
* Include database error in the exception message. |
| 30 |
* Tweak - WP 6.3 compatibility. |
| 31 |
|
| 32 |
= 3.6.1 - 2023-06-14 = |
| 33 |
* Document new optional `$priority` arg for various API functions. |
| 34 |
* Document the new `--exclude-groups` WP CLI option. |
| 35 |
* Document the new `action_scheduler_init` hook. |
| 36 |
* Ensure actions within each claim are executed in the expected order. |
| 37 |
* Fix incorrect text domain. |
| 38 |
* Remove SHOW TABLES usage when checking if tables exist. |
| 39 |
|
| 40 |
= 3.6.0 - 2023-05-10 = |
| 41 |
* Add $unique parameter to function signatures. |
| 42 |
* Add a cast-to-int for extra safety before forming new DateTime object. |
| 43 |
* Add a hook allowing exceptions for consistently failing recurring actions. |
| 44 |
* Add action priorities. |
| 45 |
* Add init hook. |
| 46 |
* Always raise the time limit. |
| 47 |
* Bump minimatch from 3.0.4 to 3.0.8. |
| 48 |
* Bump yaml from 2.2.1 to 2.2.2. |
| 49 |
* Defensive coding relating to gaps in declared schedule types. |
| 50 |
* Do not process an action if it cannot be set to `in-progress`. |
| 51 |
* Filter view labels (status names) should be translatable | #919. |
| 52 |
* Fix WPCLI progress messages. |
| 53 |
* Improve data-store initialization flow. |
| 54 |
* Improve error handling across all supported PHP versions. |
| 55 |
* Improve logic for flushing the runtime cache. |
| 56 |
* Support exclusion of multiple groups. |
| 57 |
* Update lint-staged and Node/NPM requirements. |
| 58 |
* add CLI clean command. |
| 59 |
* add CLI exclude-group filter. |
| 60 |
* exclude past-due from list table all filter count. |
| 61 |
* throwing an exception if as_schedule_recurring_action interval param is not of type integer. |
| 62 |
|
| 63 |
= 3.5.4 - 2023-01-17 = |
| 64 |
* Add pre filters during action registration. |
| 65 |
* Async scheduling. |
| 66 |
* Calculate timeouts based on total actions. |
| 67 |
* Correctly order the parameters for `ActionScheduler_ActionFactory`'s calls to `single_unique`. |
| 68 |
* Fetch action in memory first before releasing claim to avoid deadlock. |
| 69 |
* PHP 8.2: declare property to fix creation of dynamic property warning. |
| 70 |
* PHP 8.2: fix "Using ${var} in strings is deprecated, use {$var} instead". |
| 71 |
* Prevent `undefined variable` warning for `$num_pastdue_actions`. |
| 72 |
|
| 73 |
= 3.5.3 - 2022-11-09 = |
| 74 |
* Query actions with partial match. |
| 75 |
|
| 76 |
= 3.5.2 - 2022-09-16 = |
| 77 |
* Fix - erroneous 3.5.1 release. |
| 78 |
|
| 79 |
= 3.5.1 - 2022-09-13 = |
| 80 |
* Maintenance on A/S docs. |
| 81 |
* fix: PHP 8.2 deprecated notice. |
| 82 |
|
| 83 |
= 3.5.0 - 2022-08-25 = |
| 84 |
* Add - The active view link within the "Tools > Scheduled Actions" screen is now clickable. |
| 85 |
* Add - A warning when there are past-due actions. |
| 86 |
* Enhancement - Added the ability to schedule unique actions via an atomic operation. |
| 87 |
* Enhancement - Improvements to cache invalidation when processing batches (when running on WordPress 6.0+). |
| 88 |
* Enhancement - If a recurring action is found to be consistently failing, it will stop being rescheduled. |
| 89 |
* Enhancement - Adds a new "Past Due" view to the scheduled actions list table. |
| 90 |
|
| 91 |
= 3.4.2 - 2022-06-08 = |
| 92 |
* Fix - Change the include for better linting. |
| 93 |
* Fix - update: Added Action scheduler completed action hook. |
| 94 |
|
| 95 |
= 3.4.1 - 2022-05-24 = |
| 96 |
* Fix - Change the include for better linting. |
| 97 |
* Fix - Fix the documented return type. |
| 98 |
|
| 99 |
= 3.4.0 - 2021-10-29 = |
| 100 |
* Enhancement - Number of items per page can now be set for the Scheduled Actions view (props @ovidiul). #771 |
| 101 |
* Fix - Do not lower the max_execution_time if it is already set to 0 (unlimited) (props @barryhughes). #755 |
| 102 |
* Fix - Avoid triggering autoloaders during the version resolution process (props @olegabr). #731 & #776 |
| 103 |
* Dev - ActionScheduler_wcSystemStatus PHPCS fixes (props @ovidiul). #761 |
| 104 |
* Dev - ActionScheduler_DBLogger.php PHPCS fixes (props @ovidiul). #768 |
| 105 |
* Dev - Fixed phpcs for ActionScheduler_Schedule_Deprecated (props @ovidiul). #762 |
| 106 |
* Dev - Improve actions table indicies (props @glagonikas). #774 & #777 |
| 107 |
* Dev - PHPCS fixes for ActionScheduler_DBStore.php (props @ovidiul). #769 & #778 |
| 108 |
* Dev - PHPCS Fixes for ActionScheduler_Abstract_ListTable (props @ovidiul). #763 & #779 |
| 109 |
* Dev - Adds new filter action_scheduler_claim_actions_order_by to allow tuning of the claim query (props @glagonikas). #773 |
| 110 |
* Dev - PHPCS fixes for ActionScheduler_WpPostStore class (props @ovidiul). #780 |
| 111 |
|
| 112 |
= 3.3.0 - 2021-09-15 = |
| 113 |
* Enhancement - Adds as_has_scheduled_action() to provide a performant way to test for existing actions. #645 |
| 114 |
* Fix - Improves compatibility with environments where NO_ZERO_DATE is enabled. #519 |
| 115 |
* Fix - Adds safety checks to guard against errors when our database tables cannot be created. #645 |
| 116 |
* Dev - Now supports queries that use multiple statuses. #649 |
| 117 |
* Dev - Minimum requirements for WordPress and PHP bumped (to 5.2 and 5.6 respectively). #723 |
| 118 |
|
| 119 |
= 3.2.1 - 2021-06-21 = |
| 120 |
* Fix - Add extra safety/account for different versions of AS and different loading patterns. #714 |
| 121 |
* Fix - Handle hidden columns (Tools → Scheduled Actions) | #600. |
| 122 |
|
| 123 |
= 3.2.0 - 2021-06-03 = |
| 124 |
* Fix - Add "no ordering" option to as_next_scheduled_action(). |
| 125 |
* Fix - Add secondary scheduled date checks when claiming actions (DBStore) | #634. |
| 126 |
* Fix - Add secondary scheduled date checks when claiming actions (wpPostStore) | #634. |
| 127 |
* Fix - Adds a new index to the action table, reducing the potential for deadlocks (props: @glagonikas). |
| 128 |
* Fix - Fix unit tests infrastructure and adapt tests to PHP 8. |
| 129 |
* Fix - Identify in-use data store. |
| 130 |
* Fix - Improve test_migration_is_scheduled. |
| 131 |
* Fix - PHP notice on list table. |
| 132 |
* Fix - Speed up clean up and batch selects. |
| 133 |
* Fix - Update pending dependencies. |
| 134 |
* Fix - [PHP 8.0] Only pass action arg values through to do_action_ref_array(). |
| 135 |
* Fix - [PHP 8] Set the PHP version to 7.1 in composer.json for PHP 8 compatibility. |
| 136 |
* Fix - add is_initialized() to docs. |
| 137 |
* Fix - fix file permissions. |
| 138 |
* Fix - fixes #664 by replacing __ with esc_html__. |
| 139 |
|
| 140 |
= 3.1.6 - 2020-05-12 = |
| 141 |
* Change log starts. |
| 142 |
|