Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions pr-review/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pr-review/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"@octokit/webhooks": "13.9.1",
"@sap-ai-sdk/ai-api": "1.16.0",
"@sap-ai-sdk/orchestration": "1.16.0",
"axios": "1.10.0",
"axios": "1.11.0",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You have updated axios from a fixed version to another fixed version. Pinning to an exact version can make it harder to receive backward-compatible patches. Consider using a semver range (e.g., ^1.11.0) to automatically pull in non-breaking updates and security fixes:

{
  "dependencies": {
    "axios": "^1.11.0"
  }
}

"minimatch": "10.0.3",
"mollitia": "0.2.0",
"octokit": "5.0.3",
Expand Down
16 changes: 8 additions & 8 deletions pr-summary/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pr-summary/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@octokit/webhooks": "13.9.1",
"@sap-ai-sdk/ai-api": "1.16.0",
"@sap-ai-sdk/orchestration": "1.16.0",
"axios": "1.10.0",
"axios": "1.11.0",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here as in the other package. Rather than pinning axios exactly, use a caret range to allow non-breaking patch updates:

{
  "dependencies": {
    "axios": "^1.11.0"
  }
}

"minimatch": "10.0.3",
"mollitia": "0.2.0",
"octokit": "5.0.3",
Expand Down