-
Notifications
You must be signed in to change notification settings - Fork 1
[Snyk] Fix for 6 vulnerabilities #10697
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
base: master
Are you sure you want to change the base?
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 | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -32,10 +32,10 @@ | |||||||||
| "dependencies": { | ||||||||||
| "@backstage/catalog-client": "workspace:^", | ||||||||||
| "@backstage/catalog-model": "workspace:^", | ||||||||||
| "@backstage/core-components": "workspace:^", | ||||||||||
| "@backstage/core-components": "0.1.0", | ||||||||||
| "@backstage/core-plugin-api": "workspace:^", | ||||||||||
| "@backstage/plugin-catalog-react": "workspace:^", | ||||||||||
| "@backstage/theme": "workspace:^", | ||||||||||
| "@backstage/plugin-catalog-react": "0.0.1", | ||||||||||
| "@backstage/theme": "0.1.1", | ||||||||||
|
Comment on lines
+37
to
+38
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 change for
Suggested change
|
||||||||||
| "@material-ui/core": "^4.12.2", | ||||||||||
| "@material-ui/icons": "^4.9.1", | ||||||||||
| "@material-ui/lab": "4.0.0-alpha.61", | ||||||||||
|
|
||||||||||
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.
This dependency change is incorrect. The
workspace:^protocol is used in this monorepo to link to other packages within the same yarn workspace. By replacing it with a pinned, old version (0.1.0instead of the workspace version0.13.4-next.0), you are forcing this package to use an old, published version from the registry. This will likely break the build or cause runtime issues. This should be reverted.