@cloudflare/sandbox 0.0.0-d55b0f4 → 0.0.0-d86b60e

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,146 @@
1
1
  # @cloudflare/sandbox
2
2
 
3
+ ## 0.3.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#86](https://github.com/cloudflare/sandbox-sdk/pull/86) [`feafd32`](https://github.com/cloudflare/sandbox-sdk/commit/feafd32a51f50dfaf4994bddcbfb56d46cada622) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Fix session reuse to reuse existing healthy session
8
+
9
+ ## 0.3.3
10
+
11
+ ### Patch Changes
12
+
13
+ - [#83](https://github.com/cloudflare/sandbox-sdk/pull/83) [`eec5bb6`](https://github.com/cloudflare/sandbox-sdk/commit/eec5bb6203dd5d775b4b54e91c26de25eeb767ce) Thanks [@mikenomitch](https://github.com/mikenomitch)! - Bump containers package version
14
+
15
+ ## 0.3.2
16
+
17
+ ### Patch Changes
18
+
19
+ - [#76](https://github.com/cloudflare/sandbox-sdk/pull/76) [`ef9e320`](https://github.com/cloudflare/sandbox-sdk/commit/ef9e320dcef30e57797fef6ebd9a9383fa9720d9) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Replace Jupyter with lightweight interpreters for >90% faster cold starts for `.runCode` calls, while maintaining full code execution capabilities and rich output support.
20
+
21
+ ## 0.3.1
22
+
23
+ ### Patch Changes
24
+
25
+ - [#71](https://github.com/cloudflare/sandbox-sdk/pull/71) [`fb3c9c2`](https://github.com/cloudflare/sandbox-sdk/commit/fb3c9c22242d9d4f157c26f547f1e697ef7875f9) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Bump containers package version
26
+
27
+ - [#70](https://github.com/cloudflare/sandbox-sdk/pull/70) [`e1fa354`](https://github.com/cloudflare/sandbox-sdk/commit/e1fa354ab1bc7b0e89db4901b67028ebf1a93d0a) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Fix escaped quotes in file write operations
28
+
29
+ - [#68](https://github.com/cloudflare/sandbox-sdk/pull/68) [`69b91d1`](https://github.com/cloudflare/sandbox-sdk/commit/69b91d1a8f6afb63262cc381ea93e94a033ed5e8) Thanks [@CyrusNuevoDia](https://github.com/CyrusNuevoDia)! - Configurable timeouts via environment variables in isolation.ts
30
+
31
+ - [#66](https://github.com/cloudflare/sandbox-sdk/pull/66) [`eca93b9`](https://github.com/cloudflare/sandbox-sdk/commit/eca93b97e40fa0d3bd9dc27af2cc214ec355b696) Thanks [@peterp](https://github.com/peterp)! - Determine if the port is specified in the URL.
32
+
33
+ ## 0.3.0
34
+
35
+ ### Minor Changes
36
+
37
+ - [#59](https://github.com/cloudflare/sandbox-sdk/pull/59) [`b6757f7`](https://github.com/cloudflare/sandbox-sdk/commit/b6757f730c34381d5a70d513944bbf9840f598ab) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Add process isolation for sandbox commands
38
+
39
+ Implements PID namespace isolation to protect control plane processes (Jupyter, Bun) from sandboxed code. Commands executed via `exec()` now run in isolated namespaces that cannot see or interact with system processes.
40
+
41
+ **Key security improvements:**
42
+
43
+ - Control plane processes are hidden from sandboxed commands
44
+ - Platform secrets in `/proc/1/environ` are inaccessible
45
+ - Ports 8888 (Jupyter) and 3000 (Bun) are protected from hijacking
46
+
47
+ **Breaking changes:**
48
+
49
+ 1. **Removed `sessionId` parameter**: The `sessionId` parameter has been removed from all methods (`exec()`, `execStream()`, `startProcess()`, etc.). Each sandbox now maintains its own persistent session automatically.
50
+
51
+ ```javascript
52
+ // Before: manual session management
53
+ await sandbox.exec("cd /app", { sessionId: "my-session" });
54
+
55
+ // After: automatic session per sandbox
56
+ await sandbox.exec("cd /app");
57
+ ```
58
+
59
+ 2. **Commands now maintain state**: Commands within the same sandbox now share state (working directory, environment variables, background processes). Previously each command was stateless.
60
+
61
+ ```javascript
62
+ // Before: each exec was independent
63
+ await sandbox.exec("cd /app");
64
+ await sandbox.exec("pwd"); // Output: /workspace
65
+
66
+ // After: state persists in session
67
+ await sandbox.exec("cd /app");
68
+ await sandbox.exec("pwd"); // Output: /app
69
+ ```
70
+
71
+ **Migration guide:**
72
+
73
+ - Remove `sessionId` from all method calls - each sandbox maintains its own session
74
+ - If you need isolated execution contexts within the same sandbox, use `sandbox.createSession()`:
75
+ ```javascript
76
+ // Create independent sessions with different environments
77
+ const buildSession = await sandbox.createSession({
78
+ name: "build",
79
+ env: { NODE_ENV: "production" },
80
+ cwd: "/build",
81
+ });
82
+ const testSession = await sandbox.createSession({
83
+ name: "test",
84
+ env: { NODE_ENV: "test" },
85
+ cwd: "/test",
86
+ });
87
+ ```
88
+ - Environment variables set in one command persist to the next
89
+ - Background processes remain active until explicitly killed
90
+ - Requires CAP_SYS_ADMIN (available in production, falls back gracefully in dev)
91
+
92
+ ### Patch Changes
93
+
94
+ - [#62](https://github.com/cloudflare/sandbox-sdk/pull/62) [`4bedc3a`](https://github.com/cloudflare/sandbox-sdk/commit/4bedc3aba347f3d4090a6efe2c9778bac00ce74a) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Fix broken build due to bun lockfile not being used
95
+
96
+ ## 0.2.4
97
+
98
+ ### Patch Changes
99
+
100
+ - [#57](https://github.com/cloudflare/sandbox-sdk/pull/57) [`12bbd12`](https://github.com/cloudflare/sandbox-sdk/commit/12bbd1229c07ef8c1c0bf58a4235a27938155b08) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Add listFiles method
101
+
102
+ ## 0.2.3
103
+
104
+ ### Patch Changes
105
+
106
+ - [#53](https://github.com/cloudflare/sandbox-sdk/pull/53) [`c87db11`](https://github.com/cloudflare/sandbox-sdk/commit/c87db117693a86cfb667bf09fb7720d6a6e0524d) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Improve jupyterlab config to speed up startup
107
+
108
+ ## 0.2.2
109
+
110
+ ### Patch Changes
111
+
112
+ - [#51](https://github.com/cloudflare/sandbox-sdk/pull/51) [`4aceb32`](https://github.com/cloudflare/sandbox-sdk/commit/4aceb3215c836f59afcb88b2b325016b3f623f46) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Handle intermittent interpreter failures and decouple jupyter startup
113
+
114
+ ## 0.2.1
115
+
116
+ ### Patch Changes
117
+
118
+ - [#49](https://github.com/cloudflare/sandbox-sdk/pull/49) [`d81d2a5`](https://github.com/cloudflare/sandbox-sdk/commit/d81d2a563c9af8947d5444019ed4d6156db563e3) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Implement code interpreter API
119
+
120
+ ## 0.2.0
121
+
122
+ ### Minor Changes
123
+
124
+ - [#47](https://github.com/cloudflare/sandbox-sdk/pull/47) [`8a93d0c`](https://github.com/cloudflare/sandbox-sdk/commit/8a93d0cae18a25bda6506b8b0a08d9e9eb3bb290) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Change default directory to a clean /workspace
125
+
126
+ ## 0.1.4
127
+
128
+ ### Patch Changes
129
+
130
+ - [#46](https://github.com/cloudflare/sandbox-sdk/pull/46) [`7de28be`](https://github.com/cloudflare/sandbox-sdk/commit/7de28be482d9634551572d548c7c4b5842df812d) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Update README
131
+
132
+ - [#44](https://github.com/cloudflare/sandbox-sdk/pull/44) [`215ab49`](https://github.com/cloudflare/sandbox-sdk/commit/215ab494427d7e2a92bb9a25384cb493a221c200) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Update example to use env & cwd
133
+
134
+ - [#42](https://github.com/cloudflare/sandbox-sdk/pull/42) [`bb72193`](https://github.com/cloudflare/sandbox-sdk/commit/bb72193ad75695979bd1132206f481e91fe37325) Thanks [@jonasnobile](https://github.com/jonasnobile)! - Propagate `cwd` and `env` options in `executeCommand`
135
+
136
+ - [#27](https://github.com/cloudflare/sandbox-sdk/pull/27) [`fd5ec7f`](https://github.com/cloudflare/sandbox-sdk/commit/fd5ec7f34bc12b06320a89356c4af07801f52d64) Thanks [@threepointone](https://github.com/threepointone)! - remove yarn and pnpm from the image
137
+
138
+ ## 0.1.3
139
+
140
+ ### Patch Changes
141
+
142
+ - [#32](https://github.com/cloudflare/sandbox-sdk/pull/32) [`1a42464`](https://github.com/cloudflare/sandbox-sdk/commit/1a4246479369c5d0160705caf192aa1816540d52) Thanks [@ghostwriternr](https://github.com/ghostwriternr)! - Bring back package README
143
+
3
144
  ## 0.1.2
4
145
 
5
146
  ### Patch Changes
package/Dockerfile CHANGED
@@ -31,23 +31,19 @@ RUN apt-get update && apt-get install -y \
31
31
  python3.11 \
32
32
  python3.11-dev \
33
33
  python3-pip \
34
+ python3.11-venv \
34
35
  # Other useful tools
35
- sudo \
36
36
  ca-certificates \
37
37
  gnupg \
38
38
  lsb-release \
39
+ strace \
39
40
  && rm -rf /var/lib/apt/lists/*
40
41
 
41
42
  # Set Python 3.11 as default python3
42
43
  RUN update-alternatives --install /usr/bin/python3 python3 /usr/bin/python3.11 1
43
44
 
44
- # Install Node.js 22 LTS
45
- # Using the official NodeSource repository setup script
46
- RUN apt-get update && apt-get install -y ca-certificates curl gnupg \
47
- && mkdir -p /etc/apt/keyrings \
48
- && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg \
49
- && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list \
50
- && apt-get update \
45
+ # Install Node.js 20 LTS using official NodeSource setup script
46
+ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
51
47
  && apt-get install -y nodejs \
52
48
  && rm -rf /var/lib/apt/lists/*
53
49
 
@@ -55,25 +51,52 @@ RUN apt-get update && apt-get install -y ca-certificates curl gnupg \
55
51
  COPY --from=bun-source /usr/local/bin/bun /usr/local/bin/bun
56
52
  COPY --from=bun-source /usr/local/bin/bunx /usr/local/bin/bunx
57
53
 
58
- # Install global npm packages as root
59
- RUN npm install -g yarn pnpm
54
+ # Install essential Python packages for code execution
55
+ RUN pip3 install --no-cache-dir \
56
+ matplotlib \
57
+ numpy \
58
+ pandas \
59
+ ipython
60
60
 
61
- # Set up working directory
62
- WORKDIR /app
61
+ # Set up container server directory
62
+ WORKDIR /container-server
63
63
 
64
64
  # Verify installations
65
65
  RUN python3 --version && \
66
66
  node --version && \
67
67
  npm --version && \
68
- bun --version && \
69
- yarn --version && \
70
- pnpm --version
68
+ bun --version
69
+
70
+ # Copy container source files to server directory
71
+ COPY container_src/package.json container_src/bun.lock ./
72
+ RUN bun install --frozen-lockfile
71
73
 
72
- # Copy container source files
73
74
  COPY container_src/ ./
74
75
 
75
- # Expose the application port
76
+ # Compile TypeScript files using the locally installed TypeScript
77
+ RUN npx tsc control-process.ts --outDir . --module commonjs --target es2020 --esModuleInterop --skipLibCheck
78
+ RUN cd runtime/executors/javascript && npx tsc node_executor.ts --module commonjs --target es2020 --esModuleInterop --skipLibCheck
79
+ RUN cd runtime/executors/typescript && npx tsc ts_executor.ts --module commonjs --target es2020 --esModuleInterop --skipLibCheck
80
+
81
+ # Configure process pool sizes (can be overridden at runtime)
82
+ ENV PYTHON_POOL_MIN_SIZE=3
83
+ ENV PYTHON_POOL_MAX_SIZE=15
84
+ ENV JAVASCRIPT_POOL_MIN_SIZE=3
85
+ ENV JAVASCRIPT_POOL_MAX_SIZE=10
86
+ ENV TYPESCRIPT_POOL_MIN_SIZE=3
87
+ ENV TYPESCRIPT_POOL_MAX_SIZE=10
88
+
89
+ # Create clean workspace directory for user code
90
+ # Architecture:
91
+ # /container-server/ - SDK infrastructure (server, executors, dependencies)
92
+ # /workspace/ - User's clean workspace for their code
93
+ RUN mkdir -p /workspace
94
+
95
+ # Expose the application port (3000 for control)
76
96
  EXPOSE 3000
77
97
 
78
- # Run the application
79
- CMD ["bun", "index.ts"]
98
+ # Make startup script executable
99
+ RUN chmod +x startup.sh
100
+
101
+ # Use startup script
102
+ CMD ["./startup.sh"]