From 9eb9eb1f7e3c4e3c062f15e4af1cc8109f142e14 Mon Sep 17 00:00:00 2001 From: Proactive Runtime Bot Date: Mon, 25 May 2026 08:05:43 +0200 Subject: [PATCH] fix(on): bump relayfile-mount binary v0.1.6 -> v0.7.39 The cloud Daytona persona path downloads the relayfile-mount Go binary at RELAYFILE_VERSION (version-checked cache re-downloads on a bump, so no snapshot swap needed). v0.1.6 predates the workspace-export 413->paginate fallback (relayfile v0.7.33/#195) and scoped mount-path support (v0.7.39/#206), so large repos (e.g. AgentWorkforce/cloud) bulk-export >128MB -> HTTP 413 -> starve the sandbox bootstrap (bootstrap_timeout). v0.7.39 pulls both fixes. Unblocks AgentWorkforce/cloud#1028. (Pairs with relayfile#207 restoring checksums.txt on releases + the backfilled v0.7.39 checksums.txt asset, which verifyChecksum() requires.) Co-Authored-By: Claude Opus 4.7 (1M context) --- src/cli/commands/on/relayfile-binary.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/commands/on/relayfile-binary.ts b/src/cli/commands/on/relayfile-binary.ts index 52cd01c22..34a665d8a 100644 --- a/src/cli/commands/on/relayfile-binary.ts +++ b/src/cli/commands/on/relayfile-binary.ts @@ -16,7 +16,7 @@ import https from 'node:https'; import os from 'node:os'; import path from 'node:path'; -const RELAYFILE_VERSION = '0.1.6'; +const RELAYFILE_VERSION = '0.7.39'; const RELEASE_BASE_URL = 'https://github.com/AgentWorkforce/relayfile/releases/download'; const CHECKSUMS_FILE = 'checksums.txt'; const CACHE_DIR = path.join(os.homedir(), '.agent-relay', 'bin');