@mastra/server 1.33.0-alpha.13 → 1.33.0-alpha.14
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 +16 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/server
|
|
2
2
|
|
|
3
|
+
## 1.33.0-alpha.14
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Added client, React, and Studio support for Agent signals in threaded chat. Threaded user messages now send through Agent signals, stream output is consumed from the thread subscription, echoed user messages are deduped by signal ID, file and image message contents are preserved, Studio can send follow-ups while a response is streaming, Studio subscribes to open threads so additional tabs can observe active streams, and the Studio stop button aborts the active thread subscription. React chat also falls back to legacy threaded streaming when it connects to a server or core version that does not support signal routes yet. ([#16338](https://github.com/mastra-ai/mastra/pull/16338))
|
|
8
|
+
|
|
9
|
+
```ts
|
|
10
|
+
const { sendMessage } = useChat({ agentId, resourceId, threadId });
|
|
11
|
+
await sendMessage({ message: 'Follow up while streaming', threadId });
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies:
|
|
17
|
+
- @mastra/core@1.33.0-alpha.14
|
|
18
|
+
|
|
3
19
|
## 1.33.0-alpha.13
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/docs/SKILL.md
CHANGED
|
@@ -3,7 +3,7 @@ name: mastra-server
|
|
|
3
3
|
description: Documentation for @mastra/server. Use when working with @mastra/server APIs, configuration, or implementation.
|
|
4
4
|
metadata:
|
|
5
5
|
package: "@mastra/server"
|
|
6
|
-
version: "1.33.0-alpha.
|
|
6
|
+
version: "1.33.0-alpha.14"
|
|
7
7
|
---
|
|
8
8
|
|
|
9
9
|
## When to use
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/server",
|
|
3
|
-
"version": "1.33.0-alpha.
|
|
3
|
+
"version": "1.33.0-alpha.14",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -114,14 +114,14 @@
|
|
|
114
114
|
"vitest": "4.1.5",
|
|
115
115
|
"zod": "^4.3.6",
|
|
116
116
|
"zod-to-ts": "^2.0.0",
|
|
117
|
-
"@internal/core": "0.0.0",
|
|
118
|
-
"@internal/lint": "0.0.92",
|
|
119
|
-
"@internal/storage-test-utils": "0.0.88",
|
|
120
117
|
"@internal/test-utils": "0.0.28",
|
|
121
118
|
"@internal/types-builder": "0.0.67",
|
|
122
|
-
"@
|
|
119
|
+
"@internal/core": "0.0.0",
|
|
120
|
+
"@mastra/agent-builder": "1.0.34-alpha.5",
|
|
121
|
+
"@internal/storage-test-utils": "0.0.88",
|
|
122
|
+
"@mastra/core": "1.33.0-alpha.14",
|
|
123
123
|
"@mastra/schema-compat": "1.2.10-alpha.0",
|
|
124
|
-
"@
|
|
124
|
+
"@internal/lint": "0.0.92"
|
|
125
125
|
},
|
|
126
126
|
"homepage": "https://mastra.ai",
|
|
127
127
|
"repository": {
|