From 3c94cde4f0cdc675033844c9497d8418ff5ab652 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 21 Mar 2026 01:08:33 +0000 Subject: [PATCH 1/2] chore(config): migrate config renovate.json --- renovate.json | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/renovate.json b/renovate.json index 01650105..aadf66c5 100644 --- a/renovate.json +++ b/renovate.json @@ -1,12 +1,18 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["config:recommended"], + "extends": [ + "config:recommended" + ], "customManagers": [ { "customType": "regex", "description": "Extract bun version from .prototools", - "fileMatch": ["^\\.prototools$"], - "matchStrings": ["bun\\s*=\\s*\"(?[^\"]+)\""], + "managerFilePatterns": [ + "/^\\.prototools$/" + ], + "matchStrings": [ + "bun\\s*=\\s*\"(?[^\"]+)\"" + ], "depNameTemplate": "oven-sh/bun", "datasourceTemplate": "github-releases", "extractVersionTemplate": "^bun-v(?.+)$" @@ -16,7 +22,10 @@ { "description": "Group Bun runtime (.prototools) and @types/bun together", "groupName": "bun", - "matchPackageNames": ["oven-sh/bun", "@types/bun"] + "matchPackageNames": [ + "oven-sh/bun", + "@types/bun" + ] } ] } From a0d5e6b8ef277ffe24f87d4a87371505b39928f1 Mon Sep 17 00:00:00 2001 From: Rhuan Barreto Date: Sat, 21 Mar 2026 02:13:38 +0100 Subject: [PATCH 2/2] style: fix formatting on migrated Renovate config Renovate's config migration expanded short arrays to multi-line, which doesn't match oxfmt's formatting. Run formatter to fix. --- renovate.json | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/renovate.json b/renovate.json index aadf66c5..7efba19b 100644 --- a/renovate.json +++ b/renovate.json @@ -1,18 +1,12 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ], + "extends": ["config:recommended"], "customManagers": [ { "customType": "regex", "description": "Extract bun version from .prototools", - "managerFilePatterns": [ - "/^\\.prototools$/" - ], - "matchStrings": [ - "bun\\s*=\\s*\"(?[^\"]+)\"" - ], + "managerFilePatterns": ["/^\\.prototools$/"], + "matchStrings": ["bun\\s*=\\s*\"(?[^\"]+)\""], "depNameTemplate": "oven-sh/bun", "datasourceTemplate": "github-releases", "extractVersionTemplate": "^bun-v(?.+)$" @@ -22,10 +16,7 @@ { "description": "Group Bun runtime (.prototools) and @types/bun together", "groupName": "bun", - "matchPackageNames": [ - "oven-sh/bun", - "@types/bun" - ] + "matchPackageNames": ["oven-sh/bun", "@types/bun"] } ] }