-
Notifications
You must be signed in to change notification settings - Fork 1
[Snyk] Fix for 2 vulnerabilities #12450
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 |
|---|---|---|
|
|
@@ -34,19 +34,19 @@ | |
| "@backstage/cli-common": "workspace:^", | ||
| "@backstage/cli-node": "workspace:^", | ||
| "@backstage/config": "workspace:^", | ||
| "@backstage/config-loader": "workspace:^", | ||
| "@backstage/config-loader": "0.1.1", | ||
| "@backstage/errors": "workspace:^", | ||
| "@backstage/eslint-plugin": "workspace:^", | ||
| "@backstage/integration": "workspace:^", | ||
| "@backstage/release-manifests": "workspace:^", | ||
| "@backstage/release-manifests": "0.0.1", | ||
| "@backstage/types": "workspace:^", | ||
| "@esbuild-kit/cjs-loader": "^2.4.1", | ||
| "@manypkg/get-packages": "^1.1.3", | ||
| "@octokit/graphql": "^5.0.0", | ||
| "@octokit/graphql-schema": "^13.7.0", | ||
| "@octokit/oauth-app": "^4.2.0", | ||
| "@octokit/request": "^6.0.0", | ||
| "@pmmmwh/react-refresh-webpack-plugin": "^0.5.7", | ||
| "@pmmmwh/react-refresh-webpack-plugin": "^0.5.15", | ||
| "@rollup/plugin-commonjs": "^23.0.0", | ||
| "@rollup/plugin-json": "^5.0.0", | ||
| "@rollup/plugin-node-resolve": "^13.0.6", | ||
|
|
@@ -80,7 +80,7 @@ | |
| "diff": "^5.0.0", | ||
| "esbuild": "^0.18.0", | ||
| "esbuild-loader": "^2.18.0", | ||
| "eslint": "^8.6.0", | ||
| "eslint": "^10.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 PR upgrades |
||
| "eslint-config-prettier": "^8.3.0", | ||
| "eslint-formatter-friendly": "^7.0.0", | ||
| "eslint-plugin-deprecation": "^1.3.2", | ||
|
|
@@ -90,7 +90,7 @@ | |
| "eslint-plugin-react": "^7.28.0", | ||
| "eslint-plugin-react-hooks": "^4.3.0", | ||
| "eslint-webpack-plugin": "^3.1.1", | ||
| "express": "^4.17.1", | ||
| "express": "^4.22.0", | ||
| "fork-ts-checker-webpack-plugin": "^7.0.0-alpha.8", | ||
| "fs-extra": "10.1.0", | ||
| "git-url-parse": "^13.0.0", | ||
|
|
@@ -128,9 +128,9 @@ | |
| "sucrase": "^3.20.2", | ||
| "swc-loader": "^0.2.3", | ||
| "tar": "^6.1.12", | ||
| "terser-webpack-plugin": "^5.1.3", | ||
| "terser-webpack-plugin": "^5.3.11", | ||
| "util": "^0.12.3", | ||
| "webpack": "^5.70.0", | ||
| "webpack": "^5.98.0", | ||
| "webpack-dev-server": "^4.7.3", | ||
| "webpack-node-externals": "^3.0.0", | ||
| "yaml": "^2.0.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 change incorrectly downgrades
@backstage/config-loaderand@backstage/release-manifestsfrom workspace-linked versions (workspace:^) to very old, pinned public versions.@backstage/config-loaderis downgraded to0.1.1from what should be1.4.0-next.0in the workspace.@backstage/release-manifestsis downgraded to0.0.1from0.0.9in the workspace.These significant downgrades will likely cause build failures or runtime issues due to API incompatibilities. This seems to be an error by the Snyk automation. These dependencies should be reverted to use
workspace:^to ensure they use the correct versions from within the monorepo.