From 4faea3a518f8280db187bcf52984b74d0c23dce7 Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 28 Aug 2026 20:52:18 +0000 Subject: [PATCH] chore: extend cascade flow to 8.4 => 8.5 => master The 8.5 maintenance branch takes over PHP 8.5 support while master moves on to PHP 8.6. Fixes affecting 8.4 now cascade through 8.5 before reaching master. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01WvwX3zFemZVZENmF3fSrcE --- .github/branch-flow.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/branch-flow.json b/.github/branch-flow.json index ea800ae4..71ced3c9 100644 --- a/.github/branch-flow.json +++ b/.github/branch-flow.json @@ -1,5 +1,6 @@ { "$comment": "Cascade-merge flow: fixes land on the minimum affected version branch and are merged upward. Key = source branch, value = successor branch (null = frozen, no cascade). See AGENTS.md.", "8.0": null, - "8.4": "master" + "8.4": "8.5", + "8.5": "master" }