@mastra/server 1.33.0-alpha.13 → 1.33.0-alpha.15
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 +23 -0
- package/dist/docs/SKILL.md +1 -1
- package/dist/docs/assets/SOURCE_MAP.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @mastra/server
|
|
2
2
|
|
|
3
|
+
## 1.33.0-alpha.15
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`105e454`](https://github.com/mastra-ai/mastra/commit/105e454c95af06a7c741c15969d8f9b0f02463a7)]:
|
|
8
|
+
- @mastra/core@1.33.0-alpha.15
|
|
9
|
+
|
|
10
|
+
## 1.33.0-alpha.14
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 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))
|
|
15
|
+
|
|
16
|
+
```ts
|
|
17
|
+
const { sendMessage } = useChat({ agentId, resourceId, threadId });
|
|
18
|
+
await sendMessage({ message: 'Follow up while streaming', threadId });
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- Updated dependencies:
|
|
24
|
+
- @mastra/core@1.33.0-alpha.14
|
|
25
|
+
|
|
3
26
|
## 1.33.0-alpha.13
|
|
4
27
|
|
|
5
28
|
### 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.15"
|
|
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.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"@internal/storage-test-utils": "0.0.88",
|
|
120
120
|
"@internal/test-utils": "0.0.28",
|
|
121
121
|
"@internal/types-builder": "0.0.67",
|
|
122
|
-
"@mastra/core": "1.33.0-alpha.
|
|
122
|
+
"@mastra/core": "1.33.0-alpha.15",
|
|
123
123
|
"@mastra/schema-compat": "1.2.10-alpha.0",
|
|
124
124
|
"@mastra/agent-builder": "1.0.34-alpha.5"
|
|
125
125
|
},
|