-
Notifications
You must be signed in to change notification settings - Fork 1
[Snyk] Fix for 2 vulnerabilities #12445
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 |
|---|---|---|
|
|
@@ -50,24 +50,24 @@ | |
| "@backstage/config": "workspace:^", | ||
| "@backstage/core-components": "workspace:^", | ||
| "@backstage/core-plugin-api": "workspace:^", | ||
| "@backstage/errors": "workspace:^", | ||
| "@backstage/errors": "0.1.1", | ||
| "@backstage/integration": "workspace:^", | ||
| "@backstage/integration-react": "workspace:^", | ||
| "@backstage/plugin-catalog-common": "workspace:^", | ||
| "@backstage/plugin-catalog-react": "workspace:^", | ||
| "@backstage/plugin-permission-react": "workspace:^", | ||
| "@backstage/plugin-scaffolder-common": "workspace:^", | ||
| "@backstage/plugin-scaffolder-react": "workspace:^", | ||
| "@backstage/plugin-scaffolder-react": "1.0.0", | ||
| "@backstage/theme": "workspace:^", | ||
| "@backstage/types": "workspace:^", | ||
| "@backstage/types": "0.1.1", | ||
| "@codemirror/language": "^6.0.0", | ||
| "@codemirror/legacy-modes": "^6.1.0", | ||
| "@codemirror/view": "^6.0.0", | ||
| "@material-ui/core": "^4.12.2", | ||
| "@material-ui/icons": "^4.9.1", | ||
| "@material-ui/lab": "4.0.0-alpha.61", | ||
| "@react-hookz/web": "^20.0.0", | ||
| "@rjsf/core": "^3.2.1", | ||
| "@rjsf/core": "^5.0.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. This is a major version upgrade for |
||
| "@rjsf/material-ui": "^3.2.1", | ||
| "@rjsf/utils": "5.7.3", | ||
| "@rjsf/validator-ajv8": "5.7.3", | ||
|
|
@@ -82,7 +82,7 @@ | |
| "json-schema-library": "^7.3.9", | ||
| "lodash": "^4.17.21", | ||
| "luxon": "^3.0.0", | ||
| "qs": "^6.9.4", | ||
| "qs": "^6.14.2", | ||
| "react-use": "^17.2.4", | ||
| "yaml": "^2.0.0", | ||
| "zen-observable": "^0.10.0", | ||
|
|
||
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 PR incorrectly downgrades several internal
@backstagepackages (@backstage/errors,@backstage/plugin-scaffolder-react,@backstage/types) by pinning them to old, specific versions instead of using theworkspace:^protocol. This is incorrect for a monorepo setup and will likely break the build. These dependencies should be reverted to useworkspace:^to ensure they use the local, up-to-date versions from the repository.