From d76c3e7254ccf0b7632d8d864b3c0be952c1f63e Mon Sep 17 00:00:00 2001 From: Takashi Iwamoto Date: Wed, 15 Apr 2026 16:50:50 +0900 Subject: [PATCH] Split mise min_version into hard and soft Use the object form of min_version so Renovate can bump the soft recommendation frequently while the hard floor stays put until a real incompatibility forces it. Narrow the custom regex manager to match only the soft value. Co-Authored-By: Claude Opus 4.6 (1M context) Signed-off-by: Takashi Iwamoto --- .github/renovate.json | 2 +- .mise.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 03be995..74f0287 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -19,7 +19,7 @@ { "customType": "regex", "managerFilePatterns": ["/^\\.mise\\.toml$/"], - "matchStrings": ["min_version\\s*=\\s*\"(?[^\"]+)\""], + "matchStrings": ["soft\\s*=\\s*\"(?[^\"]+)\""], "depNameTemplate": "jdx/mise", "datasourceTemplate": "github-releases", "extractVersionTemplate": "^v?(?.+)$" diff --git a/.mise.toml b/.mise.toml index ee800a4..4967396 100644 --- a/.mise.toml +++ b/.mise.toml @@ -1,4 +1,4 @@ -min_version = "2026.4.9" +min_version = { hard = "2026.4.8", soft = "2026.4.9" } [tools] actionlint = "1.7.12"