Skip to content

Commit 445eec8

Browse files
Version Packages
1 parent be9ed8b commit 445eec8

File tree

13 files changed

+29
-31
lines changed

13 files changed

+29
-31
lines changed

.changeset/cleanup-unused-logging.md

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

.changeset/lovely-friends-study.md

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

examples/claude-code/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM docker.io/cloudflare/sandbox:0.5.1
1+
FROM docker.io/cloudflare/sandbox:0.5.2
22
RUN npm install -g @anthropic-ai/claude-code
33
ENV COMMAND_TIMEOUT_MS=300000
44
EXPOSE 3000
55

66
# On a Mac with Apple Silicon, you might need to specify the platform:
7-
# FROM --platform=linux/arm64 docker.io/cloudflare/sandbox:0.5.1
7+
# FROM --platform=linux/arm64 docker.io/cloudflare/sandbox:0.5.2
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# This image is unique to this repo, and you'll never need it.
22
# Whenever you're integrating with sandbox SDK in your own project,
33
# you should use the official image instead:
4-
# FROM docker.io/cloudflare/sandbox:0.5.1
5-
FROM cloudflare/sandbox-test:0.5.1
4+
# FROM docker.io/cloudflare/sandbox:0.5.2
5+
FROM cloudflare/sandbox-test:0.5.2
66

77
# On a mac, you might need to actively pick up the
88
# arm64 build of the image.
9-
# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.5.1
9+
# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.5.2

examples/minimal/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM docker.io/cloudflare/sandbox:0.5.1
1+
FROM docker.io/cloudflare/sandbox:0.5.2
22

33
# On a Mac with Apple Silicon, you might need to specify the platform:
4-
# FROM --platform=linux/arm64 docker.io/cloudflare/sandbox:0.5.1
4+
# FROM --platform=linux/arm64 docker.io/cloudflare/sandbox:0.5.2
55

66
# Required during local development to access exposed ports
77
EXPOSE 8080

examples/openai-agents/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# This image is unique to this repo, and you'll never need it.
22
# Whenever you're integrating with sandbox SDK in your own project,
33
# you should use the official image instead:
4-
# FROM docker.io/cloudflare/sandbox:0.5.0
5-
# FROM cloudflare/sandbox-test:0.5.0
4+
# FROM docker.io/cloudflare/sandbox:0.5.2
5+
# FROM cloudflare/sandbox-test:0.5.2
66

77
# On a mac, you might need to actively pick up the
88
# arm64 build of the image.
9-
FROM --platform=linux/arm64 cloudflare/sandbox-test:0.5.0
9+
FROM --platform=linux/arm64 cloudflare/sandbox-test:0.5.2
1010

1111
# Required during local development to access exposed ports
1212
EXPOSE 8080

examples/typescript-validator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Use Cloudflare sandbox as base
2-
FROM docker.io/cloudflare/sandbox:0.5.1
2+
FROM docker.io/cloudflare/sandbox:0.5.2
33

44
# On a mac, you might need to actively pick up the
55
# arm64 build of the image.
6-
# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.5.1
6+
# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.5.2
77

88

99
# Install esbuild for TypeScript bundling

package-lock.json

Lines changed: 1 addition & 1 deletion
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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @cloudflare/sandbox
22

3+
## 0.5.2
4+
5+
### Patch Changes
6+
7+
- [#234](https://github.com/cloudflare/sandbox-sdk/pull/234) [`d4cee5e`](https://github.com/cloudflare/sandbox-sdk/commit/d4cee5e4617db205c9c1ca714e25493de7ea24ce) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Remove unused logging infrastructure (getLogger, runWithLogger) that was never called
8+
9+
- [#221](https://github.com/cloudflare/sandbox-sdk/pull/221) [`3aba9e8`](https://github.com/cloudflare/sandbox-sdk/commit/3aba9e8da6e2e6acd7b40076cc0920a69cb02775) Thanks [@threepointone](https://github.com/threepointone)! - Add OpenAI Agents adapters
10+
11+
Add OpenAI Agents adapters (`Shell` and `Editor`) that integrate Cloudflare Sandbox with the OpenAI Agents SDK. These adapters enable AI agents to execute shell commands and perform file operations (create, update, delete) inside sandboxed environments. Both adapters automatically collect and timestamp results from operations, making it easy to track command execution and file modifications during agent sessions. The adapters are exported from `@cloudflare/sandbox/openai` and implement the OpenAI Agents `Shell` and `Editor` interfaces.
12+
313
## 0.5.1
414

515
### Patch Changes

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.5.1",
3+
"version": "0.5.2",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/cloudflare/sandbox-sdk"

0 commit comments

Comments
 (0)