From 9d9244d7dcdad6d0fa505a9ac45f62b960c4fec5 Mon Sep 17 00:00:00 2001 From: Nic-dorman Date: Wed, 12 Aug 2026 10:26:04 +0100 Subject: [PATCH 1/2] chore: bump pinned antd installer v0.11.1 -> v0.11.2 Point the "Download daemon" onboarding flow at the latest stable antd (v0.11.2, released 2026-08-10). Verified the release carries the three installer assets the extension links to (antd-windows-x64-setup.msi / antd-macos.pkg / antd-linux-x64.deb). MIN_ANTD_VERSION stays 0.11.0. typecheck clean; 22/22 tests pass; build verified to inline v0.11.2. Co-Authored-By: Claude Opus 4.8 (1M context) --- src/shared/constants.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/shared/constants.ts b/src/shared/constants.ts index 5be4be8..5383b34 100644 --- a/src/shared/constants.ts +++ b/src/shared/constants.ts @@ -66,7 +66,11 @@ export const ANTD_RELEASE_REPO = 'WithAutonomi/ant-sdk'; * an rc here would make the "Download daemon" flow install a daemon the * extension immediately flags as unsupported. */ -export const ANTD_RELEASE_TAG = 'v0.11.1'; +// NOTE: v0.11.1 (referenced above) was the *first* stable to carry the +// installer assets; keep this pointed at the latest stable that still has them. +// v0.11.2 verified to carry antd-windows-x64-setup.msi / antd-macos.pkg / +// antd-linux-x64.deb. +export const ANTD_RELEASE_TAG = 'v0.11.2'; /** Releases landing page — fallback / "other builds" link. */ export const ANTD_RELEASES_URL = `https://github.com/${ANTD_RELEASE_REPO}/releases`; From fb4737f37e66b00273c8c279a9d62aa725ae54fc Mon Sep 17 00:00:00 2001 From: Nic-dorman Date: Tue, 25 Aug 2026 08:55:31 +0100 Subject: [PATCH 2/2] chore: retarget antd installer pin to v0.12.0 v0.12.0 (2026-08-13) superseded v0.11.2 as latest stable the day after the original bump; installer assets verified present on the release. The extension only uses download endpoints (/health, /v1/data/public, /v1/chunks, /v1/files/download/public), none touched by 0.12.0's external-merkle wire change, so MIN_ANTD_VERSION stays 0.11.0. Co-Authored-By: Claude Fable 5 --- src/shared/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/shared/constants.ts b/src/shared/constants.ts index 5383b34..0d6eef0 100644 --- a/src/shared/constants.ts +++ b/src/shared/constants.ts @@ -68,9 +68,9 @@ export const ANTD_RELEASE_REPO = 'WithAutonomi/ant-sdk'; */ // NOTE: v0.11.1 (referenced above) was the *first* stable to carry the // installer assets; keep this pointed at the latest stable that still has them. -// v0.11.2 verified to carry antd-windows-x64-setup.msi / antd-macos.pkg / +// v0.12.0 verified to carry antd-windows-x64-setup.msi / antd-macos.pkg / // antd-linux-x64.deb. -export const ANTD_RELEASE_TAG = 'v0.11.2'; +export const ANTD_RELEASE_TAG = 'v0.12.0'; /** Releases landing page — fallback / "other builds" link. */ export const ANTD_RELEASES_URL = `https://github.com/${ANTD_RELEASE_REPO}/releases`;