PluginProbe
WANotifier for Forms and Actions / 2.7.13
WANotifier for Forms and Actions v2.7.13
3.1.1 3.1.0 3.0.4 2.7.10 2.7.11 2.7.12 2.7.13 2.7.2 2.7.3 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 3.0.0 3.0.1 3.0.2 3.0.3 trunk 0.1.0 0.1.1 1.0.0 1.0.1 1.0.2 All 67 releases
notifier / libraries / action-scheduler / readme.txt

readme.txt in WANotifier for Forms and Actions 2.7.13, at libraries/action-scheduler/readme.txt

126 lines 6.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 === Action Scheduler ===
2 Contributors: Automattic, wpmuguru, claudiosanches, peterfabian1000, vedjain, jamosova, obliviousharmony, konamiman, sadowski, royho, barryhughes-1
3 Tags: scheduler, cron
4 Requires at least: 5.2
5 Tested up to: 6.0
6 Stable tag: 3.5.4
7 License: GPLv3
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.5.4 - 2023-01-17 =
51 * Add pre filters during action registration.
52 * Async scheduling.
53 * Calculate timeouts based on total actions.
54 * Correctly order the parameters for `ActionScheduler_ActionFactory`'s calls to `single_unique`.
55 * Fetch action in memory first before releasing claim to avoid deadlock.
56 * PHP 8.2: declare property to fix creation of dynamic property warning.
57 * PHP 8.2: fix "Using ${var} in strings is deprecated, use {$var} instead".
58 * Prevent `undefined variable` warning for `$num_pastdue_actions`.
59
60 = 3.5.3 - 2022-11-09 =
61 * Query actions with partial match.
62
63 = 3.5.2 - 2022-09-16 =
64 * Fix - erroneous 3.5.1 release.
65
66 = 3.5.1 - 2022-09-13 =
67 * Maintenance on A/S docs.
68 * fix: PHP 8.2 deprecated notice.
69
70 = 3.5.0 - 2022-08-25 =
71 * Add - The active view link within the "Tools > Scheduled Actions" screen is now clickable.
72 * Add - A warning when there are past-due actions.
73 * Enhancement - Added the ability to schedule unique actions via an atomic operation.
74 * Enhancement - Improvements to cache invalidation when processing batches (when running on WordPress 6.0+).
75 * Enhancement - If a recurring action is found to be consistently failing, it will stop being rescheduled.
76 * Enhancement - Adds a new "Past Due" view to the scheduled actions list table.
77
78 = 3.4.2 - 2022-06-08 =
79 * Fix - Change the include for better linting.
80 * Fix - update: Added Action scheduler completed action hook.
81
82 = 3.4.1 - 2022-05-24 =
83 * Fix - Change the include for better linting.
84 * Fix - Fix the documented return type.
85
86 = 3.4.0 - 2021-10-29 =
87 * Enhancement - Number of items per page can now be set for the Scheduled Actions view (props @ovidiul). #771
88 * Fix - Do not lower the max_execution_time if it is already set to 0 (unlimited) (props @barryhughes). #755
89 * Fix - Avoid triggering autoloaders during the version resolution process (props @olegabr). #731 & #776
90 * Dev - ActionScheduler_wcSystemStatus PHPCS fixes (props @ovidiul). #761
91 * Dev - ActionScheduler_DBLogger.php PHPCS fixes (props @ovidiul). #768
92 * Dev - Fixed phpcs for ActionScheduler_Schedule_Deprecated (props @ovidiul). #762
93 * Dev - Improve actions table indicies (props @glagonikas). #774 & #777
94 * Dev - PHPCS fixes for ActionScheduler_DBStore.php (props @ovidiul). #769 & #778
95 * Dev - PHPCS Fixes for ActionScheduler_Abstract_ListTable (props @ovidiul). #763 & #779
96 * Dev - Adds new filter action_scheduler_claim_actions_order_by to allow tuning of the claim query (props @glagonikas). #773
97 * Dev - PHPCS fixes for ActionScheduler_WpPostStore class (props @ovidiul). #780
98
99 = 3.3.0 - 2021-09-15 =
100 * Enhancement - Adds as_has_scheduled_action() to provide a performant way to test for existing actions. #645
101 * Fix - Improves compatibility with environments where NO_ZERO_DATE is enabled. #519
102 * Fix - Adds safety checks to guard against errors when our database tables cannot be created. #645
103 * Dev - Now supports queries that use multiple statuses. #649
104 * Dev - Minimum requirements for WordPress and PHP bumped (to 5.2 and 5.6 respectively). #723
105
106 = 3.2.1 - 2021-06-21 =
107 * Fix - Add extra safety/account for different versions of AS and different loading patterns. #714
108 * Fix - Handle hidden columns (Tools → Scheduled Actions) | #600.
109
110 = 3.2.0 - 2021-06-03 =
111 * Fix - Add "no ordering" option to as_next_scheduled_action().
112 * Fix - Add secondary scheduled date checks when claiming actions (DBStore) | #634.
113 * Fix - Add secondary scheduled date checks when claiming actions (wpPostStore) | #634.
114 * Fix - Adds a new index to the action table, reducing the potential for deadlocks (props: @glagonikas).
115 * Fix - Fix unit tests infrastructure and adapt tests to PHP 8.
116 * Fix - Identify in-use data store.
117 * Fix - Improve test_migration_is_scheduled.
118 * Fix - PHP notice on list table.
119 * Fix - Speed up clean up and batch selects.
120 * Fix - Update pending dependencies.
121 * Fix - [PHP 8.0] Only pass action arg values through to do_action_ref_array().
122 * Fix - [PHP 8] Set the PHP version to 7.1 in composer.json for PHP 8 compatibility.
123 * Fix - add is_initialized() to docs.
124 * Fix - fix file permissions.
125 * Fix - fixes #664 by replacing __ with esc_html__.
126