Skip to content

Commit 71e8b50

Browse files
Version Packages
1 parent 67100d0 commit 71e8b50

File tree

15 files changed

+24
-40
lines changed

15 files changed

+24
-40
lines changed

.changeset/funny-beans-exist.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/improve-session-initialization.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/sixty-walls-serve.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

examples/claude-code/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/cloudflare/sandbox:0.6.3
1+
FROM docker.io/cloudflare/sandbox:0.6.4
22
RUN npm install -g @anthropic-ai/claude-code
33
ENV COMMAND_TIMEOUT_MS=300000
44
EXPOSE 3000
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
FROM docker.io/cloudflare/sandbox:0.6.3-python
1+
FROM docker.io/cloudflare/sandbox:0.6.4-python

examples/minimal/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/cloudflare/sandbox:0.6.3
1+
FROM docker.io/cloudflare/sandbox:0.6.4
22

33
# Required during local development to access exposed ports
44
EXPOSE 8080

examples/openai-agents/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/cloudflare/sandbox:0.6.3
1+
FROM docker.io/cloudflare/sandbox:0.6.4
22

33
# Required during local development to access exposed ports
44
EXPOSE 8080

examples/typescript-validator/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use Cloudflare sandbox as base
2-
FROM docker.io/cloudflare/sandbox:0.6.3
2+
FROM docker.io/cloudflare/sandbox:0.6.4
33

44
# Install esbuild for TypeScript bundling
55
RUN npm install -g esbuild

package-lock.json

Lines changed: 1 addition & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/sandbox/CHANGELOG.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @cloudflare/sandbox
22

3+
## 0.6.4
4+
5+
### Patch Changes
6+
7+
- [#286](https://github.com/cloudflare/sandbox-sdk/pull/286) [`c6349aa`](https://github.com/cloudflare/sandbox-sdk/commit/c6349aa274d8c9e226f1782320c82d416393634d) Thanks [@NuroDev](https://github.com/NuroDev)! - Fix `options` parameter types for `gitCheckout`
8+
9+
- [#281](https://github.com/cloudflare/sandbox-sdk/pull/281) [`472d5ae`](https://github.com/cloudflare/sandbox-sdk/commit/472d5ae4bb7fbf075376a90558a2de282c649edb) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Fix session initialization to eliminate noisy error logs during hot reloads
10+
11+
- [#289](https://github.com/cloudflare/sandbox-sdk/pull/289) [`67100d0`](https://github.com/cloudflare/sandbox-sdk/commit/67100d070cc8608ccb8da8845ddb9bfafc109d72) Thanks [@whoiskatrin](https://github.com/whoiskatrin)! - fix workspace bug
12+
313
## 0.6.3
414

515
### Patch Changes
@@ -54,10 +64,10 @@
5464

5565
```dockerfile
5666
# Before
57-
FROM cloudflare/sandbox:0.6.3
67+
FROM cloudflare/sandbox:0.6.4
5868

5969
# After
60-
FROM cloudflare/sandbox:0.6.3-python
70+
FROM cloudflare/sandbox:0.6.4-python
6171
```
6272

6373
Without this change, Python execution will fail with `PYTHON_NOT_AVAILABLE` error.

0 commit comments

Comments
 (0)