Skip to content

Commit f25a92a

Browse files
committed
chore(release): update version to 0.5.0-rc.1
1 parent 3b8c745 commit f25a92a

File tree

29 files changed

+38
-38
lines changed

29 files changed

+38
-38
lines changed

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["server/packages/*", "gigacode"]
44
exclude = ["factory/packages/desktop/src-tauri", "foundry/packages/desktop/src-tauri"]
55

66
[workspace.package]
7-
version = "0.4.1-rc.1"
7+
version = "0.5.0-rc.1"
88
edition = "2021"
99
authors = [ "Rivet Gaming, LLC <developer@rivet.gg>" ]
1010
license = "Apache-2.0"
@@ -13,13 +13,13 @@ description = "Universal API for automatic coding agents in sandboxes. Supports
1313

1414
[workspace.dependencies]
1515
# Internal crates
16-
sandbox-agent = { version = "0.4.1-rc.1", path = "server/packages/sandbox-agent" }
17-
sandbox-agent-error = { version = "0.4.1-rc.1", path = "server/packages/error" }
18-
sandbox-agent-agent-management = { version = "0.4.1-rc.1", path = "server/packages/agent-management" }
19-
sandbox-agent-agent-credentials = { version = "0.4.1-rc.1", path = "server/packages/agent-credentials" }
20-
sandbox-agent-opencode-adapter = { version = "0.4.1-rc.1", path = "server/packages/opencode-adapter" }
21-
sandbox-agent-opencode-server-manager = { version = "0.4.1-rc.1", path = "server/packages/opencode-server-manager" }
22-
acp-http-adapter = { version = "0.4.1-rc.1", path = "server/packages/acp-http-adapter" }
16+
sandbox-agent = { version = "0.5.0-rc.1", path = "server/packages/sandbox-agent" }
17+
sandbox-agent-error = { version = "0.5.0-rc.1", path = "server/packages/error" }
18+
sandbox-agent-agent-management = { version = "0.5.0-rc.1", path = "server/packages/agent-management" }
19+
sandbox-agent-agent-credentials = { version = "0.5.0-rc.1", path = "server/packages/agent-credentials" }
20+
sandbox-agent-opencode-adapter = { version = "0.5.0-rc.1", path = "server/packages/opencode-adapter" }
21+
sandbox-agent-opencode-server-manager = { version = "0.5.0-rc.1", path = "server/packages/opencode-server-manager" }
22+
acp-http-adapter = { version = "0.5.0-rc.1", path = "server/packages/acp-http-adapter" }
2323

2424
# Serialization
2525
serde = { version = "1.0", features = ["derive"] }

docs/architecture.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Agents are installed lazily on first use. To avoid the cold-start delay, pre-ins
5656
sandbox-agent install-agent --all
5757
```
5858

59-
The `rivetdev/sandbox-agent:0.4.1-rc.1-full` Docker image ships with all agents pre-installed.
59+
The `rivetdev/sandbox-agent:0.5.0-rc.1-full` Docker image ships with all agents pre-installed.
6060

6161
## Production-ready agent orchestration
6262

docs/deploy/daytona.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ try {
4444
}
4545
```
4646

47-
The `daytona` provider uses the `rivetdev/sandbox-agent:0.4.1-rc.1-full` image by default and starts the server automatically.
47+
The `daytona` provider uses the `rivetdev/sandbox-agent:0.5.0-rc.1-full` image by default and starts the server automatically.
4848

4949
## Using snapshots for faster startup
5050

docs/deploy/docker.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Run the published full image with all supported agents pre-installed:
1515
docker run --rm -p 3000:3000 \
1616
-e ANTHROPIC_API_KEY="$ANTHROPIC_API_KEY" \
1717
-e OPENAI_API_KEY="$OPENAI_API_KEY" \
18-
rivetdev/sandbox-agent:0.3.1-full \
18+
rivetdev/sandbox-agent:0.5.0-rc.1-full \
1919
server --no-token --host 0.0.0.0 --port 3000
2020
```
2121

22-
The `0.3.1-full` tag pins the exact version. The moving `full` tag is also published for contributors who want the latest full image.
22+
The `0.5.0-rc.1-full` tag pins the exact version. The moving `full` tag is also published for contributors who want the latest full image.
2323

2424
If you also want the desktop API inside the container, install desktop dependencies before starting the server:
2525

@@ -52,7 +52,7 @@ const docker = new Docker();
5252
const PORT = 3000;
5353

5454
const container = await docker.createContainer({
55-
Image: "rivetdev/sandbox-agent:0.3.1-full",
55+
Image: "rivetdev/sandbox-agent:0.5.0-rc.1-full",
5656
Cmd: ["server", "--no-token", "--host", "0.0.0.0", "--port", `${PORT}`],
5757
Env: [
5858
`ANTHROPIC_API_KEY=${process.env.ANTHROPIC_API_KEY}`,

docs/openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"license": {
1111
"name": "Apache-2.0"
1212
},
13-
"version": "0.4.1-rc.1"
13+
"version": "0.5.0-rc.1"
1414
},
1515
"servers": [
1616
{

docs/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ icon: "rocket"
6464
docker run -p 2468:2468 \
6565
-e ANTHROPIC_API_KEY="sk-ant-..." \
6666
-e OPENAI_API_KEY="sk-..." \
67-
rivetdev/sandbox-agent:0.3.1-full \
67+
rivetdev/sandbox-agent:0.5.0-rc.1-full \
6868
server --no-token --host 0.0.0.0 --port 2468
6969
```
7070
</Tab>

examples/shared/src/docker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const __dirname = path.dirname(fileURLToPath(import.meta.url));
99
const REPO_ROOT = path.resolve(__dirname, "..", "..", "..");
1010

1111
/** Pre-built Docker image with all agents installed. */
12-
export const FULL_IMAGE = "rivetdev/sandbox-agent:0.4.1-rc.1-full";
12+
export const FULL_IMAGE = "rivetdev/sandbox-agent:0.5.0-rc.1-full";
1313

1414
export interface DockerSandboxOptions {
1515
/** Container port used by sandbox-agent inside Docker. */

frontend/packages/inspector/src/components/debug/DesktopTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ const DesktopTab = ({ getClient }: { getClient: () => SandboxAgent }) => {
443443
setDownloadingRecordingId(id);
444444
try {
445445
const bytes = await getClient().downloadDesktopRecording(id);
446-
const blob = new Blob([bytes], { type: "video/mp4" });
446+
const blob = new Blob([bytes as BlobPart], { type: "video/mp4" });
447447
const url = URL.createObjectURL(blob);
448448
const a = document.createElement("a");
449449
a.href = url;

sdks/acp-http-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "acp-http-client",
3-
"version": "0.4.1-rc.1",
3+
"version": "0.5.0-rc.1",
44
"description": "Protocol-faithful ACP JSON-RPC over streamable HTTP client.",
55
"license": "Apache-2.0",
66
"repository": {

sdks/cli-shared/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sandbox-agent/cli-shared",
3-
"version": "0.4.1-rc.1",
3+
"version": "0.5.0-rc.1",
44
"description": "Shared helpers for sandbox-agent CLI and SDK",
55
"license": "Apache-2.0",
66
"repository": {

0 commit comments

Comments
 (0)