eve 0.8.4 → 0.8.6
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 +16 -0
- package/dist/src/compiled/.vendor-stamp.json +2 -2
- package/dist/src/compiled/@vercel/sandbox/index.d.ts +1 -0
- package/dist/src/compiled/@vercel/sandbox/index.js +19 -19
- package/dist/src/compiled/_chunks/node/auth-DF_ft5ea.js +2 -0
- package/dist/src/compiled/_chunks/node/version-TugPKZua.js +64 -0
- package/dist/src/execution/sandbox/bindings/docker-options.d.ts +3 -3
- package/dist/src/execution/sandbox/bindings/docker-options.js +1 -1
- package/dist/src/execution/sandbox/bindings/microsandbox-options.d.ts +1 -1
- package/dist/src/execution/sandbox/bindings/microsandbox-options.js +1 -1
- package/dist/src/execution/sandbox/bindings/{vercel-create-api.d.ts → vercel-create-sdk.d.ts} +4 -0
- package/dist/src/execution/sandbox/bindings/vercel-create-sdk.js +1 -0
- package/dist/src/execution/sandbox/bindings/vercel-credentials.d.ts +8 -0
- package/dist/src/execution/sandbox/bindings/vercel-credentials.js +1 -0
- package/dist/src/execution/sandbox/bindings/vercel-errors.d.ts +1 -0
- package/dist/src/execution/sandbox/bindings/vercel-errors.js +2 -0
- package/dist/src/execution/sandbox/bindings/vercel-lookup.d.ts +7 -0
- package/dist/src/execution/sandbox/bindings/vercel-lookup.js +1 -0
- package/dist/src/execution/sandbox/bindings/vercel.d.ts +1 -1
- package/dist/src/execution/sandbox/bindings/vercel.js +1 -1
- package/dist/src/harness/emission.js +1 -1
- package/dist/src/harness/runtime-actions.d.ts +10 -0
- package/dist/src/harness/runtime-actions.js +1 -1
- package/dist/src/internal/application/package.js +1 -1
- package/dist/src/internal/nitro/host/dev-authored-source-watcher.js +1 -1
- package/dist/src/public/sandbox/docker-sandbox.d.ts +4 -4
- package/dist/src/public/sandbox/microsandbox-sandbox.d.ts +2 -2
- package/dist/src/public/sandbox/vercel-sandbox.d.ts +5 -1
- package/dist/src/setup/scaffold/create/add-to-project.js +1 -1
- package/dist/src/setup/scaffold/create/project.js +2 -2
- package/dist/src/setup/scaffold/update/channels.js +1 -1
- package/docs/sandbox.mdx +3 -3
- package/package.json +2 -2
- package/dist/src/compiled/_chunks/node/auth-BsyzphzW.js +0 -2
- package/dist/src/compiled/_chunks/node/version-BGue04qw.js +0 -1
- package/dist/src/execution/sandbox/bindings/vercel-create-api.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# eve
|
|
2
2
|
|
|
3
|
+
## 0.8.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2dbcc18: Use `ghcr.io/vercel/eve:latest` as the default image for Docker and microsandbox local sandbox backends.
|
|
8
|
+
- b469b8d: Route Vercel sandbox template and session lookups through Eve's resolved sandbox credentials when available. This avoids the Vercel Sandbox SDK's local team-scope inference path, which can fail prewarm when Vercel's teams API omits optional metadata fields.
|
|
9
|
+
- e7bbd0e: Vercel sandbox creation now uses the `@vercel/sandbox` SDK path again while still passing Eve's internal `__image` configuration through SDK create options.
|
|
10
|
+
- b14567e: Recover from expired Vercel sandbox template snapshots by invalidating the stale template and rebuilding it during the existing runtime prewarm retry path.
|
|
11
|
+
|
|
12
|
+
## 0.8.5
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 2c2474b: `eve dev` again rebuilds authored artifacts on every save, not just changes to `agent.ts`. Edits to instructions, tools, skills, channels, and other authored files are picked up immediately (debounced) instead of being deferred until the next REPL message.
|
|
17
|
+
- 5145fd1: Surface provider-managed tools such as `web_search` through normal tool call and result stream events so existing stream renderers can display provider-executed activity.
|
|
18
|
+
|
|
3
19
|
## 0.8.4
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
|
@@ -20,12 +20,12 @@
|
|
|
20
20
|
"@standard-schema/spec": "1.1.0",
|
|
21
21
|
"turndown": "7.2.4",
|
|
22
22
|
"@vercel/oidc": "3.5.0",
|
|
23
|
-
"@vercel/sandbox": "2.1
|
|
23
|
+
"@vercel/sandbox": "2.2.1",
|
|
24
24
|
"@workflow/core": "5.0.0-beta.15",
|
|
25
25
|
"@workflow/errors": "5.0.0-beta.7",
|
|
26
26
|
"@workflow/world": "5.0.0-beta.9",
|
|
27
27
|
"zod": "4.4.3",
|
|
28
28
|
"zod-validation-error": "5.0.0"
|
|
29
29
|
},
|
|
30
|
-
"scriptHash": "
|
|
30
|
+
"scriptHash": "1ebb9a4fbe7d64f120d745caeb74042278087d75f4be3c162675758e6e6e6843"
|
|
31
31
|
}
|