Skip to content
Closed
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: 3 additions & 3 deletions plugins/rollbar/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
"clean": "backstage-cli package clean"
},
"dependencies": {
"@backstage/catalog-model": "workspace:^",
"@backstage/catalog-model": "0.1.1",
"@backstage/core-components": "workspace:^",
"@backstage/core-plugin-api": "workspace:^",
"@backstage/plugin-catalog-react": "workspace:^",
"@backstage/theme": "workspace:^",
"@backstage/plugin-catalog-react": "1.0.0",
"@backstage/theme": "0.1.1",
Comment on lines +36 to +40
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

The automated dependency update from Snyk is likely incorrect. It replaces workspace:^ specifiers with pinned versions from the public registry, and in some cases, downgrades the packages significantly:

  • @backstage/catalog-model is changed to 0.1.1, but the version in this repository is 1.4.1.
  • @backstage/theme is changed to 0.1.1, but the version in this repository is 0.4.1.

These downgrades will likely cause build failures or runtime errors. The workspace: protocol is used to ensure packages within this monorepo are used, and replacing it breaks this convention.

The recommended action is to address the vulnerabilities (SNYK-JS-AJV-15274295 and SNYK-JS-QS-15268416) by updating the vulnerable transitive dependencies (ajv, qs) in their respective source packages within this repository, rather than accepting these changes.

"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.61",
Expand Down
Loading