From 4c8211e3aa71192b6372a43b042d6d75583e16f7 Mon Sep 17 00:00:00 2001 From: Mattias Kindborg Date: Tue, 18 Aug 2026 18:03:50 +0200 Subject: [PATCH 1/2] chore: add Renovate configuration --- .github/renovate.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/renovate.json diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..9bcc22e --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": ["config:best-practices", ":prHourlyLimitNone"], + "labels": ["dependencies"], + "packageRules": [ + { + "description": "Auto-merge non-breaking SemVer updates (minor and patch) for stable (>= 1.0.0) dependencies", + "matchUpdateTypes": ["minor", "patch"], + "matchCurrentVersion": "!/^0/", + "automerge": true + }, + { + "description": "Enforce a 14-day minimumReleaseAge for all update types, overriding any inherited preset configuration", + "matchUpdateTypes": ["major", "minor", "patch", "pin", "pinDigest", "digest"], + "minimumReleaseAge": "14 days" + } + ], + "rebaseWhen": "behind-base-branch", + "vulnerabilityAlerts": { + "labels": ["security"] + }, + "minimumReleaseAge": "14 days", + "prCreation": "not-pending", + "dependencyDashboard": true +} From 7f422ab8a86e3ef6445e4e7c5807e14f593d02b1 Mon Sep 17 00:00:00 2001 From: Mattias Kindborg Date: Tue, 18 Aug 2026 18:39:33 +0200 Subject: [PATCH 2/2] style: fix lint issue --- .github/renovate.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/renovate.json b/.github/renovate.json index 9bcc22e..2df794d 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -11,7 +11,14 @@ }, { "description": "Enforce a 14-day minimumReleaseAge for all update types, overriding any inherited preset configuration", - "matchUpdateTypes": ["major", "minor", "patch", "pin", "pinDigest", "digest"], + "matchUpdateTypes": [ + "major", + "minor", + "patch", + "pin", + "pinDigest", + "digest" + ], "minimumReleaseAge": "14 days" } ],