Bug report for Cloudinary NPM SDK
Before proceeding, please update to latest version and test if the issue persists.
We are on cloudinary@2.9.0 (latest on npm). bun audit still flags lodash pulled in by this package.
Describe the bug in a sentence or two.
The Cloudinary NPM SDK declares a dependency on lodash (^4.17.21 in cloudinary@2.9.0). The resolved lodash version falls in the range reported as vulnerable by multiple GitHub Security Advisories (lodash >=4.0.0 <=4.17.22). Security scanners (e.g. bun audit / npm audit) therefore report high and moderate findings on installs that only add cloudinary as a direct dependency.
Issue Type (Can be multiple)
Steps to reproduce
- Create a minimal project with
"cloudinary": "^2.9.0" in package.json.
- Run
npm install or bun install.
- Run
bun audit (or npm audit).
- Observe findings for lodash, dependency path cloudinary › lodash, vulnerable range >=4.0.0 <=4.17.22.
Error screenshots
bun audit output (excerpt):
Suggested fix
Bump the lodash dependency in cloudinary to a patched version outside the vulnerable range (e.g. per the linked GHSAs, typically > 4.17.22 / latest 4.x patch), and release a patch version of the SDK so consumers clear audits without overrides / resolutions.
Bug report for Cloudinary NPM SDK
Before proceeding, please update to latest version and test if the issue persists.
We are on cloudinary@2.9.0 (latest on npm).
bun auditstill flags lodash pulled in by this package.Describe the bug in a sentence or two.
The Cloudinary NPM SDK declares a dependency on lodash (
^4.17.21incloudinary@2.9.0). The resolved lodash version falls in the range reported as vulnerable by multiple GitHub Security Advisories (lodash >=4.0.0 <=4.17.22). Security scanners (e.g.bun audit/npm audit) therefore report high and moderate findings on installs that only addcloudinaryas a direct dependency.Issue Type (Can be multiple)
Steps to reproduce
"cloudinary": "^2.9.0"inpackage.json.npm installorbun install.bun audit(ornpm audit).Error screenshots
bun auditoutput (excerpt):Suggested fix
Bump the lodash dependency in cloudinary to a patched version outside the vulnerable range (e.g. per the linked GHSAs, typically > 4.17.22 / latest 4.x patch), and release a patch version of the SDK so consumers clear audits without overrides / resolutions.