-
Notifications
You must be signed in to change notification settings - Fork 79
[Aikido] Fix 4 security issues in axios, lodash, thirdweb and 1 more #388
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
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 |
|---|---|---|
|
|
@@ -46,12 +46,22 @@ | |
| }, | ||
| "typesVersions": { | ||
| "*": { | ||
| "connectors": ["dist/types/exports/connectors.d.ts"], | ||
| "privy": ["dist/types/exports/privy.d.ts"], | ||
| "thirdweb": ["dist/types/exports/thirdweb.d.ts"] | ||
| "connectors": [ | ||
| "dist/types/exports/connectors.d.ts" | ||
| ], | ||
| "privy": [ | ||
| "dist/types/exports/privy.d.ts" | ||
| ], | ||
| "thirdweb": [ | ||
| "dist/types/exports/thirdweb.d.ts" | ||
| ] | ||
| } | ||
| }, | ||
| "files": ["dist", "src", "package.json"], | ||
| "files": [ | ||
| "dist", | ||
| "src", | ||
| "package.json" | ||
| ], | ||
| "dependencies": { | ||
| "@abstract-foundation/agw-client": "workspace:*" | ||
| }, | ||
|
|
@@ -61,8 +71,8 @@ | |
| "@tanstack/react-query": "^5", | ||
| "react": ">=18", | ||
| "secp256k1": ">=5.0.1", | ||
| "typescript": ">=5.0.4", | ||
| "thirdweb": "^5.72.0", | ||
| "typescript": ">=5.0.4", | ||
| "viem": "^2.37.0", | ||
| "wagmi": "^2.17.5" | ||
| }, | ||
|
|
@@ -78,7 +88,7 @@ | |
| "@wagmi/core": "2.22.1", | ||
| "react": ">=18.3.1", | ||
| "react-dom": ">=18.3.1", | ||
| "thirdweb": "^5.68.0", | ||
| "thirdweb": "5.93.5-nightly-b51157c0ff17e9535029fc8790cfa8538d1c995f-20250326000337", | ||
|
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. Nightly build pinned as thirdweb devDependencyMedium Severity The |
||
| "viem": "^2.37.0" | ||
| }, | ||
| "peerDependenciesMeta": { | ||
|
|
||


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.
Overrides use exact pins instead of >= ranges
Low Severity
All 13 existing pnpm overrides in this file use
>=range syntax for the replacement version (e.g.,">=0.2.4"), but the three new overrides foraxios,lodash, andjs-yamluse exact version pins (e.g.,"1.13.5"). This inconsistency means that when a transitive dependency resolves to a vulnerable version, the override will force it to exactly the current fix version rather than allowing resolution to any newer patched release. Using">=1.13.5",">=4.17.23", and">=3.14.2"would match the established pattern and automatically pick up future security patches.