- 
                Notifications
    You must be signed in to change notification settings 
- Fork 39
chore(deps): Fix vulnerabilites #497
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: main
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 | 
|---|---|---|
| @@ -1,3 +1,15 @@ | ||
| [[IgnoredVulns]] | ||
| id = "RUSTSEC-2021-0141" | ||
| reason = "The crate is unmaintained, but it works. If there is any new vulnerability, there will be another ID." | ||
|  | ||
| [[IgnoredVulns]] | ||
| id = "RUSTSEC-2024-0375" | ||
| reason = "The crate is unmaintained, but it works. If there is any new vulnerability, there will be another ID." | ||
|  | ||
| [[IgnoredVulns]] | ||
| id = "RUSTSEC-2024-0388" | ||
| reason = "The crate is unmaintained, but it works. If there is any new vulnerability, there will be another ID." | ||
|  | ||
| [[IgnoredVulns]] | ||
| id = "RUSTSEC-2024-0436" | ||
| reason = "The crate is unmaintained, but it works. If there is any new vulnerability, there will be another ID." | 
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
|  | @@ -28,5 +28,6 @@ | |
| "jest": "^29.7.0", | ||
| "ts-jest": "^29.1.2", | ||
| "typescript": "^5.3.3" | ||
| } | ||
| }, | ||
| "packageManager": "[email protected]+sha512.37ebf1a5c7a30d5fabe0c5df44ee8da4c965ca0c5af3dbab28c3a1681b70a256218d05c81c9c0dcf767ef6b8551eb5b960042b9ed4300c59242336377e01cfad" | ||
| } | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change | 
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| --- | ||
| overrides: | ||
| 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. I'm not a fan of using overrides because they're often forgotten. What we should do is add comments explaining why we're adding these overrides, like which dependencies require them. That way, once those dependencies are updated, we can remove the overrides. | ||
| axios@<1.12.0: '>=1.12.0' | ||
| tmp@<=0.2.3: '>=0.2.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.
What if we also add
minimumReleaseAgeto not be that vulnerable to supply chain attacks.1440seems like a good value, which is24h.https://pnpm.io/settings#minimumreleaseage
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.
yeah I've looked into it, I'm gonna work on a plan to harden supply chain security across our repos, including settings like this.