Skip to content

Commit bde99ae

Browse files
Version Packages (#1419)
* Version Packages * Bump agents peerDependency to >=0.12.0 Update the 'agents' peerDependency range from >=0.11.7 <1.0.0 to >=0.12.0 <1.0.0 in packages/ai-chat and packages/think package.json files to require the newer agents release. * format --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Sunil Pai <spai@cloudflare.com>
1 parent 6471cbd commit bde99ae

13 files changed

Lines changed: 57 additions & 46 deletions

.changeset/agent-tools-orchestration.md

Lines changed: 0 additions & 11 deletions
This file was deleted.

.changeset/facet-schedules.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/native-context-facet-bootstrap.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/think-send-reasoning.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/think-telemetry.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/agents/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# @cloudflare/agents
22

3+
## 0.12.0
4+
5+
### Minor Changes
6+
7+
- [#1421](https://github.com/cloudflare/agents/pull/1421) [`1b65ff5`](https://github.com/cloudflare/agents/commit/1b65ff5550f904e2a59bd6015703f82b02f85e4f) Thanks [@threepointone](https://github.com/threepointone)! - Add agent tool orchestration for running Think and AIChatAgent sub-agents as
8+
retained, streaming tools from a parent agent. The new surface includes
9+
`runAgentTool`, `agentTool`, parent-side run replay and cleanup, Think and
10+
AIChatAgent child adapter support, and headless React/client event state
11+
helpers.
12+
13+
### Patch Changes
14+
15+
- [#1418](https://github.com/cloudflare/agents/pull/1418) [`8de0ce3`](https://github.com/cloudflare/agents/commit/8de0ce39495e16e5b25bece9113f591934663cc8) Thanks [@threepointone](https://github.com/threepointone)! - Allow sub-agents to use alarm-backed APIs by delegating the physical Durable Object alarm to the top-level parent while executing logical work inside the owning sub-agent. This enables `schedule()`, `scheduleEvery()`, `cancelSchedule()`, `getScheduleById()`, `listSchedules()`, `keepAlive()`, `keepAliveWhile()`, `runFiber()`, and Think chat recovery inside sub-agents.
16+
17+
Sub-agent schedules are scoped to the calling child, so sibling sub-agents cannot cancel each other's schedules by id. The deprecated synchronous `getSchedule()` and `getSchedules()` APIs now throw inside sub-agents; use the async alternatives instead. Destroying a sub-agent now delegates cleanup through the parent so parent-owned schedules and descendant fiber recovery leases are removed consistently.
18+
19+
- [#1425](https://github.com/cloudflare/agents/pull/1425) [`6471cbd`](https://github.com/cloudflare/agents/commit/6471cbd8113df5431aa1d2aabcbcc8f32f5c8cf7) Thanks [@threepointone](https://github.com/threepointone)! - Clear request, WebSocket, and email native context handles when switching Agent instances and suppress protocol broadcasts during sub-agent facet bootstrap.
20+
321
## 0.11.9
422

523
### Patch Changes

packages/agents/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"durable objects"
1010
],
1111
"type": "module",
12-
"version": "0.11.9",
12+
"version": "0.12.0",
1313
"license": "MIT",
1414
"repository": {
1515
"directory": "packages/agents",

packages/ai-chat/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @cloudflare/ai-chat
22

3+
## 0.6.0
4+
5+
### Minor Changes
6+
7+
- [#1421](https://github.com/cloudflare/agents/pull/1421) [`1b65ff5`](https://github.com/cloudflare/agents/commit/1b65ff5550f904e2a59bd6015703f82b02f85e4f) Thanks [@threepointone](https://github.com/threepointone)! - Add agent tool orchestration for running Think and AIChatAgent sub-agents as
8+
retained, streaming tools from a parent agent. The new surface includes
9+
`runAgentTool`, `agentTool`, parent-side run replay and cleanup, Think and
10+
AIChatAgent child adapter support, and headless React/client event state
11+
helpers.
12+
313
## 0.5.4
414

515
### Patch Changes

packages/ai-chat/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/ai-chat",
3-
"version": "0.5.4",
3+
"version": "0.6.0",
44
"description": "Cloudflare Agents (x) AI SDK Chat",
55
"keywords": [
66
"cloudflare",
@@ -28,7 +28,7 @@
2828
},
2929
"peerDependencies": {
3030
"@ai-sdk/react": "^3.0.0",
31-
"agents": ">=0.11.7 <1.0.0",
31+
"agents": ">=0.12.0 <1.0.0",
3232
"ai": "^6.0.0",
3333
"react": "^19.0.0",
3434
"zod": "^4.0.0"

0 commit comments

Comments
 (0)