@ai-sdk/sandbox-just-bash 1.0.0-canary.6 → 1.0.0-canary.8

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,25 @@
1
1
  # @ai-sdk/sandbox-just-bash
2
2
 
3
+ ## 1.0.0-canary.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [aae0138]
8
+ - @ai-sdk/harness@1.0.0-canary.8
9
+
10
+ ## 1.0.0-canary.7
11
+
12
+ ### Patch Changes
13
+
14
+ - e551763: fix(harness): avoid using peer dependencies for underlying harness and sandbox SDKs
15
+ - Updated dependencies [3d87086]
16
+ - Updated dependencies [aeda373]
17
+ - Updated dependencies [1ea15a3]
18
+ - Updated dependencies [375fdd7]
19
+ - Updated dependencies [b4507d5]
20
+ - @ai-sdk/harness@1.0.0-canary.7
21
+ - @ai-sdk/provider-utils@5.0.0-canary.48
22
+
3
23
  ## 1.0.0-canary.6
4
24
 
5
25
  ### Patch Changes
package/README.md CHANGED
@@ -34,7 +34,7 @@ console.log(stdout); // "hi"
34
34
 
35
35
  `networkSandboxSession.restricted()` is typed as `Experimental_SandboxSession` and is the surface to hand to user tools. The network sandbox session's `getPortUrl` throws (just-bash has no port story) and `setNetworkPolicy` is omitted (no local enforcement primitive).
36
36
 
37
- To wrap an already-created `just-bash` `Sandbox` (e.g. with a custom `fs`), pass it via `sandbox`:
37
+ To wrap an already-created `just-bash` `Sandbox` (e.g. with a custom `fs`), pass it via `sandbox`. Install `just-bash` directly if your application imports `Sandbox`, `OverlayFs`, or other `just-bash` exports:
38
38
 
39
39
  ```ts
40
40
  import { createJustBashSandbox } from '@ai-sdk/sandbox-just-bash';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/sandbox-just-bash",
3
- "version": "1.0.0-canary.6",
3
+ "version": "1.0.0-canary.8",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "sideEffects": false,
@@ -26,15 +26,12 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "@ai-sdk/harness": "1.0.0-canary.6",
30
- "@ai-sdk/provider-utils": "5.0.0-canary.47"
31
- },
32
- "peerDependencies": {
33
- "just-bash": "^2.14.0"
29
+ "just-bash": "^2.14.5",
30
+ "@ai-sdk/harness": "1.0.0-canary.8",
31
+ "@ai-sdk/provider-utils": "5.0.0-canary.48"
34
32
  },
35
33
  "devDependencies": {
36
34
  "@types/node": "22.19.19",
37
- "just-bash": "^2.14.5",
38
35
  "tsup": "^8.5.1",
39
36
  "typescript": "5.8.3",
40
37
  "@vercel/ai-tsconfig": "0.0.0"