-
Notifications
You must be signed in to change notification settings - Fork 3
Update dependency axios to v1.12.0 [SECURITY] #49
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
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 |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ | |
| "@octokit/webhooks": "13.9.1", | ||
| "@sap-ai-sdk/ai-api": "1.18.0", | ||
| "@sap-ai-sdk/orchestration": "1.18.0", | ||
| "axios": "1.11.0", | ||
| "axios": "1.12.0", | ||
| "minimatch": "10.0.3", | ||
| "mollitia": "0.2.0", | ||
| "octokit": "5.0.3", | ||
|
Comment on lines
22
to
28
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. The dependency lists in both {
"private": true,
"workspaces": [
"pr-review",
"pr-summary"
],
"dependencies": {
"@octokit/webhooks": "13.9.1",
"@sap-ai-sdk/ai-api": "1.18.0",
"@sap-ai-sdk/orchestration": "1.18.0",
"axios": "^1.12.0",
"minimatch": "10.0.3",
"mollitia": "0.2.0",
"octokit": "5.0.3"
}
} |
||
|
|
||
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 |
|---|---|---|
|
|
@@ -21,7 +21,7 @@ | |
| "@octokit/webhooks": "13.9.1", | ||
| "@sap-ai-sdk/ai-api": "1.18.0", | ||
| "@sap-ai-sdk/orchestration": "1.18.0", | ||
| "axios": "1.11.0", | ||
| "axios": "1.12.0", | ||
|
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. Similar to the other package, axios is currently locked to {
"dependencies": {
"axios": "^1.12.0",
// …other deps
}
} |
||
| "minimatch": "10.0.3", | ||
| "mollitia": "0.2.0", | ||
| "octokit": "5.0.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.
You’ve pinned the axios dependency to an exact patch version. To benefit from future patch updates (bug fixes and security patches) without manual bumps, consider using a semver range (e.g.,
^1.12.0) instead of an exact version. For example:{ "dependencies": { "axios": "^1.12.0", // …other deps } }