From 7caa15049f064d99399b431476b3a6aa53ed66dd Mon Sep 17 00:00:00 2001 From: Corey McKrill <916023+coreymckrill@users.noreply.github.com> Date: Thu, 12 Sep 2024 16:09:00 -0700 Subject: [PATCH 1/2] woorelease: Product version bump update --- action-scheduler.php | 14 +++++++------- package-lock.json | 2 +- package.json | 2 +- readme.txt | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/action-scheduler.php b/action-scheduler.php index 72ea3299b..8e36ade71 100644 --- a/action-scheduler.php +++ b/action-scheduler.php @@ -5,7 +5,7 @@ * Description: A robust scheduling library for use in WordPress plugins. * Author: Automattic * Author URI: https://automattic.com/ - * Version: 3.8.1 + * Version: 3.8.2 * License: GPLv3 * Requires at least: 6.4 * Tested up to: 6.6 @@ -29,29 +29,29 @@ * @package ActionScheduler */ -if ( ! function_exists( 'action_scheduler_register_3_dot_8_dot_1' ) && function_exists( 'add_action' ) ) { // WRCS: DEFINED_VERSION. +if ( ! function_exists( 'action_scheduler_register_3_dot_8_dot_2' ) && function_exists( 'add_action' ) ) { // WRCS: DEFINED_VERSION. if ( ! class_exists( 'ActionScheduler_Versions', false ) ) { require_once __DIR__ . '/classes/ActionScheduler_Versions.php'; add_action( 'plugins_loaded', array( 'ActionScheduler_Versions', 'initialize_latest_version' ), 1, 0 ); } - add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_8_dot_1', 0, 0 ); // WRCS: DEFINED_VERSION. + add_action( 'plugins_loaded', 'action_scheduler_register_3_dot_8_dot_2', 0, 0 ); // WRCS: DEFINED_VERSION. // phpcs:disable Generic.Functions.OpeningFunctionBraceKernighanRitchie.ContentAfterBrace /** * Registers this version of Action Scheduler. */ - function action_scheduler_register_3_dot_8_dot_1() { // WRCS: DEFINED_VERSION. + function action_scheduler_register_3_dot_8_dot_2() { // WRCS: DEFINED_VERSION. $versions = ActionScheduler_Versions::instance(); - $versions->register( '3.8.1', 'action_scheduler_initialize_3_dot_8_dot_1' ); // WRCS: DEFINED_VERSION. + $versions->register( '3.8.2', 'action_scheduler_initialize_3_dot_8_dot_2' ); // WRCS: DEFINED_VERSION. } // phpcs:disable Generic.Functions.OpeningFunctionBraceKernighanRitchie.ContentAfterBrace /** * Initializes this version of Action Scheduler. */ - function action_scheduler_initialize_3_dot_8_dot_1() { // WRCS: DEFINED_VERSION. + function action_scheduler_initialize_3_dot_8_dot_2() { // WRCS: DEFINED_VERSION. // A final safety check is required even here, because historic versions of Action Scheduler // followed a different pattern (in some unusual cases, we could reach this point and the // ActionScheduler class is already defined—so we need to guard against that). @@ -63,7 +63,7 @@ function action_scheduler_initialize_3_dot_8_dot_1() { // WRCS: DEFINED_VERSION. // Support usage in themes - load this version if no plugin has loaded a version yet. if ( did_action( 'plugins_loaded' ) && ! doing_action( 'plugins_loaded' ) && ! class_exists( 'ActionScheduler', false ) ) { - action_scheduler_initialize_3_dot_8_dot_1(); // WRCS: DEFINED_VERSION. + action_scheduler_initialize_3_dot_8_dot_2(); // WRCS: DEFINED_VERSION. do_action( 'action_scheduler_pre_theme_init' ); ActionScheduler_Versions::initialize_latest_version(); } diff --git a/package-lock.json b/package-lock.json index 71f116363..546ee508d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "action-scheduler", - "version": "3.8.1", + "version": "3.8.2", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 04a1083e6..b4bb0bc48 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "action-scheduler", "title": "Action Scheduler", - "version": "3.8.1", + "version": "3.8.2", "homepage": "https://actionscheduler.org/", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 9f5b4a7eb..82a4efb82 100644 --- a/readme.txt +++ b/readme.txt @@ -1,7 +1,7 @@ === Action Scheduler === Contributors: Automattic, wpmuguru, claudiosanches, peterfabian1000, vedjain, jamosova, obliviousharmony, konamiman, sadowski, royho, barryhughes-1 Tags: scheduler, cron -Stable tag: 3.8.1 +Stable tag: 3.8.2 License: GPLv3 Requires at least: 6.4 Tested up to: 6.6 From 2bc91d88fdbc2c07ab899cbb56b983e11e62cf69 Mon Sep 17 00:00:00 2001 From: Corey McKrill <916023+coreymckrill@users.noreply.github.com> Date: Thu, 12 Sep 2024 16:12:58 -0700 Subject: [PATCH 2/2] woorelease: Changelog update --- changelog.txt | 6 ++++++ readme.txt | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/changelog.txt b/changelog.txt index 97c537d9f..c95b43e80 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,11 @@ *** Changelog *** += 3.8.2 - 2024-09-12 = +* Add missing parameter to the `pre_as_enqueue_async_action` hook. +* Bump minimum PHP version to 7.0. +* Bump minimum WordPress version to 6.4. +* Make the batch size adjustable during processing. + = 3.8.1 - 2024-06-20 = * Fix typos. * Improve the messaging in our unidentified action exceptions. diff --git a/readme.txt b/readme.txt index 82a4efb82..f9a3e7903 100644 --- a/readme.txt +++ b/readme.txt @@ -47,6 +47,12 @@ Collaboration is cool. We'd love to work with you to improve Action Scheduler. [ == Changelog == += 3.8.2 - 2024-09-12 = +* Add missing parameter to the `pre_as_enqueue_async_action` hook. +* Bump minimum PHP version to 7.0. +* Bump minimum WordPress version to 6.4. +* Make the batch size adjustable during processing. + = 3.8.1 - 2024-06-20 = * Fix typos. * Improve the messaging in our unidentified action exceptions.