Skip to content

Commit f6efcae

Browse files
committed
chore(release): 3.11.3
##### [Version 3.11.3](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.
1 parent c91a3cb commit f6efcae

5 files changed

+31
-4
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
##### [Version 3.11.3](https://github.com/Codeinwp/optimole-wp/compare/v3.11.2...v3.11.3) (2023-12-05)
2+
3+
### Bug Fixes
4+
5+
- **Division by zero**: Addressed an edge case where a division by zero was happening when resizing images.
6+
- **WPML Duplicated Attachments**: Resolved an issue where WPML duplicated attachments were not being accounted for as offloaded.
7+
- **Offload Batch Size**: Lowered the batch size of images processed for offloading/rollback to address timeout issues on some servers.
8+
9+
### Improvements
10+
11+
- **Action Scheduler Integration**: The offloading/rollback process will use Action Scheduler if available.
12+
113
##### [Version 3.11.2](https://github.com/Codeinwp/optimole-wp/compare/v3.11.1...v3.11.2) (2023-11-23)
214

315
### Bug Fixes

optimole-wp.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* Plugin Name: Image optimization service by Optimole
44
* Description: Complete handling of your website images.
5-
* Version: 3.11.2
5+
* Version: 3.11.3
66
* Author: Optimole
77
* Author URI: https://optimole.com
88
* License: GPL-2.0+
@@ -74,7 +74,7 @@ function optml() {
7474
}
7575
define( 'OPTML_URL', plugin_dir_url( __FILE__ ) );
7676
define( 'OPTML_PATH', plugin_dir_path( __FILE__ ) );
77-
define( 'OPTML_VERSION', '3.11.2' );
77+
define( 'OPTML_VERSION', '3.11.3' );
7878
define( 'OPTML_NAMESPACE', 'optml' );
7979
define( 'OPTML_BASEFILE', __FILE__ );
8080
// Fallback for old PHP versions when this constant is not defined.

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "optimole-wp",
3-
"version": "3.11.2",
3+
"version": "3.11.3",
44
"description": "Cloud-based image optimization service - WordPress Integration",
55
"repository": {
66
"type": "git",

readme.txt

+15
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,21 @@ Discover how to make the most of Otter Blocks with our detailed and user-friendl
148148

149149
== Changelog ==
150150

151+
##### [Version 3.11.3](https://github.com/Codeinwp/optimole-wp/compare/v3.11.2...v3.11.3) (2023-12-05)
152+
153+
### Bug Fixes
154+
155+
- **Division by zero**: Addressed an edge case where a division by zero was happening when resizing images.
156+
- **WPML Duplicated Attachments**: Resolved an issue where WPML duplicated attachments were not being accounted for as offloaded.
157+
- **Offload Batch Size**: Lowered the batch size of images processed for offloading/rollback to address timeout issues on some servers.
158+
159+
### Improvements
160+
161+
- **Action Scheduler Integration**: The offloading/rollback process will use Action Scheduler if available.
162+
163+
164+
165+
151166
##### [Version 3.11.2](https://github.com/Codeinwp/optimole-wp/compare/v3.11.1...v3.11.2) (2023-11-23)
152167

153168
### Bug Fixes

0 commit comments

Comments
 (0)