From 1d8b2ecd74748e604c9b6e0c7330c38a921ed323 Mon Sep 17 00:00:00 2001 From: Aakash Hotchandani Date: Wed, 22 Jul 2026 19:07:14 +0530 Subject: [PATCH] chore(v8): calculated snapshot versions for canary releases MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add snapshot.useCalculatedVersion:true to .changeset/config.json (mirrors main). release.yml's canary step runs 'changeset version --snapshot canary'; without this it emits 0.0.0-canary- instead of -canary- (e.g. 8.49.0-canary-...). Version-config only — does NOT affect the normal 'changeset version' (official release) path. Co-Authored-By: Claude Opus 4.8 (1M context) --- .changeset/config.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.changeset/config.json b/.changeset/config.json index f25872c..cf179c0 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -7,5 +7,8 @@ "access": "public", "baseBranch": "v8", "updateInternalDependencies": "patch", - "ignore": [] + "ignore": [], + "snapshot": { + "useCalculatedVersion": true + } }