@ai-sdk/sandbox-vercel 0.0.0-canary.1 → 1.0.0-beta.14

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,102 @@
1
1
  # @ai-sdk/sandbox-vercel
2
2
 
3
+ ## 1.0.0-beta.14
4
+
5
+ ### Patch Changes
6
+
7
+ - b8396f0: trigger initial beta release
8
+ - Updated dependencies [b8396f0]
9
+ - @ai-sdk/harness@1.0.0-beta.14
10
+ - @ai-sdk/provider-utils@5.0.0-beta.49
11
+
12
+ ## 1.0.0-canary.13
13
+
14
+ ### Patch Changes
15
+
16
+ - @ai-sdk/harness@1.0.0-canary.13
17
+
18
+ ## 1.0.0-canary.12
19
+
20
+ ### Patch Changes
21
+
22
+ - @ai-sdk/harness@1.0.0-canary.12
23
+
24
+ ## 1.0.0-canary.11
25
+
26
+ ### Patch Changes
27
+
28
+ - Updated dependencies [be83911]
29
+ - @ai-sdk/harness@1.0.0-canary.11
30
+
31
+ ## 1.0.0-canary.10
32
+
33
+ ### Patch Changes
34
+
35
+ - @ai-sdk/harness@1.0.0-canary.10
36
+
37
+ ## 1.0.0-canary.9
38
+
39
+ ### Patch Changes
40
+
41
+ - @ai-sdk/harness@1.0.0-canary.9
42
+
43
+ ## 1.0.0-canary.8
44
+
45
+ ### Patch Changes
46
+
47
+ - Updated dependencies [aae0138]
48
+ - @ai-sdk/harness@1.0.0-canary.8
49
+
50
+ ## 1.0.0-canary.7
51
+
52
+ ### Patch Changes
53
+
54
+ - e551763: fix(harness): avoid using peer dependencies for underlying harness and sandbox SDKs
55
+ - Updated dependencies [3d87086]
56
+ - Updated dependencies [aeda373]
57
+ - Updated dependencies [1ea15a3]
58
+ - Updated dependencies [375fdd7]
59
+ - Updated dependencies [b4507d5]
60
+ - @ai-sdk/harness@1.0.0-canary.7
61
+ - @ai-sdk/provider-utils@5.0.0-canary.48
62
+
63
+ ## 1.0.0-canary.6
64
+
65
+ ### Patch Changes
66
+
67
+ - @ai-sdk/harness@1.0.0-canary.6
68
+
69
+ ## 1.0.0-canary.5
70
+
71
+ ### Patch Changes
72
+
73
+ - Updated dependencies [d77bed4]
74
+ - Updated dependencies [bae5e2b]
75
+ - @ai-sdk/harness@1.0.0-canary.5
76
+ - @ai-sdk/provider-utils@5.0.0-canary.47
77
+
78
+ ## 1.0.0-canary.4
79
+
80
+ ### Patch Changes
81
+
82
+ - Updated dependencies [3d9a50c]
83
+ - @ai-sdk/harness@1.0.0-canary.4
84
+
85
+ ## 1.0.0-canary.3
86
+
87
+ ### Patch Changes
88
+
89
+ - Updated dependencies [21d3d60]
90
+ - @ai-sdk/harness@1.0.0-canary.3
91
+
92
+ ## 1.0.0-canary.2
93
+
94
+ ### Patch Changes
95
+
96
+ - 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.
97
+ - Updated dependencies [6c7a3e5]
98
+ - @ai-sdk/harness@1.0.0-canary.2
99
+
3
100
  ## 0.0.0-canary.1
4
101
 
5
102
  ### Major Changes
package/README.md CHANGED
@@ -7,7 +7,7 @@ _This package is **experimental**._
7
7
  ## Setup
8
8
 
9
9
  ```bash
10
- npm i @ai-sdk/sandbox-vercel @vercel/sandbox
10
+ npm i @ai-sdk/sandbox-vercel
11
11
  ```
12
12
 
13
13
  ## Usage
@@ -50,7 +50,7 @@ const sandbox = createVercelSandbox({
50
50
  });
51
51
  ```
52
52
 
53
- To wrap an already-created `@vercel/sandbox` `Sandbox` instead — e.g. when you need credentials or options outside the factory's settings, or you want to share one sandbox across multiple harness sessions — pass it via `sandbox`. The network sandbox session's `stop()` is a no-op in this case; the caller owns the lifecycle.
53
+ To wrap an already-created `@vercel/sandbox` `Sandbox` instead — e.g. when you need credentials or options outside the factory's settings, or you want to share one sandbox across multiple harness sessions — pass it via `sandbox`. Install `@vercel/sandbox` directly if your application imports `Sandbox`. The network sandbox session's `stop()` is a no-op in this case; the caller owns the lifecycle.
54
54
 
55
55
  ```ts
56
56
  import { createVercelSandbox } from '@ai-sdk/sandbox-vercel';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/sandbox-vercel",
3
- "version": "0.0.0-canary.1",
3
+ "version": "1.0.0-beta.14",
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": "0.0.0-canary.1",
30
- "@ai-sdk/provider-utils": "5.0.0-canary.46"
31
- },
32
- "peerDependencies": {
33
- "@vercel/sandbox": "^2.0.1"
29
+ "@vercel/sandbox": "^2.0.1",
30
+ "@ai-sdk/harness": "1.0.0-beta.14",
31
+ "@ai-sdk/provider-utils": "5.0.0-beta.49"
34
32
  },
35
33
  "devDependencies": {
36
34
  "@types/node": "22.19.19",
37
- "@vercel/sandbox": "^2.0.1",
38
35
  "tsup": "^8.5.1",
39
36
  "typescript": "5.8.3",
40
37
  "@vercel/ai-tsconfig": "0.0.0"