-
-
Notifications
You must be signed in to change notification settings - Fork 16
[Snyk] Security upgrade axios from 1.13.1 to 1.13.5 #141
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 |
|---|---|---|
|
|
@@ -176,7 +176,7 @@ | |
| "@noble/curves": "^2.0.1", | ||
| "@types/localtunnel": "^2.0.4", | ||
| "agent0-sdk": "0.2.1", | ||
| "axios": "^1.12.2", | ||
| "axios": "^1.13.5", | ||
|
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. While upgrading Please run the following command and commit the updated lock file: pnpm install |
||
| "bignumber.js": "^9.3.1", | ||
| "buffer": "^6.0.3", | ||
| "chalk": "^5.4.1", | ||
|
|
||
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 only
package.json, but the lockfile still pins axios to1.13.1with the old specifier (pnpm-lock.yamllines 48-50), so reproducible installs will not pick up1.13.5; additionally, workflows that runpnpm install --frozen-lockfile(e.g..github/workflows/pr-checks.ymllines 27/50 and.github/workflows/publish.ymlline 159) will fail because the lockfile is out of sync withpackage.json. Please regenerate and commitpnpm-lock.yamlwith this dependency bump.Useful? React with 👍 / 👎.