PluginProbe ʕ •ᴥ•ʔ
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz / trunk
SureForms – Contact Form Builder, AI Forms, Payment Form, Survey & Quiz vtrunk
2.12.5 2.12.4 2.12.3 2.12.2 2.12.1 2.12.0 2.11.1 2.11.0 2.10.1 2.10.0 2.9.1 2.9.0 2.8.2 2.8.1 2.7.0 2.7.1 2.8.0 trunk 0.0.10 0.0.11 0.0.12 0.0.13 0.0.2 0.0.3 0.0.4 0.0.5 0.0.6 0.0.7 0.0.8 0.0.9 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.1.0 1.1.1 1.1.2 1.10.0 1.10.1 1.11.0 1.12.0 1.12.1 1.12.2 1.12.3 1.13.0 1.13.1 1.13.2 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 1.3.1 1.3.2 1.4.0 1.4.1 1.4.2 1.4.3 1.4.4 1.4.5 1.5.0 1.5.1 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.7.0 1.7.1 1.7.2 1.7.3 1.7.4 1.8.0 1.9.0 1.9.1 2.0.0 2.0.1 2.0.2 2.1.0 2.1.1 2.2.0 2.2.1 2.2.2 2.3.0 2.4.0 2.5.0 2.5.2 2.6.0
sureforms / inc / lib / action-scheduler / readme.txt
sureforms / inc / lib / action-scheduler Last commit date
classes 5 months ago deprecated 2 years ago lib 2 years ago action-scheduler.php 2 years ago changelog.txt 2 years ago functions.php 2 years ago license.txt 2 years ago readme.txt 2 years ago
readme.txt
186 lines
1 === Action Scheduler ===
2 Contributors: Automattic, wpmuguru, claudiosanches, peterfabian1000, vedjain, jamosova, obliviousharmony, konamiman, sadowski, royho, barryhughes-1
3 Tags: scheduler, cron
4 Stable tag: 3.7.1
5 License: GPLv3
6 Requires at least: 6.2
7 Tested up to: 6.4
8 Requires PHP: 5.6
9
10 Action Scheduler - Job Queue for WordPress
11
12 == Description ==
13
14 Action Scheduler is a scalable, traceable job queue for background processing large sets of actions in WordPress. It's specially designed to be distributed in WordPress plugins.
15
16 Action Scheduler works by triggering an action hook to run at some time in the future. Each hook can be scheduled with unique data, to allow callbacks to perform operations on that data. The hook can also be scheduled to run on one or more occassions.
17
18 Think of it like an extension to `do_action()` which adds the ability to delay and repeat a hook.
19
20 ## Battle-Tested Background Processing
21
22 Every month, Action Scheduler processes millions of payments for [Subscriptions](https://woocommerce.com/products/woocommerce-subscriptions/), webhooks for [WooCommerce](https://wordpress.org/plugins/woocommerce/), as well as emails and other events for a range of other plugins.
23
24 It's been seen on live sites processing queues in excess of 50,000 jobs and doing resource intensive operations, like processing payments and creating orders, at a sustained rate of over 10,000 / hour without negatively impacting normal site operations.
25
26 This is all on infrastructure and WordPress sites outside the control of the plugin author.
27
28 If your plugin needs background processing, especially of large sets of tasks, Action Scheduler can help.
29
30 ## Learn More
31
32 To learn more about how to Action Scheduler works, and how to use it in your plugin, check out the docs on [ActionScheduler.org](https://actionscheduler.org).
33
34 There you will find:
35
36 * [Usage guide](https://actionscheduler.org/usage/): instructions on installing and using Action Scheduler
37 * [WP CLI guide](https://actionscheduler.org/wp-cli/): instructions on running Action Scheduler at scale via WP CLI
38 * [API Reference](https://actionscheduler.org/api/): complete reference guide for all API functions
39 * [Administration Guide](https://actionscheduler.org/admin/): guide to managing scheduled actions via the administration screen
40 * [Guide to Background Processing at Scale](https://actionscheduler.org/perf/): instructions for running Action Scheduler at scale via the default WP Cron queue runner
41
42 ## Credits
43
44 Action Scheduler is developed and maintained by [Automattic](http://automattic.com/) with significant early development completed by [Flightless](https://flightless.us/).
45
46 Collaboration is cool. We'd love to work with you to improve Action Scheduler. [Pull Requests](https://github.com/woocommerce/action-scheduler/pulls) welcome.
47
48 == Changelog ==
49
50 = 3.7.1 - 2023-12-13 =
51 * Release/3.7.0.
52 * Tweak - WP 6.4 compatibility.
53 * update semver to 5.7.2 because of a security vulnerability in 5.7.1.
54
55 = 3.7.0 - 2023-11-20 =
56 * Important: starting with this release, Action Scheduler follows an L-2 version policy (WordPress, and consequently PHP).
57 * Add extended indexes for hook_status_scheduled_date_gmt and status_sheduled_date_gmt.
58 * Catch and log exceptions thrown when actions can't be created, e.g. under a corrupt database schema.
59 * Release/3.6.4.
60 * Tweak - WP 6.4 compatibility.
61 * Update unit tests for upcoming dependency version policy.
62 * make sure hook action_scheduler_failed_execution can access original exception object.
63 * mention dependency version policy in usage.md.
64
65 = 3.6.4 - 2023-10-11 =
66 * Performance improvements when bulk cancelling actions.
67 * Dev-related fixes.
68
69 = 3.6.3 - 2023-09-13 =
70 * Use `_doing_it_wrong` in initialization check.
71
72 = 3.6.2 - 2023-08-09 =
73 * Add guidance about passing arguments.
74 * Atomic option locking.
75 * Improve bulk delete handling.
76 * Include database error in the exception message.
77 * Tweak - WP 6.3 compatibility.
78
79 = 3.6.1 - 2023-06-14 =
80 * Document new optional `$priority` arg for various API functions.
81 * Document the new `--exclude-groups` WP CLI option.
82 * Document the new `action_scheduler_init` hook.
83 * Ensure actions within each claim are executed in the expected order.
84 * Fix incorrect text domain.
85 * Remove SHOW TABLES usage when checking if tables exist.
86
87 = 3.6.0 - 2023-05-10 =
88 * Add $unique parameter to function signatures.
89 * Add a cast-to-int for extra safety before forming new DateTime object.
90 * Add a hook allowing exceptions for consistently failing recurring actions.
91 * Add action priorities.
92 * Add init hook.
93 * Always raise the time limit.
94 * Bump minimatch from 3.0.4 to 3.0.8.
95 * Bump yaml from 2.2.1 to 2.2.2.
96 * Defensive coding relating to gaps in declared schedule types.
97 * Do not process an action if it cannot be set to `in-progress`.
98 * Filter view labels (status names) should be translatable | #919.
99 * Fix WPCLI progress messages.
100 * Improve data-store initialization flow.
101 * Improve error handling across all supported PHP versions.
102 * Improve logic for flushing the runtime cache.
103 * Support exclusion of multiple groups.
104 * Update lint-staged and Node/NPM requirements.
105 * add CLI clean command.
106 * add CLI exclude-group filter.
107 * exclude past-due from list table all filter count.
108 * throwing an exception if as_schedule_recurring_action interval param is not of type integer.
109
110 = 3.5.4 - 2023-01-17 =
111 * Add pre filters during action registration.
112 * Async scheduling.
113 * Calculate timeouts based on total actions.
114 * Correctly order the parameters for `ActionScheduler_ActionFactory`'s calls to `single_unique`.
115 * Fetch action in memory first before releasing claim to avoid deadlock.
116 * PHP 8.2: declare property to fix creation of dynamic property warning.
117 * PHP 8.2: fix "Using ${var} in strings is deprecated, use {$var} instead".
118 * Prevent `undefined variable` warning for `$num_pastdue_actions`.
119
120 = 3.5.3 - 2022-11-09 =
121 * Query actions with partial match.
122
123 = 3.5.2 - 2022-09-16 =
124 * Fix - erroneous 3.5.1 release.
125
126 = 3.5.1 - 2022-09-13 =
127 * Maintenance on A/S docs.
128 * fix: PHP 8.2 deprecated notice.
129
130 = 3.5.0 - 2022-08-25 =
131 * Add - The active view link within the "Tools > Scheduled Actions" screen is now clickable.
132 * Add - A warning when there are past-due actions.
133 * Enhancement - Added the ability to schedule unique actions via an atomic operation.
134 * Enhancement - Improvements to cache invalidation when processing batches (when running on WordPress 6.0+).
135 * Enhancement - If a recurring action is found to be consistently failing, it will stop being rescheduled.
136 * Enhancement - Adds a new "Past Due" view to the scheduled actions list table.
137
138 = 3.4.2 - 2022-06-08 =
139 * Fix - Change the include for better linting.
140 * Fix - update: Added Action scheduler completed action hook.
141
142 = 3.4.1 - 2022-05-24 =
143 * Fix - Change the include for better linting.
144 * Fix - Fix the documented return type.
145
146 = 3.4.0 - 2021-10-29 =
147 * Enhancement - Number of items per page can now be set for the Scheduled Actions view (props @ovidiul). #771
148 * Fix - Do not lower the max_execution_time if it is already set to 0 (unlimited) (props @barryhughes). #755
149 * Fix - Avoid triggering autoloaders during the version resolution process (props @olegabr). #731 & #776
150 * Dev - ActionScheduler_wcSystemStatus PHPCS fixes (props @ovidiul). #761
151 * Dev - ActionScheduler_DBLogger.php PHPCS fixes (props @ovidiul). #768
152 * Dev - Fixed phpcs for ActionScheduler_Schedule_Deprecated (props @ovidiul). #762
153 * Dev - Improve actions table indicies (props @glagonikas). #774 & #777
154 * Dev - PHPCS fixes for ActionScheduler_DBStore.php (props @ovidiul). #769 & #778
155 * Dev - PHPCS Fixes for ActionScheduler_Abstract_ListTable (props @ovidiul). #763 & #779
156 * Dev - Adds new filter action_scheduler_claim_actions_order_by to allow tuning of the claim query (props @glagonikas). #773
157 * Dev - PHPCS fixes for ActionScheduler_WpPostStore class (props @ovidiul). #780
158
159 = 3.3.0 - 2021-09-15 =
160 * Enhancement - Adds as_has_scheduled_action() to provide a performant way to test for existing actions. #645
161 * Fix - Improves compatibility with environments where NO_ZERO_DATE is enabled. #519
162 * Fix - Adds safety checks to guard against errors when our database tables cannot be created. #645
163 * Dev - Now supports queries that use multiple statuses. #649
164 * Dev - Minimum requirements for WordPress and PHP bumped (to 5.2 and 5.6 respectively). #723
165
166 = 3.2.1 - 2021-06-21 =
167 * Fix - Add extra safety/account for different versions of AS and different loading patterns. #714
168 * Fix - Handle hidden columns (Tools → Scheduled Actions) | #600.
169
170 = 3.2.0 - 2021-06-03 =
171 * Fix - Add "no ordering" option to as_next_scheduled_action().
172 * Fix - Add secondary scheduled date checks when claiming actions (DBStore) | #634.
173 * Fix - Add secondary scheduled date checks when claiming actions (wpPostStore) | #634.
174 * Fix - Adds a new index to the action table, reducing the potential for deadlocks (props: @glagonikas).
175 * Fix - Fix unit tests infrastructure and adapt tests to PHP 8.
176 * Fix - Identify in-use data store.
177 * Fix - Improve test_migration_is_scheduled.
178 * Fix - PHP notice on list table.
179 * Fix - Speed up clean up and batch selects.
180 * Fix - Update pending dependencies.
181 * Fix - [PHP 8.0] Only pass action arg values through to do_action_ref_array().
182 * Fix - [PHP 8] Set the PHP version to 7.1 in composer.json for PHP 8 compatibility.
183 * Fix - add is_initialized() to docs.
184 * Fix - fix file permissions.
185 * Fix - fixes #664 by replacing __ with esc_html__.
186