-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Fix for 2 vulnerabilities #103
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
"npm": "3.10.3" | ||
}, | ||
"dependencies": { | ||
"axios": "^0.12.0", | ||
"axios": "^1.12.0", | ||
"babel-eslint": "^6.1.0", | ||
"babel-loader": "^6.2.4", | ||
"babel-plugin-transform-object-rest-spread": "^6.8.0", | ||
|
@@ -44,11 +44,11 @@ | |
"gulp-minify-css": "^0.4.6", | ||
"gulp-mocha": "^2.0.0", | ||
"gulp-newer": "^1.2.0", | ||
"gulp-ng-annotate": "^0.5.2", | ||
"gulp-ng-annotate": "^1.1.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 major version upgrade of |
||
"gulp-notify": "^2.2.0", | ||
"gulp-plumber": "^0.6.6", | ||
"gulp-rename": "^1.2.0", | ||
"gulp-sass": "^2.0.4", | ||
"gulp-sass": "^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.
To fix this, you must explicitly add Additionally, be aware that this upgrade switches your Sass compiler from Node-Sass to Dart Sass. Dart Sass is stricter and may not compile SCSS that worked with Node-Sass (e.g., use of |
||
"gulp-sourcemaps": "^1.3.0", | ||
"gulp-uglify": "^1.1.0", | ||
"history": "^3.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.
The specified version
^1.12.0
foraxios
does not exist on the npm registry. This will cause thenpm install
command to fail. This appears to be a typo in the automated PR. Please update it to a valid, existing version. For example, you could use the latest stable version in the 1.x series.Note that this is a major version upgrade from 0.x to 1.x, which includes breaking changes, particularly in error handling. Thorough testing of all features using
axios
is highly recommended.