PluginProbe
Image Optimizer – Compress Images and Convert to WebP or AVIF / 1.5.3
Image Optimizer – Compress Images and Convert to WebP or AVIF v1.5.3
1.7.7 1.7.6 1.7.5 1.7.4 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.2.0 1.2.1 1.3.0 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 All 33 releases
image-optimization / vendor / woocommerce / action-scheduler / readme.txt

readme.txt in Image Optimizer – Compress Images and Convert to WebP or AVIF 1.5.3, at vendor/woocommerce/action-scheduler/readme.txt

214 lines 10.2 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 Stable tag: 3.8.2
5 License: GPLv3
6 Requires at least: 6.4
7 Tested up to: 6.6
8 Requires PHP: 7.0
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 occasions.
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.8.2 - 2024-09-12 =
51 * Add missing parameter to the `pre_as_enqueue_async_action` hook.
52 * Bump minimum PHP version to 7.0.
53 * Bump minimum WordPress version to 6.4.
54 * Make the batch size adjustable during processing.
55
56 = 3.8.1 - 2024-06-20 =
57 * Fix typos.
58 * Improve the messaging in our unidentified action exceptions.
59
60 = 3.8.0 - 2024-05-22 =
61 * Documentation - Fixed typos in perf.md.
62 * Update - We now require WordPress 6.3 or higher.
63 * Update - We now require PHP 7.0 or higher.
64
65 = 3.7.4 - 2024-04-05 =
66 * Give a clear description of how the $unique parameter works.
67 * Preserve the tab field if set.
68 * Tweak - WP 6.5 compatibility.
69
70 = 3.7.3 - 2024-03-20 =
71 * Do not iterate over all of GET when building form in list table.
72 * Fix a few issues reported by PCP (Plugin Check Plugin).
73 * Try to save actions as unique even when the store doesn't support it.
74 * Tweak - WP 6.4 compatibility.
75 * Update "Tested up to" tag to WordPress 6.5.
76 * update version in package-lock.json.
77
78 = 3.7.2 - 2024-02-14 =
79 * No longer user variables in `_n()` translation function.
80
81 = 3.7.1 - 2023-12-13 =
82 * update semver to 5.7.2 because of a security vulnerability in 5.7.1.
83
84 = 3.7.0 - 2023-11-20 =
85 * Important: starting with this release, Action Scheduler follows an L-2 version policy (WordPress, and consequently PHP).
86 * Add extended indexes for hook_status_scheduled_date_gmt and status_scheduled_date_gmt.
87 * Catch and log exceptions thrown when actions can't be created, e.g. under a corrupt database schema.
88 * Tweak - WP 6.4 compatibility.
89 * Update unit tests for upcoming dependency version policy.
90 * make sure hook action_scheduler_failed_execution can access original exception object.
91 * mention dependency version policy in usage.md.
92
93 = 3.6.4 - 2023-10-11 =
94 * Performance improvements when bulk cancelling actions.
95 * Dev-related fixes.
96
97 = 3.6.3 - 2023-09-13 =
98 * Use `_doing_it_wrong` in initialization check.
99
100 = 3.6.2 - 2023-08-09 =
101 * Add guidance about passing arguments.
102 * Atomic option locking.
103 * Improve bulk delete handling.
104 * Include database error in the exception message.
105 * Tweak - WP 6.3 compatibility.
106
107 = 3.6.1 - 2023-06-14 =
108 * Document new optional `$priority` arg for various API functions.
109 * Document the new `--exclude-groups` WP CLI option.
110 * Document the new `action_scheduler_init` hook.
111 * Ensure actions within each claim are executed in the expected order.
112 * Fix incorrect text domain.
113 * Remove SHOW TABLES usage when checking if tables exist.
114
115 = 3.6.0 - 2023-05-10 =
116 * Add $unique parameter to function signatures.
117 * Add a cast-to-int for extra safety before forming new DateTime object.
118 * Add a hook allowing exceptions for consistently failing recurring actions.
119 * Add action priorities.
120 * Add init hook.
121 * Always raise the time limit.
122 * Bump minimatch from 3.0.4 to 3.0.8.
123 * Bump yaml from 2.2.1 to 2.2.2.
124 * Defensive coding relating to gaps in declared schedule types.
125 * Do not process an action if it cannot be set to `in-progress`.
126 * Filter view labels (status names) should be translatable | #919.
127 * Fix WPCLI progress messages.
128 * Improve data-store initialization flow.
129 * Improve error handling across all supported PHP versions.
130 * Improve logic for flushing the runtime cache.
131 * Support exclusion of multiple groups.
132 * Update lint-staged and Node/NPM requirements.
133 * add CLI clean command.
134 * add CLI exclude-group filter.
135 * exclude past-due from list table all filter count.
136 * throwing an exception if as_schedule_recurring_action interval param is not of type integer.
137
138 = 3.5.4 - 2023-01-17 =
139 * Add pre filters during action registration.
140 * Async scheduling.
141 * Calculate timeouts based on total actions.
142 * Correctly order the parameters for `ActionScheduler_ActionFactory`'s calls to `single_unique`.
143 * Fetch action in memory first before releasing claim to avoid deadlock.
144 * PHP 8.2: declare property to fix creation of dynamic property warning.
145 * PHP 8.2: fix "Using ${var} in strings is deprecated, use {$var} instead".
146 * Prevent `undefined variable` warning for `$num_pastdue_actions`.
147
148 = 3.5.3 - 2022-11-09 =
149 * Query actions with partial match.
150
151 = 3.5.2 - 2022-09-16 =
152 * Fix - erroneous 3.5.1 release.
153
154 = 3.5.1 - 2022-09-13 =
155 * Maintenance on A/S docs.
156 * fix: PHP 8.2 deprecated notice.
157
158 = 3.5.0 - 2022-08-25 =
159 * Add - The active view link within the "Tools > Scheduled Actions" screen is now clickable.
160 * Add - A warning when there are past-due actions.
161 * Enhancement - Added the ability to schedule unique actions via an atomic operation.
162 * Enhancement - Improvements to cache invalidation when processing batches (when running on WordPress 6.0+).
163 * Enhancement - If a recurring action is found to be consistently failing, it will stop being rescheduled.
164 * Enhancement - Adds a new "Past Due" view to the scheduled actions list table.
165
166 = 3.4.2 - 2022-06-08 =
167 * Fix - Change the include for better linting.
168 * Fix - update: Added Action scheduler completed action hook.
169
170 = 3.4.1 - 2022-05-24 =
171 * Fix - Change the include for better linting.
172 * Fix - Fix the documented return type.
173
174 = 3.4.0 - 2021-10-29 =
175 * Enhancement - Number of items per page can now be set for the Scheduled Actions view (props @ovidiul). #771
176 * Fix - Do not lower the max_execution_time if it is already set to 0 (unlimited) (props @barryhughes). #755
177 * Fix - Avoid triggering autoloaders during the version resolution process (props @olegabr). #731 & #776
178 * Dev - ActionScheduler_wcSystemStatus PHPCS fixes (props @ovidiul). #761
179 * Dev - ActionScheduler_DBLogger.php PHPCS fixes (props @ovidiul). #768
180 * Dev - Fixed phpcs for ActionScheduler_Schedule_Deprecated (props @ovidiul). #762
181 * Dev - Improve actions table indices (props @glagonikas). #774 & #777
182 * Dev - PHPCS fixes for ActionScheduler_DBStore.php (props @ovidiul). #769 & #778
183 * Dev - PHPCS Fixes for ActionScheduler_Abstract_ListTable (props @ovidiul). #763 & #779
184 * Dev - Adds new filter action_scheduler_claim_actions_order_by to allow tuning of the claim query (props @glagonikas). #773
185 * Dev - PHPCS fixes for ActionScheduler_WpPostStore class (props @ovidiul). #780
186
187 = 3.3.0 - 2021-09-15 =
188 * Enhancement - Adds as_has_scheduled_action() to provide a performant way to test for existing actions. #645
189 * Fix - Improves compatibility with environments where NO_ZERO_DATE is enabled. #519
190 * Fix - Adds safety checks to guard against errors when our database tables cannot be created. #645
191 * Dev - Now supports queries that use multiple statuses. #649
192 * Dev - Minimum requirements for WordPress and PHP bumped (to 5.2 and 5.6 respectively). #723
193
194 = 3.2.1 - 2021-06-21 =
195 * Fix - Add extra safety/account for different versions of AS and different loading patterns. #714
196 * Fix - Handle hidden columns (Tools → Scheduled Actions) | #600.
197
198 = 3.2.0 - 2021-06-03 =
199 * Fix - Add "no ordering" option to as_next_scheduled_action().
200 * Fix - Add secondary scheduled date checks when claiming actions (DBStore) | #634.
201 * Fix - Add secondary scheduled date checks when claiming actions (wpPostStore) | #634.
202 * Fix - Adds a new index to the action table, reducing the potential for deadlocks (props: @glagonikas).
203 * Fix - Fix unit tests infrastructure and adapt tests to PHP 8.
204 * Fix - Identify in-use data store.
205 * Fix - Improve test_migration_is_scheduled.
206 * Fix - PHP notice on list table.
207 * Fix - Speed up clean up and batch selects.
208 * Fix - Update pending dependencies.
209 * Fix - [PHP 8.0] Only pass action arg values through to do_action_ref_array().
210 * Fix - [PHP 8] Set the PHP version to 7.1 in composer.json for PHP 8 compatibility.
211 * Fix - add is_initialized() to docs.
212 * Fix - fix file permissions.
213 * Fix - fixes #664 by replacing __ with esc_html__.
214