-
Notifications
You must be signed in to change notification settings - Fork 1
[Snyk] Fix for 3 vulnerabilities #9910
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 |
|---|---|---|
|
|
@@ -11,21 +11,21 @@ | |
| "@backstage/catalog-model": "workspace:^", | ||
| "@backstage/cli": "workspace:^", | ||
| "@backstage/config": "workspace:^", | ||
| "@backstage/core-app-api": "workspace:^", | ||
| "@backstage/core-app-api": "1.1.0", | ||
| "@backstage/core-components": "workspace:^", | ||
| "@backstage/core-plugin-api": "workspace:^", | ||
| "@backstage/integration-react": "workspace:^", | ||
| "@backstage/integration-react": "0.1.1", | ||
| "@backstage/plugin-catalog": "workspace:^", | ||
| "@backstage/plugin-techdocs": "workspace:^", | ||
| "@backstage/plugin-techdocs-react": "workspace:^", | ||
| "@backstage/plugin-techdocs": "0.1.1", | ||
| "@backstage/plugin-techdocs-react": "0.1.0", | ||
| "@backstage/test-utils": "workspace:^", | ||
| "@backstage/theme": "workspace:^", | ||
| "@material-ui/core": "^4.12.2", | ||
| "@material-ui/icons": "^4.9.1", | ||
| "history": "^5.0.0", | ||
| "react": "^17.0.2", | ||
| "react-dom": "^17.0.2", | ||
| "react-router-dom": "^6.3.0", | ||
| "react-router-dom": "^6.30.3", | ||
|
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. The PR description notes 🤖 Was this useful? React with 👍 or 👎 |
||
| "react-use": "^17.2.4" | ||
| }, | ||
| "devDependencies": { | ||
|
|
||
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.
Pinning
@backstage/*dependencies here to older published versions (e.g.@backstage/core-app-api1.1.0) while the rest remainworkspace:^will likely make Yarn pull registry packages that don’t match the workspace versions, leading to duplicate Backstage deps and potential build/runtime breakage. Consider keeping these asworkspace:^or otherwise ensuring the specified versions satisfy the local workspace package versions (also applies to the other pinned@backstage/*entries in this file).🤖 Was this useful? React with 👍 or 👎