From f6efcae15d99de5f4d3eb6bfdda2c287ba8fbe25 Mon Sep 17 00:00:00 2001 From: "themeisle[bot]" Date: Tue, 5 Dec 2023 12:12:09 +0000 Subject: [PATCH] chore(release): 3.11.3 ##### [Version 3.11.3](https://github.com/Codeinwp/optimole-wp/compare/v3.11.2...v3.11.3) (2023-12-05) ### Bug Fixes - **Division by zero**: Addressed an edge case where a division by zero was happening when resizing images. - **WPML Duplicated Attachments**: Resolved an issue where WPML duplicated attachments were not being accounted for as offloaded. - **Offload Batch Size**: Lowered the batch size of images processed for offloading/rollback to address timeout issues on some servers. ### Improvements - **Action Scheduler Integration**: The offloading/rollback process will use Action Scheduler if available. --- CHANGELOG.md | 12 ++++++++++++ optimole-wp.php | 4 ++-- package-lock.json | 2 +- package.json | 2 +- readme.txt | 15 +++++++++++++++ 5 files changed, 31 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f0c411c..409cc329 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +##### [Version 3.11.3](https://github.com/Codeinwp/optimole-wp/compare/v3.11.2...v3.11.3) (2023-12-05) + +### Bug Fixes + +- **Division by zero**: Addressed an edge case where a division by zero was happening when resizing images. +- **WPML Duplicated Attachments**: Resolved an issue where WPML duplicated attachments were not being accounted for as offloaded. +- **Offload Batch Size**: Lowered the batch size of images processed for offloading/rollback to address timeout issues on some servers. + +### Improvements + +- **Action Scheduler Integration**: The offloading/rollback process will use Action Scheduler if available. + ##### [Version 3.11.2](https://github.com/Codeinwp/optimole-wp/compare/v3.11.1...v3.11.2) (2023-11-23) ### Bug Fixes diff --git a/optimole-wp.php b/optimole-wp.php index 97023182..c909245d 100644 --- a/optimole-wp.php +++ b/optimole-wp.php @@ -2,7 +2,7 @@ /** * Plugin Name: Image optimization service by Optimole * Description: Complete handling of your website images. - * Version: 3.11.2 + * Version: 3.11.3 * Author: Optimole * Author URI: https://optimole.com * License: GPL-2.0+ @@ -74,7 +74,7 @@ function optml() { } define( 'OPTML_URL', plugin_dir_url( __FILE__ ) ); define( 'OPTML_PATH', plugin_dir_path( __FILE__ ) ); - define( 'OPTML_VERSION', '3.11.2' ); + define( 'OPTML_VERSION', '3.11.3' ); define( 'OPTML_NAMESPACE', 'optml' ); define( 'OPTML_BASEFILE', __FILE__ ); // Fallback for old PHP versions when this constant is not defined. diff --git a/package-lock.json b/package-lock.json index d5d18483..c356854b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "optimole-wp", - "version": "3.11.2", + "version": "3.11.3", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index 4db415fc..411e92a5 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "optimole-wp", - "version": "3.11.2", + "version": "3.11.3", "description": "Cloud-based image optimization service - WordPress Integration", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 4ffb99c5..58411b61 100755 --- a/readme.txt +++ b/readme.txt @@ -148,6 +148,21 @@ Discover how to make the most of Otter Blocks with our detailed and user-friendl == Changelog == +##### [Version 3.11.3](https://github.com/Codeinwp/optimole-wp/compare/v3.11.2...v3.11.3) (2023-12-05) + +### Bug Fixes + +- **Division by zero**: Addressed an edge case where a division by zero was happening when resizing images. +- **WPML Duplicated Attachments**: Resolved an issue where WPML duplicated attachments were not being accounted for as offloaded. +- **Offload Batch Size**: Lowered the batch size of images processed for offloading/rollback to address timeout issues on some servers. + +### Improvements + +- **Action Scheduler Integration**: The offloading/rollback process will use Action Scheduler if available. + + + + ##### [Version 3.11.2](https://github.com/Codeinwp/optimole-wp/compare/v3.11.1...v3.11.2) (2023-11-23) ### Bug Fixes