Releases: woocommerce/action-scheduler
Releases · woocommerce/action-scheduler
Version 2.2.3
Version 2.2.3 – 2019-03-28
- Do not include the
/docs/
or/tests/
directories and other dev related files, like.github
or.travis.yml
, in releases - Pin dependency
wp-cli/wp-cli
to1.5.1
to match changes made in WooCommerce core: woocommerce/woocommerce#23028
Version 2.2.2
Version 2.2.1
2.2.0
2.2.0 – 2019-01-31
- Version 2.2.0 (PR #233)
Fixed
- Remove constant in translatable string for WP CLI output. PR #213 Props @claudiosanches
- Fix errors with PHP 5.2 caused by use of namespace prefix (inherited from code in the Custom Tables plugin where PHP 5.6 is required). PR #227
Performance
- Use the new 'pre_wp_unique_post_slug' filter with WordPress 5.1 and newer to create unique post names and improve performance of default, Custom Post Type, data store. PR #231
Added
- Add 'action_scheduler_pre_init' hook to make it easier to filter core Action Scheduler classes, by providing a reliable, separate action to hook into instead of 3rd party code having to rely on 'plugins_loaded' with a priority between 0 and 1. PR #221
Changed
- Make timeout & failure periods a multiple of the allowed time limit to simply increasing allowed time limits. PR #223
- Display hook name on WP CLI output when processing queues. PR #230
- Always display a date's UTC offset, not timezone identifier, to avoid displaying inconsistent values for the same thing, like UTC and GMT+0000. PR #228
- Display cron expression in schedule recurrence column of administration screen for Cron actions. PR #217 Props @alexminza
2.1.1
2.1.1 – 2018-11-2
Added
Deprecated
ActionScheduler_Abstract_QueueRunner::get_maximum_execution_time()
– UseActionScheduler_Abstract_QueueRunner::get_time_limit()
instead.- The filter
action_scheduler_maximum_execution_time
– Useaction_scheduler_queue_runner_time_limit
instead.
Fixed