-
Notifications
You must be signed in to change notification settings - Fork 249
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
patch vulnerabilities #282
Changes from all commits
0d6570c
6ac5619
2f867a5
6c7382b
7865fdb
3295764
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@changesets/action": patch | ||
--- | ||
|
||
Updated a few dependencies to patch the security vulnerabilities that were reported for their older versions. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,17 @@ | |
"@vercel/ncc": "^0.36.1", | ||
"fixturez": "^1.1.0", | ||
"prettier": "^2.0.5", | ||
"typescript": "^5.0.4" | ||
"typescript": "^5.0.4", | ||
"@babel/core": "^7.13.10", | ||
"@babel/preset-env": "^7.13.10", | ||
"@babel/preset-typescript": "^7.13.0", | ||
"@types/fs-extra": "^8.0.0", | ||
"@types/jest": "^29.5.1", | ||
"@types/node": "^12.7.1", | ||
"@types/semver": "^6.0.2", | ||
"babel-jest": "^29.5.0", | ||
"husky": "^3.0.3", | ||
"jest": "^29.5.0" | ||
}, | ||
"scripts": { | ||
"build": "ncc build src/index.ts -o dist --transpile-only --minify", | ||
|
@@ -27,21 +37,11 @@ | |
"@actions/core": "^1.10.0", | ||
"@actions/exec": "^1.1.1", | ||
"@actions/github": "^5.1.1", | ||
"@babel/core": "^7.13.10", | ||
"@babel/preset-env": "^7.13.10", | ||
"@babel/preset-typescript": "^7.13.0", | ||
"@changesets/pre": "^1.0.9", | ||
"@changesets/read": "^0.5.3", | ||
"@manypkg/get-packages": "^1.1.3", | ||
"@octokit/plugin-throttling": "^5.2.1", | ||
"@types/fs-extra": "^8.0.0", | ||
"@types/jest": "^29.5.1", | ||
"@types/node": "^12.7.1", | ||
"@types/semver": "^6.0.2", | ||
"babel-jest": "^29.5.0", | ||
"fs-extra": "^8.1.0", | ||
"husky": "^3.0.3", | ||
"jest": "^29.5.0", | ||
"mdast-util-to-string": "^1.0.6", | ||
"remark-parse": "^7.0.1", | ||
"remark-stringify": "^7.0.3", | ||
|
@@ -54,6 +54,8 @@ | |
}, | ||
"prettier": {}, | ||
"resolutions": { | ||
"**/@octokit/core": "4.2.0" | ||
"**/@octokit/core": "4.2.0", | ||
"trim": "^0.0.3", | ||
"y18n": "^4.0.1" | ||
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 is a dependency of 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. Hm, I also don't quite see that package in the Snyk report. |
||
} | ||
} |
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 one comes from
remark-parse
and to fix it we'd have to update a major of this library. I agree that it's best to do it in a separate PR.