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
158 changes: 79 additions & 79 deletions pr-review/package-lock.json

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

8 changes: 4 additions & 4 deletions pr-review/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@
"@octokit/plugin-retry": "6.1.0",
"@octokit/plugin-throttling": "8.2.0",
"@octokit/webhooks": "13.9.1",
"@sap-ai-sdk/ai-api": "1.16.0",
"@sap-ai-sdk/orchestration": "1.16.0",
"@sap-ai-sdk/ai-api": "1.17.0",
"@sap-ai-sdk/orchestration": "1.17.0",
Comment on lines -23 to +24
Copy link

Choose a reason for hiding this comment

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

I see you’re bumping both @sap-ai-sdk/ai-api and @sap-ai-sdk/orchestration to the same exact version. To reduce maintenance overhead when you need to bump these in multiple repos or package files, consider using a workspace or a single source of truth (e.g., a root package.json with a workspaces field) so that both packages stay in sync automatically. If a monorepo is not an option, you could at least extract the SDK version into an environment variable or an npm script to keep bumps atomic across multiple files.

"axios": "1.11.0",
"minimatch": "10.0.3",
"mollitia": "0.2.0",
"octokit": "5.0.3",
"parse-diff": "0.11.1",
"zod": "4.0.10"
"zod": "4.0.14"
Copy link

Choose a reason for hiding this comment

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

You’ve pinned zod to 4.0.14 exactly. To get patch updates automatically (security fixes, minor bug fixes) while avoiding unintended breaking changes, it’s idiomatic to use a caret range, for example:

"zod": "^4.0.14"

This way, you’ll pick up all compatible patch releases without changing your code each time.

},
"devDependencies": {
"@eslint/js": "9.32.0",
"@types/node": "22.16.5",
"@types/node": "22.17.0",
"@vercel/ncc": "0.38.3",
"eslint": "9.32.0",
"eslint-plugin-import": "2.32.0",
Expand Down
Loading