Skip to content

Commit 8dcf359

Browse files
committed
Merge branch 'uat' of github.com:cloudinary/cloudinary_wordpress into uat
2 parents 28601d5 + 145674c commit 8dcf359

File tree

6 files changed

+19
-5
lines changed

6 files changed

+19
-5
lines changed

.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.4
1+
3.2.5

js/block-editor.asset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-components', 'wp-data', 'wp-i18n'), 'version' => 'c8e1eb2b75a7df74cf6a');
1+
<?php return array('dependencies' => array('react', 'wp-api-fetch', 'wp-components', 'wp-data', 'wp-i18n'), 'version' => '9b0123a912a0a6182e6b');

js/block-editor.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,5 +143,5 @@
143143
"webpack-cli": "^4.2.0",
144144
"webpackbar": "^5.0.2"
145145
},
146-
"version": "3.2.4"
146+
"version": "3.2.5"
147147
}

readme.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Contributors: Cloudinary, XWP, Automattic
33
Tags: image-optimizer, core-web-vitals, video, resize, performance
44
Requires at least: 4.7
5-
Tested up to: 6.7.1
5+
Tested up to: 6.7.2
66
Requires PHP: 5.6
77
Stable tag: STABLETAG
88
License: GPLv2
@@ -147,6 +147,15 @@ Your site is now setup to start using Cloudinary.
147147
== Changelog ==
148148

149149

150+
= 3.2.5 (19 February 2025) =
151+
152+
Fixes and Improvements:
153+
154+
* Fixed issue where the smallest image was not being generated by responsive breakpoints
155+
* Resolved deprecation notice appearing on every page in PHP 8.0+
156+
* Updated FAQ to include details on our new WPML compatibility
157+
158+
150159
= 3.2.4 (14 January 2025) =
151160

152161
Fixes and Improvements:

src/js/components/terms-inspector.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ const Terms = {
2323
fetchWait: null,
2424
_init() {
2525
this.wrapper = document.getElementById( 'cld-tax-items' );
26+
27+
if ( ! this.wrapper ) {
28+
return;
29+
}
30+
2631
const { getTaxonomies } = select( 'core' );
2732
// At the given time, not enough options are available to detect when core requests are ready.
2833
this.fetchWait = setInterval( () => {

0 commit comments

Comments
 (0)