From aa5d2bbee3ca075aa1d30e750e802b0ca3fe2cb8 Mon Sep 17 00:00:00 2001 From: Velizar Kalapov <87693906+vkalapov@users.noreply.github.com> Date: Tue, 24 Feb 2026 20:50:29 +0200 Subject: [PATCH 1/2] Add bg-dependency-aware-stop-order parameter (#5333) --- src/schemas/json/mtad.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/schemas/json/mtad.json b/src/schemas/json/mtad.json index 8d5d6d24d31..eddf2df464d 100644 --- a/src/schemas/json/mtad.json +++ b/src/schemas/json/mtad.json @@ -1024,6 +1024,10 @@ "keep-existing-routes": { "description": "[CF/XSA] Indicates if the existing routes of all applications within that MTA should be kept.", "type": "boolean" + }, + "bg-dependency-aware-stop-order": { + "description": "[CF] Enables dependency-aware stop ordering during the final phase of blue-green deployments.", + "type": "boolean" } } }, From a2225951ebf8dc0b106f36d0c351e6fc5568e7ef Mon Sep 17 00:00:00 2001 From: "Ruben J. Jongejan" Date: Tue, 24 Feb 2026 19:52:21 +0100 Subject: [PATCH 2/2] feat(rumdl): update schema to v0.1.28 (#5411) Co-authored-by: github-actions[bot] --- src/schemas/json/rumdl.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/schemas/json/rumdl.json b/src/schemas/json/rumdl.json index 782cc89edb0..cbdd8e4862a 100644 --- a/src/schemas/json/rumdl.json +++ b/src/schemas/json/rumdl.json @@ -311,6 +311,11 @@ "description": "Per-language tool configuration.", "type": "object", "properties": { + "enabled": { + "description": "Whether code block tools are enabled for this language (default: true).\nSet to false to acknowledge a language without configuring tools.\nThis satisfies strict mode (on-missing-language-definition) checks.", + "type": "boolean", + "default": true + }, "lint": { "description": "Tools to run in lint mode (rumdl check)", "type": "array",