From c76bc0a9ec03fb94e5cbf8d25aea9dbadfbe4f1d Mon Sep 17 00:00:00 2001 From: bussyjd Date: Tue, 24 Feb 2026 12:49:22 +0400 Subject: [PATCH] chore(openclaw): bump to v2026.2.23 and fix Renovate versioning Bump OpenClaw from v2026.2.15 to v2026.2.23. Fix Renovate custom manager to use regex versioning instead of semver, correctly handling calver tags with same-day patch suffixes (e.g. v2026.2.6-3). --- internal/openclaw/OPENCLAW_VERSION | 2 +- renovate.json | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/openclaw/OPENCLAW_VERSION b/internal/openclaw/OPENCLAW_VERSION index c44f799f..758fa01b 100644 --- a/internal/openclaw/OPENCLAW_VERSION +++ b/internal/openclaw/OPENCLAW_VERSION @@ -1,3 +1,3 @@ # renovate: datasource=github-releases depName=openclaw/openclaw # Pins the upstream OpenClaw version to build and publish. -v2026.2.15 +v2026.2.23 diff --git a/renovate.json b/renovate.json index 00685a21..49282a0e 100644 --- a/renovate.json +++ b/renovate.json @@ -38,12 +38,12 @@ "customType": "regex", "description": "Update OpenClaw version from upstream GitHub releases", "matchStrings": [ - "#\\s*renovate:\\s*datasource=(?.*?)\\s+depName=(?.*?)\\n(?v[0-9]+\\.[0-9]+\\.[0-9]+)" + "#\\s*renovate:\\s*datasource=(?.*?)\\s+depName=(?.*?)\\n(?v[0-9]+\\.[0-9]+\\.[0-9]+(?:-[0-9]+)?)" ], "fileMatch": [ "^internal/openclaw/OPENCLAW_VERSION$" ], - "versioningTemplate": "semver" + "versioningTemplate": "regex:^v?(?\\d+)\\.(?\\d+)\\.(?\\d+)(-(?\\d+))?$" }, { "customType": "regex",