chore(release): update version to 0.4.1-rc.1

This commit is contained in:
Nathan Flurry 2026-03-16 15:49:16 -07:00
parent 9ce71c03c8
commit 167712ace7
28 changed files with 116 additions and 326 deletions

View file

@ -44,7 +44,7 @@ try {
}
```
The `daytona` provider uses the `rivetdev/sandbox-agent:0.4.0-full` image by default and starts the server automatically.
The `daytona` provider uses the `rivetdev/sandbox-agent:0.4.1-rc.1-full` image by default and starts the server automatically.
## Using snapshots for faster startup

View file

@ -15,11 +15,11 @@ Run the published full image with all supported agents pre-installed:
docker run --rm -p 3000:3000 \
-e ANTHROPIC_API_KEY="$ANTHROPIC_API_KEY" \
-e OPENAI_API_KEY="$OPENAI_API_KEY" \
rivetdev/sandbox-agent:0.4.0-full \
rivetdev/sandbox-agent:0.4.1-rc.1-full \
server --no-token --host 0.0.0.0 --port 3000
```
The `0.4.0-full` tag pins the exact version. The moving `full` tag is also published for contributors who want the latest full image.
The `0.4.1-rc.1-full` tag pins the exact version. The moving `full` tag is also published for contributors who want the latest full image.
## TypeScript with the Docker provider
@ -48,7 +48,7 @@ try {
}
```
The `docker` provider uses the `rivetdev/sandbox-agent:0.4.0-full` image by default. Override with `image`:
The `docker` provider uses the `rivetdev/sandbox-agent:0.4.1-rc.1-full` image by default. Override with `image`:
```typescript
docker({ image: "my-custom-image:latest" })