PluginProbe
WANotifier for Forms and Actions / 1.0.0
WANotifier for Forms and Actions v1.0.0
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 1.0.0, at libraries/action-scheduler/readme.txt

98 lines 5.5 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: 5.7
6 Stable tag: 3.4.2
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.4.2 - 2022-06-08 =
51 * Fix - Change the include for better linting.
52 * Fix - update: Added Action scheduler completed action hook.
53
54 = 3.4.1 - 2022-05-24 =
55 * Fix - Change the include for better linting.
56 * Fix - Fix the documented return type.
57
58 = 3.4.0 - 2021-10-29 =
59 * Enhancement - Number of items per page can now be set for the Scheduled Actions view (props @ovidiul). #771
60 * Fix - Do not lower the max_execution_time if it is already set to 0 (unlimited) (props @barryhughes). #755
61 * Fix - Avoid triggering autoloaders during the version resolution process (props @olegabr). #731 & #776
62 * Dev - ActionScheduler_wcSystemStatus PHPCS fixes (props @ovidiul). #761
63 * Dev - ActionScheduler_DBLogger.php PHPCS fixes (props @ovidiul). #768
64 * Dev - Fixed phpcs for ActionScheduler_Schedule_Deprecated (props @ovidiul). #762
65 * Dev - Improve actions table indicies (props @glagonikas). #774 & #777
66 * Dev - PHPCS fixes for ActionScheduler_DBStore.php (props @ovidiul). #769 & #778
67 * Dev - PHPCS Fixes for ActionScheduler_Abstract_ListTable (props @ovidiul). #763 & #779
68 * Dev - Adds new filter action_scheduler_claim_actions_order_by to allow tuning of the claim query (props @glagonikas). #773
69 * Dev - PHPCS fixes for ActionScheduler_WpPostStore class (props @ovidiul). #780
70
71 = 3.3.0 - 2021-09-15 =
72 * Enhancement - Adds as_has_scheduled_action() to provide a performant way to test for existing actions. #645
73 * Fix - Improves compatibility with environments where NO_ZERO_DATE is enabled. #519
74 * Fix - Adds safety checks to guard against errors when our database tables cannot be created. #645
75 * Dev - Now supports queries that use multiple statuses. #649
76 * Dev - Minimum requirements for WordPress and PHP bumped (to 5.2 and 5.6 respectively). #723
77
78 = 3.2.1 - 2021-06-21 =
79 * Fix - Add extra safety/account for different versions of AS and different loading patterns. #714
80 * Fix - Handle hidden columns (Tools → Scheduled Actions) | #600.
81
82 = 3.2.0 - 2021-06-03 =
83 * Fix - Add "no ordering" option to as_next_scheduled_action().
84 * Fix - Add secondary scheduled date checks when claiming actions (DBStore) | #634.
85 * Fix - Add secondary scheduled date checks when claiming actions (wpPostStore) | #634.
86 * Fix - Adds a new index to the action table, reducing the potential for deadlocks (props: @glagonikas).
87 * Fix - Fix unit tests infrastructure and adapt tests to PHP 8.
88 * Fix - Identify in-use data store.
89 * Fix - Improve test_migration_is_scheduled.
90 * Fix - PHP notice on list table.
91 * Fix - Speed up clean up and batch selects.
92 * Fix - Update pending dependencies.
93 * Fix - [PHP 8.0] Only pass action arg values through to do_action_ref_array().
94 * Fix - [PHP 8] Set the PHP version to 7.1 in composer.json for PHP 8 compatibility.
95 * Fix - add is_initialized() to docs.
96 * Fix - fix file permissions.
97 * Fix - fixes #664 by replacing __ with esc_html__.
98