Skip to content

Commit 04a60d8

Browse files
Version Packages (#202)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 228ef5b commit 04a60d8

File tree

10 files changed

+40
-24
lines changed

10 files changed

+40
-24
lines changed

.changeset/fix-encoding-parameter.md

Lines changed: 0 additions & 5 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.4.17
1+
FROM docker.io/cloudflare/sandbox:0.4.18
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.4.17
7+
# FROM --platform=linux/arm64 docker.io/cloudflare/sandbox:0.4.18
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.4.17
5-
FROM cloudflare/sandbox-test:0.4.17
4+
# FROM docker.io/cloudflare/sandbox:0.4.18
5+
FROM cloudflare/sandbox-test:0.4.18
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.4.17
9+
# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.4.18

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.4.17
1+
FROM docker.io/cloudflare/sandbox:0.4.18
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.4.17
4+
# FROM --platform=linux/arm64 docker.io/cloudflare/sandbox:0.4.18
55

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

package-lock.json

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

3+
## 0.4.18
4+
5+
### Patch Changes
6+
7+
- [`228ef5b`](https://github.com/cloudflare/sandbox-sdk/commit/228ef5b6e57fa3c38dc8d90e006ae58d0815aaec) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Fix encoding parameter handling in file operations to enable MIME auto-detection. Previously, SDK and container handlers added default 'utf8' encoding, preventing MIME-based detection of binary files. Now encoding parameter is passed through as-is, allowing automatic detection when not explicitly specified.
8+
39
## 0.4.17
410

511
### 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.4.17",
3+
"version": "0.4.18",
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.4.17';
6+
export const SDK_VERSION = '0.4.18';

tests/e2e/test-worker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Integration test Dockerfile
2-
FROM docker.io/cloudflare/sandbox-test:0.4.17
2+
FROM docker.io/cloudflare/sandbox-test:0.4.18
33

44
# Expose ports used for testing
55
EXPOSE 8080

tests/integration/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.4.17
5-
FROM cloudflare/sandbox-test:0.4.17
4+
# FROM docker.io/cloudflare/sandbox:0.4.18
5+
FROM cloudflare/sandbox-test:0.4.18
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.4.17
9+
# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.4.18
1010

1111
# Expose the ports you want to expose
1212
EXPOSE 8080

0 commit comments

Comments
 (0)