-
Notifications
You must be signed in to change notification settings - Fork 0
[Snyk] Fix for 2 vulnerabilities #24
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 |
|---|---|---|
|
|
@@ -80,7 +80,7 @@ | |
| "@semantic-release/changelog": "^3.0.2", | ||
| "@semantic-release/commit-analyzer": "^6.1.0", | ||
| "@semantic-release/git": "^7.0.8", | ||
| "@semantic-release/npm": "^5.1.8", | ||
| "@semantic-release/npm": "^7.1.0", | ||
| "@semantic-release/release-notes-generator": "^7.1.4", | ||
| "@types/fs-extra": "^5.1.0", | ||
| "@types/lodash": "^4.14.132", | ||
|
|
@@ -94,7 +94,7 @@ | |
| "conventional-changelog": "^3.1.3", | ||
| "conventional-changelog-cli": "^2.1.0", | ||
| "esbuild": "^0.8.39", | ||
| "eslint": "^6.6.0", | ||
| "eslint": "^9.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.
The repository’s CI config runs linting on Node.js 10 ( Useful? React with 👍 / 👎. |
||
| "eslint-plugin-import": "^2.18.2", | ||
| "eslint-plugin-jsdoc": "^17.1.1", | ||
| "eslint-plugin-no-null": "^1.0.2", | ||
|
|
||
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 updates dependency ranges in
package.json, butpackage-lock.jsonstill resolves the old versions (@semantic-release/npmis still5.3.5atpackage-lock.json:1331andeslintis still6.8.0atpackage-lock.json:4225). In any lockfile-based install path (for examplenpm cior scanners that read the lockfile), the old vulnerable packages remain in use, so the intended security remediation is not actually applied.Useful? React with 👍 / 👎.