File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 1+ 1.36.3 / 2023-05-02
2+ ==================
3+
4+ * fix: smd number field allows both numbers and string when uploading
5+ * fix: isRemoteUrl not working on big files sometimes
6+
171.36.2 / 2023-04-24
28==================
39
Original file line number Diff line number Diff line change @@ -449,6 +449,9 @@ function encode_context(metadataObj) {
449449 return `\"${ escapeMetadataValue ( innerVal ) } \"` ;
450450 } ) . join ( ',' ) ;
451451 return `${ key } =[${ values } ]` ;
452+ // if number, convert to string
453+ } else if ( Number . isInteger ( value ) ) {
454+ return `${ key } =${ escapeMetadataValue ( String ( value ) ) } ` ;
452455 // if unknown, return the value as string
453456 } else {
454457 return value . toString ( ) ;
Original file line number Diff line number Diff line change 22 "author" :
" Cloudinary <[email protected] >" ,
33 "name" : " cloudinary" ,
44 "description" : " Cloudinary NPM for node.js integration" ,
5- "version" : " 1.36.2 " ,
5+ "version" : " 1.36.3 " ,
66 "homepage" : " http://cloudinary.com" ,
77 "license" : " MIT" ,
88 "repository" : {
You can’t perform that action at this time.
0 commit comments