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/fix-process-callbacks.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/generic-sandbox-types.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/honest-facts-think.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.6.1
FROM docker.io/cloudflare/sandbox:0.6.2
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.6.1-python
FROM docker.io/cloudflare/sandbox:0.6.2-python
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.6.1
FROM docker.io/cloudflare/sandbox:0.6.2

# 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.6.1
FROM docker.io/cloudflare/sandbox:0.6.2

# 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.6.1
FROM docker.io/cloudflare/sandbox:0.6.2

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

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

14 changes: 12 additions & 2 deletions packages/sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @cloudflare/sandbox

## 0.6.2

### Patch Changes

- [#267](https://github.com/cloudflare/sandbox-sdk/pull/267) [`204f9ac`](https://github.com/cloudflare/sandbox-sdk/commit/204f9ac301c983ed04589eb9d72418a0b06ec8a3) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Fix process callbacks, PID capture, and getLogs race condition for fast commands

- [#264](https://github.com/cloudflare/sandbox-sdk/pull/264) [`8601b5c`](https://github.com/cloudflare/sandbox-sdk/commit/8601b5c4fcb3a822aeefd870f26b3618c59e3212) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Fix type error when extending Sandbox class by making getSandbox and SandboxEnv generic

- [#263](https://github.com/cloudflare/sandbox-sdk/pull/263) [`059963e`](https://github.com/cloudflare/sandbox-sdk/commit/059963e80ff7d7d9696e8d9770339d3e849fcfdf) Thanks [@PavanKalisetti](https://github.com/PavanKalisetti)! - Fix a bug where the /api/ping endpoint was not handled, causing a 500 error

## 0.6.1

### Patch Changes
Expand Down Expand Up @@ -30,10 +40,10 @@

```dockerfile
# Before
FROM cloudflare/sandbox:0.6.1
FROM cloudflare/sandbox:0.6.2

# After
FROM cloudflare/sandbox:0.6.1-python
FROM cloudflare/sandbox:0.6.2-python
```

Without this change, Python execution will fail with `PYTHON_NOT_AVAILABLE` error.
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.6.1",
"version": "0.6.2",
"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.6.1';
export const SDK_VERSION = '0.6.2';
2 changes: 1 addition & 1 deletion tests/e2e/test-worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Base image Dockerfile (no Python)
# Used for testing Python-not-available error handling
FROM docker.io/cloudflare/sandbox-test:0.6.1
FROM docker.io/cloudflare/sandbox-test:0.6.2

# Expose ports used for testing
EXPOSE 8080
2 changes: 1 addition & 1 deletion tests/e2e/test-worker/Dockerfile.python
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Integration test Dockerfile
# Uses the -python variant because E2E tests include Python code execution tests
FROM docker.io/cloudflare/sandbox-test:0.6.1-python
FROM docker.io/cloudflare/sandbox-test:0.6.2-python

# 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.6.1-python
FROM cloudflare/sandbox-test:0.6.1-python
# FROM docker.io/cloudflare/sandbox:0.6.2-python
FROM cloudflare/sandbox-test:0.6.2-python

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