-
Notifications
You must be signed in to change notification settings - Fork 3
Update non-major dependencies #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Updated dependency versions in both Walkthrough
Model: o4-mini | Prompt Tokens: 602 | Completion Tokens: 791 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enjoy this friendly code review with AI support. Some suggestions are informed estimates rather than absolute facts, so feel free to adapt or discard them as you see fit. You steer the project—AI is here to help and inspire, not to override your expertise.
Model: o4-mini | Prompt Tokens: 1108 | Completion Tokens: 3307
| "mollitia": "0.2.0", | ||
| "octokit": "5.0.3", | ||
| "parse-diff": "0.11.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To improve readability and ease future maintenance, sort the dependencies keys alphabetically. For example:
"dependencies": {
"mollitia": "0.2.0",
"octokit": "5.0.3",
"parse-diff": "0.11.1",
"zod": "^4.0.10"
}| "octokit": "5.0.3", | ||
| "parse-diff": "0.11.1", | ||
| "zod": "4.0.5" | ||
| "zod": "4.0.10" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use a caret range for the zod dependency to automatically receive backward-compatible patch updates instead of locking to an exact version. For example:
"zod": "^4.0.10"| }, | ||
| "devDependencies": { | ||
| "@eslint/js": "9.31.0", | ||
| "@eslint/js": "9.32.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Apply the same caret-range strategy to your ESLint packages so you can pick up non-breaking fixes without manual bumps:
"@eslint/js": "^9.32.0"| "@types/node": "22.16.5", | ||
| "@vercel/ncc": "0.38.3", | ||
| "eslint": "9.31.0", | ||
| "eslint": "9.32.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consistently use caret ranges for eslint as well. This will bring in minor and patch updates automatically:
"eslint": "^9.32.0"| "mollitia": "0.2.0", | ||
| "octokit": "5.0.3", | ||
| "parse-diff": "0.11.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As with the other package, alphabetizing dependencies improves clarity across the repo. Example:
"dependencies": {
"mollitia": "0.2.0",
"octokit": "5.0.3",
"parse-diff": "0.11.1",
"zod": "^4.0.10"
}| "octokit": "5.0.3", | ||
| "parse-diff": "0.11.1", | ||
| "zod": "4.0.5" | ||
| "zod": "4.0.10" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Locking to an exact zod version forces manual updates for every patch. Switching to a caret range ensures you get compatible fixes automatically:
"zod": "^4.0.10"| }, | ||
| "devDependencies": { | ||
| "@eslint/js": "9.31.0", | ||
| "@eslint/js": "9.32.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use caret ranges for ESLint packages here too, so patch releases and minor updates flow in without manual bumps:
"@eslint/js": "^9.32.0"| "@types/node": "22.16.5", | ||
| "@vercel/ncc": "0.38.3", | ||
| "eslint": "9.31.0", | ||
| "eslint": "9.32.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Align with the rest of your devDependencies by using a caret range for eslint. This will reduce future version pinning work:
"eslint": "^9.32.0"Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This PR contains the following updates:
9.31.0->9.32.09.31.0->9.32.04.0.5->4.0.10Release Notes
eslint/eslint (@eslint/js)
v9.32.0Compare Source
eslint/eslint (eslint)
v9.32.0Compare Source
colinhacks/zod (zod)
v4.0.10Compare Source
v4.0.9Compare Source
Commits:
4e7a3efv4.0.9 (#4970)v4.0.8Compare Source
Commits:
3048d14Fix #4961v4.0.7Compare Source
v4.0.6Compare Source
Configuration
📅 Schedule: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.