Skip to content

Releases: woocommerce/action-scheduler

Version 2.2.2

28 Mar 04:39
963080a
Compare
Choose a tag to compare

Version 2.2.2 – 2019-03-28

Fixed

  • PHP 5.2 compatibility (PR #268)
  • Eliminate "non well formed numeric value" error (PR #269)

Version 2.2.1

13 Mar 12:56
93a09f5
Compare
Choose a tag to compare

Version 2.2.1 – 2019-03-13

  • Version 2.2.1 (PR #253)

Added

  • Add scheduled action stats to WooCommerce System Status (PR #243)

Fixed

  • Ensure we have a valid schedule in make_action_from_post (PR #238)
  • update date_query to use before parameter (PR #249)
  • Fix system status export formatting (PR #257)
  • QueueRunner::process_action() - check $action before schedule_next_instance() (PR #258)

2.2.0

31 Jan 04:37
Compare
Choose a tag to compare

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

02 Nov 14:47
Compare
Choose a tag to compare

2.1.1 – 2018-11-2

Added

  • Add Configuration for Release Drafter bot (PR #210, PR #211)

Deprecated

  • ActionScheduler_Abstract_QueueRunner::get_maximum_execution_time() – Use ActionScheduler_Abstract_QueueRunner::get_time_limit() instead.
  • The filter action_scheduler_maximum_execution_time – Use action_scheduler_queue_runner_time_limit instead.

Fixed

  • Do not rely on max execution time (Issue #207) – Fixed with PR #209