@ai-sdk/sandbox-just-bash 0.0.0-canary.1 → 1.0.0-canary.10
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 +69 -0
- package/README.md +1 -1
- package/package.json +4 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,74 @@
|
|
|
1
1
|
# @ai-sdk/sandbox-just-bash
|
|
2
2
|
|
|
3
|
+
## 1.0.0-canary.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @ai-sdk/harness@1.0.0-canary.10
|
|
8
|
+
|
|
9
|
+
## 1.0.0-canary.9
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- @ai-sdk/harness@1.0.0-canary.9
|
|
14
|
+
|
|
15
|
+
## 1.0.0-canary.8
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [aae0138]
|
|
20
|
+
- @ai-sdk/harness@1.0.0-canary.8
|
|
21
|
+
|
|
22
|
+
## 1.0.0-canary.7
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- e551763: fix(harness): avoid using peer dependencies for underlying harness and sandbox SDKs
|
|
27
|
+
- Updated dependencies [3d87086]
|
|
28
|
+
- Updated dependencies [aeda373]
|
|
29
|
+
- Updated dependencies [1ea15a3]
|
|
30
|
+
- Updated dependencies [375fdd7]
|
|
31
|
+
- Updated dependencies [b4507d5]
|
|
32
|
+
- @ai-sdk/harness@1.0.0-canary.7
|
|
33
|
+
- @ai-sdk/provider-utils@5.0.0-canary.48
|
|
34
|
+
|
|
35
|
+
## 1.0.0-canary.6
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- @ai-sdk/harness@1.0.0-canary.6
|
|
40
|
+
|
|
41
|
+
## 1.0.0-canary.5
|
|
42
|
+
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
- Updated dependencies [d77bed4]
|
|
46
|
+
- Updated dependencies [bae5e2b]
|
|
47
|
+
- @ai-sdk/harness@1.0.0-canary.5
|
|
48
|
+
- @ai-sdk/provider-utils@5.0.0-canary.47
|
|
49
|
+
|
|
50
|
+
## 1.0.0-canary.4
|
|
51
|
+
|
|
52
|
+
### Patch Changes
|
|
53
|
+
|
|
54
|
+
- Updated dependencies [3d9a50c]
|
|
55
|
+
- @ai-sdk/harness@1.0.0-canary.4
|
|
56
|
+
|
|
57
|
+
## 1.0.0-canary.3
|
|
58
|
+
|
|
59
|
+
### Patch Changes
|
|
60
|
+
|
|
61
|
+
- Updated dependencies [21d3d60]
|
|
62
|
+
- @ai-sdk/harness@1.0.0-canary.3
|
|
63
|
+
|
|
64
|
+
## 1.0.0-canary.2
|
|
65
|
+
|
|
66
|
+
### Patch Changes
|
|
67
|
+
|
|
68
|
+
- 6c7a3e5: Start the `1.0.0` canary release line for the experimental harness and sandbox packages. They were unintentionally published as `0.0.0-canary.*` because they were scaffolded with a `0.0.0-canary.0` premajor version, which semver could not advance past on a major bump.
|
|
69
|
+
- Updated dependencies [6c7a3e5]
|
|
70
|
+
- @ai-sdk/harness@1.0.0-canary.2
|
|
71
|
+
|
|
3
72
|
## 0.0.0-canary.1
|
|
4
73
|
|
|
5
74
|
### Major 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": "
|
|
3
|
+
"version": "1.0.0-canary.10",
|
|
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
|
-
"
|
|
30
|
-
"@ai-sdk/
|
|
31
|
-
|
|
32
|
-
"peerDependencies": {
|
|
33
|
-
"just-bash": "^2.14.0"
|
|
29
|
+
"just-bash": "^2.14.5",
|
|
30
|
+
"@ai-sdk/harness": "1.0.0-canary.10",
|
|
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"
|