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.5",
"parse-diff": "0.11.1",
"zod": "4.3.4"
"zod": "4.3.5"
Copy link

Choose a reason for hiding this comment

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

It looks like you’ve bumped zod from 4.3.4 to 4.3.5, but the version is pinned strictly to patch level. To benefit from future patch fixes without manual bumps, consider using a semver range (e.g., caret ^). For example:

{
  "dependencies": {
    "zod": "^4.3.5"
  }
}

This lets npm install any compatible patch release (4.3.x), reducing the need for frequent manual updates.

Additionally, ensure both pr-review and pr-summary stay in sync by centralizing shared deps in a root workspace or using a tool like Renovate to automate bump propagation.

},
"devDependencies": {
"@eslint/js": "9.39.2",
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.5",
"parse-diff": "0.11.1",
"zod": "4.3.4"
"zod": "4.3.5"
Copy link

Choose a reason for hiding this comment

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

Similar to the other workspace, you’ve updated zod to 4.3.5 with a fixed version. To automatically pick up new patch releases and avoid repeated manual bumps, switch to a semver range:

{
  "dependencies": {
    "zod": "^4.3.5"
  }
}

Keeping both pr-summary and pr-review consistent via a shared workspace configuration or an automated dependency bot will help maintain alignment across packages.

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