From b421a7deabd40757823b2a30431bc45bf4aab349 Mon Sep 17 00:00:00 2001 From: scottschreckengaust <345885+scottschreckengaust@users.noreply.github.com> Date: Mon, 14 Sep 2026 18:49:18 +0000 Subject: [PATCH 1/3] fix(tooling): bump mise min_version to 2026.7.9 for the monorepo_root key PR #874 renamed `experimental_monorepo_root` -> `monorepo_root`, but that key did not exist until mise 2026.7.9 (jdx/mise#11052, 2026-07-16). Any contributor on `2026.2.6 <= mise < 2026.7.9` therefore got a per-prompt `unknown field: monorepo_root` warning. Raise the floor to match the config the repo actually requires, turning a silent warning into a clear upgrade gate. Closes #887 Co-Authored-By: Claude Opus 4.8 --- mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mise.toml b/mise.toml index e89148080..32fdd0fa4 100644 --- a/mise.toml +++ b/mise.toml @@ -7,7 +7,7 @@ # CI if the engines diverge on any (policy, input) pair. # - agent: cedarpy==4.8.4 (agent/pyproject.toml) # - cdk: @cedar-policy/cedar-wasm@4.8.2 (cdk/package.json) -min_version = "2026.2.6" +min_version = "2026.7.9" monorepo_root = true From 07be1d7377e3c0fa9b6b32d4c3a5eb23bb4401b9 Mon Sep 17 00:00:00 2001 From: scottschreckengaust <345885+scottschreckengaust@users.noreply.github.com> Date: Mon, 14 Sep 2026 19:00:40 +0000 Subject: [PATCH 2/3] fix(tooling): raise child mise.toml floors to 2026.7.9 for consistency The four workspace configs (cdk/agent/cli/docs) declare the same `min_version` floor as the root and are meant to move together. Keep all five uniform at 2026.7.9 so the monorepo presents one coherent floor. Refs #887 --- agent/mise.toml | 2 +- cdk/mise.toml | 2 +- cli/mise.toml | 2 +- docs/mise.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/agent/mise.toml b/agent/mise.toml index ce24de3c6..5c8a59940 100644 --- a/agent/mise.toml +++ b/agent/mise.toml @@ -1,4 +1,4 @@ -min_version = "2026.2.6" +min_version = "2026.7.9" [tools] python = "3.13" diff --git a/cdk/mise.toml b/cdk/mise.toml index 22ceddee4..0429a3535 100644 --- a/cdk/mise.toml +++ b/cdk/mise.toml @@ -1,4 +1,4 @@ -min_version = "2026.2.6" +min_version = "2026.7.9" [tools] node = "22" diff --git a/cli/mise.toml b/cli/mise.toml index da6a97749..f9beb5a02 100644 --- a/cli/mise.toml +++ b/cli/mise.toml @@ -1,4 +1,4 @@ -min_version = "2026.2.6" +min_version = "2026.7.9" [tools] node = "22" diff --git a/docs/mise.toml b/docs/mise.toml index ab7152037..0c3111f51 100644 --- a/docs/mise.toml +++ b/docs/mise.toml @@ -1,4 +1,4 @@ -min_version = "2026.2.6" +min_version = "2026.7.9" [tools] node = "22" From 69c84238496ce4eaac05d80513d5ee0f38cdf021 Mon Sep 17 00:00:00 2001 From: scottschreckengaust <345885+scottschreckengaust@users.noreply.github.com> Date: Mon, 14 Sep 2026 19:21:47 +0000 Subject: [PATCH 3/3] =?UTF-8?q?fix(tooling):=20correct=20floor=20to=202026?= =?UTF-8?q?.7.11=20=E2=80=94=202026.7.8=E2=80=932026.7.10=20were=20never?= =?UTF-8?q?=20published?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `monorepo_root` key first landed in the 2026.7.9 tag (jdx/mise#11052), but 2026.7.8, 2026.7.9, and 2026.7.10 were tagged and never published to the release/install channels (release-pipeline issue); their changes shipped in 2026.7.11 (published 2026-07-20). Pinning the floor to a version nobody can `mise use`/install would just trade a warning for an unsatisfiable requirement, so raise it to 2026.7.11 — the first *installable* release that recognizes `monorepo_root`. Co-Authored-By: Claude Opus 4.8 --- agent/mise.toml | 2 +- cdk/mise.toml | 2 +- cli/mise.toml | 2 +- docs/mise.toml | 2 +- mise.toml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/agent/mise.toml b/agent/mise.toml index 5c8a59940..d862bfb1c 100644 --- a/agent/mise.toml +++ b/agent/mise.toml @@ -1,4 +1,4 @@ -min_version = "2026.7.9" +min_version = "2026.7.11" [tools] python = "3.13" diff --git a/cdk/mise.toml b/cdk/mise.toml index 0429a3535..2f60ba19a 100644 --- a/cdk/mise.toml +++ b/cdk/mise.toml @@ -1,4 +1,4 @@ -min_version = "2026.7.9" +min_version = "2026.7.11" [tools] node = "22" diff --git a/cli/mise.toml b/cli/mise.toml index f9beb5a02..70af1b67f 100644 --- a/cli/mise.toml +++ b/cli/mise.toml @@ -1,4 +1,4 @@ -min_version = "2026.7.9" +min_version = "2026.7.11" [tools] node = "22" diff --git a/docs/mise.toml b/docs/mise.toml index 0c3111f51..191fab83e 100644 --- a/docs/mise.toml +++ b/docs/mise.toml @@ -1,4 +1,4 @@ -min_version = "2026.7.9" +min_version = "2026.7.11" [tools] node = "22" diff --git a/mise.toml b/mise.toml index 32fdd0fa4..349397dd5 100644 --- a/mise.toml +++ b/mise.toml @@ -7,7 +7,7 @@ # CI if the engines diverge on any (policy, input) pair. # - agent: cedarpy==4.8.4 (agent/pyproject.toml) # - cdk: @cedar-policy/cedar-wasm@4.8.2 (cdk/package.json) -min_version = "2026.7.9" +min_version = "2026.7.11" monorepo_root = true