-
Notifications
You must be signed in to change notification settings - Fork 4
Deps Upgrade #22
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
Deps Upgrade #22
Conversation
jameswylie
commented
Mar 19, 2025
- Resolves all flagged vulnerability related warnings (package manager).
- Notably resolves high severity Secp256k1 vulnerability (even though not fully utilised within the RET, dependent packages will no longer flag warnings): https://hacken.io/insights/secure-ecdh/
…g npm vulnerabilities.
| "registry": "https://registry.npmjs.org" | ||
| }, | ||
| "overrides": { | ||
| "elliptic": "6.5.7" |
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.
| "elliptic": "6.5.7" | |
| "elliptic": "^6.6.1" |
While updating dependencies, it'd be good to also update or undo 852a6ad instead of continuing to force an outdated version with known vulnerabilities.
| "@noble/ed25519": "2.2.3", | ||
| "@noble/hashes": "1.7.1", | ||
| "@types/secp256k1": "4.0.6", | ||
| "@types/secure-random": "1.1.3", |
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.
| "@noble/ed25519": "2.2.3", | |
| "@noble/hashes": "1.7.1", | |
| "@types/secp256k1": "4.0.6", | |
| "@types/secure-random": "1.1.3", | |
| "@noble/ed25519": "^2.2.3", | |
| "@noble/hashes": "^1.7.1", | |
| "@types/secp256k1": "^4.0.6", | |
| "@types/secure-random": "^1.1.3", |
| "change-case": "5.4.4", | ||
| "decimal.js": "10.5.0", | ||
| "reflect-metadata": "0.2.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.
| "change-case": "5.4.4", | |
| "decimal.js": "10.5.0", | |
| "reflect-metadata": "0.2.2", | |
| "change-case": "^5.4.4", | |
| "decimal.js": "^10.5.0", | |
| "reflect-metadata": "^0.2.2", |
| "vite": "4.2.1", | ||
| "vitest": "0.29.8" | ||
| "@rollup/plugin-wasm": "6.2.2", | ||
| "@types/node": "22.13.10", |
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.
| "@types/node": "22.13.10", | |
| "@types/node": ">=22.13.10", |
dynst
left a comment
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.
While they're being updated, adding carets to the dependency versions would be great, too.