diff --git a/examples/daytona/src/daytona.ts b/examples/daytona/src/daytona.ts index a045baf..af2ef9a 100644 --- a/examples/daytona/src/daytona.ts +++ b/examples/daytona/src/daytona.ts @@ -57,8 +57,8 @@ if (!hasSnapshot) { image: Image.base("ubuntu:22.04").runCommands( // Install dependencies "apt-get update && apt-get install -y curl ca-certificates", - // Install sandbox-agent (0.1.0-rc.1 has install-agent command) - "curl -fsSL https://releases.rivet.dev/sandbox-agent/0.1.0-rc.1/install.sh | sh", + // Install sandbox-agent + "curl -fsSL https://releases.rivet.dev/sandbox-agent/latest/install.sh | sh", // Install agents "sandbox-agent install-agent claude", "sandbox-agent install-agent codex", diff --git a/examples/docker/src/docker.ts b/examples/docker/src/docker.ts index 36a850e..02535c6 100644 --- a/examples/docker/src/docker.ts +++ b/examples/docker/src/docker.ts @@ -30,7 +30,7 @@ const container = await docker.createContainer({ Cmd: ["sh", "-c", [ // Install dependencies (Alpine uses apk, not apt-get) "apk add --no-cache curl ca-certificates libstdc++ libgcc bash", - "curl -fsSL https://releases.rivet.dev/sandbox-agent/0.1.0-rc.1/install.sh | sh", + "curl -fsSL https://releases.rivet.dev/sandbox-agent/latest/install.sh | sh", "sandbox-agent install-agent claude", "sandbox-agent install-agent codex", `sandbox-agent server --no-token --host 0.0.0.0 --port ${PORT}`, diff --git a/examples/e2b/src/e2b.ts b/examples/e2b/src/e2b.ts index eaed086..dc64ea8 100644 --- a/examples/e2b/src/e2b.ts +++ b/examples/e2b/src/e2b.ts @@ -17,7 +17,7 @@ const run = async (cmd: string) => { }; console.log("Installing sandbox-agent..."); -await run("curl -fsSL https://releases.rivet.dev/sandbox-agent/0.1.0-rc.1/install.sh | sh"); +await run("curl -fsSL https://releases.rivet.dev/sandbox-agent/latest/install.sh | sh"); console.log("Installing agents..."); await run("sandbox-agent install-agent claude"); diff --git a/scripts/release/main.ts b/scripts/release/main.ts index a28e45b..bf30ce0 100755 --- a/scripts/release/main.ts +++ b/scripts/release/main.ts @@ -78,7 +78,7 @@ async function getLatestGitVersion(): Promise { } async function shouldTagAsLatest(newVersion: string): Promise { - // Check if version has prerelease identifier (e.g., 1.0.0-rc.1) + // Check if version has prerelease identifier const parsedVersion = semver.parse(newVersion); if (!parsedVersion) { throw new Error(`Invalid semantic version: ${newVersion}`); diff --git a/scripts/sandbox-testing/test-sandbox.ts b/scripts/sandbox-testing/test-sandbox.ts index 27ab6bf..b269582 100644 --- a/scripts/sandbox-testing/test-sandbox.ts +++ b/scripts/sandbox-testing/test-sandbox.ts @@ -286,9 +286,8 @@ async function installSandboxAgent(sandbox: Sandbox, binaryPath: string): Promis if (binaryPath === "RELEASE") { log.info("Installing from releases.rivet.dev..."); - // Use 0.1.0-rc.1 which has install-agent command const result = await sandbox.exec( - "curl -fsSL https://releases.rivet.dev/sandbox-agent/0.1.0-rc.1/install.sh | sh", + "curl -fsSL https://releases.rivet.dev/sandbox-agent/latest/install.sh | sh", ); log.debug(`Install output: ${result.stdout}`); if (result.exitCode !== 0) {