Skip to content

Commit 1255763

Browse files
author
cloudinary-bot
committed
Version 1.33.0
1 parent 8908466 commit 1255763

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
1.33.0 / 2022-12-15
2+
==================
3+
4+
* feat: start and end offset normalized in a transformation string
5+
* feat: new config option for hiding sensitive data when logging errors
6+
* feat: multiple ACLs for generate_auth_token
7+
* fix: improved TS typing
8+
19
1.32.0 / 2022-09-14
210
==================
311

lib-es5/api.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ exports.update = function update(public_id, callback) {
183183
if (options.moderation_status != null) {
184184
params.moderation_status = options.moderation_status;
185185
}
186-
if (options.clear_invalid != null) {
186+
if (options.clear_invalid !== null) {
187187
params.clear_invalid = options.clear_invalid;
188188
}
189189
return call_api("post", uri, params, callback, options);

lib-es5/utils/consts.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ module.exports = {
8585
UPLOAD_PREFIX,
8686
SUPPORTED_SIGNATURE_ALGORITHMS,
8787
DEFAULT_SIGNATURE_ALGORITHM
88-
};
88+
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"author": "Cloudinary <[email protected]>",
33
"name": "cloudinary",
44
"description": "Cloudinary NPM for node.js integration",
5-
"version": "1.32.0",
5+
"version": "1.33.0",
66
"homepage": "http://cloudinary.com",
77
"license": "MIT",
88
"repository": {

0 commit comments

Comments
 (0)