Skip to content

Commit ac05f6f

Browse files
Version Packages (#274)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 059963e commit ac05f6f

File tree

15 files changed

+24
-40
lines changed

15 files changed

+24
-40
lines changed

.changeset/fix-process-callbacks.md

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

.changeset/generic-sandbox-types.md

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

.changeset/honest-facts-think.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.1
1+
FROM docker.io/cloudflare/sandbox:0.6.2
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.1-python
1+
FROM docker.io/cloudflare/sandbox:0.6.2-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.1
1+
FROM docker.io/cloudflare/sandbox:0.6.2
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.1
1+
FROM docker.io/cloudflare/sandbox:0.6.2
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.1
2+
FROM docker.io/cloudflare/sandbox:0.6.2
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.2
4+
5+
### Patch Changes
6+
7+
- [#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
8+
9+
- [#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
10+
11+
- [#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
12+
313
## 0.6.1
414

515
### Patch Changes
@@ -30,10 +40,10 @@
3040

3141
```dockerfile
3242
# Before
33-
FROM cloudflare/sandbox:0.6.1
43+
FROM cloudflare/sandbox:0.6.2
3444

3545
# After
36-
FROM cloudflare/sandbox:0.6.1-python
46+
FROM cloudflare/sandbox:0.6.2-python
3747
```
3848

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

0 commit comments

Comments
 (0)