Skip to content

Commit b0aee1c

Browse files
Version Packages (#757)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent f12553f commit b0aee1c

File tree

9 files changed

+67
-33
lines changed

9 files changed

+67
-33
lines changed

.changeset/calm-poems-crash.md

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

.changeset/mean-buttons-sit.md

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

package-lock.json

Lines changed: 7 additions & 7 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: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# @cloudflare/agents
22

3+
## 0.3.2
4+
5+
### Patch Changes
6+
7+
- [#756](https://github.com/cloudflare/agents/pull/756) [`0c4275f`](https://github.com/cloudflare/agents/commit/0c4275f8f4b71c264c32c3742d151ef705739c2f) Thanks [@threepointone](https://github.com/threepointone)! - feat: split ai-chat and codemode into separate packages
8+
9+
Extract @cloudflare/ai-chat and @cloudflare/codemode into their own packages
10+
with comprehensive READMEs. Update agents README to remove chat-specific
11+
content and point to new packages. Fix documentation imports to reflect
12+
new package structure.
13+
14+
Maintains backward compatibility, no breaking changes.
15+
16+
- [#758](https://github.com/cloudflare/agents/pull/758) [`f12553f`](https://github.com/cloudflare/agents/commit/f12553f2fa65912c68d9a7620b9a11b70b8790a2) Thanks [@whoiskatrin](https://github.com/whoiskatrin)! - Implement createStubProxy function to fix RPC method call handling
17+
18+
- Updated dependencies [[`0c4275f`](https://github.com/cloudflare/agents/commit/0c4275f8f4b71c264c32c3742d151ef705739c2f)]:
19+
- @cloudflare/codemode@0.0.2
20+
- @cloudflare/ai-chat@0.0.2
21+
322
## 0.3.1
423

524
### Patch Changes

packages/agents/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"durable objects"
1010
],
1111
"type": "module",
12-
"version": "0.3.1",
12+
"version": "0.3.2",
1313
"license": "MIT",
1414
"repository": {
1515
"directory": "packages/agents",
@@ -50,8 +50,8 @@
5050
"peerDependencies": {
5151
"@ai-sdk/openai": "^3.0.0",
5252
"@ai-sdk/react": "^3.0.0",
53-
"@cloudflare/ai-chat": "^0.0.1",
54-
"@cloudflare/codemode": "^0.0.1",
53+
"@cloudflare/ai-chat": "^0.0.2",
54+
"@cloudflare/codemode": "^0.0.2",
5555
"ai": "^6.0.0",
5656
"react": "^19.0.0",
5757
"viem": ">=2.0.0",

packages/ai-chat/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# @cloudflare/ai-chat
2+
3+
## 0.0.2
4+
5+
### Patch Changes
6+
7+
- [#756](https://github.com/cloudflare/agents/pull/756) [`0c4275f`](https://github.com/cloudflare/agents/commit/0c4275f8f4b71c264c32c3742d151ef705739c2f) Thanks [@threepointone](https://github.com/threepointone)! - feat: split ai-chat and codemode into separate packages
8+
9+
Extract @cloudflare/ai-chat and @cloudflare/codemode into their own packages
10+
with comprehensive READMEs. Update agents README to remove chat-specific
11+
content and point to new packages. Fix documentation imports to reflect
12+
new package structure.
13+
14+
Maintains backward compatibility, no breaking changes.
15+
16+
- Updated dependencies [[`0c4275f`](https://github.com/cloudflare/agents/commit/0c4275f8f4b71c264c32c3742d151ef705739c2f), [`f12553f`](https://github.com/cloudflare/agents/commit/f12553f2fa65912c68d9a7620b9a11b70b8790a2)]:
17+

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.0.1",
3+
"version": "0.0.2",
44
"description": "Cloudflare Agents (x) AI SDK Chat",
55
"keywords": [
66
"cloudflare",
@@ -18,7 +18,7 @@
1818
"zod": "^4.1.8"
1919
},
2020
"peerDependencies": {
21-
"agents": "^0.3.0",
21+
"agents": "^0.3.2",
2222
"ai": "^6.0.0",
2323
"react": "^19.0.0",
2424
"zod": "^3.25.0 || ^4.0.0"

packages/codemode/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# @cloudflare/codemode
2+
3+
## 0.0.2
4+
5+
### Patch Changes
6+
7+
- [#756](https://github.com/cloudflare/agents/pull/756) [`0c4275f`](https://github.com/cloudflare/agents/commit/0c4275f8f4b71c264c32c3742d151ef705739c2f) Thanks [@threepointone](https://github.com/threepointone)! - feat: split ai-chat and codemode into separate packages
8+
9+
Extract @cloudflare/ai-chat and @cloudflare/codemode into their own packages
10+
with comprehensive READMEs. Update agents README to remove chat-specific
11+
content and point to new packages. Fix documentation imports to reflect
12+
new package structure.
13+
14+
Maintains backward compatibility, no breaking changes.
15+
16+
- Updated dependencies [[`0c4275f`](https://github.com/cloudflare/agents/commit/0c4275f8f4b71c264c32c3742d151ef705739c2f), [`f12553f`](https://github.com/cloudflare/agents/commit/f12553f2fa65912c68d9a7620b9a11b70b8790a2)]:
17+

packages/codemode/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/codemode",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "Code Mode: use LLMs to generate executable code that performs tool calls",
55
"dependencies": {
66
"zod-to-ts": "^2.0.0"
@@ -10,7 +10,7 @@
1010
"zod": "^4.1.8"
1111
},
1212
"peerDependencies": {
13-
"agents": "^0.3.0",
13+
"agents": "^0.3.2",
1414
"ai": "^6.0.0",
1515
"zod": "^3.25.0 || ^4.0.0"
1616
},

0 commit comments

Comments
 (0)