From c5183a57c278f95e831dde88d56d204ae48ada59 Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Fri, 12 Jun 2026 09:37:21 -0400 Subject: [PATCH] fix(renovate): switch to regexManagers format (pre-v37 compat) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Renovate on this Gitea instance runs a pre-v37 version that does not support the new customManagers format. Switch to the legacy regexManagers format with fileMatch for compatibility. - customManagers → regexManagers - managerFilePatterns → fileMatch - Remove customType (not supported in legacy format) --- renovate.json | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/renovate.json b/renovate.json index 3430d82..8640cce 100644 --- a/renovate.json +++ b/renovate.json @@ -1,26 +1,23 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "customManagers": [ + "regexManagers": [ { - "customType": "regex", "description": "Detect SABnzbd release version pin", - "managerFilePatterns": ["Dockerfile"], + "fileMatch": ["Dockerfile"], "matchStrings": ["SABNZBD_VERSION=(?[0-9.]+)"], "depNameTemplate": "sabnzbd/sabnzbd", "datasourceTemplate": "github-releases" }, { - "customType": "regex", "description": "Detect Tini release version pin", - "managerFilePatterns": ["Dockerfile"], + "fileMatch": ["Dockerfile"], "matchStrings": ["\"TINI_VERSION\"\\s+\"v?(?[0-9.]+)\""], "depNameTemplate": "krallin/tini", "datasourceTemplate": "github-releases" }, { - "customType": "regex", "description": "Detect par2cmdline release version pin", - "managerFilePatterns": ["Dockerfile"], + "fileMatch": ["Dockerfile"], "matchStrings": ["PAR2CMDLINE_VERSION=v?(?[0-9a-z.]+-mt\\d+)"], "depNameTemplate": "jkansanen/par2cmdline-mt", "datasourceTemplate": "github-tags"