From a858ccebc50199932a5d743943fceaad703667ca Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Fri, 12 Jun 2026 11:01:06 -0400 Subject: [PATCH 1/2] fix(renovate): mirror user's working format - managerFilePatterns + anchors + semver Use managerFilePatterns with ^ and $ anchors (matching user's proven format), keep matchStrings simple with [0-9\\.]+ like working config. Use versioningTemplate: semver-coerced for par2cmdline (v0.6.14-mt1). --- renovate.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/renovate.json b/renovate.json index bae7653..7cf4374 100644 --- a/renovate.json +++ b/renovate.json @@ -3,30 +3,30 @@ "customManagers": [ { "customType": "regex", - "description": "Detect SABnzbd release version pin", - "fileMatch": ["/^Dockerfile$/"], - "matchStrings": ["SABNZBD_VERSION=(?[\\w\\.-]+)"], + "description": "Track SABnzbd version in Dockerfile", + "managerFilePatterns": ["/^Dockerfile$/"], + "matchStrings": ["SABNZBD_VERSION=(?[0-9\\.]+)"], "depNameTemplate": "sabnzbd/sabnzbd", "datasourceTemplate": "github-releases", "versioningTemplate": "semver" }, { "customType": "regex", - "description": "Detect Tini release version pin", - "fileMatch": ["/^Dockerfile$/"], - "matchStrings": ["\"TINI_VERSION\"\\s+\"v?(?[\\w\\.-]+)\""], + "description": "Track Tini version in Dockerfile", + "managerFilePatterns": ["/^Dockerfile$/"], + "matchStrings": ["TINI_VERSION\\s+\\\"v?(?[0-9\\.]+)\\\""], "depNameTemplate": "krallin/tini", "datasourceTemplate": "github-releases", "versioningTemplate": "semver" }, { "customType": "regex", - "description": "Detect par2cmdline release version pin", - "fileMatch": ["/^Dockerfile$/"], + "description": "Track par2cmdline version in Dockerfile", + "managerFilePatterns": ["/^Dockerfile$/"], "matchStrings": ["PAR2CMDLINE_VERSION=v?(?[\\w\\.-]+)"], "depNameTemplate": "jkansanen/par2cmdline-mt", "datasourceTemplate": "github-tags", - "versioningTemplate": "semver" + "versioningTemplate": "semver-coerced" } ] } \ No newline at end of file From a105dc3e441a6b569de4b7007548b4ce32b191fd Mon Sep 17 00:00:00 2001 From: cloudix_mcp_server Date: Fri, 12 Jun 2026 11:01:36 -0400 Subject: [PATCH 2/2] fix(renovate): simplify Tini regex escaping --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 7cf4374..2a102a0 100644 --- a/renovate.json +++ b/renovate.json @@ -14,7 +14,7 @@ "customType": "regex", "description": "Track Tini version in Dockerfile", "managerFilePatterns": ["/^Dockerfile$/"], - "matchStrings": ["TINI_VERSION\\s+\\\"v?(?[0-9\\.]+)\\\""], + "matchStrings": ["\"TINI_VERSION\"\\s+\"v?(?[0-9\\.]+)\""], "depNameTemplate": "krallin/tini", "datasourceTemplate": "github-releases", "versioningTemplate": "semver"