diff --git a/.changeset/neat-drinks-own.md b/.changeset/neat-drinks-own.md deleted file mode 100644 index 8dc4e127..00000000 --- a/.changeset/neat-drinks-own.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@cloudflare/sandbox": patch ---- - -Fix foreground commands blocking on background processes diff --git a/.changeset/rude-years-wink.md b/.changeset/rude-years-wink.md deleted file mode 100644 index 42eb3aaf..00000000 --- a/.changeset/rude-years-wink.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@cloudflare/sandbox': patch ---- - -update python to 3.11.14 diff --git a/examples/claude-code/Dockerfile b/examples/claude-code/Dockerfile index 15636dc7..a67d1d4e 100644 --- a/examples/claude-code/Dockerfile +++ b/examples/claude-code/Dockerfile @@ -1,7 +1,7 @@ -FROM docker.io/cloudflare/sandbox:0.4.14 +FROM docker.io/cloudflare/sandbox:0.4.15 RUN npm install -g @anthropic-ai/claude-code ENV COMMAND_TIMEOUT_MS=300000 EXPOSE 3000 # On a Mac with Apple Silicon, you might need to specify the platform: -# FROM --platform=linux/arm64 docker.io/cloudflare/sandbox:0.4.14 +# FROM --platform=linux/arm64 docker.io/cloudflare/sandbox:0.4.15 diff --git a/examples/code-interpreter/Dockerfile b/examples/code-interpreter/Dockerfile index 9e857905..7ff56059 100644 --- a/examples/code-interpreter/Dockerfile +++ b/examples/code-interpreter/Dockerfile @@ -1,9 +1,9 @@ # 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.4.14 -FROM cloudflare/sandbox-test:0.4.14 +# FROM docker.io/cloudflare/sandbox:0.4.15 +FROM cloudflare/sandbox-test:0.4.15 # On a mac, you might need to actively pick up the # arm64 build of the image. -# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.4.14 +# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.4.15 diff --git a/examples/minimal/Dockerfile b/examples/minimal/Dockerfile index cbcc78dc..981a5dd9 100644 --- a/examples/minimal/Dockerfile +++ b/examples/minimal/Dockerfile @@ -1,7 +1,7 @@ -FROM docker.io/cloudflare/sandbox:0.4.14 +FROM docker.io/cloudflare/sandbox:0.4.15 # On a Mac with Apple Silicon, you might need to specify the platform: -# FROM --platform=linux/arm64 docker.io/cloudflare/sandbox:0.4.14 +# FROM --platform=linux/arm64 docker.io/cloudflare/sandbox:0.4.15 # Required during local development to access exposed ports EXPOSE 8080 diff --git a/package-lock.json b/package-lock.json index 0f03c891..f22eca25 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8823,7 +8823,7 @@ }, "packages/sandbox": { "name": "@cloudflare/sandbox", - "version": "0.4.14", + "version": "0.4.15", "license": "ISC", "dependencies": { "@cloudflare/containers": "^0.0.30" diff --git a/packages/sandbox/CHANGELOG.md b/packages/sandbox/CHANGELOG.md index bc847e9a..8ad3f909 100644 --- a/packages/sandbox/CHANGELOG.md +++ b/packages/sandbox/CHANGELOG.md @@ -1,5 +1,13 @@ # @cloudflare/sandbox +## 0.4.15 + +### Patch Changes + +- [#185](https://github.com/cloudflare/sandbox-sdk/pull/185) [`7897cdd`](https://github.com/cloudflare/sandbox-sdk/commit/7897cddefc366bbd640ea138b34a520a0b2ddf8c) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Fix foreground commands blocking on background processes + +- [#183](https://github.com/cloudflare/sandbox-sdk/pull/183) [`ff2fa91`](https://github.com/cloudflare/sandbox-sdk/commit/ff2fa91479357ef88cfb22418f88acb257462faa) Thanks [@whoiskatrin](https://github.com/whoiskatrin)! - update python to 3.11.14 + ## 0.4.14 ### Patch Changes diff --git a/packages/sandbox/package.json b/packages/sandbox/package.json index 9d5161b0..bc0bc233 100644 --- a/packages/sandbox/package.json +++ b/packages/sandbox/package.json @@ -1,6 +1,6 @@ { "name": "@cloudflare/sandbox", - "version": "0.4.14", + "version": "0.4.15", "repository": { "type": "git", "url": "https://github.com/cloudflare/sandbox-sdk" diff --git a/packages/sandbox/src/version.ts b/packages/sandbox/src/version.ts index 1115aa76..d8ec91d5 100644 --- a/packages/sandbox/src/version.ts +++ b/packages/sandbox/src/version.ts @@ -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.4.14'; +export const SDK_VERSION = '0.4.15'; diff --git a/tests/e2e/test-worker/Dockerfile b/tests/e2e/test-worker/Dockerfile index 0b599b60..e4b57aab 100644 --- a/tests/e2e/test-worker/Dockerfile +++ b/tests/e2e/test-worker/Dockerfile @@ -1,5 +1,5 @@ # Integration test Dockerfile -FROM docker.io/cloudflare/sandbox-test:0.4.14 +FROM docker.io/cloudflare/sandbox-test:0.4.15 # Expose ports used for testing EXPOSE 8080 diff --git a/tests/integration/Dockerfile b/tests/integration/Dockerfile index f38075f9..18090622 100644 --- a/tests/integration/Dockerfile +++ b/tests/integration/Dockerfile @@ -1,12 +1,12 @@ # 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.4.14 -FROM cloudflare/sandbox-test:0.4.14 +# FROM docker.io/cloudflare/sandbox:0.4.15 +FROM cloudflare/sandbox-test:0.4.15 # On a mac, you might need to actively pick up the # arm64 build of the image. -# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.4.14 +# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.4.15 # Expose the ports you want to expose EXPOSE 8080