-
Notifications
You must be signed in to change notification settings - Fork 1
[Snyk] Fix for 2 vulnerabilities #12444
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -37,8 +37,8 @@ | |||||
| "@backstage/config": "workspace:^", | ||||||
| "@backstage/core-components": "workspace:^", | ||||||
| "@backstage/core-plugin-api": "workspace:^", | ||||||
| "@backstage/plugin-catalog-react": "workspace:^", | ||||||
| "@backstage/plugin-home-react": "workspace:^", | ||||||
| "@backstage/plugin-catalog-react": "1.0.0", | ||||||
| "@backstage/plugin-home-react": "0.1.0", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to the previous comment, fixing
Suggested change
|
||||||
| "@backstage/theme": "workspace:^", | ||||||
| "@material-ui/core": "^4.12.2", | ||||||
| "@material-ui/icons": "^4.9.1", | ||||||
|
|
||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changing
workspace:^to a fixed version1.0.0for@backstage/plugin-catalog-reactmight prevent future automatic updates from the workspace. While this fixes the immediate vulnerability, it could lead to dependency drift if other packages in the monorepo are updated and this one is not. Consider if this package should always be aligned with the workspace version or if a specific version is truly required for the fix.