From 241e5004cb1ac1e2bcd716a154bbc64f5a61cc53 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Sep 2026 13:33:12 -0400 Subject: [PATCH] Version Packages (#3515) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .changeset/background-task-web-chat.md | 5 ----- .changeset/expose-root-workflow-agent.md | 5 ----- .changeset/fresh-pnpm-dev.md | 5 ----- .changeset/optimistic-delivery-correlation.md | 5 ----- .changeset/quick-agents-build-once.md | 5 ----- .changeset/steady-workflow-runtime.md | 5 ----- packages/eve-buzz-acp-adapter/CHANGELOG.md | 12 ++++++++++++ packages/eve-buzz-acp-adapter/package.json | 2 +- packages/eve/CHANGELOG.md | 14 ++++++++++++++ packages/eve/package.json | 2 +- 10 files changed, 28 insertions(+), 32 deletions(-) delete mode 100644 .changeset/background-task-web-chat.md delete mode 100644 .changeset/expose-root-workflow-agent.md delete mode 100644 .changeset/fresh-pnpm-dev.md delete mode 100644 .changeset/optimistic-delivery-correlation.md delete mode 100644 .changeset/quick-agents-build-once.md delete mode 100644 .changeset/steady-workflow-runtime.md diff --git a/.changeset/background-task-web-chat.md b/.changeset/background-task-web-chat.md deleted file mode 100644 index cd9f0a580..000000000 --- a/.changeset/background-task-web-chat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eve": patch ---- - -Keep Web Chat attached for background task results without rendering runtime-authored task input as a user message. Task wake-ups now retain explicit provenance in the durable session stream while the default frontend reducer omits them from participant messages. diff --git a/.changeset/expose-root-workflow-agent.md b/.changeset/expose-root-workflow-agent.md deleted file mode 100644 index b2b68f11e..000000000 --- a/.changeset/expose-root-workflow-agent.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eve": minor ---- - -Root workflow tools now receive the built-in root-copy target at `ctx.agents.agent`, with its authored description or an empty string, and `agent` is reserved from use as a declared subagent name. Tool definitions can set `availableInSubagents: false`; `agentRouter()` sets it automatically, routes only to entries with non-empty descriptions, and can replace the model-facing tool at `agent/tools/agent.ts` without being inherited by the root copy. diff --git a/.changeset/fresh-pnpm-dev.md b/.changeset/fresh-pnpm-dev.md deleted file mode 100644 index e9cd88854..000000000 --- a/.changeset/fresh-pnpm-dev.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eve": patch ---- - -Set `minimumReleaseAge: 0` in newly generated pnpm workspace files so dependencies installed by `eve init` also pass pnpm's checks when starting the dev server or installing again. diff --git a/.changeset/optimistic-delivery-correlation.md b/.changeset/optimistic-delivery-correlation.md deleted file mode 100644 index aaafe6dbf..000000000 --- a/.changeset/optimistic-delivery-correlation.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eve": patch ---- - -Reconcile frontend optimistic messages with their server delivery identities instead of stream order. Concurrent, coalesced, identical, and structured message submissions now resolve the correct placeholders, and separately delivered messages within one turn remain separate chat bubbles. diff --git a/.changeset/quick-agents-build-once.md b/.changeset/quick-agents-build-once.md deleted file mode 100644 index c0dc9c47d..000000000 --- a/.changeset/quick-agents-build-once.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eve": patch ---- - -Reduce development startup and production build time by removing duplicate bundler work, skipping unnecessary parsing, and overlapping independent preparation. Development terminal inspection now has a deadline, and `Client.info()` accepts an abort signal so slow inspection requests do not hold up startup. diff --git a/.changeset/steady-workflow-runtime.md b/.changeset/steady-workflow-runtime.md deleted file mode 100644 index 346c21bbf..000000000 --- a/.changeset/steady-workflow-runtime.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"eve": patch ---- - -Upgrade eve's Workflow runtime dependencies to the latest beta releases, including the Postgres world fix for steering pending generations. diff --git a/packages/eve-buzz-acp-adapter/CHANGELOG.md b/packages/eve-buzz-acp-adapter/CHANGELOG.md index 8c772d641..e77e8fe3f 100644 --- a/packages/eve-buzz-acp-adapter/CHANGELOG.md +++ b/packages/eve-buzz-acp-adapter/CHANGELOG.md @@ -1,5 +1,17 @@ # @eve/buzz-acp-adapter +## 0.0.32 + +### Patch Changes + +- Updated dependencies [7e95b64] +- Updated dependencies [cbfc425] +- Updated dependencies [7259b96] +- Updated dependencies [260a359] +- Updated dependencies [5f17320] +- Updated dependencies [6b99f12] + - eve@0.61.0 + ## 0.0.31 ### Patch Changes diff --git a/packages/eve-buzz-acp-adapter/package.json b/packages/eve-buzz-acp-adapter/package.json index a68706a58..6ba8c143c 100644 --- a/packages/eve-buzz-acp-adapter/package.json +++ b/packages/eve-buzz-acp-adapter/package.json @@ -1,6 +1,6 @@ { "name": "@eve/buzz-acp-adapter", - "version": "0.0.31", + "version": "0.0.32", "description": "Buzz ACP compatibility adapter for eve agents.", "keywords": [ "acp", diff --git a/packages/eve/CHANGELOG.md b/packages/eve/CHANGELOG.md index 858cb0ff7..a99b06521 100644 --- a/packages/eve/CHANGELOG.md +++ b/packages/eve/CHANGELOG.md @@ -1,5 +1,19 @@ # eve +## 0.61.0 + +### Minor Changes + +- cbfc425: Root workflow tools now receive the built-in root-copy target at `ctx.agents.agent`, with its authored description or an empty string, and `agent` is reserved from use as a declared subagent name. Tool definitions can set `availableInSubagents: false`; `agentRouter()` sets it automatically, routes only to entries with non-empty descriptions, and can replace the model-facing tool at `agent/tools/agent.ts` without being inherited by the root copy. + +### Patch Changes + +- 7e95b64: Keep Web Chat attached for background task results without rendering runtime-authored task input as a user message. Task wake-ups now retain explicit provenance in the durable session stream while the default frontend reducer omits them from participant messages. +- 7259b96: Set `minimumReleaseAge: 0` in newly generated pnpm workspace files so dependencies installed by `eve init` also pass pnpm's checks when starting the dev server or installing again. +- 260a359: Reconcile frontend optimistic messages with their server delivery identities instead of stream order. Concurrent, coalesced, identical, and structured message submissions now resolve the correct placeholders, and separately delivered messages within one turn remain separate chat bubbles. +- 5f17320: Reduce development startup and production build time by removing duplicate bundler work, skipping unnecessary parsing, and overlapping independent preparation. Development terminal inspection now has a deadline, and `Client.info()` accepts an abort signal so slow inspection requests do not hold up startup. +- 6b99f12: Upgrade eve's Workflow runtime dependencies to the latest beta releases, including the Postgres world fix for steering pending generations. + ## 0.60.1 ### Patch Changes diff --git a/packages/eve/package.json b/packages/eve/package.json index 8f3a93bbb..b65ee31d6 100644 --- a/packages/eve/package.json +++ b/packages/eve/package.json @@ -1,6 +1,6 @@ { "name": "eve", - "version": "0.60.1", + "version": "0.61.0", "private": false, "description": "Filesystem-first framework for durable backend AI agents that run anywhere.", "keywords": [