@mastra/hono 1.4.9 → 1.4.10-alpha.1
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 +18 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @mastra/hono
|
|
2
2
|
|
|
3
|
+
## 1.4.10-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fixed a regression in 1.29.0 where configuring an agent with channel adapters (e.g. `channels.adapters.slack`) caused server startup to crash with a "Custom API route ... must not start with /api" error. The custom-route prefix validation now skips framework-generated webhook routes. ([#15952](https://github.com/mastra-ai/mastra/pull/15952))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`920c757`](https://github.com/mastra-ai/mastra/commit/920c75799c6bd71787d86deaf654a35af4c839ca), [`1fe2533`](https://github.com/mastra-ai/mastra/commit/1fe2533c4382ca6858aac7c4b63e888c2eac6541), [`f8694b6`](https://github.com/mastra-ai/mastra/commit/f8694b6fa0b7a5cde71d794c3bbef4957c55bcb8), [`f8694b6`](https://github.com/mastra-ai/mastra/commit/f8694b6fa0b7a5cde71d794c3bbef4957c55bcb8)]:
|
|
10
|
+
- @mastra/server@1.30.0-alpha.1
|
|
11
|
+
- @mastra/core@1.30.0-alpha.1
|
|
12
|
+
|
|
13
|
+
## 1.4.10-alpha.0
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Updated dependencies [[`d587199`](https://github.com/mastra-ai/mastra/commit/d5871993c0371bde2b0717d6b47194755baa1443), [`5339dbe`](https://github.com/mastra-ai/mastra/commit/5339dbef397378847975bb93856353d6c6a722ca)]:
|
|
18
|
+
- @mastra/core@1.29.2-alpha.0
|
|
19
|
+
- @mastra/server@1.29.2-alpha.0
|
|
20
|
+
|
|
3
21
|
## 1.4.9
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/hono",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.10-alpha.1",
|
|
4
4
|
"description": "Mastra Hono adapter for the server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"@hono/node-ws": "^1.3.0",
|
|
24
24
|
"fetch-to-node": "^2.1.0",
|
|
25
25
|
"ws": "^8.20.0",
|
|
26
|
-
"@mastra/server": "1.
|
|
26
|
+
"@mastra/server": "1.30.0-alpha.1"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@ai-sdk/openai": "^2.0.103",
|
|
@@ -40,11 +40,11 @@
|
|
|
40
40
|
"@internal/lint": "0.0.88",
|
|
41
41
|
"@internal/server-adapter-test-utils": "0.0.15",
|
|
42
42
|
"@internal/storage-test-utils": "0.0.84",
|
|
43
|
-
"@mastra/
|
|
44
|
-
"@mastra/core": "1.29.1",
|
|
45
|
-
"@mastra/memory": "1.17.3",
|
|
43
|
+
"@mastra/core": "1.30.0-alpha.1",
|
|
46
44
|
"@internal/types-builder": "0.0.63",
|
|
47
|
-
"@mastra/
|
|
45
|
+
"@mastra/libsql": "1.9.0",
|
|
46
|
+
"@mastra/observability": "1.10.3-alpha.0",
|
|
47
|
+
"@mastra/memory": "1.17.4-alpha.0"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@mastra/core": ">=1.0.0-0 <2.0.0-0"
|