Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/nervous-dryers-tie.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/spicy-hairs-watch.md

This file was deleted.

6 changes: 3 additions & 3 deletions examples/basic/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# This image is unique to this repo, and you'll never need it.
# Whenever you're integrating with sandbox SDK in your own project,
# you should use the official image instead:
# FROM docker.io/cloudflare/sandbox:0.4.5
FROM cloudflare/sandbox-test:0.4.5
# FROM docker.io/cloudflare/sandbox:0.4.6
FROM cloudflare/sandbox-test:0.4.6

# On a mac, you might need to actively pick up the
# arm64 build of the image.
# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.4.5
# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.4.6

# Expose the ports you want to expose
EXPOSE 8080
Expand Down
6 changes: 3 additions & 3 deletions examples/code-interpreter/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# This image is unique to this repo, and you'll never need it.
# Whenever you're integrating with sandbox SDK in your own project,
# you should use the official image instead:
# FROM docker.io/cloudflare/sandbox:0.4.5
FROM cloudflare/sandbox-test:0.4.5
# FROM docker.io/cloudflare/sandbox:0.4.6
FROM cloudflare/sandbox-test:0.4.6

# On a mac, you might need to actively pick up the
# arm64 build of the image.
# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.4.5
# FROM --platform=linux/arm64 cloudflare/sandbox-test:0.4.6
4 changes: 2 additions & 2 deletions examples/minimal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM docker.io/cloudflare/sandbox:0.4.5
FROM docker.io/cloudflare/sandbox:0.4.6

# On a Mac with Apple Silicon, you might need to specify the platform:
# FROM --platform=linux/arm64 docker.io/cloudflare/sandbox:0.4.5
# FROM --platform=linux/arm64 docker.io/cloudflare/sandbox:0.4.6

# Required during local development to access exposed ports
EXPOSE 8080
30 changes: 24 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions packages/sandbox-container/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @repo/sandbox-container

## 0.0.1

### Patch Changes

- [#133](https://github.com/cloudflare/sandbox-sdk/pull/133) [`da2cfb8`](https://github.com/cloudflare/sandbox-sdk/commit/da2cfb876675eb3445970c90b4d70d00288a7c74) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - feat: Add version sync detection between npm package and Docker image
2 changes: 1 addition & 1 deletion packages/sandbox-container/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@repo/sandbox-container",
"version": "0.0.0",
"version": "0.0.1",
"private": true,
"description": "Container runtime for Cloudflare Sandbox SDK",
"type": "module",
Expand Down
6 changes: 6 additions & 0 deletions packages/sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @cloudflare/sandbox

## 0.4.6

### Patch Changes

- [#133](https://github.com/cloudflare/sandbox-sdk/pull/133) [`da2cfb8`](https://github.com/cloudflare/sandbox-sdk/commit/da2cfb876675eb3445970c90b4d70d00288a7c74) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - feat: Add version sync detection between npm package and Docker image

## 0.4.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/sandbox/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cloudflare/sandbox",
"version": "0.4.5",
"version": "0.4.6",
"repository": {
"type": "git",
"url": "https://github.com/cloudflare/sandbox-sdk"
Expand Down
2 changes: 1 addition & 1 deletion packages/sandbox/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
* This file is auto-updated by .github/changeset-version.ts during releases
* DO NOT EDIT MANUALLY - Changes will be overwritten on the next version bump
*/
export const SDK_VERSION = '0.4.5';
export const SDK_VERSION = '0.4.6';
2 changes: 1 addition & 1 deletion tests/e2e/test-worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Integration test Dockerfile
FROM docker.io/cloudflare/sandbox-test:0.4.5
FROM docker.io/cloudflare/sandbox-test:0.4.6

# Expose ports used for testing
EXPOSE 8080
Loading