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.0.17"
"zod": "4.1.0"

Choose a reason for hiding this comment

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

The zod dependency is pinned to an exact version “4.1.0”. To automatically pick up non-breaking (patch/minor) updates and reduce future maintenance, consider using a caret version range. For example:

"dependencies": {
  "zod": "^4.1.0"
}

},
"devDependencies": {
"@eslint/js": "9.34.0",
Comment on lines 31 to 33

Choose a reason for hiding this comment

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

After updating dependencies, make sure your lockfile is committed for reproducible installs. For npm users, you can run:

npm install
git add package-lock.json
git commit -m "chore: update lockfile after dependency bump"

If you’re using Yarn or pnpm, commit yarn.lock or pnpm-lock.yaml accordingly.

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.0.17"
"zod": "4.1.0"

Choose a reason for hiding this comment

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

Similarly, in pr-summary/package.json the zod dependency is also pinned exactly. Switching to a caret range helps keep the dependency updated:

"dependencies": {
  "zod": "^4.1.0"
}

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