Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"sentry-craft": "dist/craft"
},
"devDependencies": {
"@aws-sdk/client-lambda": "^3.723.0",
"@aws-sdk/client-lambda": "^3.984.0",
"@eslint/js": "^9.17.0",
"@google-cloud/storage": "^7.14.0",
"@octokit/plugin-retry": "^7.1.2",
Expand Down Expand Up @@ -100,7 +100,9 @@
},
"pnpm": {
"overrides": {
"diff": "^8.0.3"
"diff": "^8.0.3",
"@isaacs/brace-expansion": "^5.0.1",
"fast-xml-parser": "^5.3.4"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Override forces breaking major version on GCS dependency

High Severity

The fast-xml-parser pnpm override (^5.3.4) is too broad — it forces all instances of the package to v5, including the one used by @google-cloud/storage@7.18.0, which declares a dependency on fast-xml-parser v4.x. The lockfile confirms it previously resolved to 4.5.3 and now resolves to 5.3.4. Since v4→v5 is a major version bump with breaking API changes (different constructor options, changed class behavior), this could cause runtime failures in Google Cloud Storage XML parsing code paths that tests may not cover.

Additional Locations (1)

Fix in Cursor Fix in Web

}
}
}
Loading
Loading