Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/remove-multi-arch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tough-buttons-arrive.md

This file was deleted.

2 changes: 1 addition & 1 deletion examples/claude-code/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.5.4
FROM docker.io/cloudflare/sandbox:0.5.5
RUN npm install -g @anthropic-ai/claude-code
ENV COMMAND_TIMEOUT_MS=300000
EXPOSE 3000
2 changes: 1 addition & 1 deletion examples/code-interpreter/Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
FROM docker.io/cloudflare/sandbox:0.5.4
FROM docker.io/cloudflare/sandbox:0.5.5
2 changes: 1 addition & 1 deletion examples/minimal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.5.4
FROM docker.io/cloudflare/sandbox:0.5.5

# Required during local development to access exposed ports
EXPOSE 8080
2 changes: 1 addition & 1 deletion examples/openai-agents/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/cloudflare/sandbox:0.5.4
FROM docker.io/cloudflare/sandbox:0.5.5

# Required during local development to access exposed ports
EXPOSE 8080
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript-validator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use Cloudflare sandbox as base
FROM docker.io/cloudflare/sandbox:0.5.4
FROM docker.io/cloudflare/sandbox:0.5.5

# Install esbuild for TypeScript bundling
RUN npm install -g esbuild
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions packages/sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @cloudflare/sandbox

## 0.5.5

### Patch Changes

- [#245](https://github.com/cloudflare/sandbox-sdk/pull/245) [`ecaafa9`](https://github.com/cloudflare/sandbox-sdk/commit/ecaafa9c4e213bf955a464d0c977830956a77336) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Publish Docker images for linux/amd64 only to ensure dev/prod parity. ARM Mac users will automatically use emulation, matching production deployment behavior. This prevents architecture-specific bugs caused by Docker automatically selecting ARM64 variants on ARM hosts.

- [#251](https://github.com/cloudflare/sandbox-sdk/pull/251) [`ba83581`](https://github.com/cloudflare/sandbox-sdk/commit/ba83581a9c8eff6f6bf5913baf2c9186729126a4) Thanks [@threepointone](https://github.com/threepointone)! - Update dependencies

## 0.5.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sandbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/sandbox",
"version": "0.5.4",
"version": "0.5.5",
"repository": {
"type": "git",
"url": "https://github.com/cloudflare/sandbox-sdk"
Expand Down
2 changes: 1 addition & 1 deletion packages/sandbox/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
* This file is auto-updated by .github/changeset-version.ts during releases
* DO NOT EDIT MANUALLY - Changes will be overwritten on the next version bump
*/
export const SDK_VERSION = '0.5.4';
export const SDK_VERSION = '0.5.5';
2 changes: 1 addition & 1 deletion tests/e2e/test-worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Integration test Dockerfile
FROM docker.io/cloudflare/sandbox-test:0.5.4
FROM docker.io/cloudflare/sandbox-test:0.5.5

# Expose ports used for testing
EXPOSE 8080
4 changes: 2 additions & 2 deletions tests/integration/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# This image is unique to this repo, and you'll never need it.
# Whenever you're integrating with sandbox SDK in your own project,
# you should use the official image instead:
# FROM docker.io/cloudflare/sandbox:0.5.4
FROM cloudflare/sandbox-test:0.5.4
# FROM docker.io/cloudflare/sandbox:0.5.5
FROM cloudflare/sandbox-test:0.5.5

# Expose the ports you want to expose
EXPOSE 8080
Expand Down