-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Fix for 2 vulnerabilities #120
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: next
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 |
|---|---|---|
|
|
@@ -36,7 +36,7 @@ | |
| "css-loader": "0.28.11", | ||
| "dotenv": "5.0.1", | ||
| "dotenv-expand": "4.2.0", | ||
| "eslint": "4.19.1", | ||
| "eslint": "9.0.0", | ||
| "eslint-config-react-app": "^2.1.0", | ||
| "eslint-loader": "2.0.0", | ||
| "eslint-plugin-flowtype": "2.46.3", | ||
|
|
@@ -50,24 +50,24 @@ | |
| "html-webpack-plugin": "3.2.0", | ||
| "identity-obj-proxy": "3.0.0", | ||
| "loader-utils": "^1.1.0", | ||
| "jest": "22.4.3", | ||
| "jest": "26.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. Upgrading |
||
| "mini-css-extract-plugin": "^0.4.0", | ||
| "object-assign": "4.1.1", | ||
| "postcss-flexbugs-fixes": "3.3.1", | ||
| "optimize-css-assets-webpack-plugin": "^4.0.1", | ||
| "postcss-loader": "2.1.5", | ||
| "postcss-loader": "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. Upgrading |
||
| "promise": "8.0.1", | ||
| "raf": "3.4.0", | ||
| "react-dev-utils": "^5.0.0", | ||
| "resolve": "1.6.0", | ||
| "sass-loader": "7.0.1", | ||
| "style-loader": "0.21.0", | ||
| "style-loader": "3.0.0", | ||
| "svgr": "1.9.2", | ||
| "sw-precache-webpack-plugin": "0.11.5", | ||
| "thread-loader": "1.1.5", | ||
| "uglifyjs-webpack-plugin": "1.2.5", | ||
| "url-loader": "1.0.1", | ||
| "webpack": "4.8.3", | ||
| "webpack": "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. Upgrading Key incompatibilities include:
|
||
| "webpack-dev-server": "3.1.4", | ||
| "webpack-manifest-plugin": "2.0.3", | ||
| "whatwg-fetch": "2.0.4" | ||
|
|
||
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.
Upgrading
eslintfrom v4 to v9 is a major breaking change that will break the build process.eslint-config-react-app(version2.1.0) has a peer dependency oneslint: ^4.1.1. This upgrade will cause a peer dependency conflict.eslint-config-react-appand its own dependencies would need to be upgraded as well.eslint-loader, which is deprecated and not compatible with ESLint v9. It needs to be replaced witheslint-webpack-plugin, which requires configuration changes inwebpack.config.*.jsfiles.