Skip to content

Commit e5edaa1

Browse files
Version Packages
1 parent c6349aa commit e5edaa1

File tree

14 files changed

+22
-35
lines changed

14 files changed

+22
-35
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.

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: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
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+
311
## 0.6.3
412

513
### Patch Changes
@@ -54,10 +62,10 @@
5462

5563
```dockerfile
5664
# Before
57-
FROM cloudflare/sandbox:0.6.3
65+
FROM cloudflare/sandbox:0.6.4
5866

5967
# After
60-
FROM cloudflare/sandbox:0.6.3-python
68+
FROM cloudflare/sandbox:0.6.4-python
6169
```
6270

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

packages/sandbox/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/sandbox",
3-
"version": "0.6.3",
3+
"version": "0.6.4",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/cloudflare/sandbox-sdk"

0 commit comments

Comments
 (0)