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
8 changes: 4 additions & 4 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 @@ -27,7 +27,7 @@
"mollitia": "0.2.0",
"octokit": "5.0.3",
"parse-diff": "0.11.1",
"zod": "4.1.0"
"zod": "4.1.1"

Choose a reason for hiding this comment

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

It’s usually safer to allow patch upgrades without manual bumps by using a caret range. Instead of pinning to exactly “4.1.1”, you can specify:

"zod": "^4.1.1"

This way, compatible bug fixes in newer 4.1.x releases are picked up automatically. It also stays consistent with how other dependencies are versioned.

},
"devDependencies": {
"@eslint/js": "9.34.0",
Expand Down
8 changes: 4 additions & 4 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 @@ -26,7 +26,7 @@
"mollitia": "0.2.0",
"octokit": "5.0.3",
"parse-diff": "0.11.1",
"zod": "4.1.0"
"zod": "4.1.1"

Choose a reason for hiding this comment

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

Same suggestion here: switch to a caret range to reduce maintenance overhead on minor patch releases. For example:

"zod": "^4.1.1"

Additionally, if these two package.json files share many dependencies, consider hoisting common packages into a root workspace configuration to avoid duplication and keep versioning in sync.

},
"devDependencies": {
"@eslint/js": "9.34.0",
Expand Down