chore: modernize the renovate config - #9
Merged
Merged
Conversation
emmanuel
force-pushed
the
chore/renovate
branch
from
September 6, 2026 18:30
b00d95c to
4af2b6f
Compare
emmanuel
force-pushed
the
chore/renovate
branch
from
September 6, 2026 19:05
4af2b6f to
aa18190
Compare
The old config automerged everything, majors included, straight to master with no pull request: matchPackagePatterns ["*"] matched every package and automergeType "branch" skipped the PR entirely. Nothing reviewed chokidar 4 to 5 or glob 11 to 13; they would have landed unseen. The only reason they did not is that CI was red, so automerge never fired. Fixing CI without fixing this rearms it. Automerge is now limited to dev-dependency minor and patch updates, after a three day soak, and goes through a pull request so the checks actually gate it. Runtime dependencies and every major open a PR for review. typescript was disabled outright, which is why it sat on 5.0.4 for three years: a rule, not neglect. It now takes 6.x updates but is held below 7, which is a real blocker rather than a preference, since typescript-eslint refuses TS 7 and the CLI parses SQL-in-TS through the compiler API that TS 7's native rewrite does not expose. antlr4ts stays disabled because the generated parsers are built against that exact prerelease. Three deprecated syntaxes replaced: config:base is now config:recommended, and matchPackagePatterns and matchPackagePrefixes give way to matchPackageNames with globs. Adds the dependency dashboard, lock file maintenance, and semantic commit messages, that last one so renovate's own commits and PR titles satisfy the commitlint rules this branch introduces.
emmanuel
force-pushed
the
chore/renovate
branch
from
September 6, 2026 19:10
aa18190 to
f0da0c7
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Third of three stacked PRs. Based on #8, which is based on #7.
The old config automerged everything, majors included, with no PR
{ "matchPackagePatterns": ["*"], "automerge": true, "automergeType": "branch" }["*"]matched every package andautomergeType: "branch"skipped the pullrequest entirely. Nothing reviewed chokidar 4→5 or glob 11→13; they would have
landed on master unseen. The only reason they did not is that CI was red, so
automerge never fired. Fixing CI without fixing this rearms it.
Automerge is now limited to dev-dependency minor and patch updates, after a
three-day soak, and goes through a PR so the checks actually gate it. Runtime
dependencies and every major open a PR for review.
typescript was disabled outright
That is why it sat on 5.0.4 for three years — a rule, not neglect. It now takes
6.x updates but is held below 7, which is a real blocker rather than a
preference: typescript-eslint refuses TS 7, and the CLI parses SQL-in-TS through
the compiler API that TS 7's native rewrite does not expose.
antlr4tsstays disabled because the committed parsers are generated againstthat exact prerelease.
Deprecations and additions
config:base→config:recommended;matchPackagePatternsandmatchPackagePrefixes→matchPackageNameswith globs. Adds the dependencydashboard, lock file maintenance, and
:semanticCommits— that last one sorenovate's own commits and PR titles satisfy the commitlint rules #7 introduces.