-
Notifications
You must be signed in to change notification settings - Fork 3
Update non-major dependencies #51
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
|
Bumps a series of dependencies across both Walkthrough
Model: o4-mini | Prompt Tokens: 978 | Completion Tokens: 711 |
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.
Here’s a friendly code review with AI-powered guidance. Some observations are educated guesses rather than certainties. Please take what feels helpful and adapt it to your needs. You’re in charge of choosing what works best; AI is here only to help you shine.
Model: o4-mini | Prompt Tokens: 1614 | Completion Tokens: 2851
| "axios": "1.12.0", | ||
| "axios": "1.12.2", | ||
| "minimatch": "10.0.3", | ||
| "mollitia": "0.2.0", | ||
| "octokit": "5.0.3", | ||
| "parse-diff": "0.11.1", | ||
| "zod": "4.1.8" | ||
| "zod": "4.1.9" |
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.
I see that you’ve bumped the exact patch versions for both axios and zod. Pinning to an exact version requires you to manually update every time a patch is released. To reduce maintenance and automatically pick up non-breaking patch releases, consider using a caret (^) range. For example:
"axios": "^1.12.2",
"zod": "^4.1.9"| "@eslint/js": "9.35.0", | ||
| "@types/node": "22.18.3", | ||
| "@vercel/ncc": "0.38.3", | ||
| "eslint": "9.35.0", | ||
| "@eslint/js": "9.36.0", | ||
| "@types/node": "22.18.6", | ||
| "@vercel/ncc": "0.38.4", | ||
| "eslint": "9.36.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.
These devDependencies are updated identically across multiple packages. If you’re managing a monorepo or have shared toolchains, you can hoist common devDependencies into a root-level package.json to avoid duplication and ensure consistency:
// root package.json
{
"workspaces": ["pr-review", "pr-summary"],
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^22.18.6",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.36.0",
// ...other shared plugins
}
}| "axios": "1.12.0", | ||
| "axios": "1.12.2", | ||
| "minimatch": "10.0.3", | ||
| "mollitia": "0.2.0", | ||
| "octokit": "5.0.3", | ||
| "parse-diff": "0.11.1", | ||
| "zod": "4.1.8" | ||
| "zod": "4.1.9" |
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.
I see that you’ve bumped the exact patch versions for both axios and zod. Pinning to an exact version requires you to manually update every time a patch is released. To reduce maintenance and automatically pick up non-breaking patch releases, consider using a caret (^) range. For example:
"axios": "^1.12.2",
"zod": "^4.1.9"| "@eslint/js": "9.35.0", | ||
| "@types/node": "22.18.3", | ||
| "@vercel/ncc": "0.38.3", | ||
| "eslint": "9.35.0", | ||
| "@eslint/js": "9.36.0", | ||
| "@types/node": "22.18.6", | ||
| "@vercel/ncc": "0.38.4", | ||
| "eslint": "9.36.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.
These devDependencies are updated identically across multiple packages. If you’re managing a monorepo or have shared toolchains, you can hoist common devDependencies into a root-level package.json to avoid duplication and ensure consistency:
// root package.json
{
"workspaces": ["pr-review", "pr-summary"],
"devDependencies": {
"@eslint/js": "^9.36.0",
"@types/node": "^22.18.6",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.36.0",
// ...other shared plugins
}
}Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.
This PR contains the following updates:
9.35.0->9.36.022.18.3->22.18.60.38.3->0.38.41.12.0->1.12.29.35.0->9.36.08.43.0->8.44.04.1.8->4.1.9Release Notes
eslint/eslint (@eslint/js)
v9.36.0Compare Source
vercel/ncc (@vercel/ncc)
v0.38.4Compare Source
axios/axios (axios)
v1.12.2Compare Source
Bug Fixes
Contributors to this release
v1.12.1Compare Source
Bug Fixes
Contributors to this release
eslint/eslint (eslint)
v9.36.0Compare Source
typescript-eslint/typescript-eslint (typescript-eslint)
v8.44.0Compare Source
This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.
You can read about our versioning strategy and releases on our website.
colinhacks/zod (zod)
v4.1.9Compare 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.