Skip to content

Commit 45e9676

Browse files
Version Packages (#277)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8cf6b2f commit 45e9676

File tree

13 files changed

+28
-40
lines changed

13 files changed

+28
-40
lines changed

.changeset/mighty-squids-count.md

Lines changed: 0 additions & 15 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.2
1+
FROM docker.io/cloudflare/sandbox:0.6.3
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.2-python
1+
FROM docker.io/cloudflare/sandbox:0.6.3-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.2
1+
FROM docker.io/cloudflare/sandbox:0.6.3
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.2
1+
FROM docker.io/cloudflare/sandbox:0.6.3
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.2
2+
FROM docker.io/cloudflare/sandbox:0.6.3
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: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @cloudflare/sandbox
22

3+
## 0.6.3
4+
5+
### Patch Changes
6+
7+
- [#273](https://github.com/cloudflare/sandbox-sdk/pull/273) [`8cf6b2f`](https://github.com/cloudflare/sandbox-sdk/commit/8cf6b2fe5b7aa0d9287387067a0a2f26ef538de4) Thanks [@whoiskatrin](https://github.com/whoiskatrin)! - Add process readiness detection with port and log pattern waiting
8+
The `Process` object returned by `startProcess()` now includes readiness methods:
9+
- `process.waitForPort(port, options?)`: Wait for process to listen on a port
10+
- Supports HTTP mode (default): checks endpoint returns expected status (200-399)
11+
- Supports TCP mode: checks port accepts connections
12+
- Configurable timeout, interval, path, and expected status
13+
- `process.waitForLog(pattern, options?)`: Wait for pattern in process output
14+
- Supports string or RegExp patterns
15+
- Returns matching line and capture groups
16+
317
## 0.6.2
418

519
### Patch Changes
@@ -40,10 +54,10 @@
4054

4155
```dockerfile
4256
# Before
43-
FROM cloudflare/sandbox:0.6.2
57+
FROM cloudflare/sandbox:0.6.3
4458

4559
# After
46-
FROM cloudflare/sandbox:0.6.2-python
60+
FROM cloudflare/sandbox:0.6.3-python
4761
```
4862

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

packages/sandbox/src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
* This file is auto-updated by .github/changeset-version.ts during releases
44
* DO NOT EDIT MANUALLY - Changes will be overwritten on the next version bump
55
*/
6-
export const SDK_VERSION = '0.6.2';
6+
export const SDK_VERSION = '0.6.3';

0 commit comments

Comments
 (0)