Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/five-beers-roll.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"hono-agents": patch
"agents": patch
---

udpate dependencies
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
"$schema": "https://biomejs.dev/schemas/2.3.0/schema.json",
"assist": {
"actions": {
"source": {
Expand Down
1 change: 0 additions & 1 deletion cloudflare-agents
Submodule cloudflare-agents deleted from 9901cd
2 changes: 1 addition & 1 deletion examples/a2a/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Matt Carey <mcarey@cloudflare.com>",
"dependencies": {
"@a2a-js/sdk": "^0.2.2",
"hono": "^4.9.10"
"hono": "^4.10.3"
},
"keywords": [],
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion examples/email-agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"test-email": "tsx test-mail.ts"
},
"dependencies": {
"postal-mime": "^2.5.0"
"postal-mime": "^2.6.0"
},
"keywords": [],
"license": "ISC",
Expand Down
2 changes: 1 addition & 1 deletion examples/mcp-worker-authenticated/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
"deploy": "wrangler deploy"
},
"dependencies": {
"hono": "^4.9.10"
"hono": "^4.10.3"
}
}
2 changes: 1 addition & 1 deletion examples/playground/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "",
"dependencies": {
"cronstrue": "^3.3.0",
"cronstrue": "^3.9.0",
"nanoid": "^5.1.6"
},
"description": "",
Expand Down
1 change: 0 additions & 1 deletion examples/playground/src/components/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ function ChatRoom({ roomId }: ChatProps) {
{m.parts
?.filter((part) => part.type === "text")
.map((part, i) => (
// biome-ignore lint/suspicious/noArrayIndexKey: vibes
<div key={i} className="message-content">
{part.text}
</div>
Expand Down
8 changes: 1 addition & 7 deletions examples/playground/src/components/RPC.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,13 +140,7 @@ export default function RPC({
</div>
<div className="messages-list">
{messages.map((message, messageId) => (
<div
key={`message-${
// biome-ignore lint/suspicious/noArrayIndexKey: eh
messageId
}`}
className="message-item"
>
<div key={`message-${messageId}`} className="message-item">
<div className="message-content">
<div className="message-icon-container">
<svg
Expand Down
2 changes: 1 addition & 1 deletion examples/x402/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "",
"dependencies": {
"hono": "^4.9.10",
"hono": "^4.10.3",
"x402-fetch": "^0.6.6",
"x402-hono": "^0.6.5"
},
Expand Down
1 change: 0 additions & 1 deletion guides/human-in-the-loop/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,6 @@ export default function Chat() {
switch (part.type) {
case "text":
return (
// biome-ignore lint/suspicious/noArrayIndexKey: vibes
<div key={i} className="message-content">
{part.text}
</div>
Expand Down
10 changes: 5 additions & 5 deletions openai-sdk/chess-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@
"types": "wrangler types --include-runtime false"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.13.12",
"@vitejs/plugin-react": "^5.0.4",
"@cloudflare/vite-plugin": "^1.13.15",
"@vitejs/plugin-react": "^5.1.0",
"chess.js": "^1.4.0",
"react": "^19.2.0",
"react-chessboard": "^5.6.2",
"react-chessboard": "^5.7.1",
"react-dom": "^19.2.0",
"vite": "^7.1.9",
"vite": "^7.1.12",
"vite-plugin-singlefile": "^2.3.0"
},
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1"
"@types/react-dom": "^19.2.2"
}
}
Loading
Loading