-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Fix for 2 vulnerabilities #84
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 |
---|---|---|
|
@@ -3,15 +3,15 @@ | |
"version": "0.1.0", | ||
"private": true, | ||
"dependencies": { | ||
"axios": "^0.17.0", | ||
"axios": "^1.12.0", | ||
"classnames": "^2.2.5", | ||
"lodash": "^4.17.4", | ||
"prop-types": "^15.6.0", | ||
"react": "^16.0.0", | ||
"react-dom": "^16.0.0", | ||
"react-router": "^4.2.0", | ||
"react-router-dom": "^4.2.2", | ||
"react-scripts": "1.0.14" | ||
"react-scripts": "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
Before merging, it is essential to test the build, start, and all application functionality thoroughly on a separate branch and address any resulting issues. |
||
}, | ||
"scripts": { | ||
"start": "react-scripts start", | ||
|
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.
The upgrade of
axios
from^0.17.0
to^1.12.0
is a major version jump from a pre-1.0 release. This may introduce breaking changes, particularly in error handling. The structure of the error object in.catch()
blocks might have changed. Please review theaxios
changelog and test API calls that handle errors, such as the one inapp/src/helpers/upload.js
.